diff --git a/.Rbuildignore b/.Rbuildignore index 44e8514cd..ee556d8ac 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -3,7 +3,7 @@ ^hector.Rproj$ ^\.Rproj\.user$ -## Github config, license, CI, etc. +## GitHub config, license, CI, etc. ^CONTRIBUTING.md$ ^LICENSE.md$ ^changelog.txt$ @@ -18,18 +18,19 @@ ^project_files$ ^output$ ^scripts$ +^scripts/ ^logs$ ^test_hector.sh$ ^src/hector$ ^src/.*\.txt$ ^src/.*\.a$ ^src/.*\.d$ +^.*\.o$ ^src/main.*$ ^src/makefile.standalone$ ^src/testing$ ^misc$ ^data-raw$ -^analysis$ ^.vscode$ # pkgdown config and output @@ -39,3 +40,11 @@ _pkgdown.yml # lintr config .lintr +^doc$ +^Meta$ +^vignettes/articles$ + +# README and similar files +^CITATION\.cff$ +^CODE_OF_CONDUCT\.md$ +^README\.Rmd$ diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml new file mode 100644 index 000000000..e6daa0e87 --- /dev/null +++ b/.github/workflows/R-CMD-check.yaml @@ -0,0 +1,60 @@ +name: R-CMD-check +# Controls when the action will run. +on: + push: + branches: + - master + pull_request: + branches: + - '**' # matches every branch + + schedule: + # * is a special character in YAML so you have to quote this string + # Launch run at 6am the 1st of every month. + - cron: '0 6 1 * *' + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + R-CMD-check: + runs-on: ${{ matrix.config.os }} + + name: ${{ matrix.config.os }} (${{ matrix.config.r }}) + + strategy: + fail-fast: false + matrix: + config: + - {os: macos-latest, r: 'release'} + - {os: windows-latest, r: 'release'} + - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} + - {os: ubuntu-latest, r: 'release'} + - {os: ubuntu-latest, r: 'oldrel-1'} + + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + R_KEEP_PKG_SOURCE: yes + + steps: + - uses: actions/checkout@v3 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r@v2 + with: + r-version: ${{ matrix.config.r }} + http-user-agent: ${{ matrix.config.http-user-agent }} + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::rcmdcheck + needs: check + + - uses: r-lib/actions/check-r-package@v2 + with: + upload-snapshots: true + args: 'c("--no-manual", "--as-cran")' + error-on: '"error"' + check-dir: '"check"' diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml index 547c18d0d..8bfcd434c 100644 --- a/.github/workflows/codecov.yaml +++ b/.github/workflows/codecov.yaml @@ -4,9 +4,9 @@ on: - master pull_request: branches: - - master + - '**' # matches every branch schedule: - # * is a special character in YAML so you have to quote this string, it is set up to run at 6am + # * is a special character in YAML so you have to quote this string, it is set up to run at 6am # on the first day of the month, this is helpful for periods of time when PRs are not being merged. - cron: '0 6 1 * *' # Allows you to run this workflow manually from the Actions tab @@ -16,15 +16,15 @@ name: test-coverage jobs: test-coverage: - runs-on: macOS-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@master + - uses: r-lib/actions/setup-r@v2 with: r-version: 'release' - - uses: r-lib/actions/setup-pandoc@master + - uses: r-lib/actions/setup-pandoc@v2 - name: Query dependencies run: | @@ -40,6 +40,9 @@ jobs: key: macOS-r-4.0-2-${{ hashFiles('.github/depends.Rds') }} restore-keys: macOS-r-4.0-2- + - name: Install libcurl + run: sudo apt-get install libcurl4-openssl-dev + - name: Install dependencies run: | install.packages(c("remotes")) diff --git a/.github/workflows/command-line.yaml b/.github/workflows/command-line.yaml index 7e73d84a0..2daacf7ab 100644 --- a/.github/workflows/command-line.yaml +++ b/.github/workflows/command-line.yaml @@ -8,12 +8,13 @@ on: push: branches: - master - - github_actions pull_request: - branches: master + branches: + - '**' # matches every branch + schedule: # * is a special character in YAML so you have to quote this string - # Launch run at 6am the 1st of every month. + # Launch run at 6am the 1st of every month. - cron: '0 6 1 * *' # Allows you to run this workflow manually from the Actions tab @@ -32,9 +33,7 @@ jobs: - uses: actions/checkout@v2 - name: build and run run: | - sudo apt install libboost-filesystem-dev libboost-system-dev - - ver=`awk '/define.*BOOST_LIB_VERSION/ {print $3}' /usr/include/boost/version.hpp` - echo Boost version $ver - BOOSTLIB=/usr/local/lib BOOSTVERSION=$ver BOOSTROOT=/usr/include/boost make hector + sudo apt-get update + sudo apt install libboost-dev + make hector bash ./test_hector.sh ./src/hector diff --git a/.github/workflows/leeyabot.yml b/.github/workflows/leeyabot.yml new file mode 100644 index 000000000..87495a428 --- /dev/null +++ b/.github/workflows/leeyabot.yml @@ -0,0 +1,55 @@ +name: leeyabot +on: + pull_request: + branches: + - '**' # matches every branch + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: iterative/setup-cml@v1 + - uses: r-lib/actions/setup-r@v2 + with: + r-version: 'release' + + - name: Install libcurl + run: sudo apt-get install libcurl4-openssl-dev + + - name: Install dependencies + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + run: | + install.packages(c("ggplot2", "rmarkdown", "dplyr", "remotes", "here")) + remotes::install_github("hadley/emo") + remotes::install_deps(dependencies = TRUE) + shell: Rscript {0} + + - name: Install package + run: R CMD INSTALL . + + - name: Generate report + run: | + rmarkdown::render("./scripts/OutputDifferences.Rmd", run_pandoc = FALSE) + shell: Rscript {0} + + - name: Post comment + env: + REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + # Post reports as comments in GitHub PRs + cd scripts/ + if [ -f "diff_plot.png" ] + then + cat OutputDifferences.knit.md >> report.md + echo "![](./diff_plot.png)" >> report.md + echo "![](./comp_plot.png)" >> report.md + elif [ -f "same_plot.png" ] + then + cat OutputDifferences.knit.md >> report.md + else + cat OutputDifferences.knit.md >> report.md + echo "leeyabot down :(" > report.md + fi + cml comment create report.md diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml deleted file mode 100644 index cdf4cf9ad..000000000 --- a/.github/workflows/lint.yaml +++ /dev/null @@ -1,57 +0,0 @@ -on: - push: - branches: - - main - - master - pull_request: - branches: - - main - - master - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -name: lint - -jobs: - lint: - runs-on: ubuntu-latest - env: - GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} - steps: - - name: Install libcurl - run: sudo apt-get install libcurl4-openssl-dev - - - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@v1 - - - name: Query dependencies - run: | - install.packages('remotes') - saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) - writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version") - shell: Rscript {0} - - - name: Cache R packages - uses: actions/cache@v2 - with: - path: ${{ env.R_LIBS_USER }} - key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} - restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1- - - - name: Install dependencies - run: | - install.packages(c("remotes", "lintr")) - remotes::install_deps(dependencies = TRUE) - shell: Rscript {0} - - - name: Install package - run: R CMD INSTALL . - - - name: Lint - run: | - # lintr configuration settings are in the .lintr file - out <- lintr::lint_package() - invisible(lapply(out, print)) - if (length(out)) stop("lints found") - shell: Rscript {0} diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index 86b79724b..90d17597d 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -1,53 +1,47 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: push: + branches: [master] + pull_request: branches: - - main - - master - schedule: - # * is a special character in YAML so you have to quote this string - # Launch run at 6am the 1st of every month. - - cron: '0 6 1 * *' - - # Allows you to run this workflow manually from the Actions tab + - '**' # matches every branch + release: + types: [published] workflow_dispatch: name: pkgdown jobs: pkgdown: - runs-on: macOS-latest + runs-on: ubuntu-latest + # Only restrict concurrency for non-PR jobs + concurrency: + group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v2 - - - uses: r-lib/actions/setup-r@v1 + - uses: actions/checkout@v3 - - uses: r-lib/actions/setup-pandoc@v1 + - uses: r-lib/actions/setup-pandoc@v2 - - name: Query dependencies - run: | - install.packages('remotes') - saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) - writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version") - shell: Rscript {0} + - uses: r-lib/actions/setup-r@v2 + with: + use-public-rspm: true - - name: Cache R packages - uses: actions/cache@v2 + - uses: r-lib/actions/setup-r-dependencies@v2 with: - path: ${{ env.R_LIBS_USER }} - key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} - restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1- + extra-packages: any::pkgdown, local::. + needs: website - - name: Install dependencies - run: | - remotes::install_deps(dependencies = TRUE) - install.packages("pkgdown", type = "binary") + - name: Build site + run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) shell: Rscript {0} - - name: Install package - run: R CMD INSTALL . - - - name: Deploy package - run: | - git config --local user.email "actions@github.com" - git config --local user.name "GitHub Actions" - Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' + - name: Deploy to GitHub pages 🚀 + if: github.event_name != 'pull_request' + uses: JamesIves/github-pages-deploy-action@v4.4.1 + with: + clean: false + branch: gh-pages + folder: docs diff --git a/.github/workflows/rcmd.yml b/.github/workflows/rcmd.yml deleted file mode 100644 index 4df8d7a81..000000000 --- a/.github/workflows/rcmd.yml +++ /dev/null @@ -1,111 +0,0 @@ -# Controls when the action will run. -on: - push: - branches: - - master - - github_actions - pull_request: - branches: master - - schedule: - # * is a special character in YAML so you have to quote this string - # Launch run at 6am the 1st of every month. - - cron: '0 6 1 * *' - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -name: R-CMD - -jobs: - R-CMD: - runs-on: ${{ matrix.config.os }} - - name: ${{ matrix.config.os }} (${{ matrix.config.r }}) - - strategy: - fail-fast: false - matrix: - config: - # test on one version of R for MacOSX - - {os: macOS-latest, r: 'release'} - - # test on one version of R for windows - - {os: windows-latest, r: 'release'} - - # latest stable version of R for ubuntu-16.04 is 3.5; ubuntu-latest is migrating to 20.04 by the end of 2020 - - {os: ubuntu-16.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"} - - {os: ubuntu-16.04, r: '3.6', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"} - - env: - R_REMOTES_NO_ERRORS_FROM_WARNINGS: true - RSPM: ${{ matrix.config.rspm }} - - steps: - - uses: actions/checkout@v2 - - - uses: r-lib/actions/setup-r@master - with: - r-version: ${{ matrix.config.r }} - - - uses: r-lib/actions/setup-pandoc@master - - - name: Query dependencies - run: | - install.packages('remotes') - saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2) - writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version") - shell: Rscript {0} - - - name: Cache R packages - if: runner.os != 'Windows' - uses: actions/cache@v1 - with: - path: ${{ env.R_LIBS_USER }} - key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} - restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1- - - - name: Install system dependencies - if: runner.os == 'Linux' - env: - RHUB_PLATFORM: linux-x86_64-ubuntu-gcc - run: | - Rscript -e "remotes::install_github('r-hub/sysreqs')" - sysreqs=$(Rscript -e "cat(sysreqs::sysreq_commands('DESCRIPTION'))") - sudo -s eval "$sysreqs" - - - name: Install XQuartz on MacOS - if: runner.os == 'macOS' - run: brew install xquartz - - - name: Install dependencies - run: | - remotes::install_deps(dependencies = TRUE) - remotes::install_cran("rcmdcheck") - - shell: Rscript {0} - - - name: Session info - run: | - options(width = 100) - pkgs <- installed.packages()[, "Package"] - sessioninfo::session_info(pkgs, include_base = TRUE) - shell: Rscript {0} - - - name: Check - env: - _R_CHECK_CRAN_INCOMING_: false - run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "error", check_dir = "check") - shell: Rscript {0} - - - name: Show testthat output - if: always() - run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true - shell: bash - - - name: Upload check results - if: failure() - uses: actions/upload-artifact@master - with: - name: ${{ runner.os }}-r${{ matrix.config.r }}-results - path: check diff --git a/.github/workflows/unit-testing.yaml b/.github/workflows/unit-testing.yaml new file mode 100644 index 000000000..8475a99df --- /dev/null +++ b/.github/workflows/unit-testing.yaml @@ -0,0 +1,35 @@ +# Build the gtest Hector and run it + +name: C++ unit tests + +# Controls when the action will run. +on: + pull_request: + branches: + - '**' # matches every branch + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + # This workflow contains one job that builds hector on ubuntu using the + # googletest framework. + ubuntu: + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + - name: Install gtest + # based on https://github.com/bastianhjaeger/github_actions_gtest_example + run: sudo apt-get install libgtest-dev && cd /usr/src/gtest && sudo cmake CMakeLists.txt && sudo make && sudo cp lib/*.a /usr/local/lib + - name: Install Boost + run: sudo apt install libboost-filesystem-dev libboost-system-dev + - name: build and run + # NB we don't really need to define BOOSTROOT and GTROOT; these are the defaults + run: | + BOOSTROOT=/usr/local/ + GTROOT=/usr/local/ + make testing + ./src/unit-testing/hector-unit-tests diff --git a/.gitignore b/.gitignore index 13224e25d..513e6bf3a 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,8 @@ src/hector src/hector-ext src/hector-api +src/unit-testing/hector-unit-tests +src/unit-testing/hector-unit-tests.dSYM/ # Hector logs logs/*.* @@ -62,12 +64,10 @@ libs/ *.suo # Output -output/output* +output/*.csv # R .Rhistory -R/batchrunner/*.pdf -R/batchrunner/*.csv .Rapp.history .Rproj.user .RData @@ -80,3 +80,5 @@ vignettes/rsconnect # vignette caches /vignettes/*_cache docs +/doc/ +/Meta/ diff --git a/.lintr b/.lintr index c7efcdf7d..dbac387f5 100644 --- a/.lintr +++ b/.lintr @@ -1,4 +1,4 @@ -linters: with_defaults( +linters: linters_with_defaults( object_name_linter = NULL, line_length_linter(100) ) diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..a9761694f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,56 @@ +{ + "files.associations": { + "iostream": "cpp", + "new": "cpp", + "array": "cpp", + "atomic": "cpp", + "bit": "cpp", + "*.tcc": "cpp", + "cctype": "cpp", + "clocale": "cpp", + "cmath": "cpp", + "compare": "cpp", + "complex": "cpp", + "concepts": "cpp", + "cstdarg": "cpp", + "cstddef": "cpp", + "cstdint": "cpp", + "cstdio": "cpp", + "cstdlib": "cpp", + "ctime": "cpp", + "cwchar": "cpp", + "cwctype": "cpp", + "deque": "cpp", + "list": "cpp", + "map": "cpp", + "unordered_map": "cpp", + "vector": "cpp", + "exception": "cpp", + "algorithm": "cpp", + "functional": "cpp", + "iterator": "cpp", + "memory": "cpp", + "memory_resource": "cpp", + "numeric": "cpp", + "optional": "cpp", + "random": "cpp", + "string": "cpp", + "string_view": "cpp", + "system_error": "cpp", + "tuple": "cpp", + "type_traits": "cpp", + "utility": "cpp", + "fstream": "cpp", + "initializer_list": "cpp", + "iomanip": "cpp", + "iosfwd": "cpp", + "istream": "cpp", + "limits": "cpp", + "ostream": "cpp", + "ranges": "cpp", + "sstream": "cpp", + "stdexcept": "cpp", + "streambuf": "cpp", + "typeinfo": "cpp" + } +} \ No newline at end of file diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 000000000..2e21ff403 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,37 @@ +cff-version: 3.0.0-alpha +message: "If you use this software in your work, please cite it as below." +authors: +- family-names: "Dorheim" + given-names: "Kalyn" + orcid: "https://orcid.org/0000-0001-8093-8397" +- family-names: "Bond-Lamberty" + given-names: "Ben" + orcid: "https://orcid.org/0000-0001-9525-4633" +- family-names: "Hartin" + given-names: "Corinne" + orcid: "https://orcid.org/0000-0003-1834-6539" +- family-names: "Link" + given-names: "Robert" + orcid: "https://orcid.org/0000-0002-7071-248X" +- family-names: "Nicholson" + given-names: "Mat" +- family-names: "Pralit" + given-names: "Patel" + orcid: "https://orcid.org/0000-0003-3992-1061" +- family-names: "Pressburger" + given-names: "Leeya" + orcid: "https://orcid.org/0000-0002-6850-2504" +- family-names: "Shiklomanov" + given-names: "Alexey" + orcid: "https://orcid.org/0000-0003-4022-5979" +- family-names: "Vega-Westhoff" + given-names: "Benjamin" + orcid: "https://orcid.org/0000-0001-7881-8388" +- family-names: "Woodard" + given-names: "Dawn" + orcid: "https://orcid.org/0000-0002-0468-4660" +title: "Hector a simple carbon-climate model" +version: 3.0.0-alpha +doi: TODO +date-released: TODO +url: "https://github.com/jgcri/hector" \ No newline at end of file diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..8509e596a --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,133 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, +and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall +community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or +advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email +address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a +professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards +of acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies +when an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the project leads, [Kalyn Dorheim](mailto:kalyn.dorheim@pnnl.gov) +and/or [Ben Bond-Lamberty](mailto:bondlamberty@pnnl.gov). +All complaints will be reviewed and investigated promptly and fairly. + +Community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +This code of conduct, including the consequences laid out below, applies equally +to the community leaders, of course. Any temporary or permanent ban will result +in the person in question being removed from the leadership. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of +actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, +available at https://www.contributor-covenant.org/version/2/0/ +code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct +enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at https:// +www.contributor-covenant.org/translations. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 82a52d81b..000000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,40 +0,0 @@ -# How to contribute - -We welcome third-party patches, which are essential for advancing the science and architecture of Hector. -But there are a few guidelines that we ask contributors to follow, guidelines that ease the maintainers' organizational and logistical duties, while encouraging development by others. - -## Getting Started - -* Make sure you have a [GitHub account](https://github.com/signup/free). -* **Open an issue** describing your proposed change or work (after making sure one does not already exist). - * Clearly describe the issue including steps to reproduce when it is a bug. - * Discuss how your change will affect Hector, and thus whether it's MAJOR, MINOR, or a PATCH. - * Interact with the project maintainers to refine/change/prioritize your issue and identify what branch will be targeted (see below). -* Trivial changes to comments or documentation do not require creating a new issue. -* Fork the repository on GitHub. - -## Making Changes - -* **Start your work on the correct branch**. - * Active branches are based on Hector's [version numbering system](https://github.com/JGCRI/hector/wiki/VersionNumbers). - * If your change is a PATCH, it will typically be based on the current dev branch; if MINOR, the next minor release branch; if MAJOR, the next major release branch. For example, as of this writing there are branches `dev`, `rc1.2` and `rc2.0`, corresponding to the PATCH-MINOR-MAJOR start points respectively. - * We will never accept pull requests to the `master` branch. -* Follow Hector's [coding style](https://github.com/JGCRI/hector/wiki/StyleGuide). -* Check for unnecessary whitespace with `git diff --check` before committing. -* Make sure your commit messages are descriptive but succinct, describing what was changed and why, and **reference the relevant issue number**. Make commits of logical units. -* Make sure you have added the necessary tests for your changes. -* Run _all_ the tests to assure nothing else was accidentally broken. - -## Submitting Changes - -* Push your changes to your fork of the repository. -* Submit a pull request to the main Hector repository. -* **Your pull request should include one of the following two statements**: - * You own the copyright on the code being contributed, and you hereby grant PNNL unlimited license to use this code in this version or any future version of Hector. You reserve all other rights to the code. - * Somebody else owns the copyright on the code being contributed (e.g., your employer because you did it as part of your work for them); you are authorized by that owner to grant PNNL an unlimited license to use this code in this version or any future version of Hector, and you hereby do so. All other rights to the code are reserved by the copyright owner. -* The core team looks at Pull Requests on a regular basis, and will respond as soon as possible. - -# Additional Resources - -* [General GitHub documentation](http://help.github.com/) -* [GitHub pull request documentation](http://help.github.com/send-pull-requests/) diff --git a/DESCRIPTION b/DESCRIPTION index 4c0c32734..a8baeb234 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,30 +1,47 @@ Package: hector Title: The Hector Simple Climate Model -Version: 2.5.0 -Authors@R: c(person("Robert", "Link", - email = "robert.link@pnnl.gov", - role = "aut", - comment = c(ORCID = "0000-0002-7071-248X")), +Version: 3.0.0 +Authors@R: c(person("Kalyn", "Dorheim", + email = "kalyn.dorheim@pnnl.gov", + role = c("aut", "cre"), + comment = c(ORCID = "0000-0001-8093-8397")), + person("Ben", "Bond-Lamberty", + email = "bondlamberty@pnnl.gov", + role = "aut", + comment = c(ORCID = "0000-0001-9525-4633")), + person("Skylar", "Gering", + email = "sgering@g.hmc.edu", + role = "ctb", + comment = c(ORCID = "0000-0003-1974-3966")), person("Corinne", "Hartin", email = "hartin.corinne@epa.gov", role = "ctb", comment = c(ORCID = "0000-0003-1834-6539")), - person("Ben", "Bond-Lamberty", - email = "bondlamberty@pnnl.gov", - role = "ctb", - comment = c(ORCID = "0000-0001-9525-4633")), - person("Kalyn", "Dorheim", - email = "kalyn.dorheim@pnnl.gov", - role = "cre", - comment = c(ORCID = "0000-0001-8093-8397")), + person("Robert", "Link", + role = "ctb", + comment = c(ORCID = "0000-0002-7071-248X")), + person("Mat", "Nicholson", + role = "ctb", + comment = c(github = "mnichol3")), person("Pralit", "Patel", email = "pralit.patel@pnnl.gov", role = "ctb", comment = c(ORCID = "0000-0003-3992-1061")), + person("Leeya", "Pressburger", + email = "leeya.pressburger@pnnl.gov", + role = c("ctb", "dtc"), + comment = c(ORCID = "0000-0002-6850-2504")), person("Alexey", "Shiklomanov", email = "alexey.shiklomanov@nasa.gov", role = "ctb", - comment = c(ORCID = "0000-0003-4022-5979"))) + comment = c(ORCID = "0000-0003-4022-5979")), + person("Benjamin", "Vega-Westhoff", + role = "ctb", + comment = c(ORCID = "0000-0001-7881-8388")), + person("Dawn", "Woodard", + email = "dawn.woodard@pnnl.gov", + role = "ctb", + comment = c(ORCID = "0000-0002-0468-4660"))) Description: Provides an R interface for the Hector Simple Climate Model. Using this interface you can set up and initialize the model, change model parameters and emissions inputs, run Hector, and @@ -35,22 +52,26 @@ License: GPL-3 Encoding: UTF-8 LazyData: true LinkingTo: Rcpp, BH -Imports: Rcpp (>= 0.12), BH (>= 1.69) +Imports: Rcpp (>= 0.12) Suggests: testthat, - nleqslv, knitr, + lintr (>= 3.0), rmarkdown, ggplot2, - magrittr (>= 1.5), - ragg, - here + magrittr (>= 1.5) Collate: - 'aadoc.R' 'RcppExports.R' + 'aadoc.R' 'biome.R' + 'fxns.R' 'hector.R' 'messages.R' 'units.R' VignetteBuilder: knitr -RoxygenNote: 7.1.1 +Config/Needs/website: kableExtra, nleqslv +RoxygenNote: 7.2.3 +SystemRequirements: GNU make +URL: https://github.com/JGCRI/hector, https://jgcri.github.io/hector/ +BugReports: https://github.com/JGCRI/hector/issues +Language: en-US diff --git a/NAMESPACE b/NAMESPACE index 8f3efbf80..0994de054 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -3,13 +3,7 @@ S3method(format,hcore) S3method(print,hcore) export(AERO_SCALE) -export(ATMOSPHERIC_C) -export(ATMOSPHERIC_CH4) export(ATMOSPHERIC_CO2) -export(ATMOSPHERIC_N2O) -export(ATMOSPHERIC_O3) -export(ATM_OCEAN_FLUX_HL) -export(ATM_OCEAN_FLUX_LL) export(BETA) export(C2F6_CONSTRAIN) export(CCL4_CONSTRAIN) @@ -24,12 +18,48 @@ export(CH3CCL3_CONSTRAIN) export(CH3CL_CONSTRAIN) export(CH4_CONSTRAIN) export(CO2_CONSTRAIN) +export(CO3) export(CO3_HL) export(CO3_LL) +export(CONCENTRATIONS_CH4) +export(CONCENTRATIONS_CO2) +export(CONCENTRATIONS_N2O) +export(CONCENTRATIONS_O3) +export(DACCS_UPTAKE) +export(DELTA_C2F6) +export(DELTA_CCL4) +export(DELTA_CF4) +export(DELTA_CFC11) +export(DELTA_CFC113) +export(DELTA_CFC114) +export(DELTA_CFC115) +export(DELTA_CFC12) +export(DELTA_CH3BR) +export(DELTA_CH3CCL3) +export(DELTA_CH3CL) +export(DELTA_CH4) +export(DELTA_CO2) +export(DELTA_HALON1211) +export(DELTA_HALON1301) +export(DELTA_HALON2402) +export(DELTA_HCFC141B) +export(DELTA_HCFC142B) +export(DELTA_HCFC22) +export(DELTA_HFC125) +export(DELTA_HFC134A) +export(DELTA_HFC143A) +export(DELTA_HFC227EA) +export(DELTA_HFC23) +export(DELTA_HFC245FA) +export(DELTA_HFC4310) +export(DELTA_N2O) +export(DELTA_SF6) export(DETRITUS_C) +export(DIC) export(DIC_HL) export(DIC_LL) export(DIFFUSIVITY) +export(EARTH_C) export(ECS) export(EMISSIONS_BC) export(EMISSIONS_C2F6) @@ -60,6 +90,7 @@ export(EMISSIONS_HFC245FA) export(EMISSIONS_HFC32) export(EMISSIONS_HFC4310) export(EMISSIONS_N2O) +export(EMISSIONS_NH3) export(EMISSIONS_NMVOC) export(EMISSIONS_NOX) export(EMISSIONS_OC) @@ -68,14 +99,14 @@ export(EMISSIONS_SO2) export(FFI_EMISSIONS) export(FLUX_INTERIOR) export(FLUX_MIXED) +export(FRAC_DECOMP_CH4) +export(FRAC_FROZEN) +export(FRAC_STATIC) +export(FTOT_CONSTRAIN) export(F_LITTERD) -export(F_LUCD) -export(F_LUCV) export(F_NPPD) export(F_NPPV) -export(GETDATA) -export(GLOBAL_TEMP) -export(GLOBAL_TEMPEQ) +export(GLOBAL_TAS) export(HALON1211_CONSTRAIN) export(HALON1301_CONSTRAIN) export(HALON2402_CONSTRAIN) @@ -91,32 +122,42 @@ export(HFC23_CONSTRAIN) export(HFC245FA_CONSTRAIN) export(HFC32_CONSTRAIN) export(HFC4310_CONSTRAIN) -export(LAND_AIR_TEMP) -export(LAND_CFLUX) +export(HL_OCEAN_UPTAKE) +export(LAND_TAS) export(LIFETIME_SOIL) export(LIFETIME_STRAT) export(LL_DEBUG) export(LL_NOTICE) +export(LL_OCEAN_UPTAKE) export(LL_SEVERE) export(LL_WARNING) +export(LO_WARMING_RATIO) export(LUC_EMISSIONS) +export(LUC_UPTAKE) export(N2O_CONSTRAIN) export(NATURAL_CH4) -export(NATURAL_SO2) export(NAT_EMISSIONS_N2O) export(NBP) +export(NBP_CONSTRAIN) export(NPP) export(NPP_FLUX0) -export(OCEAN_AIR_TEMP) export(OCEAN_C) -export(OCEAN_CFLUX) export(OCEAN_C_DO) export(OCEAN_C_HL) export(OCEAN_C_IO) export(OCEAN_C_LL) -export(OCEAN_SURFACE_TEMP) +export(OCEAN_C_ML) +export(OCEAN_PREIND_C_ID) +export(OCEAN_PREIND_C_SURF) +export(OCEAN_TAS) +export(OCEAN_UPTAKE) +export(PCO2) export(PCO2_HL) export(PCO2_LL) +export(PERMAFROST_C) +export(PERMAFROST_MU) +export(PERMAFROST_SIGMA) +export(PH) export(PH_HL) export(PH_LL) export(PREINDUSTRIAL_CH4) @@ -124,6 +165,9 @@ export(PREINDUSTRIAL_CO2) export(PREINDUSTRIAL_N2O) export(PREINDUSTRIAL_O3) export(Q10_RH) +export(Q_CO2) +export(RF_ACI) +export(RF_ALBEDO) export(RF_BC) export(RF_C2F6) export(RF_CCL4) @@ -153,22 +197,55 @@ export(RF_HFC23) export(RF_HFC245FA) export(RF_HFC32) export(RF_HFC4310) +export(RF_MISC) export(RF_N2O) +export(RF_NH3) export(RF_O3_TROP) export(RF_OC) export(RF_SF6) export(RF_SO2) -export(RF_SO2D) -export(RF_SO2I) export(RF_TOTAL) -export(RF_T_ALBEDO) export(RF_VOL) -export(SETDATA) +export(RH) +export(RHO_BC) +export(RHO_C2F6) +export(RHO_CCL4) +export(RHO_CF4) +export(RHO_CFC11) +export(RHO_CFC113) +export(RHO_CFC114) +export(RHO_CFC115) +export(RHO_CFC12) +export(RHO_CH3BR) +export(RHO_CH3CCL3) +export(RHO_CH3CL) +export(RHO_HALON1211) +export(RHO_HALON1301) +export(RHO_HALON2402) +export(RHO_HCFC141B) +export(RHO_HCFC142B) +export(RHO_HCFC22) +export(RHO_HFC125) +export(RHO_HFC134A) +export(RHO_HFC143A) +export(RHO_HFC227EA) +export(RHO_HFC23) +export(RHO_HFC245FA) +export(RHO_HFC32) +export(RHO_HFC4310) +export(RHO_NH3) +export(RHO_OC) +export(RHO_SF6) +export(RHO_SO2) export(SF6_CONSTRAIN) export(SOIL_C) -export(TEMP_HL) -export(TEMP_LL) +export(SST) +export(SST_HL) +export(SST_LL) +export(TAS_CONSTRAIN) +export(THAWEDP_C) export(TID) +export(TRACKING_DATE) export(TT) export(TU) export(TWI) @@ -176,12 +253,14 @@ export(VEG_C) export(VOLCANIC_SCALE) export(VOLCANIC_SO2) export(WARMINGFACTOR) -export(Y2000_SO2) export(create_biome) export(enddate) export(fetchvars) export(get_biome_list) +export(get_tracking_data) +export(get_tracking_data_impl) export(getdate) +export(getfxn) export(getname) export(getunits) export(isactive) @@ -196,4 +275,5 @@ export(shutdown) export(split_biome) export(startdate) importFrom(Rcpp,sourceCpp) +importFrom(utils,read.csv) useDynLib(hector) diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 000000000..db356515b --- /dev/null +++ b/NEWS.md @@ -0,0 +1,102 @@ +# hector 3.0.0 + +* Updated parameterization, incorporating latest consensus science and for best model performance relative to historical observations +* New radiative forcing calculations for consistency with AR6 +* Better and more complete software tests; many bug fixes +* Updated from RCPs to SSPs as the default included scenarios +* New net biome production (land-atmosphere carbon exchange) constraint +* New [online documentation](https://jgcri.github.io/hector/) +* Experimental implementation of permafrost implementation: models permafrost thaw as well as CO2 and CH4 release; optional and currently off by default. See [Woodard et al. 2021](https://gmd.copernicus.org/articles/14/4751/2021/gmd-14-4751-2021.pdf) +* New carbon tracking: lets users trace the origin and fate of CO2-C within Hector’s carbon cycle; optional and currently off by default see [carbon tracking example](../articles/ex_carbon_tracking.html) additional details can be found in +* All changes will be documented in Dorheim et al. in prep +* Variable name changes see [v3 variable changes](../articles/v3_output_changes.html) for more details + + +# hector 2.5.0 + +[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4721584.svg)](https://doi.org/10.5281/zenodo.4721584) + +* Register Ftalbedo as input +* Add other non CO~2~ GHG constraints +* Version of Hector that participated in [RCMIP I](https://gmd.copernicus.org/articles/13/5175/2020/) and [RCMIP II](https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2020EF001900) + + +# hector 2.3.0 + +[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3144007.svg)](https://doi.org/10.5281/zenodo.3144007) + +* Constrain atmospheric CO~2~ concentration to be equal to the + preindustrial concentration during the model spinup. The result of + this is that the concentration at the beginning of the simulation + will be equal to the value specified in the `PREINDUSTRIAL_CO2` + parameter, which was not the case previously. + +# hector 2.2.2 + +[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2667325.svg)](https://doi.org/10.5281/zenodo.2667325) + +* Fix bug that was causing requests for H~2~O forcing in the R interface + to return N~2~O forcing instead (the model internals were + unaffected). +* Fix bug that was causing API requests for halocarbon forcing to + return absolute forcing values, rather than values relative to the + base year (which is what is done for all other forcings). +* Add missing `RF_VOL` (volcanic forcing) dependency to forcing component. In practice the + missing dependency had no effect because the forcing component + already had a dependency on the SO~2~ component, which also provides + the volcanic forcing, but in the event that we ever split them up, + this will ensure that the dependency graph is still valid. (All 2.2.2 changes merged in PR #303) + +# hector 2.2.1 + +* Report global averages for land temperature, ocean air + temperature, and ocean surface temperature. +* Fix bug that prevented CH~4~ emissions from being read. + +# hector 2.2.0 + +[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2605439.svg)](https://doi.org/10.5281/zenodo.2605439) + +* Add a new parameter: `VOLCANIC_SCALE`. This parameter adjusts the + strength of the response to volcanic forcing. (PR #291) +* Add `getname()` function to return the name of a Hector core. + +# hector 2.1.0 + +* Add `reset()` function to the API. Calling this function resets a + Hector core to an earlier time, rerunning the spinup if + appropriate. (PR #243) + +# hector 2.0.0 + +[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1194360.svg)](https://doi.org/10.5281/zenodo.1194360) + +* Incorporated 1-D diffusive ocean heat model as new temperature component (DOECLIM) (PR #206) +* Bugfix: double counting halocarbon radiative forcing (PR #201) +* Bugfix: re-enabled CO~2~ concentration constraint (PR #163) +* Various changes to internals to support calling Hector from external code like `pyhector` +* Component loggers are now optional (PR #218) +* Renamed anthro emissions to ffi emissions (fossil fuel industrial) (PR #116) + +# hector 1.1.2 + +* Add `libhector` target OS X and Windows project files (it was already + available in the Linux build). This library is used when + you want to link Hector to an outside program. + +# hector 1.1.1 + +* Fix OS X build +* Update sample output files +* Add GPL license + +# hector 1.1 + +* API for linking with external models. +* Backend R scripts faster and cleaner. +* Minor bug fixes and documentation updates. + +# hector 1.0 + +* First release. Corresponds to [Hartin et al. (2015)](http://www.geosci-model-dev.net/8/939/2015/gmd-8-939-2015.pdf). + diff --git a/R/RcppExports.R b/R/RcppExports.R index 91ce7df72..3d8c0a952 100644 --- a/R/RcppExports.R +++ b/R/RcppExports.R @@ -1,21 +1,23 @@ # Generated by using Rcpp::compileAttributes() -> do not edit by hand # Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393 -#' @include aadoc.R #' @describeIn msgtype Message type for retrieving data from a component -#' @export #' @keywords internal GETDATA <- function() { .Call('_hector_GETDATA', PACKAGE = 'hector') } #' @describeIn msgtype Message type for setting data in a component -#' @export #' @keywords internal SETDATA <- function() { .Call('_hector_SETDATA', PACKAGE = 'hector') } +#' @describeIn msgtype Character used to separate biome from variable name +BIOME_SPLIT_CHAR <- function() { + .Call('_hector_BIOME_SPLIT_CHAR', PACKAGE = 'hector') +} + #' @describeIn loglevels Set logging at 'debug' level. #' @export LL_DEBUG <- function() { @@ -40,7 +42,13 @@ LL_SEVERE <- function() { .Call('_hector_LL_SEVERE', PACKAGE = 'hector') } -#' @describeIn emissions Black carbon emissions (\code{"Tg"}) +#' @describeIn parameters Start of carbon tracking (Year) +#' @export +TRACKING_DATE <- function() { + .Call('_hector_TRACKING_DATE', PACKAGE = 'hector') +} + +#' @describeIn emissions Black carbon emissions #' @export EMISSIONS_BC <- function() { .Call('_hector_EMISSIONS_BC', PACKAGE = 'hector') @@ -52,10 +60,16 @@ RF_TOTAL <- function() { .Call('_hector_RF_TOTAL', PACKAGE = 'hector') } +#' @describeIn constraints Constrain total radiative forcing +#' @export +FTOT_CONSTRAIN <- function() { + .Call('_hector_FTOT_CONSTRAIN', PACKAGE = 'hector') +} + #' @describeIn forcings Radiative forcing due to albedo #' @export -RF_T_ALBEDO <- function() { - .Call('_hector_RF_T_ALBEDO', PACKAGE = 'hector') +RF_ALBEDO <- function() { + .Call('_hector_RF_ALBEDO', PACKAGE = 'hector') } #' @describeIn forcings Radiative forcing due to CO2 @@ -64,12 +78,24 @@ RF_CO2 <- function() { .Call('_hector_RF_CO2', PACKAGE = 'hector') } -#' @describeIn forcings Radiative forcing due to N2O +#' @describeIn delta the foring tropospheric adjustments for N2O +#' @export +DELTA_CO2 <- function() { + .Call('_hector_DELTA_CO2', PACKAGE = 'hector') +} + +#' @describeIn delta the foring tropospheric adjustments for N2O #' @export RF_N2O <- function() { .Call('_hector_RF_N2O', PACKAGE = 'hector') } +#' @describeIn delta Radiative forcing due to N2O +#' @export +DELTA_N2O <- function() { + .Call('_hector_DELTA_N2O', PACKAGE = 'hector') +} + #' @describeIn forcings Radiative forcing due to stratospheric water vapor #' @export RF_H2O_STRAT <- function() { @@ -82,42 +108,72 @@ RF_O3_TROP <- function() { .Call('_hector_RF_O3_TROP', PACKAGE = 'hector') } -#' @describeIn forcings Radiative forcing due to black carbon +#' @describeIn forcings Radiative forcing due to black carbon aerosol-radiation interactions #' @export RF_BC <- function() { .Call('_hector_RF_BC', PACKAGE = 'hector') } -#' @describeIn forcings Radiative forcing due to organic carbon +#' @describeIn rho a radiative forcing efficiency for BC aerosol-radiation interactions +#' @export +RHO_BC <- function() { + .Call('_hector_RHO_BC', PACKAGE = 'hector') +} + +#' @describeIn forcings Radiative forcing due to organic carbon aerosol-radiation interactions #' @export RF_OC <- function() { .Call('_hector_RF_OC', PACKAGE = 'hector') } -#' @describeIn forcings Direct contribution of SO2 to radiative forcing +#' @describeIn rho a radiative forcing efficiency for OC aerosol-radiation interactions #' @export -RF_SO2D <- function() { - .Call('_hector_RF_SO2D', PACKAGE = 'hector') +RHO_OC <- function() { + .Call('_hector_RHO_OC', PACKAGE = 'hector') } -#' @describeIn forcings Indirect contribution of SO2 to radiative forcing +#' @describeIn forcings Radiative forcing due to NH3 aerosol-radiation interactions #' @export -RF_SO2I <- function() { - .Call('_hector_RF_SO2I', PACKAGE = 'hector') +RF_NH3 <- function() { + .Call('_hector_RF_NH3', PACKAGE = 'hector') } -#' @describeIn forcings Total contribution (direct and indirect) of SO2 to radiative forcing +#' @describeIn rho a radiative forcing efficiency for NH3 aerosol-radiation interactions +#' @export +RHO_NH3 <- function() { + .Call('_hector_RHO_NH3', PACKAGE = 'hector') +} + +#' @describeIn forcings Radiative forcing due to SO2 aerosol-radiation interactions #' @export RF_SO2 <- function() { .Call('_hector_RF_SO2', PACKAGE = 'hector') } +#' @describeIn forcings aerosol-cloud interactions, includes contributions from SO2, BC and OC +#' @export +RF_ACI <- function() { + .Call('_hector_RF_ACI', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for SO2 +#' @export +RHO_SO2 <- function() { + .Call('_hector_RHO_SO2', PACKAGE = 'hector') +} + #' @describeIn forcings Radiative forcing due to volcanic activity #' @export RF_VOL <- function() { .Call('_hector_RF_VOL', PACKAGE = 'hector') } +#' @describeIn forcings Radiative miscellaneous forcing read in from ini. +#' @export +RF_MISC <- function() { + .Call('_hector_RF_MISC', PACKAGE = 'hector') +} + RFADJ_PREFIX <- function() { .Call('_hector_RFADJ_PREFIX', PACKAGE = 'hector') } @@ -246,7 +302,7 @@ RF_HCFC141B <- function() { .Call('_hector_RF_HCFC141B', PACKAGE = 'hector') } -#' @describeIn haloforcings Radiative forcing due to HCFC-142b +#' @describeIn haloforcings Radiative forcing due to HCCFC-142b #' @export RF_HCFC142B <- function() { .Call('_hector_RF_HCFC142B', PACKAGE = 'hector') @@ -282,6 +338,324 @@ RF_CH3BR <- function() { .Call('_hector_RF_CH3BR', PACKAGE = 'hector') } +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CF4 +#' @export +RHO_CF4 <- function() { + .Call('_hector_RHO_CF4', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for C2F6 +#' @export +RHO_C2F6 <- function() { + .Call('_hector_RHO_C2F6', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-23 +#' @export +RHO_HFC23 <- function() { + .Call('_hector_RHO_HFC23', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-32 +#' @export +RHO_HFC32 <- function() { + .Call('_hector_RHO_HFC32', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-4310 +#' @export +RHO_HFC4310 <- function() { + .Call('_hector_RHO_HFC4310', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-125 +#' @export +RHO_HFC125 <- function() { + .Call('_hector_RHO_HFC125', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-134a +#' @export +RHO_HFC134A <- function() { + .Call('_hector_RHO_HFC134A', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-143a +#' @export +RHO_HFC143A <- function() { + .Call('_hector_RHO_HFC143A', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-227ea +#' @export +RHO_HFC227EA <- function() { + .Call('_hector_RHO_HFC227EA', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-254fa +#' @export +RHO_HFC245FA <- function() { + .Call('_hector_RHO_HFC245FA', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for sulfur hexafluoride +#' @export +RHO_SF6 <- function() { + .Call('_hector_RHO_SF6', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-11 +#' @export +RHO_CFC11 <- function() { + .Call('_hector_RHO_CFC11', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-12 +#' @export +RHO_CFC12 <- function() { + .Call('_hector_RHO_CFC12', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-113 +#' @export +RHO_CFC113 <- function() { + .Call('_hector_RHO_CFC113', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-114 +#' @export +RHO_CFC114 <- function() { + .Call('_hector_RHO_CFC114', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-115 +#' @export +RHO_CFC115 <- function() { + .Call('_hector_RHO_CFC115', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for carbon tetrachloride +#' @export +RHO_CCL4 <- function() { + .Call('_hector_RHO_CCL4', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for trichloroethane ' +#' @export +RHO_CH3CCL3 <- function() { + .Call('_hector_RHO_CH3CCL3', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-22 +#' @export +RHO_HCFC22 <- function() { + .Call('_hector_RHO_HCFC22', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-141b +#' @export +RHO_HCFC141B <- function() { + .Call('_hector_RHO_HCFC141B', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HCFC-142b +#' @export +RHO_HCFC142B <- function() { + .Call('_hector_RHO_HCFC142B', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for halon-1211 ' +#' @export +RHO_HALON1211 <- function() { + .Call('_hector_RHO_HALON1211', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for halon-1301 +#' @export +RHO_HALON1301 <- function() { + .Call('_hector_RHO_HALON1301', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for halon-2402 ' +#' @export +RHO_HALON2402 <- function() { + .Call('_hector_RHO_HALON2402', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for chloromethane +#' @export +RHO_CH3CL <- function() { + .Call('_hector_RHO_CH3CL', PACKAGE = 'hector') +} + +#' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for bromomethane +#' @export +RHO_CH3BR <- function() { + .Call('_hector_RHO_CH3BR', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_CF4 <- function() { + .Call('_hector_DELTA_CF4', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_C2F6 <- function() { + .Call('_hector_DELTA_C2F6', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HFC23 <- function() { + .Call('_hector_DELTA_HFC23', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing ' +#' @export +DELTA_HFC32 <- function() { + .Call('_hector_DELTA_HFC32', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HFC4310 <- function() { + .Call('_hector_DELTA_HFC4310', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HFC125 <- function() { + .Call('_hector_DELTA_HFC125', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from tratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HFC134A <- function() { + .Call('_hector_DELTA_HFC134A', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HFC143A <- function() { + .Call('_hector_DELTA_HFC143A', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HFC227EA <- function() { + .Call('_hector_DELTA_HFC227EA', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HFC245FA <- function() { + .Call('_hector_DELTA_HFC245FA', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_SF6 <- function() { + .Call('_hector_DELTA_SF6', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_CFC11 <- function() { + .Call('_hector_DELTA_CFC11', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_CFC12 <- function() { + .Call('_hector_DELTA_CFC12', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_CFC113 <- function() { + .Call('_hector_DELTA_CFC113', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_CFC114 <- function() { + .Call('_hector_DELTA_CFC114', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_CFC115 <- function() { + .Call('_hector_DELTA_CFC115', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_CCL4 <- function() { + .Call('_hector_DELTA_CCL4', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_CH3CCL3 <- function() { + .Call('_hector_DELTA_CH3CCL3', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HCFC22 <- function() { + .Call('_hector_DELTA_HCFC22', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HCFC141B <- function() { + .Call('_hector_DELTA_HCFC141B', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HCFC142B <- function() { + .Call('_hector_DELTA_HCFC142B', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HALON1211 <- function() { + .Call('_hector_DELTA_HALON1211', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HALON1301 <- function() { + .Call('_hector_DELTA_HALON1301', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_HALON2402 <- function() { + .Call('_hector_DELTA_HALON2402', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_CH3CL <- function() { + .Call('_hector_DELTA_CH3CL', PACKAGE = 'hector') +} + +#' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +#' @export +DELTA_CH3BR <- function() { + .Call('_hector_DELTA_CH3BR', PACKAGE = 'hector') +} + +#' @describeIn forcings Radiative forcing efficiency for doubling of CO2 +#' @export +Q_CO2 <- function() { + .Call('_hector_Q_CO2', PACKAGE = 'hector') +} + #' @describeIn haloemiss Emissions for CF4 #' @export EMISSIONS_CF4 <- function() { @@ -396,7 +770,7 @@ EMISSIONS_HCFC22 <- function() { .Call('_hector_EMISSIONS_HCFC22', PACKAGE = 'hector') } -#' @describeIn haloemiss Emissions for HCFC-141b +#' @describeIn haloemiss Emissions for HcFC-141b #' @export EMISSIONS_HCFC141B <- function() { .Call('_hector_EMISSIONS_HCFC141B', PACKAGE = 'hector') @@ -596,8 +970,8 @@ CH3BR_CONSTRAIN <- function() { #' @rdname methane #' @export -ATMOSPHERIC_CH4 <- function() { - .Call('_hector_ATMOSPHERIC_CH4', PACKAGE = 'hector') +CONCENTRATIONS_CH4 <- function() { + .Call('_hector_CONCENTRATIONS_CH4', PACKAGE = 'hector') } #' @describeIn constraints CH4 concentration constraint \code{"ppbv CH4"} @@ -618,6 +992,12 @@ RF_CH4 <- function() { .Call('_hector_RF_CH4', PACKAGE = 'hector') } +#' @describeIn delta Radiative forcing tropospheric adjustment for CH4 +#' @export +DELTA_CH4 <- function() { + .Call('_hector_DELTA_CH4', PACKAGE = 'hector') +} + #' @rdname methane #' @export EMISSIONS_CH4 <- function() { @@ -644,8 +1024,8 @@ LIFETIME_STRAT <- function() { #' @describeIn concentrations Atmospheric N2O concentration #' @export -ATMOSPHERIC_N2O <- function() { - .Call('_hector_ATMOSPHERIC_N2O', PACKAGE = 'hector') +CONCENTRATIONS_N2O <- function() { + .Call('_hector_CONCENTRATIONS_N2O', PACKAGE = 'hector') } #' @describeIn concentrations Preindustrial atmospheric N2O concentration @@ -680,8 +1060,8 @@ PREINDUSTRIAL_O3 <- function() { #' @describeIn concentrations Atmospheric ozone concentration #' @export -ATMOSPHERIC_O3 <- function() { - .Call('_hector_ATMOSPHERIC_O3', PACKAGE = 'hector') +CONCENTRATIONS_O3 <- function() { + .Call('_hector_CONCENTRATIONS_O3', PACKAGE = 'hector') } #' @describeIn emissions Emissions for NOx compounds (\code{"Tg N"}) @@ -708,10 +1088,16 @@ EMISSIONS_OC <- function() { .Call('_hector_EMISSIONS_OC', PACKAGE = 'hector') } +#' @describeIn emissions Emissions for NH3 (\code{"Tg"}) +#' @export +EMISSIONS_NH3 <- function() { + .Call('_hector_EMISSIONS_NH3', PACKAGE = 'hector') +} + #' @describeIn ocean Atmosphere-ocean carbon flux #' @export -OCEAN_CFLUX <- function() { - .Call('_hector_OCEAN_CFLUX', PACKAGE = 'hector') +OCEAN_UPTAKE <- function() { + .Call('_hector_OCEAN_UPTAKE', PACKAGE = 'hector') } #' @describeIn ocean Ocean total carbon pool @@ -732,6 +1118,12 @@ OCEAN_C_LL <- function() { .Call('_hector_OCEAN_C_LL', PACKAGE = 'hector') } +#' @describeIn ocean Ocean surface or mixed layer carbon pool +#' @export +OCEAN_C_ML <- function() { + .Call('_hector_OCEAN_C_ML', PACKAGE = 'hector') +} + #' @describeIn ocean Intermediate ocean carbon pool #' @export OCEAN_C_IO <- function() { @@ -744,6 +1136,18 @@ OCEAN_C_DO <- function() { .Call('_hector_OCEAN_C_DO', PACKAGE = 'hector') } +#' @describeIn ocean Preindustrial surface ocean carbon pool +#' @export +OCEAN_PREIND_C_SURF <- function() { + .Call('_hector_OCEAN_PREIND_C_SURF', PACKAGE = 'hector') +} + +#' @describeIn ocean Preindustrial intermediate+deep ocean carbon pool +#' @export +OCEAN_PREIND_C_ID <- function() { + .Call('_hector_OCEAN_PREIND_C_ID', PACKAGE = 'hector') +} + #' @describeIn ocean Thermohaline overturning #' @export TT <- function() { @@ -768,28 +1172,34 @@ TID <- function() { .Call('_hector_TID', PACKAGE = 'hector') } -#' @describeIn ocean High-latitude Ph +#' @describeIn ocean High-latitude pH #' @export PH_HL <- function() { .Call('_hector_PH_HL', PACKAGE = 'hector') } -#' @describeIn ocean Low-latitude Ph +#' @describeIn ocean Low-latitude pH #' @export PH_LL <- function() { .Call('_hector_PH_LL', PACKAGE = 'hector') } +#' @describeIn ocean Ocean surface pH +#' @export +PH <- function() { + .Call('_hector_PH', PACKAGE = 'hector') +} + #' @describeIn ocean Atmosphere-ocean carbon flux, high-latitude #' @export -ATM_OCEAN_FLUX_HL <- function() { - .Call('_hector_ATM_OCEAN_FLUX_HL', PACKAGE = 'hector') +HL_OCEAN_UPTAKE <- function() { + .Call('_hector_HL_OCEAN_UPTAKE', PACKAGE = 'hector') } #' @describeIn ocean Atmosphere-ocean carbon flux, low-latitude #' @export -ATM_OCEAN_FLUX_LL <- function() { - .Call('_hector_ATM_OCEAN_FLUX_LL', PACKAGE = 'hector') +LL_OCEAN_UPTAKE <- function() { + .Call('_hector_LL_OCEAN_UPTAKE', PACKAGE = 'hector') } #' @describeIn ocean Partial pressure of CO2, high-latitude @@ -804,28 +1214,40 @@ PCO2_LL <- function() { .Call('_hector_PCO2_LL', PACKAGE = 'hector') } +#' @describeIn ocean Ocean surface partial pressure of CO2 +#' @export +PCO2 <- function() { + .Call('_hector_PCO2', PACKAGE = 'hector') +} + #' @describeIn ocean Dissolved inorganic carbon, high-latitude #' @export DIC_HL <- function() { .Call('_hector_DIC_HL', PACKAGE = 'hector') } +#' @describeIn ocean Ocean surface dissolved inorganic carbon +#' @export +DIC <- function() { + .Call('_hector_DIC', PACKAGE = 'hector') +} + #' @describeIn ocean Dissolved inorganic carbon, low-latitude #' @export DIC_LL <- function() { .Call('_hector_DIC_LL', PACKAGE = 'hector') } -#' @describeIn ocean Ocean temperature, high-latitude +#' @describeIn ocean Absolute ocean surface temperature, high-latitude (deg C) #' @export -TEMP_HL <- function() { - .Call('_hector_TEMP_HL', PACKAGE = 'hector') +SST_HL <- function() { + .Call('_hector_SST_HL', PACKAGE = 'hector') } -#' @describeIn ocean Ocean temperature, low-latitude +#' @describeIn ocean Absolute ocean surface temperature, low-latitude (deg C) #' @export -TEMP_LL <- function() { - .Call('_hector_TEMP_LL', PACKAGE = 'hector') +SST_LL <- function() { + .Call('_hector_SST_LL', PACKAGE = 'hector') } #' @describeIn ocean Carbonate concentration, low-latitude @@ -840,10 +1262,10 @@ CO3_HL <- function() { .Call('_hector_CO3_HL', PACKAGE = 'hector') } -#' @rdname carboncycle +#' @describeIn ocean Ocean surface carbonate concentration #' @export -LAND_CFLUX <- function() { - .Call('_hector_LAND_CFLUX', PACKAGE = 'hector') +CO3 <- function() { + .Call('_hector_CO3', PACKAGE = 'hector') } #' @rdname carboncycle @@ -854,8 +1276,8 @@ NBP <- function() { #' @rdname carboncycle #' @export -ATMOSPHERIC_CO2 <- function() { - .Call('_hector_ATMOSPHERIC_CO2', PACKAGE = 'hector') +CONCENTRATIONS_CO2 <- function() { + .Call('_hector_CONCENTRATIONS_CO2', PACKAGE = 'hector') } #' @rdname carboncycle @@ -864,6 +1286,12 @@ NPP <- function() { .Call('_hector_NPP', PACKAGE = 'hector') } +#' @rdname carboncycle +#' @export +RH <- function() { + .Call('_hector_RH', PACKAGE = 'hector') +} + #' @describeIn parameters Preindustrial CO2 concentration (\code{"ppmv CO2"}) #' @export PREINDUSTRIAL_CO2 <- function() { @@ -872,8 +1300,8 @@ PREINDUSTRIAL_CO2 <- function() { #' @rdname carboncycle #' @export -ATMOSPHERIC_C <- function() { - .Call('_hector_ATMOSPHERIC_C', PACKAGE = 'hector') +ATMOSPHERIC_CO2 <- function() { + .Call('_hector_ATMOSPHERIC_CO2', PACKAGE = 'hector') } #' @rdname carboncycle @@ -882,112 +1310,156 @@ FFI_EMISSIONS <- function() { .Call('_hector_FFI_EMISSIONS', PACKAGE = 'hector') } +#' @rdname carboncycle +#' @export +DACCS_UPTAKE <- function() { + .Call('_hector_DACCS_UPTAKE', PACKAGE = 'hector') +} + #' @rdname carboncycle #' @export LUC_EMISSIONS <- function() { .Call('_hector_LUC_EMISSIONS', PACKAGE = 'hector') } +#' @rdname carboncycle +#' @export +LUC_UPTAKE <- function() { + .Call('_hector_LUC_UPTAKE', PACKAGE = 'hector') +} + #' @describeIn parameters CO2 fertilization factor (\code{"(unitless)"}) -#' @param biome Biome for which to retrieve parameter. If missing or -#' `""`, default to `"global"`. +#' @param biome Biome for which to retrieve parameter. If missing or `""`, default to `"global"`. #' @export BETA <- function(biome = "") { .Call('_hector_BETA', PACKAGE = 'hector', biome) } #' @describeIn parameters Heterotrophic respiration temperature sensitivity factor (\code{"(unitless)"}) -#' @inheritParams BETA #' @export Q10_RH <- function(biome = "") { .Call('_hector_Q10_RH', PACKAGE = 'hector', biome) } #' @describeIn parameters Biome-specific warming factor (`(unitless)`) -#' @inheritParams BETA #' @export WARMINGFACTOR <- function(biome = "") { .Call('_hector_WARMINGFACTOR', PACKAGE = 'hector', biome) } -#' @describeIn carboncycle Constrain atmospheric CO2 concentration (\code{"(ppmv CO2)"}) +#' @describeIn carboncycle Constrain atmospheric CO2 concentration (\code{"(ppmv CO2)"}) #' @export CO2_CONSTRAIN <- function() { .Call('_hector_CO2_CONSTRAIN', PACKAGE = 'hector') } +#' @describeIn carboncycle Constrain net biome production (land-atmosphere flux) (\code{"(PgC/yr)"}) +#' @export +NBP_CONSTRAIN <- function() { + .Call('_hector_NBP_CONSTRAIN', PACKAGE = 'hector') +} + #' @describeIn parameters NPP fraction to vegetation (\code{"(unitless)"}) -#' @inheritParams BETA #' @export F_NPPV <- function(biome = "") { .Call('_hector_F_NPPV', PACKAGE = 'hector', biome) } #' @describeIn parameters NPP fraction to detritus (\code{"(unitless)"}) -#' @inheritParams BETA #' @export F_NPPD <- function(biome = "") { .Call('_hector_F_NPPD', PACKAGE = 'hector', biome) } #' @describeIn parameters Litter fraction to detritus (\code{"(unitless)"}) -#' @inheritParams BETA #' @export F_LITTERD <- function(biome = "") { .Call('_hector_F_LITTERD', PACKAGE = 'hector', biome) } -#' @describeIn parameters LUC fraction to vegetation (\code{"(unitless)"}) -#' @export -F_LUCV <- function() { - .Call('_hector_F_LUCV', PACKAGE = 'hector') -} - -#' @describeIn parameters LUC fraction to detritus (\code{"(unitless)"}) -#' @export -F_LUCD <- function() { - .Call('_hector_F_LUCD', PACKAGE = 'hector') -} - #' @describeIn carboncycle Vegetation C pool (`"Pg C"`) -#' @inheritParams BETA +#' @param biome Name of biome (leave empty for global) #' @export VEG_C <- function(biome = "") { .Call('_hector_VEG_C', PACKAGE = 'hector', biome) } #' @describeIn carboncycle Vegetation detritus C pool (`"Pg C"`) -#' @inheritParams BETA +#' @param biome Name of biome (leave empty for global) #' @export DETRITUS_C <- function(biome = "") { .Call('_hector_DETRITUS_C', PACKAGE = 'hector', biome) } #' @describeIn carboncycle Soil C pool (`"Pg C"`) -#' @inheritParams BETA +#' @param biome Name of biome (leave empty for global) #' @export SOIL_C <- function(biome = "") { .Call('_hector_SOIL_C', PACKAGE = 'hector', biome) } -#' @describeIn carboncycle Initial net primary productivity (NPP) -#' flux (`"Pg C year^-1"`) -#' @inheritParams BETA +#' @describeIn carboncycle Permafrost C pool (`"Pg C"`) +#' @param biome Name of biome (leave empty for global) #' @export -NPP_FLUX0 <- function(biome = "") { - .Call('_hector_NPP_FLUX0', PACKAGE = 'hector', biome) +PERMAFROST_C <- function(biome = "") { + .Call('_hector_PERMAFROST_C', PACKAGE = 'hector', biome) } -#' @rdname so2 +#' @describeIn carboncycle Thawed permafrost C pool (`"Pg C"`) +#' @param biome Name of biome (leave empty for global) #' @export -NATURAL_SO2 <- function() { - .Call('_hector_NATURAL_SO2', PACKAGE = 'hector') +THAWEDP_C <- function(biome = "") { + .Call('_hector_THAWEDP_C', PACKAGE = 'hector', biome) } -#' @rdname so2 +#' @describeIn carboncycle Fraction of permafrost still frozen (\code{"(unitless)"}) +#' @param biome Name of biome (leave empty for global) +#' @export +FRAC_FROZEN <- function(biome = "") { + .Call('_hector_FRAC_FROZEN', PACKAGE = 'hector', biome) +} + +#' @describeIn carboncycle Fraction of thawed permafrost that is static (\code{"(unitless)"}) +#' @param biome Name of biome (leave empty for global) +#' @export +FRAC_STATIC <- function(biome = "") { + .Call('_hector_FRAC_STATIC', PACKAGE = 'hector', biome) +} + +#' @describeIn carboncycle Permafrost thaw mu parameter (\code{"(unitless)"}) +#' @param biome Name of biome (leave empty for global) +#' @note See Woodard et al. (2021) +#' @export +PERMAFROST_MU <- function(biome = "") { + .Call('_hector_PERMAFROST_MU', PACKAGE = 'hector', biome) +} + +#' @describeIn carboncycle Permafrost thaw sigma parameter (\code{"(unitless)"}) +#' @param biome Name of biome (leave empty for global) +#' @note See Woodard et al. (2021) +#' @export +PERMAFROST_SIGMA <- function(biome = "") { + .Call('_hector_PERMAFROST_SIGMA', PACKAGE = 'hector', biome) +} + +#' @describeIn carboncycle Methane fraction of permafrost decomposition (\code{"(unitless)"}) +#' @param biome Name of biome (leave empty for global) #' @export -Y2000_SO2 <- function() { - .Call('_hector_Y2000_SO2', PACKAGE = 'hector') +FRAC_DECOMP_CH4 <- function(biome = "") { + .Call('_hector_FRAC_DECOMP_CH4', PACKAGE = 'hector', biome) +} + +#' @rdname carboncycle +#' @export +EARTH_C <- function() { + .Call('_hector_EARTH_C', PACKAGE = 'hector') +} + +#' @describeIn carboncycle Initial net primary productivity (NPP)flux (`"Pg C year^-1"`) +#' @param biome Name of biome (leave empty for global) +#' @export +NPP_FLUX0 <- function(biome = "") { + .Call('_hector_NPP_FLUX0', PACKAGE = 'hector', biome) } #' @rdname so2 @@ -1020,34 +1492,40 @@ VOLCANIC_SCALE <- function() { .Call('_hector_VOLCANIC_SCALE', PACKAGE = 'hector') } -#' @describeIn temperature Global mean temperature +#' @describeIn temperature Global mean air temperature anomaly +#' @export +GLOBAL_TAS <- function() { + .Call('_hector_GLOBAL_TAS', PACKAGE = 'hector') +} + +#' @describeIn temperature Average sea surface temperature anomaly #' @export -GLOBAL_TEMP <- function() { - .Call('_hector_GLOBAL_TEMP', PACKAGE = 'hector') +SST <- function() { + .Call('_hector_SST', PACKAGE = 'hector') } -#' @describeIn temperature Equilibrium global temperature +#' @describeIn temperature Average air temperature anomaly over the ocean #' @export -GLOBAL_TEMPEQ <- function() { - .Call('_hector_GLOBAL_TEMPEQ', PACKAGE = 'hector') +OCEAN_TAS <- function() { + .Call('_hector_OCEAN_TAS', PACKAGE = 'hector') } -#' @describeIn temperature Average ocean surface temperature anomaly +#' @describeIn temperature Average air temperature anomaly over land, land surface temperature and air temperature over land are assumed to be equivalent. #' @export -OCEAN_SURFACE_TEMP <- function() { - .Call('_hector_OCEAN_SURFACE_TEMP', PACKAGE = 'hector') +LAND_TAS <- function() { + .Call('_hector_LAND_TAS', PACKAGE = 'hector') } -#' @describeIn temperature Average ocean air temperature anomaly +#' @describeIn parameters Land-Ocean Warming Ratio (\code{"(unitless)"}), by default set to 0 meaning that the land ocean warming ratio is an emergent property of Hector's temperature component otherwise the user defined land ocean warming ratio will be used. #' @export -OCEAN_AIR_TEMP <- function() { - .Call('_hector_OCEAN_AIR_TEMP', PACKAGE = 'hector') +LO_WARMING_RATIO <- function() { + .Call('_hector_LO_WARMING_RATIO', PACKAGE = 'hector') } -#' @describeIn temperature Average land temperature anomaly +#' @describeIn constraints Constrain global mean temperature (\code{"(degC)"}) #' @export -LAND_AIR_TEMP <- function() { - .Call('_hector_LAND_AIR_TEMP', PACKAGE = 'hector') +TAS_CONSTRAIN <- function() { + .Call('_hector_TAS_CONSTRAIN', PACKAGE = 'hector') } #' @describeIn parameters Ocean heat diffusivity (\code{"cm2/s"}) @@ -1074,23 +1552,19 @@ HEAT_FLUX <- function() { .Call('_hector_HEAT_FLUX', PACKAGE = 'hector') } -#' @describeIn msgtype Character used to separate biome from variable name -BIOME_SPLIT_CHAR <- function() { - .Call('_hector_BIOME_SPLIT_CHAR', PACKAGE = 'hector') -} - newcore_impl <- function(inifile, loglevel, suppresslogging, name) { .Call('_hector_newcore_impl', PACKAGE = 'hector', inifile, loglevel, suppresslogging, name) } -#' Shutdown a hector instance +#' Shut down a hector instance #' -#' Shutting down an instance will free the instance itself and all of the objects it created. Any attempted -#' operation on the instance after that will raise an error. +#' Shutting down an instance will free the instance itself and all of the +#' objects it created. Any attempted operation on the instance after that will +#' raise an error. #' #' @section Caution: -#' This function should be called as \code{mycore <- shutdown(mycore)} so that the change -#' from active to inactive will be recorded in the caller. +#' This function should be called as \code{mycore <- shutdown(mycore)} so that +#' the change from active to inactive will be recorded in the caller. #' #' @param core Handle to a Hector instance #' @return The Hector instance handle @@ -1102,16 +1576,15 @@ shutdown <- function(core) { #' Reset a Hector instance to an earlier date #' -#' Resetting the model returns it to its state at a previous time. If the requested time -#' is before the model start date (any value will do; conventionally zero is used), then -#' the spinup will be rerun, and the model will be -#' left ready to run at the start date. (By contrast, resetting \emph{to} the start -#' date leaves the model ready to run at the start date, but without having rerun the -#' spinup.) +#' Resetting the model returns it to its state at a previous time. If the +#' requested time is before the model start date, then the spinup will be +#' rerun, and the model will be left ready to run at the start date. (By +#' contrast, resetting \emph{to} the start date leaves the model ready to run +#' at the start date, but without having rerun the spinup.) #' #' @param core Handle for the Hector instance that is to be reset. -#' @param date Date to reset to. The default is to reset to the model start date with -#' a rerun of the spinup. +#' @param date Date to reset to. The default is to reset to the model start +#' date with a rerun of the spinup. #' @family main user interface functions #' @export reset <- function(core, date = 0) { @@ -1120,12 +1593,12 @@ reset <- function(core, date = 0) { #' Run the Hector climate model #' -#' Run Hector up through the specified time. This function does not return the results -#' of the run. To get results, run \code{fetch}. +#' Run Hector up through the specified time. This function does not return the +#' results of the run. To get results, run \code{fetch}. #' #' @param core Handle to the Hector instance that is to be run. -#' @param runtodate Date to run to. The default is to run to the end date configured -#' in the input file used to initialize the core. +#' @param runtodate Date to run to. The default is to run to the end date +#' configured in the input file used to initialize the core. #' @return The Hector instance handle #' @export #' @family main user interface functions @@ -1141,6 +1614,14 @@ getdate <- function(core) { .Call('_hector_getdate', PACKAGE = 'hector', core) } +#' Retrieve the tracking data for a Hector instance +#' +#' @param core Handle to the Hector instance. +#' @export +get_tracking_data_impl <- function(core) { + .Call('_hector_get_tracking_data_impl', PACKAGE = 'hector', core) +} + #' Retrieve the current list of biomes for a Hector instance #' #' @param core Handle to the Hector instance from which to retrieve @@ -1183,33 +1664,27 @@ rename_biome <- function(core, oldname, newname) { #' Send a message to a Hector instance #' #' Messages are the mechanism used to get data from Hector model components and -#' to set values within components. -#' -#' A message comprises a type (e.g. GETDATA to retrieve data from a component, or SETDATA to -#' set data in a component), a capability, which identifies the information to be operated -#' on (e.g. Atmospheric CO2 concentration, or global total radiative forcing), and an optional +#' to set values within components. A message comprises a type (e.g. GETDATA +#' to retrieve data from a component, or SETDATA to set data in a component), +#' a capability, which identifies the information to be operated on (e.g. +#' Atmospheric CO2 concentration, or global total radiative forcing), and an optional #' structure of extra data (comprising a date and a numerical value with units). -#' -#' The arguments to this function are organized in a slightly more R-friendly way. The message -#' type and capability are each passed as a single string. The date portion of the extra -#' data is passed as a numeric vector (one message will be generated for each date). The value -#' portion of the extra data is a numeric vector with a length of either 1 or the same length -#' as the date vector. The units portion is a single string (we don't support sending a vector -#' of values with heterogeneous units in a single call. -#' -#' Either the date or the value (or both) may be NA. The date should be NA in cases where the -#' parameter being referenced doesn't change with time. The value should be NA in cases where -#' the optional data will be ignored. +#' The arguments to this function are organized in a slightly more R-friendly +#' way. The message type and capability are each passed as a single string. +#' The date portion of the extra data is passed as a numeric vector (one +#' message will be generated for each date). The value portion of the extra +#' data is a numeric vector with a length of either 1 or the same length as the +#' date vector.The units portion is a single string (we don't support sending a +#' vector of values with heterogeneous units in a single call. Either the date +#' or the value (or both) may be NA. The date should be NA in cases where the +#' parameter being referenced doesn't change with time. The value should be NA in cases +#' where the optional data will be ignored. #' #' @param core a Hector instance #' @param msgtype (String) type of message. Usually either GETDATA or SETDATA -#' @param capability (String) capability being targeted by the message. The core will use -#' this information to look up the component to route the message to. -#' @param date (NumericVector) Date for which to set/get the variable. Use NA if there is -#' no applicable date. -#' @param value (NumericVector) Numeric portion of the optional data (in case of setting -#' a value this will be the value to set). The length of this vector should match that of -#' the time, or it should be length 1 (in which case it will be recycled). +#' @param capability (String) capability being targeted by the message +#' @param date (NumericVector or NA) Date for which to set/get the variable +#' @param value (NumericVector) Numeric value of the optional data #' @param unit (String) Unit for the value vector. #' @export sendmessage <- function(core, msgtype, capability, date, value, unit) { diff --git a/R/aadoc.R b/R/aadoc.R index c26e71241..b23a73ea9 100644 --- a/R/aadoc.R +++ b/R/aadoc.R @@ -20,7 +20,7 @@ NULL #' #' @section Note: #' Because these identifiers are provided as \code{#define} macros in the hector code, -#' these identifiers are provided in the R interface as function. Therefore, +#' these identifiers are provided in the R interface as functions. Therefore, #' these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} #' instead of the more natural looking \code{GETDATA}. #' @@ -30,14 +30,44 @@ NULL #' Identifiers for capabilities in the Hector forcing component #' #' These identifiers specify forcing values that can be provided by hector via -#' the forcing component. All of the values corresponding to these identifiers +#' the forcing component. All of the values corresponding to these identifiers #' are read-only (\emph{i.e.}, they can only appear in \code{\link{GETDATA}} #' messages.) #' #' @inheritSection msgtype Note #' #' @name forcings -#' @seealso \link{haloforcings} for forcings from halocarbons. +#' @seealso \link{haloforcings} for forcings from halocarbons and \link{rho} for +#' parameters related to radiative forcing efficiency. +#' @family capability identifiers +NULL + +#' Identifiers for Hector forcing component parameters +#' +#' These identifiers specify radiative forcing efficiency in hector these values +#' can be read and/or set by hectors forcing and halocarbon components. +#' the forcing component. +#' +#' @inheritSection msgtype Note +#' +#' @name rho +#' @seealso \link{haloforcings} for forcings from halocarbons and \link{forcings} forcing +#' values provided from the hector forcing component. +#' @family capability identifiers +NULL + +#' Identifiers for Hector forcing component parameters +#' +#' These identifiers specify the tropospheric adjustments for the +#' stratospheric-temperature adjusted radiative forcings. +#' These values must be a number between -1 and 1, and +#' can be read and/or set by hectors forcing and halocarbon components. +#' +#' @inheritSection msgtype Note +#' +#' @name delta +#' @seealso \link{haloforcings} for forcings from halocarbons and \link{forcings} forcing +#' values provided from the hector forcing component. #' @family capability identifiers NULL @@ -49,22 +79,28 @@ NULL #' @section Output variables: #' These variables can be read using the \code{\link{GETDATA}} message type: #' \describe{ -#' \item{ATMOSPHERIC_CO2}{Atmospheric CO2 concentration} -#' \item{ATMOSPHERIC_C}{Atmospheric carbon pool} -#' \item{LAND_CFLUX}{Annual global C flux from atmosphere into the land. A -#' positive value means a net flux from atmosphere into land (i.e. land is a -#' net carbon sink), while a negative value means a net flux from land into -#' the atmosphere (i.e. land is a net carbon source)} -#' \item{NBP}{Net biome production (synonymous with \code{LAND_CFLUX}). Note -#' that despite the name, this is currently a globally-averaged variable.} +#' \item{CONCENTRATIONS_CO2}{Atmospheric CO2 concentration} +#' \item{ATMOSPHERIC_CO2}{Atmospheric CO2 in units of C} +#' \item{NBP}{Net biome production. Annual global C flux from atmosphere into +#' the land. A positive value means a net flux from atmosphere into land +#' (i.e. land is a net carbon sink), while a negative value means a net flux +#' from land into the atmosphere (i.e. land is a net carbon source). Note +#' that despite the name--which follows disciplinary convention, see Chapin +#' et al. 2006--this is currently a globally-averaged variable.} #' \item{FFI_EMISSIONS}{Fossil fuel and industrial emissions} #' \item{LUC_EMISSIONS}{Land use change emissions} +#' \item{NPP}{Net primary production} +#' \item{RH}{Heterotrophic respiration} +#' \item{EARTH_C}{Earth pool} #' } #' @section Input variables: #' \describe{ #' \item{FFI_EMISSIONS}{Fossil fuel and industrial emissions (\code{"Pg C/yr"})} #' \item{LUC_EMISSIONS}{Land use change emissions (\code{"Pg C/yr"})} #' \item{CO2_CONSTRAIN}{Prescribed atmospheric CO2 concentration (\code{"ppmv CO2"})} +#' \item{NBP_CONSTRAIN}{Prescribed net biome production (land-atmosphere C flux) (\code{"Pg C/yr"})} +#' \item{DACCS_UPTAKE}{Direct air carbon capture and storage} +#' \item{LUC_UPTAKE}{Land use change uptake} #' } #' @inheritSection msgtype Note #' @name carboncycle @@ -76,7 +112,7 @@ NULL #' Identifiers for halocarbon forcings #' #' These identifiers specify forcing values that can be provided by hector via -#' one of the myriad halocarbon components. All of the values corresponding to +#' one of the myriad halocarbon components. All of the values corresponding to #' these identifiers are read-only (\emph{i.e.}, they can only appear in #' \code{\link{GETDATA}} messages.) The forcings returned are the #' \emph{relative} forcings, with the base year (typically 1750) values @@ -91,9 +127,9 @@ NULL #' Identifiers for halocarbon emissions #' -#' These identifiers correspond to emissions values for halocarbons. They are +#' These identifiers correspond to emissions values for halocarbons. They are #' (for now) write only, meaning they can only appear in \code{\link{SETDATA}} -#' messages. In all cases, the expected input units are gigagrams +#' messages. In all cases, the expected input units are gigagrams #' (\code{"Gg"}). #' #' @inheritSection msgtype Note @@ -114,14 +150,15 @@ NULL #' @family capability identifiers NULL -#' Identifiers for concentration constraints +#' Identifiers for constraints #' -#' These identifiers correspond to concentration constraints. +#' These identifiers correspond to Hector's constraint capabilities #' #' @inheritSection msgtype Note #' #' @name constraints #' @family capability identifiers +#' @seealso haloconstrains NULL #' Identifiers for quantities in the methane component @@ -132,17 +169,18 @@ NULL #' @section Output variables: #' These variables can be read from the methane component. #' \describe{ -#' \item{ATMOSPHERIC_CH4}{Atmospheric methane concentration} +#' \item{CONCENTRATIONS_CH4}{Atmospheric methane concentration} #' \item{PREINDUSTRIAL_CH4}{Preindustrial methane concentration} #' } #' #' #' @section Input variables: -#' These variables can be set in the methane component. The expected units string is given after -#' each description. +#' These variables can be set in the methane component. The expected units +#' string is given after each description. #' \describe{ #' \item{EMISSIONS_CH4}{Methane emissions (\code{"Tg CH4"})} #' \item{PREINDUSTRIAL_CH4}{Preindustrial methane concentration (\code{"ppbv CH4"})} +#' \item{CH4_CONSTRAIN}{N2O concentration constraint (\code{"ppbv CH4"})} #' \item{NATURAL_CH4}{Natural methane emissions (\code{"Tg CH4"})} #' \item{LIFETIME_SOIL}{Time scale for methane loss into soil (\code{"Years"})} #' \item{LIFETIME_STRAT}{Time scale for methane loss into stratosphere (\code{"Years"})} @@ -215,14 +253,14 @@ NULL #' Identifiers for model parameters #' #' These identifiers correspond to settable parameters that change the model -#' behavior and are subject to uncertainty. All of these can be set using the -#' \code{\link{SETDATA}} message type. Changing any of these parameters will +#' behavior and are subject to uncertainty. All of these can be set using the +#' \code{\link{SETDATA}} message type. Changing any of these parameters will #' typically invalidate the hector core's internal state; therefore, after #' setting one or more of these values you should call \code{\link{reset}} before -#' attempting to run the model again. This will rerun the spinup and produce a -#' new internally consistent state. Attempting to run the model without resetting -#' first will usually produce an error (often with a message about failing to conserve -#' mass). +#' attempting to run the model again. This will rerun the spinup and produce a +#' new internally consistent state. Attempting to run the model without resetting +#' first will usually produce an error (often with a message about failing to +#' conserve mass). #' #' @inheritSection msgtype Note #' @name parameters @@ -238,3 +276,39 @@ NULL #' @name temperature #' @family capability identifiers NULL + +#' A data.frame containing information on all of the Hector inputs listed in +#' an ini file created by save-input-params.R. +#' +#' @format A data.frame of 8 columns and 222 rows. +#' \describe{ +#' \item{section}{String of the section of the ini file of a parameter} +#' \item{parameter}{String of the parameter name} +#' \item{biome.specific}{String of whether or not the parameter is biome-specific} +#' \item{time.variant}{String of whether or not the parameter is time-variant} +#' \item{required}{String of wheterh or not the parameter is required} +#' \item{default}{String of the default value of the parameter} +#' \item{units}{String of the parameter units} +#' \item{description}{String of a brief description of the parameter from the ini file} +#' } +"inputstable" + +#' A data.frame containing information on all of the Hector variable created by units-data.R +#' used within the getunits function. +#' +#' @format A data.frame of 2 columns and 114 rows. +#' \describe{ +#' \item{variable}{String of the hector variable} +#' \item{units}{String of the unit value} +#' } +"unitstable" + + +#' A data.frame containing information R hector function name and hector string names. +#' +#' @format A data.frame of 2 columns and 239 rows. +#' \describe{ +#' \item{fxn}{String of the R hector function name} +#' \item{string}{String of variable name} +#' } +"fxntable" diff --git a/R/biome.R b/R/biome.R index 5f15882e9..3f45b171c 100644 --- a/R/biome.R +++ b/R/biome.R @@ -5,6 +5,7 @@ #' @param veg_c0 Initial vegetation C pool #' @param detritus_c0 Initial detritus C pool #' @param soil_c0 Initial soil C pool +#' @param permafrost_c0 Initial permafrost C pool #' @param npp_flux0 Initial net primary productivity #' @param warmingfactor Temperature multiplier (default = #' `1.0`) @@ -17,26 +18,23 @@ #' @author Alexey Shiklomanov #' @export create_biome <- function(core, biome, - veg_c0, detritus_c0, soil_c0, + veg_c0, detritus_c0, soil_c0, permafrost_c0, npp_flux0, - warmingfactor = 1, - beta = 0.36, - q10_rh = 2.0, - f_nppv = 0.35, - f_nppd = 0.60, - f_litterd = 0.98) { - create_biome_impl(core, biome) - setvar(core, 0, VEG_C(biome), veg_c0, "Pg C") - setvar(core, 0, DETRITUS_C(biome), detritus_c0, "Pg C") - setvar(core, 0, SOIL_C(biome), soil_c0, "Pg C") - setvar(core, NA, NPP_FLUX0(biome), npp_flux0, "Pg C/yr") - setvar(core, NA, WARMINGFACTOR(biome), warmingfactor, NA) - setvar(core, NA, BETA(biome), beta, NA) - setvar(core, NA, Q10_RH(biome), q10_rh, NA) - setvar(core, NA, F_NPPV(biome), f_nppv, NA) - setvar(core, NA, F_NPPD(biome), f_nppd, NA) - setvar(core, NA, F_LITTERD(biome), f_litterd, NA) - invisible(core) + warmingfactor, beta, q10_rh, + f_nppv, f_nppd, f_litterd) { + create_biome_impl(core, biome) + setvar(core, 0, VEG_C(biome), veg_c0, "Pg C") + setvar(core, 0, DETRITUS_C(biome), detritus_c0, "Pg C") + setvar(core, 0, SOIL_C(biome), soil_c0, "Pg C") + setvar(core, 0, PERMAFROST_C(biome), permafrost_c0, "Pg C") + setvar(core, NA, NPP_FLUX0(biome), npp_flux0, "Pg C/yr") + setvar(core, NA, WARMINGFACTOR(biome), warmingfactor, NA) + setvar(core, NA, BETA(biome), beta, NA) + setvar(core, NA, Q10_RH(biome), q10_rh, NA) + setvar(core, NA, F_NPPV(biome), f_nppv, NA) + setvar(core, NA, F_NPPD(biome), f_nppd, NA) + setvar(core, NA, F_LITTERD(biome), f_litterd, NA) + invisible(core) } #' Create new biomes by splitting up an existing biome @@ -48,17 +46,17 @@ create_biome <- function(core, biome, #' @param old_biome Name of biome that will be split up #' @param new_biomes Names of biomes to be created #' @param fveg_c Fractions of vegetation C distributed to each biome -#' in `new_biomes`. Must be the same length as `new_biomes`. Default +#' in \code{new_biomes}; must be the same length as it. Default #' is to split vegetation C evenly between all biomes. #' @param fdetritus_c Fractions of detritus C distributed to each -#' biome. Defaults to the same value as `fveg_c`. +#' biome. Defaults to the same value as \code{fveg_c}. #' @param fsoil_c Fractions of soil C distributed to each biome. -#' Defaults to the same value as `fveg_c`. +#' Defaults to the same value as \code{fveg_c}. +#' @param fpermafrost_c Fraction of permafrost C distributed to each +#' biome. Defaults to the same value as \code{fveg_c}. #' @param fnpp_flux0 Fraction of initial NPP flux distributed to each -#' biome. Defaults to the same value as `fveg_c`. -#' @param ... Additional biome-specific parameters, as set by -#' [create_biome()]. Note that these are passed to [create_biome()] -#' via [base::mapply()], so they can be vectorized across biomes. +#' biome. Defaults to the same value as \code{fveg_c}. +#' @param ... Additional biome parameters passed to \code{\link{create_biome}}. #' @export split_biome <- function(core, old_biome, @@ -66,47 +64,67 @@ split_biome <- function(core, fveg_c = rep(1 / length(new_biomes), length(new_biomes)), fdetritus_c = fveg_c, fsoil_c = fveg_c, + fpermafrost_c = fveg_c, fnpp_flux0 = fveg_c, ...) { - stopifnot( - length(old_biome) == 1, - old_biome %in% get_biome_list(core), - !any(new_biomes %in% get_biome_list(core)), - length(fveg_c) == length(new_biomes), - length(fdetritus_c) == length(new_biomes), - length(fsoil_c) == length(new_biomes), - length(fnpp_flux0) == length(new_biomes), - sum(fveg_c) == 1, all(fveg_c > 0), - sum(fdetritus_c) == 1, all(fdetritus_c > 0), - sum(fsoil_c) == 1, all(fsoil_c > 0), - sum(fnpp_flux0) == 1, all(fnpp_flux0 > 0) - ) + stopifnot( + length(old_biome) == 1, + old_biome %in% get_biome_list(core), + !any(new_biomes %in% get_biome_list(core)), + length(fveg_c) == length(new_biomes), + length(fdetritus_c) == length(new_biomes), + length(fsoil_c) == length(new_biomes), + length(fpermafrost_c) == length(new_biomes), + length(fnpp_flux0) == length(new_biomes), + sum(fveg_c) == 1, all(fveg_c > 0), + sum(fdetritus_c) == 1, all(fdetritus_c > 0), + sum(fsoil_c) == 1, all(fsoil_c > 0), + sum(fpermafrost_c) == 1, all(fpermafrost_c >= 0), + sum(fnpp_flux0) == 1, all(fnpp_flux0 > 0) + ) - current_values <- get_biome_inits(core, old_biome) + # If user supplied values in ... for warmingfactor, etc., use thos + # Otherwise use the old biome's values + cv <- get_biome_inits(core, old_biome) # current values + dots <- list(...) + # We can't use ifelse for this because return shape may differ + pick <- function(x, y) { if (is.null(x)) y else x } # nolint + warmingfactor <- pick(dots$warmingfactor, cv[["warmingfactor"]]) + beta <- pick(dots$beta, cv[["beta"]]) + q10_rh <- pick(dots$q10_rh, cv[["q10_rh"]]) + f_nppv <- pick(dots$f_nppv, cv[["f_nppv"]]) + f_nppd <- pick(dots$f_nppd, cv[["f_nppd"]]) + f_litterd <- pick(dots$f_litterd, cv[["f_litterd"]]) - # This allows users to split the `global` biome without having to - # rename it first. Otherwise, we hit an error about using non-global - # biomes when a "global" biome is present. - if (old_biome == "global") { - invisible(rename_biome(core, "global", "_zzz")) - old_biome <- "_zzz" - } + # This allows users to split the `global` biome without having to + # rename it first. Otherwise, we hit an error about using non-global + # biomes when a "global" biome is present. + if (old_biome == "global") { + invisible(rename_biome(core, "global", "_zzz")) + old_biome <- "_zzz" + } - mapply( - create_biome, - biome = new_biomes, - veg_c0 = current_values[["veg_c"]] * fveg_c, - detritus_c0 = current_values[["detritus_c"]] * fdetritus_c, - soil_c0 = current_values[["soil_c"]] * fsoil_c, - npp_flux0 = current_values[["npp_flux0"]] * fnpp_flux0, - ..., - MoreArgs = list(core = core) - ) + mapply( + create_biome, + biome = new_biomes, + veg_c0 = cv[["veg_c"]] * fveg_c, + detritus_c0 = cv[["detritus_c"]] * fdetritus_c, + soil_c0 = cv[["soil_c"]] * fsoil_c, + permafrost_c0 = cv[["permafrost_c"]] * fpermafrost_c, + npp_flux0 = cv[["npp_flux0"]] * fnpp_flux0, + warmingfactor = warmingfactor, + beta = beta, + q10_rh = q10_rh, + f_nppv = f_nppv, + f_nppd = f_nppd, + f_litterd = f_litterd, + MoreArgs = list(core = core) + ) - delete_biome_impl(core, old_biome) + delete_biome_impl(core, old_biome) - reset(core, 0) - invisible(core) + reset(core, 0) + invisible(core) } #' Retrieve the initial conditions and parameters for a given biome @@ -118,23 +136,28 @@ split_biome <- function(core, #' @return Named numeric vector of biome initial conditions and parameters #' @author Alexey Shiklomanov get_biome_inits <- function(core, biome) { - # `fetchvars` requires date to be between start and end date, so - # we need to call the lower-level `sendmessage` method here. - current_data_1 <- rbind.data.frame( - sendmessage(core, GETDATA(), VEG_C(biome), 0, NA, ""), - sendmessage(core, GETDATA(), DETRITUS_C(biome), 0, NA, ""), - sendmessage(core, GETDATA(), SOIL_C(biome), 0, NA, "") - ) - current_data_2 <- fetchvars(core, NA, c( - NPP_FLUX0(biome), - BETA(biome), - WARMINGFACTOR(biome) - ))[, -1] - current_data <- rbind.data.frame(current_data_1, current_data_2) - current_values <- current_data[["value"]] - names(current_values) <- gsub(paste0(biome, "."), "", - current_data[["variable"]], - fixed = TRUE - ) - current_values + # `fetchvars` requires date to be between start and end date, so + # we need to call the lower-level `sendmessage` method here. + current_data_1 <- rbind.data.frame( + sendmessage(core, GETDATA(), VEG_C(biome), 0, NA, ""), + sendmessage(core, GETDATA(), DETRITUS_C(biome), 0, NA, ""), + sendmessage(core, GETDATA(), SOIL_C(biome), 0, NA, ""), + sendmessage(core, GETDATA(), PERMAFROST_C(biome), 0, NA, "") + ) + current_data_2 <- fetchvars(core, NA, c( + NPP_FLUX0(biome), + F_LITTERD(biome), + F_NPPD(biome), + F_NPPV(biome), + BETA(biome), + Q10_RH(biome), + WARMINGFACTOR(biome) + ))[, -1] + current_data <- rbind.data.frame(current_data_1, current_data_2) + current_values <- current_data[["value"]] + names(current_values) <- gsub(paste0(biome, BIOME_SPLIT_CHAR()), "", + current_data[["variable"]], + fixed = TRUE + ) + current_values } diff --git a/R/fxns.R b/R/fxns.R new file mode 100644 index 000000000..ccc01a37a --- /dev/null +++ b/R/fxns.R @@ -0,0 +1,22 @@ +#' Get the hector function associated with a specific string +#' +#' This function provides the Hector function that returns a the Hector string +#' @param str String name to find the Hector function for +#' @return Hector function name +#' @export +#' @seealso getunits +#' @examples +#' getfxn("beta") +#' getfxn("q10_rh") +getfxn <- function(str) { + + rows <- match(str, hector::fxntable$string) + rslt <- hector::fxntable$fxn[rows] + if (any(is.na(rows))) { + warning( + "Functions for the following are not found: ", + paste(str[is.na(rslt)], collapse = ", ") + ) + } + as.character(rslt) +} diff --git a/R/hector.R b/R/hector.R index eda7184db..246a68a0b 100644 --- a/R/hector.R +++ b/R/hector.R @@ -10,12 +10,8 @@ NULL #' To run a scenario, you will need a scenario input file. Several examples are #' included in the \code{input} directory, which you can find with the #' expression \code{system.file('input', package='hector')}. The input files -#' have names like \code{'hector_rcpNN.ini'}, where \code{NN} is one of -#' \code{26}, \code{45}, \code{60}, or \code{85}. Example outputs for these -#' scenarios are in the \code{output} directory, which you can find in a similar -#' way. Their names are \code{'sample_outputstream_rcpNN.csv'} Note, however, -#' that these outputs were rounded to 4 significant digits, so you might see -#' some discrepancies with your outputs unless you similarly round them. +#' have names like \code{'hector_sspNNN.ini'}, where \code{NNN} is one of +#' \code{119}, \code{126}, \code{245}, \code{370}, \code{434}, \code{460}, or \code{ssp585}. #' #' There is a quickstart wrapper called \code{\link{runscenario}}, which takes #' an input file as an argument, runs the scenario, and returns the results in a @@ -59,11 +55,11 @@ NULL #' @return Data frame containing Hector output for default variables #' @export runscenario <- function(infile) { - core <- newcore(infile) - run(core) - d <- fetchvars(core, seq(startdate(core), enddate(core))) - shutdown(core) - d + core <- newcore(infile) + run(core) + d <- fetchvars(core, seq(startdate(core), enddate(core))) + shutdown(core) + d } @@ -83,13 +79,35 @@ runscenario <- function(infile) { #' @family main user interface functions #' @export newcore <- function(inifile, loglevel = 0, suppresslogging = TRUE, - name = "unnamed hector core") { - hcore <- newcore_impl(normalizePath(inifile), loglevel, suppresslogging, name) - class(hcore) <- c("hcore", class(hcore)) - reg.finalizer(hcore, hector::shutdown) - hcore + name = "Unnamed Hector core") { + hcore <- newcore_impl(normalizePath(inifile), loglevel, suppresslogging, name) + class(hcore) <- c("hcore", class(hcore)) + reg.finalizer(hcore, hector::shutdown) + hcore } +#' Retrieve the tracking data for a Hector instance +#' +#' @param core Handle to the Hector instance. +#' @importFrom utils read.csv +#' @return A \code{\link{data.frame}} with the tracking data. Columns include +#' \code{year} (integer), \code{component} (character), \code{pool_name} (character), +#' \code{pool_value} (double), \code{pool_units} (character), +#' \code{source_name} (character), and \code{source_fraction} (double). The +#' fractions will always sum to 1 for a given pool and year. +#' @note The \code{pool_name}, \code{pool_value}, and \code{pool_units} names +#' differ from those used in the model's standard output stream (\code{variable}, +#' \code{value}, and \code{units} respectively). +#' @family main user interface functions +#' @export +get_tracking_data <- function(core) { + td <- get_tracking_data_impl(core) + if (td != "") { + read.csv(textConnection(td), stringsAsFactors = FALSE) + } else { + data.frame() # throw error instead? + } +} #### Utility functions ### The elements of an hcore object are @@ -102,37 +120,37 @@ newcore <- function(inifile, loglevel = 0, suppresslogging = TRUE, #' @rdname hectorutil #' @export isactive <- function(core) { - if (!inherits(core, "hcore")) { - stop("Object supplied is not an hcore class instance.") - } - chk_core_valid(core) + if (!inherits(core, "hcore")) { + stop("Object supplied is not an hcore class instance.") + } + chk_core_valid(core) } #' \strong{startdate}: Report the start date for a Hector instance #' @rdname hectorutil #' @export startdate <- function(core) { - if (!inherits(core, "hcore")) { - stop("Object supplied is not an hcore class instance.") - } - core$strtdate + if (!inherits(core, "hcore")) { + stop("Object supplied is not an hcore class instance.") + } + core$strtdate } #' \strong{enddate}: Report the end date for a Hector instance #' @rdname hectorutil #' @export enddate <- function(core) { - if (!inherits(core, "hcore")) { - stop("Object supplied is not an hcore class instance.") - } - core$enddate + if (!inherits(core, "hcore")) { + stop("Object supplied is not an hcore class instance.") + } + core$enddate } #' \strong{getname}: Report the name for a Hector instance #' @rdname hectorutil #' @export getname <- function(core) { - core$name + core$name } @@ -146,26 +164,24 @@ getname <- function(core) { NULL #' @describeIn methods Format method -#' @inheritParams methods #' @export format.hcore <- function(x, ...) { - if (!isactive(x)) { - "Hector core (INACTIVE)" - } - else { - cdate <- getdate(x) - sprintf( - "Hector core:\t%s\nStart date:\t%d\nEnd date:\t%d\nCurrent date:\t%d\nInput file:\t%s", - x$name, - as.integer(x$strtdate), as.integer(x$enddate), as.integer(cdate), - x$inifile - ) - } + if (!isactive(x)) { + "Hector core (INACTIVE)" + } else { + cdate <- getdate(x) + sprintf( + paste0("Hector core:\t%s\nStart date:\t%d\nEnd date:\t%d\n", + "Current date:\t%d\nInput file:\t%s\n"), + x$name, + as.integer(x$strtdate), as.integer(x$enddate), as.integer(cdate), + x$inifile + ) + } } #' @describeIn methods Print method -#' @inheritParams methods #' @export print.hcore <- function(x, ...) { - cat(format(x, ...)) + cat(format(x, ...)) } diff --git a/R/messages.R b/R/messages.R index 376249c4a..5aae09c4d 100644 --- a/R/messages.R +++ b/R/messages.R @@ -1,7 +1,7 @@ #### Code for interacting with the hector messaging system -default_fetchvars <- c(ATMOSPHERIC_CO2, RF_TOTAL, RF_CO2, GLOBAL_TEMP) +default_fetchvars <- c(CONCENTRATIONS_CO2, RF_TOTAL, RF_CO2, GLOBAL_TAS) #' Fetch results from a running Hector core #' @@ -24,8 +24,10 @@ default_fetchvars <- c(ATMOSPHERIC_CO2, RF_TOTAL, RF_CO2, GLOBAL_TEMP) #' \link{ocean}, \link{so2}, \link{temperature}, \link{parameters} #' #' @param core Hector core object -#' @param dates Vector of dates to fetch. This will be automatically trimmed to +#' @param dates Vector of dates to fetch; this will be automatically trimmed to #' dates that are between the start date and the latest date currently run. +#' Set to \code{NA} to return data with no associated dates such as +#' model \link{parameters}. #' @param vars List (or vector) of capability strings defining the variables to #' be fetched in the result. #' @param scenario Optional scenario name. If not specified, the name element @@ -39,6 +41,9 @@ fetchvars <- function(core, dates, vars = NULL, scenario = NULL) { f() }) ) + if (anyNA(dates)) { + stop("The default vars (", paste(vars, collapse = ", "), ") all require dates") + } } if (is.null(scenario)) { @@ -46,11 +51,16 @@ fetchvars <- function(core, dates, vars = NULL, scenario = NULL) { } strt <- startdate(core) - end <- getdate(core) + current <- getdate(core) - valid <- dates >= strt & dates <= end + valid <- dates >= strt & dates <= current dates <- dates[valid] + if (length(dates) == 0) { + stop("None of these dates are valid for this core (start=", + strt, ", current=", current, ")") + } + rslt <- do.call( rbind, lapply(vars, function(v) { diff --git a/R/sysdata.rda b/R/sysdata.rda deleted file mode 100644 index d3e181a0e..000000000 Binary files a/R/sysdata.rda and /dev/null differ diff --git a/R/units.R b/R/units.R index 7684912c2..ff7b303b4 100644 --- a/R/units.R +++ b/R/units.R @@ -9,8 +9,8 @@ #' @export getunits <- function(vars) { ## NB the unitstable data structure is included as internal package data. - rows <- match(vars, unitstable$variable) - units <- unitstable$units[rows] + rows <- match(vars, hector::unitstable$variable) + units <- hector::unitstable$units[rows] if (any(is.na(units))) { warning( "Units entries for the following variables not found: ", diff --git a/README.Rmd b/README.Rmd new file mode 100644 index 000000000..699337550 --- /dev/null +++ b/README.Rmd @@ -0,0 +1,94 @@ +--- +output: github_document +--- + + + +```{r, include = FALSE} +knitr::opts_chunk$set( + collapse = TRUE, + comment = "#>", + fig.path = "man/figures/README-", + out.width = "100%" +) +library(hector) +library(ggplot2) +``` + +# hector + +[![DOI](https://zenodo.org/badge/22892935.svg)](https://zenodo.org/badge/latestdoi/22892935) [![C++ unit tests](https://github.com/JGCRI/hector/actions/workflows/unit-testing.yaml/badge.svg)](https://github.com/JGCRI/hector/actions/workflows/unit-testing.yaml) [![Command Line Hector](https://github.com/JGCRI/hector/actions/workflows/command-line.yaml/badge.svg)](https://github.com/JGCRI/hector/actions/workflows/command-line.yaml) [![R-CMD-check](https://github.com/JGCRI/hector/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/JGCRI/hector/actions/workflows/R-CMD-check.yaml) [![codecov](https://codecov.io/gh/JGCRI/hector/branch/master/graph/badge.svg?token=EGM0lXDxRv)](https://codecov.io/gh/JGCRI/hector) + +This is the repository for **Hector**, an open source, object-oriented, simple +global climate carbon-cycle model that runs very quickly while still +representing the most critical global scale earth system processes. +Hector is a simple climate model (SCM, also known as a reduced-complexity climate model), +a class of models that are extremely versatile with a wide +range of applications. Due to their computational efficiency, SCMs can easily +be coupled to other models and used to design scenarios, emulate more complex +climate models, and conduct uncertainty analyses. + +```{r tas_plot, echo=FALSE, fig.width=8, fig.height=4} + +# The variable naps and dates of variables to save. +vars_to_plot <- GLOBAL_TAS() +dates_to_plot <- 1850:2100 + +# Color palette used by the IPCC +SSP_COLORS <- c("ssp119" = "#00a9cf", "ssp126" = "#003466", "ssp245" = "#f69320", + "ssp370" = "#df0000", "ssp434" = "#2274ae","ssp460" = "#b0724e", + "ssp585"= "#980002", "ssp534-overshoot" = "grey", "historical" = "#000000", + "historical"="#92397a") + +# Set up and run hector. +ini_files <- list.files(file.path("inst", "input"), pattern = "ini", full.names = TRUE) +hector_tas_results <- do.call(lapply(ini_files, function(f){ + name <- gsub(pattern = "hector_|.ini", x = basename(path = f), replacement = "") + hc <- newcore(f, name = name) + run(hc) + out <- fetchvars(hc, dates_to_plot, vars = vars_to_plot) + return(out) +}), what = "rbind") + +# Modify the results data frame. +hector_tas_results$scenario <- ifelse(hector_tas_results$scenario == "ssp534-over", + "ssp534-overshoot", hector_tas_results$scenario) +hector_tas_results$scenario <- ifelse(hector_tas_results$year <= 2016, "historical", + hector_tas_results$scenario) +ggplot(hector_tas_results) + + geom_line(aes(year, value, color = scenario), size = 1) + + theme_bw(base_size = 15) + + labs(color = NULL, x = NULL, y = expression("Temperature Anomaly ("~degree~"C)")) + + scale_color_manual(values = SSP_COLORS) +``` + +Hector's output for global mean air temperature change for eight Shared Socioeconomic Pathways (SSPs). + +## Installation + +The `hector` R package can be installed using the `remotes::install_github` +function. More detailed installation instructions, including how to set up +Hector as a command line executable, can be found [here](articles/BuildHector.html). + +```r +remotes::install_github('jgcri/hector') +library(hector) +``` + +## Tools and Software That Work with Hector + +* [GCAM](https://github.com/JGCRI/gcam-core): Hector can be used as the climate component in [GCAM](http://jgcri.github.io/gcam-doc/) +* [pyhector](https://github.com/openclimatedata/pyhector): a Python +interface to Hector +* [fldgen](https://github.com/JGCRI/fldgen): a spatially resolved temperature & precipitation emulator for CMIP5 ESMs +* [HectorUI](https://jgcri.shinyapps.io/HectorUI/): run Hector in a web interface! + +## Contributing to Hector + +The Hector team welcomes and values community contributions, but please see +our [Contribution Guide](articles/ContributionsGuide.html) and note by contributing +to this project, you agree to abide to our [Contributor Code of Conduct](CODE_OF_CONDUCT.html) + +*** + +This research was supported by the U.S. Department of Energy, Office of Science, as part of research in Multi-Sector Dynamics, Earth and Environmental System Modeling Program. The Pacific Northwest National Laboratory is operated for DOE by Battelle Memorial Institute under contract DE-AC05-76RL01830. diff --git a/README.md b/README.md index d1caca815..6e1060bc5 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,65 @@ -![R-CMD](https://github.com/JGCRI/hector/workflows/R-CMD/badge.svg) -![Command Line Hector](https://github.com/JGCRI/hector/workflows/Command%20Line%20Hector/badge.svg) -![test-coverage](https://github.com/JGCRI/hector/workflows/test-coverage/badge.svg) + + + +# hector + +[![DOI](https://zenodo.org/badge/22892935.svg)](https://zenodo.org/badge/latestdoi/22892935) +[![C++ unit +tests](https://github.com/JGCRI/hector/actions/workflows/unit-testing.yaml/badge.svg)](https://github.com/JGCRI/hector/actions/workflows/unit-testing.yaml) +[![Command Line +Hector](https://github.com/JGCRI/hector/actions/workflows/command-line.yaml/badge.svg)](https://github.com/JGCRI/hector/actions/workflows/command-line.yaml) +[![R-CMD-check](https://github.com/JGCRI/hector/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/JGCRI/hector/actions/workflows/R-CMD-check.yaml) [![codecov](https://codecov.io/gh/JGCRI/hector/branch/master/graph/badge.svg?token=EGM0lXDxRv)](https://codecov.io/gh/JGCRI/hector) -![lint](https://github.com/JGCRI/hector/workflows/lint/badge.svg) -Hector -====== +This is the repository for **Hector**, an open source, object-oriented, +simple global climate carbon-cycle model that runs very quickly while +still representing the most critical global scale earth system +processes. Hector is a simple climate model (SCM, also known as a +reduced-complexity climate model), a class of models that are extremely +versatile with a wide range of applications. Due to their computational +efficiency, SCMs can easily be coupled to other models and used to +design scenarios, emulate more complex climate models, and conduct +uncertainty analyses. -This is the repository for **Hector**, an open source, object-oriented, simple global climate carbon-cycle model. It runs essentially instantaneously while still representing the most critical global scale earth system processes, and is one of a class of models heavily used for for emulating complex climate models and uncertainty analyses. For example, Hector's global temperature rise for the RCP 8.5 scenario, compared to observations and other model results, looks like this: + -![](https://github.com/JGCRI/hector/wiki/rcp85.png) +Hector’s output for global mean air temperature change for eight Shared +Socioeconomic Pathways (SSPs). -The primary link to Hector model documentation is the [online manual](https://jgcri.github.io/hector/articles/manual), which is included in the repository in the `vignettes/manual` directory. -The code is also documented with [Doxygen](http://doxygen.org)-style comments. A formal model description paper ([Hartin et al. 2015](http://www.geosci-model-dev.net/8/939/2015/gmd-8-939-2015.html)) documents its science internals and performance relative to observed data, the [CMIP5](http://cmip-pcmdi.llnl.gov/cmip5/) archive, and the reduced-complexity [MAGICC](http://www.magicc.org) model (as of [version 1.0](https://github.com/JGCRI/hector/tree/v1.0)). In addition, we have developed two package vignettes demonstrating the [basics of the Hector R interface](http://jgcri.github.io/hector/articles/intro-to-hector.html) and an example application of [solving for an emissions pathway](http://jgcri.github.io/hector/articles/hector_apply.html). +## Installation -This research was supported by the U.S. Department of Energy, Office of Science, as part of research in Multi-Sector Dynamics, Earth and Environmental System Modeling Program. The Pacific Northwest National Laboratory is operated for DOE by Battelle Memorial Institute under contract DE-AC05-76RL01830. +The `hector` R package can be installed using the +`remotes::install_github` function. More detailed installation +instructions, including how to set up Hector as a command line +executable, can be found [here](articles/BuildHector.html). + +``` r +remotes::install_github('jgcri/hector') +library(hector) +``` ## Tools and Software That Work with Hector -* [GCAM](https://github.com/JGCRI/gcam-core): Hector can be used as the climate component in [GCAM](http://jgcri.github.io/gcam-doc/). -* [pyhector](https://github.com/openclimatedata/pyhector): a Python - interface to Hector. -* [HectorUI](https://jgcri.shinyapps.io/HectorUI/): run Hector in a web interface! +- [GCAM](https://github.com/JGCRI/gcam-core): Hector can be used as the + climate component in [GCAM](http://jgcri.github.io/gcam-doc/) +- [pyhector](https://github.com/openclimatedata/pyhector): a Python + interface to Hector +- [fldgen](https://github.com/JGCRI/fldgen): a spatially resolved + temperature & precipitation emulator for CMIP5 ESMs +- [HectorUI](https://jgcri.shinyapps.io/HectorUI/): run Hector in a web + interface! + +## Contributing to Hector + +The Hector team welcomes and values community contributions, but please +see our [Contribution Guide](articles/ContributionsGuide.html) and note +by contributing to this project, you agree to abide to our [Contributor +Code of Conduct](CODE_OF_CONDUCT.html) - ## Contributing to Hector +------------------------------------------------------------------------ - The Hector team welcomes and values community contributions but please see our [Contribution Guide](KRD-UPDATE). +This research was supported by the U.S. Department of Energy, Office of +Science, as part of research in Multi-Sector Dynamics, Earth and +Environmental System Modeling Program. The Pacific Northwest National +Laboratory is operated for DOE by Battelle Memorial Institute under +contract DE-AC05-76RL01830. diff --git a/_pkgdown.yml b/_pkgdown.yml index 588842d36..6634bc739 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -1,50 +1,43 @@ -template: - params: - docsearch: - api_key: b2aa343d0c9e9ed33c9582908f3acaf8 - index_name: hector url: https://jgcri.github.io/hector/ +template: + bootstrap: 5 +development: + mode: auto + navbar: - type: default + structure: + left: [reference, articles] + right: [search, github] + left: - icon: fa-home fa-lg href: "index.html" - text: Manual - href: "articles/manual/index.html" - - text: Vignettes + href: "articles/manual.html" + - text: Getting Started + menu: + - text: "Building Hector" + href: articles/BuildHector.html + - text: "Intro to Hector R interface" + href: articles/hector.html + - text: "Documentation manuscripts & tutorials" + href: articles/Hector-Wider-World.html + - text: Examples menu: - - text: "A tour of the Hector R interface" - href: articles/intro-to-hector.html + - text: "Example: Basic run and simple sensitivity anlaysis" + href: articles/hector.html - text: "Example: Using Hector to solve for an emissions pathway" - href: articles/hector_apply.html + href: articles/ex_hector_apply.html - text: "Example: Running Hector with multiple biomes" - href: articles/multiple-biomes.html + href: articles/ex_multiple-biomes.html + - text: "Example: Carbon tracking with Hector" + href: articles/ex_carbon_tracking.html + - text: "Example: Changing Hector's land ocean warming ratio parameter" + href: articles/ex_land_ocean_warming.html - text: Reference href: "reference/index.html" + - text: News + href: "news/index.html" right: - icon: fa-github fa-lg href: "https://github.com/JGCRI/hector" - -reference: - - title: Running Hector - contents: - - newcore - - methods - - run - - reset - - shutdown - - runscenario - - title: Setting and retrieving data - contents: - - fetchvars - - setvar - - sendmessage - - isactive - - getdate - - startdate - - enddate - - getname - - getunits - - title: Variable and component identifiers - contents: - - matches("[_A-Z]+") diff --git a/changelog.txt b/changelog.txt deleted file mode 100644 index c5f110222..000000000 --- a/changelog.txt +++ /dev/null @@ -1,82 +0,0 @@ -Hector 2.3.0 -============ -* Constrain atmospheric CO2 concentration to be equal to the - preindustrial concentration during the model spinup. The result of - this is that the concentration at the beginning of the simulation - will be equal to the value specified in the `PREINDUSTRIAL_CO2` - parameter, which was not the case previously. - -Hector 2.2.2 -============ -* Fix bug that was causing requests for H2O forcing in the R interface - to return N2O forcing instead (the model internals were - unaffected). -* Fix bug that was causing API requests for halocarbon forcing to - return absolute forcing values, rather than values relative to the - base year (which is what is done for all other forcings). -* Add missing RF_VOL (volcanic forcing) dependency to forcing component. In practice the - missing dependency had no effect because the forcing component - already had a dependency on the SO2 component, which also provides - the volcanic forcing, but in the event that we ever split them up, - this will ensure that the dependency graph is still valid. - -(All 2.2.2 changes merged in PR #303) - -Hector 2.2.1 -============ -* Report global averages for land temperature, ocean air - temperature, and ocean surface temperature. -* Fix bug that prevented CH4 emissions from being read. - -Hector 2.2.0 -============ -* Add a new parameter: VOLCANIC_SCALE. This parameter adjusts the - strength of the response to volcanic forcing. (PR #291) -* Add getname function to return the name of a Hector core. - - -Hector 2.1.0 -============ -* Add reset() function to the API. Calling this function resets a - hector core to an earlier time, rerunning the spinup if - appropriate. (PR #243) - - -Hector 2.0.0 -============ -* Incorporated 1-D diffusive ocean heat model as new temperature component (DOECLIM) (PR #206) -* Bugfix: double counting halocarbon radiative forcing (PR #201) -* Bugfix: re-enabled CO2 concentration constraint (PR #163) -* Various changes to internals to support calling Hector from external code like pyhector -* Component loggers are now optional (PR #218) -* Renamed anthro emissions to ffi emisisons (fossil fuel industrial) (PR #116) - - -Hector 1.1.2 -============ - -* Add libhector target OS X and Windows project files (it was already - available in the Linux build). This library library is used when - you want to link Hector to an outside program. - -Hector 1.1.1 -============ - -* Fix OS X build -* Update sample output files -* Add GPL license - -Hector 1.1 -=========== - -* API for linking with external models. - -* Backend R scripts faster and cleaner. - -* Minor bug fixes and documentation updates. - - -Hector 1.0 -=========== - -* First release. Corresponds to Hartin et al. (2015), http://www.geosci-model-dev.net/8/939/2015/gmd-8-939-2015.pdf. diff --git a/data-raw/generate-comp-data.R b/data-raw/generate-comp-data.R index 75a3e016f..a417bbb00 100644 --- a/data-raw/generate-comp-data.R +++ b/data-raw/generate-comp-data.R @@ -9,7 +9,7 @@ devtools::load_all() # Create the output directory. -out_dir <- here::here("tests", "testthat", "compdata") +out_dir <- file.path("tests", "testthat", "compdata") dir.create(out_dir, showWarnings = FALSE) # Determine the version of Hector and the git commit, that generates the comparison data. @@ -19,30 +19,20 @@ hector_version <- packageVersion("hector") hector_commit <- system("git rev-parse --short HEAD", intern = TRUE) -vars_to_save <- c(ATMOSPHERIC_CO2(), GLOBAL_TEMP(), RF_TOTAL(), RF_CO2(), HEAT_FLUX(), OCEAN_C(), PH_HL()) -dates_to_save <- 1850:1950 - - -# During this old new test we will look at results for two scenarios, a concentration and -# emission driven runs. - -# The first scenario to run is the constrained RCP 4.5 -ini <- here::here("inst", "input", "hector_rcp45_constrained.ini") -hc <- newcore(ini) -run(hc, max(dates_to_save)) -hector_rcp45_constrained <- fetchvars(hc, scenario = basename(ini), dates = dates_to_save, vars = vars_to_save) -hector_rcp45_constrained$version <- hector_version # Add the Hector version. -hector_rcp45_constrained$commit <- hector_commit +vars_to_save <- c(CONCENTRATIONS_CO2(), GLOBAL_TAS(), RF_TOTAL(), RF_CO2(), HEAT_FLUX(), + OCEAN_C(), PH_HL(), ATMOSPHERIC_CO2(), SST()) +dates_to_save <- 1745:2300 # Second run. -ini <- here::here("inst", "input", "hector_rcp45.ini") +ini <- file.path("inst", "input", "hector_ssp245.ini") hc <- newcore(ini) run(hc, max(dates_to_save)) -hector_rcp45 <- fetchvars(hc, scenario = basename(ini), dates = dates_to_save, vars = vars_to_save) -hector_rcp45$version <- hector_version # Add the Hector version. -hector_rcp45$commit <- hector_commit +hector_ssp245 <- fetchvars(hc, scenario = basename(ini), dates = dates_to_save, vars = vars_to_save) +hector_ssp245$version <- hector_version # Add the Hector version. +hector_ssp245$commit <- hector_commit # Save the comparison data for the unit tests. -comp_data <- rbind(hector_rcp45_constrained, hector_rcp45) +comp_data <- hector_ssp245 out_file <- file.path(out_dir, "hector_comp.csv") write.csv(comp_data, file = out_file, row.names = FALSE) +message("All done.") diff --git a/data-raw/input_params.csv b/data-raw/input_params.csv new file mode 100644 index 000000000..475e4764d --- /dev/null +++ b/data-raw/input_params.csv @@ -0,0 +1,234 @@ +section,parameter,biome-specific,time-variant,required,default,units,description +core,run_name,n,n,y,,(unitless), +core,startDate,n,n,y,1745,year, +core,endDate,n,n,y,2300,year, +core,trackingDate,n,n,y,9999,year,year to start tracking (only carbon currently) +core,do_spinup,n,n,y,1,(unitless),"if 1, spin up model before running (default=1)" +core,max_spinup,n,n,y,2000,(unitless),maximum steps allowed for spinup (default=2000) +ocean,enabled,n,n,y,1,(unitless),putting 'enabled=0' will disable any component +ocean,spinup_chem,n,n,y,0,(unitless),run surface chemistry during spinup phase? +ocean,tt,n,n,y,7.20E+07,m3 s-1,thermohaline circulation +ocean,tu,n,n,y,4.90E+07,m3 s-1,high latitude overturning +ocean,twi,n,n,y,1.25E+07,m3 s-1,warm-intermediate exchange +ocean,tid,n,n,y,2.00E+08,m3 s-1,intermediate-deep exchange +ocean,preind_surface_c,n,n,n,900,Pg C,surface ocean carbon +ocean,preind_interdeep_c,n,n,n,37100,Pg C,intermediate + deep ocean carbon +simpleNbox,atmos_co2,n,n,y,588.071,Pg C, +simpleNbox,C0,n,n,y,277.15,Pg C,preindustrial CO2 from table 7.SM.1 IPCC AR6 +simpleNbox,boreal.veg_c,y,n,y,100,Pg C, +simpleNbox,tropical.veg_c,y,n,y,450,Pg C, +simpleNbox,veg_c,n,n,y,550,Pg C,vegetation +simpleNbox,boreal.detritus_c,y,n,y,15,Pg C, +simpleNbox,tropical.detritus_c,y,n,y,45,Pg C, +simpleNbox,detritus_c,n,n,y,55,Pg C,detritus +simpleNbox,boreal.soil_c,y,n,y,1200,Pg C, +simpleNbox,tropical.soil_c,y,n,y,578,Pg C, +simpleNbox,soil_c,n,n,y,1782,Pg C,soil +simpleNbox,boreal.permafrost_c,y,n,n,865,Pg C,permafrost +simpleNbox,tropical.permafrost_c,y,n,n,0,Pg C,permafrost +simpleNbox,permafrost_c,n,n,n,0,Pg C,permafrost +simpleNbox,boreal.npp_flux0,y,n,y,5,Pg C yr-1, +simpleNbox,tropical.npp_flux0,y,n,y,45,Pg C yr-1, +simpleNbox,npp_flux0,n,n,y,56.2,Pg C yr-1,net primary production +simpleNbox,f_nppv,n,n,y,0.35,(unitless),Fraction of NPP to vegetation +simpleNbox,f_nppd,n,n,y,0.6,(unitless),Fraction of NPP to detritus (balance to soil) +simpleNbox,f_litterd,n,n,y,0.98,(unitless),Fraction of litter flux to detritus (balance to soil) +simpleNbox,ffi_emissions,n,y,y,"""(csv)""",Pg C yr-1,Anthropogenic contributions: emissions +simpleNbox,daccs_uptake,n,y,y,"""(csv)""",Pg C yr-1,Anthropogenic contributions: direct air carbon capture and storage +simpleNbox,luc_emissions,n,y,y,"""(csv)""",Pg C yr-1,Anthropogenic contributions: land use change +simpleNbox,luc_uptake,n,y,y,"""(csv)""",Pg C yr-2,Anthropogenic contributions: land use change +simpleNbox,CO2_constrain,n,y,n,"""(csv)""",ppmv,atmospheric CO2 constraint +simpleNbox,NBP_constrain,n,y,n,"""(csv)""",Pg C yr-1,net biome production (land-atmosphere C flux) constaint +simpleNbox,beta,n,n,y,0.36,(unitless), +simpleNbox,q10_rh,n,n,y,2,(unitless),respiration response Q10 +simpleNbox,boreal.warmingfactor,y,n,n,1.2,(unitless),biome-specific warming factors +simpleNbox,RF_albedo,n,n,y,"""(csv)""",W m-2,albedo effect +simpleNbox,permafrost_c,y,n,y,0,Pg C,Preindustrial permafrost carbon pool +simpleNbox,fpf_static,y,n,n,0.74,(unitless),fraction of permafrost that is static (non-labile) +simpleNbox,rh_ch4_frac,y,n,n,0.023,(unitless),fraction of thawed permafrost decomposed as CH4 +simpleNbox,pf_mu,y,n,n,1.67,(unitless),permafrost thaw parameter; see Woodard et al. 2021 +simpleNbox,pf_sigma,y,n,n,0.986,(unitless),permafrost thaw parameter; see Woodard et al. 2021 +carbon-cycle-solver,eps_abs,n,n,y,1.00E-06,(unitless),solution tolerance +carbon-cycle-solver,eps_rel,n,n,y,1.00E-06,(unitless),solution tolerance +carbon-cycle-solver,dt,n,n,y,0.25,(unitless),default time step +carbon-cycle-solver,eps_spinup,n,n,y,0.001,Pg C,"spinup tolerance (drift), Pg C" +so2,SO2_emissions,n,y,y,"""(csv)""",,emissions time series +so2,SV,n,y,y,"""(csv)""",,volcanic radiative forcing time series +CH4,M0,n,n,y,731.41,ppb,"preindustrial methane IPCC AR6 Table 7.SM.1, the CH4 forcing equations is calibrated to a M0 of 731.41 ppb" +CH4,Tsoil,n,n,y,160,years,CH4 loss to soil +CH4,Tstrat,n,n,y,120,years,CH4 loss to stratosphere +CH4,UC_CH4,n,n,y,2.78,Tg CH4 ppb-1,unit conversion between emissions and concentrations +CH4,CH4N,n,n,y,341,,best fit +CH4,CH4_emissions,n,y,y,"""(csv)""",,emissions time series +CH5,CH4_constrain,n,y,n,"""(csv)""",,CH4 concentration constraint +OH,NOX_emissions,n,y,y,"""(csv)""",,emissions time series +OH,CO_emissions,n,y,y,"""(csv)""",,emissions time series +OH,NMVOC_emissions,n,y,y,"""(csv)""",,emissions time series +OH,TOH0,n,n,y,6.6,years,initial OH lifetime +OH,CNOX,n,n,y,0.0042,,coefficient for NOX +OH,CCO,n,n,y,-1.05E-04,,coefficient for CO +OH,CNMVOC,n,n,y,-3.15E-04,,coefficient for NMVOC (non methane VOC) +OH,CCH4,n,n,y,-0.32,,coefficient for CH4 +ozone,PO3,n,n,y,30,,preindustrial O3 concentration +ozone,NOX_emissions,n,y,y,"""(csv)""",,emissions time series +ozone,CO_emissions,n,y,y,"""(csv)""",,emissions time series +ozone,NMVOC_emissions,n,y,y,"""(csv)""",,emissions time series +N2O,N0,n,n,y,273.87,ppb,preindustrial nitrous oxide from IPCC AR6 table 7.SM.1 +N2O,UC_N2O,n,n,y,4.8,TgN ppbv-1,unit conversion between emissions and concentrations +N2O,TN2O0,n,n,y,132,years,initial lifetime of N2O +N2O,N2O_natural_emissions,n,y,y,9.5,,default natural emissions based on a best fit to IPCC AR6 N2O RF +N2O,N2O_emissions,n,y,y,"""(csv)""",,emissions time series +N2O,N2O_constrain,n,y,n,"""(csv)""",,N2O concentration constraint +forcing,baseyear,n,n,y,1750,,"when to start reporting; by definition, all F=0 in this year" +forcing,RF_tot_constrain,n,y,n,"""(csv)""",,"If supplied, the model will use these data, ignoring what it calculates" +forcing,delta_co2,n,n,y,0.05,(unitless),forcing tropospheric adjustments for CO2 (7.3.2.1 of IPCC AR6) +forcing,delta_ch4,n,n,y,-0.14,(unitless),forcing tropospheric adjustments for CH4 (7.3.2.2 of IPCC AR6) +forcing,delta_n2o,n,n,y,0.07,(unitless),forcing tropospheric adjustments for N2O (7.3.2.3 of IPCC AR6) +forcing,rho_bc,n,n,y,0.0508,W yr m-2 C Tg-1,IPCC AR6 radiative efficiency BC (7.SM.1.3 of IPCC AR6) +forcing,rho_oc,n,n,y,-0.00621,W yr m-2 C Tg-1,IPCC AR6 radiative efficiency OC (7.SM.1.3.1 of IPCC AR6) +forcing,rho_so2,n,n,y,-7.24E-06,W yr m-2 S Gg-1,IPCC AR6 radiative efficiency SO2 (7.SM.1.3.1 of IPCC AR6) +forcing,rho_nh3,n,n,y,-0.00208,W yr m-2 NH3 Tg-1,IPCC AR6 radiative efficiency NH3 (7.SM.1.3.1 of IPCC AR6) +forcing,RF_misc,n,n,n,"""(csv)""",,Miscellaneous radiative forcings default set to 0 +forcing,RF_misc,n,n,y,0,,"Miscellaneous radiative forcings default set to 0, or read in from a input table, may be used to read in additional forcings not modeled by Hector (i.e. solar, bc on snow , contrails from)" +temperature,S,n,n,y,3,degC,equilibrium climate sensitivity for 2xCO2 +temperature,diff,n,n,y,2.3,cm2 s-1,ocean heat diffusivity +temperature,alpha,n,n,y,1,(unitless),scaling factor for aerosol forcing +temperature,volscl,n,n,y,1,(unitless),scaling factor for volcanic forcing +temperature,qco2,n,n,y,3.75,,CO2 RF (7.3.2 of IPCC AR6) +temperature,tas_constrain,n,y,n,"""(csv)""",,"Optional global temperature constraint; If supplied, the model will use these data, ignoring what it calculates" +bc,BC_emissions,n,y,y,"""(csv)""",, +oc,OC_emissions,n,y,y,"""(csv)""",, +nh3,NH3_emissions,n,y,y,"""(csv)""",, +CF4_halocarbon,tau,n,n,y,50000,years,lifetime in years (Table 7.SM.7 IPPC AR6) +CF4_halocarbon,rho_CF4,n,n,y,9.90E-05,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +CF4_halocarbon,delta_CF4,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +CF4_halocarbon,H0,n,n,y,35,pptv,preindustrial concentration +CF4_halocarbon,molarMass,n,n,y,88.0043,g,molar mass +CF4_halocarbon,CF4_emissions,n,y,y,"""(csv)""",, +C2F6_halocarbon,tau,n,n,y,10000,years,lifetime in years (Table 7.SM.7 IPPC AR6) +C2F6_halocarbon,rho_C2F6,n,n,y,2.61E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +C2F6_halocarbon,delta_C2F6,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +C2F6_halocarbon,molarMass,n,n,y,138.01,g,molar mass +C2F6_halocarbon,C2F6_emissions,n,y,y,"""(csv)""",, +HFC23_halocarbon,tau,n,n,y,228,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HFC23_halocarbon,rho_HFC23,n,n,y,1.91E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HFC23_halocarbon,delta_HFC23,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HFC23_halocarbon,molarMass,n,n,y,70,g,molar mass +HFC23_halocarbon,HFC23_emissions,n,y,y,"""(csv)""",, +HFC32_halocarbon,tau,n,n,y,5.4,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HFC32_halocarbon,rho_HFC32,n,n,y,1.11E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HFC32_halocarbon,delta_HFC32,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HFC32_halocarbon,molarMass,n,n,y,52,g,molar mass +HFC32_halocarbon,HFC32_emissions,n,y,y,"""(csv)""",, +HFC4310_halocarbon,tau,n,n,y,17,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HFC4310_halocarbon,rho_HFC4310,n,n,y,3.57E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HFC4310_halocarbon,delta_HFC4310,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HFC4310_halocarbon,molarMass,n,n,y,252,g,molar mass +HFC4310_halocarbon,HFC4310_emissions,n,y,y,"""(csv)""",, +HFC125_halocarbon,tau,n,n,y,30,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HFC125_halocarbon,rho_HFC125,n,n,y,2.34E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HFC125_halocarbon,delta_HFC125,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HFC125_halocarbon,molarMass,n,n,y,120.02,g,molar mass +HFC125_halocarbon,HFC125_emissions,n,y,y,"""(csv)""",, +HFC134a_halocarbon,tau,n,n,y,14,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HFC134a_halocarbon,rho_HFC134a,n,n,y,1.67E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HFC134a_halocarbon,delta_HFC134a,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HFC134a_halocarbon,molarMass,n,n,y,102.02,g,molar mass +HFC134a_halocarbon,HFC134a_emissions,n,y,y,"""(csv)""",, +HFC143a_halocarbon,tau,n,n,y,51,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HFC143a_halocarbon,rho_HFC143a,n,n,y,1.68E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HFC143a_halocarbon,delta_HFC143a,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HFC143a_halocarbon,molarMass,n,n,y,84.04,g,molar mass +HFC143a_halocarbon,HFC143a_emissions,n,y,y,"""(csv)""",, +HFC227ea_halocarbon,tau,n,n,y,36,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HFC227ea_halocarbon,rho_HFC227ea,n,n,y,2.73E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HFC227ea_halocarbon,delta_HFC227ea,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HFC227ea_halocarbon,molarMass,n,n,y,170.03,g,molar mass +HFC227ea_halocarbon,HFC227ea_emissions,n,y,y,"""(csv)""",, +HFC245fa_halocarbon,tau,n,n,y,7.9,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HFC245fa_halocarbon,rho_HFC245fa,n,n,y,2.45E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HFC245fa_halocarbon,delta_HFC245fa,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HFC245fa_halocarbon,molarMass,n,n,y,134,g,molar mass +HFC245fa_halocarbon,HFC245fa_emissions,n,y,y,"""(csv)""",, +SF6_halocarbon,tau,n,n,y,3200,years,lifetime in years (Table 7.SM.7 IPPC AR6) +SF6_halocarbon,rho_SF6,n,n,y,5.67E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +SF6_halocarbon,delta_SF6,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +SF6_halocarbon,molarMass,n,n,y,146.06,g,molar mass +SF6_halocarbon,SF6_emissions,n,y,y,"""(csv)""",, +CFC11_halocarbon,tau,n,n,y,52,years,lifetime in years (Table 7.SM.7 IPPC AR6) +CFC11_halocarbon,rho_CFC11,n,n,y,2.59E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +CFC11_halocarbon,delta_CFC11,n,n,y,0.13,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +CFC11_halocarbon,molarMass,n,n,y,137.35,g,molar mass +CFC11_halocarbon,CFC11_emissions,n,y,y,"""(csv)""",, +CFC12_halocarbon,tau,n,n,y,102,years,lifetime in years (Table 7.SM.7 IPPC AR6) +CFC12_halocarbon,rho_CFC12,n,n,y,3.20E-03,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +CFC12_halocarbon,delta_CFC12,n,n,y,0.13,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +CFC12_halocarbon,molarMass,n,n,y,120.9,g,molar mass +CFC12_halocarbon,CFC12_emissions,n,y,y,"""(csv)""",, +CFC113_halocarbon,tau,n,n,y,93,years,lifetime in years (Table 7.SM.7 IPPC AR6) +CFC113_halocarbon,rho_CFC113,n,n,y,3.01E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +CFC113_halocarbon,delta_CFC113,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +CFC113_halocarbon,molarMass,n,n,y,187.35,g,molar mass +CFC113_halocarbon,CFC113_emissions,n,y,y,"""(csv)""",, +CFC114_halocarbon,tau,n,n,y,189,years,lifetime in years (Table 7.SM.7 IPPC AR6) +CFC114_halocarbon,rho_CFC114,n,n,y,3.14E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +CFC114_halocarbon,delta_CFC114,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +CFC114_halocarbon,molarMass,n,n,y,170.9,g,molar mass +CFC114_halocarbon,CFC114_emissions,n,y,y,"""(csv)""",, +CFC115_halocarbon,tau,n,n,y,540,years,lifetime in years (Table 7.SM.7 IPPC AR6) +CFC115_halocarbon,rho_CFC115,n,n,y,2.46E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +CFC115_halocarbon,delta_CFC115,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +CFC115_halocarbon,molarMass,n,n,y,154.45,g,molar mass +CFC115_halocarbon,CCl4_emissions,n,y,y,"""(csv)""",, +CCl4_halocarbon,tau,n,n,y,32,years,lifetime in years (Table 7.SM.7 IPPC AR6) +CCl4_halocarbon,rho_CCl4,n,n,y,1.66E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +CCl4_halocarbon,delta_CCl4,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +CCl4_halocarbon,molarMass,n,n,y,153.8,g,molar mass +CCl4_halocarbon,CFC115_emissions,n,y,y,"""(csv)""",, +CH3CC13_halocarbon,tau,n,n,y,5,years,lifetime in years (Table 7.SM.7 IPPC AR6) +CH3CC13_halocarbon,rho_CH3CCl3,n,n,y,6.50E-05,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +CH3CC13_halocarbon,delta_CH3CCl3,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +CH3CC13_halocarbon,molarMass,n,n,y,133.35,g,molar mass +CH3CC13_halocarbon,CH3CCl3_emissions,n,y,y,"""(csv)""",, +halon1211_halocarbon,tau,n,n,y,16,years,lifetime in years (Table 7.SM.7 IPPC AR6) +halon1211_halocarbon,rho_halon1211,n,n,y,3.00E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +halon1211_halocarbon,delta_halon1211,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +halon1211_halocarbon,molarMass,n,n,y,165.35,g,molar mass +halon1211_halocarbon,halon1211_emissions,n,y,y,"""(csv)""",, +halon1301_halocarbon,tau,n,n,y,72,years,lifetime in years (Table 7.SM.7 IPPC AR6) +halon1301_halocarbon,rho_halon1301,n,n,y,2.99E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +halon1301_halocarbon,delta_halon1301,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +halon1301_halocarbon,molarMass,n,n,y,148.9,g,molar mass +halon1301_halocarbon,halon1301_emissions,n,y,y,"""(csv)""",, +halon2402_halocarbon,tau,n,n,y,28,years,lifetime in years (Table 7.SM.7 IPPC AR6) +halon2402_halocarbon,rho_halon2402,n,n,y,3.12E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +halon2402_halocarbon,delta_halon2402,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +halon2402_halocarbon,molarMass,n,n,y,259.8,g,molar mass +halon2402_halocarbon,halon2402_emissions,n,y,y,"""(csv)""",, +HCF22_halocarbon,tau,n,n,y,11.9,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HCF22_halocarbon,rho_HCFC22,n,n,y,2.14E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HCF22_halocarbon,delta_HCFC22,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HCF22_halocarbon,molarMass,n,n,y,86.45,g,molar mass +HCF22_halocarbon,HCFC22_emissions,n,y,y,"""(csv)""",, +HCFC141b_halocarbon,tau,n,n,y,9.4,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HCFC141b_halocarbon,rho_HCFC141b,n,n,y,1.61E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HCFC141b_halocarbon,delta_HCFC141b,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HCFC141b_halocarbon,molarMass,n,n,y,116.9,g,molar mass +HCFC141b_halocarbon,HCFC141b_emissions,n,y,y,"""(csv)""",, +HCFC142b_halocarbon,tau,n,n,y,18,years,lifetime in years (Table 7.SM.7 IPPC AR6) +HCFC142b_halocarbon,rho_HCFC142b,n,n,y,1.93E-04,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +HCFC142b_halocarbon,delta_HCFC142b,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +HCFC142b_halocarbon,molarMass,n,n,y,100.45,g,molar mass +HCFC142b_halocarbon,HCFC142b_emissions,n,y,y,"""(csv)""",, +CH3Cl_halocarbon,tau,n,n,y,0.9,years,lifetime in years (Table 7.SM.7 IPPC AR6) +CH3Cl_halocarbon,rho_CH3Cl,n,n,y,5.00E-06,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +CH3Cl_halocarbon,delta_CH3Cl,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +CH3Cl_halocarbon,H0,n,n,y,504,pptv,"preindustrial concentration, from Saito et al 2007 GRL" +CH3Cl_halocarbon,molarMass,n,n,y,50.45,g,molar mass +CH3Cl_halocarbon,CH3Cl_emissions,n,y,y,"""(csv)""",, +CH3Br_halocarbon,tau,n,n,y,0.8,years,lifetime in years (Table 7.SM.7 IPPC AR6) +CH3Br_halocarbon,rho_CH3Br,n,n,y,4.00E-06,W m-2 ppt-1,radiative efficiencies (Table 7.SM.7 IPPC AR6) +CH3Br_halocarbon,delta_CH3Br,n,n,y,0,(unitless),tropospheric adjustments scalar (7.3.2.4 IPCC AR6) +CH3Br_halocarbon,H0,n,n,y,5.8,pptv,"preindustrial concentration, from Saltzman et al 2004 JGR" +CH3Br_halocarbon,molarMass,n,n,y,50.45,g,molar mass +CH3Br_halocarbon,CH3Br_emissions,n,y,y,"""(csv)""",, diff --git a/data-raw/lookup-data.R b/data-raw/lookup-data.R new file mode 100644 index 000000000..28df6fae4 --- /dev/null +++ b/data-raw/lookup-data.R @@ -0,0 +1,39 @@ +# Generate the table of Hector strings and functions for the look up table. +# Load the hector package +devtools::load_all() + +# Helper function to evaluate an export R function +# Args +# n: name of the function +# Returns: string output from the function +hector_eval_func <- function(n) { + print(n) + assertthat::assert_that(is.character(n)) + x <- match.fun(gsub(x = n, pattern = "\\()", replacement = "")) + assertthat::assert_that(is.function(x)) + x() +} + +# Read ini the contents of the rcpp file, this is written with the working +# directory set to the root directory of the Hector repository/package. +lines <- readLines("./src/rcpp_constants.cpp") + +# Specific functions to exclude +# TODO is there a way to make this not hard coded? +lines <- lines[!grepl( + pattern = "GETDATA|SETDATA|BIOME_SPLIT_CHAR|RFADJ_PREFIX|RF_PREFIX", + x = lines)] + +# Identify the lines of the code where the R function names are defined. +conditions <- (grepl("^String ", x = lines) & !grepl("^ ", x = lines)) +string_names <- lines[conditions] +string_names <- gsub(pattern = "\\(String", replacement = "()", x = string_names) + +# Parse out the function names, evaluate the function then store results in +# a table. +fxn_names <- unlist(lapply(string_names, function(s) { + unlist(strsplit(s, split = " "))[2]})) +fxn_vals <- unlist(lapply(fxn_names, hector_eval_func)) +fxntable <- data.frame(fxn = fxn_names, string = fxn_vals) + +usethis::use_data(fxntable, internal = FALSE, overwrite = TRUE) diff --git a/data-raw/save-input-params.R b/data-raw/save-input-params.R new file mode 100644 index 000000000..09dfc7aed --- /dev/null +++ b/data-raw/save-input-params.R @@ -0,0 +1,9 @@ +# Since this script will only be run occasionally while actively developing Hector, use +# devtools::load_all() instead of loading the built Hector package. +devtools::load_all() + +# Read in the input parameter csv file +inputstable <- read.csv("./data-raw/input_params.csv") + +# Save as an object in the package +usethis::use_data(inputstable, internal = FALSE, overwrite = TRUE) diff --git a/data-raw/units-data.R b/data-raw/units-data.R index 5db6e0773..d742e19f3 100644 --- a/data-raw/units-data.R +++ b/data-raw/units-data.R @@ -4,59 +4,88 @@ # variables missing). devtools::load_all() -hvars <- c( - ECS(), PREINDUSTRIAL_CO2(), Q10_RH(), BETA(), AERO_SCALE(), VOLCANIC_SCALE(), DIFFUSIVITY(), - FFI_EMISSIONS(), LUC_EMISSIONS(), - EMISSIONS_BC(), EMISSIONS_N2O(), EMISSIONS_NOX(), EMISSIONS_CO(), - EMISSIONS_NMVOC(), EMISSIONS_OC(), NAT_EMISSIONS_N2O(), - EMISSIONS_CH4(), PREINDUSTRIAL_CH4(), NATURAL_CH4(), LIFETIME_SOIL(), LIFETIME_STRAT(), - EMISSIONS_SO2(), VOLCANIC_SO2(), CO2_CONSTRAIN(), - CH4_CONSTRAIN(), N2O_CONSTRAIN() -) - - -hunits <- c( - "degC", "ppmv CO2", "(unitless)", "(unitless)", "(unitless)", "(unitless)", "cm2/s", - "Pg C/yr", "Pg C/yr", - "Tg", "Tg N", "Tg N", "Tg CO", - "Tg NMVOC", "Tg", "Tg N", - "Tg CH4", "ppbv CH4", "Tg CH4", "Years", "Years", - "Gg S", "W/m2", "ppmv CO2", - "ppbv CH4", "ppbv N2O" -) - - -haloemis <- c( - EMISSIONS_CF4(), EMISSIONS_C2F6(), EMISSIONS_HFC23(), - EMISSIONS_HFC32(), EMISSIONS_HFC4310(), EMISSIONS_HFC125(), - EMISSIONS_HFC134A(), EMISSIONS_HFC143A(), EMISSIONS_HFC227EA(), - EMISSIONS_HFC245FA(), EMISSIONS_SF6(), EMISSIONS_CFC11(), - EMISSIONS_CFC12(), EMISSIONS_CFC113(), EMISSIONS_CFC114(), - EMISSIONS_CFC115(), EMISSIONS_CCL4(), EMISSIONS_CH3CCL3(), - EMISSIONS_HCFC22(), EMISSIONS_HCFC141B(), EMISSIONS_HCFC142B(), - EMISSIONS_HALON1211(), EMISSIONS_HALON1301(), - EMISSIONS_HALON2402(), EMISSIONS_CH3CL(), EMISSIONS_CH3BR() -) -halounits <- "Gg" - -haloconstrain <- c( - CF4_CONSTRAIN(), C2F6_CONSTRAIN(), HFC23_CONSTRAIN(), - HFC32_CONSTRAIN(), HFC4310_CONSTRAIN(), HFC125_CONSTRAIN(), - HFC134A_CONSTRAIN(), HFC143A_CONSTRAIN(), HFC227EA_CONSTRAIN(), - HFC245FA_CONSTRAIN(), SF6_CONSTRAIN(), CFC11_CONSTRAIN(), - CFC12_CONSTRAIN(), CFC113_CONSTRAIN(), CFC114_CONSTRAIN(), - CFC115_CONSTRAIN(), CCL4_CONSTRAIN(), CH3CCL3_CONSTRAIN(), - HCFC22_CONSTRAIN(), HCFC141B_CONSTRAIN(), HCFC142B_CONSTRAIN(), - HALON1211_CONSTRAIN(), HALON1301_CONSTRAIN(), HALON2402_CONSTRAIN(), - CH3CL_CONSTRAIN(), CH3BR_CONSTRAIN() -) -haloconstrain_units <- "pptv" - - -unitstable <- rbind( - data.frame(variable = hvars, units = hunits), - data.frame(variable = haloemis, units = halounits), - data.frame(variable = haloconstrain, units = haloconstrain_units) -) - -usethis::use_data(unitstable, internal = TRUE, overwrite = TRUE) +simpleNbox_vars <- c(PREINDUSTRIAL_CO2(), NPP_FLUX0(), + FFI_EMISSIONS(), DACCS_UPTAKE(), LUC_EMISSIONS(), LUC_UPTAKE(), + CO2_CONSTRAIN(), NBP_CONSTRAIN(), BETA(), Q10_RH()) +simpleNbox_uni <- c("ppmv CO2", "Pg C/yr", "Pg C/yr", "Pg C/yr", "Pg C/yr", + "Pg C/yr", "ppmv CO2", "Pg C/yr", "(unitless)", "(unitless)") + +ocean_vars <- c(TT(), TU(), TWI(), TID(), OCEAN_PREIND_C_SURF(), OCEAN_PREIND_C_ID()) +ocean_uni <- c("m3/s", "m3/s", "m3/s", "m3/s", "Pg C", "Pg C") + +so2_vars <- c(EMISSIONS_SO2(), VOLCANIC_SO2()) +so2_uni <- c("Gg S", "W/m2") + +ch4_vars <- c(PREINDUSTRIAL_CH4(), NATURAL_CH4(), EMISSIONS_CH4(), CH4_CONSTRAIN(), + LIFETIME_SOIL(), LIFETIME_STRAT()) +ch4_uni <- c("ppbv CH4", "Tg CH4", "Tg CH4", "ppbv CH4", "Years", "Years") + +oh_vars <- c(EMISSIONS_NOX(), EMISSIONS_CO(), EMISSIONS_NMVOC()) +oh_uni <- c("Tg N", "Tg CO", "Tg NMVOC") + +n2o_vars <- c(EMISSIONS_N2O(), N2O_CONSTRAIN(), NAT_EMISSIONS_N2O(), PREINDUSTRIAL_N2O()) +n2o_uni <- c("Tg N", "ppbv N2O", "Tg N", "ppbv N2O") + +forcing_vars <- c(DELTA_CO2(), DELTA_CH4(), DELTA_N2O(), RHO_BC(), + RHO_OC(), RHO_SO2(), RHO_NH3(), RF_ALBEDO(), RF_MISC()) +forcing_uni <- c("(unitless)", "(unitless)", "(unitless)", "W/m2/Tg", + "W/m2/Tg", "W/m2/Gg", "W/m2/Tg", "W/m2", "W/m2") + +temp_vars <- c(ECS(), DIFFUSIVITY(), AERO_SCALE(), VOLCANIC_SCALE(), + Q_CO2(), TAS_CONSTRAIN(), LO_WARMING_RATIO()) +temp_uni <- c("degC", "cm2/s", "(unitless)", "(unitless)", "W/m2", + "degC", "(unitless)") + +misc_emiss_vars <- c(EMISSIONS_BC(), EMISSIONS_OC(), EMISSIONS_NH3()) +misc_emiss_uni <- c("Tg", "Tg", "Tg") + +haloemis_vars <- c(EMISSIONS_CF4(), EMISSIONS_C2F6(), EMISSIONS_HFC23(), + EMISSIONS_HFC32(), EMISSIONS_HFC4310(), EMISSIONS_HFC125(), + EMISSIONS_HFC134A(), EMISSIONS_HFC143A(), EMISSIONS_HFC227EA(), + EMISSIONS_HFC245FA(), EMISSIONS_SF6(), EMISSIONS_CFC11(), + EMISSIONS_CFC12(), EMISSIONS_CFC113(), EMISSIONS_CFC114(), + EMISSIONS_CFC115(), EMISSIONS_CCL4(), EMISSIONS_CH3CCL3(), + EMISSIONS_HCFC22(), EMISSIONS_HCFC141B(), EMISSIONS_HCFC142B(), + EMISSIONS_HALON1211(), EMISSIONS_HALON1301(), + EMISSIONS_HALON2402(), EMISSIONS_CH3CL(), EMISSIONS_CH3BR()) +haloemis_uni <- "Gg" + +haloconstrain_vars <- c(CF4_CONSTRAIN(), C2F6_CONSTRAIN(), HFC23_CONSTRAIN(), + HFC32_CONSTRAIN(), HFC4310_CONSTRAIN(), HFC125_CONSTRAIN(), + HFC134A_CONSTRAIN(), HFC143A_CONSTRAIN(), HFC227EA_CONSTRAIN(), + HFC245FA_CONSTRAIN(), SF6_CONSTRAIN(), CFC11_CONSTRAIN(), + CFC12_CONSTRAIN(), CFC113_CONSTRAIN(), CFC114_CONSTRAIN(), + CFC115_CONSTRAIN(), CCL4_CONSTRAIN(), CH3CCL3_CONSTRAIN(), + HCFC22_CONSTRAIN(), HCFC141B_CONSTRAIN(), HCFC142B_CONSTRAIN(), + HALON1211_CONSTRAIN(), HALON1301_CONSTRAIN(), HALON2402_CONSTRAIN(), + CH3CL_CONSTRAIN(), CH3BR_CONSTRAIN()) +haloconstrain_uni <- "pptv" + +halodeltas_vars <- c(DELTA_CF4(), DELTA_C2F6(), DELTA_HFC23(), DELTA_HFC32(), + DELTA_HFC4310(), DELTA_HFC125(), DELTA_HFC134A(), DELTA_HFC143A(), + DELTA_HFC227EA(), DELTA_HFC245FA(), DELTA_SF6(), DELTA_CFC11(), + DELTA_CFC12(), DELTA_CFC113(), DELTA_CFC114(), DELTA_CFC115(), + DELTA_CCL4(), DELTA_CH3CCL3(), DELTA_HCFC22(), DELTA_HCFC141B(), + DELTA_HCFC142B(), DELTA_HALON1211(), DELTA_HALON1301(), + DELTA_HALON2402(), DELTA_CH3CL(), DELTA_CH3BR(), DELTA_CH4(), + DELTA_CO2()) +halodeltas_uni <- "(unitless)" + +misc_var <- c(TRACKING_DATE()) +misc_uni <- c("(unitless)") + +unitstable <- rbind(data.frame(variable = simpleNbox_vars, units = simpleNbox_uni), + data.frame(variable = ocean_vars, units = ocean_uni), + data.frame(variable = so2_vars, units = so2_uni), + data.frame(variable = ch4_vars, units = ch4_uni), + data.frame(variable = oh_vars, units = oh_uni), + data.frame(variable = n2o_vars, units = n2o_uni), + data.frame(variable = forcing_vars, units = forcing_uni), + data.frame(variable = temp_vars, units = temp_uni), + data.frame(variable = misc_emiss_vars, units = misc_emiss_uni), + data.frame(variable = haloemis_vars, units = haloemis_uni), + data.frame(variable = haloconstrain_vars, units = haloconstrain_uni), + data.frame(variable = halodeltas_vars, units = halodeltas_uni), + data.frame(variable = misc_var, units = misc_uni)) + +usethis::use_data(unitstable, internal = FALSE, overwrite = TRUE) diff --git a/data/fxntable.rda b/data/fxntable.rda new file mode 100644 index 000000000..c3ecf4ce2 Binary files /dev/null and b/data/fxntable.rda differ diff --git a/data/inputstable.rda b/data/inputstable.rda new file mode 100644 index 000000000..de3ca53bb Binary files /dev/null and b/data/inputstable.rda differ diff --git a/data/unitstable.rda b/data/unitstable.rda new file mode 100644 index 000000000..67ee825dd Binary files /dev/null and b/data/unitstable.rda differ diff --git a/inst/CITATION b/inst/CITATION deleted file mode 100644 index 19a920ab5..000000000 --- a/inst/CITATION +++ /dev/null @@ -1,17 +0,0 @@ -bibentry('Article', - header = - 'When using Hector in your research, please cite the following model documentation paper:', - key = 'hartin2015simple', - title = - 'A simple object-oriented and open-source model for scientific and policy analyses of the global climate system--Hector v1.0', - author = - 'Corinne A Hartin and Pralit Patel and Adria Schwarber and Robert Link and Ben Bond-Lamberty', - journal = 'Geoscientific Model Development', - volume = 8, - number = 4, - pages = '939--955', - year = 2015, - publisher = 'Copernicus GmbH', - footer = - 'Hector development was supported by the U.S. Department of Energy, Office of Science, as part of research in Multi-Sector Dynamics, Earth and Environmental System Modeling Program. The Pacific Northwest National Laboratory is operated for DOE by Battelle Memorial Institute under contract DE-AC05-76RL01830.' - ) diff --git a/inst/WORDLIST b/inst/WORDLIST new file mode 100644 index 000000000..29d5ccfe5 --- /dev/null +++ b/inst/WORDLIST @@ -0,0 +1,366 @@ +ACC +ACI +Acidification +AddNewVariable +AddTSeries +Anthropogenic +Aragón +Arora +Battelle +Biogeosciences +Biome +Biota +Bopp +Brovkin +Bugfix +BuildHector +CCL +CCl +CESM +CMD +CMIP +Caud +Cflux +Chapin +Cramer +DOECLIM +DOECLIM’s +DOI +Delmotte +Dev +Doxygen +Dube +DummyModelComponent +Durand +Dynam +EF +EMGC +ESCIMO +ESMs +Elmar +Evanoff +FBC +FC +FCCl +FCF +FCFC +FCH +FCO +FH +FHCF +FHFC +FN +FO +FOC +FSO +FaIR +FadjC +FadjCCl +FadjCF +FadjCFC +FadjCH +FadjHCFC +FadjHFC +FadjSF +Fadjhalon +Feedbacks +Fhalon +Forcings +Frac +Friedlingstein +Ftalbedo +Ftot +Fvol +GCAM +GETDATA +GHG +GHGs +GL +GMST +GPP +GREB +GSL +GTEST +GTESTLIB +Geophys +Geosci +Gg +Gieseke +Github +Goldfarb +Gomis +Googletest +HCCFC +HCF +HCFC +HCO +HFC +HL +Hajima +HcFC +HectorUI +Hectordata +Heterotrophic +Homebrew +INI +IPCC +InputFiles +Intercomparison +Interpretable +JCLI +Kainuma +Kala +Kato +Kawamiya +Knorr +Knorr's +Kravitz +Kriegler +LUC +Lamberty +Leitzell +Lenton +Liddicoat +Lonnoy +MAGICC +MCE +Mahowald +Makefile +Masson +Maycock +McElroy +Meinshausen +MimiHECTOR +Monash +Moufouma +Mulugetta +Mundra +NBP +NMVOC +NOx +NPP +NewVar +Nicholls +NumericVector +OC +ORCID +OSX +Okia +OmegaAr +OmegaCa +PCO +PNNL +PPMv +PRs +PgC +Ph +PhDKriegler +Pidcock +Pirani +Pre +Preindustrial +Péan +Pörtner +RCM +RCMIP +RCMs +RCP +RCPs +RDCEP +RL +Radiative +Rcpp +Reick +Revelle +Roelandt +Roxygen +Rstudio +Rtools +SCM +SCMs +SETDATA +SPP +SSP +SSPs +STL +STRAT +Sarmiento +Schwarber +Segschneider +Shevliakova +Shukla +Skea +Solecki +Sriver +Syst +TAS +TROP +Tellus +Tg +Tgav +Thermohaline +Tignor +Tjiputra +Toggweiler +Uncommenting +Universit +Universität +Wairiu +Waldhoff +Walkthrough +Watanabe +Waterfield +Westhoff +Wilner +Xcode +Yelek +Yu +Zhai +Zhou +Zickfeld +aci +acidification +addd +al +albedo +anthro +anthropogenic +ar +aragnoite +aragonite +atm +atmos +bc +bg +biome +biome's +biomes +bool +bromomethane +carboncycle +chloromethane +codebase +codecov +const +cpp +csv +dC +de +degC +doi +downwelling +ds +dt +dx +edenh +enddate +et +feedbacks +fetchvars +ffi +ffiEmissions +filesystem +fldgen +forcer +forcings +foring +frac +fveg +getData +getdate +getname +gigagrams +github +gmd +googletest +halocarbon +halocarbons +haloconstrains +haloemiss +haloforcings +halono +hc +heatflux +hectorui +heterotrophic +hexafluoride +hpp +http +https +iD +ini +init +intercomparison +ipcc +isactive +larc +ld +litterfall +loglevel +lucEmissions +lv +macOS +makefiles +mapply +multiforcing +mynasadata +nasa +nd +newname +nitrous +npp +ns +nv +oc +oldname +outputstream +pCO +params +pik +potsdam +ppbv +ppmv +pptv +pre +preindustrial +prepareToRun +pyhector +quickstart +radiative +registerCapability +registerDependency +rh +roxygen +runToDate +semiempirical +setData +shutDown +simpleNbox +spinup +ssp +sst +startdate +strat +stringmaps +subclasses +subunit +tas +tetrachloride +trichloroethane +trop +tropospheric +tseries +ttps +tuneable +uatm +umol +uncommenting +unitless +unitval +unitvals +vd +vectorized +wg +wheterh +www +zenodo diff --git a/inst/include/INIReader.h b/inst/include/INIReader.h index 0cf035304..1436da603 100644 --- a/inst/include/INIReader.h +++ b/inst/include/INIReader.h @@ -15,33 +15,32 @@ namespace Hector { // Read an INI file into easy-to-access name/value pairs. (Note that I've gone // for simplicity here rather than speed, but it should be pretty decent.) -class INIReader -{ +class INIReader { public: - // Construct INIReader and parse given filename. See ini.h for more info - // about the parsing. - INIReader(std::string filename); + // Construct INIReader and parse given filename. See ini.h for more info + // about the parsing. + INIReader(std::string filename); - // Return the result of ini_parse(), i.e., 0 on success, line number of - // first error on parse error, or -1 on file open error. - int ParseError(); + // Return the result of ini_parse(), i.e., 0 on success, line number of + // first error on parse error, or -1 on file open error. + int ParseError(); - // Get a string value from INI file, returning default_value if not found. - std::string Get(std::string section, std::string name, - std::string default_value); + // Get a string value from INI file, returning default_value if not found. + std::string Get(std::string section, std::string name, + std::string default_value); - // Get an integer (long) value from INI file, returning default_value if - // not found. - long GetInteger(std::string section, std::string name, long default_value); + // Get an integer (long) value from INI file, returning default_value if + // not found. + long GetInteger(std::string section, std::string name, long default_value); private: - int _error; - std::map _values; - static std::string MakeKey(std::string section, std::string name); - static int ValueHandler(void* user, const char* section, const char* name, - const char* value); + int _error; + std::map _values; + static std::string MakeKey(std::string section, std::string name); + static int ValueHandler(void *user, const char *section, const char *name, + const char *value); }; -} +} // namespace Hector -#endif // __INIREADER_H__ +#endif // __INIREADER_H__ diff --git a/inst/include/avisitor.hpp b/inst/include/avisitor.hpp index cc7132234..a57d59e77 100644 --- a/inst/include/avisitor.hpp +++ b/inst/include/avisitor.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -14,6 +14,8 @@ * */ +#include + namespace Hector { // Forward declare all visitable subclasses. @@ -30,6 +32,7 @@ class N2OComponent; class TemperatureComponent; class BlackCarbonComponent; class OrganicCarbonComponent; +class NH3Component; class OceanComponent; class SulfurComponent; class OzoneComponent; @@ -40,41 +43,53 @@ class OzoneComponent; */ class AVisitor { public: - inline virtual ~AVisitor(); + inline virtual ~AVisitor(); + + //------------------------------------------------------------------------------ + /*! \brief Determine if the visitor needs to collect data at the given model + * date. + * \param date The model date which just finished solving. + * \return True if the visitor wants to visit at date. + */ + virtual bool shouldVisit(const bool in_spinup, const double date) = 0; + + //------------------------------------------------------------------------------ + /*! \brief Allow visitors to reset their data upon a core reset. + * \param reset_date The date to reset to. + */ + virtual void reset(const double reset_date) {} - //------------------------------------------------------------------------------ - /*! \brief Determine if the visitor needs to collect data at the given model - * date. - * \param date The model date which just finished solving. - * \return True if the visitor wants to visit at date. - */ - virtual bool shouldVisit( const bool in_spinup, const double date ) = 0; + //------------------------------------------------------------------------------ + /*! \brief Update the Tracking Data output if applicable. + * \param tracking_out The Tracking Data output stream to place results into. + */ + virtual void outputTrackingData(std::ostream &tracking_out) const {} - //------------------------------------------------------------------------------ - // Add a visit for all visitable subclasses here. - // TODO: should we create a .cpp for these? - virtual void visit( Core* core ) {} - virtual void visit( DummyModelComponent* c ) {} - virtual void visit( ForcingComponent* c ) {} - virtual void visit( slrComponent* c ) {} - virtual void visit( CarbonCycleSolver* c ) {} - virtual void visit( SimpleNbox* c ) {} - virtual void visit( HalocarbonComponent* c ) {} - virtual void visit( OHComponent* c ) {} - virtual void visit( CH4Component* c ) {} - virtual void visit( N2OComponent* c ) {} - virtual void visit( TemperatureComponent* c ) {} - virtual void visit( BlackCarbonComponent* c ) {} - virtual void visit( OrganicCarbonComponent* c ) {} - virtual void visit( OceanComponent* c ) {} - virtual void visit( SulfurComponent* c ) {} - virtual void visit( OzoneComponent* c ) {} + //------------------------------------------------------------------------------ + // Add a visit for all visitable subclasses here. + // TODO: should we create a .cpp for these? + virtual void visit(Core *core) {} + virtual void visit(DummyModelComponent *c) {} + virtual void visit(ForcingComponent *c) {} + virtual void visit(slrComponent *c) {} + virtual void visit(CarbonCycleSolver *c) {} + virtual void visit(SimpleNbox *c) {} + virtual void visit(HalocarbonComponent *c) {} + virtual void visit(OHComponent *c) {} + virtual void visit(CH4Component *c) {} + virtual void visit(N2OComponent *c) {} + virtual void visit(TemperatureComponent *c) {} + virtual void visit(BlackCarbonComponent *c) {} + virtual void visit(OrganicCarbonComponent *c) {} + virtual void visit(NH3Component *c) {} + virtual void visit(OceanComponent *c) {} + virtual void visit(SulfurComponent *c) {} + virtual void visit(OzoneComponent *c) {} }; // Inline methods -AVisitor::~AVisitor() { -} +AVisitor::~AVisitor() {} -} +} // namespace Hector #endif // AVISITOR_H diff --git a/inst/include/bc_component.hpp b/inst/include/bc_component.hpp index cbfd04607..4868f8067 100644 --- a/inst/include/bc_component.hpp +++ b/inst/include/bc_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -29,46 +29,44 @@ namespace Hector { class BlackCarbonComponent : public IModelComponent { public: - BlackCarbonComponent(); - ~BlackCarbonComponent(); + BlackCarbonComponent(); + ~BlackCarbonComponent(); - // IModelComponent methods - virtual std::string getComponentName() const; + // IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double time); + virtual void reset(double time); - virtual void shutDown(); + virtual void shutDown(); - // IVisitable methods - virtual void accept( AVisitor* visitor ); + // IVisitable methods + virtual void accept(AVisitor *visitor); private: - virtual unitval getData( const std::string& varName, - const double date ); + virtual unitval getData(const std::string &varName, const double date); - //! Emissions time series - tseries BC_emissions; + //! Emissions time series + tseries BC_emissions; - //! logger - Logger logger; + //! logger + Logger logger; - Core *core; - double oldDate; + Core *core; + double oldDate; }; -} +} // namespace Hector #endif // BLACK_CARBON_COMPONENT_H diff --git a/inst/include/carbon-cycle-model.hpp b/inst/include/carbon-cycle-model.hpp index eed4e750b..ac27d1c94 100644 --- a/inst/include/carbon-cycle-model.hpp +++ b/inst/include/carbon-cycle-model.hpp @@ -1,8 +1,8 @@ - /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute +/* Hector -- A Simple Climate Model + Copyright (C) 2022 Battelle Memorial Institute - Please see the accompanying file LICENSE.md for additional licensing - information. + Please see the accompanying file LICENSE.md for additional licensing + information. */ #ifndef CARBON_CYCLE_MODEL_HPP_ #define CARBON_CYCLE_MODEL_HPP_ @@ -16,17 +16,18 @@ #include -#include "imodel_component.hpp" #include "core.hpp" -#include "unitval.hpp" #include "h_util.hpp" +#include "imodel_component.hpp" +#include "unitval.hpp" // CO2 ppmv in molar mass dimension -// 1 ppm by volume of atmosphere CO2 = 2.13 Gt C, from http://cdiac.ornl.gov/pns/convert.html +// 1 ppm by volume of atmosphere CO2 = 2.13 Gt C, from +// http://cdiac.ornl.gov/pns/convert.html // and Wigley (1993) // So to convert 1 Pg C to 1 ppmv CO2... -#define PGC_TO_PPMVCO2 (1.0/2.13) -#define PPMVCO2_TO_PGC (1.0/PGC_TO_PPMVCO2) +#define PGC_TO_PPMVCO2 (1.0 / 2.13) +#define PPMVCO2_TO_PGC (1.0 / PGC_TO_PPMVCO2) // Signal from model to the solver that, while we haven't failed, // need to stash C values and re-try reaching next timestep @@ -47,96 +48,95 @@ namespace Hector { class CarbonCycleModel : public IModelComponent { public: - CarbonCycleModel( int ncpools=0 ) : nc( ncpools ) {} - virtual ~CarbonCycleModel() {} - // We will want to put some data accessor methods here, but it's not - // clear what would be appropriate. - - int ncpool() const { return nc; } - - // IModelComponent methods - std::string getComponentName() const { return std::string( CCS_COMPONENT_NAME ); } - - virtual void init( Core* core ); - - // The model interface, as seen by the solver - - //! Copy the values of the carbon pools into the input array, - //! stripping off units as necessary. - virtual void getCValues( double t, double c[] ) = 0; - - //! Calculate the derivatives of the carbon pool values and store in - //! dcdt. - //! \details The function calcderivs is evaluating is dc/dt = - //! F(c; t, params). c and t are passed in; params can be any state - //! that is stored in the class's member variables. - virtual int calcderivs( double t, const double c[], double dcdt[] ) const = 0; - - //! Calculate updates to the model's "slowly varying" variables. - - //! \details The model is allowed to have certain variables that are - //! assumed to be expensive enough that we want to calculate them - //! only once per time step and slowly varying enough that we can - //! get away with doing so (e.g. temperature). The solver calls - //! this function when necessary to perform that update. The - //! variables should be updated with the c and t values passed in, - //! as these will generally be different from the last time variable - //! the model saw from the core. - virtual void slowparameval( double t, const double c[] ) = 0; - - //! Copy the C values back into the model, restore units, etc. - virtual void stashCValues( double t, const double c[] ) = 0; - - //! Record the final state at the end of a time step - - //! \details This method should copy all state variables into a - //! time-indexed array. Mostly this will allow the object to - //! reset to a previous time, but the object may also use these - //! arrays to provide other components with data from the entire - //! history of the run. If a carbon cycle class stores - //! time-indexed values in the course of its normal operation, - //! then there might not be any need to do this copying. In that - //! case, the class can inherit the default implementation of the - //! method, which does nothing. - virtual void record_state(double t) {} - - // Create, delete, and rename biomes. These must be defined here - // because some C cycle models (e.g. the ocean C cycle component) - // will not have biomes, but are members of the `CarbonCycleModel` - // class. For more details and reference implementation, see the - // `SimpleNBox` model. - inline - virtual void createBiome(const std::string& biome) { - H_THROW("`createBiome` is not defined for this component.") - } - inline - virtual void deleteBiome(const std::string& biome) { - H_THROW("`deleteBiome` is not defined for this component.") - }; - inline - virtual void renameBiome(const std::string& oldname, const std::string& newname){ - H_THROW("`renameBiome` is not defined for this component.") - } + CarbonCycleModel(int ncpools = 0) : nc(ncpools) {} + virtual ~CarbonCycleModel() {} + // We will want to put some data accessor methods here, but it's not + // clear what would be appropriate. + + int ncpool() const { return nc; } + + // IModelComponent methods + std::string getComponentName() const { + return std::string(CCS_COMPONENT_NAME); + } + + virtual void init(Core *core); + + // The model interface, as seen by the solver + + //! Copy the values of the carbon pools into the input array, + //! stripping off units as necessary. + virtual void getCValues(double t, double c[]) = 0; + + //! Calculate the derivatives of the carbon pool values and store in + //! dcdt. + //! \details The function calcderivs is evaluating is dc/dt = + //! F(c; t, params). c and t are passed in; params can be any state + //! that is stored in the class's member variables. + virtual int calcderivs(double t, const double c[], double dcdt[]) const = 0; + + //! Calculate updates to the model's "slowly varying" variables. + + //! \details The model is allowed to have certain variables that are + //! assumed to be expensive enough that we want to calculate them + //! only once per time step and slowly varying enough that we can + //! get away with doing so (e.g. temperature). The solver calls + //! this function when necessary to perform that update. The + //! variables should be updated with the c and t values passed in, + //! as these will generally be different from the last time variable + //! the model saw from the core. + virtual void slowparameval(double t, const double c[]) = 0; + + //! Copy the C values back into the model, restore units, etc. + virtual void stashCValues(double t, const double c[]) = 0; + + //! Record the final state at the end of a time step + + //! \details This method should copy all state variables into a + //! time-indexed array. Mostly this will allow the object to + //! reset to a previous time, but the object may also use these + //! arrays to provide other components with data from the entire + //! history of the run. If a carbon cycle class stores + //! time-indexed values in the course of its normal operation, + //! then there might not be any need to do this copying. In that + //! case, the class can inherit the default implementation of the + //! method, which does nothing. + virtual void record_state(double t) {} + + // Create, delete, and rename biomes. These must be defined here + // because some C cycle models (e.g. the ocean C cycle component) + // will not have biomes, but are members of the `CarbonCycleModel` + // class. For more details and reference implementation, see the + // `SimpleNBox` model. + inline virtual void createBiome(const std::string &biome) { + H_THROW("`createBiome` is not defined for this component.") + } + inline virtual void deleteBiome(const std::string &biome){ + H_THROW("`deleteBiome` is not defined for this component.")}; + inline virtual void renameBiome(const std::string &oldname, + const std::string &newname) { + H_THROW("`renameBiome` is not defined for this component.") + } protected: - //! Number of carbon pools in the model. - //! \details nc must be constant over the life of the calculation. - //! Often it will be known from the moment the model is - //! instantiated, but we leave open the possibility that it might be - //! affected by some user settable parameters (e.g. number of deep - //! ocean boxes). - int nc; - - // Time - double ODEstartdate; //!< Date tracking - - //! logger for use by subclasses - Logger logger; - - //! Pointers to the core - Core *core; + //! Number of carbon pools in the model. + //! \details nc must be constant over the life of the calculation. + //! Often it will be known from the moment the model is + //! instantiated, but we leave open the possibility that it might be + //! affected by some user settable parameters (e.g. number of deep + //! ocean boxes). + int nc; + + // Time + double ODEstartdate; //!< Date tracking + + //! logger for use by subclasses + Logger logger; + + //! Pointers to the core + Core *core; }; -} +} // namespace Hector #endif diff --git a/inst/include/carbon-cycle-solver.hpp b/inst/include/carbon-cycle-solver.hpp index 68bd0aeef..0ef7e5b12 100644 --- a/inst/include/carbon-cycle-solver.hpp +++ b/inst/include/carbon-cycle-solver.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -16,14 +16,14 @@ #include -#include "logger.hpp" #include "carbon-cycle-model.hpp" #include "h_util.hpp" +#include "logger.hpp" #define MAX_CARBON_MODEL_RETRIES 8 namespace Hector { - + /*! \brief The carbon cycle solver component * * The strategy in this solver is to write the carbon cycle as @@ -45,93 +45,93 @@ namespace Hector { * */ class CarbonCycleSolver : public IModelComponent { - + public: - CarbonCycleSolver(); - virtual ~CarbonCycleSolver(); - - //! Return a carbon pool value. Components will know which one they want. - double cpool( int i ) const { return c[ i ]; } - - - // IModelComponent methods - std::string getComponentName() const { return std::string( CCS_COMPONENT_NAME ); } - - virtual void init( Core* core ); - - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); - - virtual void setData( const std::string& varName, - const message_data& data ); - - virtual void prepareToRun(); - - virtual void run( const double runToDate ); - - virtual bool run_spinup( const int step ); - - virtual void reset(double date); - - virtual void shutDown(); - - - // IVisitable methods - virtual void accept( AVisitor* visitor ); - + CarbonCycleSolver(); + virtual ~CarbonCycleSolver(); + + //! Return a carbon pool value. Components will know which one they want. + double cpool(int i) const { return c[i]; } + + // IModelComponent methods + std::string getComponentName() const { + return std::string(CCS_COMPONENT_NAME); + } + + virtual void init(Core *core); + + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); + + virtual void setData(const std::string &varName, const message_data &data); + + virtual void prepareToRun(); + + virtual void run(const double runToDate); + + virtual bool run_spinup(const int step); + + virtual void reset(double date); + + virtual void shutDown(); + + // IVisitable methods + virtual void accept(AVisitor *visitor); + private: - virtual unitval getData( const std::string& varName, - const double valueIndex ); - - //! Number of variables to integrate - int nc; - //! Array of carbon pools (and such other vars as need to be integrated) - std::vector c; - //! time counter - double t; - - //settable parameters - //! Absolute error tolerance for integration - double eps_abs; - //! Relative error tolerance for integration - double eps_rel; - //! Default stepsize (years) -- the integrator will adjust this as required - double dt; - - unitval eps_spinup; //! spinup epsilon (drift/tolerance), Pg C - - struct bad_derivative_exception { - bad_derivative_exception(const int status):errorFlag(status) { } - int errorFlag; - }; - // A functor to provide callbacks for the ODE solver. - struct ODEEvalFunctor { - ODEEvalFunctor( CarbonCycleModel* cmodel, double* time ):modelptr(cmodel), t(time) { } - void operator()( const std::vector& y, std::vector& dydt, double t ); - void operator()( const std::vector& y, double t ); - CarbonCycleModel* modelptr; - double* t; - }; - - void failure( int stat, double t0, double tmid ); - - bool in_spinup; - - // Pointers to other components - Core *core; - CarbonCycleModel *cmodel; - - //! Logger for solver - Logger logger; - - //! Internal working space - std::vector c_original; - std::vector c_old; - std::vector c_new; - std::vector dcdt; + virtual unitval getData(const std::string &varName, const double valueIndex); + + //! Number of variables to integrate + int nc; + //! Array of carbon pools (and such other vars as need to be integrated) + std::vector c; + //! time counter + double t; + + // settable parameters + //! Absolute error tolerance for integration + double eps_abs; + //! Relative error tolerance for integration + double eps_rel; + //! Default stepsize (years) -- the integrator will adjust this as required + double dt; + + unitval eps_spinup; //! spinup epsilon (drift/tolerance), Pg C + + struct bad_derivative_exception { + bad_derivative_exception(const int status) : errorFlag(status) {} + int errorFlag; + }; + // A functor to provide callbacks for the ODE solver. + struct ODEEvalFunctor { + ODEEvalFunctor(CarbonCycleModel *cmodel, double *time) + : modelptr(cmodel), t(time) {} + void operator()(const std::vector &y, std::vector &dydt, + double t); + void operator()(const std::vector &y, double t); + CarbonCycleModel *modelptr; + double *t; + }; + + void failure(int stat, double t0, double tmid); + + bool in_spinup; + + // Pointers to other components + Core *core; + CarbonCycleModel *cmodel; + + //! Logger for solver + Logger logger; + + //! Internal working space + std::vector c_original; + std::vector c_old; + std::vector c_new; + std::vector dcdt; }; -} +} // namespace Hector #endif diff --git a/inst/include/ch4_component.hpp b/inst/include/ch4_component.hpp index ce36d0811..c68580ee1 100644 --- a/inst/include/ch4_component.hpp +++ b/inst/include/ch4_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -28,52 +28,50 @@ namespace Hector { class CH4Component : public IModelComponent { public: - CH4Component(); - ~CH4Component(); + CH4Component(); + ~CH4Component(); - // IModelComponent methods - virtual std::string getComponentName() const; + // IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double time); + virtual void reset(double time); - virtual void shutDown(); + virtual void shutDown(); - // IVisitable methods - virtual void accept( AVisitor* visitor ); + // IVisitable methods + virtual void accept(AVisitor *visitor); - private: - virtual unitval getData( const std::string& varName, - const double date ); - //! emissions time series - tseries CH4_emissions; - tseries CH4; // CH4 concentrations, ppbv CH4 - tseries CH4_constrain; // CH4 concentration constraint, ppbv CH4 - unitval M0; // preindustrial methane, ppbv CH4 - unitval UC_CH4; // conversion factor between emissions and concentration - unitval CH4N; // annual natural emissions, Tg CH4/yr - unitval Tsoil; // annual CH4 loss to soil, Tg CH4/yr - unitval Tstrat; // annual CH4 loss to stratosphere, Tg CH4/yr +private: + virtual unitval getData(const std::string &varName, const double date); + //! emissions time series + tseries CH4_emissions; + tseries CH4; // CH4 concentrations, ppbv CH4 + tseries CH4_constrain; // CH4 concentration constraint, ppbv CH4 + unitval M0; // preindustrial methane, ppbv CH4 + unitval UC_CH4; // conversion factor between emissions and concentration + unitval CH4N; // annual natural emissions, Tg CH4/yr + unitval Tsoil; // lifetime of soil sink, yr + unitval Tstrat; // lifetime of tropospheric sink, yr - // logger - Logger logger; + // logger + Logger logger; - Core *core; - double oldDate; + Core *core; + double oldDate; }; -} +} // namespace Hector #endif // CH4_COMPONENT_H diff --git a/inst/include/component_data.hpp b/inst/include/component_data.hpp index 1b177a089..9174f8452 100644 --- a/inst/include/component_data.hpp +++ b/inst/include/component_data.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -15,322 +15,399 @@ */ #include "component_names.hpp" -// ------------------- names of data being passed between components ------------------------- +// ------------------- names of data being passed between components +// ------------------------- // Note names in INI input need to match these. // core -#define D_RUN_NAME "run_name" -#define D_START_DATE "startDate" -#define D_END_DATE "endDate" -#define D_DO_SPINUP "do_spinup" -#define D_MAX_SPINUP "max_spinup" -#define D_ENABLED "enabled" -#define D_OUTPUT_ENABLED "output" +#define D_RUN_NAME "run_name" +#define D_START_DATE "startDate" +#define D_END_DATE "endDate" +#define D_TRACKING_DATE "trackingDate" +#define D_DO_SPINUP "do_spinup" +#define D_MAX_SPINUP "max_spinup" +#define D_ENABLED "enabled" +#define D_OUTPUT_ENABLED "output" // bc component -#define D_EMISSIONS_BC "BC_emissions" +#define D_EMISSIONS_BC "BC_emissions" // carbon cycle solver -#define D_CCS_EPS_ABS "eps_abs" -#define D_CCS_EPS_REL "eps_rel" -#define D_CCS_DT "dt" -#define D_EPS_SPINUP "eps_spinup" +#define D_CCS_EPS_ABS "eps_abs" +#define D_CCS_EPS_REL "eps_rel" +#define D_CCS_DT "dt" +#define D_EPS_SPINUP "eps_spinup" // forcing component -#define D_RF_PREFIX "F" -#define D_RF_TOTAL D_RF_PREFIX "tot" -#define D_RF_T_ALBEDO D_RF_PREFIX "talbedo" -#define D_FTOT_CONSTRAIN D_RF_PREFIX "tot_constrain" -#define D_RF_BASEYEAR "baseyear" -#define D_RF_CO2 D_RF_PREFIX "CO2" -#define D_RF_N2O D_RF_PREFIX "N2O" -#define D_RF_H2O_STRAT D_RF_PREFIX "H2O_strat" -#define D_RF_O3_TROP D_RF_PREFIX "O3_trop" -#define D_RF_BC D_RF_PREFIX "BC" -#define D_RF_OC D_RF_PREFIX "OC" -#define D_RF_SO2d D_RF_PREFIX "SO2d" -#define D_RF_SO2i D_RF_PREFIX "SO2i" -#define D_RF_SO2 D_RF_PREFIX "SO2" -#define D_RF_VOL D_RF_PREFIX "vol" // forcing from volcanic so2 -#define D_RF_halocarbons D_RF_PREFIX "halocarbons" +#define D_RF_PREFIX "RF_" +#define D_RF_TOTAL D_RF_PREFIX "tot" +#define D_RF_T_ALBEDO D_RF_PREFIX "albedo" +#define D_FTOT_CONSTRAIN D_RF_PREFIX "tot_constrain" +#define D_RF_BASEYEAR "baseyear" +#define D_RF_CO2 D_RF_PREFIX "CO2" +#define D_RF_N2O D_RF_PREFIX "N2O" +#define D_RF_H2O_STRAT D_RF_PREFIX "H2O_strat" +#define D_RF_O3_TROP D_RF_PREFIX "O3_trop" +#define D_RF_BC D_RF_PREFIX "BC" +#define D_RF_OC D_RF_PREFIX "OC" +#define D_RF_NH3 D_RF_PREFIX "NH3" +#define D_RF_SO2 D_RF_PREFIX "SO2" +#define D_RF_ACI D_RF_PREFIX "aci" // forcing from aerosol-cloud interactions +#define D_RF_VOL D_RF_PREFIX "vol" // forcing from volcanic so2 +#define D_RF_halocarbons D_RF_PREFIX "halocarbons" +#define D_RF_MISC D_RF_PREFIX "misc" // miscellaneous radiative forcings +#define D_QCO2 "qco2" // 2×CO2 RF +#define D_DELTA_CH4 "delta_ch4" // forcing ch4 adjustment +#define D_DELTA_N2O "delta_n2o" // forcing n2o adjustment +#define D_DELTA_CO2 "delta_co2" // forcing co2 adjustment +#define D_RHO_BC "rho_bc" // BC radiative efficiency +#define D_RHO_OC "rho_oc" // BC radiative efficiency +#define D_RHO_SO2 "rho_so2" // SO2 radiative efficiency +#define D_RHO_NH3 "rho_nh3" // NH3 radiative efficiency // halocarbon components -#define D_RF_CF4 D_RF_PREFIX CF4_COMPONENT_BASE -#define D_RF_C2F6 D_RF_PREFIX C2F6_COMPONENT_BASE -#define D_RF_HFC23 D_RF_PREFIX HFC23_COMPONENT_BASE -#define D_RF_HFC32 D_RF_PREFIX HFC32_COMPONENT_BASE -#define D_RF_HFC4310 D_RF_PREFIX HFC4310_COMPONENT_BASE -#define D_RF_HFC125 D_RF_PREFIX HFC125_COMPONENT_BASE -#define D_RF_HFC134a D_RF_PREFIX HFC134a_COMPONENT_BASE -#define D_RF_HFC143a D_RF_PREFIX HFC143a_COMPONENT_BASE -#define D_RF_HFC227ea D_RF_PREFIX HFC227ea_COMPONENT_BASE -#define D_RF_HFC245fa D_RF_PREFIX HFC245fa_COMPONENT_BASE -#define D_RF_SF6 D_RF_PREFIX SF6_COMPONENT_BASE -#define D_RF_CFC11 D_RF_PREFIX CFC11_COMPONENT_BASE -#define D_RF_CFC12 D_RF_PREFIX CFC12_COMPONENT_BASE -#define D_RF_CFC113 D_RF_PREFIX CFC113_COMPONENT_BASE -#define D_RF_CFC114 D_RF_PREFIX CFC114_COMPONENT_BASE -#define D_RF_CFC115 D_RF_PREFIX CFC115_COMPONENT_BASE -#define D_RF_CCl4 D_RF_PREFIX CCl4_COMPONENT_BASE -#define D_RF_CH3CCl3 D_RF_PREFIX CH3CCl3_COMPONENT_BASE -#define D_RF_HCFC22 D_RF_PREFIX HCFC22_COMPONENT_BASE -#define D_RF_HCFC141b D_RF_PREFIX HCFC141b_COMPONENT_BASE -#define D_RF_HCFC142b D_RF_PREFIX HCFC142b_COMPONENT_BASE -#define D_RF_halon1211 D_RF_PREFIX halon1211_COMPONENT_BASE -#define D_RF_halon1301 D_RF_PREFIX halon1301_COMPONENT_BASE -#define D_RF_halon2402 D_RF_PREFIX halon2402_COMPONENT_BASE -#define D_RF_CH3Cl D_RF_PREFIX CH3Cl_COMPONENT_BASE -#define D_RF_CH3Br D_RF_PREFIX CH3Br_COMPONENT_BASE +#define D_RF_CF4 D_RF_PREFIX CF4_COMPONENT_BASE +#define D_RF_C2F6 D_RF_PREFIX C2F6_COMPONENT_BASE +#define D_RF_HFC23 D_RF_PREFIX HFC23_COMPONENT_BASE +#define D_RF_HFC32 D_RF_PREFIX HFC32_COMPONENT_BASE +#define D_RF_HFC4310 D_RF_PREFIX HFC4310_COMPONENT_BASE +#define D_RF_HFC125 D_RF_PREFIX HFC125_COMPONENT_BASE +#define D_RF_HFC134a D_RF_PREFIX HFC134a_COMPONENT_BASE +#define D_RF_HFC143a D_RF_PREFIX HFC143a_COMPONENT_BASE +#define D_RF_HFC227ea D_RF_PREFIX HFC227ea_COMPONENT_BASE +#define D_RF_HFC245fa D_RF_PREFIX HFC245fa_COMPONENT_BASE +#define D_RF_SF6 D_RF_PREFIX SF6_COMPONENT_BASE +#define D_RF_CFC11 D_RF_PREFIX CFC11_COMPONENT_BASE +#define D_RF_CFC12 D_RF_PREFIX CFC12_COMPONENT_BASE +#define D_RF_CFC113 D_RF_PREFIX CFC113_COMPONENT_BASE +#define D_RF_CFC114 D_RF_PREFIX CFC114_COMPONENT_BASE +#define D_RF_CFC115 D_RF_PREFIX CFC115_COMPONENT_BASE +#define D_RF_CCl4 D_RF_PREFIX CCl4_COMPONENT_BASE +#define D_RF_CH3CCl3 D_RF_PREFIX CH3CCl3_COMPONENT_BASE +#define D_RF_HCFC22 D_RF_PREFIX HCFC22_COMPONENT_BASE +#define D_RF_HCFC141b D_RF_PREFIX HCFC141b_COMPONENT_BASE +#define D_RF_HCFC142b D_RF_PREFIX HCFC142b_COMPONENT_BASE +#define D_RF_halon1211 D_RF_PREFIX halon1211_COMPONENT_BASE +#define D_RF_halon1301 D_RF_PREFIX halon1301_COMPONENT_BASE +#define D_RF_halon2402 D_RF_PREFIX halon2402_COMPONENT_BASE +#define D_RF_CH3Cl D_RF_PREFIX CH3Cl_COMPONENT_BASE +#define D_RF_CH3Br D_RF_PREFIX CH3Br_COMPONENT_BASE // Adjusted (i.e., relative) halocarbon forcings // Forcings are tracked relative to the base year forcings, but the // halocarbon components don't know that. These capabilities allow // a caller to fetch the adjusted values from the forcing component. -#define D_RFADJ_PREFIX "Fadj" -#define D_RFADJ_CF4 D_RFADJ_PREFIX CF4_COMPONENT_BASE -#define D_RFADJ_C2F6 D_RFADJ_PREFIX C2F6_COMPONENT_BASE -#define D_RFADJ_HFC23 D_RFADJ_PREFIX HFC23_COMPONENT_BASE -#define D_RFADJ_HFC32 D_RFADJ_PREFIX HFC32_COMPONENT_BASE -#define D_RFADJ_HFC4310 D_RFADJ_PREFIX HFC4310_COMPONENT_BASE -#define D_RFADJ_HFC125 D_RFADJ_PREFIX HFC125_COMPONENT_BASE -#define D_RFADJ_HFC134a D_RFADJ_PREFIX HFC134a_COMPONENT_BASE -#define D_RFADJ_HFC143a D_RFADJ_PREFIX HFC143a_COMPONENT_BASE -#define D_RFADJ_HFC227ea D_RFADJ_PREFIX HFC227ea_COMPONENT_BASE -#define D_RFADJ_HFC245fa D_RFADJ_PREFIX HFC245fa_COMPONENT_BASE -#define D_RFADJ_SF6 D_RFADJ_PREFIX SF6_COMPONENT_BASE -#define D_RFADJ_CFC11 D_RFADJ_PREFIX CFC11_COMPONENT_BASE -#define D_RFADJ_CFC12 D_RFADJ_PREFIX CFC12_COMPONENT_BASE -#define D_RFADJ_CFC113 D_RFADJ_PREFIX CFC113_COMPONENT_BASE -#define D_RFADJ_CFC114 D_RFADJ_PREFIX CFC114_COMPONENT_BASE -#define D_RFADJ_CFC115 D_RFADJ_PREFIX CFC115_COMPONENT_BASE -#define D_RFADJ_CCl4 D_RFADJ_PREFIX CCl4_COMPONENT_BASE -#define D_RFADJ_CH3CCl3 D_RFADJ_PREFIX CH3CCl3_COMPONENT_BASE -#define D_RFADJ_HCFC22 D_RFADJ_PREFIX HCFC22_COMPONENT_BASE -#define D_RFADJ_HCFC141b D_RFADJ_PREFIX HCFC141b_COMPONENT_BASE -#define D_RFADJ_HCFC142b D_RFADJ_PREFIX HCFC142b_COMPONENT_BASE -#define D_RFADJ_halon1211 D_RFADJ_PREFIX halon1211_COMPONENT_BASE -#define D_RFADJ_halon1301 D_RFADJ_PREFIX halon1301_COMPONENT_BASE -#define D_RFADJ_halon2402 D_RFADJ_PREFIX halon2402_COMPONENT_BASE -#define D_RFADJ_CH3Cl D_RFADJ_PREFIX CH3Cl_COMPONENT_BASE -#define D_RFADJ_CH3Br D_RFADJ_PREFIX CH3Br_COMPONENT_BASE -#define N_HALO_FORCINGS 26 - +#define D_RFADJ_PREFIX "Fadj" +#define D_RFADJ_CF4 D_RFADJ_PREFIX CF4_COMPONENT_BASE +#define D_RFADJ_C2F6 D_RFADJ_PREFIX C2F6_COMPONENT_BASE +#define D_RFADJ_HFC23 D_RFADJ_PREFIX HFC23_COMPONENT_BASE +#define D_RFADJ_HFC32 D_RFADJ_PREFIX HFC32_COMPONENT_BASE +#define D_RFADJ_HFC4310 D_RFADJ_PREFIX HFC4310_COMPONENT_BASE +#define D_RFADJ_HFC125 D_RFADJ_PREFIX HFC125_COMPONENT_BASE +#define D_RFADJ_HFC134a D_RFADJ_PREFIX HFC134a_COMPONENT_BASE +#define D_RFADJ_HFC143a D_RFADJ_PREFIX HFC143a_COMPONENT_BASE +#define D_RFADJ_HFC227ea D_RFADJ_PREFIX HFC227ea_COMPONENT_BASE +#define D_RFADJ_HFC245fa D_RFADJ_PREFIX HFC245fa_COMPONENT_BASE +#define D_RFADJ_SF6 D_RFADJ_PREFIX SF6_COMPONENT_BASE +#define D_RFADJ_CFC11 D_RFADJ_PREFIX CFC11_COMPONENT_BASE +#define D_RFADJ_CFC12 D_RFADJ_PREFIX CFC12_COMPONENT_BASE +#define D_RFADJ_CFC113 D_RFADJ_PREFIX CFC113_COMPONENT_BASE +#define D_RFADJ_CFC114 D_RFADJ_PREFIX CFC114_COMPONENT_BASE +#define D_RFADJ_CFC115 D_RFADJ_PREFIX CFC115_COMPONENT_BASE +#define D_RFADJ_CCl4 D_RFADJ_PREFIX CCl4_COMPONENT_BASE +#define D_RFADJ_CH3CCl3 D_RFADJ_PREFIX CH3CCl3_COMPONENT_BASE +#define D_RFADJ_HCFC22 D_RFADJ_PREFIX HCFC22_COMPONENT_BASE +#define D_RFADJ_HCFC141b D_RFADJ_PREFIX HCFC141b_COMPONENT_BASE +#define D_RFADJ_HCFC142b D_RFADJ_PREFIX HCFC142b_COMPONENT_BASE +#define D_RFADJ_halon1211 D_RFADJ_PREFIX halon1211_COMPONENT_BASE +#define D_RFADJ_halon1301 D_RFADJ_PREFIX halon1301_COMPONENT_BASE +#define D_RFADJ_halon2402 D_RFADJ_PREFIX halon2402_COMPONENT_BASE +#define D_RFADJ_CH3Cl D_RFADJ_PREFIX CH3Cl_COMPONENT_BASE +#define D_RFADJ_CH3Br D_RFADJ_PREFIX CH3Br_COMPONENT_BASE +#define N_HALO_FORCINGS 26 // halocarbon emissions -#define D_EMISSIONS_CF4 CF4_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_C2F6 C2F6_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HFC23 HFC23_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HFC32 HFC32_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HFC4310 HFC4310_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HFC125 HFC125_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HFC134a HFC134a_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HFC143a HFC143a_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HFC227ea HFC227ea_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HFC245fa HFC245fa_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_SF6 SF6_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_CFC11 CFC11_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_CFC12 CFC12_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_CFC113 CFC113_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_CFC114 CFC114_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_CFC115 CFC115_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_CCl4 CCl4_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_CH3CCl3 CH3CCl3_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HCFC22 HCFC22_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HCFC141b HCFC141b_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_HCFC142b HCFC142b_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_halon1211 halon1211_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_halon1301 halon1301_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_halon2402 halon2402_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_CH3Cl CH3Cl_COMPONENT_BASE EMISSIONS_EXTENSION -#define D_EMISSIONS_CH3Br CH3Br_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_CF4 CF4_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_C2F6 C2F6_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HFC23 HFC23_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HFC32 HFC32_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HFC4310 HFC4310_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HFC125 HFC125_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HFC134a HFC134a_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HFC143a HFC143a_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HFC227ea HFC227ea_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HFC245fa HFC245fa_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_SF6 SF6_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_CFC11 CFC11_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_CFC12 CFC12_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_CFC113 CFC113_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_CFC114 CFC114_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_CFC115 CFC115_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_CCl4 CCl4_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_CH3CCl3 CH3CCl3_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HCFC22 HCFC22_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HCFC141b HCFC141b_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_HCFC142b HCFC142b_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_halon1211 halon1211_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_halon1301 halon1301_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_halon2402 halon2402_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_CH3Cl CH3Cl_COMPONENT_BASE EMISSIONS_EXTENSION +#define D_EMISSIONS_CH3Br CH3Br_COMPONENT_BASE EMISSIONS_EXTENSION // halocarbon concentration constraints -#define D_CONSTRAINT_CF4 CF4_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_C2F6 C2F6_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HFC23 HFC23_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HFC32 HFC32_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HFC4310 HFC4310_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HFC125 HFC125_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HFC134a HFC134a_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HFC143a HFC143a_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HFC227ea HFC227ea_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HFC245fa HFC245fa_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_SF6 SF6_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_CFC11 CFC11_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_CFC12 CFC12_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_CFC113 CFC113_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_CFC114 CFC114_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_CFC115 CFC115_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_CCl4 CCl4_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_CH3CCl3 CH3CCl3_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HCFC22 HCFC22_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HCFC141b HCFC141b_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_HCFC142b HCFC142b_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_halon1211 halon1211_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_halon1301 halon1301_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_halon2402 halon2402_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_CH3Cl CH3Cl_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION -#define D_CONSTRAINT_CH3Br CH3Br_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_CF4 CF4_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_C2F6 C2F6_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HFC23 HFC23_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HFC32 HFC32_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HFC4310 HFC4310_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HFC125 HFC125_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HFC134a HFC134a_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HFC143a HFC143a_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HFC227ea HFC227ea_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HFC245fa HFC245fa_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_SF6 SF6_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_CFC11 CFC11_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_CFC12 CFC12_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_CFC113 CFC113_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_CFC114 CFC114_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_CFC115 CFC115_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_CCl4 CCl4_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_CH3CCl3 CH3CCl3_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HCFC22 HCFC22_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HCFC141b HCFC141b_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_HCFC142b HCFC142b_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_halon1211 \ + halon1211_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_halon1301 \ + halon1301_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_halon2402 \ + halon2402_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_CH3Cl CH3Cl_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION +#define D_CONSTRAINT_CH3Br CH3Br_COMPONENT_BASE CONC_CONSTRAINT_EXTENSION + +#define D_PREINDUSTRIAL_HC "H0" +#define D_HC_CONCENTRATION "hc_concentration" +#define D_HC_EMISSION "hc_emission" +#define D_HC_TAU "tau" +#define D_HC_MOLARMASS "molarMass" + +// specify the rho used by halocarbon component so that speicifc rhos can be +// adjusted using the R wrapper +// rho used by halocarbon component +#define D_HCRHO_PREFIX "rho_" +#define D_HCRHO_CF4 D_HCRHO_PREFIX CF4_COMPONENT_BASE +#define D_HCRHO_C2F6 D_HCRHO_PREFIX C2F6_COMPONENT_BASE +#define D_HCRHO_HFC23 D_HCRHO_PREFIX HFC23_COMPONENT_BASE +#define D_HCRHO_HFC32 D_HCRHO_PREFIX HFC32_COMPONENT_BASE +#define D_HCRHO_HFC4310 D_HCRHO_PREFIX HFC4310_COMPONENT_BASE +#define D_HCRHO_HFC125 D_HCRHO_PREFIX HFC125_COMPONENT_BASE +#define D_HCRHO_HFC134a D_HCRHO_PREFIX HFC134a_COMPONENT_BASE +#define D_HCRHO_HFC143a D_HCRHO_PREFIX HFC143a_COMPONENT_BASE +#define D_HCRHO_HFC227ea D_HCRHO_PREFIX HFC227ea_COMPONENT_BASE +#define D_HCRHO_HFC245fa D_HCRHO_PREFIX HFC245fa_COMPONENT_BASE +#define D_HCRHO_SF6 D_HCRHO_PREFIX SF6_COMPONENT_BASE +#define D_HCRHO_CFC11 D_HCRHO_PREFIX CFC11_COMPONENT_BASE +#define D_HCRHO_CFC12 D_HCRHO_PREFIX CFC12_COMPONENT_BASE +#define D_HCRHO_CFC113 D_HCRHO_PREFIX CFC113_COMPONENT_BASE +#define D_HCRHO_CFC114 D_HCRHO_PREFIX CFC114_COMPONENT_BASE +#define D_HCRHO_CFC115 D_HCRHO_PREFIX CFC115_COMPONENT_BASE +#define D_HCRHO_CCl4 D_HCRHO_PREFIX CCl4_COMPONENT_BASE +#define D_HCRHO_CH3CCl3 D_HCRHO_PREFIX CH3CCl3_COMPONENT_BASE +#define D_HCRHO_HCFC22 D_HCRHO_PREFIX HCFC22_COMPONENT_BASE +#define D_HCRHO_HCFC141b D_HCRHO_PREFIX HCFC141b_COMPONENT_BASE +#define D_HCRHO_HCFC142b D_HCRHO_PREFIX HCFC142b_COMPONENT_BASE +#define D_HCRHO_halon1211 D_HCRHO_PREFIX halon1211_COMPONENT_BASE +#define D_HCRHO_halon1301 D_HCRHO_PREFIX halon1301_COMPONENT_BASE +#define D_HCRHO_halon2402 D_HCRHO_PREFIX halon2402_COMPONENT_BASE +#define D_HCRHO_CH3Cl D_HCRHO_PREFIX CH3Cl_COMPONENT_BASE +#define D_HCRHO_CH3Br D_HCRHO_PREFIX CH3Br_COMPONENT_BASE -#define D_PREINDUSTRIAL_HC "H0" -#define D_HC_CONCENTRATION "hc_concentration" -#define D_HC_EMISSION "hc_emission" -#define D_HC_TAU "tau" -#define D_HC_RHO "rho" -#define D_HC_MOLARMASS "molarMass" +// specify the DELTA used by halocarbon component by the tropospheric +// adjustments for the stratospheric-temperature adjusted radiative forcing. +#define D_HCDELTA_PREFIX "delta_" +#define D_HCDELTA_CF4 D_HCDELTA_PREFIX CF4_COMPONENT_BASE +#define D_HCDELTA_C2F6 D_HCDELTA_PREFIX C2F6_COMPONENT_BASE +#define D_HCDELTA_HFC23 D_HCDELTA_PREFIX HFC23_COMPONENT_BASE +#define D_HCDELTA_HFC32 D_HCDELTA_PREFIX HFC32_COMPONENT_BASE +#define D_HCDELTA_HFC4310 D_HCDELTA_PREFIX HFC4310_COMPONENT_BASE +#define D_HCDELTA_HFC125 D_HCDELTA_PREFIX HFC125_COMPONENT_BASE +#define D_HCDELTA_HFC134a D_HCDELTA_PREFIX HFC134a_COMPONENT_BASE +#define D_HCDELTA_HFC143a D_HCDELTA_PREFIX HFC143a_COMPONENT_BASE +#define D_HCDELTA_HFC227ea D_HCDELTA_PREFIX HFC227ea_COMPONENT_BASE +#define D_HCDELTA_HFC245fa D_HCDELTA_PREFIX HFC245fa_COMPONENT_BASE +#define D_HCDELTA_SF6 D_HCDELTA_PREFIX SF6_COMPONENT_BASE +#define D_HCDELTA_CFC11 D_HCDELTA_PREFIX CFC11_COMPONENT_BASE +#define D_HCDELTA_CFC12 D_HCDELTA_PREFIX CFC12_COMPONENT_BASE +#define D_HCDELTA_CFC113 D_HCDELTA_PREFIX CFC113_COMPONENT_BASE +#define D_HCDELTA_CFC114 D_HCDELTA_PREFIX CFC114_COMPONENT_BASE +#define D_HCDELTA_CFC115 D_HCDELTA_PREFIX CFC115_COMPONENT_BASE +#define D_HCDELTA_CCl4 D_HCDELTA_PREFIX CCl4_COMPONENT_BASE +#define D_HCDELTA_CH3CCl3 D_HCDELTA_PREFIX CH3CCl3_COMPONENT_BASE +#define D_HCDELTA_HCFC22 D_HCDELTA_PREFIX HCFC22_COMPONENT_BASE +#define D_HCDELTA_HCFC141b D_HCDELTA_PREFIX HCFC141b_COMPONENT_BASE +#define D_HCDELTA_HCFC142b D_HCDELTA_PREFIX HCFC142b_COMPONENT_BASE +#define D_HCDELTA_halon1211 D_HCDELTA_PREFIX halon1211_COMPONENT_BASE +#define D_HCDELTA_halon1301 D_HCDELTA_PREFIX halon1301_COMPONENT_BASE +#define D_HCDELTA_halon2402 D_HCDELTA_PREFIX halon2402_COMPONENT_BASE +#define D_HCDELTA_CH3Cl D_HCDELTA_PREFIX CH3Cl_COMPONENT_BASE +#define D_HCDELTA_CH3Br D_HCDELTA_PREFIX CH3Br_COMPONENT_BASE // methane component -#define D_ATMOSPHERIC_CH4 "CH4" -#define D_PREINDUSTRIAL_CH4 "M0" -#define D_RF_CH4 "FCH4" -#define D_EMISSIONS_CH4 "CH4_emissions" -#define D_CONSTRAINT_CH4 "CH4_constrain" -#define D_NATURAL_CH4 "CH4N" -#define D_CONVERSION_CH4 "UC_CH4" -#define D_LIFETIME_SOIL "Tsoil" -#define D_LIFETIME_STRAT "Tstrat" +#define D_CH4_CONC "CH4" CONCENTRATION_EXTENSION +#define D_PREINDUSTRIAL_CH4 "M0" +#define D_RF_CH4 "FCH4" +#define D_EMISSIONS_CH4 "CH4_emissions" +#define D_CONSTRAINT_CH4 "CH4_constrain" +#define D_NATURAL_CH4 "CH4N" +#define D_CONVERSION_CH4 "UC_CH4" +#define D_LIFETIME_SOIL "Tsoil" +#define D_LIFETIME_STRAT "Tstrat" // n2o component -#define D_ATMOSPHERIC_N2O "N2O" -#define D_PREINDUSTRIAL_N2O "N0" -#define D_EMISSIONS_N2O "N2O_emissions" -#define D_CONSTRAINT_N2O "N2O_constrain" -#define D_CONVERSION_N2O "UC_N2O" -#define D_INITIAL_LIFETIME_N2O "TN2O0" -#define D_NAT_EMISSIONS_N2O "N2O_natural_emissions" -#define D_TAU_N2O "TAU_N2O" +#define D_N2O_CONC "N2O" CONCENTRATION_EXTENSION +#define D_PREINDUSTRIAL_N2O "N0" +#define D_EMISSIONS_N2O "N2O_emissions" +#define D_CONSTRAINT_N2O "N2O_constrain" +#define D_CONVERSION_N2O "UC_N2O" +#define D_INITIAL_LIFETIME_N2O "TN2O0" +#define D_NAT_EMISSIONS_N2O "N2O_natural_emissions" +#define D_TAU_N2O "TAU_N2O" // oh component -#define D_LIFETIME_OH "TAU_OH" -#define D_INITIAL_LIFETIME_OH "TOH0" -#define D_COEFFICENT_NOX "CNOX" -#define D_COEFFICENT_CH4 "CCH4" -#define D_COEFFICENT_NMVOC "CNMVOC" -#define D_COEFFICENT_CO "CCO" +#define D_LIFETIME_OH "TAU_OH" +#define D_INITIAL_LIFETIME_OH "TOH0" +#define D_COEFFICENT_NOX "CNOX" +#define D_COEFFICENT_CH4 "CCH4" +#define D_COEFFICENT_NMVOC "CNMVOC" +#define D_COEFFICENT_CO "CCO" -//o3 component -#define D_PREINDUSTRIAL_O3 "PO3" -#define D_ATMOSPHERIC_O3 "O3" -#define D_ATMOSPHERIC_EM_CH4 "CH4" -#define D_EMISSIONS_NOX "NOX_emissions" -#define D_EMISSIONS_CO "CO_emissions" -#define D_EMISSIONS_NMVOC "NMVOC_emissions" -//Do not redefine Ma though it is used for o3 component -//#define D_EMISSIONS_O3 "O3_concentration" +// o3 component +#define D_PREINDUSTRIAL_O3 "PO3" +#define D_ATMOSPHERIC_O3 "O3" CONCENTRATION_EXTENSION +#define D_ATMOSPHERIC_EM_CH4 "CH4" +#define D_EMISSIONS_NOX "NOX_emissions" +#define D_EMISSIONS_CO "CO_emissions" +#define D_EMISSIONS_NMVOC "NMVOC_emissions" // oc component -#define D_EMISSIONS_OC "OC_emissions" - -// ocean component -#define D_OCEAN_CFLUX "atm_ocean_flux" -#define D_OCEAN_C "ocean_c" -#define D_TT "tt" -#define D_TU "tu" -#define D_TWI "twi" -#define D_TID "tid" -#define D_CIRC_TOPT "circ_Topt" -#define D_CIRC_T50_HIGH "circ_T50_high" -#define D_CIRC_T50_LOW "circ_T50_low" -#define D_HL_DO "HL_DO_Cflux" -#define D_PH_HL "pH_HL" -#define D_PH_LL "pH_LL" -#define D_ATM_OCEAN_FLUX_HL "atm_ocean_flux_HL" -#define D_ATM_OCEAN_FLUX_LL "atm_ocean_flux_LL" -#define D_PCO2_HL "PCO2_HL" -#define D_PCO2_LL "PCO2_LL" -#define D_DIC_HL "DIC_HL" -#define D_DIC_LL "DIC_LL" -#define D_P0_LL "p0_LL" -#define D_CARBON_HL "carbon_HL" -#define D_CARBON_LL "carbon_LL" -#define D_CARBON_IO "carbon_IO" -#define D_CARBON_DO "carbon_DO" -#define D_OMEGACA_HL "OmegaCa_HL" -#define D_OMEGACA_LL "OmegaCa_LL" -#define D_OMEGAAR_HL "OmegaAr_HL" -#define D_OMEGAAR_LL "OmegaAr_LL" -#define D_TEMP_HL "Temp_HL" -#define D_TEMP_LL "Temp_LL" -#define D_SPINUP_CHEM "spinup_chem" +#define D_EMISSIONS_OC "OC_emissions" -//#define D_SPECIFIC_HEAT "cp" +// nh3 component +#define D_EMISSIONS_NH3 "NH3_emissions" -#define D_CO3_LL "CO3_LL" -#define D_CO3_HL "CO3_HL" -#define D_ATM_OCEAN_CONSTRAIN "atm_ocean_constrain" -#define D_TIMESTEPS "ocean_timesteps" -#define D_REVELLE_HL "Revelle_HL" -#define D_REVELLE_LL "Revelle_LL" +// ocean component +#define D_OCEAN_C_UPTAKE "ocean_uptake" +#define D_OCEAN_C "ocean_c" +#define D_TT "tt" +#define D_TU "tu" +#define D_TWI "twi" +#define D_TID "tid" +#define D_HL_DO "HL_downwelling" +#define D_PH_HL "HL_pH" +#define D_PH_LL "LL_pH" +#define D_PH "pH" +#define D_ATM_OCEAN_FLUX_HL "HL_ocean_uptake" +#define D_ATM_OCEAN_FLUX_LL "LL_ocean_uptake" +#define D_PCO2_HL "HL_PCO2" +#define D_PCO2_LL "LL_PCO2" +#define D_PCO2 "PCO2" +#define D_DIC_HL "HL_DIC" +#define D_DIC_LL "LL_DIC" +#define D_DIC "DIC" +#define D_CARBON_HL "HL_ocean_c" +#define D_CARBON_LL "LL_ocean_c" +#define D_CARBON_ML "ML_ocean_c" +#define D_CARBON_IO "IO_ocean_c" +#define D_CARBON_DO "DO_ocean_c" +#define D_CARBON_PRE_SURF "preind_surface_c" +#define D_CARBON_PRE_ID "preind_interdeep_c" +#define D_OMEGACA_HL "HL_OmegaCa" +#define D_OMEGACA_LL "LL_OmegaCa" +#define D_OMEGAAR_HL "HL_OmegaAr" +#define D_OMEGAAR_LL "LL_OmegaAr" +#define D_TEMP_HL "HL_sst" +#define D_TEMP_LL "LL_sst" +#define D_SPINUP_CHEM "spinup_chem" +#define D_CO3_LL "LL_CO3" +#define D_CO3_HL "HL_CO3" +#define D_CO3 "CO3" +#define D_TIMESTEPS "ocean_timesteps" +#define D_REVELLE_HL "HL_Revelle" +#define D_REVELLE_LL "LL_Revelle" // SimpleNbox component -#define D_LAND_CFLUX "atm_land_flux" -#define D_ATMOSPHERIC_CO2 "Ca" -#define D_PREINDUSTRIAL_CO2 "C0" -#define D_ATMOSPHERIC_C "atmos_c" +#define D_NBP "NBP" +#define D_CO2_CONC "CO2" CONCENTRATION_EXTENSION +#define D_PREINDUSTRIAL_CO2 "C0" +#define D_ATMOSPHERIC_CO2 "atmos_co2" #define D_ATMOSPHERIC_C_RESIDUAL "atmos_c_residual" -#define D_EARTHC "earth_c" -#define D_VEGC "veg_c" -#define D_DETRITUSC "detritus_c" -#define D_SOILC "soil_c" -#define D_FFI_EMISSIONS "ffi_emissions" -#define D_LUC_EMISSIONS "luc_emissions" -#define D_CO2FERT "co2fert" -#define D_TEMPFERTD "detritus_tempfert" -#define D_TEMPFERTS "soil_tempfert" -#define D_Q10_RH "q10_rh" -#define D_NPP "npp" -#define D_RH "rh" -#define D_F_NPPV "f_nppv" -#define D_F_NPPD "f_nppd" -#define D_F_LITTERD "f_litterd" -#define D_F_LUCV "f_lucv" -#define D_F_LUCD "f_lucd" -#define D_NPP_FLUX0 "npp_flux0" -#define D_CO2_CONSTRAIN "CO2_constrain" -#define D_BETA "beta" -//#define D_SIGMA "sigma" -#define D_WARMINGFACTOR "warmingfactor" +#define D_EARTHC "earth_c" +#define D_VEGC "veg_c" +#define D_DETRITUSC "detritus_c" +#define D_SOILC "soil_c" +#define D_PERMAFROSTC "permafrost_c" +#define D_THAWEDPC "thawedp_c" +#define D_FFI_EMISSIONS "ffi_emissions" +#define D_DACCS_UPTAKE "daccs_uptake" +#define D_LUC_EMISSIONS "luc_emissions" +#define D_LUC_UPTAKE "luc_uptake" +#define D_TEMPFERTD "detritus_tempfert" +#define D_TEMPFERTS "soil_tempfert" +#define D_Q10_RH "q10_rh" +#define D_NPP "NPP" +#define D_RH "RH" +#define D_RH_DETRITUS "rh_det" +#define D_RH_SOIL "rh_soil" +#define D_RH_THAWEDP "rh_thawedp" +#define D_F_NPPV "f_nppv" +#define D_F_NPPD "f_nppd" +#define D_F_LITTERD "f_litterd" +#define D_NPP_FLUX0 "npp_flux0" +#define D_BETA "beta" +#define D_WARMINGFACTOR "warmingfactor" +#define D_F_FROZEN "f_frozen" +#define D_RH_CH4 "rh_ch4" +#define D_RH_CH4_FRAC "rh_ch4_frac" +#define D_PF_SIGMA "pf_sigma" +#define D_PF_MU "pf_mu" +#define D_FPF_STATIC "fpf_static" + +// Constraints +#define D_CO2_CONSTRAIN "CO2_constrain" +#define D_TAS_CONSTRAIN "tas_constrain" +#define D_NBP_CONSTRAIN "NBP_constrain" // slr component -#define D_SL_RC "sl_rc" -#define D_SLR "slr" -#define D_SL_RC_NO_ICE "sl_rc_no_ice" -#define D_SLR_NO_ICE "slr_no_ice" +#define D_SL_RC "sl_rc" +#define D_SLR "slr" +#define D_SL_RC_NO_ICE "sl_rc_no_ice" +#define D_SLR_NO_ICE "slr_no_ice" // so2 component -#define D_NATURAL_SO2 "SN" -#define D_2000_SO2 "S0" -#define D_EMISSIONS_SO2 "SO2_emissions" -#define D_VOLCANIC_SO2 "SV" +#define D_EMISSIONS_SO2 "SO2_emissions" +#define D_VOLCANIC_SO2 "SV" // temperature component -#define D_ECS "S" -#define D_GLOBAL_TEMP "Tgav" -#define D_LAND_AIR_TEMP "Tgav_land" -#define D_OCEAN_SURFACE_TEMP "Tgav_ocean_ST" -#define D_OCEAN_AIR_TEMP "Tgav_ocean_air" -#define D_GLOBAL_TEMPEQ "Tgaveq" -#define D_TGAV_CONSTRAIN "tgav_constrain" -#define D_SO2D_B "so2d_b" -#define D_SO2I_B "so2i_b" -#define D_OC_B "oc_b" -#define D_BC_B "bc_b" - -// temperature component -#define D_DIFFUSIVITY "diff" -#define D_AERO_SCALE "alpha" -#define D_VOLCANIC_SCALE "volscl" -#define D_FLUX_MIXED "flux_mixed" -#define D_FLUX_INTERIOR "flux_interior" -#define D_HEAT_FLUX "heatflux" - -// ------------------- messages being passed between components ------------------------- +#define D_ECS "S" +#define D_GLOBAL_TAS "global_tas" +#define D_LAND_TAS "land_tas" +#define D_SST "sst" +#define D_OCEAN_TAS "ocean_tas" +#define D_LO_WARMING_RATIO "lo_warming_ratio" +#define D_DIFFUSIVITY "diff" +#define D_AERO_SCALE "alpha" +#define D_VOLCANIC_SCALE "volscl" +#define D_FLUX_MIXED "heatflux_mixed" +#define D_FLUX_INTERIOR "heatflux_interior" +#define D_HEAT_FLUX "heatflux" -#define M_GETDATA "getData" -#define M_SETDATA "setData" +// ------------------- messages being passed between components +// ------------------------- -#define M_DUMP_TO_DEEP_OCEAN "deepOceanCarbonDump" +#define M_GETDATA "getData" +#define M_SETDATA "setData" +#define M_DUMP_TO_DEEP_OCEAN "deepOceanCarbonDump" #endif diff --git a/inst/include/component_names.hpp b/inst/include/component_names.hpp index fb4d78d0b..1b4dc6ea8 100644 --- a/inst/include/component_names.hpp +++ b/inst/include/component_names.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -23,7 +23,7 @@ #define SIMPLENBOX_COMPONENT_NAME "simpleNbox" #define CH4_COMPONENT_NAME "CH4" -#define OH_COMPONENT_NAME "OH" +#define OH_COMPONENT_NAME "OH" #define N2O_COMPONENT_NAME "N2O" #define TEMPERATURE_COMPONENT_NAME "temperature" @@ -34,9 +34,9 @@ * The name of a HC emissions var is X_COMPONENT_BASE + EMISSIONS_EXTENSION ***/ #define HALOCARBON_EXTENSION "_halocarbon" -#define EMISSIONS_EXTENSION "_emissions" -#define CONCENTRATION_EXTENSION "_concentration" -#define CONC_CONSTRAINT_EXTENSION "_constrain" +#define EMISSIONS_EXTENSION "_emissions" +#define CONCENTRATION_EXTENSION "_concentration" +#define CONC_CONSTRAINT_EXTENSION "_constrain" #define CF4_COMPONENT_BASE "CF4" #define C2F6_COMPONENT_BASE "C2F6" #define HFC23_COMPONENT_BASE "HFC23" @@ -83,8 +83,8 @@ #define CCl4_COMPONENT_NAME CCl4_COMPONENT_BASE HALOCARBON_EXTENSION #define CH3CCl3_COMPONENT_NAME CH3CCl3_COMPONENT_BASE HALOCARBON_EXTENSION #define HCFC22_COMPONENT_NAME HCFC22_COMPONENT_BASE HALOCARBON_EXTENSION -#define HCFC141b_COMPONENT_NAME HCFC141b_COMPONENT_BASE HALOCARBON_EXTENSION -#define HCFC142b_COMPONENT_NAME HCFC142b_COMPONENT_BASE HALOCARBON_EXTENSION +#define HCFC141b_COMPONENT_NAME HFC141b_COMPONENT_BASE HALOCARBON_EXTENSION +#define HCFC142b_COMPONENT_NAME HFC142b_COMPONENT_BASE HALOCARBON_EXTENSION #define halon1211_COMPONENT_NAME halon1211_COMPONENT_BASE HALOCARBON_EXTENSION #define halon1301_COMPONENT_NAME halon1301_COMPONENT_BASE HALOCARBON_EXTENSION #define halon2402_COMPONENT_NAME halon2402_COMPONENT_BASE HALOCARBON_EXTENSION @@ -93,9 +93,10 @@ #define BLACK_CARBON_COMPONENT_NAME "bc" #define ORGANIC_CARBON_COMPONENT_NAME "oc" +#define NH3_COMPONENT_NAME "nh3" #define SULFUR_COMPONENT_NAME "so2" -#define FORCING_COMPONENT_NAME "forcing" +#define FORCING_COMPONENT_NAME "forcing" #define SLR_COMPONENT_NAME "slr" #define OZONE_COMPONENT_NAME "ozone" diff --git a/inst/include/core.hpp b/inst/include/core.hpp index d41de8ec3..43b83366b 100644 --- a/inst/include/core.hpp +++ b/inst/include/core.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -10,18 +10,18 @@ * core.h - The core model which will manage model components * hector * - * Created by Pralit on 10/29/10. + * Created by Pralit on 10/29/2010. * */ +#include #include #include #include -#include -#include "logger.hpp" #include "h_exception.hpp" #include "ivisitable.hpp" +#include "logger.hpp" namespace Hector { @@ -36,195 +36,209 @@ class IModelComponent; */ class Core : public IVisitable { public: - Core(Logger::LogLevel loglvl = Logger::DEBUG, bool echotoscreen=true, bool echotofile=true); - ~Core(); + Core(Logger::LogLevel loglvl = Logger::DEBUG, bool echotoscreen = true, + bool echotofile = true); + ~Core(); + + const std::string &getComponentName() const; - const std::string& getComponentName() const; + void init(); - void init(); + void setData(const std::string &componentName, const std::string &varName, + const message_data &data); - void setData( const std::string& componentName, const std::string& varName, - const message_data& data ); + void addVisitor(AVisitor *visitor); - void addVisitor( AVisitor* visitor ); + void prepareToRun(); - void prepareToRun(); + void run(double runtodate = -1.0); - void run(double runtodate=-1.0); + void reset(double resetdate); - void reset(double resetdate); + void shutDown(); - void shutDown(); + Logger &getGlobalLogger() { return glog; } - Logger &getGlobalLogger() {return glog;} + IModelComponent * + getComponentByCapability(const std::string &capabilityName) const; - IModelComponent* getComponentByCapability( const std::string& capabilityName - ) const; + void registerCapability(const std::string &capabilityName, + const std::string &componentName, + bool warndupe = true); - void registerCapability(const std::string& capabilityName, const std::string& componentName, bool warndupe=true - ) ; + int checkCapability(const std::string &capabilityName); - int checkCapability( const std::string& capabilityName ); + void registerDependency(const std::string &capabilityName, + const std::string &componentName); + void registerInput(const std::string &inputName, + const std::string &componentName); - void registerDependency( const std::string& capabilityName, const std::string& componentName ); - void registerInput(const std::string &inputName, const std::string &componentName); + unitval sendMessage(const std::string &message, const std::string &datum); - unitval sendMessage( const std::string& message, - const std::string& datum ); + unitval sendMessage(const std::string &message, const std::string &datum, + const message_data &info); - unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data& info ); + unitval getData(const std::string &varName, const double date); - double getStartDate() const { return startDate; }; - double getEndDate() const { return endDate; }; - double getCurrentDate() const {return lastDate;} - std::string getRun_name() const { return run_name; }; - bool inSpinup() const { return in_spinup; }; - bool outputEnabled( std::string componentName ) { return std::find( disabledOutputComponents.begin(), - disabledOutputComponents.end(), componentName) == disabledOutputComponents.end(); } - void addModelComponent( IModelComponent* modelComponent ); + double getStartDate() const { return startDate; }; + double getEndDate() const { return endDate; }; + double getTrackingDate() const { return trackingDate; }; + std::string getTrackingData() const; + double getCurrentDate() const { return lastDate; } + std::string getRun_name() const { return run_name; }; + bool inSpinup() const { return in_spinup; }; + bool outputEnabled(std::string componentName) { + return std::find(disabledOutputComponents.begin(), + disabledOutputComponents.end(), + componentName) == disabledOutputComponents.end(); + } + void addModelComponent(IModelComponent *modelComponent); - // IVisitable methods - virtual void accept( AVisitor* visitor ); + // IVisitable methods + virtual void accept(AVisitor *visitor); - static double undefinedIndex(); + static double undefinedIndex(); - IModelComponent* getComponentByName( const std::string& componentName - ) const; + IModelComponent *getComponentByName(const std::string &componentName) const; - //! Manage cores in the global registry - static int mkcore(bool logtofile=false, - Logger::LogLevel loglvl=Logger::NOTICE, - bool logtoscrn=false); - static Core *getcore(int idx); - static void delcore(int idx); + //! Manage cores in the global registry + static int mkcore(bool logtofile = false, + Logger::LogLevel loglvl = Logger::NOTICE, + bool logtoscrn = false); + static Core *getcore(int idx); + static void delcore(int idx); - std::vector getBiomeList() const; - void createBiome(const std::string& biome); - void deleteBiome(const std::string& biome); - void renameBiome(const std::string& oldname, const std::string& newname); + std::vector getBiomeList() const; + void createBiome(const std::string &biome); + void deleteBiome(const std::string &biome); + void renameBiome(const std::string &oldname, const std::string &newname); private: - //! Registry of instantiated cores - //! \details This is used when you are instantiating hector cores - //! from a language other than C++. Instead of trying to convert - //! C++ pointers to something that can be stored in the other - //! language's data structures, you just register the core(s) you - //! create in this vector and refer to them by index. - static std::vector core_registry; - - Logger glog; - - // indicator for whether setup has been completed. See notes in the body of - // prepareToRun. - bool setup_complete; - - - //! Cause all components to run their spinup procedure. - bool run_spinup(); - - - //------------------------------------------------------------------------------ - //! Current run name. - std::string run_name; - - //------------------------------------------------------------------------------ - //! The start date for the models. - double startDate; - - //------------------------------------------------------------------------------ - //! The end date for the models. - double endDate; - - //------------------------------------------------------------------------------ - //! The last date we've run up to - double lastDate; - - //------------------------------------------------------------------------------ - //! A flag to indicate that the core has been initialized. - bool isInited; - - //------------------------------------------------------------------------------ - //! A flag (can be set from input) to indicate whether to spin up. - bool do_spinup; - - //------------------------------------------------------------------------------ - //! Maximum number of spinup steps allowed. - int max_spinup; - - //------------------------------------------------------------------------------ - //! A comparison object to ensure modelComponents are ordered according to - //! dependencies. - class DependencyOrderingComparator { - public: - DependencyOrderingComparator(){ - } - DependencyOrderingComparator( std::vector ordering ):orderedComponents( ordering ) - { - } - - bool operator()( const std::string& lhs, const std::string& rhs ) const { - std::vector::const_iterator lhsIt = - find( orderedComponents.begin(), orderedComponents.end(), lhs ); - std::vector::const_iterator rhsIt = - find( orderedComponents.begin(), orderedComponents.end(), rhs ); - - // If both sides are not explicitly ordered then just order by name - if( lhsIt == orderedComponents.end() && rhsIt == orderedComponents.end() ) { - return lhs < rhs; - } - - return lhsIt < rhsIt; - } - private: - //! An inorder list of model components by name. Note that this list - //! is not exhaustive. Model components not in this list are assumed to - //! be independent. - std::vector orderedComponents; - }; - - // A named list of model components to run. - std::map modelComponents; - - // A map of component capabilities (as reported by the components). - std::multimap componentCapabilities; - - // A map of component dependencies (depending on CAPABILITY, not component name). - std::multimap componentDependencies; - - // Map of component inputs, as reported by the components. This - // map doesn't play any role in establishing the dependency graph - // (see capabilities for that). Instead it's used by outside - // functions to figure out where to send the data they're pushing - // into the model (e.g., emissions). - std::multimap componentInputs; - - // A list of components that have been disabled - // When a component is disabled, it still receives input data - // But its capabilities aren't honored, and it won't be called - std::vector disabledComponents; - - // A list of components whose output has been disabled - std::vector disabledOutputComponents; - - // Some helpful typedefs to clean up syntax - typedef std::multimap::iterator componentMapIterator; - typedef std::map::iterator NameComponentIterator; - typedef std::map::const_iterator CNameComponentIterator; - - - //! Flag: are we currently in spinup mode? - bool in_spinup; - - //! List of visitors which may need to take action after a model time-step. - std::vector modelVisitors; - // Some helpful typedefs to clean up syntax - typedef std::vector::iterator VisitorIterator; + //! Registry of instantiated cores + //! \details This is used when you are instantiating hector cores + //! from a language other than C++. Instead of trying to convert + //! C++ pointers to something that can be stored in the other + //! language's data structures, you just register the core(s) you + //! create in this vector and refer to them by index. + static std::vector core_registry; + + Logger glog; + + // indicator for whether setup has been completed. See notes in the body of + // prepareToRun. + bool setup_complete; + + //! Cause all components to run their spinup procedure. + bool run_spinup(); + + //------------------------------------------------------------------------------ + //! Current run name. + std::string run_name; + + //------------------------------------------------------------------------------ + //! The start date for the models. + double startDate; + + //------------------------------------------------------------------------------ + //! The end date for the models. + double endDate; + + //------------------------------------------------------------------------------ + //! The last date we've run up to + double lastDate; + + //------------------------------------------------------------------------------ + //! The date to start tracking carbon cycle flows + double trackingDate; + + //------------------------------------------------------------------------------ + //! A flag to indicate that the core has been initialized. + bool isInited; + + //------------------------------------------------------------------------------ + //! A flag (can be set from input) to indicate whether to spin up. + bool do_spinup; + + //------------------------------------------------------------------------------ + //! Maximum number of spinup steps allowed. + int max_spinup; + + //------------------------------------------------------------------------------ + //! A comparison object to ensure modelComponents are ordered according to + //! dependencies. + class DependencyOrderingComparator { + public: + DependencyOrderingComparator() {} + DependencyOrderingComparator(std::vector ordering) + : orderedComponents(ordering) {} + + bool operator()(const std::string &lhs, const std::string &rhs) const { + std::vector::const_iterator lhsIt = + find(orderedComponents.begin(), orderedComponents.end(), lhs); + std::vector::const_iterator rhsIt = + find(orderedComponents.begin(), orderedComponents.end(), rhs); + + // If both sides are not explicitly ordered then just order by name + if (lhsIt == orderedComponents.end() && + rhsIt == orderedComponents.end()) { + return lhs < rhs; + } + + return lhsIt < rhsIt; + } + + private: + //! An inorder list of model components by name. Note that this list + //! is not exhaustive. Model components not in this list are assumed to + //! be independent. + std::vector orderedComponents; + }; + + // A named list of model components to run. + std::map + modelComponents; + + // A map of component capabilities (as reported by the components). + std::multimap componentCapabilities; + + // A map of component dependencies (depending on CAPABILITY, not component + // name). + std::multimap componentDependencies; + + // Map of component inputs, as reported by the components. This + // map doesn't play any role in establishing the dependency graph + // (see capabilities for that). Instead it's used by outside + // functions to figure out where to send the data they're pushing + // into the model (e.g., emissions). + std::multimap componentInputs; + + // A list of components that have been disabled + // When a component is disabled, it still receives input data + // But its capabilities aren't honored, and it won't be called + std::vector disabledComponents; + + // A list of components whose output has been disabled + std::vector disabledOutputComponents; + + // Some helpful typedefs to clean up syntax + typedef std::multimap::iterator + componentMapIterator; + typedef std::map::iterator + NameComponentIterator; + typedef std::map::const_iterator + CNameComponentIterator; + + //! Flag: are we currently in spinup mode? + bool in_spinup; + + //! List of visitors which may need to take action after a model time-step. + std::vector modelVisitors; + // Some helpful typedefs to clean up syntax + typedef std::vector::iterator VisitorIterator; }; -} +} // namespace Hector #endif // CORE_H diff --git a/inst/include/csv_outputstream_visitor.hpp b/inst/include/csv_outputstream_visitor.hpp index 8ac9b16a0..ea287a4db 100644 --- a/inst/include/csv_outputstream_visitor.hpp +++ b/inst/include/csv_outputstream_visitor.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -26,51 +26,52 @@ namespace Hector { */ class CSVOutputStreamVisitor : public AVisitor { public: - CSVOutputStreamVisitor( std::ostream& outputStream, const bool printHeader = true ); - ~CSVOutputStreamVisitor(); - - virtual bool shouldVisit( const bool in_spinup, const double date ); - - virtual void visit( Core* c ); - virtual void visit( ForcingComponent* c ); - virtual void visit( SimpleNbox* c ); - virtual void visit( HalocarbonComponent* c ); - virtual void visit( TemperatureComponent* c ); - virtual void visit( BlackCarbonComponent* c ); - virtual void visit( OrganicCarbonComponent* c ); - virtual void visit( slrComponent* c ); - virtual void visit( OceanComponent* c ); - virtual void visit( OzoneComponent* c ); - virtual void visit( OHComponent* c ); - virtual void visit( CH4Component* c ); - virtual void visit( N2OComponent* c ); + CSVOutputStreamVisitor(std::ostream &outputStream, + const bool printHeader = true); + ~CSVOutputStreamVisitor(); + + virtual bool shouldVisit(const bool in_spinup, const double date); + + virtual void visit(Core *c); + virtual void visit(ForcingComponent *c); + virtual void visit(SimpleNbox *c); + virtual void visit(HalocarbonComponent *c); + virtual void visit(TemperatureComponent *c); + virtual void visit(BlackCarbonComponent *c); + virtual void visit(OrganicCarbonComponent *c); + virtual void visit(slrComponent *c); + virtual void visit(OceanComponent *c); + virtual void visit(OzoneComponent *c); + virtual void visit(OHComponent *c); + virtual void visit(CH4Component *c); + virtual void visit(N2OComponent *c); private: - //! The file output stream in which the csv output will be written to. - std::ostream& csvFile; + //! The file output stream in which the csv output will be written to. + std::ostream &csvFile; - // Data retained while the visitor is operating - double current_date; + // Data retained while the visitor is operating + double current_date; - // Spin up Flag - bool in_spinup; + // Spin up Flag + bool in_spinup; - //! Current model date, stored as a string for output - std::string datestring; + //! Current model date, stored as a string for output + std::string datestring; - //! Current model mode, stored as a string for output - std::string spinupstring; + //! Current model mode, stored as a string for output + std::string spinupstring; - //! Name of current run - std::string run_name; + //! Name of current run + std::string run_name; - //! Helper function: prints beginning of each output line - std::string linestamp() ; + //! Helper function: prints beginning of each output line + std::string linestamp(); - //! pointers to other components and stuff - Core* core; + //! pointers to other components and stuff + Core *core; }; -} +} // namespace Hector #endif // CSV_OUTPUTSTREAM_VISITOR_H diff --git a/inst/include/csv_table_reader.hpp b/inst/include/csv_table_reader.hpp index 3f8fe980d..b21d89aa5 100644 --- a/inst/include/csv_table_reader.hpp +++ b/inst/include/csv_table_reader.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -29,38 +29,37 @@ class Core; * - The first row is header information which corresponds to the actual * variable name to be set. * - The first column is the date index to use when setting the variable. - * - If first column is UNITS then the row is assumed to be the units labels - * for the table. This units string will then be passed along with the data - * processed form subsequent rows to provide units checking. + * - If first column is UNITS then the row is assumed to be the units + * labels for the table. This units string will then be passed along with the + * data processed form subsequent rows to provide units checking. * * When instructed to process the class requires routing information including - * the variable to set so that it can identify which column to process. It will - * then route data as each row is read. Note that the file will remain open - * and available for reprocessing until it is destructed. + * the variable to set so that it can identify which column to process. It + * will then route data as each row is read. Note that the file will remain + * open and available for reprocessing until it is destructed. */ class CSVTableReader { public: - CSVTableReader( const std::string& fileName ); - ~CSVTableReader(); + CSVTableReader(const std::string &fileName); + ~CSVTableReader(); - void process( Core* core, const std::string& componentName, - const std::string& varName ); + void process(Core *core, const std::string &componentName, + const std::string &varName); private: - //! The file name to read data from. Kept around for error reporting. - const std::string fileName; + //! The file name to read data from. Kept around for error reporting. + const std::string fileName; - //! Input stream to read data from. - std::ifstream tableInputStream; + //! Input stream to read data from. + std::ifstream tableInputStream; - //! Current line (that has just been read) - int lineNum; - - // Helper function to find next non-commented line - std::string csv_getline(); + //! Current line (that has just been read) + int lineNum; + // Helper function to find next non-commented line + std::string csv_getline(); }; -} +} // namespace Hector #endif // CSV_TABLE_READER_H diff --git a/inst/include/csv_tracking_visitor.hpp b/inst/include/csv_tracking_visitor.hpp new file mode 100644 index 000000000..8918607bb --- /dev/null +++ b/inst/include/csv_tracking_visitor.hpp @@ -0,0 +1,74 @@ +/* Hector -- A Simple Climate Model + Copyright (C) 2022 Battelle Memorial Institute + + Please see the accompanying file LICENSE.md for additional licensing + information. +*/ +#ifndef CSV_TRACKING_VISITOR_H +#define CSV_TRACKING_VISITOR_H +/* + * csv_tracking_visitor.h + * hector + * + * Created by Skylar Gering on 21 January 2021. + * + */ + +#include + +#include "avisitor.hpp" +#include "fluxpool.hpp" +#include "tseries.hpp" + +#define DELIMITER "," + +namespace Hector { +/*! \brief A visitor which will the contents of each tracked pool at each model + * period. + */ +class CSVFluxPoolVisitor : public AVisitor { +public: + CSVFluxPoolVisitor(std::ostream &outputStream, const bool printHeader = true); + ~CSVFluxPoolVisitor(); + + virtual bool shouldVisit(const bool in_spinup, const double date); + virtual void visit(Core *c); + virtual void visit(SimpleNbox *c); + virtual void visit(OceanComponent *c); + + void reset(const double reset_date); + virtual void outputTrackingData(std::ostream &tracking_out) const; + +private: + //! The file output stream in which the csv output will be written to. + std::ostream &csvFile; + + //! The buffer—holds output until ready to be returned to the core or written + //! to the csv file + tseries csvBuffer; + string header; + + // Data retained while the visitor is operating + double current_date; + double tracking_date; + + //! Current model date, stored as a string for output + string datestring; + + //! Current model mode, stored as a string for output + string spinupstring; + + //! Name of current run + string run_name; + + //! Helper function: print one or more lines of tracking data for a given + //! fluxpool + virtual void print_pool(const fluxpool, const string); + + //! Pointers to other components and stuff + Core *core; +}; + +} // namespace Hector + +#endif // CSV_TRACKING_VISITOR_H diff --git a/inst/include/dependency_finder.hpp b/inst/include/dependency_finder.hpp index 7c63825dd..512daf125 100644 --- a/inst/include/dependency_finder.hpp +++ b/inst/include/dependency_finder.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -18,69 +18,67 @@ * */ -#include -#include #include +#include #include +#include #include "h_exception.hpp" namespace Hector { /*! -* \brief This class calculates an ordering of named objects through a scheduling -* algorithm based on supplied dependencies. -* \details This class can order any type of object that has a name represented by -* a string. To use this class to create a correct object ordering, -* the user should first use the addDependency function for each -* dependency of a object. Once all dependencies have been added, -* calling createOrdering constructs an internal ordering. Currently cycles -* will generate and exception. Additional dependencies can be added once -* the ordering is created, but createOrdering must be called again. Once -* createOrdering has completed, the user can then call getOrdering to -* return an ordered list of objects, starting with the object which has -* no dependencies. -* The two key data structures are mDependencyMatrix and mObjectIndices. -* mDependencyMatrix is a two-dimensional matrix where each cell -* represents whether there is a dependency from the column object to -* the row object. mObjectIndices contains a mapping of object name to -* the index in mDependencyMatrix. Both of these data structures are -* updated by the addDependency function. -* \author Josh Lurz -*/ + * \brief This class calculates an ordering of named objects through a + * scheduling algorithm based on supplied dependencies. \details This class can + * order any type of object that has a name represented by a string. To use this + * class to create a correct object ordering, the user should first use the + * addDependency function for each dependency of a object. Once all dependencies + * have been added, calling createOrdering constructs an internal ordering. + * Currently cycles will generate and exception. Additional dependencies can be + * added once the ordering is created, but createOrdering must be called again. + * Once createOrdering has completed, the user can then call getOrdering to + * return an ordered list of objects, starting with the object which + * has no dependencies. The two key data structures are mDependencyMatrix and + * mObjectIndices. mDependencyMatrix is a two-dimensional matrix where each cell + * represents whether there is a dependency from the column object to + * the row object. mObjectIndices contains a mapping of object name to + * the index in mDependencyMatrix. Both of these data structures are + * updated by the addDependency function. + * \author Josh Lurz + */ -class DependencyFinder -{ +class DependencyFinder { public: - DependencyFinder(); - bool addDependency( const std::string& aObjectName, - const std::string& aDependency ); - void createOrdering(); - const std::vector& getOrdering() const; + DependencyFinder(); + bool addDependency(const std::string &aObjectName, + const std::string &aDependency); + void createOrdering(); + const std::vector &getOrdering() const; + private: - void removeDependency( const size_t aObject, const size_t aDependency ); - const std::string& getNameFromIndex( const size_t aIndex ) const; + void removeDependency(const size_t aObject, const size_t aDependency); + const std::string &getNameFromIndex(const size_t aIndex) const; - // Need the typedef here as addTrackedItem returns a ObjectIndexMap - // iterator. - typedef std::map ObjectIndexMap; - ObjectIndexMap::iterator addTrackedItem( const std::string& aItem ); + // Need the typedef here as addTrackedItem returns a ObjectIndexMap + // iterator. + typedef std::map ObjectIndexMap; + ObjectIndexMap::iterator addTrackedItem(const std::string &aItem); - //! indicator for whether or not the ordering has been computed. - bool ordcomputed; + //! indicator for whether or not the ordering has been computed. + bool ordcomputed; - //! Mapping of sector name to matrix index to avoid storing all names as - //! strings within the matrix. - ObjectIndexMap mObjectIndices; + //! Mapping of sector name to matrix index to avoid storing all names as + //! strings within the matrix. + ObjectIndexMap mObjectIndices; - //! A square matrix where each cell contains whether the column sector - //! depends on the row sector. - std::vector > mDependencyMatrix; + //! A square matrix where each cell contains whether the column sector + //! depends on the row sector. + std::vector> mDependencyMatrix; - //! The correctly ordered list of sectors. - std::vector mOrdering; + //! The correctly ordered list of sectors. + std::vector mOrdering; }; -} +} // namespace Hector #endif // _DEPENDENCY_FINDER_H_ diff --git a/inst/include/dummy_model_component.hpp b/inst/include/dummy_model_component.hpp index 0027bacb2..504b243cf 100644 --- a/inst/include/dummy_model_component.hpp +++ b/inst/include/dummy_model_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -30,56 +30,54 @@ namespace Hector { class DummyModelComponent : public IModelComponent { public: - DummyModelComponent(); - ~DummyModelComponent(); + DummyModelComponent(); + ~DummyModelComponent(); - double getY() const; + double getY() const; - const tseries& getC() const; + const tseries &getC() const; - //! IModelComponent methods - virtual std::string getComponentName() const; + //! IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double date); + virtual void reset(double date); - virtual void shutDown(); + virtual void shutDown(); - //! IVisitable methods - virtual void accept( AVisitor* visitor ); + //! IVisitable methods + virtual void accept(AVisitor *visitor); private: - virtual unitval getData( const std::string& varName, - const double valueIndex ); + virtual unitval getData(const std::string &varName, const double valueIndex); - //! input var - double slope; + //! input var + double slope; - //! state var - double prevX; + //! state var + double prevX; - //! result at state - double y; + //! result at state + double y; - //! input time series var - tseries c; + //! input time series var + tseries c; - // logger - Logger logger; + // logger + Logger logger; }; -} +} // namespace Hector #endif // DUMMY_MODEL_COMPONENT_H diff --git a/inst/include/fluxpool.hpp b/inst/include/fluxpool.hpp new file mode 100644 index 000000000..c7690635c --- /dev/null +++ b/inst/include/fluxpool.hpp @@ -0,0 +1,353 @@ +#ifndef FLUXPOOL_H +#define FLUXPOOL_H + +/* Hector -- A Simple Climate Model + Copyright (C) 2022 Battelle Memorial Institute + + Please see the accompanying file LICENSE.md for additional licensing + information. +*/ + +#include "unitval.hpp" +#include // std::set_union +#include +#include +#include +#include + +using namespace std; + +/* + * fluxpool.hpp - A unitval, but its value may not be negative + * Also can track the origins of its 'stuff' + * + * hector + * + * Created by Ben on 2021-02-05. + * Tracking implementation 2021 by Skylar Gering, Harvey Mudd College + * + */ + +namespace Hector { + +class fluxpool : public unitval { + +public: + fluxpool(); + fluxpool(double, unit_types, bool, string); + void set(double, unit_types, bool, string); + + // tracking-specific functions + vector get_sources() const; + double get_fraction(string source) const; + unordered_map get_tracking_map() const; + bool tracking; + string name; + fluxpool flux_from_unitval(unitval, string) const; + fluxpool flux_from_fluxpool(fluxpool, string) const; + void adjust_pool_to_val(const double, const bool); + + // math operators + friend fluxpool operator+(const fluxpool &, const fluxpool &); + friend fluxpool operator+(const fluxpool &, const unitval &); + friend fluxpool operator*(const fluxpool &, const double); + friend fluxpool operator*(const double, const fluxpool &); + friend fluxpool operator-(const fluxpool &, const fluxpool &); + friend fluxpool operator-(const fluxpool &, const unitval &); + friend fluxpool operator/(const fluxpool &, const double); + friend double operator/(const fluxpool &, const fluxpool &); + friend bool operator==(const fluxpool &, const fluxpool &); + friend bool operator!=(const fluxpool &, const fluxpool &); + + friend ostream &operator<<(ostream &, fluxpool &); + +private: + // private constructor used only when adding + fluxpool(unitval, unordered_map, bool, string); + // tracking information is held in a map + unordered_map ctmap; +}; + +// Non-member function for multiplication with double as first argument +fluxpool operator*(double d, const fluxpool &ct); + +//----------------------------------------------------------------------- +/*! \brief Public constructor + */ +inline fluxpool::fluxpool() { + tracking = false; + name = "?"; +} + +//----------------------------------------------------------------------- +/*! \brief Assign this fluxpool's name and then pass control to set() + */ +inline fluxpool::fluxpool(double v, unit_types u, bool track = false, + string pool_name = "?") { + set(v, u, track, pool_name); +} + +//----------------------------------------------------------------------- +/*! \brief Private constructor with explicit source pool map + */ +inline fluxpool::fluxpool(unitval v, unordered_map pool_map, + bool track = true, string pool_name = "?") { + unitval::set(v.value(v.units()), v.units(), 0.0); + tracking = track; + ctmap = pool_map; + name = pool_name; + + if (v < 0) { + H_ASSERT(v >= 0, "Flux and pool values may not be negative in " + name); + } + + // check pool_map data + double frac = 0.0; + for (auto src : ctmap) { + H_ASSERT(src.second >= 0 && src.second <= 1, + "fractions must be 0-1 for " + pool_name); + frac += src.second; + } + H_ASSERT(frac - 1.0 < 1e-6, "pool_map must sum to ~1.0 for " + pool_name) +} + +//----------------------------------------------------------------------- +/*! \brief Check that the value is >=0 before passing control to unitval + * \warning Resets map so 'name' key's value is 1, all others removed + */ +inline void fluxpool::set(double v, unit_types u, bool track = false, + string pool_name = "?") { + name = pool_name; + if (v < 0) { + H_ASSERT(v >= 0, "Flux and pool values may not be negative in " + name); + } + tracking = track; + ctmap[name] = 1.0; + unitval::set(v, u, 0.0); +} + +//----------------------------------------------------------------------- +/*! \brief Return a string vector of the current sources + */ +inline vector fluxpool::get_sources() const { + H_ASSERT(tracking, "get_sources() requires tracking to be on in " + name); + vector sources; + for (auto src : ctmap) { + sources.push_back(src.first); + } + return sources; +} + +//----------------------------------------------------------------------- +/*! \brief Return the fraction corresponding to a specific source + */ +inline double fluxpool::get_fraction(string source) const { + H_ASSERT(tracking, "get_fraction() requires tracking to be on in " + name); + double val = 0.0; // 0.0 is returned if not in our map + auto x = ctmap.find(source); + if (x != ctmap.end()) { + val = x->second; + } + return val; +} + +//----------------------------------------------------------------------- +/*! \brief Return the whole map + */ +inline unordered_map fluxpool::get_tracking_map() const { + return this->ctmap; +} + +//----------------------------------------------------------------------- +/*! \brief Given a unitval, return a fluxpool with that total and our source + pool map. This is needed when dealing with LUC and other input (i.e. unitval) + fluxes + */ +inline fluxpool fluxpool::flux_from_unitval(unitval f, + string name = "?") const { + return fluxpool(f, ctmap, tracking, name); +} + +inline fluxpool fluxpool::flux_from_fluxpool(fluxpool f, + string name = "?") const { + unitval flux = unitval(f.value(f.valUnits), valUnits); + return fluxpool(flux, ctmap, tracking, name); +} + +//----------------------------------------------------------------------- +/*! \brief Adjusts pool size to match that output by the ODE solver + Cheater function; hopefully we don't in final version + */ +inline void fluxpool::adjust_pool_to_val(const double solvedSize, + const bool allow_untracked = true) { + const double diff = solvedSize - val; // reducing numeric precision errors + + if (tracking && diff > 0 && + allow_untracked) { // record difference as due to untracked source + fluxpool flux(diff, this->valUnits, true, "untracked"); + fluxpool adjusted = *this + flux; + this->ctmap = adjusted.ctmap; + } + this->val = solvedSize; +} + +//----------------------------------------------------------------------- +/*! \brief Operator overload: addition + */ +inline fluxpool operator+(const fluxpool &lhs, const fluxpool &rhs) { + H_ASSERT(lhs.units() == rhs.units(), + "units mismatch: " + lhs.name + " and " + rhs.name); + H_ASSERT(lhs.tracking == rhs.tracking, + "tracking mismatch: " + lhs.name + " and " + rhs.name) + + if (!lhs.tracking) { + return fluxpool(lhs.val + rhs.val, lhs.units(), false, lhs.name); + } + + // This is the complicated case, and the heart of the tracking capability + + // Compute the overall new total (a unitval) + Hector::unitval new_total(lhs.val + rhs.val, lhs.units()); + + // Construct a vector of the combined sources + vector lhs_src = lhs.get_sources(), rhs_src = rhs.get_sources(), + both_sources; + // I was using set_union, which works in Xcode but but for some reason Rcpp + // builds are erroring on the required std::rbegin and std::rend usage. + /* + std::set_union(begin( lhs_src ), end( lhs_src ), + rbegin( rhs_src ), rend( rhs_src ), + back_inserter( both_sources ) ); + */ + // So, go with hand-built solution: look through lhs and then rhs sources + // If a source isn't in our "both_sources" vector, add it + for (auto &s : lhs_src) { + if (find(both_sources.begin(), both_sources.end(), s) == + both_sources.end()) { + both_sources.push_back(s); + } + } + for (auto &s : rhs_src) { + if (find(both_sources.begin(), both_sources.end(), s) == + both_sources.end()) { + both_sources.push_back(s); + } + } + + // Walk through the sources and compute the combined absolute value + // Note get_fraction() return 0 if source not found, which is what we want + unordered_map new_pools; + for (auto &s : both_sources) { + new_pools[s] = + unitval(lhs.val * lhs.get_fraction(s) + rhs.val * rhs.get_fraction(s), + lhs.units()); + } + + // Now that we have the new pool values, compute new fractions + unordered_map new_origins; + for (auto &s : both_sources) { + if (new_total) { + new_origins[s] = new_pools[s] / new_total; + } else { // uh oh, new total is zero + new_origins[s] = 1.0 / new_pools.size(); + } + } + + return fluxpool(new_total, new_origins, lhs.tracking, lhs.name); +} + +//----------------------------------------------------------------------- +/*! \brief Operator overload: addition + You can add a unitval to a fluxpool, resulting in a fluxpool + */ +inline fluxpool operator+(const fluxpool &lhs, const unitval &rhs) { + H_ASSERT(lhs.valUnits == rhs.units(), "units mismatch: " + lhs.name); + H_ASSERT(!lhs.tracking, "Can't add a unitval to a tracking fluxpool"); + return fluxpool(lhs.val + rhs.value(rhs.units()), lhs.valUnits, false, + lhs.name); +} + +//----------------------------------------------------------------------- +/*! \brief Operator overload: subtraction + */ +inline fluxpool operator-(const fluxpool &lhs, const fluxpool &rhs) { + H_ASSERT(lhs.valUnits == rhs.units(), "units mismatch: " + rhs.name); + H_ASSERT(lhs.tracking == rhs.tracking, + "tracking mismatch: " + lhs.name + " and " + rhs.name) + fluxpool diff(unitval(lhs.val - rhs.val, lhs.valUnits), lhs.ctmap, + lhs.tracking, lhs.name); + return diff; +} + +//----------------------------------------------------------------------- +/*! \brief Operator overload: subtraction + You can subtract a unitval from a fluxpool, resulting in a fluxpool + */ +inline fluxpool operator-(const fluxpool &lhs, const unitval &rhs) { + H_ASSERT(lhs.valUnits == rhs.units(), "units mismatch: " + lhs.name); + unitval diff(lhs.val - rhs.value(lhs.valUnits), lhs.units()); + return fluxpool(diff, lhs.ctmap, lhs.tracking, lhs.name); +} + +//----------------------------------------------------------------------- +/*! \brief Operator overload: constant multiplication + */ +inline fluxpool operator*(const fluxpool &lhs, const double rhs) { + return fluxpool(unitval(lhs.val * rhs, lhs.valUnits), lhs.ctmap, lhs.tracking, + lhs.name); +} +inline fluxpool operator*(const double lhs, const fluxpool &rhs) { + return rhs * lhs; +} + +//----------------------------------------------------------------------- +/*! \brief Operator overload: constant division + */ +inline fluxpool operator/(const fluxpool &lhs, const double rhs) { + return fluxpool(unitval(lhs.val / rhs, lhs.valUnits), lhs.ctmap, lhs.tracking, + lhs.name); +} + +//----------------------------------------------------------------------- +/*! \brief Operator overload: division + */ +inline double operator/(const fluxpool &lhs, const fluxpool &rhs) { + H_ASSERT(lhs.valUnits == rhs.units(), + "units mismatch: " + lhs.name + " and " + rhs.name); + H_ASSERT(lhs.tracking == rhs.tracking, + "tracking mismatch: " + lhs.name + " and " + rhs.name) + return lhs.val / rhs.val; +} + +//----------------------------------------------------------------------- +/*! \brief Equality and inequality: same total only + */ +inline bool operator==(const fluxpool &lhs, const fluxpool &rhs) { + H_ASSERT(lhs.valUnits == rhs.units(), + "units mismatch: " + lhs.name + " and " + rhs.name); + return lhs.val == rhs.val; +} +inline bool operator!=(const fluxpool &lhs, const fluxpool &rhs) { + H_ASSERT(lhs.valUnits == rhs.units(), + "units mismatch: " + lhs.name + " and " + rhs.name); + return lhs.val != rhs.val; +} + +//----------------------------------------------------------------------- +/*! \brief Printing, including tracking information if available + */ +inline ostream &operator<<(ostream &out, fluxpool &rhs) { + out << rhs.value(rhs.units()) << " " << rhs.unitsName(); + if (rhs.tracking) { + out << endl; + std::vector sources = rhs.get_sources(); + for (auto src : sources) { + out << "\t" << src << ": " << rhs.get_fraction(src) << endl; + } + } + return out; +} + +} // namespace Hector + +#endif /* FLUXPOOL_H */ diff --git a/inst/include/forcing_component.hpp b/inst/include/forcing_component.hpp index 02ef4f892..b7215f01f 100644 --- a/inst/include/forcing_component.hpp +++ b/inst/include/forcing_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -24,68 +24,119 @@ namespace Hector { class SimpleNbox; class HalocarbonComponent; - //------------------------------------------------------------------------------ /*! \brief The forcing component. * */ class ForcingComponent : public IModelComponent { - friend class CSVOutputStreamVisitor; -public: + friend class CSVOutputStreamVisitor; - ForcingComponent(); - ~ForcingComponent(); +public: + ForcingComponent(); + ~ForcingComponent(); - //! IModelComponent methods - virtual std::string getComponentName() const; + //! IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double date); + virtual void reset(double date); - virtual void shutDown(); + virtual void shutDown(); - //! IVisitable methods - virtual void accept( AVisitor* visitor ); + //! IVisitable methods + virtual void accept(AVisitor *visitor); - //! A list (map) of all computed forcings, with associated iterator - typedef std::map forcings_t; - typedef std::map::iterator forcingsIterator; + //! A list (map) of all computed forcings, with associated iterator + typedef std::map forcings_t; + typedef std::map::iterator forcingsIterator; private: - virtual unitval getData( const std::string& varName, - const double valueIndex ); - - //! Base year forcings - forcings_t baseyear_forcings; - //! Forcings by year - tvector forcings_ts; - - double baseyear; //! Year which forcing calculations will start - double currentYear; //! Tracks current year - unitval C0; //! Records base year atmospheric CO2 - - tseries Ftot_constrain; //! Total forcing can be supplied - - Core* core; //! Core - Logger logger; //! Logger - - static const char *adjusted_halo_forcings[]; //! Capability strings for halocarbon forcings - static const char *halo_forcing_names[]; //! Internal names of halocarbon forcings - static std::map forcing_name_map; + virtual unitval getData(const std::string &varName, const double valueIndex); + + //! Base year forcings + forcings_t baseyear_forcings; + //! Forcings by year + tvector forcings_ts; + + double baseyear; //! Year which forcing calculations will start + double currentYear; //! Tracks current year + unitval C0; //! Records base year atmospheric CO2 + tseries Ftot_constrain; //! Total forcing can be supplied + tseries Fmisc_ts; //! Miscellaneous forcing can be supplied via ini + + // CO2 parameters + const double a1 = + -2.4785e-7; // (W m–2 ppm–2) IPCC AR6 parameter for CO2 SARF Table 7.SM.1 + const double b1 = + 7.5906e-4; // (W m–2 ppm–1) IPCC AR6 parameter for CO2 SARF Table 7.SM.1 + const double c1 = -2.1492e-3; // (W m–2 ppb–1/2) IPCC AR6 parameter for CO2 + // SARF Table 7.SM.1 + const double d1 = + 5.2488; // (W m–2) IPCC AR6 parameter for CO2 SARF Table 7.SM.1 + unitval delta_co2; // forcing tropospheric adjustment for CO2 see 7.3.2.1 of + // IPCC AR6 + + // N2O parameters + const double a2 = + -3.4197e-4; // (W m–2 ppm–1) IPCC AR6 parameter for N2O SARF Table 7.SM.1 + const double b2 = + 2.5455e-4; // (W m–2 ppb–1) IPCC AR6 parameter for N2O SARF Table 7.SM.1 + const double c2 = + -2.4357e-4; // (W m–2 ppb–1) IPCC AR6 parameter for N2O SARF Table 7.SM.1 + const double d2 = + 0.12173; // (W m-2 ppb–1/2) IPCC AR6 parameter for N2O SARF Table 7.SM.1 + unitval delta_n2o; // forcing tropospheric adjustment for N2O see 7.3.2.3 of + // IPCC AR6 + + // CH4 parameters + const double a3 = + -8.9603e-5; // (W m–2 ppb–1) IPCC AR6 parameter for CH4 SARF Table 7.SM.1 + const double b3 = + -1.2462e-4; // (W m–2 ppb–1) IPCC AR6 parameter for CH4 SARF Table 7.SM.1 + const double d3 = + 0.045194; // (W m–2 ppb–1/2) IPCC AR6 parameter for CH4 SARF Table 7.SM.1 + unitval delta_ch4; // forcing tropospheric adjustment for CH4 see 7.3.2.2 of + // IPCC AR6 + + // Aerosol parameters for aerosol-radiation interactions (RFari) see + // equation 7.SM.1.1 of IPCC AR6 + unitval rho_bc; // (W yr m–2 Tg–1) IPCC AR6 radiative efficiency BC 7.SM.1.3 + unitval rho_oc; // (W yr m–2 Tg–1) IPCC AR6 radiative efficiency OC 7.SM.1.3 + unitval + rho_so2; // (W yr m–2 Gg–1) IPCC AR6 radiative efficiency SO2 7.SM.1.3.1 + unitval + rho_nh3; // (W yr m–2 Tg–1) IPCC AR6 radiative efficiency SO2 7.SM.1.3.1 + + // Aerosol parameters for aerosol-cloud interactions (RFaci) see equation + // Equation 7.SM.1.2 of IPCC AR6 + double const aci_beta = 2.09841432; // (W m-2) IPCC AR6 7.SM.1.3.1 + double const s_BCOC = 111.05064063; // (Tg C yr-1) IPCC AR6 7.SM.1.3.1 + double const s_SO2 = + (260.34644166 * 1000) * + (32.065 / + 64.066); // (Tg SO2 yr–1) IPCC AR6 7.SM.1.3.1 converted to (Gg S yr-1) + + Core *core; //! Core + Logger logger; //! Logger + + static const char + *adjusted_halo_forcings[]; //! Capability strings for halocarbon forcings + static const char + *halo_forcing_names[]; //! Internal names of halocarbon forcings + static std::map forcing_name_map; }; -} +} // namespace Hector #endif // FORCING_COMPONENT_H diff --git a/inst/include/h_exception.hpp b/inst/include/h_exception.hpp index 4026e8a59..4dd3d2ccc 100644 --- a/inst/include/h_exception.hpp +++ b/inst/include/h_exception.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -14,9 +14,9 @@ * */ -#include -#include #include +#include +#include //----------------------------------------------------------------------- /*! \brief Exception class. @@ -24,42 +24,38 @@ * Sends string (message), line, function and file up the call chain. */ class h_exception : public std::exception { - private: - std::string extractFilename( const std::string& path ) const { - unsigned long pos = path.find_last_of( '/' ); // *nix - if( pos == path.npos ) pos = path.find_last_of( '\\' ); // win - return path.substr( ( pos == path.npos ) ? 0 : pos+1 ); - // degrades gracefully if no separators found - } - std::string msg, func, file; - int linenum; +private: + std::string extractFilename(const std::string &path) const { + unsigned long pos = path.find_last_of('/'); // *nix + if (pos == path.npos) + pos = path.find_last_of('\\'); // win + return path.substr((pos == path.npos) ? 0 : pos + 1); + // degrades gracefully if no separators found + } + std::string msg, func, file; + int linenum; - public: - h_exception() : linenum(0) {} - h_exception(std::string msg_p, std::string func_p, - std::string file_p, int linenum_p) - : msg(msg_p), func(func_p), file(file_p), linenum(linenum_p) { - } - virtual ~h_exception() {} - inline std::string get_filename() const { - return extractFilename(file); - } - virtual const char* what() const throw() { - return msg.c_str(); - } - friend inline std::ostream & operator<<( std::ostream &os, const h_exception &he ); +public: + h_exception() : linenum(0) {} + h_exception(std::string msg_p, std::string func_p, std::string file_p, + int linenum_p) + : msg(msg_p), func(func_p), file(file_p), linenum(linenum_p) {} + virtual ~h_exception() {} + inline std::string get_filename() const { return extractFilename(file); } + virtual const char *what() const throw() { return msg.c_str(); } + friend inline std::ostream &operator<<(std::ostream &os, + const h_exception &he); }; - //----------------------------------------------------------------------- /*! \brief Insertion operator for h_exception objects * */ -inline std::ostream & operator<<( std::ostream &os, const h_exception &he ) { - os << "msg: \t" << he.msg << "\nfunc: \t" << he.func - << "\nfile: \t" << he.get_filename() << "\nffile:\t" << he.file << "\n" - << "\nline: \t" << he.linenum << "\n"; - return os; +inline std::ostream &operator<<(std::ostream &os, const h_exception &he) { + os << "msg: \t" << he.msg << "\nfunc: \t" << he.func << "\nfile: \t" + << he.get_filename() << "\nffile:\t" << he.file << "\n" + << "\nline: \t" << he.linenum << "\n"; + return os; } //----------------------------------------------------------------------- @@ -79,7 +75,9 @@ inline std::ostream & operator<<( std::ostream &os, const h_exception &he ) { // Note that originally this macro used variable number of arguments (so you // could say 'H_ASSERT(x)' or 'H_ASSERT(x,"blah")' but Visual Studio doesn't // seem to support this, so now all assertions require a message. -#define H_ASSERT(x,s) if( !(x) ) H_THROW( "Assertion failed: "+std::string( s ) ); +#define H_ASSERT(x, s) \ + if (!(x)) \ + H_THROW("Assertion failed: " + std::string(s)); /* #define H_ASSERT1(x) if( !(x) ) H_THROW( "Assertion failed" ); #define GET_3RD_ARG(arg1, arg2, arg3, ...) arg3 @@ -99,6 +97,8 @@ GET_3RD_ARG(__VA_ARGS__, H_ASSERT2, H_ASSERT1, ) * The exception location information will be replaced and the message will be * appended from the original exception. */ -#define H_RETHROW(oe, s) throw h_exception(std::string(s) + " - " + oe.what(), __func__, __FILE__, __LINE__); +#define H_RETHROW(oe, s) \ + throw h_exception(std::string(s) + " - " + oe.what(), __func__, __FILE__, \ + __LINE__); #endif diff --git a/inst/include/h_interpolator.hpp b/inst/include/h_interpolator.hpp index e6f1faed0..7f8f22fd2 100644 --- a/inst/include/h_interpolator.hpp +++ b/inst/include/h_interpolator.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -22,9 +22,11 @@ enum interpolation_methods { DEFAULT, LINEAR, SPLINE_FORSYTHE }; //----------------------------------------------------------------------- // Prototypes for interpolation methods -void spline_forsythe( int, double *, double *, double *, double *, double * ); -double seval_forsythe( int, double, double *, double *, double *, double *, double * ); -double seval_deriv_forsythe( int, double, double *, double *, double *, double *, double * ); +void spline_forsythe(int, double *, double *, double *, double *, double *); +double seval_forsythe(int, double, double *, double *, double *, double *, + double *); +double seval_deriv_forsythe(int, double, double *, double *, double *, double *, + double *); //----------------------------------------------------------------------- /*! \brief interpolator class header. @@ -34,64 +36,66 @@ double seval_deriv_forsythe( int, double, double *, double *, double *, double * */ class h_interpolator { private: - interpolation_methods method; - int ndata; - double *xdata, *ydata; - double *b_coef, *c_coef, *d_coef; + interpolation_methods method; + int ndata; + double *xdata, *ydata; + double *b_coef, *c_coef, *d_coef; - double f_linear( double ); - double f_deriv_linear( double ); + double f_linear(double); + double f_deriv_linear(double); - void release_data(); - void refit_data(); + void release_data(); + void refit_data(); - //! last value of the lower neighbor. - mutable int ilast; + //! last value of the lower neighbor. + mutable int ilast; - void locate(double x, int &iprev, int &inext) const; + void locate(double x, int &iprev, int &inext) const; public: - h_interpolator(); - ~h_interpolator(); - double f( double ); - double f_deriv( double ); - void newdata( int, double*, double* ); - void set_method( interpolation_methods ); + h_interpolator(); + ~h_interpolator(); + double f(double); + double f_deriv(double); + void newdata(int, double *, double *); + void set_method(interpolation_methods); }; -inline void h_interpolator::locate(double x, int &iprev, int &inext) const -{ - /* Test for u within the interval of definition of the interpolating function. If not, - return the value at an end point of the interval. */ - if(x= xdata[ndata - 1]) { + iprev = ilast = ndata - 1; + inext = ndata; + return; + } + + /* Search for the data points with independent values containing the + argument u. */ + if (ilast >= ndata - 1 || ilast < 0) + ilast = 0; + + /* If u is not in the current in || ilast < 0terval, then execute a binary + * search. */ + if ((x < xdata[ilast]) || (x >= xdata[ilast + 1])) { + ilast = 0; + iprev = ndata + 1; + while (iprev > ilast + 1) { + inext = (int)((ilast + iprev) / 2); + if (x < xdata[inext]) + iprev = inext; + if (x >= xdata[inext]) + ilast = inext; } - else if(x>=xdata[ndata-1]) { - iprev = ilast = ndata-1; - inext = ndata; - return; - } - - /* Search for the data points with independent values containing the - argument u. */ - if (ilast >= ndata-1 || ilast < 0) ilast = 0; - - /* If u is not in the current in || ilast < 0terval, then execute a binary search. */ - if ((x < xdata[ilast]) || (x >= xdata[ilast+1])) { - ilast = 0; - iprev = ndata + 1; - while (iprev > ilast + 1) { - inext = (int)(( ilast + iprev) / 2); - if (x < xdata[inext]) iprev = inext; - if (x >= xdata[inext]) ilast = inext; - } - } - iprev = ilast; - inext = ilast + 1; + } + iprev = ilast; + inext = ilast + 1; } -} +} // namespace Hector #endif diff --git a/inst/include/h_reader.hpp b/inst/include/h_reader.hpp index 5dc48c6a4..5c798ecb9 100644 --- a/inst/include/h_reader.hpp +++ b/inst/include/h_reader.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -29,16 +29,18 @@ enum readertype_t { INI_style, table_style }; */ class h_reader { public: - h_reader( std::string fname, readertype_t style, bool doparse=true ); - virtual ~h_reader() {delete reader;} - void parse(); - std::string get_string( std::string section, std::string name, std::string defaultvalue ); - double get_number( std::string section, std::string name, double defaultvalue ); + h_reader(std::string fname, readertype_t style, bool doparse = true); + virtual ~h_reader() { delete reader; } + void parse(); + std::string get_string(std::string section, std::string name, + std::string defaultvalue); + double get_number(std::string section, std::string name, double defaultvalue); + private: - INIReader* reader; - std::string filename; + INIReader *reader; + std::string filename; }; -} +} // namespace Hector #endif diff --git a/inst/include/h_util.hpp b/inst/include/h_util.hpp index 2bb4d1b00..cc6c6295f 100644 --- a/inst/include/h_util.hpp +++ b/inst/include/h_util.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -16,18 +16,24 @@ * Provides utility services */ +#include -#define H_STRINGIFY_VAR(var) \ - #var +#define H_STRINGIFY_VAR(var) #var #define MODEL_NAME "hector" /*! * \brief The model version number to be included in logs and outputs. - * \note This must be updated manually when the model version changes. + * \note Manually update the git tag to match this. */ -#define MODEL_VERSION "2.5.0" +#define MODEL_VERSION "3.0.0" #define OUTPUT_DIRECTORY "output/" +namespace Hector { + +void ensure_dir_exists(const std::string &dir); + +} + #endif // H_UTIL_H diff --git a/inst/include/halocarbon_component.hpp b/inst/include/halocarbon_component.hpp index 0854a3acf..c81a3b092 100644 --- a/inst/include/halocarbon_component.hpp +++ b/inst/include/halocarbon_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -14,10 +14,10 @@ * */ +#include "imodel_component.hpp" #include "logger.hpp" #include "tseries.hpp" #include "unitval.hpp" -#include "imodel_component.hpp" namespace Hector { @@ -29,66 +29,61 @@ namespace Hector { * */ class HalocarbonComponent : public IModelComponent { - friend class CSVOutputStreamVisitor; + friend class CSVOutputStreamVisitor; public: - HalocarbonComponent( std::string g ); - virtual ~HalocarbonComponent(); - + HalocarbonComponent(std::string g); + virtual ~HalocarbonComponent(); - // IModelComponent methods - virtual std::string getComponentName() const; + // IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double time); + virtual void reset(double time); - virtual void shutDown(); + virtual void shutDown(); - // IVisitable methods - virtual void accept( AVisitor* visitor ); + // IVisitable methods + virtual void accept(AVisitor *visitor); private: - virtual unitval getData( const std::string& varName, - const double valueIndex ); - - //! Who are we? - std::string myGasName; - - //! Rate coefficient of loss [relates to year?] - double tau; + virtual unitval getData(const std::string &varName, const double valueIndex); - //! Radiative forcing efficiency [W/m^2/pptv] - unitval rho; + //! Who are we? + std::string myGasName; - //! Forcing [W/m^2] - tseries hc_forcing; + // Parameters + double tau; // lifetime in years + unitval rho; // radiative efficiencies W/m2/ppt + unitval delta; // tropospheric adjustments scalar unitless - tseries emissions; //! Time series of emissions, pptv - tseries Ha_ts; //! Time series of (ambient) concentration, pptv - tseries Ha_constrain; //! Concentration constraint, pptv - unitval H0; //! Preindustrial concentration, pptv + //! Forcing [W/m^2] + tseries hc_forcing; + tseries emissions; //! Time series of emissions, pptv + tseries Ha_ts; //! Time series of (ambient) concentration, pptv + tseries Ha_constrain; //! Concentration constraint, pptv + unitval H0; //! Preindustrial concentration, pptv - double molarMass; + double molarMass; - //! logger - Logger logger; + //! logger + Logger logger; - Core *core; - double oldDate; + Core *core; + double oldDate; }; -} +} // namespace Hector #endif // HALOCARBON_COMPONENT_HPP diff --git a/inst/include/hector.hpp b/inst/include/hector.hpp index 1b13321aa..00249fb00 100644 --- a/inst/include/hector.hpp +++ b/inst/include/hector.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -24,9 +24,9 @@ /* Data types and constants */ #include "component_data.hpp" -#include "unitval.hpp" -#include "message_data.hpp" #include "h_exception.hpp" +#include "message_data.hpp" +#include "unitval.hpp" /* Core functions */ #include "core.hpp" @@ -37,5 +37,4 @@ /* Output functions */ #include "csv_outputstream_visitor.hpp" - #endif diff --git a/inst/include/imodel_component.hpp b/inst/include/imodel_component.hpp index 76dfab414..764ecdc53 100644 --- a/inst/include/imodel_component.hpp +++ b/inst/include/imodel_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -14,12 +14,12 @@ * */ -#include "component_names.hpp" #include "component_data.hpp" +#include "component_names.hpp" +#include "h_exception.hpp" #include "ivisitable.hpp" -#include "unitval.hpp" #include "message_data.hpp" -#include "h_exception.hpp" +#include "unitval.hpp" namespace Hector { @@ -33,161 +33,147 @@ class DependencyFinder; */ class IModelComponent : public IVisitable { public: - inline virtual ~IModelComponent(); - - //------------------------------------------------------------------------------ - /*! \brief A name which suitably describes this component. - * - * \return A string name for the model component. - */ - virtual std::string getComponentName() const = 0; - - //------------------------------------------------------------------------------ - /*! \brief Perform and initializations necessary before setting data. - * - * This would most frequently be used to initialize data structures. - */ - virtual void init( Core* core ) = 0; - - //------------------------------------------------------------------------------ - /*! \brief Handles a message to the component. - * - * Components can send messages to each other, typically requesting - * internal data. (E.g., forcing needs to know atmospheric CO2.) - * - * \param message The message (required). - * \param datum The relevant piece of data (optional). - * \param info A message_data struct (optional), giving more information. - * \exception h_exception If message or datum not recognized. - */ - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ) = 0; - - //------------------------------------------------------------------------------ - /*! \brief Sets the variable specified by varName with the given data. - * - * The model component will be responsible for parsing data. Chiefly the - * value_str field should be converted to the appropriate data type. The date - * field may be set if varName is part of a time series otherwise the model - * component will expect the date field to be equal to Core::undefinedIndex(). - * In the case of unitvals the units_str field may also be set. Note that - * even if units_str is not set it may be the case that units are provided - * unparsed in value_str. The utility unitval::parse_untival(string, string, unit_types) - * should be used to ensure proper parsing of units in all cases. - * - * \param varName The name of the variable to set. - * \param data The message_data who's fields will be appropriately set to - * contain all relevant information to parse the variable. - * \exception h_exception If varName was not recognized or could not convert - * value to the appropriate type. - */ - virtual void setData( const std::string& varName, - const message_data& data ) = 0; - - //------------------------------------------------------------------------------ - /*! \brief A notification that all data are set and the component should prepare to run. - * - * Perform error checking on input data and one-time initializations before - * the model starts running. After this, the component should be prepared to - * provide data (e.g. during spinup, even if it's not itself spinning up). - * - * \param core A pointer to the core should this model component need to get - * additional information from it. - * \exception h_exception If there was any inconsistencies with input data. - */ - virtual void prepareToRun() = 0; - - //------------------------------------------------------------------------------ - /*! \brief Run the component up to the given date. - * - * Run the component from the date of which it was last run (which is presumably - * kept track of, if necessary). - * - * \param runToDate The date to run up to. - * \pre runToDate is greater than the last date at which the model component - * was run and is within the given start and end dates given during - * initialization. - * \exception h_exception If an error occurred for any reason while running. - */ - virtual void run( const double runToDate ) = 0; - - //------------------------------------------------------------------------------ - /*! \brief Run the component in spinup mode. - * - * Run the component for a spinup step, signalling whether component is - * successfully spun up. Most components don't need this capability, and simply - * inherit the implementation below. - * - * \param step The spinup step to run to. - * \return A bool indicating whether the component is spun up. - * \exception h_exception If an error occurred for any reason while running. - */ - virtual bool run_spinup( const int step ) { return true; } - - //------------------------------------------------------------------------------ - /*! \brief Reset the component's state to what it was at some previous time. - * - * Roll back all of the component's state variables to their - * values at the input time. Generally this should be an integer - * year boundary, but this is not strictly required. Behavior if - * a noninteger date is input is currently unspecified. - * - * The behavior on reset will be specific to each component. - * Generally, the component will: - * * reset its internal time counter to the input time - * * truncate time series of output values after the input time - * * _not_ truncate time series of input values - * The input time series are not truncated because for runs where - * the inputs (e.g. emissions) for the whole run are read in at - * the beginning, it may not be possible to retrieve those inputs - * once the initial setup is complete. For reset purposes, a - * time series is an "output" if it is calculated in the - * component's run method; otherwise, it's an input. - * - * The method will throw an exception if the component is unable - * to perform the reset. Examples of why this might occur - * include an input date that is still in the future, or a date - * that is before the beginning of the simulation. - * - * \param date Date to which to reset component state - * \exception h_exception If unable to perform the reset. - */ - virtual void reset(double time) = 0; - - //------------------------------------------------------------------------------ - /*! \brief We will no longer attempt to run the model; perform any cleanup. - * - * Note that reporting will be handled by a visitor. - */ - virtual void shutDown() = 0; + inline virtual ~IModelComponent(); + + //------------------------------------------------------------------------------ + /*! \brief A name which suitably describes this component. + * + * \return A string name for the model component. + */ + virtual std::string getComponentName() const = 0; + + //------------------------------------------------------------------------------ + /*! \brief Perform and initializations necessary before setting data. + * + * This would most frequently be used to initialize data structures. + */ + virtual void init(Core *core) = 0; + + //------------------------------------------------------------------------------ + /*! \brief Handles a message to the component. + * + * Components can send messages to each other, typically requesting + * internal data. (E.g., forcing needs to know atmospheric CO2.) + * + * \param message The message (required). + * \param datum The relevant piece of data (optional). + * \param info A message_data struct (optional), giving more information. + */ + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()) = 0; + + //------------------------------------------------------------------------------ + /*! \brief Sets the variable specified by varName with the given data. + * + * The model component will be responsible for parsing data. Chiefly the + * value_str field should be converted to the appropriate data type. The + * date field may be set if varName is part of a time series otherwise the + * model component will expect the date field to be equal to + * Core::undefinedIndex(). In the case of unitvals the units_str field may + * also be set. Note that even if units_str is not set it may be the case + * that units are provided unparsed in value_str. The utility + * unitval::parse_untival(string, string, unit_types) should be used to ensure + * proper parsing of units in all cases. + * + * \param varName The name of the variable to set. + * \param data The message_data who's fields will be appropriately set to + * contain all relevant information to parse the variable. + */ + virtual void setData(const std::string &varName, + const message_data &data) = 0; + + //------------------------------------------------------------------------------ + /*! \brief A notification that all data are set and the component should + * prepare to run. + * + * Perform error checking on input data and one-time initializations before + * the model starts running. After this, the component should be prepared to + * provide data (e.g. during spinup, even if it's not itself spinning up). + */ + virtual void prepareToRun() = 0; + + //------------------------------------------------------------------------------ + /*! \brief Run the component up to the given date. + * + * Run the component from the date of which it was last run (which is + * presumably kept track of, if necessary). + * + * \param runToDate The date to run up to. + * \pre runToDate is greater than the last date at which the model component + * was run and is within the given start and end dates given during + * initialization. + * \exception h_exception If an error occurred for any reason while running. + */ + virtual void run(const double runToDate) = 0; + + //------------------------------------------------------------------------------ + /*! \brief Run the component in spinup mode. + * + * Run the component for a spinup step, signalling whether component is + * successfully spun up. Most components don't need this capability, and + * simply inherit the implementation below. + * + * \param step The spinup step to run to. + * \return A bool indicating whether the component is spun up. + */ + virtual bool run_spinup(const int step) { return true; } + + //------------------------------------------------------------------------------ + /*! \brief Reset the component's state to what it was at some previous time. + * + * Roll back all of the component's state variables to their + * values at the input time. Generally this should be an integer + * year boundary, but this is not strictly required. Behavior if + * a noninteger date is input is currently unspecified. + * + * The behavior on reset will be specific to each component. + * Generally, the component will: + * * reset its internal time counter to the input time + * * truncate time series of output values after the input time + * * _not_ truncate time series of input values + * The input time series are not truncated because for runs where + * the inputs (e.g. emissions) for the whole run are read in at + * the beginning, it may not be possible to retrieve those inputs + * once the initial setup is complete. For reset purposes, a + * time series is an "output" if it is calculated in the + * component's run method; otherwise, it's an input. + * + * The method will throw an exception if the component is unable + * to perform the reset. Examples of why this might occur + * include an input date that is still in the future, or a date + * that is before the beginning of the simulation. + * + * \param time Date to which to reset component state + */ + virtual void reset(double time) = 0; + + //------------------------------------------------------------------------------ + /*! \brief We will no longer attempt to run the model; perform any cleanup. + * + * Note that reporting will be handled by a visitor. + */ + virtual void shutDown() = 0; private: - //------------------------------------------------------------------------------ - /*! \brief Gets the variable specified with by varName with the given value. - * - * The varname string will be exactly the same as it is called in code. A - * model component must add all parsable variable *what*. What to say about - * arrayed inputs? - * - * \param varName The name of the variable to set. - * \param value The string value of the variable to set. Conversion to the - * appropriate type will be made by the IModelComponent subclass - * on a per variable basis. - * \param valueIndex The time series index value to use when setting value. - * If varName is not a time series valueIndex should equal - * Core::undefinedIndex(). - * \exception h_exception If varName was not recognized or could not convert - * value to the appropriate type. - */ - virtual unitval getData( const std::string& varName, - const double date ) = 0; + //------------------------------------------------------------------------------ + /*! \brief Gets the variable specified with by varName with the given value. + * + * The varname string will be exactly the same as it is called in code. A + * model component must add all parsable variable *what*. What to say about + * arrayed inputs? + * + * \param varName The name of the variable to set. + * \param date The time series index value to use when setting value. + * If varName is not a time series valueIndex should equal + * Core::undefinedIndex(). + */ + virtual unitval getData(const std::string &varName, const double date) = 0; }; // Inline methods -IModelComponent::~IModelComponent() { -} +IModelComponent::~IModelComponent() {} -} +} // namespace Hector #endif // IMODEL_COMPONENT_H diff --git a/inst/include/ini.h b/inst/include/ini.h index 18f6850dc..601d7a8fc 100644 --- a/inst/include/ini.h +++ b/inst/include/ini.h @@ -26,10 +26,10 @@ extern "C" { Returns 0 on success, line number of first error on parse error (doesn't stop on first error), or -1 on file open error. */ -int ini_parse(const char* filename, - int (*handler)(void* user, const char* section, - const char* name, const char* value), - void* user); +int ini_parse(const char *filename, + int (*handler)(void *user, const char *section, const char *name, + const char *value), + void *user); /* Nonzero to allow multi-line value parsing, in the style of Python's ConfigParser. If allowed, ini_parse() will call the handler with the same diff --git a/inst/include/ini_to_core_reader.hpp b/inst/include/ini_to_core_reader.hpp index 7620cf2ef..cdd59ddc8 100644 --- a/inst/include/ini_to_core_reader.hpp +++ b/inst/include/ini_to_core_reader.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -24,41 +24,41 @@ class Core; * core for routing to the proper model subcomponent. * * Additional processing is done by this class to allow for reading time series - * data into the core. Two strategies are allow and the core will remain ignorant - * about these: + * data into the core. Two strategies are allow and the core will remain + * ignorant about these: * - The variable name can contain square brackets enclosing an index for * example: variableName[2000] = 5.0 * - The variable value has a special identifier followed by a file name * such as: variableName = csv:input/table.csv see CSVTableReader */ class INIToCoreReader { - public: - INIToCoreReader( Core* core ); - ~INIToCoreReader(); +public: + INIToCoreReader(Core *core); + ~INIToCoreReader(); - void parse( const std::string& filename ); + void parse(const std::string &filename); - private: - //! Weak reference to a Core object that will handle parsed values - Core* core; +private: + //! Weak reference to a Core object that will handle parsed values + Core *core; - //! Path of the INI file - std::string iniFilePath; + //! Path of the INI file + std::string iniFilePath; - //! The exception set by value handler should an exception occur. - //! Note that this would only be valid if valueHandler returned - //! an error code. - h_exception valueHandlerException; + //! The exception set by value handler should an exception occur. + //! Note that this would only be valid if valueHandler returned + //! an error code. + h_exception valueHandlerException; - static int valueHandler( void* user, const char* section, const char* name, - const char* value); + static int valueHandler(void *user, const char *section, const char *name, + const char *value); - typedef std::string::const_iterator StringIter; - static double parseTSeriesIndex( const StringIter startBracket, - const StringIter endBracket, - const StringIter strEnd ); + typedef std::string::const_iterator StringIter; + static double parseTSeriesIndex(const StringIter startBracket, + const StringIter endBracket, + const StringIter strEnd); }; -} +} // namespace Hector #endif // INI_TO_CORE_READER_H diff --git a/inst/include/ivisitable.hpp b/inst/include/ivisitable.hpp index 5544da03a..b2082fc7c 100644 --- a/inst/include/ivisitable.hpp +++ b/inst/include/ivisitable.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -25,20 +25,19 @@ class AVisitor; */ class IVisitable { public: - inline virtual ~IVisitable(); - - /*! \brief Accept a visitor to visitor your class. - * - * This allows a subclass use the double dispatch design pattern to allow - * the visitor to identify which subclass it is visiting. - */ - virtual void accept( AVisitor* visitor ) = 0 ; /* const ? */ + inline virtual ~IVisitable(); + + /*! \brief Accept a visitor to visitor your class. + * + * This allows a subclass use the double dispatch design pattern to allow + * the visitor to identify which subclass it is visiting. + */ + virtual void accept(AVisitor *visitor) = 0; /* const ? */ }; // Inline methods -IVisitable::~IVisitable() { -} +IVisitable::~IVisitable() {} -} +} // namespace Hector #endif // IVISITABLE_H diff --git a/inst/include/logger.hpp b/inst/include/logger.hpp index 2b6399e6c..62a992130 100644 --- a/inst/include/logger.hpp +++ b/inst/include/logger.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -15,7 +15,12 @@ */ #include -#include +// some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: filtering_stream.hpp still generates one warning +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Weverything" +#include +#pragma clang diagnostic pop #include "h_exception.hpp" @@ -33,96 +38,60 @@ namespace Hector { */ class Logger { public: - /*! \brief Enumeration to describe available logging priority levels. - */ - enum LogLevel { - DEBUG, - NOTICE, - WARNING, - SEVERE - }; + /*! \brief Enumeration to describe available logging priority levels. + */ + enum LogLevel { DEBUG, NOTICE, WARNING, SEVERE }; private: - // Make the copy constructs private and undefined to disallow multiple - // instances of the same log file. - Logger( const Logger& ); - Logger& operator=( const Logger& ); + // Make the copy constructs private and undefined to disallow multiple + // instances of the same log file. + Logger(const Logger &); + Logger &operator=(const Logger &); - //! The minimum log level which will be processed. - LogLevel minLogLevel; + //! The minimum log level which will be processed. + LogLevel minLogLevel; - //! Flag to indicate that this logger has been successfully opened. - bool isInitialized; + //! Flag to indicate that this logger has been successfully opened. + bool isInitialized; - //! Flag to indicate that this logger writes into a log file. - bool echoToFile; + //! Flag to indicate that this logger writes into a log file. + bool echoToFile; - //! Flag to indicate that this logger is enabled. - //! If false this logger does not log regardless of log level provided. - bool enabled; + //! Flag to indicate that this logger is enabled. + //! If false this logger does not log regardless of log level provided. + bool enabled; - //! The actual output stream which will handle the logging. - std::ostream loggerStream; + //! The actual output stream which will handle the logging. + boost::iostreams::filtering_ostream loggerStream; - static const std::string& logLevelToStr( const LogLevel logLevel ); + static const std::string &logLevelToStr(const LogLevel logLevel); - static const char* getDateTimeStamp(); + static const char *getDateTimeStamp(); - static void chk_logdir(std::string dir); - - void printLogHeader( const LogLevel logLevel ); - - /*! \brief A customized file stream buffer to enable echoing to a console. - * - * This subclass will override the virtual protected methods necessary for - * output only. - */ - class LoggerStreamBuf : public std::filebuf { - private: - //! A pointer to the streambuf of the console output stream, or null - //! if echoToScreen was set to false during construction. - std::streambuf* consoleBuf; - public: - LoggerStreamBuf( const bool echoToScreen ); - virtual ~LoggerStreamBuf(); - - protected: - // std::streambuf methods - virtual int sync(); - - virtual int overflow( int c = EOF ); - - virtual std::streamsize xsputn( const char* s, std::streamsize n ); - }; + void printLogHeader(const LogLevel logLevel); public: - Logger(); - ~Logger(); + Logger(); + ~Logger(); - void open( const std::string& logName, bool echoToScreen, - bool echoToFile, LogLevel minLogLevel ); + void open(const std::string &logName, bool echoToScreen, bool echoToFile, + LogLevel minLogLevel); - bool shouldWrite( const LogLevel writeLevel ) const; + bool shouldWrite(const LogLevel writeLevel) const; - std::ostream& write( const LogLevel writeLevel, - const std::string& functionInfo ); + std::ostream &write(const LogLevel writeLevel, + const std::string &functionInfo); - void close(); + void close(); - LogLevel getMinLogLevel() const { - return minLogLevel; - } + LogLevel getMinLogLevel() const { return minLogLevel; } - bool getEchoToFile() const { - return echoToFile; - } + bool getEchoToFile() const { return echoToFile; } - bool isEnabled() const { - return enabled; - } + bool isEnabled() const { return enabled; } }; -} +} // namespace Hector /*! * \brief Some systems define the function name macro differently, so double @@ -143,7 +112,8 @@ class Logger { * \param log An instance of the logger to log to. * \param level The logging priority to log at. */ -#define H_LOG(log, level) \ -if( log.shouldWrite( level ) ) log.write( level, __func__ ) +#define H_LOG(log, level) \ + if (log.shouldWrite(level)) \ + log.write(level, __func__) #endif diff --git a/inst/include/message_data.hpp b/inst/include/message_data.hpp index a2e0baca0..33f4d0177 100644 --- a/inst/include/message_data.hpp +++ b/inst/include/message_data.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -7,8 +7,8 @@ #ifndef MESSAGE_DATA_H #define MESSAGE_DATA_H /* - * message_data.h - A simple struct to hold data to be passed around with messages. - * hector + * message_data.h - A simple struct to hold data to be passed around with + * messages. hector * * Created by Pralit on 7/12/13. * @@ -27,70 +27,71 @@ namespace Hector { * messages in hector. */ struct message_data { - // Some constructors that can help with syntax. - message_data(): date( Core::undefinedIndex() ), isVal(false) - { + // Some constructors that can help with syntax. + message_data() : date(Core::undefinedIndex()), isVal(false) {} + + // Create a message data to pass a date. + message_data(const double d) : date(d), isVal(false) {} + + // Create a message data to pass a string. + message_data(const std::string &value) + : date(Core::undefinedIndex()), value_str(value), isVal(false) {} + + // Create a message data to pass a unitval. + message_data(const unitval &value) + : date(Core::undefinedIndex()), value_unitval(value), isVal(true) {} + + // create a message data to pass unitval and date + message_data(double d, const unitval &val) + : date(d), value_unitval(val), isVal(true) {} + + //------------------------------------------------------------------------------ + /*! \brief retrieve message data as a unitval, even if it contains a string. + * + * \param expectedUnits The expected units that the unitval should be in. + * \param strict Flag indicating if units have to be given (default: false). + * \exception h_exception An exception may be raised for the following + * reasons: + * - The unitval units do not match the expected units. + * - The value string could not be parsed. + */ + unitval getUnitval(const unit_types &expectedUnits, + const bool strict = false) const { + if (isVal) { + if (strict) { + H_ASSERT( + value_unitval.units() == expectedUnits, + "Units: " + value_unitval.unitsName() + + " do not match expected: " + unitval::unitsName(expectedUnits)); + } + unitval result = + value_unitval; // copy to not change value_unitval of message + result.expecting_unit(expectedUnits); + return result; + } else { + if (strict && units_str.empty() && expectedUnits != U_UNDEFINED) { + H_THROW("Units: '' do not match expected: " + + unitval::unitsName(expectedUnits)); + } + return unitval::parse_unitval(value_str, units_str, expectedUnits); } + } + //! (optional) a date for which this value is for. + double date; - // Create a message data to pass a date. - message_data( const double d ): date( d ), isVal(false) - { - } - - // Create a message data to pass a string. - message_data( const std::string& value ): date( Core::undefinedIndex() ), value_str( value ), isVal(false) - { - } - - // Create a message data to pass a unitval. - message_data( const unitval& value ): date( Core::undefinedIndex() ), value_unitval( value ), isVal(true) - { - } - - // create a message data to pass unitval and date - message_data(double d, const unitval &val) : date(d), value_unitval(val), - isVal(true) {} - - //------------------------------------------------------------------------------ - /*! \brief retrieve message data as a unitval, even if it contains a string. - * - * \param expectedUnits The expected units that the unitval should be in. - * \param strict Flag indicating if units have to be given (default: false). - * \exception h_exception An exception may be raised for the following reasons: - * - The unitval units do not match the expected units. - * - The value string could not be parsed. - */ - unitval getUnitval(const unit_types& expectedUnits, const bool strict = false) const { - if(isVal) { - if (strict) { - H_ASSERT( value_unitval.units() == expectedUnits, "Units: "+value_unitval.unitsName()+" do not match expected: "+unitval::unitsName( expectedUnits ) ); - } - unitval result = value_unitval; // copy to not change value_unitval of message - result.expecting_unit(expectedUnits); - return result; - } else { - if (strict && units_str.empty() && expectedUnits != U_UNDEFINED) { - H_THROW( "Units: '' do not match expected: "+unitval::unitsName( expectedUnits ) ); - } - return unitval::parse_unitval(value_str, units_str, expectedUnits); - } - } - //! (optional) a date for which this value is for. - double date; - - //! The message data as a string (if applicable). - std::string value_str; + //! The message data as a string (if applicable). + std::string value_str; - //! The message data as a unitval (if applicable). - unitval value_unitval; + //! The message data as a unitval (if applicable). + unitval value_unitval; - //! A string characterizing the units of value (if applicable). - std::string units_str; + //! A string characterizing the units of value (if applicable). + std::string units_str; - //! Flag indicating whether the unitval is set - bool isVal; + //! Flag indicating whether the unitval is set + bool isVal; }; -} +} // namespace Hector #endif diff --git a/inst/include/n2o_component.hpp b/inst/include/n2o_component.hpp index 1d0137a97..f20a67a7d 100644 --- a/inst/include/n2o_component.hpp +++ b/inst/include/n2o_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -29,52 +29,54 @@ namespace Hector { class N2OComponent : public IModelComponent { public: - N2OComponent(); - ~N2OComponent(); + N2OComponent(); + ~N2OComponent(); - //! IModelComponent methods - virtual std::string getComponentName() const; + //! IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double time); + virtual void reset(double time); - virtual void shutDown(); + virtual void shutDown(); - //! IVisitable methods - virtual void accept( AVisitor* visitor ); + //! IVisitable methods + virtual void accept(AVisitor *visitor); private: - virtual unitval getData( const std::string& varName, - const double date ); - - unitval N0; //! preindustrial N2O, ppbv N2O - unitval UC_N2O; //! conversion from emissions to concentration - tseries N2O_emissions; //! annual anthropogenic emissions time series, TgN/yr - tseries N2O_natural_emissions; //! annual natural emissions time series, TgN/yr - tseries N2O; //! annual N2O concentrations, ppbv N2O - tseries N2O_constrain; //! N2O concentration constraint time series, ppbv N2O - tseries TAU_N2O; //! N2O decay time constant (varies as a function of concentration) - unitval TN2O0; //! inital N2O lifetime, years - - //! logger - Logger logger; - - Core *core; - double oldDate; + virtual unitval getData(const std::string &varName, const double date); + + unitval N0; //! preindustrial N2O, ppbv N2O + unitval UC_N2O; //! conversion from emissions to concentration + tseries + N2O_emissions; //! annual anthropogenic emissions time series, TgN/yr + tseries + N2O_natural_emissions; //! annual natural emissions time series, TgN/yr + tseries N2O; //! annual N2O concentrations, ppbv N2O + tseries + N2O_constrain; //! N2O concentration constraint time series, ppbv N2O + tseries TAU_N2O; //! N2O decay time constant (varies as a function of + //! concentration) + unitval TN2O0; //! inital N2O lifetime, years + + //! logger + Logger logger; + + Core *core; + double oldDate; }; -} +} // namespace Hector #endif // N2O_COMPONENT_H diff --git a/inst/include/nh3_component.hpp b/inst/include/nh3_component.hpp new file mode 100644 index 000000000..e104cf5c6 --- /dev/null +++ b/inst/include/nh3_component.hpp @@ -0,0 +1,72 @@ +/* Hector -- A Simple Climate Model + Copyright (C) 2022 Battelle Memorial Institute + + Please see the accompanying file LICENSE.md for additional licensing + information. +*/ +#ifndef NH3_COMPONENT_H +#define NH3_COMPONENT_H +/* + * nh3_component.hpp + * hector + * + * Created by Kalyn D 2021. + * + */ + +#include "imodel_component.hpp" +#include "logger.hpp" +#include "tseries.hpp" +#include "unitval.hpp" + +namespace Hector { + +//------------------------------------------------------------------------------ +/*! \brief NH3 model component. + * + * This doesn't do much yet. + */ +class NH3Component : public IModelComponent { + +public: + NH3Component(); + ~NH3Component(); + + // IModelComponent methods + virtual std::string getComponentName() const; + + virtual void init(Core *core); + + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); + + virtual void setData(const std::string &varName, const message_data &data); + + virtual void prepareToRun(); + + virtual void run(const double runToDate); + + virtual void reset(double time); + + virtual void shutDown(); + + // IVisitable methods + virtual void accept(AVisitor *visitor); + +private: + virtual unitval getData(const std::string &varName, const double date); + + //! Emissions time series + tseries NH3_emissions; + + //! logger + Logger logger; + + Core *core; + double oldDate; +}; + +} // namespace Hector + +#endif // NH3_COMPONENT_H diff --git a/inst/include/o3_component.hpp b/inst/include/o3_component.hpp index 59fcc76a6..c047a28e7 100644 --- a/inst/include/o3_component.hpp +++ b/inst/include/o3_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -28,51 +28,48 @@ namespace Hector { class OzoneComponent : public IModelComponent { public: - OzoneComponent(); - ~OzoneComponent(); + OzoneComponent(); + ~OzoneComponent(); - // IModelComponent methods - virtual std::string getComponentName() const; + // IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double time); + virtual void reset(double time); - virtual void shutDown(); - - // IVisitable methods - virtual void accept( AVisitor* visitor ); + virtual void shutDown(); + // IVisitable methods + virtual void accept(AVisitor *visitor); private: - virtual unitval getData( const std::string& varName, - const double date ); + virtual unitval getData(const std::string &varName, const double date); - //! Current ozone concentration, relative to preindustrial, Dobson units - unitval PO3; - tseries O3; - tseries CO_emissions; - tseries NMVOC_emissions; - tseries NOX_emissions; + //! Current ozone concentration, relative to preindustrial, Dobson units + unitval PO3; + tseries O3; + tseries CO_emissions; + tseries NMVOC_emissions; + tseries NOX_emissions; - //! logger - Logger logger; + //! logger + Logger logger; - Core *core; - double oldDate; + Core *core; + double oldDate; }; -} +} // namespace Hector #endif // OZONE_COMPONENT_H diff --git a/inst/include/oc_component.hpp b/inst/include/oc_component.hpp index 836d32d93..787848dbc 100644 --- a/inst/include/oc_component.hpp +++ b/inst/include/oc_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -29,46 +29,44 @@ namespace Hector { class OrganicCarbonComponent : public IModelComponent { public: - OrganicCarbonComponent(); - ~OrganicCarbonComponent(); + OrganicCarbonComponent(); + ~OrganicCarbonComponent(); - // IModelComponent methods - virtual std::string getComponentName() const; + // IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double time); + virtual void reset(double time); - virtual void shutDown(); + virtual void shutDown(); - // IVisitable methods - virtual void accept( AVisitor* visitor ); + // IVisitable methods + virtual void accept(AVisitor *visitor); private: - virtual unitval getData( const std::string& varName, - const double date ); + virtual unitval getData(const std::string &varName, const double date); - //! Emissions time series - tseries OC_emissions; + //! Emissions time series + tseries OC_emissions; - //! logger - Logger logger; + //! logger + Logger logger; - Core *core; - double oldDate; + Core *core; + double oldDate; }; -} +} // namespace Hector #endif // ORGANIC_CARBON_COMPONENT_H diff --git a/inst/include/ocean_component.hpp b/inst/include/ocean_component.hpp index 53540ff25..42f389e63 100644 --- a/inst/include/ocean_component.hpp +++ b/inst/include/ocean_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -14,20 +14,21 @@ * */ +#include "carbon-cycle-model.hpp" #include "logger.hpp" +#include "ocean_csys.hpp" +#include "oceanbox.hpp" #include "tseries.hpp" #include "tvector.hpp" #include "unitval.hpp" -#include "carbon-cycle-model.hpp" -#include "ocean_csys.hpp" -#include "oceanbox.hpp" -#define OCEAN_MAX_TIMESTEP 1.0 //!< max/default timestep (yr) -#define OCEAN_MIN_TIMESTEP 0.3 //!< minimum timestep (yr) -#define OCEAN_TSR_FACTOR 0.5 //!< timestep reduction factor when necessary -#define OCEAN_TSR_TIMEOUT 20 //!< years we lock into reduced timestep -#define OCEAN_TSR_TRIGGER1 0.1 //!< trigger1 to reduce timestep: - //!< absolute diff between successive annual fluxes (Pg C) +#define OCEAN_MAX_TIMESTEP 1.0 //!< max/default timestep (yr) +#define OCEAN_MIN_TIMESTEP 0.3 //!< minimum timestep (yr) +#define OCEAN_TSR_FACTOR 0.5 //!< timestep reduction factor when necessary +#define OCEAN_TSR_TIMEOUT 20 //!< years we lock into reduced timestep +#define OCEAN_TSR_TRIGGER1 \ + 0.1 //!< trigger1 to reduce timestep: + //!< absolute diff between successive annual fluxes (Pg C) namespace Hector { @@ -38,149 +39,159 @@ namespace Hector { * between layers and latitudinal regions, etc. */ class OceanComponent : public CarbonCycleModel { + friend class CSVFluxPoolVisitor; public: - OceanComponent(); - ~OceanComponent(); - - //! IModelComponent methods - virtual std::string getComponentName() const; + OceanComponent(); + ~OceanComponent(); - virtual void init( Core* core ); + //! IModelComponent methods + virtual std::string getComponentName() const; - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual void init(Core *core); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void prepareToRun(); + virtual void setData(const std::string &varName, const message_data &data); - virtual void run( const double runToDate ); + virtual void prepareToRun(); - virtual bool run_spinup( const int step ); + virtual void run(const double runToDate); - virtual void reset(double time); + virtual bool run_spinup(const int step); - virtual void shutDown(); + virtual void reset(double time); - //! IVisitable methods - virtual void accept( AVisitor* visitor ); + virtual void shutDown(); - // Carbon cycle model interface - void getCValues( double t, double c[]); - int calcderivs( double t, const double c[], double dcdt[] ) const; - void slowparameval( double t, const double c[] ); - void stashCValues( double t, const double c[] ); - void record_state(double t); + //! IVisitable methods + virtual void accept(AVisitor *visitor); - void run1( const double runToDate ); + // Carbon cycle model interface + void getCValues(double t, double c[]); + int calcderivs(double t, const double c[], double dcdt[]) const; + void slowparameval(double t, const double c[]); + void stashCValues(double t, const double c[]); + void record_state(double t); + void set_atmosphere_sources(fluxpool atm) { atmosphere_cpool = atm; }; + fluxpool get_oaflux() const; + fluxpool get_aoflux() const; private: - virtual unitval getData( const std::string& varName, - const double date ); - - /***************************************************************** - * State variables for the component - * All of these will need to be recorded at the end of a timestep, - * except for the spinup flag. - *****************************************************************/ - // Ocean boxes - oceanbox surfaceHL; //!< surface high latitude box 100m - oceanbox surfaceLL; //!< surface low latitude box 100m - oceanbox inter; //!< intermediate box 1000m - oceanbox deep; //!< deep box 3000m - - // Atmosphere conditions - unitval Tgav; //!< Global temperature anomaly, degC - unitval Ca; //!< Atmospheric CO2, ppm - - // Atmosphere-ocean flux - unitval annualflux_sum, annualflux_sumHL, annualflux_sumLL; //!< Running annual totals atm-ocean flux, for output reporting - unitval lastflux_annualized; //!< Last atm-ocean flux when solver ordered us to 'stash' C values - - // Spinup mode flag - bool in_spinup; //!< Are we currently in spinup? - - - /***************************************************************** - * Model parameters - *****************************************************************/ - // Ocean circulation parameters - unitval tt; //!< m3/s thermohaline overturning - unitval tu; //!< m3/s high latitude overturning - unitval twi; //!< m3/s warm-intermediate exchange - unitval tid; //!< m3/s intermediate-deep exchange - - - /***************************************************************** - * Input data - *****************************************************************/ - bool spinup_chem; //!< run chemistry during spinup? - tseries oceanflux_constrain; //!< atmosphere->ocean C flux data to constrain to - - - /***************************************************************** - * Private helper functions - *****************************************************************/ - unitval totalcpool() const; - unitval annual_totalcflux( const double date, const unitval& Ca, const double cpoolscale=1.0 ) const; - - - /***************************************************************** - * Adaptive timestep control - * max_timestep and reduced_timestep_timeout will need to be recorded. - * The timesteps counter is set to zero at the start of each year. - *****************************************************************/ - double max_timestep; //!< Current maximum timestep allowed. This can change - int reduced_timestep_timeout; //!< Timer that keeps track of how long we've had a reduced timestep - int timesteps; //!< Number of timesteps taken in current year - - /***************************************************************** - * Recording variables - * These are used to record the component state over time so that - * we can reset to a previous time. - *****************************************************************/ - // Ocean boxes over time - tvector surfaceHL_tv; - tvector surfaceLL_tv; - tvector inter_tv; - tvector deep_tv; - - // Ocean conditions over time - tseries Tgav_ts; - tseries annualflux_sum_ts; - tseries annualflux_sumHL_ts; - tseries annualflux_sumLL_ts; - tseries lastflux_annualized_ts; - tseries Ca_ts; - tseries Ca_HL_ts; - tseries Ca_LL_ts; - tseries C_IO_ts; - tseries C_DO_ts; - tseries PH_HL_ts; - tseries PH_LL_ts; - tseries pco2_HL_ts; - tseries pco2_LL_ts; - tseries dic_HL_ts; - tseries dic_LL_ts; - tseries temp_HL_ts; - tseries temp_LL_ts; - tseries co3_HL_ts; - tseries co3_LL_ts; - - - - - // timestep control - tseries max_timestep_ts; - tseries reduced_timestep_timeout_ts; - - //! logger - Logger logger; + virtual unitval getData(const std::string &varName, const double date); + + // Define high and low latitude + // The cold high-latitude surface box makes up 15% of the total ocean surface + // area and has latitude >55; the warm low-latitude surface box makes up the + // rest. + const double part_high = 0.15; + const double part_low = 1 - part_high; + + /***************************************************************** + * State variables for the component + * All of these will need to be recorded at the end of a timestep, + * except for the spinup flag. + *****************************************************************/ + // Ocean boxes + oceanbox surfaceHL; //!< surface high latitude box 100m + oceanbox surfaceLL; //!< surface low latitude box 100m + oceanbox inter; //!< intermediate box 1000m + oceanbox deep; //!< deep box 3000m + + // Atmosphere conditions + unitval SST; //!< Ocean surface temperature anomaly, degC + unitval CO2_conc; //!< Atmospheric CO2, ppm + fluxpool atmosphere_cpool; + + // Atmosphere-ocean flux + unitval annualflux_sum, annualflux_sumHL, + annualflux_sumLL; //!< Running annual totals atm-ocean flux, for output + //!< reporting + unitval lastflux_annualized; //!< Last atm-ocean flux when solver ordered us + //!< to 'stash' C values + + // Spinup mode flag + bool in_spinup; //!< Are we currently in spinup? + + /***************************************************************** + * Model parameters + *****************************************************************/ + // Ocean circulation parameters + unitval tt; //!< m3/s thermohaline overturning + unitval tu; //!< m3/s high latitude overturning + unitval twi; //!< m3/s warm-intermediate exchange + unitval tid; //!< m3/s intermediate-deep exchange + + /***************************************************************** + * Input data + *****************************************************************/ + bool spinup_chem; //!< run chemistry during spinup? + + /***************************************************************** + * Private helper functions + *****************************************************************/ + fluxpool totalcpool() const; + unitval annual_totalcflux(const double date, const unitval &CO2_conc, + const double cpoolscale = 1.0) const; + + /***************************************************************** + * Adaptive timestep control + * max_timestep and reduced_timestep_timeout will need to be recorded. + * The timesteps counter is set to zero at the start of each year. + *****************************************************************/ + double max_timestep; //!< Current maximum timestep allowed. This can change + int reduced_timestep_timeout; //!< Timer that keeps track of how long we've + //!< had a reduced timestep + int timesteps; //!< Number of timesteps taken in current year + + /***************************************************************** + * Recording variables + * These are used to record the component state over time so that + * we can reset to a previous time. + *****************************************************************/ + // Ocean initial state + unitval preind_C_surface; //!< Carbon in the preindustrial surface pool + unitval + preind_C_ID; //!< Carbon in the preindustrial intermediate and deep pool + + // Ocean boxes over time + tvector surfaceHL_tv; + tvector surfaceLL_tv; + tvector inter_tv; + tvector deep_tv; + + // Ocean conditions over time + tseries SST_ts; + tseries annualflux_sum_ts; + tseries annualflux_sumHL_ts; + tseries annualflux_sumLL_ts; + tseries lastflux_annualized_ts; + tseries Ca_ts; + tseries Ca_HL_ts; + tseries Ca_LL_ts; + tseries C_IO_ts; + tseries C_DO_ts; + tseries PH_HL_ts; + tseries PH_LL_ts; + tseries pco2_HL_ts; + tseries pco2_LL_ts; + tseries dic_HL_ts; + tseries dic_LL_ts; + tseries temp_HL_ts; + tseries temp_LL_ts; + tseries co3_HL_ts; + tseries co3_LL_ts; + + // timestep control + tseries max_timestep_ts; + tseries reduced_timestep_timeout_ts; + + //! logger + Logger logger; }; -} +} // namespace Hector #endif // OCEAN_COMPONENT_H diff --git a/inst/include/ocean_csys.hpp b/inst/include/ocean_csys.hpp index 902e73dca..3f0b8e934 100644 --- a/inst/include/ocean_csys.hpp +++ b/inst/include/ocean_csys.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -13,79 +13,81 @@ * */ -#include #include +#include #include "unitval.hpp" namespace Hector { -class oceancsys -{ - /*! /brief Ocean Carbon Chemistry - * - * Implements ocean carbon chemistry in surface boxes. - * Based on the book by Zeebe and Wolf-Gladrow (2001) CO2 in seawater: equilibrium, kintetics, isotopes. 346 p Amsterdam: Elsevier - * http://www.soest.hawaii.edu/oceanography/faculty/zeebe_files/CO2_System_in_Seawater/csys.html - * Inputs: ALK, DIC, Temp - * Outputs: pH, Ca/Ar saturations, pCO2 (ocean), surface flux of carbon - */ +class oceancsys { + /*! /brief Ocean Carbon Chemistry + * + * Implements ocean carbon chemistry in surface boxes. + * Based on the book by Zeebe and Wolf-Gladrow (2001) CO2 in seawater: + * equilibrium, kintetics, isotopes. 346 p Amsterdam: Elsevier + * http://www.soest.hawaii.edu/oceanography/faculty/zeebe_files/CO2_System_in_Seawater/csys.html + * Inputs: ALK, DIC, Temp + * Outputs: pH, Ca/Ar saturations, pCO2 (ocean), surface flux of carbon + */ public: - oceancsys(); - - //ocean component will have to provide these values - double S; // m_a; - + double calc_monthly_surface_flux(const unitval &CO2_conc, + const double cpoolscale = 1.0) const; + + unitval + K0; ///< solubility of CO2 calculated from Weiss 1974 (mol * L-1 * atm-1) + unitval Tr; ///< gas transfer coefficient (gC m-2 month-1 uatm-1) + unitval Kh; ///< solubility of CO2 calculated from Weiss 1974 (mol*kg-1*atm-1) + unitval Kw; ///< equilirbium relationship of H+ and OH- (mol kg-1) + unitval K1; ///< equilibrium relationship of CO2 in seawater (mol kg-1) + unitval K2; ///< equilibrium relationship of CO2 in seawater (mol kg-1) + unitval Kb; ///< equilibrium relationship of boron in seawater (mol kg-1) + unitval Sc; ///< Schmidt Number from Wanninkhof 1992 (unitless) + unitval + Kspa; ///< equilibrium relationship of aragonite in seawater (mol kg-1) + unitval Kspc; ///< equilibrium relationship of calcite in seawater (mol kg-1) + + double alk; ///< alkilinity (umol/kg) + + // logger + Logger *logger; + + // persistent workspace + int ncoeffs; + std::vector m_a; }; -} +} // namespace Hector #endif - diff --git a/inst/include/oceanbox.hpp b/inst/include/oceanbox.hpp index 2cb78e9e3..c4bc38542 100644 --- a/inst/include/oceanbox.hpp +++ b/inst/include/oceanbox.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -15,92 +15,97 @@ * */ -#include -#include -#include #include "math.h" -#include #include +#include +#include +#include +#include +#include "fluxpool.hpp" #include "logger.hpp" -#include "unitval.hpp" #include "ocean_csys.hpp" +#include "unitval.hpp" -#define MEAN_GLOBAL_TEMP 15 +// Mean absolute global tos temperature, preindustrial (deg C), this is used by +// the ocean component which, requires absolute temperature to calculate ocean +// chemistry, the CMIP6 multi model mean from 1850 - 1860. See Leeya +// Pressburger, & Kalyn R. Dorheim. (2022). JGCRI/hector_cmip6data: v1.0 (v1.0). +// Zenodo. https://doi.org/10.5281/zenodo.7304553 +#define MEAN_TOS_TEMP 18 namespace Hector { class oceanbox { - /*! /brief An ocean box - * - * Implements an ocean box, which can have arbitrary connections to - * other boxes, may (or not) exchange carbon and heat with the atmosphere, - * and may (or not) have active chemistry. - */ + /*! /brief An ocean box + * + * Implements an ocean box, which can have arbitrary connections to + * other boxes, may (or not) exchange carbon and heat with the atmosphere, + * and may (or not) have active chemistry. + */ private: - unitval carbon; - unitval CarbonToAdd; - std::vector connection_list; // connection_k; // carbonHistory; // carbonLossHistory; // connection_window; // v, int lookback ) const; - - unitval compute_connection_flux( int i, double yf ) const; - - std::string Name; - - void sens_parameters(); - - unitval Ca; // connection_list; ///< a vector of ocean box pointers + std::vector connection_k; ///< a vector of ocean k values (fraction) + std::vector + connection_window; ///< a vector of connection windows to average over + + std::string Name; + + unitval CO2_conc; ///< Atmospheric [CO2], ppm + unitval Tbox; ///< box absolute temperature, degC + unitval pco2_lastyear; // + unitval dic_lastyear; // + unitval compute_tabsC(const unitval SST) const; + fluxpool ao_flux; //!< atmosphere -> ocean flux + fluxpool oa_flux; //!< ocean -> atmosphere flux public: - oceanbox (); // constructor - - std::map annual_box_fluxes; // + annual_box_fluxes; ///< Map of our fluxes to other boxes + + void initbox(double C, std::string name = ""); + void make_connection(oceanbox *ob, const double k, const int window); + void compute_fluxes(const unitval current_Ca, const fluxpool atmosphere_cpool, + const double yf, const bool do_circ = true); + void log_state(); + void update_state(); + void new_year(const unitval SST); + void separate_surface_fluxes(fluxpool atmosphere_pool); + + void set_carbon(const unitval C); + fluxpool get_carbon() const { return carbon; }; + fluxpool get_oa_flux() const { return oa_flux; }; + fluxpool get_ao_flux() const { return ao_flux; }; + + void add_carbon(fluxpool C); + + void start_tracking(); + + // Functions to get internal box data + unitval get_Tbox() const { return Tbox; }; + unitval calc_revelle(); + unitval deltaT; ///< difference between box temperature and global temperature + unitval preindustrial_flux; + bool surfacebox; + + // Ocean box chemistry + oceancsys mychemistry; ///< box chemistry + bool active_chemistry; ///< box has active chemistry model? + void chem_equilibrate(const unitval current_Ca); ///< equilibrate chemistry + ///< model to a given flux + double fmin(double alk, void *params); + + unitval atmosphere_flux; //!< positive is atmosphere -> ocean flux, negative + //!< ocean -> atmosphere + + // logger + Logger *logger; }; -} +} // namespace Hector #endif diff --git a/inst/include/oh_component.hpp b/inst/include/oh_component.hpp index ec533c0b4..59812d848 100644 --- a/inst/include/oh_component.hpp +++ b/inst/include/oh_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -30,57 +30,54 @@ namespace Hector { class OHComponent : public IModelComponent { public: - OHComponent(); - ~OHComponent(); + OHComponent(); + ~OHComponent(); - // IModelComponent methods - virtual std::string getComponentName() const; + // IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double date); + virtual void reset(double date); - virtual void shutDown(); + virtual void shutDown(); - // IVisitable methods - virtual void accept( AVisitor* visitor ); + // IVisitable methods + virtual void accept(AVisitor *visitor); +private: + virtual unitval getData(const std::string &varName, const double date); + //! emissions time series + tseries CO_emissions; + tseries NOX_emissions; + tseries NMVOC_emissions; + tseries TAU_OH; - private: - virtual unitval getData( const std::string& varName, - const double date ); - //! emissions time series - tseries CO_emissions; - tseries NOX_emissions; - tseries NMVOC_emissions; - tseries TAU_OH; + unitval M0; // initial CH4 concentration + unitval TOH0; // preindustrial OH lifetime - unitval M0; //initial CH4 concentration - unitval TOH0; // preindustrial OH lifetime + double CCO; // coefficent for CO + double CNMVOC; // coefficent for NMVOC + double CNOX; // coefficent for NOX + double CCH4; // coefficent for CH4 - double CCO; // coefficent for CO - double CNMVOC; // coefficent for NMVOC - double CNOX; // coefficent for NOX - double CCH4; // coefficent for CH4 + // logger + Logger logger; - // logger - Logger logger; - - Core *core; - double oldDate; + Core *core; + double oldDate; }; -} +} // namespace Hector #endif // OH_COMPONENT_H diff --git a/inst/include/simpleNbox.hpp b/inst/include/simpleNbox.hpp index b4156ff0e..84ee480e4 100644 --- a/inst/include/simpleNbox.hpp +++ b/inst/include/simpleNbox.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -13,273 +13,385 @@ * */ -#include "temperature_component.hpp" +#include "carbon-cycle-model.hpp" +#include "fluxpool.hpp" #include "ocean_component.hpp" +#include "temperature_component.hpp" #include "tseries.hpp" #include "unitval.hpp" -#include "carbon-cycle-model.hpp" + +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Weverything" +#include +#pragma clang diagnostic pop #define SNBOX_ATMOS 0 #define SNBOX_VEG 1 #define SNBOX_DET 2 #define SNBOX_SOIL 3 -#define SNBOX_OCEAN 4 -#define SNBOX_EARTH 5 -#define MB_EPSILON 0.001 //!< allowed tolerance for mass-balance checks, Pg C -#define SNBOX_PARSECHAR "." //!< input separator between and -#define SNBOX_DEFAULT_BIOME "global" //!< value if no biome supplied +#define SNBOX_PERMAFROST 4 +#define SNBOX_THAWEDP 5 +#define SNBOX_OCEAN 6 +#define SNBOX_EARTH 7 + +#define MB_EPSILON 0.001 //!< allowed tolerance for mass-balance checks, Pg C +#define SNBOX_PARSECHAR "." //!< input separator between and +#define SNBOX_DEFAULT_BIOME "global" //!< value if no biome supplied namespace Hector { /*! \brief The simple global carbon model, not including the ocean * - * SimpleNbox tracks atmosphere (1 pool), land (3 pools), ocean (1 pool from its p.o.v.), - * and earth (1 pool). The ocean component handles ocean processes; SimpleNbox just - * tracks the total ocean C. + * SimpleNbox tracks atmosphere (1 pool), land (3 pools), ocean (1 pool from + * its p.o.v.), and earth (1 pool). The ocean component handles ocean processes; + * SimpleNbox just tracks the total ocean C. */ class SimpleNbox : public CarbonCycleModel { - friend class CSVOutputVisitor; - friend class CSVOutputStreamVisitor; + friend class CSVOutputVisitor; + friend class CSVOutputStreamVisitor; + friend class CSVFluxPoolVisitor; public: - SimpleNbox(); - ~SimpleNbox() {} + SimpleNbox(); + ~SimpleNbox() {} - // overrides for IModelComponent methods - std::string getComponentName() const { return std::string( SIMPLENBOX_COMPONENT_NAME ); } - std::vector getBiomeList() const { return(biome_list); } + // overrides for IModelComponent methods + std::string getComponentName() const { + return std::string(SIMPLENBOX_COMPONENT_NAME); + } + std::vector getBiomeList() const { return (biome_list); } - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual bool run_spinup( const int step ); + virtual bool run_spinup(const int step); - virtual void reset(double date); + virtual void reset(double date); - virtual void shutDown(); + virtual void shutDown(); - // IVisitable methods - virtual void accept( AVisitor* visitor ); + // IVisitable methods + virtual void accept(AVisitor *visitor); - // Carbon cycle model interface - void getCValues( double t, double c[]); - int calcderivs( double t, const double c[], double dcdt[] ) const; - void slowparameval( double t, const double c[] ); - void stashCValues( double t, const double c[] ); - void record_state(double t); //!< record the state variables at the end of the time step + // Carbon cycle model interface + void getCValues(double t, double c[]); + int calcderivs(double t, const double c[], double dcdt[]) const; + void slowparameval(double t, const double c[]); + void stashCValues(double t, const double c[]); + void record_state( + double t); //!< record the state variables at the end of the time step - void createBiome(const std::string& biome); - void deleteBiome(const std::string& biome); - void renameBiome(const std::string& oldname, const std::string& newname); + void createBiome(const std::string &biome); + void deleteBiome(const std::string &biome); + void renameBiome(const std::string &oldname, const std::string &newname); private: - virtual unitval getData( const std::string& varName, - const double date ); - - // typedefs for two map types, to make things easier - // TODO: these should probably be defined in h_util.hpp or someplace similar? - typedef std::map unitval_stringmap; - typedef std::map double_stringmap; - - /***************************************************************** - * Component state - * All of this information will be saved at the end of each time - * step so that we can reset to any arbitrary past time. - *****************************************************************/ - - // List of biomes - std::vector biome_list; - - // Carbon pools -- global - unitval earth_c; //!< earth pool, Pg C; for mass-balance - unitval atmos_c; //!< atmosphere pool, Pg C - unitval Ca; //!< current [CO2], ppmv - - // Carbon pools -- biome-specific - unitval_stringmap veg_c; //!< vegetation pools, Pg C - unitval_stringmap detritus_c; //!< detritus pools, Pg C - unitval_stringmap soil_c; //!< soil pool, Pg C - - unitval residual; //!< residual (when constraining Ca) flux, Pg C - - double_stringmap tempfertd, tempferts; //!< temperature effect on respiration (unitless) - - /***************************************************************** - * Records of component state - * These vectors record the component state over time. When we do - * a reset, we will retrieve the state at the reset time from these - * arrays. - *****************************************************************/ - tseries earth_c_ts; //!< Time series of earth carbon pool - tseries atmos_c_ts; //!< Time series of atmosphere carbon pool - tseries Ca_ts; //!< Time series of atmosphere CO2 concentration - - tvector veg_c_tv; //!< Time series of biome-specific vegetation carbon pools - tvector detritus_c_tv; //!< Time series of biome-specific detritus carbon pools - tvector soil_c_tv; //!< Time series of biome-specific soil carbon pools - - tseries residual_ts; //!< Time series of residual flux values - - tvector tempfertd_tv, tempferts_tv; //!< Time series of temperature effect on respiration - - - /***************************************************************** - * Derived quantities - * Unlike state varaibles, these can be calculated from other - * information; therefore, they need not be stored over time, but - * they do need to be recalculated whenever we reset. - *****************************************************************/ - - double_stringmap co2fert; //!< CO2 fertilization effect (unitless) - tseries Tgav_record; //!< Record of global temperature values, for computing soil RH - bool in_spinup; //!< flag tracking spinup state - double tcurrent; //!< Current time (last completed time step) - double masstot; //!< tracker for mass conservation - unitval atmosland_flux; //!< Atmosphere -> land C flux - tseries atmosland_flux_ts; //!< Atmosphere -> land C flux (time series) - - /***************************************************************** - * Input data - * This information isn't part of the state; it's either read from - * an input file or pushed in by another model. - *****************************************************************/ - - // Carbon fluxes - tseries ffiEmissions; //!< fossil fuels and industry emissions, Pg C/yr - tseries lucEmissions; //!< land use change emissions, Pg C/yr - - // Albedo - tseries Ftalbedo; //!< terrestrial albedo forcing, W/m2 - - // Constraints - tseries CO2_constrain; //!< input [CO2] record to constrain model to - - /***************************************************************** - * Model parameters - * If you change any of these (in a Monte Carlo run, for example), - * you will at the very least need to reset to the beginning of the - * run. You may need to redo the spinup. - *****************************************************************/ - - // Partitioning - double_stringmap f_nppv, f_nppd; //!< fraction NPP into vegetation and detritus - double_stringmap f_litterd; //!< fraction of litter to detritus - - double f_lucv, f_lucd; //!< fraction LUC from vegetation and detritus - - // Initial fluxes - unitval_stringmap npp_flux0; //!< preindustrial NPP - - // Atmospheric CO2, temperature, and their effects - unitval C0; //!< preindustrial [CO2], ppmv - - double_stringmap beta, //!< shape of CO2 response - // sigma, //!< shape of temperature response (not yet implemented) - warmingfactor; //!< regional warming relative to global (1.0=same) - - double_stringmap q10_rh; //!< Q10 for heterotrophic respiration (unitless) - - /***************************************************************** - * Functions computing sub-elements of the carbon cycle - *****************************************************************/ - double calc_co2fert(std::string biome, double time = Core::undefinedIndex()) const; //!< calculates co2fertilization factor. - unitval npp(std::string biome, double time = Core::undefinedIndex()) const; //!< calculates NPP for a biome - unitval sum_npp(double time = Core::undefinedIndex()) const; //!< calculates NPP, global total - unitval rh_fda( std::string biome ) const; //!< calculates current RH from detritus for a biome - unitval rh_fsa( std::string biome ) const; //!< calculates current RH from soil for a biome - unitval rh( std::string biome ) const; //!< calculates current RH for a biome - unitval sum_rh() const; //!< calculates current RH, global total - - /***************************************************************** - * Private helper functions - *****************************************************************/ - void sanitychecks(); //!< performs mass-balance and other checks - unitval sum_map( unitval_stringmap pool ) const; //!< sums a unitval map (collection of data) - double sum_map( double_stringmap pool ) const; //!< sums a double map (collection of data) - void log_pools( const double t ); //!< prints pool status to the log file - void set_c0(double newc0); //!< set initial co2 and adjust total carbon mass - - bool has_biome(const std::string& biome); - - CarbonCycleModel *omodel; //!< pointer to the ocean model in use - - // Add a biome to a time-series map variable (e.g. veg_c_tv) - template - void add_biome_to_ts(tvector>& ts, - const std::string& biome, - T_data init_value) { - // First, check if a biome of this name already exists in the data - if ( ts.get(ts.firstdate()).count( biome ) ) { - H_THROW( "Biome '" + biome + "' already exists in data." ); - } - - // Loop over time steps, and set the variable to the provided `init_value` - std::map newval; - for ( double i = ts.firstdate(); i < ts.lastdate(); i++ ) { - if (ts.exists(i)) { - newval = ts.get(i); - newval[ biome ] = init_value; - ts.set(i, newval); - } - } + virtual unitval getData(const std::string &varName, const double date); + + // typedefs for two map types, to make things easier + // TODO: these should probably be defined in h_util.hpp or someplace similar? + typedef std::map fluxpool_stringmap; + typedef std::map double_stringmap; + + bool has_been_run_before; //!< Has run() been called once already? + + /***************************************************************** + * Component state + * All of this information will be saved at the end of each time + * step so that we can reset to any arbitrary past time. + *****************************************************************/ + + // List of biomes + std::vector biome_list; + + // Carbon pools -- global + fluxpool earth_c; //!< earth pool, Pg C; for mass-balance + fluxpool atmos_c; //!< atmosphere pool, Pg C + + // Carbon pools -- biome-specific + fluxpool_stringmap veg_c; //!< vegetation pools, Pg C + fluxpool_stringmap detritus_c; //!< detritus pools, Pg C + fluxpool_stringmap soil_c; //!< soil pool, Pg C + // Permafrost functionality is documented in: + // Woodard, D. L., Shiklomanov, A. N., Kravitz, B., Hartin, C., and + // Bond-Lamberty, B.: A permafrost implementation in the simple carbon–climate + // model Hector v.2.3pf, GMD 14:4751–4767, 2021. + // http://dx.doi.org/10.5194/gmd-14-4751-2021 + fluxpool_stringmap permafrost_c; //!< permafrost C pool, Pg C + // Track thawed peramfrost separately from soil, so that + // we can apply rh_ch4_frac (the CH4:CO2 ratio) to it + fluxpool_stringmap thawed_permafrost_c; //!< thawed permafrost pool, Pg C + + // Carbon fluxes -- biome-specific + fluxpool_stringmap NPP_veg; //!< Net primary productivity of vegetation; + fluxpool_stringmap RH_det, + RH_soil; //!< Heterotrophic CO2 respiration of detritus and soil + fluxpool_stringmap RH_thawed_permafrost, + RH_ch4; //!< Heterotrophic CH4 respiration of thawed permafrost + fluxpool_stringmap + final_npp; //!< final NPP after any NBP constraint accounted for, Pg C/yr + fluxpool_stringmap + final_rh; //!< final RH after any NBP constraint accounted for, Pg C/yr + + // Other state variables + unitval Ca_residual; //!< residual (when constraining [CO2]), Pg C + double_stringmap tempfertd, + tempferts; //!< temperature effect on respiration (unitless) + double_stringmap f_frozen, + new_thaw; //!< relative amounts and changes in permafrost + + /***************************************************************** + * Records of component state + * These vectors record the component state over time. When we do + * a reset, we will retrieve the state at the reset time from these + * arrays. + *****************************************************************/ + tseries earth_c_ts; //!< Time series of earth C pool + tseries atmos_c_ts; //!< Time series of atmosphere C pool + tvector + veg_c_tv; //!< Time series of biome-specific vegetation C pools + tvector + detritus_c_tv; //!< Time series of biome-specific detritus C pools + tvector + soil_c_tv; //!< Time series of biome-specific soil C pools + tvector + permafrost_c_tv; //!< Time series of biome-specific permafrost C + //!< pools + tvector + thawed_permafrost_c_tv; //!< Time series of biome-specific thawed + //!< permafrost + + // Time series versions of flux variables + tvector NPP_veg_tv, RH_det_tv, RH_soil_tv, + RH_thawed_permafrost_tv, RH_ch4_tv; + tvector + final_npp_tv; //!< Time series of biome-specific final NPP + tvector + final_rh_tv; //!< Time series of biome-specific final RH + + tseries Ca_residual_ts; //!< Time series of residual flux values + + tvector tempfertd_tv, + tempferts_tv; //!< Time series of temperature effect on respiration + tvector + f_frozen_tv; //!< Time series of frozen permafrost fraction + + /***************************************************************** + * Derived quantities + * Unlike state variables, these can be calculated from other + * information; therefore, they need not be stored over time, but + * they do need to be recalculated whenever we reset. + *****************************************************************/ + + double_stringmap co2fert; //!< CO2 fertilization effect (unitless) + tseries Tland_record; //!< Record of mean land surface/air temperature + //!< values, for computing soil RH + bool in_spinup; //!< flag tracking spinup state + double tcurrent; //!< Current time (last completed time step) + double masstot; //!< tracker for mass conservation + unitval nbp; //!< Atmosphere -> land C flux (=net biome production, positive + //!< is to land) + tseries nbp_ts; //!< Atmosphere -> land C flux (time series) + + /***************************************************************** + * Input data + * This information isn't part of the state; it's either read from + * an input file or pushed in by another model. + *****************************************************************/ + + // Carbon fluxes + tseries + ffiEmissions; //!< fossil fuels and industry emissions, Pg C/yr + tseries + daccsUptake; //!< direct air carbon capture and storage, Pg C/yr + tseries lucEmissions; //!< land use change emissions, Pg C/yr + tseries lucUptake; //!< land use change uptake, Pg C/yr + + // Albedo + tseries Falbedo; //!< terrestrial albedo forcing, W/m2 + + // Constraints + tseries CO2_constrain; //!< input [CO2] record to constrain model to + tseries + NBP_constrain; //!< input net biome production (atmosphere-land C flux, + //!< positive = flux to land) to constrain model to + + /***************************************************************** + * Model parameters + * If you change any of these (in a Monte Carlo run, for example), + * you will at the very least need to reset to the beginning of the + * run. You may need to redo the spinup. + *****************************************************************/ + + // Partitioning + double_stringmap f_nppv, + f_nppd; //!< fraction NPP into vegetation and detritus + double_stringmap f_litterd; //!< fraction of litter to detritus + + // Initial fluxes + fluxpool_stringmap npp_flux0; //!< preindustrial NPP + + // Variables needed to adjust NPP for LUC + unitval cum_luc_va; + tseries cum_luc_va_ts; + fluxpool end_of_spinup_vegc; + double npp_luc_adjust; + + // Atmospheric CO2, temperature, and their effects + fluxpool C0; //!< preindustrial [CO2], ppmv + + // Slowly-changing variables + // These get computed only once per year, in slowparameval() + fluxpool current_luc_e, //!< Current year LUC emissions (Pg C/yr) + current_luc_u, //!< Current year LUC uptake (Pg C/yr) + current_ffi_e, //!< Current year FFI emissions (Pg C/yr) + current_daccs_u; //!< Current year DACCS uptake (Pg C/yr) + double_stringmap beta; //!< shape of CO2 response + double_stringmap + warmingfactor; //!< regional warming relative to global (1.0=same) + double_stringmap + q10_rh; //!< Q10 for heterotrophic respiration (1.0=no response, unitless) + double_stringmap + rh_ch4_frac; //!< Fraction of RH from thawed permafrost that is CH4 + double_stringmap + pf_sigma; //!< Standard deviation for permafrost-temp model fit + double_stringmap pf_mu; //!< Mean for permafrost-temp model fit + double_stringmap fpf_static; //!< Permafrost C non-labile fraction + typedef std::map lognormal_stringmap; + lognormal_stringmap pf_s; //!< Permafrost lognormal distribution + + /***************************************************************** + * Functions computing sub-elements of the carbon cycle + *****************************************************************/ + fluxpool + CO2_conc(double time = Core::undefinedIndex()) const; //!< current [CO2], ppmv + double calc_co2fert(std::string biome, double time = Core::undefinedIndex()) + const; //!< calculates co2 fertilization factor. + fluxpool npp(std::string biome, double time = Core::undefinedIndex()) + const; //!< calculates NPP for a biome + fluxpool sum_npp(double time = Core::undefinedIndex()) + const; //!< calculates NPP, global total + fluxpool rh_fda(std::string biome, double time = Core::undefinedIndex()) + const; //!< calculates RH from detritus for a biome + fluxpool rh_fsa(std::string biome, double time = Core::undefinedIndex()) + const; //!< calculates RH from soil for a biome + fluxpool rh_ftpa_co2(std::string biome, double time = Core::undefinedIndex()) + const; //!< calculates current CO2 RH from thawed permafrost for a biome + fluxpool rh_ftpa_ch4(std::string biome, double time = Core::undefinedIndex()) + const; //!< calculates current CH4 RH from thawed permafrost for a biome + fluxpool + rh(std::string biome, + double time = Core::undefinedIndex()) const; //!< calculates RH for a biome + fluxpool sum_rh(double time = Core::undefinedIndex()) + const; //!< calculates RH, global total + tuple compute_pf_thaw_refreeze(string biome, + fluxpool rh_co2, + fluxpool rh_ch4) const; + + /***************************************************************** + * Private helper functions + *****************************************************************/ + fluxpool sum_map(fluxpool_stringmap pool) + const; //!< sums a unitval map (collection of data) + double sum_map( + double_stringmap pool) const; //!< sums a double map (collection of data) + void log_pools(const double t, + const string msg); //!< prints pool status to the log file + void set_c0(double newc0); //!< set initial co2 and adjust total carbon mass + fluxpool sum_fluxpool_biome_ts(const string varName, const double date, + const string biome, fluxpool_stringmap pool, + tvector pool_tv); + bool has_biome(const std::string &biome); + double f_frozen_weighted_mean(const string biome, const double date); + + OceanComponent *omodel; //!< pointer to the ocean model in use + + // Add a biome to a time-series map variable (e.g. veg_c_tv) + template + void add_biome_to_ts(tvector> &ts, + const std::string &biome, T_data init_value) { + // First, check if a biome of this name already exists in the data + if (ts.get(ts.firstdate()).count(biome)) { + H_THROW("Biome '" + biome + "' already exists in data."); } - // Remove a biome from a time-series map variable - template - void remove_biome_from_ts(tvector& ts, - const std::string& biome) { - // We don't need to check for presence of `biome` here because the - // `.erase()` method is effectively a no-op when given a - // non-existent key. - T_map currval; - for ( double i = ts.firstdate(); i < ts.lastdate(); i++ ) { - if (ts.exists(i)) { - currval = ts.get(i); - currval.erase(biome); - ts.set(i, currval); - } - } + // Loop over time steps, and set the variable to the provided `init_value` + std::map newval; + for (double i = ts.firstdate(); i < ts.lastdate(); i++) { + if (ts.exists(i)) { + newval = ts.get(i); + newval[biome] = init_value; + ts.set(i, newval); + } } - - // Rename a biome in a time-series map variable. At each time - // step, this creates a new biome called `newname`, gives it all - // of the values of `oldname`, and then erases that time step's - // `oldname`. - template - void rename_biome_in_ts(tvector& ts, - const std::string& oldname, - const std::string& newname) { - if ( !ts.get(ts.firstdate()).count( oldname ) ) { - H_THROW( "Biome '" + oldname + "' not found in data."); - } - if ( ts.get(ts.firstdate()).count( newname ) ) { - H_THROW( "Biome '" + newname + "' already exists in data."); - } - - T_map currval; - for ( double i = ts.firstdate(); i < ts.lastdate(); i++ ) { - if (ts.exists(i)) { - currval = ts.get(i); - currval[newname] = currval.at(oldname); - currval.erase(oldname); - ts.set(i, currval); - } - } + } + + // Remove a biome from a time-series map variable + template + void remove_biome_from_ts(tvector &ts, const std::string &biome) { + // We don't need to check for presence of `biome` here because the + // `.erase()` method is effectively a no-op when given a + // non-existent key. + T_map currval; + for (double i = ts.firstdate(); i < ts.lastdate(); i++) { + if (ts.exists(i)) { + currval = ts.get(i); + currval.erase(biome); + ts.set(i, currval); + } + } + } + + // Rename a biome in a time-series map variable. At each time + // step, this creates a new biome called `newname`, gives it all + // of the values of `oldname`, and then erases that time step's + // `oldname`. + template + void rename_biome_in_ts(tvector &ts, const std::string &oldname, + const std::string &newname) { + if (!ts.get(ts.firstdate()).count(oldname)) { + H_THROW("Biome '" + oldname + "' not found in data."); + } + if (ts.get(ts.firstdate()).count(newname)) { + H_THROW("Biome '" + newname + "' already exists in data."); } - + T_map currval; + for (double i = ts.firstdate(); i < ts.lastdate(); i++) { + if (ts.exists(i)) { + currval = ts.get(i); + currval[newname] = currval.at(oldname); + currval.erase(oldname); + ts.set(i, currval); + } + } + } + + /***************************************************************** + * Tracking Helper Functions + *****************************************************************/ + void start_tracking() { + earth_c.tracking = true; + atmos_c.tracking = true; + for (auto biome : biome_list) { + veg_c[biome].tracking = true; + detritus_c[biome].tracking = true; + soil_c[biome].tracking = true; + permafrost_c[biome].tracking = true; + thawed_permafrost_c[biome].tracking = true; + } + } }; -} +} // namespace Hector #endif diff --git a/inst/include/slr_component.hpp b/inst/include/slr_component.hpp index 38e76c1de..e7690db7f 100644 --- a/inst/include/slr_component.hpp +++ b/inst/include/slr_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -33,60 +33,58 @@ namespace Hector { class slrComponent : public IModelComponent { public: - slrComponent(); - ~slrComponent(); + slrComponent(); + ~slrComponent(); - //! IModelComponent methods - virtual std::string getComponentName() const; + //! IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& ); + virtual void setData(const std::string &varName, const message_data &); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double time); + virtual void reset(double time); - virtual void shutDown(); + virtual void shutDown(); - //! IVisitable methods - virtual void accept( AVisitor* visitor ); + //! IVisitable methods + virtual void accept(AVisitor *visitor); - //! Reference period. No output occurs before we reach refperiod_high - int refperiod_low, refperiod_high; - int normalize_year; + //! Reference period. No output occurs before we reach refperiod_high + int refperiod_low, refperiod_high; + int normalize_year; private: - virtual unitval getData( const std::string& varName, - const double valueIndex ); + virtual unitval getData(const std::string &varName, const double valueIndex); - tseries sl_rc; //!< sea level rate of change, cm/yr - tseries slr; //!< sea level rise, cm - tseries sl_rc_no_ice; //!< sea level rate of change, cm/yr, no ice - tseries slr_no_ice; //!< sea level rise, cm, no ice + tseries sl_rc; //!< sea level rate of change, cm/yr + tseries slr; //!< sea level rise, cm + tseries sl_rc_no_ice; //!< sea level rate of change, cm/yr, no ice + tseries slr_no_ice; //!< sea level rise, cm, no ice - unitval refperiod_tgav; //!< reference period mean temperature - tseries tgav; //!< private copy of global mean temperature + unitval refperiod_tgav; //!< reference period mean temperature + tseries tgav; //!< private copy of global mean temperature - //! pointers to other components and stuff - Core *core; + //! pointers to other components and stuff + Core *core; - void compute_slr( const double date ); + void compute_slr(const double date); - //! logger - Logger logger; + //! logger + Logger logger; - //! Last date run to - double oldDate; + //! Last date run to + double oldDate; }; -} +} // namespace Hector #endif // SLR_COMPONENT_H diff --git a/inst/include/so2_component.hpp b/inst/include/so2_component.hpp index a4e166331..fe9908d36 100644 --- a/inst/include/so2_component.hpp +++ b/inst/include/so2_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -19,7 +19,6 @@ #include "tseries.hpp" #include "unitval.hpp" - namespace Hector { //------------------------------------------------------------------------------ /*! \brief Sulfur model component. @@ -29,52 +28,48 @@ namespace Hector { class SulfurComponent : public IModelComponent { public: - SulfurComponent(); - ~SulfurComponent(); - - // IModelComponent methods - virtual std::string getComponentName() const; + SulfurComponent(); + ~SulfurComponent(); - virtual void init( Core* core ); + // IModelComponent methods + virtual std::string getComponentName() const; - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual void init(Core *core); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void prepareToRun(); + virtual void setData(const std::string &varName, const message_data &data); - virtual void run( const double runToDate ); + virtual void prepareToRun(); - virtual void reset(double time); + virtual void run(const double runToDate); - virtual void shutDown(); + virtual void reset(double time); - // IVisitable methods - virtual void accept( AVisitor* visitor ); + virtual void shutDown(); + // IVisitable methods + virtual void accept(AVisitor *visitor); - unitval S0; // historical value of sulfur (YEAR?) - unitval SN; + unitval SN; private: - virtual unitval getData( const std::string& varName, - const double date ); + virtual unitval getData(const std::string &varName, const double date); - //! Emissions time series + //! Emissions time series - tseries SO2_emissions; - tseries SV; + tseries SO2_emissions; + tseries SV; - //! logger - Logger logger; + //! logger + Logger logger; - Core *core; - double oldDate; + Core *core; + double oldDate; }; -} +} // namespace Hector -#endif // SULFUR_COMPONENT_H +#endif // SULFUR_COMPONENT_H diff --git a/inst/include/temperature_component.hpp b/inst/include/temperature_component.hpp index 67f9fb4c9..46a1649be 100644 --- a/inst/include/temperature_component.hpp +++ b/inst/include/temperature_component.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -20,7 +20,6 @@ #include "tseries.hpp" #include "unitval.hpp" - namespace Hector { //------------------------------------------------------------------------------ @@ -32,129 +31,163 @@ namespace Hector { * Adopted with permission from C++ implementation * (https://github.com/scrim-network/cdice_doeclim; Garner et al., 2016). * - * Kriegler, E. (2005) Imprecise probability analysis for Integrated Assessment of climate change. Ph.D. dissertation. Potsdam Universität. 256 pp. (http://opus.kobv.de/ubp/volltexte/2005/561/; DOECLIM introduced in Chapter 2 and Annexes A and B) - * Tanaka, K. & Kriegler, E. (2007) Aggregated carbon cycle, atmospheric chemistry, and climate model (ACC2) – Description of the forward and inverse modes – . Reports Earth Syst. Sci. 199. - * Garner, G., Reed, P. & Keller, K. (2016) Climate risk management requires explicit representation of societal trade-offs. Clim. Change 134, 713–723. + * Kriegler, E. (2005) Imprecise probability analysis for Integrated Assessment + * of climate change. Ph.D. dissertation. Potsdam Universität. 256 pp. + * (http://opus.kobv.de/ubp/volltexte/2005/561/; DOECLIM introduced in Chapter 2 + * and Annexes A and B) Tanaka, K. & Kriegler, E. (2007) Aggregated carbon + * cycle, atmospheric chemistry, and climate model (ACC2) – Description of the + * forward and inverse modes – . Reports Earth Syst. Sci. 199. Garner, G., Reed, + * P. & Keller, K. (2016) Climate risk management requires explicit + * representation of societal trade-offs. Clim. Change 134, 713–723. */ class TemperatureComponent : public IModelComponent { public: - TemperatureComponent(); - ~TemperatureComponent(); + TemperatureComponent(); + ~TemperatureComponent(); - //! IModelComponent methods - virtual std::string getComponentName() const; + //! IModelComponent methods + virtual std::string getComponentName() const; - virtual void init( Core* core ); + virtual void init(Core *core); - virtual unitval sendMessage( const std::string& message, - const std::string& datum, - const message_data info=message_data() ); + virtual unitval sendMessage(const std::string &message, + const std::string &datum, + const message_data info = message_data()); - virtual void setData( const std::string& varName, - const message_data& data ); + virtual void setData(const std::string &varName, const message_data &data); - virtual void prepareToRun(); + virtual void prepareToRun(); - virtual void run( const double runToDate ); + virtual void run(const double runToDate); - virtual void reset(double date); + virtual void reset(double date); - virtual void shutDown(); + virtual void shutDown(); - //! IVisitable methods - virtual void accept( AVisitor* visitor ); + //! IVisitable methods + virtual void accept(AVisitor *visitor); private: - virtual unitval getData( const std::string& varName, - const double date ); - void invert_1d_2x2_matrix( double * x, double * y); - void setoutputs(int tstep); - - // Hard-coded DOECLIM parameters - const int dt = 1; // years per timestep (this is implicit in Hector) - int ns; // number of timesteps - const double ak = 0.31; // slope in climate feedback - land-sea heat exchange linear relationship - const double bk = 1.59; // offset in climate feedback - land-sea heat exchange linear relationship, W/m2/K - const double csw = 0.13; // specific heat capacity of seawater W*yr/m3/K - const double earth_area = 5100656E8; // m2 - const double kcon = 3155.0; // conversion from cm2/s to m2/yr - const double q2co = 3.7; // radiative forcing for atmospheric CO2 doubling, W/m2 - const double rlam = 1.43; // factor between land clim. sens. and sea surface clim. sens. T_L2x = rlam*T_S2x - const double secs_per_Year = 31556926.0; - const double zbot = 4000.0; // bottom depth of diffusive ocean, m - const double bsi = 1.3; // warming factor for marine surface air over SST (due to retreating sea ice) - const double cal = 0.52; // heat capacity of land-troposphere system, W*yr/m2/K - const double cas = 7.80; // heat capacity of mixed layer-troposphere system, W*yr/m2/K - const double flnd = 0.29; // fractional land area - const double fso = 0.95; // ocean fractional area below 60m - - // DOECLIM parameters calculated from constants above - double ocean_area; // m2 - double cnum; // factor from sea-surface climate sensitivity to global mean - double cden; // intermediate parameter - double cfl; // land climate feedback parameter, W/m2/K - double cfs; // sea climate feedback parameter, W/m2/K - double kls; // land-sea heat exchange coefficient, W/m2/K - double keff; // ocean heat diffusivity, m2/yr - double taubot; // ocean bottom diffusion time scale, yr - double powtoheat; // convert flux to total ocean heat 1E22 m2*s - double taucfs; // sea climate feedback time scale, yr - double taucfl; // land climate feedback time scale, yr - double taudif; // interior ocean heat uptake time scale, yr - double tauksl; // sea-land heat exchange time scale, yr - double taukls; // land-sea heat exchange time scale, yr - - std::vector KT0; - std::vector KTA1; - std::vector KTB1; - std::vector KTA2; - std::vector KTB2; - std::vector KTA3; - std::vector KTB3; - - // Components of the difference equation system B*T(i+1) = Q(i) + A*T(i) - double B[4]; - double C[4]; - std::vector Ker; - double A[4]; - double IB[4]; - - // Time series arrays that are updated with each DOECLIM time-step - std::vector temp; - std::vector temp_landair; - std::vector temp_sst; - std::vector heatflux_mixed; - std::vector heatflux_interior; - std::vector heat_mixed; - std::vector heat_interior; - std::vector forcing; - - // Model parameters - unitval S; //!< climate sensitivity for 2xCO2, deg C - unitval diff; //!< ocean heat diffusivity, cm2/s - unitval alpha; //!< aerosol forcing factor, unitless - unitval volscl; //!< volcanic forcing scaling factor, unitless - - // Model outputs - unitval tgav; //!< global average surface air temperature anomaly, deg C - unitval tgav_land; //!< global average land surface air temperature anomaly, deg C - unitval tgav_oceanair; //!< global average ocean surface air temperature anomaly, deg C - unitval tgav_sst; //!< global average ocean surface (water) temperature anomaly, deg C - unitval tgaveq; //!< equilibrium temp without ocean heat flux, currently set = tgav - unitval flux_mixed; //!< heat flux into mixed layer of ocean, W/m2 - unitval flux_interior; //!< heat flux into interior layer of ocean, W/m2 - unitval heatflux; //!< heat flux into ocean, W/m2 - - tseries tgav_constrain; //! Temperature change can be supplied (not currently) - - //! pointers to other components and stuff - Core* core; - - //! logger - Logger logger; + virtual unitval getData(const std::string &varName, const double date); + void invert_1d_2x2_matrix(double *x, double *y); + void setoutputs(int tstep); + + // Hard-coded DOECLIM parameters + const double dt = 1; // years per timestep (this is implicit in Hector) + int ns; // number of timesteps + const double ak = 0.31; // slope in climate feedback - land-sea heat exchange + // linear relationship (W/m2/K) + const double bk = 1.59; // offset in climate feedback - land-sea heat exchange + // linear relationship,(W/m2/K) + const double csw = 0.13; // specific heat capacity of seawater (Wyr/(m3K)) + const double earth_area = 5100656E8; // (m2) + const double secs_per_Year = + 60.0 * 60.0 * 24.0 * + 365.2422; // secs. * min. * hrs. * tropical calendar days (seconds) + const double rlam = 1.43; // factor between land clim. sens. and sea surface + // clim. sens. T_L2x = rlam*T_S2x (unitless) + const double zbot = 4000.0; // bottom depth of the interior ocean (m) + const double bsi = 1.3; // warming factor for marine surface air over SST due + // to retreating sea ice, (unitless) + const double cal = + 0.52; // effective heat capacity of land-troposphere system (W*yr/m2/K) + const double cas = 7.80; // effective heat capacity of mixed layer-troposphere + // system (W*yr/m2/K) + const double flnd = 0.29; // fractional land area (unitless) + const double fso = 0.95; // ocean fractional area below 60m (unitless) + + // DOECLIM parameters calculated from constants above + double kcon; // conversion from cm2/s to m2/yr + double ocean_area; // m2 + double cnum; // factor from sea-surface climate sensitivity to global mean + double cden; // denominator used to figure out the climate senstivity feedback + // parameters over land & sea + double cfl; // land climate feedback parameter, W/m2/K + double cfs; // sea climate feedback parameter, W/m2/K + double kls; // land-sea heat exchange coefficient, W/m2/K + double keff; // ocean heat diffusivity, m2/yr + double taubot; // ocean bottom diffusion time scale, yr + double powtoheat; // convert flux to total ocean heat 1E22 m2*s + double taucfs; // sea climate feedback time scale, yr + double taucfl; // land climate feedback time scale, yr + double taudif; // interior ocean heat uptake time scale, yr + double tauksl; // sea-land heat exchange time scale, yr + double taukls; // land-sea heat exchange time scale, yr + double qco2; // radiative forcing for atmospheric CO2 doubling + + std::vector KT0; + std::vector KTA1; + std::vector KTB1; + std::vector KTA2; + std::vector KTB2; + std::vector KTA3; + std::vector KTB3; + + // Components of the difference equation system B*T(i+1) = Q(i) + A*T(i) + double B[4]; + double C[4]; + std::vector Ker; + double A[4]; + double IB[4]; + + // Time series arrays that are updated with each DOECLIM time-step + std::vector temp; + std::vector temp_landair; + std::vector temp_sst; + std::vector heatflux_mixed; + std::vector heatflux_interior; + std::vector heat_mixed; + std::vector heat_interior; + std::vector forcing; + + // Model parameters + unitval S; //!< climate sensitivity for 2xCO2, deg C + unitval diff; //!< ocean heat diffusivity, cm2/s + unitval alpha; //!< aerosol forcing factor, unitless + unitval volscl; //!< volcanic forcing scaling factor, unitless + + // Model outputs + unitval tas; //!< global average surface air temperature anomaly, deg C + unitval tas_land; //!< average air temperature anomaly over land, deg C + unitval tas_ocean; //!< global average ocean surface air temperature anomaly, + //!< deg C + unitval + sst; //!< global average ocean surface (water) temperature anomaly, deg C + unitval flux_mixed; //!< heat flux into mixed layer of ocean, W/m2 + unitval flux_interior; //!< heat flux into interior layer of ocean, W/m2 + unitval heatflux; //!< heat flux into ocean, W/m2 + + // Potential user defined model parameters + unitval + lo_warming_ratio; //!< user defined land ocean warming ratio, unit-less + //!< ratio defined as ΔTL/ΔTO; see + //!< https://agupubs.onlinelibrary.wiley.com/doi/full/10.1002/grl.50971 + + // Create a place to store temp time series that are over written when + // a user provided land ocean warming ratio is being used. + unitval lo_tas_land; //!< place to store land temp when lo is provided by + //!< users, deg C + unitval lo_tas_ocean; //!< place to store ocean air temp when lo is provided + //!< by users, deg C + unitval lo_seast; //!< place to store sst when lo is provided by users, deg C + std::vector lo_temp_landair; //!< place to store land temp when lo is + //!< provided by users, deg C + std::vector lo_temp_oceanair; //!< place to store land temp when lo is + //!< provided by users, deg C + std::vector + lo_sst; //!< place to store land temp when lo is provided by users, deg C + + tseries + tas_constrain; //! Temperature change to constrain model to, degC + + //! pointers to other components and stuff + Core *core; + + //! logger + Logger logger; }; -} +} // namespace Hector #endif // TEMPERATURE_COMPONENT_H diff --git a/inst/include/tseries.hpp b/inst/include/tseries.hpp index b0b90e421..6bfda0bf5 100644 --- a/inst/include/tseries.hpp +++ b/inst/include/tseries.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -14,14 +14,15 @@ * */ -#include #include +#include #include -#include "logger.hpp" +#include "fluxpool.hpp" +#include "h_exception.hpp" #include "h_interpolator.hpp" +#include "logger.hpp" #include "unitval.hpp" -#include "h_exception.hpp" namespace Hector { @@ -29,167 +30,239 @@ namespace Hector { * * Currently implemented as an STL map. */ -template -class tseries { - std::map mapdata; - double lastInterpYear; - bool endinterp_allowed; - mutable bool dirty; // does series need re-interpolating? +template class tseries { + std::map mapdata; + double lastInterpYear; + bool endinterp_allowed; + mutable bool dirty; // does series need re-interpolating? - h_interpolator interpolator; - void set_interp( double, bool, interpolation_methods ); - void fit_spline(); + h_interpolator interpolator; + void set_interp(double, bool, interpolation_methods); + void fit_spline(); public: - tseries(); + tseries(); - void set( double, T_data ); - T_data get( double ) const; - T_data get_deriv( double ) const; - bool exists( double ) const; + void set(double, T_data); + T_data get(double) const; + T_data get_deriv(double) const; + bool exists(double) const; - double firstdate() const; - double lastdate() const; + double firstdate() const; + double lastdate() const; - int size() const; + int size() const; - void allowInterp( bool eia ); - void allowPartialInterp( bool eia ); + void allowInterp(bool eia); + void allowPartialInterp(bool eia); - void truncate(double t, bool after=true); + void truncate(double t, bool after = true); - std::string name; + std::string name; }; - //----------------------------------------------------------------------- /*! \brief A helper class to allow template specialization for interpolation. * * The interpolator expects types to be double convertible and will not compile - * if the templated type can not be implicitly converted. Creating a specialization - * of this class to explicitly convert to double will allow the use of tseries with - * that type and run as expected including interpolation. - * - * \todo Should we create a specialization for non-double types that just throws - * an exception? This will allow us to use tseries with that type just - * without interpolation. + * if the templated type can not be implicitly converted (or unless a + * specialization has been created, as for strings below). Creating a + * specialization of this class to explicitly convert to double will allow the + * use of tseries with that type and run as expected including interpolation. */ -template -struct interp_helper { - // TODO: we might want to consider re-organizing this to not have to pass - // info around, discuss with Ben - static void error_check( const std::map& userData, - h_interpolator& interpolator, std::string name, - bool& isDirty, bool endinterp_allowed, - const double index ) - { - H_ASSERT( userData.size() > 1, "time series data(" + name + ") must have size>1" ); - - if( isDirty ) { // data have changed; inform interpolator - double *x = new double[ userData.size() ]; // allocate - double *y = new double[ userData.size() ]; - - typename std::map::const_iterator itr; // ...and fill - int i=0; - for ( itr=userData.begin(); itr != userData.end(); itr++ ) { - x[ i ] = (*itr).first; - y[ i ] = (*itr).second; - i++; - } - - interpolator.newdata( i, x, y ); - - delete [] x; // spline will keep its own copy - delete [] y; // spline will keep its own copy - isDirty = false; - } - - if( index < (*userData.begin()).first || index > (*userData.rbegin()).first ) // beyond-end interpolation - H_ASSERT( endinterp_allowed, "In time series '" + name + "', end interpolation not allowed" ); - } - static T_data interp( const std::map& userData, - h_interpolator& interpolator, std::string name, - bool& isDirty, bool endinterp_allowed, - const double index ) - { - error_check( userData, interpolator, name, isDirty, endinterp_allowed, index ); - - return interpolator.f( index ); - } - static T_data calc_deriv( const std::map& userData, - h_interpolator& interpolator, std::string name, - bool& isDirty, bool endinterp_allowed, - const double index ) - { - error_check( userData, interpolator, name, isDirty, endinterp_allowed, index ); - - return interpolator.f_deriv( index ); +template struct interp_helper { + // TODO: we might want to consider re-organizing this to not have to pass + // info around, discuss with Ben + static void error_check(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) { + H_ASSERT(userData.size() > 1, + "time series data(" + name + ") must have size>1"); + + if (isDirty) { // data have changed; inform interpolator + double *x = new double[userData.size()]; // allocate + double *y = new double[userData.size()]; + + typename std::map::const_iterator itr; // ...and fill + int i = 0; + for (auto datum : userData) { + x[i] = datum.first; + y[i] = datum.second; + i++; + } + + interpolator.newdata(i, x, y); + + delete[] x; // spline will keep its own copy + delete[] y; // spline will keep its own copy + isDirty = false; } -}; + if (index < (*userData.begin()).first || + index > (*userData.rbegin()).first) // beyond-end interpolation + H_ASSERT(endinterp_allowed, + "In time series '" + name + "', end interpolation not allowed"); + } + static T_data interp(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) { + error_check(userData, interpolator, name, isDirty, endinterp_allowed, + index); + + return interpolator.f(index); + } + static T_data calc_deriv(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) { + error_check(userData, interpolator, name, isDirty, endinterp_allowed, + index); + + return interpolator.f_deriv(index); + } +}; //----------------------------------------------------------------------- -/*! \brief Interpolation specialization for boost units quantities. - * - * This will allow interpolation of any boost units quantity assuming that the - * value type is convertible to double. This is functionally equivalent to the - * generic version however the double value is accessed via the .value() method - * and the return value will be in the same units as the other quantities. +/*! \brief Interpolation specialization for unitvals. */ -template<> -struct interp_helper { - typedef unitval T_unit_type; - // TODO: we might want to consider re-organizing this to not have to pass - // info around, discuss with Ben - static void error_check( const std::map& userData, - h_interpolator& interpolator, std::string name, - bool& isDirty, bool endinterp_allowed, - const double index ) - { - H_ASSERT( userData.size() > 1, "time series data (" + name + ") must have size>1" ); - - if( isDirty ) { // data have changed; inform interpolator - double *x = new double[ userData.size() ]; // allocate - double *y = new double[ userData.size() ]; - - std::map::const_iterator itr; // ...and fill - int i=0; - for ( itr=userData.begin(); itr != userData.end(); itr++ ) { - x[ i ] = (*itr).first; - y[ i ] = (*itr).second.value( (*itr).second.units() ); - i++; - } - - interpolator.newdata( i, x, y ); - - delete[] x; // spline will keep its own copy - delete[] y; // spline will keep its own copy - isDirty = false; - } - - if( index < (*userData.begin()).first || index > (*userData.rbegin()).first ) // beyond-end interpolation - H_ASSERT( endinterp_allowed, "end interpolation not allowed" ); +template <> struct interp_helper { + typedef unitval T_unit_type; + // TODO: we might want to consider re-organizing this to not have to pass + // info around, discuss with Ben + static void error_check(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) { + H_ASSERT(userData.size() > 1, + "time series data (" + name + ") must have size>1"); + + if (isDirty) { // data have changed; inform interpolator + double *x = new double[userData.size()]; // allocate + double *y = new double[userData.size()]; + + int i = 0; + for (auto datum : userData) { + x[i] = datum.first; + y[i] = datum.second.value(datum.second.units()); + i++; + } + + interpolator.newdata(i, x, y); + + delete[] x; // spline will keep its own copy + delete[] y; // spline will keep its own copy + isDirty = false; } - static T_unit_type interp( const std::map& userData, - h_interpolator& interpolator, std::string name, - bool& isDirty, bool endinterp_allowed, - const double index ) - { - error_check( userData, interpolator, name, isDirty, endinterp_allowed, index ); - - return unitval( interpolator.f( index ), (*(userData.begin())).second.units() ); - } - static T_unit_type calc_deriv( const std::map& userData, - h_interpolator& interpolator, std::string name, - bool& isDirty, bool endinterp_allowed, - const double index ) - { - error_check( userData, interpolator, name, isDirty, endinterp_allowed, index ); - - return unitval( interpolator.f_deriv( index ), (*(userData.begin())).second.units() ); + + if (index < (*userData.begin()).first || + index > (*userData.rbegin()).first) // beyond-end interpolation + H_ASSERT(endinterp_allowed, "end interpolation not allowed"); + } + static T_unit_type interp(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) { + error_check(userData, interpolator, name, isDirty, endinterp_allowed, + index); + + return unitval(interpolator.f(index), (*(userData.begin())).second.units()); + } + static T_unit_type calc_deriv(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) { + error_check(userData, interpolator, name, isDirty, endinterp_allowed, + index); + + return unitval(interpolator.f_deriv(index), + (*(userData.begin())).second.units()); + } +}; + +//----------------------------------------------------------------------- +/*! \brief Interpolation specialization for fluxpools. + */ +template <> struct interp_helper { + typedef fluxpool T_unit_type; + // TODO: we might want to consider re-organizing this to not have to pass + // info around, discuss with Ben + static void error_check(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) { + H_ASSERT(userData.size() > 1, + "time series data (" + name + ") must have size>1"); + + if (isDirty) { // data have changed; inform interpolator + double *x = new double[userData.size()]; // allocate + double *y = new double[userData.size()]; + + int i = 0; + for (auto datum : userData) { + x[i] = datum.first; + y[i] = datum.second.value(datum.second.units()); + i++; + } + + interpolator.newdata(i, x, y); + + delete[] x; // spline will keep its own copy + delete[] y; // spline will keep its own copy + isDirty = false; } + + if (index < (*userData.begin()).first || + index > (*userData.rbegin()).first) // beyond-end interpolation + H_ASSERT(endinterp_allowed, "end interpolation not allowed"); + } + static T_unit_type interp(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) { + error_check(userData, interpolator, name, isDirty, endinterp_allowed, + index); + + return fluxpool(interpolator.f(index), + (*(userData.begin())).second.units()); + } + static T_unit_type calc_deriv(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) { + error_check(userData, interpolator, name, isDirty, endinterp_allowed, + index); + + return fluxpool(interpolator.f_deriv(index), + (*(userData.begin())).second.units()); + } }; +//----------------------------------------------------------------------- +/*! \brief Interpolation specialization for strings. + */ +template <> struct interp_helper { + typedef string T_unit_type; + static void error_check(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) noexcept(false) { + H_THROW("String interpolation not allowed"); + } + static T_unit_type interp(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) noexcept(false) { + H_THROW("String interpolation not allowed"); + } + static T_unit_type calc_deriv(const std::map &userData, + h_interpolator &interpolator, std::string name, + bool &isDirty, bool endinterp_allowed, + const double index) noexcept(false) { + H_THROW("String derivative not allowed"); + } +}; /* "Because templates are compiled when required, this forces a restriction for multi-file projects: the implementation (definition) of a template @@ -204,11 +277,11 @@ struct interp_helper { * * Initializes internal variables. */ -template -tseries::tseries( ) { - set_interp( std::numeric_limits::min(), false, DEFAULT ); // default values - dirty = false; - name = "?"; +template tseries::tseries() { + set_interp(std::numeric_limits::min(), false, + DEFAULT); // default values + dirty = false; + name = "?"; } //----------------------------------------------------------------------- @@ -216,12 +289,11 @@ tseries::tseries( ) { * * Sets an (t, d) tuple, data d at time t. */ -template -void tseries::set( double t, T_data d ) { - mapdata[ t ] = d; - if( t < lastInterpYear ) { - dirty = true; - } +template void tseries::set(double t, T_data d) { + mapdata[t] = d; + if (t < lastInterpYear) { + dirty = true; + } } //----------------------------------------------------------------------- @@ -229,9 +301,8 @@ void tseries::set( double t, T_data d ) { * * Returns a bool to indicate if data exists. */ -template -bool tseries::exists( double t ) const { - return ( mapdata.find( t ) != mapdata.end() ); +template bool tseries::exists(double t) const { + return (mapdata.find(t) != mapdata.end()); } //----------------------------------------------------------------------- @@ -243,22 +314,23 @@ bool tseries::exists( double t ) const { * If there is only a single value in the time series, then treat it * as a constant (i.e, return the single value that we have). */ -template -T_data tseries::get( double t ) const { - if(mapdata.size() == 1) - return mapdata.begin()->second; - typename std::map::const_iterator itr = mapdata.find( t ); - if( itr != mapdata.end() ) - return (*itr).second; - else if( t < lastInterpYear ) - return interp_helper::interp( mapdata, - const_cast( this )->interpolator, - name, dirty, endinterp_allowed, t ); - else { - std::ostringstream errmsg; - errmsg << "Interpolation requested but not allowed (" << name << ") date: " << t << "\n"; - H_THROW(errmsg.str()); - } +template T_data tseries::get(double t) const { + if (mapdata.size() == 1) { + return mapdata.begin()->second; + } + typename std::map::const_iterator itr = mapdata.find(t); + if (itr != mapdata.end()) + return (*itr).second; + else if (t < lastInterpYear) + return interp_helper::interp( + mapdata, const_cast(this)->interpolator, name, dirty, + endinterp_allowed, t); + else { + std::ostringstream errmsg; + errmsg << "Interpolation requested but not allowed (" << name + << ") date: " << t << "\n"; + H_THROW(errmsg.str()); + } } //----------------------------------------------------------------------- @@ -267,22 +339,21 @@ T_data tseries::get( double t ) const { * Note interpolation must be allowed to calculate a derivative. * */ -template -T_data tseries::get_deriv( double t ) const { - if(mapdata.size() == 1) { - H_THROW( "More than one data point needed to calculate a derivative" ); - } - - if( t < lastInterpYear ) { - return interp_helper::calc_deriv( mapdata, - const_cast( this )->interpolator, - name, dirty, endinterp_allowed, t ); - } - else { - std::ostringstream errmsg; - errmsg << "Derivative requested but not allowed (" << name << ") date: " << t << "\n"; - H_THROW(errmsg.str()); - } +template T_data tseries::get_deriv(double t) const { + if (mapdata.size() == 1) { + H_THROW("More than one data point needed to calculate a derivative"); + } + + if (t < lastInterpYear) { + return interp_helper::calc_deriv( + mapdata, const_cast(this)->interpolator, name, dirty, + endinterp_allowed, t); + } else { + std::ostringstream errmsg; + errmsg << "Derivative requested but not allowed (" << name + << ") date: " << t << "\n"; + H_THROW(errmsg.str()); + } } //----------------------------------------------------------------------- @@ -292,11 +363,11 @@ T_data tseries::get_deriv( double t ) const { * interpolation allowed? */ template -void tseries::set_interp( double ia, bool eia, interpolation_methods m ) { - lastInterpYear = ia; - endinterp_allowed = eia; - interpolator.set_method( m ); - dirty = true; +void tseries::set_interp(double ia, bool eia, interpolation_methods m) { + lastInterpYear = ia; + endinterp_allowed = eia; + interpolator.set_method(m); + dirty = true; } //----------------------------------------------------------------------- @@ -304,9 +375,8 @@ void tseries::set_interp( double ia, bool eia, interpolation_methods m ) * * \param eia Whether to allow extrapolation. */ -template -void tseries::allowInterp( bool eia ) { - set_interp( std::numeric_limits::max(), eia, DEFAULT ); +template void tseries::allowInterp(bool eia) { + set_interp(std::numeric_limits::max(), eia, DEFAULT); } //----------------------------------------------------------------------- @@ -315,9 +385,8 @@ void tseries::allowInterp( bool eia ) { * \param eia Whether to allow extrapolation. This would only apply for the * low-end range. */ -template -void tseries::allowPartialInterp( bool eia ) { - set_interp( lastdate(), eia, DEFAULT ); +template void tseries::allowPartialInterp(bool eia) { + set_interp(lastdate(), eia, DEFAULT); } //----------------------------------------------------------------------- @@ -325,10 +394,9 @@ void tseries::allowPartialInterp( bool eia ) { * * Return index of first element in series. */ -template -double tseries::firstdate() const { - H_ASSERT( !mapdata.empty(), "no mapdata" ); - return (*mapdata.begin()).first; +template double tseries::firstdate() const { + H_ASSERT(!mapdata.empty(), "no mapdata"); + return (*mapdata.begin()).first; } //----------------------------------------------------------------------- @@ -336,10 +404,9 @@ double tseries::firstdate() const { * * Return index of last element in series. */ -template -double tseries::lastdate() const { - H_ASSERT( !mapdata.empty(), "no mapdata" ); - return (*mapdata.rbegin()).first; +template double tseries::lastdate() const { + H_ASSERT(!mapdata.empty(), "no mapdata"); + return (*mapdata.rbegin()).first; } //----------------------------------------------------------------------- @@ -347,9 +414,8 @@ double tseries::lastdate() const { * * Return size of series. */ -template -int tseries::size() const { - return int( mapdata.size() ); +template int tseries::size() const { + return int(mapdata.size()); } /*! \brief truncate a time series @@ -376,21 +442,18 @@ int tseries::size() const { * being we will just ensure that the hector ini file is * compatible with whatever GCAM is doing. */ -template -void tseries::truncate(double t, bool after) -{ - typename std::map::iterator it1, it2; - if(after) { - it1 = mapdata.upper_bound(t); - it2 = mapdata.end(); - } - else { - it1 = mapdata.begin(); - it2 = mapdata.lower_bound(t); - } - mapdata.erase(it1,it2); +template void tseries::truncate(double t, bool after) { + typename std::map::iterator it1, it2; + if (after) { + it1 = mapdata.upper_bound(t); + it2 = mapdata.end(); + } else { + it1 = mapdata.begin(); + it2 = mapdata.lower_bound(t); + } + mapdata.erase(it1, it2); } -} +} // namespace Hector #endif diff --git a/inst/include/tvector.hpp b/inst/include/tvector.hpp index b108e4b3b..cc102174f 100644 --- a/inst/include/tvector.hpp +++ b/inst/include/tvector.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -26,14 +26,14 @@ * */ -#include -#include -#include #include +#include +#include #include +#include -#include "logger.hpp" #include "h_exception.hpp" +#include "logger.hpp" namespace Hector { @@ -41,51 +41,47 @@ namespace Hector { * * Currently implemented as an STL map. */ -template -class tvector { - std::map mapdata; +template class tvector { + std::map mapdata; + public: + void set(double, const T_data &); + const T_data &get(double) const; + T_data &get(double); // allow modify-in-place + bool exists(double) const; - void set(double, const T_data &); - const T_data &get(double) const; - T_data &get(double); // allow modify-in-place - bool exists( double ) const; + // indexing operators: the const version is just syntactic sugar + // for get(). The non-const version works differently. If the + // requested object doesn't exist, it default constructs it, + // assigns the new object, and returns the reference to the newly + // created object. This allows you to write tvec[t] = xx. + const T_data &operator[](double t) const { return get(t); } + T_data &operator[](double t); - // indexing operators: the const version is just syntactic sugar - // for get(). The non-const version works differently. If the - // requested object doesn't exist, it default constructs it, - // assigns the new object, and returns the reference to the newly - // created object. This allows you to write tvec[t] = xx. - const T_data &operator[](double t) const { - return get(t); - } - T_data &operator[](double t); + double firstdate() const; + double lastdate() const; - double firstdate() const; - double lastdate() const; + int size() const; - int size() const; + void truncate(double t, bool after = true); - void truncate(double t, bool after=true); private: - static double round(double t) { - // round time values to prevent minute differences in - // representation from resulting in a misidentificaiton. - // Right now we round to the nearest half-integer, but that could - // change in the future, if we need more time resolution. - return 0.5 * ::round(2.0*t); - } + static double round(double t) { + // round time values to prevent minute differences in + // representation from resulting in a misidentificaiton. + // Right now we round to the nearest half-integer, but that could + // change in the future, if we need more time resolution. + return 0.5 * ::round(2.0 * t); + } }; - //----------------------------------------------------------------------- /*! \brief 'Set' for time vector data type. * * Sets an (t, d) tuple, data d at time t. */ -template -void tvector::set(double t, const T_data &d) { - mapdata[round(t)] = d; +template void tvector::set(double t, const T_data &d) { + mapdata[round(t)] = d; } //----------------------------------------------------------------------- @@ -93,9 +89,8 @@ void tvector::set(double t, const T_data &d) { * * Returns a bool to indicate if data exists. */ -template -bool tvector::exists( double t ) const { - return ( mapdata.find( round(t) ) != mapdata.end() ); +template bool tvector::exists(double t) const { + return (mapdata.find(round(t)) != mapdata.end()); } //----------------------------------------------------------------------- @@ -104,16 +99,16 @@ bool tvector::exists( double t ) const { * Return data associated with time t. * If no value exists, raise an exception. */ -template -const T_data &tvector::get( double t ) const { - typename std::map::const_iterator itr = mapdata.find( round(t) ); - if( itr != mapdata.end() ) - return (*itr).second; - else { - std::ostringstream errmsg; - errmsg << "No data at requested time= " << round(t) << "\n"; - H_THROW(errmsg.str()); - } +template const T_data &tvector::get(double t) const { + typename std::map::const_iterator itr = + mapdata.find(round(t)); + if (itr != mapdata.end()) + return (*itr).second; + else { + std::ostringstream errmsg; + errmsg << "No data at requested time= " << round(t) << "\n"; + H_THROW(errmsg.str()); + } } /*! \brief mutable get method @@ -121,41 +116,36 @@ const T_data &tvector::get( double t ) const { * If the time vector object is not const, then get() returns a * non-const reference, allowing an object to be modified in place. */ -template -T_data &tvector::get( double t ) { - typename std::map::iterator itr = mapdata.find( round(t) ); - if( itr != mapdata.end() ) - return itr->second; - else { - std::ostringstream errmsg; - errmsg << "No data at requested time= " << round(t) << "\n"; - H_THROW(errmsg.str()); - } +template T_data &tvector::get(double t) { + typename std::map::iterator itr = mapdata.find(round(t)); + if (itr != mapdata.end()) + return itr->second; + else { + std::ostringstream errmsg; + errmsg << "No data at requested time= " << round(t) << "\n"; + H_THROW(errmsg.str()); + } } -template -T_data &tvector::operator[](double t) { - try { - return get(t); - } - catch(h_exception &fail) { - // h_exception is thrown when the requested object doesn't exist. - T_data newdat = T_data(); - set(t, newdat); - return get(t); // won't fail b/c we just created it - } +template T_data &tvector::operator[](double t) { + try { + return get(t); + } catch (h_exception &fail) { + // h_exception is thrown when the requested object doesn't exist. + T_data newdat = T_data(); + set(t, newdat); + return get(t); // won't fail b/c we just created it + } } - //----------------------------------------------------------------------- /*! \brief Return index of first element in vector. * * Return index of first element in vector. */ -template -double tvector::firstdate() const { - H_ASSERT( !mapdata.empty(), "no mapdata" ); - return (*mapdata.begin()).first; +template double tvector::firstdate() const { + H_ASSERT(!mapdata.empty(), "no mapdata"); + return (*mapdata.begin()).first; } //----------------------------------------------------------------------- @@ -163,10 +153,9 @@ double tvector::firstdate() const { * * Return index of last element in vector. */ -template -double tvector::lastdate() const { - H_ASSERT( !mapdata.empty(), "no mapdata" ); - return (*mapdata.rbegin()).first; +template double tvector::lastdate() const { + H_ASSERT(!mapdata.empty(), "no mapdata"); + return (*mapdata.rbegin()).first; } //----------------------------------------------------------------------- @@ -174,9 +163,8 @@ double tvector::lastdate() const { * * Return size of vector. */ -template -int tvector::size() const { - return int( mapdata.size() ); +template int tvector::size() const { + return int(mapdata.size()); } /*! \brief truncate a time vector @@ -186,22 +174,19 @@ int tvector::size() const { * argument to false, you can wipe data before the input * date instead. */ -template -void tvector::truncate(double t, bool after) -{ - t = round(t); - typename std::map::iterator it1, it2; - if(after) { - it1 = mapdata.upper_bound(t); - it2 = mapdata.end(); - } - else { - it1 = mapdata.begin(); - it2 = mapdata.lower_bound(t); - } - mapdata.erase(it1,it2); +template void tvector::truncate(double t, bool after) { + t = round(t); + typename std::map::iterator it1, it2; + if (after) { + it1 = mapdata.upper_bound(t); + it2 = mapdata.end(); + } else { + it1 = mapdata.begin(); + it2 = mapdata.lower_bound(t); + } + mapdata.erase(it1, it2); } -} +} // namespace Hector #endif diff --git a/inst/include/unitval.hpp b/inst/include/unitval.hpp index 8af09ff9c..97bd88337 100644 --- a/inst/include/unitval.hpp +++ b/inst/include/unitval.hpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -7,17 +7,17 @@ #ifndef UNITVAL_H #define UNITVAL_H /* - * unitval.hpp - a very basic units system for numbers + * unitval.hpp - a basic units system for numbers * hector * - * Created by Ben on 12/31/12. + * Created by Ben on 2012-12-31. * */ #include -#include "logger.hpp" #include "h_exception.hpp" +#include "logger.hpp" // What to use for missing values? If Rcpp is available, use R's more precise // NA, which is a true missing value. Otherwise, fall back on std::NAN @@ -66,120 +66,121 @@ namespace Hector { */ enum unit_types { - U_UNITLESS, // No units - - U_PPMV_CO2, // Atmospheric - U_PPBV, - U_PPTV, - U_PPBV_CH4, - U_PPTV_CH4, - U_PPBV_N2O, - U_PPTV_N2O, - U_MOL_YR, - U_TG_CO, - U_TG_CH4, - U_TG_N, - U_TG_NMVOC, - U_DU_O3, - U_GG_S, // SO2 emissions in Gg-S/yr - - U_TG_PPBV, // Conversion for CH4 and N2O emission to concentrations - - U_DEGC, // Temperature - U_K, // Temperature - U_1_K, // Inverse Temperature - - U_CM2_S, // Diffusivity - - U_CM, // Length-related - U_CM_YR, - - U_G, - U_TG, // Mass-related - U_GG, // Giga-grams - U_MOL, - U_GMOL, - U_GT, - - U_PGC, // Carbon pools and fluxes - U_PGC_YR, - - U_W_M2, // Forcing - U_W_M2_PPTV, // Forcing efficiency - U_W_M2_K, // ocean heat uptake efficiency - - U_M3_S, // sverdrop (volume transport) - U_PH, // pH - U_UATM, - U_UMOL_KG, // umol/kg - U_MOL_KG, // mol/kg - U_gC_m2_month_uatm, //Tr variable for testing - U_MOL_L_ATM, // mol l-1 atm-1 - U_MOL_KG_ATM, // mol kg-1 atm-1 - U_J_KG_C, // specific heat capacity - - U_DOBSON, // Dobson units (ozone) - - U_YRS, // Years - - U_UNDEFINED // Undefined units, - // Warning: all units should be defined - // before U_UNDEFINED - }; + U_UNITLESS, // No units + + U_PPMV_CO2, // Atmospheric + U_PPBV, + U_PPTV, + U_PPBV_CH4, + U_PPTV_CH4, + U_PPBV_N2O, + U_PPTV_N2O, + U_MOL_YR, + U_TG_CO, + U_TG_CH4, + U_TG_N, + U_TG_NMVOC, + U_DU_O3, + U_GG_S, // SO2 emissions in Gg-S/yr + + U_TG_PPBV, // Conversion for CH4 and N2O emission to concentrations + + U_DEGC, // Temperature + U_K, // Temperature + U_1_K, // Inverse Temperature + + U_CM2_S, // Diffusivity + + U_CM, // Length-related + U_CM_YR, + + U_G, + U_TG, // Mass-related + U_GG, // Giga-grams + U_MOL, + U_GMOL, + U_GT, + + U_PGC, // Carbon pools and fluxes + U_PGC_YR, + + U_W_M2, // Forcing + U_W_M2_PPTV, // Forcing efficiency + U_W_M2_TG, // Forcing efficiency + U_W_M2_GG, // Forcing efficiency + U_W_M2_K, // ocean heat uptake efficiency + + U_M3_S, // sverdrop (volume transport) + U_PH, // pH + U_UATM, + U_UMOL_KG, // umol/kg + U_MOL_KG, // mol/kg + U_gC_m2_month_uatm, // Tr variable for testing + U_MOL_L_ATM, // mol l-1 atm-1 + U_MOL_KG_ATM, // mol kg-1 atm-1 + U_J_KG_C, // specific heat capacity + + U_DOBSON, // Dobson units (ozone) + + U_YRS, // Years + + U_UNDEFINED // Undefined units, + // Warning: all units should be defined + // before U_UNDEFINED +}; class unitval { - double val; - double valErr; - unit_types valUnits; +protected: + double val; + double valErr; + unit_types valUnits; public: - static std::string unitsName( const unit_types ); - static unit_types parseUnitsName( const std::string& ); - - unitval(); - unitval( double, unit_types ); - - void set( double, unit_types, double ); - - double value( unit_types ) const; - unit_types units() const { return valUnits; }; - std::string unitsName() const { return unitsName( valUnits ); }; - void expecting_unit( const unit_types& ); - - static unitval parse_unitval( const std::string&, const unit_types& ); - static unitval parse_unitval( const std::string&, const std::string&, const unit_types& ); - - /*! Allow us to assign a unitval to a double. - * \note Do not use this in Hector. It is intended for other - * codes that use libhector and don't want to carry - * around units. - */ - operator double() const {return val;} - - friend unitval operator+ ( const unitval&, const unitval& ); - friend unitval operator- ( const unitval&, const unitval& ); - friend unitval operator- ( const unitval& ); - friend unitval operator* ( const unitval&, const double ); - friend unitval operator* ( const double, const unitval& ); - friend unitval operator/ ( const unitval&, const double ); - friend unitval operator/ ( const double, const unitval& ); - friend double operator/ ( const unitval&, const unitval& ); - friend std::ostream& operator<<( std::ostream &out, const unitval &x ); - + static std::string unitsName(const unit_types); + static unit_types parseUnitsName(const std::string &); + + unitval(); + unitval(double, unit_types); + + void set(double, unit_types, double); + + double value(unit_types) const; + unit_types units() const { return valUnits; }; + std::string unitsName() const { return unitsName(valUnits); }; + void expecting_unit(const unit_types &); + + static unitval parse_unitval(const std::string &, const unit_types &); + static unitval parse_unitval(const std::string &, const std::string &, + const unit_types &); + + /*! Allow us to assign a unitval to a double. + * \note Do not use this in Hector. It is intended for other + * codes that use libhector and don't want to carry + * around units. + */ + operator double() const { return val; } + + friend unitval operator+(const unitval &, const unitval &); + friend unitval operator-(const unitval &, const unitval &); + friend unitval operator-(const unitval &); + friend unitval operator*(const unitval &, const double); + friend unitval operator*(const double, const unitval &); + friend unitval operator/(const unitval &, const double); + friend unitval operator/(const double, const unitval &); + friend double operator/(const unitval &, const unitval &); + friend std::ostream &operator<<(std::ostream &out, const unitval &x); }; - //----------------------------------------------------------------------- /*! \brief Constructor for units data type. * * Initializes internal variables. */ -inline -unitval::unitval() { - val = 0.0; - valErr = 0.0; - valUnits = U_UNDEFINED; +inline unitval::unitval() { + val = 0.0; + valErr = 0.0; + valUnits = U_UNDEFINED; } //----------------------------------------------------------------------- @@ -187,10 +188,9 @@ unitval::unitval() { * * Initializes internal variables and sets value and units. */ -inline -unitval::unitval( double v, unit_types u ) { - val = v; - valUnits = u; +inline unitval::unitval(double v, unit_types u) { + val = v; + valUnits = u; } //----------------------------------------------------------------------- @@ -202,55 +202,50 @@ unitval::unitval( double v, unit_types u ) { * exception. If the change in units was intentional, you must catch * this exception to continue normally. */ -inline -void unitval::set( double v, unit_types u, double err=0.0 ) { - unit_types old_units(valUnits); - val = v; - valErr = err; - valUnits = u; - if( old_units != U_UNDEFINED && u != old_units ) { - std::ostringstream errmsg; - errmsg << "Variable units have been redefined. Old unit = " - << old_units << " New unit = " << u << "\n"; - H_THROW(errmsg.str()); - } +inline void unitval::set(double v, unit_types u, double err = 0.0) { + unit_types old_units(valUnits); + val = v; + valErr = err; + valUnits = u; + if (old_units != U_UNDEFINED && u != old_units) { + std::ostringstream errmsg; + errmsg << "Variable units have been redefined. Old unit = " << old_units + << " New unit = " << u << "\n"; + H_THROW(errmsg.str()); + } } - //----------------------------------------------------------------------- /*! \brief Get the variable's value. * * Get value. Caller has to provide assumed units, as a check. */ -inline -double unitval::value( unit_types u ) const { - H_ASSERT( u==valUnits, "variable is not of this type. Expected: " + unitsName(valUnits) + - "; got: " + unitsName(u) ); - return( val ); +inline double unitval::value(unit_types u) const { + if (u != valUnits) { + H_ASSERT(u == valUnits, "variable is not of this type. Expected: " + + unitsName(valUnits) + "; got: " + unitsName(u)); + } + return (val); } //----------------------------------------------------------------------- /*! \brief Operator overload: addition. * * Add two unitvals. Must be of the same type. - * TODO: should we add the errors? */ -inline -unitval operator+ ( const unitval& lhs, const unitval& rhs ) { - H_ASSERT( lhs.valUnits==rhs.valUnits, "units mismatch" ); - return unitval( lhs.val+rhs.val, lhs.valUnits ); +inline unitval operator+(const unitval &lhs, const unitval &rhs) { + H_ASSERT(lhs.valUnits == rhs.valUnits, "units mismatch"); + return unitval(lhs.val + rhs.val, lhs.valUnits); } //----------------------------------------------------------------------- /*! \brief Operator overload: subtraction. * * Subtract two unitvals. Must be of the same type. - * TODO: should we add the errors? */ -inline -unitval operator- ( const unitval& lhs, const unitval& rhs ) { - H_ASSERT( lhs.valUnits==rhs.valUnits, "units mismatch" ); - return unitval( lhs.val-rhs.val, lhs.valUnits ); +inline unitval operator-(const unitval &lhs, const unitval &rhs) { + H_ASSERT(lhs.valUnits == rhs.valUnits, "units mismatch"); + return unitval(lhs.val - rhs.val, lhs.valUnits); } //----------------------------------------------------------------------- @@ -258,53 +253,44 @@ unitval operator- ( const unitval& lhs, const unitval& rhs ) { * * Unary minus. */ -inline -unitval operator- ( const unitval& rhs ) { - return unitval( -rhs.val, rhs.valUnits ); +inline unitval operator-(const unitval &rhs) { + return unitval(-rhs.val, rhs.valUnits); } //----------------------------------------------------------------------- /*! \brief Operator overload: constant multiplication. * * Multiply a unitval by a double. - * TODO: should we multiply error as well? */ -inline -unitval operator* ( const unitval& lhs, const double rhs ) { - return unitval( lhs.val*rhs, lhs.valUnits ); +inline unitval operator*(const unitval &lhs, const double rhs) { + return unitval(lhs.val * rhs, lhs.valUnits); } //----------------------------------------------------------------------- /*! \brief Operator overload: constant multiplication. * * Multiply a unitval by a double. - * TODO: should we multiply error as well? */ -inline -unitval operator* ( const double lhs, const unitval& rhs ) { - return unitval( lhs*rhs.val, rhs.valUnits ); +inline unitval operator*(const double lhs, const unitval &rhs) { + return unitval(lhs * rhs.val, rhs.valUnits); } //----------------------------------------------------------------------- /*! \brief Operator overload: constant division. * * Divide a unitval by a double. - * TODO: should we divide error as well? */ -inline -unitval operator/ ( const unitval& lhs, const double rhs ) { - return unitval( lhs.val/rhs, lhs.valUnits ); +inline unitval operator/(const unitval &lhs, const double rhs) { + return unitval(lhs.val / rhs, lhs.valUnits); } //----------------------------------------------------------------------- /*! \brief Operator overload: constant division. * * Divide a unitval by a double. - * TODO: should we divide error as well? */ -inline -unitval operator/ ( const double lhs, const unitval& rhs ) { - return unitval( lhs/rhs.val, rhs.valUnits ); +inline unitval operator/(const double lhs, const unitval &rhs) { + return unitval(lhs / rhs.val, rhs.valUnits); } //----------------------------------------------------------------------- @@ -312,10 +298,9 @@ unitval operator/ ( const double lhs, const unitval& rhs ) { * * Divide two unitvals. Must be of the same type, returning double. */ -inline -double operator/ ( const unitval& lhs, const unitval& rhs ) { - H_ASSERT( lhs.valUnits==rhs.valUnits, "units mismatch" ); - return lhs.val/rhs.val; +inline double operator/(const unitval &lhs, const unitval &rhs) { + H_ASSERT(lhs.valUnits == rhs.valUnits, "units mismatch"); + return lhs.val / rhs.val; } //----------------------------------------------------------------------- @@ -323,12 +308,11 @@ double operator/ ( const unitval& lhs, const unitval& rhs ) { * * Print a unitval. */ -inline -std::ostream& operator<<( std::ostream &out, const unitval &x ) { - out << x.value( x.units() ) << " " << x.unitsName(); - return out; +inline std::ostream &operator<<(std::ostream &out, const unitval &x) { + out << x.value(x.units()) << " " << x.unitsName(); + return out; } -} +} // namespace Hector #endif diff --git a/inst/input/constraints/MAGICC_RF_4.5.csv b/inst/input/constraints/MAGICC_RF_4.5.csv deleted file mode 100644 index 56ee3becd..000000000 --- a/inst/input/constraints/MAGICC_RF_4.5.csv +++ /dev/null @@ -1,538 +0,0 @@ -; total RF including volcanic from MAGICC6 RCP45, -year,Ftot_constrain -1765,0.00E+00 -1766,9.80E-03 -1767,4.06E-02 -1768,4.64E-02 -1769,9.60E-03 -1770,1.04E-02 -1771,5.17E-02 -1772,6.74E-02 -1773,5.83E-02 -1774,4.57E-02 -1775,3.64E-02 -1776,4.44E-02 -1777,7.33E-02 -1778,1.05E-01 -1779,1.15E-01 -1780,1.09E-01 -1781,1.01E-01 -1782,5.86E-02 -1783,-5.68E-02 -1784,-1.42E-01 -1785,-7.00E-02 -1786,5.71E-02 -1787,1.21E-01 -1788,1.29E-01 -1789,1.86E-02 -1790,-1.44E-01 -1791,-1.24E-01 -1792,3.54E-04 -1793,6.21E-02 -1794,5.93E-02 -1795,2.44E-02 -1796,1.26E-02 -1797,2.96E-02 -1798,4.50E-02 -1799,5.32E-02 -1800,7.10E-02 -1801,9.34E-02 -1802,9.05E-02 -1803,7.59E-02 -1804,7.38E-02 -1805,7.31E-02 -1806,6.41E-02 -1807,5.49E-02 -1808,-4.39E-01 -1809,-1.58E+00 -1810,-1.98E+00 -1811,-1.19E+00 -1812,-5.12E-01 -1813,-3.10E-01 -1814,-8.31E-01 -1815,-2.29E+00 -1816,-2.80E+00 -1817,-1.63E+00 -1818,-4.98E-01 -1819,-4.71E-02 -1820,7.94E-02 -1821,8.65E-02 -1822,8.91E-02 -1823,9.31E-02 -1824,1.01E-01 -1825,1.15E-01 -1826,1.34E-01 -1827,1.53E-01 -1828,1.63E-01 -1829,1.37E-01 -1830,-8.09E-02 -1831,-4.75E-01 -1832,-5.83E-01 -1833,-2.94E-01 -1834,-4.48E-01 -1835,-1.05E+00 -1836,-9.68E-01 -1837,-3.57E-01 -1838,1.67E-02 -1839,1.31E-01 -1840,1.11E-01 -1841,8.69E-02 -1842,8.75E-02 -1843,6.10E-02 -1844,5.61E-02 -1845,1.06E-01 -1846,1.59E-01 -1847,1.97E-01 -1848,2.26E-01 -1849,2.13E-01 -1850,1.73E-01 -1851,1.66E-01 -1852,1.68E-01 -1853,1.61E-01 -1854,1.52E-01 -1855,1.04E-02 -1856,-4.44E-01 -1857,-6.77E-01 -1858,-3.29E-01 -1859,2.97E-02 -1860,1.58E-01 -1861,1.25E-01 -1862,2.57E-02 -1863,3.15E-02 -1864,1.04E-01 -1865,1.38E-01 -1866,1.43E-01 -1867,1.47E-01 -1868,1.72E-01 -1869,2.08E-01 -1870,2.37E-01 -1871,2.36E-01 -1872,1.90E-01 -1873,1.37E-01 -1874,1.21E-01 -1875,1.00E-01 -1876,5.59E-02 -1877,6.05E-02 -1878,1.02E-01 -1879,1.36E-01 -1880,1.68E-01 -1881,1.97E-01 -1882,1.07E-01 -1883,-7.96E-01 -1884,-1.53E+00 -1885,-9.51E-01 -1886,-4.68E-01 -1887,-3.50E-01 -1888,-2.49E-01 -1889,-3.17E-01 -1890,-3.56E-01 -1891,-2.61E-01 -1892,-6.10E-02 -1893,1.08E-01 -1894,2.26E-01 -1895,2.03E-01 -1896,3.05E-02 -1897,-6.93E-02 -1898,2.63E-02 -1899,1.36E-01 -1900,1.82E-01 -1901,1.66E-01 -1902,-2.74E-01 -1903,-6.36E-01 -1904,-3.14E-01 -1905,5.26E-02 -1906,1.57E-01 -1907,1.37E-01 -1908,1.54E-01 -1909,2.20E-01 -1910,2.42E-01 -1911,2.43E-01 -1912,5.43E-03 -1913,-8.96E-02 -1914,1.55E-01 -1915,3.12E-01 -1916,3.87E-01 -1917,4.23E-01 -1918,4.30E-01 -1919,4.08E-01 -1920,3.06E-01 -1921,2.81E-01 -1922,3.67E-01 -1923,3.86E-01 -1924,3.89E-01 -1925,4.24E-01 -1926,4.69E-01 -1927,4.89E-01 -1928,4.42E-01 -1929,3.92E-01 -1930,4.20E-01 -1931,4.46E-01 -1932,4.13E-01 -1933,4.24E-01 -1934,4.85E-01 -1935,5.41E-01 -1936,5.99E-01 -1937,6.13E-01 -1938,6.01E-01 -1939,6.05E-01 -1940,6.16E-01 -1941,6.08E-01 -1942,5.64E-01 -1943,5.40E-01 -1944,5.69E-01 -1945,6.08E-01 -1946,6.42E-01 -1947,6.57E-01 -1948,6.66E-01 -1949,6.46E-01 -1950,6.09E-01 -1951,5.69E-01 -1952,5.34E-01 -1953,5.14E-01 -1954,5.22E-01 -1955,5.83E-01 -1956,6.67E-01 -1957,7.34E-01 -1958,7.50E-01 -1959,7.36E-01 -1960,6.48E-01 -1961,5.19E-01 -1962,4.13E-01 -1963,-7.04E-02 -1964,-4.18E-01 -1965,-6.98E-02 -1966,3.61E-01 -1967,5.36E-01 -1968,3.77E-01 -1969,3.43E-01 -1970,6.15E-01 -1971,8.05E-01 -1972,8.65E-01 -1973,8.30E-01 -1974,6.83E-01 -1975,5.89E-01 -1976,7.45E-01 -1977,9.66E-01 -1978,1.04E+00 -1979,1.12E+00 -1980,1.23E+00 -1981,1.18E+00 -1982,4.82E-01 -1983,1.76E-01 -1984,7.19E-01 -1985,1.02E+00 -1986,1.11E+00 -1987,1.20E+00 -1988,1.34E+00 -1989,1.47E+00 -1990,1.51E+00 -1991,5.74E-01 -1992,-4.93E-02 -1993,6.65E-01 -1994,1.20E+00 -1995,1.41E+00 -1996,1.51E+00 -1997,1.58E+00 -1998,1.69E+00 -1999,1.80E+00 -2000,1.86E+00 -2001,1.90E+00 -2002,1.91E+00 -2003,1.91E+00 -2004,1.89E+00 -2005,1.90E+00 -2006,1.92E+00 -2007,1.95E+00 -2008,1.99E+00 -2009,2.07E+00 -2010,2.16E+00 -2011,2.19E+00 -2012,2.23E+00 -2013,2.28E+00 -2014,2.32E+00 -2015,2.36E+00 -2016,2.41E+00 -2017,2.45E+00 -2018,2.49E+00 -2019,2.54E+00 -2020,2.58E+00 -2021,2.62E+00 -2022,2.66E+00 -2023,2.70E+00 -2024,2.75E+00 -2025,2.79E+00 -2026,2.83E+00 -2027,2.87E+00 -2028,2.91E+00 -2029,2.95E+00 -2030,3.00E+00 -2031,3.04E+00 -2032,3.08E+00 -2033,3.12E+00 -2034,3.16E+00 -2035,3.20E+00 -2036,3.24E+00 -2037,3.28E+00 -2038,3.32E+00 -2039,3.36E+00 -2040,3.40E+00 -2041,3.43E+00 -2042,3.47E+00 -2043,3.51E+00 -2044,3.54E+00 -2045,3.58E+00 -2046,3.61E+00 -2047,3.65E+00 -2048,3.68E+00 -2049,3.71E+00 -2050,3.74E+00 -2051,3.77E+00 -2052,3.80E+00 -2053,3.83E+00 -2054,3.85E+00 -2055,3.88E+00 -2056,3.90E+00 -2057,3.92E+00 -2058,3.95E+00 -2059,3.97E+00 -2060,3.99E+00 -2061,4.01E+00 -2062,4.03E+00 -2063,4.05E+00 -2064,4.06E+00 -2065,4.08E+00 -2066,4.09E+00 -2067,4.11E+00 -2068,4.12E+00 -2069,4.13E+00 -2070,4.14E+00 -2071,4.15E+00 -2072,4.16E+00 -2073,4.17E+00 -2074,4.18E+00 -2075,4.18E+00 -2076,4.19E+00 -2077,4.19E+00 -2078,4.20E+00 -2079,4.20E+00 -2080,4.20E+00 -2081,4.20E+00 -2082,4.20E+00 -2083,4.19E+00 -2084,4.19E+00 -2085,4.19E+00 -2086,4.20E+00 -2087,4.20E+00 -2088,4.20E+00 -2089,4.20E+00 -2090,4.20E+00 -2091,4.21E+00 -2092,4.21E+00 -2093,4.21E+00 -2094,4.22E+00 -2095,4.22E+00 -2096,4.22E+00 -2097,4.23E+00 -2098,4.23E+00 -2099,4.24E+00 -2100,4.24E+00 -2101,4.25E+00 -2102,4.25E+00 -2103,4.25E+00 -2104,4.26E+00 -2105,4.26E+00 -2106,4.26E+00 -2107,4.27E+00 -2108,4.27E+00 -2109,4.27E+00 -2110,4.27E+00 -2111,4.28E+00 -2112,4.28E+00 -2113,4.28E+00 -2114,4.28E+00 -2115,4.28E+00 -2116,4.28E+00 -2117,4.28E+00 -2118,4.28E+00 -2119,4.28E+00 -2120,4.28E+00 -2121,4.28E+00 -2122,4.28E+00 -2123,4.28E+00 -2124,4.28E+00 -2125,4.28E+00 -2126,4.28E+00 -2127,4.28E+00 -2128,4.28E+00 -2129,4.28E+00 -2130,4.28E+00 -2131,4.28E+00 -2132,4.28E+00 -2133,4.28E+00 -2134,4.28E+00 -2135,4.28E+00 -2136,4.28E+00 -2137,4.28E+00 -2138,4.28E+00 -2139,4.28E+00 -2140,4.28E+00 -2141,4.28E+00 -2142,4.28E+00 -2143,4.28E+00 -2144,4.28E+00 -2145,4.28E+00 -2146,4.28E+00 -2147,4.28E+00 -2148,4.28E+00 -2149,4.28E+00 -2150,4.28E+00 -2151,4.28E+00 -2152,4.27E+00 -2153,4.27E+00 -2154,4.27E+00 -2155,4.27E+00 -2156,4.27E+00 -2157,4.27E+00 -2158,4.27E+00 -2159,4.27E+00 -2160,4.27E+00 -2161,4.27E+00 -2162,4.27E+00 -2163,4.27E+00 -2164,4.27E+00 -2165,4.27E+00 -2166,4.27E+00 -2167,4.27E+00 -2168,4.27E+00 -2169,4.27E+00 -2170,4.27E+00 -2171,4.27E+00 -2172,4.27E+00 -2173,4.27E+00 -2174,4.27E+00 -2175,4.27E+00 -2176,4.27E+00 -2177,4.27E+00 -2178,4.27E+00 -2179,4.27E+00 -2180,4.27E+00 -2181,4.27E+00 -2182,4.27E+00 -2183,4.27E+00 -2184,4.27E+00 -2185,4.27E+00 -2186,4.27E+00 -2187,4.27E+00 -2188,4.27E+00 -2189,4.27E+00 -2190,4.27E+00 -2191,4.27E+00 -2192,4.27E+00 -2193,4.27E+00 -2194,4.27E+00 -2195,4.27E+00 -2196,4.27E+00 -2197,4.27E+00 -2198,4.27E+00 -2199,4.27E+00 -2200,4.27E+00 -2201,4.27E+00 -2202,4.27E+00 -2203,4.27E+00 -2204,4.27E+00 -2205,4.27E+00 -2206,4.27E+00 -2207,4.27E+00 -2208,4.27E+00 -2209,4.27E+00 -2210,4.27E+00 -2211,4.27E+00 -2212,4.27E+00 -2213,4.27E+00 -2214,4.27E+00 -2215,4.27E+00 -2216,4.27E+00 -2217,4.27E+00 -2218,4.27E+00 -2219,4.27E+00 -2220,4.27E+00 -2221,4.27E+00 -2222,4.27E+00 -2223,4.27E+00 -2224,4.27E+00 -2225,4.27E+00 -2226,4.27E+00 -2227,4.27E+00 -2228,4.27E+00 -2229,4.27E+00 -2230,4.27E+00 -2231,4.27E+00 -2232,4.27E+00 -2233,4.27E+00 -2234,4.27E+00 -2235,4.27E+00 -2236,4.27E+00 -2237,4.27E+00 -2238,4.27E+00 -2239,4.27E+00 -2240,4.27E+00 -2241,4.27E+00 -2242,4.27E+00 -2243,4.27E+00 -2244,4.27E+00 -2245,4.27E+00 -2246,4.27E+00 -2247,4.27E+00 -2248,4.27E+00 -2249,4.27E+00 -2250,4.27E+00 -2251,4.27E+00 -2252,4.27E+00 -2253,4.27E+00 -2254,4.27E+00 -2255,4.27E+00 -2256,4.27E+00 -2257,4.27E+00 -2258,4.27E+00 -2259,4.27E+00 -2260,4.27E+00 -2261,4.27E+00 -2262,4.27E+00 -2263,4.27E+00 -2264,4.27E+00 -2265,4.27E+00 -2266,4.27E+00 -2267,4.27E+00 -2268,4.27E+00 -2269,4.27E+00 -2270,4.27E+00 -2271,4.27E+00 -2272,4.27E+00 -2273,4.27E+00 -2274,4.27E+00 -2275,4.27E+00 -2276,4.27E+00 -2277,4.27E+00 -2278,4.27E+00 -2279,4.27E+00 -2280,4.27E+00 -2281,4.27E+00 -2282,4.27E+00 -2283,4.27E+00 -2284,4.27E+00 -2285,4.27E+00 -2286,4.27E+00 -2287,4.27E+00 -2288,4.27E+00 -2289,4.27E+00 -2290,4.27E+00 -2291,4.27E+00 -2292,4.27E+00 -2293,4.27E+00 -2294,4.27E+00 -2295,4.27E+00 -2296,4.27E+00 -2297,4.27E+00 -2298,4.27E+00 -2299,4.27E+00 -2300,4.27E+00 diff --git a/inst/input/constraints/lawdome_co2.csv b/inst/input/constraints/lawdome_co2.csv deleted file mode 100644 index 959cfe206..000000000 --- a/inst/input/constraints/lawdome_co2.csv +++ /dev/null @@ -1,232 +0,0 @@ -; Historical CO2 record derived from a spline fit (75 year cutoff) of the Law Dome , -; from http://cdiac.ornl.gov/ftp/trends/co2/lawdome.smoothed.yr75, -Date,CO2_constrain -UNITS,ppmv CO2 -1010,279.5 -1015,279.6 -1020,279.7 -1025,279.8 -1030,279.9 -1035,280 -1040,280.2 -1045,280.3 -1050,280.5 -1055,280.7 -1060,280.9 -1065,281.1 -1070,281.3 -1075,281.5 -1080,281.7 -1085,281.9 -1090,282.1 -1095,282.3 -1100,282.5 -1105,282.7 -1110,282.9 -1115,283 -1120,283.2 -1125,283.3 -1130,283.5 -1135,283.6 -1140,283.7 -1145,283.8 -1150,283.9 -1155,284 -1160,284 -1165,284.1 -1170,284.1 -1175,284.1 -1180,284 -1185,284 -1190,283.9 -1195,283.8 -1200,283.6 -1205,283.4 -1210,283.2 -1215,283 -1220,282.8 -1225,282.5 -1230,282.3 -1235,282.2 -1240,282 -1245,281.9 -1250,281.9 -1255,281.9 -1260,282 -1265,282.1 -1270,282.2 -1275,282.3 -1280,282.5 -1285,282.6 -1290,282.8 -1295,282.9 -1300,283 -1305,283.1 -1310,283.2 -1315,283.3 -1320,283.3 -1325,283.2 -1330,283.1 -1335,282.9 -1340,282.7 -1345,282.4 -1350,282.1 -1355,281.8 -1360,281.5 -1365,281.2 -1370,281 -1375,280.7 -1380,280.5 -1385,280.4 -1390,280.3 -1395,280.3 -1400,280.3 -1405,280.4 -1410,280.5 -1415,280.6 -1420,280.7 -1425,280.8 -1430,280.9 -1435,280.9 -1440,280.9 -1445,280.9 -1450,280.8 -1455,280.7 -1460,280.6 -1465,280.6 -1470,280.6 -1475,280.8 -1480,281 -1485,281.3 -1490,281.6 -1495,281.9 -1500,282.2 -1505,282.5 -1510,282.7 -1515,282.9 -1520,283.1 -1525,283.2 -1530,283.2 -1535,283.2 -1540,283.1 -1545,283 -1550,282.8 -1555,282.6 -1560,282.2 -1565,281.8 -1570,281.2 -1575,280.5 -1580,279.7 -1585,278.8 -1590,278 -1595,277.1 -1600,276.4 -1605,275.8 -1610,275.5 -1615,275.3 -1620,275.3 -1625,275.4 -1630,275.6 -1635,275.9 -1640,276.1 -1645,276.3 -1650,276.4 -1655,276.5 -1660,276.5 -1665,276.5 -1670,276.4 -1675,276.4 -1680,276.4 -1685,276.4 -1690,276.5 -1695,276.6 -1700,276.7 -1705,276.8 -1710,276.9 -1715,277 -1720,277 -1725,277 -1730,277 -1735,276.9 -1740,276.9 -1745,276.9 -1750,277 -1755,277.2 -1760,277.6 -1765,278 -1770,278.6 -1775,279.3 -1780,280.1 -1785,280.8 -1790,281.6 -1795,282.3 -1800,282.9 -1805,283.4 -1810,283.8 -1815,284 -1820,284.2 -1825,284.3 -1830,284.4 -1835,284.5 -1840,284.6 -1845,284.8 -1850,285.2 -1855,285.7 -1860,286.3 -1865,287.2 -1870,288.2 -1875,289.4 -1880,290.8 -1885,292.3 -1890,293.7 -1895,295.2 -1900,296.7 -1905,298.2 -1910,299.9 -1915,301.5 -1920,303.2 -1925,304.9 -1930,306.5 -1935,308 -1940,309.3 -1945,310.5 -1950,312 -1955,314.1 -1960,316.9 -1965,320.5 -1970,324.7 -1975,329.4 -; following records are from Mauna Loa, -1976,332.15 -1977,333.9 -1978,335.51 -1979,336.85 -1980,338.69 -1981,339.93 -1982,341.13 -1983,342.78 -1984,344.42 -1985,345.9 -1986,347.15 -1987,348.93 -1988,351.48 -1989,352.91 -1990,354.19 -1991,355.59 -1992,356.37 -1993,357.04 -1994,358.89 -1995,360.88 -1996,362.64 -1997,363.76 -1998,366.63 -1999,368.31 -2000,369.48 -2001,371.02 -2002,373.1 -2003,375.64 -2004,377.38 -2005,379.67 -2006,381.84 -2007,383.55 -2008,385.34 diff --git a/inst/input/constraints/rcp26_co2ppm.csv b/inst/input/constraints/rcp26_co2ppm.csv deleted file mode 100644 index 31192fb2a..000000000 --- a/inst/input/constraints/rcp26_co2ppm.csv +++ /dev/null @@ -1,538 +0,0 @@ -; RCP2.6 CO2 concentrations in ppm, -Date,CO2_constrain -1765,278.05158 -1766,278.10615 -1767,278.22039 -1768,278.34305 -1769,278.47058 -1770,278.60047 -1771,278.73275 -1772,278.86881 -1773,279.00907 -1774,279.15318 -1775,279.3018 -1776,279.4568 -1777,279.61808 -1778,279.78192 -1779,279.9432 -1780,280.0974 -1781,280.2428 -1782,280.38168 -1783,280.51832 -1784,280.6572 -1785,280.8026 -1786,280.9568 -1787,281.11808 -1788,281.28192 -1789,281.4432 -1790,281.5982 -1791,281.74682 -1792,281.89093 -1793,282.03119 -1794,282.16725 -1795,282.29901 -1796,282.4268 -1797,282.55093 -1798,282.67123 -1799,282.7873 -1800,282.89901 -1801,283.00677 -1802,283.11093 -1803,283.21129 -1804,283.30737 -1805,283.39963 -1806,283.48978 -1807,283.57796 -1808,283.66116 -1809,283.73511 -1810,283.79676 -1811,283.84667 -1812,283.88853 -1813,283.92613 -1814,283.96267 -1815,284.00107 -1816,284.04267 -1817,284.08613 -1818,284.12853 -1819,284.16667 -1820,284.1982 -1821,284.22333 -1822,284.24427 -1823,284.26307 -1824,284.28133 -1825,284.30027 -1826,284.32 -1827,284.34 -1828,284.36 -1829,284.38 -1830,284.4 -1831,284.385 -1832,284.28 -1833,284.125 -1834,283.975 -1835,283.825 -1836,283.675 -1837,283.525 -1838,283.425 -1839,283.4 -1840,283.4 -1841,283.425 -1842,283.5 -1843,283.6 -1844,283.725 -1845,283.9 -1846,284.075 -1847,284.225 -1848,284.4 -1849,284.575 -1850,284.725 -1851,284.875 -1852,285 -1853,285.125 -1854,285.275 -1855,285.425 -1856,285.575 -1857,285.725 -1858,285.9 -1859,286.075 -1860,286.225 -1861,286.375 -1862,286.5 -1863,286.625 -1864,286.775 -1865,286.9 -1866,287 -1867,287.1 -1868,287.225 -1869,287.375 -1870,287.525 -1871,287.7 -1872,287.9 -1873,288.125 -1874,288.4 -1875,288.7 -1876,289.025 -1877,289.4 -1878,289.8 -1879,290.225 -1880,290.7 -1881,291.2 -1882,291.675 -1883,292.125 -1884,292.575 -1885,292.975 -1886,293.3 -1887,293.575 -1888,293.8 -1889,294 -1890,294.175 -1891,294.325 -1892,294.475 -1893,294.6 -1894,294.7 -1895,294.8 -1896,294.9 -1897,295.025 -1898,295.225 -1899,295.5 -1900,295.8 -1901,296.125 -1902,296.475 -1903,296.825 -1904,297.2 -1905,297.625 -1906,298.075 -1907,298.5 -1908,298.9 -1909,299.3 -1910,299.7 -1911,300.075 -1912,300.425 -1913,300.775 -1914,301.1 -1915,301.4 -1916,301.725 -1917,302.075 -1918,302.4 -1919,302.7 -1920,303.025 -1921,303.4 -1922,303.775 -1923,304.125 -1924,304.525 -1925,304.975 -1926,305.4 -1927,305.825 -1928,306.3 -1929,306.775 -1930,307.225 -1931,307.7 -1932,308.175 -1933,308.6 -1934,309 -1935,309.4 -1936,309.75 -1937,310 -1938,310.175 -1939,310.3 -1940,310.375 -1941,310.375 -1942,310.3 -1943,310.2 -1944,310.125 -1945,310.1 -1946,310.125 -1947,310.2 -1948,310.325 -1949,310.5 -1950,310.75 -1951,311.1 -1952,311.5 -1953,311.925 -1954,312.425 -1955,313 -1956,313.6 -1957,314.225 -1958,314.8475 -1959,315.5 -1960,316.2725 -1961,317.075 -1962,317.795 -1963,318.3975 -1964,318.925 -1965,319.6475 -1966,320.6475 -1967,321.605 -1968,322.635 -1969,323.9025 -1970,324.985 -1971,325.855 -1972,327.14 -1973,328.6775 -1974,329.7425 -1975,330.585 -1976,331.7475 -1977,333.2725 -1978,334.8475 -1979,336.525 -1980,338.36 -1981,339.7275 -1982,340.7925 -1983,342.1975 -1984,343.7825 -1985,345.2825 -1986,346.7975 -1987,348.645 -1988,350.7375 -1989,352.4875 -1990,353.855 -1991,355.0175 -1992,355.885 -1993,356.7775 -1994,358.1275 -1995,359.8375 -1996,361.4625 -1997,363.155 -1998,365.3225 -1999,367.3475 -2000,368.865 -2001,370.4675 -2002,372.5225 -2003,374.76 -2004,376.8125 -2005,378.8125 -2006,380.8275 -2007,382.7775 -2008,384.8 -2009,387.00054 -2010,389.28521 -2011,391.56252 -2012,393.84273 -2013,396.11734 -2014,398.39568 -2015,400.68068 -2016,402.9683 -2017,405.25182 -2018,407.52882 -2019,409.80029 -2020,412.06783 -2021,414.32565 -2022,416.51662 -2023,418.60322 -2024,420.60132 -2025,422.51575 -2026,424.34901 -2027,426.09675 -2028,427.75232 -2029,429.31381 -2030,430.78315 -2031,432.16344 -2032,433.43618 -2033,434.59273 -2034,435.65302 -2035,436.62804 -2036,437.52158 -2037,438.33433 -2038,439.06015 -2039,439.69061 -2040,440.2224 -2041,440.65666 -2042,441.02476 -2043,441.34651 -2044,441.621 -2045,441.8644 -2046,442.08482 -2047,442.2834 -2048,442.4583 -2049,442.60091 -2050,442.70046 -2051,442.75184 -2052,442.761 -2053,442.73417 -2054,442.66263 -2055,442.54767 -2056,442.40642 -2057,442.24833 -2058,442.07535 -2059,441.88625 -2060,441.67274 -2061,441.42415 -2062,441.1345 -2063,440.80284 -2064,440.43041 -2065,440.01021 -2066,439.54473 -2067,439.05222 -2068,438.54291 -2069,438.01932 -2070,437.48062 -2071,436.91878 -2072,436.34251 -2073,435.76436 -2074,435.18189 -2075,434.595 -2076,433.99542 -2077,433.38456 -2078,432.77961 -2079,432.18978 -2080,431.61659 -2081,431.05847 -2082,430.51026 -2083,429.96413 -2084,429.41411 -2085,428.85906 -2086,428.2991 -2087,427.72652 -2088,427.14308 -2089,426.56607 -2090,426.00472 -2091,425.46065 -2092,424.93745 -2093,424.43129 -2094,423.93083 -2095,423.43058 -2096,422.92945 -2097,422.42761 -2098,421.91753 -2099,421.40111 -2100,420.89546 -2101,420.40998 -2102,419.94532 -2103,419.49831 -2104,419.05981 -2105,418.61902 -2106,418.17082 -2107,417.71454 -2108,417.2507 -2109,416.77219 -2110,416.28127 -2111,415.79518 -2112,415.32319 -2113,414.86696 -2114,414.42496 -2115,413.98893 -2116,413.54867 -2117,413.09942 -2118,412.64076 -2119,412.17338 -2120,411.69045 -2121,411.19435 -2122,410.70228 -2123,410.22339 -2124,409.7593 -2125,409.30847 -2126,408.8627 -2127,408.41656 -2128,407.96956 -2129,407.52073 -2130,407.07051 -2131,406.61189 -2132,406.14707 -2133,405.69286 -2134,405.25809 -2135,404.84413 -2136,404.44922 -2137,404.06507 -2138,403.68161 -2139,403.29415 -2140,402.90226 -2141,402.50662 -2142,402.10056 -2143,401.68653 -2144,401.28131 -2145,400.89375 -2146,400.52523 -2147,400.17404 -2148,399.83204 -2149,399.4893 -2150,399.14131 -2151,398.78772 -2152,398.42927 -2153,398.0595 -2154,397.68091 -2155,397.31021 -2156,396.95616 -2157,396.62009 -2158,396.3003 -2159,395.98871 -2160,395.67554 -2161,395.35634 -2162,395.03085 -2163,394.69985 -2164,394.357 -2165,394.00489 -2166,393.6601 -2167,393.33128 -2168,393.01974 -2169,392.72374 -2170,392.43525 -2171,392.1446 -2172,391.84744 -2173,391.54354 -2174,391.2337 -2175,390.91172 -2176,390.58024 -2177,390.25571 -2178,389.94668 -2179,389.65441 -2180,389.37713 -2181,389.10687 -2182,388.83404 -2183,388.55437 -2184,388.26765 -2185,387.97473 -2186,387.6695 -2187,387.35465 -2188,387.04651 -2189,386.75353 -2190,386.47692 -2191,386.21487 -2192,385.95946 -2193,385.70118 -2194,385.43582 -2195,385.16322 -2196,384.88424 -2197,384.59286 -2198,384.29183 -2199,383.99735 -2200,383.71778 -2201,383.45425 -2202,383.20495 -2203,382.96197 -2204,382.71591 -2205,382.4626 -2206,382.20191 -2207,381.93471 -2208,381.6551 -2209,381.36585 -2210,381.08304 -2211,380.81494 -2212,380.56263 -2213,380.32426 -2214,380.09195 -2215,379.85638 -2216,379.61345 -2217,379.36304 -2218,379.10604 -2219,378.83665 -2220,378.55765 -2221,378.28503 -2222,378.02696 -2223,377.78445 -2224,377.55563 -2225,377.33266 -2226,377.10629 -2227,376.87246 -2228,376.63109 -2229,376.38308 -2230,376.12271 -2231,375.85281 -2232,375.58923 -2233,375.34006 -2234,375.10628 -2235,374.88595 -2236,374.67128 -2237,374.4531 -2238,374.22739 -2239,373.9941 -2240,373.75412 -2241,373.50184 -2242,373.24011 -2243,372.98467 -2244,372.74353 -2245,372.51759 -2246,372.30492 -2247,372.09773 -2248,371.88692 -2249,371.66854 -2250,371.44254 -2251,371.20984 -2252,370.96489 -2253,370.71059 -2254,370.46256 -2255,370.22872 -2256,370.00993 -2257,369.80422 -2258,369.60385 -2259,369.39976 -2260,369.18806 -2261,368.96871 -2262,368.74266 -2263,368.50442 -2264,368.25693 -2265,368.0157 -2266,367.78857 -2267,367.57635 -2268,367.37703 -2269,367.1829 -2270,366.98498 -2271,366.77941 -2272,366.56619 -2273,366.34625 -2274,366.11421 -2275,365.873 -2276,365.63806 -2277,365.41713 -2278,365.21098 -2279,365.01757 -2280,364.82921 -2281,364.63699 -2282,364.4371 -2283,364.22954 -2284,364.01526 -2285,363.78896 -2286,363.5536 -2287,363.32451 -2288,363.10935 -2289,362.90884 -2290,362.72091 -2291,362.53791 -2292,362.35099 -2293,362.15637 -2294,361.95408 -2295,361.74508 -2296,361.52413 -2297,361.29423 -2298,361.0706 -2299,360.86083 -2300,360.66558 \ No newline at end of file diff --git a/inst/input/constraints/rcp45_co2ppm.csv b/inst/input/constraints/rcp45_co2ppm.csv deleted file mode 100644 index 6d26a705b..000000000 --- a/inst/input/constraints/rcp45_co2ppm.csv +++ /dev/null @@ -1,538 +0,0 @@ -; RCP4.5 CO2 concentrations in ppm, -Date,CO2_constrain -1765,278.05158 -1766,278.10615 -1767,278.22039 -1768,278.34305 -1769,278.47058 -1770,278.60047 -1771,278.73275 -1772,278.86881 -1773,279.00907 -1774,279.15318 -1775,279.3018 -1776,279.4568 -1777,279.61808 -1778,279.78192 -1779,279.9432 -1780,280.0974 -1781,280.2428 -1782,280.38168 -1783,280.51832 -1784,280.6572 -1785,280.8026 -1786,280.9568 -1787,281.11808 -1788,281.28192 -1789,281.4432 -1790,281.5982 -1791,281.74682 -1792,281.89093 -1793,282.03119 -1794,282.16725 -1795,282.29901 -1796,282.4268 -1797,282.55093 -1798,282.67123 -1799,282.7873 -1800,282.89901 -1801,283.00677 -1802,283.11093 -1803,283.21129 -1804,283.30737 -1805,283.39963 -1806,283.48978 -1807,283.57796 -1808,283.66116 -1809,283.73511 -1810,283.79676 -1811,283.84667 -1812,283.88853 -1813,283.92613 -1814,283.96267 -1815,284.00107 -1816,284.04267 -1817,284.08613 -1818,284.12853 -1819,284.16667 -1820,284.1982 -1821,284.22333 -1822,284.24427 -1823,284.26307 -1824,284.28133 -1825,284.30027 -1826,284.32 -1827,284.34 -1828,284.36 -1829,284.38 -1830,284.4 -1831,284.385 -1832,284.28 -1833,284.125 -1834,283.975 -1835,283.825 -1836,283.675 -1837,283.525 -1838,283.425 -1839,283.4 -1840,283.4 -1841,283.425 -1842,283.5 -1843,283.6 -1844,283.725 -1845,283.9 -1846,284.075 -1847,284.225 -1848,284.4 -1849,284.575 -1850,284.725 -1851,284.875 -1852,285 -1853,285.125 -1854,285.275 -1855,285.425 -1856,285.575 -1857,285.725 -1858,285.9 -1859,286.075 -1860,286.225 -1861,286.375 -1862,286.5 -1863,286.625 -1864,286.775 -1865,286.9 -1866,287 -1867,287.1 -1868,287.225 -1869,287.375 -1870,287.525 -1871,287.7 -1872,287.9 -1873,288.125 -1874,288.4 -1875,288.7 -1876,289.025 -1877,289.4 -1878,289.8 -1879,290.225 -1880,290.7 -1881,291.2 -1882,291.675 -1883,292.125 -1884,292.575 -1885,292.975 -1886,293.3 -1887,293.575 -1888,293.8 -1889,294 -1890,294.175 -1891,294.325 -1892,294.475 -1893,294.6 -1894,294.7 -1895,294.8 -1896,294.9 -1897,295.025 -1898,295.225 -1899,295.5 -1900,295.8 -1901,296.125 -1902,296.475 -1903,296.825 -1904,297.2 -1905,297.625 -1906,298.075 -1907,298.5 -1908,298.9 -1909,299.3 -1910,299.7 -1911,300.075 -1912,300.425 -1913,300.775 -1914,301.1 -1915,301.4 -1916,301.725 -1917,302.075 -1918,302.4 -1919,302.7 -1920,303.025 -1921,303.4 -1922,303.775 -1923,304.125 -1924,304.525 -1925,304.975 -1926,305.4 -1927,305.825 -1928,306.3 -1929,306.775 -1930,307.225 -1931,307.7 -1932,308.175 -1933,308.6 -1934,309 -1935,309.4 -1936,309.75 -1937,310 -1938,310.175 -1939,310.3 -1940,310.375 -1941,310.375 -1942,310.3 -1943,310.2 -1944,310.125 -1945,310.1 -1946,310.125 -1947,310.2 -1948,310.325 -1949,310.5 -1950,310.75 -1951,311.1 -1952,311.5 -1953,311.925 -1954,312.425 -1955,313 -1956,313.6 -1957,314.225 -1958,314.8475 -1959,315.5 -1960,316.2725 -1961,317.075 -1962,317.795 -1963,318.3975 -1964,318.925 -1965,319.6475 -1966,320.6475 -1967,321.605 -1968,322.635 -1969,323.9025 -1970,324.985 -1971,325.855 -1972,327.14 -1973,328.6775 -1974,329.7425 -1975,330.585 -1976,331.7475 -1977,333.2725 -1978,334.8475 -1979,336.525 -1980,338.36 -1981,339.7275 -1982,340.7925 -1983,342.1975 -1984,343.7825 -1985,345.2825 -1986,346.7975 -1987,348.645 -1988,350.7375 -1989,352.4875 -1990,353.855 -1991,355.0175 -1992,355.885 -1993,356.7775 -1994,358.1275 -1995,359.8375 -1996,361.4625 -1997,363.155 -1998,365.3225 -1999,367.3475 -2000,368.865 -2001,370.4675 -2002,372.5225 -2003,374.76 -2004,376.8125 -2005,378.8125 -2006,380.8275 -2007,382.7775 -2008,384.8 -2009,386.9516 -2010,389.12785 -2011,391.27357 -2012,393.4211 -2013,395.58283 -2014,397.76408 -2015,399.96631 -2016,402.18432 -2017,404.41077 -2018,406.64292 -2019,408.8817 -2020,411.12868 -2021,413.37804 -2022,415.63944 -2023,417.93551 -2024,420.27395 -2025,422.65593 -2026,425.07983 -2027,427.53791 -2028,430.0206 -2029,432.5234 -2030,435.04594 -2031,437.58886 -2032,440.13137 -2033,442.66419 -2034,445.20699 -2035,447.76978 -2036,450.35539 -2037,452.96337 -2038,455.58649 -2039,458.2152 -2040,460.84499 -2041,463.47549 -2042,466.09336 -2043,468.67807 -2044,471.23389 -2045,473.78031 -2046,476.32819 -2047,478.88085 -2048,481.43826 -2049,483.99308 -2050,486.53532 -2051,489.06035 -2052,491.53558 -2053,493.93186 -2054,496.24365 -2055,498.47436 -2056,500.64502 -2057,502.76788 -2058,504.84729 -2059,506.88408 -2060,508.87135 -2061,510.79905 -2062,512.64717 -2063,514.40151 -2064,516.06461 -2065,517.62854 -2066,519.09606 -2067,520.48828 -2068,521.81772 -2069,523.08871 -2070,524.30217 -2071,525.45089 -2072,526.50901 -2073,527.45707 -2074,528.29593 -2075,529.02718 -2076,529.64253 -2077,530.14419 -2078,530.55341 -2079,530.88313 -2080,531.13797 -2081,531.31935 -2082,531.48991 -2083,531.70213 -2084,531.94208 -2085,532.20472 -2086,532.48672 -2087,532.77553 -2088,533.06978 -2089,533.38792 -2090,533.74072 -2091,534.13086 -2092,534.55754 -2093,535.01142 -2094,535.47962 -2095,535.95487 -2096,536.4351 -2097,536.91986 -2098,537.39855 -2099,537.87136 -2100,538.3583 -2101,538.8715 -2102,539.38819 -2103,539.88381 -2104,540.35213 -2105,540.78203 -2106,541.16804 -2107,541.50962 -2108,541.80769 -2109,542.05261 -2110,542.24555 -2111,542.40767 -2112,542.55941 -2113,542.71221 -2114,542.86612 -2115,543.01262 -2116,543.13926 -2117,543.23925 -2118,543.31105 -2119,543.35475 -2120,543.35993 -2121,543.32712 -2122,543.28815 -2123,543.26597 -2124,543.26382 -2125,543.28162 -2126,543.31031 -2127,543.337 -2128,543.35452 -2129,543.36102 -2130,543.35628 -2131,543.32954 -2132,543.28277 -2133,543.23814 -2134,543.20814 -2135,543.19691 -2136,543.20476 -2137,543.22301 -2138,543.23901 -2139,543.2458 -2140,543.24169 -2141,543.22663 -2142,543.18977 -2143,543.13128 -2144,543.07193 -2145,543.02451 -2146,542.9934 -2147,542.97911 -2148,542.97309 -2149,542.96279 -2150,542.95532 -2151,542.95532 -2152,542.95532 -2153,542.95532 -2154,542.95532 -2155,542.95532 -2156,542.95532 -2157,542.95532 -2158,542.95532 -2159,542.95532 -2160,542.95532 -2161,542.95532 -2162,542.95532 -2163,542.95532 -2164,542.95532 -2165,542.95532 -2166,542.95532 -2167,542.95532 -2168,542.95532 -2169,542.95532 -2170,542.95532 -2171,542.95532 -2172,542.95532 -2173,542.95532 -2174,542.95532 -2175,542.95532 -2176,542.95532 -2177,542.95532 -2178,542.95532 -2179,542.95532 -2180,542.95532 -2181,542.95532 -2182,542.95532 -2183,542.95532 -2184,542.95532 -2185,542.95532 -2186,542.95532 -2187,542.95532 -2188,542.95532 -2189,542.95532 -2190,542.95532 -2191,542.95532 -2192,542.95532 -2193,542.95532 -2194,542.95532 -2195,542.95532 -2196,542.95532 -2197,542.95532 -2198,542.95532 -2199,542.95532 -2200,542.95532 -2201,542.95532 -2202,542.95532 -2203,542.95532 -2204,542.95532 -2205,542.95532 -2206,542.95532 -2207,542.95532 -2208,542.95532 -2209,542.95532 -2210,542.95532 -2211,542.95532 -2212,542.95532 -2213,542.95532 -2214,542.95532 -2215,542.95532 -2216,542.95532 -2217,542.95532 -2218,542.95532 -2219,542.95532 -2220,542.95532 -2221,542.95532 -2222,542.95532 -2223,542.95532 -2224,542.95532 -2225,542.95532 -2226,542.95532 -2227,542.95532 -2228,542.95532 -2229,542.95532 -2230,542.95532 -2231,542.95532 -2232,542.95532 -2233,542.95532 -2234,542.95532 -2235,542.95532 -2236,542.95532 -2237,542.95532 -2238,542.95532 -2239,542.95532 -2240,542.95532 -2241,542.95532 -2242,542.95532 -2243,542.95532 -2244,542.95532 -2245,542.95532 -2246,542.95532 -2247,542.95532 -2248,542.95532 -2249,542.95532 -2250,542.95532 -2251,542.95532 -2252,542.95532 -2253,542.95532 -2254,542.95532 -2255,542.95532 -2256,542.95532 -2257,542.95532 -2258,542.95532 -2259,542.95532 -2260,542.95532 -2261,542.95532 -2262,542.95532 -2263,542.95532 -2264,542.95532 -2265,542.95532 -2266,542.95532 -2267,542.95532 -2268,542.95532 -2269,542.95532 -2270,542.95532 -2271,542.95532 -2272,542.95532 -2273,542.95532 -2274,542.95532 -2275,542.95532 -2276,542.95532 -2277,542.95532 -2278,542.95532 -2279,542.95532 -2280,542.95532 -2281,542.95532 -2282,542.95532 -2283,542.95532 -2284,542.95532 -2285,542.95532 -2286,542.95532 -2287,542.95532 -2288,542.95532 -2289,542.95532 -2290,542.95532 -2291,542.95532 -2292,542.95532 -2293,542.95532 -2294,542.95532 -2295,542.95532 -2296,542.95532 -2297,542.95532 -2298,542.95532 -2299,542.95532 -2300,542.95532 \ No newline at end of file diff --git a/inst/input/constraints/rcp60_co2ppm.csv b/inst/input/constraints/rcp60_co2ppm.csv deleted file mode 100644 index 39820e0b0..000000000 --- a/inst/input/constraints/rcp60_co2ppm.csv +++ /dev/null @@ -1,538 +0,0 @@ -; RCP6.0 CO2 concentrations in ppm, -Date,CO2_constrain -1765,278.05158 -1766,278.10615 -1767,278.22039 -1768,278.34305 -1769,278.47058 -1770,278.60047 -1771,278.73275 -1772,278.86881 -1773,279.00907 -1774,279.15318 -1775,279.3018 -1776,279.4568 -1777,279.61808 -1778,279.78192 -1779,279.9432 -1780,280.0974 -1781,280.2428 -1782,280.38168 -1783,280.51832 -1784,280.6572 -1785,280.8026 -1786,280.9568 -1787,281.11808 -1788,281.28192 -1789,281.4432 -1790,281.5982 -1791,281.74682 -1792,281.89093 -1793,282.03119 -1794,282.16725 -1795,282.29901 -1796,282.4268 -1797,282.55093 -1798,282.67123 -1799,282.7873 -1800,282.89901 -1801,283.00677 -1802,283.11093 -1803,283.21129 -1804,283.30737 -1805,283.39963 -1806,283.48978 -1807,283.57796 -1808,283.66116 -1809,283.73511 -1810,283.79676 -1811,283.84667 -1812,283.88853 -1813,283.92613 -1814,283.96267 -1815,284.00107 -1816,284.04267 -1817,284.08613 -1818,284.12853 -1819,284.16667 -1820,284.1982 -1821,284.22333 -1822,284.24427 -1823,284.26307 -1824,284.28133 -1825,284.30027 -1826,284.32 -1827,284.34 -1828,284.36 -1829,284.38 -1830,284.4 -1831,284.385 -1832,284.28 -1833,284.125 -1834,283.975 -1835,283.825 -1836,283.675 -1837,283.525 -1838,283.425 -1839,283.4 -1840,283.4 -1841,283.425 -1842,283.5 -1843,283.6 -1844,283.725 -1845,283.9 -1846,284.075 -1847,284.225 -1848,284.4 -1849,284.575 -1850,284.725 -1851,284.875 -1852,285 -1853,285.125 -1854,285.275 -1855,285.425 -1856,285.575 -1857,285.725 -1858,285.9 -1859,286.075 -1860,286.225 -1861,286.375 -1862,286.5 -1863,286.625 -1864,286.775 -1865,286.9 -1866,287 -1867,287.1 -1868,287.225 -1869,287.375 -1870,287.525 -1871,287.7 -1872,287.9 -1873,288.125 -1874,288.4 -1875,288.7 -1876,289.025 -1877,289.4 -1878,289.8 -1879,290.225 -1880,290.7 -1881,291.2 -1882,291.675 -1883,292.125 -1884,292.575 -1885,292.975 -1886,293.3 -1887,293.575 -1888,293.8 -1889,294 -1890,294.175 -1891,294.325 -1892,294.475 -1893,294.6 -1894,294.7 -1895,294.8 -1896,294.9 -1897,295.025 -1898,295.225 -1899,295.5 -1900,295.8 -1901,296.125 -1902,296.475 -1903,296.825 -1904,297.2 -1905,297.625 -1906,298.075 -1907,298.5 -1908,298.9 -1909,299.3 -1910,299.7 -1911,300.075 -1912,300.425 -1913,300.775 -1914,301.1 -1915,301.4 -1916,301.725 -1917,302.075 -1918,302.4 -1919,302.7 -1920,303.025 -1921,303.4 -1922,303.775 -1923,304.125 -1924,304.525 -1925,304.975 -1926,305.4 -1927,305.825 -1928,306.3 -1929,306.775 -1930,307.225 -1931,307.7 -1932,308.175 -1933,308.6 -1934,309 -1935,309.4 -1936,309.75 -1937,310 -1938,310.175 -1939,310.3 -1940,310.375 -1941,310.375 -1942,310.3 -1943,310.2 -1944,310.125 -1945,310.1 -1946,310.125 -1947,310.2 -1948,310.325 -1949,310.5 -1950,310.75 -1951,311.1 -1952,311.5 -1953,311.925 -1954,312.425 -1955,313 -1956,313.6 -1957,314.225 -1958,314.8475 -1959,315.5 -1960,316.2725 -1961,317.075 -1962,317.795 -1963,318.3975 -1964,318.925 -1965,319.6475 -1966,320.6475 -1967,321.605 -1968,322.635 -1969,323.9025 -1970,324.985 -1971,325.855 -1972,327.14 -1973,328.6775 -1974,329.7425 -1975,330.585 -1976,331.7475 -1977,333.2725 -1978,334.8475 -1979,336.525 -1980,338.36 -1981,339.7275 -1982,340.7925 -1983,342.1975 -1984,343.7825 -1985,345.2825 -1986,346.7975 -1987,348.645 -1988,350.7375 -1989,352.4875 -1990,353.855 -1991,355.0175 -1992,355.885 -1993,356.7775 -1994,358.1275 -1995,359.8375 -1996,361.4625 -1997,363.155 -1998,365.3225 -1999,367.3475 -2000,368.865 -2001,370.4675 -2002,372.5225 -2003,374.76 -2004,376.8125 -2005,378.8125 -2006,380.8275 -2007,382.7775 -2008,384.8 -2009,386.93455 -2010,389.0715 -2011,391.1665 -2012,393.24066 -2013,395.29786 -2014,397.34576 -2015,399.38717 -2016,401.41789 -2017,403.43127 -2018,405.42513 -2019,407.40083 -2020,409.36026 -2021,411.29764 -2022,413.21903 -2023,415.14445 -2024,417.08292 -2025,419.03635 -2026,421.0038 -2027,422.97812 -2028,424.95028 -2029,426.91631 -2030,428.87629 -2031,430.832 -2032,432.80746 -2033,434.83148 -2034,436.91619 -2035,439.06785 -2036,441.28581 -2037,443.5672 -2038,445.90288 -2039,448.28176 -2040,450.69811 -2041,453.15021 -2042,455.64509 -2043,458.18181 -2044,460.76247 -2045,463.4053 -2046,466.11968 -2047,468.90757 -2048,471.76784 -2049,474.69236 -2050,477.67043 -2051,480.69694 -2052,483.77696 -2053,486.9156 -2054,490.1025 -2055,493.33845 -2056,496.64173 -2057,500.02229 -2058,503.48287 -2059,507.02296 -2060,510.63443 -2061,514.30531 -2062,518.02671 -2063,521.79702 -2064,525.61935 -2065,529.48604 -2066,533.3998 -2067,537.38147 -2068,541.44308 -2069,545.58888 -2070,549.81989 -2071,554.12904 -2072,558.48622 -2073,562.86724 -2074,567.27205 -2075,571.70141 -2076,576.14574 -2077,580.6064 -2078,585.10462 -2079,589.65317 -2080,594.25683 -2081,598.9179 -2082,603.53811 -2083,608.01988 -2084,612.36372 -2085,616.57173 -2086,620.64773 -2087,624.58304 -2088,628.38085 -2089,632.06458 -2090,635.64876 -2091,639.14086 -2092,642.59729 -2093,646.06094 -2094,649.51513 -2095,652.95074 -2096,656.36419 -2097,659.75421 -2098,663.10742 -2099,666.42313 -2100,669.72317 -2101,673.02173 -2102,676.29128 -2103,679.50127 -2104,682.64541 -2105,685.71141 -2106,688.69282 -2107,691.58868 -2108,694.39983 -2109,697.11406 -2110,699.73157 -2111,702.27614 -2112,704.7639 -2113,707.20265 -2114,709.5953 -2115,711.93394 -2116,714.20507 -2117,716.40081 -2118,718.51915 -2119,720.56005 -2120,722.51007 -2121,724.36814 -2122,726.15805 -2123,727.8964 -2124,729.59084 -2125,731.24405 -2126,732.84773 -2127,734.38928 -2128,735.86182 -2129,737.26278 -2130,738.59171 -2131,739.83434 -2132,740.98904 -2133,742.0798 -2134,743.1235 -2135,744.12799 -2136,745.09601 -2137,746.01899 -2138,746.88224 -2139,747.67691 -2140,748.40031 -2141,749.05184 -2142,749.6169 -2143,750.09334 -2144,750.50572 -2145,750.87141 -2146,751.19813 -2147,751.4889 -2148,751.73512 -2149,751.92185 -2150,751.99877 -2151,751.99877 -2152,751.99877 -2153,751.99877 -2154,751.99877 -2155,751.99877 -2156,751.99877 -2157,751.99877 -2158,751.99877 -2159,751.99877 -2160,751.99877 -2161,751.99877 -2162,751.99877 -2163,751.99877 -2164,751.99877 -2165,751.99877 -2166,751.99877 -2167,751.99877 -2168,751.99877 -2169,751.99877 -2170,751.99877 -2171,751.99877 -2172,751.99877 -2173,751.99877 -2174,751.99877 -2175,751.99877 -2176,751.99877 -2177,751.99877 -2178,751.99877 -2179,751.99877 -2180,751.99877 -2181,751.99877 -2182,751.99877 -2183,751.99877 -2184,751.99877 -2185,751.99877 -2186,751.99877 -2187,751.99877 -2188,751.99877 -2189,751.99877 -2190,751.99877 -2191,751.99877 -2192,751.99877 -2193,751.99877 -2194,751.99877 -2195,751.99877 -2196,751.99877 -2197,751.99877 -2198,751.99877 -2199,751.99877 -2200,751.99877 -2201,751.99877 -2202,751.99877 -2203,751.99877 -2204,751.99877 -2205,751.99877 -2206,751.99877 -2207,751.99877 -2208,751.99877 -2209,751.99877 -2210,751.99877 -2211,751.99877 -2212,751.99877 -2213,751.99877 -2214,751.99877 -2215,751.99877 -2216,751.99877 -2217,751.99877 -2218,751.99877 -2219,751.99877 -2220,751.99877 -2221,751.99877 -2222,751.99877 -2223,751.99877 -2224,751.99877 -2225,751.99877 -2226,751.99877 -2227,751.99877 -2228,751.99877 -2229,751.99877 -2230,751.99877 -2231,751.99877 -2232,751.99877 -2233,751.99877 -2234,751.99877 -2235,751.99877 -2236,751.99877 -2237,751.99877 -2238,751.99877 -2239,751.99877 -2240,751.99877 -2241,751.99877 -2242,751.99877 -2243,751.99877 -2244,751.99877 -2245,751.99877 -2246,751.99877 -2247,751.99877 -2248,751.99877 -2249,751.99877 -2250,751.99877 -2251,751.99877 -2252,751.99877 -2253,751.99877 -2254,751.99877 -2255,751.99877 -2256,751.99877 -2257,751.99877 -2258,751.99877 -2259,751.99877 -2260,751.99877 -2261,751.99877 -2262,751.99877 -2263,751.99877 -2264,751.99877 -2265,751.99877 -2266,751.99877 -2267,751.99877 -2268,751.99877 -2269,751.99877 -2270,751.99877 -2271,751.99877 -2272,751.99877 -2273,751.99877 -2274,751.99877 -2275,751.99877 -2276,751.99877 -2277,751.99877 -2278,751.99877 -2279,751.99877 -2280,751.99877 -2281,751.99877 -2282,751.99877 -2283,751.99877 -2284,751.99877 -2285,751.99877 -2286,751.99877 -2287,751.99877 -2288,751.99877 -2289,751.99877 -2290,751.99877 -2291,751.99877 -2292,751.99877 -2293,751.99877 -2294,751.99877 -2295,751.99877 -2296,751.99877 -2297,751.99877 -2298,751.99877 -2299,751.99877 -2300,751.99877 \ No newline at end of file diff --git a/inst/input/constraints/rcp85_co2ppm.csv b/inst/input/constraints/rcp85_co2ppm.csv deleted file mode 100644 index 3fa2f5791..000000000 --- a/inst/input/constraints/rcp85_co2ppm.csv +++ /dev/null @@ -1,538 +0,0 @@ -; RCP8.5 CO2 concentrations in ppm, -Date,CO2_constrain -1765,278.05158 -1766,278.10615 -1767,278.22039 -1768,278.34305 -1769,278.47058 -1770,278.60047 -1771,278.73275 -1772,278.86881 -1773,279.00907 -1774,279.15318 -1775,279.3018 -1776,279.4568 -1777,279.61808 -1778,279.78192 -1779,279.9432 -1780,280.0974 -1781,280.2428 -1782,280.38168 -1783,280.51832 -1784,280.6572 -1785,280.8026 -1786,280.9568 -1787,281.11808 -1788,281.28192 -1789,281.4432 -1790,281.5982 -1791,281.74682 -1792,281.89093 -1793,282.03119 -1794,282.16725 -1795,282.29901 -1796,282.4268 -1797,282.55093 -1798,282.67123 -1799,282.7873 -1800,282.89901 -1801,283.00677 -1802,283.11093 -1803,283.21129 -1804,283.30737 -1805,283.39963 -1806,283.48978 -1807,283.57796 -1808,283.66116 -1809,283.73511 -1810,283.79676 -1811,283.84667 -1812,283.88853 -1813,283.92613 -1814,283.96267 -1815,284.00107 -1816,284.04267 -1817,284.08613 -1818,284.12853 -1819,284.16667 -1820,284.1982 -1821,284.22333 -1822,284.24427 -1823,284.26307 -1824,284.28133 -1825,284.30027 -1826,284.32 -1827,284.34 -1828,284.36 -1829,284.38 -1830,284.4 -1831,284.385 -1832,284.28 -1833,284.125 -1834,283.975 -1835,283.825 -1836,283.675 -1837,283.525 -1838,283.425 -1839,283.4 -1840,283.4 -1841,283.425 -1842,283.5 -1843,283.6 -1844,283.725 -1845,283.9 -1846,284.075 -1847,284.225 -1848,284.4 -1849,284.575 -1850,284.725 -1851,284.875 -1852,285 -1853,285.125 -1854,285.275 -1855,285.425 -1856,285.575 -1857,285.725 -1858,285.9 -1859,286.075 -1860,286.225 -1861,286.375 -1862,286.5 -1863,286.625 -1864,286.775 -1865,286.9 -1866,287 -1867,287.1 -1868,287.225 -1869,287.375 -1870,287.525 -1871,287.7 -1872,287.9 -1873,288.125 -1874,288.4 -1875,288.7 -1876,289.025 -1877,289.4 -1878,289.8 -1879,290.225 -1880,290.7 -1881,291.2 -1882,291.675 -1883,292.125 -1884,292.575 -1885,292.975 -1886,293.3 -1887,293.575 -1888,293.8 -1889,294 -1890,294.175 -1891,294.325 -1892,294.475 -1893,294.6 -1894,294.7 -1895,294.8 -1896,294.9 -1897,295.025 -1898,295.225 -1899,295.5 -1900,295.8 -1901,296.125 -1902,296.475 -1903,296.825 -1904,297.2 -1905,297.625 -1906,298.075 -1907,298.5 -1908,298.9 -1909,299.3 -1910,299.7 -1911,300.075 -1912,300.425 -1913,300.775 -1914,301.1 -1915,301.4 -1916,301.725 -1917,302.075 -1918,302.4 -1919,302.7 -1920,303.025 -1921,303.4 -1922,303.775 -1923,304.125 -1924,304.525 -1925,304.975 -1926,305.4 -1927,305.825 -1928,306.3 -1929,306.775 -1930,307.225 -1931,307.7 -1932,308.175 -1933,308.6 -1934,309 -1935,309.4 -1936,309.75 -1937,310 -1938,310.175 -1939,310.3 -1940,310.375 -1941,310.375 -1942,310.3 -1943,310.2 -1944,310.125 -1945,310.1 -1946,310.125 -1947,310.2 -1948,310.325 -1949,310.5 -1950,310.75 -1951,311.1 -1952,311.5 -1953,311.925 -1954,312.425 -1955,313 -1956,313.6 -1957,314.225 -1958,314.8475 -1959,315.5 -1960,316.2725 -1961,317.075 -1962,317.795 -1963,318.3975 -1964,318.925 -1965,319.6475 -1966,320.6475 -1967,321.605 -1968,322.635 -1969,323.9025 -1970,324.985 -1971,325.855 -1972,327.14 -1973,328.6775 -1974,329.7425 -1975,330.585 -1976,331.7475 -1977,333.2725 -1978,334.8475 -1979,336.525 -1980,338.36 -1981,339.7275 -1982,340.7925 -1983,342.1975 -1984,343.7825 -1985,345.2825 -1986,346.7975 -1987,348.645 -1988,350.7375 -1989,352.4875 -1990,353.855 -1991,355.0175 -1992,355.885 -1993,356.7775 -1994,358.1275 -1995,359.8375 -1996,361.4625 -1997,363.155 -1998,365.3225 -1999,367.3475 -2000,368.865 -2001,370.4675 -2002,372.5225 -2003,374.76 -2004,376.8125 -2005,378.8125 -2006,380.8275 -2007,382.7775 -2008,384.8 -2009,387.01226 -2010,389.32416 -2011,391.63801 -2012,394.00866 -2013,396.46384 -2014,399.00402 -2015,401.62793 -2016,404.32819 -2017,407.09588 -2018,409.92701 -2019,412.82151 -2020,415.78022 -2021,418.79629 -2022,421.86439 -2023,424.99469 -2024,428.19734 -2025,431.47473 -2026,434.82619 -2027,438.24456 -2028,441.7208 -2029,445.25085 -2030,448.83485 -2031,452.47359 -2032,456.177 -2033,459.96398 -2034,463.85181 -2035,467.85003 -2036,471.96047 -2037,476.18237 -2038,480.50799 -2039,484.92724 -2040,489.43545 -2041,494.03235 -2042,498.7297 -2043,503.52959 -2044,508.43266 -2045,513.45614 -2046,518.61062 -2047,523.90006 -2048,529.32418 -2049,534.8752 -2050,540.54279 -2051,546.32201 -2052,552.21189 -2053,558.2122 -2054,564.31311 -2055,570.51669 -2056,576.84343 -2057,583.30471 -2058,589.90539 -2059,596.64656 -2060,603.52045 -2061,610.5165 -2062,617.60526 -2063,624.76367 -2064,631.99471 -2065,639.29052 -2066,646.65274 -2067,654.09843 -2068,661.64491 -2069,669.30474 -2070,677.07762 -2071,684.95429 -2072,692.90196 -2073,700.89416 -2074,708.93159 -2075,717.01548 -2076,725.13597 -2077,733.30667 -2078,741.52368 -2079,749.80466 -2080,758.1823 -2081,766.64451 -2082,775.17446 -2083,783.75141 -2084,792.36578 -2085,801.0188 -2086,809.71464 -2087,818.42214 -2088,827.15719 -2089,835.95594 -2090,844.80471 -2091,853.72536 -2092,862.72597 -2093,871.7768 -2094,880.86435 -2095,889.98162 -2096,899.12407 -2097,908.28871 -2098,917.47137 -2099,926.66527 -2100,935.87437 -2101,945.13213 -2102,954.4662 -2103,963.83906 -2104,973.2408 -2105,982.68037 -2106,992.14288 -2107,1001.6311 -2108,1011.1191 -2109,1020.6085 -2110,1030.1004 -2111,1039.5892 -2112,1049.1233 -2113,1058.7002 -2114,1068.3216 -2115,1077.9995 -2116,1087.6999 -2117,1097.4303 -2118,1107.1765 -2119,1116.9122 -2120,1126.6592 -2121,1136.4015 -2122,1146.1344 -2123,1155.9064 -2124,1165.7401 -2125,1175.6176 -2126,1185.5295 -2127,1195.4833 -2128,1205.4772 -2129,1215.4661 -2130,1225.453 -2131,1235.4493 -2132,1245.419 -2133,1255.397 -2134,1265.4211 -2135,1275.4843 -2136,1285.5943 -2137,1295.7632 -2138,1305.9625 -2139,1316.1708 -2140,1326.3936 -2141,1336.6283 -2142,1346.8594 -2143,1357.0727 -2144,1367.2797 -2145,1377.5097 -2146,1387.793 -2147,1398.1376 -2148,1408.5226 -2149,1418.9467 -2150,1429.3969 -2151,1439.8354 -2152,1450.2111 -2153,1460.4793 -2154,1470.5915 -2155,1480.5564 -2156,1490.4552 -2157,1500.2994 -2158,1510.0573 -2159,1519.7332 -2160,1529.3276 -2161,1538.8274 -2162,1548.2214 -2163,1557.5025 -2164,1566.6838 -2165,1575.7093 -2166,1584.5792 -2167,1593.389 -2168,1602.1444 -2169,1610.8232 -2170,1619.4189 -2171,1627.9283 -2172,1636.3423 -2173,1644.6544 -2174,1652.8621 -2175,1660.9472 -2176,1668.8714 -2177,1676.6491 -2178,1684.3479 -2179,1691.9855 -2180,1699.5543 -2181,1707.0542 -2182,1714.4671 -2183,1721.7857 -2184,1728.9986 -2185,1736.073 -2186,1743.0204 -2187,1749.8272 -2188,1756.4845 -2189,1763.0469 -2190,1769.542 -2191,1775.972 -2192,1782.3281 -2193,1788.5985 -2194,1794.7605 -2195,1800.7999 -2196,1806.7334 -2197,1812.5201 -2198,1818.1423 -2199,1823.6498 -2200,1829.0556 -2201,1834.3733 -2202,1839.6122 -2203,1844.7812 -2204,1849.8682 -2205,1854.849 -2206,1859.7106 -2207,1864.4469 -2208,1869.0362 -2209,1873.4672 -2210,1877.784 -2211,1881.9947 -2212,1886.1097 -2213,1890.1554 -2214,1894.1313 -2215,1898.0123 -2216,1901.7766 -2217,1905.4235 -2218,1908.9603 -2219,1912.3445 -2220,1915.5465 -2221,1918.6217 -2222,1921.6126 -2223,1924.5227 -2224,1927.352 -2225,1930.1 -2226,1932.7513 -2227,1935.2926 -2228,1937.7127 -2229,1940.0103 -2230,1942.1583 -2231,1944.1572 -2232,1946.0278 -2233,1947.7762 -2234,1949.4392 -2235,1951.0121 -2236,1952.5138 -2237,1953.9433 -2238,1955.2718 -2239,1956.4604 -2240,1957.4929 -2241,1958.428 -2242,1959.1897 -2243,1959.7707 -2244,1960.2847 -2245,1960.7288 -2246,1961.0674 -2247,1961.3194 -2248,1961.4957 -2249,1961.5683 -2250,1961.5774 -2251,1961.5774 -2252,1961.5774 -2253,1961.5774 -2254,1961.5774 -2255,1961.5774 -2256,1961.5774 -2257,1961.5774 -2258,1961.5774 -2259,1961.5774 -2260,1961.5774 -2261,1961.5774 -2262,1961.5774 -2263,1961.5774 -2264,1961.5774 -2265,1961.5774 -2266,1961.5774 -2267,1961.5774 -2268,1961.5774 -2269,1961.5774 -2270,1961.5774 -2271,1961.5774 -2272,1961.5774 -2273,1961.5774 -2274,1961.5774 -2275,1961.5774 -2276,1961.5774 -2277,1961.5774 -2278,1961.5774 -2279,1961.5774 -2280,1961.5774 -2281,1961.5774 -2282,1961.5774 -2283,1961.5774 -2284,1961.5774 -2285,1961.5774 -2286,1961.5774 -2287,1961.5774 -2288,1961.5774 -2289,1961.5774 -2290,1961.5774 -2291,1961.5774 -2292,1961.5774 -2293,1961.5774 -2294,1961.5774 -2295,1961.5774 -2296,1961.5774 -2297,1961.5774 -2298,1961.5774 -2299,1961.5774 -2300,1961.5774 \ No newline at end of file diff --git a/inst/input/emissions/RCP26_emissions.csv b/inst/input/emissions/RCP26_emissions.csv deleted file mode 100644 index 7ae66a0e3..000000000 --- a/inst/input/emissions/RCP26_emissions.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP 26 emissions ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,7.4566,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,240.392,53.81,28.001,8.669,0.282,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,251.146,52.018,22.43,8.524,0.235,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,261.9,50.225,23.232,7.77,0.189,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,272.654,48.433,23.348,7.653,0.189,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082 -2006,8.1427,1.1676,320.0614,7.715,56.545,56545,1055.3681,215.8001,38.883,8.3258,36.4361,42.2406,12.2669,3.1051,0.4427,10.5529,12.3831,3.8803,16.2358,121.0746,14.293,5.6938,31.7215,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,296.002,48.231,34.767,6.992,0.049,1.834,0.279,167.857,3511.082 -2007,8.3136,1.14,324.2127,7.7459,56.3678,56367.8,1049.2141,216.1376,38.97,8.4003,36.4792,42.5977,12.9284,3.5603,0.4492,10.2947,13.7731,4.5246,18.7259,129.6223,16.1321,6.5045,36.5545,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,308.596,49.821,39.869,6.502,0.049,1.752,0.249,167.857,3511.082 -2008,8.4828667,1.1121667,328.34943,7.7766333,56.184533,56184.533,1043.0664,216.4749,39.054433,8.4745333,36.520033,42.9544,13.5912,4.0149667,0.45503333,10.037233,15.162767,5.1677,21.2435,138.76247,17.9599,7.3294667,41.387467,6.6085333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,321.19,51.412,39.099,6.047,0.049,1.675,0.221,167.857,3511.082 -2009,8.6521333,1.0843333,332.48617,7.8073667,56.001267,56001.267,1036.9188,216.8122,39.138867,8.5487667,36.560867,43.3111,14.254,4.4696333,0.46086667,9.7797667,16.552433,5.8108,23.7611,147.90263,19.7877,8.1544333,46.220433,6.6157667,44.442,40.334,0.754,0.029,0.248,39,10.874,333.784,53.002,38.069,5.624,0.049,1.601,0.197,167.857,3511.082 -2010,8.8214,1.0565,336.6229,7.8381,55.818,55818,1030.7711,217.1495,39.2233,8.623,36.6017,43.6678,14.9168,4.9243,0.4667,9.5223,17.9421,6.4539,26.2787,157.0428,21.6155,8.9794,51.0534,6.623,42.976,36.906,0.377,0.018,0.186,32.5,7.266,346.378,54.593,36.801,5.23,0,1.521,0.175,167.857,3511.082 -2011,8.86803,1.04813,328.6374,7.79063,54.65749,54657.49,1025.9587,216.7636,38.96192,8.5989,36.61719,44.07346,14.6468,4.9717,0.43848,8.68531,22.21208,6.53107,32.58573,158.72642,25.89136,8.24224,49.18021,6.18511,41.557,33.769,0.189,0.011,0.14,26,7.266,344.714,54.867,35.314,4.864,0,1.445,0.156,167.857,3511.082 -2012,8.91466,1.03976,320.6519,7.74316,53.49698,53496.98,1021.1462,216.3777,38.70054,8.5748,36.63268,44.47912,14.3768,5.0191,0.41026,7.84832,26.48206,6.60824,38.89276,160.41004,30.16722,7.50508,47.30702,5.74722,40.186,30.898,0.094,0.006,0.105,19.5,7.266,343.051,55.141,33.625,4.524,0,1.373,0.139,167.857,3511.082 -2013,8.96129,1.03139,312.6664,7.69569,52.33647,52336.47,1016.3338,215.9918,38.43916,8.5507,36.64817,44.88478,14.1068,5.0665,0.38204,7.01133,30.75204,6.68541,45.19979,162.09366,34.44308,6.76792,45.43383,5.30933,38.86,28.272,0.047,0.004,0.079,13,7.266,341.387,55.414,31.75,4.207,0,1.304,0.124,167.857,3511.082 -2014,9.00792,1.02302,304.6809,7.64822,51.17596,51175.96,1011.5213,215.6059,38.17778,8.5266,36.66366,45.29044,13.8368,5.1139,0.35382,6.17434,35.02202,6.76258,51.50682,163.77728,38.71894,6.03076,43.56064,4.87144,37.578,25.869,0.024,0.002,0.059,6.5,7.266,339.724,55.688,29.705,3.913,0,1.239,0.11,167.857,3511.082 -2015,9.05455,1.01465,296.6954,7.60075,50.01545,50015.45,1006.7089,215.22,37.9164,8.5025,36.67915,45.6961,13.5668,5.1613,0.3256,5.33735,39.292,6.83975,57.81385,165.4609,42.9948,5.2936,41.68745,4.43355,36.338,23.67,0.012,0.001,0.044,0,0,338.06,55.962,27.502,3.639,0,1.177,0.098,155.925,3511.082 -2016,9.10118,1.00628,288.7099,7.55328,48.85494,48854.94,1001.8965,214.8341,37.65502,8.4784,36.69464,46.10176,13.2968,5.2087,0.29738,4.50036,43.56198,6.91692,64.12088,167.14452,47.27066,4.55644,39.81426,3.99566,35.138,21.658,0.006,0.001,0.033,0,0,336.397,56.236,25.476,3.384,0,1.118,0.087,155.925,3511.082 -2017,9.14781,0.99791,280.7244,7.50581,47.69443,47694.43,997.08402,214.4482,37.39364,8.4543,36.71013,46.50742,13.0268,5.2561,0.26916,3.66337,47.83196,6.99409,70.42791,168.82814,51.54652,3.81928,37.94107,3.55777,33.979,19.817,0.003,0,0.025,0,0,334.733,56.51,23.611,3.147,0,1.062,0.078,155.925,3511.082 -2018,9.19444,0.98954,272.7389,7.45834,46.53392,46533.92,992.27158,214.0623,37.13226,8.4302,36.72562,46.91308,12.7568,5.3035,0.24094,2.82638,52.10194,7.07126,76.73494,170.51176,55.82238,3.08212,36.06788,3.11988,32.858,18.133,0.001,0,0.019,0,0,333.07,56.784,21.896,2.927,0,1.009,0.069,155.925,3511.082 -2019,9.24107,0.98117,264.7534,7.41087,45.37341,45373.41,987.45914,213.6764,36.87088,8.4061,36.74111,47.31874,12.4868,5.3509,0.21272,1.98939,56.37192,7.14843,83.04197,172.19538,60.09824,2.34496,34.19469,2.68199,31.773,16.591,0.001,0,0.014,0,0,331.406,57.058,20.318,2.722,0,0.959,0.061,155.925,3511.082 -2020,9.2877,0.9728,256.7679,7.3634,44.2129,44212.9,982.6467,213.2905,36.6095,8.382,36.7566,47.7244,12.2168,5.3983,0.1845,1.1524,60.6419,7.2256,89.349,173.879,64.3741,1.6078,32.3215,2.2441,30.725,15.181,0,0,0.01,0,0,329.743,57.332,18.867,2.531,0,0.911,0.055,155.925,3511.082 -2021,9.07462,0.95441,254.65433,7.35756,42.75221,42752.21,976.97887,212.02164,36.10504,8.23806,36.62955,48.0643,11.66461,5.04704,0.17723,1.1063,61.78125,7.31559,91.30401,175.90966,65.49222,1.52656,29.40678,2.21491,29.711,13.891,0,0,0.008,0,0,313.814,56.425,17.531,2.354,0,0.865,0.049,155.925,3511.082 -2022,8.86154,0.93602,252.54076,7.35172,41.29152,41291.52,971.31104,210.75278,35.60058,8.09412,36.5025,48.4042,11.11242,4.69578,0.16996,1.0602,62.9206,7.40558,93.25902,177.94032,66.61034,1.44532,26.49206,2.18572,28.73,12.71,0,0,0.006,0,0,297.886,55.519,16.302,2.189,0,0.822,0.043,155.925,3511.082 -2023,8.64846,0.91763,250.42719,7.34588,39.83083,39830.83,965.64321,209.48392,35.09612,7.95018,36.37545,48.7441,10.56023,4.34452,0.16269,1.0141,64.05995,7.49557,95.21403,179.97098,67.72846,1.36408,23.57734,2.15653,27.782,11.63,0,0,0.004,0,0,281.957,54.612,15.172,2.036,0,0.781,0.039,155.925,3511.082 -2024,8.43538,0.89924,248.31362,7.34004,38.37014,38370.14,959.97538,208.21506,34.59166,7.80624,36.2484,49.084,10.00804,3.99326,0.15542,0.968,65.1993,7.58556,97.16904,182.00164,68.84658,1.28284,20.66262,2.12734,26.865,10.641,0,0,0.003,0,0,266.029,53.705,14.132,1.894,0,0.742,0.034,155.925,3511.082 -2025,8.2223,0.88085,246.20005,7.3342,36.90945,36909.45,954.30755,206.9462,34.0872,7.6623,36.12135,49.4239,9.45585,3.642,0.14815,0.9219,66.33865,7.67555,99.12405,184.0323,69.9647,1.2016,17.7479,2.09815,25.979,9.737,0,0,0.002,0,0,250.101,52.798,13.175,1.761,0,0.705,0.031,155.925,3511.082 -2026,8.00922,0.86246,244.08648,7.32836,35.44876,35448.76,948.63972,205.67734,33.58274,7.51836,35.9943,49.7638,8.90366,3.29074,0.14088,0.8758,67.478,7.76554,101.07906,186.06296,71.08282,1.12036,14.83318,2.06896,25.122,8.909,0,0,0.002,0,0,234.172,51.892,12.295,1.638,0,0.669,0.027,155.925,3511.082 -2027,7.79614,0.84407,241.97291,7.32252,33.98807,33988.07,942.97189,204.40848,33.07828,7.37442,35.86725,50.1037,8.35147,2.93948,0.13361,0.8297,68.61735,7.85553,103.03407,188.09362,72.20094,1.03912,11.91846,2.03977,24.293,8.152,0,0,0.001,0,0,218.244,50.985,11.485,1.523,0,0.636,0.024,155.925,3511.082 -2028,7.58306,0.82568,239.85934,7.31668,32.52738,32527.38,937.30406,203.13962,32.57382,7.23048,35.7402,50.4436,7.79928,2.58822,0.12634,0.7836,69.7567,7.94552,104.98908,190.12428,73.31906,0.95788,9.00374,2.01058,23.491,7.459,0,0,0.001,0,0,202.315,50.078,10.74,1.417,0,0.604,0.022,155.925,3511.082 -2029,7.36998,0.80729,237.74577,7.31084,31.06669,31066.69,931.63623,201.87076,32.06936,7.08654,35.61315,50.7835,7.24709,2.23696,0.11907,0.7375,70.89605,8.03551,106.94409,192.15494,74.43718,0.87664,6.08902,1.98139,22.716,6.825,0,0,0.001,0,0,186.387,49.172,10.055,1.317,0,0.574,0.019,155.925,3511.082 -2030,7.1569,0.7889,235.6322,7.305,29.606,29606,925.9684,200.6019,31.5649,6.9426,35.4861,51.1234,6.6949,1.8857,0.1118,0.6914,72.0354,8.1255,108.8991,194.1856,75.5553,0.7954,3.1743,1.9522,21.966,6.245,0,0,0.001,0,0,170.458,48.265,9.424,1.225,0,0.545,0.017,155.925,3511.082 -2031,6.8947,0.75891,234.57183,7.29221,28.63446,28634.46,921.1656,199.76692,31.40904,6.81693,35.13889,51.34308,6.53063,1.80589,0.1119,0.66362,72.90303,8.24943,110.50533,196.04996,76.3722,0.80448,2.85687,1.91374,21.241,5.714,0,0,0,0,0,158.161,46.405,8.826,1.139,0,0.518,0.015,155.925,3511.082 -2032,6.6325,0.72892,233.51146,7.27942,27.66292,27662.92,916.3628,198.93194,31.25318,6.69126,34.79168,51.56276,6.36636,1.72608,0.112,0.63584,73.77066,8.37336,112.11156,197.91432,77.1891,0.81356,2.53944,1.87528,20.54,5.228,0,0,0,0,0,145.863,44.545,8.259,1.06,0,0.492,0.013,155.925,3511.082 -2033,6.3703,0.69893,232.45109,7.26663,26.69138,26691.38,911.56,198.09696,31.09732,6.56559,34.44447,51.78244,6.20209,1.64627,0.1121,0.60806,74.63829,8.49729,113.71779,199.77868,78.006,0.82264,2.22201,1.83682,19.862,4.784,0,0,0,0,0,133.566,42.685,7.72,0.985,0,0.467,0.012,155.925,3511.082 -2034,6.1081,0.66894,231.39072,7.25384,25.71984,25719.84,906.7572,197.26198,30.94146,6.43992,34.09726,52.00212,6.03782,1.56646,0.1122,0.58028,75.50592,8.62122,115.32402,201.64304,78.8229,0.83172,1.90458,1.79836,19.207,4.377,0,0,0,0,0,121.269,40.825,7.207,0.916,0,0.444,0.011,155.925,3511.082 -2035,5.8459,0.63895,230.33035,7.24105,24.7483,24748.3,901.9544,196.427,30.7856,6.31425,33.75005,52.2218,5.87355,1.48665,0.1123,0.5525,76.37355,8.74515,116.93025,203.5074,79.6398,0.8408,1.58715,1.7599,18.573,4.005,0,0,0,0,0,108.971,38.965,6.717,0.852,0,0.422,0.01,155.925,3511.082 -2036,5.5837,0.60896,229.26998,7.22826,23.77676,23776.76,897.1516,195.59202,30.62974,6.18858,33.40284,52.44148,5.70928,1.40684,0.1124,0.52472,77.24118,8.86908,118.53648,205.37176,80.4567,0.84988,1.26972,1.72144,17.96,3.665,0,0,0,0,0,96.674,37.105,6.249,0.793,0,0.401,0.008,155.925,3511.082 -2037,5.3215,0.57897,228.20961,7.21547,22.80522,22805.22,892.3488,194.75704,30.47388,6.06291,33.05563,52.66116,5.54501,1.32703,0.1125,0.49694,78.10881,8.99301,120.14271,207.23612,81.2736,0.85896,0.95229,1.68298,17.368,3.353,0,0,0,0,0,84.377,35.244,5.801,0.737,0,0.381,0.008,155.925,3511.082 -2038,5.0593,0.54898,227.14924,7.20268,21.83368,21833.68,887.546,193.92206,30.31802,5.93724,32.70842,52.88084,5.38074,1.24722,0.1126,0.46916,78.97644,9.11694,121.74894,209.10048,82.0905,0.86804,0.63486,1.64452,16.794,3.068,0,0,0,0,0,72.079,33.384,5.372,0.686,0,0.362,0.007,155.925,3511.082 -2039,4.7971,0.51899,226.08887,7.18989,20.86214,20862.14,882.7432,193.08708,30.16216,5.81157,32.36121,53.10052,5.21647,1.16741,0.1127,0.44138,79.84407,9.24087,123.35517,210.96484,82.9074,0.87712,0.31743,1.60606,16.24,2.807,0,0,0,0,0,59.782,31.524,4.96,0.638,0,0.344,0.006,155.925,3511.082 -2040,4.5349,0.489,225.0285,7.1771,19.8906,19890.6,877.9404,192.2521,30.0063,5.6859,32.014,53.3202,5.0522,1.0876,0.1128,0.4136,80.7117,9.3648,124.9614,212.8292,83.7243,0.8862,0,1.5676,15.704,2.569,0,0,0,0,0,47.485,29.664,4.563,0.593,0,0.326,0.005,155.925,3511.082 -2041,4.39997,0.46022,221.45546,7.08404,19.45899,19458.99,872.16763,190.878,29.89599,5.61136,31.80989,53.54175,4.81083,1.02596,0.11238,0.39687,80.10127,9.53783,124.37894,211.38138,83.06078,0.82716,0,1.47407,15.186,2.35,0,0,0,0,0,43.916,28.474,4.198,0.551,0,0.31,0.005,155.925,3511.082 -2042,4.26504,0.43144,217.88242,6.99098,19.02738,19027.38,866.39486,189.5039,29.78568,5.53682,31.60578,53.7633,4.56946,0.96432,0.11196,0.38014,79.49084,9.71086,123.79648,209.93356,82.39726,0.76812,0,1.38054,14.685,2.151,0,0,0,0,0,40.347,27.284,3.862,0.513,0,0.295,0.004,155.925,3511.082 -2043,4.13011,0.40266,214.30938,6.89792,18.59577,18595.77,860.62209,188.1298,29.67537,5.46228,31.40167,53.98485,4.32809,0.90268,0.11154,0.36341,78.88041,9.88389,123.21402,208.48574,81.73374,0.70908,0,1.28701,14.2,1.968,0,0,0,0,0,36.778,26.093,3.553,0.477,0,0.28,0.004,155.925,3511.082 -2044,3.99518,0.37388,210.73634,6.80486,18.16416,18164.16,854.84932,186.7557,29.56506,5.38774,31.19756,54.2064,4.08672,0.84104,0.11112,0.34668,78.26998,10.05692,122.63156,207.03792,81.07022,0.65004,0,1.19348,13.732,1.801,0,0,0,0,0,33.209,24.903,3.269,0.444,0,0.266,0.003,155.925,3511.082 -2045,3.86025,0.3451,207.1633,6.7118,17.73255,17732.55,849.07655,185.3816,29.45475,5.3132,30.99345,54.42795,3.84535,0.7794,0.1107,0.32995,77.65955,10.22995,122.0491,205.5901,80.4067,0.591,0,1.09995,13.279,1.648,0,0,0,0,0,29.64,23.713,3.007,0.413,0,0.253,0.003,155.925,3511.082 -2046,3.72532,0.31632,203.59026,6.61874,17.30094,17300.94,843.30378,184.0075,29.34444,5.23866,30.78934,54.6495,3.60398,0.71776,0.11028,0.31322,77.04912,10.40298,121.46664,204.14228,79.74318,0.53196,0,1.00642,12.84,1.507,0,0,0,0,0,26.072,22.522,2.767,0.384,0,0.24,0.003,155.925,3511.082 -2047,3.59039,0.28754,200.01722,6.52568,16.86933,16869.33,837.53101,182.6334,29.23413,5.16412,30.58523,54.87105,3.36261,0.65612,0.10986,0.29649,76.43869,10.57601,120.88418,202.69446,79.07966,0.47292,0,0.91289,12.417,1.379,0,0,0,0,0,22.503,21.332,2.545,0.357,0,0.228,0.002,155.925,3511.082 -2048,3.45546,0.25876,196.44418,6.43262,16.43772,16437.72,831.75824,181.2593,29.12382,5.08958,30.38112,55.0926,3.12124,0.59448,0.10944,0.27976,75.82826,10.74904,120.30172,201.24664,78.41614,0.41388,0,0.81936,12.007,1.262,0,0,0,0,0,18.934,20.142,2.342,0.332,0,0.217,0.002,155.925,3511.082 -2049,3.32053,0.22998,192.87114,6.33956,16.00611,16006.11,825.98547,179.8852,29.01351,5.01504,30.17701,55.31415,2.87987,0.53284,0.10902,0.26303,75.21783,10.92207,119.71926,199.79882,77.75262,0.35484,0,0.72583,11.611,1.155,0,0,0,0,0,15.365,18.951,2.154,0.309,0,0.206,0.002,155.925,3511.082 -2050,3.1856,0.2012,189.2981,6.2465,15.5745,15574.5,820.2127,178.5111,28.9032,4.9405,29.9729,55.5357,2.6385,0.4712,0.1086,0.2463,74.6074,11.0951,119.1368,198.351,77.0891,0.2958,0,0.6323,11.227,1.057,0,0,0,0,0,11.796,17.761,1.982,0.287,0,0.195,0.002,155.925,3511.082 -2051,3.00896,0.2426,187.01509,6.19366,15.38703,15387.03,816.11031,177.30075,28.73251,4.88943,29.9464,55.83387,2.59225,0.45634,0.10848,0.23542,75.55522,11.09689,121.10282,201.15158,78.03953,0.28044,0,0.61892,10.857,0.967,0,0,0,0,0,10.91,17.048,1.824,0.267,0,0.186,0.001,155.925,3511.082 -2052,2.83232,0.284,184.73208,6.14082,15.19956,15199.56,812.00792,176.0904,28.56182,4.83836,29.9199,56.13204,2.546,0.44148,0.10836,0.22454,76.50304,11.09868,123.06884,203.95216,78.98996,0.26508,0,0.60554,10.499,0.885,0,0,0,0,0,10.023,16.336,1.678,0.248,0,0.176,0.001,155.925,3511.082 -2053,2.65568,0.3254,182.44907,6.08798,15.01209,15012.09,807.90553,174.88005,28.39113,4.78729,29.8934,56.43021,2.49975,0.42662,0.10824,0.21366,77.45086,11.10047,125.03486,206.75274,79.94039,0.24972,0,0.59216,10.152,0.809,0,0,0,0,0,9.137,15.623,1.543,0.231,0,0.168,0.001,155.925,3511.082 -2054,2.47904,0.3668,180.16606,6.03514,14.82462,14824.62,803.80314,173.6697,28.22044,4.73622,29.8669,56.72838,2.4535,0.41176,0.10812,0.20278,78.39868,11.10226,127.00088,209.55332,80.89082,0.23436,0,0.57878,9.817,0.741,0,0,0,0,0,8.25,14.91,1.42,0.215,0,0.159,0.001,155.925,3511.082 -2055,2.3024,0.4082,177.88305,5.9823,14.63715,14637.15,799.70075,172.45935,28.04975,4.68515,29.8404,57.02655,2.40725,0.3969,0.108,0.1919,79.3465,11.10405,128.9669,212.3539,81.84125,0.219,0,0.5654,9.493,0.678,0,0,0,0,0,7.363,14.198,1.306,0.2,0,0.151,0.001,155.925,3511.082 -2056,2.12576,0.4496,175.60004,5.92946,14.44968,14449.68,795.59836,171.249,27.87906,4.63408,29.8139,57.32472,2.361,0.38204,0.10788,0.18102,80.29432,11.10584,130.93292,215.15448,82.79168,0.20364,0,0.55202,9.18,0.62,0,0,0,0,0,6.477,13.485,1.202,0.186,0,0.144,0.001,155.925,3511.082 -2057,1.94912,0.491,173.31703,5.87662,14.26221,14262.21,791.49597,170.03865,27.70837,4.58301,29.7874,57.62289,2.31475,0.36718,0.10776,0.17014,81.24214,11.10763,132.89894,217.95506,83.74211,0.18828,0,0.53864,8.877,0.567,0,0,0,0,0,5.59,12.772,1.106,0.173,0,0.136,0.001,155.925,3511.082 -2058,1.77248,0.5324,171.03402,5.82378,14.07474,14074.74,787.39358,168.8283,27.53768,4.53194,29.7609,57.92106,2.2685,0.35232,0.10764,0.15926,82.18996,11.10942,134.86496,220.75564,84.69254,0.17292,0,0.52526,8.584,0.519,0,0,0,0,0,4.704,12.06,1.017,0.161,0,0.13,0.001,155.925,3511.082 -2059,1.59584,0.5738,168.75101,5.77094,13.88727,13887.27,783.29119,167.61795,27.36699,4.48087,29.7344,58.21923,2.22225,0.33746,0.10752,0.14838,83.13778,11.11121,136.83098,223.55622,85.64297,0.15756,0,0.51188,8.301,0.475,0,0,0,0,0,3.817,11.347,0.936,0.149,0,0.123,0.001,155.925,3511.082 -2060,1.4192,0.6152,166.468,5.7181,13.6998,13699.8,779.1888,166.4076,27.1963,4.4298,29.7079,58.5174,2.176,0.3226,0.1074,0.1375,84.0856,11.113,138.797,226.3568,86.5934,0.1422,0,0.4985,8.027,0.435,0,0,0,0,0,2.93,10.634,0.861,0.139,0,0.117,0.001,155.925,3511.082 -2061,1.28885,0.6075,165.95204,5.7204,13.51644,13516.44,772.51907,164.79686,26.8771,4.38112,29.54327,58.80981,2.17216,0.31644,0.10732,0.13105,85.06506,11.10641,140.83553,229.30577,87.48473,0.14112,0,0.49048,7.762,0.398,0,0,0,0,0,2.71,10.207,0.792,0.129,0,0.111,0,155.925,3511.082 -2062,1.1585,0.5998,165.43608,5.7227,13.33308,13333.08,765.84934,163.18612,26.5579,4.33244,29.37864,59.10222,2.16832,0.31028,0.10724,0.1246,86.04452,11.09982,142.87406,232.25474,88.37606,0.14004,0,0.48246,7.506,0.364,0,0,0,0,0,2.49,9.781,0.729,0.12,0,0.106,0,155.925,3511.082 -2063,1.02815,0.5921,164.92012,5.725,13.14972,13149.72,759.17961,161.57538,26.2387,4.28376,29.21401,59.39463,2.16448,0.30412,0.10716,0.11815,87.02398,11.09323,144.91259,235.20371,89.26739,0.13896,0,0.47444,7.258,0.333,0,0,0,0,0,2.27,9.354,0.67,0.112,0,0.1,0,155.925,3511.082 -2064,0.8978,0.5844,164.40416,5.7273,12.96636,12966.36,752.50988,159.96464,25.9195,4.23508,29.04938,59.68704,2.16064,0.29796,0.10708,0.1117,88.00344,11.08664,146.95112,238.15268,90.15872,0.13788,0,0.46642,7.019,0.305,0,0,0,0,0,2.049,8.927,0.617,0.104,0,0.095,0,155.925,3511.082 -2065,0.76745,0.5767,163.8882,5.7296,12.783,12783,745.84015,158.3539,25.6003,4.1864,28.88475,59.97945,2.1568,0.2918,0.107,0.10525,88.9829,11.08005,148.98965,241.10165,91.05005,0.1368,0,0.4584,6.787,0.279,0,0,0,0,0,1.829,8.501,0.567,0.097,0,0.091,0,155.925,3511.082 -2066,0.6371,0.569,163.37224,5.7319,12.59964,12599.64,739.17042,156.74316,25.2811,4.13772,28.72012,60.27186,2.15296,0.28564,0.10692,0.0988,89.96236,11.07346,151.02818,244.05062,91.94138,0.13572,0,0.45038,6.563,0.255,0,0,0,0,0,1.609,8.074,0.522,0.09,0,0.086,0,155.925,3511.082 -2067,0.50675,0.5613,162.85628,5.7342,12.41628,12416.28,732.50069,155.13242,24.9619,4.08904,28.55549,60.56427,2.14912,0.27948,0.10684,0.09235,90.94182,11.06687,153.06671,246.99959,92.83271,0.13464,0,0.44236,6.346,0.233,0,0,0,0,0,1.389,7.647,0.48,0.084,0,0.082,0,155.925,3511.082 -2068,0.3764,0.5536,162.34032,5.7365,12.23292,12232.92,725.83096,153.52168,24.6427,4.04036,28.39086,60.85668,2.14528,0.27332,0.10676,0.0859,91.92128,11.06028,155.10524,249.94856,93.72404,0.13356,0,0.43434,6.137,0.214,0,0,0,0,0,1.168,7.221,0.442,0.078,0,0.078,0,155.925,3511.082 -2069,0.24605,0.5459,161.82436,5.7388,12.04956,12049.56,719.16123,151.91094,24.3235,3.99168,28.22623,61.14909,2.14144,0.26716,0.10668,0.07945,92.90074,11.05369,157.14377,252.89753,94.61537,0.13248,0,0.42632,5.935,0.195,0,0,0,0,0,0.948,6.794,0.407,0.072,0,0.074,0,155.925,3511.082 -2070,0.1157,0.5382,161.3084,5.7411,11.8662,11866.2,712.4915,150.3002,24.0043,3.943,28.0616,61.4415,2.1376,0.261,0.1066,0.073,93.8802,11.0471,159.1823,255.8465,95.5067,0.1314,0,0.4183,5.739,0.179,0,0,0,0,0,0.728,6.367,0.374,0.067,0,0.07,0,155.925,3511.082 -2071,0.06083,0.53938,160.68516,5.72833,11.65506,11655.06,707.6157,149.13236,23.66643,3.91608,27.94251,61.63589,2.06823,0.25002,0.10626,0.06942,94.1193,11.03809,159.92094,256.83185,95.53701,0.1303,0,0.40805,5.549,0.164,0,0,0,0,0,0.673,6.112,0.344,0.063,0,0.067,0,155.925,3511.082 -2072,0.00596,0.54056,160.06192,5.71556,11.44392,11443.92,702.7399,147.96452,23.32856,3.88916,27.82342,61.83028,1.99886,0.23904,0.10592,0.06584,94.3584,11.02908,160.65958,257.8172,95.56732,0.1292,0,0.3978,5.366,0.15,0,0,0,0,0,0.619,5.856,0.317,0.058,0,0.063,0,155.925,3511.082 -2073,-0.04891,0.54174,159.43868,5.70279,11.23278,11232.78,697.8641,146.79668,22.99069,3.86224,27.70433,62.02467,1.92949,0.22806,0.10558,0.06226,94.5975,11.02007,161.39822,258.80255,95.59763,0.1281,0,0.38755,5.189,0.137,0,0,0,0,0,0.564,5.601,0.291,0.054,0,0.06,0,155.925,3511.082 -2074,-0.10378,0.54292,158.81544,5.69002,11.02164,11021.64,692.9883,145.62884,22.65282,3.83532,27.58524,62.21906,1.86012,0.21708,0.10524,0.05868,94.8366,11.01106,162.13686,259.7879,95.62794,0.127,0,0.3773,5.018,0.125,0,0,0,0,0,0.509,5.345,0.268,0.05,0,0.057,0,155.925,3511.082 -2075,-0.15865,0.5441,158.1922,5.67725,10.8105,10810.5,688.1125,144.461,22.31495,3.8084,27.46615,62.41345,1.79075,0.2061,0.1049,0.0551,95.0757,11.00205,162.8755,260.77325,95.65825,0.1259,0,0.36705,4.852,0.115,0,0,0,0,0,0.454,5.09,0.247,0.047,0,0.054,0,155.925,3511.082 -2076,-0.21352,0.54528,157.56896,5.66448,10.59936,10599.36,683.2367,143.29316,21.97708,3.78148,27.34706,62.60784,1.72138,0.19512,0.10456,0.05152,95.3148,10.99304,163.61414,261.7586,95.68856,0.1248,0,0.3568,4.692,0.105,0,0,0,0,0,0.4,4.834,0.227,0.043,0,0.052,0,155.925,3511.082 -2077,-0.26839,0.54646,156.94572,5.65171,10.38822,10388.22,678.3609,142.12532,21.63921,3.75456,27.22797,62.80223,1.65201,0.18414,0.10422,0.04794,95.5539,10.98403,164.35278,262.74395,95.71887,0.1237,0,0.34655,4.537,0.096,0,0,0,0,0,0.345,4.579,0.209,0.04,0,0.049,0,155.925,3511.082 -2078,-0.32326,0.54764,156.32248,5.63894,10.17708,10177.08,673.4851,140.95748,21.30134,3.72764,27.10888,62.99662,1.58264,0.17316,0.10388,0.04436,95.793,10.97502,165.09142,263.7293,95.74918,0.1226,0,0.3363,4.388,0.088,0,0,0,0,0,0.29,4.323,0.192,0.038,0,0.046,0,155.925,3511.082 -2079,-0.37813,0.54882,155.69924,5.62617,9.96594,9965.94,668.6093,139.78964,20.96347,3.70072,26.98979,63.19101,1.51327,0.16218,0.10354,0.04078,96.0321,10.96601,165.83006,264.71465,95.77949,0.1215,0,0.32605,4.243,0.08,0,0,0,0,0,0.236,4.068,0.177,0.035,0,0.044,0,155.925,3511.082 -2080,-0.433,0.55,155.076,5.6134,9.7548,9754.8,663.7335,138.6218,20.6256,3.6738,26.8707,63.3854,1.4439,0.1512,0.1032,0.0372,96.2712,10.957,166.5687,265.7,95.8098,0.1204,0,0.3158,4.103,0.074,0,0,0,0,0,0.181,3.812,0.162,0.033,0,0.042,0,155.925,3511.082 -2081,-0.47674,0.55524,154.41227,5.59813,9.56188,9561.88,661.04504,137.88381,20.41927,3.66094,26.82342,63.57873,1.41908,0.14528,0.1026,0.03348,95.76444,10.93657,166.06747,264.8148,95.1051,0.11903,0,0.30275,3.967,0.067,0,0,0,0,0,0.167,3.659,0.149,0.03,0,0.04,0,155.925,3511.082 -2082,-0.52048,0.56048,153.74854,5.58286,9.36896,9368.96,658.35658,137.14582,20.21294,3.64808,26.77614,63.77206,1.39426,0.13936,0.102,0.02976,95.25768,10.91614,165.56624,263.9296,94.4004,0.11766,0,0.2897,3.836,0.062,0,0,0,0,0,0.154,3.506,0.138,0.028,0,0.038,0,155.925,3511.082 -2083,-0.56422,0.56572,153.08481,5.56759,9.17604,9176.04,655.66812,136.40783,20.00661,3.63522,26.72886,63.96539,1.36944,0.13344,0.1014,0.02604,94.75092,10.89571,165.06501,263.0444,93.6957,0.11629,0,0.27665,3.71,0.056,0,0,0,0,0,0.14,3.353,0.127,0.026,0,0.036,0,155.925,3511.082 -2084,-0.60796,0.57096,152.42108,5.55232,8.98312,8983.12,652.97966,135.66984,19.80028,3.62236,26.68158,64.15872,1.34462,0.12752,0.1008,0.02232,94.24416,10.87528,164.56378,262.1592,92.991,0.11492,0,0.2636,3.587,0.052,0,0,0,0,0,0.126,3.2,0.116,0.024,0,0.034,0,155.925,3511.082 -2085,-0.6517,0.5762,151.75735,5.53705,8.7902,8790.2,650.2912,134.93185,19.59395,3.6095,26.6343,64.35205,1.3198,0.1216,0.1002,0.0186,93.7374,10.85485,164.06255,261.274,92.2863,0.11355,0,0.25055,3.469,0.047,0,0,0,0,0,0.113,3.047,0.107,0.023,0,0.032,0,155.925,3511.082 -2086,-0.69544,0.58144,151.09362,5.52178,8.59728,8597.28,647.60274,134.19386,19.38762,3.59664,26.58702,64.54538,1.29498,0.11568,0.0996,0.01488,93.23064,10.83442,163.56132,260.3888,91.5816,0.11218,0,0.2375,3.355,0.043,0,0,0,0,0,0.099,2.894,0.099,0.021,0,0.031,0,155.925,3511.082 -2087,-0.73918,0.58668,150.42989,5.50651,8.40436,8404.36,644.91428,133.45587,19.18129,3.58378,26.53974,64.73871,1.27016,0.10976,0.099,0.01116,92.72388,10.81399,163.06009,259.5036,90.8769,0.11081,0,0.22445,3.244,0.039,0,0,0,0,0,0.086,2.741,0.091,0.02,0,0.029,0,155.925,3511.082 -2088,-0.78292,0.59192,149.76616,5.49124,8.21144,8211.44,642.22582,132.71788,18.97496,3.57092,26.49246,64.93204,1.24534,0.10384,0.0984,0.00744,92.21712,10.79356,162.55886,258.6184,90.1722,0.10944,0,0.2114,3.137,0.036,0,0,0,0,0,0.072,2.588,0.083,0.018,0,0.028,0,155.925,3511.082 -2089,-0.82666,0.59716,149.10243,5.47597,8.01852,8018.52,639.53736,131.97989,18.76863,3.55806,26.44518,65.12537,1.22052,0.09792,0.0978,0.00372,91.71036,10.77313,162.05763,257.7332,89.4675,0.10807,0,0.19835,3.033,0.033,0,0,0,0,0,0.059,2.435,0.077,0.017,0,0.026,0,155.925,3511.082 -2090,-0.8704,0.6024,148.4387,5.4607,7.8256,7825.6,636.8489,131.2419,18.5623,3.5452,26.3979,65.3187,1.1957,0.092,0.0972,0,91.2036,10.7527,161.5564,256.848,88.7628,0.1067,0,0.1853,2.933,0.03,0,0,0,0,0,0.045,2.283,0.071,0.016,0,0.025,0,155.925,3511.082 -2091,-0.87644,0.59329,147.8001,5.44286,7.68856,7688.56,633.94839,130.66875,18.30502,3.52646,26.29122,65.51065,1.18533,0.09137,0.09635,0,90.20593,10.71798,160.22213,254.70245,87.63225,0.10515,0,0.17119,2.836,0.028,0,0,0,0,0,0.042,2.191,0.065,0.015,0,0.024,0,155.925,3511.082 -2092,-0.88248,0.58418,147.1615,5.42502,7.55152,7551.52,631.04788,130.0956,18.04774,3.50772,26.18454,65.7026,1.17496,0.09074,0.0955,0,89.20826,10.68326,158.88786,252.5569,86.5017,0.1036,0,0.15708,2.743,0.025,0,0,0,0,0,0.038,2.099,0.06,0.014,0,0.023,0,155.925,3511.082 -2093,-0.88852,0.57507,146.5229,5.40718,7.41448,7414.48,628.14737,129.52245,17.79046,3.48898,26.07786,65.89455,1.16459,0.09011,0.09465,0,88.21059,10.64854,157.55359,250.41135,85.37115,0.10205,0,0.14297,2.652,0.023,0,0,0,0,0,0.035,2.008,0.055,0.013,0,0.022,0,155.925,3511.082 -2094,-0.89456,0.56596,145.8843,5.38934,7.27744,7277.44,625.24686,128.9493,17.53318,3.47024,25.97118,66.0865,1.15422,0.08948,0.0938,0,87.21292,10.61382,156.21932,248.2658,84.2406,0.1005,0,0.12886,2.565,0.021,0,0,0,0,0,0.031,1.916,0.051,0.012,0,0.02,0,155.925,3511.082 -2095,-0.9006,0.55685,145.2457,5.3715,7.1404,7140.4,622.34635,128.37615,17.2759,3.4515,25.8645,66.27845,1.14385,0.08885,0.09295,0,86.21525,10.5791,154.88505,246.12025,83.11005,0.09895,0,0.11475,2.48,0.019,0,0,0,0,0,0.028,1.825,0.047,0.011,0,0.019,0,155.925,3511.082 -2096,-0.90664,0.54774,144.6071,5.35366,7.00336,7003.36,619.44584,127.803,17.01862,3.43276,25.75782,66.4704,1.13348,0.08822,0.0921,0,85.21758,10.54438,153.55078,243.9747,81.9795,0.0974,0,0.10064,2.398,0.018,0,0,0,0,0,0.025,1.733,0.043,0.01,0,0.018,0,155.925,3511.082 -2097,-0.91268,0.53863,143.9685,5.33582,6.86632,6866.32,616.54533,127.22985,16.76134,3.41402,25.65114,66.66235,1.12311,0.08759,0.09125,0,84.21991,10.50966,152.21651,241.82915,80.84895,0.09585,0,0.08653,2.319,0.016,0,0,0,0,0,0.021,1.641,0.039,0.009,0,0.018,0,155.925,3511.082 -2098,-0.91872,0.52952,143.3299,5.31798,6.72928,6729.28,613.64482,126.6567,16.50406,3.39528,25.54446,66.8543,1.11274,0.08696,0.0904,0,83.22224,10.47494,150.88224,239.6836,79.7184,0.0943,0,0.07242,2.243,0.015,0,0,0,0,0,0.018,1.55,0.036,0.009,0,0.017,0,155.925,3511.082 -2099,-0.92476,0.52041,142.6913,5.30014,6.59224,6592.24,610.74431,126.08355,16.24678,3.37654,25.43778,67.04625,1.10237,0.08633,0.08955,0,82.22457,10.44022,149.54797,237.53805,78.58785,0.09275,0,0.05831,2.169,0.014,0,0,0,0,0,0.015,1.458,0.033,0.008,0,0.016,0,155.925,3511.082 -2100,-0.9308,0.5113,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,2.097,0.012,0,0,0,0,0,0.011,1.367,0.031,0.008,0,0.015,0,155.925,3511.082 -2101,-0.9308,0.490848,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,2.028,0.011,0,0,0,0,0,0.01,1.298,0.028,0.007,0,0.014,0,155.925,3511.082 -2102,-0.9308,0.470396,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.961,0.01,0,0,0,0,0,0.008,1.233,0.026,0.007,0,0.014,0,155.925,3511.082 -2103,-0.9308,0.449944,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.896,0.01,0,0,0,0,0,0.007,1.172,0.024,0.006,0,0.013,0,155.925,3511.082 -2104,-0.9308,0.429492,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.834,0.009,0,0,0,0,0,0.006,1.113,0.022,0.006,0,0.012,0,155.925,3511.082 -2105,-0.9308,0.40904,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.773,0.008,0,0,0,0,0,0.006,1.057,0.02,0.005,0,0.012,0,155.925,3511.082 -2106,-0.9308,0.388588,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.715,0.007,0,0,0,0,0,0.005,1.005,0.019,0.005,0,0.011,0,155.925,3511.082 -2107,-0.9308,0.368136,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.658,0.007,0,0,0,0,0,0.004,0.954,0.017,0.005,0,0.011,0,155.925,3511.082 -2108,-0.9308,0.347684,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.603,0.006,0,0,0,0,0,0.004,0.907,0.016,0.004,0,0.01,0,155.925,3511.082 -2109,-0.9308,0.327232,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.55,0.006,0,0,0,0,0,0.003,0.861,0.014,0.004,0,0.009,0,155.925,3511.082 -2110,-0.9308,0.30678,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.499,0.005,0,0,0,0,0,0.003,0.818,0.013,0.004,0,0.009,0,155.925,3511.082 -2111,-0.9308,0.286328,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.45,0.005,0,0,0,0,0,0.002,0.777,0.012,0.003,0,0.009,0,155.925,3511.082 -2112,-0.9308,0.265876,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.402,0.004,0,0,0,0,0,0.002,0.738,0.011,0.003,0,0.008,0,155.925,3511.082 -2113,-0.9308,0.245424,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.356,0.004,0,0,0,0,0,0.002,0.702,0.01,0.003,0,0.008,0,155.925,3511.082 -2114,-0.9308,0.224972,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.311,0.004,0,0,0,0,0,0.002,0.666,0.01,0.003,0,0.007,0,155.925,3511.082 -2115,-0.9308,0.20452,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.268,0.003,0,0,0,0,0,0.001,0.633,0.009,0.003,0,0.007,0,155.925,3511.082 -2116,-0.9308,0.184068,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.226,0.003,0,0,0,0,0,0.001,0.601,0.008,0.002,0,0.007,0,155.925,3511.082 -2117,-0.9308,0.163616,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.185,0.003,0,0,0,0,0,0.001,0.571,0.007,0.002,0,0.006,0,155.925,3511.082 -2118,-0.9308,0.143164,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.146,0.003,0,0,0,0,0,0.001,0.543,0.007,0.002,0,0.006,0,155.925,3511.082 -2119,-0.9308,0.122712,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.108,0.002,0,0,0,0,0,0.001,0.516,0.006,0.002,0,0.006,0,155.925,3511.082 -2120,-0.9308,0.10226,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.072,0.002,0,0,0,0,0,0.001,0.49,0.006,0.002,0,0.005,0,155.925,3511.082 -2121,-0.9308,0.081808,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.036,0.002,0,0,0,0,0,0.001,0.465,0.005,0.002,0,0.005,0,155.925,3511.082 -2122,-0.9308,0.061356,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,1.002,0.002,0,0,0,0,0,0.001,0.442,0.005,0.002,0,0.005,0,155.925,3511.082 -2123,-0.9308,0.040904,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.969,0.002,0,0,0,0,0,0,0.42,0.005,0.001,0,0.005,0,155.925,3511.082 -2124,-0.9308,0.020452,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.937,0.001,0,0,0,0,0,0,0.399,0.004,0.001,0,0.004,0,155.925,3511.082 -2125,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.906,0.001,0,0,0,0,0,0,0.379,0.004,0.001,0,0.004,0,155.925,3511.082 -2126,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.876,0.001,0,0,0,0,0,0,0.36,0.004,0.001,0,0.004,0,155.925,3511.082 -2127,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.847,0.001,0,0,0,0,0,0,0.342,0.003,0.001,0,0.004,0,155.925,3511.082 -2128,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.819,0.001,0,0,0,0,0,0,0.325,0.003,0.001,0,0.004,0,155.925,3511.082 -2129,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.792,0.001,0,0,0,0,0,0,0.309,0.003,0.001,0,0.003,0,155.925,3511.082 -2130,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.766,0.001,0,0,0,0,0,0,0.293,0.003,0.001,0,0.003,0,155.925,3511.082 -2131,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.741,0.001,0,0,0,0,0,0,0.279,0.002,0.001,0,0.003,0,155.925,3511.082 -2132,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.717,0.001,0,0,0,0,0,0,0.265,0.002,0.001,0,0.003,0,155.925,3511.082 -2133,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.693,0.001,0,0,0,0,0,0,0.251,0.002,0.001,0,0.003,0,155.925,3511.082 -2134,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.67,0.001,0,0,0,0,0,0,0.239,0.002,0.001,0,0.003,0,155.925,3511.082 -2135,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.648,0.001,0,0,0,0,0,0,0.227,0.002,0.001,0,0.002,0,155.925,3511.082 -2136,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.627,0.001,0,0,0,0,0,0,0.216,0.002,0.001,0,0.002,0,155.925,3511.082 -2137,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.606,0,0,0,0,0,0,0,0.205,0.001,0.001,0,0.002,0,155.925,3511.082 -2138,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.586,0,0,0,0,0,0,0,0.195,0.001,0,0,0.002,0,155.925,3511.082 -2139,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.567,0,0,0,0,0,0,0,0.185,0.001,0,0,0.002,0,155.925,3511.082 -2140,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.548,0,0,0,0,0,0,0,0.176,0.001,0,0,0.002,0,155.925,3511.082 -2141,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.53,0,0,0,0,0,0,0,0.167,0.001,0,0,0.002,0,155.925,3511.082 -2142,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.512,0,0,0,0,0,0,0,0.159,0.001,0,0,0.002,0,155.925,3511.082 -2143,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.495,0,0,0,0,0,0,0,0.151,0.001,0,0,0.002,0,155.925,3511.082 -2144,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.479,0,0,0,0,0,0,0,0.143,0.001,0,0,0.002,0,155.925,3511.082 -2145,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.463,0,0,0,0,0,0,0,0.136,0.001,0,0,0.001,0,155.925,3511.082 -2146,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.448,0,0,0,0,0,0,0,0.129,0.001,0,0,0.001,0,155.925,3511.082 -2147,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.433,0,0,0,0,0,0,0,0.123,0.001,0,0,0.001,0,155.925,3511.082 -2148,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.419,0,0,0,0,0,0,0,0.117,0.001,0,0,0.001,0,155.925,3511.082 -2149,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.405,0,0,0,0,0,0,0,0.111,0.001,0,0,0.001,0,155.925,3511.082 -2150,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.392,0,0,0,0,0,0,0,0.105,0,0,0,0.001,0,155.925,3511.082 -2151,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.379,0,0,0,0,0,0,0,0.1,0,0,0,0.001,0,155.925,3511.082 -2152,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.366,0,0,0,0,0,0,0,0.095,0,0,0,0.001,0,155.925,3511.082 -2153,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.354,0,0,0,0,0,0,0,0.09,0,0,0,0.001,0,155.925,3511.082 -2154,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.342,0,0,0,0,0,0,0,0.086,0,0,0,0.001,0,155.925,3511.082 -2155,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.331,0,0,0,0,0,0,0,0.081,0,0,0,0.001,0,155.925,3511.082 -2156,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.32,0,0,0,0,0,0,0,0.077,0,0,0,0.001,0,155.925,3511.082 -2157,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.31,0,0,0,0,0,0,0,0.073,0,0,0,0.001,0,155.925,3511.082 -2158,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.299,0,0,0,0,0,0,0,0.07,0,0,0,0.001,0,155.925,3511.082 -2159,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.29,0,0,0,0,0,0,0,0.066,0,0,0,0.001,0,155.925,3511.082 -2160,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.28,0,0,0,0,0,0,0,0.063,0,0,0,0.001,0,155.925,3511.082 -2161,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.271,0,0,0,0,0,0,0,0.06,0,0,0,0.001,0,155.925,3511.082 -2162,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.262,0,0,0,0,0,0,0,0.057,0,0,0,0.001,0,155.925,3511.082 -2163,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.253,0,0,0,0,0,0,0,0.054,0,0,0,0.001,0,155.925,3511.082 -2164,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.245,0,0,0,0,0,0,0,0.051,0,0,0,0.001,0,155.925,3511.082 -2165,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.237,0,0,0,0,0,0,0,0.049,0,0,0,0.001,0,155.925,3511.082 -2166,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.229,0,0,0,0,0,0,0,0.046,0,0,0,0.001,0,155.925,3511.082 -2167,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.221,0,0,0,0,0,0,0,0.044,0,0,0,0,0,155.925,3511.082 -2168,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.214,0,0,0,0,0,0,0,0.042,0,0,0,0,0,155.925,3511.082 -2169,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.207,0,0,0,0,0,0,0,0.04,0,0,0,0,0,155.925,3511.082 -2170,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.2,0,0,0,0,0,0,0,0.038,0,0,0,0,0,155.925,3511.082 -2171,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.194,0,0,0,0,0,0,0,0.036,0,0,0,0,0,155.925,3511.082 -2172,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.187,0,0,0,0,0,0,0,0.034,0,0,0,0,0,155.925,3511.082 -2173,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.181,0,0,0,0,0,0,0,0.032,0,0,0,0,0,155.925,3511.082 -2174,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.175,0,0,0,0,0,0,0,0.031,0,0,0,0,0,155.925,3511.082 -2175,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.169,0,0,0,0,0,0,0,0.029,0,0,0,0,0,155.925,3511.082 -2176,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.164,0,0,0,0,0,0,0,0.028,0,0,0,0,0,155.925,3511.082 -2177,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.158,0,0,0,0,0,0,0,0.026,0,0,0,0,0,155.925,3511.082 -2178,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.153,0,0,0,0,0,0,0,0.025,0,0,0,0,0,155.925,3511.082 -2179,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.148,0,0,0,0,0,0,0,0.024,0,0,0,0,0,155.925,3511.082 -2180,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.143,0,0,0,0,0,0,0,0.023,0,0,0,0,0,155.925,3511.082 -2181,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.138,0,0,0,0,0,0,0,0.021,0,0,0,0,0,155.925,3511.082 -2182,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.134,0,0,0,0,0,0,0,0.02,0,0,0,0,0,155.925,3511.082 -2183,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.129,0,0,0,0,0,0,0,0.019,0,0,0,0,0,155.925,3511.082 -2184,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.125,0,0,0,0,0,0,0,0.018,0,0,0,0,0,155.925,3511.082 -2185,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.121,0,0,0,0,0,0,0,0.017,0,0,0,0,0,155.925,3511.082 -2186,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.117,0,0,0,0,0,0,0,0.017,0,0,0,0,0,155.925,3511.082 -2187,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.113,0,0,0,0,0,0,0,0.016,0,0,0,0,0,155.925,3511.082 -2188,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.109,0,0,0,0,0,0,0,0.015,0,0,0,0,0,155.925,3511.082 -2189,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.106,0,0,0,0,0,0,0,0.014,0,0,0,0,0,155.925,3511.082 -2190,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.102,0,0,0,0,0,0,0,0.014,0,0,0,0,0,155.925,3511.082 -2191,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.099,0,0,0,0,0,0,0,0.013,0,0,0,0,0,155.925,3511.082 -2192,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.096,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082 -2193,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.093,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082 -2194,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.089,0,0,0,0,0,0,0,0.011,0,0,0,0,0,155.925,3511.082 -2195,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.087,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082 -2196,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.084,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082 -2197,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.081,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082 -2198,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.078,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082 -2199,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.076,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082 -2200,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.073,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082 -2201,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.071,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082 -2202,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.068,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2203,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.066,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2204,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.064,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2205,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.062,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2206,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.06,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2207,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.058,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2208,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.056,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2209,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.054,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2210,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.052,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2211,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.051,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2212,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.049,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2213,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.047,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2214,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.046,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2215,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.044,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2216,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.043,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2217,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.041,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2218,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.04,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2219,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.039,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2220,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.037,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2221,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.036,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2222,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.035,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2223,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.034,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2224,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.033,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2225,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.032,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2226,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.031,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2227,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.03,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2228,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.029,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2229,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.028,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2230,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.027,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2231,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2232,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2233,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.024,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2234,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.023,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2235,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.023,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2236,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.022,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2237,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.021,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2238,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.02,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2239,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.02,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2240,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.019,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2241,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2242,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2243,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2244,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2245,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2246,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2247,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2248,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2249,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.014,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2250,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.014,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2251,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.013,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2252,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.013,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2253,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2254,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2255,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.012,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2256,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.011,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2257,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.011,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2258,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2259,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2260,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2261,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2262,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2263,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2264,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.009,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2265,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2266,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2267,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.008,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2268,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2269,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2270,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2271,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2272,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.007,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2273,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2274,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2275,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2276,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2277,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.006,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2278,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2279,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2280,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2281,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2282,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2283,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.005,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2284,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2285,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2286,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2287,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2288,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2289,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2290,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.004,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2291,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2292,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2293,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2294,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2295,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2296,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2297,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2298,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2299,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2300,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.003,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2301,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2302,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2303,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2304,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2305,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2306,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2307,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2308,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2309,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2310,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2311,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2312,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2313,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2314,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2315,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.002,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2316,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2317,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2318,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2319,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2320,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2321,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2322,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2323,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2324,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2325,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2326,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2327,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2328,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2329,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2330,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2331,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2332,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2333,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2334,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2335,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2336,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2337,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2338,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2339,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2340,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2341,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2342,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2343,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2344,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2345,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2346,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2347,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2348,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0.001,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2349,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2350,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2351,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2352,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2353,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2354,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2355,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2356,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2357,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2358,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2359,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2360,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2361,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2362,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2363,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2364,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2365,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2366,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2367,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2368,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2369,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2370,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2371,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2372,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2373,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2374,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2375,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2376,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2377,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2378,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2379,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2380,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2381,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2382,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2383,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2384,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2385,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2386,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2387,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2388,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2389,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2390,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2391,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2392,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2393,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2394,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2395,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2396,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2397,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2398,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2399,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2400,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2401,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2402,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2403,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2404,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2405,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2406,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2407,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2408,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2409,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2410,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2411,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2412,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2413,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2414,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2415,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2416,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2417,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2418,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2419,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2420,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2421,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2422,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2423,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2424,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2425,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2426,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2427,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2428,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2429,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2430,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2431,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2432,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2433,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2434,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2435,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2436,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2437,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2438,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2439,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2440,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2441,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2442,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2443,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2444,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2445,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2446,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2447,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2448,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2449,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2450,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2451,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2452,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2453,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2454,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2455,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2456,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2457,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2458,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2459,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2460,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2461,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2462,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2463,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2464,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2465,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2466,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2467,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2468,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2469,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2470,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2471,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2472,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2473,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2474,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2475,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2476,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2477,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2478,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2479,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2480,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2481,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2482,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2483,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2484,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2485,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2486,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2487,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2488,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2489,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2490,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2491,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2492,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2493,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2494,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2495,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2496,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2497,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2498,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2499,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 -2500,-0.9308,0,142.0527,5.2823,6.4552,6455.2,607.8438,125.5104,15.9895,3.3578,25.3311,67.2382,1.092,0.0857,0.0887,0,81.2269,10.4055,148.2137,235.3925,77.4573,0.0912,0,0.0442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155.925,3511.082 diff --git a/inst/input/emissions/RCP45_emissions.csv b/inst/input/emissions/RCP45_emissions.csv deleted file mode 100644 index 7cf2a6998..000000000 --- a/inst/input/emissions/RCP45_emissions.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP4.5 Emissions, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,7.4566,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082 -2006,8.0985,1.1385,317.2396,7.721,56.3034,56303.4,1057.0145,214.0518,38.5859,8.2245,35.9952,41.9902,11.411,2.5813,0.4427,10.5529,12.3831,3.8803,14.4509,121.0746,12.7893,5.1614,31.23,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082 -2007,8.226,1.0815,318.5722,7.7579,55.8873,55887.3,1052.4683,212.6378,38.3772,8.1977,35.598,42.0965,11.2139,2.5131,0.4492,10.2947,13.7731,4.5246,15.1335,129.6223,13.1314,5.4292,35.5714,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082 -2008,8.3531333,1.0245333,319.8964,7.7946667,55.4711,55471.1,1047.8519,211.21813,38.168667,8.1708667,35.199467,42.202733,11.012133,2.4452667,0.45503333,10.037233,15.162767,5.1677,15.798,133.99193,13.4753,5.6901667,39.912933,6.286,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082 -2009,8.4802667,0.96756667,321.2206,7.8314333,55.0549,55054.9,1043.2354,209.79847,37.960133,8.1440333,34.800933,42.308967,10.810367,2.3774333,0.46086667,9.7797667,16.552433,5.8108,16.4625,138.36157,13.8192,5.9511333,44.254467,5.9707,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082 -2010,8.6074,0.9106,322.5448,7.8682,54.6387,54638.7,1038.619,208.3788,37.7516,8.1172,34.4024,42.4152,10.6086,2.3096,0.4667,9.5223,17.9421,6.4539,17.127,142.7312,14.1631,6.2121,48.596,5.6554,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082 -2011,8.73381,0.85362,323.84112,7.90492,54.22214,54222.14,1033.7724,206.94006,37.54386,8.09002,33.99919,42.5208,10.3919,2.24289,0.43848,8.68531,22.21208,6.53107,18.54246,147.40164,14.51343,5.65092,52.93749,5.34014,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,0,1.445,0.156,167.857,3511.082 -2012,8.86022,0.79664,325.13744,7.94164,53.80558,53805.58,1028.9259,205.50132,37.33612,8.06284,33.59598,42.6264,10.1752,2.17618,0.41026,7.84832,26.48206,6.60824,19.95792,152.07208,14.86376,5.08974,57.27898,5.02488,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,0,1.373,0.139,167.857,3511.082 -2013,8.98663,0.73966,326.43376,7.97836,53.38902,53389.02,1024.0793,204.06258,37.12838,8.03566,33.19277,42.732,9.9585,2.10947,0.38204,7.01133,30.75204,6.68541,21.37338,156.74252,15.21409,4.52856,61.62047,4.70962,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,0,1.304,0.124,167.857,3511.082 -2014,9.11304,0.68268,327.73008,8.01508,52.97246,52972.46,1019.2328,202.62384,36.92064,8.00848,32.78956,42.8376,9.7418,2.04276,0.35382,6.17434,35.02202,6.76258,22.78884,161.41296,15.56442,3.96738,65.96196,4.39436,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,0,1.239,0.11,167.857,3511.082 -2015,9.23945,0.6257,329.0264,8.0518,52.5559,52555.9,1014.3863,201.1851,36.7129,7.9813,32.38635,42.9432,9.5251,1.97605,0.3256,5.33735,39.292,6.83975,24.2043,166.0834,15.91475,3.4062,70.30345,4.0791,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,0,1.177,0.098,155.925,3511.082 -2016,9.36586,0.56872,330.32272,8.08852,52.13934,52139.34,1009.5397,199.74636,36.50516,7.95412,31.98314,43.0488,9.3084,1.90934,0.29738,4.50036,43.56198,6.91692,25.61976,170.75384,16.26508,2.84502,74.64494,3.76384,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,0,1.118,0.087,155.925,3511.082 -2017,9.49227,0.51174,331.61904,8.12524,51.72278,51722.78,1004.6932,198.30762,36.29742,7.92694,31.57993,43.1544,9.0917,1.84263,0.26916,3.66337,47.83196,6.99409,27.03522,175.42428,16.61541,2.28384,78.98643,3.44858,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,0,1.062,0.078,155.925,3511.082 -2018,9.61868,0.45476,332.91536,8.16196,51.30622,51306.22,999.8466,196.86888,36.08968,7.89976,31.17672,43.26,8.875,1.77592,0.24094,2.82638,52.10194,7.07126,28.45068,180.09472,16.96574,1.72266,83.32792,3.13332,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,0,1.009,0.069,155.925,3511.082 -2019,9.74509,0.39778,334.21168,8.19868,50.88966,50889.66,995.00005,195.43014,35.88194,7.87258,30.77351,43.3656,8.6583,1.70921,0.21272,1.98939,56.37192,7.14843,29.86614,184.76516,17.31607,1.16148,87.66941,2.81806,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0,0.959,0.061,155.925,3511.082 -2020,9.8715,0.3408,335.508,8.2354,50.4731,50473.1,990.1535,193.9914,35.6742,7.8454,30.3703,43.4712,8.4416,1.6425,0.1845,1.1524,60.6419,7.2256,31.2816,189.4356,17.6664,0.6003,92.0109,2.5028,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0,0.911,0.055,155.925,3511.082 -2021,9.97968,0.32835,335.85701,8.26904,49.71227,49712.27,990.11353,194.87285,35.58304,7.79487,30.2411,43.66264,8.442,1.65926,0.17723,1.1063,61.78125,7.31559,31.32967,191.31961,17.94569,0.56612,92.38631,2.54361,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0,0.865,0.049,155.925,3511.082 -2022,10.08786,0.3159,336.20602,8.30268,48.95144,48951.44,990.07356,195.7543,35.49188,7.74434,30.1119,43.85408,8.4424,1.67602,0.16996,1.0602,62.9206,7.40558,31.37774,193.20362,18.22498,0.53194,92.76172,2.58442,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0,0.822,0.043,155.925,3511.082 -2023,10.19604,0.30345,336.55503,8.33632,48.19061,48190.61,990.03359,196.63575,35.40072,7.69381,29.9827,44.04552,8.4428,1.69278,0.16269,1.0141,64.05995,7.49557,31.42581,195.08763,18.50427,0.49776,93.13713,2.62523,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0,0.781,0.039,155.925,3511.082 -2024,10.30422,0.291,336.90404,8.36996,47.42978,47429.78,989.99362,197.5172,35.30956,7.64328,29.8535,44.23696,8.4432,1.70954,0.15542,0.968,65.1993,7.58556,31.47388,196.97164,18.78356,0.46358,93.51254,2.66604,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0,0.742,0.034,155.925,3511.082 -2025,10.4124,0.27855,337.25305,8.4036,46.66895,46668.95,989.95365,198.39865,35.2184,7.59275,29.7243,44.4284,8.4436,1.7263,0.14815,0.9219,66.33865,7.67555,31.52195,198.85565,19.06285,0.4294,93.88795,2.70685,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0,0.705,0.031,155.925,3511.082 -2026,10.52058,0.2661,337.60206,8.43724,45.90812,45908.12,989.91368,199.2801,35.12724,7.54222,29.5951,44.61984,8.444,1.74306,0.14088,0.8758,67.478,7.76554,31.57002,200.73966,19.34214,0.39522,94.26336,2.74766,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0,0.669,0.027,155.925,3511.082 -2027,10.62876,0.25365,337.95107,8.47088,45.14729,45147.29,989.87371,200.16155,35.03608,7.49169,29.4659,44.81128,8.4444,1.75982,0.13361,0.8297,68.61735,7.85553,31.61809,202.62367,19.62143,0.36104,94.63877,2.78847,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0,0.636,0.024,155.925,3511.082 -2028,10.73694,0.2412,338.30008,8.50452,44.38646,44386.46,989.83374,201.043,34.94492,7.44116,29.3367,45.00272,8.4448,1.77658,0.12634,0.7836,69.7567,7.94552,31.66616,204.50768,19.90072,0.32686,95.01418,2.82928,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0,0.604,0.022,155.925,3511.082 -2029,10.84512,0.22875,338.64909,8.53816,43.62563,43625.63,989.79377,201.92445,34.85376,7.39063,29.2075,45.19416,8.4452,1.79334,0.11907,0.7375,70.89605,8.03551,31.71423,206.39169,20.18001,0.29268,95.38959,2.87009,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0,0.574,0.019,155.925,3511.082 -2030,10.9533,0.2163,338.9981,8.5718,42.8648,42864.8,989.7538,202.8059,34.7626,7.3401,29.0783,45.3856,8.4456,1.8101,0.1118,0.6914,72.0354,8.1255,31.7623,208.2757,20.4593,0.2585,95.765,2.9109,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0,0.545,0.017,155.925,3511.082 -2031,10.99177,0.21454,338.85573,8.58349,42.03872,42038.72,985.80309,202.69076,34.54297,7.2846,28.95954,45.48715,8.46737,1.8237,0.1119,0.66362,72.90303,8.24943,31.72409,210.39103,20.74256,0.25838,95.88014,2.95352,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0,0.518,0.015,155.925,3511.082 -2032,11.03024,0.21278,338.71336,8.59518,41.21264,41212.64,981.85238,202.57562,34.32334,7.2291,28.84078,45.5887,8.48914,1.8373,0.112,0.63584,73.77066,8.37336,31.68588,212.50636,21.02582,0.25826,95.99528,2.99614,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0,0.492,0.013,155.925,3511.082 -2033,11.06871,0.21102,338.57099,8.60687,40.38656,40386.56,977.90167,202.46048,34.10371,7.1736,28.72202,45.69025,8.51091,1.8509,0.1121,0.60806,74.63829,8.49729,31.64767,214.62169,21.30908,0.25814,96.11042,3.03876,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0,0.467,0.012,155.925,3511.082 -2034,11.10718,0.20926,338.42862,8.61856,39.56048,39560.48,973.95096,202.34534,33.88408,7.1181,28.60326,45.7918,8.53268,1.8645,0.1122,0.58028,75.50592,8.62122,31.60946,216.73702,21.59234,0.25802,96.22556,3.08138,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0,0.444,0.011,155.925,3511.082 -2035,11.14565,0.2075,338.28625,8.63025,38.7344,38734.4,970.00025,202.2302,33.66445,7.0626,28.4845,45.89335,8.55445,1.8781,0.1123,0.5525,76.37355,8.74515,31.57125,218.85235,21.8756,0.2579,96.3407,3.124,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0,0.422,0.01,155.925,3511.082 -2036,11.18412,0.20574,338.14388,8.64194,37.90832,37908.32,966.04954,202.11506,33.44482,7.0071,28.36574,45.9949,8.57622,1.8917,0.1124,0.52472,77.24118,8.86908,31.53304,220.96768,22.15886,0.25778,96.45584,3.16662,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0,0.401,0.008,155.925,3511.082 -2037,11.22259,0.20398,338.00151,8.65363,37.08224,37082.24,962.09883,201.99992,33.22519,6.9516,28.24698,46.09645,8.59799,1.9053,0.1125,0.49694,78.10881,8.99301,31.49483,223.08301,22.44212,0.25766,96.57098,3.20924,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0,0.381,0.008,155.925,3511.082 -2038,11.26106,0.20222,337.85914,8.66532,36.25616,36256.16,958.14812,201.88478,33.00556,6.8961,28.12822,46.198,8.61976,1.9189,0.1126,0.46916,78.97644,9.11694,31.45662,225.19834,22.72538,0.25754,96.68612,3.25186,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0,0.362,0.007,155.925,3511.082 -2039,11.29953,0.20046,337.71677,8.67701,35.43008,35430.08,954.19741,201.76964,32.78593,6.8406,28.00946,46.29955,8.64153,1.9325,0.1127,0.44138,79.84407,9.24087,31.41841,227.31367,23.00864,0.25742,96.80126,3.29448,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0,0.344,0.006,155.925,3511.082 -2040,11.338,0.1987,337.5744,8.6887,34.604,34604,950.2467,201.6545,32.5663,6.7851,27.8907,46.4011,8.6633,1.9461,0.1128,0.4136,80.7117,9.3648,31.3802,229.429,23.2919,0.2573,96.9164,3.3371,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0,0.326,0.005,155.925,3511.082 -2041,11.30733,0.20369,336.95066,8.67866,33.71148,33711.48,942.49931,200.55337,32.21797,6.72454,27.78233,46.41253,8.71054,1.95661,0.11238,0.39687,80.10127,9.53783,31.31317,231.78318,23.57453,0.24048,96.77125,3.38154,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0,0.31,0.005,155.925,3511.082 -2042,11.27666,0.20868,336.32692,8.66862,32.81896,32818.96,934.75192,199.45224,31.86964,6.66398,27.67396,46.42396,8.75778,1.96712,0.11196,0.38014,79.49084,9.71086,31.24614,234.13736,23.85716,0.22366,96.6261,3.42598,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0,0.295,0.004,155.925,3511.082 -2043,11.24599,0.21367,335.70318,8.65858,31.92644,31926.44,927.00453,198.35111,31.52131,6.60342,27.56559,46.43539,8.80502,1.97763,0.11154,0.36341,78.88041,9.88389,31.17911,236.49154,24.13979,0.20684,96.48095,3.47042,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0,0.28,0.004,155.925,3511.082 -2044,11.21532,0.21866,335.07944,8.64854,31.03392,31033.92,919.25714,197.24998,31.17298,6.54286,27.45722,46.44682,8.85226,1.98814,0.11112,0.34668,78.26998,10.05692,31.11208,238.84572,24.42242,0.19002,96.3358,3.51486,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0,0.266,0.003,155.925,3511.082 -2045,11.18465,0.22365,334.4557,8.6385,30.1414,30141.4,911.50975,196.14885,30.82465,6.4823,27.34885,46.45825,8.8995,1.99865,0.1107,0.32995,77.65955,10.22995,31.04505,241.1999,24.70505,0.1732,96.19065,3.5593,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0,0.253,0.003,155.925,3511.082 -2046,11.15398,0.22864,333.83196,8.62846,29.24888,29248.88,903.76236,195.04772,30.47632,6.42174,27.24048,46.46968,8.94674,2.00916,0.11028,0.31322,77.04912,10.40298,30.97802,243.55408,24.98768,0.15638,96.0455,3.60374,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0,0.24,0.003,155.925,3511.082 -2047,11.12331,0.23363,333.20822,8.61842,28.35636,28356.36,896.01497,193.94659,30.12799,6.36118,27.13211,46.48111,8.99398,2.01967,0.10986,0.29649,76.43869,10.57601,30.91099,245.90826,25.27031,0.13956,95.90035,3.64818,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0,0.228,0.002,155.925,3511.082 -2048,11.09264,0.23862,332.58448,8.60838,27.46384,27463.84,888.26758,192.84546,29.77966,6.30062,27.02374,46.49254,9.04122,2.03018,0.10944,0.27976,75.82826,10.74904,30.84396,248.26244,25.55294,0.12274,95.7552,3.69262,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0,0.217,0.002,155.925,3511.082 -2049,11.06197,0.24361,331.96074,8.59834,26.57132,26571.32,880.52019,191.74433,29.43133,6.24006,26.91537,46.50397,9.08846,2.04069,0.10902,0.26303,75.21783,10.92207,30.77693,250.61662,25.83557,0.10592,95.61005,3.73706,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0,0.206,0.002,155.925,3511.082 -2050,11.0313,0.2486,331.337,8.5883,25.6788,25678.8,872.7728,190.6432,29.083,6.1795,26.807,46.5154,9.1357,2.0512,0.1086,0.2463,74.6074,11.0951,30.7099,252.9708,26.1182,0.0891,95.4649,3.7815,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0,0.195,0.002,155.925,3511.082 -2051,10.86829,0.24215,329.96427,8.58011,25.18207,25182.07,863.3512,189.56776,28.72999,6.11469,26.61515,46.46268,9.11255,2.04957,0.10848,0.23542,75.55522,11.09689,30.26107,252.01802,26.06031,0.08327,94.54597,3.83266,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0,0.186,0.001,155.925,3511.082 -2052,10.70528,0.2357,328.59154,8.57192,24.68534,24685.34,853.9296,188.49232,28.37698,6.04988,26.4233,46.40996,9.0894,2.04794,0.10836,0.22454,76.50304,11.09868,29.81224,251.06524,26.00242,0.07744,93.62704,3.88382,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0,0.176,0.001,155.925,3511.082 -2053,10.54227,0.22925,327.21881,8.56373,24.18861,24188.61,844.508,187.41688,28.02397,5.98507,26.23145,46.35724,9.06625,2.04631,0.10824,0.21366,77.45086,11.10047,29.36341,250.11246,25.94453,0.07161,92.70811,3.93498,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0,0.168,0.001,155.925,3511.082 -2054,10.37926,0.2228,325.84608,8.55554,23.69188,23691.88,835.0864,186.34144,27.67096,5.92026,26.0396,46.30452,9.0431,2.04468,0.10812,0.20278,78.39868,11.10226,28.91458,249.15968,25.88664,0.06578,91.78918,3.98614,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0,0.159,0.001,155.925,3511.082 -2055,10.21625,0.21635,324.47335,8.54735,23.19515,23195.15,825.6648,185.266,27.31795,5.85545,25.84775,46.2518,9.01995,2.04305,0.108,0.1919,79.3465,11.10405,28.46575,248.2069,25.82875,0.05995,90.87025,4.0373,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0,0.151,0.001,155.925,3511.082 -2056,10.05324,0.2099,323.10062,8.53916,22.69842,22698.42,816.2432,184.19056,26.96494,5.79064,25.6559,46.19908,8.9968,2.04142,0.10788,0.18102,80.29432,11.10584,28.01692,247.25412,25.77086,0.05412,89.95132,4.08846,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0,0.144,0.001,155.925,3511.082 -2057,9.89023,0.20345,321.72789,8.53097,22.20169,22201.69,806.8216,183.11512,26.61193,5.72583,25.46405,46.14636,8.97365,2.03979,0.10776,0.17014,81.24214,11.10763,27.56809,246.30134,25.71297,0.04829,89.03239,4.13962,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0,0.136,0.001,155.925,3511.082 -2058,9.72722,0.197,320.35516,8.52278,21.70496,21704.96,797.4,182.03968,26.25892,5.66102,25.2722,46.09364,8.9505,2.03816,0.10764,0.15926,82.18996,11.10942,27.11926,245.34856,25.65508,0.04246,88.11346,4.19078,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0,0.13,0.001,155.925,3511.082 -2059,9.56421,0.19055,318.98243,8.51459,21.20823,21208.23,787.9784,180.96424,25.90591,5.59621,25.08035,46.04092,8.92735,2.03653,0.10752,0.14838,83.13778,11.11121,26.67043,244.39578,25.59719,0.03663,87.19453,4.24194,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0,0.123,0.001,155.925,3511.082 -2060,9.4012,0.1841,317.6097,8.5064,20.7115,20711.5,778.5568,179.8888,25.5529,5.5314,24.8885,45.9882,8.9042,2.0349,0.1074,0.1375,84.0856,11.113,26.2216,243.443,25.5393,0.0308,86.2756,4.2931,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0,0.117,0.001,155.925,3511.082 -2061,9.1729,0.17607,315.92522,8.49168,20.28023,20280.23,768.06528,178.54508,25.2186,5.46337,24.67492,45.90952,8.91416,2.0301,0.10732,0.13105,85.06506,11.10641,25.99838,244.90395,25.78992,0.02989,85.73583,4.35328,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0,0.111,0,155.925,3511.082 -2062,8.9446,0.16804,314.24074,8.47696,19.84896,19848.96,757.57376,177.20136,24.8843,5.39534,24.46134,45.83084,8.92412,2.0253,0.10724,0.1246,86.04452,11.09982,25.77516,246.3649,26.04054,0.02898,85.19606,4.41346,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0,0.106,0,155.925,3511.082 -2063,8.7163,0.16001,312.55626,8.46224,19.41769,19417.69,747.08224,175.85764,24.55,5.32731,24.24776,45.75216,8.93408,2.0205,0.10716,0.11815,87.02398,11.09323,25.55194,247.82585,26.29116,0.02807,84.65629,4.47364,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0,0.1,0,155.925,3511.082 -2064,8.488,0.15198,310.87178,8.44752,18.98642,18986.42,736.59072,174.51392,24.2157,5.25928,24.03418,45.67348,8.94404,2.0157,0.10708,0.1117,88.00344,11.08664,25.32872,249.2868,26.54178,0.02716,84.11652,4.53382,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0,0.095,0,155.925,3511.082 -2065,8.2597,0.14395,309.1873,8.4328,18.55515,18555.15,726.0992,173.1702,23.8814,5.19125,23.8206,45.5948,8.954,2.0109,0.107,0.10525,88.9829,11.08005,25.1055,250.74775,26.7924,0.02625,83.57675,4.594,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0,0.091,0,155.925,3511.082 -2066,8.0314,0.13592,307.50282,8.41808,18.12388,18123.88,715.60768,171.82648,23.5471,5.12322,23.60702,45.51612,8.96396,2.0061,0.10692,0.0988,89.96236,11.07346,24.88228,252.2087,27.04302,0.02534,83.03698,4.65418,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0,0.086,0,155.925,3511.082 -2067,7.8031,0.12789,305.81834,8.40336,17.69261,17692.61,705.11616,170.48276,23.2128,5.05519,23.39344,45.43744,8.97392,2.0013,0.10684,0.09235,90.94182,11.06687,24.65906,253.66965,27.29364,0.02443,82.49721,4.71436,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0,0.082,0,155.925,3511.082 -2068,7.5748,0.11986,304.13386,8.38864,17.26134,17261.34,694.62464,169.13904,22.8785,4.98716,23.17986,45.35876,8.98388,1.9965,0.10676,0.0859,91.92128,11.06028,24.43584,255.1306,27.54426,0.02352,81.95744,4.77454,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0,0.078,0,155.925,3511.082 -2069,7.3465,0.11183,302.44938,8.37392,16.83007,16830.07,684.13312,167.79532,22.5442,4.91913,22.96628,45.28008,8.99384,1.9917,0.10668,0.07945,92.90074,11.05369,24.21262,256.59155,27.79488,0.02261,81.41767,4.83472,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0,0.074,0,155.925,3511.082 -2070,7.1182,0.1038,300.7649,8.3592,16.3988,16398.8,673.6416,166.4516,22.2099,4.8511,22.7527,45.2014,9.0038,1.9869,0.1066,0.073,93.8802,11.0471,23.9894,258.0525,28.0455,0.0217,80.8779,4.8949,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0,0.07,0,155.925,3511.082 -2071,6.82459,0.0942,298.76876,8.33796,16.03302,16033.02,662.0793,164.83958,21.89432,4.77984,22.5174,45.09671,9.04993,1.97901,0.10626,0.06942,94.1193,11.03809,23.94406,262.30888,28.61994,0.02131,80.71735,4.96411,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0,0.067,0,155.925,3511.082 -2072,6.53098,0.0846,296.77262,8.31672,15.66724,15667.24,650.517,163.22756,21.57874,4.70858,22.2821,44.99202,9.09606,1.97112,0.10592,0.06584,94.3584,11.02908,23.89872,266.56526,29.19438,0.02092,80.5568,5.03332,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0,0.063,0,155.925,3511.082 -2073,6.23737,0.075,294.77648,8.29548,15.30146,15301.46,638.9547,161.61554,21.26316,4.63732,22.0468,44.88733,9.14219,1.96323,0.10558,0.06226,94.5975,11.02007,23.85338,270.82164,29.76882,0.02053,80.39625,5.10253,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0,0.06,0,155.925,3511.082 -2074,5.94376,0.0654,292.78034,8.27424,14.93568,14935.68,627.3924,160.00352,20.94758,4.56606,21.8115,44.78264,9.18832,1.95534,0.10524,0.05868,94.8366,11.01106,23.80804,275.07802,30.34326,0.02014,80.2357,5.17174,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0,0.057,0,155.925,3511.082 -2075,5.65015,0.0558,290.7842,8.253,14.5699,14569.9,615.8301,158.3915,20.632,4.4948,21.5762,44.67795,9.23445,1.94745,0.1049,0.0551,95.0757,11.00205,23.7627,279.3344,30.9177,0.01975,80.07515,5.24095,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0,0.054,0,155.925,3511.082 -2076,5.35654,0.0462,288.78806,8.23176,14.20412,14204.12,604.2678,156.77948,20.31642,4.42354,21.3409,44.57326,9.28058,1.93956,0.10456,0.05152,95.3148,10.99304,23.71736,283.59078,31.49214,0.01936,79.9146,5.31016,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0,0.052,0,155.925,3511.082 -2077,5.06293,0.0366,286.79192,8.21052,13.83834,13838.34,592.7055,155.16746,20.00084,4.35228,21.1056,44.46857,9.32671,1.93167,0.10422,0.04794,95.5539,10.98403,23.67202,287.84716,32.06658,0.01897,79.75405,5.37937,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0,0.049,0,155.925,3511.082 -2078,4.76932,0.027,284.79578,8.18928,13.47256,13472.56,581.1432,153.55544,19.68526,4.28102,20.8703,44.36388,9.37284,1.92378,0.10388,0.04436,95.793,10.97502,23.62668,292.10354,32.64102,0.01858,79.5935,5.44858,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0,0.046,0,155.925,3511.082 -2079,4.47571,0.0174,282.79964,8.16804,13.10678,13106.78,569.5809,151.94342,19.36968,4.20976,20.635,44.25919,9.41897,1.91589,0.10354,0.04078,96.0321,10.96601,23.58134,296.35992,33.21546,0.01819,79.43295,5.51779,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0,0.044,0,155.925,3511.082 -2080,4.1821,0.0078,280.8035,8.1468,12.741,12741,558.0186,150.3314,19.0541,4.1385,20.3997,44.1545,9.4651,1.908,0.1032,0.0372,96.2712,10.957,23.536,300.6163,33.7899,0.0178,79.2724,5.587,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0,0.042,0,155.925,3511.082 -2081,4.18314,0.00973,280.06659,8.14506,12.66664,12666.64,553.9826,149.81652,19.0042,4.12467,20.34975,44.12524,9.57675,1.91453,0.1026,0.03348,95.76444,10.93657,23.53444,305.85507,34.4037,0.01759,79.4532,5.62936,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0,0.04,0,155.925,3511.082 -2082,4.18418,0.01166,279.32968,8.14332,12.59228,12592.28,549.9466,149.30164,18.9543,4.11084,20.2998,44.09598,9.6884,1.92106,0.102,0.02976,95.25768,10.91614,23.53288,311.09384,35.0175,0.01738,79.634,5.67172,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0,0.038,0,155.925,3511.082 -2083,4.18522,0.01359,278.59277,8.14158,12.51792,12517.92,545.9106,148.78676,18.9044,4.09701,20.24985,44.06672,9.80005,1.92759,0.1014,0.02604,94.75092,10.89571,23.53132,316.33261,35.6313,0.01717,79.8148,5.71408,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0,0.036,0,155.925,3511.082 -2084,4.18626,0.01552,277.85586,8.13984,12.44356,12443.56,541.8746,148.27188,18.8545,4.08318,20.1999,44.03746,9.9117,1.93412,0.1008,0.02232,94.24416,10.87528,23.52976,321.57138,36.2451,0.01696,79.9956,5.75644,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0,0.034,0,155.925,3511.082 -2085,4.1873,0.01745,277.11895,8.1381,12.3692,12369.2,537.8386,147.757,18.8046,4.06935,20.14995,44.0082,10.02335,1.94065,0.1002,0.0186,93.7374,10.85485,23.5282,326.81015,36.8589,0.01675,80.1764,5.7988,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0,0.032,0,155.925,3511.082 -2086,4.18834,0.01938,276.38204,8.13636,12.29484,12294.84,533.8026,147.24212,18.7547,4.05552,20.1,43.97894,10.135,1.94718,0.0996,0.01488,93.23064,10.83442,23.52664,332.04892,37.4727,0.01654,80.3572,5.84116,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0,0.031,0,155.925,3511.082 -2087,4.18938,0.02131,275.64513,8.13462,12.22048,12220.48,529.7666,146.72724,18.7048,4.04169,20.05005,43.94968,10.24665,1.95371,0.099,0.01116,92.72388,10.81399,23.52508,337.28769,38.0865,0.01633,80.538,5.88352,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0,0.029,0,155.925,3511.082 -2088,4.19042,0.02324,274.90822,8.13288,12.14612,12146.12,525.7306,146.21236,18.6549,4.02786,20.0001,43.92042,10.3583,1.96024,0.0984,0.00744,92.21712,10.79356,23.52352,342.52646,38.7003,0.01612,80.7188,5.92588,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0,0.028,0,155.925,3511.082 -2089,4.19146,0.02517,274.17131,8.13114,12.07176,12071.76,521.6946,145.69748,18.605,4.01403,19.95015,43.89116,10.46995,1.96677,0.0978,0.00372,91.71036,10.77313,23.52196,347.76523,39.3141,0.01591,80.8996,5.96824,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0,0.026,0,155.925,3511.082 -2090,4.1925,0.0271,273.4344,8.1294,11.9974,11997.4,517.6586,145.1826,18.5551,4.0002,19.9002,43.8619,10.5816,1.9733,0.0972,0,91.2036,10.7527,23.5204,353.004,39.9279,0.0157,81.0804,6.0106,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0,0.025,0,155.925,3511.082 -2091,4.19355,0.02902,272.69682,8.12762,11.92305,11923.05,513.6227,144.66772,18.50518,3.98639,19.85023,43.83258,10.66307,1.98218,0.09635,0,90.20592,10.71798,23.469,358.61111,40.56215,0.01555,81.2612,6.05297,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0,0.024,0,155.925,3511.082 -2092,4.1946,0.03094,271.95924,8.12584,11.8487,11848.7,509.5868,144.15284,18.45526,3.97258,19.80026,43.80326,10.74454,1.99106,0.0955,0,89.20824,10.68326,23.4176,364.21822,41.1964,0.0154,81.442,6.09534,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0,0.023,0,155.925,3511.082 -2093,4.19565,0.03286,271.22166,8.12406,11.77435,11774.35,505.5509,143.63796,18.40534,3.95877,19.75029,43.77394,10.82601,1.99994,0.09465,0,88.21056,10.64854,23.3662,369.82533,41.83065,0.01525,81.6228,6.13771,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0,0.022,0,155.925,3511.082 -2094,4.1967,0.03478,270.48408,8.12228,11.7,11700,501.515,143.12308,18.35542,3.94496,19.70032,43.74462,10.90748,2.00882,0.0938,0,87.21288,10.61382,23.3148,375.43244,42.4649,0.0151,81.8036,6.18008,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0,0.02,0,155.925,3511.082 -2095,4.19775,0.0367,269.7465,8.1205,11.62565,11625.65,497.4791,142.6082,18.3055,3.93115,19.65035,43.7153,10.98895,2.0177,0.09295,0,86.2152,10.5791,23.2634,381.03955,43.09915,0.01495,81.9844,6.22245,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0,0.019,0,155.925,3511.082 -2096,4.1988,0.03862,269.00892,8.11872,11.5513,11551.3,493.4432,142.09332,18.25558,3.91734,19.60038,43.68598,11.07042,2.02658,0.0921,0,85.21752,10.54438,23.212,386.64666,43.7334,0.0148,82.1652,6.26482,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0,0.018,0,155.925,3511.082 -2097,4.19985,0.04054,268.27134,8.11694,11.47695,11476.95,489.4073,141.57844,18.20566,3.90353,19.55041,43.65666,11.15189,2.03546,0.09125,0,84.21984,10.50966,23.1606,392.25377,44.36765,0.01465,82.346,6.30719,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0,0.018,0,155.925,3511.082 -2098,4.2009,0.04246,267.53376,8.11516,11.4026,11402.6,485.3714,141.06356,18.15574,3.88972,19.50044,43.62734,11.23336,2.04434,0.0904,0,83.22216,10.47494,23.1092,397.86088,45.0019,0.0145,82.5268,6.34956,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0,0.017,0,155.925,3511.082 -2099,4.20195,0.04438,266.79618,8.11338,11.32825,11328.25,481.3355,140.54868,18.10582,3.87591,19.45047,43.59802,11.31483,2.05322,0.08955,0,82.22448,10.44022,23.0578,403.46799,45.63615,0.01435,82.7076,6.39193,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0,0.016,0,155.925,3511.082 -2100,4.203,0.0463,266.0586,8.1116,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,11.3963,2.0621,0.0887,0,81.2268,10.4055,23.0064,409.0751,46.2704,0.0142,82.8884,6.4343,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0,0.015,0,155.925,3511.082 -2101,4.09086,0.04445,266.0588,8.08938,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,11.16938,2.02147,0.08703,0,81.2268,10.4055,23.0064,408.8936,46.045,0.01423,82.8884,6.30908,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0,0.014,0,155.925,3511.082 -2102,3.97872,0.0426,266.059,8.06716,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.94246,1.98084,0.08536,0,81.2268,10.4055,23.0064,408.7121,45.8196,0.01426,82.8884,6.18386,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0,0.014,0,155.925,3511.082 -2103,3.86658,0.04075,266.0592,8.04494,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.71554,1.94021,0.08369,0,81.2268,10.4055,23.0064,408.5306,45.5942,0.01429,82.8884,6.05864,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0,0.013,0,155.925,3511.082 -2104,3.75444,0.0389,266.0594,8.02272,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.48862,1.89958,0.08202,0,81.2268,10.4055,23.0064,408.3491,45.3688,0.01432,82.8884,5.93342,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0,0.012,0,155.925,3511.082 -2105,3.6423,0.03705,266.0596,8.0005,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.2617,1.85895,0.08035,0,81.2268,10.4055,23.0064,408.1676,45.1434,0.01435,82.8884,5.8082,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0,0.012,0,155.925,3511.082 -2106,3.53016,0.0352,266.0598,7.97828,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,10.03478,1.81832,0.07868,0,81.2268,10.4055,23.0064,407.9861,44.918,0.01438,82.8884,5.68298,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0,0.011,0,155.925,3511.082 -2107,3.41802,0.03335,266.06,7.95606,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.80786,1.77769,0.07701,0,81.2268,10.4055,23.0064,407.8046,44.6926,0.01441,82.8884,5.55776,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0,0.011,0,155.925,3511.082 -2108,3.30588,0.0315,266.0602,7.93384,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.58094,1.73706,0.07534,0,81.2268,10.4055,23.0064,407.6231,44.4672,0.01444,82.8884,5.43254,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0,0.01,0,155.925,3511.082 -2109,3.19374,0.02965,266.0604,7.91162,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.35402,1.69643,0.07367,0,81.2268,10.4055,23.0064,407.4416,44.2418,0.01447,82.8884,5.30732,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0,0.009,0,155.925,3511.082 -2110,3.0816,0.0278,266.0606,7.8894,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,9.1271,1.6558,0.072,0,81.2268,10.4055,23.0064,407.2601,44.0164,0.0145,82.8884,5.1821,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0,0.009,0,155.925,3511.082 -2111,3.00189,0.02594,266.06075,7.86716,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.90017,1.61514,0.07032,0,81.2268,10.4055,23.0064,407.07859,43.79098,0.01452,82.8884,5.05688,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0,0.009,0,155.925,3511.082 -2112,2.92218,0.02408,266.0609,7.84492,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.67324,1.57448,0.06864,0,81.2268,10.4055,23.0064,406.89708,43.56556,0.01454,82.8884,4.93166,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0,0.008,0,155.925,3511.082 -2113,2.84247,0.02222,266.06105,7.82268,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.44631,1.53382,0.06696,0,81.2268,10.4055,23.0064,406.71557,43.34014,0.01456,82.8884,4.80644,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0,0.008,0,155.925,3511.082 -2114,2.76276,0.02036,266.0612,7.80044,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,8.21938,1.49316,0.06528,0,81.2268,10.4055,23.0064,406.53406,43.11472,0.01458,82.8884,4.68122,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0,0.007,0,155.925,3511.082 -2115,2.68305,0.0185,266.06135,7.7782,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.99245,1.4525,0.0636,0,81.2268,10.4055,23.0064,406.35255,42.8893,0.0146,82.8884,4.556,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0,0.007,0,155.925,3511.082 -2116,2.60334,0.01664,266.0615,7.75596,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.76552,1.41184,0.06192,0,81.2268,10.4055,23.0064,406.17104,42.66388,0.01462,82.8884,4.43078,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0,0.007,0,155.925,3511.082 -2117,2.52363,0.01478,266.06165,7.73372,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.53859,1.37118,0.06024,0,81.2268,10.4055,23.0064,405.98953,42.43846,0.01464,82.8884,4.30556,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0,0.006,0,155.925,3511.082 -2118,2.44392,0.01292,266.0618,7.71148,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.31166,1.33052,0.05856,0,81.2268,10.4055,23.0064,405.80802,42.21304,0.01466,82.8884,4.18034,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0,0.006,0,155.925,3511.082 -2119,2.36421,0.01106,266.06195,7.68924,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,7.08473,1.28986,0.05688,0,81.2268,10.4055,23.0064,405.62651,41.98762,0.01468,82.8884,4.05512,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0,0.006,0,155.925,3511.082 -2120,2.2845,0.0092,266.0621,7.667,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.8578,1.2492,0.0552,0,81.2268,10.4055,23.0064,405.445,41.7622,0.0147,82.8884,3.9299,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0,0.005,0,155.925,3511.082 -2121,2.25245,0.00828,266.06224,7.64476,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.63088,1.20857,0.05353,0,81.2268,10.4055,23.0064,405.2635,41.53679,0.01474,82.8884,3.80466,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0,0.005,0,155.925,3511.082 -2122,2.2204,0.00736,266.06238,7.62252,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.40396,1.16794,0.05186,0,81.2268,10.4055,23.0064,405.082,41.31138,0.01478,82.8884,3.67942,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0,0.005,0,155.925,3511.082 -2123,2.18835,0.00644,266.06252,7.60028,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,6.17704,1.12731,0.05019,0,81.2268,10.4055,23.0064,404.9005,41.08597,0.01482,82.8884,3.55418,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0,0.005,0,155.925,3511.082 -2124,2.1563,0.00552,266.06266,7.57804,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.95012,1.08668,0.04852,0,81.2268,10.4055,23.0064,404.719,40.86056,0.01486,82.8884,3.42894,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0,0.004,0,155.925,3511.082 -2125,2.12425,0.0046,266.0628,7.5558,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.7232,1.04605,0.04685,0,81.2268,10.4055,23.0064,404.5375,40.63515,0.0149,82.8884,3.3037,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0,0.004,0,155.925,3511.082 -2126,2.0922,0.00368,266.06294,7.53356,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.49628,1.00542,0.04518,0,81.2268,10.4055,23.0064,404.356,40.40974,0.01494,82.8884,3.17846,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0,0.004,0,155.925,3511.082 -2127,2.06015,0.00276,266.06308,7.51132,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.26936,0.96479,0.04351,0,81.2268,10.4055,23.0064,404.1745,40.18433,0.01498,82.8884,3.05322,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0,0.004,0,155.925,3511.082 -2128,2.0281,0.00184,266.06322,7.48908,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,5.04244,0.92416,0.04184,0,81.2268,10.4055,23.0064,403.993,39.95892,0.01502,82.8884,2.92798,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0,0.004,0,155.925,3511.082 -2129,1.99605,0.00092,266.06336,7.46684,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.81552,0.88353,0.04017,0,81.2268,10.4055,23.0064,403.8115,39.73351,0.01506,82.8884,2.80274,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0,0.003,0,155.925,3511.082 -2130,1.964,0.00092,266.0635,7.4446,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.5886,0.8429,0.0385,0,81.2268,10.4055,23.0064,403.63,39.5081,0.0151,82.8884,2.6775,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0,0.003,0,155.925,3511.082 -2131,1.93853,0.00092,266.06362,7.42237,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.36166,0.80226,0.03683,0,81.2268,10.4055,23.0064,403.4485,39.28269,0.01512,82.8884,2.55229,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0,0.003,0,155.925,3511.082 -2132,1.91306,0.00092,266.06374,7.40014,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,4.13472,0.76162,0.03516,0,81.2268,10.4055,23.0064,403.267,39.05728,0.01514,82.8884,2.42708,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0,0.003,0,155.925,3511.082 -2133,1.88759,0.00092,266.06386,7.37791,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.90778,0.72098,0.03349,0,81.2268,10.4055,23.0064,403.0855,38.83187,0.01516,82.8884,2.30187,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0,0.003,0,155.925,3511.082 -2134,1.86212,0.00092,266.06398,7.35568,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.68084,0.68034,0.03182,0,81.2268,10.4055,23.0064,402.904,38.60646,0.01518,82.8884,2.17666,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0,0.003,0,155.925,3511.082 -2135,1.83665,0.00092,266.0641,7.33345,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.4539,0.6397,0.03015,0,81.2268,10.4055,23.0064,402.7225,38.38105,0.0152,82.8884,2.05145,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0,0.002,0,155.925,3511.082 -2136,1.81118,0.00092,266.06422,7.31122,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.22696,0.59906,0.02848,0,81.2268,10.4055,23.0064,402.541,38.15564,0.01522,82.8884,1.92624,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0,0.002,0,155.925,3511.082 -2137,1.78571,0.00092,266.06434,7.28899,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,3.00002,0.55842,0.02681,0,81.2268,10.4055,23.0064,402.3595,37.93023,0.01524,82.8884,1.80103,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0,0.002,0,155.925,3511.082 -2138,1.76024,0.00092,266.06446,7.26676,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.77308,0.51778,0.02514,0,81.2268,10.4055,23.0064,402.178,37.70482,0.01526,82.8884,1.67582,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0,0.002,0,155.925,3511.082 -2139,1.73477,0.00092,266.06458,7.24453,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.54614,0.47714,0.02347,0,81.2268,10.4055,23.0064,401.9965,37.47941,0.01528,82.8884,1.55061,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0,0.002,0,155.925,3511.082 -2140,1.7093,0.00092,266.0647,7.2223,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.3192,0.4365,0.0218,0,81.2268,10.4055,23.0064,401.815,37.254,0.0153,82.8884,1.4254,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0,0.002,0,155.925,3511.082 -2141,1.6831375,0.00092,266.06481,7.200075,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,2.092275,0.39585,0.020125,0,81.2268,10.4055,23.0064,401.6335,37.0286,0.01535,82.8884,1.3001875,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0,0.002,0,155.925,3511.082 -2142,1.656975,0.00092,266.06493,7.17785,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.86535,0.3552,0.01845,0,81.2268,10.4055,23.0064,401.452,36.8032,0.0154,82.8884,1.174975,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0,0.002,0,155.925,3511.082 -2143,1.6308125,0.00092,266.06504,7.155625,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.638425,0.31455,0.016775,0,81.2268,10.4055,23.0064,401.2705,36.5778,0.01545,82.8884,1.0497625,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0,0.002,0,155.925,3511.082 -2144,1.60465,0.00092,266.06515,7.1334,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.4115,0.2739,0.0151,0,81.2268,10.4055,23.0064,401.089,36.3524,0.0155,82.8884,0.92455,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0,0.002,0,155.925,3511.082 -2145,1.5784875,0.00092,266.06526,7.111175,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,1.184575,0.23325,0.013425,0,81.2268,10.4055,23.0064,400.9075,36.127,0.01555,82.8884,0.7993375,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0,0.001,0,155.925,3511.082 -2146,1.552325,0.00092,266.06538,7.08895,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.95765,0.1926,0.01175,0,81.2268,10.4055,23.0064,400.726,35.9016,0.0156,82.8884,0.674125,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0,0.001,0,155.925,3511.082 -2147,1.5261625,0.00092,266.06549,7.066725,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.730725,0.15195,0.010075,0,81.2268,10.4055,23.0064,400.5445,35.6762,0.01565,82.8884,0.5489125,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0,0.001,0,155.925,3511.082 -2148,1.5,0.00092,266.0656,7.0445,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.5038,0.1113,0.0084,0,81.2268,10.4055,23.0064,400.363,35.4508,0.0157,82.8884,0.4237,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0,0.001,0,155.925,3511.082 -2149,1.5354,0.00092,266.0834,7.0065,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2101,10.4253,23.2987,401.2135,35.2926,0.06,82.8825,0.2246,5.888,26.472,4.838,1.2,0.17,0.154,0,0.058,0.306,0.04,0.004,0,0.175,0,155.922,3511.082 -2150,1.5468,0.00092,266.0918,7.0074,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2115,10.4255,23.2991,401.2206,35.2933,0.06,82.8842,0.2246,5.888,26.473,4.838,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.949,3511.082 -2151,1.5531,0.00092,266.101,7.008,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2131,10.4256,23.2994,401.2282,35.2939,0.06,82.8858,0.2246,5.889,26.476,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.957,3511.082 -2152,1.5547,0.00092,266.1095,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2145,10.4258,23.2998,401.2355,35.2945,0.06,82.8872,0.2246,5.889,26.478,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.964,3511.082 -2153,1.5527,0.00092,266.12,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8286,81.2164,10.426,23.3004,401.2444,35.2953,0.06,82.889,0.2246,5.89,26.481,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.973,3511.082 -2154,1.5482,0.00092,266.1327,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8287,81.2186,10.4263,23.3011,401.2551,35.2963,0.06,82.8912,0.2246,5.891,26.484,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.983,3511.082 -2155,1.5419,0.00092,266.1469,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8287,81.221,10.4267,23.3017,401.267,35.2974,0.06,82.8937,0.2246,5.891,26.488,4.841,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.994,3511.082 -2156,1.5324,0.00092,266.16414,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82874,81.22392,10.42708,23.30256,401.28146,35.29864,0.06,82.8967,0.2246,5.892,26.491,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.005,3511.082 -2157,1.5229,0.00092,266.18138,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82878,81.22684,10.42746,23.30342,401.29592,35.29988,0.06,82.8997,0.2246,5.893,26.495,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.018,3511.082 -2158,1.5134,0.00092,266.19862,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82882,81.22976,10.42784,23.30428,401.31038,35.30112,0.06,82.9027,0.2246,5.894,26.499,4.843,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.03,3511.082 -2159,1.5039,0.00092,266.21586,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.82886,81.23268,10.42822,23.30514,401.32484,35.30236,0.06,82.9057,0.2246,5.895,26.504,4.844,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.044,3511.082 -2160,1.4944,0.00092,266.2331,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0511,0.0319,0.0058,0.8289,81.2356,10.4286,23.306,401.3393,35.3036,0.06,82.9087,0.2246,5.896,26.508,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.057,3511.082 -2161,1.48311,0.00092,266.25295,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05111,0.0319,0.0058,0.82892,81.23897,10.42903,23.30697,401.35595,35.30507,0.06,82.91213,0.2246,5.897,26.512,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.071,3511.082 -2162,1.47182,0.00092,266.2728,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05112,0.0319,0.0058,0.82894,81.24234,10.42946,23.30794,401.3726,35.30654,0.06,82.91556,0.2246,5.898,26.517,4.846,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.084,3511.082 -2163,1.46053,0.00092,266.29265,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05113,0.0319,0.0058,0.82896,81.24571,10.42989,23.30891,401.38925,35.30801,0.06,82.91899,0.2246,5.899,26.521,4.847,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.098,3511.082 -2164,1.44924,0.00092,266.3125,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05114,0.0319,0.0058,0.82898,81.24908,10.43032,23.30988,401.4059,35.30948,0.06,82.92242,0.2246,5.9,26.525,4.848,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.112,3511.082 -2165,1.43795,0.00092,266.33235,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05115,0.0319,0.0058,0.829,81.25245,10.43075,23.31085,401.42255,35.31095,0.06,82.92585,0.2246,5.901,26.53,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.127,3511.082 -2166,1.42666,0.00092,266.3522,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05116,0.0319,0.0058,0.82902,81.25582,10.43118,23.31182,401.4392,35.31242,0.06,82.92928,0.2246,5.902,26.534,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.141,3511.082 -2167,1.41537,0.00092,266.37205,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05117,0.0319,0.0058,0.82904,81.25919,10.43161,23.31279,401.45585,35.31389,0.06,82.93271,0.2246,5.903,26.539,4.85,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.155,3511.082 -2168,1.40408,0.00092,266.3919,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05118,0.0319,0.0058,0.82906,81.26256,10.43204,23.31376,401.4725,35.31536,0.06,82.93614,0.2246,5.904,26.544,4.851,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.169,3511.082 -2169,1.39279,0.00092,266.41175,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05119,0.0319,0.0058,0.82908,81.26593,10.43247,23.31473,401.48915,35.31683,0.06,82.93957,0.2246,5.905,26.548,4.852,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.183,3511.082 -2170,1.3815,0.00092,266.4316,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8291,81.2693,10.4329,23.3157,401.5058,35.3183,0.06,82.943,0.2246,5.906,26.553,4.853,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.198,3511.082 -2171,1.3712,0.00092,266.45171,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82914,81.27272,10.43334,23.31666,401.52268,35.31979,0.06,82.9465,0.2246,5.907,26.557,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.212,3511.082 -2172,1.3609,0.00092,266.47182,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82918,81.27614,10.43378,23.31762,401.53956,35.32128,0.06,82.95,0.2246,5.908,26.562,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.226,3511.082 -2173,1.3506,0.00092,266.49193,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82922,81.27956,10.43422,23.31858,401.55644,35.32277,0.06,82.9535,0.2246,5.909,26.566,4.855,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.24,3511.082 -2174,1.3403,0.00092,266.51204,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82926,81.28298,10.43466,23.31954,401.57332,35.32426,0.06,82.957,0.2246,5.91,26.571,4.856,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.254,3511.082 -2175,1.33,0.00092,266.53215,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8293,81.2864,10.4351,23.3205,401.5902,35.32575,0.06,82.9605,0.2246,5.911,26.575,4.857,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.268,3511.082 -2176,1.3197,0.00092,266.55226,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82934,81.28982,10.43554,23.32146,401.60708,35.32724,0.06,82.964,0.2246,5.912,26.58,4.858,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.282,3511.082 -2177,1.3094,0.00092,266.57237,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82938,81.29324,10.43598,23.32242,401.62396,35.32873,0.06,82.9675,0.2246,5.913,26.584,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.296,3511.082 -2178,1.2991,0.00092,266.59248,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82942,81.29666,10.43642,23.32338,401.64084,35.33022,0.06,82.971,0.2246,5.914,26.588,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.31,3511.082 -2179,1.2888,0.00092,266.61259,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82946,81.30008,10.43686,23.32434,401.65772,35.33171,0.06,82.9745,0.2246,5.915,26.593,4.86,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.324,3511.082 -2180,1.2785,0.00092,266.6327,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8295,81.3035,10.4373,23.3253,401.6746,35.3332,0.06,82.978,0.2246,5.916,26.597,4.861,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.338,3511.082 -2181,1.26966,0.00092,266.65213,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82954,81.3068,10.43772,23.32625,401.69092,35.33464,0.06,82.98137,0.2246,5.917,26.602,4.862,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.351,3511.082 -2182,1.26082,0.00092,266.67156,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82958,81.3101,10.43814,23.3272,401.70724,35.33608,0.06,82.98474,0.2246,5.918,26.606,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.365,3511.082 -2183,1.25198,0.00092,266.69099,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82962,81.3134,10.43856,23.32815,401.72356,35.33752,0.06,82.98811,0.2246,5.919,26.61,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.379,3511.082 -2184,1.24314,0.00092,266.71042,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82966,81.3167,10.43898,23.3291,401.73988,35.33896,0.06,82.99148,0.2246,5.92,26.615,4.864,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.392,3511.082 -2185,1.2343,0.00092,266.72985,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8297,81.32,10.4394,23.33005,401.7562,35.3404,0.06,82.99485,0.2246,5.921,26.619,4.865,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.406,3511.082 -2186,1.22546,0.00092,266.74928,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82974,81.3233,10.43982,23.331,401.77252,35.34184,0.06,82.99822,0.2246,5.922,26.623,4.866,1.207,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.419,3511.082 -2187,1.21662,0.00092,266.76871,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82978,81.3266,10.44024,23.33195,401.78884,35.34328,0.06,83.00159,0.2246,5.923,26.627,4.866,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.432,3511.082 -2188,1.20778,0.00092,266.78814,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82982,81.3299,10.44066,23.3329,401.80516,35.34472,0.06,83.00496,0.2246,5.924,26.632,4.867,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.446,3511.082 -2189,1.19894,0.00092,266.80757,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82986,81.3332,10.44108,23.33385,401.82148,35.34616,0.06,83.00833,0.2246,5.924,26.636,4.868,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.459,3511.082 -2190,1.1901,0.00092,266.827,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8299,81.3365,10.4415,23.3348,401.8378,35.3476,0.06,83.0117,0.2246,5.925,26.64,4.869,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.472,3511.082 -2191,1.18257,0.00092,266.84554,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82992,81.33966,10.44192,23.33572,401.85335,35.34897,0.06,83.0149,0.2246,5.926,26.644,4.87,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.485,3511.082 -2192,1.17504,0.00092,266.86408,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82994,81.34282,10.44234,23.33664,401.8689,35.35034,0.06,83.0181,0.2246,5.927,26.648,4.87,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.498,3511.082 -2193,1.16751,0.00092,266.88262,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82996,81.34598,10.44276,23.33756,401.88445,35.35171,0.06,83.0213,0.2246,5.928,26.653,4.871,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.511,3511.082 -2194,1.15998,0.00092,266.90116,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.82998,81.34914,10.44318,23.33848,401.9,35.35308,0.06,83.0245,0.2246,5.929,26.657,4.872,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.524,3511.082 -2195,1.15245,0.00092,266.9197,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83,81.3523,10.4436,23.3394,401.91555,35.35445,0.06,83.0277,0.2246,5.93,26.661,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.537,3511.082 -2196,1.14492,0.00092,266.93824,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83002,81.35546,10.44402,23.34032,401.9311,35.35582,0.06,83.0309,0.2246,5.931,26.665,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.549,3511.082 -2197,1.13739,0.00092,266.95678,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83004,81.35862,10.44444,23.34124,401.94665,35.35719,0.06,83.0341,0.2246,5.932,26.669,4.874,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.562,3511.082 -2198,1.12986,0.00092,266.97532,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83006,81.36178,10.44486,23.34216,401.9622,35.35856,0.06,83.0373,0.2246,5.933,26.673,4.875,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.575,3511.082 -2199,1.12233,0.00092,266.99386,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.83008,81.36494,10.44528,23.34308,401.97775,35.35993,0.06,83.0405,0.2246,5.934,26.677,4.875,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.587,3511.082 -2200,1.1148,0.00092,267.0124,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0512,0.0319,0.0058,0.8301,81.3681,10.4457,23.344,401.9933,35.3613,0.06,83.0437,0.2246,5.934,26.681,4.876,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.6,3511.082 -2201,1.10836,0.00092,267.03006,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05121,0.0319,0.0058,0.83013,81.3711,10.44606,23.34485,402.00813,35.3626,0.06,83.04677,0.2246,5.935,26.685,4.877,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.612,3511.082 -2202,1.10192,0.00092,267.04772,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05122,0.0319,0.0058,0.83016,81.3741,10.44642,23.3457,402.02296,35.3639,0.06,83.04984,0.2246,5.936,26.689,4.878,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.624,3511.082 -2203,1.09548,0.00092,267.06538,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05123,0.0319,0.0058,0.83019,81.3771,10.44678,23.34655,402.03779,35.3652,0.06,83.05291,0.2246,5.937,26.693,4.878,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.637,3511.082 -2204,1.08904,0.00092,267.08304,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05124,0.0319,0.0058,0.83022,81.3801,10.44714,23.3474,402.05262,35.3665,0.06,83.05598,0.2246,5.938,26.696,4.879,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.649,3511.082 -2205,1.0826,0.00092,267.1007,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05125,0.0319,0.0058,0.83025,81.3831,10.4475,23.34825,402.06745,35.3678,0.06,83.05905,0.2246,5.939,26.7,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.661,3511.082 -2206,1.07616,0.00092,267.11836,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05126,0.0319,0.0058,0.83028,81.3861,10.44786,23.3491,402.08228,35.3691,0.06,83.06212,0.2246,5.94,26.704,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.673,3511.082 -2207,1.06972,0.00092,267.13602,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05127,0.0319,0.0058,0.83031,81.3891,10.44822,23.34995,402.09711,35.3704,0.06,83.06519,0.2246,5.94,26.708,4.881,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.685,3511.082 -2208,1.06328,0.00092,267.15368,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05128,0.0319,0.0058,0.83034,81.3921,10.44858,23.3508,402.11194,35.3717,0.06,83.06826,0.2246,5.941,26.712,4.882,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.697,3511.082 -2209,1.05684,0.00092,267.17134,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05129,0.0319,0.0058,0.83037,81.3951,10.44894,23.35165,402.12677,35.373,0.06,83.07133,0.2246,5.942,26.716,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.709,3511.082 -2210,1.0504,0.00092,267.189,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8304,81.3981,10.4493,23.3525,402.1416,35.3743,0.06,83.0744,0.2246,5.943,26.719,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.721,3511.082 -2211,1.04486,0.00092,267.2058,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83044,81.40095,10.44967,23.35332,402.15569,35.37553,0.06,83.07732,0.2246,5.944,26.723,4.884,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.733,3511.082 -2212,1.03932,0.00092,267.2226,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83048,81.4038,10.45004,23.35414,402.16978,35.37676,0.06,83.08024,0.2246,5.945,26.727,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.744,3511.082 -2213,1.03378,0.00092,267.2394,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83052,81.40665,10.45041,23.35496,402.18387,35.37799,0.06,83.08316,0.2246,5.946,26.731,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.756,3511.082 -2214,1.02824,0.00092,267.2562,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83056,81.4095,10.45078,23.35578,402.19796,35.37922,0.06,83.08608,0.2246,5.946,26.734,4.886,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.768,3511.082 -2215,1.0227,0.00092,267.273,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8306,81.41235,10.45115,23.3566,402.21205,35.38045,0.06,83.089,0.2246,5.947,26.738,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.779,3511.082 -2216,1.01716,0.00092,267.2898,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83064,81.4152,10.45152,23.35742,402.22614,35.38168,0.06,83.09192,0.2246,5.948,26.742,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.791,3511.082 -2217,1.01162,0.00092,267.3066,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83068,81.41805,10.45189,23.35824,402.24023,35.38291,0.06,83.09484,0.2246,5.949,26.745,4.888,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.802,3511.082 -2218,1.00608,0.00092,267.3234,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83072,81.4209,10.45226,23.35906,402.25432,35.38414,0.06,83.09776,0.2246,5.95,26.749,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.813,3511.082 -2219,1.00054,0.00092,267.3402,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83076,81.42375,10.45263,23.35988,402.26841,35.38537,0.06,83.10068,0.2246,5.95,26.752,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.825,3511.082 -2220,0.995,0.00092,267.357,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8308,81.4266,10.453,23.3607,402.2825,35.3866,0.06,83.1036,0.2246,5.951,26.756,4.89,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.836,3511.082 -2221,0.99023,0.00092,267.373,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83082,81.42932,10.45337,23.36148,402.29593,35.38779,0.06,83.10637,0.2246,5.952,26.76,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.847,3511.082 -2222,0.98546,0.00092,267.389,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83084,81.43204,10.45374,23.36226,402.30936,35.38898,0.06,83.10914,0.2246,5.953,26.763,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.858,3511.082 -2223,0.98069,0.00092,267.405,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83086,81.43476,10.45411,23.36304,402.32279,35.39017,0.06,83.11191,0.2246,5.954,26.767,4.892,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.869,3511.082 -2224,0.97592,0.00092,267.421,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83088,81.43748,10.45448,23.36382,402.33622,35.39136,0.06,83.11468,0.2246,5.954,26.77,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.88,3511.082 -2225,0.97115,0.00092,267.437,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8309,81.4402,10.45485,23.3646,402.34965,35.39255,0.06,83.11745,0.2246,5.955,26.774,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.891,3511.082 -2226,0.96638,0.00092,267.453,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83092,81.44292,10.45522,23.36538,402.36308,35.39374,0.06,83.12022,0.2246,5.956,26.777,4.894,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.902,3511.082 -2227,0.96161,0.00092,267.469,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83094,81.44564,10.45559,23.36616,402.37651,35.39493,0.06,83.12299,0.2246,5.957,26.781,4.894,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.913,3511.082 -2228,0.95684,0.00092,267.485,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83096,81.44836,10.45596,23.36694,402.38994,35.39612,0.06,83.12576,0.2246,5.957,26.784,4.895,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.924,3511.082 -2229,0.95207,0.00092,267.501,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83098,81.45108,10.45633,23.36772,402.40337,35.39731,0.06,83.12853,0.2246,5.958,26.788,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.935,3511.082 -2230,0.9473,0.00092,267.517,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.831,81.4538,10.4567,23.3685,402.4168,35.3985,0.06,83.1313,0.2246,5.959,26.791,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.945,3511.082 -2231,0.94314,0.00092,267.53226,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83103,81.45639,10.45701,23.36925,402.42961,35.39963,0.06,83.13395,0.2246,5.96,26.794,4.897,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.956,3511.082 -2232,0.93898,0.00092,267.54752,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83106,81.45898,10.45732,23.37,402.44242,35.40076,0.06,83.1366,0.2246,5.96,26.798,4.898,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.967,3511.082 -2233,0.93482,0.00092,267.56278,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83109,81.46157,10.45763,23.37075,402.45523,35.40189,0.06,83.13925,0.2246,5.961,26.801,4.898,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.977,3511.082 -2234,0.93066,0.00092,267.57804,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83112,81.46416,10.45794,23.3715,402.46804,35.40302,0.06,83.1419,0.2246,5.962,26.804,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.988,3511.082 -2235,0.9265,0.00092,267.5933,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83115,81.46675,10.45825,23.37225,402.48085,35.40415,0.06,83.14455,0.2246,5.963,26.808,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.998,3511.082 -2236,0.92234,0.00092,267.60856,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83118,81.46934,10.45856,23.373,402.49366,35.40528,0.06,83.1472,0.2246,5.963,26.811,4.9,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.008,3511.082 -2237,0.91818,0.00092,267.62382,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83121,81.47193,10.45887,23.37375,402.50647,35.40641,0.06,83.14985,0.2246,5.964,26.814,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.019,3511.082 -2238,0.91402,0.00092,267.63908,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83124,81.47452,10.45918,23.3745,402.51928,35.40754,0.06,83.1525,0.2246,5.965,26.818,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.029,3511.082 -2239,0.90986,0.00092,267.65434,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83127,81.47711,10.45949,23.37525,402.53209,35.40867,0.06,83.15515,0.2246,5.966,26.821,4.902,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.039,3511.082 -2240,0.9057,0.00092,267.6696,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8313,81.4797,10.4598,23.376,402.5449,35.4098,0.06,83.1578,0.2246,5.966,26.824,4.902,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.05,3511.082 -2241,0.90206,0.00092,267.68419,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83133,81.48216,10.46013,23.37671,402.55715,35.41087,0.06,83.16032,0.2246,5.967,26.827,4.903,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.06,3511.082 -2242,0.89842,0.00092,267.69878,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83136,81.48462,10.46046,23.37742,402.5694,35.41194,0.06,83.16284,0.2246,5.968,26.831,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.07,3511.082 -2243,0.89478,0.00092,267.71337,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83139,81.48708,10.46079,23.37813,402.58165,35.41301,0.06,83.16536,0.2246,5.968,26.834,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.08,3511.082 -2244,0.89114,0.00092,267.72796,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83142,81.48954,10.46112,23.37884,402.5939,35.41408,0.06,83.16788,0.2246,5.969,26.837,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.09,3511.082 -2245,0.8875,0.00092,267.74255,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83145,81.492,10.46145,23.37955,402.60615,35.41515,0.06,83.1704,0.2246,5.97,26.84,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.1,3511.082 -2246,0.88386,0.00092,267.75714,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83148,81.49446,10.46178,23.38026,402.6184,35.41622,0.06,83.17292,0.2246,5.971,26.843,4.906,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.11,3511.082 -2247,0.88022,0.00092,267.77173,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83151,81.49692,10.46211,23.38097,402.63065,35.41729,0.06,83.17544,0.2246,5.971,26.847,4.906,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.12,3511.082 -2248,0.87658,0.00092,267.78632,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83154,81.49938,10.46244,23.38168,402.6429,35.41836,0.06,83.17796,0.2246,5.972,26.85,4.907,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.13,3511.082 -2249,0.87294,0.00092,267.80091,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83157,81.50184,10.46277,23.38239,402.65515,35.41943,0.06,83.18048,0.2246,5.973,26.853,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.139,3511.082 -2250,0.8693,0.00092,267.8155,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8316,81.5043,10.4631,23.3831,402.6674,35.4205,0.06,83.183,0.2246,5.973,26.856,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.149,3511.082 -2251,0.8661,0.00092,267.82946,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83162,81.50668,10.46339,23.38378,402.67913,35.42153,0.06,83.18543,0.2246,5.974,26.859,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.159,3511.082 -2252,0.8629,0.00092,267.84342,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83164,81.50906,10.46368,23.38446,402.69086,35.42256,0.06,83.18786,0.2246,5.975,26.862,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.168,3511.082 -2253,0.8597,0.00092,267.85738,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83166,81.51144,10.46397,23.38514,402.70259,35.42359,0.06,83.19029,0.2246,5.975,26.865,4.91,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.178,3511.082 -2254,0.8565,0.00092,267.87134,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83168,81.51382,10.46426,23.38582,402.71432,35.42462,0.06,83.19272,0.2246,5.976,26.868,4.91,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.188,3511.082 -2255,0.8533,0.00092,267.8853,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8317,81.5162,10.46455,23.3865,402.72605,35.42565,0.06,83.19515,0.2246,5.977,26.871,4.911,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.197,3511.082 -2256,0.8501,0.00092,267.89926,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83172,81.51858,10.46484,23.38718,402.73778,35.42668,0.06,83.19758,0.2246,5.977,26.874,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.207,3511.082 -2257,0.8469,0.00092,267.91322,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83174,81.52096,10.46513,23.38786,402.74951,35.42771,0.06,83.20001,0.2246,5.978,26.877,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.216,3511.082 -2258,0.8437,0.00092,267.92718,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83176,81.52334,10.46542,23.38854,402.76124,35.42874,0.06,83.20244,0.2246,5.979,26.88,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.226,3511.082 -2259,0.8405,0.00092,267.94114,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83178,81.52572,10.46571,23.38922,402.77297,35.42977,0.06,83.20487,0.2246,5.979,26.883,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.235,3511.082 -2260,0.8373,0.00092,267.9551,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8318,81.5281,10.466,23.3899,402.7847,35.4308,0.06,83.2073,0.2246,5.98,26.886,4.914,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.244,3511.082 -2261,0.83445,0.00092,267.96848,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83182,81.53037,10.46631,23.39054,402.7959,35.43178,0.06001,83.20961,0.2246,5.981,26.889,4.914,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.253,3511.082 -2262,0.8316,0.00092,267.98186,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83184,81.53264,10.46662,23.39118,402.8071,35.43276,0.06002,83.21192,0.2246,5.981,26.892,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.263,3511.082 -2263,0.82875,0.00092,267.99524,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83186,81.53491,10.46693,23.39182,402.8183,35.43374,0.06003,83.21423,0.2246,5.982,26.895,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.272,3511.082 -2264,0.8259,0.00092,268.00862,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83188,81.53718,10.46724,23.39246,402.8295,35.43472,0.06004,83.21654,0.2246,5.983,26.898,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.281,3511.082 -2265,0.82305,0.00092,268.022,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8319,81.53945,10.46755,23.3931,402.8407,35.4357,0.06005,83.21885,0.2246,5.983,26.901,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.29,3511.082 -2266,0.8202,0.00092,268.03538,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83192,81.54172,10.46786,23.39374,402.8519,35.43668,0.06006,83.22116,0.2246,5.984,26.904,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.299,3511.082 -2267,0.81735,0.00092,268.04876,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83194,81.54399,10.46817,23.39438,402.8631,35.43766,0.06007,83.22347,0.2246,5.985,26.907,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.308,3511.082 -2268,0.8145,0.00092,268.06214,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83196,81.54626,10.46848,23.39502,402.8743,35.43864,0.06008,83.22578,0.2246,5.985,26.91,4.918,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.317,3511.082 -2269,0.81165,0.00092,268.07552,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83198,81.54853,10.46879,23.39566,402.8855,35.43962,0.06009,83.22809,0.2246,5.986,26.912,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.326,3511.082 -2270,0.8088,0.00092,268.0889,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.832,81.5508,10.4691,23.3963,402.8967,35.4406,0.0601,83.2304,0.2246,5.987,26.915,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.335,3511.082 -2271,0.80629,0.00092,268.10174,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83202,81.55298,10.46937,23.39694,402.90748,35.44156,0.0601,83.23262,0.2246,5.987,26.918,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.344,3511.082 -2272,0.80378,0.00092,268.11458,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83204,81.55516,10.46964,23.39758,402.91826,35.44252,0.0601,83.23484,0.2246,5.988,26.921,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.353,3511.082 -2273,0.80127,0.00092,268.12742,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83206,81.55734,10.46991,23.39822,402.92904,35.44348,0.0601,83.23706,0.2246,5.988,26.924,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.362,3511.082 -2274,0.79876,0.00092,268.14026,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83208,81.55952,10.47018,23.39886,402.93982,35.44444,0.0601,83.23928,0.2246,5.989,26.927,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.371,3511.082 -2275,0.79625,0.00092,268.1531,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8321,81.5617,10.47045,23.3995,402.9506,35.4454,0.0601,83.2415,0.2246,5.99,26.929,4.922,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.379,3511.082 -2276,0.79374,0.00092,268.16594,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83212,81.56388,10.47072,23.40014,402.96138,35.44636,0.0601,83.24372,0.2246,5.99,26.932,4.922,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.388,3511.082 -2277,0.79123,0.00092,268.17878,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83214,81.56606,10.47099,23.40078,402.97216,35.44732,0.0601,83.24594,0.2246,5.991,26.935,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.397,3511.082 -2278,0.78872,0.00092,268.19162,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83216,81.56824,10.47126,23.40142,402.98294,35.44828,0.0601,83.24816,0.2246,5.992,26.938,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.406,3511.082 -2279,0.78621,0.00092,268.20446,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83218,81.57042,10.47153,23.40206,402.99372,35.44924,0.0601,83.25038,0.2246,5.992,26.94,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.414,3511.082 -2280,0.7837,0.00092,268.2173,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8322,81.5726,10.4718,23.4027,403.0045,35.4502,0.0601,83.2526,0.2246,5.993,26.943,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.423,3511.082 -2281,0.78142,0.00092,268.22963,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83223,81.5747,10.47207,23.4033,403.01486,35.45111,0.0601,83.25474,0.2246,5.993,26.946,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.431,3511.082 -2282,0.77914,0.00092,268.24196,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83226,81.5768,10.47234,23.4039,403.02522,35.45202,0.0601,83.25688,0.2246,5.994,26.949,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.44,3511.082 -2283,0.77686,0.00092,268.25429,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83229,81.5789,10.47261,23.4045,403.03558,35.45293,0.0601,83.25902,0.2246,5.995,26.951,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.448,3511.082 -2284,0.77458,0.00092,268.26662,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83232,81.581,10.47288,23.4051,403.04594,35.45384,0.0601,83.26116,0.2246,5.995,26.954,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.457,3511.082 -2285,0.7723,0.00092,268.27895,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83235,81.5831,10.47315,23.4057,403.0563,35.45475,0.0601,83.2633,0.2246,5.996,26.957,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.465,3511.082 -2286,0.77002,0.00092,268.29128,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83238,81.5852,10.47342,23.4063,403.06666,35.45566,0.0601,83.26544,0.2246,5.996,26.959,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.473,3511.082 -2287,0.76774,0.00092,268.30361,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83241,81.5873,10.47369,23.4069,403.07702,35.45657,0.0601,83.26758,0.2246,5.997,26.962,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.482,3511.082 -2288,0.76546,0.00092,268.31594,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83244,81.5894,10.47396,23.4075,403.08738,35.45748,0.0601,83.26972,0.2246,5.998,26.965,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.49,3511.082 -2289,0.76318,0.00092,268.32827,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83247,81.5915,10.47423,23.4081,403.09774,35.45839,0.0601,83.27186,0.2246,5.998,26.967,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.498,3511.082 -2290,0.7609,0.00092,268.3406,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8325,81.5936,10.4745,23.4087,403.1081,35.4593,0.0601,83.274,0.2246,5.999,26.97,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.507,3511.082 -2291,0.75884,0.00092,268.35247,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83251,81.59562,10.47475,23.40928,403.11806,35.46017,0.06011,83.27607,0.2246,5.999,26.972,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.515,3511.082 -2292,0.75678,0.00092,268.36434,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83252,81.59764,10.475,23.40986,403.12802,35.46104,0.06012,83.27814,0.2246,6,26.975,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.523,3511.082 -2293,0.75472,0.00092,268.37621,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83253,81.59966,10.47525,23.41044,403.13798,35.46191,0.06013,83.28021,0.2246,6,26.978,4.93,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.531,3511.082 -2294,0.75266,0.00092,268.38808,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83254,81.60168,10.4755,23.41102,403.14794,35.46278,0.06014,83.28228,0.2246,6.001,26.98,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.539,3511.082 -2295,0.7506,0.00092,268.39995,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83255,81.6037,10.47575,23.4116,403.1579,35.46365,0.06015,83.28435,0.2246,6.002,26.983,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.547,3511.082 -2296,0.74854,0.00092,268.41182,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83256,81.60572,10.476,23.41218,403.16786,35.46452,0.06016,83.28642,0.2246,6.002,26.985,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.555,3511.082 -2297,0.74648,0.00092,268.42369,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83257,81.60774,10.47625,23.41276,403.17782,35.46539,0.06017,83.28849,0.2246,6.003,26.988,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.564,3511.082 -2298,0.74442,0.00092,268.43556,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83258,81.60976,10.4765,23.41334,403.18778,35.46626,0.06018,83.29056,0.2246,6.003,26.991,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.572,3511.082 -2299,0.74236,0.00092,268.44743,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83259,81.61178,10.47675,23.41392,403.19774,35.46713,0.06019,83.29263,0.2246,6.004,26.993,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.579,3511.082 -2300,0.7403,0.00092,268.4593,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8326,81.6138,10.477,23.4145,403.2077,35.468,0.0602,83.2947,0.2246,6.004,26.996,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.587,3511.082 -2301,0.738714,0.00092,268.46999,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83262,81.615616,10.477238,23.41502,403.21667,35.46879,0.0602,83.296552,0.2246,6.005,26.998,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.595,3511.082 -2302,0.737128,0.00092,268.48068,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83264,81.617432,10.477476,23.41554,403.22564,35.46958,0.0602,83.298404,0.2246,6.006,27.001,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.603,3511.082 -2303,0.735542,0.00092,268.49136,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83266,81.619248,10.477714,23.41606,403.23461,35.47037,0.0602,83.300256,0.2246,6.006,27.003,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.611,3511.082 -2304,0.733956,0.00092,268.50205,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83268,81.621064,10.477952,23.41658,403.24358,35.47116,0.0602,83.302108,0.2246,6.007,27.006,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.619,3511.082 -2305,0.73237,0.00092,268.51274,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8327,81.62288,10.47819,23.4171,403.25255,35.47195,0.0602,83.30396,0.2246,6.007,27.008,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.627,3511.082 -2306,0.730784,0.00092,268.52343,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83272,81.624696,10.478428,23.41762,403.26152,35.47274,0.0602,83.305812,0.2246,6.008,27.011,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.634,3511.082 -2307,0.729198,0.00092,268.53412,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83274,81.626512,10.478666,23.41814,403.27049,35.47353,0.0602,83.307664,0.2246,6.008,27.013,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.642,3511.082 -2308,0.727612,0.00092,268.5448,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83276,81.628328,10.478904,23.41866,403.27946,35.47432,0.0602,83.309516,0.2246,6.009,27.016,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.65,3511.082 -2309,0.726026,0.00092,268.55549,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83278,81.630144,10.479142,23.41918,403.28843,35.47511,0.0602,83.311368,0.2246,6.009,27.018,4.938,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.658,3511.082 -2310,0.72444,0.00092,268.56618,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8328,81.63196,10.47938,23.4197,403.2974,35.4759,0.0602,83.31322,0.2246,6.01,27.02,4.938,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.665,3511.082 -2311,0.722854,0.00092,268.57687,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83282,81.633776,10.479618,23.42022,403.30637,35.47669,0.0602,83.315072,0.2246,6.011,27.023,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.673,3511.082 -2312,0.721268,0.00092,268.58756,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83284,81.635592,10.479856,23.42074,403.31534,35.47748,0.0602,83.316924,0.2246,6.011,27.025,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.68,3511.082 -2313,0.719682,0.00092,268.59824,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83286,81.637408,10.480094,23.42126,403.32431,35.47827,0.0602,83.318776,0.2246,6.012,27.028,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.688,3511.082 -2314,0.718096,0.00092,268.60893,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83288,81.639224,10.480332,23.42178,403.33328,35.47906,0.0602,83.320628,0.2246,6.012,27.03,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.696,3511.082 -2315,0.71651,0.00092,268.61962,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8329,81.64104,10.48057,23.4223,403.34225,35.47985,0.0602,83.32248,0.2246,6.013,27.032,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.703,3511.082 -2316,0.714924,0.00092,268.63031,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83292,81.642856,10.480808,23.42282,403.35122,35.48064,0.0602,83.324332,0.2246,6.013,27.035,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.711,3511.082 -2317,0.713338,0.00092,268.641,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83294,81.644672,10.481046,23.42334,403.36019,35.48143,0.0602,83.326184,0.2246,6.014,27.037,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.718,3511.082 -2318,0.711752,0.00092,268.65168,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83296,81.646488,10.481284,23.42386,403.36916,35.48222,0.0602,83.328036,0.2246,6.014,27.04,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.725,3511.082 -2319,0.710166,0.00092,268.66237,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83298,81.648304,10.481522,23.42438,403.37813,35.48301,0.0602,83.329888,0.2246,6.015,27.042,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.733,3511.082 -2320,0.70858,0.00092,268.67306,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.833,81.65012,10.48176,23.4249,403.3871,35.4838,0.0602,83.33174,0.2246,6.015,27.044,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.74,3511.082 -2321,0.706994,0.00092,268.68375,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83302,81.651936,10.481998,23.42542,403.39607,35.48459,0.0602,83.333592,0.2246,6.016,27.047,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.748,3511.082 -2322,0.705408,0.00092,268.69444,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83304,81.653752,10.482236,23.42594,403.40504,35.48538,0.0602,83.335444,0.2246,6.016,27.049,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.755,3511.082 -2323,0.703822,0.00092,268.70512,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83306,81.655568,10.482474,23.42646,403.41401,35.48617,0.0602,83.337296,0.2246,6.017,27.051,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.762,3511.082 -2324,0.702236,0.00092,268.71581,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83308,81.657384,10.482712,23.42698,403.42298,35.48696,0.0602,83.339148,0.2246,6.017,27.054,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.77,3511.082 -2325,0.70065,0.00092,268.7265,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8331,81.6592,10.48295,23.4275,403.43195,35.48775,0.0602,83.341,0.2246,6.018,27.056,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.777,3511.082 -2326,0.699064,0.00092,268.73719,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83312,81.661016,10.483188,23.42802,403.44092,35.48854,0.0602,83.342852,0.2246,6.018,27.058,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.784,3511.082 -2327,0.697478,0.00092,268.74788,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83314,81.662832,10.483426,23.42854,403.44989,35.48933,0.0602,83.344704,0.2246,6.019,27.061,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.791,3511.082 -2328,0.695892,0.00092,268.75856,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83316,81.664648,10.483664,23.42906,403.45886,35.49012,0.0602,83.346556,0.2246,6.019,27.063,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.798,3511.082 -2329,0.694306,0.00092,268.76925,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83318,81.666464,10.483902,23.42958,403.46783,35.49091,0.0602,83.348408,0.2246,6.02,27.065,4.946,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.806,3511.082 -2330,0.69272,0.00092,268.77994,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8332,81.66828,10.48414,23.4301,403.4768,35.4917,0.0602,83.35026,0.2246,6.02,27.067,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.813,3511.082 -2331,0.691134,0.00092,268.79063,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83322,81.670096,10.484378,23.43062,403.48577,35.49249,0.0602,83.352112,0.2246,6.021,27.07,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.82,3511.082 -2332,0.689548,0.00092,268.80132,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83324,81.671912,10.484616,23.43114,403.49474,35.49328,0.0602,83.353964,0.2246,6.021,27.072,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.827,3511.082 -2333,0.687962,0.00092,268.812,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83326,81.673728,10.484854,23.43166,403.50371,35.49407,0.0602,83.355816,0.2246,6.022,27.074,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.834,3511.082 -2334,0.686376,0.00092,268.82269,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83328,81.675544,10.485092,23.43218,403.51268,35.49486,0.0602,83.357668,0.2246,6.022,27.076,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.841,3511.082 -2335,0.68479,0.00092,268.83338,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8333,81.67736,10.48533,23.4327,403.52165,35.49565,0.0602,83.35952,0.2246,6.023,27.079,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.848,3511.082 -2336,0.683204,0.00092,268.84407,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83332,81.679176,10.485568,23.43322,403.53062,35.49644,0.0602,83.361372,0.2246,6.023,27.081,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.855,3511.082 -2337,0.681618,0.00092,268.85476,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83334,81.680992,10.485806,23.43374,403.53959,35.49723,0.0602,83.363224,0.2246,6.024,27.083,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.862,3511.082 -2338,0.680032,0.00092,268.86544,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83336,81.682808,10.486044,23.43426,403.54856,35.49802,0.0602,83.365076,0.2246,6.024,27.085,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.869,3511.082 -2339,0.678446,0.00092,268.87613,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83338,81.684624,10.486282,23.43478,403.55753,35.49881,0.0602,83.366928,0.2246,6.025,27.088,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.876,3511.082 -2340,0.67686,0.00092,268.88682,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8334,81.68644,10.48652,23.4353,403.5665,35.4996,0.0602,83.36878,0.2246,6.025,27.09,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.883,3511.082 -2341,0.675274,0.00092,268.89751,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83342,81.688256,10.486758,23.43582,403.57547,35.50039,0.0602,83.370632,0.2246,6.026,27.092,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.89,3511.082 -2342,0.673688,0.00092,268.9082,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83344,81.690072,10.486996,23.43634,403.58444,35.50118,0.0602,83.372484,0.2246,6.026,27.094,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.896,3511.082 -2343,0.672102,0.00092,268.91888,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83346,81.691888,10.487234,23.43686,403.59341,35.50197,0.0602,83.374336,0.2246,6.027,27.096,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.903,3511.082 -2344,0.670516,0.00092,268.92957,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83348,81.693704,10.487472,23.43738,403.60238,35.50276,0.0602,83.376188,0.2246,6.027,27.098,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.91,3511.082 -2345,0.66893,0.00092,268.94026,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8335,81.69552,10.48771,23.4379,403.61135,35.50355,0.0602,83.37804,0.2246,6.028,27.101,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.917,3511.082 -2346,0.667344,0.00092,268.95095,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83352,81.697336,10.487948,23.43842,403.62032,35.50434,0.0602,83.379892,0.2246,6.028,27.103,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.924,3511.082 -2347,0.665758,0.00092,268.96164,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83354,81.699152,10.488186,23.43894,403.62929,35.50513,0.0602,83.381744,0.2246,6.029,27.105,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.93,3511.082 -2348,0.664172,0.00092,268.97232,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83356,81.700968,10.488424,23.43946,403.63826,35.50592,0.0602,83.383596,0.2246,6.029,27.107,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.937,3511.082 -2349,0.662586,0.00092,268.98301,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.83358,81.702784,10.488662,23.43998,403.64723,35.50671,0.0602,83.385448,0.2246,6.03,27.109,4.954,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.944,3511.082 -2350,0.661,0.00092,268.9937,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8336,81.7046,10.4889,23.4405,403.6562,35.5075,0.0602,83.3873,0.2246,6.03,27.111,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.951,3511.082 -2351,0.659886,0.00092,269.00281,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051304,0.0319,0.0058,0.833618,81.706144,10.489098,23.440944,403.66384,35.508172,0.0602,83.388878,0.2246,6.031,27.113,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.957,3511.082 -2352,0.658772,0.00092,269.01192,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051308,0.0319,0.0058,0.833636,81.707688,10.489296,23.441388,403.67149,35.508844,0.0602,83.390456,0.2246,6.031,27.116,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.964,3511.082 -2353,0.657658,0.00092,269.02102,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051312,0.0319,0.0058,0.833654,81.709232,10.489494,23.441832,403.67913,35.509516,0.0602,83.392034,0.2246,6.032,27.118,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.97,3511.082 -2354,0.656544,0.00092,269.03013,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051316,0.0319,0.0058,0.833672,81.710776,10.489692,23.442276,403.68678,35.510188,0.0602,83.393612,0.2246,6.032,27.12,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.977,3511.082 -2355,0.65543,0.00092,269.03924,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05132,0.0319,0.0058,0.83369,81.71232,10.48989,23.44272,403.69442,35.51086,0.0602,83.39519,0.2246,6.033,27.122,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.984,3511.082 -2356,0.654316,0.00092,269.04835,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051324,0.0319,0.0058,0.833708,81.713864,10.490088,23.443164,403.70206,35.511532,0.0602,83.396768,0.2246,6.033,27.124,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.99,3511.082 -2357,0.653202,0.00092,269.05746,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051328,0.0319,0.0058,0.833726,81.715408,10.490286,23.443608,403.70971,35.512204,0.0602,83.398346,0.2246,6.033,27.126,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.997,3511.082 -2358,0.652088,0.00092,269.06656,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051332,0.0319,0.0058,0.833744,81.716952,10.490484,23.444052,403.71735,35.512876,0.0602,83.399924,0.2246,6.034,27.128,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.003,3511.082 -2359,0.650974,0.00092,269.07567,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051336,0.0319,0.0058,0.833762,81.718496,10.490682,23.444496,403.725,35.513548,0.0602,83.401502,0.2246,6.034,27.13,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.01,3511.082 -2360,0.64986,0.00092,269.08478,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05134,0.0319,0.0058,0.83378,81.72004,10.49088,23.44494,403.73264,35.51422,0.0602,83.40308,0.2246,6.035,27.132,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.016,3511.082 -2361,0.648746,0.00092,269.09389,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051344,0.0319,0.0058,0.833798,81.721584,10.491078,23.445384,403.74028,35.514892,0.0602,83.404658,0.2246,6.035,27.134,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.023,3511.082 -2362,0.647632,0.00092,269.103,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051348,0.0319,0.0058,0.833816,81.723128,10.491276,23.445828,403.74793,35.515564,0.0602,83.406236,0.2246,6.036,27.136,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.029,3511.082 -2363,0.646518,0.00092,269.1121,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051352,0.0319,0.0058,0.833834,81.724672,10.491474,23.446272,403.75557,35.516236,0.0602,83.407814,0.2246,6.036,27.138,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.035,3511.082 -2364,0.645404,0.00092,269.12121,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051356,0.0319,0.0058,0.833852,81.726216,10.491672,23.446716,403.76322,35.516908,0.0602,83.409392,0.2246,6.037,27.14,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.042,3511.082 -2365,0.64429,0.00092,269.13032,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05136,0.0319,0.0058,0.83387,81.72776,10.49187,23.44716,403.77086,35.51758,0.0602,83.41097,0.2246,6.037,27.142,4.961,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.048,3511.082 -2366,0.643176,0.00092,269.13943,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051364,0.0319,0.0058,0.833888,81.729304,10.492068,23.447604,403.7785,35.518252,0.0602,83.412548,0.2246,6.038,27.144,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.055,3511.082 -2367,0.642062,0.00092,269.14854,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051368,0.0319,0.0058,0.833906,81.730848,10.492266,23.448048,403.78615,35.518924,0.0602,83.414126,0.2246,6.038,27.147,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.061,3511.082 -2368,0.640948,0.00092,269.15764,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051372,0.0319,0.0058,0.833924,81.732392,10.492464,23.448492,403.79379,35.519596,0.0602,83.415704,0.2246,6.038,27.149,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.067,3511.082 -2369,0.639834,0.00092,269.16675,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051376,0.0319,0.0058,0.833942,81.733936,10.492662,23.448936,403.80144,35.520268,0.0602,83.417282,0.2246,6.039,27.151,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.073,3511.082 -2370,0.63872,0.00092,269.17586,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05138,0.0319,0.0058,0.83396,81.73548,10.49286,23.44938,403.80908,35.52094,0.0602,83.41886,0.2246,6.039,27.153,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.08,3511.082 -2371,0.637606,0.00092,269.18497,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051384,0.0319,0.0058,0.833978,81.737024,10.493058,23.449824,403.81672,35.521612,0.0602,83.420438,0.2246,6.04,27.155,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.086,3511.082 -2372,0.636492,0.00092,269.19408,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051388,0.0319,0.0058,0.833996,81.738568,10.493256,23.450268,403.82437,35.522284,0.0602,83.422016,0.2246,6.04,27.157,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.092,3511.082 -2373,0.635378,0.00092,269.20318,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051392,0.0319,0.0058,0.834014,81.740112,10.493454,23.450712,403.83201,35.522956,0.0602,83.423594,0.2246,6.041,27.158,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.098,3511.082 -2374,0.634264,0.00092,269.21229,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051396,0.0319,0.0058,0.834032,81.741656,10.493652,23.451156,403.83966,35.523628,0.0602,83.425172,0.2246,6.041,27.16,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.105,3511.082 -2375,0.63315,0.00092,269.2214,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0514,0.0319,0.0058,0.83405,81.7432,10.49385,23.4516,403.8473,35.5243,0.0602,83.42675,0.2246,6.042,27.162,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.111,3511.082 -2376,0.632036,0.00092,269.23051,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051404,0.0319,0.0058,0.834068,81.744744,10.494048,23.452044,403.85494,35.524972,0.0602,83.428328,0.2246,6.042,27.164,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.117,3511.082 -2377,0.630922,0.00092,269.23962,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051408,0.0319,0.0058,0.834086,81.746288,10.494246,23.452488,403.86259,35.525644,0.0602,83.429906,0.2246,6.042,27.166,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.123,3511.082 -2378,0.629808,0.00092,269.24872,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051412,0.0319,0.0058,0.834104,81.747832,10.494444,23.452932,403.87023,35.526316,0.0602,83.431484,0.2246,6.043,27.168,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.129,3511.082 -2379,0.628694,0.00092,269.25783,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051416,0.0319,0.0058,0.834122,81.749376,10.494642,23.453376,403.87788,35.526988,0.0602,83.433062,0.2246,6.043,27.17,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.135,3511.082 -2380,0.62758,0.00092,269.26694,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05142,0.0319,0.0058,0.83414,81.75092,10.49484,23.45382,403.88552,35.52766,0.0602,83.43464,0.2246,6.044,27.172,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.141,3511.082 -2381,0.626466,0.00092,269.27605,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051424,0.0319,0.0058,0.834158,81.752464,10.495038,23.454264,403.89316,35.528332,0.0602,83.436218,0.2246,6.044,27.174,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.148,3511.082 -2382,0.625352,0.00092,269.28516,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051428,0.0319,0.0058,0.834176,81.754008,10.495236,23.454708,403.90081,35.529004,0.0602,83.437796,0.2246,6.045,27.176,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.154,3511.082 -2383,0.624238,0.00092,269.29426,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051432,0.0319,0.0058,0.834194,81.755552,10.495434,23.455152,403.90845,35.529676,0.0602,83.439374,0.2246,6.045,27.178,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.16,3511.082 -2384,0.623124,0.00092,269.30337,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051436,0.0319,0.0058,0.834212,81.757096,10.495632,23.455596,403.9161,35.530348,0.0602,83.440952,0.2246,6.045,27.18,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.166,3511.082 -2385,0.62201,0.00092,269.31248,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05144,0.0319,0.0058,0.83423,81.75864,10.49583,23.45604,403.92374,35.53102,0.0602,83.44253,0.2246,6.046,27.182,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.172,3511.082 -2386,0.620896,0.00092,269.32159,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051444,0.0319,0.0058,0.834248,81.760184,10.496028,23.456484,403.93138,35.531692,0.0602,83.444108,0.2246,6.046,27.184,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.178,3511.082 -2387,0.619782,0.00092,269.3307,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051448,0.0319,0.0058,0.834266,81.761728,10.496226,23.456928,403.93903,35.532364,0.0602,83.445686,0.2246,6.047,27.186,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.184,3511.082 -2388,0.618668,0.00092,269.3398,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051452,0.0319,0.0058,0.834284,81.763272,10.496424,23.457372,403.94667,35.533036,0.0602,83.447264,0.2246,6.047,27.188,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.19,3511.082 -2389,0.617554,0.00092,269.34891,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051456,0.0319,0.0058,0.834302,81.764816,10.496622,23.457816,403.95432,35.533708,0.0602,83.448842,0.2246,6.048,27.189,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.195,3511.082 -2390,0.61644,0.00092,269.35802,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05146,0.0319,0.0058,0.83432,81.76636,10.49682,23.45826,403.96196,35.53438,0.0602,83.45042,0.2246,6.048,27.191,4.969,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.201,3511.082 -2391,0.615326,0.00092,269.36713,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051464,0.0319,0.0058,0.834338,81.767904,10.497018,23.458704,403.9696,35.535052,0.0602,83.451998,0.2246,6.048,27.193,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.207,3511.082 -2392,0.614212,0.00092,269.37624,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051468,0.0319,0.0058,0.834356,81.769448,10.497216,23.459148,403.97725,35.535724,0.0602,83.453576,0.2246,6.049,27.195,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.213,3511.082 -2393,0.613098,0.00092,269.38534,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051472,0.0319,0.0058,0.834374,81.770992,10.497414,23.459592,403.98489,35.536396,0.0602,83.455154,0.2246,6.049,27.197,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.219,3511.082 -2394,0.611984,0.00092,269.39445,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051476,0.0319,0.0058,0.834392,81.772536,10.497612,23.460036,403.99254,35.537068,0.0602,83.456732,0.2246,6.05,27.199,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.225,3511.082 -2395,0.61087,0.00092,269.40356,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05148,0.0319,0.0058,0.83441,81.77408,10.49781,23.46048,404.00018,35.53774,0.0602,83.45831,0.2246,6.05,27.201,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.231,3511.082 -2396,0.609756,0.00092,269.41267,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051484,0.0319,0.0058,0.834428,81.775624,10.498008,23.460924,404.00782,35.538412,0.0602,83.459888,0.2246,6.05,27.203,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.237,3511.082 -2397,0.608642,0.00092,269.42178,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051488,0.0319,0.0058,0.834446,81.777168,10.498206,23.461368,404.01547,35.539084,0.0602,83.461466,0.2246,6.051,27.204,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.242,3511.082 -2398,0.607528,0.00092,269.43088,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051492,0.0319,0.0058,0.834464,81.778712,10.498404,23.461812,404.02311,35.539756,0.0602,83.463044,0.2246,6.051,27.206,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.248,3511.082 -2399,0.606414,0.00092,269.43999,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051496,0.0319,0.0058,0.834482,81.780256,10.498602,23.462256,404.03076,35.540428,0.0602,83.464622,0.2246,6.052,27.208,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.254,3511.082 -2400,0.6053,0.00092,269.4491,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.8345,81.7818,10.4988,23.4627,404.0384,35.5411,0.0602,83.4662,0.2246,6.052,27.21,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.26,3511.082 -2401,0.604434,0.00092,269.45702,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834514,81.783148,10.498972,23.463086,404.04505,35.541686,0.060202,83.467576,0.2246,6.053,27.212,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.265,3511.082 -2402,0.603568,0.00092,269.46495,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834528,81.784496,10.499144,23.463472,404.0517,35.542272,0.060204,83.468952,0.2246,6.053,27.214,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.271,3511.082 -2403,0.602702,0.00092,269.47287,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834542,81.785844,10.499316,23.463858,404.05835,35.542858,0.060206,83.470328,0.2246,6.053,27.215,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.277,3511.082 -2404,0.601836,0.00092,269.4808,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834556,81.787192,10.499488,23.464244,404.065,35.543444,0.060208,83.471704,0.2246,6.054,27.217,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.282,3511.082 -2405,0.60097,0.00092,269.48872,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83457,81.78854,10.49966,23.46463,404.07165,35.54403,0.06021,83.47308,0.2246,6.054,27.219,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.288,3511.082 -2406,0.600104,0.00092,269.49664,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834584,81.789888,10.499832,23.465016,404.0783,35.544616,0.060212,83.474456,0.2246,6.055,27.221,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.294,3511.082 -2407,0.599238,0.00092,269.50457,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834598,81.791236,10.500004,23.465402,404.08495,35.545202,0.060214,83.475832,0.2246,6.055,27.223,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.299,3511.082 -2408,0.598372,0.00092,269.51249,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834612,81.792584,10.500176,23.465788,404.0916,35.545788,0.060216,83.477208,0.2246,6.055,27.224,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.305,3511.082 -2409,0.597506,0.00092,269.52042,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834626,81.793932,10.500348,23.466174,404.09825,35.546374,0.060218,83.478584,0.2246,6.056,27.226,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.311,3511.082 -2410,0.59664,0.00092,269.52834,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83464,81.79528,10.50052,23.46656,404.1049,35.54696,0.06022,83.47996,0.2246,6.056,27.228,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.316,3511.082 -2411,0.595774,0.00092,269.53626,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834654,81.796628,10.500692,23.466946,404.11155,35.547546,0.060222,83.481336,0.2246,6.057,27.23,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.322,3511.082 -2412,0.594908,0.00092,269.54419,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834668,81.797976,10.500864,23.467332,404.1182,35.548132,0.060224,83.482712,0.2246,6.057,27.231,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.327,3511.082 -2413,0.594042,0.00092,269.55211,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834682,81.799324,10.501036,23.467718,404.12485,35.548718,0.060226,83.484088,0.2246,6.057,27.233,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.333,3511.082 -2414,0.593176,0.00092,269.56004,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834696,81.800672,10.501208,23.468104,404.1315,35.549304,0.060228,83.485464,0.2246,6.058,27.235,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.338,3511.082 -2415,0.59231,0.00092,269.56796,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83471,81.80202,10.50138,23.46849,404.13815,35.54989,0.06023,83.48684,0.2246,6.058,27.237,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.344,3511.082 -2416,0.591444,0.00092,269.57588,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834724,81.803368,10.501552,23.468876,404.1448,35.550476,0.060232,83.488216,0.2246,6.058,27.239,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.349,3511.082 -2417,0.590578,0.00092,269.58381,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834738,81.804716,10.501724,23.469262,404.15145,35.551062,0.060234,83.489592,0.2246,6.059,27.24,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.355,3511.082 -2418,0.589712,0.00092,269.59173,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834752,81.806064,10.501896,23.469648,404.1581,35.551648,0.060236,83.490968,0.2246,6.059,27.242,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.36,3511.082 -2419,0.588846,0.00092,269.59966,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834766,81.807412,10.502068,23.470034,404.16475,35.552234,0.060238,83.492344,0.2246,6.06,27.244,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.366,3511.082 -2420,0.58798,0.00092,269.60758,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83478,81.80876,10.50224,23.47042,404.1714,35.55282,0.06024,83.49372,0.2246,6.06,27.245,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.371,3511.082 -2421,0.587114,0.00092,269.6155,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834794,81.810108,10.502412,23.470806,404.17805,35.553406,0.060242,83.495096,0.2246,6.06,27.247,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.377,3511.082 -2422,0.586248,0.00092,269.62343,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834808,81.811456,10.502584,23.471192,404.1847,35.553992,0.060244,83.496472,0.2246,6.061,27.249,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.382,3511.082 -2423,0.585382,0.00092,269.63135,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834822,81.812804,10.502756,23.471578,404.19135,35.554578,0.060246,83.497848,0.2246,6.061,27.251,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.388,3511.082 -2424,0.584516,0.00092,269.63928,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834836,81.814152,10.502928,23.471964,404.198,35.555164,0.060248,83.499224,0.2246,6.062,27.252,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.393,3511.082 -2425,0.58365,0.00092,269.6472,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83485,81.8155,10.5031,23.47235,404.20465,35.55575,0.06025,83.5006,0.2246,6.062,27.254,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.398,3511.082 -2426,0.582784,0.00092,269.65512,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834864,81.816848,10.503272,23.472736,404.2113,35.556336,0.060252,83.501976,0.2246,6.062,27.256,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.404,3511.082 -2427,0.581918,0.00092,269.66305,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834878,81.818196,10.503444,23.473122,404.21795,35.556922,0.060254,83.503352,0.2246,6.063,27.257,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.409,3511.082 -2428,0.581052,0.00092,269.67097,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834892,81.819544,10.503616,23.473508,404.2246,35.557508,0.060256,83.504728,0.2246,6.063,27.259,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.414,3511.082 -2429,0.580186,0.00092,269.6789,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834906,81.820892,10.503788,23.473894,404.23125,35.558094,0.060258,83.506104,0.2246,6.063,27.261,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.42,3511.082 -2430,0.57932,0.00092,269.68682,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83492,81.82224,10.50396,23.47428,404.2379,35.55868,0.06026,83.50748,0.2246,6.064,27.263,4.983,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.425,3511.082 -2431,0.578454,0.00092,269.69474,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834934,81.823588,10.504132,23.474666,404.24455,35.559266,0.060262,83.508856,0.2246,6.064,27.264,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.43,3511.082 -2432,0.577588,0.00092,269.70267,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834948,81.824936,10.504304,23.475052,404.2512,35.559852,0.060264,83.510232,0.2246,6.065,27.266,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.436,3511.082 -2433,0.576722,0.00092,269.71059,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834962,81.826284,10.504476,23.475438,404.25785,35.560438,0.060266,83.511608,0.2246,6.065,27.268,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.441,3511.082 -2434,0.575856,0.00092,269.71852,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.834976,81.827632,10.504648,23.475824,404.2645,35.561024,0.060268,83.512984,0.2246,6.065,27.269,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.446,3511.082 -2435,0.57499,0.00092,269.72644,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83499,81.82898,10.50482,23.47621,404.27115,35.56161,0.06027,83.51436,0.2246,6.066,27.271,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.451,3511.082 -2436,0.574124,0.00092,269.73436,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835004,81.830328,10.504992,23.476596,404.2778,35.562196,0.060272,83.515736,0.2246,6.066,27.273,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.457,3511.082 -2437,0.573258,0.00092,269.74229,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835018,81.831676,10.505164,23.476982,404.28445,35.562782,0.060274,83.517112,0.2246,6.066,27.274,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.462,3511.082 -2438,0.572392,0.00092,269.75021,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835032,81.833024,10.505336,23.477368,404.2911,35.563368,0.060276,83.518488,0.2246,6.067,27.276,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.467,3511.082 -2439,0.571526,0.00092,269.75814,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835046,81.834372,10.505508,23.477754,404.29775,35.563954,0.060278,83.519864,0.2246,6.067,27.278,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.472,3511.082 -2440,0.57066,0.00092,269.76606,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83506,81.83572,10.50568,23.47814,404.3044,35.56454,0.06028,83.52124,0.2246,6.068,27.279,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.477,3511.082 -2441,0.569794,0.00092,269.77398,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835074,81.837068,10.505852,23.478526,404.31105,35.565126,0.060282,83.522616,0.2246,6.068,27.281,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.482,3511.082 -2442,0.568928,0.00092,269.78191,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835088,81.838416,10.506024,23.478912,404.3177,35.565712,0.060284,83.523992,0.2246,6.068,27.283,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.488,3511.082 -2443,0.568062,0.00092,269.78983,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835102,81.839764,10.506196,23.479298,404.32435,35.566298,0.060286,83.525368,0.2246,6.069,27.284,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.493,3511.082 -2444,0.567196,0.00092,269.79776,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835116,81.841112,10.506368,23.479684,404.331,35.566884,0.060288,83.526744,0.2246,6.069,27.286,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.498,3511.082 -2445,0.56633,0.00092,269.80568,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.83513,81.84246,10.50654,23.48007,404.33765,35.56747,0.06029,83.52812,0.2246,6.069,27.287,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.503,3511.082 -2446,0.565464,0.00092,269.8136,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835144,81.843808,10.506712,23.480456,404.3443,35.568056,0.060292,83.529496,0.2246,6.07,27.289,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.508,3511.082 -2447,0.564598,0.00092,269.82153,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835158,81.845156,10.506884,23.480842,404.35095,35.568642,0.060294,83.530872,0.2246,6.07,27.291,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.513,3511.082 -2448,0.563732,0.00092,269.82945,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835172,81.846504,10.507056,23.481228,404.3576,35.569228,0.060296,83.532248,0.2246,6.07,27.292,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.518,3511.082 -2449,0.562866,0.00092,269.83738,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.835186,81.847852,10.507228,23.481614,404.36425,35.569814,0.060298,83.533624,0.2246,6.071,27.294,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.523,3511.082 -2450,0.562,0.00092,269.8453,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0515,0.0319,0.0058,0.8352,81.8492,10.5074,23.482,404.3709,35.5704,0.0603,83.535,0.2246,6.071,27.295,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.528,3511.082 -2451,0.56425,0.00092,269.82627,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051496,0.0319,0.0058,0.835164,81.845968,10.506984,23.481072,404.35493,35.568994,0.060298,83.531698,0.2246,6.072,27.297,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.533,3511.082 -2452,0.5665,0.00092,269.80724,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051492,0.0319,0.0058,0.835128,81.842736,10.506568,23.480144,404.33896,35.567588,0.060296,83.528396,0.2246,6.072,27.299,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.538,3511.082 -2453,0.56875,0.00092,269.7882,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051488,0.0319,0.0058,0.835092,81.839504,10.506152,23.479216,404.32299,35.566182,0.060294,83.525094,0.2246,6.072,27.3,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.543,3511.082 -2454,0.571,0.00092,269.76917,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051484,0.0319,0.0058,0.835056,81.836272,10.505736,23.478288,404.30702,35.564776,0.060292,83.521792,0.2246,6.073,27.302,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.548,3511.082 -2455,0.57325,0.00092,269.75014,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05148,0.0319,0.0058,0.83502,81.83304,10.50532,23.47736,404.29105,35.56337,0.06029,83.51849,0.2246,6.073,27.303,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.553,3511.082 -2456,0.5755,0.00092,269.73111,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051476,0.0319,0.0058,0.834984,81.829808,10.504904,23.476432,404.27508,35.561964,0.060288,83.515188,0.2246,6.073,27.305,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.558,3511.082 -2457,0.57775,0.00092,269.71208,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051472,0.0319,0.0058,0.834948,81.826576,10.504488,23.475504,404.25911,35.560558,0.060286,83.511886,0.2246,6.074,27.307,4.991,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.563,3511.082 -2458,0.58,0.00092,269.69304,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051468,0.0319,0.0058,0.834912,81.823344,10.504072,23.474576,404.24314,35.559152,0.060284,83.508584,0.2246,6.074,27.308,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.568,3511.082 -2459,0.58225,0.00092,269.67401,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051464,0.0319,0.0058,0.834876,81.820112,10.503656,23.473648,404.22717,35.557746,0.060282,83.505282,0.2246,6.074,27.31,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.573,3511.082 -2460,0.5845,0.00092,269.65498,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05146,0.0319,0.0058,0.83484,81.81688,10.50324,23.47272,404.2112,35.55634,0.06028,83.50198,0.2246,6.075,27.311,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.578,3511.082 -2461,0.58675,0.00092,269.63595,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051456,0.0319,0.0058,0.834804,81.813648,10.502824,23.471792,404.19523,35.554934,0.060278,83.498678,0.2246,6.075,27.313,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.583,3511.082 -2462,0.589,0.00092,269.61692,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051452,0.0319,0.0058,0.834768,81.810416,10.502408,23.470864,404.17926,35.553528,0.060276,83.495376,0.2246,6.075,27.314,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.588,3511.082 -2463,0.59125,0.00092,269.59788,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051448,0.0319,0.0058,0.834732,81.807184,10.501992,23.469936,404.16329,35.552122,0.060274,83.492074,0.2246,6.076,27.316,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.593,3511.082 -2464,0.5935,0.00092,269.57885,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051444,0.0319,0.0058,0.834696,81.803952,10.501576,23.469008,404.14732,35.550716,0.060272,83.488772,0.2246,6.076,27.318,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.597,3511.082 -2465,0.59575,0.00092,269.55982,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05144,0.0319,0.0058,0.83466,81.80072,10.50116,23.46808,404.13135,35.54931,0.06027,83.48547,0.2246,6.076,27.319,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.602,3511.082 -2466,0.598,0.00092,269.54079,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051436,0.0319,0.0058,0.834624,81.797488,10.500744,23.467152,404.11538,35.547904,0.060268,83.482168,0.2246,6.077,27.321,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.607,3511.082 -2467,0.60025,0.00092,269.52176,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051432,0.0319,0.0058,0.834588,81.794256,10.500328,23.466224,404.09941,35.546498,0.060266,83.478866,0.2246,6.077,27.322,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.612,3511.082 -2468,0.6025,0.00092,269.50272,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051428,0.0319,0.0058,0.834552,81.791024,10.499912,23.465296,404.08344,35.545092,0.060264,83.475564,0.2246,6.077,27.324,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.617,3511.082 -2469,0.60475,0.00092,269.48369,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051424,0.0319,0.0058,0.834516,81.787792,10.499496,23.464368,404.06747,35.543686,0.060262,83.472262,0.2246,6.078,27.325,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.622,3511.082 -2470,0.607,0.00092,269.46466,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05142,0.0319,0.0058,0.83448,81.78456,10.49908,23.46344,404.0515,35.54228,0.06026,83.46896,0.2246,6.078,27.327,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.626,3511.082 -2471,0.60925,0.00092,269.44563,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051416,0.0319,0.0058,0.834444,81.781328,10.498664,23.462512,404.03553,35.540874,0.060258,83.465658,0.2246,6.078,27.328,4.995,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.631,3511.082 -2472,0.6115,0.00092,269.4266,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051412,0.0319,0.0058,0.834408,81.778096,10.498248,23.461584,404.01956,35.539468,0.060256,83.462356,0.2246,6.079,27.33,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.636,3511.082 -2473,0.61375,0.00092,269.40756,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051408,0.0319,0.0058,0.834372,81.774864,10.497832,23.460656,404.00359,35.538062,0.060254,83.459054,0.2246,6.079,27.331,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.641,3511.082 -2474,0.616,0.00092,269.38853,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051404,0.0319,0.0058,0.834336,81.771632,10.497416,23.459728,403.98762,35.536656,0.060252,83.455752,0.2246,6.079,27.333,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.645,3511.082 -2475,0.61825,0.00092,269.3695,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0514,0.0319,0.0058,0.8343,81.7684,10.497,23.4588,403.97165,35.53525,0.06025,83.45245,0.2246,6.08,27.334,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.65,3511.082 -2476,0.6205,0.00092,269.35047,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051396,0.0319,0.0058,0.834264,81.765168,10.496584,23.457872,403.95568,35.533844,0.060248,83.449148,0.2246,6.08,27.336,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.655,3511.082 -2477,0.62275,0.00092,269.33144,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051392,0.0319,0.0058,0.834228,81.761936,10.496168,23.456944,403.93971,35.532438,0.060246,83.445846,0.2246,6.08,27.337,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.66,3511.082 -2478,0.625,0.00092,269.3124,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051388,0.0319,0.0058,0.834192,81.758704,10.495752,23.456016,403.92374,35.531032,0.060244,83.442544,0.2246,6.081,27.339,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.664,3511.082 -2479,0.62725,0.00092,269.29337,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051384,0.0319,0.0058,0.834156,81.755472,10.495336,23.455088,403.90777,35.529626,0.060242,83.439242,0.2246,6.081,27.34,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.669,3511.082 -2480,0.6295,0.00092,269.27434,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05138,0.0319,0.0058,0.83412,81.75224,10.49492,23.45416,403.8918,35.52822,0.06024,83.43594,0.2246,6.081,27.342,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.674,3511.082 -2481,0.63175,0.00092,269.25531,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051376,0.0319,0.0058,0.834084,81.749008,10.494504,23.453232,403.87583,35.526814,0.060238,83.432638,0.2246,6.082,27.343,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.678,3511.082 -2482,0.634,0.00092,269.23628,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051372,0.0319,0.0058,0.834048,81.745776,10.494088,23.452304,403.85986,35.525408,0.060236,83.429336,0.2246,6.082,27.345,4.998,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.683,3511.082 -2483,0.63625,0.00092,269.21724,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051368,0.0319,0.0058,0.834012,81.742544,10.493672,23.451376,403.84389,35.524002,0.060234,83.426034,0.2246,6.082,27.346,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.688,3511.082 -2484,0.6385,0.00092,269.19821,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051364,0.0319,0.0058,0.833976,81.739312,10.493256,23.450448,403.82792,35.522596,0.060232,83.422732,0.2246,6.083,27.348,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.692,3511.082 -2485,0.64075,0.00092,269.17918,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05136,0.0319,0.0058,0.83394,81.73608,10.49284,23.44952,403.81195,35.52119,0.06023,83.41943,0.2246,6.083,27.349,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.697,3511.082 -2486,0.643,0.00092,269.16015,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051356,0.0319,0.0058,0.833904,81.732848,10.492424,23.448592,403.79598,35.519784,0.060228,83.416128,0.2246,6.083,27.351,4.999,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.702,3511.082 -2487,0.64525,0.00092,269.14112,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051352,0.0319,0.0058,0.833868,81.729616,10.492008,23.447664,403.78001,35.518378,0.060226,83.412826,0.2246,6.084,27.352,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.706,3511.082 -2488,0.6475,0.00092,269.12208,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051348,0.0319,0.0058,0.833832,81.726384,10.491592,23.446736,403.76404,35.516972,0.060224,83.409524,0.2246,6.084,27.354,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.711,3511.082 -2489,0.64975,0.00092,269.10305,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051344,0.0319,0.0058,0.833796,81.723152,10.491176,23.445808,403.74807,35.515566,0.060222,83.406222,0.2246,6.084,27.355,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.715,3511.082 -2490,0.652,0.00092,269.08402,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05134,0.0319,0.0058,0.83376,81.71992,10.49076,23.44488,403.7321,35.51416,0.06022,83.40292,0.2246,6.085,27.357,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.72,3511.082 -2491,0.65425,0.00092,269.06499,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051336,0.0319,0.0058,0.833724,81.716688,10.490344,23.443952,403.71613,35.512754,0.060218,83.399618,0.2246,6.085,27.358,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.725,3511.082 -2492,0.6565,0.00092,269.04596,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051332,0.0319,0.0058,0.833688,81.713456,10.489928,23.443024,403.70016,35.511348,0.060216,83.396316,0.2246,6.085,27.359,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.729,3511.082 -2493,0.65875,0.00092,269.02692,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051328,0.0319,0.0058,0.833652,81.710224,10.489512,23.442096,403.68419,35.509942,0.060214,83.393014,0.2246,6.086,27.361,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.734,3511.082 -2494,0.661,0.00092,269.00789,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051324,0.0319,0.0058,0.833616,81.706992,10.489096,23.441168,403.66822,35.508536,0.060212,83.389712,0.2246,6.086,27.362,5.001,1.24,0.176,0.159,0,0.059,0.308,0.041,0.004,0,0.181,0,158.738,3511.082 -2495,0.66325,0.00092,268.98886,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.05132,0.0319,0.0058,0.83358,81.70376,10.48868,23.44024,403.65225,35.50713,0.06021,83.38641,0.2246,6.086,27.364,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.743,3511.082 -2496,0.6655,0.00092,268.96983,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051316,0.0319,0.0058,0.833544,81.700528,10.488264,23.439312,403.63628,35.505724,0.060208,83.383108,0.2246,6.087,27.365,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.747,3511.082 -2497,0.66775,0.00092,268.9508,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051312,0.0319,0.0058,0.833508,81.697296,10.487848,23.438384,403.62031,35.504318,0.060206,83.379806,0.2246,6.087,27.367,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.752,3511.082 -2498,0.67,0.00092,268.93176,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051308,0.0319,0.0058,0.833472,81.694064,10.487432,23.437456,403.60434,35.502912,0.060204,83.376504,0.2246,6.087,27.368,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.756,3511.082 -2499,0.67225,0.00092,268.91273,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.051304,0.0319,0.0058,0.833436,81.690832,10.487016,23.436528,403.58837,35.501506,0.060202,83.373202,0.2246,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082 -2500,0.6745,0.00092,268.8937,7.0085,11.2539,11253.9,477.2996,140.0338,18.0559,3.8621,19.4005,43.5687,0.0513,0.0319,0.0058,0.8334,81.6876,10.4866,23.4356,403.5724,35.5001,0.0602,83.3699,0.2246,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082 diff --git a/inst/input/emissions/RCP60_emissions.csv b/inst/input/emissions/RCP60_emissions.csv deleted file mode 100644 index d201d79c0..000000000 --- a/inst/input/emissions/RCP60_emissions.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP 6 emissions ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,7.4566,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082 -2006,8.081,1.1319,317.6624,7.7838,56.6405,56640.5,1057.4015,215.3798,38.6291,8.228,36.3475,42.2514,13.735,2.6399,0.4426,10.5529,12.3831,3.8802,12.649,121.0746,10.9216,5.6761,34.1569,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082 -2007,8.1899,1.0683,319.4203,7.8838,56.5578,56557.8,1053.2589,215.2944,38.4618,8.2049,36.3034,42.6192,15.8599,2.6308,0.4491,10.2946,13.773,4.5245,11.5302,129.6223,9.3647,6.4623,41.4253,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082 -2008,8.2971667,1.0046667,321.17513,7.9843333,56.4678,56467.8,1049.0791,215.20513,38.292033,8.1816667,36.259433,42.9869,17.976533,2.6214333,0.45493333,10.037133,15.1627,5.1676,10.393733,135.18193,7.7477,7.2483,48.693733,6.9909667,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082 -2009,8.4044333,0.94103333,322.92997,8.0848667,56.3778,56377.8,1044.8993,215.11587,38.122267,8.1584333,36.215467,43.3546,20.093167,2.6120667,0.46076667,9.7796667,16.5524,5.8107,9.2572667,140.74157,6.1307,8.0343,55.962167,7.3806333,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082 -2010,8.5117,0.8774,324.6848,8.1854,56.2878,56287.8,1040.7195,215.0266,37.9525,8.1352,36.1715,43.7223,22.2098,2.6027,0.4666,9.5222,17.9421,6.4538,8.1208,146.3012,4.5137,8.8203,63.2306,7.7703,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082 -2011,8.55557,0.83029,323.38128,8.15982,55.63774,55637.74,1039.1875,214.89234,37.71422,8.09546,36.16182,43.63166,22.27617,2.60843,0.43839,8.68522,22.21208,6.53096,8.19765,147.06015,4.61769,8.08983,63.4781,7.93581,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,0,1.445,0.156,167.857,3511.082 -2012,8.59944,0.78318,322.07776,8.13424,54.98768,54987.68,1037.6555,214.75808,37.47594,8.05572,36.15214,43.54102,22.34254,2.61416,0.41018,7.84824,26.48206,6.60812,8.2745,147.8191,4.72168,7.35936,63.7256,8.10132,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,0,1.373,0.139,167.857,3511.082 -2013,8.64331,0.73607,320.77424,8.10866,54.33762,54337.62,1036.1234,214.62382,37.23766,8.01598,36.14246,43.45038,22.40891,2.61989,0.38197,7.01126,30.75204,6.68528,8.35135,148.57805,4.82567,6.62889,63.9731,8.26683,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,0,1.304,0.124,167.857,3511.082 -2014,8.68718,0.68896,319.47072,8.08308,53.68756,53687.56,1034.5914,214.48956,36.99938,7.97624,36.13278,43.35974,22.47528,2.62562,0.35376,6.17428,35.02202,6.76244,8.4282,149.337,4.92966,5.89842,64.2206,8.43234,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,0,1.239,0.11,167.857,3511.082 -2015,8.73105,0.64185,318.1672,8.0575,53.0375,53037.5,1033.0594,214.3553,36.7611,7.9365,36.1231,43.2691,22.54165,2.63135,0.32555,5.3373,39.292,6.8396,8.50505,150.09595,5.03365,5.16795,64.4681,8.59785,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,0,1.177,0.098,155.925,3511.082 -2016,8.77492,0.59474,316.86368,8.03192,52.38744,52387.44,1031.5274,214.22104,36.52282,7.89676,36.11342,43.17846,22.60802,2.63708,0.29734,4.50032,43.56198,6.91676,8.5819,150.8549,5.13764,4.43748,64.7156,8.76336,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,0,1.118,0.087,155.925,3511.082 -2017,8.81879,0.54763,315.56016,8.00634,51.73738,51737.38,1029.9954,214.08678,36.28454,7.85702,36.10374,43.08782,22.67439,2.64281,0.26913,3.66334,47.83196,6.99392,8.65875,151.61385,5.24163,3.70701,64.9631,8.92887,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,0,1.062,0.078,155.925,3511.082 -2018,8.86266,0.50052,314.25664,7.98076,51.08732,51087.32,1028.4633,213.95252,36.04626,7.81728,36.09406,42.99718,22.74076,2.64854,0.24092,2.82636,52.10194,7.07108,8.7356,152.3728,5.34562,2.97654,65.2106,9.09438,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,0,1.009,0.069,155.925,3511.082 -2019,8.90653,0.45341,312.95312,7.95518,50.43726,50437.26,1026.9313,213.81826,35.80798,7.77754,36.08438,42.90654,22.80713,2.65427,0.21271,1.98938,56.37192,7.14824,8.81245,153.13175,5.44961,2.24607,65.4581,9.25989,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0,0.959,0.061,155.925,3511.082 -2020,8.9504,0.4063,311.6496,7.9296,49.7872,49787.2,1025.3993,213.684,35.5697,7.7378,36.0747,42.8159,22.8735,2.66,0.1845,1.1524,60.6419,7.2254,8.8893,153.8907,5.5536,1.5156,65.7056,9.4254,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0,0.911,0.055,155.925,3511.082 -2021,9.05487,0.30994,313.11564,8.01843,48.94131,48941.31,1025.732,213.95296,35.35512,7.71469,36.05673,43.17282,22.9386,2.66493,0.17723,1.1063,61.78125,7.31538,8.94218,154.41356,5.60414,1.43416,65.86791,9.44312,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0,0.865,0.049,155.925,3511.082 -2022,9.15934,0.21358,314.58168,8.10726,48.09542,48095.42,1026.0648,214.22192,35.14054,7.69158,36.03876,43.52974,23.0037,2.66986,0.16996,1.0602,62.9206,7.40536,8.99506,154.93642,5.65468,1.35272,66.03022,9.46084,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0,0.822,0.043,155.925,3511.082 -2023,9.26381,0.11722,316.04772,8.19609,47.24953,47249.53,1026.3975,214.49088,34.92596,7.66847,36.02079,43.88666,23.0688,2.67479,0.16269,1.0141,64.05995,7.49534,9.04794,155.45928,5.70522,1.27128,66.19253,9.47856,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0,0.781,0.039,155.925,3511.082 -2024,9.36828,0.02086,317.51376,8.28492,46.40364,46403.64,1026.7303,214.75984,34.71138,7.64536,36.00282,44.24358,23.1339,2.67972,0.15542,0.968,65.1993,7.58532,9.10082,155.98214,5.75576,1.18984,66.35484,9.49628,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0,0.742,0.034,155.925,3511.082 -2025,9.47275,-0.0755,318.9798,8.37375,45.55775,45557.75,1027.063,215.0288,34.4968,7.62225,35.98485,44.6005,23.199,2.68465,0.14815,0.9219,66.33865,7.6753,9.1537,156.505,5.8063,1.1084,66.51715,9.514,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0,0.705,0.031,155.925,3511.082 -2026,9.57722,-0.17186,320.44584,8.46258,44.71186,44711.86,1027.3957,215.29776,34.28222,7.59914,35.96688,44.95742,23.2641,2.68958,0.14088,0.8758,67.478,7.76528,9.20658,157.02786,5.85684,1.02696,66.67946,9.53172,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0,0.669,0.027,155.925,3511.082 -2027,9.68169,-0.26822,321.91188,8.55141,43.86597,43865.97,1027.7285,215.56672,34.06764,7.57603,35.94891,45.31434,23.3292,2.69451,0.13361,0.8297,68.61735,7.85526,9.25946,157.55072,5.90738,0.94552,66.84177,9.54944,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0,0.636,0.024,155.925,3511.082 -2028,9.78616,-0.36458,323.37792,8.64024,43.02008,43020.08,1028.0612,215.83568,33.85306,7.55292,35.93094,45.67126,23.3943,2.69944,0.12634,0.7836,69.7567,7.94524,9.31234,158.07358,5.95792,0.86408,67.00408,9.56716,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0,0.604,0.022,155.925,3511.082 -2029,9.89063,-0.46094,324.84396,8.72907,42.17419,42174.19,1028.394,216.10464,33.63848,7.52981,35.91297,46.02818,23.4594,2.70437,0.11907,0.7375,70.89605,8.03522,9.36522,158.59644,6.00846,0.78264,67.16639,9.58488,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0,0.574,0.019,155.925,3511.082 -2030,9.9951,-0.5573,326.31,8.8179,41.3283,41328.3,1028.7267,216.3736,33.4239,7.5067,35.895,46.3851,23.5245,2.7093,0.1118,0.6914,72.0354,8.1252,9.4181,159.1193,6.059,0.7012,67.3287,9.6026,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0,0.545,0.017,155.925,3511.082 -2031,10.15102,-0.57298,328.09167,8.90894,41.45623,41456.23,1030.971,217.00384,33.37117,7.4966,35.9507,46.75006,23.55538,2.70139,0.1119,0.66359,72.90303,8.24913,9.47689,159.57023,6.11699,0.70177,67.44688,9.61107,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0,0.518,0.015,155.925,3511.082 -2032,10.30694,-0.58866,329.87334,8.99998,41.58416,41584.16,1033.2153,217.63408,33.31844,7.4865,36.0064,47.11502,23.58626,2.69348,0.112,0.63578,73.77066,8.37306,9.53568,160.02116,6.17498,0.70234,67.56506,9.61954,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0,0.492,0.013,155.925,3511.082 -2033,10.46286,-0.60434,331.65501,9.09102,41.71209,41712.09,1035.4597,218.26432,33.26571,7.4764,36.0621,47.47998,23.61714,2.68557,0.1121,0.60797,74.63829,8.49699,9.59447,160.47209,6.23297,0.70291,67.68324,9.62801,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0,0.467,0.012,155.925,3511.082 -2034,10.61878,-0.62002,333.43668,9.18206,41.84002,41840.02,1037.704,218.89456,33.21298,7.4663,36.1178,47.84494,23.64802,2.67766,0.1122,0.58016,75.50592,8.62092,9.65326,160.92302,6.29096,0.70348,67.80142,9.63648,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0,0.444,0.011,155.925,3511.082 -2035,10.7747,-0.6357,335.21835,9.2731,41.96795,41967.95,1039.9483,219.5248,33.16025,7.4562,36.1735,48.2099,23.6789,2.66975,0.1123,0.55235,76.37355,8.74485,9.71205,161.37395,6.34895,0.70405,67.9196,9.64495,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0,0.422,0.01,155.925,3511.082 -2036,10.93062,-0.65138,337.00002,9.36414,42.09588,42095.88,1042.1926,220.15504,33.10752,7.4461,36.2292,48.57486,23.70978,2.66184,0.1124,0.52454,77.24118,8.86878,9.77084,161.82488,6.40694,0.70462,68.03778,9.65342,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0,0.401,0.008,155.925,3511.082 -2037,11.08654,-0.66706,338.78169,9.45518,42.22381,42223.81,1044.4369,220.78528,33.05479,7.436,36.2849,48.93982,23.74066,2.65393,0.1125,0.49673,78.10881,8.99271,9.82963,162.27581,6.46493,0.70519,68.15596,9.66189,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0,0.381,0.008,155.925,3511.082 -2038,11.24246,-0.68274,340.56336,9.54622,42.35174,42351.74,1046.6813,221.41552,33.00206,7.4259,36.3406,49.30478,23.77154,2.64602,0.1126,0.46892,78.97644,9.11664,9.88842,162.72674,6.52292,0.70576,68.27414,9.67036,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0,0.362,0.007,155.925,3511.082 -2039,11.39838,-0.69842,342.34503,9.63726,42.47967,42479.67,1048.9256,222.04576,32.94933,7.4158,36.3963,49.66974,23.80242,2.63811,0.1127,0.44111,79.84407,9.24057,9.94721,163.17767,6.58091,0.70633,68.39232,9.67883,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0,0.344,0.006,155.925,3511.082 -2040,11.5543,-0.7141,344.1267,9.7283,42.6076,42607.6,1051.1699,222.676,32.8966,7.4057,36.452,50.0347,23.8333,2.6302,0.1128,0.4133,80.7117,9.3645,10.006,163.6286,6.6389,0.7069,68.5105,9.6873,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0,0.326,0.005,155.925,3511.082 -2041,11.70325,-0.68907,345.22016,9.80918,42.0652,42065.2,1049.4931,222.44617,32.65711,7.37374,36.47072,50.3455,23.82125,2.6223,0.11238,0.3966,80.10127,9.53752,10.04389,163.97624,6.68694,0.65691,68.554,9.69652,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0,0.31,0.005,155.925,3511.082 -2042,11.8522,-0.66404,346.31362,9.89006,41.5228,41522.8,1047.8163,222.21634,32.41762,7.34178,36.48944,50.6563,23.8092,2.6144,0.11196,0.3799,79.49084,9.71054,10.08178,164.32388,6.73498,0.60692,68.5975,9.70574,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0,0.295,0.004,155.925,3511.082 -2043,12.00115,-0.63901,347.40708,9.97094,40.9804,40980.4,1046.1395,221.98651,32.17813,7.30982,36.50816,50.9671,23.79715,2.6065,0.11154,0.3632,78.88041,9.88356,10.11967,164.67152,6.78302,0.55693,68.641,9.71496,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0,0.28,0.004,155.925,3511.082 -2044,12.1501,-0.61398,348.50054,10.05182,40.438,40438,1044.4627,221.75668,31.93864,7.27786,36.52688,51.2779,23.7851,2.5986,0.11112,0.3465,78.26998,10.05658,10.15756,165.01916,6.83106,0.50694,68.6845,9.72418,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0,0.266,0.003,155.925,3511.082 -2045,12.29905,-0.58895,349.594,10.1327,39.8956,39895.6,1042.7859,221.52685,31.69915,7.2459,36.5456,51.5887,23.77305,2.5907,0.1107,0.3298,77.65955,10.2296,10.19545,165.3668,6.8791,0.45695,68.728,9.7334,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0,0.253,0.003,155.925,3511.082 -2046,12.448,-0.56392,350.68746,10.21358,39.3532,39353.2,1041.1092,221.29702,31.45966,7.21394,36.56432,51.8995,23.761,2.5828,0.11028,0.3131,77.04912,10.40262,10.23334,165.71444,6.92714,0.40696,68.7715,9.74262,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0,0.24,0.003,155.925,3511.082 -2047,12.59695,-0.53889,351.78092,10.29446,38.8108,38810.8,1039.4324,221.06719,31.22017,7.18198,36.58304,52.2103,23.74895,2.5749,0.10986,0.2964,76.43869,10.57564,10.27123,166.06208,6.97518,0.35697,68.815,9.75184,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0,0.228,0.002,155.925,3511.082 -2048,12.7459,-0.51386,352.87438,10.37534,38.2684,38268.4,1037.7556,220.83736,30.98068,7.15002,36.60176,52.5211,23.7369,2.567,0.10944,0.2797,75.82826,10.74866,10.30912,166.40972,7.02322,0.30698,68.8585,9.76106,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0,0.217,0.002,155.925,3511.082 -2049,12.89485,-0.48883,353.96784,10.45622,37.726,37726,1036.0788,220.60753,30.74119,7.11806,36.62048,52.8319,23.72485,2.5591,0.10902,0.263,75.21783,10.92168,10.34701,166.75736,7.07126,0.25699,68.902,9.77028,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0,0.206,0.002,155.925,3511.082 -2050,13.0438,-0.4638,355.0613,10.5371,37.1836,37183.6,1034.402,220.3777,30.5017,7.0861,36.6392,53.1427,23.7128,2.5512,0.1086,0.2463,74.6074,11.0947,10.3849,167.105,7.1193,0.207,68.9455,9.7795,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0,0.195,0.002,155.925,3511.082 -2051,13.22186,-0.44326,355.94998,10.6195,36.95717,36957.17,1030.5732,219.75002,30.28262,7.02414,36.54813,53.50663,23.71405,2.54411,0.10848,0.23543,75.55522,11.0965,10.44021,167.59135,7.18313,0.1948,69.0534,9.79437,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0,0.186,0.001,155.925,3511.082 -2052,13.39992,-0.42272,356.83866,10.7019,36.73074,36730.74,1026.7444,219.12234,30.06354,6.96218,36.45706,53.87056,23.7153,2.53702,0.10836,0.22456,76.50304,11.0983,10.49552,168.0777,7.24696,0.1826,69.1613,9.80924,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0,0.176,0.001,155.925,3511.082 -2053,13.57798,-0.40218,357.72734,10.7843,36.50431,36504.31,1022.9156,218.49466,29.84446,6.90022,36.36599,54.23449,23.71655,2.52993,0.10824,0.21369,77.45086,11.1001,10.55083,168.56405,7.31079,0.1704,69.2692,9.82411,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0,0.168,0.001,155.925,3511.082 -2054,13.75604,-0.38164,358.61602,10.8667,36.27788,36277.88,1019.0868,217.86698,29.62538,6.83826,36.27492,54.59842,23.7178,2.52284,0.10812,0.20282,78.39868,11.1019,10.60614,169.0504,7.37462,0.1582,69.3771,9.83898,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0,0.159,0.001,155.925,3511.082 -2055,13.9341,-0.3611,359.5047,10.9491,36.05145,36051.45,1015.258,217.2393,29.4063,6.7763,36.18385,54.96235,23.71905,2.51575,0.108,0.19195,79.3465,11.1037,10.66145,169.53675,7.43845,0.146,69.485,9.85385,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0,0.151,0.001,155.925,3511.082 -2056,14.11216,-0.34056,360.39338,11.0315,35.82502,35825.02,1011.4293,216.61162,29.18722,6.71434,36.09278,55.32628,23.7203,2.50866,0.10788,0.18108,80.29432,11.1055,10.71676,170.0231,7.50228,0.1338,69.5929,9.86872,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0,0.144,0.001,155.925,3511.082 -2057,14.29022,-0.32002,361.28206,11.1139,35.59859,35598.59,1007.6005,215.98394,28.96814,6.65238,36.00171,55.69021,23.72155,2.50157,0.10776,0.17021,81.24214,11.1073,10.77207,170.50945,7.56611,0.1216,69.7008,9.88359,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0,0.136,0.001,155.925,3511.082 -2058,14.46828,-0.29948,362.17074,11.1963,35.37216,35372.16,1003.7717,215.35626,28.74906,6.59042,35.91064,56.05414,23.7228,2.49448,0.10764,0.15934,82.18996,11.1091,10.82738,170.9958,7.62994,0.1094,69.8087,9.89846,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0,0.13,0.001,155.925,3511.082 -2059,14.64634,-0.27894,363.05942,11.2787,35.14573,35145.73,999.94289,214.72858,28.52998,6.52846,35.81957,56.41807,23.72405,2.48739,0.10752,0.14847,83.13778,11.1109,10.88269,171.48215,7.69377,0.0972,69.9166,9.91333,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0,0.123,0.001,155.925,3511.082 -2060,14.8244,-0.2584,363.9481,11.3611,34.9193,34919.3,996.1141,214.1009,28.3109,6.4665,35.7285,56.782,23.7253,2.4803,0.1074,0.1376,84.0856,11.1127,10.938,171.9685,7.7576,0.085,70.0245,9.9282,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0,0.117,0.001,155.925,3511.082 -2061,14.99256,-0.23549,363.5485,11.42811,33.65747,33657.47,990.16887,213.11653,27.85015,6.38933,35.58927,57.09359,23.69872,2.48426,0.10732,0.13115,85.06506,11.10611,10.98618,172.36387,7.81599,0.08313,70.08915,9.94365,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0,0.111,0,155.925,3511.082 -2062,15.16072,-0.21258,363.1489,11.49512,32.39564,32395.64,984.22364,212.13216,27.3894,6.31216,35.45004,57.40518,23.67214,2.48822,0.10724,0.1247,86.04452,11.09952,11.03436,172.75924,7.87438,0.08126,70.1538,9.9591,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0,0.106,0,155.925,3511.082 -2063,15.32888,-0.18967,362.7493,11.56213,31.13381,31133.81,978.27841,211.14779,26.92865,6.23499,35.31081,57.71677,23.64556,2.49218,0.10716,0.11825,87.02398,11.09293,11.08254,173.15461,7.93277,0.07939,70.21845,9.97455,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0,0.1,0,155.925,3511.082 -2064,15.49704,-0.16676,362.3497,11.62914,29.87198,29871.98,972.33318,210.16342,26.4679,6.15782,35.17158,58.02836,23.61898,2.49614,0.10708,0.1118,88.00344,11.08634,11.13072,173.54998,7.99116,0.07752,70.2831,9.99,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0,0.095,0,155.925,3511.082 -2065,15.6652,-0.14385,361.9501,11.69615,28.61015,28610.15,966.38795,209.17905,26.00715,6.08065,35.03235,58.33995,23.5924,2.5001,0.107,0.10535,88.9829,11.07975,11.1789,173.94535,8.04955,0.07565,70.34775,10.00545,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0,0.091,0,155.925,3511.082 -2066,15.83336,-0.12094,361.5505,11.76316,27.34832,27348.32,960.44272,208.19468,25.5464,6.00348,34.89312,58.65154,23.56582,2.50406,0.10692,0.0989,89.96236,11.07316,11.22708,174.34072,8.10794,0.07378,70.4124,10.0209,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0,0.086,0,155.925,3511.082 -2067,16.00152,-0.09803,361.1509,11.83017,26.08649,26086.49,954.49749,207.21031,25.08565,5.92631,34.75389,58.96313,23.53924,2.50802,0.10684,0.09245,90.94182,11.06657,11.27526,174.73609,8.16633,0.07191,70.47705,10.03635,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0,0.082,0,155.925,3511.082 -2068,16.16968,-0.07512,360.7513,11.89718,24.82466,24824.66,948.55226,206.22594,24.6249,5.84914,34.61466,59.27472,23.51266,2.51198,0.10676,0.086,91.92128,11.05998,11.32344,175.13146,8.22472,0.07004,70.5417,10.0518,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0,0.078,0,155.925,3511.082 -2069,16.33784,-0.05221,360.3517,11.96419,23.56283,23562.83,942.60703,205.24157,24.16415,5.77197,34.47543,59.58631,23.48608,2.51594,0.10668,0.07955,92.90074,11.05339,11.37162,175.52683,8.28311,0.06817,70.60635,10.06725,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0,0.074,0,155.925,3511.082 -2070,16.506,-0.0293,359.9521,12.0312,22.301,22301,936.6618,204.2572,23.7034,5.6948,34.3362,59.8979,23.4595,2.5199,0.1066,0.0731,93.8802,11.0468,11.4198,175.9222,8.3415,0.0663,70.671,10.0827,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0,0.07,0,155.925,3511.082 -2071,16.58346,-0.00196,357.94994,12.06433,21.57132,21571.32,930.29864,203.01075,23.32501,5.63556,34.23657,59.99146,23.40702,2.5018,0.10626,0.06951,94.1193,11.03777,11.45168,176.03719,8.38413,0.06477,70.60634,10.07405,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0,0.067,0,155.925,3511.082 -2072,16.66092,0.02538,355.94778,12.09746,20.84164,20841.64,923.93548,201.7643,22.94662,5.57632,34.13694,60.08502,23.35454,2.4837,0.10592,0.06592,94.3584,11.02874,11.48356,176.15218,8.42676,0.06324,70.54168,10.0654,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0,0.063,0,155.925,3511.082 -2073,16.73838,0.05272,353.94562,12.13059,20.11196,20111.96,917.57232,200.51785,22.56823,5.51708,34.03731,60.17858,23.30206,2.4656,0.10558,0.06233,94.5975,11.01971,11.51544,176.26717,8.46939,0.06171,70.47702,10.05675,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0,0.06,0,155.925,3511.082 -2074,16.81584,0.08006,351.94346,12.16372,19.38228,19382.28,911.20916,199.2714,22.18984,5.45784,33.93768,60.27214,23.24958,2.4475,0.10524,0.05874,94.8366,11.01068,11.54732,176.38216,8.51202,0.06018,70.41236,10.0481,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0,0.057,0,155.925,3511.082 -2075,16.8933,0.1074,349.9413,12.19685,18.6526,18652.6,904.846,198.02495,21.81145,5.3986,33.83805,60.3657,23.1971,2.4294,0.1049,0.05515,95.0757,11.00165,11.5792,176.49715,8.55465,0.05865,70.3477,10.03945,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0,0.054,0,155.925,3511.082 -2076,16.97076,0.13474,347.93914,12.22998,17.92292,17922.92,898.48284,196.7785,21.43306,5.33936,33.73842,60.45926,23.14462,2.4113,0.10456,0.05156,95.3148,10.99262,11.61108,176.61214,8.59728,0.05712,70.28304,10.0308,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0,0.052,0,155.925,3511.082 -2077,17.04822,0.16208,345.93698,12.26311,17.19324,17193.24,892.11968,195.53205,21.05467,5.28012,33.63879,60.55282,23.09214,2.3932,0.10422,0.04797,95.5539,10.98359,11.64296,176.72713,8.63991,0.05559,70.21838,10.02215,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0,0.049,0,155.925,3511.082 -2078,17.12568,0.18942,343.93482,12.29624,16.46356,16463.56,885.75652,194.2856,20.67628,5.22088,33.53916,60.64638,23.03966,2.3751,0.10388,0.04438,95.793,10.97456,11.67484,176.84212,8.68254,0.05406,70.15372,10.0135,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0,0.046,0,155.925,3511.082 -2079,17.20314,0.21676,341.93266,12.32937,15.73388,15733.88,879.39336,193.03915,20.29789,5.16164,33.43953,60.73994,22.98718,2.357,0.10354,0.04079,96.0321,10.96553,11.70672,176.95711,8.72517,0.05253,70.08906,10.00485,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0,0.044,0,155.925,3511.082 -2080,17.2806,0.2441,339.9305,12.3625,15.0042,15004.2,873.0302,191.7927,19.9195,5.1024,33.3399,60.8335,22.9347,2.3389,0.1032,0.0372,96.2712,10.9565,11.7386,177.0721,8.7678,0.051,70.0244,9.9962,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0,0.042,0,155.925,3511.082 -2081,16.98385,0.24394,332.93877,12.36222,14.76252,14762.52,869.00559,190.80261,19.72493,5.0587,33.27324,60.99709,22.83527,2.33197,0.1026,0.03348,95.76444,10.9361,11.74268,176.82146,8.79093,0.04968,69.79775,9.98408,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0,0.04,0,155.925,3511.082 -2082,16.6871,0.24378,325.94704,12.36194,14.52084,14520.84,864.98098,189.81252,19.53036,5.015,33.20658,61.16068,22.73584,2.32504,0.102,0.02976,95.25768,10.9157,11.74676,176.57082,8.81406,0.04836,69.5711,9.97196,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0,0.038,0,155.925,3511.082 -2083,16.39035,0.24362,318.95531,12.36166,14.27916,14279.16,860.95637,188.82243,19.33579,4.9713,33.13992,61.32427,22.63641,2.31811,0.1014,0.02604,94.75092,10.8953,11.75084,176.32018,8.83719,0.04704,69.34445,9.95984,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0,0.036,0,155.925,3511.082 -2084,16.0936,0.24346,311.96358,12.36138,14.03748,14037.48,856.93176,187.83234,19.14122,4.9276,33.07326,61.48786,22.53698,2.31118,0.1008,0.02232,94.24416,10.8749,11.75492,176.06954,8.86032,0.04572,69.1178,9.94772,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0,0.034,0,155.925,3511.082 -2085,15.79685,0.2433,304.97185,12.3611,13.7958,13795.8,852.90715,186.84225,18.94665,4.8839,33.0066,61.65145,22.43755,2.30425,0.1002,0.0186,93.7374,10.8545,11.759,175.8189,8.88345,0.0444,68.89115,9.9356,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0,0.032,0,155.925,3511.082 -2086,15.5001,0.24314,297.98012,12.36082,13.55412,13554.12,848.88254,185.85216,18.75208,4.8402,32.93994,61.81504,22.33812,2.29732,0.0996,0.01488,93.23064,10.8341,11.76308,175.56826,8.90658,0.04308,68.6645,9.92348,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0,0.031,0,155.925,3511.082 -2087,15.20335,0.24298,290.98839,12.36054,13.31244,13312.44,844.85793,184.86207,18.55751,4.7965,32.87328,61.97863,22.23869,2.29039,0.099,0.01116,92.72388,10.8137,11.76716,175.31762,8.92971,0.04176,68.43785,9.91136,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0,0.029,0,155.925,3511.082 -2088,14.9066,0.24282,283.99666,12.36026,13.07076,13070.76,840.83332,183.87198,18.36294,4.7528,32.80662,62.14222,22.13926,2.28346,0.0984,0.00744,92.21712,10.7933,11.77124,175.06698,8.95284,0.04044,68.2112,9.89924,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0,0.028,0,155.925,3511.082 -2089,14.60985,0.24266,277.00493,12.35998,12.82908,12829.08,836.80871,182.88189,18.16837,4.7091,32.73996,62.30581,22.03983,2.27653,0.0978,0.00372,91.71036,10.7729,11.77532,174.81634,8.97597,0.03912,67.98455,9.88712,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0,0.026,0,155.925,3511.082 -2090,14.3131,0.2425,270.0132,12.3597,12.5874,12587.4,832.7841,181.8918,17.9738,4.6654,32.6733,62.4694,21.9404,2.2696,0.0972,0,91.2036,10.7525,11.7794,174.5657,8.9991,0.0378,67.7579,9.875,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0,0.025,0,155.925,3511.082 -2091,14.25712,0.23639,267.60942,12.35073,12.37253,12372.53,828.72826,180.91739,17.78501,4.63501,32.62249,62.38664,21.82626,2.25281,0.09635,0,90.20593,10.7178,11.77139,174.15911,9.00912,0.03676,67.48827,9.83722,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0,0.024,0,155.925,3511.082 -2092,14.20114,0.23028,265.20564,12.34176,12.15766,12157.66,824.67242,179.94298,17.59622,4.60462,32.57168,62.30388,21.71212,2.23602,0.0955,0,89.20826,10.6831,11.76338,173.75252,9.01914,0.03572,67.21864,9.79944,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0,0.023,0,155.925,3511.082 -2093,14.14516,0.22417,262.80186,12.33279,11.94279,11942.79,820.61658,178.96857,17.40743,4.57423,32.52087,62.22112,21.59798,2.21923,0.09465,0,88.21059,10.6484,11.75537,173.34593,9.02916,0.03468,66.94901,9.76166,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0,0.022,0,155.925,3511.082 -2094,14.08918,0.21806,260.39808,12.32382,11.72792,11727.92,816.56074,177.99416,17.21864,4.54384,32.47006,62.13836,21.48384,2.20244,0.0938,0,87.21292,10.6137,11.74736,172.93934,9.03918,0.03364,66.67938,9.72388,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0,0.02,0,155.925,3511.082 -2095,14.0332,0.21195,257.9943,12.31485,11.51305,11513.05,812.5049,177.01975,17.02985,4.51345,32.41925,62.0556,21.3697,2.18565,0.09295,0,86.21525,10.579,11.73935,172.53275,9.0492,0.0326,66.40975,9.6861,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0,0.019,0,155.925,3511.082 -2096,13.97722,0.20584,255.59052,12.30588,11.29818,11298.18,808.44906,176.04534,16.84106,4.48306,32.36844,61.97284,21.25556,2.16886,0.0921,0,85.21758,10.5443,11.73134,172.12616,9.05922,0.03156,66.14012,9.64832,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0,0.018,0,155.925,3511.082 -2097,13.92124,0.19973,253.18674,12.29691,11.08331,11083.31,804.39322,175.07093,16.65227,4.45267,32.31763,61.89008,21.14142,2.15207,0.09125,0,84.21991,10.5096,11.72333,171.71957,9.06924,0.03052,65.87049,9.61054,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0,0.018,0,155.925,3511.082 -2098,13.86526,0.19362,250.78296,12.28794,10.86844,10868.44,800.33738,174.09652,16.46348,4.42228,32.26682,61.80732,21.02728,2.13528,0.0904,0,83.22224,10.4749,11.71532,171.31298,9.07926,0.02948,65.60086,9.57276,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0,0.017,0,155.925,3511.082 -2099,13.80928,0.18751,248.37918,12.27897,10.65357,10653.57,796.28154,173.12211,16.27469,4.39189,32.21601,61.72456,20.91314,2.11849,0.08955,0,82.22457,10.4402,11.70731,170.90639,9.08928,0.02844,65.33123,9.53498,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0,0.016,0,155.925,3511.082 -2100,13.7533,0.1814,245.9754,12.27,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,20.799,2.1017,0.0887,0,81.2269,10.4055,11.6993,170.4998,9.0993,0.0274,65.0616,9.4972,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0,0.015,0,155.925,3511.082 -2101,13.548236,0.174144,245.99464,12.203604,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,20.384732,2.06044,0.087056,0,81.228628,10.406792,11.6993,170.4998,9.081312,0.0274,65.0616,9.315568,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0,0.014,0,155.925,3511.082 -2102,13.343172,0.166888,246.01389,12.137208,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,19.970464,2.01918,0.085412,0,81.230356,10.408084,11.6993,170.4998,9.063324,0.0274,65.0616,9.133936,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0,0.014,0,155.925,3511.082 -2103,13.138108,0.159632,246.03313,12.070812,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,19.556196,1.97792,0.083768,0,81.232084,10.409376,11.6993,170.4998,9.045336,0.0274,65.0616,8.952304,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0,0.013,0,155.925,3511.082 -2104,12.933044,0.152376,246.05238,12.004416,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,19.141928,1.93666,0.082124,0,81.233812,10.410668,11.6993,170.4998,9.027348,0.0274,65.0616,8.770672,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0,0.012,0,155.925,3511.082 -2105,12.72798,0.14512,246.07162,11.93802,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,18.72766,1.8954,0.08048,0,81.23554,10.41196,11.6993,170.4998,9.00936,0.0274,65.0616,8.58904,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0,0.012,0,155.925,3511.082 -2106,12.522916,0.137864,246.09086,11.871624,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,18.313392,1.85414,0.078836,0,81.237268,10.413252,11.6993,170.4998,8.991372,0.0274,65.0616,8.407408,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0,0.011,0,155.925,3511.082 -2107,12.317852,0.130608,246.11011,11.805228,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,17.899124,1.81288,0.077192,0,81.238996,10.414544,11.6993,170.4998,8.973384,0.0274,65.0616,8.225776,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0,0.011,0,155.925,3511.082 -2108,12.112788,0.123352,246.12935,11.738832,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,17.484856,1.77162,0.075548,0,81.240724,10.415836,11.6993,170.4998,8.955396,0.0274,65.0616,8.044144,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0,0.01,0,155.925,3511.082 -2109,11.907724,0.116096,246.1486,11.672436,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,17.070588,1.73036,0.073904,0,81.242452,10.417128,11.6993,170.4998,8.937408,0.0274,65.0616,7.862512,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0,0.009,0,155.925,3511.082 -2110,11.70266,0.10884,246.16784,11.60604,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,16.65632,1.6891,0.07226,0,81.24418,10.41842,11.6993,170.4998,8.91942,0.0274,65.0616,7.68088,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0,0.009,0,155.925,3511.082 -2111,11.497596,0.101584,246.18708,11.539644,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,16.242052,1.64784,0.070616,0,81.245908,10.419712,11.6993,170.4998,8.901432,0.0274,65.0616,7.499248,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0,0.009,0,155.925,3511.082 -2112,11.292532,0.094328,246.20633,11.473248,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,15.827784,1.60658,0.068972,0,81.247636,10.421004,11.6993,170.4998,8.883444,0.0274,65.0616,7.317616,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0,0.008,0,155.925,3511.082 -2113,11.087468,0.087072,246.22557,11.406852,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,15.413516,1.56532,0.067328,0,81.249364,10.422296,11.6993,170.4998,8.865456,0.0274,65.0616,7.135984,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0,0.008,0,155.925,3511.082 -2114,10.882404,0.079816,246.24482,11.340456,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,14.999248,1.52406,0.065684,0,81.251092,10.423588,11.6993,170.4998,8.847468,0.0274,65.0616,6.954352,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0,0.007,0,155.925,3511.082 -2115,10.67734,0.07256,246.26406,11.27406,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,14.58498,1.4828,0.06404,0,81.25282,10.42488,11.6993,170.4998,8.82948,0.0274,65.0616,6.77272,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0,0.007,0,155.925,3511.082 -2116,10.472276,0.065304,246.2833,11.207664,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,14.170712,1.44154,0.062396,0,81.254548,10.426172,11.6993,170.4998,8.811492,0.0274,65.0616,6.591088,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0,0.007,0,155.925,3511.082 -2117,10.267212,0.058048,246.30255,11.141268,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,13.756444,1.40028,0.060752,0,81.256276,10.427464,11.6993,170.4998,8.793504,0.0274,65.0616,6.409456,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0,0.006,0,155.925,3511.082 -2118,10.062148,0.050792,246.32179,11.074872,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,13.342176,1.35902,0.059108,0,81.258004,10.428756,11.6993,170.4998,8.775516,0.0274,65.0616,6.227824,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0,0.006,0,155.925,3511.082 -2119,9.857084,0.043536,246.34104,11.008476,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,12.927908,1.31776,0.057464,0,81.259732,10.430048,11.6993,170.4998,8.757528,0.0274,65.0616,6.046192,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0,0.006,0,155.925,3511.082 -2120,9.65202,0.03628,246.36028,10.94208,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,12.51364,1.2765,0.05582,0,81.26146,10.43134,11.6993,170.4998,8.73954,0.0274,65.0616,5.86456,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0,0.005,0,155.925,3511.082 -2121,9.446956,0.029024,246.37952,10.875684,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,12.099372,1.23524,0.054176,0,81.263188,10.432632,11.6993,170.4998,8.721552,0.0274,65.0616,5.682928,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0,0.005,0,155.925,3511.082 -2122,9.241892,0.021768,246.39877,10.809288,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,11.685104,1.19398,0.052532,0,81.264916,10.433924,11.6993,170.4998,8.703564,0.0274,65.0616,5.501296,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0,0.005,0,155.925,3511.082 -2123,9.036828,0.014512,246.41801,10.742892,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,11.270836,1.15272,0.050888,0,81.266644,10.435216,11.6993,170.4998,8.685576,0.0274,65.0616,5.319664,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0,0.005,0,155.925,3511.082 -2124,8.831764,0.007256,246.43726,10.676496,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,10.856568,1.11146,0.049244,0,81.268372,10.436508,11.6993,170.4998,8.667588,0.0274,65.0616,5.138032,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0,0.004,0,155.925,3511.082 -2125,8.6267,0,246.4565,10.6101,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,10.4423,1.0702,0.0476,0,81.2701,10.4378,11.6993,170.4998,8.6496,0.0274,65.0616,4.9564,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0,0.004,0,155.925,3511.082 -2126,8.4216348,0,246.47573,10.543696,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,10.02803,1.0289391,0.045952174,0,81.271826,10.4391,11.6993,170.4998,8.6316174,0.0274,65.0616,4.7747739,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0,0.004,0,155.925,3511.082 -2127,8.2165696,0,246.49496,10.477291,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,9.6137609,0.98767826,0.044304348,0,81.273552,10.4404,11.6993,170.4998,8.6136348,0.0274,65.0616,4.5931478,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0,0.004,0,155.925,3511.082 -2128,8.0115043,0,246.51419,10.410887,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,9.1994913,0.94641739,0.042656522,0,81.275278,10.4417,11.6993,170.4998,8.5956522,0.0274,65.0616,4.4115217,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0,0.004,0,155.925,3511.082 -2129,7.8064391,0,246.53342,10.344483,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,8.7852217,0.90515652,0.041008696,0,81.277004,10.443,11.6993,170.4998,8.5776696,0.0274,65.0616,4.2298957,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0,0.003,0,155.925,3511.082 -2130,7.6013739,0,246.55265,10.278078,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,8.3709522,0.86389565,0.03936087,0,81.27873,10.4443,11.6993,170.4998,8.559687,0.0274,65.0616,4.0482696,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0,0.003,0,155.925,3511.082 -2131,7.3963087,0,246.57188,10.211674,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,7.9566826,0.82263478,0.037713043,0,81.280457,10.4456,11.6993,170.4998,8.5417043,0.0274,65.0616,3.8666435,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0,0.003,0,155.925,3511.082 -2132,7.1912435,0,246.59111,10.14527,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,7.542413,0.78137391,0.036065217,0,81.282183,10.4469,11.6993,170.4998,8.5237217,0.0274,65.0616,3.6850174,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0,0.003,0,155.925,3511.082 -2133,6.9861783,0,246.61034,10.078865,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,7.1281435,0.74011304,0.034417391,0,81.283909,10.4482,11.6993,170.4998,8.5057391,0.0274,65.0616,3.5033913,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0,0.003,0,155.925,3511.082 -2134,6.781113,0,246.62957,10.012461,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,6.7138739,0.69885217,0.032769565,0,81.285635,10.4495,11.6993,170.4998,8.4877565,0.0274,65.0616,3.3217652,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0,0.003,0,155.925,3511.082 -2135,6.5760478,0,246.6488,9.9460565,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,6.2996043,0.6575913,0.031121739,0,81.287361,10.4508,11.6993,170.4998,8.4697739,0.0274,65.0616,3.1401391,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0,0.002,0,155.925,3511.082 -2136,6.3709826,0,246.66803,9.8796522,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,5.8853348,0.61633043,0.029473913,0,81.289087,10.4521,11.6993,170.4998,8.4517913,0.0274,65.0616,2.958513,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0,0.002,0,155.925,3511.082 -2137,6.1659174,0,246.68727,9.8132478,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,5.4710652,0.57506957,0.027826087,0,81.290813,10.4534,11.6993,170.4998,8.4338087,0.0274,65.0616,2.776887,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0,0.002,0,155.925,3511.082 -2138,5.9608522,0,246.7065,9.7468435,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,5.0567957,0.5338087,0.026178261,0,81.292539,10.4547,11.6993,170.4998,8.4158261,0.0274,65.0616,2.5952609,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0,0.002,0,155.925,3511.082 -2139,5.755787,0,246.72573,9.6804391,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,4.6425261,0.49254783,0.024530435,0,81.294265,10.456,11.6993,170.4998,8.3978435,0.0274,65.0616,2.4136348,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0,0.002,0,155.925,3511.082 -2140,5.5507217,0,246.74496,9.6140348,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,4.2282565,0.45128696,0.022882609,0,81.295991,10.4573,11.6993,170.4998,8.3798609,0.0274,65.0616,2.2320087,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0,0.002,0,155.925,3511.082 -2141,5.3456565,0,246.76419,9.5476304,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,3.813987,0.41002609,0.021234783,0,81.297717,10.4586,11.6993,170.4998,8.3618783,0.0274,65.0616,2.0503826,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0,0.002,0,155.925,3511.082 -2142,5.1405913,0,246.78342,9.4812261,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,3.3997174,0.36876522,0.019586957,0,81.299443,10.4599,11.6993,170.4998,8.3438957,0.0274,65.0616,1.8687565,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0,0.002,0,155.925,3511.082 -2143,4.9355261,0,246.80265,9.4148217,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,2.9854478,0.32750435,0.01793913,0,81.30117,10.4612,11.6993,170.4998,8.325913,0.0274,65.0616,1.6871304,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0,0.002,0,155.925,3511.082 -2144,4.7304609,0,246.82188,9.3484174,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,2.5711783,0.28624348,0.016291304,0,81.302896,10.4625,11.6993,170.4998,8.3079304,0.0274,65.0616,1.5055043,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0,0.002,0,155.925,3511.082 -2145,4.5253957,0,246.84111,9.282013,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,2.1569087,0.24498261,0.014643478,0,81.304622,10.4638,11.6993,170.4998,8.2899478,0.0274,65.0616,1.3238783,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0,0.001,0,155.925,3511.082 -2146,4.3203304,0,246.86034,9.2156087,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,1.7426391,0.20372174,0.012995652,0,81.306348,10.4651,11.6993,170.4998,8.2719652,0.0274,65.0616,1.1422522,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0,0.001,0,155.925,3511.082 -2147,4.1152652,0,246.87957,9.1492043,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,1.3283696,0.16246087,0.011347826,0,81.308074,10.4664,11.6993,170.4998,8.2539826,0.0274,65.0616,0.96062609,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0,0.001,0,155.925,3511.082 -2148,3.9102,0,246.8988,9.0828,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.9141,0.1212,0.0097,0,81.3098,10.4677,11.6993,170.4998,8.236,0.0274,65.0616,0.779,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0,0.001,0,155.925,3511.082 -2149,3.5678,0,247.6444,9.0373,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0819,0.037,0.0058,0.8262,81.3751,10.5132,11.7206,171.2635,8.1553,0.1092,65.1637,0.3953,5.888,26.472,4.838,1.2,0.17,0.154,0,0.058,0.306,0.04,0.004,0,0.175,0,155.922,3511.082 -2150,3.5062,0,247.7303,9.0391,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0819,0.037,0.0058,0.8264,81.3904,10.5152,11.7228,171.2955,8.157,0.1092,65.176,0.3953,5.888,26.473,4.838,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.949,3511.082 -2151,3.4375,0,247.7774,9.0405,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8264,81.3986,10.5162,11.7239,171.3129,8.1577,0.1092,65.1826,0.3953,5.889,26.476,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.957,3511.082 -2152,3.3717,0,247.8331,9.0411,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8265,81.4085,10.5175,11.7253,171.3336,8.1585,0.1092,65.1904,0.3953,5.889,26.478,4.839,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.964,3511.082 -2153,3.3114,0,247.8896,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8267,81.4185,10.5187,11.7267,171.3547,8.1597,0.1092,65.1983,0.3953,5.89,26.481,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.973,3511.082 -2154,3.2545,0,247.9452,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8268,81.4283,10.52,11.7282,171.3754,8.1606,0.1092,65.2063,0.3953,5.891,26.484,4.84,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.983,3511.082 -2155,3.2005,0,247.9997,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8268,81.4378,10.5215,11.7296,171.3954,8.1617,0.1092,65.2139,0.3953,5.891,26.488,4.841,1.2,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,155.994,3511.082 -2156,3.15264,0,248.05092,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8269,81.44686,10.52262,11.7309,171.41446,8.16262,0.10922,65.22116,0.3953,5.892,26.491,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.005,3511.082 -2157,3.10478,0,248.10214,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.827,81.45592,10.52374,11.7322,171.43352,8.16354,0.10924,65.22842,0.3953,5.893,26.495,4.842,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.018,3511.082 -2158,3.05692,0,248.15336,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8271,81.46498,10.52486,11.7335,171.45258,8.16446,0.10926,65.23568,0.3953,5.894,26.499,4.843,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.03,3511.082 -2159,3.00906,0,248.20458,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8272,81.47404,10.52598,11.7348,171.47164,8.16538,0.10928,65.24294,0.3953,5.895,26.504,4.844,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.044,3511.082 -2160,2.9612,0,248.2558,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8273,81.4831,10.5271,11.7361,171.4907,8.1663,0.1093,65.2502,0.3953,5.896,26.508,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.057,3511.082 -2161,2.92104,0,248.30274,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82738,81.49138,10.5282,11.7373,171.50814,8.16712,0.10932,65.25682,0.3953,5.897,26.512,4.845,1.201,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.071,3511.082 -2162,2.88088,0,248.34968,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82746,81.49966,10.5293,11.7385,171.52558,8.16794,0.10934,65.26344,0.3953,5.898,26.517,4.846,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.084,3511.082 -2163,2.84072,0,248.39662,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82754,81.50794,10.5304,11.7397,171.54302,8.16876,0.10936,65.27006,0.3953,5.899,26.521,4.847,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.098,3511.082 -2164,2.80056,0,248.44356,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82762,81.51622,10.5315,11.7409,171.56046,8.16958,0.10938,65.27668,0.3953,5.9,26.525,4.848,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.112,3511.082 -2165,2.7604,0,248.4905,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.8277,81.5245,10.5326,11.7421,171.5779,8.1704,0.1094,65.2833,0.3953,5.901,26.53,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.127,3511.082 -2166,2.7258,0,248.53416,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82776,81.53222,10.53358,11.74322,171.59414,8.17116,0.10942,65.28948,0.3953,5.902,26.534,4.849,1.202,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.141,3511.082 -2167,2.6912,0,248.57782,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82782,81.53994,10.53456,11.74434,171.61038,8.17192,0.10944,65.29566,0.3953,5.903,26.539,4.85,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.155,3511.082 -2168,2.6566,0,248.62148,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82788,81.54766,10.53554,11.74546,171.62662,8.17268,0.10946,65.30184,0.3953,5.904,26.544,4.851,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.169,3511.082 -2169,2.622,0,248.66514,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.82794,81.55538,10.53652,11.74658,171.64286,8.17344,0.10948,65.30802,0.3953,5.905,26.548,4.852,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.183,3511.082 -2170,2.5874,0,248.7088,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082,0.037,0.0058,0.828,81.5631,10.5375,11.7477,171.6591,8.1742,0.1095,65.3142,0.3953,5.906,26.553,4.853,1.203,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.198,3511.082 -2171,2.55704,0,248.74978,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08202,0.037,0.0058,0.8281,81.57034,10.53844,11.74872,171.67432,8.1749,0.1095,65.32,0.3953,5.907,26.557,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.212,3511.082 -2172,2.52668,0,248.79076,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08204,0.037,0.0058,0.8282,81.57758,10.53938,11.74974,171.68954,8.1756,0.1095,65.3258,0.3953,5.908,26.562,4.854,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.226,3511.082 -2173,2.49632,0,248.83174,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08206,0.037,0.0058,0.8283,81.58482,10.54032,11.75076,171.70476,8.1763,0.1095,65.3316,0.3953,5.909,26.566,4.855,1.204,0.17,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.24,3511.082 -2174,2.46596,0,248.87272,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08208,0.037,0.0058,0.8284,81.59206,10.54126,11.75178,171.71998,8.177,0.1095,65.3374,0.3953,5.91,26.571,4.856,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.254,3511.082 -2175,2.4356,0,248.9137,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.8285,81.5993,10.5422,11.7528,171.7352,8.1777,0.1095,65.3432,0.3953,5.911,26.575,4.857,1.204,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.175,0,156.268,3511.082 -2176,2.40884,0,248.95232,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82858,81.6061,10.54306,11.75378,171.74956,8.17838,0.10952,65.34866,0.3953,5.912,26.58,4.858,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.282,3511.082 -2177,2.38208,0,248.99094,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82866,81.6129,10.54392,11.75476,171.76392,8.17906,0.10954,65.35412,0.3953,5.913,26.584,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.296,3511.082 -2178,2.35532,0,249.02956,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82874,81.6197,10.54478,11.75574,171.77828,8.17974,0.10956,65.35958,0.3953,5.914,26.588,4.859,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.31,3511.082 -2179,2.32856,0,249.06818,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82882,81.6265,10.54564,11.75672,171.79264,8.18042,0.10958,65.36504,0.3953,5.915,26.593,4.86,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.324,3511.082 -2180,2.3018,0,249.1068,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.8289,81.6333,10.5465,11.7577,171.807,8.1811,0.1096,65.3705,0.3953,5.916,26.597,4.861,1.205,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.338,3511.082 -2181,2.27802,0,249.14344,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82894,81.63978,10.54736,11.75862,171.82058,8.18178,0.1096,65.37568,0.3953,5.917,26.602,4.862,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.351,3511.082 -2182,2.25424,0,249.18008,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82898,81.64626,10.54822,11.75954,171.83416,8.18246,0.1096,65.38086,0.3953,5.918,26.606,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.365,3511.082 -2183,2.23046,0,249.21672,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82902,81.65274,10.54908,11.76046,171.84774,8.18314,0.1096,65.38604,0.3953,5.919,26.61,4.863,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.379,3511.082 -2184,2.20668,0,249.25336,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.82906,81.65922,10.54994,11.76138,171.86132,8.18382,0.1096,65.39122,0.3953,5.92,26.615,4.864,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.392,3511.082 -2185,2.1829,0,249.29,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0821,0.037,0.0058,0.8291,81.6657,10.5508,11.7623,171.8749,8.1845,0.1096,65.3964,0.3953,5.921,26.619,4.865,1.206,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.406,3511.082 -2186,2.1617,0,249.32488,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08212,0.037,0.0058,0.82918,81.67186,10.55156,11.7632,171.88788,8.18512,0.1096,65.40132,0.3953,5.922,26.623,4.866,1.207,0.171,0.154,0,0.058,0.306,0.041,0.004,0,0.176,0,156.419,3511.082 -2187,2.1405,0,249.35976,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08214,0.037,0.0058,0.82926,81.67802,10.55232,11.7641,171.90086,8.18574,0.1096,65.40624,0.3953,5.923,26.627,4.866,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.432,3511.082 -2188,2.1193,0,249.39464,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08216,0.037,0.0058,0.82934,81.68418,10.55308,11.765,171.91384,8.18636,0.1096,65.41116,0.3953,5.924,26.632,4.867,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.446,3511.082 -2189,2.0981,0,249.42952,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08218,0.037,0.0058,0.82942,81.69034,10.55384,11.7659,171.92682,8.18698,0.1096,65.41608,0.3953,5.924,26.636,4.868,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.459,3511.082 -2190,2.0769,0,249.4644,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8295,81.6965,10.5546,11.7668,171.9398,8.1876,0.1096,65.421,0.3953,5.925,26.64,4.869,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.472,3511.082 -2191,2.05792,0,249.49772,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82954,81.7024,10.55538,11.76764,171.9522,8.18818,0.1096,65.42574,0.3953,5.926,26.644,4.87,1.207,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.485,3511.082 -2192,2.03894,0,249.53104,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82958,81.7083,10.55616,11.76848,171.9646,8.18876,0.1096,65.43048,0.3953,5.927,26.648,4.87,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.498,3511.082 -2193,2.01996,0,249.56436,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82962,81.7142,10.55694,11.76932,171.977,8.18934,0.1096,65.43522,0.3953,5.928,26.653,4.871,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.511,3511.082 -2194,2.00098,0,249.59768,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82966,81.7201,10.55772,11.77016,171.9894,8.18992,0.1096,65.43996,0.3953,5.929,26.657,4.872,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.524,3511.082 -2195,1.982,0,249.631,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8297,81.726,10.5585,11.771,172.0018,8.1905,0.1096,65.4447,0.3953,5.93,26.661,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.537,3511.082 -2196,1.96498,0,249.66292,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82976,81.7316,10.55924,11.77184,172.01368,8.19108,0.1096,65.44922,0.3953,5.931,26.665,4.873,1.208,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.549,3511.082 -2197,1.94796,0,249.69484,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82982,81.7372,10.55998,11.77268,172.02556,8.19166,0.1096,65.45374,0.3953,5.932,26.669,4.874,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.562,3511.082 -2198,1.93094,0,249.72676,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82988,81.7428,10.56072,11.77352,172.03744,8.19224,0.1096,65.45826,0.3953,5.933,26.673,4.875,1.209,0.171,0.155,0,0.058,0.306,0.041,0.004,0,0.176,0,156.575,3511.082 -2199,1.91392,0,249.75868,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.82994,81.7484,10.56146,11.77436,172.04932,8.19282,0.1096,65.46278,0.3953,5.934,26.677,4.875,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.587,3511.082 -2200,1.8969,0,249.7906,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83,81.754,10.5622,11.7752,172.0612,8.1934,0.1096,65.4673,0.3953,5.934,26.681,4.876,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.6,3511.082 -2201,1.88235,0,249.82068,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83005,81.75932,10.56289,11.77597,172.07236,8.19394,0.10961,65.47155,0.3953,5.935,26.685,4.877,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.612,3511.082 -2202,1.8678,0,249.85076,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8301,81.76464,10.56358,11.77674,172.08352,8.19448,0.10962,65.4758,0.3953,5.936,26.689,4.878,1.209,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.624,3511.082 -2203,1.85325,0,249.88084,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83015,81.76996,10.56427,11.77751,172.09468,8.19502,0.10963,65.48005,0.3953,5.937,26.693,4.878,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.637,3511.082 -2204,1.8387,0,249.91092,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8302,81.77528,10.56496,11.77828,172.10584,8.19556,0.10964,65.4843,0.3953,5.938,26.696,4.879,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.649,3511.082 -2205,1.82415,0,249.941,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83025,81.7806,10.56565,11.77905,172.117,8.1961,0.10965,65.48855,0.3953,5.939,26.7,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.661,3511.082 -2206,1.8096,0,249.97108,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8303,81.78592,10.56634,11.77982,172.12816,8.19664,0.10966,65.4928,0.3953,5.94,26.704,4.88,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.673,3511.082 -2207,1.79505,0,250.00116,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83035,81.79124,10.56703,11.78059,172.13932,8.19718,0.10967,65.49705,0.3953,5.94,26.708,4.881,1.21,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.685,3511.082 -2208,1.7805,0,250.03124,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8304,81.79656,10.56772,11.78136,172.15048,8.19772,0.10968,65.5013,0.3953,5.941,26.712,4.882,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.697,3511.082 -2209,1.76595,0,250.06132,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.83045,81.80188,10.56841,11.78213,172.16164,8.19826,0.10969,65.50555,0.3953,5.942,26.716,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.709,3511.082 -2210,1.7514,0,250.0914,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0822,0.037,0.0058,0.8305,81.8072,10.5691,11.7829,172.1728,8.1988,0.1097,65.5098,0.3953,5.943,26.719,4.883,1.211,0.171,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.721,3511.082 -2211,1.73953,0,250.11931,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08222,0.037,0.0058,0.83055,81.81212,10.56974,11.7836,172.18317,8.19928,0.1097,65.51374,0.3953,5.944,26.723,4.884,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.733,3511.082 -2212,1.72766,0,250.14722,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08224,0.037,0.0058,0.8306,81.81704,10.57038,11.7843,172.19354,8.19976,0.1097,65.51768,0.3953,5.945,26.727,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.176,0,156.744,3511.082 -2213,1.71579,0,250.17513,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08226,0.037,0.0058,0.83065,81.82196,10.57102,11.785,172.20391,8.20024,0.1097,65.52162,0.3953,5.946,26.731,4.885,1.211,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.756,3511.082 -2214,1.70392,0,250.20304,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08228,0.037,0.0058,0.8307,81.82688,10.57166,11.7857,172.21428,8.20072,0.1097,65.52556,0.3953,5.946,26.734,4.886,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.768,3511.082 -2215,1.69205,0,250.23095,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0823,0.037,0.0058,0.83075,81.8318,10.5723,11.7864,172.22465,8.2012,0.1097,65.5295,0.3953,5.947,26.738,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.779,3511.082 -2216,1.68018,0,250.25886,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08232,0.037,0.0058,0.8308,81.83672,10.57294,11.7871,172.23502,8.20168,0.1097,65.53344,0.3953,5.948,26.742,4.887,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.791,3511.082 -2217,1.66831,0,250.28677,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08234,0.037,0.0058,0.83085,81.84164,10.57358,11.7878,172.24539,8.20216,0.1097,65.53738,0.3953,5.949,26.745,4.888,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.802,3511.082 -2218,1.65644,0,250.31468,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08236,0.037,0.0058,0.8309,81.84656,10.57422,11.7885,172.25576,8.20264,0.1097,65.54132,0.3953,5.95,26.749,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.813,3511.082 -2219,1.64457,0,250.34259,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08238,0.037,0.0058,0.83095,81.85148,10.57486,11.7892,172.26613,8.20312,0.1097,65.54526,0.3953,5.95,26.752,4.889,1.212,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.825,3511.082 -2220,1.6327,0,250.3705,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.831,81.8564,10.5755,11.7899,172.2765,8.2036,0.1097,65.5492,0.3953,5.951,26.756,4.89,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.836,3511.082 -2221,1.62294,0,250.3966,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83106,81.86101,10.57608,11.79056,172.2862,8.20406,0.10971,65.55289,0.3953,5.952,26.76,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.847,3511.082 -2222,1.61318,0,250.4227,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83112,81.86562,10.57666,11.79122,172.2959,8.20452,0.10972,65.55658,0.3953,5.953,26.763,4.891,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.858,3511.082 -2223,1.60342,0,250.4488,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83118,81.87023,10.57724,11.79188,172.3056,8.20498,0.10973,65.56027,0.3953,5.954,26.767,4.892,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.869,3511.082 -2224,1.59366,0,250.4749,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83124,81.87484,10.57782,11.79254,172.3153,8.20544,0.10974,65.56396,0.3953,5.954,26.77,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.88,3511.082 -2225,1.5839,0,250.501,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.8313,81.87945,10.5784,11.7932,172.325,8.2059,0.10975,65.56765,0.3953,5.955,26.774,4.893,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.891,3511.082 -2226,1.57414,0,250.5271,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83136,81.88406,10.57898,11.79386,172.3347,8.20636,0.10976,65.57134,0.3953,5.956,26.777,4.894,1.213,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.902,3511.082 -2227,1.56438,0,250.5532,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83142,81.88867,10.57956,11.79452,172.3444,8.20682,0.10977,65.57503,0.3953,5.957,26.781,4.894,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.913,3511.082 -2228,1.55462,0,250.5793,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83148,81.89328,10.58014,11.79518,172.3541,8.20728,0.10978,65.57872,0.3953,5.957,26.784,4.895,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.924,3511.082 -2229,1.54486,0,250.6054,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83154,81.89789,10.58072,11.79584,172.3638,8.20774,0.10979,65.58241,0.3953,5.958,26.788,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.935,3511.082 -2230,1.5351,0,250.6315,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.8316,81.9025,10.5813,11.7965,172.3735,8.2082,0.1098,65.5861,0.3953,5.959,26.791,4.896,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.945,3511.082 -2231,1.52697,0,250.65601,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83164,81.90685,10.58188,11.79712,172.38261,8.20864,0.10981,65.58957,0.3953,5.96,26.794,4.897,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.956,3511.082 -2232,1.51884,0,250.68052,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83168,81.9112,10.58246,11.79774,172.39172,8.20908,0.10982,65.59304,0.3953,5.96,26.798,4.898,1.214,0.172,0.155,0,0.058,0.307,0.041,0.004,0,0.177,0,156.967,3511.082 -2233,1.51071,0,250.70503,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83172,81.91555,10.58304,11.79836,172.40083,8.20952,0.10983,65.59651,0.3953,5.961,26.801,4.898,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.977,3511.082 -2234,1.50258,0,250.72954,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83176,81.9199,10.58362,11.79898,172.40994,8.20996,0.10984,65.59998,0.3953,5.962,26.804,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.988,3511.082 -2235,1.49445,0,250.75405,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.8318,81.92425,10.5842,11.7996,172.41905,8.2104,0.10985,65.60345,0.3953,5.963,26.808,4.899,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,156.998,3511.082 -2236,1.48632,0,250.77856,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83184,81.9286,10.58478,11.80022,172.42816,8.21084,0.10986,65.60692,0.3953,5.963,26.811,4.9,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.008,3511.082 -2237,1.47819,0,250.80307,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83188,81.93295,10.58536,11.80084,172.43727,8.21128,0.10987,65.61039,0.3953,5.964,26.814,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.019,3511.082 -2238,1.47006,0,250.82758,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83192,81.9373,10.58594,11.80146,172.44638,8.21172,0.10988,65.61386,0.3953,5.965,26.818,4.901,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.029,3511.082 -2239,1.46193,0,250.85209,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.83196,81.94165,10.58652,11.80208,172.45549,8.21216,0.10989,65.61733,0.3953,5.966,26.821,4.902,1.215,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.039,3511.082 -2240,1.4538,0,250.8766,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0824,0.037,0.0058,0.832,81.946,10.5871,11.8027,172.4646,8.2126,0.1099,65.6208,0.3953,5.966,26.824,4.902,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.05,3511.082 -2241,1.44702,0,250.89972,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08242,0.037,0.0058,0.83203,81.95006,10.58761,11.80329,172.4732,8.21301,0.10991,65.62406,0.3953,5.967,26.827,4.903,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.06,3511.082 -2242,1.44024,0,250.92284,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08244,0.037,0.0058,0.83206,81.95412,10.58812,11.80388,172.4818,8.21342,0.10992,65.62732,0.3953,5.968,26.831,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.07,3511.082 -2243,1.43346,0,250.94596,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08246,0.037,0.0058,0.83209,81.95818,10.58863,11.80447,172.4904,8.21383,0.10993,65.63058,0.3953,5.968,26.834,4.904,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.08,3511.082 -2244,1.42668,0,250.96908,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08248,0.037,0.0058,0.83212,81.96224,10.58914,11.80506,172.499,8.21424,0.10994,65.63384,0.3953,5.969,26.837,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.09,3511.082 -2245,1.4199,0,250.9922,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0825,0.037,0.0058,0.83215,81.9663,10.58965,11.80565,172.5076,8.21465,0.10995,65.6371,0.3953,5.97,26.84,4.905,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.1,3511.082 -2246,1.41312,0,251.01532,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08252,0.037,0.0058,0.83218,81.97036,10.59016,11.80624,172.5162,8.21506,0.10996,65.64036,0.3953,5.971,26.843,4.906,1.216,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.11,3511.082 -2247,1.40634,0,251.03844,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08254,0.037,0.0058,0.83221,81.97442,10.59067,11.80683,172.5248,8.21547,0.10997,65.64362,0.3953,5.971,26.847,4.906,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.12,3511.082 -2248,1.39956,0,251.06156,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08256,0.037,0.0058,0.83224,81.97848,10.59118,11.80742,172.5334,8.21588,0.10998,65.64688,0.3953,5.972,26.85,4.907,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.13,3511.082 -2249,1.39278,0,251.08468,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08258,0.037,0.0058,0.83227,81.98254,10.59169,11.80801,172.542,8.21629,0.10999,65.65014,0.3953,5.973,26.853,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.139,3511.082 -2250,1.386,0,251.1078,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8323,81.9866,10.5922,11.8086,172.5506,8.2167,0.11,65.6534,0.3953,5.973,26.856,4.908,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.149,3511.082 -2251,1.380872,0,251.12888,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83234,81.99032,10.592676,11.809136,172.55843,8.217072,0.11,65.656376,0.3953,5.974,26.859,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.159,3511.082 -2252,1.375744,0,251.14995,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83238,81.99404,10.593152,11.809672,172.56626,8.217444,0.11,65.659352,0.3953,5.975,26.862,4.909,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.168,3511.082 -2253,1.370616,0,251.17103,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83242,81.99776,10.593628,11.810208,172.57408,8.217816,0.11,65.662328,0.3953,5.975,26.865,4.91,1.217,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.178,3511.082 -2254,1.365488,0,251.1921,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83246,82.00148,10.594104,11.810744,172.58191,8.218188,0.11,65.665304,0.3953,5.976,26.868,4.91,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.188,3511.082 -2255,1.36036,0,251.21318,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8325,82.0052,10.59458,11.81128,172.58974,8.21856,0.11,65.66828,0.3953,5.977,26.871,4.911,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.197,3511.082 -2256,1.355232,0,251.23426,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83254,82.00892,10.595056,11.811816,172.59757,8.218932,0.11,65.671256,0.3953,5.977,26.874,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.207,3511.082 -2257,1.350104,0,251.25533,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83258,82.01264,10.595532,11.812352,172.6054,8.219304,0.11,65.674232,0.3953,5.978,26.877,4.912,1.218,0.172,0.156,0,0.058,0.307,0.041,0.004,0,0.177,0,157.216,3511.082 -2258,1.344976,0,251.27641,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83262,82.01636,10.596008,11.812888,172.61322,8.219676,0.11,65.677208,0.3953,5.979,26.88,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.226,3511.082 -2259,1.339848,0,251.29748,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83266,82.02008,10.596484,11.813424,172.62105,8.220048,0.11,65.680184,0.3953,5.979,26.883,4.913,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.235,3511.082 -2260,1.33472,0,251.31856,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8327,82.0238,10.59696,11.81396,172.62888,8.22042,0.11,65.68316,0.3953,5.98,26.886,4.914,1.218,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.244,3511.082 -2261,1.329592,0,251.33964,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83274,82.02752,10.597436,11.814496,172.63671,8.220792,0.11,65.686136,0.3953,5.981,26.889,4.914,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.253,3511.082 -2262,1.324464,0,251.36071,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83278,82.03124,10.597912,11.815032,172.64454,8.221164,0.11,65.689112,0.3953,5.981,26.892,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.263,3511.082 -2263,1.319336,0,251.38179,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83282,82.03496,10.598388,11.815568,172.65236,8.221536,0.11,65.692088,0.3953,5.982,26.895,4.915,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.272,3511.082 -2264,1.314208,0,251.40286,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83286,82.03868,10.598864,11.816104,172.66019,8.221908,0.11,65.695064,0.3953,5.983,26.898,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.281,3511.082 -2265,1.30908,0,251.42394,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8329,82.0424,10.59934,11.81664,172.66802,8.22228,0.11,65.69804,0.3953,5.983,26.901,4.916,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.29,3511.082 -2266,1.303952,0,251.44502,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83294,82.04612,10.599816,11.817176,172.67585,8.222652,0.11,65.701016,0.3953,5.984,26.904,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.299,3511.082 -2267,1.298824,0,251.46609,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83298,82.04984,10.600292,11.817712,172.68368,8.223024,0.11,65.703992,0.3953,5.985,26.907,4.917,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.308,3511.082 -2268,1.293696,0,251.48717,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83302,82.05356,10.600768,11.818248,172.6915,8.223396,0.11,65.706968,0.3953,5.985,26.91,4.918,1.219,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.317,3511.082 -2269,1.288568,0,251.50824,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83306,82.05728,10.601244,11.818784,172.69933,8.223768,0.11,65.709944,0.3953,5.986,26.912,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.326,3511.082 -2270,1.28344,0,251.52932,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8331,82.061,10.60172,11.81932,172.70716,8.22414,0.11,65.71292,0.3953,5.987,26.915,4.919,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.335,3511.082 -2271,1.278312,0,251.5504,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83314,82.06472,10.602196,11.819856,172.71499,8.224512,0.11,65.715896,0.3953,5.987,26.918,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.344,3511.082 -2272,1.273184,0,251.57147,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83318,82.06844,10.602672,11.820392,172.72282,8.224884,0.11,65.718872,0.3953,5.988,26.921,4.92,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.353,3511.082 -2273,1.268056,0,251.59255,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83322,82.07216,10.603148,11.820928,172.73064,8.225256,0.11,65.721848,0.3953,5.988,26.924,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.362,3511.082 -2274,1.262928,0,251.61362,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.83326,82.07588,10.603624,11.821464,172.73847,8.225628,0.11,65.724824,0.3953,5.989,26.927,4.921,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.371,3511.082 -2275,1.2578,0,251.6347,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0826,0.037,0.0058,0.8333,82.0796,10.6041,11.822,172.7463,8.226,0.11,65.7278,0.3953,5.99,26.929,4.922,1.22,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.379,3511.082 -2276,1.254232,0,251.65339,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082604,0.037,0.0058,0.833336,82.082904,10.604528,11.822476,172.75325,8.226328,0.110008,65.730448,0.3953,5.99,26.932,4.922,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.388,3511.082 -2277,1.250664,0,251.67208,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082608,0.037,0.0058,0.833372,82.086208,10.604956,11.822952,172.7602,8.226656,0.110016,65.733096,0.3953,5.991,26.935,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.397,3511.082 -2278,1.247096,0,251.69076,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082612,0.037,0.0058,0.833408,82.089512,10.605384,11.823428,172.76714,8.226984,0.110024,65.735744,0.3953,5.992,26.938,4.923,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.406,3511.082 -2279,1.243528,0,251.70945,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082616,0.037,0.0058,0.833444,82.092816,10.605812,11.823904,172.77409,8.227312,0.110032,65.738392,0.3953,5.992,26.94,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.414,3511.082 -2280,1.23996,0,251.72814,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08262,0.037,0.0058,0.83348,82.09612,10.60624,11.82438,172.78104,8.22764,0.11004,65.74104,0.3953,5.993,26.943,4.924,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.423,3511.082 -2281,1.236392,0,251.74683,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082624,0.037,0.0058,0.833516,82.099424,10.606668,11.824856,172.78799,8.227968,0.110048,65.743688,0.3953,5.993,26.946,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.431,3511.082 -2282,1.232824,0,251.76552,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082628,0.037,0.0058,0.833552,82.102728,10.607096,11.825332,172.79494,8.228296,0.110056,65.746336,0.3953,5.994,26.949,4.925,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.44,3511.082 -2283,1.229256,0,251.7842,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082632,0.037,0.0058,0.833588,82.106032,10.607524,11.825808,172.80188,8.228624,0.110064,65.748984,0.3953,5.995,26.951,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.448,3511.082 -2284,1.225688,0,251.80289,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082636,0.037,0.0058,0.833624,82.109336,10.607952,11.826284,172.80883,8.228952,0.110072,65.751632,0.3953,5.995,26.954,4.926,1.221,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.457,3511.082 -2285,1.22212,0,251.82158,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08264,0.037,0.0058,0.83366,82.11264,10.60838,11.82676,172.81578,8.22928,0.11008,65.75428,0.3953,5.996,26.957,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.465,3511.082 -2286,1.218552,0,251.84027,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082644,0.037,0.0058,0.833696,82.115944,10.608808,11.827236,172.82273,8.229608,0.110088,65.756928,0.3953,5.996,26.959,4.927,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.473,3511.082 -2287,1.214984,0,251.85896,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082648,0.037,0.0058,0.833732,82.119248,10.609236,11.827712,172.82968,8.229936,0.110096,65.759576,0.3953,5.997,26.962,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.482,3511.082 -2288,1.211416,0,251.87764,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082652,0.037,0.0058,0.833768,82.122552,10.609664,11.828188,172.83662,8.230264,0.110104,65.762224,0.3953,5.998,26.965,4.928,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.49,3511.082 -2289,1.207848,0,251.89633,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082656,0.037,0.0058,0.833804,82.125856,10.610092,11.828664,172.84357,8.230592,0.110112,65.764872,0.3953,5.998,26.967,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.498,3511.082 -2290,1.20428,0,251.91502,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08266,0.037,0.0058,0.83384,82.12916,10.61052,11.82914,172.85052,8.23092,0.11012,65.76752,0.3953,5.999,26.97,4.929,1.222,0.173,0.156,0,0.058,0.307,0.041,0.004,0,0.178,0,157.507,3511.082 -2291,1.200712,0,251.93371,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082664,0.037,0.0058,0.833876,82.132464,10.610948,11.829616,172.85747,8.231248,0.110128,65.770168,0.3953,5.999,26.972,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.515,3511.082 -2292,1.197144,0,251.9524,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082668,0.037,0.0058,0.833912,82.135768,10.611376,11.830092,172.86442,8.231576,0.110136,65.772816,0.3953,6,26.975,4.93,1.222,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.523,3511.082 -2293,1.193576,0,251.97108,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082672,0.037,0.0058,0.833948,82.139072,10.611804,11.830568,172.87136,8.231904,0.110144,65.775464,0.3953,6,26.978,4.93,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.531,3511.082 -2294,1.190008,0,251.98977,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082676,0.037,0.0058,0.833984,82.142376,10.612232,11.831044,172.87831,8.232232,0.110152,65.778112,0.3953,6.001,26.98,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.539,3511.082 -2295,1.18644,0,252.00846,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08268,0.037,0.0058,0.83402,82.14568,10.61266,11.83152,172.88526,8.23256,0.11016,65.78076,0.3953,6.002,26.983,4.931,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.547,3511.082 -2296,1.182872,0,252.02715,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082684,0.037,0.0058,0.834056,82.148984,10.613088,11.831996,172.89221,8.232888,0.110168,65.783408,0.3953,6.002,26.985,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.555,3511.082 -2297,1.179304,0,252.04584,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082688,0.037,0.0058,0.834092,82.152288,10.613516,11.832472,172.89916,8.233216,0.110176,65.786056,0.3953,6.003,26.988,4.932,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.564,3511.082 -2298,1.175736,0,252.06452,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082692,0.037,0.0058,0.834128,82.155592,10.613944,11.832948,172.9061,8.233544,0.110184,65.788704,0.3953,6.003,26.991,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.572,3511.082 -2299,1.172168,0,252.08321,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082696,0.037,0.0058,0.834164,82.158896,10.614372,11.833424,172.91305,8.233872,0.110192,65.791352,0.3953,6.004,26.993,4.933,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.579,3511.082 -2300,1.1686,0,252.1019,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0827,0.037,0.0058,0.8342,82.1622,10.6148,11.8339,172.92,8.2342,0.1102,65.794,0.3953,6.004,26.996,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.587,3511.082 -2301,1.165964,0,252.1187,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082704,0.037,0.0058,0.834228,82.165164,10.615184,11.834324,172.92624,8.2345,0.110204,65.796372,0.3953,6.005,26.998,4.934,1.223,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.595,3511.082 -2302,1.163328,0,252.1355,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082708,0.037,0.0058,0.834256,82.168128,10.615568,11.834748,172.93248,8.2348,0.110208,65.798744,0.3953,6.006,27.001,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.603,3511.082 -2303,1.160692,0,252.1523,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082712,0.037,0.0058,0.834284,82.171092,10.615952,11.835172,172.93872,8.2351,0.110212,65.801116,0.3953,6.006,27.003,4.935,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.611,3511.082 -2304,1.158056,0,252.1691,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082716,0.037,0.0058,0.834312,82.174056,10.616336,11.835596,172.94496,8.2354,0.110216,65.803488,0.3953,6.007,27.006,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.619,3511.082 -2305,1.15542,0,252.1859,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08272,0.037,0.0058,0.83434,82.17702,10.61672,11.83602,172.9512,8.2357,0.11022,65.80586,0.3953,6.007,27.008,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.627,3511.082 -2306,1.152784,0,252.2027,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082724,0.037,0.0058,0.834368,82.179984,10.617104,11.836444,172.95744,8.236,0.110224,65.808232,0.3953,6.008,27.011,4.936,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.634,3511.082 -2307,1.150148,0,252.2195,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082728,0.037,0.0058,0.834396,82.182948,10.617488,11.836868,172.96368,8.2363,0.110228,65.810604,0.3953,6.008,27.013,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.642,3511.082 -2308,1.147512,0,252.2363,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082732,0.037,0.0058,0.834424,82.185912,10.617872,11.837292,172.96992,8.2366,0.110232,65.812976,0.3953,6.009,27.016,4.937,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.65,3511.082 -2309,1.144876,0,252.2531,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082736,0.037,0.0058,0.834452,82.188876,10.618256,11.837716,172.97616,8.2369,0.110236,65.815348,0.3953,6.009,27.018,4.938,1.224,0.173,0.157,0,0.058,0.307,0.041,0.004,0,0.178,0,157.658,3511.082 -2310,1.14224,0,252.2699,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08274,0.037,0.0058,0.83448,82.19184,10.61864,11.83814,172.9824,8.2372,0.11024,65.81772,0.3953,6.01,27.02,4.938,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.665,3511.082 -2311,1.139604,0,252.2867,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082744,0.037,0.0058,0.834508,82.194804,10.619024,11.838564,172.98864,8.2375,0.110244,65.820092,0.3953,6.011,27.023,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.673,3511.082 -2312,1.136968,0,252.3035,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082748,0.037,0.0058,0.834536,82.197768,10.619408,11.838988,172.99488,8.2378,0.110248,65.822464,0.3953,6.011,27.025,4.939,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.68,3511.082 -2313,1.134332,0,252.3203,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082752,0.037,0.0058,0.834564,82.200732,10.619792,11.839412,173.00112,8.2381,0.110252,65.824836,0.3953,6.012,27.028,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.688,3511.082 -2314,1.131696,0,252.3371,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082756,0.037,0.0058,0.834592,82.203696,10.620176,11.839836,173.00736,8.2384,0.110256,65.827208,0.3953,6.012,27.03,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.178,0,157.696,3511.082 -2315,1.12906,0,252.3539,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08276,0.037,0.0058,0.83462,82.20666,10.62056,11.84026,173.0136,8.2387,0.11026,65.82958,0.3953,6.013,27.032,4.94,1.225,0.173,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.703,3511.082 -2316,1.126424,0,252.3707,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082764,0.037,0.0058,0.834648,82.209624,10.620944,11.840684,173.01984,8.239,0.110264,65.831952,0.3953,6.013,27.035,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.711,3511.082 -2317,1.123788,0,252.3875,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082768,0.037,0.0058,0.834676,82.212588,10.621328,11.841108,173.02608,8.2393,0.110268,65.834324,0.3953,6.014,27.037,4.941,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.718,3511.082 -2318,1.121152,0,252.4043,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082772,0.037,0.0058,0.834704,82.215552,10.621712,11.841532,173.03232,8.2396,0.110272,65.836696,0.3953,6.014,27.04,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.725,3511.082 -2319,1.118516,0,252.4211,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082776,0.037,0.0058,0.834732,82.218516,10.622096,11.841956,173.03856,8.2399,0.110276,65.839068,0.3953,6.015,27.042,4.942,1.225,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.733,3511.082 -2320,1.11588,0,252.4379,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08278,0.037,0.0058,0.83476,82.22148,10.62248,11.84238,173.0448,8.2402,0.11028,65.84144,0.3953,6.015,27.044,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.74,3511.082 -2321,1.113244,0,252.4547,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082784,0.037,0.0058,0.834788,82.224444,10.622864,11.842804,173.05104,8.2405,0.110284,65.843812,0.3953,6.016,27.047,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.748,3511.082 -2322,1.110608,0,252.4715,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082788,0.037,0.0058,0.834816,82.227408,10.623248,11.843228,173.05728,8.2408,0.110288,65.846184,0.3953,6.016,27.049,4.943,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.755,3511.082 -2323,1.107972,0,252.4883,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082792,0.037,0.0058,0.834844,82.230372,10.623632,11.843652,173.06352,8.2411,0.110292,65.848556,0.3953,6.017,27.051,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.762,3511.082 -2324,1.105336,0,252.5051,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082796,0.037,0.0058,0.834872,82.233336,10.624016,11.844076,173.06976,8.2414,0.110296,65.850928,0.3953,6.017,27.054,4.944,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.77,3511.082 -2325,1.1027,0,252.5219,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.8349,82.2363,10.6244,11.8445,173.076,8.2417,0.1103,65.8533,0.3953,6.018,27.056,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.777,3511.082 -2326,1.100632,0,252.53715,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834924,82.238992,10.624748,11.844888,173.08167,8.241968,0.110304,65.85546,0.3953,6.018,27.058,4.945,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.784,3511.082 -2327,1.098564,0,252.5524,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834948,82.241684,10.625096,11.845276,173.08734,8.242236,0.110308,65.85762,0.3953,6.019,27.061,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.791,3511.082 -2328,1.096496,0,252.56766,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834972,82.244376,10.625444,11.845664,173.093,8.242504,0.110312,65.85978,0.3953,6.019,27.063,4.946,1.226,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.798,3511.082 -2329,1.094428,0,252.58291,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.834996,82.247068,10.625792,11.846052,173.09867,8.242772,0.110316,65.86194,0.3953,6.02,27.065,4.946,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.806,3511.082 -2330,1.09236,0,252.59816,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83502,82.24976,10.62614,11.84644,173.10434,8.24304,0.11032,65.8641,0.3953,6.02,27.067,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.813,3511.082 -2331,1.090292,0,252.61341,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835044,82.252452,10.626488,11.846828,173.11001,8.243308,0.110324,65.86626,0.3953,6.021,27.07,4.947,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.82,3511.082 -2332,1.088224,0,252.62866,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835068,82.255144,10.626836,11.847216,173.11568,8.243576,0.110328,65.86842,0.3953,6.021,27.072,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.827,3511.082 -2333,1.086156,0,252.64392,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835092,82.257836,10.627184,11.847604,173.12134,8.243844,0.110332,65.87058,0.3953,6.022,27.074,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.834,3511.082 -2334,1.084088,0,252.65917,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835116,82.260528,10.627532,11.847992,173.12701,8.244112,0.110336,65.87274,0.3953,6.022,27.076,4.948,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.841,3511.082 -2335,1.08202,0,252.67442,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83514,82.26322,10.62788,11.84838,173.13268,8.24438,0.11034,65.8749,0.3953,6.023,27.079,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.848,3511.082 -2336,1.079952,0,252.68967,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835164,82.265912,10.628228,11.848768,173.13835,8.244648,0.110344,65.87706,0.3953,6.023,27.081,4.949,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.855,3511.082 -2337,1.077884,0,252.70492,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835188,82.268604,10.628576,11.849156,173.14402,8.244916,0.110348,65.87922,0.3953,6.024,27.083,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.862,3511.082 -2338,1.075816,0,252.72018,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835212,82.271296,10.628924,11.849544,173.14968,8.245184,0.110352,65.88138,0.3953,6.024,27.085,4.95,1.227,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.869,3511.082 -2339,1.073748,0,252.73543,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835236,82.273988,10.629272,11.849932,173.15535,8.245452,0.110356,65.88354,0.3953,6.025,27.088,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.876,3511.082 -2340,1.07168,0,252.75068,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83526,82.27668,10.62962,11.85032,173.16102,8.24572,0.11036,65.8857,0.3953,6.025,27.09,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.883,3511.082 -2341,1.069612,0,252.76593,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835284,82.279372,10.629968,11.850708,173.16669,8.245988,0.110364,65.88786,0.3953,6.026,27.092,4.951,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.89,3511.082 -2342,1.067544,0,252.78118,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835308,82.282064,10.630316,11.851096,173.17236,8.246256,0.110368,65.89002,0.3953,6.026,27.094,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.896,3511.082 -2343,1.065476,0,252.79644,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835332,82.284756,10.630664,11.851484,173.17802,8.246524,0.110372,65.89218,0.3953,6.027,27.096,4.952,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.903,3511.082 -2344,1.063408,0,252.81169,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835356,82.287448,10.631012,11.851872,173.18369,8.246792,0.110376,65.89434,0.3953,6.027,27.098,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.91,3511.082 -2345,1.06134,0,252.82694,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.83538,82.29014,10.63136,11.85226,173.18936,8.24706,0.11038,65.8965,0.3953,6.028,27.101,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.917,3511.082 -2346,1.059272,0,252.84219,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835404,82.292832,10.631708,11.852648,173.19503,8.247328,0.110384,65.89866,0.3953,6.028,27.103,4.953,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.924,3511.082 -2347,1.057204,0,252.85744,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835428,82.295524,10.632056,11.853036,173.2007,8.247596,0.110388,65.90082,0.3953,6.029,27.105,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.93,3511.082 -2348,1.055136,0,252.8727,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835452,82.298216,10.632404,11.853424,173.20636,8.247864,0.110392,65.90298,0.3953,6.029,27.107,4.954,1.228,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.937,3511.082 -2349,1.053068,0,252.88795,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.835476,82.300908,10.632752,11.853812,173.21203,8.248132,0.110396,65.90514,0.3953,6.03,27.109,4.954,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.944,3511.082 -2350,1.051,0,252.9032,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0828,0.037,0.0058,0.8355,82.3036,10.6331,11.8542,173.2177,8.2484,0.1104,65.9073,0.3953,6.03,27.111,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.951,3511.082 -2351,1.049292,0,252.91716,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082804,0.037,0.0058,0.835528,82.306068,10.633424,11.85456,173.22289,8.248644,0.110408,65.909276,0.3953,6.031,27.113,4.955,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.957,3511.082 -2352,1.047584,0,252.93113,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082808,0.037,0.0058,0.835556,82.308536,10.633748,11.85492,173.22808,8.248888,0.110416,65.911252,0.3953,6.031,27.116,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.964,3511.082 -2353,1.045876,0,252.94509,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082812,0.037,0.0058,0.835584,82.311004,10.634072,11.85528,173.23328,8.249132,0.110424,65.913228,0.3953,6.032,27.118,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.97,3511.082 -2354,1.044168,0,252.95906,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082816,0.037,0.0058,0.835612,82.313472,10.634396,11.85564,173.23847,8.249376,0.110432,65.915204,0.3953,6.032,27.12,4.956,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.977,3511.082 -2355,1.04246,0,252.97302,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08282,0.037,0.0058,0.83564,82.31594,10.63472,11.856,173.24366,8.24962,0.11044,65.91718,0.3953,6.033,27.122,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.984,3511.082 -2356,1.040752,0,252.98698,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082824,0.037,0.0058,0.835668,82.318408,10.635044,11.85636,173.24885,8.249864,0.110448,65.919156,0.3953,6.033,27.124,4.957,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.99,3511.082 -2357,1.039044,0,253.00095,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082828,0.037,0.0058,0.835696,82.320876,10.635368,11.85672,173.25404,8.250108,0.110456,65.921132,0.3953,6.033,27.126,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,157.997,3511.082 -2358,1.037336,0,253.01491,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082832,0.037,0.0058,0.835724,82.323344,10.635692,11.85708,173.25924,8.250352,0.110464,65.923108,0.3953,6.034,27.128,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.003,3511.082 -2359,1.035628,0,253.02888,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082836,0.037,0.0058,0.835752,82.325812,10.636016,11.85744,173.26443,8.250596,0.110472,65.925084,0.3953,6.034,27.13,4.958,1.229,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.01,3511.082 -2360,1.03392,0,253.04284,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08284,0.037,0.0058,0.83578,82.32828,10.63634,11.8578,173.26962,8.25084,0.11048,65.92706,0.3953,6.035,27.132,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.016,3511.082 -2361,1.032212,0,253.0568,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082844,0.037,0.0058,0.835808,82.330748,10.636664,11.85816,173.27481,8.251084,0.110488,65.929036,0.3953,6.035,27.134,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.023,3511.082 -2362,1.030504,0,253.07077,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082848,0.037,0.0058,0.835836,82.333216,10.636988,11.85852,173.28,8.251328,0.110496,65.931012,0.3953,6.036,27.136,4.959,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.029,3511.082 -2363,1.028796,0,253.08473,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082852,0.037,0.0058,0.835864,82.335684,10.637312,11.85888,173.2852,8.251572,0.110504,65.932988,0.3953,6.036,27.138,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.035,3511.082 -2364,1.027088,0,253.0987,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082856,0.037,0.0058,0.835892,82.338152,10.637636,11.85924,173.29039,8.251816,0.110512,65.934964,0.3953,6.037,27.14,4.96,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.042,3511.082 -2365,1.02538,0,253.11266,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08286,0.037,0.0058,0.83592,82.34062,10.63796,11.8596,173.29558,8.25206,0.11052,65.93694,0.3953,6.037,27.142,4.961,1.23,0.174,0.157,0,0.058,0.308,0.041,0.004,0,0.179,0,158.048,3511.082 -2366,1.023672,0,253.12662,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082864,0.037,0.0058,0.835948,82.343088,10.638284,11.85996,173.30077,8.252304,0.110528,65.938916,0.3953,6.038,27.144,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.055,3511.082 -2367,1.021964,0,253.14059,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082868,0.037,0.0058,0.835976,82.345556,10.638608,11.86032,173.30596,8.252548,0.110536,65.940892,0.3953,6.038,27.147,4.961,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.061,3511.082 -2368,1.020256,0,253.15455,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082872,0.037,0.0058,0.836004,82.348024,10.638932,11.86068,173.31116,8.252792,0.110544,65.942868,0.3953,6.038,27.149,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.067,3511.082 -2369,1.018548,0,253.16852,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082876,0.037,0.0058,0.836032,82.350492,10.639256,11.86104,173.31635,8.253036,0.110552,65.944844,0.3953,6.039,27.151,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.073,3511.082 -2370,1.01684,0,253.18248,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08288,0.037,0.0058,0.83606,82.35296,10.63958,11.8614,173.32154,8.25328,0.11056,65.94682,0.3953,6.039,27.153,4.962,1.23,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.08,3511.082 -2371,1.015132,0,253.19644,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082884,0.037,0.0058,0.836088,82.355428,10.639904,11.86176,173.32673,8.253524,0.110568,65.948796,0.3953,6.04,27.155,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.086,3511.082 -2372,1.013424,0,253.21041,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082888,0.037,0.0058,0.836116,82.357896,10.640228,11.86212,173.33192,8.253768,0.110576,65.950772,0.3953,6.04,27.157,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.092,3511.082 -2373,1.011716,0,253.22437,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082892,0.037,0.0058,0.836144,82.360364,10.640552,11.86248,173.33712,8.254012,0.110584,65.952748,0.3953,6.041,27.158,4.963,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.098,3511.082 -2374,1.010008,0,253.23834,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082896,0.037,0.0058,0.836172,82.362832,10.640876,11.86284,173.34231,8.254256,0.110592,65.954724,0.3953,6.041,27.16,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.105,3511.082 -2375,1.0083,0,253.2523,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0829,0.037,0.0058,0.8362,82.3653,10.6412,11.8632,173.3475,8.2545,0.1106,65.9567,0.3953,6.042,27.162,4.964,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.111,3511.082 -2376,1.006816,0,253.26518,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082904,0.037,0.0058,0.836224,82.36758,10.641492,11.863528,173.35229,8.254732,0.1106,65.95852,0.3953,6.042,27.164,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.117,3511.082 -2377,1.005332,0,253.27805,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082908,0.037,0.0058,0.836248,82.36986,10.641784,11.863856,173.35708,8.254964,0.1106,65.96034,0.3953,6.042,27.166,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.123,3511.082 -2378,1.003848,0,253.29093,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082912,0.037,0.0058,0.836272,82.37214,10.642076,11.864184,173.36186,8.255196,0.1106,65.96216,0.3953,6.043,27.168,4.965,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.129,3511.082 -2379,1.002364,0,253.3038,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082916,0.037,0.0058,0.836296,82.37442,10.642368,11.864512,173.36665,8.255428,0.1106,65.96398,0.3953,6.043,27.17,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.135,3511.082 -2380,1.00088,0,253.31668,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08292,0.037,0.0058,0.83632,82.3767,10.64266,11.86484,173.37144,8.25566,0.1106,65.9658,0.3953,6.044,27.172,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.141,3511.082 -2381,0.999396,0,253.32956,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082924,0.037,0.0058,0.836344,82.37898,10.642952,11.865168,173.37623,8.255892,0.1106,65.96762,0.3953,6.044,27.174,4.966,1.231,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.148,3511.082 -2382,0.997912,0,253.34243,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082928,0.037,0.0058,0.836368,82.38126,10.643244,11.865496,173.38102,8.256124,0.1106,65.96944,0.3953,6.045,27.176,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.154,3511.082 -2383,0.996428,0,253.35531,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082932,0.037,0.0058,0.836392,82.38354,10.643536,11.865824,173.3858,8.256356,0.1106,65.97126,0.3953,6.045,27.178,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.16,3511.082 -2384,0.994944,0,253.36818,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082936,0.037,0.0058,0.836416,82.38582,10.643828,11.866152,173.39059,8.256588,0.1106,65.97308,0.3953,6.045,27.18,4.967,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.166,3511.082 -2385,0.99346,0,253.38106,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08294,0.037,0.0058,0.83644,82.3881,10.64412,11.86648,173.39538,8.25682,0.1106,65.9749,0.3953,6.046,27.182,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.179,0,158.172,3511.082 -2386,0.991976,0,253.39394,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082944,0.037,0.0058,0.836464,82.39038,10.644412,11.866808,173.40017,8.257052,0.1106,65.97672,0.3953,6.046,27.184,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.178,3511.082 -2387,0.990492,0,253.40681,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082948,0.037,0.0058,0.836488,82.39266,10.644704,11.867136,173.40496,8.257284,0.1106,65.97854,0.3953,6.047,27.186,4.968,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.184,3511.082 -2388,0.989008,0,253.41969,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082952,0.037,0.0058,0.836512,82.39494,10.644996,11.867464,173.40974,8.257516,0.1106,65.98036,0.3953,6.047,27.188,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.19,3511.082 -2389,0.987524,0,253.43256,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082956,0.037,0.0058,0.836536,82.39722,10.645288,11.867792,173.41453,8.257748,0.1106,65.98218,0.3953,6.048,27.189,4.969,1.232,0.174,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.195,3511.082 -2390,0.98604,0,253.44544,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08296,0.037,0.0058,0.83656,82.3995,10.64558,11.86812,173.41932,8.25798,0.1106,65.984,0.3953,6.048,27.191,4.969,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.201,3511.082 -2391,0.984556,0,253.45832,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082964,0.037,0.0058,0.836584,82.40178,10.645872,11.868448,173.42411,8.258212,0.1106,65.98582,0.3953,6.048,27.193,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.207,3511.082 -2392,0.983072,0,253.47119,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082968,0.037,0.0058,0.836608,82.40406,10.646164,11.868776,173.4289,8.258444,0.1106,65.98764,0.3953,6.049,27.195,4.97,1.232,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.213,3511.082 -2393,0.981588,0,253.48407,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082972,0.037,0.0058,0.836632,82.40634,10.646456,11.869104,173.43368,8.258676,0.1106,65.98946,0.3953,6.049,27.197,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.219,3511.082 -2394,0.980104,0,253.49694,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082976,0.037,0.0058,0.836656,82.40862,10.646748,11.869432,173.43847,8.258908,0.1106,65.99128,0.3953,6.05,27.199,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.225,3511.082 -2395,0.97862,0,253.50982,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08298,0.037,0.0058,0.83668,82.4109,10.64704,11.86976,173.44326,8.25914,0.1106,65.9931,0.3953,6.05,27.201,4.971,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.231,3511.082 -2396,0.977136,0,253.5227,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082984,0.037,0.0058,0.836704,82.41318,10.647332,11.870088,173.44805,8.259372,0.1106,65.99492,0.3953,6.05,27.203,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.237,3511.082 -2397,0.975652,0,253.53557,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082988,0.037,0.0058,0.836728,82.41546,10.647624,11.870416,173.45284,8.259604,0.1106,65.99674,0.3953,6.051,27.204,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.242,3511.082 -2398,0.974168,0,253.54845,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082992,0.037,0.0058,0.836752,82.41774,10.647916,11.870744,173.45762,8.259836,0.1106,65.99856,0.3953,6.051,27.206,4.972,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.248,3511.082 -2399,0.972684,0,253.56132,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.082996,0.037,0.0058,0.836776,82.42002,10.648208,11.871072,173.46241,8.260068,0.1106,66.00038,0.3953,6.052,27.208,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.254,3511.082 -2400,0.9712,0,253.5742,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.8368,82.4223,10.6485,11.8714,173.4672,8.2603,0.1106,66.0022,0.3953,6.052,27.21,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.26,3511.082 -2401,0.969888,0,253.58614,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836828,82.4244,10.648772,11.871708,173.47163,8.260512,0.1106,66.003884,0.3953,6.053,27.212,4.973,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.265,3511.082 -2402,0.968576,0,253.59809,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836856,82.4265,10.649044,11.872016,173.47606,8.260724,0.1106,66.005568,0.3953,6.053,27.214,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.271,3511.082 -2403,0.967264,0,253.61003,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836884,82.4286,10.649316,11.872324,173.4805,8.260936,0.1106,66.007252,0.3953,6.053,27.215,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.277,3511.082 -2404,0.965952,0,253.62198,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836912,82.4307,10.649588,11.872632,173.48493,8.261148,0.1106,66.008936,0.3953,6.054,27.217,4.974,1.233,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.282,3511.082 -2405,0.96464,0,253.63392,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83694,82.4328,10.64986,11.87294,173.48936,8.26136,0.1106,66.01062,0.3953,6.054,27.219,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.288,3511.082 -2406,0.963328,0,253.64586,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836968,82.4349,10.650132,11.873248,173.49379,8.261572,0.1106,66.012304,0.3953,6.055,27.221,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.294,3511.082 -2407,0.962016,0,253.65781,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.836996,82.437,10.650404,11.873556,173.49822,8.261784,0.1106,66.013988,0.3953,6.055,27.223,4.975,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.299,3511.082 -2408,0.960704,0,253.66975,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837024,82.4391,10.650676,11.873864,173.50266,8.261996,0.1106,66.015672,0.3953,6.055,27.224,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.305,3511.082 -2409,0.959392,0,253.6817,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837052,82.4412,10.650948,11.874172,173.50709,8.262208,0.1106,66.017356,0.3953,6.056,27.226,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.311,3511.082 -2410,0.95808,0,253.69364,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83708,82.4433,10.65122,11.87448,173.51152,8.26242,0.1106,66.01904,0.3953,6.056,27.228,4.976,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.316,3511.082 -2411,0.956768,0,253.70558,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837108,82.4454,10.651492,11.874788,173.51595,8.262632,0.1106,66.020724,0.3953,6.057,27.23,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.322,3511.082 -2412,0.955456,0,253.71753,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837136,82.4475,10.651764,11.875096,173.52038,8.262844,0.1106,66.022408,0.3953,6.057,27.231,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.327,3511.082 -2413,0.954144,0,253.72947,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837164,82.4496,10.652036,11.875404,173.52482,8.263056,0.1106,66.024092,0.3953,6.057,27.233,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.333,3511.082 -2414,0.952832,0,253.74142,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837192,82.4517,10.652308,11.875712,173.52925,8.263268,0.1106,66.025776,0.3953,6.058,27.235,4.977,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.338,3511.082 -2415,0.95152,0,253.75336,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83722,82.4538,10.65258,11.87602,173.53368,8.26348,0.1106,66.02746,0.3953,6.058,27.237,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.344,3511.082 -2416,0.950208,0,253.7653,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837248,82.4559,10.652852,11.876328,173.53811,8.263692,0.1106,66.029144,0.3953,6.058,27.239,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.349,3511.082 -2417,0.948896,0,253.77725,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837276,82.458,10.653124,11.876636,173.54254,8.263904,0.1106,66.030828,0.3953,6.059,27.24,4.978,1.234,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.355,3511.082 -2418,0.947584,0,253.78919,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837304,82.4601,10.653396,11.876944,173.54698,8.264116,0.1106,66.032512,0.3953,6.059,27.242,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.36,3511.082 -2419,0.946272,0,253.80114,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837332,82.4622,10.653668,11.877252,173.55141,8.264328,0.1106,66.034196,0.3953,6.06,27.244,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.366,3511.082 -2420,0.94496,0,253.81308,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.83736,82.4643,10.65394,11.87756,173.55584,8.26454,0.1106,66.03588,0.3953,6.06,27.245,4.979,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.371,3511.082 -2421,0.943648,0,253.82502,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837388,82.4664,10.654212,11.877868,173.56027,8.264752,0.1106,66.037564,0.3953,6.06,27.247,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.377,3511.082 -2422,0.942336,0,253.83697,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837416,82.4685,10.654484,11.878176,173.5647,8.264964,0.1106,66.039248,0.3953,6.061,27.249,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.382,3511.082 -2423,0.941024,0,253.84891,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837444,82.4706,10.654756,11.878484,173.56914,8.265176,0.1106,66.040932,0.3953,6.061,27.251,4.98,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.388,3511.082 -2424,0.939712,0,253.86086,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.837472,82.4727,10.655028,11.878792,173.57357,8.265388,0.1106,66.042616,0.3953,6.062,27.252,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.393,3511.082 -2425,0.9384,0,253.8728,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083,0.037,0.0058,0.8375,82.4748,10.6553,11.8791,173.578,8.2656,0.1106,66.0443,0.3953,6.062,27.254,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.398,3511.082 -2426,0.937196,0,253.88393,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083004,0.037,0.0058,0.83752,82.476768,10.655556,11.879376,173.58214,8.265796,0.110608,66.045876,0.3953,6.062,27.256,4.981,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.404,3511.082 -2427,0.935992,0,253.89506,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083008,0.037,0.0058,0.83754,82.478736,10.655812,11.879652,173.58627,8.265992,0.110616,66.047452,0.3953,6.063,27.257,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.409,3511.082 -2428,0.934788,0,253.90618,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083012,0.037,0.0058,0.83756,82.480704,10.656068,11.879928,173.59041,8.266188,0.110624,66.049028,0.3953,6.063,27.259,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.414,3511.082 -2429,0.933584,0,253.91731,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083016,0.037,0.0058,0.83758,82.482672,10.656324,11.880204,173.59454,8.266384,0.110632,66.050604,0.3953,6.063,27.261,4.982,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.42,3511.082 -2430,0.93238,0,253.92844,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08302,0.037,0.0058,0.8376,82.48464,10.65658,11.88048,173.59868,8.26658,0.11064,66.05218,0.3953,6.064,27.263,4.983,1.235,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.425,3511.082 -2431,0.931176,0,253.93957,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083024,0.037,0.0058,0.83762,82.486608,10.656836,11.880756,173.60282,8.266776,0.110648,66.053756,0.3953,6.064,27.264,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.43,3511.082 -2432,0.929972,0,253.9507,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083028,0.037,0.0058,0.83764,82.488576,10.657092,11.881032,173.60695,8.266972,0.110656,66.055332,0.3953,6.065,27.266,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.436,3511.082 -2433,0.928768,0,253.96182,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083032,0.037,0.0058,0.83766,82.490544,10.657348,11.881308,173.61109,8.267168,0.110664,66.056908,0.3953,6.065,27.268,4.983,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.441,3511.082 -2434,0.927564,0,253.97295,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083036,0.037,0.0058,0.83768,82.492512,10.657604,11.881584,173.61522,8.267364,0.110672,66.058484,0.3953,6.065,27.269,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.446,3511.082 -2435,0.92636,0,253.98408,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08304,0.037,0.0058,0.8377,82.49448,10.65786,11.88186,173.61936,8.26756,0.11068,66.06006,0.3953,6.066,27.271,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.451,3511.082 -2436,0.925156,0,253.99521,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083044,0.037,0.0058,0.83772,82.496448,10.658116,11.882136,173.6235,8.267756,0.110688,66.061636,0.3953,6.066,27.273,4.984,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.457,3511.082 -2437,0.923952,0,254.00634,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083048,0.037,0.0058,0.83774,82.498416,10.658372,11.882412,173.62763,8.267952,0.110696,66.063212,0.3953,6.066,27.274,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.462,3511.082 -2438,0.922748,0,254.01746,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083052,0.037,0.0058,0.83776,82.500384,10.658628,11.882688,173.63177,8.268148,0.110704,66.064788,0.3953,6.067,27.276,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.467,3511.082 -2439,0.921544,0,254.02859,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083056,0.037,0.0058,0.83778,82.502352,10.658884,11.882964,173.6359,8.268344,0.110712,66.066364,0.3953,6.067,27.278,4.985,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.472,3511.082 -2440,0.92034,0,254.03972,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08306,0.037,0.0058,0.8378,82.50432,10.65914,11.88324,173.64004,8.26854,0.11072,66.06794,0.3953,6.068,27.279,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.477,3511.082 -2441,0.919136,0,254.05085,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083064,0.037,0.0058,0.83782,82.506288,10.659396,11.883516,173.64418,8.268736,0.110728,66.069516,0.3953,6.068,27.281,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.482,3511.082 -2442,0.917932,0,254.06198,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083068,0.037,0.0058,0.83784,82.508256,10.659652,11.883792,173.64831,8.268932,0.110736,66.071092,0.3953,6.068,27.283,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.488,3511.082 -2443,0.916728,0,254.0731,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083072,0.037,0.0058,0.83786,82.510224,10.659908,11.884068,173.65245,8.269128,0.110744,66.072668,0.3953,6.069,27.284,4.986,1.236,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.493,3511.082 -2444,0.915524,0,254.08423,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083076,0.037,0.0058,0.83788,82.512192,10.660164,11.884344,173.65658,8.269324,0.110752,66.074244,0.3953,6.069,27.286,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.498,3511.082 -2445,0.91432,0,254.09536,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.08308,0.037,0.0058,0.8379,82.51416,10.66042,11.88462,173.66072,8.26952,0.11076,66.07582,0.3953,6.069,27.287,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.503,3511.082 -2446,0.913116,0,254.10649,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083084,0.037,0.0058,0.83792,82.516128,10.660676,11.884896,173.66486,8.269716,0.110768,66.077396,0.3953,6.07,27.289,4.987,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.508,3511.082 -2447,0.911912,0,254.11762,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083088,0.037,0.0058,0.83794,82.518096,10.660932,11.885172,173.66899,8.269912,0.110776,66.078972,0.3953,6.07,27.291,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.513,3511.082 -2448,0.910708,0,254.12874,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083092,0.037,0.0058,0.83796,82.520064,10.661188,11.885448,173.67313,8.270108,0.110784,66.080548,0.3953,6.07,27.292,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.518,3511.082 -2449,0.909504,0,254.13987,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.083096,0.037,0.0058,0.83798,82.522032,10.661444,11.885724,173.67726,8.270304,0.110792,66.082124,0.3953,6.071,27.294,4.988,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.523,3511.082 -2450,0.9083,0,254.151,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838,82.524,10.6617,11.886,173.6814,8.2705,0.1108,66.0837,0.3953,6.071,27.295,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.528,3511.082 -2451,0.907176,0,254.16141,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838016,82.525844,10.66194,11.886264,173.68527,8.270684,0.1108,66.085172,0.3953,6.072,27.297,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.533,3511.082 -2452,0.906052,0,254.17182,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838032,82.527688,10.66218,11.886528,173.68914,8.270868,0.1108,66.086644,0.3953,6.072,27.299,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.538,3511.082 -2453,0.904928,0,254.18224,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838048,82.529532,10.66242,11.886792,173.69302,8.271052,0.1108,66.088116,0.3953,6.072,27.3,4.989,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.543,3511.082 -2454,0.903804,0,254.19265,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838064,82.531376,10.66266,11.887056,173.69689,8.271236,0.1108,66.089588,0.3953,6.073,27.302,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.548,3511.082 -2455,0.90268,0,254.20306,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83808,82.53322,10.6629,11.88732,173.70076,8.27142,0.1108,66.09106,0.3953,6.073,27.303,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.553,3511.082 -2456,0.901556,0,254.21347,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838096,82.535064,10.66314,11.887584,173.70463,8.271604,0.1108,66.092532,0.3953,6.073,27.305,4.99,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.558,3511.082 -2457,0.900432,0,254.22388,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838112,82.536908,10.66338,11.887848,173.7085,8.271788,0.1108,66.094004,0.3953,6.074,27.307,4.991,1.237,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.563,3511.082 -2458,0.899308,0,254.2343,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838128,82.538752,10.66362,11.888112,173.71238,8.271972,0.1108,66.095476,0.3953,6.074,27.308,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.568,3511.082 -2459,0.898184,0,254.24471,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838144,82.540596,10.66386,11.888376,173.71625,8.272156,0.1108,66.096948,0.3953,6.074,27.31,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.573,3511.082 -2460,0.89706,0,254.25512,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83816,82.54244,10.6641,11.88864,173.72012,8.27234,0.1108,66.09842,0.3953,6.075,27.311,4.991,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.578,3511.082 -2461,0.895936,0,254.26553,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838176,82.544284,10.66434,11.888904,173.72399,8.272524,0.1108,66.099892,0.3953,6.075,27.313,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.583,3511.082 -2462,0.894812,0,254.27594,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838192,82.546128,10.66458,11.889168,173.72786,8.272708,0.1108,66.101364,0.3953,6.075,27.314,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.588,3511.082 -2463,0.893688,0,254.28636,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838208,82.547972,10.66482,11.889432,173.73174,8.272892,0.1108,66.102836,0.3953,6.076,27.316,4.992,1.238,0.175,0.158,0,0.058,0.308,0.041,0.004,0,0.18,0,158.593,3511.082 -2464,0.892564,0,254.29677,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838224,82.549816,10.66506,11.889696,173.73561,8.273076,0.1108,66.104308,0.3953,6.076,27.318,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.597,3511.082 -2465,0.89144,0,254.30718,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83824,82.55166,10.6653,11.88996,173.73948,8.27326,0.1108,66.10578,0.3953,6.076,27.319,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.602,3511.082 -2466,0.890316,0,254.31759,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838256,82.553504,10.66554,11.890224,173.74335,8.273444,0.1108,66.107252,0.3953,6.077,27.321,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.607,3511.082 -2467,0.889192,0,254.328,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838272,82.555348,10.66578,11.890488,173.74722,8.273628,0.1108,66.108724,0.3953,6.077,27.322,4.993,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.612,3511.082 -2468,0.888068,0,254.33842,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838288,82.557192,10.66602,11.890752,173.7511,8.273812,0.1108,66.110196,0.3953,6.077,27.324,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.617,3511.082 -2469,0.886944,0,254.34883,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838304,82.559036,10.66626,11.891016,173.75497,8.273996,0.1108,66.111668,0.3953,6.078,27.325,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.622,3511.082 -2470,0.88582,0,254.35924,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83832,82.56088,10.6665,11.89128,173.75884,8.27418,0.1108,66.11314,0.3953,6.078,27.327,4.994,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.626,3511.082 -2471,0.884696,0,254.36965,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838336,82.562724,10.66674,11.891544,173.76271,8.274364,0.1108,66.114612,0.3953,6.078,27.328,4.995,1.238,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.631,3511.082 -2472,0.883572,0,254.38006,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838352,82.564568,10.66698,11.891808,173.76658,8.274548,0.1108,66.116084,0.3953,6.079,27.33,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.636,3511.082 -2473,0.882448,0,254.39048,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838368,82.566412,10.66722,11.892072,173.77046,8.274732,0.1108,66.117556,0.3953,6.079,27.331,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.641,3511.082 -2474,0.881324,0,254.40089,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838384,82.568256,10.66746,11.892336,173.77433,8.274916,0.1108,66.119028,0.3953,6.079,27.333,4.995,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.645,3511.082 -2475,0.8802,0,254.4113,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.8384,82.5701,10.6677,11.8926,173.7782,8.2751,0.1108,66.1205,0.3953,6.08,27.334,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.18,0,158.65,3511.082 -2476,0.879152,0,254.42108,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838416,82.57182,10.667916,11.892848,173.78183,8.275276,0.1108,66.121884,0.3953,6.08,27.336,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.655,3511.082 -2477,0.878104,0,254.43087,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838432,82.57354,10.668132,11.893096,173.78546,8.275452,0.1108,66.123268,0.3953,6.08,27.337,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.66,3511.082 -2478,0.877056,0,254.44065,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838448,82.57526,10.668348,11.893344,173.7891,8.275628,0.1108,66.124652,0.3953,6.081,27.339,4.996,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.664,3511.082 -2479,0.876008,0,254.45044,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838464,82.57698,10.668564,11.893592,173.79273,8.275804,0.1108,66.126036,0.3953,6.081,27.34,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.669,3511.082 -2480,0.87496,0,254.46022,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83848,82.5787,10.66878,11.89384,173.79636,8.27598,0.1108,66.12742,0.3953,6.081,27.342,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.674,3511.082 -2481,0.873912,0,254.47,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838496,82.58042,10.668996,11.894088,173.79999,8.276156,0.1108,66.128804,0.3953,6.082,27.343,4.997,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.678,3511.082 -2482,0.872864,0,254.47979,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838512,82.58214,10.669212,11.894336,173.80362,8.276332,0.1108,66.130188,0.3953,6.082,27.345,4.998,1.239,0.175,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.683,3511.082 -2483,0.871816,0,254.48957,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838528,82.58386,10.669428,11.894584,173.80726,8.276508,0.1108,66.131572,0.3953,6.082,27.346,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.688,3511.082 -2484,0.870768,0,254.49936,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838544,82.58558,10.669644,11.894832,173.81089,8.276684,0.1108,66.132956,0.3953,6.083,27.348,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.692,3511.082 -2485,0.86972,0,254.50914,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83856,82.5873,10.66986,11.89508,173.81452,8.27686,0.1108,66.13434,0.3953,6.083,27.349,4.998,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.697,3511.082 -2486,0.868672,0,254.51892,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838576,82.58902,10.670076,11.895328,173.81815,8.277036,0.1108,66.135724,0.3953,6.083,27.351,4.999,1.239,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.702,3511.082 -2487,0.867624,0,254.52871,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838592,82.59074,10.670292,11.895576,173.82178,8.277212,0.1108,66.137108,0.3953,6.084,27.352,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.706,3511.082 -2488,0.866576,0,254.53849,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838608,82.59246,10.670508,11.895824,173.82542,8.277388,0.1108,66.138492,0.3953,6.084,27.354,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.711,3511.082 -2489,0.865528,0,254.54828,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838624,82.59418,10.670724,11.896072,173.82905,8.277564,0.1108,66.139876,0.3953,6.084,27.355,4.999,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.715,3511.082 -2490,0.86448,0,254.55806,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83864,82.5959,10.67094,11.89632,173.83268,8.27774,0.1108,66.14126,0.3953,6.085,27.357,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.72,3511.082 -2491,0.863432,0,254.56784,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838656,82.59762,10.671156,11.896568,173.83631,8.277916,0.1108,66.142644,0.3953,6.085,27.358,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.725,3511.082 -2492,0.862384,0,254.57763,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838672,82.59934,10.671372,11.896816,173.83994,8.278092,0.1108,66.144028,0.3953,6.085,27.359,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.729,3511.082 -2493,0.861336,0,254.58741,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838688,82.60106,10.671588,11.897064,173.84358,8.278268,0.1108,66.145412,0.3953,6.086,27.361,5,1.24,0.176,0.159,0,0.058,0.308,0.041,0.004,0,0.181,0,158.734,3511.082 -2494,0.860288,0,254.5972,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838704,82.60278,10.671804,11.897312,173.84721,8.278444,0.1108,66.146796,0.3953,6.086,27.362,5.001,1.24,0.176,0.159,0,0.059,0.308,0.041,0.004,0,0.181,0,158.738,3511.082 -2495,0.85924,0,254.60698,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.83872,82.6045,10.67202,11.89756,173.85084,8.27862,0.1108,66.14818,0.3953,6.086,27.364,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.743,3511.082 -2496,0.858192,0,254.61676,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838736,82.60622,10.672236,11.897808,173.85447,8.278796,0.1108,66.149564,0.3953,6.087,27.365,5.001,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.747,3511.082 -2497,0.857144,0,254.62655,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838752,82.60794,10.672452,11.898056,173.8581,8.278972,0.1108,66.150948,0.3953,6.087,27.367,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.752,3511.082 -2498,0.856096,0,254.63633,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838768,82.60966,10.672668,11.898304,173.86174,8.279148,0.1108,66.152332,0.3953,6.087,27.368,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.756,3511.082 -2499,0.855048,0,254.64612,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.838784,82.61138,10.672884,11.898552,173.86537,8.279324,0.1108,66.153716,0.3953,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082 -2500,0.854,0,254.6559,9.0414,10.4387,10438.7,792.2257,172.1477,16.0859,4.3615,32.1652,61.6418,0.0831,0.037,0.0058,0.8388,82.6131,10.6731,11.8988,173.869,8.2795,0.1108,66.1551,0.3953,6.088,27.37,5.002,1.24,0.176,0.159,0,0.059,0.309,0.041,0.004,0,0.181,0,158.761,3511.082 diff --git a/inst/input/emissions/RCP85_emissions.csv b/inst/input/emissions/RCP85_emissions.csv deleted file mode 100644 index 01e7225b5..000000000 --- a/inst/input/emissions/RCP85_emissions.csv +++ /dev/null @@ -1,740 +0,0 @@ -; RCP 8.5 emissions,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; http://tntcat.iiasa.ac.at:8787/RcpDb/dsd?Action=htmlpage&page=download,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,MtCH4/yr,MtN2O-N/yr,MtS/yr,Gg/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061 -1990,6.144,1.3194833,340.63499,7.5856812,63.96783,63967.83,1099.0096,222.61908,37.835424,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,5.5207695,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299 -1991,6.235,1.3809799,336.59218,7.4023631,62.955167,62955.167,1095.9087,221.41947,37.868111,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,5.7843959,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501 -1992,6.118,1.3035304,332.54937,7.7989323,61.942504,61942.504,1092.8078,220.21986,37.900799,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,5.7861962,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656 -1993,6.124,1.2981006,328.50656,7.3131034,60.929841,60929.841,1089.707,219.02026,37.933487,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,6.3118123,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801 -1994,6.242,1.2895956,324.46375,7.5072841,59.917178,59917.178,1086.6061,217.82065,37.966174,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,5.0042369,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907 -1995,6.372,1.2750104,320.42094,7.6191035,58.904515,58904.515,1083.5052,216.62104,37.998862,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,6.0534232,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005 -1996,6.51,1.2511025,316.37814,7.6520638,57.891852,57891.852,1080.4043,215.42143,38.03155,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,6.0553054,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082 -1997,6.619,1.2181397,312.33533,7.9097526,56.879189,56879.189,1077.3034,214.22182,38.064237,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,4.4857403,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082 -1998,6.588,1.2148431,308.29252,7.8957263,55.866526,55866.526,1074.2026,213.02222,38.096925,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,4.7490393,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082 -1999,6.569,1.1827892,304.24971,7.5269849,54.853863,54853.863,1071.1017,211.82261,38.129612,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,6.3219597,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082 -2000,6.735,1.1488,300.2069,7.4566,53.8412,53841.2,1068.0008,210.623,38.1623,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,5.5382,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082 -2001,6.8959,1.132,303.4092,7.503,54.4191,54419.1,1066.7448,211.5938,38.2888,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,5.699,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082 -2002,6.949,1.2317,306.5788,7.5487,54.9961,54996.1,1065.4691,212.5632,38.4153,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,5.8596,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082 -2003,7.286,1.2257,309.7164,7.5942,55.5716,55571.6,1064.1741,213.5311,38.5418,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,6.0201,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082 -2004,7.6719,1.2429,312.824,7.6394,56.1461,56146.1,1062.8596,214.4977,38.6684,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,6.1805,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082 -2005,7.971,1.1955,315.9027,7.6841,56.7195,56719.5,1061.5255,215.4628,38.7948,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,6.3407,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082 -2006,8.1615,1.165,322.1577,7.778,55.4143,55414.3,1058.9366,215.6435,38.9081,8.2076,36.1912,42.2092,11.4149,2.6001,0.4427,10.5529,12.3831,3.8842,17.9373,121.0746,15.3186,6.2176,38.6318,6.4709,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082 -2007,8.3523,1.1349,328.4342,7.8717,54.1117,54111.7,1056.3789,215.8292,39.0226,8.1641,35.9908,42.5348,11.2221,2.5502,0.4492,10.2947,13.7731,4.5338,22.1104,129.6223,18.1628,7.5465,50.375,6.6013,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082 -2008,8.5434,1.1045,334.75397,7.9653667,52.814733,52814.733,1053.8833,216.0247,39.1394,8.1208667,35.7901,42.860767,11.0262,2.4998333,0.45503333,10.037233,15.162767,5.1847667,26.273033,137.2526,20.954333,8.8781,62.118267,6.7489333,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082 -2009,8.7345,1.0741,341.07373,8.0590333,51.517767,51517.767,1051.3876,216.2202,39.2562,8.0776333,35.5894,43.186733,10.8303,2.4494667,0.46086667,9.7797667,16.552433,5.8357333,30.435667,144.8829,23.745867,10.2097,73.861533,6.8965667,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082 -2010,8.9256,1.0437,347.3935,8.1527,50.2208,50220.8,1048.892,216.4157,39.373,8.0344,35.3887,43.5127,10.6344,2.3991,0.4667,9.5223,17.9421,6.4867,34.5983,152.5132,26.5374,11.5413,85.6048,7.0442,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082 -2011,9.18679,1.02998,354.56076,8.29296,49.9685,49968.5,1050.5457,217.31987,39.6333,7.99705,35.29844,44.01174,10.74841,2.42213,0.43848,8.68531,22.21208,6.56469,37.80811,163.76989,27.39032,10.50312,91.86659,7.1479,41.557,33.769,0.189,0.011,0.14,26,7.266,361.61,55.479,35.314,4.864,0,1.445,0.156,167.857,3511.082 -2012,9.44798,1.01626,361.72802,8.43322,49.7162,49716.2,1052.1995,218.22404,39.8936,7.9597,35.20818,44.51078,10.86242,2.44516,0.41026,7.84832,26.48206,6.64268,41.01792,175.02658,28.24324,9.46494,98.12838,7.2516,40.186,30.898,0.094,0.006,0.105,19.5,7.266,373.391,56.152,33.625,4.524,0,1.373,0.139,167.857,3511.082 -2013,9.70917,1.00254,368.89528,8.57348,49.4639,49463.9,1053.8532,219.12821,40.1539,7.92235,35.11792,45.00982,10.97643,2.46819,0.38204,7.01133,30.75204,6.72067,44.22773,186.28327,29.09616,8.42676,104.39017,7.3553,38.86,28.272,0.047,0.004,0.079,13,7.266,384.93,56.625,31.75,4.207,0,1.304,0.124,167.857,3511.082 -2014,9.97036,0.98882,376.06254,8.71374,49.2116,49211.6,1055.507,220.03238,40.4142,7.885,35.02766,45.50886,11.09044,2.49122,0.35382,6.17434,35.02202,6.79866,47.43754,197.53996,29.94908,7.38858,110.65196,7.459,37.578,25.869,0.024,0.002,0.059,6.5,7.266,396.259,56.909,29.705,3.913,0,1.239,0.11,167.857,3511.082 -2015,10.23155,0.9751,383.2298,8.854,48.9593,48959.3,1057.1607,220.93655,40.6745,7.84765,34.9374,46.0079,11.20445,2.51425,0.3256,5.33735,39.292,6.87665,50.64735,208.79665,30.802,6.3504,116.91375,7.5627,36.338,23.67,0.012,0.001,0.044,0,0,407.405,57.013,27.502,3.639,0,1.177,0.098,155.925,3511.082 -2016,10.49274,0.96138,390.39706,8.99426,48.707,48707,1058.8144,221.84072,40.9348,7.8103,34.84714,46.50694,11.31846,2.53728,0.29738,4.50036,43.56198,6.95464,53.85716,220.05334,31.65492,5.31222,123.17554,7.6664,35.138,21.658,0.006,0.001,0.033,0,0,417.103,57.113,25.476,3.384,0,1.118,0.087,155.925,3511.082 -2017,10.75393,0.94766,397.56432,9.13452,48.4547,48454.7,1060.4682,222.74489,41.1951,7.77295,34.75688,47.00598,11.43247,2.56031,0.26916,3.66337,47.83196,7.03263,57.06697,231.31003,32.50784,4.27404,129.43733,7.7701,33.979,19.817,0.003,0,0.025,0,0,425.539,57.207,23.611,3.147,0,1.062,0.078,155.925,3511.082 -2018,11.01512,0.93394,404.73158,9.27478,48.2024,48202.4,1062.1219,223.64906,41.4554,7.7356,34.66662,47.50502,11.54648,2.58334,0.24094,2.82638,52.10194,7.11062,60.27678,242.56672,33.36076,3.23586,135.69912,7.8738,32.858,18.133,0.001,0,0.019,0,0,432.879,57.297,21.896,2.927,0,1.009,0.069,155.925,3511.082 -2019,11.27631,0.92022,411.89884,9.41504,47.9501,47950.1,1063.7757,224.55323,41.7157,7.69825,34.57636,48.00406,11.66049,2.60637,0.21272,1.98939,56.37192,7.18861,63.48659,253.82341,34.21368,2.19768,141.96091,7.9775,31.773,16.591,0.001,0,0.014,0,0,439.265,57.382,20.318,2.722,0,0.959,0.061,155.925,3511.082 -2020,11.5375,0.9065,419.0661,9.5553,47.6978,47697.8,1065.4294,225.4574,41.976,7.6609,34.4861,48.5031,11.7745,2.6294,0.1845,1.1524,60.6419,7.2666,66.6964,265.0801,35.0666,1.1595,148.2227,8.0812,30.725,15.181,0,0,0.01,0,0,444.821,57.463,18.867,2.531,0,0.911,0.055,155.925,3511.082 -2021,11.76766,0.88735,425.58022,9.67767,47.17596,47175.96,1060.7002,225.45703,41.9129,7.59914,34.34997,48.88879,11.83853,2.64399,0.17723,1.1063,61.78125,7.35248,67.92232,271.95969,35.3783,1.10411,152.77696,8.27191,29.711,13.891,0,0,0.008,0,0,449.654,57.54,17.531,2.354,0,0.865,0.049,155.925,3511.082 -2022,11.99782,0.8682,432.09434,9.80004,46.65412,46654.12,1055.971,225.45666,41.8498,7.53738,34.21384,49.27448,11.90256,2.65858,0.16996,1.0602,62.9206,7.43836,69.14824,278.83928,35.69,1.04872,157.33122,8.46262,28.73,12.71,0,0,0.006,0,0,453.859,57.613,16.302,2.189,0,0.822,0.043,155.925,3511.082 -2023,12.22798,0.84905,438.60846,9.92241,46.13228,46132.28,1051.2418,225.45629,41.7867,7.47562,34.07771,49.66017,11.96659,2.67317,0.16269,1.0141,64.05995,7.52424,70.37416,285.71887,36.0017,0.99333,161.88548,8.65333,27.782,11.63,0,0,0.004,0,0,457.517,57.682,15.172,2.036,0,0.781,0.039,155.925,3511.082 -2024,12.45814,0.8299,445.12258,10.04478,45.61044,45610.44,1046.5126,225.45592,41.7236,7.41386,33.94158,50.04586,12.03062,2.68776,0.15542,0.968,65.1993,7.61012,71.60008,292.59846,36.3134,0.93794,166.43974,8.84404,26.865,10.641,0,0,0.003,0,0,460.7,57.748,14.132,1.894,0,0.742,0.034,155.925,3511.082 -2025,12.6883,0.81075,451.6367,10.16715,45.0886,45088.6,1041.7833,225.45555,41.6605,7.3521,33.80545,50.43155,12.09465,2.70235,0.14815,0.9219,66.33865,7.696,72.826,299.47805,36.6251,0.88255,170.994,9.03475,25.979,9.737,0,0,0.002,0,0,463.469,57.811,13.175,1.761,0,0.705,0.031,155.925,3511.082 -2026,12.91846,0.7916,458.15082,10.28952,44.56676,44566.76,1037.0541,225.45518,41.5974,7.29034,33.66932,50.81724,12.15868,2.71694,0.14088,0.8758,67.478,7.78188,74.05192,306.35764,36.9368,0.82716,175.54826,9.22546,25.122,8.909,0,0,0.002,0,0,465.878,57.87,12.295,1.638,0,0.669,0.027,155.925,3511.082 -2027,13.14862,0.77245,464.66494,10.41189,44.04492,44044.92,1032.3249,225.45481,41.5343,7.22858,33.53319,51.20293,12.22271,2.73153,0.13361,0.8297,68.61735,7.86776,75.27784,313.23723,37.2485,0.77177,180.10252,9.41617,24.293,8.152,0,0,0.001,0,0,467.974,57.927,11.485,1.523,0,0.636,0.024,155.925,3511.082 -2028,13.37878,0.7533,471.17906,10.53426,43.52308,43523.08,1027.5957,225.45444,41.4712,7.16682,33.39706,51.58862,12.28674,2.74612,0.12634,0.7836,69.7567,7.95364,76.50376,320.11682,37.5602,0.71638,184.65678,9.60688,23.491,7.459,0,0,0.001,0,0,469.797,57.98,10.74,1.417,0,0.604,0.022,155.925,3511.082 -2029,13.60894,0.73415,477.69318,10.65663,43.00124,43001.24,1022.8665,225.45407,41.4081,7.10506,33.26093,51.97431,12.35077,2.76071,0.11907,0.7375,70.89605,8.03952,77.72968,326.99641,37.8719,0.66099,189.21104,9.79759,22.716,6.825,0,0,0.001,0,0,471.384,58.031,10.055,1.317,0,0.574,0.019,155.925,3511.082 -2030,13.8391,0.715,484.2073,10.779,42.4794,42479.4,1018.1373,225.4537,41.345,7.0433,33.1248,52.36,12.4148,2.7753,0.1118,0.6914,72.0354,8.1254,78.9556,333.876,38.1836,0.6056,193.7653,9.9883,21.966,6.245,0,0,0.001,0,0,472.764,58.08,9.424,1.225,0,0.545,0.017,155.925,3511.082 -2031,14.13385,0.708,493.52545,10.90391,41.50452,41504.52,1011.8253,224.72621,40.90273,6.95231,32.96601,52.7122,12.38727,2.77061,0.1119,0.66362,72.90303,8.22403,81.08502,341.18468,38.94891,0.6214,192.50584,10.11551,21.241,5.714,0,0,0,0,0,467.698,57.831,8.826,1.139,0,0.518,0.015,155.925,3511.082 -2032,14.4286,0.701,502.8436,11.02882,40.52964,40529.64,1005.5133,223.99872,40.46046,6.86132,32.80722,53.0644,12.35974,2.76592,0.112,0.63584,73.77066,8.32266,83.21444,348.49336,39.71422,0.6372,191.24638,10.24272,20.54,5.228,0,0,0,0,0,457.026,57.299,8.259,1.06,0,0.492,0.013,155.925,3511.082 -2033,14.72335,0.694,512.16175,11.15373,39.55476,39554.76,999.20136,223.27123,40.01819,6.77033,32.64843,53.4166,12.33221,2.76123,0.1121,0.60806,74.63829,8.42129,85.34386,355.80204,40.47953,0.653,189.98692,10.36993,19.862,4.784,0,0,0,0,0,441.474,56.499,7.72,0.985,0,0.467,0.012,155.925,3511.082 -2034,15.0181,0.687,521.4799,11.27864,38.57988,38579.88,992.88938,222.54374,39.57592,6.67934,32.48964,53.7688,12.30468,2.75654,0.1122,0.58028,75.50592,8.51992,87.47328,363.11072,41.24484,0.6688,188.72746,10.49714,19.207,4.377,0,0,0,0,0,421.679,55.444,7.207,0.916,0,0.444,0.011,155.925,3511.082 -2035,15.31285,0.68,530.79805,11.40355,37.605,37605,986.5774,221.81625,39.13365,6.58835,32.33085,54.121,12.27715,2.75185,0.1123,0.5525,76.37355,8.61855,89.6027,370.4194,42.01015,0.6846,187.468,10.62435,18.573,4.005,0,0,0,0,0,398.19,54.147,6.717,0.852,0,0.422,0.01,155.925,3511.082 -2036,15.6076,0.673,540.1162,11.52846,36.63012,36630.12,980.26542,221.08876,38.69138,6.49736,32.17206,54.4732,12.24962,2.74716,0.1124,0.52472,77.24118,8.71718,91.73212,377.72808,42.77546,0.7004,186.20854,10.75156,17.96,3.665,0,0,0,0,0,371.49,52.62,6.249,0.793,0,0.401,0.008,155.925,3511.082 -2037,15.90235,0.666,549.43435,11.65337,35.65524,35655.24,973.95344,220.36127,38.24911,6.40637,32.01327,54.8254,12.22209,2.74247,0.1125,0.49694,78.10881,8.81581,93.86154,385.03676,43.54077,0.7162,184.94908,10.87877,17.368,3.353,0,0,0,0,0,341.994,50.874,5.801,0.737,0,0.381,0.008,155.925,3511.082 -2038,16.1971,0.659,558.7525,11.77828,34.68036,34680.36,967.64146,219.63378,37.80684,6.31538,31.85448,55.1776,12.19456,2.73778,0.1126,0.46916,78.97644,8.91444,95.99096,392.34544,44.30608,0.732,183.68962,11.00598,16.794,3.068,0,0,0,0,0,310.067,48.92,5.372,0.686,0,0.362,0.007,155.925,3511.082 -2039,16.49185,0.652,568.07065,11.90319,33.70548,33705.48,961.32948,218.90629,37.36457,6.22439,31.69569,55.5298,12.16703,2.73309,0.1127,0.44138,79.84407,9.01307,98.12038,399.65412,45.07139,0.7478,182.43016,11.13319,16.24,2.807,0,0,0,0,0,276.024,46.769,4.96,0.638,0,0.344,0.006,155.925,3511.082 -2040,16.7866,0.645,577.3888,12.0281,32.7306,32730.6,955.0175,218.1788,36.9223,6.1334,31.5369,55.882,12.1395,2.7284,0.1128,0.4136,80.7117,9.1117,100.2498,406.9628,45.8367,0.7636,181.1707,11.2604,15.704,2.569,0,0,0,0,0,240.141,44.431,4.563,0.593,0,0.326,0.005,155.925,3511.082 -2041,17.1284,0.6381,587.33132,12.10488,32.06863,32068.63,950.1349,217.20395,36.58085,6.08412,31.38737,56.15821,12.17462,2.73746,0.11238,0.39687,80.10127,9.23927,101.83831,412.75679,46.27373,0.71926,179.22469,11.3309,15.186,2.35,0,0,0,0,0,208.923,42.209,4.198,0.551,0,0.31,0.005,155.925,3511.082 -2042,17.4702,0.6312,597.27384,12.18166,31.40666,31406.66,945.2523,216.2291,36.2394,6.03484,31.23784,56.43442,12.20974,2.74652,0.11196,0.38014,79.49084,9.36684,103.42682,418.55078,46.71076,0.67492,177.27868,11.4014,14.685,2.151,0,0,0,0,0,181.763,40.099,3.862,0.513,0,0.295,0.004,155.925,3511.082 -2043,17.812,0.6243,607.21636,12.25844,30.74469,30744.69,940.3697,215.25425,35.89795,5.98556,31.08831,56.71063,12.24486,2.75558,0.11154,0.36341,78.88041,9.49441,105.01533,424.34477,47.14779,0.63058,175.33267,11.4719,14.2,1.968,0,0,0,0,0,158.134,38.094,3.553,0.477,0,0.28,0.004,155.925,3511.082 -2044,18.1538,0.6174,617.15888,12.33522,30.08272,30082.72,935.4871,214.2794,35.5565,5.93628,30.93878,56.98684,12.27998,2.76464,0.11112,0.34668,78.26998,9.62198,106.60384,430.13876,47.58482,0.58624,173.38666,11.5424,13.732,1.801,0,0,0,0,0,137.576,36.189,3.269,0.444,0,0.266,0.003,155.925,3511.082 -2045,18.4956,0.6105,627.1014,12.412,29.42075,29420.75,930.6045,213.30455,35.21505,5.887,30.78925,57.26305,12.3151,2.7737,0.1107,0.32995,77.65955,9.74955,108.19235,435.93275,48.02185,0.5419,171.44065,11.6129,13.279,1.648,0,0,0,0,0,119.691,34.38,3.007,0.413,0,0.253,0.003,155.925,3511.082 -2046,18.8374,0.6036,637.04392,12.48878,28.75878,28758.78,925.7219,212.3297,34.8736,5.83772,30.63972,57.53926,12.35022,2.78276,0.11028,0.31322,77.04912,9.87712,109.78086,441.72674,48.45888,0.49756,169.49464,11.6834,12.84,1.507,0,0,0,0,0,104.131,32.661,2.767,0.384,0,0.24,0.003,155.925,3511.082 -2047,19.1792,0.5967,646.98644,12.56556,28.09681,28096.81,920.8393,211.35485,34.53215,5.78844,30.49019,57.81547,12.38534,2.79182,0.10986,0.29649,76.43869,10.00469,111.36937,447.52073,48.89591,0.45322,167.54863,11.7539,12.417,1.379,0,0,0,0,0,90.594,31.028,2.545,0.357,0,0.228,0.002,155.925,3511.082 -2048,19.521,0.5898,656.92896,12.64234,27.43484,27434.84,915.9567,210.38,34.1907,5.73916,30.34066,58.09168,12.42046,2.80088,0.10944,0.27976,75.82826,10.13226,112.95788,453.31472,49.33294,0.40888,165.60262,11.8244,12.007,1.262,0,0,0,0,0,78.817,29.476,2.342,0.332,0,0.217,0.002,155.925,3511.082 -2049,19.8628,0.5829,666.87148,12.71912,26.77287,26772.87,911.0741,209.40515,33.84925,5.68988,30.19113,58.36789,12.45558,2.80994,0.10902,0.26303,75.21783,10.25983,114.54639,459.10871,49.76997,0.36454,163.65661,11.8949,11.611,1.155,0,0,0,0,0,68.571,28.002,2.154,0.309,0,0.206,0.002,155.925,3511.082 -2050,20.2046,0.576,676.814,12.7959,26.1109,26110.9,906.1915,208.4303,33.5078,5.6406,30.0416,58.6441,12.4907,2.819,0.1086,0.2463,74.6074,10.3874,116.1349,464.9027,50.207,0.3202,161.7106,11.9654,11.227,1.057,0,0,0,0,0,59.657,26.602,1.982,0.287,0,0.195,0.002,155.925,3511.082 -2051,20.54375,0.5685,683.65001,12.85847,25.77037,25770.37,899.68938,207.70767,33.32257,5.59518,29.87913,58.85085,12.41897,2.80583,0.10848,0.23542,75.55522,10.56431,117.32942,469.21826,50.42871,0.30297,160.45046,12.17483,10.857,0.967,0,0,0,0,0,51.901,25.272,1.824,0.267,0,0.186,0.001,155.925,3511.082 -2052,20.8829,0.561,690.48602,12.92104,25.42984,25429.84,893.18726,206.98504,33.13734,5.54976,29.71666,59.0576,12.34724,2.79266,0.10836,0.22454,76.50304,10.74122,118.52394,473.53382,50.65042,0.28574,159.19032,12.38426,10.499,0.885,0,0,0,0,0,45.154,24.008,1.678,0.248,0,0.176,0.001,155.925,3511.082 -2053,21.22205,0.5535,697.32203,12.98361,25.08931,25089.31,886.68514,206.26241,32.95211,5.50434,29.55419,59.26435,12.27551,2.77949,0.10824,0.21366,77.45086,10.91813,119.71846,477.84938,50.87213,0.26851,157.93018,12.59369,10.152,0.809,0,0,0,0,0,39.284,22.808,1.543,0.231,0,0.168,0.001,155.925,3511.082 -2054,21.5612,0.546,704.15804,13.04618,24.74878,24748.78,880.18302,205.53978,32.76688,5.45892,29.39172,59.4711,12.20378,2.76632,0.10812,0.20278,78.39868,11.09504,120.91298,482.16494,51.09384,0.25128,156.67004,12.80312,9.817,0.741,0,0,0,0,0,34.177,21.668,1.42,0.215,0,0.159,0.001,155.925,3511.082 -2055,21.90035,0.5385,710.99405,13.10875,24.40825,24408.25,873.6809,204.81715,32.58165,5.4135,29.22925,59.67785,12.13205,2.75315,0.108,0.1919,79.3465,11.27195,122.1075,486.4805,51.31555,0.23405,155.4099,13.01255,9.493,0.678,0,0,0,0,0,29.734,20.584,1.306,0.2,0,0.151,0.001,155.925,3511.082 -2056,22.2395,0.531,717.83006,13.17132,24.06772,24067.72,867.17878,204.09452,32.39642,5.36808,29.06678,59.8846,12.06032,2.73998,0.10788,0.18102,80.29432,11.44886,123.30202,490.79606,51.53726,0.21682,154.14976,13.22198,9.18,0.62,0,0,0,0,0,25.869,19.555,1.202,0.186,0,0.144,0.001,155.925,3511.082 -2057,22.57865,0.5235,724.66607,13.23389,23.72719,23727.19,860.67666,203.37189,32.21119,5.32266,28.90431,60.09135,11.98859,2.72681,0.10776,0.17014,81.24214,11.62577,124.49654,495.11162,51.75897,0.19959,152.88962,13.43141,8.877,0.567,0,0,0,0,0,22.506,18.577,1.106,0.173,0,0.136,0.001,155.925,3511.082 -2058,22.9178,0.516,731.50208,13.29646,23.38666,23386.66,854.17454,202.64926,32.02596,5.27724,28.74184,60.2981,11.91686,2.71364,0.10764,0.15926,82.18996,11.80268,125.69106,499.42718,51.98068,0.18236,151.62948,13.64084,8.584,0.519,0,0,0,0,0,19.58,17.648,1.017,0.161,0,0.13,0.001,155.925,3511.082 -2059,23.25695,0.5085,738.33809,13.35903,23.04613,23046.13,847.67242,201.92663,31.84073,5.23182,28.57937,60.50485,11.84513,2.70047,0.10752,0.14838,83.13778,11.97959,126.88558,503.74274,52.20239,0.16513,150.36934,13.85027,8.301,0.475,0,0,0,0,0,17.035,16.766,0.936,0.149,0,0.123,0.001,155.925,3511.082 -2060,23.5961,0.501,745.1741,13.4216,22.7056,22705.6,841.1703,201.204,31.6555,5.1864,28.4169,60.7116,11.7734,2.6873,0.1074,0.1375,84.0856,12.1565,128.0801,508.0583,52.4241,0.1479,149.1092,14.0597,8.027,0.435,0,0,0,0,0,14.82,15.928,0.861,0.139,0,0.117,0.001,155.925,3511.082 -2061,23.83271,0.4921,748.66794,13.47346,22.44148,22441.48,836.60001,200.44051,31.50876,5.15328,28.30481,60.89133,11.78015,2.69384,0.10732,0.13105,85.06506,12.33644,129.34352,512.72379,52.64359,0.146,147.84735,14.00293,7.762,0.398,0,0,0,0,0,12.893,15.131,0.792,0.129,0,0.111,0,155.925,3511.082 -2062,24.06932,0.4832,752.16178,13.52532,22.17736,22177.36,832.02972,199.67702,31.36202,5.12016,28.19272,61.07106,11.7869,2.70038,0.10724,0.1246,86.04452,12.51638,130.60694,517.38928,52.86308,0.1441,146.5855,13.94616,7.506,0.364,0,0,0,0,0,11.217,14.375,0.729,0.12,0,0.106,0,155.925,3511.082 -2063,24.30593,0.4743,755.65562,13.57718,21.91324,21913.24,827.45943,198.91353,31.21528,5.08704,28.08063,61.25079,11.79365,2.70692,0.10716,0.11815,87.02398,12.69632,131.87036,522.05477,53.08257,0.1422,145.32365,13.88939,7.258,0.333,0,0,0,0,0,9.759,13.656,0.67,0.112,0,0.1,0,155.925,3511.082 -2064,24.54254,0.4654,759.14946,13.62904,21.64912,21649.12,822.88914,198.15004,31.06854,5.05392,27.96854,61.43052,11.8004,2.71346,0.10708,0.1117,88.00344,12.87626,133.13378,526.72026,53.30206,0.1403,144.0618,13.83262,7.019,0.305,0,0,0,0,0,8.49,12.973,0.617,0.104,0,0.095,0,155.925,3511.082 -2065,24.77915,0.4565,762.6433,13.6809,21.385,21385,818.31885,197.38655,30.9218,5.0208,27.85645,61.61025,11.80715,2.72,0.107,0.10525,88.9829,13.0562,134.3972,531.38575,53.52155,0.1384,142.79995,13.77585,6.787,0.279,0,0,0,0,0,7.387,12.325,0.567,0.097,0,0.091,0,155.925,3511.082 -2066,25.01576,0.4476,766.13714,13.73276,21.12088,21120.88,813.74856,196.62306,30.77506,4.98768,27.74436,61.78998,11.8139,2.72654,0.10692,0.0988,89.96236,13.23614,135.66062,536.05124,53.74104,0.1365,141.5381,13.71908,6.563,0.255,0,0,0,0,0,6.426,11.708,0.522,0.09,0,0.086,0,155.925,3511.082 -2067,25.25237,0.4387,769.63098,13.78462,20.85676,20856.76,809.17827,195.85957,30.62832,4.95456,27.63227,61.96971,11.82065,2.73308,0.10684,0.09235,90.94182,13.41608,136.92404,540.71673,53.96053,0.1346,140.27625,13.66231,6.346,0.233,0,0,0,0,0,5.591,11.123,0.48,0.084,0,0.082,0,155.925,3511.082 -2068,25.48898,0.4298,773.12482,13.83648,20.59264,20592.64,804.60798,195.09608,30.48158,4.92144,27.52018,62.14944,11.8274,2.73962,0.10676,0.0859,91.92128,13.59602,138.18746,545.38222,54.18002,0.1327,139.0144,13.60554,6.137,0.214,0,0,0,0,0,4.864,10.567,0.442,0.078,0,0.078,0,155.925,3511.082 -2069,25.72559,0.4209,776.61866,13.88834,20.32852,20328.52,800.03769,194.33259,30.33484,4.88832,27.40809,62.32917,11.83415,2.74616,0.10668,0.07945,92.90074,13.77596,139.45088,550.04771,54.39951,0.1308,137.75255,13.54877,5.935,0.195,0,0,0,0,0,4.232,10.038,0.407,0.072,0,0.074,0,155.925,3511.082 -2070,25.9622,0.412,780.1125,13.9402,20.0644,20064.4,795.4674,193.5691,30.1881,4.8552,27.296,62.5089,11.8409,2.7527,0.1066,0.073,93.8802,13.9559,140.7143,554.7132,54.619,0.1289,136.4907,13.492,5.739,0.179,0,0,0,0,0,3.682,9.537,0.374,0.067,0,0.07,0,155.925,3511.082 -2071,26.10659,0.4017,784.24064,14.00204,19.90252,19902.52,791.64666,193.07591,30.06564,4.83481,27.20364,62.64236,11.8161,2.75174,0.10626,0.06942,94.1193,14.18108,141.11548,559.74698,54.42783,0.12734,135.66527,13.63038,5.549,0.164,0,0,0,0,0,3.203,9.06,0.344,0.063,0,0.067,0,155.925,3511.082 -2072,26.25098,0.3914,788.36878,14.06388,19.74064,19740.64,787.82592,192.58272,29.94318,4.81442,27.11128,62.77582,11.7913,2.75078,0.10592,0.06584,94.3584,14.40626,141.51666,564.78076,54.23666,0.12578,134.83984,13.76876,5.366,0.15,0,0,0,0,0,2.787,8.607,0.317,0.058,0,0.063,0,155.925,3511.082 -2073,26.39537,0.3811,792.49692,14.12572,19.57876,19578.76,784.00518,192.08953,29.82072,4.79403,27.01892,62.90928,11.7665,2.74982,0.10558,0.06226,94.5975,14.63144,141.91784,569.81454,54.04549,0.12422,134.01441,13.90714,5.189,0.137,0,0,0,0,0,2.424,8.176,0.291,0.054,0,0.06,0,155.925,3511.082 -2074,26.53976,0.3708,796.62506,14.18756,19.41688,19416.88,780.18444,191.59634,29.69826,4.77364,26.92656,63.04274,11.7417,2.74886,0.10524,0.05868,94.8366,14.85662,142.31902,574.84832,53.85432,0.12266,133.18898,14.04552,5.018,0.125,0,0,0,0,0,2.109,7.768,0.268,0.05,0,0.057,0,155.925,3511.082 -2075,26.68415,0.3605,800.7532,14.2494,19.255,19255,776.3637,191.10315,29.5758,4.75325,26.8342,63.1762,11.7169,2.7479,0.1049,0.0551,95.0757,15.0818,142.7202,579.8821,53.66315,0.1211,132.36355,14.1839,4.852,0.115,0,0,0,0,0,1.835,7.379,0.247,0.047,0,0.054,0,155.925,3511.082 -2076,26.82854,0.3502,804.88134,14.31124,19.09312,19093.12,772.54296,190.60996,29.45334,4.73286,26.74184,63.30966,11.6921,2.74694,0.10456,0.05152,95.3148,15.30698,143.12138,584.91588,53.47198,0.11954,131.53812,14.32228,4.692,0.105,0,0,0,0,0,1.596,7.01,0.227,0.043,0,0.052,0,155.925,3511.082 -2077,26.97293,0.3399,809.00948,14.37308,18.93124,18931.24,768.72222,190.11677,29.33088,4.71247,26.64948,63.44312,11.6673,2.74598,0.10422,0.04794,95.5539,15.53216,143.52256,589.94966,53.28081,0.11798,130.71269,14.46066,4.537,0.096,0,0,0,0,0,1.389,6.66,0.209,0.04,0,0.049,0,155.925,3511.082 -2078,27.11732,0.3296,813.13762,14.43492,18.76936,18769.36,764.90148,189.62358,29.20842,4.69208,26.55712,63.57658,11.6425,2.74502,0.10388,0.04436,95.793,15.75734,143.92374,594.98344,53.08964,0.11642,129.88726,14.59904,4.388,0.088,0,0,0,0,0,1.208,6.327,0.192,0.038,0,0.046,0,155.925,3511.082 -2079,27.26171,0.3193,817.26576,14.49676,18.60748,18607.48,761.08074,189.13039,29.08596,4.67169,26.46476,63.71004,11.6177,2.74406,0.10354,0.04078,96.0321,15.98252,144.32492,600.01722,52.89847,0.11486,129.06183,14.73742,4.243,0.08,0,0,0,0,0,1.051,6.01,0.177,0.035,0,0.044,0,155.925,3511.082 -2080,27.4061,0.309,821.3939,14.5586,18.4456,18445.6,757.26,188.6372,28.9635,4.6513,26.3724,63.8435,11.5929,2.7431,0.1032,0.0372,96.2712,16.2077,144.7261,605.051,52.7073,0.1133,128.2364,14.8758,4.103,0.074,0,0,0,0,0,0.915,5.71,0.162,0.033,0,0.042,0,155.925,3511.082 -2081,27.49916,0.2975,826.32941,14.63201,18.04869,18048.69,753.34328,187.89006,28.78615,4.62775,26.23123,63.99565,11.54293,2.73607,0.1026,0.03348,95.76444,16.48786,145.0082,609.85911,52.45431,0.11214,127.43725,14.99349,3.967,0.067,0,0,0,0,0,0.796,5.424,0.149,0.03,0,0.04,0,155.925,3511.082 -2082,27.59222,0.286,831.26492,14.70542,17.65178,17651.78,749.42656,187.14292,28.6088,4.6042,26.09006,64.1478,11.49296,2.72904,0.102,0.02976,95.25768,16.76802,145.2903,614.66722,52.20132,0.11098,126.6381,15.11118,3.836,0.062,0,0,0,0,0,0.692,5.153,0.138,0.028,0,0.038,0,155.925,3511.082 -2083,27.68528,0.2745,836.20043,14.77883,17.25487,17254.87,745.50984,186.39578,28.43145,4.58065,25.94889,64.29995,11.44299,2.72201,0.1014,0.02604,94.75092,17.04818,145.5724,619.47533,51.94833,0.10982,125.83895,15.22887,3.71,0.056,0,0,0,0,0,0.602,4.895,0.127,0.026,0,0.036,0,155.925,3511.082 -2084,27.77834,0.263,841.13594,14.85224,16.85796,16857.96,741.59312,185.64864,28.2541,4.5571,25.80772,64.4521,11.39302,2.71498,0.1008,0.02232,94.24416,17.32834,145.8545,624.28344,51.69534,0.10866,125.0398,15.34656,3.587,0.052,0,0,0,0,0,0.524,4.651,0.116,0.024,0,0.034,0,155.925,3511.082 -2085,27.8714,0.2515,846.07145,14.92565,16.46105,16461.05,737.6764,184.9015,28.07675,4.53355,25.66655,64.60425,11.34305,2.70795,0.1002,0.0186,93.7374,17.6085,146.1366,629.09155,51.44235,0.1075,124.24065,15.46425,3.469,0.047,0,0,0,0,0,0.456,4.418,0.107,0.023,0,0.032,0,155.925,3511.082 -2086,27.96446,0.24,851.00696,14.99906,16.06414,16064.14,733.75968,184.15436,27.8994,4.51,25.52538,64.7564,11.29308,2.70092,0.0996,0.01488,93.23064,17.88866,146.4187,633.89966,51.18936,0.10634,123.4415,15.58194,3.355,0.043,0,0,0,0,0,0.397,4.197,0.099,0.021,0,0.031,0,155.925,3511.082 -2087,28.05752,0.2285,855.94247,15.07247,15.66723,15667.23,729.84296,183.40722,27.72205,4.48645,25.38421,64.90855,11.24311,2.69389,0.099,0.01116,92.72388,18.16882,146.7008,638.70777,50.93637,0.10518,122.64235,15.69963,3.244,0.039,0,0,0,0,0,0.345,3.987,0.091,0.02,0,0.029,0,155.925,3511.082 -2088,28.15058,0.217,860.87798,15.14588,15.27032,15270.32,725.92624,182.66008,27.5447,4.4629,25.24304,65.0607,11.19314,2.68686,0.0984,0.00744,92.21712,18.44898,146.9829,643.51588,50.68338,0.10402,121.8432,15.81732,3.137,0.036,0,0,0,0,0,0.3,3.788,0.083,0.018,0,0.028,0,155.925,3511.082 -2089,28.24364,0.2055,865.81349,15.21929,14.87341,14873.41,722.00952,181.91294,27.36735,4.43935,25.10187,65.21285,11.14317,2.67983,0.0978,0.00372,91.71036,18.72914,147.265,648.32399,50.43039,0.10286,121.04405,15.93501,3.033,0.033,0,0,0,0,0,0.261,3.599,0.077,0.017,0,0.026,0,155.925,3511.082 -2090,28.3367,0.194,870.749,15.2927,14.4765,14476.5,718.0928,181.1658,27.19,4.4158,24.9607,65.365,11.0932,2.6728,0.0972,0,91.2036,19.0093,147.5471,653.1321,50.1774,0.1017,120.2449,16.0527,2.933,0.03,0,0,0,0,0,0.227,3.419,0.071,0.016,0,0.025,0,155.925,3511.082 -2091,28.37703,0.1823,872.43319,15.34099,14.31449,14314.49,715.31184,180.67318,27.09516,4.39918,24.85535,65.54619,11.06043,2.66808,0.09635,0,90.20593,19.2916,147.62282,658.16476,49.84386,0.10064,121.40096,16.13966,2.836,0.028,0,0,0,0,0,0.198,3.248,0.065,0.015,0,0.024,0,155.925,3511.082 -2092,28.41736,0.1706,874.11738,15.38928,14.15248,14152.48,712.53088,180.18056,27.00032,4.38256,24.75,65.72738,11.02766,2.66336,0.0955,0,89.20826,19.5739,147.69854,663.19742,49.51032,0.09958,122.55702,16.22662,2.743,0.025,0,0,0,0,0,0.172,3.085,0.06,0.014,0,0.023,0,155.925,3511.082 -2093,28.45769,0.1589,875.80157,15.43757,13.99047,13990.47,709.74992,179.68794,26.90548,4.36594,24.64465,65.90857,10.99489,2.65864,0.09465,0,88.21059,19.8562,147.77426,668.23008,49.17678,0.09852,123.71308,16.31358,2.652,0.023,0,0,0,0,0,0.15,2.931,0.055,0.013,0,0.022,0,155.925,3511.082 -2094,28.49802,0.1472,877.48576,15.48586,13.82846,13828.46,706.96896,179.19532,26.81064,4.34932,24.5393,66.08976,10.96212,2.65392,0.0938,0,87.21292,20.1385,147.84998,673.26274,48.84324,0.09746,124.86914,16.40054,2.565,0.021,0,0,0,0,0,0.13,2.785,0.051,0.012,0,0.02,0,155.925,3511.082 -2095,28.53835,0.1355,879.16995,15.53415,13.66645,13666.45,704.188,178.7027,26.7158,4.3327,24.43395,66.27095,10.92935,2.6492,0.09295,0,86.21525,20.4208,147.9257,678.2954,48.5097,0.0964,126.0252,16.4875,2.48,0.019,0,0,0,0,0,0.113,2.645,0.047,0.011,0,0.019,0,155.925,3511.082 -2096,28.57868,0.1238,880.85414,15.58244,13.50444,13504.44,701.40704,178.21008,26.62096,4.31608,24.3286,66.45214,10.89658,2.64448,0.0921,0,85.21758,20.7031,148.00142,683.32806,48.17616,0.09534,127.18126,16.57446,2.398,0.018,0,0,0,0,0,0.099,2.513,0.043,0.01,0,0.018,0,155.925,3511.082 -2097,28.61901,0.1121,882.53833,15.63073,13.34243,13342.43,698.62608,177.71746,26.52612,4.29946,24.22325,66.63333,10.86381,2.63976,0.09125,0,84.21991,20.9854,148.07714,688.36072,47.84262,0.09428,128.33732,16.66142,2.319,0.016,0,0,0,0,0,0.086,2.387,0.039,0.009,0,0.018,0,155.925,3511.082 -2098,28.65934,0.1004,884.22252,15.67902,13.18042,13180.42,695.84512,177.22484,26.43128,4.28284,24.1179,66.81452,10.83104,2.63504,0.0904,0,83.22224,21.2677,148.15286,693.39338,47.50908,0.09322,129.49338,16.74838,2.243,0.015,0,0,0,0,0,0.075,2.268,0.036,0.009,0,0.017,0,155.925,3511.082 -2099,28.69967,0.0887,885.90671,15.72731,13.01841,13018.41,693.06416,176.73222,26.33644,4.26622,24.01255,66.99571,10.79827,2.63032,0.08955,0,82.22457,21.55,148.22858,698.42604,47.17554,0.09216,130.64944,16.83534,2.169,0.014,0,0,0,0,0,0.065,2.155,0.033,0.008,0,0.016,0,155.925,3511.082 -2100,28.74,0.077,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.097,0.012,0,0,0,0,0,0.056,2.047,0.031,0.008,0,0.015,0,155.925,3511.082 -2101,28.74,0.07392,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,2.028,0.011,0,0,0,0,0,0.049,1.945,0.028,0.007,0,0.014,0,155.925,3511.082 -2102,28.74,0.07084,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.961,0.01,0,0,0,0,0,0.042,1.847,0.026,0.007,0,0.014,0,155.925,3511.082 -2103,28.74,0.06776,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.896,0.01,0,0,0,0,0,0.037,1.755,0.024,0.006,0,0.013,0,155.925,3511.082 -2104,28.74,0.06468,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.834,0.009,0,0,0,0,0,0.032,1.667,0.022,0.006,0,0.012,0,155.925,3511.082 -2105,28.74,0.0616,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.773,0.008,0,0,0,0,0,0.028,1.584,0.02,0.005,0,0.012,0,155.925,3511.082 -2106,28.74,0.05852,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.715,0.007,0,0,0,0,0,0.024,1.505,0.019,0.005,0,0.011,0,155.925,3511.082 -2107,28.74,0.05544,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.658,0.007,0,0,0,0,0,0.021,1.429,0.017,0.005,0,0.011,0,155.925,3511.082 -2108,28.74,0.05236,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.603,0.006,0,0,0,0,0,0.018,1.358,0.016,0.004,0,0.01,0,155.925,3511.082 -2109,28.74,0.04928,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.55,0.006,0,0,0,0,0,0.016,1.29,0.014,0.004,0,0.009,0,155.925,3511.082 -2110,28.74,0.0462,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.499,0.005,0,0,0,0,0,0.014,1.226,0.013,0.004,0,0.009,0,155.925,3511.082 -2111,28.74,0.04312,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.45,0.005,0,0,0,0,0,0.012,1.164,0.012,0.003,0,0.009,0,155.925,3511.082 -2112,28.74,0.04004,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.402,0.004,0,0,0,0,0,0.01,1.106,0.011,0.003,0,0.008,0,155.925,3511.082 -2113,28.74,0.03696,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.356,0.004,0,0,0,0,0,0.009,1.051,0.01,0.003,0,0.008,0,155.925,3511.082 -2114,28.74,0.03388,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.311,0.004,0,0,0,0,0,0.008,0.998,0.01,0.003,0,0.007,0,155.925,3511.082 -2115,28.74,0.0308,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.268,0.003,0,0,0,0,0,0.007,0.948,0.009,0.003,0,0.007,0,155.925,3511.082 -2116,28.74,0.02772,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.226,0.003,0,0,0,0,0,0.006,0.901,0.008,0.002,0,0.007,0,155.925,3511.082 -2117,28.74,0.02464,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.185,0.003,0,0,0,0,0,0.005,0.856,0.007,0.002,0,0.006,0,155.925,3511.082 -2118,28.74,0.02156,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.146,0.003,0,0,0,0,0,0.005,0.813,0.007,0.002,0,0.006,0,155.925,3511.082 -2119,28.74,0.01848,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.108,0.002,0,0,0,0,0,0.004,0.772,0.006,0.002,0,0.006,0,155.925,3511.082 -2120,28.74,0.0154,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.072,0.002,0,0,0,0,0,0.003,0.734,0.006,0.002,0,0.005,0,155.925,3511.082 -2121,28.74,0.01232,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.036,0.002,0,0,0,0,0,0.003,0.697,0.005,0.002,0,0.005,0,155.925,3511.082 -2122,28.74,0.00924,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,1.002,0.002,0,0,0,0,0,0.003,0.662,0.005,0.002,0,0.005,0,155.925,3511.082 -2123,28.74,0.00616,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.969,0.002,0,0,0,0,0,0.002,0.629,0.005,0.001,0,0.005,0,155.925,3511.082 -2124,28.74,0.00308,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.937,0.001,0,0,0,0,0,0.002,0.598,0.004,0.001,0,0.004,0,155.925,3511.082 -2125,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.906,0.001,0,0,0,0,0,0.002,0.568,0.004,0.001,0,0.004,0,155.925,3511.082 -2126,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.876,0.001,0,0,0,0,0,0.001,0.539,0.004,0.001,0,0.004,0,155.925,3511.082 -2127,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.847,0.001,0,0,0,0,0,0.001,0.512,0.003,0.001,0,0.004,0,155.925,3511.082 -2128,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.819,0.001,0,0,0,0,0,0.001,0.487,0.003,0.001,0,0.004,0,155.925,3511.082 -2129,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.792,0.001,0,0,0,0,0,0.001,0.462,0.003,0.001,0,0.003,0,155.925,3511.082 -2130,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.766,0.001,0,0,0,0,0,0.001,0.439,0.003,0.001,0,0.003,0,155.925,3511.082 -2131,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.741,0.001,0,0,0,0,0,0.001,0.417,0.002,0.001,0,0.003,0,155.925,3511.082 -2132,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.717,0.001,0,0,0,0,0,0.001,0.397,0.002,0.001,0,0.003,0,155.925,3511.082 -2133,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.693,0.001,0,0,0,0,0,0.001,0.377,0.002,0.001,0,0.003,0,155.925,3511.082 -2134,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.67,0.001,0,0,0,0,0,0,0.358,0.002,0.001,0,0.003,0,155.925,3511.082 -2135,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.648,0.001,0,0,0,0,0,0,0.34,0.002,0.001,0,0.002,0,155.925,3511.082 -2136,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.627,0.001,0,0,0,0,0,0,0.323,0.002,0.001,0,0.002,0,155.925,3511.082 -2137,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.606,0,0,0,0,0,0,0,0.307,0.001,0.001,0,0.002,0,155.925,3511.082 -2138,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.586,0,0,0,0,0,0,0,0.291,0.001,0,0,0.002,0,155.925,3511.082 -2139,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.567,0,0,0,0,0,0,0,0.277,0.001,0,0,0.002,0,155.925,3511.082 -2140,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.548,0,0,0,0,0,0,0,0.263,0.001,0,0,0.002,0,155.925,3511.082 -2141,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.53,0,0,0,0,0,0,0,0.25,0.001,0,0,0.002,0,155.925,3511.082 -2142,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.512,0,0,0,0,0,0,0,0.237,0.001,0,0,0.002,0,155.925,3511.082 -2143,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.495,0,0,0,0,0,0,0,0.226,0.001,0,0,0.002,0,155.925,3511.082 -2144,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.479,0,0,0,0,0,0,0,0.214,0.001,0,0,0.002,0,155.925,3511.082 -2145,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.463,0,0,0,0,0,0,0,0.204,0.001,0,0,0.001,0,155.925,3511.082 -2146,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.448,0,0,0,0,0,0,0,0.193,0.001,0,0,0.001,0,155.925,3511.082 -2147,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.433,0,0,0,0,0,0,0,0.184,0.001,0,0,0.001,0,155.925,3511.082 -2148,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.419,0,0,0,0,0,0,0,0.175,0.001,0,0,0.001,0,155.925,3511.082 -2149,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.405,0,0,0,0,0,0,0,0.166,0.001,0,0,0.001,0,155.925,3511.082 -2150,28.74,0,887.5909,15.7756,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.7655,2.6256,0.0887,0,81.2269,21.8323,148.3043,703.4587,46.842,0.0911,131.8055,16.9223,0.392,0,0,0,0,0,0,0,0.157,0,0,0,0.001,0,155.925,3511.082 -2151,28.470205,0,887.7612,15.750727,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.656371,2.5994163,0.087873469,0.007146939,81.237246,21.837794,148.35837,703.62182,46.859673,0.091385714,131.82622,16.758923,0.379,0,0,0,0,0,0,0,0.15,0,0,0,0.001,0,155.925,3511.082 -2152,28.20041,0,887.93151,15.725853,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.547243,2.5732327,0.087046939,0.014293878,81.247592,21.843288,148.41245,703.78494,46.877347,0.091671429,131.84693,16.595547,0.366,0,0,0,0,0,0,0,0.142,0,0,0,0.001,0,155.925,3511.082 -2153,27.930615,0,888.10181,15.70098,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.438114,2.547049,0.086220408,0.021440816,81.257938,21.848782,148.46652,703.94806,46.89502,0.091957143,131.86765,16.43217,0.354,0,0,0,0,0,0,0,0.135,0,0,0,0.001,0,155.925,3511.082 -2154,27.66082,0,888.27211,15.676106,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.328986,2.5208653,0.085393878,0.028587755,81.268284,21.854276,148.5206,704.11118,46.912694,0.092242857,131.88837,16.268794,0.342,0,0,0,0,0,0,0,0.128,0,0,0,0.001,0,155.925,3511.082 -2155,27.391026,0,888.44242,15.651233,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.219857,2.4946816,0.084567347,0.035734694,81.27863,21.859769,148.57467,704.2743,46.930367,0.092528571,131.90908,16.105417,0.331,0,0,0,0,0,0,0,0.122,0,0,0,0.001,0,155.925,3511.082 -2156,27.121231,0,888.61272,15.626359,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.110729,2.468498,0.083740816,0.042881633,81.288976,21.865263,148.62875,704.43742,46.948041,0.092814286,131.9298,15.942041,0.32,0,0,0,0,0,0,0,0.116,0,0,0,0.001,0,155.925,3511.082 -2157,26.851436,0,888.78302,15.601486,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,10.0016,2.4423143,0.082914286,0.050028571,81.299321,21.870757,148.68282,704.60054,46.965714,0.0931,131.95051,15.778664,0.31,0,0,0,0,0,0,0,0.11,0,0,0,0.001,0,155.925,3511.082 -2158,26.581641,0,888.95332,15.576612,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.8924714,2.4161306,0.082087755,0.05717551,81.309667,21.876251,148.7369,704.76366,46.983388,0.093385714,131.97123,15.615288,0.299,0,0,0,0,0,0,0,0.104,0,0,0,0.001,0,155.925,3511.082 -2159,26.311846,0,889.12363,15.551739,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.7833429,2.3899469,0.081261224,0.064322449,81.320013,21.881745,148.79097,704.92678,47.001061,0.093671429,131.99195,15.451911,0.29,0,0,0,0,0,0,0,0.099,0,0,0,0.001,0,155.925,3511.082 -2160,26.042051,0,889.29393,15.526865,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.6742143,2.3637633,0.080434694,0.071469388,81.330359,21.887239,148.84504,705.0899,47.018735,0.093957143,132.01266,15.288535,0.28,0,0,0,0,0,0,0,0.094,0,0,0,0.001,0,155.925,3511.082 -2161,25.772256,0,889.46423,15.501992,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.5650857,2.3375796,0.079608163,0.078616327,81.340705,21.892733,148.89912,705.25302,47.036408,0.094242857,132.03338,15.125158,0.271,0,0,0,0,0,0,0,0.09,0,0,0,0.001,0,155.925,3511.082 -2162,25.502461,0,889.63454,15.477118,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.4559571,2.3113959,0.078781633,0.085763265,81.351051,21.898227,148.95319,705.41614,47.054082,0.094528571,132.0541,14.961782,0.262,0,0,0,0,0,0,0,0.085,0,0,0,0.001,0,155.925,3511.082 -2163,25.232666,0,889.80484,15.452245,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.3468286,2.2852122,0.077955102,0.092910204,81.361397,21.90372,149.00727,705.57927,47.071755,0.094814286,132.07481,14.798405,0.253,0,0,0,0,0,0,0,0.081,0,0,0,0.001,0,155.925,3511.082 -2164,24.962871,0,889.97514,15.427371,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.2377,2.2590286,0.077128571,0.10005714,81.371743,21.909214,149.06134,705.74239,47.089429,0.0951,132.09553,14.635029,0.245,0,0,0,0,0,0,0,0.077,0,0,0,0.001,0,155.925,3511.082 -2165,24.693077,0,890.14545,15.402498,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.1285714,2.2328449,0.076302041,0.10720408,81.382089,21.914708,149.11542,705.90551,47.107102,0.095385714,132.11624,14.471652,0.237,0,0,0,0,0,0,0,0.073,0,0,0,0.001,0,155.925,3511.082 -2166,24.423282,0,890.31575,15.377624,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,9.0194429,2.2066612,0.07547551,0.11435102,81.392435,21.920202,149.16949,706.06863,47.124776,0.095671429,132.13696,14.308276,0.229,0,0,0,0,0,0,0,0.069,0,0,0,0.001,0,155.925,3511.082 -2167,24.153487,0,890.48605,15.352751,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.9103143,2.1804776,0.07464898,0.12149796,81.402781,21.925696,149.22357,706.23175,47.142449,0.095957143,132.15768,14.144899,0.221,0,0,0,0,0,0,0,0.066,0,0,0,0,0,155.925,3511.082 -2168,23.883692,0,890.65636,15.327878,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.8011857,2.1542939,0.073822449,0.1286449,81.413127,21.93119,149.27764,706.39487,47.160122,0.096242857,132.17839,13.981522,0.214,0,0,0,0,0,0,0,0.063,0,0,0,0,0,155.925,3511.082 -2169,23.613897,0,890.82666,15.303004,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.6920571,2.1281102,0.072995918,0.13579184,81.423472,21.936684,149.33172,706.55799,47.177796,0.096528571,132.19911,13.818146,0.207,0,0,0,0,0,0,0,0.059,0,0,0,0,0,155.925,3511.082 -2170,23.344102,0,890.99696,15.278131,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.5829286,2.1019265,0.072169388,0.14293878,81.433818,21.942178,149.38579,706.72111,47.195469,0.096814286,132.21983,13.654769,0.2,0,0,0,0,0,0,0,0.056,0,0,0,0,0,155.925,3511.082 -2171,23.074307,0,891.16726,15.253257,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.4738,2.0757429,0.071342857,0.15008571,81.444164,21.947671,149.43986,706.88423,47.213143,0.0971,132.24054,13.491393,0.194,0,0,0,0,0,0,0,0.054,0,0,0,0,0,155.925,3511.082 -2172,22.804512,0,891.33757,15.228384,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.3646714,2.0495592,0.070516327,0.15723265,81.45451,21.953165,149.49394,707.04735,47.230816,0.097385714,132.26126,13.328016,0.187,0,0,0,0,0,0,0,0.051,0,0,0,0,0,155.925,3511.082 -2173,22.534717,0,891.50787,15.20351,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.2555429,2.0233755,0.069689796,0.16437959,81.464856,21.958659,149.54801,707.21047,47.24849,0.097671429,132.28198,13.16464,0.181,0,0,0,0,0,0,0,0.048,0,0,0,0,0,155.925,3511.082 -2174,22.264922,0,891.67817,15.178637,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.1464143,1.9971918,0.068863265,0.17152653,81.475202,21.964153,149.60209,707.37359,47.266163,0.097957143,132.30269,13.001263,0.175,0,0,0,0,0,0,0,0.046,0,0,0,0,0,155.925,3511.082 -2175,21.995128,0,891.84848,15.153763,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,8.0372857,1.9710082,0.068036735,0.17867347,81.485548,21.969647,149.65616,707.53671,47.283837,0.098242857,132.32341,12.837887,0.169,0,0,0,0,0,0,0,0.044,0,0,0,0,0,155.925,3511.082 -2176,21.725333,0,892.01878,15.12889,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.9281571,1.9448245,0.067210204,0.18582041,81.495894,21.975141,149.71024,707.69983,47.30151,0.098528571,132.34412,12.67451,0.164,0,0,0,0,0,0,0,0.042,0,0,0,0,0,155.925,3511.082 -2177,21.455538,0,892.18908,15.104016,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.8190286,1.9186408,0.066383673,0.19296735,81.50624,21.980635,149.76431,707.86295,47.319184,0.098814286,132.36484,12.511134,0.158,0,0,0,0,0,0,0,0.039,0,0,0,0,0,155.925,3511.082 -2178,21.185743,0,892.35939,15.079143,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.7099,1.8924571,0.065557143,0.20011429,81.516586,21.986129,149.81839,708.02607,47.336857,0.0991,132.38556,12.347757,0.153,0,0,0,0,0,0,0,0.037,0,0,0,0,0,155.925,3511.082 -2179,20.915948,0,892.52969,15.054269,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.6007714,1.8662735,0.064730612,0.20726122,81.526932,21.991622,149.87246,708.18919,47.354531,0.099385714,132.40627,12.184381,0.148,0,0,0,0,0,0,0,0.036,0,0,0,0,0,155.925,3511.082 -2180,20.646153,0,892.69999,15.029396,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.4916429,1.8400898,0.063904082,0.21440816,81.537278,21.997116,149.92653,708.35231,47.372204,0.099671429,132.42699,12.021004,0.143,0,0,0,0,0,0,0,0.034,0,0,0,0,0,155.925,3511.082 -2181,20.376358,0,892.87029,15.004522,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.3825143,1.8139061,0.063077551,0.2215551,81.547623,22.00261,149.98061,708.51543,47.389878,0.099957143,132.44771,11.857628,0.138,0,0,0,0,0,0,0,0.032,0,0,0,0,0,155.925,3511.082 -2182,20.106563,0,893.0406,14.979649,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.2733857,1.7877224,0.06225102,0.22870204,81.557969,22.008104,150.03468,708.67855,47.407551,0.10024286,132.46842,11.694251,0.134,0,0,0,0,0,0,0,0.031,0,0,0,0,0,155.925,3511.082 -2183,19.836768,0,893.2109,14.954776,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.1642571,1.7615388,0.06142449,0.23584898,81.568315,22.013598,150.08876,708.84167,47.425224,0.10052857,132.48914,11.530874,0.129,0,0,0,0,0,0,0,0.029,0,0,0,0,0,155.925,3511.082 -2184,19.566973,0,893.3812,14.929902,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,7.0551286,1.7353551,0.060597959,0.24299592,81.578661,22.019092,150.14283,709.00479,47.442898,0.10081429,132.50986,11.367498,0.125,0,0,0,0,0,0,0,0.028,0,0,0,0,0,155.925,3511.082 -2185,19.297179,0,893.55151,14.905029,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.946,1.7091714,0.059771429,0.25014286,81.589007,22.024586,150.19691,709.16791,47.460571,0.1011,132.53057,11.204121,0.121,0,0,0,0,0,0,0,0.026,0,0,0,0,0,155.925,3511.082 -2186,19.027384,0,893.72181,14.880155,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.8368714,1.6829878,0.058944898,0.2572898,81.599353,22.03008,150.25098,709.33103,47.478245,0.10138571,132.55129,11.040745,0.117,0,0,0,0,0,0,0,0.025,0,0,0,0,0,155.925,3511.082 -2187,18.757589,0,893.89211,14.855282,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.7277429,1.6568041,0.058118367,0.26443673,81.609699,22.035573,150.30506,709.49416,47.495918,0.10167143,132.572,10.877368,0.113,0,0,0,0,0,0,0,0.024,0,0,0,0,0,155.925,3511.082 -2188,18.487794,0,894.06242,14.830408,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.6186143,1.6306204,0.057291837,0.27158367,81.620045,22.041067,150.35913,709.65728,47.513592,0.10195714,132.59272,10.713992,0.109,0,0,0,0,0,0,0,0.022,0,0,0,0,0,155.925,3511.082 -2189,18.217999,0,894.23272,14.805535,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.5094857,1.6044367,0.056465306,0.27873061,81.630391,22.046561,150.41321,709.8204,47.531265,0.10224286,132.61344,10.550615,0.106,0,0,0,0,0,0,0,0.021,0,0,0,0,0,155.925,3511.082 -2190,17.948204,0,894.40302,14.780661,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.4003571,1.5782531,0.055638776,0.28587755,81.640737,22.052055,150.46728,709.98352,47.548939,0.10252857,132.63415,10.387239,0.102,0,0,0,0,0,0,0,0.02,0,0,0,0,0,155.925,3511.082 -2191,17.678409,0,894.57333,14.755788,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.2912286,1.5520694,0.054812245,0.29302449,81.651083,22.057549,150.52135,710.14664,47.566612,0.10281429,132.65487,10.223862,0.099,0,0,0,0,0,0,0,0.019,0,0,0,0,0,155.925,3511.082 -2192,17.408614,0,894.74363,14.730914,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.1821,1.5258857,0.053985714,0.30017143,81.661429,22.063043,150.57543,710.30976,47.584286,0.1031,132.67559,10.060486,0.096,0,0,0,0,0,0,0,0.018,0,0,0,0,0,155.925,3511.082 -2193,17.138819,0,894.91393,14.706041,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,6.0729714,1.499702,0.053159184,0.30731837,81.671774,22.068537,150.6295,710.47288,47.601959,0.10338571,132.6963,9.8971092,0.093,0,0,0,0,0,0,0,0.017,0,0,0,0,0,155.925,3511.082 -2194,16.869024,0,895.08423,14.681167,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.9638429,1.4735184,0.052332653,0.31446531,81.68212,22.074031,150.68358,710.636,47.619633,0.10367143,132.71702,9.7337327,0.089,0,0,0,0,0,0,0,0.016,0,0,0,0,0,155.925,3511.082 -2195,16.59923,0,895.25454,14.656294,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.8547143,1.4473347,0.051506122,0.32161224,81.692466,22.079524,150.73765,710.79912,47.637306,0.10395714,132.73773,9.5703561,0.087,0,0,0,0,0,0,0,0.016,0,0,0,0,0,155.925,3511.082 -2196,16.329435,0,895.42484,14.63142,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.7455857,1.421151,0.050679592,0.32875918,81.702812,22.085018,150.79173,710.96224,47.65498,0.10424286,132.75845,9.4069796,0.084,0,0,0,0,0,0,0,0.015,0,0,0,0,0,155.925,3511.082 -2197,16.05964,0,895.59514,14.606547,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.6364571,1.3949673,0.049853061,0.33590612,81.713158,22.090512,150.8458,711.12536,47.672653,0.10452857,132.77917,9.2436031,0.081,0,0,0,0,0,0,0,0.014,0,0,0,0,0,155.925,3511.082 -2198,15.789845,0,895.76545,14.581673,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.5273286,1.3687837,0.049026531,0.34305306,81.723504,22.096006,150.89988,711.28848,47.690327,0.10481429,132.79988,9.0802265,0.078,0,0,0,0,0,0,0,0.013,0,0,0,0,0,155.925,3511.082 -2199,15.52005,0,895.93575,14.5568,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.4182,1.3426,0.0482,0.3502,81.73385,22.1015,150.95395,711.4516,47.708,0.1051,132.8206,8.91685,0.076,0,0,0,0,0,0,0,0.013,0,0,0,0,0,155.925,3511.082 -2200,15.250255,0,896.10605,14.531927,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.3090714,1.3164163,0.047373469,0.35734694,81.744196,22.106994,151.00802,711.61472,47.725673,0.10538571,132.84132,8.7534735,0.073,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082 -2201,14.98046,0,896.27636,14.507053,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.1999429,1.2902327,0.046546939,0.36449388,81.754542,22.112488,151.0621,711.77784,47.743347,0.10567143,132.86203,8.5900969,0.071,0,0,0,0,0,0,0,0.012,0,0,0,0,0,155.925,3511.082 -2202,14.710665,0,896.44666,14.48218,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,5.0908143,1.264049,0.045720408,0.37164082,81.764888,22.117982,151.11617,711.94096,47.76102,0.10595714,132.88275,8.4267204,0.068,0,0,0,0,0,0,0,0.011,0,0,0,0,0,155.925,3511.082 -2203,14.44087,0,896.61696,14.457306,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.9816857,1.2378653,0.044893878,0.37878776,81.775234,22.123476,151.17025,712.10408,47.778694,0.10624286,132.90347,8.2633439,0.066,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082 -2204,14.171076,0,896.78727,14.432433,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.8725571,1.2116816,0.044067347,0.38593469,81.78558,22.128969,151.22432,712.2672,47.796367,0.10652857,132.92418,8.0999673,0.064,0,0,0,0,0,0,0,0.01,0,0,0,0,0,155.925,3511.082 -2205,13.901281,0,896.95757,14.407559,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.7634286,1.185498,0.043240816,0.39308163,81.795926,22.134463,151.2784,712.43032,47.814041,0.10681429,132.9449,7.9365908,0.062,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082 -2206,13.631486,0,897.12787,14.382686,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.6543,1.1593143,0.042414286,0.40022857,81.806271,22.139957,151.33247,712.59344,47.831714,0.1071,132.96561,7.7732143,0.06,0,0,0,0,0,0,0,0.009,0,0,0,0,0,155.925,3511.082 -2207,13.361691,0,897.29817,14.357812,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.5451714,1.1331306,0.041587755,0.40737551,81.816617,22.145451,151.38655,712.75656,47.849388,0.10738571,132.98633,7.6098378,0.058,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082 -2208,13.091896,0,897.46848,14.332939,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.4360429,1.1069469,0.040761224,0.41452245,81.826963,22.150945,151.44062,712.91968,47.867061,0.10767143,133.00705,7.4464612,0.056,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082 -2209,12.822101,0,897.63878,14.308065,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.3269143,1.0807633,0.039934694,0.42166939,81.837309,22.156439,151.49469,713.0828,47.884735,0.10795714,133.02776,7.2830847,0.054,0,0,0,0,0,0,0,0.008,0,0,0,0,0,155.925,3511.082 -2210,12.552306,0,897.80908,14.283192,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.2177857,1.0545796,0.039108163,0.42881633,81.847655,22.161933,151.54877,713.24592,47.902408,0.10824286,133.04848,7.1197082,0.052,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2211,12.282511,0,897.97939,14.258318,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,4.1086571,1.0283959,0.038281633,0.43596327,81.858001,22.167427,151.60284,713.40904,47.920082,0.10852857,133.0692,6.9563316,0.051,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2212,12.012716,0,898.14969,14.233445,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.9995286,1.0022122,0.037455102,0.4431102,81.868347,22.17292,151.65692,713.57217,47.937755,0.10881429,133.08991,6.7929551,0.049,0,0,0,0,0,0,0,0.007,0,0,0,0,0,155.925,3511.082 -2213,11.742921,0,898.31999,14.208571,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.8904,0.97602857,0.036628571,0.45025714,81.878693,22.178414,151.71099,713.73529,47.955429,0.1091,133.11063,6.6295786,0.047,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2214,11.473127,0,898.4903,14.183698,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.7812714,0.9498449,0.035802041,0.45740408,81.889039,22.183908,151.76507,713.89841,47.973102,0.10938571,133.13134,6.466202,0.046,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2215,11.203332,0,898.6606,14.158824,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.6721429,0.92366122,0.03497551,0.46455102,81.899385,22.189402,151.81914,714.06153,47.990776,0.10967143,133.15206,6.3028255,0.044,0,0,0,0,0,0,0,0.006,0,0,0,0,0,155.925,3511.082 -2216,10.933537,0,898.8309,14.133951,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.5630143,0.89747755,0.03414898,0.47169796,81.909731,22.194896,151.87322,714.22465,48.008449,0.10995714,133.17278,6.139449,0.043,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2217,10.663742,0,899.00121,14.109078,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.4538857,0.87129388,0.033322449,0.4788449,81.920077,22.20039,151.92729,714.38777,48.026122,0.11024286,133.19349,5.9760724,0.041,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2218,10.393947,0,899.17151,14.084204,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.3447571,0.8451102,0.032495918,0.48599184,81.930422,22.205884,151.98137,714.55089,48.043796,0.11052857,133.21421,5.8126959,0.04,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2219,10.124152,0,899.34181,14.059331,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.2356286,0.81892653,0.031669388,0.49313878,81.940768,22.211378,152.03544,714.71401,48.061469,0.11081429,133.23493,5.6493194,0.039,0,0,0,0,0,0,0,0.005,0,0,0,0,0,155.925,3511.082 -2220,9.8543571,0,899.51211,14.034457,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.1265,0.79274286,0.030842857,0.50028571,81.951114,22.216871,152.08951,714.87713,48.079143,0.1111,133.25564,5.4859429,0.037,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2221,9.5845622,0,899.68242,14.009584,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,3.0173714,0.76655918,0.030016327,0.50743265,81.96146,22.222365,152.14359,715.04025,48.096816,0.11138571,133.27636,5.3225663,0.036,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2222,9.3147673,0,899.85272,13.98471,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.9082429,0.74037551,0.029189796,0.51457959,81.971806,22.227859,152.19766,715.20337,48.11449,0.11167143,133.29708,5.1591898,0.035,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2223,9.0449724,0,900.02302,13.959837,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.7991143,0.71419184,0.028363265,0.52172653,81.982152,22.233353,152.25174,715.36649,48.132163,0.11195714,133.31779,4.9958133,0.034,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2224,8.7751776,0,900.19333,13.934963,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.6899857,0.68800816,0.027536735,0.52887347,81.992498,22.238847,152.30581,715.52961,48.149837,0.11224286,133.33851,4.8324367,0.033,0,0,0,0,0,0,0,0.004,0,0,0,0,0,155.925,3511.082 -2225,8.5053827,0,900.36363,13.91009,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.5808571,0.66182449,0.026710204,0.53602041,82.002844,22.244341,152.35989,715.69273,48.16751,0.11252857,133.35922,4.6690602,0.032,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2226,8.2355878,0,900.53393,13.885216,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.4717286,0.63564082,0.025883673,0.54316735,82.01319,22.249835,152.41396,715.85585,48.185184,0.11281429,133.37994,4.5056837,0.031,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2227,7.9657929,0,900.70424,13.860343,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.3626,0.60945714,0.025057143,0.55031429,82.023536,22.255329,152.46804,716.01897,48.202857,0.1131,133.40066,4.3423071,0.03,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2228,7.695998,0,900.87454,13.835469,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.2534714,0.58327347,0.024230612,0.55746122,82.033882,22.260822,152.52211,716.18209,48.220531,0.11338571,133.42137,4.1789306,0.029,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2229,7.4262031,0,901.04484,13.810596,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.1443429,0.5570898,0.023404082,0.56460816,82.044228,22.266316,152.57618,716.34521,48.238204,0.11367143,133.44209,4.0155541,0.028,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2230,7.1564082,0,901.21514,13.785722,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,2.0352143,0.53090612,0.022577551,0.5717551,82.054573,22.27181,152.63026,716.50833,48.255878,0.11395714,133.46281,3.8521776,0.027,0,0,0,0,0,0,0,0.003,0,0,0,0,0,155.925,3511.082 -2231,6.8866133,0,901.38545,13.760849,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.9260857,0.50472245,0.02175102,0.57890204,82.064919,22.277304,152.68433,716.67145,48.273551,0.11424286,133.48352,3.688801,0.026,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2232,6.6168184,0,901.55575,13.735976,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.8169571,0.47853878,0.02092449,0.58604898,82.075265,22.282798,152.73841,716.83457,48.291224,0.11452857,133.50424,3.5254245,0.025,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2233,6.3470235,0,901.72605,13.711102,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.7078286,0.4523551,0.020097959,0.59319592,82.085611,22.288292,152.79248,716.99769,48.308898,0.11481429,133.52496,3.362048,0.024,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2234,6.0772286,0,901.89636,13.686229,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.5987,0.42617143,0.019271429,0.60034286,82.095957,22.293786,152.84656,717.16081,48.326571,0.1151,133.54567,3.1986714,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2235,5.8074337,0,902.06666,13.661355,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.4895714,0.39998776,0.018444898,0.6074898,82.106303,22.29928,152.90063,717.32393,48.344245,0.11538571,133.56639,3.0352949,0.023,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2236,5.5376388,0,902.23696,13.636482,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.3804429,0.37380408,0.017618367,0.61463673,82.116649,22.304773,152.95471,717.48706,48.361918,0.11567143,133.5871,2.8719184,0.022,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2237,5.2678439,0,902.40727,13.611608,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.2713143,0.34762041,0.016791837,0.62178367,82.126995,22.310267,153.00878,717.65018,48.379592,0.11595714,133.60782,2.7085418,0.021,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2238,4.998049,0,902.57757,13.586735,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.1621857,0.32143673,0.015965306,0.62893061,82.137341,22.315761,153.06286,717.8133,48.397265,0.11624286,133.62854,2.5451653,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2239,4.7282541,0,902.74787,13.561861,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,1.0530571,0.29525306,0.015138776,0.63607755,82.147687,22.321255,153.11693,717.97642,48.414939,0.11652857,133.64925,2.3817888,0.02,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2240,4.4584592,0,902.91818,13.536988,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.94392857,0.26906939,0.014312245,0.64322449,82.158033,22.326749,153.171,718.13954,48.432612,0.11681429,133.66997,2.2184122,0.019,0,0,0,0,0,0,0,0.002,0,0,0,0,0,155.925,3511.082 -2241,4.1886643,0,903.08848,13.512114,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.8348,0.24288571,0.013485714,0.65037143,82.168379,22.332243,153.22508,718.30266,48.450286,0.1171,133.69069,2.0550357,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2242,3.9188694,0,903.25878,13.487241,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.72567143,0.21670204,0.012659184,0.65751837,82.178724,22.337737,153.27915,718.46578,48.467959,0.11738571,133.7114,1.8916592,0.018,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2243,3.6490745,0,903.42908,13.462367,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.61654286,0.19051837,0.011832653,0.66466531,82.18907,22.343231,153.33323,718.6289,48.485633,0.11767143,133.73212,1.7282827,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2244,3.3792796,0,903.59939,13.437494,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.50741429,0.16433469,0.011006122,0.67181224,82.199416,22.348724,153.3873,718.79202,48.503306,0.11795714,133.75283,1.5649061,0.017,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2245,3.1094847,0,903.76969,13.41262,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.39828571,0.13815102,0.010179592,0.67895918,82.209762,22.354218,153.44138,718.95514,48.52098,0.11824286,133.77355,1.4015296,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2246,2.8396898,0,903.93999,13.387747,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.28915714,0.11196735,0.009353061,0.68610612,82.220108,22.359712,153.49545,719.11826,48.538653,0.11852857,133.79427,1.2381531,0.016,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2247,2.5698949,0,904.1103,13.362873,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.18002857,0.085783673,0.008526531,0.69325306,82.230454,22.365206,153.54953,719.28138,48.556327,0.11881429,133.81498,1.0747765,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2248,2.3001,0,904.2806,13.338,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0709,0.0596,0.0077,0.7004,82.2408,22.3707,153.6036,719.4445,48.574,0.1191,133.8357,0.9114,0.015,0,0,0,0,0,0,0,0.001,0,0,0,0,0,155.925,3511.082 -2249,2.088,0,904.7895,13.343,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.7033,82.2473,22.3987,153.9761,720.2033,48.7474,0.1179,133.8876,0.9044,0.092,4.013,0.483,0.877,0.238,0,0,0,0.002,0,0,0,0.008,0,155.92,3511.082 -2250,2.0458,0,904.8603,13.3436,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.7033,82.2527,22.4002,153.9867,720.2524,48.7506,0.1179,133.8969,0.9044,0.092,4.013,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,155.937,3511.082 -2251,2.05004,0,904.9552,13.34368,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70338,82.26022,22.40226,154.00076,720.31816,48.75506,0.1179,133.90908,0.9044,0.092,4.014,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,155.96,3511.082 -2252,2.05428,0,905.0501,13.34376,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70346,82.26774,22.40432,154.01482,720.38392,48.75952,0.1179,133.92126,0.9044,0.092,4.015,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,155.983,3511.082 -2253,2.05852,0,905.145,13.34384,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70354,82.27526,22.40638,154.02888,720.44968,48.76398,0.1179,133.93344,0.9044,0.092,4.016,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,156.006,3511.082 -2254,2.06276,0,905.2399,13.34392,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70362,82.28278,22.40844,154.04294,720.51544,48.76844,0.1179,133.94562,0.9044,0.092,4.017,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,156.029,3511.082 -2255,2.067,0,905.3348,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.7037,82.2903,22.4105,154.057,720.5812,48.7729,0.1179,133.9578,0.9044,0.092,4.018,0.484,0.878,0.238,0,0,0,0.002,0,0,0,0.008,0,156.051,3511.082 -2256,2.07852,0,905.44156,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70376,82.29874,22.41276,154.07282,720.65512,48.77792,0.11794,133.97158,0.9044,0.092,4.018,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.074,3511.082 -2257,2.09004,0,905.54832,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70382,82.30718,22.41502,154.08864,720.72904,48.78294,0.11798,133.98536,0.9044,0.092,4.019,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.097,3511.082 -2258,2.10156,0,905.65508,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70388,82.31562,22.41728,154.10446,720.80296,48.78796,0.11802,133.99914,0.9044,0.092,4.02,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.125,3511.082 -2259,2.11308,0,905.76184,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.70394,82.32406,22.41954,154.12028,720.87688,48.79298,0.11806,134.01292,0.9044,0.092,4.021,0.484,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.152,3511.082 -2260,2.1246,0,905.8686,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0705,0.0592,0.0077,0.704,82.3325,22.4218,154.1361,720.9508,48.798,0.1181,134.0267,0.9044,0.092,4.022,0.485,0.879,0.238,0,0,0,0.002,0,0,0,0.008,0,156.18,3511.082 -2261,2.1217267,0,905.9807,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070513333,0.0592,0.0077,0.70407333,82.341367,22.42422,154.15269,721.02846,48.803253,0.11810667,134.04113,0.9044,0.092,4.023,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.207,3511.082 -2262,2.1188533,0,906.0928,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070526667,0.0592,0.0077,0.70414667,82.350233,22.42664,154.16929,721.10612,48.808507,0.11811333,134.05557,0.9044,0.092,4.024,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.235,3511.082 -2263,2.11598,0,906.2049,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07054,0.0592,0.0077,0.70422,82.3591,22.42906,154.18588,721.18378,48.81376,0.11812,134.07,0.9044,0.092,4.025,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.263,3511.082 -2264,2.1131067,0,906.317,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070553333,0.0592,0.0077,0.70429333,82.367967,22.43148,154.20247,721.26144,48.819013,0.11812667,134.08443,0.9044,0.092,4.026,0.485,0.88,0.238,0,0,0,0.002,0,0,0,0.008,0,156.29,3511.082 -2265,2.1102333,0,906.4291,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070566667,0.0592,0.0077,0.70436667,82.376833,22.4339,154.21907,721.3391,48.824267,0.11813333,134.09887,0.9044,0.092,4.028,0.485,0.881,0.238,0,0,0,0.002,0,0,0,0.008,0,156.318,3511.082 -2266,2.10736,0,906.5412,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07058,0.0592,0.0077,0.70444,82.3857,22.43632,154.23566,721.41676,48.82952,0.11814,134.1133,0.9044,0.092,4.029,0.485,0.881,0.238,0,0,0,0.002,0,0,0,0.008,0,156.345,3511.082 -2267,2.1044867,0,906.6533,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070593333,0.0592,0.0077,0.70451333,82.394567,22.43874,154.25225,721.49442,48.834773,0.11814667,134.12773,0.9044,0.093,4.03,0.485,0.881,0.239,0,0,0,0.002,0,0,0,0.008,0,156.372,3511.082 -2268,2.1016133,0,906.7654,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070606667,0.0592,0.0077,0.70458667,82.403433,22.44116,154.26885,721.57208,48.840027,0.11815333,134.14217,0.9044,0.093,4.031,0.486,0.881,0.239,0,0,0,0.002,0,0,0,0.008,0,156.399,3511.082 -2269,2.09874,0,906.8775,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07062,0.0592,0.0077,0.70466,82.4123,22.44358,154.28544,721.64974,48.84528,0.11816,134.1566,0.9044,0.093,4.032,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.426,3511.082 -2270,2.0958667,0,906.9896,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070633333,0.0592,0.0077,0.70473333,82.421167,22.446,154.30203,721.7274,48.850533,0.11816667,134.17103,0.9044,0.093,4.033,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.453,3511.082 -2271,2.0929933,0,907.1017,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070646667,0.0592,0.0077,0.70480667,82.430033,22.44842,154.31863,721.80506,48.855787,0.11817333,134.18547,0.9044,0.093,4.034,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.48,3511.082 -2272,2.09012,0,907.2138,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07066,0.0592,0.0077,0.70488,82.4389,22.45084,154.33522,721.88272,48.86104,0.11818,134.1999,0.9044,0.093,4.035,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.506,3511.082 -2273,2.0872467,0,907.3259,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070673333,0.0592,0.0077,0.70495333,82.447767,22.45326,154.35181,721.96038,48.866293,0.11818667,134.21433,0.9044,0.093,4.036,0.486,0.882,0.239,0,0,0,0.002,0,0,0,0.008,0,156.532,3511.082 -2274,2.0843733,0,907.438,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070686667,0.0592,0.0077,0.70502667,82.456633,22.45568,154.36841,722.03804,48.871547,0.11819333,134.22877,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.559,3511.082 -2275,2.0815,0,907.5501,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0707,0.0592,0.0077,0.7051,82.4655,22.4581,154.385,722.1157,48.8768,0.1182,134.2432,0.9044,0.093,4.037,0.486,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.585,3511.082 -2276,2.078004,0,907.65054,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070708,0.0592,0.0077,0.705172,82.473444,22.460264,154.39988,722.18528,48.881508,0.118216,134.25614,0.9044,0.093,4.038,0.487,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.611,3511.082 -2277,2.074508,0,907.75098,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070716,0.0592,0.0077,0.705244,82.481388,22.462428,154.41477,722.25487,48.886216,0.118232,134.26907,0.9044,0.093,4.039,0.487,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.636,3511.082 -2278,2.071012,0,907.85142,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070724,0.0592,0.0077,0.705316,82.489332,22.464592,154.42965,722.32445,48.890924,0.118248,134.28201,0.9044,0.093,4.04,0.487,0.883,0.239,0,0,0,0.002,0,0,0,0.008,0,156.662,3511.082 -2279,2.067516,0,907.95186,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070732,0.0592,0.0077,0.705388,82.497276,22.466756,154.44454,722.39404,48.895632,0.118264,134.29494,0.9044,0.093,4.041,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.687,3511.082 -2280,2.06402,0,908.0523,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07074,0.0592,0.0077,0.70546,82.50522,22.46892,154.45942,722.46362,48.90034,0.11828,134.30788,0.9044,0.093,4.042,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.713,3511.082 -2281,2.060524,0,908.15274,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070748,0.0592,0.0077,0.705532,82.513164,22.471084,154.4743,722.5332,48.905048,0.118296,134.32082,0.9044,0.093,4.043,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.738,3511.082 -2282,2.057028,0,908.25318,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070756,0.0592,0.0077,0.705604,82.521108,22.473248,154.48919,722.60279,48.909756,0.118312,134.33375,0.9044,0.093,4.044,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.763,3511.082 -2283,2.053532,0,908.35362,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070764,0.0592,0.0077,0.705676,82.529052,22.475412,154.50407,722.67237,48.914464,0.118328,134.34669,0.9044,0.093,4.045,0.487,0.884,0.239,0,0,0,0.002,0,0,0,0.008,0,156.788,3511.082 -2284,2.050036,0,908.45406,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070772,0.0592,0.0077,0.705748,82.536996,22.477576,154.51896,722.74196,48.919172,0.118344,134.35962,0.9044,0.093,4.046,0.487,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.812,3511.082 -2285,2.04654,0,908.5545,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07078,0.0592,0.0077,0.70582,82.54494,22.47974,154.53384,722.81154,48.92388,0.11836,134.37256,0.9044,0.093,4.047,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.837,3511.082 -2286,2.043044,0,908.65494,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070788,0.0592,0.0077,0.705892,82.552884,22.481904,154.54872,722.88112,48.928588,0.118376,134.3855,0.9044,0.093,4.048,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.861,3511.082 -2287,2.039548,0,908.75538,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070796,0.0592,0.0077,0.705964,82.560828,22.484068,154.56361,722.95071,48.933296,0.118392,134.39843,0.9044,0.093,4.049,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.886,3511.082 -2288,2.036052,0,908.85582,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070804,0.0592,0.0077,0.706036,82.568772,22.486232,154.57849,723.02029,48.938004,0.118408,134.41137,0.9044,0.093,4.05,0.488,0.885,0.24,0,0,0,0.002,0,0,0,0.008,0,156.91,3511.082 -2289,2.032556,0,908.95626,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070812,0.0592,0.0077,0.706108,82.576716,22.488396,154.59338,723.08988,48.942712,0.118424,134.4243,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,156.934,3511.082 -2290,2.02906,0,909.0567,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07082,0.0592,0.0077,0.70618,82.58466,22.49056,154.60826,723.15946,48.94742,0.11844,134.43724,0.9044,0.093,4.051,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,156.958,3511.082 -2291,2.025564,0,909.15714,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070828,0.0592,0.0077,0.706252,82.592604,22.492724,154.62314,723.22904,48.952128,0.118456,134.45018,0.9044,0.093,4.052,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,156.981,3511.082 -2292,2.022068,0,909.25758,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070836,0.0592,0.0077,0.706324,82.600548,22.494888,154.63803,723.29863,48.956836,0.118472,134.46311,0.9044,0.093,4.053,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,157.005,3511.082 -2293,2.018572,0,909.35802,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070844,0.0592,0.0077,0.706396,82.608492,22.497052,154.65291,723.36821,48.961544,0.118488,134.47605,0.9044,0.093,4.054,0.488,0.886,0.24,0,0,0,0.002,0,0,0,0.008,0,157.028,3511.082 -2294,2.015076,0,909.45846,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070852,0.0592,0.0077,0.706468,82.616436,22.499216,154.6678,723.4378,48.966252,0.118504,134.48898,0.9044,0.093,4.055,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.052,3511.082 -2295,2.01158,0,909.5589,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07086,0.0592,0.0077,0.70654,82.62438,22.50138,154.68268,723.50738,48.97096,0.11852,134.50192,0.9044,0.093,4.056,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.075,3511.082 -2296,2.008084,0,909.65934,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070868,0.0592,0.0077,0.706612,82.632324,22.503544,154.69756,723.57696,48.975668,0.118536,134.51486,0.9044,0.093,4.057,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.098,3511.082 -2297,2.004588,0,909.75978,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070876,0.0592,0.0077,0.706684,82.640268,22.505708,154.71245,723.64655,48.980376,0.118552,134.52779,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.121,3511.082 -2298,2.001092,0,909.86022,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070884,0.0592,0.0077,0.706756,82.648212,22.507872,154.72733,723.71613,48.985084,0.118568,134.54073,0.9044,0.093,4.058,0.489,0.887,0.24,0,0,0,0.002,0,0,0,0.008,0,157.144,3511.082 -2299,1.997596,0,909.96066,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070892,0.0592,0.0077,0.706828,82.656156,22.510036,154.74222,723.78572,48.989792,0.118584,134.55366,0.9044,0.093,4.059,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.167,3511.082 -2300,1.9941,0,910.0611,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0709,0.0592,0.0077,0.7069,82.6641,22.5122,154.7571,723.8553,48.9945,0.1186,134.5666,0.9044,0.093,4.06,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.189,3511.082 -2301,1.991988,0,910.14458,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070904,0.0592,0.0077,0.706956,82.670706,22.514002,154.76946,723.91314,48.998416,0.118608,134.57735,0.9044,0.093,4.061,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.212,3511.082 -2302,1.989876,0,910.22807,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070908,0.0592,0.0077,0.707012,82.677312,22.515804,154.78182,723.97097,49.002332,0.118616,134.58811,0.9044,0.093,4.062,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.234,3511.082 -2303,1.987764,0,910.31155,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070912,0.0592,0.0077,0.707068,82.683918,22.517606,154.79419,724.02881,49.006248,0.118624,134.59886,0.9044,0.093,4.063,0.489,0.888,0.24,0,0,0,0.002,0,0,0,0.008,0,157.256,3511.082 -2304,1.985652,0,910.39504,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070916,0.0592,0.0077,0.707124,82.690524,22.519408,154.80655,724.08664,49.010164,0.118632,134.60962,0.9044,0.093,4.063,0.49,0.888,0.241,0,0,0,0.002,0,0,0,0.008,0,157.278,3511.082 -2305,1.98354,0,910.47852,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07092,0.0592,0.0077,0.70718,82.69713,22.52121,154.81891,724.14448,49.01408,0.11864,134.62037,0.9044,0.093,4.064,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.3,3511.082 -2306,1.981428,0,910.562,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070924,0.0592,0.0077,0.707236,82.703736,22.523012,154.83127,724.20232,49.017996,0.118648,134.63112,0.9044,0.093,4.065,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.322,3511.082 -2307,1.979316,0,910.64549,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070928,0.0592,0.0077,0.707292,82.710342,22.524814,154.84363,724.26015,49.021912,0.118656,134.64188,0.9044,0.093,4.066,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.344,3511.082 -2308,1.977204,0,910.72897,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070932,0.0592,0.0077,0.707348,82.716948,22.526616,154.856,724.31799,49.025828,0.118664,134.65263,0.9044,0.093,4.067,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.366,3511.082 -2309,1.975092,0,910.81246,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070936,0.0592,0.0077,0.707404,82.723554,22.528418,154.86836,724.37582,49.029744,0.118672,134.66339,0.9044,0.093,4.068,0.49,0.889,0.241,0,0,0,0.002,0,0,0,0.008,0,157.387,3511.082 -2310,1.97298,0,910.89594,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07094,0.0592,0.0077,0.70746,82.73016,22.53022,154.88072,724.43366,49.03366,0.11868,134.67414,0.9044,0.093,4.068,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.409,3511.082 -2311,1.970868,0,910.97942,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070944,0.0592,0.0077,0.707516,82.736766,22.532022,154.89308,724.4915,49.037576,0.118688,134.68489,0.9044,0.093,4.069,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.43,3511.082 -2312,1.968756,0,911.06291,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070948,0.0592,0.0077,0.707572,82.743372,22.533824,154.90544,724.54933,49.041492,0.118696,134.69565,0.9044,0.093,4.07,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.452,3511.082 -2313,1.966644,0,911.14639,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070952,0.0592,0.0077,0.707628,82.749978,22.535626,154.91781,724.60717,49.045408,0.118704,134.7064,0.9044,0.093,4.071,0.49,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.473,3511.082 -2314,1.964532,0,911.22988,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070956,0.0592,0.0077,0.707684,82.756584,22.537428,154.93017,724.665,49.049324,0.118712,134.71716,0.9044,0.093,4.071,0.491,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.494,3511.082 -2315,1.96242,0,911.31336,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07096,0.0592,0.0077,0.70774,82.76319,22.53923,154.94253,724.72284,49.05324,0.11872,134.72791,0.9044,0.093,4.072,0.491,0.89,0.241,0,0,0,0.002,0,0,0,0.008,0,157.515,3511.082 -2316,1.960308,0,911.39684,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070964,0.0592,0.0077,0.707796,82.769796,22.541032,154.95489,724.78068,49.057156,0.118728,134.73866,0.9044,0.094,4.073,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.536,3511.082 -2317,1.958196,0,911.48033,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070968,0.0592,0.0077,0.707852,82.776402,22.542834,154.96725,724.83851,49.061072,0.118736,134.74942,0.9044,0.094,4.074,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.556,3511.082 -2318,1.956084,0,911.56381,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070972,0.0592,0.0077,0.707908,82.783008,22.544636,154.97962,724.89635,49.064988,0.118744,134.76017,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.577,3511.082 -2319,1.953972,0,911.6473,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070976,0.0592,0.0077,0.707964,82.789614,22.546438,154.99198,724.95418,49.068904,0.118752,134.77093,0.9044,0.094,4.075,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.598,3511.082 -2320,1.95186,0,911.73078,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07098,0.0592,0.0077,0.70802,82.79622,22.54824,155.00434,725.01202,49.07282,0.11876,134.78168,0.9044,0.094,4.076,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.618,3511.082 -2321,1.949748,0,911.81426,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070984,0.0592,0.0077,0.708076,82.802826,22.550042,155.0167,725.06986,49.076736,0.118768,134.79243,0.9044,0.094,4.077,0.491,0.891,0.241,0,0,0,0.002,0,0,0,0.008,0,157.639,3511.082 -2322,1.947636,0,911.89775,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070988,0.0592,0.0077,0.708132,82.809432,22.551844,155.02906,725.12769,49.080652,0.118776,134.80319,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0,0.008,0,157.659,3511.082 -2323,1.945524,0,911.98123,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070992,0.0592,0.0077,0.708188,82.816038,22.553646,155.04143,725.18553,49.084568,0.118784,134.81394,0.9044,0.094,4.078,0.491,0.892,0.241,0,0,0,0.002,0,0,0,0.008,0,157.679,3511.082 -2324,1.943412,0,912.06472,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.070996,0.0592,0.0077,0.708244,82.822644,22.555448,155.05379,725.24336,49.088484,0.118792,134.8247,0.9044,0.094,4.079,0.491,0.892,0.241,0,0,0,0.002,0,0,0,0.008,0,157.699,3511.082 -2325,1.9413,0,912.1482,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071,0.0592,0.0077,0.7083,82.82925,22.55725,155.06615,725.3012,49.0924,0.1188,134.83545,0.9044,0.094,4.08,0.492,0.892,0.242,0,0,0,0.002,0,0,0,0.008,0,157.719,3511.082 -2326,1.939188,0,912.23168,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071004,0.0592,0.0077,0.708356,82.835856,22.559052,155.07851,725.35904,49.096316,0.118808,134.8462,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0,0.008,0,157.739,3511.082 -2327,1.937076,0,912.31517,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071008,0.0592,0.0077,0.708412,82.842462,22.560854,155.09087,725.41687,49.100232,0.118816,134.85696,0.9044,0.094,4.081,0.492,0.892,0.242,0,0,0,0.002,0,0,0,0.008,0,157.759,3511.082 -2328,1.934964,0,912.39865,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071012,0.0592,0.0077,0.708468,82.849068,22.562656,155.10324,725.47471,49.104148,0.118824,134.86771,0.9044,0.094,4.082,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.779,3511.082 -2329,1.932852,0,912.48214,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071016,0.0592,0.0077,0.708524,82.855674,22.564458,155.1156,725.53254,49.108064,0.118832,134.87847,0.9044,0.094,4.083,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.799,3511.082 -2330,1.93074,0,912.56562,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07102,0.0592,0.0077,0.70858,82.86228,22.56626,155.12796,725.59038,49.11198,0.11884,134.88922,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.818,3511.082 -2331,1.928628,0,912.6491,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071024,0.0592,0.0077,0.708636,82.868886,22.568062,155.14032,725.64822,49.115896,0.118848,134.89997,0.9044,0.094,4.084,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.838,3511.082 -2332,1.926516,0,912.73259,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071028,0.0592,0.0077,0.708692,82.875492,22.569864,155.15268,725.70605,49.119812,0.118856,134.91073,0.9044,0.094,4.085,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.857,3511.082 -2333,1.924404,0,912.81607,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071032,0.0592,0.0077,0.708748,82.882098,22.571666,155.16505,725.76389,49.123728,0.118864,134.92148,0.9044,0.094,4.086,0.492,0.893,0.242,0,0,0,0.002,0,0,0,0.008,0,157.877,3511.082 -2334,1.922292,0,912.89956,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071036,0.0592,0.0077,0.708804,82.888704,22.573468,155.17741,725.82172,49.127644,0.118872,134.93224,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.896,3511.082 -2335,1.92018,0,912.98304,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07104,0.0592,0.0077,0.70886,82.89531,22.57527,155.18977,725.87956,49.13156,0.11888,134.94299,0.9044,0.094,4.087,0.492,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.915,3511.082 -2336,1.918068,0,913.06652,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071044,0.0592,0.0077,0.708916,82.901916,22.577072,155.20213,725.9374,49.135476,0.118888,134.95374,0.9044,0.094,4.088,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.934,3511.082 -2337,1.915956,0,913.15001,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071048,0.0592,0.0077,0.708972,82.908522,22.578874,155.21449,725.99523,49.139392,0.118896,134.9645,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.953,3511.082 -2338,1.913844,0,913.23349,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071052,0.0592,0.0077,0.709028,82.915128,22.580676,155.22686,726.05307,49.143308,0.118904,134.97525,0.9044,0.094,4.089,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.972,3511.082 -2339,1.911732,0,913.31698,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071056,0.0592,0.0077,0.709084,82.921734,22.582478,155.23922,726.1109,49.147224,0.118912,134.98601,0.9044,0.094,4.09,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,157.991,3511.082 -2340,1.90962,0,913.40046,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07106,0.0592,0.0077,0.70914,82.92834,22.58428,155.25158,726.16874,49.15114,0.11892,134.99676,0.9044,0.094,4.091,0.493,0.894,0.242,0,0,0,0.002,0,0,0,0.008,0,158.01,3511.082 -2341,1.907508,0,913.48394,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071064,0.0592,0.0077,0.709196,82.934946,22.586082,155.26394,726.22658,49.155056,0.118928,135.00751,0.9044,0.094,4.091,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.029,3511.082 -2342,1.905396,0,913.56743,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071068,0.0592,0.0077,0.709252,82.941552,22.587884,155.2763,726.28441,49.158972,0.118936,135.01827,0.9044,0.094,4.092,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.047,3511.082 -2343,1.903284,0,913.65091,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071072,0.0592,0.0077,0.709308,82.948158,22.589686,155.28867,726.34225,49.162888,0.118944,135.02902,0.9044,0.094,4.093,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.066,3511.082 -2344,1.901172,0,913.7344,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071076,0.0592,0.0077,0.709364,82.954764,22.591488,155.30103,726.40008,49.166804,0.118952,135.03978,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.085,3511.082 -2345,1.89906,0,913.81788,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07108,0.0592,0.0077,0.70942,82.96137,22.59329,155.31339,726.45792,49.17072,0.11896,135.05053,0.9044,0.094,4.094,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.103,3511.082 -2346,1.896948,0,913.90136,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071084,0.0592,0.0077,0.709476,82.967976,22.595092,155.32575,726.51576,49.174636,0.118968,135.06128,0.9044,0.094,4.095,0.493,0.895,0.242,0,0,0,0.002,0,0,0,0.008,0,158.121,3511.082 -2347,1.894836,0,913.98485,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071088,0.0592,0.0077,0.709532,82.974582,22.596894,155.33811,726.57359,49.178552,0.118976,135.07204,0.9044,0.094,4.096,0.493,0.896,0.242,0,0,0,0.002,0,0,0,0.008,0,158.14,3511.082 -2348,1.892724,0,914.06833,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071092,0.0592,0.0077,0.709588,82.981188,22.598696,155.35048,726.63143,49.182468,0.118984,135.08279,0.9044,0.094,4.096,0.494,0.896,0.242,0,0,0,0.002,0,0,0,0.008,0,158.158,3511.082 -2349,1.890612,0,914.15182,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071096,0.0592,0.0077,0.709644,82.987794,22.600498,155.36284,726.68926,49.186384,0.118992,135.09355,0.9044,0.094,4.097,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.176,3511.082 -2350,1.8885,0,914.2353,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0711,0.0592,0.0077,0.7097,82.9944,22.6023,155.3752,726.7471,49.1903,0.119,135.1043,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.194,3511.082 -2351,1.885994,0,914.3042,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071106,0.0592,0.0077,0.709744,82.999852,22.603782,155.3854,726.79483,49.19353,0.119008,135.11317,0.9044,0.094,4.098,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.212,3511.082 -2352,1.883488,0,914.37309,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071112,0.0592,0.0077,0.709788,83.005304,22.605264,155.39561,726.84256,49.19676,0.119016,135.12204,0.9044,0.094,4.099,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.23,3511.082 -2353,1.880982,0,914.44199,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071118,0.0592,0.0077,0.709832,83.010756,22.606746,155.40581,726.89028,49.19999,0.119024,135.13092,0.9044,0.094,4.1,0.494,0.896,0.243,0,0,0,0.002,0,0,0,0.008,0,158.248,3511.082 -2354,1.878476,0,914.51088,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071124,0.0592,0.0077,0.709876,83.016208,22.608228,155.41602,726.93801,49.20322,0.119032,135.13979,0.9044,0.094,4.1,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.266,3511.082 -2355,1.87597,0,914.57978,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07113,0.0592,0.0077,0.70992,83.02166,22.60971,155.42622,726.98574,49.20645,0.11904,135.14866,0.9044,0.094,4.101,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.284,3511.082 -2356,1.873464,0,914.64868,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071136,0.0592,0.0077,0.709964,83.027112,22.611192,155.43642,727.03347,49.20968,0.119048,135.15753,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.301,3511.082 -2357,1.870958,0,914.71757,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071142,0.0592,0.0077,0.710008,83.032564,22.612674,155.44663,727.0812,49.21291,0.119056,135.1664,0.9044,0.094,4.102,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.319,3511.082 -2358,1.868452,0,914.78647,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071148,0.0592,0.0077,0.710052,83.038016,22.614156,155.45683,727.12892,49.21614,0.119064,135.17528,0.9044,0.094,4.103,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.337,3511.082 -2359,1.865946,0,914.85536,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071154,0.0592,0.0077,0.710096,83.043468,22.615638,155.46704,727.17665,49.21937,0.119072,135.18415,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.354,3511.082 -2360,1.86344,0,914.92426,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07116,0.0592,0.0077,0.71014,83.04892,22.61712,155.47724,727.22438,49.2226,0.11908,135.19302,0.9044,0.094,4.104,0.494,0.897,0.243,0,0,0,0.002,0,0,0,0.008,0,158.372,3511.082 -2361,1.860934,0,914.99316,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071166,0.0592,0.0077,0.710184,83.054372,22.618602,155.48744,727.27211,49.22583,0.119088,135.20189,0.9044,0.094,4.105,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.389,3511.082 -2362,1.858428,0,915.06205,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071172,0.0592,0.0077,0.710228,83.059824,22.620084,155.49765,727.31984,49.22906,0.119096,135.21076,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.406,3511.082 -2363,1.855922,0,915.13095,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071178,0.0592,0.0077,0.710272,83.065276,22.621566,155.50785,727.36756,49.23229,0.119104,135.21964,0.9044,0.094,4.106,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.424,3511.082 -2364,1.853416,0,915.19984,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071184,0.0592,0.0077,0.710316,83.070728,22.623048,155.51806,727.41529,49.23552,0.119112,135.22851,0.9044,0.094,4.107,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.441,3511.082 -2365,1.85091,0,915.26874,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07119,0.0592,0.0077,0.71036,83.07618,22.62453,155.52826,727.46302,49.23875,0.11912,135.23738,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.458,3511.082 -2366,1.848404,0,915.33764,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071196,0.0592,0.0077,0.710404,83.081632,22.626012,155.53846,727.51075,49.24198,0.119128,135.24625,0.9044,0.094,4.108,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.475,3511.082 -2367,1.845898,0,915.40653,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071202,0.0592,0.0077,0.710448,83.087084,22.627494,155.54867,727.55848,49.24521,0.119136,135.25512,0.9044,0.094,4.109,0.495,0.898,0.243,0,0,0,0.002,0,0,0,0.008,0,158.492,3511.082 -2368,1.843392,0,915.47543,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071208,0.0592,0.0077,0.710492,83.092536,22.628976,155.55887,727.6062,49.24844,0.119144,135.264,0.9044,0.094,4.109,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.509,3511.082 -2369,1.840886,0,915.54432,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071214,0.0592,0.0077,0.710536,83.097988,22.630458,155.56908,727.65393,49.25167,0.119152,135.27287,0.9044,0.094,4.11,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.526,3511.082 -2370,1.83838,0,915.61322,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07122,0.0592,0.0077,0.71058,83.10344,22.63194,155.57928,727.70166,49.2549,0.11916,135.28174,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.543,3511.082 -2371,1.835874,0,915.68212,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071226,0.0592,0.0077,0.710624,83.108892,22.633422,155.58948,727.74939,49.25813,0.119168,135.29061,0.9044,0.094,4.111,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.56,3511.082 -2372,1.833368,0,915.75101,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071232,0.0592,0.0077,0.710668,83.114344,22.634904,155.59969,727.79712,49.26136,0.119176,135.29948,0.9044,0.094,4.112,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.576,3511.082 -2373,1.830862,0,915.81991,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071238,0.0592,0.0077,0.710712,83.119796,22.636386,155.60989,727.84484,49.26459,0.119184,135.30836,0.9044,0.094,4.113,0.495,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.593,3511.082 -2374,1.828356,0,915.8888,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071244,0.0592,0.0077,0.710756,83.125248,22.637868,155.6201,727.89257,49.26782,0.119192,135.31723,0.9044,0.094,4.113,0.496,0.899,0.243,0,0,0,0.002,0,0,0,0.008,0,158.61,3511.082 -2375,1.82585,0,915.9577,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07125,0.0592,0.0077,0.7108,83.1307,22.63935,155.6303,727.9403,49.27105,0.1192,135.3261,0.9044,0.094,4.114,0.496,0.899,0.244,0,0,0,0.002,0,0,0,0.008,0,158.626,3511.082 -2376,1.823344,0,916.0266,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071256,0.0592,0.0077,0.710844,83.136152,22.640832,155.6405,727.98803,49.27428,0.119208,135.33497,0.9044,0.094,4.114,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.643,3511.082 -2377,1.820838,0,916.09549,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071262,0.0592,0.0077,0.710888,83.141604,22.642314,155.65071,728.03576,49.27751,0.119216,135.34384,0.9044,0.094,4.115,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.659,3511.082 -2378,1.818332,0,916.16439,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071268,0.0592,0.0077,0.710932,83.147056,22.643796,155.66091,728.08348,49.28074,0.119224,135.35272,0.9044,0.094,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.676,3511.082 -2379,1.815826,0,916.23328,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071274,0.0592,0.0077,0.710976,83.152508,22.645278,155.67112,728.13121,49.28397,0.119232,135.36159,0.9044,0.095,4.116,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.692,3511.082 -2380,1.81332,0,916.30218,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07128,0.0592,0.0077,0.71102,83.15796,22.64676,155.68132,728.17894,49.2872,0.11924,135.37046,0.9044,0.095,4.117,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.708,3511.082 -2381,1.810814,0,916.37108,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071286,0.0592,0.0077,0.711064,83.163412,22.648242,155.69152,728.22667,49.29043,0.119248,135.37933,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.724,3511.082 -2382,1.808308,0,916.43997,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071292,0.0592,0.0077,0.711108,83.168864,22.649724,155.70173,728.2744,49.29366,0.119256,135.3882,0.9044,0.095,4.118,0.496,0.9,0.244,0,0,0,0.002,0,0,0,0.008,0,158.741,3511.082 -2383,1.805802,0,916.50887,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071298,0.0592,0.0077,0.711152,83.174316,22.651206,155.71193,728.32212,49.29689,0.119264,135.39708,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.757,3511.082 -2384,1.803296,0,916.57776,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071304,0.0592,0.0077,0.711196,83.179768,22.652688,155.72214,728.36985,49.30012,0.119272,135.40595,0.9044,0.095,4.119,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.773,3511.082 -2385,1.80079,0,916.64666,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07131,0.0592,0.0077,0.71124,83.18522,22.65417,155.73234,728.41758,49.30335,0.11928,135.41482,0.9044,0.095,4.12,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.789,3511.082 -2386,1.798284,0,916.71556,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071316,0.0592,0.0077,0.711284,83.190672,22.655652,155.74254,728.46531,49.30658,0.119288,135.42369,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.805,3511.082 -2387,1.795778,0,916.78445,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071322,0.0592,0.0077,0.711328,83.196124,22.657134,155.75275,728.51304,49.30981,0.119296,135.43256,0.9044,0.095,4.121,0.496,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.821,3511.082 -2388,1.793272,0,916.85335,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071328,0.0592,0.0077,0.711372,83.201576,22.658616,155.76295,728.56076,49.31304,0.119304,135.44144,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.837,3511.082 -2389,1.790766,0,916.92224,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071334,0.0592,0.0077,0.711416,83.207028,22.660098,155.77316,728.60849,49.31627,0.119312,135.45031,0.9044,0.095,4.122,0.497,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.853,3511.082 -2390,1.78826,0,916.99114,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07134,0.0592,0.0077,0.71146,83.21248,22.66158,155.78336,728.65622,49.3195,0.11932,135.45918,0.9044,0.095,4.123,0.497,0.901,0.244,0,0,0,0.002,0,0,0,0.008,0,158.868,3511.082 -2391,1.785754,0,917.06004,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071346,0.0592,0.0077,0.711504,83.217932,22.663062,155.79356,728.70395,49.32273,0.119328,135.46805,0.9044,0.095,4.123,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.884,3511.082 -2392,1.783248,0,917.12893,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071352,0.0592,0.0077,0.711548,83.223384,22.664544,155.80377,728.75168,49.32596,0.119336,135.47692,0.9044,0.095,4.124,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.9,3511.082 -2393,1.780742,0,917.19783,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071358,0.0592,0.0077,0.711592,83.228836,22.666026,155.81397,728.7994,49.32919,0.119344,135.4858,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.915,3511.082 -2394,1.778236,0,917.26672,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071364,0.0592,0.0077,0.711636,83.234288,22.667508,155.82418,728.84713,49.33242,0.119352,135.49467,0.9044,0.095,4.125,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.931,3511.082 -2395,1.77573,0,917.33562,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07137,0.0592,0.0077,0.71168,83.23974,22.66899,155.83438,728.89486,49.33565,0.11936,135.50354,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.947,3511.082 -2396,1.773224,0,917.40452,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071376,0.0592,0.0077,0.711724,83.245192,22.670472,155.84458,728.94259,49.33888,0.119368,135.51241,0.9044,0.095,4.126,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.962,3511.082 -2397,1.770718,0,917.47341,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071382,0.0592,0.0077,0.711768,83.250644,22.671954,155.85479,728.99032,49.34211,0.119376,135.52128,0.9044,0.095,4.127,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.977,3511.082 -2398,1.768212,0,917.54231,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071388,0.0592,0.0077,0.711812,83.256096,22.673436,155.86499,729.03804,49.34534,0.119384,135.53016,0.9044,0.095,4.128,0.497,0.902,0.244,0,0,0,0.002,0,0,0,0.008,0,158.993,3511.082 -2399,1.765706,0,917.6112,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071394,0.0592,0.0077,0.711856,83.261548,22.674918,155.8752,729.08577,49.34857,0.119392,135.53903,0.9044,0.095,4.128,0.497,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.008,3511.082 -2400,1.7632,0,917.6801,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0714,0.0592,0.0077,0.7119,83.267,22.6764,155.8854,729.1335,49.3518,0.1194,135.5479,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.024,3511.082 -2401,1.760278,0,917.7393,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071404,0.0592,0.0077,0.711942,83.271682,22.677674,155.89417,729.17451,49.354576,0.119406,135.55552,0.9044,0.095,4.129,0.497,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.039,3511.082 -2402,1.757356,0,917.79849,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071408,0.0592,0.0077,0.711984,83.276364,22.678948,155.90294,729.21552,49.357352,0.119412,135.56314,0.9044,0.095,4.13,0.498,0.903,0.244,0,0,0,0.002,0,0,0,0.008,0,159.054,3511.082 -2403,1.754434,0,917.85769,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071412,0.0592,0.0077,0.712026,83.281046,22.680222,155.91171,729.25653,49.360128,0.119418,135.57077,0.9044,0.095,4.13,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.069,3511.082 -2404,1.751512,0,917.91688,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071416,0.0592,0.0077,0.712068,83.285728,22.681496,155.92048,729.29754,49.362904,0.119424,135.57839,0.9044,0.095,4.131,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.084,3511.082 -2405,1.74859,0,917.97608,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07142,0.0592,0.0077,0.71211,83.29041,22.68277,155.92925,729.33855,49.36568,0.11943,135.58601,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.099,3511.082 -2406,1.745668,0,918.03528,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071424,0.0592,0.0077,0.712152,83.295092,22.684044,155.93802,729.37956,49.368456,0.119436,135.59363,0.9044,0.095,4.132,0.498,0.903,0.245,0,0,0,0.002,0,0,0,0.008,0,159.114,3511.082 -2407,1.742746,0,918.09447,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071428,0.0592,0.0077,0.712194,83.299774,22.685318,155.94679,729.42057,49.371232,0.119442,135.60125,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.129,3511.082 -2408,1.739824,0,918.15367,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071432,0.0592,0.0077,0.712236,83.304456,22.686592,155.95556,729.46158,49.374008,0.119448,135.60888,0.9044,0.095,4.133,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.144,3511.082 -2409,1.736902,0,918.21286,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071436,0.0592,0.0077,0.712278,83.309138,22.687866,155.96433,729.50259,49.376784,0.119454,135.6165,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.159,3511.082 -2410,1.73398,0,918.27206,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07144,0.0592,0.0077,0.71232,83.31382,22.68914,155.9731,729.5436,49.37956,0.11946,135.62412,0.9044,0.095,4.134,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.174,3511.082 -2411,1.731058,0,918.33126,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071444,0.0592,0.0077,0.712362,83.318502,22.690414,155.98187,729.58461,49.382336,0.119466,135.63174,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.189,3511.082 -2412,1.728136,0,918.39045,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071448,0.0592,0.0077,0.712404,83.323184,22.691688,155.99064,729.62562,49.385112,0.119472,135.63936,0.9044,0.095,4.135,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.204,3511.082 -2413,1.725214,0,918.44965,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071452,0.0592,0.0077,0.712446,83.327866,22.692962,155.99941,729.66663,49.387888,0.119478,135.64699,0.9044,0.095,4.136,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.218,3511.082 -2414,1.722292,0,918.50884,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071456,0.0592,0.0077,0.712488,83.332548,22.694236,156.00818,729.70764,49.390664,0.119484,135.65461,0.9044,0.095,4.137,0.498,0.904,0.245,0,0,0,0.002,0,0,0,0.008,0,159.233,3511.082 -2415,1.71937,0,918.56804,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07146,0.0592,0.0077,0.71253,83.33723,22.69551,156.01695,729.74865,49.39344,0.11949,135.66223,0.9044,0.095,4.137,0.498,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.248,3511.082 -2416,1.716448,0,918.62724,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071464,0.0592,0.0077,0.712572,83.341912,22.696784,156.02572,729.78966,49.396216,0.119496,135.66985,0.9044,0.095,4.138,0.498,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.262,3511.082 -2417,1.713526,0,918.68643,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071468,0.0592,0.0077,0.712614,83.346594,22.698058,156.03449,729.83067,49.398992,0.119502,135.67747,0.9044,0.095,4.138,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.277,3511.082 -2418,1.710604,0,918.74563,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071472,0.0592,0.0077,0.712656,83.351276,22.699332,156.04326,729.87168,49.401768,0.119508,135.6851,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.292,3511.082 -2419,1.707682,0,918.80482,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071476,0.0592,0.0077,0.712698,83.355958,22.700606,156.05203,729.91269,49.404544,0.119514,135.69272,0.9044,0.095,4.139,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.306,3511.082 -2420,1.70476,0,918.86402,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07148,0.0592,0.0077,0.71274,83.36064,22.70188,156.0608,729.9537,49.40732,0.11952,135.70034,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.32,3511.082 -2421,1.701838,0,918.92322,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071484,0.0592,0.0077,0.712782,83.365322,22.703154,156.06957,729.99471,49.410096,0.119526,135.70796,0.9044,0.095,4.14,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.335,3511.082 -2422,1.698916,0,918.98241,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071488,0.0592,0.0077,0.712824,83.370004,22.704428,156.07834,730.03572,49.412872,0.119532,135.71558,0.9044,0.095,4.141,0.499,0.905,0.245,0,0,0,0.002,0,0,0,0.008,0,159.349,3511.082 -2423,1.695994,0,919.04161,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071492,0.0592,0.0077,0.712866,83.374686,22.705702,156.08711,730.07673,49.415648,0.119538,135.72321,0.9044,0.095,4.141,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.364,3511.082 -2424,1.693072,0,919.1008,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071496,0.0592,0.0077,0.712908,83.379368,22.706976,156.09588,730.11774,49.418424,0.119544,135.73083,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.378,3511.082 -2425,1.69015,0,919.16,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0715,0.0592,0.0077,0.71295,83.38405,22.70825,156.10465,730.15875,49.4212,0.11955,135.73845,0.9044,0.095,4.142,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.392,3511.082 -2426,1.687228,0,919.2192,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071504,0.0592,0.0077,0.712992,83.388732,22.709524,156.11342,730.19976,49.423976,0.119556,135.74607,0.9044,0.095,4.143,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.406,3511.082 -2427,1.684306,0,919.27839,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071508,0.0592,0.0077,0.713034,83.393414,22.710798,156.12219,730.24077,49.426752,0.119562,135.75369,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.421,3511.082 -2428,1.681384,0,919.33759,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071512,0.0592,0.0077,0.713076,83.398096,22.712072,156.13096,730.28178,49.429528,0.119568,135.76132,0.9044,0.095,4.144,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.435,3511.082 -2429,1.678462,0,919.39678,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071516,0.0592,0.0077,0.713118,83.402778,22.713346,156.13973,730.32279,49.432304,0.119574,135.76894,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.449,3511.082 -2430,1.67554,0,919.45598,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07152,0.0592,0.0077,0.71316,83.40746,22.71462,156.1485,730.3638,49.43508,0.11958,135.77656,0.9044,0.095,4.145,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.463,3511.082 -2431,1.672618,0,919.51518,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071524,0.0592,0.0077,0.713202,83.412142,22.715894,156.15727,730.40481,49.437856,0.119586,135.78418,0.9044,0.095,4.146,0.499,0.906,0.245,0,0,0,0.002,0,0,0,0.008,0,159.477,3511.082 -2432,1.669696,0,919.57437,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071528,0.0592,0.0077,0.713244,83.416824,22.717168,156.16604,730.44582,49.440632,0.119592,135.7918,0.9044,0.095,4.146,0.5,0.907,0.245,0,0,0,0.002,0,0,0,0.008,0,159.491,3511.082 -2433,1.666774,0,919.63357,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071532,0.0592,0.0077,0.713286,83.421506,22.718442,156.17481,730.48683,49.443408,0.119598,135.79943,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0,0.008,0,159.505,3511.082 -2434,1.663852,0,919.69276,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071536,0.0592,0.0077,0.713328,83.426188,22.719716,156.18358,730.52784,49.446184,0.119604,135.80705,0.9044,0.095,4.147,0.5,0.907,0.245,0,0,0,0.002,0,0,0,0.008,0,159.519,3511.082 -2435,1.66093,0,919.75196,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07154,0.0592,0.0077,0.71337,83.43087,22.72099,156.19235,730.56885,49.44896,0.11961,135.81467,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.532,3511.082 -2436,1.658008,0,919.81116,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071544,0.0592,0.0077,0.713412,83.435552,22.722264,156.20112,730.60986,49.451736,0.119616,135.82229,0.9044,0.095,4.148,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.546,3511.082 -2437,1.655086,0,919.87035,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071548,0.0592,0.0077,0.713454,83.440234,22.723538,156.20989,730.65087,49.454512,0.119622,135.82991,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.56,3511.082 -2438,1.652164,0,919.92955,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071552,0.0592,0.0077,0.713496,83.444916,22.724812,156.21866,730.69188,49.457288,0.119628,135.83754,0.9044,0.095,4.149,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.574,3511.082 -2439,1.649242,0,919.98874,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071556,0.0592,0.0077,0.713538,83.449598,22.726086,156.22743,730.73289,49.460064,0.119634,135.84516,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.588,3511.082 -2440,1.64632,0,920.04794,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07156,0.0592,0.0077,0.71358,83.45428,22.72736,156.2362,730.7739,49.46284,0.11964,135.85278,0.9044,0.095,4.15,0.5,0.907,0.246,0,0,0,0.002,0,0,0,0.008,0,159.601,3511.082 -2441,1.643398,0,920.10714,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071564,0.0592,0.0077,0.713622,83.458962,22.728634,156.24497,730.81491,49.465616,0.119646,135.8604,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.615,3511.082 -2442,1.640476,0,920.16633,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071568,0.0592,0.0077,0.713664,83.463644,22.729908,156.25374,730.85592,49.468392,0.119652,135.86802,0.9044,0.095,4.151,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.629,3511.082 -2443,1.637554,0,920.22553,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071572,0.0592,0.0077,0.713706,83.468326,22.731182,156.26251,730.89693,49.471168,0.119658,135.87565,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.642,3511.082 -2444,1.634632,0,920.28472,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071576,0.0592,0.0077,0.713748,83.473008,22.732456,156.27128,730.93794,49.473944,0.119664,135.88327,0.9044,0.095,4.152,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.656,3511.082 -2445,1.63171,0,920.34392,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.07158,0.0592,0.0077,0.71379,83.47769,22.73373,156.28005,730.97895,49.47672,0.11967,135.89089,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.669,3511.082 -2446,1.628788,0,920.40312,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071584,0.0592,0.0077,0.713832,83.482372,22.735004,156.28882,731.01996,49.479496,0.119676,135.89851,0.9044,0.095,4.153,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.683,3511.082 -2447,1.625866,0,920.46231,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071588,0.0592,0.0077,0.713874,83.487054,22.736278,156.29759,731.06097,49.482272,0.119682,135.90613,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.696,3511.082 -2448,1.622944,0,920.52151,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071592,0.0592,0.0077,0.713916,83.491736,22.737552,156.30636,731.10198,49.485048,0.119688,135.91376,0.9044,0.095,4.154,0.5,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.709,3511.082 -2449,1.620022,0,920.5807,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.071596,0.0592,0.0077,0.713958,83.496418,22.738826,156.31513,731.14299,49.487824,0.119694,135.92138,0.9044,0.095,4.155,0.501,0.908,0.246,0,0,0,0.002,0,0,0,0.008,0,159.723,3511.082 -2450,1.6171,0,920.6399,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.155,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.736,3511.082 -2451,1.61445,0,920.691,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.749,3511.082 -2452,1.6118,0,920.74209,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.156,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.763,3511.082 -2453,1.60915,0,920.79319,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.776,3511.082 -2454,1.6065,0,920.84428,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.157,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.789,3511.082 -2455,1.60385,0,920.89538,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.802,3511.082 -2456,1.6012,0,920.94648,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.158,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.815,3511.082 -2457,1.59855,0,920.99757,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.829,3511.082 -2458,1.5959,0,921.04867,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.095,4.159,0.501,0.909,0.246,0,0,0,0.002,0,0,0,0.008,0,159.842,3511.082 -2459,1.59325,0,921.09976,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.855,3511.082 -2460,1.5906,0,921.15086,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.16,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.868,3511.082 -2461,1.58795,0,921.20196,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.881,3511.082 -2462,1.5853,0,921.25305,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.161,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.894,3511.082 -2463,1.58265,0,921.30415,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.907,3511.082 -2464,1.58,0,921.35524,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.162,0.501,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.919,3511.082 -2465,1.57735,0,921.40634,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.932,3511.082 -2466,1.5747,0,921.45744,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.163,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.945,3511.082 -2467,1.57205,0,921.50853,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.958,3511.082 -2468,1.5694,0,921.55963,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.164,0.502,0.91,0.246,0,0,0,0.002,0,0,0,0.008,0,159.971,3511.082 -2469,1.56675,0,921.61072,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,159.983,3511.082 -2470,1.5641,0,921.66182,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.165,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,159.996,3511.082 -2471,1.56145,0,921.71292,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.009,3511.082 -2472,1.5588,0,921.76401,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.021,3511.082 -2473,1.55615,0,921.81511,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.166,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.034,3511.082 -2474,1.5535,0,921.8662,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.046,3511.082 -2475,1.55085,0,921.9173,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.167,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.059,3511.082 -2476,1.5482,0,921.9684,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.071,3511.082 -2477,1.54555,0,922.01949,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.168,0.502,0.911,0.247,0,0,0,0.002,0,0,0,0.008,0,160.084,3511.082 -2478,1.5429,0,922.07059,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.096,3511.082 -2479,1.54025,0,922.12168,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.169,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.109,3511.082 -2480,1.5376,0,922.17278,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.121,3511.082 -2481,1.53495,0,922.22388,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.17,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.134,3511.082 -2482,1.5323,0,922.27497,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.502,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.146,3511.082 -2483,1.52965,0,922.32607,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.171,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.158,3511.082 -2484,1.527,0,922.37716,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.17,3511.082 -2485,1.52435,0,922.42826,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.172,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.183,3511.082 -2486,1.5217,0,922.47936,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.195,3511.082 -2487,1.51905,0,922.53045,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.912,0.247,0,0,0,0.002,0,0,0,0.008,0,160.207,3511.082 -2488,1.5164,0,922.58155,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.173,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.219,3511.082 -2489,1.51375,0,922.63264,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.231,3511.082 -2490,1.5111,0,922.68374,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.174,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.244,3511.082 -2491,1.50845,0,922.73484,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.256,3511.082 -2492,1.5058,0,922.78593,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.175,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.268,3511.082 -2493,1.50315,0,922.83703,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.28,3511.082 -2494,1.5005,0,922.88812,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.176,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.292,3511.082 -2495,1.49785,0,922.93922,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.304,3511.082 -2496,1.4952,0,922.99032,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.316,3511.082 -2497,1.49255,0,923.04141,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.177,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.328,3511.082 -2498,1.4899,0,923.09251,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.913,0.247,0,0,0,0.002,0,0,0,0.008,0,160.339,3511.082 -2499,1.48725,0,923.1436,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0,0.008,0,160.351,3511.082 -2500,1.4846,0,923.1947,13.344,12.8564,12856.4,690.2832,176.2396,26.2416,4.2496,23.9072,67.1769,0.0716,0.0592,0.0077,0.714,83.5011,22.7401,156.3239,731.184,49.4906,0.1197,135.929,0.9044,0.096,4.178,0.503,0.914,0.247,0,0,0,0.002,0,0,0,0.008,0,160.351,3511.082 diff --git a/inst/input/emissions/SO2_emissions.csv b/inst/input/emissions/SO2_emissions.csv deleted file mode 100644 index 70b5757a4..000000000 --- a/inst/input/emissions/SO2_emissions.csv +++ /dev/null @@ -1,114 +0,0 @@ -; Historical SO2 record in Gg, -; constructed using : Smith et al. through 1999, -; Klimont et al. from 2000-2011, -; Constant open burning emissions from 2000 - 2011, -Date,SO2_emissions -1992,124770 -1993,122657 -1994,120543 -1995,118311 -1996,117804 -1997,116703 -1998,114790 -1999,110752 -2000,110425 -2001,108731 -2002,108097 -2003,110944 -2004,114584 -2005,116005 -2006,115887 -2007,114739 -2008,112351 -2009,107799 -2010,106726 -2011,104701 -2012,104697 -2013,104693 -2014,104689 -2015,104685 -2016,104681 -2017,104677 -2018,104673 -2019,104669 -2020,104665 -2021,104661 -2022,104657 -2023,104653 -2024,104649 -2025,104645 -2026,104641 -2027,104637 -2028,104633 -2029,104629 -2030,104625 -2031,104621 -2032,104617 -2033,104613 -2034,104609 -2035,104605 -2036,104601 -2037,104597 -2038,104593 -2039,104589 -2040,104585 -2041,104581 -2042,104577 -2043,104573 -2044,104569 -2045,104565 -2046,104561 -2047,104557 -2048,104553 -2049,104549 -2050,104545 -2051,104541 -2052,104537 -2053,104533 -2054,104529 -2055,104525 -2056,104521 -2057,104517 -2058,104513 -2059,104509 -2060,104505 -2061,104501 -2062,104497 -2063,104493 -2064,104489 -2065,104485 -2066,104481 -2067,104477 -2068,104473 -2069,104469 -2070,104465 -2071,104461 -2072,104457 -2073,104453 -2074,104449 -2075,104445 -2076,104441 -2077,104437 -2078,104433 -2079,104429 -2080,104425 -2081,104421 -2082,104417 -2083,104413 -2084,104409 -2085,104405 -2086,104401 -2087,104397 -2088,104393 -2089,104389 -2090,104385 -2091,104381 -2092,104377 -2093,104373 -2094,104369 -2095,104365 -2096,104361 -2097,104357 -2098,104353 -2099,104349 -2100,104345 diff --git a/inst/input/emissions/emissions.csv b/inst/input/emissions/emissions.csv deleted file mode 100644 index 79364051a..000000000 --- a/inst/input/emissions/emissions.csv +++ /dev/null @@ -1,260 +0,0 @@ -; Fossil-fuel emissions http://cdiac.ornl.gov/ftp/ndp030/CSV-FILES/global.1751_2007.csv,, -; LUC emissions from http://cdiac.ornl.gov/trends/landuse/houghton/1850-2005.txt,, -date,ffi_emissions,luc_emissions -1751,0.003, -1752,0.003, -1753,0.003, -1754,0.003, -1755,0.003, -1756,0.003, -1757,0.003, -1758,0.003, -1759,0.003, -1760,0.003, -1761,0.003, -1762,0.003, -1763,0.003, -1764,0.003, -1765,0.003, -1766,0.003, -1767,0.003, -1768,0.003, -1769,0.003, -1770,0.003, -1771,0.004, -1772,0.004, -1773,0.004, -1774,0.004, -1775,0.004, -1776,0.004, -1777,0.004, -1778,0.004, -1779,0.004, -1780,0.004, -1781,0.005, -1782,0.005, -1783,0.005, -1784,0.005, -1785,0.005, -1786,0.005, -1787,0.005, -1788,0.005, -1789,0.005, -1790,0.005, -1791,0.006, -1792,0.006, -1793,0.006, -1794,0.006, -1795,0.006, -1796,0.006, -1797,0.007, -1798,0.007, -1799,0.007, -1800,0.008, -1801,0.008, -1802,0.01, -1803,0.009, -1804,0.009, -1805,0.009, -1806,0.01, -1807,0.01, -1808,0.01, -1809,0.01, -1810,0.01, -1811,0.011, -1812,0.011, -1813,0.011, -1814,0.011, -1815,0.012, -1816,0.013, -1817,0.014, -1818,0.014, -1819,0.014, -1820,0.014, -1821,0.014, -1822,0.015, -1823,0.016, -1824,0.016, -1825,0.017, -1826,0.017, -1827,0.018, -1828,0.018, -1829,0.018, -1830,0.024, -1831,0.023, -1832,0.023, -1833,0.024, -1834,0.024, -1835,0.025, -1836,0.029, -1837,0.029, -1838,0.03, -1839,0.031, -1840,0.033, -1841,0.034, -1842,0.036, -1843,0.037, -1844,0.039, -1845,0.043, -1846,0.043, -1847,0.046, -1848,0.047, -1849,0.05, -1850,0.054,0.5006 -1851,0.054,0.4927 -1852,0.057,0.5485 -1853,0.059,0.5468 -1854,0.069,0.5448 -1855,0.071,0.5421 -1856,0.076,0.5477 -1857,0.077,0.5533 -1858,0.078,0.5586 -1859,0.083,0.564 -1860,0.091,0.569 -1861,0.095,0.5796 -1862,0.097,0.5209 -1863,0.104,0.5211 -1864,0.112,0.5216 -1865,0.119,0.5224 -1866,0.122,0.5225 -1867,0.13,0.5208 -1868,0.135,0.5192 -1869,0.142,0.5175 -1870,0.147,0.5163 -1871,0.156,0.5367 -1872,0.173,0.6232 -1873,0.184,0.6341 -1874,0.174,0.6411 -1875,0.188,0.6484 -1876,0.191,0.6555 -1877,0.194,0.6624 -1878,0.196,0.6695 -1879,0.21,0.6764 -1880,0.236,0.6829 -1881,0.243,0.7189 -1882,0.256,0.6727 -1883,0.272,0.6783 -1884,0.275,0.6834 -1885,0.277,0.6877 -1886,0.281,0.6904 -1887,0.295,0.6898 -1888,0.327,0.6886 -1889,0.327,0.6872 -1890,0.356,0.6859 -1891,0.372,0.6815 -1892,0.374,0.695 -1893,0.37,0.6958 -1894,0.383,0.7133 -1895,0.406,0.7175 -1896,0.419,0.7194 -1897,0.44,0.723 -1898,0.465,0.7245 -1899,0.507,0.7258 -1900,0.534,0.7269 -1901,0.552,0.7928 -1902,0.566,0.7968 -1903,0.617,0.8259 -1904,0.624,0.8524 -1905,0.663,0.8785 -1906,0.707,0.9095 -1907,0.784,0.9186 -1908,0.75,0.9279 -1909,0.785,0.9353 -1910,0.819,0.941 -1911,0.836,0.8829 -1912,0.879,0.8462 -1913,0.943,0.8159 -1914,0.85,0.8048 -1915,0.838,0.793 -1916,0.901,0.7951 -1917,0.955,0.7982 -1918,0.936,0.8014 -1919,0.806,0.8071 -1920,0.932,0.8088 -1921,0.803,0.8567 -1922,0.845,0.8491 -1923,0.97,0.857 -1924,0.963,0.8627 -1925,0.975,0.8656 -1926,0.983,0.8705 -1927,1.062,0.9097 -1928,1.065,0.913 -1929,1.145,0.94 -1930,1.053,1.0181 -1931,0.94,1.0287 -1932,0.847,0.9308 -1933,0.893,0.9276 -1934,0.973,0.9153 -1935,1.027,0.9137 -1936,1.13,0.922 -1937,1.209,0.8993 -1938,1.142,0.9024 -1939,1.192,0.9005 -1940,1.299,0.8875 -1941,1.334,0.8702 -1942,1.342,0.8913 -1943,1.391,0.8864 -1944,1.383,0.8923 -1945,1.16,0.8941 -1946,1.238,0.9769 -1947,1.392,1.0089 -1948,1.469,1.0158 -1949,1.419,1.0249 -1950,1.63,1.0373 -1951,1.767,1.2583 -1952,1.795,1.2847 -1953,1.841,1.2809 -1954,1.865,1.335 -1955,2.043,1.3795 -1956,2.177,1.4389 -1957,2.27,1.4691 -1958,2.33,1.5208 -1959,2.462,1.3978 -1960,2.577,1.3858 -1961,2.594,1.4639 -1962,2.7,1.46 -1963,2.847,1.4749 -1964,3.008,1.4871 -1965,3.145,1.505 -1966,3.305,1.5393 -1967,3.411,1.5458 -1968,3.588,1.4777 -1969,3.8,1.4831 -1970,4.076,1.4397 -1971,4.23,1.2917 -1972,4.398,1.2642 -1973,4.634,1.2487 -1974,4.643,1.2545 -1975,4.614,1.2451 -1976,4.883,1.3119 -1977,5.021,1.3151 -1978,5.084,1.3119 -1979,5.367,1.2838 -1980,5.316,1.2399 -1981,5.151,1.2634 -1982,5.119,1.463 -1983,5.099,1.5129 -1984,5.283,1.5601 -1985,5.434,1.5832 -1986,5.603,1.6011 -1987,5.747,1.6111 -1988,5.96,1.6385 -1989,6.081,1.647 -1990,6.149,1.6437 -1991,6.241,1.7125 -1992,6.126,1.605 -1993,6.132,1.5938 -1994,6.249,1.5805 -1995,6.387,1.5616 -1996,6.524,1.5313 -1997,6.649,1.4913 -1998,6.63,1.4872 -1999,6.571,1.4492 -2000,6.738,1.4099 -2001,6.9,1.3854 -2002,6.955,1.5177 -2003,7.289,1.5132 -2004,7.671,1.5349 -2005,7.971,1.4673 -2006,8.225, -2007,8.365, diff --git a/inst/input/emissions/gcam_emissions.csv b/inst/input/emissions/gcam_emissions.csv deleted file mode 100644 index 68fe59bd9..000000000 --- a/inst/input/emissions/gcam_emissions.csv +++ /dev/null @@ -1,250 +0,0 @@ -; Standard historical emissions for GCAM, 1990-2010. Pre-1990 and Post-2010 emissions are from RCP4.5, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -; taken from GCAM_ROOT/input/magicc/Historical\ Emissions/Default\ Emissions\ Module/Hist_to_2008_Annual.csv,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -;UNITS:,GtC/yr,GtC/yr,Gg,Gg,MtS/yr,GgS/yr,MtCO/yr,Mt/yr,MtN/yr,Mt/yr,Mt/yr,MtN/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr,kt/yr -Date,ffi_emissions,luc_emissions,CH4_emissions,N2O_emissions,SOx,SO2_emissions,CO_emissions,NMVOC_emissions,NOX_emissions,BC_emissions,OC_emissions,NH3,CF4_emissions,C2F6_emissions,C6F14,HFC23_emissions,HFC32_emissions,HFC4310_emissions,HFC125_emissions,HFC134a_emissions,HFC143a_emissions,HFC227ea_emissions,HFC245fa_emissions,SF6_emissions,CFC11_emissions,CFC12_emissions,CFC113_emissions,CFC114_emissions,CFC115_emissions,CCl4_emissions,CH3CCl3_emissions,HCFC22_emissions,HCFC141b_emissions,HCFC142b_emissions,halon1211_emissions,HALON1202,halon1301_emissions,halon2402_emissions,CH3Br_emissions,CH3Cl_emissions -1765,0.003,0,0,0,0,0,0,0,0,0,0,0.83383669,0.010762744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1766,0.003,0.005338296,1.9632619,0.005191085,0.098882647,98.882647,9.0502213,1.5968747,0.10950162,0.106998,0.56591996,0.85423057,0.010752073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1767,0.003,0.010676593,2.4364481,0.010116813,0.1163065,116.3065,12.960844,2.2923164,0.16803826,0.1333826,0.78146771,0.87416738,0.010747949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1768,0.003,0.016014889,2.911105,0.015042803,0.13381075,133.81075,16.876539,2.9886478,0.2266252,0.15984677,0.99736131,0.89365446,0.01074382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1769,0.003,0.021353185,3.3872782,0.019969063,0.15139789,151.39789,20.797465,3.6858966,0.28526401,0.18639296,1.2136114,0.91269911,0.010739687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1770,0.003,0.026691482,3.8650146,0.024895601,0.16907049,169.07049,24.723782,4.3840909,0.34395628,0.21302373,1.4302291,0.93130867,0.010735548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1771,0.004,0.032029778,4.3443625,0.029822427,0.18683119,186.83119,28.655658,5.0832602,0.40270367,0.23974168,1.6472257,0.95253247,0.010731403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1772,0.004,0.037368074,4.8253718,0.034749548,0.20468271,204.68271,32.593264,5.7834346,0.46150789,0.26654951,1.864613,0.97029378,0.010727254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1773,0.004,0.042706371,5.3080938,0.039676975,0.22262786,222.62786,36.536778,6.4846451,0.52037068,0.29345,2.082403,0.98764194,0.010723098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1774,0.004,0.048044667,5.7925816,0.044604715,0.24066954,240.66954,40.486382,7.1869238,0.57929387,0.32044601,2.3006082,1.0045843,0.010718937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1775,0.004,0.053382963,6.2788896,0.04953278,0.25881073,258.81073,44.442265,7.8903037,0.63827932,0.34754051,2.5192414,1.0211281,0.010714769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1776,0.004,0.058721259,6.7670743,0.05446118,0.27705451,277.05451,48.40462,8.5948188,0.69732895,0.37473653,2.7383159,1.0372808,0.010710595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1777,0.004,0.064059556,7.2571937,0.059389923,0.29540406,295.40406,52.373649,9.3005044,0.75644476,0.40203721,2.9578452,1.0530496,0.010706413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1778,0.004,0.069397852,7.7493076,0.064319022,0.31386264,313.86264,56.349557,10.007397,0.81562878,0.4294458,3.1778436,1.0684418,0.010702225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1779,0.004,0.074736148,8.2434776,0.069248487,0.33243362,332.43362,60.332558,10.715533,0.87488313,0.45696563,3.3983254,1.0834648,0.01069803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1780,0.004,0.080074445,8.7397674,0.07417833,0.35112049,351.12049,64.32287,11.424951,0.93420999,0.48460014,3.6193057,1.0981259,0.010693826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1781,0.005,0.085412741,9.2382426,0.079108562,0.36992683,369.92683,68.32072,12.135692,0.99361159,0.51235288,3.8407999,1.1154744,0.010689617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1782,0.005,0.090751037,9.7389706,0.084039195,0.38885633,388.85633,72.32634,12.847795,1.0530902,0.5402275,4.0628238,1.1294337,0.010685398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1783,0.005,0.096089334,10.242021,0.088970241,0.4079128,407.9128,76.339972,13.561303,1.1126483,0.56822778,4.2853938,1.143053,0.010681171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1784,0.005,0.10142763,10.747466,0.093901714,0.42710016,427.10016,80.361863,14.27626,1.1722883,0.59635759,4.5085268,1.1563396,0.010676935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1785,0.005,0.10676593,11.25538,0.098833627,0.44642248,446.42248,84.392268,14.992711,1.2320128,0.62462095,4.7322403,1.169301,0.010672691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1786,0.005,0.11210422,11.765839,0.10376599,0.46588391,465.88391,88.431451,15.710701,1.2918242,0.65302198,4.9565522,1.1819444,0.010668437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1787,0.005,0.11744252,12.278921,0.10869883,0.48548877,485.48877,92.479683,16.430278,1.3517254,0.68156496,5.1814809,1.194277,0.010664172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1788,0.005,0.12278082,12.794707,0.11363214,0.50524148,505.24148,96.537244,17.151491,1.4117191,0.71025425,5.4070456,1.2063064,0.010659899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1789,0.005,0.12811911,13.313282,0.11856595,0.52514663,525.14663,100.60442,17.874391,1.4718082,0.73909439,5.633266,1.2180397,0.010655614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1790,0.005,0.13345741,13.834732,0.12350027,0.54520892,545.20892,104.68152,18.59903,1.5319956,0.76809005,5.8601623,1.2294843,0.010651319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1791,0.006,0.1387957,14.359145,0.12843512,0.56543322,565.43322,108.76883,19.325462,1.5922843,0.79724604,6.0877554,1.2436895,0.010647012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1792,0.006,0.144134,14.886613,0.13337052,0.58582453,585.82453,112.86668,20.053742,1.6526776,0.8265673,6.3160669,1.2545786,0.010642695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1793,0.006,0.1494723,15.417231,0.13830648,0.60638803,606.38803,116.9754,20.783927,1.7131785,0.85605896,6.5451189,1.265201,0.010638364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1794,0.006,0.15481059,15.951096,0.14324301,0.62712904,627.12904,121.09532,21.516077,1.7737906,0.88572629,6.7749345,1.2755639,0.010634021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1795,0.006,0.16014889,16.488308,0.14818014,0.64805304,648.05304,125.22678,22.250252,1.8345171,0.91557471,7.0055372,1.2856747,0.010629666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1796,0.006,0.16548719,17.028971,0.15311788,0.66916569,669.16569,129.37015,22.986514,1.8953617,0.94560984,7.2369513,1.2955407,0.010625297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1797,0.007,0.17082548,17.573192,0.15805626,0.69047284,690.47284,133.52578,23.724929,1.9563279,0.97583743,7.469202,1.3082113,0.010620914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1798,0.007,0.17616378,18.121081,0.16299529,0.7119805,711.9805,137.69407,24.465563,2.0174196,1.0062635,7.7023151,1.3176096,0.010616517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1799,0.007,0.18150207,18.672751,0.167935,0.73369486,733.69486,141.8754,25.208484,2.0786406,1.036894,7.9363173,1.3267852,0.010612106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1800,0.008,0.18684037,19.228319,0.1728754,0.75562233,755.62233,146.07018,25.953763,2.1399949,1.0677355,8.1712361,1.3387872,0.010607681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1801,0.008,0.19217867,19.787906,0.17781651,0.77776949,777.76949,150.27882,26.701473,2.2014867,1.0987944,8.4070999,1.347539,0.010603238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1802,0.01,0.19751696,20.351635,0.18275836,0.80014313,800.14313,154.50174,27.45169,2.2631202,1.1300774,8.6439378,1.362174,0.01059878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1803,0.009,0.20285526,20.919636,0.18770098,0.82275026,822.75026,158.7394,28.204491,2.3248998,1.1615915,8.88178,1.3674894,0.010594305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1804,0.009,0.20819356,21.49204,0.19264437,0.84559811,845.59811,162.99225,28.959955,2.38683,1.1933438,9.1206576,1.3756605,0.010589813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1805,0.009,0.21353185,22.068984,0.19758858,0.86869411,868.69411,167.26075,29.718165,2.4489154,1.2253417,9.3606025,1.3836527,0.010585303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1806,0.01,0.21887015,22.650607,0.20253362,0.89204595,892.04595,171.5454,30.479207,2.511161,1.2575928,9.6016479,1.3945153,0.010580775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1807,0.01,0.22420845,23.237055,0.20747952,0.91566153,915.66153,175.84668,31.243167,2.5735715,1.2901048,9.8438276,1.4021716,0.010576228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1808,0.01,0.22954674,23.828476,0.2124263,0.93954901,939.54901,180.16513,32.010136,2.6361521,1.322886,10.087177,1.409671,0.010571661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1809,0.01,0.23488504,24.425025,0.217374,0.9637168,963.7168,184.50125,32.780207,2.6989081,1.3559445,10.331732,1.4170207,0.010567074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1810,0.01,0.24022333,25.02686,0.22232264,0.98817358,988.17358,188.85561,33.553476,2.7618449,1.3892891,10.57753,1.424228,0.010562467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1811,0.011,0.24556163,25.634145,0.22727225,1.0129283,1012.9283,193.22877,34.330042,2.8249681,1.4229284,10.824609,1.4343424,0.010557838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1812,0.011,0.25089993,26.247048,0.23222285,1.0379901,1037.9901,197.62131,35.110006,2.8882835,1.4568717,11.073009,1.4412871,0.010553187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1813,0.011,0.25623822,26.865743,0.2371745,1.0633685,1063.3685,202.03382,35.893474,2.951797,1.4911284,11.322772,1.4481114,0.010548513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1814,0.011,0.26157652,27.490408,0.2421272,1.0890734,1089.0734,206.46693,36.680555,3.0155147,1.5257081,11.573938,1.4548227,0.010543815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1815,0.012,0.26691482,28.12123,0.247081,1.1151148,1115.1148,210.92127,37.471359,3.0794429,1.5606208,11.826552,1.4644703,0.010539094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1816,0.013,0.27225311,28.758398,0.25203593,1.1415031,1141.5031,215.39751,38.266003,3.1435882,1.5958768,12.080658,1.4740194,0.010534347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1817,0.014,0.27759141,29.402108,0.25699203,1.1682491,1168.2491,219.8963,39.064605,3.2079573,1.6314868,12.336302,1.4834775,0.010529574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1818,0.014,0.2829297,30.052563,0.26194932,1.1953638,1195.3638,224.41836,39.867286,3.272557,1.6674616,12.593532,1.4898097,0.010524775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1819,0.014,0.288268,30.709971,0.26690786,1.2228586,1222.8586,228.96441,40.674175,3.3373946,1.7038127,12.852397,1.4960655,0.010519947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1820,0.014,0.2936063,31.374548,0.27186767,1.2507453,1250.7453,233.53518,41.485399,3.4024773,1.7405516,13.112948,1.5022522,0.010515091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1821,0.014,0.29894459,32.046514,0.2768288,1.279036,1279.036,238.13144,42.301095,3.4678129,1.7776902,13.375236,1.5083771,0.010510206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1822,0.015,0.30428289,32.7261,0.28179128,1.3077432,1307.7432,242.75398,43.121399,3.533409,1.815241,13.639316,1.5174895,0.010505291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1823,0.016,0.30962119,33.413539,0.28675516,1.3368798,1336.8798,247.40361,43.946455,3.5992737,1.8532168,13.905243,1.5265547,0.010500343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1824,0.016,0.31495948,34.109076,0.29172049,1.366459,1366.459,252.08117,44.77641,3.6654154,1.8916306,14.173074,1.532538,0.010495364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1825,0.017,0.32029778,34.81296,0.2966873,1.3964945,1396.4945,256.78752,45.611414,3.7318426,1.930496,14.442867,1.5415308,0.010490352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1826,0.017,0.32563608,35.52545,0.30165564,1.4270005,1427.0005,261.52355,46.451625,3.7985641,1.969827,14.714684,1.5474564,0.010485305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1827,0.018,0.33097437,36.246813,0.30662557,1.4579916,1457.9916,266.29019,47.297202,3.8655891,2.009638,14.988587,1.5564061,0.010480223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1828,0.018,0.33631267,36.977321,0.31159712,1.4894826,1489.4826,271.08837,48.148313,3.9329269,2.0499438,15.264641,1.5623033,0.010475104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1829,0.018,0.34165096,37.717259,0.31657035,1.5214891,1521.4891,275.91908,49.005128,4.0005873,2.0907597,15.542912,1.5681971,0.010469948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1830,0.024,0.34698926,38.466917,0.32154532,1.554027,1554.027,280.78331,49.867824,4.0685801,2.1321015,15.823469,1.5923472,0.010464751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1831,0.023,0.35232756,39.226597,0.32652206,1.5871128,1587.1128,285.68212,50.736582,4.1369156,2.1739855,16.106382,1.5952145,0.010459517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1832,0.023,0.35766585,39.996609,0.33150065,1.6207633,1620.7633,290.61656,51.611591,4.2056046,2.2164284,16.391724,1.6011425,0.010454239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1833,0.024,0.36300415,40.777271,0.33648114,1.6549962,1654.9962,295.58773,52.493043,4.2746578,2.2594475,16.679571,1.6101385,0.01044892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1834,0.024,0.36834245,41.568914,0.34146358,1.6898292,1689.8292,300.59678,53.381137,4.3440866,2.3030607,16.97,1.6161259,0.010443556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1835,0.025,0.37368074,42.371876,0.34644803,1.7252812,1725.2812,305.64487,54.27608,4.4139026,2.3472862,17.26309,1.6251959,0.010438147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1836,0.029,0.37901904,43.186509,0.35143456,1.7613711,1761.3711,310.73322,55.178082,4.4841177,2.3921432,17.558925,1.64344,0.010432691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1837,0.029,0.38435733,44.013173,0.35642324,1.7981187,1798.1187,315.86307,56.087363,4.5547443,2.437651,17.857588,1.6495713,0.010427186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1838,0.03,0.38969563,44.85224,0.36141413,1.8355443,1835.5443,321.03569,57.004147,4.6257951,2.4838298,18.159168,1.6588072,0.010421632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1839,0.031,0.39503393,45.704093,0.36640729,1.873669,1873.669,326.25242,57.928667,4.6972833,2.5307004,18.463755,1.6681131,0.010416028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1840,0.032999999,0.40037222,46.569129,0.3714028,1.9125143,1912.5143,331.51462,58.861161,4.7692224,2.5782841,18.771441,1.6805382,0.010410369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1841,0.033999999,0.40571052,47.447755,0.37640073,1.9521025,1952.1025,336.82369,59.801876,4.8416262,2.6266031,19.082323,1.6900059,0.010404655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1842,0.035999999,0.41104882,48.34039,0.38140115,1.9924567,1992.4567,342.18109,60.751067,4.9145093,2.67568,19.396499,1.7026076,0.010398886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1843,0.036999999,0.41638711,49.247469,0.38640415,2.0336004,2033.6004,347.5883,61.708996,4.9878863,2.7255383,19.714071,1.7122664,0.010393057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1844,0.038999999,0.42172541,50.169439,0.3914098,2.0755581,2075.5581,353.04688,62.675932,5.0617727,2.7762021,20.035144,1.7250737,0.01038717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1845,0.042999999,0.42706371,51.106759,0.39641818,2.118355,2118.355,358.5584,63.652156,5.1361841,2.8276964,20.359827,1.744079,0.01038122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1846,0.042999999,0.432402,52.059904,0.40142938,2.1620171,2162.0171,364.1245,64.637952,5.2111367,2.8800469,20.688231,1.7510373,0.010375207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1847,0.045999999,0.4377403,53.029365,0.40644349,2.206571,2206.571,369.74689,65.633619,5.2866474,2.9332801,21.020471,1.7672503,0.010369128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1848,0.046999999,0.44307859,54.015644,0.41146059,2.2520444,2252.0444,375.42728,66.639461,5.3627334,2.9874231,21.356666,1.7775149,0.010362983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1849,0.049999999,0.44841689,55.019264,0.41648078,2.2984658,2298.4658,381.16749,67.655792,5.4394124,3.0425043,21.696939,1.7940068,0.010356769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157.267,3100.211 -1850,0.053999999,0.45375519,56.040759,0.42150415,2.3458644,2345.8644,386.96935,68.682938,5.5167028,3.0985525,22.041414,1.8136911,0.010350482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.395,0,0,0,0,0,0,0,0,157.267,3100.211 -1851,0.053999999,0.44678569,56.46132,0.42740096,2.401282,2401.282,387.46072,68.727765,5.5423239,3.1187417,22.105064,1.8469194,0.010350913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.447,0,0,0,0,0,0,0,0,157.267,3100.211 -1852,0.056999999,0.49862282,56.88188,0.46466062,2.4566996,2456.6996,387.95209,68.772592,5.5679451,3.1389309,22.168714,1.9946876,0.010351344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.502,0,0,0,0,0,0,0,0,157.267,3100.211 -1853,0.058999999,0.49735449,57.302441,0.46477417,2.5121172,2512.1172,388.44346,68.817418,5.5935662,3.15912,22.232363,2.0008114,0.010351774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0,0,0,0,0,0,0,157.267,3100.211 -1854,0.068999999,0.49581708,57.723001,0.46443647,2.5675348,2567.5348,388.93483,68.862245,5.6191873,3.1793092,22.296013,2.0303036,0.010352205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,0,0,0,0,0,0,0,0,157.267,3100.211 -1855,0.070999999,0.49367925,58.143562,0.46327909,2.6229524,2622.9524,389.42621,68.907072,5.6448084,3.1994983,22.359663,2.0325148,0.010352638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.657,0,0,0,0,0,0,0,0,157.267,3100.211 -1856,0.075999999,0.49893488,58.564122,0.46729312,2.6783701,2678.3701,389.91758,68.951899,5.6704295,3.2196875,22.423312,2.0617637,0.01035307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.712,0,0,0,0,0,0,0,0,157.267,3100.211 -1857,0.076999999,0.504232,58.984683,0.47126447,2.7337877,2733.7877,390.40895,68.996726,5.6960507,3.2398767,22.486962,2.078453,0.0103535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.765,0,0,0,0,0,0,0,0,157.267,3100.211 -1858,0.077999999,0.50923298,59.405243,0.47503119,2.7892053,2789.2053,390.90032,69.041553,5.7216718,3.2600658,22.550611,2.0943024,0.010353931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.815,0,0,0,0,0,0,0,0,157.267,3100.211 -1859,0.082999999,0.51425389,59.825804,0.47876627,2.8446229,2844.6229,391.39169,69.08638,5.7472929,3.280255,22.614261,2.122971,0.010354362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.87,0,0,0,0,0,0,0,0,157.267,3100.211 -1860,0.090999999,0.51896689,60.246364,0.48257672,2.9000405,2900.0405,391.88307,69.131206,5.772914,3.3004441,22.677911,2.1619782,0.010354793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.923,0,0,0,0,0,0,0,0,157.267,3100.211 -1861,0.094999998,0.5282236,59.614468,0.50499476,2.9926781,2992.6781,392.8961,69.269044,5.8128366,3.3244138,22.734528,2.2735927,0.01035496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.973,0,0,0,0,0,0,0,0,157.267,3100.211 -1862,0.096999998,0.47371663,58.982573,0.47111281,3.0853157,3085.3157,393.90914,69.406881,5.8527592,3.3483835,22.791144,2.1558166,0.010355129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,0,0,0,0,0,0,0,0,157.267,3100.211 -1863,0.104,0.47374912,58.350677,0.47444935,3.1779532,3177.9532,394.92218,69.544719,5.8926817,3.3723532,22.847761,2.192329,0.010355298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.081,0,0,0,0,0,0,0,0,157.267,3100.211 -1864,0.112,0.47413825,57.718781,0.47785801,3.2705908,3270.5908,395.93522,69.682556,5.9326043,3.3963229,22.904378,2.2299438,0.010355467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.134,0,0,0,0,0,0,0,0,157.267,3100.211 -1865,0.119,0.47479536,57.086885,0.48144966,3.3632284,3363.2284,396.94826,69.820393,5.9725268,3.4202926,22.960995,2.2655309,0.010355635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.184,0,0,0,0,0,0,0,0,157.267,3100.211 -1866,0.122,0.47491218,56.45499,0.48420454,3.455866,3455.866,397.9613,69.958231,6.0124494,3.4442623,23.017612,2.2871958,0.010355804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.239,0,0,0,0,0,0,0,0,157.267,3100.211 -1867,0.13022269,0.47338353,55.823094,0.48472337,3.5485035,3548.5035,398.97434,70.096068,6.052372,3.4682319,23.074229,2.3187563,0.010355975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.291,0,0,0,0,0,0,0,0,157.267,3100.211 -1868,0.13525196,0.47198274,55.191198,0.48595323,3.6411411,3641.1411,399.98738,70.233905,6.0922945,3.4922016,23.130846,2.3371841,0.010356145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.341,0,0,0,0,0,0,0,0,157.267,3100.211 -1869,0.14228123,0.47048522,54.559303,0.48686155,3.7337787,3733.7787,401.00042,70.371743,6.1322171,3.5161713,23.187463,2.3628056,0.010356316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.386,0,0,0,0,0,0,0,0,157.267,3100.211 -1870,0.14731051,0.46933399,53.927407,0.48774355,3.8264163,3826.4163,402.01346,70.50958,6.1721397,3.540141,23.244079,2.3824052,0.010356485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.452,0,0,0,0,0,0,0,0,157.267,3100.211 -1871,0.15633978,0.48732546,56.683869,0.58501628,3.9931681,3993.1681,403.03248,70.653331,6.217166,3.562453,23.283844,2.8606677,0.010356891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.505,0,0,0,0,0,0,0,0,157.267,3100.211 -1872,0.17336905,0.56696435,59.440331,0.66673981,4.1599199,4159.9199,404.0515,70.797082,6.2621924,3.5847651,23.323608,3.2401697,0.010357297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.557,0,0,0,0,0,0,0,0,157.267,3100.211 -1873,0.18439832,0.57690133,62.196793,0.69637076,4.3266717,4326.6717,405.07052,70.940834,6.3072188,3.6070771,23.363373,3.4033641,0.010357705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0,0,157.267,3100.211 -1874,0.1744276,0.58328394,64.953255,0.7087503,4.4934235,4493.4235,406.08954,71.084585,6.3522452,3.6293891,23.403138,3.4271557,0.010358112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.663,0,0,0,0,0,0,0,0,157.267,3100.211 -1875,0.18845687,0.5899696,67.709717,0.72034342,4.6601753,4660.1753,407.10856,71.228336,6.3972715,3.6517012,23.442902,3.5173084,0.010358519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,157.267,3100.211 -1876,0.19148614,0.59639187,70.46618,0.74524338,4.8269271,4826.9271,408.12758,71.372087,6.4422979,3.6740132,23.482667,3.6375503,0.010358927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.989,0,0,0,0,0,0,0,0,157.267,3100.211 -1877,0.19451541,0.60262312,73.222642,0.75633197,4.9936789,4993.6789,409.1466,71.515838,6.4873243,3.6963253,23.522431,3.6958465,0.010359338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,157.267,3100.211 -1878,0.196,0.6090507,75.979104,0.7660459,5.1604307,5160.4307,410.16562,71.659589,6.5323507,3.7186373,23.562196,3.7456526,0.010359748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.275,0,0,0,0,0,0,0,0,157.267,3100.211 -1879,0.21,0.61534752,78.735566,0.77491118,5.3271825,5327.1825,411.18464,71.80334,6.577377,3.7409493,23.60196,3.8304098,0.01036016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.396,0,0,0,0,0,0,0,0,157.267,3100.211 -1880,0.236,0.62124317,81.492028,0.78412129,5.4939343,5493.9343,412.20366,71.947091,6.6224034,3.7632614,23.641725,3.9520183,0.010360569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1881,0.243,0.64887292,84.359461,0.81157848,5.7623214,5762.3214,413.25581,72.099835,6.6759474,3.7925706,23.675442,4.071307,0.010361286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.726,0,0,0,0,0,0,0,0,157.267,3100.211 -1882,0.256,0.60466403,87.226893,0.78526034,6.0307085,6030.7085,414.30795,72.252579,6.7294913,3.8218798,23.709158,4.0198711,0.010362003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.883,0,0,0,0,0,0,0,0,157.267,3100.211 -1883,0.272,0.60851762,90.094326,0.79255607,6.2990955,6299.0955,415.3601,72.405323,6.7830353,3.851189,23.742875,4.0985326,0.01036272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.043,0,0,0,0,0,0,0,0,157.267,3100.211 -1884,0.275,0.61212775,92.961758,0.7987505,6.5674826,6567.4826,416.41225,72.558067,6.8365793,3.8804982,23.776592,4.1333435,0.010363441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.233,0,0,0,0,0,0,0,0,157.267,3100.211 -1885,0.27699999,0.61523611,95.829191,0.80453383,6.8358696,6835.8696,417.46439,72.710811,6.8901232,3.9098074,23.810309,4.1646148,0.010364164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.427,0,0,0,0,0,0,0,0,157.267,3100.211 -1886,0.28099999,0.61714413,98.696624,0.82619361,7.1042567,7104.2567,418.51654,72.863555,6.9436672,3.9391166,23.844026,4.2758916,0.010364884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.625,0,0,0,0,0,0,0,0,157.267,3100.211 -1887,0.295,0.61616314,101.56406,0.83219647,7.3726438,7372.6438,419.56869,73.016299,6.9972112,3.9684258,23.877742,4.353178,0.010365604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1888,0.32699999,0.61473356,104.43149,0.83705812,7.6410308,7641.0308,420.62083,73.169043,7.0507551,3.997735,23.911459,4.4748698,0.010366324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.033,0,0,0,0,0,0,0,0,157.267,3100.211 -1889,0.32699999,0.6132002,107.29892,0.84143987,7.9094179,7909.4179,421.67298,73.321787,7.1042991,4.0270443,23.945176,4.498422,0.010367045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.27,0,0,0,0,0,0,0,0,157.267,3100.211 -1890,0.35599999,0.61175412,110.16635,0.84552548,8.1778049,8177.8049,422.72513,73.474531,7.1578431,4.0563535,23.978893,4.6037011,0.010367767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.485,0,0,0,0,0,0,0,0,157.267,3100.211 -1891,0.37199999,0.61024855,111.52362,0.85098169,8.5673728,8567.3728,424.29312,73.700338,7.2358632,4.0882845,24.011375,4.6830725,0.010368724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.731,0,0,0,0,0,0,0,0,157.267,3100.211 -1892,0.37399999,0.62319119,112.88089,0.85741997,8.9569407,8956.9407,425.86111,73.926145,7.3138833,4.1202154,24.043857,4.7551637,0.01036968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.01,0,0,0,0,0,0,0,0,157.267,3100.211 -1893,0.36999999,0.62440331,114.23816,0.86475824,9.3465086,9346.5086,427.42911,74.151953,7.3919035,4.1521464,24.076339,4.8217408,0.010370641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.267,0,0,0,0,0,0,0,0,157.267,3100.211 -1894,0.38299999,0.64036719,115.59543,0.87294487,9.7360765,9736.0765,428.9971,74.37776,7.4699236,4.1840774,24.108821,4.8845702,0.010371602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.529,0,0,0,0,0,0,0,0,157.267,3100.211 -1895,0.40599999,0.64441851,116.9527,0.88188195,10.125644,10125.644,430.56509,74.603567,7.5479437,4.2160084,24.141303,4.9454181,0.01037256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.824,0,0,0,0,0,0,0,0,157.267,3100.211 -1896,0.41899999,0.6462784,118.30997,0.89141802,10.515212,10515.212,432.13309,74.829374,7.6259638,4.2479394,24.173785,5.0060509,0.010373516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.151,0,0,0,0,0,0,0,0,157.267,3100.211 -1897,0.43999999,0.64956412,119.66724,0.90140157,10.90478,10904.78,433.70108,75.055181,7.703984,4.2798704,24.206267,5.0682347,0.010374477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.432,0,0,0,0,0,0,0,0,157.267,3100.211 -1898,0.46499999,0.65100098,121.02451,0.91168111,11.294348,11294.348,435.26907,75.280989,7.7820041,4.3118014,24.238749,5.1337359,0.010375435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.798,0,0,0,0,0,0,0,0,157.267,3100.211 -1899,0.50699999,0.65220446,122.38178,0.92210515,11.683916,11683.916,436.83707,75.506796,7.8600242,4.3437324,24.271232,5.2043208,0.010376393,0.95911885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.119,0,0,0,0,0,0,0,0,157.267,3100.211 -1900,0.53399999,0.65320628,123.73905,0.9325222,12.073484,12073.484,438.40506,75.732603,7.9380443,4.3756633,24.303714,5.2817555,0.010377345,0.050575847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.473,0,0,0,0,0,0,0,0,157.267,3100.211 -1901,0.55199999,0.70294318,124.8415,0.9446669,12.62988,12629.88,439.89156,75.920477,8.0441379,4.4173849,24.336515,5.3685634,0.010379723,0.053237732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.592,0,0,0,0,0,0,0,0,157.267,3100.211 -1902,0.56599999,0.70297364,125.94396,0.95993065,13.186275,13186.275,441.37806,76.108351,8.1502315,4.4591064,24.369316,5.4646652,0.0103821,0.056039719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.762,0,0,0,0,0,0,0,0,157.267,3100.211 -1903,0.61699999,0.72667096,127.04642,0.97764708,13.742671,13742.671,442.86456,76.296224,8.2563251,4.500828,24.402117,5.5679233,0.010384475,0.058989177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.906,0,0,0,0,0,0,0,0,157.267,3100.211 -1904,0.62399999,0.74829324,128.14887,0.99722904,14.299067,14299.067,444.35106,76.484098,8.3624187,4.5425495,24.434918,5.6762002,0.01038685,0.062093873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.102,0,0,0,0,0,0,0,0,157.267,3100.211 -1905,0.66299999,0.76981521,129.25133,1.0181293,14.855463,14855.463,445.83756,76.671972,8.4685123,4.5842711,24.467719,5.7873584,0.010389227,0.065361969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.623,0,0,0,0,0,0,0,0,157.267,3100.211 -1906,0.70699999,0.79653384,130.35378,1.0397413,15.411858,15411.858,447.32406,76.859846,8.5746059,4.6259926,24.50052,5.8992603,0.010391604,0.068802075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.093,0,0,0,0,0,0,0,0,157.267,3100.211 -1907,0.78399999,0.80376274,131.45624,1.0614586,15.968254,15968.254,448.81056,77.04772,8.6806995,4.6677142,24.533321,6.0097685,0.010393983,0.072423235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.363,0,0,0,0,0,0,0,0,157.267,3100.211 -1908,0.74999999,0.81141278,132.5587,1.0826746,16.52465,16524.65,450.29706,77.235593,8.7867931,4.7094357,24.566122,6.1167454,0.010396358,0.076234986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.633,0,0,0,0,0,0,0,0,157.267,3100.211 -1909,0.78499999,0.81737807,133.66115,1.1027829,17.081045,17081.045,451.78356,77.423467,8.8928867,4.7511573,24.598923,6.2180534,0.010398735,0.080247352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.903,0,0,0,0,0,0,0,0,157.267,3100.211 -1910,0.81899999,0.82198169,134.76361,1.121177,17.637441,17637.441,453.27006,77.611341,8.9989803,4.7928788,24.631724,6.3115552,0.010401115,0.084470898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.146,0,0,0,0,0,0,0,0,157.267,3100.211 -1911,0.83599999,0.77889405,135.96943,1.1389722,17.821423,17821.423,451.75965,77.272725,9.0569588,4.7949516,24.427454,6.3975596,0.010406394,0.088916733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.007,0,0,0,0,0,0,0,0,157.267,3100.211 -1912,0.87899999,0.74784844,137.17525,1.1575596,18.005405,18005.405,450.24925,76.934109,9.1149373,4.7970244,24.223184,6.4786614,0.010411672,0.093596563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.895,0,0,0,0,0,0,0,0,157.267,3100.211 -1913,0.94299999,0.72297977,138.38107,1.1767464,18.189388,18189.388,448.73884,76.595492,9.1729159,4.7990972,24.018914,6.5561518,0.010416951,0.098522697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.025,0,0,0,0,0,0,0,0,157.267,3100.211 -1914,0.84999999,0.71479152,139.5869,1.1962611,18.37337,18373.37,447.22844,76.256876,9.2308944,4.80117,23.814645,6.6313219,0.010422233,0.1037081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.082,0,0,0,0,0,0,0,0,157.267,3100.211 -1915,0.83799999,0.70574964,140.79272,1.2158443,18.557352,18557.352,445.71803,75.91826,9.288873,4.8032428,23.610375,6.7054629,0.010427518,0.10916642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.216,0,0,0,0,0,0,0,0,157.267,3100.211 -1916,0.90099999,0.70811648,141.99854,1.2353217,18.741334,18741.334,444.20762,75.579644,9.3468515,4.8053156,23.406105,6.7798659,0.010432805,0.11491202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.614,0,0,0,0,0,0,0,0,157.267,3100.211 -1917,0.95499999,0.7111963,143.20436,1.254519,18.925316,18925.316,442.69722,75.241028,9.4048301,4.8073885,23.201836,6.8558222,0.010438096,0.12096002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.143,0,0,0,0,0,0,0,0,157.267,3100.211 -1918,0.93599999,0.71430427,144.41019,1.2732618,19.109298,19109.298,441.18681,74.902412,9.4628086,4.8094613,22.997566,6.9346228,0.010443388,0.12732636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.696,0,0,0,0,0,0,0,0,157.267,3100.211 -1919,0.80599999,0.71965435,145.61601,1.2913759,19.29328,19293.28,439.67641,74.563795,9.5207871,4.8115341,22.793296,7.0175589,0.010448682,0.13402771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.196,0,0,0,0,0,0,0,0,157.267,3100.211 -1920,0.93199999,0.72128338,146.82183,1.3086869,19.477262,19477.262,438.166,74.225179,9.5787657,4.8136069,22.589027,7.1059216,0.010453982,0.14108183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.802,0,0,0,0,0,0,0,0,157.267,3100.211 -1921,0.80299999,0.75741661,147.86155,1.3257924,19.863884,19863.884,440.99557,74.68028,9.6457029,4.7987143,22.605247,7.20195,0.0104523,0.14850719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.304,0,0,0,0,0,0,0,0,157.267,3100.211 -1922,0.84499999,0.7479409,148.90128,1.343275,20.250505,20250.505,443.82514,75.13538,9.7126402,4.7838218,22.621467,7.3058291,0.98417991,0.15632334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.563,0,0,0,0,0,0,0,0,157.267,3100.211 -1923,0.96999999,0.75328819,149.941,1.3609385,20.637127,20637.127,446.65471,75.59048,9.7795774,4.7689293,22.637688,7.415769,1.1648849,0.16455089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.35,0,0,0,0,0,0,0,0,157.267,3100.211 -1924,0.96299999,0.75686059,150.98072,1.3796194,21.023748,21023.748,449.48427,76.045581,9.8465147,4.7540367,22.653908,7.5299799,1.2256653,0.17321146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.878,0,0,0,0,0,0,0,0,157.267,3100.211 -1925,0.97499999,0.75808855,152.02045,1.3998974,21.41037,21410.37,452.31384,76.500681,9.9134519,4.7391442,22.670128,7.6466719,1.2896434,0.18232786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.827,0,0,0,0,0,0,0,0,157.267,3100.211 -1926,0.98299999,0.76148327,153.06017,1.4211909,21.796991,21796.991,455.14341,76.955782,9.9803892,4.7242517,22.686349,7.7640552,1.3569897,0.19192405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.446,0,0,0,0,0,0,0,0,157.267,3100.211 -1927,1.062,0.79718283,154.09989,1.4429184,22.183613,22183.613,457.97298,77.410882,10.047326,4.7093591,22.702569,7.8803399,1.4278827,0.20202532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.065,0,0,0,0,0,0,0,0,157.267,3100.211 -1928,1.065,0.79967141,155.13962,1.4644982,22.570234,22570.234,460.80254,77.865982,10.114264,4.6944666,22.718789,7.9937361,1.5025036,0.21265824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.685,0,0,0,0,0,0,0,0,157.267,3100.211 -1929,1.145,0.82422601,156.17934,1.4853488,22.956856,22956.856,463.63211,78.321083,10.181201,4.6795741,22.73501,8.102454,1.5810544,0.22385079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.573,0,0,0,0,0,0,0,0,157.267,3100.211 -1930,1.053,0.89587975,157.21906,1.5048887,23.343477,23343.477,466.46168,78.776183,10.248138,4.6646815,22.75123,8.2047038,1.6637375,0.23563239,0,0.74681988,0,0,0,0,0,0,0,0,0,0,0,0,0,31.933,0,0,0,0,0,0,0,0,157.267,3100.211 -1931,0.93999999,0.90334082,158.34545,1.5226236,23.754956,23754.956,468.03074,78.909446,10.302469,4.6670964,22.748587,8.298548,1.7507764,0.24803412,0,0.067690547,0,0,0,0,0,0,0,0,0,0.097,0,0,0,32.553,0,0,0,0,0,0,0,0,157.267,3100.211 -1932,0.84699999,0.81222597,159.47183,1.5385172,24.166434,24166.434,469.5998,79.042709,10.356801,4.6695113,22.745943,8.3849848,1.8423953,0.26108852,0,0.073576745,0,0,0,0,0,0,0,0,0,0.097,0,0,0,33.979,0,0,0,0,0,0,0,0,157.267,3100.211 -1933,0.89299999,0.80858849,160.59821,1.5526746,24.577913,24577.913,471.16886,79.175973,10.411132,4.6719262,22.7433,8.4666283,1.9388369,0.27483004,0,0.079974791,0,0,0,0,0,0,0,0,0,0.097,0,0,0,41.893,0,0,0,0,0,0,0,0,157.267,3100.211 -1934,0.97299999,0.79686256,161.7246,1.5653127,24.989392,24989.392,472.73791,79.309236,10.465463,4.674341,22.740656,8.5460922,2.0403528,0.28929476,0,0.086929197,0,0,0,0,0,0,0,0,0,0.194,0,0.117,0,42.817,0,0,0,0,0,0,0,0,157.267,3100.211 -1935,1.027,0.79471575,162.85098,1.5771213,25.40087,25400.87,474.30697,79.442499,10.519794,4.6767559,22.738013,8.6259906,2.1472124,0.30452082,0,0.09448834,0,0,0,0,0,0,0,0,0,0.291,0,0.117,0,43.74,0,0,0,0,0,0,0,0,157.267,3100.211 -1936,1.13,0.80129993,163.97736,1.5889151,25.812349,25812.349,475.87603,79.575762,10.574125,4.6791708,22.735369,8.7089373,2.2596977,0.32054821,0,0.10270482,0,0,0,0,0,0,0,0,0,0.485,0,0.117,0,44.664,0,0,0,0,0,0,0,0,157.267,3100.211 -1937,1.209,0.77969902,165.10375,1.6015088,26.223828,26223.828,477.44509,79.709025,10.628457,4.6815857,22.732726,8.7975462,2.3781004,0.33741917,0,0.11163575,0,0,0,0,0,0,0,0,0,0.776,0,0.234,0,45.588,0,0,0,0,0,0,0,0,157.267,3100.211 -1938,1.142,0.78188222,166.23013,1.615717,26.635306,26635.306,479.01415,79.842288,10.682788,4.6840005,22.730082,8.8944313,2.5027381,0.35517808,0,0.12134333,0,0,0,0,0,0,0,0,0.161,1.164,0,0.234,0,46.512,0,0.165,0,0,0,0,0,0,157.267,3100.211 -1939,1.192,0.77944376,167.35651,1.6323545,27.046785,27046.785,480.58321,79.975552,10.737119,4.6864154,22.727439,9.0022064,2.6339328,0.37387169,0,0.13189502,0,0,0,0,0,0,0,0,0.161,1.649,0,0.351,0,47.436,0,0.33,0,0,0,0,0,0,157.267,3100.211 -1940,1.299,0.76683237,168.4829,1.6522358,27.458263,27458.263,482.15227,80.108815,10.79145,4.6888303,22.724795,9.1234856,2.7720335,0.39354912,0,0.14336429,0,0,0,0,0,0,0,0,0.161,2.231,0,0.468,0,50.781,0,0.496,0,0,0,0,0,0,157.267,3100.211 -1941,1.334,0.75036458,170.03046,1.7002044,27.840442,27840.442,488.55777,81.24331,11.123415,4.693243,22.68764,9.2653861,2.9174066,0.41426223,0,0.15583315,0,0,0,0,0,0,0,0,0.161,2.91,0,0.585,0,52.603,0,0.661,0,0,0,0,0,0,157.267,3100.211 -1942,1.342,0.7690497,171.57803,1.7938613,28.22262,28222.62,494.96327,82.377805,11.45538,4.6976558,22.650484,9.4321173,3.0704314,0.39468287,0,0.16938647,0,0,0,0,0,0,0,0,0.161,3.589,0,0.819,0,53.918,0,0.826,0,0,0,0,0,0,157.267,3100.211 -1943,1.391,0.7637656,173.12559,1.9231582,28.604799,28604.799,501.36878,83.5123,11.787344,4.7020686,22.613328,9.6219311,3.2315097,0.37832187,0,0.18411857,0,0,0,0,0,0,0,0,0.322,4.365,0,1.17,0,54.705,0,0.991,0,0,0,0,0,0,157.267,3100.211 -1944,1.383,0.76839864,174.67315,2.0866797,28.986977,28986.977,507.77428,84.646796,12.119309,4.7064813,22.576173,9.8330792,3.4010636,0.3640764,0,0.20013198,0,0,0,0,0,0,0,0,0.322,5.917,0,1.521,0,55.75,0,1.157,0,0,0,0,0,0,157.267,3100.211 -1945,1.16,0.76914739,176.22072,2.280402,29.369156,29369.156,514.17979,85.781291,12.451274,4.7108941,22.539017,10.063814,3.579544,0.35194679,0,0.21753811,0,0,0,0,0,0,0,0,0.483,7.76,1.868,3.861,0,56.796,0,1.322,0,0,0,0,0,0,157.267,3100.211 -1946,1.238,0.84214892,177.76828,2.4903635,29.751334,29751.334,520.58529,86.915786,12.783238,4.7153069,22.501861,10.312386,3.7674167,0.34193311,0,0.23645812,0,0,0,0,0,0,0,0,0.966,13.483,4.203,6.318,0,59.187,0,1.487,0,0,0,0,0,0,157.267,3100.211 -1947,1.392,0.87017994,179.31584,2.7026031,30.133513,30133.513,526.99079,88.050281,13.115203,4.7197196,22.464705,10.577048,3.9651774,0.33403572,0,0.25702368,0,0,0,0,0,0,0,0,2.093,20.661,5.137,6.903,0,67.278,0,1.652,0,0,0,0,0,0,157.267,3100.211 -1948,1.469,0.87513044,180.86341,2.9031595,30.515691,30515.691,533.3963,89.184777,13.447168,4.7241324,22.42755,10.856052,4.1733472,0.32825472,0,0.27937786,0,0,0,0,0,0,0,0,3.703,24.056,6.071,7.254,0,68.369,0,1.817,0,0,0,0,0,0,157.267,3100.211 -1949,1.419,0.88212641,182.41097,3.0780722,30.897869,30897.869,539.8018,90.319272,13.779132,4.7285452,22.390394,11.14765,4.3924702,0.32459037,0,0.30367628,0,0,0,0,0,0,0,0,6.118,25.802,6.538,7.722,0,74.34,0,1.983,0,0,0,0,0,0,157.267,3100.211 -1950,1.63,0.89233465,183.95853,3.2133815,31.280048,31280.048,546.20731,91.453767,14.111097,4.7329579,22.353238,11.450093,4.62313,0.32304286,0,0.33008802,0,0,0,0,0,0,0,0.26190788,8.855,28.615,7.939,8.073,0,65,0,2.148,0,0,0,0,0,0,157.267,3100.211 -1951,1.768,1.0885201,189.11003,3.3186021,32.866948,32866.948,558.44614,94.848353,14.528488,4.7733276,22.541288,11.784634,4.865916,0.32361242,0,0.35878218,0,0,0,0,0,0,0,0.26198971,8.158,33.854,1.889,7.102,0,65,0,2.313,0,0,0,0,0,0,157.267,3100.211 -1952,1.796,1.1096378,194.26153,3.4111061,34.453849,34453.849,570.68497,98.242938,14.945879,4.8136973,22.729338,12.1691,5.121479,0.32629927,0,0.38997068,0,0,0,0,0,0,0,0.26207156,11.742,35.2,2.139,7.288,0,70,0,2.478,0,0,0,0,0,0,157.927,3117.785 -1953,1.841,1.1045171,199.41303,3.4887221,36.040749,36040.749,582.9238,101.63752,15.36327,4.854067,22.917388,12.596604,5.3904959,0.3311036,0,0.42387036,0,0,0,0,0,0,0,0.26215339,15.985,39.582,2.437,7.43,0,75,0,2.644,0,0,0,0,0,0,158.604,3137.148 -1954,1.865,1.1521416,204.56453,3.5543489,37.62765,37627.65,595.16263,105.03211,15.780661,4.8944367,23.105438,13.060259,5.6736692,0.33802563,0,0.4607169,0,0,0,0,0,0,0,0.26223522,19.855,44.802,2.785,7.431,0,80,1.214,2.809,0,0,0,0,0,0,159.3,3158.216 -1955,2.043,1.1911855,209.71603,3.614111,39.21455,39214.55,607.40145,108.4267,16.198052,4.9348064,23.293487,13.553179,5.9717491,0.34706557,0,0.5007665,0,0,0,0,0,0,0,0.26231705,24.604,50.343,3.233,7.388,0,85,3.512,2.974,0,0,0,0,0,0,160.014,3180.749 -1956,2.178,1.2446883,214.86753,3.6706801,40.801451,40801.451,619.64028,111.82128,16.615443,4.9751761,23.481537,14.068475,6.2855162,0.35822365,0,0.54429755,0,0,0,0,0,0,0,0.26239889,30.685,58.664,3.73,7.302,0,90,6.224,3.48,0,0,0,0,0,0,160.748,3204.498 -1957,2.27,1.2718718,220.01902,3.7267318,42.388351,42388.351,631.87911,115.21587,17.032834,5.0155458,23.669587,14.599262,6.6157969,0.37150001,0,0.5916127,0,0,0,0,0,0,0,0.26248072,34.375,66.689,4.227,7.25,0,95,9.469,4.251,0,0,0,0,0,0,161.502,3229.071 -1958,2.33,1.3195817,225.17052,3.7849451,43.975252,43975.252,644.11794,118.61045,17.450225,5.0559155,23.857637,15.138652,6.9634615,0.38689499,0,0.64304094,0,0,0,0,0,0,0,0.26256255,32.235,69.93,4.824,7.221,0,100,10.772,6.008,0,0,0,0,0,0,162.277,3254.039 -1959,2.462,1.2035957,230.32202,3.8480013,45.562152,45562.152,656.35677,122.00504,17.867616,5.0962852,24.045686,15.679758,7.3294266,0.40440867,0,0.69893975,0,0,0,0,0,0,0,0.26264438,33.015,78.149,5.57,7.176,0,105,14.717,7.06,0,0,0,0,0,0,163.073,3278.967 -1960,2.577,1.1922833,235.47352,3.9185827,47.149053,47149.053,668.5956,125.39962,18.285007,5.1366549,24.233736,16.215694,7.7146508,0.42404135,0,0.75969781,0,0,0,0,0,0,0,0.52463411,43.342,93.09,6.366,6.6,0,110,18.348,7.659,0,0,0,0,0,0,163.892,3303.389 -1961,2.594,1.2443218,238.52217,4.0240052,48.77076,48770.76,682.67558,129.24133,18.959141,5.1795997,24.502237,16.759267,8.1201607,0.4457932,0,0.82576341,0,0,0,0,0,0,0,0.52479777,55.722,104.6,7.212,6.88,0,115,20.077,9.426,0,0,0,0,0,0,164.735,3326.864 -1962,2.7,1.2355717,241.57083,4.1836477,50.392468,50392.468,696.75555,133.08303,19.633274,5.2225445,24.770737,17.326046,8.5470132,0.46966444,0,0.8975743,0,0,0,0,0,0,0,0.78686933,69.881,120.668,8.248,7.168,0,119,28.22,11.573,0,0,0,0,0,0,165.601,3349.069 -1963,2.848,1.2442947,244.61948,4.3883117,52.014176,52014.176,710.83553,136.92473,20.307407,5.2654893,25.039238,17.913289,14.984956,0.49565531,0,0.97563006,0,0,0,0,0,0,0,0.52520694,85.539,141.744,9.476,7.421,0,123,31.46,14.396,0,0,0.005,0.001,0.001,0.007,166.493,3369.713 -1964,3.008,1.2515879,247.66813,4.6374693,53.635884,53635.884,724.91551,140.76643,20.981541,5.3084341,25.307738,18.518251,13.488099,0.52376596,0,1.0604738,0,0,0,0,0,0,0,0.52537061,101.538,164.921,10.853,7.692,0.225,127,36.197,16.782,0,0,0.014,0.002,0.003,0.014,167.41,3388.628 -1965,3.145,1.2642558,250.71679,4.8968181,55.257592,55257.592,738.99548,144.60813,21.655674,5.3513789,25.576239,19.138189,13.488369,0.55399667,0,1.1526958,0,0,0,0,0,0,0,0.52553427,115.75,185.933,12.426,7.975,0.444,127,48.096,20.514,0,0,0.032,0.005,0.005,0.028,168.355,3405.698 -1966,3.305,1.2936968,253.76544,5.195583,56.8793,56879.3,753.07546,148.44984,22.329807,5.3943237,25.844739,19.770361,13.488639,0.58634761,0,1.2529377,0,0,0,0,0,0,0,0.52569795,129.623,208.571,14.246,8.305,0.633,127,69.567,24.512,0,0,0.058,0.008,0.008,0.048,169.328,3420.923 -1967,3.411,1.2976254,256.81409,5.457478,58.501008,58501.008,767.15544,152.29154,23.003941,5.4372685,26.11324,20.412021,13.488909,0.62081899,0,1.361897,0,0,0,0,0,0,0,1.0496773,147.119,235.269,16.313,8.623,0.825,127,94.137,29.817,0,0,0.1,0.013,0.013,0.075,170.329,3434.335 -1968,3.588,1.2352028,259.86274,5.619744,60.122716,60122.716,781.23541,156.13324,23.678074,5.4802133,26.381741,21.060427,13.48918,0.65741104,0,1.4803317,0,0,0,0,0,0,0,0.52618894,167.586,263.953,18.678,8.974,1.043,127,114.767,36.216,0,0,0.158,0.019,0.016,0.109,171.36,3446.065 -1969,3.8,1.2383879,262.9114,5.784831,61.744424,61744.424,795.31539,159.97494,24.352208,5.5231581,26.650241,21.712835,13.489449,0.69612398,0,1.6090657,0,0,0,0,0,0,0,0.7882605,194.513,294.486,21.388,9.344,1.283,127,134.875,39.381,0,0,0.229,0.026,0.024,0.15,172.423,3456.224 -1970,4.076,1.1971129,265.96005,5.9368752,63.366132,63366.132,809.39537,163.81664,25.026341,5.5661029,26.918742,22.366503,11.992564,0.73695798,0,1.7489948,0,0,0.05544628,0,0.35640391,0,0,0.78850599,221.119,321.743,24.494,9.687,1.537,127,141.326,43.652,0,0,0.329,0.035,0.043,0.197,173.518,3464.95 -1971,4.231,1.0708913,270.02505,5.6049759,63.545863,63545.863,825.18291,167.16131,25.809673,5.7038725,27.221794,23.042459,13.489967,0.7799133,0,1.901128,0,0,0.057318506,0,0.36316592,0,0,1.0506594,243.137,346.609,28.094,10.052,1.803,127,170.133,47.746,0,0.613,0.461,0.044,0.1,0.252,174.646,3472.409 -1972,4.399,1.0470621,274.09004,5.9181309,63.725594,63725.594,840.97046,170.50597,26.593006,5.8416421,27.524846,23.75562,13.490244,0.82499011,0,2.066494,0,0,0.059192895,0,0.36993573,0,0,0.78907883,274.26,378.471,32.236,10.471,2.127,127,214.168,54.79,0,0.613,0.63,0.055,0.17,0.313,175.809,3478.741 -1973,4.6349999,1.0330987,278.15504,6.0449043,63.905326,63905.326,856.758,173.85064,27.376338,5.9794117,27.827898,24.494072,13.490523,0.87218868,0,2.2462442,0,0,0.061069449,0,0.37671337,0,0,1.0512322,314.04,419.239,36.92,10.883,2.495,127,266.209,61.912,0,0.613,0.839,0.067,0.277,0.391,177.007,3484.114 -1974,4.644,1.0387371,282.22003,5.9406002,64.085057,64085.057,872.54555,177.19531,28.159671,6.1171813,28.13095,25.2459,11.993645,0.9215092,0,2.4416297,0,0,0.062948171,0,0.38349883,0,0,1.0515595,345.881,454.701,42.295,11.29,2.921,127,305.489,62.543,0,0.613,1.086,0.08,0.372,0.468,178.243,3488.632 -1975,4.615,1.0315876,286.28503,6.1409693,64.264788,64264.788,888.3331,180.53997,28.943004,6.2549509,28.434002,25.999188,13.49105,0.97295172,0,2.6540105,0,0,0.064829061,0,0.39029213,0,0,1.0518869,335.741,442.834,48.505,11.734,3.391,127,308.992,70.487,0,0.613,1.365,0.095,0.524,0.544,179.517,3492.425 -1976,4.883,1.0906077,290.35002,6.3042588,64.444519,64444.519,904.12064,183.88464,29.726336,6.3927205,28.737055,26.742024,13.491328,1.0265167,0,2.8848647,0,0,0.066712124,0,0.39709328,0,0,1.57603,343.24,432.28,55.552,12.2,3.943,127,382.3,78.51,0,0.613,1.767,0.11,0.783,0.621,180.83,3495.619 -1977,5.029,1.0939874,294.41502,6.534405,64.624251,64624.251,919.90819,187.2293,30.509669,6.5304901,29.040107,27.462492,11.994452,1.0822044,0,3.5660804,0,0,0.068597361,0,0.40390227,0,0,1.8384289,330.711,419.447,63.634,12.68,4.582,127,462.112,85.789,0,0.613,2.035,0.127,1.006,0.697,182.185,3498.281 -1978,5.105,1.09037,298.48002,6.6193729,64.803982,64803.982,935.69573,190.57397,31.293001,6.6682597,29.343159,28.148677,13.491857,1.1400146,0,3.7964008,0,0,0.070484772,0,0.05429956,0,0,2.3628175,359.009,424.498,72.896,13.168,5.337,127,587.319,92.012,0,0.613,2.454,0.145,1.253,0.774,183.581,3500.505 -1979,5.387,1.0647127,302.54501,7.007773,64.983713,64983.713,951.48328,193.91864,32.076334,6.8060293,29.646211,28.788664,11.994981,1.1999481,0,4.0275411,0,0,0.072374362,0,0.054330947,0,0,2.8873698,274.357,357.266,83.489,13.661,6.228,127,489.712,99.321,0,0.613,2.928,0.161,1.548,0.85,185.022,3502.36 -1980,5.332,1.0252096,306.61001,7.0613923,65.163444,65163.444,967.27082,197.2633,32.859666,6.9437989,29.949263,29.37054,13.492387,1.2620043,0,4.2595023,0,0,0.018814427,0,0.76720931,0,0,3.1501778,304.998,432.044,95.641,14.194,7.006,121.849,550.707,104.973,0,0.613,3.453,0.185,1.805,0.927,186.506,3503.915 -1981,5.168,1.0448621,310.01251,6.8417522,65.043883,65043.883,980.4447,199.79888,33.357242,7.0210048,30.456334,29.931853,11.995499,1.3261846,0,4.4921574,0,0,0.066288365,0,0.78079292,0,0,3.4130677,289.529,386.347,104.421,14.121,7.743,110.093,505.097,106.406,0,1.25,3.946,0.206,2.139,1.003,188.038,3505.193 -1982,5.127,1.1904055,313.415,7.1189858,64.924321,64924.321,993.61858,202.33446,33.854818,7.0982107,30.963404,30.508393,13.492893,1.392488,0,4.7256142,0,0,0.073594133,0,0.081528294,0,0,3.6760394,252.419,400.317,108.943,13.905,8.399,123.807,505.343,116.821,0,0.961,4.522,0.229,2.645,1.105,189.616,3506.255 -1983,5.11,1.2255201,316.8175,7.2168971,64.80476,64804.76,1006.7925,204.87003,34.352393,7.1754165,31.470475,31.085608,11.996004,1.4609153,0,4.9598729,0,0,0.073496743,0,0.79436576,0,0,3.939093,299.092,408.416,120.93,14.252,9.207,135.729,553.718,125.343,0,1.165,5.168,0.249,2.98,1.183,191.243,3507.154 -1984,5.29,1.2600833,320.22,7.0481314,64.685199,64685.199,1019.9663,207.40561,34.849969,7.2526224,31.977546,31.648945,11.996242,1.5314669,0,5.1949332,0,0,0.018263078,0,0.80794309,0,0,3.9403205,310.901,432.125,177.397,14.781,9.71,134.867,569.476,130.447,0,1.331,6.032,0.269,3.475,1.262,192.92,3507.882 -1985,5.444,1.2753449,323.6225,7.0169243,64.565637,64565.637,1033.1402,209.94119,35.347545,7.3298282,32.484616,32.183851,11.99648,1.6041426,0,5.4307947,0,0,-0.080681159,0,0.10867413,0,0,4.7272717,315.327,407.669,128.622,15.705,9.792,109.714,546.714,138.367,0,1.011,7.083,0.289,3.997,1.355,194.648,3508.496 -1986,5.61,1.2872023,327.025,7.0704917,64.446076,64446.076,1046.3141,212.47677,35.845121,7.4070341,32.991687,32.675774,13.493874,1.678943,0,5.6674573,0,0,0.075292049,0,0.82150728,0,0,4.9906525,388.346,502.712,169.103,16.379,10.152,149.931,539.076,146.048,0,3.575,8.22,0.309,4.579,1.434,196.427,3508.999 -1987,5.753,1.2940086,330.42749,7.4616728,64.326514,64326.514,1059.488,215.01235,36.342696,7.48424,33.498757,33.110161,11.996986,1.7558675,0,5.9049208,0,0,0.17780496,0,1.5479209,0,0,4.7302994,387.277,453.238,250.222,16.667,10.807,115.608,647.608,162.883,0,3.773,9.656,0.329,5.109,1.504,198.259,3509.425 -1988,5.964,1.3167248,333.82999,7.2025077,64.206953,64206.953,1072.6618,217.54792,36.840272,7.5614458,34.005828,33.472458,11.997224,1.8349176,0,6.1431847,0,0,0.18118326,0,0.86222749,0,0,4.9936804,303.816,507.99,245.07,16.593,11.493,135.667,635.816,180.113,0,4.458,11.362,0.349,5.696,1.728,200.146,3509.774 -1989,6.089,1.3236436,337.23249,7.3310397,64.087391,64087.391,1085.8357,220.0835,37.337848,7.6386517,34.512898,33.748114,11.997462,1.9160924,0,6.3822492,0,0,0.18829422,0.94505787,0.87579234,0,0,5.519051,301.477,385.52,204.109,15.725,12.26,118.146,564.767,186.15,0,6.174,11.605,0.369,5.482,1.73,202.087,3510.061 -1990,6.15,1.45,312.24363,6.134052909,63.94845233,63948.45233,1045.747123,166.2503538,34.76423987,7.7158575,35.019969,33.922575,11.997683,2.0735678,0,6.6218233,0,0,0.18594167,1.0101542,0.88920979,0,0,7.772662322,291.464,405.617,203.131,14.022,12.363,143.171,694.142,195.69,0,11.322,11.702,0.389,5.119,1.73,204.082,3510.299 -1991,6.24,1.65,314.57878,6.027936715,62.63000983,62630.00983,1021.791172,174.6872556,34.05798125,7.7247518,35.072322,34.026024,11.997905,2.3729101,0,6.8621776,0,0,0.19092079,2.1776448,0.90261206,0.004710024,0,8.143820543,190.405,309.884,198.928,13.243,12.135,70.607,573.576,204.801,0,16.556,11.426,0.409,4.094,1.735,206.133,3510.501 -1992,6.18,1.69,321.95179,6.354227086,60.54027123,60540.27123,1174.203779,182.6468576,36.14417806,7.733646,35.124675,34.113528,11.998111,2.3731469,0,7.102985,0,0,0.28889991,4.2079892,1.6286536,0.004710028,0,8.146355176,203.23,303.369,121.343,10.324,12.018,91.022,554.986,185.994,0,20.911,9.343,0.429,2.74,1.715,208.24,3510.656 -1993,6.17,1.56,306.48785,5.905312006,59.44097347,59440.97347,934.8376133,159.6833476,34.71270069,7.7425403,35.177028,34.207861,11.998354,2.3733837,0,7.3453102,0,0,0.3768163,8.4161579,2.3685965,0.18499007,0,8.886367317,144.94,228.999,67.857,8.322,11.681,85.436,372.232,188.092,23.101,22.5,10.23,0.509,3.344,1.7,210.402,3510.801 -1994,6.28,1.52,311.05344,6.018185775,58.34323322,58343.23322,977.620746,169.0259706,34.8193501,7.7514345,35.229381,34.331799,11.998587,2.3736205,0,7.588207,0,0,1.8251048,21.399077,3.8347584,0.1819901,0,7.045438793,127.137,232.722,61.065,6.105,11.011,77.289,244.236,179.101,33.844,25.599,9.105,0.589,4.75,1.68,212.619,3510.907 -1995,6.42,1.5,309.28838,6.118040582,57.18625984,57186.25984,930.1040543,157.4351743,35.28733501,7.7603288,35.281735,34.508115,10.501674,2.3738573,0,10.211528,0,0,2.9802177,29.726101,6.0409628,0.099994794,0,8.522582663,119.235,194.71,22.978,4.784,9.083,85.021,201.637,243.238,41.961,24.275,10.035,0.669,3.991,1.3,200.199,3511.005 -1996,6.55,1.48,309.40561,6.216000677,56.9295967,56929.5967,916.9780098,155.3429045,35.41694838,7.769223,35.334088,34.960533,11.999071,2.3740941,0,10.248182,0,0,3.4188812,40.584859,6.1499876,0.43697783,0,8.525232603,115.437,178.907,27.962,2.943,7.019,70.403,89.184,211.181,51.431,26.411,10.743,0.729,2.691,0.85,201.834,3511.082 -1997,6.66,1.46,340.52374,6.621938328,56.37686085,56376.86085,1232.705791,215.9517079,36.29135245,7.7781173,35.386441,35.833672,11.999322,2.3743309,0,10.284399,0,0,5.354049,50.643567,6.2587493,0.40797848,0,6.315450159,95.388,160.981,18.663,1.886,5.429,74.423,62.53,208.614,46.639,22.493,9.909,0.789,2.594,0.7,207.696,3511.082 -1998,6.64,1.45,315.33019,6.431857113,55.41683344,55416.83344,1044.935423,167.0161442,36.94172282,7.7870115,35.438794,37.03165,11.999575,2.3745677,0,10.320704,0.087305408,0,7.2031812,59.652126,6.3676829,0.92795208,0,6.686147436,92.401,152.715,14.831,1.199,4.223,84.361,29.412,249.912,58.131,27.683,9.837,0.607,2.491,0.71,206.946,3511.082 -1999,6.58,1.41,307.0371,6.086869535,53.39588818,53395.88818,878.188349,152.6935046,35.06501461,7.7959058,35.491147,38.458587,10.502692,2.3748045,0,10.357655,0.78573737,0,8.1531677,67.043997,6.4775249,1.35393,0,8.900653788,94.931,145.169,14.362,0.784,3.32,69.242,24.668,230.91,55.817,28.047,9.806,0.467,2.39,0.631,195.938,3511.082 -2000,6.75,1.43,306.55951,6.038559807,53.49686408,53496.86408,826.8782349,148.4220392,34.98132448,7.8048,35.5435,40.0186,12.0001,2.3749,0.4624,10.3949,4,0,8.5381,75.0393,6.234,1.9509,17.9257,7.797202632,99.227,140.712,17.777,0.567,2.609,74.132,18.584,229.638,55.602,26.296,8.834,0.328,2.295,0.562,186.206,3511.082 -2001,6.91,1.24,312.08683,6.129975798,53.49591539,53495.91539,857.7293622,152.8746022,34.9512431,7.8945,35.7143,40.3916,11.925,2.4345,0.4651,10.4328,5.3987,0.6471,9.0301,84.0409,7.4947,1.6449,19.7183,8.023592105,81.839,117.202,12.051,0.45,2.069,65.195,13.253,270.443,57.19,28.001,8.669,0.282,2.209,0.5,181.525,3511.082 -2002,6.98,1.07,321.52222,7.505797897,52.81223964,52812.23964,924.1843932,167.8804808,35.57523405,7.9842,35.8845,40.7646,11.8481,2.4915,0.4058,10.4708,6.7975,1.294,9.8852,94.7161,8.7389,2.508,21.5109,8.2497,81.408,100.258,6.019,0.423,1.609,69.565,13.487,243.015,57.77,22.43,8.524,0.235,2.131,0.445,181.887,3511.082 -2003,7.4,1.04,323.20905,7.441176389,53.9771379,53977.1379,862.2987803,158.3399477,35.93829745,8.0734,36.0543,41.1378,11.7693,2.5463,0.3939,10.5083,8.196,1.9411,12.0788,101.4157,9.9776,3.341,23.3035,8.475667105,90.865,107.745,2.604,0.37,1.288,69.381,8.444,252.962,48.801,23.232,7.77,0.189,2.057,0.396,177.539,3511.082 -2004,7.78,1.02,335.14109,7.599588834,55.90222428,55902.22428,891.6340178,162.9481049,37.13635494,8.1623,36.2232,41.5107,11.6885,2.599,0.4062,10.5454,9.5947,2.5882,12.5073,113.9297,11.2136,4.269,25.096,8.701493421,78.182,87.647,5.237,0.378,1.046,67.383,10.874,263.062,43.847,23.348,7.653,0.189,1.987,0.353,174.26,3511.082 -2005,8.09,1,344.36065,7.738554605,57.82782981,57827.82981,933.7838151,165.7587692,38.1765176,8.2512,36.3917,41.8837,11.6059,2.6494,0.4358,10.8116,10.9935,3.2351,13.7591,120.9334,12.4483,4.8901,26.8885,8.927038158,49.49,51.552,0.854,0.227,0.785,65,10.874,283.408,46.641,26.458,7.518,0.189,1.92,0.314,168.841,3511.082 -2006,8.35,1,366.48763,8.115002364,59.8411166,59841.1166,1079.290248,186.3263289,40.33918303,8.2245,35.9952,41.9902,11.411,2.5813,0.4427,10.5529,12.3831,3.8803,14.4509,121.0746,12.7893,5.1614,31.23,9.110346053,48.471,49.808,1.119,0.136,0.588,58.5,10.874,297.615,48.747,34.767,6.992,0.049,1.834,0.279,167.857,3511.082 -2007,8.54,0.95,373.73371,8.466194586,61.87337061,61873.37061,1170.403866,181.4418987,43.37854879,8.1977,35.598,42.0965,11.2139,2.5131,0.4492,10.2947,13.7731,4.5246,15.1335,129.6223,13.1314,5.4292,35.5714,9.293935526,47.083,46.366,0.911,0.082,0.441,52,10.874,311.265,50.583,39.869,6.502,0.049,1.752,0.249,167.857,3511.082 -2008,8.75,0.94,377.84872,8.083834635,63.67667801,63676.67801,957.077906,168.5070723,41.21442833,8.1708667,35.199467,42.202733,11.012133,2.4452667,0.45503333,10.037233,15.162767,5.1677,15.798,133.99193,13.4753,5.6901667,39.912933,8.850026316,45.74,43.216,0.806,0.049,0.331,45.5,10.874,324.431,52.161,39.099,6.047,0.049,1.675,0.221,167.857,3511.082 -2009,8.775,0.8,359.79936,8.611917318,58.02,58020,1058.418953,196.2685362,40.41721417,8.1440333,34.800933,42.308967,14.4110665,2.45763335,0.46086667,9.7797667,16.552433,5.8108,12.069,190.380965,6.73765,2.84508335,44.254467,7.920013158,44.442,40.334,0.754,0.029,0.248,39,10.874,337.175,53.496,38.069,5.624,0.049,1.601,0.197,167.857,3511.082 -2010,8.8,0.66,341.75,9.14,59.34,59340,1159.76,224.03,39.62,8.1172,34.4024,42.4152,17.81,2.47,0.4667,9.5223,17.9421,6.4539,8.34,246.77,0,0,48.596,6.99,42.976,36.906,0.377,0.018,0.186,32.5,7.266,349.552,54.598,36.801,5.23,0,1.521,0.175,167.857,3511.082 diff --git a/inst/input/emissions/volcanic_RF.csv b/inst/input/emissions/volcanic_RF.csv deleted file mode 100644 index a260f5fe9..000000000 --- a/inst/input/emissions/volcanic_RF.csv +++ /dev/null @@ -1,739 +0,0 @@ -; Annual mean volcanic stratospheric aerosol forcing (W/m2), -; M. Meinshausen S. Smith et al. (2011) The RCP GHG concentrations and their extension from 1765 to 2300 DOI 10.1007/s10584-011-0156-z Climatic Change., -Date,SV -1765,0 -1766,0.11622211 -1767,0.23244422 -1768,0.19744422 -1769,0.13181922 -1770,0.12744422 -1771,0.17994422 -1772,0.21494422 -1773,0.22806922 -1774,0.23244422 -1775,0.23244422 -1776,0.23244422 -1777,0.23244422 -1778,0.23244422 -1779,0.23244422 -1780,0.23244422 -1781,0.23244422 -1782,0.21056922 -1783,0.11869422 -1784,0.044319219 -1785,0.10119422 -1786,0.18869422 -1787,0.22369422 -1788,0.22806922 -1789,0.12306922 -1790,-0.025680781 -1791,0.009319219 -1792,0.14056922 -1793,0.20619422 -1794,0.21494422 -1795,0.19306922 -1796,0.18869422 -1797,0.21056922 -1798,0.22806922 -1799,0.23244422 -1800,0.23244422 -1801,0.23244422 -1802,0.23244422 -1803,0.23244422 -1804,0.23244422 -1805,0.23244422 -1806,0.23244422 -1807,0.23244422 -1808,-0.25755578 -1809,-1.3994308 -1810,-1.8019308 -1811,-1.0100558 -1812,-0.34068078 -1813,-0.14818078 -1814,-0.67755578 -1815,-2.1519308 -1816,-2.6638058 -1817,-1.4956808 -1818,-0.36255578 -1819,0.092444219 -1820,0.22369422 -1821,0.23244422 -1822,0.23244422 -1823,0.23244422 -1824,0.23244422 -1825,0.23244422 -1826,0.23244422 -1827,0.23244422 -1828,0.22806922 -1829,0.19306922 -1830,-0.021305781 -1831,-0.39755578 -1832,-0.48505578 -1833,-0.18318078 -1834,-0.34505578 -1835,-0.98818078 -1836,-0.94880578 -1837,-0.34943078 -1838,0.044319219 -1839,0.17994422 -1840,0.17994422 -1841,0.17556922 -1842,0.18869422 -1843,0.16681922 -1844,0.15369422 -1845,0.18431922 -1846,0.21494422 -1847,0.22806922 -1848,0.23244422 -1849,0.21599422 -1850,0.19200464 -1851,0.19303276 -1852,0.20879734 -1853,0.2235338 -1854,0.2317588 -1855,0.10118693 -1856,-0.35667141 -1857,-0.61027557 -1858,-0.29772557 -1859,0.028190052 -1860,0.15053693 -1861,0.13957026 -1862,0.05526401 -1863,0.06760151 -1864,0.15087964 -1865,0.19851609 -1866,0.21907859 -1867,0.22901714 -1868,0.23107339 -1869,0.22284839 -1870,0.21873589 -1871,0.2194213 -1872,0.2070838 -1873,0.19337547 -1874,0.20125776 -1875,0.19406089 -1876,0.15293589 -1877,0.14848068 -1878,0.18035255 -1879,0.20194318 -1880,0.21565151 -1881,0.22284839 -1882,0.11112547 -1883,-0.80253495 -1884,-1.5373016 -1885,-0.94407349 -1886,-0.44851724 -1887,-0.32137245 -1888,-0.21102036 -1889,-0.27750578 -1890,-0.3316537 -1891,-0.2617412 -1892,-0.087645365 -1893,0.060061927 -1894,0.16938589 -1895,0.1618463 -1896,0.016537969 -1897,-0.064683906 -1898,0.037785885 -1899,0.15053693 -1900,0.20194318 -1901,0.19166193 -1902,-0.25694328 -1903,-0.65105786 -1904,-0.3563287 -1905,0.002144219 -1906,0.1001588 -1907,0.076169219 -1908,0.087821302 -1909,0.15396401 -1910,0.18892026 -1911,0.19508901 -1912,-0.048576615 -1913,-0.15652974 -1914,0.055606719 -1915,0.15944734 -1916,0.18754943 -1917,0.19611714 -1918,0.20194318 -1919,0.1947463 -1920,0.11078276 -1921,0.095703594 -1922,0.18103797 -1923,0.20228589 -1924,0.18926297 -1925,0.18926297 -1926,0.19714526 -1927,0.19508901 -1928,0.14573901 -1929,0.096046302 -1930,0.12174943 -1931,0.14642443 -1932,0.11489526 -1933,0.12380568 -1934,0.16218901 -1935,0.16938589 -1936,0.18069526 -1937,0.17932443 -1938,0.16321714 -1939,0.16390255 -1940,0.18377964 -1941,0.19303276 -1942,0.17144214 -1943,0.16630151 -1944,0.18926297 -1945,0.19988693 -1946,0.2070838 -1947,0.1988588 -1948,0.19680255 -1949,0.18926297 -1950,0.18686401 -1951,0.1906338 -1952,0.18446505 -1953,0.17555464 -1954,0.18069526 -1955,0.2029713 -1956,0.2153088 -1957,0.22559005 -1958,0.23073068 -1959,0.22696089 -1960,0.15190776 -1961,0.060747344 -1962,-0.013963073 -1963,-0.49546828 -1964,-0.85325578 -1965,-0.53248078 -1966,-0.15001828 -1967,-0.021502656 -1968,-0.22027349 -1969,-0.29635474 -1970,-0.055430781 -1971,0.11420984 -1972,0.15327859 -1973,0.10632755 -1974,-0.040694323 -1975,-0.14110786 -1976,-0.017390156 -1977,0.13408693 -1978,0.10906922 -1979,0.093990052 -1980,0.14813797 -1981,0.079596302 -1982,-0.59142661 -1983,-0.87621724 -1984,-0.32000161 -1985,-0.023216198 -1986,0.035044219 -1987,0.065887969 -1988,0.10598484 -1989,0.12928901 -1990,0.12654734 -1991,-0.81487245 -1992,-1.4197527 -1993,-0.68190161 -1994,-0.13151203 -1995,0.058691094 -1996,0.12380568 -1997,0.15327859 -1998,0.18754943 -1999,0.21633693 -2000,0.22867443 -2001,0.23244422 -2002,0.23244422 -2003,0.23244422 -2004,0.23244422 -2005,0.18401834 -2006,0.06779623 -2007,0 -2008,0 -2009,0 -2010,0 -2011,0 -2012,0 -2013,0 -2014,0 -2015,0 -2016,0 -2017,0 -2018,0 -2019,0 -2020,0 -2021,0 -2022,0 -2023,0 -2024,0 -2025,0 -2026,0 -2027,0 -2028,0 -2029,0 -2030,0 -2031,0 -2032,0 -2033,0 -2034,0 -2035,0 -2036,0 -2037,0 -2038,0 -2039,0 -2040,0 -2041,0 -2042,0 -2043,0 -2044,0 -2045,0 -2046,0 -2047,0 -2048,0 -2049,0 -2050,0 -2051,0 -2052,0 -2053,0 -2054,0 -2055,0 -2056,0 -2057,0 -2058,0 -2059,0 -2060,0 -2061,0 -2062,0 -2063,0 -2064,0 -2065,0 -2066,0 -2067,0 -2068,0 -2069,0 -2070,0 -2071,0 -2072,0 -2073,0 -2074,0 -2075,0 -2076,0 -2077,0 -2078,0 -2079,0 -2080,0 -2081,0 -2082,0 -2083,0 -2084,0 -2085,0 -2086,0 -2087,0 -2088,0 -2089,0 -2090,0 -2091,0 -2092,0 -2093,0 -2094,0 -2095,0 -2096,0 -2097,0 -2098,0 -2099,0 -2100,0 -2101,0 -2102,0 -2103,0 -2104,0 -2105,0 -2106,0 -2107,0 -2108,0 -2109,0 -2110,0 -2111,0 -2112,0 -2113,0 -2114,0 -2115,0 -2116,0 -2117,0 -2118,0 -2119,0 -2120,0 -2121,0 -2122,0 -2123,0 -2124,0 -2125,0 -2126,0 -2127,0 -2128,0 -2129,0 -2130,0 -2131,0 -2132,0 -2133,0 -2134,0 -2135,0 -2136,0 -2137,0 -2138,0 -2139,0 -2140,0 -2141,0 -2142,0 -2143,0 -2144,0 -2145,0 -2146,0 -2147,0 -2148,0 -2149,0 -2150,0 -2151,0 -2152,0 -2153,0 -2154,0 -2155,0 -2156,0 -2157,0 -2158,0 -2159,0 -2160,0 -2161,0 -2162,0 -2163,0 -2164,0 -2165,0 -2166,0 -2167,0 -2168,0 -2169,0 -2170,0 -2171,0 -2172,0 -2173,0 -2174,0 -2175,0 -2176,0 -2177,0 -2178,0 -2179,0 -2180,0 -2181,0 -2182,0 -2183,0 -2184,0 -2185,0 -2186,0 -2187,0 -2188,0 -2189,0 -2190,0 -2191,0 -2192,0 -2193,0 -2194,0 -2195,0 -2196,0 -2197,0 -2198,0 -2199,0 -2200,0 -2201,0 -2202,0 -2203,0 -2204,0 -2205,0 -2206,0 -2207,0 -2208,0 -2209,0 -2210,0 -2211,0 -2212,0 -2213,0 -2214,0 -2215,0 -2216,0 -2217,0 -2218,0 -2219,0 -2220,0 -2221,0 -2222,0 -2223,0 -2224,0 -2225,0 -2226,0 -2227,0 -2228,0 -2229,0 -2230,0 -2231,0 -2232,0 -2233,0 -2234,0 -2235,0 -2236,0 -2237,0 -2238,0 -2239,0 -2240,0 -2241,0 -2242,0 -2243,0 -2244,0 -2245,0 -2246,0 -2247,0 -2248,0 -2249,0 -2250,0 -2251,0 -2252,0 -2253,0 -2254,0 -2255,0 -2256,0 -2257,0 -2258,0 -2259,0 -2260,0 -2261,0 -2262,0 -2263,0 -2264,0 -2265,0 -2266,0 -2267,0 -2268,0 -2269,0 -2270,0 -2271,0 -2272,0 -2273,0 -2274,0 -2275,0 -2276,0 -2277,0 -2278,0 -2279,0 -2280,0 -2281,0 -2282,0 -2283,0 -2284,0 -2285,0 -2286,0 -2287,0 -2288,0 -2289,0 -2290,0 -2291,0 -2292,0 -2293,0 -2294,0 -2295,0 -2296,0 -2297,0 -2298,0 -2299,0 -2300,0 -2301,0 -2302,0 -2303,0 -2304,0 -2305,0 -2306,0 -2307,0 -2308,0 -2309,0 -2310,0 -2311,0 -2312,0 -2313,0 -2314,0 -2315,0 -2316,0 -2317,0 -2318,0 -2319,0 -2320,0 -2321,0 -2322,0 -2323,0 -2324,0 -2325,0 -2326,0 -2327,0 -2328,0 -2329,0 -2330,0 -2331,0 -2332,0 -2333,0 -2334,0 -2335,0 -2336,0 -2337,0 -2338,0 -2339,0 -2340,0 -2341,0 -2342,0 -2343,0 -2344,0 -2345,0 -2346,0 -2347,0 -2348,0 -2349,0 -2350,0 -2351,0 -2352,0 -2353,0 -2354,0 -2355,0 -2356,0 -2357,0 -2358,0 -2359,0 -2360,0 -2361,0 -2362,0 -2363,0 -2364,0 -2365,0 -2366,0 -2367,0 -2368,0 -2369,0 -2370,0 -2371,0 -2372,0 -2373,0 -2374,0 -2375,0 -2376,0 -2377,0 -2378,0 -2379,0 -2380,0 -2381,0 -2382,0 -2383,0 -2384,0 -2385,0 -2386,0 -2387,0 -2388,0 -2389,0 -2390,0 -2391,0 -2392,0 -2393,0 -2394,0 -2395,0 -2396,0 -2397,0 -2398,0 -2399,0 -2400,0 -2401,0 -2402,0 -2403,0 -2404,0 -2405,0 -2406,0 -2407,0 -2408,0 -2409,0 -2410,0 -2411,0 -2412,0 -2413,0 -2414,0 -2415,0 -2416,0 -2417,0 -2418,0 -2419,0 -2420,0 -2421,0 -2422,0 -2423,0 -2424,0 -2425,0 -2426,0 -2427,0 -2428,0 -2429,0 -2430,0 -2431,0 -2432,0 -2433,0 -2434,0 -2435,0 -2436,0 -2437,0 -2438,0 -2439,0 -2440,0 -2441,0 -2442,0 -2443,0 -2444,0 -2445,0 -2446,0 -2447,0 -2448,0 -2449,0 -2450,0 -2451,0 -2452,0 -2453,0 -2454,0 -2455,0 -2456,0 -2457,0 -2458,0 -2459,0 -2460,0 -2461,0 -2462,0 -2463,0 -2464,0 -2465,0 -2466,0 -2467,0 -2468,0 -2469,0 -2470,0 -2471,0 -2472,0 -2473,0 -2474,0 -2475,0 -2476,0 -2477,0 -2478,0 -2479,0 -2480,0 -2481,0 -2482,0 -2483,0 -2484,0 -2485,0 -2486,0 -2487,0 -2488,0 -2489,0 -2490,0 -2491,0 -2492,0 -2493,0 -2494,0 -2495,0 -2496,0 -2497,0 -2498,0 -2499,0 -2500,0 diff --git a/inst/input/hector_rcp26.ini b/inst/input/hector_rcp26.ini deleted file mode 100644 index e49b49eba..000000000 --- a/inst/input/hector_rcp26.ini +++ /dev/null @@ -1,382 +0,0 @@ -; Config file for hector model: RCP26 -;------------------------------------------------------------------------ -[core] -run_name=rcp26 -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP26_emissions.csv -luc_emissions=csv:emissions/RCP26_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;CO2_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -;CO2_constrain=csv:constraints/RCP26_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP26_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP26_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP26_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP26_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP26_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP26_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP26_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP26_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP26_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP26_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP26_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP26_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP26_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP26_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/input/hector_rcp26_constrained.ini b/inst/input/hector_rcp26_constrained.ini deleted file mode 100644 index 16f9ef298..000000000 --- a/inst/input/hector_rcp26_constrained.ini +++ /dev/null @@ -1,383 +0,0 @@ -;Config file for hector model: that uses RCP26 concentrations to drive Hector. -;Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp26_co2constrain -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP26_emissions.csv -luc_emissions=csv:emissions/RCP26_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;CO2_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -CO2_constrain=csv:constraints/rcp26_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP26_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP26_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP26_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP26_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP26_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP26_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP26_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP26_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP26_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP26_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP26_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP26_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP26_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP26_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/input/hector_rcp26_histconstrain.ini b/inst/input/hector_rcp26_histconstrain.ini deleted file mode 100644 index aeabe71c3..000000000 --- a/inst/input/hector_rcp26_histconstrain.ini +++ /dev/null @@ -1,384 +0,0 @@ -;Config file for hector model: that uses historical CO2 concentrations before -; switching to RCP26 concentrations to drive Hector. -; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp26_histco2constrain -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP26_emissions.csv -luc_emissions=csv:emissions/RCP26_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -CO2_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -CO2_constrain=csv:constraints/rcp26_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP26_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP26_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP26_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP26_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP26_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP26_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP26_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP26_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP26_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP26_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP26_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP26_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP26_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP26_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP26_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP26_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP26_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP26_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP26_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP26_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP26_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP26_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP26_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/input/hector_rcp45.ini b/inst/input/hector_rcp45.ini deleted file mode 100644 index e4e8cf686..000000000 --- a/inst/input/hector_rcp45.ini +++ /dev/null @@ -1,382 +0,0 @@ -; Config file for hector model: RCP45 -;------------------------------------------------------------------------ -[core] -run_name=rcp45 -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP45_emissions.csv -luc_emissions=csv:emissions/RCP45_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;CO2_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -;CO2_constrain=csv:constraints/RCP45_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_4.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP45_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP45_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP45_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP45_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP45_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP45_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP45_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP45_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP45_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP45_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP45_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP45_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP45_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP45_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP45_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP45_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP45_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP45_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP45_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP45_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP45_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP45_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP45_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP45_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP45_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP45_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP45_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP45_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/input/hector_rcp45_constrained.ini b/inst/input/hector_rcp45_constrained.ini deleted file mode 100644 index 6945c5a57..000000000 --- a/inst/input/hector_rcp45_constrained.ini +++ /dev/null @@ -1,383 +0,0 @@ -; Config file for hector model: that uses RCP45 concentrations to drive Hector. -; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp45_co2constrain -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP45_emissions.csv -luc_emissions=csv:emissions/RCP45_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;CO2_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -CO2_constrain=csv:constraints/rcp45_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP45_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_4.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP45_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP45_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP45_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP45_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP45_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP45_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP45_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP45_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP45_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP45_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP45_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP45_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP45_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP45_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP45_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP45_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP45_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP45_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP45_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP45_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP45_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP45_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP45_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP45_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP45_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP45_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP45_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP45_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP45_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/input/hector_rcp60.ini b/inst/input/hector_rcp60.ini deleted file mode 100644 index 2b5855e68..000000000 --- a/inst/input/hector_rcp60.ini +++ /dev/null @@ -1,382 +0,0 @@ -; Config file for hector model: RCP60 -;------------------------------------------------------------------------ -[core] -run_name=rcp60 -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP60_emissions.csv -luc_emissions=csv:emissions/RCP60_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;CO2_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -;CO2_constrain=csv:constraints/RCP60_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP60_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP60_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP60_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP60_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP60_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP60_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP60_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP60_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP60_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP60_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP60_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP60_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP60_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP60_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP60_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP60_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP60_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP60_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP60_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP60_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP60_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP60_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP60_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP60_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP60_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP60_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP60_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP60_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP60_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP60_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP60_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP60_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/input/hector_rcp60_constrained.ini b/inst/input/hector_rcp60_constrained.ini deleted file mode 100644 index f692ff24e..000000000 --- a/inst/input/hector_rcp60_constrained.ini +++ /dev/null @@ -1,383 +0,0 @@ -; Config file for hector model: that uses RCP60 concentrations to drive Hector. -; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp60_co2constrain -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP60_emissions.csv -luc_emissions=csv:emissions/RCP60_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;CO2_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -CO2_constrain=csv:constraints/rcp60_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP60_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP60_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP60_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP60_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP60_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP60_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP60_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP60_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP60_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP60_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP60_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP60_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP60_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP60_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP60_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP60_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP60_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP60_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP60_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP60_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP60_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP60_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP60_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP60_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP60_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP60_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP60_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP60_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP60_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP60_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP60_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP60_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP60_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/input/hector_rcp85.ini b/inst/input/hector_rcp85.ini deleted file mode 100644 index 06019ffb7..000000000 --- a/inst/input/hector_rcp85.ini +++ /dev/null @@ -1,382 +0,0 @@ -; Config file for hector model: RCP85 -;------------------------------------------------------------------------ -[core] -run_name=rcp85 -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP85_emissions.csv -luc_emissions=csv:emissions/RCP85_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;CO2_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -;CO2_constrain=csv:constraints/RCP85_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP85_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP85_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP85_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP85_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP85_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP85_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP85_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP85_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP85_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP85_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP85_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP85_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP85_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP85_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP85_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP85_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP85_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP85_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP85_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP85_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP85_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP85_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP85_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP85_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP85_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP85_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP85_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP85_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/input/hector_rcp85_constrained.ini b/inst/input/hector_rcp85_constrained.ini deleted file mode 100644 index 0cf214a5b..000000000 --- a/inst/input/hector_rcp85_constrained.ini +++ /dev/null @@ -1,383 +0,0 @@ -; Config file for hector model: that uses RCP85 concentrations to drive Hector. -; Emission driven Hector runs capture the carbon cycle whereas concentration runs do not. -;------------------------------------------------------------------------ -[core] -run_name=rcp85_co2constrain -startDate=1745 -endDate=2300 -do_spinup=1 ; if 1, spin up model before running (default=1) -max_spinup=2000 ; maximum steps allowed for spinup (default=2000) - -;------------------------------------------------------------------------ -[ocean] -enabled=1 ; putting 'enabled=0' will disable any component -spinup_chem=0 ; run surface chemistry during spinup phase? -;carbon_HL=145 ; high latitude, Pg C -;carbon_LL=750 ; low latitude, Pg C -;carbon_IO=10040 ; intermediate, Pg C -;carbon_DO=27070 ; deep, Pg C - -tt=72000000 ; 7.2e7 thermohaline circulation, m3/s -tu=49000000 ; 4.9e7 high latitude overturning, m3/s -twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s -tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s - -; Optional ocean C uptake constraint, Pg C/yr -; If supplied, the model will use these data, ignoring what it calculates -;atm_ocean_constrain=csv:constraints/cmip5_oceanflux.csv - -;------------------------------------------------------------------------ -[simpleNbox] -; Initial (preindustrial) carbon pools and fluxes -; These are generally consistent with reconstructed (Siegenthaler and Oeschger -; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, -; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. - -; If using biomes (e.g. boreal.veg_c) must have data for all pools*biomes -atmos_c=588.071 ; Pg C in CO2, from Murakami et al. (2010) -;C0=276 ; another way to specify, in ppmv -;boreal.veg_c=100 ; e.g. -;tropical.veg_c=450 ; -veg_c=550 ; vegetation, Pg C -;boreal.detritus_c=15 -;tropical.detritus_c=45 -detritus_c=55 ; detritus, Pg C -;boreal.soil_c=1200 -;tropical.soil_c=578 -soil_c=1782 ; soil, Pg C -;boreal.npp_flux0=5.0 -;tropical.npp_flux0=45.0 -npp_flux0=50.0 ; net primary production, Pg C/yr - -; Partitioning parameters -f_nppv=0.35 ; Fraction of NPP to vegetation -f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) -f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) -f_lucv=0.1 ; Fraction of land use change flux from vegetation -f_lucd=0.01 ; Fraction of land use change flux from detritus (balance from soil) - -; Anthropogenic contributions: direct emissions and land use change, Pg C/yr -ffi_emissions=csv:emissions/RCP85_emissions.csv -luc_emissions=csv:emissions/RCP85_emissions.csv - -; Optional atmospheric CO2 constraint, ppmv -; If supplied, the model will use these data, ignoring what it calculates -; Any residual between model [CO2] and model [CO2] will be put into the deep ocean -;CO2_constrain=csv:constraints/lawdome_co2.csv ; Law Dome CO2 record -CO2_constrain=csv:constraints/rcp85_co2ppm.csv ; MAGICC output - -; CO2 and temperature effects on the carbon cycle -; these are global values, can optionally specify biome-specific ones as above -beta=0.36 ; 0.36=about +20% @2xCO2 -q10_rh=2.0 ; respiration response Q10, unitless - -; Optional biome-specific warming factors -; by default, assume 1.0 (i.e., warms as fast as the globe) -;boreal.warming=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally - -; Albedo effect, in W/m2. The model assumes a constant value if nothing specified -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 - -;------------------------------------------------------------------------ -[carbon-cycle-solver] -eps_abs=1.0e-6 ; solution tolerances -eps_rel=1.0e-6 -dt=0.25 ; default time step -eps_spinup=0.001 ; spinup tolerance (drift), Pg C - -;------------------------------------------------------------------------ -[so2] -S0=53841.2 ; historical sulphate from year 2000 (Gg) -SN=42000 ; natural sulfur emissions (Gg) -SO2_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -SV=csv:emissions/volcanic_RF.csv ; emissions time series - -;------------------------------------------------------------------------ -[CH4] -M0=653 ; 721.8941 preindustrial methane, ppbv ; assumed to be 700 ppbv IPCC, 2001 Table 6.1 -Tsoil=160 ; CH4 loss to soil (years) -Tstrat=120 ; CH4 loss to stratosphere (years) -UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations -CH4N=300 ; Natural CH4 emissions (Tgrams) -CH4_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series - -;------------------------------------------------------------------------ -[OH] -NOX_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series - -TOH0=6.6 ; inital OH lifetime (years) -CNOX=0.0042 ; coefficent for NOX -CCO=-0.000105 ; coefficent for CO -CNMVOC=-0.000315 ; coefficent for NMVOC -CCH4=-0.32 ; coefficent for CH4 - -;------------------------------------------------------------------------ -[ozone] -PO3=30.0 ; preindustrial O3 concentration -NOX_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -CO_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -NMVOC_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -;molarMass=16.04 ; grams -;tau=10 ; lifetime in years (Oucher et al 2009) - -;------------------------------------------------------------------------ -[N2O] -N0=272.9596 ; preindustrial nitrous oxide, ppbv -UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations -TN2O0=132 ; initial lifetime of N2O, years - -; An example of setting a time series by individual values -; The model will interpolate as necessary between them -N2O_natural_emissions[1765]=11 ; natural emissions in 1765, TgN -N2O_natural_emissions[2000]=8 ; natural emissions in 2000, TgN -N2O_natural_emissions[2300]=8 ; natural emissions in 2300, TgN - -N2O_emissions=csv:emissions/RCP85_emissions.csv ; emissions time series -;molarMass=44.01 ; grams - -;------------------------------------------------------------------------ -[forcing] -baseyear=1750 ; when to start reporting; by definition, all F=0 in this year - -; Optional radiative forcing constraint -; If supplied, the model will use these data, ignoring what it calculates -;Ftot_constrain=csv:constraints/MAGICC_RF_8.5.csv - -;------------------------------------------------------------------------ -[temperature] -enabled=1 - -S=3.0 ; equilibrium climate sensitivity for 2xCO2, degC -diff=2.3 ; ocean heat diffusivity, cm2/s -alpha=1.0 ; scaling factor for aerosol forcing -volscl=1.0 ; scaling factor for volcanic forcing -; Optional global temperature constraint -; If supplied, the model will use these data, ignoring what it calculates -; tgav_constrain=csv:constraints/tgav_historical.csv - -;------------------------------------------------------------------------ -[bc] -BC_emissions=csv:emissions/RCP85_emissions.csv - -;------------------------------------------------------------------------ -[oc] -OC_emissions=csv:emissions/RCP85_emissions.csv - -;------------------------------------------------------------------------ -; Halocarbons -; Tau (lifetime) and Rho (radiative efficiency) from IPCC (2005, Table 2.14) - -[CF4_halocarbon] -tau=50000.0 ; lifetime in years -rho=0.00008 ; radiative efficiencies W/m2/ppt -H0=35.0,pptv ; preindustrial concentration, pptv -CF4_emissions=csv:emissions/RCP85_emissions.csv -molarMass=88.0043 ; grams - -[C2F6_halocarbon] -tau=10000.0 -rho=0.00026 -C2F6_emissions=csv:emissions/RCP85_emissions.csv -molarMass=138.01 - -;[C4F10_halocarbon] -;tau=2600.0 -;rho=0.00033 -;C4F10_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=238.0 - -[HFC23_halocarbon] -tau=270.0 -rho=0.00019 -HFC23_emissions=csv:emissions/RCP85_emissions.csv -molarMass=70.0 - -[HFC32_halocarbon] -tau=4.9 -rho=0.00011 -HFC32_emissions=csv:emissions/RCP85_emissions.csv -molarMass=52.0 - -[HFC4310_halocarbon] -tau=15.9 -rho=0.0004 -HFC4310_emissions=csv:emissions/RCP85_emissions.csv -molarMass=252.0 - -[HFC125_halocarbon] -tau=29.0 -rho=0.00023 -HFC125_emissions=csv:emissions/RCP85_emissions.csv -molarMass=120.02 - -[HFC134a_halocarbon] -tau=14.0 -rho=0.00016 -HFC134a_emissions=csv:emissions/RCP85_emissions.csv -molarMass=102.02 - -[HFC143a_halocarbon] -tau=52.0 -rho=0.00013 -HFC143a_emissions=csv:emissions/RCP85_emissions.csv -molarMass=84.04 - -;[HFC152a_halocarbon] -;tau=1.4 -;rho=0.00009 -;HFC152a_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=66.0 - -[HFC227ea_halocarbon] -tau=34.2 -rho=0.00026 -HFC227ea_emissions=csv:emissions/RCP85_emissions.csv -molarMass=170.03 - -[HFC245fa_halocarbon] -tau=7.6 -rho=0.00028 -HFC245fa_emissions=csv:emissions/RCP85_emissions.csv -molarMass=134.0 - -;[HFC236fa_halocarbon] -;tau=240.0 -;rho=0.00028 -;HFC236fa_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=152.0 - -[SF6_halocarbon] -tau=3200.0 -rho=0.00052 -SF6_emissions=csv:emissions/RCP85_emissions.csv -molarMass=146.06 - -[CFC11_halocarbon] -tau=45.0 -rho=0.00025 -CFC11_emissions=csv:emissions/RCP85_emissions.csv -molarMass=137.35 -;ni=3 -;FC=1 - -[CFC12_halocarbon] -tau=100 -rho=0.00032 -CFC12_emissions=csv:emissions/RCP85_emissions.csv -molarMass=120.9 -;ni=2 -;FC=0.6 - -[CFC113_halocarbon] -tau=85.0 -rho=0.0003 -CFC113_emissions=csv:emissions/RCP85_emissions.csv -molarMass=187.35 -;ni=3 -;FC=0.75 - -[CFC114_halocarbon] -tau=300 -rho=0.00031 -CFC114_emissions=csv:emissions/RCP85_emissions.csv -molarMass=170.9 -;ni=2 -;FC=0.28 - -[CFC115_halocarbon] -tau=1700 -rho=0.00018 -CFC115_emissions=csv:emissions/RCP85_emissions.csv -molarMass=154.45 - -[CCl4_halocarbon] -tau=26.0 -rho=0.00013 -CCl4_emissions=csv:emissions/RCP85_emissions.csv -molarMass=153.8 -;ni=4 -;FC=1.06 - -[CH3CCl3_halocarbon] -tau=5.0 -rho=0.00006 -CH3CCl3_emissions=csv:emissions/RCP85_emissions.csv -molarMass=133.35 -;ni=3 -;FC=1.08 - -[halon1211_halocarbon] -tau=16.0 -rho=0.00003 -halon1211_emissions=csv:emissions/RCP85_emissions.csv -molarMass=165.35 -;ni=1 -;nj=1 -;FC=1.18 - -[halon1301_halocarbon] -tau=65.0 -rho=0.00032 -halon1301_emissions=csv:emissions/RCP85_emissions.csv -molarMass=148.9 -;nj=1 -;FC=0.62 - -[halon2402_halocarbon] -tau=20.0 -rho=0.00033 -halon2402_emissions=csv:emissions/RCP85_emissions.csv -molarMass=259.8 -;nj=2 -;FC=1.22 - -[HCFC22_halocarbon] -tau=12.0 -rho=0.0002 -HCFC22_emissions=csv:emissions/RCP85_emissions.csv -molarMass=86.45 -;ni=1 -;FC=0.35 - -[HCFC141b_halocarbon] -tau=9.3 -rho=0.00014 -HCFC141b_emissions=csv:emissions/RCP85_emissions.csv -molarMass=116.9 -;ni=2 -;FC=0.72 - -[HCFC142b_halocarbon] -tau=17.9 -rho=0.0002 -HCFC142b_emissions=csv:emissions/RCP85_emissions.csv -molarMass=100.45 -;ni=1 -;FC=0.36 - -;[HCFC143_halocarbon] -;tau=1.3 -;rho=0.00014 -;HCFC143_emissions=csv:emissions/RCP85_emissions.csv -;molarMass=152.9 - -[CH3Cl_halocarbon] -tau=1.3 -rho=0.00001 -H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL -CH3Cl_emissions=csv:emissions/RCP85_emissions.csv -molarMass=50.45 -;ni=1 -;FC=0.8 - -[CH3Br_halocarbon] -tau=0.7 -rho=0.00001 -H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR -CH3Br_emissions=csv:emissions/RCP85_emissions.csv -molarMass=94.9 -;nj=1 -;FC=1.12 diff --git a/inst/input/hector_ssp119.ini b/inst/input/hector_ssp119.ini new file mode 100644 index 000000000..34af1713b --- /dev/null +++ b/inst/input/hector_ssp119.ini @@ -0,0 +1,383 @@ +; Config file for hector model: ssp119 +;------------------------------------------------------------------------ +[core] +run_name=ssp119 +startDate=1745 +endDate=2300 +trackingDate=9999 ; year to start tracking (only carbon currently) +do_spinup=1 ; if 1, spin up model before running (default=1) +max_spinup=2000 ; maximum steps allowed for spinup (default=2000) + +;------------------------------------------------------------------------ +[ocean] +enabled=1 ; putting 'enabled=0' will disable any component +spinup_chem=0 ; run surface chemistry during spinup phase? + +tt=72000000 ; 7.2e7 thermohaline circulation, m3/s +tu=49000000 ; 4.9e7 high latitude overturning, m3/s +twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s +tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s + +preind_surface_c=900 ; surface ocean C, IPCC AR6 Figure 5.12 +preind_interdeep_c=37100 ; intermediate and deep ocean C, IPCC AR6 Figure 5.12 + +;------------------------------------------------------------------------ +[simpleNbox] +; Initial (preindustrial) carbon pools and fluxes +; These are generally consistent with reconstructed (Siegenthaler and Oeschger +; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, +; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. + +; If using biomes (e.g. boreal.veg_c), this file must have entries for +; - all carbon pools +; - the nppv, nppd, and litterd partitioning parameters +; - beta and q10_rh + +atmos_co2=590.33 ; initial atmospheric carbon pool Pg C of CO2 size used in spin up, consistent with C0 +C0=277.15 ; preindustrial CO2 from table 7.SM.1 IPCC AR6, CO2 radiative forcing question is calibrated to this value +npp_flux0=56.2 ; preindustrial net primary production, Pg C/yr from Ito et al. 2011 + +veg_c=550 ; initial vegetation pool, Pg C +detritus_c=55 ; initial detritus pool, Pg C +soil_c=1782 ; initial soil pool, Pg C +;boreal.veg_c=100 +;boreal.detritus_c=15 +;boreal.soil_c=1200 +;boreal.permafrost_c=865 +;boreal.npp_flux0=5.0 +;tropical.veg_c=450 +;tropical.detritus_c=45 +;tropical.soil_c=578 +;tropical.permafrost_c=0 +;tropical.npp_flux0=45.0 + +; Permafrost is inactive (zero) by default in Hector v3 +; See Woodard et al. 2021, 10.5194/gmd-14-4751-2021 +permafrost_c=0 ; permafrost, Pg C +;fpf_static=0.74 ; fraction of permafrost that is static (non-labile) +;rh_ch4_frac=0.023 ; fraction of thawed permafrost decomposed as CH4 +;pf_mu=1.67 ; permafrost thaw parameter; see Woodard et al. 2021 +;pf_sigma=0.986 ; permafrost thaw parameter; see Woodard et al. 2021 + +; Partitioning parameters +f_nppv=0.35 ; Fraction of NPP to vegetation +f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) +f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) + +; Anthropogenic contributions: emissions, direct air carbon capture and storage, and land use change, Pg C/yr +ffi_emissions=csv:tables/ssp119_emiss-constraints_rf.csv +daccs_uptake=csv:tables/ssp119_emiss-constraints_rf.csv +luc_emissions=csv:tables/ssp119_emiss-constraints_rf.csv +luc_uptake=csv:tables/ssp119_emiss-constraints_rf.csv + +; Optional atmospheric CO2 constraint, ppmv +; If supplied, the model will use these data, ignoring what it calculates +; Any residual between model [CO2] and model [CO2] will be put into the deep ocean +;CO2_constrain=csv:tables/ssp119_emiss-constraints_rf.csv ; + +; Optional net biome production (land-atmosphere C flux) constaint, Pg C/yr +; Positive represents flux to land, negative represents flux to atmosphere +; If supplied, the model will use these data, ignoring what it calculates +;NBP_constrain=csv:tables/ssp119_emiss-constraints_rf.csv ; + +; CO2 and temperature effects on the carbon cycle +; these are global values, can optionally specify biome-specific ones as above +beta=0.55 ; CO2 fertilization factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details +q10_rh=2.2 ; Heterotrophic respiration temperature sensitivity factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details + +; Optional biome-specific warming factors +; by default, assume 1.0 (i.e., warms as fast as the globe) +;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally + +; Albedo effect, in W/m2. The model assumes a constant value if nothing specified +RF_albedo=csv:tables/ssp119_emiss-constraints_rf.csv ; + +;------------------------------------------------------------------------ +[carbon-cycle-solver] +eps_abs=1.0e-6 ; solution tolerance +eps_rel=1.0e-6 ; solution tolerance +dt=0.25 ; default time step +eps_spinup=0.001 ; spinup tolerance (drift), Pg C + +;------------------------------------------------------------------------ +[so2] +SO2_emissions=csv:tables/ssp119_emiss-constraints_rf.csv ; emissions time series +SV=csv:tables/ssp119_emiss-constraints_rf.csv ; volcanic radiative forcing time series + +;------------------------------------------------------------------------ +[CH4] +M0= 731.41 ; 731.41 ppb preindustrial methane IPCC AR6 Table 7.SM.1, the CH4 forcing equations is calibrated to a M0 of 731.41 ppb +Tsoil=160 ; lifetime of soil sink (years) +Tstrat=120 ; lifetime of tropospheric sink (years) +UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations +CH4N=338 ; Natural CH4 emissions (Tgrams) +CH4_emissions=csv:tables/ssp119_emiss-constraints_rf.csv ; emissions time series +;CH4_constrain=csv:tables/ssp119_emiss-constraints_rf.csv ; CH4 concentration constraint + +;------------------------------------------------------------------------ +[OH] +NOX_emissions=csv:tables/ssp119_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp119_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp119_emiss-constraints_rf.csv ; emissions time series + +TOH0=6.6 ; inital OH lifetime (years) +CNOX=0.0042 ; coefficent for NOX +CCO=-0.000105 ; coefficent for CO +CNMVOC=-0.000315 ; coefficent for NMVOC (non methane VOC) +CCH4=-0.32 ; coefficent for CH4 + +;------------------------------------------------------------------------ +[ozone] +PO3=30.0 ; preindustrial O3 concentration +NOX_emissions=csv:tables/ssp119_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp119_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp119_emiss-constraints_rf.csv ; emissions time series + +;------------------------------------------------------------------------ +[N2O] +N0=273.87 ; (ppb) preindustrial nitrous oxide from IPCC AR6 table 7.SM.1 +UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations +TN2O0=132 ; initial lifetime of N2O, years + +; An example of setting a time series by individual values +; The model will interpolate as necessary between them +N2O_natural_emissions[1750]=9.7 ; default natural emissions based on a best fit to IPCC AR6 N2O RF +N2O_emissions=csv:tables/ssp119_emiss-constraints_rf.csv ; emissions time series +;N2O_constrain=csv:tables/ssp119_emiss-constraints_rf.csv ; N2O concentration constraint + +;------------------------------------------------------------------------ +[forcing] +baseyear=1750 ; when to start reporting; by definition, all F=0 in this year + +; Optional radiative forcing constraint +; If supplied, the model will use these data, ignoring what it calculates +;RF_tot_constrain=csv:tables/CONSTRAINT.csv +delta_co2=0.05 ; (unitless) forcing tropospheric adjustments for CO2 (7.3.2.1 of IPCC AR6) +delta_ch4=-.14 ; (unitless) forcing tropospheric adjustments for CH4 (7.3.2.2 of IPCC AR6) +delta_n2o=0.07 ; (unitless) forcing tropospheric adjustments for N2O (7.3.2.3 of IPCC AR6) +rho_bc=0.0508 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency BC (7.SM.1.3 of IPCC AR6) +rho_oc=-.00621 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency OC (7.SM.1.3.1 of IPCC AR6) +rho_so2=-.00000724 ; (W yr m–2 S Gg-1) IPCC AR6 radiative efficiency SO2 (7.SM.1.3.1 of IPCC AR6) +rho_nh3=-.00208 ; (W yr m–2 NH3Tg–1) IPCC AR6 radiative efficiency NH3 (7.SM.1.3.1 of IPCC AR6) + +; Miscellaneous radiative forcings default set to 0, or read in from a input table, may be used to read in +; additional forcings not modeled by Hector (i.e. solar, bc on snow , contrails from) +;RF_misc=csv:tables/ssp119_emiss-constraints_rf.csv ; +RF_misc[1750]=0 + + + +;------------------------------------------------------------------------ +[temperature] +enabled=1 + +S=3.0 ; equilibrium climate sensitivity for 2xCO2 degC (A.4.4 of IPCC AR6) +diff=1.16 ; ocean heat diffusivity, cm2/s calibrated to historical observations see Dorheim et al. in prep for details +alpha=1.0 ; uncertainty scaling factor for aerosol forcing +volscl=1.0 ; uncertainty scaling factor for volcanic forcing +qco2=3.75 ; 2×CO2 RF (7.3.2 of IPCC AR6) + +; Optional global temperature constraint +; If supplied, the model will use these data, ignoring what it calculates +; tas_constrain=csv:tables/ssp119_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[bc] +BC_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[oc] +OC_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[nh3] +NH3_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +; Halocarbons +; tau (lifetime), rho (radiative efficiency), delta (tropospheric adjustments scalar) + +[CF4_halocarbon] +tau=50000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CF4=0.000099 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CF4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=35.0 ; preindustrial concentration, pptv +molarMass=88.0043 ; grams +CF4_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[C2F6_halocarbon] +tau=10000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_C2F6=0.000261 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_C2F6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=138.01 ; grams +C2F6_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HFC23_halocarbon] +tau=228.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC23=0.000191 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC23=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=70.0 ; grams +HFC23_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HFC32_halocarbon] +tau=5.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC32=0.000111 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC32=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=52.0 ; grams +HFC32_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HFC4310_halocarbon] ; This is equivalent to HFC-43-10mee +tau=17.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC4310=0.000357 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC4310=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=252.0 ; grams +HFC4310_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HFC125_halocarbon] +tau=30.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC125=0.000234 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC125=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.02 ; grams +HFC125_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HFC134a_halocarbon] +tau=14.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC134a=0.000167 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC134a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=102.02 ; grams +HFC134a_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HFC143a_halocarbon] +tau=51.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC143a=0.000168 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC143a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=84.04 ; grams +HFC143a_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HFC227ea_halocarbon] +tau=36.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC227ea=0.000273 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC227ea=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.03 ; grams +HFC227ea_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HFC245fa_halocarbon] +tau=7.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC245fa=0.000245 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC245fa=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=134.0 ; grams +HFC245fa_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[SF6_halocarbon] +tau=3200.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_SF6=0.000567 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_SF6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=146.06 ; grams +SF6_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[CFC11_halocarbon] +tau=52.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC11=0.000259 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC11=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=137.35 ; grams +CFC11_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[CFC12_halocarbon] +tau=102.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC12=0.00032 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC12=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.9 ; grams +CFC12_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[CFC113_halocarbon] +tau=93.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC113=0.000301 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC113=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=187.35 ; grams +CFC113_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[CFC114_halocarbon] +tau=189 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC114=0.000314 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC114=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.9 ; grams +CFC114_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[CFC115_halocarbon] +tau=540 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC115=0.000246 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC115=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=154.45 ; grams +CFC115_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[CCl4_halocarbon] +tau=32.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CCl4=0.000166 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CCl4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=153.8 ; grams +CCl4_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[CH3CCl3_halocarbon] +tau=5.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3CCl3=0.000065 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3CCl3=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=133.35 ; grams +CH3CCl3_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[halon1211_halocarbon] +tau=16.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1211=0.00003 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1211=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=165.35 ; grams +halon1211_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[halon1301_halocarbon] +tau=72.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1301=0.000299 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1301=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=148.9 ; grams +halon1301_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[halon2402_halocarbon] +tau=28.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon2402=0.000312 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon2402=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=259.8 ; grams +halon2402_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HCFC22_halocarbon] +tau=11.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC22=0.000214 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC22=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=86.45 ; grams +HCFC22_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HCFC141b_halocarbon] +tau=9.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC141b=0.000161 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC141b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=116.9 ; grams +HCFC141b_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[HCFC142b_halocarbon] +tau=18.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC142b=0.000193 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC142b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=100.45 ; grams +HCFC142b_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[CH3Cl_halocarbon] +tau=0.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Cl=0.000005 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Cl=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL +molarMass=50.45 ; grams +CH3Cl_emissions=csv:tables/ssp119_emiss-constraints_rf.csv + +[CH3Br_halocarbon] +tau=0.8 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Br=0.000004 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Br=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR +molarMass=50.45 ; grams +CH3Br_emissions=csv:tables/ssp119_emiss-constraints_rf.csv diff --git a/inst/input/hector_ssp126.ini b/inst/input/hector_ssp126.ini new file mode 100644 index 000000000..9726ed060 --- /dev/null +++ b/inst/input/hector_ssp126.ini @@ -0,0 +1,383 @@ +; Config file for hector model: ssp126 +;------------------------------------------------------------------------ +[core] +run_name=ssp126 +startDate=1745 +endDate=2300 +trackingDate=9999 ; year to start tracking (only carbon currently) +do_spinup=1 ; if 1, spin up model before running (default=1) +max_spinup=2000 ; maximum steps allowed for spinup (default=2000) + +;------------------------------------------------------------------------ +[ocean] +enabled=1 ; putting 'enabled=0' will disable any component +spinup_chem=0 ; run surface chemistry during spinup phase? + +tt=72000000 ; 7.2e7 thermohaline circulation, m3/s +tu=49000000 ; 4.9e7 high latitude overturning, m3/s +twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s +tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s + +preind_surface_c=900 ; surface ocean C, IPCC AR6 Figure 5.12 +preind_interdeep_c=37100 ; intermediate and deep ocean C, IPCC AR6 Figure 5.12 + +;------------------------------------------------------------------------ +[simpleNbox] +; Initial (preindustrial) carbon pools and fluxes +; These are generally consistent with reconstructed (Siegenthaler and Oeschger +; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, +; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. + +; If using biomes (e.g. boreal.veg_c), this file must have entries for +; - all carbon pools +; - the nppv, nppd, and litterd partitioning parameters +; - beta and q10_rh + +atmos_co2=590.33 ; initial atmospheric carbon pool Pg C of CO2 size used in spin up, consistent with C0 +C0=277.15 ; preindustrial CO2 from table 7.SM.1 IPCC AR6, CO2 radiative forcing question is calibrated to this value +npp_flux0=56.2 ; preindustrial net primary production, Pg C/yr from Ito et al. 2011 + +veg_c=550 ; initial vegetation pool, Pg C +detritus_c=55 ; initial detritus pool, Pg C +soil_c=1782 ; initial soil pool, Pg C +;boreal.veg_c=100 +;boreal.detritus_c=15 +;boreal.soil_c=1200 +;boreal.permafrost_c=865 +;boreal.npp_flux0=5.0 +;tropical.veg_c=450 +;tropical.detritus_c=45 +;tropical.soil_c=578 +;tropical.permafrost_c=0 +;tropical.npp_flux0=45.0 + +; Permafrost is inactive (zero) by default in Hector v3 +; See Woodard et al. 2021, 10.5194/gmd-14-4751-2021 +permafrost_c=0 ; permafrost, Pg C +;fpf_static=0.74 ; fraction of permafrost that is static (non-labile) +;rh_ch4_frac=0.023 ; fraction of thawed permafrost decomposed as CH4 +;pf_mu=1.67 ; permafrost thaw parameter; see Woodard et al. 2021 +;pf_sigma=0.986 ; permafrost thaw parameter; see Woodard et al. 2021 + +; Partitioning parameters +f_nppv=0.35 ; Fraction of NPP to vegetation +f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) +f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) + +; Anthropogenic contributions: emissions, direct air carbon capture and storage, and land use change, Pg C/yr +ffi_emissions=csv:tables/ssp126_emiss-constraints_rf.csv +daccs_uptake=csv:tables/ssp126_emiss-constraints_rf.csv +luc_emissions=csv:tables/ssp126_emiss-constraints_rf.csv +luc_uptake=csv:tables/ssp126_emiss-constraints_rf.csv + +; Optional atmospheric CO2 constraint, ppmv +; If supplied, the model will use these data, ignoring what it calculates +; Any residual between model [CO2] and model [CO2] will be put into the deep ocean +;CO2_constrain=csv:tables/ssp126_emiss-constraints_rf.csv ; + +; Optional net biome production (land-atmosphere C flux) constaint, Pg C/yr +; Positive represents flux to land, negative represents flux to atmosphere +; If supplied, the model will use these data, ignoring what it calculates +;NBP_constrain=csv:tables/ssp126_emiss-constraints_rf.csv ; + +; CO2 and temperature effects on the carbon cycle +; these are global values, can optionally specify biome-specific ones as above +beta=0.55 ; CO2 fertilization factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details +q10_rh=2.2 ; Heterotrophic respiration temperature sensitivity factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details + +; Optional biome-specific warming factors +; by default, assume 1.0 (i.e., warms as fast as the globe) +;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally + +; Albedo effect, in W/m2. The model assumes a constant value if nothing specified +RF_albedo=csv:tables/ssp126_emiss-constraints_rf.csv ; + +;------------------------------------------------------------------------ +[carbon-cycle-solver] +eps_abs=1.0e-6 ; solution tolerance +eps_rel=1.0e-6 ; solution tolerance +dt=0.25 ; default time step +eps_spinup=0.001 ; spinup tolerance (drift), Pg C + +;------------------------------------------------------------------------ +[so2] +SO2_emissions=csv:tables/ssp126_emiss-constraints_rf.csv ; emissions time series +SV=csv:tables/ssp126_emiss-constraints_rf.csv ; volcanic radiative forcing time series + +;------------------------------------------------------------------------ +[CH4] +M0= 731.41 ; 731.41 ppb preindustrial methane IPCC AR6 Table 7.SM.1, the CH4 forcing equations is calibrated to a M0 of 731.41 ppb +Tsoil=160 ; lifetime of soil sink (years) +Tstrat=120 ; lifetime of tropospheric sink (years) +UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations +CH4N=338 ; Natural CH4 emissions (Tgrams) +CH4_emissions=csv:tables/ssp126_emiss-constraints_rf.csv ; emissions time series +;CH4_constrain=csv:tables/ssp126_emiss-constraints_rf.csv ; CH4 concentration constraint + +;------------------------------------------------------------------------ +[OH] +NOX_emissions=csv:tables/ssp126_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp126_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp126_emiss-constraints_rf.csv ; emissions time series + +TOH0=6.6 ; inital OH lifetime (years) +CNOX=0.0042 ; coefficent for NOX +CCO=-0.000105 ; coefficent for CO +CNMVOC=-0.000315 ; coefficent for NMVOC (non methane VOC) +CCH4=-0.32 ; coefficent for CH4 + +;------------------------------------------------------------------------ +[ozone] +PO3=30.0 ; preindustrial O3 concentration +NOX_emissions=csv:tables/ssp126_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp126_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp126_emiss-constraints_rf.csv ; emissions time series + +;------------------------------------------------------------------------ +[N2O] +N0=273.87 ; (ppb) preindustrial nitrous oxide from IPCC AR6 table 7.SM.1 +UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations +TN2O0=132 ; initial lifetime of N2O, years + +; An example of setting a time series by individual values +; The model will interpolate as necessary between them +N2O_natural_emissions[1750]=9.7 ; default natural emissions based on a best fit to IPCC AR6 N2O RF +N2O_emissions=csv:tables/ssp126_emiss-constraints_rf.csv ; emissions time series +;N2O_constrain=csv:tables/ssp126_emiss-constraints_rf.csv ; N2O concentration constraint + +;------------------------------------------------------------------------ +[forcing] +baseyear=1750 ; when to start reporting; by definition, all F=0 in this year + +; Optional radiative forcing constraint +; If supplied, the model will use these data, ignoring what it calculates +;RF_tot_constrain=csv:tables/CONSTRAINT.csv +delta_co2=0.05 ; (unitless) forcing tropospheric adjustments for CO2 (7.3.2.1 of IPCC AR6) +delta_ch4=-.14 ; (unitless) forcing tropospheric adjustments for CH4 (7.3.2.2 of IPCC AR6) +delta_n2o=0.07 ; (unitless) forcing tropospheric adjustments for N2O (7.3.2.3 of IPCC AR6) +rho_bc=0.0508 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency BC (7.SM.1.3 of IPCC AR6) +rho_oc=-.00621 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency OC (7.SM.1.3.1 of IPCC AR6) +rho_so2=-.00000724 ; (W yr m–2 S Gg-1) IPCC AR6 radiative efficiency SO2 (7.SM.1.3.1 of IPCC AR6) +rho_nh3=-.00208 ; (W yr m–2 NH3Tg–1) IPCC AR6 radiative efficiency NH3 (7.SM.1.3.1 of IPCC AR6) + +; Miscellaneous radiative forcings default set to 0, or read in from a input table, may be used to read in +; additional forcings not modeled by Hector (i.e. solar, bc on snow , contrails from) +;RF_misc=csv:tables/ssp126_emiss-constraints_rf.csv ; +RF_misc[1750]=0 + + + +;------------------------------------------------------------------------ +[temperature] +enabled=1 + +S=3.0 ; equilibrium climate sensitivity for 2xCO2 degC (A.4.4 of IPCC AR6) +diff=1.16 ; ocean heat diffusivity, cm2/s calibrated to historical observations see Dorheim et al. in prep for details +alpha=1.0 ; uncertainty scaling factor for aerosol forcing +volscl=1.0 ; uncertainty scaling factor for volcanic forcing +qco2=3.75 ; 2×CO2 RF (7.3.2 of IPCC AR6) + +; Optional global temperature constraint +; If supplied, the model will use these data, ignoring what it calculates +; tas_constrain=csv:tables/ssp126_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[bc] +BC_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[oc] +OC_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[nh3] +NH3_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +; Halocarbons +; tau (lifetime), rho (radiative efficiency), delta (tropospheric adjustments scalar) + +[CF4_halocarbon] +tau=50000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CF4=0.000099 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CF4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=35.0 ; preindustrial concentration, pptv +molarMass=88.0043 ; grams +CF4_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[C2F6_halocarbon] +tau=10000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_C2F6=0.000261 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_C2F6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=138.01 ; grams +C2F6_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HFC23_halocarbon] +tau=228.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC23=0.000191 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC23=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=70.0 ; grams +HFC23_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HFC32_halocarbon] +tau=5.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC32=0.000111 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC32=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=52.0 ; grams +HFC32_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HFC4310_halocarbon] ; This is equivalent to HFC-43-10mee +tau=17.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC4310=0.000357 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC4310=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=252.0 ; grams +HFC4310_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HFC125_halocarbon] +tau=30.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC125=0.000234 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC125=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.02 ; grams +HFC125_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HFC134a_halocarbon] +tau=14.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC134a=0.000167 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC134a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=102.02 ; grams +HFC134a_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HFC143a_halocarbon] +tau=51.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC143a=0.000168 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC143a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=84.04 ; grams +HFC143a_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HFC227ea_halocarbon] +tau=36.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC227ea=0.000273 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC227ea=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.03 ; grams +HFC227ea_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HFC245fa_halocarbon] +tau=7.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC245fa=0.000245 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC245fa=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=134.0 ; grams +HFC245fa_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[SF6_halocarbon] +tau=3200.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_SF6=0.000567 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_SF6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=146.06 ; grams +SF6_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[CFC11_halocarbon] +tau=52.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC11=0.000259 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC11=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=137.35 ; grams +CFC11_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[CFC12_halocarbon] +tau=102.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC12=0.00032 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC12=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.9 ; grams +CFC12_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[CFC113_halocarbon] +tau=93.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC113=0.000301 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC113=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=187.35 ; grams +CFC113_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[CFC114_halocarbon] +tau=189 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC114=0.000314 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC114=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.9 ; grams +CFC114_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[CFC115_halocarbon] +tau=540 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC115=0.000246 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC115=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=154.45 ; grams +CFC115_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[CCl4_halocarbon] +tau=32.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CCl4=0.000166 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CCl4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=153.8 ; grams +CCl4_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[CH3CCl3_halocarbon] +tau=5.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3CCl3=0.000065 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3CCl3=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=133.35 ; grams +CH3CCl3_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[halon1211_halocarbon] +tau=16.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1211=0.00003 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1211=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=165.35 ; grams +halon1211_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[halon1301_halocarbon] +tau=72.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1301=0.000299 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1301=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=148.9 ; grams +halon1301_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[halon2402_halocarbon] +tau=28.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon2402=0.000312 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon2402=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=259.8 ; grams +halon2402_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HCFC22_halocarbon] +tau=11.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC22=0.000214 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC22=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=86.45 ; grams +HCFC22_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HCFC141b_halocarbon] +tau=9.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC141b=0.000161 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC141b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=116.9 ; grams +HCFC141b_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[HCFC142b_halocarbon] +tau=18.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC142b=0.000193 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC142b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=100.45 ; grams +HCFC142b_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[CH3Cl_halocarbon] +tau=0.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Cl=0.000005 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Cl=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL +molarMass=50.45 ; grams +CH3Cl_emissions=csv:tables/ssp126_emiss-constraints_rf.csv + +[CH3Br_halocarbon] +tau=0.8 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Br=0.000004 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Br=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR +molarMass=50.45 ; grams +CH3Br_emissions=csv:tables/ssp126_emiss-constraints_rf.csv diff --git a/inst/input/hector_ssp245.ini b/inst/input/hector_ssp245.ini new file mode 100644 index 000000000..d0c978511 --- /dev/null +++ b/inst/input/hector_ssp245.ini @@ -0,0 +1,383 @@ +; Config file for hector model: ssp245 +;------------------------------------------------------------------------ +[core] +run_name=ssp245 +startDate=1745 +endDate=2300 +trackingDate=9999 ; year to start tracking (only carbon currently) +do_spinup=1 ; if 1, spin up model before running (default=1) +max_spinup=2000 ; maximum steps allowed for spinup (default=2000) + +;------------------------------------------------------------------------ +[ocean] +enabled=1 ; putting 'enabled=0' will disable any component +spinup_chem=0 ; run surface chemistry during spinup phase? + +tt=72000000 ; 7.2e7 thermohaline circulation, m3/s +tu=49000000 ; 4.9e7 high latitude overturning, m3/s +twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s +tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s + +preind_surface_c=900 ; surface ocean C, IPCC AR6 Figure 5.12 +preind_interdeep_c=37100 ; intermediate and deep ocean C, IPCC AR6 Figure 5.12 + +;------------------------------------------------------------------------ +[simpleNbox] +; Initial (preindustrial) carbon pools and fluxes +; These are generally consistent with reconstructed (Siegenthaler and Oeschger +; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, +; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. + +; If using biomes (e.g. boreal.veg_c), this file must have entries for +; - all carbon pools +; - the nppv, nppd, and litterd partitioning parameters +; - beta and q10_rh + +atmos_co2=590.33 ; initial atmospheric carbon pool Pg C of CO2 size used in spin up, consistent with C0 +C0=277.15 ; preindustrial CO2 from table 7.SM.1 IPCC AR6, CO2 radiative forcing question is calibrated to this value +npp_flux0=56.2 ; preindustrial net primary production, Pg C/yr from Ito et al. 2011 + +veg_c=550 ; initial vegetation pool, Pg C +detritus_c=55 ; initial detritus pool, Pg C +soil_c=1782 ; initial soil pool, Pg C +;boreal.veg_c=100 +;boreal.detritus_c=15 +;boreal.soil_c=1200 +;boreal.permafrost_c=865 +;boreal.npp_flux0=5.0 +;tropical.veg_c=450 +;tropical.detritus_c=45 +;tropical.soil_c=578 +;tropical.permafrost_c=0 +;tropical.npp_flux0=45.0 + +; Permafrost is inactive (zero) by default in Hector v3 +; See Woodard et al. 2021, 10.5194/gmd-14-4751-2021 +permafrost_c=0 ; permafrost, Pg C +;fpf_static=0.74 ; fraction of permafrost that is static (non-labile) +;rh_ch4_frac=0.023 ; fraction of thawed permafrost decomposed as CH4 +;pf_mu=1.67 ; permafrost thaw parameter; see Woodard et al. 2021 +;pf_sigma=0.986 ; permafrost thaw parameter; see Woodard et al. 2021 + +; Partitioning parameters +f_nppv=0.35 ; Fraction of NPP to vegetation +f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) +f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) + +; Anthropogenic contributions: emissions, direct air carbon capture and storage, and land use change, Pg C/yr +ffi_emissions=csv:tables/ssp245_emiss-constraints_rf.csv +daccs_uptake=csv:tables/ssp245_emiss-constraints_rf.csv +luc_emissions=csv:tables/ssp245_emiss-constraints_rf.csv +luc_uptake=csv:tables/ssp245_emiss-constraints_rf.csv + +; Optional atmospheric CO2 constraint, ppmv +; If supplied, the model will use these data, ignoring what it calculates +; Any residual between model [CO2] and model [CO2] will be put into the deep ocean +;CO2_constrain=csv:tables/ssp245_emiss-constraints_rf.csv ; + +; Optional net biome production (land-atmosphere C flux) constaint, Pg C/yr +; Positive represents flux to land, negative represents flux to atmosphere +; If supplied, the model will use these data, ignoring what it calculates +;NBP_constrain=csv:tables/ssp245_emiss-constraints_rf.csv ; + +; CO2 and temperature effects on the carbon cycle +; these are global values, can optionally specify biome-specific ones as above +beta=0.55 ; CO2 fertilization factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details +q10_rh=2.2 ; Heterotrophic respiration temperature sensitivity factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details + +; Optional biome-specific warming factors +; by default, assume 1.0 (i.e., warms as fast as the globe) +;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally + +; Albedo effect, in W/m2. The model assumes a constant value if nothing specified +RF_albedo=csv:tables/ssp245_emiss-constraints_rf.csv ; + +;------------------------------------------------------------------------ +[carbon-cycle-solver] +eps_abs=1.0e-6 ; solution tolerance +eps_rel=1.0e-6 ; solution tolerance +dt=0.25 ; default time step +eps_spinup=0.001 ; spinup tolerance (drift), Pg C + +;------------------------------------------------------------------------ +[so2] +SO2_emissions=csv:tables/ssp245_emiss-constraints_rf.csv ; emissions time series +SV=csv:tables/ssp245_emiss-constraints_rf.csv ; volcanic radiative forcing time series + +;------------------------------------------------------------------------ +[CH4] +M0= 731.41 ; 731.41 ppb preindustrial methane IPCC AR6 Table 7.SM.1, the CH4 forcing equations is calibrated to a M0 of 731.41 ppb +Tsoil=160 ; lifetime of soil sink (years) +Tstrat=120 ; lifetime of tropospheric sink (years) +UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations +CH4N=338 ; Natural CH4 emissions (Tgrams) +CH4_emissions=csv:tables/ssp245_emiss-constraints_rf.csv ; emissions time series +;CH4_constrain=csv:tables/ssp245_emiss-constraints_rf.csv ; CH4 concentration constraint + +;------------------------------------------------------------------------ +[OH] +NOX_emissions=csv:tables/ssp245_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp245_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp245_emiss-constraints_rf.csv ; emissions time series + +TOH0=6.6 ; inital OH lifetime (years) +CNOX=0.0042 ; coefficent for NOX +CCO=-0.000105 ; coefficent for CO +CNMVOC=-0.000315 ; coefficent for NMVOC (non methane VOC) +CCH4=-0.32 ; coefficent for CH4 + +;------------------------------------------------------------------------ +[ozone] +PO3=30.0 ; preindustrial O3 concentration +NOX_emissions=csv:tables/ssp245_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp245_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp245_emiss-constraints_rf.csv ; emissions time series + +;------------------------------------------------------------------------ +[N2O] +N0=273.87 ; (ppb) preindustrial nitrous oxide from IPCC AR6 table 7.SM.1 +UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations +TN2O0=132 ; initial lifetime of N2O, years + +; An example of setting a time series by individual values +; The model will interpolate as necessary between them +N2O_natural_emissions[1750]=9.7 ; default natural emissions based on a best fit to IPCC AR6 N2O RF +N2O_emissions=csv:tables/ssp245_emiss-constraints_rf.csv ; emissions time series +;N2O_constrain=csv:tables/ssp245_emiss-constraints_rf.csv ; N2O concentration constraint + +;------------------------------------------------------------------------ +[forcing] +baseyear=1750 ; when to start reporting; by definition, all F=0 in this year + +; Optional radiative forcing constraint +; If supplied, the model will use these data, ignoring what it calculates +;RF_tot_constrain=csv:tables/CONSTRAINT.csv +delta_co2=0.05 ; (unitless) forcing tropospheric adjustments for CO2 (7.3.2.1 of IPCC AR6) +delta_ch4=-.14 ; (unitless) forcing tropospheric adjustments for CH4 (7.3.2.2 of IPCC AR6) +delta_n2o=0.07 ; (unitless) forcing tropospheric adjustments for N2O (7.3.2.3 of IPCC AR6) +rho_bc=0.0508 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency BC (7.SM.1.3 of IPCC AR6) +rho_oc=-.00621 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency OC (7.SM.1.3.1 of IPCC AR6) +rho_so2=-.00000724 ; (W yr m–2 S Gg-1) IPCC AR6 radiative efficiency SO2 (7.SM.1.3.1 of IPCC AR6) +rho_nh3=-.00208 ; (W yr m–2 NH3Tg–1) IPCC AR6 radiative efficiency NH3 (7.SM.1.3.1 of IPCC AR6) + +; Miscellaneous radiative forcings default set to 0, or read in from a input table, may be used to read in +; additional forcings not modeled by Hector (i.e. solar, bc on snow , contrails from) +;RF_misc=csv:tables/ssp245_emiss-constraints_rf.csv ; +RF_misc[1750]=0 + + + +;------------------------------------------------------------------------ +[temperature] +enabled=1 + +S=3.0 ; equilibrium climate sensitivity for 2xCO2 degC (A.4.4 of IPCC AR6) +diff=1.16 ; ocean heat diffusivity, cm2/s calibrated to historical observations see Dorheim et al. in prep for details +alpha=1.0 ; uncertainty scaling factor for aerosol forcing +volscl=1.0 ; uncertainty scaling factor for volcanic forcing +qco2=3.75 ; 2×CO2 RF (7.3.2 of IPCC AR6) + +; Optional global temperature constraint +; If supplied, the model will use these data, ignoring what it calculates +; tas_constrain=csv:tables/ssp245_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[bc] +BC_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[oc] +OC_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[nh3] +NH3_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +; Halocarbons +; tau (lifetime), rho (radiative efficiency), delta (tropospheric adjustments scalar) + +[CF4_halocarbon] +tau=50000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CF4=0.000099 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CF4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=35.0 ; preindustrial concentration, pptv +molarMass=88.0043 ; grams +CF4_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[C2F6_halocarbon] +tau=10000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_C2F6=0.000261 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_C2F6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=138.01 ; grams +C2F6_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HFC23_halocarbon] +tau=228.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC23=0.000191 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC23=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=70.0 ; grams +HFC23_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HFC32_halocarbon] +tau=5.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC32=0.000111 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC32=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=52.0 ; grams +HFC32_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HFC4310_halocarbon] ; This is equivalent to HFC-43-10mee +tau=17.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC4310=0.000357 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC4310=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=252.0 ; grams +HFC4310_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HFC125_halocarbon] +tau=30.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC125=0.000234 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC125=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.02 ; grams +HFC125_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HFC134a_halocarbon] +tau=14.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC134a=0.000167 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC134a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=102.02 ; grams +HFC134a_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HFC143a_halocarbon] +tau=51.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC143a=0.000168 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC143a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=84.04 ; grams +HFC143a_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HFC227ea_halocarbon] +tau=36.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC227ea=0.000273 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC227ea=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.03 ; grams +HFC227ea_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HFC245fa_halocarbon] +tau=7.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC245fa=0.000245 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC245fa=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=134.0 ; grams +HFC245fa_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[SF6_halocarbon] +tau=3200.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_SF6=0.000567 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_SF6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=146.06 ; grams +SF6_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[CFC11_halocarbon] +tau=52.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC11=0.000259 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC11=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=137.35 ; grams +CFC11_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[CFC12_halocarbon] +tau=102.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC12=0.00032 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC12=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.9 ; grams +CFC12_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[CFC113_halocarbon] +tau=93.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC113=0.000301 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC113=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=187.35 ; grams +CFC113_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[CFC114_halocarbon] +tau=189 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC114=0.000314 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC114=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.9 ; grams +CFC114_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[CFC115_halocarbon] +tau=540 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC115=0.000246 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC115=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=154.45 ; grams +CFC115_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[CCl4_halocarbon] +tau=32.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CCl4=0.000166 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CCl4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=153.8 ; grams +CCl4_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[CH3CCl3_halocarbon] +tau=5.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3CCl3=0.000065 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3CCl3=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=133.35 ; grams +CH3CCl3_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[halon1211_halocarbon] +tau=16.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1211=0.00003 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1211=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=165.35 ; grams +halon1211_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[halon1301_halocarbon] +tau=72.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1301=0.000299 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1301=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=148.9 ; grams +halon1301_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[halon2402_halocarbon] +tau=28.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon2402=0.000312 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon2402=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=259.8 ; grams +halon2402_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HCFC22_halocarbon] +tau=11.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC22=0.000214 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC22=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=86.45 ; grams +HCFC22_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HCFC141b_halocarbon] +tau=9.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC141b=0.000161 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC141b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=116.9 ; grams +HCFC141b_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[HCFC142b_halocarbon] +tau=18.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC142b=0.000193 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC142b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=100.45 ; grams +HCFC142b_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[CH3Cl_halocarbon] +tau=0.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Cl=0.000005 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Cl=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL +molarMass=50.45 ; grams +CH3Cl_emissions=csv:tables/ssp245_emiss-constraints_rf.csv + +[CH3Br_halocarbon] +tau=0.8 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Br=0.000004 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Br=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR +molarMass=50.45 ; grams +CH3Br_emissions=csv:tables/ssp245_emiss-constraints_rf.csv diff --git a/inst/input/hector_ssp370.ini b/inst/input/hector_ssp370.ini new file mode 100644 index 000000000..f7b20987a --- /dev/null +++ b/inst/input/hector_ssp370.ini @@ -0,0 +1,383 @@ +; Config file for hector model: ssp370 +;------------------------------------------------------------------------ +[core] +run_name=ssp370 +startDate=1745 +endDate=2300 +trackingDate=9999 ; year to start tracking (only carbon currently) +do_spinup=1 ; if 1, spin up model before running (default=1) +max_spinup=2000 ; maximum steps allowed for spinup (default=2000) + +;------------------------------------------------------------------------ +[ocean] +enabled=1 ; putting 'enabled=0' will disable any component +spinup_chem=0 ; run surface chemistry during spinup phase? + +tt=72000000 ; 7.2e7 thermohaline circulation, m3/s +tu=49000000 ; 4.9e7 high latitude overturning, m3/s +twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s +tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s + +preind_surface_c=900 ; surface ocean C, IPCC AR6 Figure 5.12 +preind_interdeep_c=37100 ; intermediate and deep ocean C, IPCC AR6 Figure 5.12 + +;------------------------------------------------------------------------ +[simpleNbox] +; Initial (preindustrial) carbon pools and fluxes +; These are generally consistent with reconstructed (Siegenthaler and Oeschger +; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, +; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. + +; If using biomes (e.g. boreal.veg_c), this file must have entries for +; - all carbon pools +; - the nppv, nppd, and litterd partitioning parameters +; - beta and q10_rh + +atmos_co2=590.33 ; initial atmospheric carbon pool Pg C of CO2 size used in spin up, consistent with C0 +C0=277.15 ; preindustrial CO2 from table 7.SM.1 IPCC AR6, CO2 radiative forcing question is calibrated to this value +npp_flux0=56.2 ; preindustrial net primary production, Pg C/yr from Ito et al. 2011 + +veg_c=550 ; initial vegetation pool, Pg C +detritus_c=55 ; initial detritus pool, Pg C +soil_c=1782 ; initial soil pool, Pg C +;boreal.veg_c=100 +;boreal.detritus_c=15 +;boreal.soil_c=1200 +;boreal.permafrost_c=865 +;boreal.npp_flux0=5.0 +;tropical.veg_c=450 +;tropical.detritus_c=45 +;tropical.soil_c=578 +;tropical.permafrost_c=0 +;tropical.npp_flux0=45.0 + +; Permafrost is inactive (zero) by default in Hector v3 +; See Woodard et al. 2021, 10.5194/gmd-14-4751-2021 +permafrost_c=0 ; permafrost, Pg C +;fpf_static=0.74 ; fraction of permafrost that is static (non-labile) +;rh_ch4_frac=0.023 ; fraction of thawed permafrost decomposed as CH4 +;pf_mu=1.67 ; permafrost thaw parameter; see Woodard et al. 2021 +;pf_sigma=0.986 ; permafrost thaw parameter; see Woodard et al. 2021 + +; Partitioning parameters +f_nppv=0.35 ; Fraction of NPP to vegetation +f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) +f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) + +; Anthropogenic contributions: emissions, direct air carbon capture and storage, and land use change, Pg C/yr +ffi_emissions=csv:tables/ssp370_emiss-constraints_rf.csv +daccs_uptake=csv:tables/ssp370_emiss-constraints_rf.csv +luc_emissions=csv:tables/ssp370_emiss-constraints_rf.csv +luc_uptake=csv:tables/ssp370_emiss-constraints_rf.csv + +; Optional atmospheric CO2 constraint, ppmv +; If supplied, the model will use these data, ignoring what it calculates +; Any residual between model [CO2] and model [CO2] will be put into the deep ocean +;CO2_constrain=csv:tables/ssp370_emiss-constraints_rf.csv ; + +; Optional net biome production (land-atmosphere C flux) constaint, Pg C/yr +; Positive represents flux to land, negative represents flux to atmosphere +; If supplied, the model will use these data, ignoring what it calculates +;NBP_constrain=csv:tables/ssp370_emiss-constraints_rf.csv ; + +; CO2 and temperature effects on the carbon cycle +; these are global values, can optionally specify biome-specific ones as above +beta=0.55 ; CO2 fertilization factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details +q10_rh=2.2 ; Heterotrophic respiration temperature sensitivity factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details + +; Optional biome-specific warming factors +; by default, assume 1.0 (i.e., warms as fast as the globe) +;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally + +; Albedo effect, in W/m2. The model assumes a constant value if nothing specified +RF_albedo=csv:tables/ssp370_emiss-constraints_rf.csv ; + +;------------------------------------------------------------------------ +[carbon-cycle-solver] +eps_abs=1.0e-6 ; solution tolerance +eps_rel=1.0e-6 ; solution tolerance +dt=0.25 ; default time step +eps_spinup=0.001 ; spinup tolerance (drift), Pg C + +;------------------------------------------------------------------------ +[so2] +SO2_emissions=csv:tables/ssp370_emiss-constraints_rf.csv ; emissions time series +SV=csv:tables/ssp370_emiss-constraints_rf.csv ; volcanic radiative forcing time series + +;------------------------------------------------------------------------ +[CH4] +M0= 731.41 ; 731.41 ppb preindustrial methane IPCC AR6 Table 7.SM.1, the CH4 forcing equations is calibrated to a M0 of 731.41 ppb +Tsoil=160 ; lifetime of soil sink (years) +Tstrat=120 ; lifetime of tropospheric sink (years) +UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations +CH4N=338 ; Natural CH4 emissions (Tgrams) +CH4_emissions=csv:tables/ssp370_emiss-constraints_rf.csv ; emissions time series +;CH4_constrain=csv:tables/ssp370_emiss-constraints_rf.csv ; CH4 concentration constraint + +;------------------------------------------------------------------------ +[OH] +NOX_emissions=csv:tables/ssp370_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp370_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp370_emiss-constraints_rf.csv ; emissions time series + +TOH0=6.6 ; inital OH lifetime (years) +CNOX=0.0042 ; coefficent for NOX +CCO=-0.000105 ; coefficent for CO +CNMVOC=-0.000315 ; coefficent for NMVOC (non methane VOC) +CCH4=-0.32 ; coefficent for CH4 + +;------------------------------------------------------------------------ +[ozone] +PO3=30.0 ; preindustrial O3 concentration +NOX_emissions=csv:tables/ssp370_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp370_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp370_emiss-constraints_rf.csv ; emissions time series + +;------------------------------------------------------------------------ +[N2O] +N0=273.87 ; (ppb) preindustrial nitrous oxide from IPCC AR6 table 7.SM.1 +UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations +TN2O0=132 ; initial lifetime of N2O, years + +; An example of setting a time series by individual values +; The model will interpolate as necessary between them +N2O_natural_emissions[1750]=9.7 ; default natural emissions based on a best fit to IPCC AR6 N2O RF +N2O_emissions=csv:tables/ssp370_emiss-constraints_rf.csv ; emissions time series +;N2O_constrain=csv:tables/ssp370_emiss-constraints_rf.csv ; N2O concentration constraint + +;------------------------------------------------------------------------ +[forcing] +baseyear=1750 ; when to start reporting; by definition, all F=0 in this year + +; Optional radiative forcing constraint +; If supplied, the model will use these data, ignoring what it calculates +;RF_tot_constrain=csv:tables/CONSTRAINT.csv +delta_co2=0.05 ; (unitless) forcing tropospheric adjustments for CO2 (7.3.2.1 of IPCC AR6) +delta_ch4=-.14 ; (unitless) forcing tropospheric adjustments for CH4 (7.3.2.2 of IPCC AR6) +delta_n2o=0.07 ; (unitless) forcing tropospheric adjustments for N2O (7.3.2.3 of IPCC AR6) +rho_bc=0.0508 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency BC (7.SM.1.3 of IPCC AR6) +rho_oc=-.00621 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency OC (7.SM.1.3.1 of IPCC AR6) +rho_so2=-.00000724 ; (W yr m–2 S Gg-1) IPCC AR6 radiative efficiency SO2 (7.SM.1.3.1 of IPCC AR6) +rho_nh3=-.00208 ; (W yr m–2 NH3Tg–1) IPCC AR6 radiative efficiency NH3 (7.SM.1.3.1 of IPCC AR6) + +; Miscellaneous radiative forcings default set to 0, or read in from a input table, may be used to read in +; additional forcings not modeled by Hector (i.e. solar, bc on snow , contrails from) +;RF_misc=csv:tables/ssp370_emiss-constraints_rf.csv ; +RF_misc[1750]=0 + + + +;------------------------------------------------------------------------ +[temperature] +enabled=1 + +S=3.0 ; equilibrium climate sensitivity for 2xCO2 degC (A.4.4 of IPCC AR6) +diff=1.16 ; ocean heat diffusivity, cm2/s calibrated to historical observations see Dorheim et al. in prep for details +alpha=1.0 ; uncertainty scaling factor for aerosol forcing +volscl=1.0 ; uncertainty scaling factor for volcanic forcing +qco2=3.75 ; 2×CO2 RF (7.3.2 of IPCC AR6) + +; Optional global temperature constraint +; If supplied, the model will use these data, ignoring what it calculates +; tas_constrain=csv:tables/ssp370_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[bc] +BC_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[oc] +OC_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[nh3] +NH3_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +; Halocarbons +; tau (lifetime), rho (radiative efficiency), delta (tropospheric adjustments scalar) + +[CF4_halocarbon] +tau=50000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CF4=0.000099 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CF4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=35.0 ; preindustrial concentration, pptv +molarMass=88.0043 ; grams +CF4_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[C2F6_halocarbon] +tau=10000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_C2F6=0.000261 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_C2F6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=138.01 ; grams +C2F6_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HFC23_halocarbon] +tau=228.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC23=0.000191 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC23=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=70.0 ; grams +HFC23_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HFC32_halocarbon] +tau=5.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC32=0.000111 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC32=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=52.0 ; grams +HFC32_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HFC4310_halocarbon] ; This is equivalent to HFC-43-10mee +tau=17.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC4310=0.000357 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC4310=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=252.0 ; grams +HFC4310_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HFC125_halocarbon] +tau=30.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC125=0.000234 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC125=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.02 ; grams +HFC125_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HFC134a_halocarbon] +tau=14.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC134a=0.000167 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC134a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=102.02 ; grams +HFC134a_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HFC143a_halocarbon] +tau=51.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC143a=0.000168 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC143a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=84.04 ; grams +HFC143a_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HFC227ea_halocarbon] +tau=36.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC227ea=0.000273 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC227ea=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.03 ; grams +HFC227ea_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HFC245fa_halocarbon] +tau=7.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC245fa=0.000245 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC245fa=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=134.0 ; grams +HFC245fa_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[SF6_halocarbon] +tau=3200.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_SF6=0.000567 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_SF6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=146.06 ; grams +SF6_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[CFC11_halocarbon] +tau=52.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC11=0.000259 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC11=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=137.35 ; grams +CFC11_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[CFC12_halocarbon] +tau=102.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC12=0.00032 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC12=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.9 ; grams +CFC12_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[CFC113_halocarbon] +tau=93.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC113=0.000301 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC113=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=187.35 ; grams +CFC113_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[CFC114_halocarbon] +tau=189 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC114=0.000314 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC114=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.9 ; grams +CFC114_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[CFC115_halocarbon] +tau=540 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC115=0.000246 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC115=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=154.45 ; grams +CFC115_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[CCl4_halocarbon] +tau=32.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CCl4=0.000166 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CCl4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=153.8 ; grams +CCl4_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[CH3CCl3_halocarbon] +tau=5.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3CCl3=0.000065 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3CCl3=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=133.35 ; grams +CH3CCl3_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[halon1211_halocarbon] +tau=16.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1211=0.00003 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1211=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=165.35 ; grams +halon1211_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[halon1301_halocarbon] +tau=72.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1301=0.000299 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1301=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=148.9 ; grams +halon1301_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[halon2402_halocarbon] +tau=28.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon2402=0.000312 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon2402=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=259.8 ; grams +halon2402_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HCFC22_halocarbon] +tau=11.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC22=0.000214 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC22=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=86.45 ; grams +HCFC22_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HCFC141b_halocarbon] +tau=9.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC141b=0.000161 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC141b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=116.9 ; grams +HCFC141b_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[HCFC142b_halocarbon] +tau=18.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC142b=0.000193 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC142b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=100.45 ; grams +HCFC142b_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[CH3Cl_halocarbon] +tau=0.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Cl=0.000005 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Cl=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL +molarMass=50.45 ; grams +CH3Cl_emissions=csv:tables/ssp370_emiss-constraints_rf.csv + +[CH3Br_halocarbon] +tau=0.8 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Br=0.000004 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Br=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR +molarMass=50.45 ; grams +CH3Br_emissions=csv:tables/ssp370_emiss-constraints_rf.csv diff --git a/inst/input/hector_ssp434.ini b/inst/input/hector_ssp434.ini new file mode 100644 index 000000000..88fcfdf37 --- /dev/null +++ b/inst/input/hector_ssp434.ini @@ -0,0 +1,383 @@ +; Config file for hector model: ssp434 +;------------------------------------------------------------------------ +[core] +run_name=ssp434 +startDate=1745 +endDate=2300 +trackingDate=9999 ; year to start tracking (only carbon currently) +do_spinup=1 ; if 1, spin up model before running (default=1) +max_spinup=2000 ; maximum steps allowed for spinup (default=2000) + +;------------------------------------------------------------------------ +[ocean] +enabled=1 ; putting 'enabled=0' will disable any component +spinup_chem=0 ; run surface chemistry during spinup phase? + +tt=72000000 ; 7.2e7 thermohaline circulation, m3/s +tu=49000000 ; 4.9e7 high latitude overturning, m3/s +twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s +tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s + +preind_surface_c=900 ; surface ocean C, IPCC AR6 Figure 5.12 +preind_interdeep_c=37100 ; intermediate and deep ocean C, IPCC AR6 Figure 5.12 + +;------------------------------------------------------------------------ +[simpleNbox] +; Initial (preindustrial) carbon pools and fluxes +; These are generally consistent with reconstructed (Siegenthaler and Oeschger +; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, +; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. + +; If using biomes (e.g. boreal.veg_c), this file must have entries for +; - all carbon pools +; - the nppv, nppd, and litterd partitioning parameters +; - beta and q10_rh + +atmos_co2=590.33 ; initial atmospheric carbon pool Pg C of CO2 size used in spin up, consistent with C0 +C0=277.15 ; preindustrial CO2 from table 7.SM.1 IPCC AR6, CO2 radiative forcing question is calibrated to this value +npp_flux0=56.2 ; preindustrial net primary production, Pg C/yr from Ito et al. 2011 + +veg_c=550 ; initial vegetation pool, Pg C +detritus_c=55 ; initial detritus pool, Pg C +soil_c=1782 ; initial soil pool, Pg C +;boreal.veg_c=100 +;boreal.detritus_c=15 +;boreal.soil_c=1200 +;boreal.permafrost_c=865 +;boreal.npp_flux0=5.0 +;tropical.veg_c=450 +;tropical.detritus_c=45 +;tropical.soil_c=578 +;tropical.permafrost_c=0 +;tropical.npp_flux0=45.0 + +; Permafrost is inactive (zero) by default in Hector v3 +; See Woodard et al. 2021, 10.5194/gmd-14-4751-2021 +permafrost_c=0 ; permafrost, Pg C +;fpf_static=0.74 ; fraction of permafrost that is static (non-labile) +;rh_ch4_frac=0.023 ; fraction of thawed permafrost decomposed as CH4 +;pf_mu=1.67 ; permafrost thaw parameter; see Woodard et al. 2021 +;pf_sigma=0.986 ; permafrost thaw parameter; see Woodard et al. 2021 + +; Partitioning parameters +f_nppv=0.35 ; Fraction of NPP to vegetation +f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) +f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) + +; Anthropogenic contributions: emissions, direct air carbon capture and storage, and land use change, Pg C/yr +ffi_emissions=csv:tables/ssp434_emiss-constraints_rf.csv +daccs_uptake=csv:tables/ssp434_emiss-constraints_rf.csv +luc_emissions=csv:tables/ssp434_emiss-constraints_rf.csv +luc_uptake=csv:tables/ssp434_emiss-constraints_rf.csv + +; Optional atmospheric CO2 constraint, ppmv +; If supplied, the model will use these data, ignoring what it calculates +; Any residual between model [CO2] and model [CO2] will be put into the deep ocean +;CO2_constrain=csv:tables/ssp434_emiss-constraints_rf.csv ; + +; Optional net biome production (land-atmosphere C flux) constaint, Pg C/yr +; Positive represents flux to land, negative represents flux to atmosphere +; If supplied, the model will use these data, ignoring what it calculates +;NBP_constrain=csv:tables/ssp434_emiss-constraints_rf.csv ; + +; CO2 and temperature effects on the carbon cycle +; these are global values, can optionally specify biome-specific ones as above +beta=0.55 ; CO2 fertilization factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details +q10_rh=2.2 ; Heterotrophic respiration temperature sensitivity factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details + +; Optional biome-specific warming factors +; by default, assume 1.0 (i.e., warms as fast as the globe) +;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally + +; Albedo effect, in W/m2. The model assumes a constant value if nothing specified +RF_albedo=csv:tables/ssp434_emiss-constraints_rf.csv ; + +;------------------------------------------------------------------------ +[carbon-cycle-solver] +eps_abs=1.0e-6 ; solution tolerance +eps_rel=1.0e-6 ; solution tolerance +dt=0.25 ; default time step +eps_spinup=0.001 ; spinup tolerance (drift), Pg C + +;------------------------------------------------------------------------ +[so2] +SO2_emissions=csv:tables/ssp434_emiss-constraints_rf.csv ; emissions time series +SV=csv:tables/ssp434_emiss-constraints_rf.csv ; volcanic radiative forcing time series + +;------------------------------------------------------------------------ +[CH4] +M0= 731.41 ; 731.41 ppb preindustrial methane IPCC AR6 Table 7.SM.1, the CH4 forcing equations is calibrated to a M0 of 731.41 ppb +Tsoil=160 ; lifetime of soil sink (years) +Tstrat=120 ; lifetime of tropospheric sink (years) +UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations +CH4N=338 ; Natural CH4 emissions (Tgrams) +CH4_emissions=csv:tables/ssp434_emiss-constraints_rf.csv ; emissions time series +;CH4_constrain=csv:tables/ssp434_emiss-constraints_rf.csv ; CH4 concentration constraint + +;------------------------------------------------------------------------ +[OH] +NOX_emissions=csv:tables/ssp434_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp434_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp434_emiss-constraints_rf.csv ; emissions time series + +TOH0=6.6 ; inital OH lifetime (years) +CNOX=0.0042 ; coefficent for NOX +CCO=-0.000105 ; coefficent for CO +CNMVOC=-0.000315 ; coefficent for NMVOC (non methane VOC) +CCH4=-0.32 ; coefficent for CH4 + +;------------------------------------------------------------------------ +[ozone] +PO3=30.0 ; preindustrial O3 concentration +NOX_emissions=csv:tables/ssp434_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp434_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp434_emiss-constraints_rf.csv ; emissions time series + +;------------------------------------------------------------------------ +[N2O] +N0=273.87 ; (ppb) preindustrial nitrous oxide from IPCC AR6 table 7.SM.1 +UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations +TN2O0=132 ; initial lifetime of N2O, years + +; An example of setting a time series by individual values +; The model will interpolate as necessary between them +N2O_natural_emissions[1750]=9.7 ; default natural emissions based on a best fit to IPCC AR6 N2O RF +N2O_emissions=csv:tables/ssp434_emiss-constraints_rf.csv ; emissions time series +;N2O_constrain=csv:tables/ssp434_emiss-constraints_rf.csv ; N2O concentration constraint + +;------------------------------------------------------------------------ +[forcing] +baseyear=1750 ; when to start reporting; by definition, all F=0 in this year + +; Optional radiative forcing constraint +; If supplied, the model will use these data, ignoring what it calculates +;RF_tot_constrain=csv:tables/CONSTRAINT.csv +delta_co2=0.05 ; (unitless) forcing tropospheric adjustments for CO2 (7.3.2.1 of IPCC AR6) +delta_ch4=-.14 ; (unitless) forcing tropospheric adjustments for CH4 (7.3.2.2 of IPCC AR6) +delta_n2o=0.07 ; (unitless) forcing tropospheric adjustments for N2O (7.3.2.3 of IPCC AR6) +rho_bc=0.0508 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency BC (7.SM.1.3 of IPCC AR6) +rho_oc=-.00621 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency OC (7.SM.1.3.1 of IPCC AR6) +rho_so2=-.00000724 ; (W yr m–2 S Gg-1) IPCC AR6 radiative efficiency SO2 (7.SM.1.3.1 of IPCC AR6) +rho_nh3=-.00208 ; (W yr m–2 NH3Tg–1) IPCC AR6 radiative efficiency NH3 (7.SM.1.3.1 of IPCC AR6) + +; Miscellaneous radiative forcings default set to 0, or read in from a input table, may be used to read in +; additional forcings not modeled by Hector (i.e. solar, bc on snow , contrails from) +;RF_misc=csv:tables/ssp434_emiss-constraints_rf.csv ; +RF_misc[1750]=0 + + + +;------------------------------------------------------------------------ +[temperature] +enabled=1 + +S=3.0 ; equilibrium climate sensitivity for 2xCO2 degC (A.4.4 of IPCC AR6) +diff=1.16 ; ocean heat diffusivity, cm2/s calibrated to historical observations see Dorheim et al. in prep for details +alpha=1.0 ; uncertainty scaling factor for aerosol forcing +volscl=1.0 ; uncertainty scaling factor for volcanic forcing +qco2=3.75 ; 2×CO2 RF (7.3.2 of IPCC AR6) + +; Optional global temperature constraint +; If supplied, the model will use these data, ignoring what it calculates +; tas_constrain=csv:tables/ssp434_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[bc] +BC_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[oc] +OC_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[nh3] +NH3_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +; Halocarbons +; tau (lifetime), rho (radiative efficiency), delta (tropospheric adjustments scalar) + +[CF4_halocarbon] +tau=50000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CF4=0.000099 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CF4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=35.0 ; preindustrial concentration, pptv +molarMass=88.0043 ; grams +CF4_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[C2F6_halocarbon] +tau=10000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_C2F6=0.000261 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_C2F6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=138.01 ; grams +C2F6_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HFC23_halocarbon] +tau=228.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC23=0.000191 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC23=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=70.0 ; grams +HFC23_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HFC32_halocarbon] +tau=5.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC32=0.000111 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC32=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=52.0 ; grams +HFC32_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HFC4310_halocarbon] ; This is equivalent to HFC-43-10mee +tau=17.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC4310=0.000357 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC4310=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=252.0 ; grams +HFC4310_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HFC125_halocarbon] +tau=30.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC125=0.000234 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC125=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.02 ; grams +HFC125_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HFC134a_halocarbon] +tau=14.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC134a=0.000167 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC134a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=102.02 ; grams +HFC134a_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HFC143a_halocarbon] +tau=51.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC143a=0.000168 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC143a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=84.04 ; grams +HFC143a_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HFC227ea_halocarbon] +tau=36.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC227ea=0.000273 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC227ea=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.03 ; grams +HFC227ea_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HFC245fa_halocarbon] +tau=7.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC245fa=0.000245 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC245fa=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=134.0 ; grams +HFC245fa_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[SF6_halocarbon] +tau=3200.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_SF6=0.000567 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_SF6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=146.06 ; grams +SF6_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[CFC11_halocarbon] +tau=52.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC11=0.000259 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC11=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=137.35 ; grams +CFC11_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[CFC12_halocarbon] +tau=102.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC12=0.00032 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC12=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.9 ; grams +CFC12_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[CFC113_halocarbon] +tau=93.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC113=0.000301 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC113=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=187.35 ; grams +CFC113_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[CFC114_halocarbon] +tau=189 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC114=0.000314 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC114=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.9 ; grams +CFC114_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[CFC115_halocarbon] +tau=540 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC115=0.000246 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC115=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=154.45 ; grams +CFC115_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[CCl4_halocarbon] +tau=32.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CCl4=0.000166 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CCl4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=153.8 ; grams +CCl4_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[CH3CCl3_halocarbon] +tau=5.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3CCl3=0.000065 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3CCl3=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=133.35 ; grams +CH3CCl3_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[halon1211_halocarbon] +tau=16.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1211=0.00003 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1211=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=165.35 ; grams +halon1211_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[halon1301_halocarbon] +tau=72.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1301=0.000299 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1301=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=148.9 ; grams +halon1301_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[halon2402_halocarbon] +tau=28.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon2402=0.000312 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon2402=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=259.8 ; grams +halon2402_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HCFC22_halocarbon] +tau=11.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC22=0.000214 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC22=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=86.45 ; grams +HCFC22_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HCFC141b_halocarbon] +tau=9.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC141b=0.000161 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC141b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=116.9 ; grams +HCFC141b_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[HCFC142b_halocarbon] +tau=18.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC142b=0.000193 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC142b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=100.45 ; grams +HCFC142b_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[CH3Cl_halocarbon] +tau=0.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Cl=0.000005 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Cl=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL +molarMass=50.45 ; grams +CH3Cl_emissions=csv:tables/ssp434_emiss-constraints_rf.csv + +[CH3Br_halocarbon] +tau=0.8 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Br=0.000004 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Br=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR +molarMass=50.45 ; grams +CH3Br_emissions=csv:tables/ssp434_emiss-constraints_rf.csv diff --git a/inst/input/hector_ssp460.ini b/inst/input/hector_ssp460.ini new file mode 100644 index 000000000..43338a8f1 --- /dev/null +++ b/inst/input/hector_ssp460.ini @@ -0,0 +1,383 @@ +; Config file for hector model: ssp460 +;------------------------------------------------------------------------ +[core] +run_name=ssp460 +startDate=1745 +endDate=2300 +trackingDate=9999 ; year to start tracking (only carbon currently) +do_spinup=1 ; if 1, spin up model before running (default=1) +max_spinup=2000 ; maximum steps allowed for spinup (default=2000) + +;------------------------------------------------------------------------ +[ocean] +enabled=1 ; putting 'enabled=0' will disable any component +spinup_chem=0 ; run surface chemistry during spinup phase? + +tt=72000000 ; 7.2e7 thermohaline circulation, m3/s +tu=49000000 ; 4.9e7 high latitude overturning, m3/s +twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s +tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s + +preind_surface_c=900 ; surface ocean C, IPCC AR6 Figure 5.12 +preind_interdeep_c=37100 ; intermediate and deep ocean C, IPCC AR6 Figure 5.12 + +;------------------------------------------------------------------------ +[simpleNbox] +; Initial (preindustrial) carbon pools and fluxes +; These are generally consistent with reconstructed (Siegenthaler and Oeschger +; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, +; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. + +; If using biomes (e.g. boreal.veg_c), this file must have entries for +; - all carbon pools +; - the nppv, nppd, and litterd partitioning parameters +; - beta and q10_rh + +atmos_co2=590.33 ; initial atmospheric carbon pool Pg C of CO2 size used in spin up, consistent with C0 +C0=277.15 ; preindustrial CO2 from table 7.SM.1 IPCC AR6, CO2 radiative forcing question is calibrated to this value +npp_flux0=56.2 ; preindustrial net primary production, Pg C/yr from Ito et al. 2011 + +veg_c=550 ; initial vegetation pool, Pg C +detritus_c=55 ; initial detritus pool, Pg C +soil_c=1782 ; initial soil pool, Pg C +;boreal.veg_c=100 +;boreal.detritus_c=15 +;boreal.soil_c=1200 +;boreal.permafrost_c=865 +;boreal.npp_flux0=5.0 +;tropical.veg_c=450 +;tropical.detritus_c=45 +;tropical.soil_c=578 +;tropical.permafrost_c=0 +;tropical.npp_flux0=45.0 + +; Permafrost is inactive (zero) by default in Hector v3 +; See Woodard et al. 2021, 10.5194/gmd-14-4751-2021 +permafrost_c=0 ; permafrost, Pg C +;fpf_static=0.74 ; fraction of permafrost that is static (non-labile) +;rh_ch4_frac=0.023 ; fraction of thawed permafrost decomposed as CH4 +;pf_mu=1.67 ; permafrost thaw parameter; see Woodard et al. 2021 +;pf_sigma=0.986 ; permafrost thaw parameter; see Woodard et al. 2021 + +; Partitioning parameters +f_nppv=0.35 ; Fraction of NPP to vegetation +f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) +f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) + +; Anthropogenic contributions: emissions, direct air carbon capture and storage, and land use change, Pg C/yr +ffi_emissions=csv:tables/ssp460_emiss-constraints_rf.csv +daccs_uptake=csv:tables/ssp460_emiss-constraints_rf.csv +luc_emissions=csv:tables/ssp460_emiss-constraints_rf.csv +luc_uptake=csv:tables/ssp460_emiss-constraints_rf.csv + +; Optional atmospheric CO2 constraint, ppmv +; If supplied, the model will use these data, ignoring what it calculates +; Any residual between model [CO2] and model [CO2] will be put into the deep ocean +;CO2_constrain=csv:tables/ssp460_emiss-constraints_rf.csv ; + +; Optional net biome production (land-atmosphere C flux) constaint, Pg C/yr +; Positive represents flux to land, negative represents flux to atmosphere +; If supplied, the model will use these data, ignoring what it calculates +;NBP_constrain=csv:tables/ssp460_emiss-constraints_rf.csv ; + +; CO2 and temperature effects on the carbon cycle +; these are global values, can optionally specify biome-specific ones as above +beta=0.55 ; CO2 fertilization factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details +q10_rh=2.2 ; Heterotrophic respiration temperature sensitivity factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details + +; Optional biome-specific warming factors +; by default, assume 1.0 (i.e., warms as fast as the globe) +;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally + +; Albedo effect, in W/m2. The model assumes a constant value if nothing specified +RF_albedo=csv:tables/ssp460_emiss-constraints_rf.csv ; + +;------------------------------------------------------------------------ +[carbon-cycle-solver] +eps_abs=1.0e-6 ; solution tolerance +eps_rel=1.0e-6 ; solution tolerance +dt=0.25 ; default time step +eps_spinup=0.001 ; spinup tolerance (drift), Pg C + +;------------------------------------------------------------------------ +[so2] +SO2_emissions=csv:tables/ssp460_emiss-constraints_rf.csv ; emissions time series +SV=csv:tables/ssp460_emiss-constraints_rf.csv ; volcanic radiative forcing time series + +;------------------------------------------------------------------------ +[CH4] +M0= 731.41 ; 731.41 ppb preindustrial methane IPCC AR6 Table 7.SM.1, the CH4 forcing equations is calibrated to a M0 of 731.41 ppb +Tsoil=160 ; lifetime of soil sink (years) +Tstrat=120 ; lifetime of tropospheric sink (years) +UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations +CH4N=338 ; Natural CH4 emissions (Tgrams) +CH4_emissions=csv:tables/ssp460_emiss-constraints_rf.csv ; emissions time series +;CH4_constrain=csv:tables/ssp460_emiss-constraints_rf.csv ; CH4 concentration constraint + +;------------------------------------------------------------------------ +[OH] +NOX_emissions=csv:tables/ssp460_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp460_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp460_emiss-constraints_rf.csv ; emissions time series + +TOH0=6.6 ; inital OH lifetime (years) +CNOX=0.0042 ; coefficent for NOX +CCO=-0.000105 ; coefficent for CO +CNMVOC=-0.000315 ; coefficent for NMVOC (non methane VOC) +CCH4=-0.32 ; coefficent for CH4 + +;------------------------------------------------------------------------ +[ozone] +PO3=30.0 ; preindustrial O3 concentration +NOX_emissions=csv:tables/ssp460_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp460_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp460_emiss-constraints_rf.csv ; emissions time series + +;------------------------------------------------------------------------ +[N2O] +N0=273.87 ; (ppb) preindustrial nitrous oxide from IPCC AR6 table 7.SM.1 +UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations +TN2O0=132 ; initial lifetime of N2O, years + +; An example of setting a time series by individual values +; The model will interpolate as necessary between them +N2O_natural_emissions[1750]=9.7 ; default natural emissions based on a best fit to IPCC AR6 N2O RF +N2O_emissions=csv:tables/ssp460_emiss-constraints_rf.csv ; emissions time series +;N2O_constrain=csv:tables/ssp460_emiss-constraints_rf.csv ; N2O concentration constraint + +;------------------------------------------------------------------------ +[forcing] +baseyear=1750 ; when to start reporting; by definition, all F=0 in this year + +; Optional radiative forcing constraint +; If supplied, the model will use these data, ignoring what it calculates +;RF_tot_constrain=csv:tables/CONSTRAINT.csv +delta_co2=0.05 ; (unitless) forcing tropospheric adjustments for CO2 (7.3.2.1 of IPCC AR6) +delta_ch4=-.14 ; (unitless) forcing tropospheric adjustments for CH4 (7.3.2.2 of IPCC AR6) +delta_n2o=0.07 ; (unitless) forcing tropospheric adjustments for N2O (7.3.2.3 of IPCC AR6) +rho_bc=0.0508 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency BC (7.SM.1.3 of IPCC AR6) +rho_oc=-.00621 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency OC (7.SM.1.3.1 of IPCC AR6) +rho_so2=-.00000724 ; (W yr m–2 S Gg-1) IPCC AR6 radiative efficiency SO2 (7.SM.1.3.1 of IPCC AR6) +rho_nh3=-.00208 ; (W yr m–2 NH3Tg–1) IPCC AR6 radiative efficiency NH3 (7.SM.1.3.1 of IPCC AR6) + +; Miscellaneous radiative forcings default set to 0, or read in from a input table, may be used to read in +; additional forcings not modeled by Hector (i.e. solar, bc on snow , contrails from) +;RF_misc=csv:tables/ssp460_emiss-constraints_rf.csv ; +RF_misc[1750]=0 + + + +;------------------------------------------------------------------------ +[temperature] +enabled=1 + +S=3.0 ; equilibrium climate sensitivity for 2xCO2 degC (A.4.4 of IPCC AR6) +diff=1.16 ; ocean heat diffusivity, cm2/s calibrated to historical observations see Dorheim et al. in prep for details +alpha=1.0 ; uncertainty scaling factor for aerosol forcing +volscl=1.0 ; uncertainty scaling factor for volcanic forcing +qco2=3.75 ; 2×CO2 RF (7.3.2 of IPCC AR6) + +; Optional global temperature constraint +; If supplied, the model will use these data, ignoring what it calculates +; tas_constrain=csv:tables/ssp460_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[bc] +BC_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[oc] +OC_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[nh3] +NH3_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +; Halocarbons +; tau (lifetime), rho (radiative efficiency), delta (tropospheric adjustments scalar) + +[CF4_halocarbon] +tau=50000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CF4=0.000099 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CF4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=35.0 ; preindustrial concentration, pptv +molarMass=88.0043 ; grams +CF4_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[C2F6_halocarbon] +tau=10000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_C2F6=0.000261 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_C2F6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=138.01 ; grams +C2F6_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HFC23_halocarbon] +tau=228.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC23=0.000191 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC23=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=70.0 ; grams +HFC23_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HFC32_halocarbon] +tau=5.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC32=0.000111 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC32=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=52.0 ; grams +HFC32_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HFC4310_halocarbon] ; This is equivalent to HFC-43-10mee +tau=17.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC4310=0.000357 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC4310=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=252.0 ; grams +HFC4310_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HFC125_halocarbon] +tau=30.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC125=0.000234 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC125=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.02 ; grams +HFC125_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HFC134a_halocarbon] +tau=14.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC134a=0.000167 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC134a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=102.02 ; grams +HFC134a_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HFC143a_halocarbon] +tau=51.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC143a=0.000168 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC143a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=84.04 ; grams +HFC143a_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HFC227ea_halocarbon] +tau=36.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC227ea=0.000273 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC227ea=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.03 ; grams +HFC227ea_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HFC245fa_halocarbon] +tau=7.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC245fa=0.000245 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC245fa=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=134.0 ; grams +HFC245fa_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[SF6_halocarbon] +tau=3200.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_SF6=0.000567 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_SF6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=146.06 ; grams +SF6_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[CFC11_halocarbon] +tau=52.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC11=0.000259 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC11=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=137.35 ; grams +CFC11_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[CFC12_halocarbon] +tau=102.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC12=0.00032 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC12=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.9 ; grams +CFC12_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[CFC113_halocarbon] +tau=93.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC113=0.000301 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC113=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=187.35 ; grams +CFC113_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[CFC114_halocarbon] +tau=189 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC114=0.000314 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC114=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.9 ; grams +CFC114_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[CFC115_halocarbon] +tau=540 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC115=0.000246 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC115=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=154.45 ; grams +CFC115_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[CCl4_halocarbon] +tau=32.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CCl4=0.000166 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CCl4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=153.8 ; grams +CCl4_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[CH3CCl3_halocarbon] +tau=5.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3CCl3=0.000065 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3CCl3=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=133.35 ; grams +CH3CCl3_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[halon1211_halocarbon] +tau=16.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1211=0.00003 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1211=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=165.35 ; grams +halon1211_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[halon1301_halocarbon] +tau=72.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1301=0.000299 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1301=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=148.9 ; grams +halon1301_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[halon2402_halocarbon] +tau=28.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon2402=0.000312 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon2402=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=259.8 ; grams +halon2402_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HCFC22_halocarbon] +tau=11.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC22=0.000214 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC22=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=86.45 ; grams +HCFC22_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HCFC141b_halocarbon] +tau=9.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC141b=0.000161 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC141b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=116.9 ; grams +HCFC141b_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[HCFC142b_halocarbon] +tau=18.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC142b=0.000193 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC142b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=100.45 ; grams +HCFC142b_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[CH3Cl_halocarbon] +tau=0.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Cl=0.000005 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Cl=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL +molarMass=50.45 ; grams +CH3Cl_emissions=csv:tables/ssp460_emiss-constraints_rf.csv + +[CH3Br_halocarbon] +tau=0.8 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Br=0.000004 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Br=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR +molarMass=50.45 ; grams +CH3Br_emissions=csv:tables/ssp460_emiss-constraints_rf.csv diff --git a/inst/input/hector_ssp534-over.ini b/inst/input/hector_ssp534-over.ini new file mode 100644 index 000000000..ae15d545e --- /dev/null +++ b/inst/input/hector_ssp534-over.ini @@ -0,0 +1,383 @@ +; Config file for hector model: ssp534-over +;------------------------------------------------------------------------ +[core] +run_name=ssp534-over +startDate=1745 +endDate=2300 +trackingDate=9999 ; year to start tracking (only carbon currently) +do_spinup=1 ; if 1, spin up model before running (default=1) +max_spinup=2000 ; maximum steps allowed for spinup (default=2000) + +;------------------------------------------------------------------------ +[ocean] +enabled=1 ; putting 'enabled=0' will disable any component +spinup_chem=0 ; run surface chemistry during spinup phase? + +tt=72000000 ; 7.2e7 thermohaline circulation, m3/s +tu=49000000 ; 4.9e7 high latitude overturning, m3/s +twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s +tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s + +preind_surface_c=900 ; surface ocean C, IPCC AR6 Figure 5.12 +preind_interdeep_c=37100 ; intermediate and deep ocean C, IPCC AR6 Figure 5.12 + +;------------------------------------------------------------------------ +[simpleNbox] +; Initial (preindustrial) carbon pools and fluxes +; These are generally consistent with reconstructed (Siegenthaler and Oeschger +; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, +; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. + +; If using biomes (e.g. boreal.veg_c), this file must have entries for +; - all carbon pools +; - the nppv, nppd, and litterd partitioning parameters +; - beta and q10_rh + +atmos_co2=590.33 ; initial atmospheric carbon pool Pg C of CO2 size used in spin up, consistent with C0 +C0=277.15 ; preindustrial CO2 from table 7.SM.1 IPCC AR6, CO2 radiative forcing question is calibrated to this value +npp_flux0=56.2 ; preindustrial net primary production, Pg C/yr from Ito et al. 2011 + +veg_c=550 ; initial vegetation pool, Pg C +detritus_c=55 ; initial detritus pool, Pg C +soil_c=1782 ; initial soil pool, Pg C +;boreal.veg_c=100 +;boreal.detritus_c=15 +;boreal.soil_c=1200 +;boreal.permafrost_c=865 +;boreal.npp_flux0=5.0 +;tropical.veg_c=450 +;tropical.detritus_c=45 +;tropical.soil_c=578 +;tropical.permafrost_c=0 +;tropical.npp_flux0=45.0 + +; Permafrost is inactive (zero) by default in Hector v3 +; See Woodard et al. 2021, 10.5194/gmd-14-4751-2021 +permafrost_c=0 ; permafrost, Pg C +;fpf_static=0.74 ; fraction of permafrost that is static (non-labile) +;rh_ch4_frac=0.023 ; fraction of thawed permafrost decomposed as CH4 +;pf_mu=1.67 ; permafrost thaw parameter; see Woodard et al. 2021 +;pf_sigma=0.986 ; permafrost thaw parameter; see Woodard et al. 2021 + +; Partitioning parameters +f_nppv=0.35 ; Fraction of NPP to vegetation +f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) +f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) + +; Anthropogenic contributions: emissions, direct air carbon capture and storage, and land use change, Pg C/yr +ffi_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv +daccs_uptake=csv:tables/ssp534-over_emiss-constraints_rf.csv +luc_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv +luc_uptake=csv:tables/ssp534-over_emiss-constraints_rf.csv + +; Optional atmospheric CO2 constraint, ppmv +; If supplied, the model will use these data, ignoring what it calculates +; Any residual between model [CO2] and model [CO2] will be put into the deep ocean +;CO2_constrain=csv:tables/ssp534-over_emiss-constraints_rf.csv ; + +; Optional net biome production (land-atmosphere C flux) constaint, Pg C/yr +; Positive represents flux to land, negative represents flux to atmosphere +; If supplied, the model will use these data, ignoring what it calculates +;NBP_constrain=csv:tables/ssp534-over_emiss-constraints_rf.csv ; + +; CO2 and temperature effects on the carbon cycle +; these are global values, can optionally specify biome-specific ones as above +beta=0.55 ; CO2 fertilization factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details +q10_rh=2.2 ; Heterotrophic respiration temperature sensitivity factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details + +; Optional biome-specific warming factors +; by default, assume 1.0 (i.e., warms as fast as the globe) +;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally + +; Albedo effect, in W/m2. The model assumes a constant value if nothing specified +RF_albedo=csv:tables/ssp534-over_emiss-constraints_rf.csv ; + +;------------------------------------------------------------------------ +[carbon-cycle-solver] +eps_abs=1.0e-6 ; solution tolerance +eps_rel=1.0e-6 ; solution tolerance +dt=0.25 ; default time step +eps_spinup=0.001 ; spinup tolerance (drift), Pg C + +;------------------------------------------------------------------------ +[so2] +SO2_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv ; emissions time series +SV=csv:tables/ssp534-over_emiss-constraints_rf.csv ; volcanic radiative forcing time series + +;------------------------------------------------------------------------ +[CH4] +M0= 731.41 ; 731.41 ppb preindustrial methane IPCC AR6 Table 7.SM.1, the CH4 forcing equations is calibrated to a M0 of 731.41 ppb +Tsoil=160 ; lifetime of soil sink (years) +Tstrat=120 ; lifetime of tropospheric sink (years) +UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations +CH4N=338 ; Natural CH4 emissions (Tgrams) +CH4_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv ; emissions time series +;CH4_constrain=csv:tables/ssp534-over_emiss-constraints_rf.csv ; CH4 concentration constraint + +;------------------------------------------------------------------------ +[OH] +NOX_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv ; emissions time series + +TOH0=6.6 ; inital OH lifetime (years) +CNOX=0.0042 ; coefficent for NOX +CCO=-0.000105 ; coefficent for CO +CNMVOC=-0.000315 ; coefficent for NMVOC (non methane VOC) +CCH4=-0.32 ; coefficent for CH4 + +;------------------------------------------------------------------------ +[ozone] +PO3=30.0 ; preindustrial O3 concentration +NOX_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv ; emissions time series + +;------------------------------------------------------------------------ +[N2O] +N0=273.87 ; (ppb) preindustrial nitrous oxide from IPCC AR6 table 7.SM.1 +UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations +TN2O0=132 ; initial lifetime of N2O, years + +; An example of setting a time series by individual values +; The model will interpolate as necessary between them +N2O_natural_emissions[1750]=9.7 ; default natural emissions based on a best fit to IPCC AR6 N2O RF +N2O_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv ; emissions time series +;N2O_constrain=csv:tables/ssp534-over_emiss-constraints_rf.csv ; N2O concentration constraint + +;------------------------------------------------------------------------ +[forcing] +baseyear=1750 ; when to start reporting; by definition, all F=0 in this year + +; Optional radiative forcing constraint +; If supplied, the model will use these data, ignoring what it calculates +;RF_tot_constrain=csv:tables/CONSTRAINT.csv +delta_co2=0.05 ; (unitless) forcing tropospheric adjustments for CO2 (7.3.2.1 of IPCC AR6) +delta_ch4=-.14 ; (unitless) forcing tropospheric adjustments for CH4 (7.3.2.2 of IPCC AR6) +delta_n2o=0.07 ; (unitless) forcing tropospheric adjustments for N2O (7.3.2.3 of IPCC AR6) +rho_bc=0.0508 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency BC (7.SM.1.3 of IPCC AR6) +rho_oc=-.00621 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency OC (7.SM.1.3.1 of IPCC AR6) +rho_so2=-.00000724 ; (W yr m–2 S Gg-1) IPCC AR6 radiative efficiency SO2 (7.SM.1.3.1 of IPCC AR6) +rho_nh3=-.00208 ; (W yr m–2 NH3Tg–1) IPCC AR6 radiative efficiency NH3 (7.SM.1.3.1 of IPCC AR6) + +; Miscellaneous radiative forcings default set to 0, or read in from a input table, may be used to read in +; additional forcings not modeled by Hector (i.e. solar, bc on snow , contrails from) +;RF_misc=csv:tables/ssp534-over_emiss-constraints_rf.csv ; +RF_misc[1750]=0 + + + +;------------------------------------------------------------------------ +[temperature] +enabled=1 + +S=3.0 ; equilibrium climate sensitivity for 2xCO2 degC (A.4.4 of IPCC AR6) +diff=1.16 ; ocean heat diffusivity, cm2/s calibrated to historical observations see Dorheim et al. in prep for details +alpha=1.0 ; uncertainty scaling factor for aerosol forcing +volscl=1.0 ; uncertainty scaling factor for volcanic forcing +qco2=3.75 ; 2×CO2 RF (7.3.2 of IPCC AR6) + +; Optional global temperature constraint +; If supplied, the model will use these data, ignoring what it calculates +; tas_constrain=csv:tables/ssp534-over_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[bc] +BC_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[oc] +OC_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[nh3] +NH3_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +; Halocarbons +; tau (lifetime), rho (radiative efficiency), delta (tropospheric adjustments scalar) + +[CF4_halocarbon] +tau=50000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CF4=0.000099 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CF4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=35.0 ; preindustrial concentration, pptv +molarMass=88.0043 ; grams +CF4_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[C2F6_halocarbon] +tau=10000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_C2F6=0.000261 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_C2F6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=138.01 ; grams +C2F6_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HFC23_halocarbon] +tau=228.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC23=0.000191 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC23=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=70.0 ; grams +HFC23_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HFC32_halocarbon] +tau=5.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC32=0.000111 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC32=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=52.0 ; grams +HFC32_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HFC4310_halocarbon] ; This is equivalent to HFC-43-10mee +tau=17.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC4310=0.000357 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC4310=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=252.0 ; grams +HFC4310_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HFC125_halocarbon] +tau=30.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC125=0.000234 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC125=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.02 ; grams +HFC125_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HFC134a_halocarbon] +tau=14.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC134a=0.000167 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC134a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=102.02 ; grams +HFC134a_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HFC143a_halocarbon] +tau=51.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC143a=0.000168 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC143a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=84.04 ; grams +HFC143a_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HFC227ea_halocarbon] +tau=36.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC227ea=0.000273 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC227ea=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.03 ; grams +HFC227ea_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HFC245fa_halocarbon] +tau=7.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC245fa=0.000245 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC245fa=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=134.0 ; grams +HFC245fa_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[SF6_halocarbon] +tau=3200.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_SF6=0.000567 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_SF6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=146.06 ; grams +SF6_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[CFC11_halocarbon] +tau=52.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC11=0.000259 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC11=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=137.35 ; grams +CFC11_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[CFC12_halocarbon] +tau=102.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC12=0.00032 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC12=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.9 ; grams +CFC12_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[CFC113_halocarbon] +tau=93.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC113=0.000301 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC113=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=187.35 ; grams +CFC113_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[CFC114_halocarbon] +tau=189 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC114=0.000314 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC114=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.9 ; grams +CFC114_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[CFC115_halocarbon] +tau=540 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC115=0.000246 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC115=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=154.45 ; grams +CFC115_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[CCl4_halocarbon] +tau=32.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CCl4=0.000166 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CCl4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=153.8 ; grams +CCl4_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[CH3CCl3_halocarbon] +tau=5.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3CCl3=0.000065 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3CCl3=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=133.35 ; grams +CH3CCl3_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[halon1211_halocarbon] +tau=16.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1211=0.00003 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1211=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=165.35 ; grams +halon1211_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[halon1301_halocarbon] +tau=72.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1301=0.000299 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1301=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=148.9 ; grams +halon1301_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[halon2402_halocarbon] +tau=28.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon2402=0.000312 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon2402=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=259.8 ; grams +halon2402_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HCFC22_halocarbon] +tau=11.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC22=0.000214 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC22=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=86.45 ; grams +HCFC22_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HCFC141b_halocarbon] +tau=9.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC141b=0.000161 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC141b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=116.9 ; grams +HCFC141b_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[HCFC142b_halocarbon] +tau=18.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC142b=0.000193 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC142b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=100.45 ; grams +HCFC142b_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[CH3Cl_halocarbon] +tau=0.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Cl=0.000005 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Cl=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL +molarMass=50.45 ; grams +CH3Cl_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv + +[CH3Br_halocarbon] +tau=0.8 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Br=0.000004 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Br=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR +molarMass=50.45 ; grams +CH3Br_emissions=csv:tables/ssp534-over_emiss-constraints_rf.csv diff --git a/inst/input/hector_ssp585.ini b/inst/input/hector_ssp585.ini new file mode 100644 index 000000000..9ddd6a692 --- /dev/null +++ b/inst/input/hector_ssp585.ini @@ -0,0 +1,383 @@ +; Config file for hector model: ssp585 +;------------------------------------------------------------------------ +[core] +run_name=ssp585 +startDate=1745 +endDate=2300 +trackingDate=9999 ; year to start tracking (only carbon currently) +do_spinup=1 ; if 1, spin up model before running (default=1) +max_spinup=2000 ; maximum steps allowed for spinup (default=2000) + +;------------------------------------------------------------------------ +[ocean] +enabled=1 ; putting 'enabled=0' will disable any component +spinup_chem=0 ; run surface chemistry during spinup phase? + +tt=72000000 ; 7.2e7 thermohaline circulation, m3/s +tu=49000000 ; 4.9e7 high latitude overturning, m3/s +twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s +tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s + +preind_surface_c=900 ; surface ocean C, IPCC AR6 Figure 5.12 +preind_interdeep_c=37100 ; intermediate and deep ocean C, IPCC AR6 Figure 5.12 + +;------------------------------------------------------------------------ +[simpleNbox] +; Initial (preindustrial) carbon pools and fluxes +; These are generally consistent with reconstructed (Siegenthaler and Oeschger +; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, +; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. + +; If using biomes (e.g. boreal.veg_c), this file must have entries for +; - all carbon pools +; - the nppv, nppd, and litterd partitioning parameters +; - beta and q10_rh + +atmos_co2=590.33 ; initial atmospheric carbon pool Pg C of CO2 size used in spin up, consistent with C0 +C0=277.15 ; preindustrial CO2 from table 7.SM.1 IPCC AR6, CO2 radiative forcing question is calibrated to this value +npp_flux0=56.2 ; preindustrial net primary production, Pg C/yr from Ito et al. 2011 + +veg_c=550 ; initial vegetation pool, Pg C +detritus_c=55 ; initial detritus pool, Pg C +soil_c=1782 ; initial soil pool, Pg C +;boreal.veg_c=100 +;boreal.detritus_c=15 +;boreal.soil_c=1200 +;boreal.permafrost_c=865 +;boreal.npp_flux0=5.0 +;tropical.veg_c=450 +;tropical.detritus_c=45 +;tropical.soil_c=578 +;tropical.permafrost_c=0 +;tropical.npp_flux0=45.0 + +; Permafrost is inactive (zero) by default in Hector v3 +; See Woodard et al. 2021, 10.5194/gmd-14-4751-2021 +permafrost_c=0 ; permafrost, Pg C +;fpf_static=0.74 ; fraction of permafrost that is static (non-labile) +;rh_ch4_frac=0.023 ; fraction of thawed permafrost decomposed as CH4 +;pf_mu=1.67 ; permafrost thaw parameter; see Woodard et al. 2021 +;pf_sigma=0.986 ; permafrost thaw parameter; see Woodard et al. 2021 + +; Partitioning parameters +f_nppv=0.35 ; Fraction of NPP to vegetation +f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) +f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) + +; Anthropogenic contributions: emissions, direct air carbon capture and storage, and land use change, Pg C/yr +ffi_emissions=csv:tables/ssp585_emiss-constraints_rf.csv +daccs_uptake=csv:tables/ssp585_emiss-constraints_rf.csv +luc_emissions=csv:tables/ssp585_emiss-constraints_rf.csv +luc_uptake=csv:tables/ssp585_emiss-constraints_rf.csv + +; Optional atmospheric CO2 constraint, ppmv +; If supplied, the model will use these data, ignoring what it calculates +; Any residual between model [CO2] and model [CO2] will be put into the deep ocean +;CO2_constrain=csv:tables/ssp585_emiss-constraints_rf.csv ; + +; Optional net biome production (land-atmosphere C flux) constaint, Pg C/yr +; Positive represents flux to land, negative represents flux to atmosphere +; If supplied, the model will use these data, ignoring what it calculates +;NBP_constrain=csv:tables/ssp585_emiss-constraints_rf.csv ; + +; CO2 and temperature effects on the carbon cycle +; these are global values, can optionally specify biome-specific ones as above +beta=0.55 ; CO2 fertilization factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details +q10_rh=2.2 ; Heterotrophic respiration temperature sensitivity factor (unitless), calibrated to historical observations see Dorheim et al. in prep for details + +; Optional biome-specific warming factors +; by default, assume 1.0 (i.e., warms as fast as the globe) +;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally + +; Albedo effect, in W/m2. The model assumes a constant value if nothing specified +RF_albedo=csv:tables/ssp585_emiss-constraints_rf.csv ; + +;------------------------------------------------------------------------ +[carbon-cycle-solver] +eps_abs=1.0e-6 ; solution tolerance +eps_rel=1.0e-6 ; solution tolerance +dt=0.25 ; default time step +eps_spinup=0.001 ; spinup tolerance (drift), Pg C + +;------------------------------------------------------------------------ +[so2] +SO2_emissions=csv:tables/ssp585_emiss-constraints_rf.csv ; emissions time series +SV=csv:tables/ssp585_emiss-constraints_rf.csv ; volcanic radiative forcing time series + +;------------------------------------------------------------------------ +[CH4] +M0= 731.41 ; 731.41 ppb preindustrial methane IPCC AR6 Table 7.SM.1, the CH4 forcing equations is calibrated to a M0 of 731.41 ppb +Tsoil=160 ; lifetime of soil sink (years) +Tstrat=120 ; lifetime of tropospheric sink (years) +UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations +CH4N=338 ; Natural CH4 emissions (Tgrams) +CH4_emissions=csv:tables/ssp585_emiss-constraints_rf.csv ; emissions time series +;CH4_constrain=csv:tables/ssp585_emiss-constraints_rf.csv ; CH4 concentration constraint + +;------------------------------------------------------------------------ +[OH] +NOX_emissions=csv:tables/ssp585_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp585_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp585_emiss-constraints_rf.csv ; emissions time series + +TOH0=6.6 ; inital OH lifetime (years) +CNOX=0.0042 ; coefficent for NOX +CCO=-0.000105 ; coefficent for CO +CNMVOC=-0.000315 ; coefficent for NMVOC (non methane VOC) +CCH4=-0.32 ; coefficent for CH4 + +;------------------------------------------------------------------------ +[ozone] +PO3=30.0 ; preindustrial O3 concentration +NOX_emissions=csv:tables/ssp585_emiss-constraints_rf.csv ; emissions time series +CO_emissions=csv:tables/ssp585_emiss-constraints_rf.csv ; emissions time series +NMVOC_emissions=csv:tables/ssp585_emiss-constraints_rf.csv ; emissions time series + +;------------------------------------------------------------------------ +[N2O] +N0=273.87 ; (ppb) preindustrial nitrous oxide from IPCC AR6 table 7.SM.1 +UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations +TN2O0=132 ; initial lifetime of N2O, years + +; An example of setting a time series by individual values +; The model will interpolate as necessary between them +N2O_natural_emissions[1750]=9.7 ; default natural emissions based on a best fit to IPCC AR6 N2O RF +N2O_emissions=csv:tables/ssp585_emiss-constraints_rf.csv ; emissions time series +;N2O_constrain=csv:tables/ssp585_emiss-constraints_rf.csv ; N2O concentration constraint + +;------------------------------------------------------------------------ +[forcing] +baseyear=1750 ; when to start reporting; by definition, all F=0 in this year + +; Optional radiative forcing constraint +; If supplied, the model will use these data, ignoring what it calculates +;RF_tot_constrain=csv:tables/CONSTRAINT.csv +delta_co2=0.05 ; (unitless) forcing tropospheric adjustments for CO2 (7.3.2.1 of IPCC AR6) +delta_ch4=-.14 ; (unitless) forcing tropospheric adjustments for CH4 (7.3.2.2 of IPCC AR6) +delta_n2o=0.07 ; (unitless) forcing tropospheric adjustments for N2O (7.3.2.3 of IPCC AR6) +rho_bc=0.0508 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency BC (7.SM.1.3 of IPCC AR6) +rho_oc=-.00621 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency OC (7.SM.1.3.1 of IPCC AR6) +rho_so2=-.00000724 ; (W yr m–2 S Gg-1) IPCC AR6 radiative efficiency SO2 (7.SM.1.3.1 of IPCC AR6) +rho_nh3=-.00208 ; (W yr m–2 NH3Tg–1) IPCC AR6 radiative efficiency NH3 (7.SM.1.3.1 of IPCC AR6) + +; Miscellaneous radiative forcings default set to 0, or read in from a input table, may be used to read in +; additional forcings not modeled by Hector (i.e. solar, bc on snow , contrails from) +;RF_misc=csv:tables/ssp585_emiss-constraints_rf.csv ; +RF_misc[1750]=0 + + + +;------------------------------------------------------------------------ +[temperature] +enabled=1 + +S=3.0 ; equilibrium climate sensitivity for 2xCO2 degC (A.4.4 of IPCC AR6) +diff=1.16 ; ocean heat diffusivity, cm2/s calibrated to historical observations see Dorheim et al. in prep for details +alpha=1.0 ; uncertainty scaling factor for aerosol forcing +volscl=1.0 ; uncertainty scaling factor for volcanic forcing +qco2=3.75 ; 2×CO2 RF (7.3.2 of IPCC AR6) + +; Optional global temperature constraint +; If supplied, the model will use these data, ignoring what it calculates +; tas_constrain=csv:tables/ssp585_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[bc] +BC_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[oc] +OC_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +[nh3] +NH3_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +;------------------------------------------------------------------------ +; Halocarbons +; tau (lifetime), rho (radiative efficiency), delta (tropospheric adjustments scalar) + +[CF4_halocarbon] +tau=50000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CF4=0.000099 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CF4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=35.0 ; preindustrial concentration, pptv +molarMass=88.0043 ; grams +CF4_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[C2F6_halocarbon] +tau=10000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_C2F6=0.000261 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_C2F6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=138.01 ; grams +C2F6_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HFC23_halocarbon] +tau=228.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC23=0.000191 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC23=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=70.0 ; grams +HFC23_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HFC32_halocarbon] +tau=5.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC32=0.000111 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC32=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=52.0 ; grams +HFC32_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HFC4310_halocarbon] ; This is equivalent to HFC-43-10mee +tau=17.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC4310=0.000357 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC4310=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=252.0 ; grams +HFC4310_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HFC125_halocarbon] +tau=30.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC125=0.000234 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC125=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.02 ; grams +HFC125_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HFC134a_halocarbon] +tau=14.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC134a=0.000167 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC134a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=102.02 ; grams +HFC134a_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HFC143a_halocarbon] +tau=51.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC143a=0.000168 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC143a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=84.04 ; grams +HFC143a_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HFC227ea_halocarbon] +tau=36.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC227ea=0.000273 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC227ea=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.03 ; grams +HFC227ea_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HFC245fa_halocarbon] +tau=7.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC245fa=0.000245 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC245fa=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=134.0 ; grams +HFC245fa_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[SF6_halocarbon] +tau=3200.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_SF6=0.000567 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_SF6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=146.06 ; grams +SF6_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[CFC11_halocarbon] +tau=52.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC11=0.000259 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC11=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=137.35 ; grams +CFC11_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[CFC12_halocarbon] +tau=102.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC12=0.00032 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC12=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.9 ; grams +CFC12_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[CFC113_halocarbon] +tau=93.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC113=0.000301 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC113=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=187.35 ; grams +CFC113_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[CFC114_halocarbon] +tau=189 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC114=0.000314 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC114=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.9 ; grams +CFC114_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[CFC115_halocarbon] +tau=540 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC115=0.000246 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC115=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=154.45 ; grams +CFC115_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[CCl4_halocarbon] +tau=32.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CCl4=0.000166 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CCl4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=153.8 ; grams +CCl4_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[CH3CCl3_halocarbon] +tau=5.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3CCl3=0.000065 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3CCl3=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=133.35 ; grams +CH3CCl3_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[halon1211_halocarbon] +tau=16.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1211=0.00003 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1211=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=165.35 ; grams +halon1211_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[halon1301_halocarbon] +tau=72.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1301=0.000299 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1301=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=148.9 ; grams +halon1301_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[halon2402_halocarbon] +tau=28.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon2402=0.000312 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon2402=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=259.8 ; grams +halon2402_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HCFC22_halocarbon] +tau=11.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC22=0.000214 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC22=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=86.45 ; grams +HCFC22_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HCFC141b_halocarbon] +tau=9.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC141b=0.000161 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC141b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=116.9 ; grams +HCFC141b_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[HCFC142b_halocarbon] +tau=18.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC142b=0.000193 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC142b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=100.45 ; grams +HCFC142b_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[CH3Cl_halocarbon] +tau=0.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Cl=0.000005 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Cl=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL +molarMass=50.45 ; grams +CH3Cl_emissions=csv:tables/ssp585_emiss-constraints_rf.csv + +[CH3Br_halocarbon] +tau=0.8 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Br=0.000004 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Br=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR +molarMass=50.45 ; grams +CH3Br_emissions=csv:tables/ssp585_emiss-constraints_rf.csv diff --git a/inst/input/tables/ar6_historical_constraint.csv b/inst/input/tables/ar6_historical_constraint.csv new file mode 100644 index 000000000..e2645a88a --- /dev/null +++ b/inst/input/tables/ar6_historical_constraint.csv @@ -0,0 +1,276 @@ +; historical from ar6 +; hectordata 0.0.0.9000 +; commit 973edbec8b34a20 +; date Thu Nov 17 17:42:00 2022 +; UNITS:, W/m2 +Date,RF_tot_constrain +1750,0.29756832829343 +1751,0.286266210509893 +1752,0.26143723156581 +1753,0.22423577922106 +1754,0.184177951263024 +1755,0.139594933196907 +1756,-0.114236470408888 +1757,0.0424867237261421 +1758,0.18615277991695 +1759,0.268224658548362 +1760,0.300466537080801 +1761,0.303081321076319 +1762,-0.718953663205658 +1763,-0.439127442426087 +1764,-0.0167081250528877 +1765,0.106302416652438 +1766,-0.219144941084392 +1767,-0.261866534123459 +1768,0.0720760468816915 +1769,0.260264888082283 +1770,0.186941016601666 +1771,0.248894134166424 +1772,0.301363603348031 +1773,0.29112144561803 +1774,0.247996759600568 +1775,0.223745172915525 +1776,0.209034517481103 +1777,0.210629852161059 +1778,0.253285399358598 +1779,0.331593446657186 +1780,0.36869647352268903 +1781,0.375199189291663 +1782,0.354045072667146 +1783,-1.67091745641655 +1784,-3.79329036441763 +1785,-1.4332107360094 +1786,-0.516540805435524 +1787,-0.0707645549723163 +1788,0.193440150457736 +1789,0.353091321750534 +1790,0.40563368542043 +1791,0.409865706505716 +1792,0.399964350078653 +1793,0.371122257786018 +1794,0.324059356816519 +1795,0.294536587536076 +1796,0.122499877242158 +1797,-0.0151953530346514 +1798,0.0824345592295064 +1799,0.179981068108658 +1800,0.22902586814922 +1801,0.276506937850886 +1802,0.308997725479244 +1803,0.334230810772674 +1804,0.343196404147288 +1805,0.327745220273423 +1806,0.318735026109401 +1807,0.29746532423012 +1808,0.266834858235871 +1809,-3.69197371162075 +1810,-2.53610914380461 +1811,-0.752938832552258 +1812,-0.0811020283048241 +1813,0.158023488169614 +1814,0.243612732647097 +1815,-3.61155369412795 +1816,-4.69408423892097 +1817,-1.57045284110811 +1818,-0.33309003950265 +1819,0.0869139749480436 +1820,0.209563251604527 +1821,0.131312582934945 +1822,0.127342222490011 +1823,-0.241133817017888 +1824,0.041877156154016 +1825,0.22197252988314 +1826,0.316698363114002 +1827,0.358122246605193 +1828,0.361090238282733 +1829,0.360628708075089 +1830,0.339260805370805 +1831,-2.37701160970229 +1832,-1.56888051312843 +1833,-0.386502346490063 +1834,0.0509361230975482 +1835,-1.73468938712666 +1836,-1.01534907321983 +1837,-0.0778639081590797 +1838,0.260570932909818 +1839,0.36265497357204 +1840,0.377060687752876 +1841,0.356246832106129 +1842,0.328233462468465 +1843,0.307153716576488 +1844,0.291595805244126 +1845,0.282012171580596 +1846,0.0980966919494134 +1847,0.166828299964033 +1848,0.259626745044065 +1849,0.309506444783968 +1850,0.330573173486921 +1851,0.340821685649772 +1852,0.341398901841913 +1853,0.150341871694166 +1854,0.0900640237442857 +1855,0.232693211158731 +1856,0.241974741275506 +1857,0.0610756282548541 +1858,0.224181980016586 +1859,0.315953089881431 +1860,0.353000828060412 +1861,0.277788992409557 +1862,-0.537983130831677 +1863,-0.130356436159427 +1864,0.196266661396181 +1865,0.299371603632662 +1866,0.340887321515749 +1867,0.342884573018746 +1868,0.350764377710576 +1869,0.377857932353126 +1870,0.375190955562687 +1871,0.394513965885742 +1872,0.387405381701872 +1873,0.127455086744586 +1874,0.268984909398822 +1875,0.279353381270153 +1876,0.281683800381646 +1877,0.322359499045028 +1878,0.335290099286013 +1879,0.332550128824511 +1880,0.295453771007912 +1881,0.317241293493722 +1882,0.366982527654241 +1883,-0.342921695205167 +1884,-1.76623178075425 +1885,-0.495433575556382 +1886,0.0584775656224174 +1887,0.128797743307213 +1888,0.283444289318954 +1889,0.350247294294797 +1890,0.163258548595196 +1891,0.0572050674031852 +1892,0.286505096628909 +1893,0.439932747585831 +1894,0.449882257363621 +1895,0.435054180739088 +1896,0.413653805977252 +1897,0.387295559607382 +1898,0.376296350584558 +1899,0.347274454877185 +1900,0.339334662223399 +1901,0.331694252287587 +1902,0.0991691557157709 +1903,-0.599713484742594 +1904,-0.121548837806503 +1905,0.218511248646372 +1906,0.340981015029536 +1907,0.13329726180818 +1908,0.278007287973524 +1909,0.325796473005325 +1910,0.297694911656168 +1911,0.300784491284828 +1912,-0.283521906559721 +1913,-0.199670062786848 +1914,0.153958609593459 +1915,0.382038487200863 +1916,0.421617774911794 +1917,0.434293350798798 +1918,0.449111939479283 +1919,0.488735541160009 +1920,0.42987415722428 +1921,0.493895451236012 +1922,0.340817383086549 +1923,0.359556786228573 +1924,0.465389724384107 +1925,0.489350355682275 +1926,0.50646745505676 +1927,0.506875366308973 +1928,0.452696746600377 +1929,0.224766680644475 +1930,0.477797214346462 +1931,0.534851090487314 +1932,0.37943754223044 +1933,0.510727918598949 +1934,0.51799847308973 +1935,0.528004936238453 +1936,0.561884802635581 +1937,0.554261753182864 +1938,0.60173020730031 +1939,0.57032141391451 +1940,0.520841138337772 +1941,0.501564329360191 +1942,0.475286256026022 +1943,0.464872712466813 +1944,0.487595560302761 +1945,0.604181381486513 +1946,0.640887058322145 +1947,0.640581886439904 +1948,0.630054711959746 +1949,0.665480598379133 +1950,0.587848310529736 +1951,0.552024615629804 +1952,0.538355436923028 +1953,0.520261174132122 +1954,0.525887364453035 +1955,0.520844444515006 +1956,0.541069873174516 +1957,0.574587491392714 +1958,0.613839973826166 +1959,0.57602812446895 +1960,0.536675799725466 +1961,0.463667642558856 +1962,0.264327856647978 +1963,-0.668736887612652 +1964,-0.396074819002629 +1965,-0.0768941533529485 +1966,0.415946173122402 +1967,0.189793860895515 +1968,0.331746198724609 +1969,0.436893927070503 +1970,0.418944029116874 +1971,0.284737261149823 +1972,0.392233069028374 +1973,0.547735049819863 +1974,0.455921294021705 +1975,0.263639935178371 +1976,0.494557868565099 +1977,0.663437129246077 +1978,0.786271638594812 +1979,0.843821740440933 +1980,0.857550522571526 +1981,0.91034216300612 +1982,0.53003972178417 +1983,0.192163227402298 +1984,0.632302488385552 +1985,0.918400386825284 +1986,0.972051479625749 +1987,1.07221869222474 +1988,1.24235855367021 +1989,1.40777934802107 +1990,1.41618514460756 +1991,0.654347199421066 +1992,-0.39680356970908 +1993,0.566546789532499 +1994,1.22849420069283 +1995,1.51674825687423 +1996,1.64210301198028 +1997,1.55895898086688 +1998,1.69994097218484 +1999,1.93355022574648 +2000,2.02557893057251 +2001,2.04229341328736 +2002,2.00722302833322 +2003,1.93456912413338 +2004,1.95740357682401 +2005,1.90430929551338 +2006,1.88466986643859 +2007,1.94246873379536 +2008,2.05169276112923 +2009,2.12821174804192 +2010,2.23690363312659 +2011,2.2897895942441 +2012,2.35742109029523 +2013,2.52599096296346 +2014,2.55824234562296 +2015,2.62144376542819 +2016,2.6310035236805702 +2017,2.66115935109899 +2018,2.6954156039762 +2019,2.74577704374432 diff --git a/inst/input/tables/nbp_output.csv b/inst/input/tables/nbp_output.csv new file mode 100644 index 000000000..c58aefcbd --- /dev/null +++ b/inst/input/tables/nbp_output.csv @@ -0,0 +1,103 @@ +; NBP hector output under SSP245 +Date,NBP_constrain +2000,0.716474785739223 +2001,0.952392704152487 +2002,0.839856194642137 +2003,1.00931579497951 +2004,0.87381641795008 +2005,0.887128404776016 +2006,0.829454759750791 +2007,0.966158503603963 +2008,1.26886856775997 +2009,1.17865590408227 +2010,1.04883349249944 +2011,1.01981646164149 +2012,0.965179659154927 +2013,1.01605099770699 +2014,0.837895423757266 +2015,0.987271679288178 +2016,0.997399077578772 +2017,1.01521648627455 +2018,1.02711283492478 +2019,1.0350759620176 +2020,1.04581685893936 +2021,1.054969928152 +2022,1.06699375131531 +2023,1.08003160243805 +2024,1.09339732576277 +2025,1.10690926101549 +2026,1.11824759003032 +2027,1.12935885412521 +2028,1.14036750107583 +2029,1.15121222331117 +2030,1.16182605203499 +2031,1.18136432775208 +2032,1.19979213140901 +2033,1.21729109881985 +2034,1.22967318908026 +2035,1.24112797498759 +2036,1.25814810227591 +2037,1.26532853263278 +2038,1.27490447234735 +2039,1.28389691245606 +2040,1.29349087478577 +2041,1.3290452129328 +2042,1.36378859597743 +2043,1.39752415065916 +2044,1.43021181094923 +2045,1.4618292888098 +2046,1.49237556478172 +2047,1.52185599362181 +2048,1.55027460707168 +2049,1.57733123586717 +2050,1.60335531538502 +2051,1.63873140381082 +2052,1.67305082763866 +2053,1.70592074923074 +2054,1.73738954458589 +2055,1.76748149684157 +2056,1.79594366497585 +2057,1.83013226113404 +2058,1.84855908304911 +2059,1.87345370632664 +2060,1.89675949990634 +2061,1.88184073280668 +2062,1.8666524955645 +2063,1.85093320599078 +2064,1.83453916227266 +2065,1.81624213629418 +2066,1.79761485609873 +2067,1.77896474789398 +2068,1.76015290211256 +2069,1.74108440679733 +2070,1.72170409988961 +2071,1.71596564827977 +2072,1.70928987994558 +2073,1.70149164140197 +2074,1.69266845298209 +2075,1.68286679576868 +2076,1.67173431759399 +2077,1.6598286828312 +2078,1.65356949993758 +2079,1.64001619978329 +2080,1.6257130587052 +2081,1.60352592072093 +2082,1.5805273050104 +2083,1.55657372322369 +2084,1.53177662249915 +2085,1.50627538461716 +2086,1.47885673008964 +2087,1.44789596774619 +2088,1.41734796488637 +2089,1.38717765401816 +2090,1.35686366719976 +2091,1.31459680387595 +2092,1.27286927851267 +2093,1.2313492258645 +2094,1.18988121597737 +2095,1.14894511113215 +2096,1.108564467819 +2097,1.06854798946435 +2098,1.03701475633546 +2099,0.998180793241035 +2100,0.958547245122897 diff --git a/inst/input/tables/ssp119_emiss-constraints_rf.csv b/inst/input/tables/ssp119_emiss-constraints_rf.csv new file mode 100644 index 000000000..7f3643cd3 --- /dev/null +++ b/inst/input/tables/ssp119_emiss-constraints_rf.csv @@ -0,0 +1,562 @@ +; ssp119 from rcmip +; hectordata 0.0.0.9000 +; commit dab9aad8750535b +; date Fri Nov 4 11:35:30 2022 +; UNITS:, PgC year-1, PgC year-1, PgC year-1, PgC year-1, Tg year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg CH4 year-1, ppm, Tg CO year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg N year-1, Tg year-1, Tg NMVOC year-1, Tg N year-1, Tg year-1, W m-2, ppt, ppt, Gg S year-1, W m-2, ppt, ppt, ppt, ppt, ppt, ppt +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_constrain,C2F6_emissions,CCl4_constrain,CCl4_emissions,CF4_constrain,CF4_emissions,CFC113_constrain,CFC113_emissions,CFC114_constrain,CFC114_emissions,CFC115_constrain,CFC115_emissions,CFC11_constrain,CFC11_emissions,CFC12_constrain,CFC12_emissions,CH3Br_constrain,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_constrain,CH3Cl_emissions,CH4_constrain,CH4_emissions,CO2_constrain,CO_emissions,HCFC141b_constrain,HCFC141b_emissions,HCFC142b_constrain,HCFC142b_emissions,HCFC22_constrain,HCFC22_emissions,HFC125_constrain,HFC125_emissions,HFC134a_constrain,HFC134a_emissions,HFC143a_constrain,HFC143a_emissions,HFC227ea_constrain,HFC227ea_emissions,HFC23_constrain,HFC23_emissions,HFC245_constrain,HFC245fa_emissions,HFC32_constrain,HFC32_emissions,HFC365_constrain,HFC365_emissions,HFC4310_constrain,HFC4310_emissions,N2O_constrain,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,RF_albedo,SF6_constrain,SF6_emissions,SO2_emissions,SV,halon1211_constrain,halon1211_emissions,halon1301_constrain,halon1301_emissions,halon2402_constrain,halon2402_emissions +1745,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,728.6180877685546,19.019783117809567,276.9859975179036,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7540486653645,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1746,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.704874674479,19.019783117809567,277.01399993896484,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7850443522135,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1747,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.8320821126301,19.019783117809567,277.0439987182617,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.80204772949213,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1748,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.2330983479817,19.019783117809567,277.07999928792316,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8170496622721,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1749,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.9769846598306,19.019783117809567,277.10900115966797,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8330459594726,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1750,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,731.4059956868489,19.019783117809567,277.1470031738281,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8650512695312,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1751,0.0025941063027029847,0.0826692695573487,0,0,2.0729259257736388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1072,0,457.00000254313153,4276.7685,731.838165283203,18.915108869931455,277.18800099690753,343.9263672486595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8940556844075,0.05578579647289745,6.860142184947855,59.08812628149409,3.8337729357251344,15.188716744277112,-0.00022945725475492763,0,0,1206.0681799841475,0.1857567460517512,0.004446572546536724,0.0077232726,0,0,0,0 +1752,0.0025952084646724115,0.0841901460141451,0,0,2.0643119329193533,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12502,0,457.00000254313153,4277.7049,732.8999735514321,18.889711811886766,277.22900136311847,341.8090339016869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.92705535888666,0.056839716429342754,6.819482036717451,58.63199702688318,3.8343718514044016,15.034475741403988,-4.5891450950985525e-4,0,0,1200.4278473396196,0.1857604715824308,0.004446572546536724,0.0077232726,0,0,0,0 +1753,0.0025953021590175993,0.08573900221733607,0,0,2.0719505635154682,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10373,0,457.00000254313153,4276.585999999999,733.634038289388,19.121377231171937,277.26300048828125,343.6754562091752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.9730555216471,0.057913547319122724,6.88143852899345,59.02634940020826,3.8177943228183677,15.18254515100842,-6.883717642647818e-4,0,0,1207.227098535096,0.1857617169069504,0.004446572546536724,0.0077232726,0,0,0,0 +1754,0.0025964043209870257,0.0873163529136683,0,0,2.09934978275426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07356,0,457.00000254313153,4274.9998,734.2020212809243,19.50906106501577,277.3040033976237,349.81562520064375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.01604461669916,0.059007665304832875,7.015189223980566,60.269945173845855,3.847331336983454,15.55877304959727,-9.178290190197105e-4,0,0,1232.9531143620388,0.18576213564093827,0.004446572546536724,0.0077232726,0,0,0,0 +1755,0.0025975064829564486,0.08892272231974611,0,0,2.099173164966012,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09182,0,457.00000254313153,4275.9598,734.7360788981118,19.500454933311694,277.3510030110677,348.144667955229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.05104319254554,0.06012245365563151,6.9439890428442705,59.824933724698546,3.8866528883154143,15.358182527090067,-0.0011472862737746368,0,0,1223.0826850431558,0.16149051004268924,0.004446572546536724,0.0077232726,0,0,0,0 +1756,0.002775090479167637,0.09055864429624946,0,0,2.0689154070023212,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08556000000002,0,457.00000254313153,4275.6306,735.4210001627603,19.46253659981589,277.38899993896484,343.32315167584505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.07905069986975,0.06125830288149874,6.92271155666652,58.94682931223554,3.780146274357017,15.195776625722106,-0.001376743528529566,0,0,1211.479201655296,-0.06413990375550595,0.004446572546536724,0.0077232726,0,0,0,0 +1757,0.0027761926411370656,0.09222466252535721,0,0,2.1479236761828795,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09137,0,457.00000254313153,4275.9361,735.8930308024087,20.023540664144175,277.4419987996419,355.9418922631908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.09605153401685,0.06241561087003213,7.047674128999731,61.263692996283645,3.9984362659957116,15.704819120374072,-0.0016062007832844925,0,0,1255.6882474413671,0.06548148963396255,0.004446572546536724,0.0077232726,0,0,0,0 +1758,0.002777294803106484,0.09392133069143445,0,0,2.120611409560707,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09662,0,457.00000254313153,4276.2118,736.2069956461587,19.93400532918585,277.48900095621747,351.839749049401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.12904612223304,0.06359478302582648,6.995459767973222,60.43461244378834,3.951609319926169,15.514611629339965,-0.0018356580380394208,0,0,1241.8061904390202,0.143706674085902,0.004446572546536724,0.0077232726,0,0,0,0 +1759,0.0027783969650759127,0.09564921266504378,0,0,2.1172674310973973,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08372,0,457.00000254313153,4275.5338,736.0988871256509,20.14146621388408,277.5399983723958,351.50776272566816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.1650466918945,0.06479623241248693,7.045958325346581,60.44526305257086,3.8825594605141793,15.574013491239148,-0.0020651152927943475,0,0,1238.6934463843995,0.17156026373747926,0.004446572546536724,0.0077232726,0,0,0,0 +1760,0.002778490659421102,0.09740888269034213,0,0,2.127804104941503,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04022,0,457.00000254313153,4273.2473,735.484171549479,20.416797144500503,277.6050033569336,354.41828530815224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.19305165608716,0.06602037989732504,7.1280482855702605,61.0517247888764,3.870426966375627,15.819063930323424,-0.002294572547549277,0,0,1250.820917255113,0.18098830087140405,0.004446572546536724,0.0077232726,0,0,0,0 +1761,0.0030417996868854222,0.09920092557592508,0,0,2.1377569894528237,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09143,0,457.00000254313153,4275.9395,735.7630208333333,20.45599016898809,277.6639989217122,354.70796791995804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.22205098470045,0.06726765429878842,7.080969808277224,60.98422720066375,3.9477855453840847,15.691915882574792,-0.0025240298023042032,0,0,1256.5481216489331,0.1841585443588585,0.004446572546536724,0.0077232726,0,0,0,0 +1762,0.0030429071320477096,0.10102593688918185,0,0,2.101748108909336,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08127,0,457.00000254313153,4275.4052,736.3031056722004,20.451687381976814,277.7320022583008,349.24969722773284,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3203315e-8,0,0,0,0,0,1.5142326e-6,0,0,0,0,274.25004831949866,0.06853849253667572,7.072547337152548,60.0270893345371,3.8056067222316985,15.52593530614623,-0.002753487057059132,0,0,1235.176016491452,-0.7198788864817063,0.004446572546536724,0.0077232726,0,0,0,0 +1763,0.003044014577209992,0.10288452315422644,0,0,2.1070297579949187,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09332,0,457.00000254313153,4276.0386,737.1810404459634,20.54517933681397,277.7959976196289,350.0593349220327,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6788058e-7,0,0,0,0,0,1.2367808e-5,0,0,0,0,274.30205535888666,0.06983333978518949,7.067982584358078,60.127066272688566,3.846149431214471,15.526762487788051,-0.0029829443118140585,0,0,1242.4313344000275,-0.4399601212913509,0.004446572546536724,0.0077232726,0,0,0,0 +1764,0.0030451220223722732,0.10477730205346951,0,0,2.0715492266986275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1104,0,457.00000254313153,4276.9364,738.1030629475911,20.26091721016315,277.8590037027995,342.04461065627544,0,0,0,0,0,0,0,0,0,0,0,0,5.745499576104152e-9,1.2683334e-6,0,0,0,0,3.1742572836890304e-7,2.4998684e-5,0,0,0,0,274.3400497436523,0.0711526496288805,6.89874574004507,58.43835716681741,3.8290033683946536,14.958698984764437,-0.003212401566568987,0,0,1212.8230980159792,-0.03904732457783037,0.004446572546536724,0.0077232726,0,0,0,0 +1765,0.0030462294675345533,0.10670490263289913,0,0,2.123600021913132,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07293,0,457.00000254313153,4274.9668,738.9860382080077,20.91915499807752,277.9129994710286,352.9327257663859,0,0,0,0,0,0,0,0,0,0,0,0,4.596399853321979e-8,1.3852706e-6,0,0,0,0,2.539405793792563e-6,3.0313258e-5,0,0,0,0,274.37204742431635,0.07249688422153833,7.112382325014417,60.629457859488916,3.8781552227346054,15.679924105503577,-0.0034418588213239137,0,0,1250.7252029507404,0.10958166609721692,0.004446572546536724,0.0077232726,0,0,0,0 +1766,0.0033962667106833934,0.10866796551113769,0,0,2.1104599771353545,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07758,0,457.00000254313153,4275.2111,739.831085205078,20.853591900632743,277.95800018310547,349.3806450006132,0,0,0,0,0,0,0,0,0,0,0,0,9.192799588220169e-8,1.4212948e-6,0,0,0,0,5.078811454950483e-6,3.4371719e-5,0,0,0,0,274.3920516967773,0.07386651444808362,7.0362965307494045,59.85878462626717,3.884852897551278,15.358830814708325,-0.00367131607607884,0,0,1244.142076911234,-0.17848752670419268,0.004446572546536724,0.0077232726,0,0,0,0 +1767,0.003397374155845676,0.11066714309234521,0,0,2.112460701438636,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08566,0,457.00000254313153,4275.6359,740.7289835611978,20.999179455660748,278.0169982910156,349.61609899642303,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199471148095e-7,1.4573362e-6,0,0,0,0,7.618217182425724e-6,3.8432158e-5,0,0,0,0,274.42605082194007,0.07526202008951893,7.045382426953697,59.89102690050866,3.880476348727496,15.400564496222026,-0.0039007733308337685,0,0,1243.3080558862168,-0.23003967707403605,0.004446572546536724,0.0077232726,0,0,0,0 +1768,0.003398481601007963,0.1127030997830392,0,0,2.183132040203538,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04673,0,457.00000254313153,4273.5893,741.2220560709634,21.659452113517297,278.07799530029297,362.65368482709385,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599176440337e-7,1.4932143e-6,0,0,0,0,1.0157622909900965e-5,4.247379e-5,0,0,0,0,274.44704691569007,0.07668388999099586,7.223617820830233,62.365825552982606,4.039005153575375,16.063730202230957,-0.004130230585588698,0,0,1294.7054231244865,0.0295441238874522,0.004446572546536724,0.0077232726,0,0,0,0 +1769,0.0033995890461702483,0.11477651221290339,0,0,2.1376337416440134,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0767,0,457.00000254313153,4275.165,741.7470499674478,21.496335350339965,278.135004679362,355.02541845168975,0,0,0,0,0,0,0,0,0,0,0,0,2.298199900015637e-7,1.5293427e-6,0,0,0,0,1.2697028751063044e-5,4.6544254e-5,0,0,0,0,274.4680506388346,0.07813262223305735,7.157863703024064,60.95040360500106,3.9146198633161595,15.735094791574257,-0.004359687840343624,0,0,1273.3622210005092,0.1325346158749756,0.004446572546536724,0.0077232726,0,0,0,0 +1770,0.003400696491332528,0.11688806945965896,0,0,2.1393647387522594,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04544,0,457.00000254313153,4273.5216,742.3010152180989,21.63439757224449,278.1939977010091,355.3605475565106,0,0,0,0,0,0,0,0,0,0,0,0,2.757839894229619e-7,1.5651961e-6,0,0,0,0,1.5236434516433897e-5,5.0583038e-5,0,0,0,0,274.49504852294916,0.0796087243061151,7.155978283657899,60.96602720867275,3.9271229910537153,15.742715085469241,-0.004589145095098551,0,0,1277.4922103572562,0.03636234846097209,0.004446572546536724,0.0077232726,0,0,0,0 +1771,0.0037688917930248853,0.11903847327807247,0,0,2.1009097006210053,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07227,0,457.00000254313153,4274.9318,742.8711649576821,21.428921101329358,278.2700017293294,347.8619882938519,0,0,0,0,0,0,0,0,0,0,0,0,3.2174798529164644e-7,1.6013494e-6,0,0,0,0,1.7775840206013527e-5,5.4656378000000014e-5,0,0,0,0,274.5130513509114,0.08111271328822328,7.069218405010363,59.42424032933085,3.843192572805414,15.321977391799376,-0.0048186023498534795,0,0,1230.1282386704063,0.08889303627750589,0.004446572546536724,0.0077232726,0,0,0,0 +1772,0.00377000487949438,0.12122843833317697,0,0,2.0870775413423877,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08887,0,457.00000254313153,4275.8046,744.0189666748046,21.39461571539237,278.33399963378906,344.613473832749,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198589728254e-7,1.6374741e-6,0,0,0,0,2.0315245971384382e-5,5.8726423e-5,0,0,0,0,274.5310490926106,0.08264511602621083,7.043230561502576,58.72495294608385,3.8129800371340568,15.114183286240658,-0.0050480596046084064,0,0,1217.8363475826973,0.15110052169091734,0.004446572546536724,0.0077232726,0,0,0,0 +1773,0.003771117965963877,0.12345869243778378,0,0,2.0927556031478227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.06952,0,457.00000254313153,4274.7874,744.6629842122395,21.59523139318095,278.41199493408203,345.7768090889352,0,0,0,0,0,0,0,0,0,0,0,0,4.136759793974913e-7,1.6733555e-6,0,0,0,0,2.2854651888337685e-5,6.276843000000001e-5,0,0,0,0,274.54705047607416,0.08420646932023572,7.104503735011084,58.916568849809806,3.795742518659598,15.204663791112324,-0.005277516859363335,0,0,1220.6866453772807,0.17402255695782867,0.004446572546536724,0.0077232726,0,0,0,0 +1774,0.0037722310524333762,0.12572997679436368,0,0,2.1549007405251683,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0265,0,457.00000254313153,4272.5262,744.8780721028645,22.25970772945681,278.49099985758465,358.1035850352457,0,0,0,0,0,0,0,0,0,0,0,0,4.5963998474007894e-7,1.709014e-6,0,0,0,0,2.539405750212609e-5,6.678474599999999e-5,0,0,0,0,274.56504567464185,0.08579732011182588,7.347701469094086,61.31335787055999,3.8921060554545215,15.87559317662792,-0.005506974114118261,0,0,1266.4286163930858,0.18181443567658306,0.004446572546536724,0.0077232726,0,0,0,0 +1775,0.0037733441389028706,0.12804304624137816,0,0,2.148996596875075,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05246,0,457.00000254313153,4273.8905,745.3670603434243,22.200963290559795,278.58600362141925,355.04717285558434,0,0,0,0,0,0,0,0,0,0,0,0,5.056039735033361e-7,1.7452255e-6,0,0,0,0,2.7933463115914492e-5,7.0864778e-5,0,0,0,0,274.5790456136067,0.08741822567547253,7.269644819584187,60.54083046418634,3.9181029245147934,15.589135703603631,-0.0057364313688731865,0,0,1250.604503536799,0.18443600769588672,0.004446572546536724,0.0077232726,0,0,0,0 +1776,0.004161708793079992,0.13039866950414225,0,0,2.1121431315177817,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03943999999998,0,457.00000254313153,4273.2061,746.0480702718098,22.141942125209106,278.68299865722656,348.8985525123486,0,0,0,0,0,0,0,0,0,0,0,0,5.515679741089722e-7,1.7810977e-6,0,0,0,0,3.0472869184450246e-5,7.490574e-5,0,0,0,0,274.59404754638666,0.08906975381384338,7.261469977422546,59.38114479685163,3.777483547468073,15.370077015958627,-0.005965888623628117,0,0,1235.2601205170242,0.1853168155815639,0.004446572546536724,0.0077232726,0,0,0,0 +1777,0.004162821879549489,0.13279762945030274,0,0,2.170244783620918,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05273,0,457.00000254313153,4273.9048,746.7369181315103,22.568710059808843,278.7739969889323,357.54536101292035,0,0,0,0,0,0,0,0,0,0,0,0,5.975319747146083e-7,1.8172253e-6,0,0,0,0,3.301227479823865e-5,7.8976112e-5,0,0,0,0,274.6060485839843,0.09075248305668364,7.355973763265293,60.89349007083899,3.9379814138510616,15.673457529791746,-0.0061953458783830465,0,0,1262.6435516726208,0.1856126856704365,0.004446572546536724,0.0077232726,0,0,0,0 +1778,0.004163934966018991,0.13524072335001636,0,0,2.19800140223097,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04465,0,457.00000254313153,4273.48,746.7510579427083,22.856080929571224,278.86599985758465,362.75541346308773,0,0,0,0,0,0,0,0,0,0,0,0,6.434959753202444e-7,1.8531337e-6,0,0,0,0,3.5551680412027054e-5,8.3021224e-5,0,0,0,0,274.61804707845045,0.09246700286347481,7.434606066614661,61.78348694597739,4.021077006745745,15.899456247670447,-0.006424803133137972,0,0,1282.2802932337786,0.18571207513321009,0.004446572546536724,0.0077232726,0,0,0,0 +1779,0.004165048052488488,0.1377287631409144,0,0,2.1596157774386384,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03691,0,457.00000254313153,4273.0734,746.907023111979,22.820635694370733,278.9590021769206,355.9261715181252,0,0,0,0,0,0,0,0,0,0,0,0,6.894599664519774e-7,1.889034e-6,0,0,0,0,3.809108632898036e-5,8.706542400000001e-5,0,0,0,0,274.6290486653645,0.09421391382992209,7.418773457145868,60.500814881249,3.8656452035830986,15.627457862925702,-0.006654260387892898,0,0,1253.8091981813902,0.18574546502203013,0.004446572546536724,0.0077232726,0,0,0,0 +1780,0.004167169606582223,0.14026257569794193,0,0,2.18926758767753,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98817,0,457.00000254313153,4270.5109999999995,747.2310638427733,23.24616665378551,279.0540033976237,361.61404216072185,0,0,0,0,0,0,0,0,0,0,0,0,7.354239623206619e-7,1.9244033000000003e-6,0,0,0,0,4.063049224593366e-5,9.1048394e-5,0,0,0,0,274.639050801595,0.09599382789834296,7.569429120654667,61.61859566014493,3.8711479642945226,16.01838080056119,-0.0068837176426478274,0,0,1274.797708672403,0.18575668147078706,0.004446572546536724,0.0077232726,0,0,0,0 +1781,0.004659412904951052,0.14284300310816161,0,0,2.189441199921453,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04236000000002,0,457.00000254313153,4273.3596,747.7660471598306,23.249655483903965,279.14499918619794,360.09005386289476,0,0,0,0,0,0,0,0,0,0,0,0,7.81387962926298e-7,1.9610810000000003e-6,0,0,0,0,4.316989755655717e-5,9.5182182e-5,0,0,0,0,274.6470464070637,0.09780736857203022,7.505783352638315,61.19330647262292,3.9207239231952387,15.80695226528239,-0.007113174897402756,0,0,1277.5362524488116,0.18576045057214427,0.004446572546536724,0.0077232726,0,0,0,0 +1782,0.00466053247031568,0.14547090295061266,0,0,2.160522701160256,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03125,0,457.00000254313153,4272.7759,748.2900187174478,23.341758118914438,279.2430013020833,356.04655462228243,0,0,0,0,0,0,0,0,0,0,0,0,8.273519635319341e-7,1.9969148e-6,0,0,0,0,4.570930377667537e-5,9.9218691e-5,0,0,0,0,274.65404764811194,0.09965517113366511,7.519625787694825,60.48572145305894,3.7938381853855025,15.712820826828775,-0.007342632152157681,0,0,1261.0508762359207,0.18576171303887845,0.004446572546536724,0.0077232726,0,0,0,0 +1783,0.004662660503304549,0.14814714858131856,0,0,2.150725589743228,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0436,0,457.00000254313153,4273.4248,748.6270294189452,23.379916787266467,279.33999888102215,354.28692425367274,0,0,0,0,0,0,0,0,0,0,0,0,8.733159641375702e-7,2.0330816e-6,0,0,0,0,4.824870908729887e-5,1.0329359e-4,0,0,0,0,274.6580505371093,0.1015378828678566,7.496232273464098,60.10171272373322,3.7887381780047664,15.607260472139073,-0.007572089406912609,0,0,1258.691215611721,-1.6071113091275233,0.004446572546536724,0.0077232726,0,0,0,0 +1784,0.004663780068669177,0.15087262942353824,0,0,2.140542212443426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05531,0,457.00000254313153,4274.0405,748.9340260823567,23.29404230240209,279.4340006510417,350.5694962640399,0,0,0,0,0,0,0,0,0,0,0,0,9.192799552693032e-7,2.0692567e-6,0,0,0,0,5.078811530741708e-5,1.0736946e-4,0,0,0,0,274.6640548706054,0.10345616328788484,7.381156400424443,59.21225989324307,3.835360348467436,15.228141255684468,-0.007801546661667537,0,0,1241.0913844308948,-3.4875496425880166,0.004446572546536724,0.0077232726,0,0,0,0 +1785,0.004666993144531652,0.1536482512633568,0,0,2.1658396912622853,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02817,0,457.00000254313153,4272.6136,749.2520395914712,23.80210553725873,279.53200276692706,356.805125351722,0,0,0,0,0,0,0,0,0,0,0,0,9.652439748227455e-7,2.1048124e-6,0,0,0,0,5.332752031487568e-5,1.113739e-4,0,0,0,0,274.66904958089185,0.1054106843667286,7.538152323485599,60.494479362546464,3.8216491921096964,15.732711479772949,-0.00803100391642247,0,0,1266.5681498543852,-1.3227211965923305,0.004446572546536724,0.0077232726,0,0,0,0 +1786,0.005295379572172684,0.15647493655071468,0,0,2.158683484868033,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02684000000001,0,457.00000254313153,4272.5442,749.563980102539,23.831994998220747,279.6290003458659,354.20587729579694,0,0,0,0,0,0,0,0,0,0,0,0,1.011207928058866e-6,2.14077e-6,0,0,0,0,5.586692683815878e-5,1.1542471e-4,0,0,0,0,274.67605336507154,0.10740213077245707,7.4910842541914535,59.91468240707549,3.8263162148060967,15.467157122376957,-0.008260461171177394,0,0,1263.905903422694,-0.4872575238005176,0.004446572546536724,0.0077232726,0,0,0,0 +1787,0.005297507605161552,0.15935362470597414,0,0,2.18517929356942,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03415,0,457.00000254313153,4272.9283,749.6690826416014,24.17652817967206,279.72900136311847,358.7933682521366,0,0,0,0,0,0,0,0,0,0,0,0,1.0571719712970662e-6,2.1768802999999995e-6,0,0,0,0,5.840633214878229e-5,1.1949308e-4,0,0,0,0,274.6780471801757,0.10943120010806894,7.555171969721947,60.75335707654267,3.8851079963013144,15.71033145518615,-0.00848991842593232,0,0,1281.3314192960927,-0.09613776148013498,0.004446572546536724,0.0077232726,0,0,0,0 +1788,0.005298627170526176,0.16228527243212662,0,0,2.255223483707013,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9922,0,457.00000254313153,4270.7227,750.1610209147134,24.855928924260272,279.83099873860675,371.3570923496072,0,0,0,0,0,0,0,0,0,0,0,0,1.1031359387440414e-6,2.2120831e-6,0,0,0,0,6.094573836890049e-5,1.2345688999999995e-4,0,0,0,0,274.67704772949213,0.11149860315586238,7.730934740743885,63.12433046674855,4.038519355079948,16.343354337191045,-0.008719375680687248,0,0,1326.080725437415,0.0885310651741068,0.004446572546536724,0.0077232726,0,0,0,0 +1789,0.005300755203515047,0.16527085403274291,0,0,2.2076646319075275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0242,0,457.00000254313153,4272.405,750.6470489501952,24.717072836600927,279.93299865722656,363.4416445787676,0,0,0,0,0,0,0,0,0,0,0,0,1.149099944086629e-6,2.2486571e-6,0,0,0,0,6.348514337635909e-5,1.2757871e-4,0,0,0,0,274.6780522664387,0.11360506412642196,7.663516243062957,61.632292379507476,3.911091424062233,16.00040861482673,-0.008948832935442175,0,0,1300.9350554928549,0.1529858926017705,0.004446572546536724,0.0077232726,0,0,0,0 +1790,0.005302883236503912,0.16831136173577357,0,0,2.2164369958956196,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99139,0,457.00000254313153,4270.6805,751.1640370686848,24.942208573783375,280.03700256347656,364.880216392627,0,0,0,0,0,0,0,0,0,0,0,0,1.195063968377023e-6,2.2839743e-6,0,0,0,0,6.60245495964773e-5,1.3155567e-4,0,0,0,0,274.67705281575513,0.11575132091230927,7.680254371033305,61.84599180813865,3.9372032070765473,16.056743908676,-0.009178290190197105,0,0,1304.8004807748046,0.1747471382296157,0.004446572546536724,0.0077232726,0,0,0,0 +1791,0.005920182770600551,0.1714078060233054,0,0,2.172583556470899,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02128,0,457.00000254313153,4272.2515,751.7080535888671,24.778432167331218,280.14099884033203,356.6583861664455,0,0,0,0,0,0,0,0,0,0,0,0,1.2410279168761917e-6,2.320551e-6,0,0,0,0,6.85639552102657e-5,1.3567783e-4,0,0,0,0,274.6740468343098,0.11793812534654649,7.556943543496139,60.21873920423577,3.848117366332663,15.616449876377857,-0.00940774744495203,0,0,1284.7688041559788,0.18206199111341248,0.004446572546536724,0.0077232726,0,0,0,0 +1792,0.006098811288557544,0.17456121596738536,0,0,2.1616507929601063,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04466,0,457.00000254313153,4273.4807,752.2780151367186,24.818892944319888,280.2409973144531,354.25153761087523,0,0,0,0,0,0,0,0,0,0,0,0,1.286991960114392e-6,2.3570319e-6,0,0,0,0,7.110336143038391e-5,1.3978892e-4,0,0,0,0,274.6740468343098,0.12016624346598324,7.499155044750518,59.70568574139235,3.8521685509833974,15.44666919254658,-0.009637204699706955,0,0,1279.936623401035,0.18451935326733201,0.004446572546536724,0.0077232726,0,0,0,0 +1793,0.00610508215549315,0.17777263957202216,0,0,2.1532738339280715,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02605,0,457.00000254313153,4272.5025,752.6820678710936,25.03153140920904,280.33199818929035,353.37230933667234,0,0,0,0,0,0,0,0,0,0,0,0,1.3329559275613672e-6,2.3926083e-6,0,0,0,0,7.364276643784251e-5,1.4379579e-4,0,0,0,0,274.65905253092444,0.12243645577963895,7.518120739119681,59.58493949599902,3.7981346475872892,15.477979537880952,-0.009866661954461885,0,0,1276.6758910223705,0.18534481647704806,0.004446572546536724,0.0077232726,0,0,0,0 +1794,0.006092419359098298,0.18104314412147968,0,0,2.2138431157688125,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98417,0,457.00000254313153,4270.3009999999995,753.2520446777343,25.76753777758947,280.41500091552734,365.72191403060503,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199329039548e-6,2.4276195000000003e-6,0,0,0,0,7.618217265796072e-5,1.4773748e-4,0,0,0,0,274.6480560302734,0.1247495575421151,7.731535991085819,62.03822453198564,3.901984420737959,16.16525997375536,-0.010096119209216816,0,0,1323.3915439011364,0.18562210038833984,0.004446572546536724,0.0077232726,0,0,0,0 +1795,0.006095932503617563,0.18437381653497847,0,0,2.2026922727614937,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01093,0,457.00000254313153,4271.7076,753.8410644531249,25.77334281488129,280.4919967651367,362.19212268926736,0,0,0,0,0,0,0,0,0,0,0,0,1.4248839571943488e-6,2.4642054e-6,0,0,0,0,7.872157827174912e-5,1.5186068000000002e-4,0,0,0,0,274.63105265299475,0.12710635903217238,7.626169221355247,61.24273214189555,3.9191066213899726,15.883131946283404,-0.01032557646397174,0,0,1307.1177907303108,0.18571524277301074,0.004446572546536724,0.0077232726,0,0,0,0 +1796,0.006396386441099536,0.18776576372792214,0,0,2.1531546155773227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99978,0,457.00000254313153,4271.1214,754.5180511474608,25.74058406529963,280.5549952189128,354.4783029356138,0,0,0,0,0,0,0,0,0,0,0,0,1.4708479056935175e-6,2.4998985e-6,0,0,0,0,8.126098449186732e-5,1.55881e-4,0,0,0,0,274.6150538126627,0.1295076858365712,7.5818630966127785,59.864242428463136,3.749609514115161,15.62836980130604,-0.010555033718726669,0,0,1286.4148371024328,0.056138903072538514,0.004446572546536724,0.0077232726,0,0,0,0 +1797,0.006712627262260326,0.19122011297976946,0,0,2.2134750361996645,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01623,0,457.00000254313153,4271.986,755.2560729980468,26.23006225836581,280.6230010986328,363.54823719907995,0,0,0,0,0,0,0,0,0,0,0,0,1.5168119489317178e-6,2.5362748e-6,0,0,0,0,8.380038949932593e-5,1.5998003e-4,0,0,0,0,274.6010538736979,0.1319543791392746,7.636302581611899,61.4713769474247,3.9409741021501565,15.938653048219956,-0.010784490973481595,0,0,1322.1792002170396,-0.04279485298025665,0.004446572546536724,0.0077232726,0,0,0,0 +1798,0.006990649026827593,0.19473801230867469,0,0,2.2340562829342026,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0081,0,457.00000254313153,4271.559,756.1130472819009,26.546440122432795,280.68200429280597,367.6501027985187,0,0,0,0,0,0,0,0,0,0,0,0,1.562775925852596e-6,2.5720343e-6,0,0,0,0,8.633979571944413e-5,1.6400798999999998e-4,0,0,0,0,274.5840530395507,0.1344472960161143,7.671017715782881,62.197639026391784,4.015700360730371,16.12667274116127,-0.011013948228236524,0,0,1344.4943107799907,0.057545267787991024,0.004446572546536724,0.0077232726,0,0,0,0 +1799,0.007363034100288113,0.19832063085301946,0,0,2.2072921648839388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99068,0,457.00000254313153,4270.6431,756.9420471191405,26.706488169365446,280.7529983520508,363.4860469038741,0,0,0,0,0,0,0,0,0,0,0,0,1.6087399217212806e-6,2.6075323e-6,0,0,0,0,8.887920133323253e-5,1.6800578999999998e-4,0,0,0,0,274.5700480143229,0.13698730973502452,7.674462849763394,61.49623019706863,3.882903388386678,16.03734278779562,-0.011243405482991452,0,0,1332.7327654492608,0.14035414546167346,0.004446572546536724,0.0077232726,0,0,0,0 +1800,0.007853247961014498,0.20196915925996428,0,0,2.2159740553936684,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95838,0,457.00000254313153,4268.9449,757.7620493570962,27.056343077702923,280.83399709065753,365.8466368441075,0,0,0,0,0,0,0,0,0,0,0,0,1.6547039554855776e-6,2.6425936e-6,0,0,0,0,9.141860694702093e-5,1.7195328999999998e-4,0,0,0,0,274.54705047607416,0.13957531006194712,7.7406453217716145,62.00320914073126,3.867691465248536,16.242141697691363,-0.011477676635976337,0,0,1351.4018850842497,0.17040288697636866,0.004446572546536724,0.0077232726,0,0,0,0 +1801,0.0077923631049037195,0.2056848100811483,0,0,2.219401689900871,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01099,0,457.00000254313153,4271.7107,758.5840606689452,27.12488718150826,280.9189987182617,364.91706838648093,0,0,0,0,0,0,0,0,0,0,0,0,1.7006678945108433e-6,2.6800125e-6,0,0,0,0,9.395801256080934e-5,1.7617249e-4,0,0,0,0,274.5320510864257,0.1422122035725165,7.701186978248275,61.665647788634544,3.9218437626561613,16.063733218320355,-0.011716461343221001,0,0,1346.3126694277855,0.1805980962819972,0.004446572546536724,0.0077232726,0,0,0,0 +1802,0.010116776318211833,0.20946881817566826,0,0,2.2026926609955066,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99468,0,457.00000254313153,4270.8532,759.5070699055989,27.339784315547476,280.9939956665039,362.96270750693964,0,0,0,0,0,0,0,0,0,0,0,0,1.7466319377490436e-6,2.7155059e-6,0,0,0,0,9.649741878092755e-5,1.8016977e-4,0,0,0,0,274.5230509440104,0.14489891396963264,7.763054085257172,61.32615659022455,3.814905719116379,16.0758236117733,-0.011955246050465669,0,0,1365.7924593201149,0.18402739824539616,0.004446572546536724,0.0077232726,0,0,0,0 +1803,0.008763957676258299,0.2133224411204717,0,0,2.1800158282432216,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0108,0,457.00000254313153,4271.7009,760.5080464680989,27.320499854247753,281.07299550374347,358.65077997506035,0,0,0,0,0,0,0,0,0,0,0,0,1.7925959146699217e-6,2.7519421e-6,0,0,0,0,9.903682439471595e-5,1.8427573e-4,0,0,0,0,274.50505065917963,0.1476363824070339,7.720863756565482,60.404341817460505,3.773697198795284,15.83103087932591,-0.01219403075771034,0,0,1340.0232615916289,0.18517955647392584,0.004446572546536724,0.0077232726,0,0,0,0 +1804,0.009565590378222546,0.2172469596283,0,0,2.197298086929074,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0121,0,457.00000254313153,4271.7691,761.5410817464192,27.46474997353236,281.15699768066406,359.52869597563125,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599105386063e-6,2.7879493e-6,0,0,0,0,1.0157623000850435e-4,1.8833223e-4,0,0,0,0,274.4860483805338,0.1504255678189829,7.687086730342071,60.36470274902327,3.8714733047891783,15.676248110600966,-0.012432815464955008,0,0,1347.9906823261654,0.1855665834344882,0.004446572546536724,0.0077232726,0,0,0,0 +1805,0.009351564248471856,0.2212436779733203,0,0,2.215042398148324,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98963,0,457.00000254313153,4270.588,762.6710561116536,27.95079819780367,281.23399607340497,364.30370432998336,0,0,0,0,0,0,0,0,0,0,0,0,1.8845239443029034e-6,2.8232141e-6,0,0,0,0,1.0411563562229276e-4,1.9230319e-4,0,0,0,0,274.46604665120435,0.15326744725618094,7.835162208853216,61.31991145746931,3.843518327224849,16.094154796194182,-0.012671600172199671,0,0,1367.0219318674867,0.18569659271698705,0.004446572546536724,0.0077232726,0,0,0,0 +1806,0.009786482457224585,0.22531392442458775,0,0,2.222822584756122,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98239,0,457.00000254313153,4270.2074,763.799077351888,28.134372446801326,281.32200113932294,364.34322933574117,0,0,0,0,0,0,0,0,0,0,0,0,1.930487997015007e-6,2.8589339e-6,0,0,0,0,1.0665504184241097e-4,1.9632654e-4,0,0,0,0,274.44705200195307,0.15616301622802836,7.843541453054056,61.22344968188294,3.8770122853259146,15.951443167692844,-0.01291038487944434,0,0,1370.2972329819197,0.18574025872045344,0.004446572546536724,0.0077232726,0,0,0,0 +1807,0.01047013855726404,0.22945905168748248,0,0,2.2398719818574606,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99423,0,457.00000254313153,4270.8298,765.0220794677733,28.45865602722048,281.40900166829425,367.234932813752,0,0,0,0,0,0,0,0,0,0,0,0,1.976451850775144e-6,2.8952686e-6,0,0,0,0,1.0919444745619937e-4,2.0042079e-4,0,0,0,0,274.4280471801757,0.15911328905135125,7.906227328891799,61.706469136452746,3.9067413834348796,16.117564084518662,-0.013149169586689009,0,0,1389.725529173022,0.1857549291426783,0.004446572546536724,0.0077232726,0,0,0,0 +1808,0.0097850874703066491,0.23368043735326766,0,0,2.311936484434354,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95199,0,457.00000254313153,4268.6094,766.3190816243489,29.185241168144344,281.4959996541341,380.03527200344246,0,0,0,0,0,0,0,0,0,0,0,0,2.022415856117732e-6,2.9298066e-6,0,0,0,0,1.1173385246365797e-4,2.0430798e-4,0,0,0,0,274.41105143229163,0.16211929920571624,8.095303457182244,64.08195973155631,4.0703582727403695,16.731546899631116,-0.013387954293933677,0,0,1425.5751228095764,0.1857598571570931,0.004446572546536724,0.0077232726,0,0,0,0 +1809,0.009793704265605399,0.23797948435691788,0,0,2.267442640293564,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.979,0,457.00000254313153,4270.0292,767.6550801595051,29.128658126909023,281.56599680582684,372.8486855412818,0,0,0,0,0,0,0,0,0,0,0,0,2.068379899355932e-6,2.9666566e-6,0,0,0,0,1.1427325929010597e-4,2.084616e-4,0,0,0,0,274.3830540974934,0.16518209969545813,8.062766978193096,62.71002212876877,3.9400684962479615,16.440165993612062,-0.013626739001178344,0,0,1403.1315870359595,-3.365688134186352,0.004446572546536724,0.0077232726,0,0,0,0 +1810,0.010412685282412803,0.24235762144337059,0,0,2.279523715758953,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93988,0,457.00000254313153,4267.9729,769.1471150716145,29.42453241885191,281.6480026245117,374.7180119050739,0,0,0,0,0,0,0,0,0,0,0,0,2.1143439425941324e-6,3.001229600000001e-6,0,0,0,0,1.1681266429756458e-4,2.1235282e-4,0,0,0,0,274.3600463867187,0.16830276341854683,8.107079152206923,62.97351665449524,3.9615915998724422,16.525388081401466,-0.013865523708423014,0,0,1414.1945614469914,-2.313830028435405,0.004446572546536724,0.0077232726,0,0,0,0 +1811,0.011014901476711613,0.24681630364235504,0,0,2.252530235973812,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96903,0,457.00000254313153,4269.505,770.71804300944,29.40578755819684,281.71799723307294,369.2694863079116,0,0,0,0,0,0,0,0,0,0,0,0,2.1603079858323326e-6,3.0381873e-6,0,0,0,0,1.1935207051768278e-4,2.1651886e-4,0,0,0,0,274.3340479532877,0.17148238354242323,8.026948341108737,61.82960599561912,3.9187456997844685,16.18886557071267,-0.014104308415667684,0,0,1403.686743399878,-0.7123016214302859,0.004446572546536724,0.0077232726,0,0,0,0 +1812,0.011395911929257216,0.2513570127519567,0,0,2.228006934512883,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99029,0,457.00000254313153,4270.6225,772.2101186116536,29.420298496849927,281.7899983723958,364.5806874718721,0,0,0,0,0,0,0,0,0,0,0,0,2.20627183959247e-6,3.0749001e-6,0,0,0,0,1.2189147552514139e-4,2.2065669e-4,0,0,0,0,274.3040517171223,0.17472207388693542,7.965169636083453,60.85746996681422,3.875988658118611,15.929050627989685,-0.014343093122912353,0,0,1394.884132023951,-0.11856299687933905,0.004446572546536724,0.0077232726,0,0,0,0 +1813,0.011449080560791872,0.25598125783107806,0,0,2.2319968590304815,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97005,0,457.00000254313153,4269.5589,773.7009938557942,29.7784760297943,281.8580017089844,365.91388742059627,0,0,0,0,0,0,0,0,0,0,0,0,2.2522358449350577e-6,3.110098e-6,0,0,0,0,1.244308817452596e-4,2.2461994e-4,0,0,0,0,274.2670516967773,0.17802296931450928,8.032995952278533,61.13613019851266,3.844088557026285,16.064915035546967,-0.014581877830157016,0,0,1400.3255529877902,0.08341540584179588,0.004446572546536724,0.0077232726,0,0,0,0 +1814,0.011703715690574799,0.26069057570095894,0,0,2.291579691300283,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93883999999998,0,457.00000254313153,4267.9182,774.8281351725259,30.547851858136706,281.9310048421224,377.9855416791419,0,0,0,0,0,0,0,0,0,0,0,0,2.298199888173258e-6,3.1448486e-6,0,0,0,0,1.269702879653778e-4,2.2853159e-4,0,0,0,0,274.2310485839843,0.18138622612769045,8.255365791822651,63.491928228846156,3.9468734522371403,16.719923485538892,-0.014820662537401687,0,0,1449.119879767822,0.1513774178324831,0.004446572546536724,0.0077232726,0,0,0,0 +1815,0.012094116593579975,0.2654865314559236,0,0,2.2873246936294374,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94955,0,457.00000254313153,4268.4808,776.1400197347004,30.644339540877155,281.9919967651367,375.58066479556715,0,0,0,0,0,0,0,0,0,0,0,0,2.344163931411458e-6,3.1811772e-6,0,0,0,0,1.295096929728364e-4,2.3262515e-4,0,0,0,0,274.1810506184895,0.18481302247419681,8.178894557702046,62.871575698722964,3.9779982661109097,16.487496881933723,-0.015059447244646357,0,0,1442.8346042595695,-3.3418049013197435,0.004446572546536724,0.0077232726,0,0,0,0 +1816,0.013382562792105972,0.27037071898352416,0,0,2.2610219999980314,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93504,0,457.00000254313153,4267.7184,777.380157470703,30.799856219058316,282.0590006510417,371.6298227687404,0,0,0,0,0,0,0,0,0,0,0,0,2.3901279746496584e-6,3.2165261e-6,0,0,0,0,1.320490991929546e-4,2.3660577e-4,0,0,0,0,274.1430511474609,0.1883045587596232,8.188247476569973,62.14643251873565,3.866008444908697,16.395033850520726,-0.01538342230023426,0,0,1449.5176305014372,-4.328813791919775,0.004446572546536724,0.0077232726,0,0,0,0 +1817,0.013970105691413876,0.2753447614942531,0,0,2.2961805691271597,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95336,0,457.00000254313153,4268.6815,778.9910329182942,31.198395410102997,282.1270014444987,376.4429441283954,0,0,0,0,0,0,0,0,0,0,0,0,2.4360918284097957e-6,3.2531745000000007e-6,0,0,0,0,1.345885054130728e-4,2.4073619e-4,0,0,0,0,274.10705566406244,0.1918620580679428,8.22082538393248,62.94153100870699,3.9812025759726706,16.517228645555626,-0.015754264592881567,0,0,1472.005826655642,-1.519519756284862,0.004446572546536724,0.0077232726,0,0,0,0 +1818,0.01405484729122227,0.2804103120610006,0,0,2.335490104759264,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94012,0,457.00000254313153,4267.9855,780.3030497233071,31.68760831940507,282.1999994913737,383.9142096017897,0,0,0,0,0,0,0,0,0,0,0,0,2.4820558337523835e-6,3.2885565000000008e-6,0,0,0,0,1.371279092078718e-4,2.4472062e-4,0,0,0,0,274.07105000813795,0.19548676658995365,8.306817108343136,64.26768048931984,4.1092958455936754,16.849648882949314,-0.01612510688552888,0,0,1503.3307533939446,-0.39544551956287705,0.004446572546536724,0.0077232726,0,0,0,0 +1819,0.01412101034059915,0.28556905416843703,0,0,2.304129482409452,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92235,0,457.00000254313153,4267.0511,781.42605082194,31.84544135012051,282.27200571695965,378.33258383444644,0,0,0,0,0,0,0,0,0,0,0,0,2.5280198769905837e-6,3.3237292e-6,0,0,0,0,1.396673166406496e-4,2.4868094e-4,0,0,0,0,274.05004882812494,0.19917995405981814,8.302878858634369,63.25758927353961,3.9635191901767652,16.665198211860137,-0.016495949178176192,0,0,1480.3972085438447,-0.009852951526022849,0.004446572546536724,0.0077232726,0,0,0,0 +1820,0.014336733148844732,0.29082270227250195,0,0,2.32104876587155,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88909,0,457.00000254313153,4265.3029,782.4270782470702,32.333394668843965,282.3460006713867,382.4197482792824,0,0,0,0,0,0,0,0,0,0,0,0,2.573983920228784e-6,3.3582175000000007e-6,0,0,0,0,1.4220672286076783e-4,2.5256240000000004e-4,0,0,0,0,274.0070495605468,0.20294291419985105,8.41607797478937,64.0766432984354,3.958562233257077,16.963564409475474,-0.0168667914708235,0,0,1500.1274234919138,0.12003571660703966,0.004446572546536724,0.0077232726,0,0,0,0 +1821,0.014562069432518771,0.2961730023701861,0,0,2.3334837772109833,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93899,0,457.00000254313153,4267.9261,783.568130493164,32.52138863261211,282.4150034586589,382.89753410088764,0,0,0,0,0,0,0,0,0,0,0,0,2.6199479634669842e-6,3.396252e-6,0,0,0,0,1.4474612665556683e-4,2.5685255e-4,0,0,0,0,273.9700495402018,0.20677696517370964,8.396299170642942,63.987449087582284,4.029731628274296,16.860100322541292,-0.01723763376347081,0,0,1506.0001599344928,0.06037517262922151,0.004446572546536724,0.0077232726,0,0,0,0 +1822,0.015133379255268703,0.30162173257979613,0,0,2.3025151175170526,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92104,0,457.00000254313153,4266.9822,784.9560546874999,32.73451051970765,282.4769999186198,378.6708004400731,0,0,0,0,0,0,0,0,0,0,0,0,2.665911836174928e-6,3.4313761e-6,0,0,0,0,1.4728553408834463e-4,2.6080728e-4,0,0,0,0,273.9330520629882,0.21068345004814615,8.447852069179593,63.22724653024458,3.871133523422822,16.796298079496715,-0.017608476056118122,0,0,1499.4772542487524,0.0654325060086605,0.004446572546536724,0.0077232726,0,0,0,0 +1823,0.01603814933316958,0.30717070373189426,0,0,2.2824717646567367,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94096,0,457.00000254313153,4268.0293,786.2210744222004,32.75571508609182,282.54000091552734,374.3931813157347,0,0,0,0,0,0,0,0,0,0,0,0,2.7118758225697093e-6,3.4681677e-6,0,0,0,0,1.4982493909580322e-4,2.6495418e-4,0,0,0,0,273.89505004882807,0.21466373726348362,8.395261063519708,62.26076437261461,3.846052063384317,16.532712282905738,-0.01797931834876543,0,0,1499.6047524729552,-0.2700677190301451,0.004446572546536724,0.0077232726,0,0,0,0 +1824,0.01650100893154855,0.31282175997110956,0,0,2.310947810882604,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93425,0,457.00000254313153,4267.6765,787.4750722249348,33.05197869569693,282.6179962158203,377.040711415511,0,0,0,0,0,0,0,0,0,0,0,0,2.7578398658079095e-6,3.5037779e-6,0,0,0,0,1.5236434531592144e-4,2.6896492e-4,0,0,0,0,273.847048441569,0.21871922111297978,8.395833943142073,62.56343379800663,3.956577312910641,16.47072525551795,-0.018354944497914732,0,0,1512.9125520641012,-0.02966138430388376,0.004446572546536724,0.0077232726,0,0,0,0 +1825,0.01722266283199113,0.3185767793690206,0,0,2.3227031118101618,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91652,0,457.00000254313153,4266.7449,788.7140604654946,33.52533881675272,282.6759999593099,380.31674976188685,0,0,0,0,0,0,0,0,0,0,0,0,2.8038039090461098e-6,3.5388691e-6,0,0,0,0,1.5490375032338002e-4,2.7291587000000003e-4,0,0,0,0,273.78604634602857,0.22285132223124796,8.516236488505783,63.185789553909586,3.9190680646113942,16.80867752489523,-0.0187628709494922,0,0,1538.203336309689,0.11056506113548577,0.004446572546536724,0.0077232726,0,0,0,0 +1826,0.017382230465949125,0.32443767454831385,0,0,2.320968833647435,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90841,0,457.00000254313153,4266.3186,789.8310445149739,33.74810290483613,282.6929982503255,378.82226551401243,0,0,0,0,0,0,0,0,0,0,0,0,2.84976795228431e-6,3.574385500000001e-6,0,0,0,0,1.5744315654349825e-4,2.7691579e-4,0,0,0,0,273.72805023193354,0.22706148809190466,8.523620414150141,62.815941509777446,3.9116044827887784,16.620779080998844,-0.01917079740106968,0,0,1531.9828127801402,0.16037395519074635,0.004446572546536724,0.0077232726,0,0,0,0 +1827,0.01863987745517804,0.3304063933184248,0,0,2.3463377823547544,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91515,0,457.00000254313153,4266.6729,790.8700917561848,34.15505001036133,282.69299570719403,382.4773392117438,0,0,0,0,0,0,0,0,0,0,0,0,2.8957318249922537e-6,3.6105981e-6,0,0,0,0,1.5998256276361644e-4,2.8099598e-4,0,0,0,0,273.67705535888666,0.23135119351461897,8.585850324307904,63.38999010724139,3.9627935910031815,16.799919229980286,-0.01957872385264715,0,0,1566.0922143761854,0.17722825483510965,0.004446572546536724,0.0077232726,0,0,0,0 +1828,0.01882474558367928,0.33648491932287206,0,0,2.420774152646399,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.87222,0,457.00000254313153,4264.4159,791.9830423990884,34.99912851284667,282.708002726237,395.9754324666183,0,0,0,0,0,0,0,0,0,0,0,0,2.941695811387035e-6,3.6444139e-6,0,0,0,0,1.6252196777107505e-4,2.847999e-4,0,0,0,0,273.6410522460937,0.23572194118174164,8.801495946618267,65.90535948629658,4.116354977084998,17.480564495882128,-0.019986650304224626,0,0,1618.0207226022496,0.18289538758840385,0.004446572546536724,0.0077232726,0,0,0,0 +1829,0.01866419595593191,0.34267527269850206,0,0,2.379376332459752,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90025,0,457.00000254313153,4265.8895,793.0000712076821,35.0164051294104,282.76099650065106,389.1746282041487,0,0,0,0,0,0,0,0,0,0,0,0,2.9876598546252353e-6,3.6816572e-6,0,0,0,0,1.6506137277853364e-4,2.8899889e-4,0,0,0,0,273.6020533243815,0.24017526216469398,8.767229394465893,64.57289823663554,4.000350816006103,17.19408165401919,-0.020394576755802103,0,0,1597.2383021208498,0.18479929364776207,0.004446572546536724,0.0077232726,0,0,0,0 +1830,0.024933734074320084,0.3489795107468605,0,0,2.4031598307534434,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8667,0,457.00000254313153,4264.1256,793.9600270589192,35.40215533786149,282.8249994913737,392.10653286413964,0,0,0,0,0,0,0,0,0,0,0,0,3.0336238978634356e-6,3.7158665e-6,0,0,0,0,1.6760078021131145e-4,2.9284816e-4,0,0,0,0,273.5640513102213,0.24471271646030182,8.81880644628117,64.94076179033591,4.038430290401805,17.314251572854413,-0.020802503207379586,0,0,1705.903253614498,0.1854388472573092,0.004446572546536724,0.0077232726,0,0,0,0 +1831,0.02366017773383691,0.3553997286179164,0,0,2.3613471253941487,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89173999999998,0,457.00000254313153,4265.442,794.810073852539,35.37418704933364,282.8909962972005,384.20125072452805,0,0,0,0,0,0,0,0,0,0,0,0,3.079587941101636e-6,3.7529959e-6,0,0,0,0,1.7014018521877006e-4,2.97034e-4,0,0,0,0,273.52005004882807,0.24933589353726177,8.731507391555889,63.33682174076503,3.9474094529519688,16.877728667025877,-0.02121042965895705,0,0,1661.033130299973,-2.2447406013527207,0.004446572546536724,0.0077232726,0,0,0,0 +1832,0.023685925177870507,0.3619380600063637,0,0,2.3538632990393804,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90924,0,457.00000254313153,4266.362,795.5789845784504,35.562723492003244,282.9219970703125,382.363398002473,0,0,0,0,0,0,0,0,0,0,0,0,3.1255518138095795e-6,3.7897747e-6,0,0,0,0,1.7267959022622867e-4,3.0117945e-4,0,0,0,0,273.4440485636393,0.25404641289293156,8.712430008651964,62.87089656141417,3.946175052921808,16.738986754109227,-0.021652683906249543,0,0,1660.6105827511283,-1.4987682109213591,0.004446572546536724,0.0077232726,0,0,0,0 +1833,0.024226693427449875,0.3685966778607331,0,0,2.356959381290607,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89175,0,457.00000254313153,4265.4426,796.1241149902343,35.98083111069253,282.96599833170575,383.4537927943128,0,0,0,0,0,0,0,0,0,0,0,0,3.171515800204361e-6,3.824754e-6,0,0,0,0,1.7521899765900648e-4,3.0511746e-4,0,0,0,0,273.3720499674479,0.2588459246206396,8.790922956695082,63.06958370159948,3.905335593523844,16.86449692010886,-0.02214928975776249,0,0,1673.8749364362222,-0.4194845439142279,0.004446572546536724,0.0077232726,0,0,0,0 +1834,0.02470258560682817,0.3753777951055501,0,0,2.4124454659285632,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.854,0,457.00000254313153,4263.4584,797.0440368652343,36.761060965311756,283.0279998779297,394.1429023376304,0,0,0,0,0,0,0,0,0,0,0,0,3.217479843442561e-6,3.8586347e-6,0,0,0,0,1.7775840266646506e-4,3.089289e-4,0,0,0,0,273.2140502929687,0.2637361099877118,9.001420472247489,65.10499264081507,3.9890612936666887,17.454285340709294,-0.02264589560927544,0,0,1721.2693465918007,-0.01933718178498213,0.004446572546536724,0.0077232726,0,0,0,0 +1835,0.025273637508183497,0.38228366537677744,0,0,2.4054563746496176,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8698,0,457.00000254313153,4264.2887,797.8309682210286,36.88278972577237,283.08599853515625,390.5551391819573,0,0,0,0,0,0,0,0,0,0,0,0,3.2634438866807614e-6,3.8953332e-6,0,0,0,0,1.8029780767392367e-4,3.1306506e-4,0,0,0,0,273.07905069986975,0.2687186820244191,8.925548285908778,64.23544316564437,3.998558037017324,17.170486789731093,-0.023142501460788386,0,0,1718.2221250231016,-1.6633625299236003,0.004446572546536724,0.0077232726,0,0,0,0 +1836,0.029221069497854205,0.389316583770789,0,0,2.4041879560344257,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84901,0,457.00000254313153,4263.1961,798.1060129801431,37.24729235142932,283.1489995320638,389.978664389183,0,0,0,0,0,0,0,0,0,0,0,0,3.3094079299189616e-6,3.9300644999999986e-6,0,0,0,0,1.8283721389404187e-4,3.1697451e-4,0,0,0,0,272.9540532430012,0.2737953861240514,8.99301508642379,64.08016333132153,3.917445996447821,17.23500428603742,-0.02363910731230133,0,0,1783.0834194781103,-1.0677252796589791,0.004446572546536724,0.0077232726,0,0,0,0 +1837,0.02926039926471735,0.39647888760712147,0,0,2.4402101737227215,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.86946,0,457.00000254313153,4264.2707,798.115982055664,37.699806775525964,283.19800059000653,394.75650376781886,0,0,0,0,0,0,0,0,0,0,0,0,3.3553718026269053e-6,3.9670389e-6,0,0,0,0,1.853766201141601e-4,3.2114251e-4,0,0,0,0,272.8730545043945,0.2789680006543284,9.027059824256213,64.82242714481194,4.040217213334495,17.353835237590644,-0.02413571316381428,0,0,1798.0881971564909,-0.2640591208376881,0.004446572546536724,0.0077232726,0,0,0,0 +1838,0.030288692886915835,0.4037729572052591,0,0,2.477311745666847,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85548,0,457.00000254313153,4263.5362,797.937016805013,38.242109615281024,283.2530034383138,401.2961870125921,0,0,0,0,0,0,0,0,0,0,0,0,3.4013357890216867e-6,4.0021199e-6,0,0,0,0,1.8791602512161867e-4,3.2509225e-4,0,0,0,0,272.8660507202148,0.28423833758036093,9.122535894908143,65.94724656685626,4.142172855024622,17.64153847089682,-0.024632319015327232,0,0,1841.5431392468436,0.03335501919910246,0.004446572546536724,0.0077232726,0,0,0,0 +1839,0.031310556578042714,0.4112012166757089,0,0,2.4526381380788647,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83788,0,457.00000254313153,4262.6108,797.9220987955728,38.51117555601762,283.3109995524089,396.9116368644367,0,0,0,0,0,0,0,0,0,0,0,0,3.447299832259887e-6,4.0369741e-6,0,0,0,0,1.904554313417369e-4,3.2901587999999995e-4,0,0,0,0,272.85805002848304,0.2896082430993816,9.139608329107503,65.11131218043978,4.015311872419976,17.505176328593002,-0.025128924866840176,0,0,1843.0808236850567,0.13450763436493787,0.004446572546536724,0.0077232726,0,0,0,0 +1840,0.03354297409334304,0.41876613472562935,0,0,2.4438775219719657,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.80755,0,457.00000254313153,4261.0163,798.3870493570962,38.88776194382017,283.38200124104816,395.88091618643386,0,0,0,0,0,0,0,0,0,0,0,0,3.493263875498087e-6,4.0710717e-6,0,0,0,0,1.9299483634919548e-4,3.3285227e-4,0,0,0,0,272.7990519205729,0.29507959828746777,9.211326298909695,64.92298176034035,3.924269140081404,17.575132478856116,-0.025625530718353124,0,0,1874.1418275066233,0.16854263071970732,0.004446572546536724,0.0077232726,0,0,0,0 +1841,0.03460122912653735,0.42647022547928015,0,0,2.490489852137439,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84789,0,457.00000254313153,4263.137,799.060084025065,39.38162316774325,283.46699778238934,402.37274181683716,0,0,0,0,0,0,0,0,0,0,0,0,3.5392279187362874e-6,4.1092335e-6,0,0,0,0,1.955342437819733e-4,3.3715711000000003e-4,0,0,0,0,272.6890487670898,0.3006543197584808,9.249453201790956,65.9454451837981,4.089445548039454,17.745543570932366,-0.026145023202402858,0,0,1916.2642072737253,0.17997793561545353,0.004446572546536724,0.0077232726,0,0,0,0 +1842,0.03663997981024372,0.4343160493135666,0,0,2.4491704689870333,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84034,0,457.00000254313153,4262.7403,800.0011189778645,39.618728876147166,283.5279998779297,396.99512213680947,0,0,0,0,0,0,0,0,0,0,0,0,3.585191791444231e-6,4.1446349e-6,0,0,0,0,1.980736475767723e-4,3.411438e-4,0,0,0,0,272.58205413818354,0.3063343603354562,9.261381852099804,64.92167359416241,3.9361680613715975,17.590961717477978,-0.026688925256719682,0,0,1931.46250751484,0.18381929631950947,0.004446572546536724,0.0077232726,0,0,0,0 +1843,0.037450386379355084,0.44230621370895423,0,0,2.4111362709735427,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85726,0,457.00000254313153,4263.6297,801.4921824137368,39.653263822240504,283.56600189208984,389.73678087183737,0,0,0,0,0,0,0,0,0,0,0,0,3.6311557778390124e-6,4.1814844e-6,0,0,0,0,2.006130537968905e-4,3.4529738e-4,0,0,0,0,272.6070480346679,0.3121217097346764,9.185852611691464,63.424060913522,3.8460662124532643,17.218218321973847,-0.027232827311036496,0,0,1929.66039784958,0.18510965928096967,0.004446572546536724,0.0077232726,0,0,0,0 +1844,0.03984697293733208,0.45044337411603935,0,0,2.4438258963267856,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85117,0,457.00000254313153,4263.3094,803.6190745035806,40.04426499219912,283.60899861653644,392.7074417140548,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198210772127e-6,4.2169694e-6,0,0,0,0,2.0315246122966832e-4,3.4929371e-4,0,0,0,0,272.64805348714185,0.3180183952626677,9.178913525794204,63.76245430030204,3.965309781326317,17.1801218980614,-0.027776729365353317,0,0,1991.4456467268888,0.1855430999305122,0.004446572546536724,0.0077232726,0,0,0,0 +1845,0.04379212851318448,0.4587302348380611,0,0,2.4713718751387326,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83257,0,457.00000254313153,4262.3319,805.665069580078,40.66967666700967,283.72499593098956,397.85005599568376,0,0,0,0,0,0,0,0,0,0,0,0,3.723083864315413e-6,4.2516813e-6,0,0,0,0,2.0569186502446732e-4,3.5320089999999995e-4,0,0,0,0,272.64005025227857,0.32402648252636523,9.30790591121511,64.68556723249593,3.957876345089828,17.599363300735142,-0.02832063141967013,0,0,2080.3810922503694,0.18568870533529727,0.004446572546536724,0.0077232726,0,0,0,0 +1846,0.04419737434029645,0.46716954992964915,0,0,2.4711987422790394,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82423,0,457.00000254313153,4261.8933,807.2559560139973,40.975199745155024,283.8470001220703,395.9082621735635,0,0,0,0,0,0,0,0,0,0,0,0,3.769047907553613e-6,4.2869996e-6,0,0,0,0,2.0823127124458551e-4,3.5717802e-4,0,0,0,0,272.7300465901692,0.3301480761566941,9.302498358152864,64.24405152639606,3.9495415402063423,17.39887856615626,-0.02886453347398695,0,0,2072.290434339566,0.003535562113167848,0.004446572546536724,0.0077232726,0,0,0,0 +1847,0.047464619118496226,0.4757641241121063,0,0,2.521115228079649,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82758,0,457.00000254313153,4262.0693,807.9369812011718,41.61647167525484,283.9359995524089,402.98515747487147,0,0,0,0,0,0,0,0,0,0,0,0,3.815011799209363e-6,4.3230378e-6,0,0,0,0,2.107706774647037e-4,3.6123808e-4,0,0,0,0,272.8130518595377,0.33638532054582115,9.401962018636505,65.44362075203811,4.040566100417133,17.760514190415755,-0.029408435528303762,0,0,2154.230603343035,0.05986150819062035,0.004446572546536724,0.0077232726,0,0,0,0 +1848,0.04711780719580413,0.484516813705529,0,0,2.5773717998210097,0,1.4945332000000003e-5,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.78829,0,457.00000254313153,4260.004,808.0920410156249,42.449470629613735,284.0679982503255,413.5582929452125,0,0,0,0,0,0,0,0,0,0,0,0,3.860975766656338e-6,4.3563791e-6,0,0,0,0,2.1331008247216232e-4,3.6498734e-4,0,0,0,0,272.8850479125976,0.3427404005983347,9.573238566746884,67.39824375327751,4.1550564996331225,18.30069373024327,-0.029952337582620583,0,0,2204.416735349108,0.14052998907092631,0.004446572546536724,0.0077232726,0,0,0,0 +1849,0.04885144245331925,0.49343052757807715,0,0,2.5523940889282035,0,1.1956415e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.81678,0,457.00000254313153,4261.5016,808.2150014241536,42.63396460567202,284.20699818929035,408.9399341234632,0,0,0,0,0,0,0,0,0,0,0,0,3.9069398098945385e-6,4.3940071e-6,0,0,0,0,2.1584948869228052e-4,3.6923065e-4,0,0,0,0,272.9540456136067,0.3492155424966158,9.543358834157274,66.42707154065786,4.087020956416189,18.074786269748145,-0.03055301159093652,0,0,2224.8957196823785,0.1704345774563485,0.004446572546536724,0.0077232726,0,0,0,0 +1850,0.051384895328128635,0.502508228112706,0,0,2.5711244787427185,1.2887821417469543e-6,2.2473666e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93295,0,457.00000254313153,4267.6083,808.249028523763,43.142363653343445,284.3169987996419,411.4628743194825,0,0,0,0,0,0,0,0,0,0,0,0,3.952903853132739e-6,4.4373643e-6,0,0,0,0,2.1838889491239874e-4,3.7413425e-4,0,0,0,0,273.02104695638013,0.35581301448066943,9.604162557026681,66.78304875030415,4.096904208036784,18.22682478664064,-0.03125687970329533,0,0,2275.7767113113205,0.18074597510251067,0.004446572546536724,0.0077232726,0,0,0,0 +1851,0.051562308443334225,0.4946563668475162,0,0,2.5266925893124657,1.031025730450589e-5,2.4082745e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96457,0,457.00000254313153,4269.2706,808.4141082763671,43.151913707774774,284.4510040283203,402.2448152541545,0,0,0,0,0,0,0,0,0,0,0,0,3.998867896370939e-6,4.475348e-6,0,0,0,0,2.2092829991985732e-4,3.7841858e-4,0,0,0,0,273.0940500895182,0.3637934413745739,9.478471328343609,64.9500465918497,4.010397677989623,17.726300494053056,-0.03196074781565415,0,0,2256.8151473435455,0.18431279870175096,0.004446572546536724,0.0077232726,0,0,0,0 +1852,0.05364238006818437,0.5506858688322854,0,0,2.5076341601822123,2.0667359725242324e-5,2.4179888e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98199,0,457.00000254313153,4270.1861,809.1631317138671,43.34412933408961,284.59800211588544,397.49851999155004,0,0,0,0,0,0,0,0,0,0,0,0,4.044831939609139e-6,4.5124367e-6,0,0,0,0,2.2346770613997555e-4,3.825997e-4,0,0,0,0,273.16805013020826,0.3724242241558459,9.424520247380277,63.95789986488204,3.9584516109367627,17.47926154999162,-0.03266461592801298,0,0,2277.6344054535484,0.17954033954307605,0.004446572546536724,0.0077232726,0,0,0,0 +1853,0.05595234905591053,0.5486310857453621,0,0,2.5278117426961444,3.10744549096853e-5,2.4277992e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9693,0,457.00000254313153,4269.5191,810.404057820638,43.88435962687079,284.7309977213542,400.33880414377563,0,0,0,0,0,0,0,0,0,0,0,0,4.0907959828473395e-6,4.5475315000000004e-06,0,0,0,0,2.2600711114743413e-4,3.8655105e-4,0,0,0,0,273.264050801595,0.38010970895337787,9.493187126119388,64.44555417814735,3.9683262348472685,17.65848987916477,-0.0333684840403718,0,0,2326.4206162177375,0.015887254241176648,0.004446572546536724,0.0077232726,0,0,0,0 +1854,0.06589565461208481,0.5467397743701289,0,0,2.6100485430157265,4.1513251138288375e-5,2.4405566e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9226,0,457.00000254313153,4267.0641,811.7321421305337,44.80907906406347,284.8459981282552,413.39913150953396,0,0,0,0,0,0,0,0,0,0,0,0,4.136759950294315e-6,4.5802995999999986e-6,0,0,0,0,2.2854651736755235e-4,3.9023425e-4,0,0,0,0,273.3630498250325,0.3881180379413641,9.708926054401639,66.794695219375825,4.086374133078645,18.340431326430615,-0.034072352152730634,0,0,2535.1581947111176,-0.014112611956298624,0.004446572546536724,0.0077232726,0,0,0,0 +1855,0.0665605946226626,0.543758286864958,0,0,2.593264313364505,5.2002859774802346e-5,2.4547759e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95064,0,457.00000254313153,4268.5385,813.332036336263,44.957053896332596,284.9409993489583,408.11045388038974,0,0,0,0,0,0,0,0,0,0,0,0,4.182723614576389e-6,4.6181251e-6,0,0,0,0,2.3108592358767055e-4,3.945003e-4,0,0,0,0,273.4700495402018,0.39515493127386314,9.608218449939441,65.65156397841133,4.071657215875477,17.99164859504197,-0.03477622026508945,0,0,2531.882070736542,0.11294859461260336,0.004446572546536724,0.0077232726,0,0,0,0 +1856,0.07119571676282484,0.5497252657327152,0,0,2.5734300072332923,6.254957406781614e-5,2.4704559e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92886,0,457.00000254313153,4267.3934,814.7961222330728,45.32147323346321,285.04899342854816,404.85491673017987,0,0,0,0,0,0,0,0,0,0,0,0,4.228687657814589e-6,4.652537400000002e-6,0,0,0,0,2.3362532859512916e-4,3.98373e-4,0,0,0,0,273.5780461629231,0.40121361649916243,9.648967407833753,65.04253470413643,3.941501863088442,17.954118052235966,-0.03548008837744827,0,0,2598.3233502208395,0.12225561148477546,0.004446572546536724,0.0077232726,0,0,0,0 +1857,0.0718939473501754,0.55506091263013,0,0,2.636452577483439,7.315969560295343e-5,2.487597e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94976,0,457.00000254313153,4268.4922,816.4521179199218,46.01300693840024,285.20399983723956,414.6731918454804,0,0,0,0,0,0,0,0,0,0,0,0,4.2746517010527896e-06,4.6899086e-6,0,0,0,0,2.3616473481524736e-4,4.025867e-4,0,0,0,0,273.67504882812494,0.4075261897409684,9.717987448936368,66.72779876959439,4.1591410074143615,18.291565645975457,-0.03618395648980709,0,0,2646.996287168382,-0.044823331390134384,0.004446572546536724,0.0077232726,0,0,0,0 +1858,0.0730281599923091,0.5597369099004649,0,0,2.660122641883427,8.383950868543859e-5,2.5062e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93987,0,457.00000254313153,4267.9722,818.3551279703775,46.54057728835799,285.3690007527669,419.01402360882946,0,0,0,0,0,0,0,0,0,0,0,0,4.32061574429099e-6,4.7251299e-6,0,0,0,0,2.3870414103536555e-4,4.0655264e-4,0,0,0,0,273.7560501098632,0.41251745553966174,9.773872716558104,67.47060376347301,4.240872484906792,18.47927629769415,-0.03688782460216592,0,0,2684.853418420537,0.08628782582640311,0.004446572546536724,0.0077232726,0,0,0,0 +1859,0.07785211331835136,0.5673853687525405,0,0,2.6482032498787995,9.459531490089527e-5,2.5262647e-4,0.025000428936133783,0.024856862,34.05000019073486,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91443,0,457.00000254313153,4266.635,820.3960774739583,46.94962615479032,285.5449956258138,416.29974849312515,0,0,0,0,0,0,0,0,0,0,0,0,4.36657978752919e-6,4.7592242000000015e-6,0,0,0,0,2.4124354483016455e-4,4.1038866e-4,0,0,0,0,273.89505004882807,0.41699740802681257,9.815633788495665,66.95694733909333,4.119710728903347,18.449505984059194,-0.03759169271452474,0,0,2765.3515040429447,0.1535034293269437,0.004446572546536724,0.0077232726,0,0,0,0 +1860,0.08580578973181537,0.57190571026195,0,0,2.6484047305257548,1.0543340310202136e-4,2.5477918999999995e-4,0.025000428936133783,0.024856862,34.04999955495199,0.010810676000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89112,0,457.00000254313153,4265.4096,822.3121185302733,47.37614022716783,285.73899332682294,416.0639965860974,0,0,0,0,0,0,0,0,0,0,0,0,4.41254383076739e-6,4.7934342e-6,0,0,0,0,2.4378295105028278e-4,4.1423802e-4,0,0,0,0,274.05604807535804,0.42075257795117216,9.868462594270229,66.84953492841794,4.0609762626653305,18.52046800322501,-0.03829556082688356,0,0,2898.3777844170777,0.17676937373971446,0.004446572546536724,0.0077232726,0,0,0,0 +1861,0.09043757175448788,0.5830953457170218,0,0,2.670268662609388,1.1636007608710013e-4,2.5707803e-4,0.025000428936133783,0.024856862,34.04999987284342,0.010810691,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94268,0,457.00000254313153,4268.1198,824.399190266927,48.23468669993056,285.9330012003581,417.24413721688705,0,0,0,0,0,0,0,0,0,0,0,0,4.4585078740055906e-6,4.8330788e-6,0,0,0,0,2.463223596957202e-4,4.1871377e-4,0,0,0,0,274.2400461832682,0.42335986018473476,9.85713564571437,66.88575551122409,4.161212988464047,18.437119828737263,-0.03899942893924239,0,0,2971.2788427875175,0.11623622338672868,0.004446572546536724,0.0077232726,0,0,0,0 +1862,0.09186559088261632,0.5229565631081879,0,0,2.648564983127743,1.2738162210249962e-4,2.5952295e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93302,0,457.00000254313153,4267.612,827.0292002360025,49.13056211810905,286.1000010172526,414.16280656087633,0,0,0,0,0,0,0,0,0,0,0,0,4.504471917243791e-6,4.8682827e-6,0,0,0,0,2.488617634905192e-4,4.2267767e-4,0,0,0,0,274.4160486857096,0.4259683950031353,9.918881972367876,66.358960161654025,4.0424493589722115,18.41589320519377,-0.0397032970516012,0,0,2976.388043494933,-0.6237998311805185,0.004446572546536724,0.0077232726,0,0,0,0 +1863,0.09748855439032131,0.523134296634959,0,0,2.6292695144324947,1.3850433606421575e-4,2.6211454e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9509,0,457.00000254313153,4268.552,830.1662139892577,49.710222528727996,286.271001180013,408.1224194075052,0,0,0,0,0,0,0,0,0,0,0,0,4.550435960481991e-6,4.9055252e-6,0,0,0,0,2.5140116971063736e-4,4.2687657e-4,0,0,0,0,274.57104492187494,0.4284326826015117,9.86866585386286,65.00963540040021,3.9715193557400945,18.09141100618794,-0.04040716516396003,0,0,3064.446906560989,-0.2585729087354761,0.004446572546536724,0.0077232726,0,0,0,0 +1864,0.10472513857630868,0.5234813827246285,0,0,2.667755633655596,1.4973450258063772e-4,2.6485186e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94467,0,457.00000254313153,4268.2247,833.6041412353514,50.66032472624755,286.44200134277344,411.3310642864957,0,0,0,0,0,0,0,0,0,0,0,0,4.5963999279289664e-6,4.9409793e-6,0,0,0,0,2.539405759307556e-4,4.308693e-4,0,0,0,0,274.72005208333326,0.431014195621195,9.887134077064891,65.39906664161046,4.087458726366705,18.093817300572518,-0.041111033276318855,0,0,3193.218258651068,0.037999846461008915,0.004446572546536724,0.0077232726,0,0,0,0 +1865,0.11093631924882667,0.5242503840770768,0,0,2.720201066299487,1.6107846022350714e-4,2.6773567000000004e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010810706000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93017,0,457.00000254313153,4267.4623,836.8942057291665,51.98007509857536,286.6139958699544,420.4890049801762,0,0,0,0,0,0,0,0,0,0,0,0,4.642363592211041e-6,4.9757947000000005e-6,0,0,0,0,2.564799797255546e-4,4.3478845e-4,0,0,0,0,274.8800430297851,0.43343877181201473,10.07353477775766,67.10347351160692,4.157661467348705,18.66656837953943,-0.04181490138867768,0,0,3327.080175680617,0.1429288681419851,0.004446572546536724,0.0077232726,0,0,0,0 +1866,0.11473850842802115,0.5243863634262115,0,0,2.7102983366424596,1.7254241417200925e-4,2.707659e-4,0.025000428936133783,0.024856862,34.050100008646645,0.01081072,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92398,0,457.00000254313153,4267.1368,840.3622080485025,52.74699292831513,286.78099822998047,417.1011849314015,0,0,0,0,0,0,0,0,0,0,0,0,4.688327635449241e-6,5.0112266e-6,0,0,0,0,2.590193835203536e-4,4.387786599999999e-4,0,0,0,0,275.0480473836262,0.4357447764915154,10.064549123367675,66.37528156013664,4.133671177718162,18.394680194366018,-0.042518769501036495,0,0,3388.2580778414886,0.1744104739671799,0.004446572546536724,0.0077232726,0,0,0,0 +1867,0.12258204012181728,0.5228764549771724,0,0,2.761022670595916,1.8413277454480217e-4,2.7394196e-4,0.025000428936133783,0.024856862,34.05020046234131,0.010070544,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93094,0,457.00000254313153,4267.5026,843.995122273763,53.9410217812425,286.9550018310547,424.2969752987472,0,0,0,0,0,0,0,0,0,0,0,0,4.734291678687441e-6,5.0476689e-6,0,0,0,0,2.615587945911102e-4,4.428853e-4,0,0,0,0,275.21304829915357,0.43821064879605803,10.189133101169272,67.66026448741948,4.231180960949066,18.768356166586962,-0.04322263761339532,0,0,3565.4355350198875,0.18466917521307166,0.004446572546536724,0.0077232726,0,0,0,0 +1868,0.12560944174010713,0.5214153984123745,0,0,2.825140562350265,1.9585573196915598e-4,2.7726501e-4,0.025000428936133783,0.024856862,34.05019982655843,0.010072023,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89186,0,457.00000254313153,4265.4483,847.2491251627603,55.287673564162375,287.10500081380206,434.93022825982507,0,0,0,0,0,0,0,0,0,0,0,0,4.780255721925641e-6,5.0805177e-6,0,0,0,0,2.640981983859092e-4,4.465778e-4,0,0,0,0,275.39104461669916,0.44143425556535276,10.372200923081559,69.64729381366908,4.3633047348631795,19.301247569591883,-0.043926505725754135,0,0,3668.308732016809,0.188148666241629,0.004446572546536724,0.0077232726,0,0,0,0 +1869,0.13329152205114916,0.5197708976584334,0,0,2.7850043169774756,2.0771763714340827e-4,2.8073396e-4,0.025000428936133783,0.024856862,34.05020014444987,0.010810735,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93014,0,457.00000254313153,4267.4609,850.1300862630208,55.83359728305401,287.2249984741211,426.4036167290826,0,0,0,0,0,0,0,0,0,0,0,0,4.826219765163842e-6,5.1194221e-6,0,0,0,0,2.666376021807082e-4,4.5096821e-4,0,0,0,0,275.5610478719075,0.44390826602791195,10.311061269202527,67.9294955911712,4.245329954023304,18.888825035193033,-0.04497175592064998,0,0,3791.4627445920805,0.1894123650346563,0.004446572546536724,0.0077232726,0,0,0,0 +1870,0.13667438365279438,0.5186718603074794,0,0,2.831200782445544,2.197247971101509e-4,2.8434934e-4,0.025000428936133783,0.024856862,34.05020014444987,0.01081075,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89317,0,457.00000254313153,4265.5174,852.4350077311196,56.996592307003596,287.3549982706706,433.2287624497814,0,0,0,0,0,0,0,0,0,0,0,0,4.872183808402042e-6,5.152380400000002e-6,0,0,0,0,2.691770132514648e-4,4.5467331e-4,0,0,0,0,275.7200444539387,0.4466399609979402,10.441023971231417,69.12187693609928,4.323468650206145,19.258120747383764,-0.046232618783436236,0,0,3887.5293351931314,0.189950840385198,0.004446572546536724,0.0077232726,0,0,0,0 +1871,0.1452491611173251,0.5388152153139819,0,0,2.7978303472693873,2.31883451003038e-4,2.8811122e-4,0.025000428936133783,0.024856862,34.050299326578774,0.010071314,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92871,0,457.00000254313153,4267.3856,853.9930725097655,57.57401422057298,287.4940007527669,425.1606513202936,0,0,0,0,0,0,0,0,0,0,0,0,4.918147851640242e-6,5.1911213e-6,0,0,0,0,2.717164146209446e-4,4.590449e-4,0,0,0,0,275.9030456542968,0.45433593382870696,10.369497697943174,67.42862357960736,4.269404036940666,18.76177376623424,-0.047493481646222496,0,0,4016.0322788183066,0.19025039687154105,0.004446572546536724,0.0077232726,0,0,0,0 +1872,0.16034651313527334,0.6242378015462033,0,0,2.771292693837977,2.4419995800902444e-4,2.9201899e-4,0.025000428936133783,0.024856862,34.050299962361656,0.010810765,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95075,0,457.00000254313153,4268.5441,855.2329915364583,58.18710545429253,287.66399637858075,417.7442733570141,0,0,0,0,0,0,0,0,0,0,0,0,4.964111894878442e-6,5.228817700000002e-6,0,0,0,0,2.742558184157436e-4,4.6329615e-4,0,0,0,0,276.07804361979163,0.4708626218532089,10.330384237922804,65.84553711122807,4.17870981733127,18.365341648996967,-0.048754344509008736,0,0,4250.256915543303,0.18883431574024787,0.004446572546536724,0.0077232726,0,0,0,0 +1873,0.17009548212988732,0.635197775727867,0,0,2.8416338477805057,2.566805657503816e-4,2.9607326e-4,0.025000428936133783,0.024856862,34.050299962361656,0.01081078,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93223,0,457.00000254313153,4267.5705,856.1681976318358,59.62016165313301,287.86000061035156,429.28028904113773,0,0,0,0,0,0,0,0,0,0,0,0,5.010075938116643e-6,5.2632224000000015e-6,0,0,0,0,2.7679522706118104e-4,4.6716788e-4,0,0,0,0,276.25004831949866,0.4938942498998885,10.56453511561426,67.99437045089431,4.309987323977962,18.937298904886617,-0.050015207371795004,0,0,4473.449627744114,-0.0158300305583035,0.004446572546536724,0.0077232726,0,0,0,0 +1874,0.16101264250188482,0.6424589219115043,0,0,2.8680589101535006,2.693315764190629e-4,3.0027407000000005e-4,0.025000428936133783,0.024856862,34.05039978027344,0.010810794,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88493,0,457.00000254313153,4265.0843,857.8200785319009,60.88850035180588,288.0609995524089,435.8041800080444,0,0,0,0,0,0,0,0,0,0,0,0,5.05603994345923e-6,5.295217800000002e-6,0,0,0,0,2.793346332812992e-4,4.7076201e-4,0,0,0,0,276.4160537719726,0.5217358117405276,10.751611012739497,69.34908007240699,4.369596917606238,19.304810723709583,-0.051276070234581236,0,0,4382.176552473297,0.10137566545666454,0.004446572546536724,0.0077232726,0,0,0,0 +1875,0.17325906778674766,0.6503215087418923,0,0,2.8334891051221005,2.821592812930855e-4,3.046214e-4,0.025000428936133783,0.024856862,34.05040009816488,0.010810809,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5065,859.4690653483071,61.447170295790954,288.29100290934247,426.89349545310597,0,0,0,0,0,0,0,0,0,0,0,0,5.102003569845692e-6,5.3349387000000006e-6,0,0,0,0,2.818740370760982e-4,4.7524653e-4,0,0,0,0,276.5850474039713,0.5521636138855727,10.663545228962466,67.4820885998621,4.311546235769538,18.753876090158617,-0.0525369330973675,0,0,4552.510356024947,0.11898633163405398,0.004446572546536724,0.0077232726,0,0,0,0 +1876,0.17593823238514505,0.6580403904252425,0,0,2.8431252665224327,2.9516999347833917e-4,3.0911468e-4,0.025000428936133783,0.024856862,34.05049991607666,0.010810823999999998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90175,0,457.00000254313153,4265.968,860.8591054280598,62.60294810766919,288.5199966430664,429.4805477313967,0,0,0,0,0,0,0,0,0,0,0,0,5.1479676130838925e-6,5.3683812e-6,0,0,0,0,2.8441344572153565e-4,4.790074400000001e-4,0,0,0,0,276.7350514729817,0.5828831599457934,10.831893028061607,68.07266489194261,4.273649915248981,19.002140660093694,-0.053797795960153764,0,0,4640.322706228576,0.13010732358702753,0.004446572546536724,0.0077232726,0,0,0,0 +1877,0.17982534828505667,0.6646940864903487,0,0,2.881579172917859,3.083699945515643e-4,3.1375456e-4,0.025000428936133783,0.024856862,34.050500551859535,0.010810839,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92824,0,457.00000254313153,4267.3608,862.3791147867837,63.64524258623489,288.7520014444987,434.0603459961696,0,0,0,0,0,0,0,0,0,0,0,0,5.193931656322093e-6,5.406519099999998e-6,0,0,0,0,2.869528519416538e-4,4.833095099999999e-4,0,0,0,0,276.86404927571607,0.6122267058453676,10.897021601068372,68.7783807279057,4.413505723589701,19.089059096309025,-0.05504429988349307,0,0,4762.60475525006,0.1696072468545434,0.004446572546536724,0.0077232726,0,0,0,0 +1878,0.18077698311132545,0.6715857617280921,0,0,2.905036494302108,3.2176555153758574e-4,3.1854156e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810853,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92472,0,457.00000254313153,4267.1759,864.1391499837239,64.71120382869425,288.9930013020833,437.9599497693981,0,0,0,0,0,0,0,0,0,0,0,0,5.239895699560293e-6,5.4421234e-6,0,0,0,0,2.8949225331113365e-4,4.8731959e-4,0,0,0,0,277.0020446777343,0.637718423578712,10.998945344161125,69.46979574102357,4.5031308409529425,19.22817130569276,-0.056156826594968116,0,0,4806.3164952803945,0.1844107426763875,0.004446572546536724,0.0077232726,0,0,0,0 +1879,0.1931754383145236,0.6786152944896107,0,0,2.9292586401809286,3.3536301149676245e-4,3.234746e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810868,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88028,0,457.00000254313153,4264.8396,866.2831624348958,65.90279841258594,289.2210006713867,440.8517590737373,0,0,0,0,0,0,0,0,0,0,0,0,5.285859742798493e-6,5.474183400000002e-6,0,0,0,0,2.920316595312518e-4,4.9092116e-4,0,0,0,0,277.1330490112304,0.6589267771109586,11.181505690638433,70.08572001647862,4.44715839638976,19.487315389320713,-0.05726935330644314,0,0,5054.634872921024,0.18865930412898813,0.004446572546536724,0.0077232726,0,0,0,0 +1880,0.2193400047887077,0.6848574235612915,0,0,2.921172062464678,3.4916867055774975e-4,3.2855365e-4,0.025000428936133783,0.024856862,34.05069955190023,0.010810144,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88174,0,457.00000254313153,4264.9162,868.6961059570311,66.66498430210106,289.4699986775716,437.365727538686,0,0,0,0,0,0,0,0,0,0,0,0,5.3318237860366935e-6,5.5101807e-6,0,0,0,0,2.9457106817668927e-4,4.9497652e-4,0,0,0,0,277.26505025227857,0.6727777764677255,11.210570347061365,69.18788119083449,4.386751757292326,19.32682128004249,-0.05838188001791818,0,0,5476.691840909654,0.15238702978073307,0.004446572546536724,0.0077232726,0,0,0,0 +1881,0.2252231799496281,0.7226262033549594,0,0,2.9628772256083247,3.6318877634281915e-4,3.3377873e-4,0.025000428936133783,0.024856862,34.05069955190023,0.011551088,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92914,0,457.00000254313153,4267.4079,870.9841257731118,67.70670094788971,289.7369969685872,440.9737248225101,0,0,0,0,0,0,0,0,0,0,0,0,5.377787829274894e-6,5.5502216e-6,0,0,0,0,2.9711047197148827e-4,4.9949792e-4,0,0,0,0,277.37404123942054,0.6806367037591056,11.274748464221961,69.70896888997471,4.531822010702024,19.327166243417963,-0.059494406729393226,0,0,5655.562652963553,0.14804251864424234,0.004446572546536724,0.0077232726,0,0,0,0 +1882,0.23694899687620047,0.6743786080130141,0,0,2.9443458510058322,3.774296346819028e-4,3.3915105e-4,0.025000428936133783,0.024856862,34.05080000559489,0.011550379,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92759,0,457.00000254313153,4267.3266,873.2501373291014,68.57787523920716,290.0190022786458,436.0786301154982,0,0,0,0,0,0,0,0,0,0,0,0,5.423751872513094e-6,5.585991e-6,0,0,0,0,2.9964987819160643e-4,5.035270200000001e-4,0,0,0,0,277.4860509236653,0.6892556813322581,11.343220962302505,68.75016748711803,4.409841205149023,19.158162285322444,-0.06060693344086825,0,0,5878.580768497191,0.1874362016564929,0.004446572546536724,0.0077232726,0,0,0,0 +1883,0.25089467695775003,0.6814540279475114,0,0,2.918084088079926,3.918974956225914e-4,3.4467464999999995e-4,0.025000428936133783,0.024856862,34.05090045928955,0.010810957,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95902,0,457.00000254313153,4268.979,875.6031494140624,69.18597910133236,290.26300048828125,428.22120343049505,0,0,0,0,0,0,0,0,0,0,0,0,5.469715915751294e-6,5.6247084000000005e-6,0,0,0,0,3.021892868370439e-4,5.0789587e-4,0,0,0,0,277.5910491943359,0.6958725524070566,11.301072778092927,67.06254475755776,4.3447075949809335,18.709361365312684,-0.06171946015234329,0,0,6136.7508152909495,-0.3245940535795368,0.004446572546536724,0.0077232726,0,0,0,0 +1884,0.2528499020827967,0.6846835417141454,0,0,2.9781587398376455,4.065987474556702e-4,3.503391000000001e-4,0.025000428936133783,0.024856862,34.05100059509277,0.010810972,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93535,0,457.00000254313153,4267.7345,878.1482035319009,70.48060514662333,290.5119984944661,436.5183491794865,0,0,0,0,0,0,0,0,0,0,0,0,5.515679921093882e-6,5.6585019e-6,0,0,0,0,3.047286906318429e-4,5.1169724e-4,0,0,0,0,277.69505055745435,0.7016904496772703,11.463778568830996,68.59402326244992,4.507763748192013,19.009889976177178,-0.06283198686381833,0,0,6243.347604744989,-1.8150618607595548,0.004446572546536724,0.0077232726,0,0,0,0 +1885,0.25444299147687327,0.6908637814371342,0,0,2.987658653242268,4.215400040266104e-4,3.5614909e-4,0.025000428936133783,0.024856862,34.05099964141846,0.011550438,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93798,0,457.00000254313153,4267.8727,881.0251312255858,71.60546241341835,290.7969970703125,438.1415385380004,0,0,0,0,0,0,0,0,0,0,0,0,5.561643547480344e-6,5.6946520999999985e-6,0,0,0,0,3.0726809200132266e-4,5.1577023e-4,0,0,0,0,277.79504903157545,0.7078908709316327,11.603153567015962,68.94977818435397,4.492846370676968,19.20686906057728,-0.06394451357529336,0,0,6294.938313202323,-0.6420197136906102,0.004446572546536724,0.0077232726,0,0,0,0 +1886,0.25832612706643443,0.6919349119161695,0,0,3.0001483762763606,4.3672676110873e-4,3.621046e-4,0.025000428936133783,0.024856862,34.05110009511312,0.011550467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9357,0,457.00000254313153,4267.7531,883.8392181396483,72.58254388217381,291.09999593098956,437.73332685492454,0,0,0,0,0,0,0,0,0,0,0,0,5.607607590718544e-6,5.7303567999999985e-6,0,0,0,0,3.0980750307207927e-4,5.1979186e-4,0,0,0,0,277.8850479125976,0.7126327786706089,11.675797474801131,68.86926284379062,4.534738954197774,19.067819582095456,-0.06519373004483152,0,0,6353.02729378205,-0.0852453820278208,0.004446572546536724,0.0077232726,0,0,0,0 +1887,0.27097332569304644,0.6918854634202647,0,0,3.0445900747103636,4.521660230238922e-4,3.6821147e-4,0.025000428936133783,0.024856862,34.05120054880778,0.011550497,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94903,0,457.00000254313153,4268.4538,886.933135986328,73.77743063310328,291.4139989217122,443.10773813765155,0,0,0,0,0,0,0,0,0,0,0,0,5.653571633956744e-6,5.7675003e-6,0,0,0,0,3.1234690686687827e-4,5.2397934e-4,0,0,0,0,277.99504597981763,0.7182166601192096,11.825655230740924,69.79403942185417,4.618994873829845,19.328453638145426,-0.06654164466411291,0,0,6605.766964967214,-0.025019474885791315,0.004446572546536724,0.0077232726,0,0,0,0 +1888,0.2990240690559838,0.6915397836551626,0,0,3.1234840519185503,4.6786327826945734e-4,3.7446389e-4,0.025000428936133783,0.024856862,34.051300366719566,0.011550526,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91459,0,457.00000254313153,4266.6433,889.9262135823567,75.11035553057255,291.76300048828125,452.50230797053916,0,0,0,0,0,0,0,0,0,0,0,0,5.699535677194945e-6,5.8002124e-6,0,0,0,0,3.1488631066167727e-4,5.2765607e-4,0,0,0,0,278.08005015055335,0.724224234516275,12.041623292379388,71.4272374400245,4.7418969174520385,19.785746426186453,-0.06788955928339427,0,0,7182.264808724919,0.13500730253153945,0.004446572546536724,0.0077232726,0,0,0,0 +1889,0.2993958898436063,0.6910492076322109,0,0,3.104668337723354,4.838260307830448e-4,3.8086186e-4,0.025000428936133783,0.024856862,34.05139986673991,0.011550556000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95877,0,457.00000254313153,4268.9657,893.1561584472655,75.9296001940716,292.1130015055339,448.69086963270234,0,0,0,0,0,0,0,0,0,0,0,0,5.745499720433145e-6,5.840258e-6,0,0,0,0,3.174257217324339e-4,5.3217801e-4,0,0,0,0,278.191047668457,0.730764111829077,12.075327913087893,70.65718771639492,4.727164288354711,19.55277705492912,-0.06923747390267565,0,0,7178.592239188243,0.1858189092422608,0.004446572546536724,0.0077232726,0,0,0,0 +1890,0.32528597028265194,0.6877629398180971,0,0,3.159194948993984,5.000592888488123e-4,3.8741134e-4,0.025000428936133783,0.024856862,34.05150000254313,0.011550586000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9317,0,457.00000254313153,4267.5425,896.3831837972004,77.07862319106741,292.45799763997394,453.89903232867,0,0,0,0,0,0,0,0,0,0,0,0,5.791463763671345e-6,5.8736235e-6,0,0,0,0,3.199651255272329e-4,5.359300400000001e-4,0,0,0,0,278.2730509440104,0.7556615541830685,12.221880708940976,71.47659716602703,4.8079166884923445,19.778064862780106,-0.07058538852195702,0,0,7728.431301023277,0.07030158718899164,0.004446572546536724,0.0077232726,0,0,0,0 +1891,0.34045390881796567,0.6844114067588241,0,0,3.125180696005549,5.165705564043795e-4,3.9410043e-4,0.025000428936133783,0.024856862,34.051600774129234,0.011550615,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97344,0,457.00000254313153,4269.7366,899.666264851888,77.68229292407419,292.8159993489583,444.382731801162,0,0,0,0,0,0,0,0,0,0,0,0,5.837427806909545e-6,5.9135147000000014e-06,0,0,0,0,3.225045293220319e-4,5.4043419e-4,0,0,0,0,278.34705098470045,0.7669960073050373,12.159640198474342,69.53172190504567,4.743306066350147,19.199673026982396,-0.0719333031412384,0,0,8025.900172756182,-0.1023137574833239,0.004446572546536724,0.0077232726,0,0,0,0 +1892,0.3429460922092071,0.698931319975308,0,0,3.1105283647598623,5.333653001192337e-4,4.0093536e-4,0.025000428936133783,0.024856862,34.05169995625814,0.011550645,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99082,0,457.00000254313153,4270.6504,903.534194946289,78.54558088981553,293.16699981689453,439.8086590465999,0,0,0,0,0,0,0,0,0,0,0,0,5.8833918501477456e-6,5.951126000000002e-6,0,0,0,0,3.250439355421501e-4,5.446755599999999e-4,0,0,0,0,278.44204457600904,0.77827246793364,12.199146519671457,68.66391958974123,4.69568230481039,18.949521757077395,-0.07328121776051978,0,0,8166.143155148587,0.07763085595364166,0.004446572546536724,0.0077232726,0,0,0,0 +1893,0.3378703897546753,0.6997131247828723,0,0,3.1254308946941567,5.504500586539507e-4,4.079215e-4,0.025000428936133783,0.024856862,34.05179977416992,0.012290126,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97993999999998,0,457.00000254313153,4270.0783,907.2741190592446,79.81501328862245,293.4769999186198,443.3506557921903,0,0,0,0,0,0,0,0,0,0,0,0,5.929355893385946e-6,5.986023799999998e-6,0,0,0,0,3.275833417622683e-4,5.4860421e-4,0,0,0,0,278.55404917399085,0.7897298228538592,12.379453862745622,69.48705801909811,4.715239732570137,19.178456201207396,-0.07462913237980115,0,0,8120.644734612286,0.1864156024276895,0.004446572546536724,0.0077232726,0,0,0,0 +1894,0.35112450392061667,0.7155813956083555,0,0,3.205110617860807,5.678308225469664e-4,4.1505353e-4,0.025000428936133783,0.024856862,34.051900227864586,0.01229017,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5063,910.4781341552733,81.38345626276687,293.7909978230794,456.69603250902094,0,0,0,0,0,0,0,0,0,0,0,0,5.975319936624146e-6,6.017190099999998e-6,0,0,0,0,3.301227455570673e-4,5.5210279e-4,0,0,0,0,278.6890487670898,0.8020046367832572,12.66238559332695,71.90804380664727,4.8889485381651845,19.8361284777738,-0.07597704699908253,0,0,8411.388473243653,0.19284299907478186,0.004446572546536724,0.0077232726,0,0,0,0 +1895,0.37171203675260484,0.7209450963563064,0,0,3.216163844950097,5.855145864188671e-4,4.2233098e-4,0.025000428936133783,0.024856862,34.05209986368815,0.011550763,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4251,913.2259826660155,82.23116014335764,294.0789972941081,453.5518850499526,0,0,0,0,0,0,0,0,0,0,0,0,6.0212835251149954e-6,6.056690099999998e-6,0,0,0,0,3.326621542025047e-4,5.5656184e-4,0,0,0,0,278.83104960123694,0.8128876331059834,12.672444225617587,71.15178658195539,4.91917125426521,19.522500482390267,-0.07728033747142447,0,0,8846.667009900264,0.1930910447676056,0.004446572546536724,0.0077232726,0,0,0,0 +1896,0.38367481768429307,0.7234407884813598,0,0,3.170768746502162,6.03506836341694e-4,4.2976003e-4,0.025000428936133783,0.024856862,34.05219968159994,0.012290244,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4252,914.7710927327473,83.00005426186281,294.36499786376953,444.0944277814877,0,0,0,0,0,0,0,0,0,0,0,0,6.067247568353196e-6,6.0926241e-6,0,0,0,0,3.352015604226229e-4,5.606100700000001e-4,0,0,0,0,278.9390513102213,0.824102858385605,12.720593693458584,69.42267705803128,4.733994615392683,19.177287716924887,-0.07856237646782513,0,0,9089.59843267371,0.19318346141929987,0.004446572546536724,0.0077232726,0,0,0,0 +1897,0.4019811637589425,0.725878270524141,0,0,3.2687021119074915,6.218145863385871e-4,4.373290900000001e-4,0.025000428936133783,0.024856862,34.052300453186035,0.012290288,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99693,0,457.00000254313153,4270.9718,916.2742818196614,84.39253635318506,294.64599863688153,456.4122054736632,0,0,0,0,0,0,0,0,0,0,0,0,6.113211611591396e-6,6.1314997000000015e-6,0,0,0,0,3.377409642174219e-4,5.6499701e-4,0,0,0,0,279.051045735677,0.8346371271895597,12.890217099416494,71.54673250412924,5.026760132357157,19.58218287923395,-0.07984441546422576,0,0,9520.393854224154,0.19322441190367687,0.004446572546536724,0.0077232726,0,0,0,0 +1898,0.4233042102069517,0.728376569617105,0,0,3.2968702587691077,6.404438560518125e-4,4.4504943e-4,0.025000428936133783,0.02485618,34.052499771118164,0.012290333,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01512,0,457.00000254313153,4271.9281,919.0172271728514,85.36127162189973,294.95399983723956,456.6037673563168,0,0,0,0,0,0,0,0,0,0,0,0,6.159175654829596e-6,6.1692876e-6,0,0,0,0,3.402803704375401e-4,5.692587400000001e-4,0,0,0,0,279.1630477905273,0.8443053161523663,12.959068227762758,71.45665951589594,5.0980295350528255,19.501681112942983,-0.0811264544606264,0,0,10010.09583228873,0.19324438193560026,0.004446572546536724,0.0077232356,0,0,0,0 +1899,0.46331719155147416,0.7285561578617307,0,0,3.35583134512378,6.594006069159756e-4,4.856732599999999e-4,0.025000428936133783,0.024857703,34.05260022481283,0.012290377,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97653,0,457.00000254313153,4269.8993,922.2811838785806,86.70543386559314,295.2999979654948,462.1035993919434,0,0,0,0,0,0,0,0,0,0,0,0,6.205139698067796e-6,6.2013454e-6,0,0,0,0,3.4281977665765834e-4,5.7286006e-4,0,0,0,0,279.3080469767252,0.8537833662798698,13.20706844128895,72.46072255843502,5.09497938372201,19.868709929010027,-0.08240849345702704,0,0,10838.113453916734,0.1932520396033143,0.004446572546536724,0.0077232334,0,0,0,0 +1900,0.4881558617748878,0.7305723603784592,0,0,3.3618210367956025,6.786918675061315e-4,0.0023926675,0.025000376626849174,0.024856437,34.052798906962074,0.028558348,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98481,0,457.00000254313153,4270.3344,925.5521138509114,87.61328845020651,295.6749954223633,459.5444668504325,0,0,0,0,0,0,0,0,0,0,0,0,6.251103741305997e-6,6.2381326e-6,0,0,0,0,3.4535918045245734e-4,5.770064599999999e-4,0,0,0,0,279.4540481567382,0.8631696543463733,13.276669554810011,71.90656631461616,5.089168388032589,19.750787925178965,-0.08385968995663869,0,0,11348.727499729994,0.19324967713848945,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1901,0.5044857194846931,0.7969063127701378,0,0,3.3829529353801377,7.011479125746215e-4,0.0048200969,0.025000494594375294,0.024857442,34.05289999643961,0.047784449000000014,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04131,0,457.00000254313153,4273.3046,928.800333658854,88.39116711070807,296.0069986979167,457.6168305058551,0,0,0,0,0,0,0,0,0,0,0,0,6.297067784544197e-6,6.2798935e-6,0,0,0,0,3.478985866725755e-4,5.817261e-4,0,0,0,0,279.613047281901,0.8714059588722426,13.301409901434221,71.63263161162581,5.20214413763188,19.48762216724768,-0.08579737819029178,0,0,11775.255202668699,0.1931616844954455,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1902,0.5193451170981727,0.800278636367018,0,0,3.3815414695884436,8.848810005777826e-4,0.0057781223,0.025000344030559063,0.024856062,34.055300076802574,0.050743008,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04898,0,457.00000254313153,4273.708,932.7311604817708,89.26282464192792,296.3249994913737,455.02617682462983,0,0,0,0,0,0,0,0,0,0,0,0,6.343031827782397e-6,6.316678900000002e-6,0,0,0,0,3.5043799531801295e-4,5.858722900000001e-4,0,0,0,0,279.8610509236653,0.8812154472523583,13.412488026584588,71.24149846316587,5.179688036784444,19.35806149893677,-0.08773506642394488,0,0,12100.548766402842,0.09059743996435048,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1903,0.5664546211178523,0.8295711459044773,0,0,3.389386332354358,0.001116641176243623,0.0069576127,0.025000539453079302,0.024857979,34.05799961090088,0.05591998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09555,0,457.00000254313153,4276.1561,936.7834269205728,89.89074056747505,296.65399678548175,449.9625304110428,0,0,0,0,0,0,0,0,0,0,0,0,6.388995871020597e-6,6.3575352999999986e-6,0,0,0,0,3.5297739911281195e-4,5.9048768e-4,0,0,0,0,280.15604146321607,0.890660734283567,13.437520518020643,70.25376393283156,5.1901034578968455,19.030597877588104,-0.08967275465759794,0,0,13044.158155518342,-0.7087274740337839,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1904,0.5751521325099065,0.856100074253587,0,0,3.4640582999698033,0.0013829462016777445,0.0094363385,0.02500028194238742,0.024855289,34.06080023447672,0.068491568,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07939,0,457.00000254313153,4275.3063,942.1142679850259,91.35674942842638,296.95399475097656,462.6217650299278,0,0,0,0,0,0,0,0,0,0,0,0,6.434959914258798e-6,6.3918668e-6,0,0,0,0,3.555168053329301e-4,5.9435105e-4,0,0,0,0,280.43204243977857,0.900998671506556,13.731471700844033,72.88437625246438,5.400226562773813,19.656119727265345,-0.09161044289125103,0,0,13274.437189098227,-0.26430883974577096,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1905,0.6122962467973883,0.8830904178747726,0,0,3.525334738078169,0.0017163676869434614,0.013412831000000002,0.02500062497953574,0.024859105,34.06420008341471,0.087718467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08907,0,457.00000254313153,4275.8152,947.4432729085286,92.40132432209919,297.28899637858075,467.44012883738543,0,0,0,0,0,0,0,0,0,0,0,0,6.480923502749647e-6,6.4289102e-6,0,0,0,0,3.5805621155304834e-4,5.985269799999999e-4,0,0,0,0,280.7050450642903,0.911796750677243,13.855105466247057,73.70973521692333,5.570897783797489,19.752967156958555,-0.09354813112490414,0,0,14100.978379035863,0.07758312468608113,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1906,0.6442763573284219,0.9139458953081726,0,0,3.549324480388693,0.0021963609227289758,0.018196454,0.02500016087045272,0.024853655,34.068699518839516,0.11138246,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10645,0,457.00000254313153,4276.7286,953.0924224853514,93.2499831638467,297.66199747721356,466.4356478967891,0,0,0,0,0,0,0,0,0,0,0,0,6.526887545987847e-6,6.466788299999998e-6,0,0,0,0,3.6059561534784734e-4,6.027991099999999e-4,0,0,0,0,280.9800465901692,0.9228643088832689,13.959645369835703,73.46173851221981,5.607842106776347,19.60693136091458,-0.09545551104287764,0,0,14766.450119103303,0.17494042863794804,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1907,0.726915977115476,0.9229970275040732,0,0,3.6744573684699935,0.002872606390155852,0.016966195,0.025000798360755045,0.025812945,34.074700037638344,0.10398923,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14627,0,457.00000254313153,4278.822,959.1561177571614,94.5608019449233,298.0979944864909,480.31745635776645,0,0,0,0,0,0,0,0,0,0,0,0,6.5728515892260475e-6,6.507102e-6,0,0,0,0,3.6313501914264634e-4,6.0735196e-4,0,0,0,0,281.2760442097981,0.9335570189055034,14.216774986296493,76.00444514305916,5.925751520425966,20.144490748304303,-0.09692403030316216,0,0,16264.987209463294,0.062031619541395626,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1908,0.7032325912946371,0.932378464388443,0,0,3.675876640379726,0.0037649905619521937,0.021404879,0.02499991360430916,0.029231937000000006,34.08239936828613,0.12765503,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12414,0,457.00000254313153,4277.6586,964.0852966308593,95.71237193404865,298.5179901123047,482.5826340091374,0,0,0,0,0,0,0,0,0,0,0,0,6.618815632464248e-6,6.5407783e-6,0,0,0,0,3.6567443021340296e-4,6.111398000000001e-4,0,0,0,0,281.61104329427076,0.9439781461374255,14.407422860628587,76.85623799627187,5.975251674338594,20.34218954572492,-0.09839254956344667,0,0,15590.713118515627,0.12577421060954422,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1909,0.7293531000033262,0.9394639872302616,0,0,3.6900486620571034,0.004334990129185219,0.036714367000000005,0.02507337733792762,0.7650859999999999,34.087400118509926,0.21121463,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.16533,0,457.00000254313153,4279.8240000000005,969.3983662923176,96.46669460330283,298.93599192301434,480.68946878632124,0,0,0,0,0,0,0,0,0,0,0,0,6.664779675702448e-6,6.5813135e-6,0,0,0,0,3.6821383400820196e-4,6.1571818e-4,0,0,0,0,281.95004526774085,0.9541466929230623,14.465734280062996,76.44087709943787,6.04171533179017,20.1096713132971,-0.0998610688237312,0,0,16371.00547137995,0.1917775514880681,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1910,0.765726394850593,0.9455920872078338,0,0,3.7676081069530625,0.005609989515505731,0.042342327,0.02532928188641866,1.0366888,34.098299980163574,0.24301505,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14442,0,457.00000254313153,4278.7248,974.7870890299478,97.77187102780431,299.37699635823566,491.4713622185322,0,0,0,0,0,0,0,0,0,0,0,0,6.710743718940648e-6,6.615104700000002e-6,0,0,0,0,3.7075323780300096e-4,6.1951928e-4,0,0,0,0,282.3140436808268,0.9648675091710838,14.7306044680131,78.48124342715315,6.22524154290356,20.602328395865626,-0.10126503542660648,0,0,17123.070519811292,0.19159019115572065,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1911,0.7810146544824405,0.8874036750204771,0,0,3.725917531952306,0.007499988889321685,0.047217079,0.0812472328543663,0.55672031,34.11459986368815,0.27037941,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.20214,0,457.00000254313153,4281.7592,979.4653218587239,98.4293811567004,299.82899220784503,482.3736483687901,0,0,0,0,0,0,0,0,0,0,0,0,6.7567077621788485e-6,6.6575406e-6,0,0,0,0,3.7329264887375757e-4,6.2431671e-4,0,0,0,0,282.72104136149085,0.9761720065989483,14.679374542895259,76.73370568501319,6.205453710840906,20.007607425742776,-0.10240012153911617,0,0,17244.1854917937,0.1913996219514424,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1912,0.8199661913672125,0.8508398703003752,0,0,3.7091004678175183,0.009259988398601612,0.055977137,0.10000008965531985,1.3372385,34.12980047861735,0.31844894,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.23472,0,457.00000254313153,4283.4718,983.6058603922525,99.26614632335712,300.3529917399089,477.9889214580395,0,0,0,0,0,0,0,0,0,0,0,0,6.802671805417049e-6,6.6972695e-6,0,0,0,0,3.7583205024323735e-4,6.288021400000001e-4,0,0,0,0,283.01904296874994,0.9924203303369911,14.713664798160675,75.8316081908469,6.21946391056852,19.680892428681513,-0.10353520765162587,0,0,17989.19691090075,-0.2483084466661772,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1913,0.889533970104308,0.8203484804069425,0,0,3.787939036045986,0.011569987594460448,0.05934571,0.11666701609889667,2.7874772,34.1497999827067,0.33694139,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.25437,0,457.00000254313153,4284.5046,986.2423197428384,100.61255837319116,300.9099934895833,488.2676034939648,0,0,0,0,0,0,0,0,0,0,0,0,6.848635848655249e-6,6.7356009000000015e-6,0,0,0,0,3.7837145403803635e-4,6.3312652e-4,0,0,0,0,283.3620402018229,1.0114400974128448,14.921807646192061,77.57996159883326,6.453879619764709,20.00732869050688,-0.10467029376413556,0,0,19072.753187289316,-0.30943169229472783,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1914,0.8114913689780275,0.8092045045442162,0,0,3.764418792127778,0.014084987109526992,0.064801984000000007,0.19333053504427275,4.5655912,34.17150020599365,0.36726542,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.19867,0,457.00000254313153,4281.5767,988.610880533854,102.28405865111169,301.4189910888672,494.4978826289548,0,0,0,0,0,0,0,0,0,0,0,0,6.894599891893449e-6,6.765480200000002e-6,0,0,0,0,3.809108626834738e-4,6.3647677e-4,0,0,0,0,283.71604156494135,1.0321295138459616,15.241497455163927,79.77807342879137,6.499176732511072,20.59248108677444,-0.10580537987664523,0,0,17594.434057832063,0.020398445252377703,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1915,0.8029916592535993,0.7974019582591167,0,0,3.7223377832742996,0.016684986495723326,0.08400062900000001,0.31655970215797424,6.2098372,34.193999926249184,0.47153519,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.2716,0,457.00000254313153,4285.4105,991.4610799153645,103.0579197466507,301.9369888305664,484.24768488469795,0,0,0,0,0,0,0,0,0,0,0,0,6.9405635182799115e-6,6.8098518e-6,0,0,0,0,3.8345026890359196e-4,6.4149729e-4,0,0,0,0,284.04704284667963,1.0546195831794383,15.232131029774814,78.35040062356745,6.4827720725927875,20.061424577974346,-0.10694046598915492,0,0,17573.116044207876,0.1641375391623491,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1916,0.8653307900276433,0.7997102256366486,0,0,3.744207068777381,0.019669986019531887,0.10465075,0.5206524853905042,5.9968917,34.21979999542236,0.58467971,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.29863,0,457.00000254313153,4286.831,998.4538218180337,104.08894352066241,302.48498789469403,482.95426600786,0,0,0,0,0,0,0,0,0,0,0,0,6.986527523622499e-6,6.8490958e-6,0,0,0,0,3.8598967269839096e-4,6.4592684e-4,0,0,0,0,284.31204223632807,1.077791381611315,15.342847178146304,78.27985154770643,6.60168085846147,19.908298607149394,-0.1080755521016646,0,0,19065.484279863696,0.18922175763831675,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1917,0.896621584801294,0.8027455741063269,0,0,3.8263968555995858,0.02392498527963956,0.11034348,0.7563406427701315,5.1585271,34.2564001083374,0.61870744,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.37275,0,457.00000254313153,4290.7275,1003.5705515543618,105.4397414501963,303.01098887125653,492.9600447524987,0,0,0,0,0,0,0,0,0,0,0,0,7.032491566860699e-6,6.8937875e-6,0,0,0,0,3.885290813438284e-4,6.509842700000001e-4,0,0,0,0,284.6150461832682,1.1002556131310455,15.500365004779491,80.4548180697849,7.003710361287698,20.17756104011222,-0.10921063821417433,0,0,19906.998931884555,0.19018318847478569,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1918,0.8873955587039598,0.8060358496732685,0,0,3.8305973797130326,0.02868998423218727,0.10461425,0.9276737372080485,4.2721672,34.29749997456869,0.58914082,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.37311,0,457.00000254313153,4290.7462,1010.1304473876952,106.74593160054405,303.44898732503253,496.242073076373,0,0,0,0,0,0,0,0,0,0,0,0,7.078455610098899e-6,6.9300659e-6,0,0,0,0,3.910684875639466e-4,6.550720200000001e-4,0,0,0,0,284.80504862467444,1.1212267086350811,15.704391027274072,81.61294813978053,7.118191256260811,20.368951576880015,-0.110345724326684,0,0,19743.244967391554,0.1899763122778872,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1919,0.7808604024397078,0.8111591475979437,0,0,3.7226411346821937,0.03343498365332683,0.10155164,1.0843643546104431,3.196035,34.338699658711754,0.57214502,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.33647,0,457.00000254313153,4288.8202,1017.6303660074868,108.09510704377881,303.8139877319336,490.9794171167238,0,0,0,0,0,0,0,0,0,0,0,0,7.1244196533371e-6,6.962042700000002e-6,0,0,0,0,3.936078889334264e-4,6.5866401e-4,0,0,0,0,284.85105133056635,1.1402334776582428,15.915652713498652,81.67724386438958,6.926922672741556,20.368638212598857,-0.1115197148188522,0,0,16994.786869895725,0.18976010178406924,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1920,0.9030601007400624,0.8135184546759534,0,0,3.8130101207834444,0.03770498279482126,0.071874804,1.176037738720576,4.0059497,34.375800132751465,0.41169313,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.40157,0,457.00000254313153,4292.2427,1025.0703277587888,109.13363853305731,304.24598693847656,498.87459987539705,0,0,0,0,0,0,0,0,0,0,0,0,7.1703836965753e-6,7.0058716e-6,0,0,0,0,3.961472951535446e-4,6.636221499999999e-4,0,0,0,0,284.9290440877278,1.157633764648187,16.036656139503478,82.96992111207,7.3188151464881575,20.402395098799328,-0.11278881532908334,0,0,18802.69892302283,0.18954070686553806,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1921,0.7938358638145999,0.8612993334837397,0,0,3.661222702405219,0.042184981517493725,0.05599481,1.241669515768687,6.3575754999999985,34.4146998723348,0.32444592,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.42979,0,457.00000254313153,4293.7261,1032.2003377278643,109.80934796264431,304.59998830159503,486.6136241874396,0,0,0,0,0,0,0,0,0,0,0,0,7.2163477398135e-6,7.045455500000001e-6,0,0,0,0,3.98686703798982e-4,6.6809072e-4,0,0,0,0,285.0390421549479,1.173417684573443,16.01016129774032,81.18725519244387,7.146950074087312,19.846108774902355,-0.11405791583931453,0,0,16049.705932221917,0.1893181118062252,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1922,0.8438966628298804,0.8533692042065284,0,0,3.6583337227642674,0.04389498041321834,0.10093674,1.3888855278491974,7.5196689,34.43010012308756,0.56921203,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.47367,0,457.00000254313153,4296.0327,1039.1002502441404,110.48581040150992,304.9449818929036,484.8273418444006,0,0,0,0,0,0,0,0,0,0,0,0,7.2623117830517e-6,7.0869364000000015e-6,0,0,0,0,4.01226107593781e-4,6.7277807e-4,0,0,0,0,285.17004903157545,1.188779371830489,16.07300912106922,80.53069430512947,7.252038815173717,19.474278395734512,-0.11532701634954567,0,0,16950.895997894484,0.0877045766097048,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1923,0.9595590008888546,0.8614844099618343,0,0,3.8812462099992877,0.04700497972468535,0.13753371,1.6249915957450867,8.1995609,34.45719941457113,0.77479139,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.54539,0,457.00000254313153,4299.8026,1045.1300659179685,112.25356413194692,305.27098337809247,514.2343951443905,0,0,0,0,0,0,0,0,0,0,0,0,7.308275826289901e-6,7.131803e-6,0,0,0,0,4.037655138138992e-4,6.7785565e-4,0,0,0,0,285.46704101562494,1.205120977529758,16.469305300306814,86.27583424473677,8.013836332456805,20.417825208931507,-0.11659611685977685,0,0,19723.672024100037,0.12093783396952988,0.004446569985399644,0.007723268,0,0,0,0 +1924,0.9703594405113312,0.8676633311171565,0,0,3.7748090158825875,0.052589978401859604,0.14595489,1.8459543486436207,10.064032,34.50569979349772,0.82730698,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.55899,0,457.00000254313153,4300.5175,1049.450032552083,112.63350596587964,305.62998453776044,499.0974143950571,0,0,0,0,0,0,0,0,0,0,0,0,7.354239869528101e-6,7.169801200000001e-6,0,0,0,0,4.0630492245933664e-4,6.8214162e-4,0,0,0,0,285.6050491333007,1.2222190421891945,16.415647771084632,83.21123114220697,7.790296571572385,19.77882376042076,-0.117865217370008,0,0,19521.89407498274,0.18863121099961191,0.004446569946594536,0.0077232683,0,0,0,0 +1925,0.9836991206856317,0.8708471713839661,0,0,3.7906069821644643,0.05885497791071733,0.15281139,2.1164215207099915,9.887985,34.5605993270874,0.86947278,0,0,0,0,0,0,0,0,0,0,5.299997687339783,105.60265,0,457.00000254313153,4302.8128,1052.159952799479,113.6704269189651,305.81298065185547,502.6957687586778,0,0,0,0,0,0,0,0,0,0,0,0,7.400203495914563e-6,7.2114506e-6,0,0,0,0,4.0884432625413564e-4,6.8684841e-4,0,0,0,0,285.6520512898762,1.2377911006225208,16.841681561106117,84.06174423454924,7.983263811925956,19.753454837168906,-0.11913431788023915,0,0,19738.889839322743,0.18839574168627352,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1926,0.9711936637110966,0.8752881607638067,0,0,3.724383638277895,0.06516497613241275,0.16877181,2.460367262363434,10.020584,34.616199811299644,0.96266008,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.65209,0,457.00000254313153,4305.4116,1053.600107828776,114.54563027246535,305.9539845784505,499.041820374083,0,0,0,0,0,0,0,0,0,0,0,0,7.4461675012571504e-6,7.2538666e-6,0,0,0,0,4.1138373004893464e-4,6.9164354e-4,0,0,0,0,285.69204711914057,1.2526121062865871,17.14732507530922,84.16877083488303,8.057166101708676,19.573020111236303,-0.12040341839047032,0,0,19808.91323463674,0.18815706175477445,0.0044465700242047506,0.0077232683,0,0,0,0 +1927,1.0719822978926645,0.9148152429216062,0,0,3.8503573823854342,0.0720199750115474,0.19366311,2.6942857106526694,13.691728,34.67679913838705,1.1076116000000005,0,0,0,0,0,0,0,0,0,0,5.299997607866923,105.65063,0,457.00000254313153,4305.3352,1055.770568847656,115.74747998347533,306.17698669433594,515.0910883833536,0,0,0,0,0,0,0,0,0,0,0,0,7.492131544495351e-6,7.290134400000002e-6,0,0.0049450274,0,0,4.1392313869437203e-4,6.9573008e-4,0,0,0,0,285.7400512695312,1.2667652835613548,17.432321744004053,86.52753524964037,8.499773806732605,19.875509864662817,-0.12167251890070148,0,0,21139.782286868525,0.187915087386083,0.004446569985399644,0.0077232677,0,0,0,0 +1928,1.0761742979146,0.9182619073884535,0,0,3.828134931557229,0.07970497260491054,0.21328049999999998,3.02649054924647,16.914307,34.74499924977621,1.2252077,0,0.020814729,0,0,0,0,0,0,0,0,5.2999982436498,105.59392,0,457.00000254313153,4302.3537,1060.6403605143228,116.7958666079441,306.3289794921875,515.8400889336957,0,0,0,0,0,0,0,0,0,0,0,0,7.538095587733551e-6,7.3196023e-6,0,0.030139896,0,0,4.1646254248917103e-4,6.990328999999999e-4,0,0,0,0,285.83304850260413,1.2797850846246124,17.62700284771002,87.11586336850812,8.569023694913732,19.91593076109437,-0.12294161941093265,0,0,21065.047460560574,0.16326849505962074,0.004446569985399644,0.007723269,0,0,0,0 +1929,1.1569513873862218,0.945536477224549,0,0,3.8902159937355303,0.08870497221748035,0.20802541,3.517713646094004,19.38339,34.825199127197266,1.2037865,0,0.33502494,0,0,0,0,0,0,0,0,5.299996972084045,105.60372,0,457.00000254313153,4297.9849,1066.6603291829424,118.01999771578741,306.49498748779297,527.0535755087527,0,0,0,0,0,0,0,0,0,0,0,0,7.584059630971751e-6,7.3457199e-6,8.387752144093005e-4,0.003329301,0,0,4.1900194628397003e-4,7.019496099999999e-4,0,0,0,0,285.8910522460937,1.290827581649255,17.867272783472913,89.37670246877072,8.894481947800461,20.274973944467554,-0.1242107199211638,0,0,22402.21951573089,0.008459436299327926,0.004446569946594536,0.007723266199999999,0,0,0,0 +1930,1.0728864782722383,1.0228008835417055,0,0,3.9076228058376485,0.0980799701064825,0.17035764,4.063463946183522,20.571834,34.909299532572426,0.99750344,0.001314997343191256,1.1701026,0,0,0,0,0,0,0,0,5.299998998641968,105.91828999999998,0,457,4287.8382,1072.6401163736978,119.67017881003574,306.6199773152669,535.0349028180784,0,0,0,0,0,0,0,0,0,0,0,0,7.630023560523114e-6,7.3580297999999985e-6,0.00510867650154978,-0.026051043,0,0,4.2154135735472664e-4,7.0327493e-4,0,0,0,0,285.9380518595377,1.3003703550961545,18.10997615018731,91.59573862667055,8.841770878325681,20.952388588675653,-0.12547982156900256,0,0,20792.33985686783,0.17991195822791398,0.004446570101814966,0.0077232725,0,0,0,0 +1931,0.9686717262631225,1.0331302905231323,0,0,3.699193086333459,0.10662497021257877,0.11326202,4.702978173891704,21.232329,34.9865992863973,0.6766021,0.021151568042114377,1.6600328999999998,0,0,0,0,0,0,0,0,5.3066509167353315,106.6887,0,457.000005086263,4282.6938,1077.4902242024737,119.90750782308882,306.82198333740234,504.89813450435264,0,0,0,0,0,0,0,0,0,0,0,0,7.675987490074476e-6,7.3819696e-6,0.0013775627594441175,-0.0038292076,0,0,4.2408076114952564e-4,7.059406299999999e-4,0,0,0,0,286.124043782552,1.3073181920546588,17.958294196248843,86.48531866506026,8.206316153499158,19.782983456664027,-0.12674892343562766,0,0,18348.14599749548,0.1869152841968948,0.0044465698301792145,0.0077232589,0,0,0,0 +1932,0.8802743934777767,0.934985060725432,0,0,3.701120518695932,0.11274996710320313,0.085847633,5.2942134141922,23.837144,35.04279931386312,0.51911084,0.07499745239814122,1.6167368,0,0,0,0,0,0,0,0,5.338305354118347,107.41813,0,457.00000254313153,4276.7559,1081.9602254231768,121.42198728704909,307.09297943115234,510.1823315036154,0,0,0,0,0,0.0057643486,0,0,0,0,0,0,7.721951533312676e-6,7.4038620000000015e-06,6.616643853097534e-4,7.431065e-4,0,0,4.2662016494432464e-4,7.083703599999999e-4,0,0,0,0,286.222048441569,1.3141063515038527,18.10001303714107,87.9072537284969,8.14248430159185,20.161815548303863,-0.12801802530225273,0,0,16151.105195411223,0.04254262073622287,0.004446570334645609,0.0077232888,0,0,0,0 +1933,0.9234526077537247,0.9318013427122356,0,0,3.6739916956408347,0.11636996641755104,0.10162739999999999,5.937420805295308,28.120028,35.076699574788414,0.61081444,0.12499795357386272,1.6336582,0,0,0,0,0,0,0,0,5.379978577295939,108.09758,0,456.99999745686847,4271.2585,1086.540334065755,122.34376589659303,307.40198008219403,508.11601205842635,0,0,0,0,0,0.14482802,0,0,0,0,0,0,7.767915576550877e-6,7.4266479000000016e-6,7.192010428601255e-4,8.0764091e-4,0,0,4.2915957358976203e-4,7.1090308e-4,0,0,0,0,286.3710505167643,1.3197777870137994,18.14058311592853,87.73926442282286,8.102332976784076,20.019613310457757,-0.1292871271688778,0,0,16995.040808999714,0.15037091489606738,0.004446569170492391,0.0077232216,0,0,0,0 +1934,1.000687973523085,0.9200297551297542,0,0,3.8176224066538618,0.120129964624842,0.15202423,6.679798523585002,34.519287,35.111599604288735,0.91252255,0.174997894714276,1.6505883,0,0,0,0,0,0,0,0,5.419978777567546,108.91202,0,456.99999745686847,4272.3774,1091.770294189453,123.95329985100088,307.7849833170573,528.0331660089164,0,0,0,0,7.617614949898174e-4,0.60639434,0,0,0,0,0,0,7.813879619789077e-6,7.4653224e-6,7.817409447549531e-4,8.7789025e-4,0,0,4.3169897738456103e-4,7.152669800000001e-4,0,0,0,0,286.4670486450195,1.326062978814577,18.32411358884008,91.49703968423377,8.603675585096985,20.702617836824825,-0.1305562290355029,0,0,18679.912767508573,0.18613128672545048,0.004446571848044793,0.007723374200000002,0,0,0,0 +1935,1.0505968685462075,0.9186843152571444,0,0,3.826763235457096,0.12510996125638485,0.22028466,7.595823089281718,40.132859,35.15789985656738,1.3303298,0.22499790415167809,1.6675173,0,0,0,0,0,0,0,0,5.459979295730591,109.70014,0,457,4272.1486,1097.08012898763,124.8946043872966,308.2269795735677,529.4409406291938,0,0,0,0,0.019080033137773473,0.97427321,0,0,0,0,0,0,7.859843663027277e-6,7.500741299999999e-6,8.497191738570109e-4,9.5422447e-4,0,0,4.3423838117936003e-4,7.192557e-4,0,0,0,0,286.58704884847,1.332452330452497,18.317319645408826,91.90214074154562,8.779424673428734,20.543197042155484,-0.13182533090212795,0,0,20077.943320367118,0.18586353451204687,0.004446565833253165,0.0077230226,0,0,0,0 +1936,1.1503667221829357,0.9270693885573005,0,0,3.9720080230657695,0.13321496173739433,0.28820401,8.761372248331705,42.33712,35.23359902699789,1.7570203000000002,0.27499790986378986,1.6844464,0,0,0,0,0,0,0,0,5.4999799728393555,110.56758,0,456.999994913737,4275.9063,1101.8303019205728,126.46470475438792,309.01197306315106,550.0398548533171,0,0,0,0,0.07932233065366745,1.0455299,0,0,0,0,0,0,7.905807706265477e-6,7.545934399999999e-6,9.236086334567517e-4,0.001037276,0,0,4.367777898247975e-4,7.243709e-4,0,0,0,0,286.7470448811848,1.3386899894061661,18.652869642211954,95.83484543323485,9.362043924590697,21.164186541248704,-0.13309443276875307,0,0,21597.571787769164,0.185592517547358,0.0044465794538458185,0.007723846199999999,0,0,0,0 +1937,1.231103104871657,0.9045164915618376,0,0,3.977215074471826,0.14407995715737343,0.34372195,10.024959723154703,44.188471,35.3363987604777,2.1186454,0.3249979118506114,1.7013755000000002,0,0.0063900215,0,0,0,0,0,0,5.539980530738831,111.3625,0,457.00000254313153,4275.9946,1106.3199869791665,127.18233706750797,309.7639745076497,550.6109419060176,0,0,0,0,0.1400045237193505,1.1131878000000002,0,0,0,0,0,0,7.951771749503678e-6,7.5821791e-6,0.0010039232001872733,0.0011274768,0,0,4.3931719604491565e-4,7.2845477e-4,0,0,0,0,286.95104471842444,1.3465253526433507,18.73588299543127,95.84567433043011,9.575630542004474,20.850604708617507,-0.13436353463537815,0,0,23231.712031323073,0.1853182578338796,0.004446548409759998,0.0077218498,0,0,0,0 +1938,1.1614219711074325,0.9073215418860066,0,0,3.8795464313880084,0.1580399548014005,0.39883954,11.266163110733032,49.06474,35.46979935963949,2.4891541,0.3749979188044866,1.7183046999999998,0,0.1328808,0,0,0,0,0,0,5.579981207847595,112.0603,0,456.99999745686847,4271.2734,1110.6307983398435,127.90539303616418,310.2939758300781,535.4268484555511,0,0,0,0,0.20000430569052696,1.185033,0,0,0,0,0,0,7.997735792741878e-6,7.6064912e-6,0.0010912219295278192,0.0012254241,0,0,4.4185659983971465e-4,7.3116337e-4,0,0,0,0,287.191042582194,1.3551266769032138,18.7206280051743,93.2370606174549,9.13361208452991,20.283818003860038,-0.13563263650200325,0,0,21542.975865724657,0.1850407365123296,0.004446620470844209,0.0077285525,0,0,0,0 +1939,1.2326137038964111,0.9058800276933815,0,0,4.010820601451636,0.1736899564663569,0.43390074,12.575761953989664,56.68305400000001,35.62149874369303,2.745053,0.4249979183077812,1.7352338,4.437717252585571e-4,0.68779311,0,0,0,0,0,0,5.61998176574707,112.8293,0,457.00002034505206,4270.1197,1116.909678141276,129.50135676592018,310.8509750366211,554.5379171230255,0,0,0,0,0.26000453531742096,1.2571398,0,0,0,0,0,0,8.043699835980078e-6,7.6395717e-6,0.0011861117285055418,0.0013320616,0,0,4.443960084851521e-4,7.3488257e-4,0,0,0,0,287.3870468139648,1.3668291715856424,18.987929691357078,97.34535423251211,9.632984018885308,21.020853325485078,-0.13690173836862835,0,0,23010.268809183824,0.1847599106254542,0.004446447691104065,0.11813875,0,0,0,0 +1940,1.332494477928578,0.8934636293441599,0,0,4.026253626433618,0.19239995131889978,0.50172554,14.090854724248251,67.98074100000001,35.804999033610024,3.2190952,0.4749979227781296,1.7521629,0.009225911945880702,1.4928916,0,0,0,0,0,0,5.6599823633829756,113.75015,0,456.9999643961589,4276.3916,1120.120178222656,130.13499426241637,311.35697682698566,550.4654056455058,0,0,0,0,0.3200042446454366,1.3304593999999998,0,0,0,0,0,0,8.089663500262153e-6,7.6912641e-6,0.0012892556163327147,0.0014481828,0,0,4.469354122799511e-4,7.4074684e-4,0,0,0,0,287.61904144287104,1.3795892066065865,18.93380647928792,96.49612886832482,9.961368880607099,20.566275747266797,-0.13793690008074544,0,0,25159.0741191676,0.1844758339571321,0.0044469935819506645,0.21814961,0,0,0,0 +1941,1.3573323902091925,0.87608140300394,0,0,4.050294266866393,0.21106995145479837,0.64957282,15.872149070103964,81.740279,35.991299311319985,4.2240743,0.5249979098637899,1.769092,0.04815833130851388,2.2339929,0,0,0,0,0,0,5.69998296101888,114.54353,0,457.0000813802083,4282.9257,1123.240509033203,132.2180939399341,311.81097412109375,552.9500650768001,0,0,0,0,0.3800046021739642,1.4028748,0,0,0,0,0,0,8.135627467709128e-6,7.727317500000001e-6,0.0014013840700499713,0.0015741503,0,0,4.494748160747501e-4,7.448086699999999e-4,0,0,0,0,287.8640467325846,1.42706317607174,19.034030783582587,97.09407345232208,10.193711740010501,20.462031367555745,-0.1386016615843945,0,0,26113.949704774812,0.1841885864846894,0.012151915968085328,0.1951164,0,0,0,0 +1942,1.3590493190022876,0.8973145216954003,0,0,4.1141932838166495,0.23562495286266008,0.84353078,18.12043031056722,95.021136,36.23889923095703,5.585489,0.5749979317188263,1.7860212,0.112600847457846,2.976471,0,0,0,0,0,0.19841173,5.739983518918355,115.26991,0,456.9997380574544,4303.7401,1128.1901550292966,134.70602408126945,312.17197672526044,560.1841861089208,0,0,0,0,0.4400041376550992,1.4745563999999998,0,0,0,0,0,0,8.181591510947328e-6,7.7551846e-6,0.0015232670799984287,0.0017109548,0,0,4.5201422229486826e-4,7.4792699e-4,0,0,0,0,288.1380538940429,1.5298185446895778,19.210183227285178,98.65719695401302,10.345483778655613,21.014193770024683,-0.13926642308804354,0,0,26702.042786503276,0.18389809416798145,0.018664849922060966,0.16898031,0,0,0,0 +1943,1.4029458246329907,0.8921248427380299,0,0,4.11408578168194,0.267039954662323,0.80476688,20.794118722279865,89.521615,36.56109873453776,5.4576739000000005,0.6249979237715403,1.8029502,0.20245546102523804,3.7199961,0,0,0,0.056451758,0,4.3053247,5.77998411655426,116.04761,0,457.93199666341144,4331.4951,1132.6601562499998,136.62968688428126,312.3899790445964,561.0185502959332,0,0,0,0,0.5000047385692596,1.5467027,0,0,0,0,0,0,8.227555554185528e-6,7.789335e-6,0.0016557506072179724,0.0018597366,0,0,4.545536309403057e-4,7.517695e-4,0,0,0,0,288.78102874755854,1.6777932069727464,19.226489945128584,99.48634644476039,10.644062862464148,20.76469900653816,-0.13993118459169265,0,0,27110.348585419746,0.1836043762155363,0.023900681796173256,0.14684461,0,0,0,0 +1944,1.3879131189978564,0.8983189521156985,0,0,4.111269896041665,0.30831495175759,0.41764093,23.86478344599406,72.69430200000002,36.99279912312826,2.9606569,0.6749979356924692,1.8198794,0.3176470845937729,4.4638059000000005,0,0,0,0.97266311,0.019433656940236688,16.545617,5.8199847141901655,116.85265,0,460.7425028483073,4354.745,1136.270060221354,138.93105622391963,312.41297149658203,569.4275578497453,0,0,0,0,0.5600039213895798,1.6191675,0,0,0,0,0,0,8.273519597423729e-6,7.8268219e-6,0.00179975672896641,0.0020215068,0,0,4.570930347351047e-4,7.559967e-4,0,0,0,0,289.00005086263013,1.8537439967013465,19.454671365649084,102.00830515112277,10.972149966258387,20.918122282494288,-0.14059594609534168,0,0,26578.15151015907,0.18330738198668892,0.027877628337591887,0.11439264,0,0,0,0 +1945,1.180916481863783,0.8988221719461101,0,0,3.970406317162407,0.33637995769580203,0.20111842,25.904248396555584,68.369262,37.297698974609375,1.5076942,0.7249979277451833,1.8368084,0.4580556924144427,5.2077233,0,0,0.004844144840414326,3.4593405,0.4215002196530501,24.846154,5.85998531182607,117.6118,0,463.24369557698566,4376.5008,1139.32036336263,141.02296395690516,312.38497670491535,562.3881403027648,0,0,0,0,0.6200050512949625,1.69101,0,0,0,0,0,0,8.319483640661929e-6,7.8587212e-6,0.0019562874901263663,0.0021972582,0,0,4.596324409552229e-4,7.595796e-4,0,0,0,0,289.2270406087239,2.0468366239992983,19.530998731486306,102.38686289278726,10.811058367654892,20.630415192374578,-0.14126070759899073,0,0,23414.92285804937,0.18300712894373766,0.03101034214099248,0.080798572,0,0,0,0 +1946,1.2942110656768657,0.9829470073282762,0,0,3.9716964354580995,0.3442649617791176,0.27970458,27.504756927490234,74.71723399999998,37.39169883728027,2.0726649,0.7749979496002197,1.8537378,0.6235543092091879,5.9856104000000006,0,0,0.08337228807310264,4.940467900000002,1.6357106665770214,24.839378,5.899985949198405,118.39896,0,465.7432912190755,4399.6117,1143.6604919433591,142.70640224525258,312.38997141520184,555.2899629515077,0,0,0,0,0.680003434419632,1.7631907999999998,0,0,0,0,0,0,8.365447683900129e-6,7.894034299999999e-6,0.002126432334383329,0.0023883489,0,0,4.621718496006603e-4,7.635561099999999e-4,0,0,0,0,289.4270451863606,2.2422352077889016,19.68948842063387,102.65818348678006,10.80993836386383,20.305933499558623,-0.14192546910263978,0,0,23137.2912384495,0.18270359473494088,0.03229169764866432,0.06430042700000001,0,0,0,0 +1947,1.4498949379331847,1.013635265025484,0,0,4.004289599390247,0.3536549558242162,0.34838359,29.078561464945476,84.081746,37.50009854634603,2.6369074,0.8249979366858801,1.8706665,0.8140119264523188,6.4443541,0,0,0.3000110412637393,4.8390374000000005,2.835014005502065,24.982371,5.93998658657074,119.2973,0,468.2434260050456,4428.0553,1149.6402994791665,144.7944964951042,312.48597208658856,563.4037753734774,0,0,0,0,0.7400057514508566,1.8372679,0,0,0,0,0,0,8.41141172713833e-6,7.9428476e-6,0.0023113751861577234,0.0025963146,0,0,4.647112509701401e-4,7.6908855e-4,0,0,0,0,289.51104482014966,2.4286545050325703,19.916095128874474,104.15736760766261,11.489678423181335,20.190999473703123,-0.14259023060628884,0,0.0033728385,25978.580134271393,0.18239681638037056,0.03281248671313127,0.046731228,0,0,0,0 +1948,1.541746757752381,1.0217889660432258,0,0,4.123520872976997,0.3683149615923564,0.33316898,31.041143258412678,90.670686,37.670498530069985,2.6243892000000004,0.8749979635079702,1.8875961,1.0316545367240906,6.6649072,0,0,0.5000130111972491,4.856366099999999,4.025014281272888,24.987103,5.979986985524495,120.08364,0,470.7433776855469,4451.0369,1155.630167643229,147.27202945137043,312.5209681193034,586.5360800457117,0,0,0,0,0.8000023066997528,1.966277,0,0,0,0,0,0,8.45737577037653e-6,7.9780491e-6,0.002512403065338731,0.0033276717,0,0,4.672506547649391e-4,7.7305219e-4,0,0,0,0,289.55605316162104,2.589644895931103,20.349060560415165,108.09641738801687,12.195764994941479,20.65035706357972,-0.14325499210993792,0,0.023611977000000003,27162.316753376424,0.1820867991187164,0.0328332781791687,0.020169381,0,0,0,0 +1949,1.5150340802151026,1.0322291088892992,0,0,4.0957465510773075,0.38362496097882587,0.31424196,33.192337354024254,91.962416,37.855198542277016,2.5926444,0.9249979307254156,1.8955033,1.2518172562122345,7.1640705,0,0,0.7000119686126709,5.561141,5.215012947718303,27.295461,6.019987901051839,120.70601,0,473.243403116862,4466.7618,1160.3499450683591,150.21571488778258,312.63197072347003,588.4410386834926,0,0,0,0,0.8600076138973236,1.6426278000000003,0,0,0,0,0,0,8.50333981361473e-6,7.993390500000001e-6,0.0027309151094717285,0.02463759,0,0,4.697900658356957e-4,7.747269e-4,0,0,0,0,289.59805043538404,2.7140139811269637,20.909195897992674,109.1544257771438,11.863971231370714,21.081179377216955,-0.14391975361358694,2.747740879082509e-4,0.063741035,26198.851367200677,0.18177350173895448,0.03209515412648519,-0.0015784357,0,0,0,0 +1950,1.6956807866542396,1.0454343901508287,0,0,4.3312607912797665,0.3969699591398239,0.32876887,35.499832471211754,78.580053,38.023898442586265,2.8441101000000004,0.9749979873498281,1.9897329,1.4824664394060771,7.4706053,0,0,0.8938818424940109,8.1460574,6.382257183392842,32.673745000000004,6.059987783432007,121.62274,0,475.7314631144206,4499.2896,1163.820566813151,152.20100844625213,312.8209762573242,619.9439709148871,0,0,0,0,0.9275005906820297,1.0661465,0,0,0,0,0,0,8.549303477896805e-6,8.0453408e-6,0.003054187574889511,0.10531435,0,0,4.723294696304947e-4,7.806208900000001e-4,0,0,0,0,289.73904164632154,2.7868238058947905,21.601404570641137,113.85984719531825,13.132141828954166,22.105810561368756,-0.14458451511723602,0.001923504489241168,0.16053368,29148.546819670417,0.1814569633566329,0.03030576727663477,2.432756e-4,0,0,0,0 +1951,1.8173567042308394,1.2637884621306537,0,0,4.212336067356143,0.41064496090014774,0.33222262,37.58082548777262,70.47669,38.204298655192055,3.0430784,1.0244279702504475,2.1685287,1.7349158823490143,7.5542237,0,0,1.1468555231889088,12.050138,7.775353193283081,36.815853,6.099990487098694,122.51807,0.014330518,478.3116455078125,4529.1876,1168.810119628906,155.27193516536855,313.01397196451825,593.1994505844021,0,0,0,0,0.9349976976712545,1.0527789,0,0,0,0,0,0,8.59526744534378e-6,8.0850349e-6,0.006885135274690886,0.2343219,0,0,4.748688734252937e-4,7.8510233e-4,0,0,0,0,289.8600540161132,2.8307926461022945,21.710967064016447,109.09095441872181,13.152193894404679,20.398188183698103,-0.14710768873059346,0.005466860408584277,0.23983988,30378.934969744696,0.18113711866275609,0.028203126974403858,0.0011664316,0,0,0,0 +1952,1.8518759304813062,1.2915086581093504,0,0,4.27824996657228,0.42523996035257977,0.32854487,38.706894874572754,76.508762,38.406997998555504,3.2228257,1.079317679007848,2.4120426,1.984303871790568,7.673401400000001,0,0,1.5540266533692677,16.078842,9.444400389989218,40.441283,6.139426151911418,123.26435,0.21725302,481.16064198811847,4558.7052,1174.3108825683591,160.57335760480584,313.3419774373372,606.9563399935745,0,0,0,0,0.9200002650419871,1.4414744,0,0,0,0,0,0,8.64123148858198e-6,8.100092099999999e-6,0.02087512387273212,0.36283509999999997,0,0,4.7740828449605033e-4,7.867442699999999e-4,0,0,0,0,290.02505238850904,2.873469224433514,22.393786048989185,112.61821090484105,13.48661503998857,20.95793435117974,-0.1497592068193485,0.01499934789414207,0.24565292,30772.879377004218,0.1808140109638238,0.026776751192907493,-0.0020300648,0,0,0,0 +1953,1.9058871956207555,1.288662579097105,0,0,4.400134890913105,0.4392099554340045,0.31999622,40.05176067352295,81.681224,38.61429913838705,3.3863087,1.1389276186625164,2.8478934,2.2399121522903442,7.7034458,0,0,2.129436651865641,20.201055,11.213325262069702,45.581432,6.184987505276998,124.06078,1.3575508,484.1764450073242,4600.7084,1183.360656738281,165.68183230817434,313.72996775309247,623.9750547982311,0,0,0,0,0.9262516697247823,2.1004080000000003,0,0,0,0,0,0,8.68719553182018e-6,8.1248995e-6,0.04651178978383541,0.48047903,0,0,4.7994768829084933e-4,7.8950997e-4,0,0,0,0,290.3340403238932,2.918473220829267,23.086276532048977,116.77653779023555,14.050620354457529,21.600939708208692,-0.15241072490810365,0.024999434128403664,0.24572915,31392.44295532122,0.18048767518443254,0.02495241429035862,-2.2819236e-4,0,0,0,0 +1954,1.9553258305658399,1.3426832443153052,0,0,4.475107773130416,0.4534849599003792,0.29457384,41.54246679941813,86.86346999999998,38.84129842122396,3.4048632000000003,1.2079770465691884,3.2763156,2.4949118296305337,7.760213,0,0,2.8635963996251426,25.212381,13.203928073247274,51.892411,6.22998833656311,124.75392,3.6198833,488.50885518391925,4629.2231,1194.4306030273435,170.37100791893153,314.09496815999347,628.9096635314064,0,0,0,0,0.9637557764848074,2.8888848,0,0,0,0,0,0,8.73315957505838e-6,8.1370738e-6,0.08213070034980774,0.59576061,0,0,4.824870896603291e-4,7.9081967e-4,0,0,0,0,290.54804992675776,2.9653052307782946,23.518269296485517,118.7896928573186,14.352627821692423,21.654738949016565,-0.15506224299685875,0.034999388890961804,0.24580572,31601.64061572461,0.1801580463648328,0.0234999794823428,-0.0040708208,0,0,0,0 +1955,2.1387868172549656,1.3878206830387967,0,0,4.585745111893209,0.46671496083339054,0.26311875,43.17295900980631,91.980019,39.07069810231527,3.3346824,1.2937463521957397,3.6788015,2.7499121824900308,7.6370702,0,0,3.7677908142407737,30.727319,15.439632256825766,59.87188100000001,6.274988849957784,125.74327,6.4848679,493.2549794514974,4666.3367,1206.65092976888,174.7404470567501,314.4149703979492,641.3267253315221,0,0,0,0,1.0538601179917653,3.5564777000000003,0,0,0,0,0,0,8.77912361829658e-6,8.184845900000001e-6,0.1274599153548479,0.70910415,0,0,4.8502649830576655e-4,7.9623211e-4,0,0,0,0,290.84404500325513,3.016004167545106,23.788691617349485,122.54258151361353,15.359884890806127,21.61194057224027,-0.15771376108561386,0.044999435233573117,0.24588273,34555.402722250226,0.17982516920850813,0.021999980478237074,0.0010493547,0,0,0,0 +1956,2.291039468224933,1.4462836425278403,0,0,4.8444014888868745,0.478794959684213,0.22075982,44.93925635019938,97.008491,39.3001979192098,3.0796375,1.3882061143716176,4.2759912,3.006162941455841,7.543031599999999,0,0,4.90076740582784,33.546756,18.00713857014974,66.950489,6.319989720980327,126.58168,9.1561662,496.95969645182294,4699.2729,1221.1007995605466,180.671117460758,314.6979675292969,673.8062290292883,0,0,0,0,1.1860103805859883,4.5322657999999985,0,0,0,0,0,0,8.82508766153478e-6,8.2145095e-6,0.1822890266776085,0.82044371,0,0,4.8756590210056555e-4,7.995574900000001e-4,0,0,0,0,291.1870447794596,3.067693130108469,24.39548109092037,129.82302004314178,16.407730767105924,22.724482756858983,-0.16036527917436896,0.05499937882026037,0.24595899,37118.77108719959,0.1794890063461402,0.020458318758755922,0.006640162099999999,0,0,0,0 +1957,2.384773000160331,1.4774945790842637,0,0,5.084522572350242,0.489309956630071,0.18587639,46.82995192209879,102.11597,39.52009836832682,2.8571248,1.4974753856658936,4.9612019,3.2499133944511414,7.3765313,0,0,6.239397327105205,32.871446,20.977540334065754,72.204141,6.364989757537842,127.41838,11.488509,500.6978174845378,4733.2024,1235.8001810709634,186.0555677386444,314.9919611612956,695.9496130566932,0,0,0,0,1.3464653591314952,5.9875108,0,0,0,0,0,0,8.871051704772981e-6,8.2451464e-6,0.2464121406277021,0.92977447,0,0,4.901053131713221e-4,8.029950599999999e-4,0,0,0,0,291.5120417277018,3.1227659361540883,25.10938270800668,135.59152056062854,17.202288510585237,23.82634944628376,-0.16301679726312407,0.06499945092946291,0.24603635,38873.754310972414,0.1791495207576567,0.019499980999777716,0.004342369,0,0,0,0 +1958,2.4670954688378814,1.5285973472099872,0,0,5.060488042524024,0.4977349440256755,0.17928487,48.83994928995768,107.206,39.715097745259605,2.9954591,1.6274844805399578,5.6330503,3.4969948132832847,6.9087313,0,0,7.567232608795166,34.746284,24.184339841206867,80.925329,6.409992456436157,128.42262,14.781202,504.5039291381836,4771.3965,1247.4204813639321,188.38553994967657,315.344965616862,661.285485841322,0,0,0,0,1.5845945576826732,7.120203999999998,0,0,0,0,0,0,8.917015748011181e-6,8.2860065e-6,0.3196182499329249,1.0371306,0,0,4.926447145408019e-4,8.0761087e-4,0,0,0,0,291.7720464070637,3.18418831910038,25.26871426472444,129.20858361180427,17.043104741234497,22.24665040214954,-0.16566831535187918,0.07499935726324718,0.24611309999999997,39341.991357154206,0.1788067540033275,0.018499995737026136,0.0026052944,0,1.5255345e-5,0,1.550744e-4 +1959,2.6036729140488357,1.4736682886389454,0,0,5.186762349282971,0.505239948630333,0.18081021,50.97114499409994,112.29185,39.90489800771078,3.2476716,1.777483691771825,6.388022599999998,3.7265921036402383,6.8760458,0,0,8.797123988469442,43.506257,27.60905106862386,93.983467,6.4542984167734785,129.47587,18.063698,508.3637110392253,4808.726,1257.320078531901,192.68675731110378,315.8069661458333,665.4367222123257,0,0,0,0,1.9060347974300385,8.0253807,0,0,0,0,0,0,8.962979791249381e-6,8.3259739e-6,0.40169936915238696,1.1424694,0,0,4.951841207609201e-4,8.121238e-4,0,0,0,0,291.98704274495435,3.250322629161094,25.784568318874836,131.21049744121555,17.515266326606977,22.136950451664426,-0.1683198334406343,0.08499948245783646,0.30755864,41319.47350993611,0.1784607567238176,0.017499990140398342,8.684612300000001e-4,0,1.2225318000000002e-4,0,0.0012460364 +1960,2.728446849074149,1.4615195318866923,0,0,5.288213084302709,0.5130949467420578,0.17259465,53.211243311564125,117.2597,40.118597666422524,3.3209398,1.9469429155190785,7.3201718,3.938670496145884,7.2392631,0,0,10.23712126413981,56.28148100000001,31.60536019007365,107.5417,6.504989147186279,130.53321,21.750437,512.2328440348307,4847.0424,1264.1198730468748,197.26110047577146,316.62496693929035,668.5656629833454,0,0,0,0,2.2494065960248313,9.5885732,0,0,0,0,0,0,9.008943455531456e-6,8.3712137e-6,0.49244747559229535,1.2458107,0,0,4.977235318316767e-4,8.1724438e-4,0,0,0,0,292.2830454508463,3.323928526213912,26.127946785499923,133.33681491027784,18.137986763264845,22.068663139398165,-0.16971698815179884,0.09499939220647018,0.43040209999999995,42970.73471143208,0.17811146430862335,0.016499992460012436,-8.684921e-4,1.2107990556842196e-6,2.3072394e-4,6.978449713794059e-6,0.0023750868 +1961,2.7521018504089363,1.531158201999545,0,0,5.280187774913458,0.5207299540440241,0.16861102,55.563539822896324,121.58986000000002,40.34249718983968,3.4304351000000004,2.141221841176351,8.4287849,4.1636671622594195,7.4514735,0,0.0018618006,12.167853911717733,70.618557,36.23666445414225,123.80387,6.554991841316223,131.26152,27.278298,516.0400848388672,4864.0212,1269.4615275065103,205.13834130452685,317.29896291097003,701.0053452576341,0,0,0,0,2.637653867403666,11.884386,0,0,0,0,0,0,9.054907422978431e-6,8.367736999999999e-6,0.5916525920232137,1.346892,0,0,5.002629332011566e-4,8.1675024e-4,0,0,0,0,292.60204569498694,3.545375735491367,26.889738501199272,143.56526348207862,18.738996990578176,23.373573142607228,-0.17042405828273247,0.10999903393288453,0.55328481,48370.747602751726,0.1748425912224242,0.015499991675217947,-0.0026053238,9.686392521264983e-6,2.4913556000000003e-4,5.5827597558770016e-5,0.003546415 +1962,2.868392578555052,1.520724683920321,0,0,5.268371108547883,0.5278749416271845,0.17112099,58.007436752319336,125.71015,40.56609694163004,3.6249821,2.365680515766144,9.612767800000002,4.398663679758708,7.580527900000001,0,0.045181371,14.639893293380737,86.214551,41.47677803039551,144.89716,6.604418396949768,132.4011,32.049021,519.7264709472656,4895.6486,1282.5712890624998,207.2122991826155,318.0439631144206,678.8492233714484,0,0,0,0,3.1291542649269104,14.500089,0,0,0,0,0,0,9.100871466216631e-6,8.405538e-6,0.699107696612676,1.4460951000000002,0,0,5.028023394212747e-4,8.2101348e-4,0,0,0,0,292.9450378417968,3.678783292234149,27.391344297603926,140.1058920148071,19.332929386112895,22.550094638193304,-0.1711311284136661,0.12999879072109857,0.61483924,49373.4626711147,0.018878477916170075,0.01449999026954174,-0.0043425207,1.9372784966738738e-5,2.5250226000000003e-4,1.1165519572386984e-4,0.0049206759 +1963,3.036186160713145,1.5272093107248352,0,0,5.437875742912039,0.535164937376976,0.18314033,60.507436434427895,128.88013,40.80479653676351,3.9881367,2.6255189975102744,10.949721,4.63597031434377,7.911085400000001,1.4331860863118587e-4,0.24720738,17.71703306833903,101.83231,47.60459232330322,167.67883,6.659987608591716,132.99126,37.52532,523.2439982096354,4904.2354,1300.79057820638,216.19226558975322,318.64996337890625,741.3196016175318,0,0,0,0,3.753723760445913,17.280228,0,0,0,0,0,0,9.146835509454831e-6,8.3926404e-6,0.814602812131246,1.5429261,0,0,5.053417504920313e-4,8.194336200000001e-4,0,0,0,0,293.32704925537104,3.8037763068903097,28.744647607968993,156.13095399196706,20.520847373631998,24.609210933874923,-0.1718381985445997,0.15499834592143694,0.55366285,50918.547922521546,-0.7158139715324602,0.013499994995072484,-0.0078699311,2.905917745010811e-5,3.5209498e-4,2.0954201075558862e-4,0.005972759100000001 +1964,3.1935857269729495,1.5182530872301747,0,0,5.25990946510033,0.5425249338150024,0.20130699,63.07753308614095,129.76928999999998,41.05469576517741,4.432625700000001,2.9195976853370667,12.657214,4.877436995506287,8.477894599999999,0.003477728799528753,0.46848862,21.421671549479168,116.30072,54.79980500539144,189.8766,6.715564290682475,134.07707,49.914046,526.5386403401693,4933.087,1317.3704528808591,216.5561629558192,319.3329620361328,689.1114600087734,0,0,0,0,4.5027817487716675,20.771971,0,0,0,0,0,0,9.192799552693032e-6,8.436046300000001e-6,0.9379299183686575,1.6379776,0,0,5.078811470108727e-4,8.243428e-4,0,0,0,0,293.6850484212239,3.94575429191722,28.607416327576342,146.45477556142896,21.250626659387255,22.37762398460907,-0.17254526867553333,0.17999867846568426,0.49245891,52831.63766662475,-0.6203003960549346,0.012499973177909851,-7.597085899999999e-4,3.8745569933477476e-5,0.0010303711,3.218187654662567e-4,0.033580017000000004 +1965,3.342046614628416,1.5494103546996891,0,0,5.2700102527121695,0.5508499294519424,0.22504179999999996,65.62683486938477,129.69213,41.342495918273926,4.9089192000000015,3.2579756379127502,14.528257,5.135173638661702,9.0358315,0.019166271900758147,0.58010695,25.709799925486248,130.83983999999998,63.0290142695109,213.3919,6.764422178268433,135.19804,70.507935,529.5773620605469,4953.0596,1331.0602823893228,222.666415702745,319.81596120198566,709.3122962703268,0,0,0,0,5.391107479731242,25.0603,0,0,0,0,0,0,9.238763595931232e-6,8.4640089e-6,1.0688820282618205,1.7308461,0,0,5.10420553230991e-4,8.274721400000001e-4,0,0,0,0,294.04503885904944,4.115195266374096,29.972153677829578,153.40539119426893,22.08301053841794,22.64997293102378,-0.17325233880646695,0.1999987723926703,0.4926084,54063.80178149757,-0.2927293197139612,0.01137502615650495,0.015948649,5.60693097213516e-5,0.0021406888,4.596758565943067e-4,0.11324642 +1966,3.501720550339981,1.5517652807392261,0,0,5.285174795936927,0.5597749253114065,0.26721734,68.0712407430013,129.70542,41.65249570210775,5.6248074,3.653163174788157,16.547774,5.413369536399841,9.5008952,0.039499382954090834,0.77191369,30.50373379389445,147.99606,72.2479305267334,240.15802,6.8193081219991045,136.46754,94.258765,532.3371022542318,4976.4474,1342.240509033203,226.31069580205852,320.8799565633138,710.941466458106,0,0,0,0,6.472539742787679,30.477075,0,0,0,0,0,0,9.284727639169432e-6,8.5066137e-6,1.2072421511014302,1.8217969,0,0,5.129599594511092e-4,8.322890299999999e-4,0,0,0,0,294.45304361979163,4.31119735595728,31.553067549575943,156.4949809106804,22.847791402233124,22.434297142441455,-0.17395940893740058,0.21999895945191383,0.61550021,55269.31676159744,0.11690965230767818,0.010999986358607808,0.069786165,1.1921713667106815e-4,0.0031030971,0.0018055206843807052,0.20275693 +1967,3.6259660139730605,1.595865385821404,0,0,5.390458849300692,0.5701449265082678,0.32052973,70.42624282836914,129.68847,42.00469557444254,6.3547572,4.101901113986969,18.918172,5.707025408744812,9.9208119,0.06371349437783162,1.0373000000000001,35.86647764841715,169.42177,82.6101468404134,269.58286,6.879989941914876,137.66763,116.32544,534.8238169352213,4995.4184,1354.2715555826821,232.33314648826578,321.4799575805664,746.2098208746951,0,0,0,0,7.774255792299907,36.036945,0,1.246032e-5,0,0,0,6.8991852e-5,9.330691682407632e-6,8.544612699999999e-6,1.352812260389328,1.9105949,0,0,5.154993656712273e-4,8.365750900000001e-4,0,0,0,0,294.8600463867187,4.481777634666587,33.1677760500894,164.77531621039864,24.19623737938871,23.585293537089132,-0.1746664790683342,0.23999873300393423,0.7384486,54762.89709618766,-0.07633744709933905,0.011131961752350131,0.24404072,2.235555645408264e-4,0.0037542491,0.005476358346641064,0.26151045 +1968,3.8345952658425997,1.5469930909111562,0,0,5.370373092170119,0.5827049265305201,0.40423022,72.69054730733235,129.73308,42.41149616241455,7.332441499999999,4.61564834912618,21.713594,6.014501253763835,10.295172,0.09872918141384919,1.3673824,41.93913205464681,195.13757,94.25966453552246,299.7143700000001,6.939991156260173,139.24379,133.08156,537.0335591634115,5029.5667,1371.6504618326821,235.33540266621623,322.3889567057292,740.4824182303034,0,0,0,0.0092379775,9.383843421936035,40.359034,0,8.8038453e-5,0,0,0,4.8559101e-4,9.376655725645833e-6,8.6257131e-6,1.505382388830185,1.9976935,0,0,5.180387718913456e-4,8.458288900000001e-4,0,0,0,0,295.2690455118815,4.618299686146145,34.3815728401946,165.09570877308497,25.41081254044139,22.825796914652,-0.1753735491992678,0.26999801645676297,0.67731523,56868.37887037226,0.0011209927611538926,0.014528773414591948,0.44305972,3.60778462588011e-4,0.0055431793,0.010674211041380962,0.29037411 +1969,4.0615677268044985,1.5437089021510264,0,0,5.404091612813001,0.5976699193318685,0.5206411,74.8699499766032,129.76058,42.862396240234375,8.483171800000001,5.203845143318176,24.938178,6.334147016207377,10.638634,0.143262746433417,1.7120901000000002,48.922607421875,220.72612,107.28918075561523,327.55328,6.999991575876872,140.05867,146.61896000000004,538.9712473551432,5026.2804,1389.3417561848955,239.18485161256538,323.25095621744794,747.0297315350706,0,0,0,0.18322115,11.191637754440308,44.144508,1.2165773692155806e-6,9.3679956e-5,0,0,9.679108093981389e-6,5.038868e-4,9.422619768884033e-6,0.0098248184,1.6647424797217052,2.0817369,0,0,5.205781781114638e-4,8.450532600000001e-4,0,0.0011288309,0,0,295.681042989095,4.732615322675832,34.96181250811188,169.68157132242786,26.065069005292788,22.100489511661433,-0.17608061933020144,0.29999837279319763,0.67751619,58467.81079627766,0.07485921849687786,0.02660746080800891,0.55613635,5.134661914780736e-4,0.03648951,0.016677813526863854,0.30862539 +1970,4.323514044182916,1.5319290688025449,0,0,5.549708797290366,0.61744491259257,0.6581691999999999,76.96995290120442,129.69302,43.40139643351237,9.5318801,5.882411241531372,28.576904,6.6643119653066,11.00827,0.2035404990116755,1.8909658,56.95325533548991,245.38621,121.64918899536133,354.60102,7.059993505477905,141.52757,173.56366,540.6648610432943,5048.3132,1411.1005147298174,244.41839554629246,324.78295644124347,781.037552297546,0,0,0.001065175359447797,0.60795801,13.09374705950419,49.037394,8.557121153292732e-6,2.4685116e-5,0,0,6.793739824691632e-5,1.0851205e-4,9.468583508957332e-6,0.036330653,1.830672601858775,2.1644992000000003,0,0,5.23117584331582e-4,8.520249e-4,0,0.0042255569,0,0,296.0980377197265,4.714190307707546,37.469578527471604,179.6859546683907,27.824084069544437,22.780224323226346,-0.17678768946113504,0.32499857246875763,0.80047128,61529.779790205444,0.07891007914399001,0.042955159209668636,0.64373178,7.886756357038394e-4,0.11813403,0.022781516425311565,0.34789664 +1971,4.510244869270977,1.4055542417708098,0,0,5.703748992338275,0.6424449036518732,0.82992065,78.98995844523112,129.60227,44.007896423339844,10.711494,6.6607770919799805,32.729139,7.00438114007314,11.452529,0.27441523348291713,2.1402118,65.84650834401448,276.44309,137.13820521036783,387.53989,7.119412302970886,143.1196,217.72405,542.1264394124349,5067.5026,1431.1209615071612,249.2895330837902,325.3999557495117,796.2029425301106,0,0,0.021073126544555027,0.8564575999999999,15.120055437088013,55.790888,1.0061302646136028e-5,1.3254363e-5,0,0,7.890220331319142e-5,4.2594654e-5,6.875001223913083e-4,0.064586906,2.0029827058315277,2.2451174,0,0,5.256569905517002e-4,8.5867175e-4,8.593750105016322e-5,0.00774384,0,0,296.52204386393225,4.663522046368115,38.13342515565109,183.53555789915328,28.617263975091056,23.195116011534044,-0.17749263314257094,0.3549981142083804,0.86210262,61716.79562857309,-0.03213341039414315,0.06120223210503658,0.78786166,0.003391635837033391,0.2232129,0.029181620261321466,0.40686343 +1972,4.706494311867816,1.3269371347118073,0,0,5.971153374722522,0.6740748832623163,1.0559028999999998,80.9293607076009,129.65777,44.68869590759277,12.24311,7.553642193476359,37.465523,7.356679677963257,11.97792,0.34821991870800656,2.5517628,75.6708869934082,314.22879,153.8562266031901,427.68026,7.184317310651143,144.52172,267.60333,543.3849334716797,5079.1924,1449.2900187174478,257.2102054265862,327.3489532470703,868.4735707547015,0,0,0.06999984166274469,0.87667663,17.352389971415203,61.456633,1.0390318796756523e-5,1.3479254e-5,0,0,8.037302359298337e-5,4.3040854e-5,0.0025000001187436283,0.082580189,2.181452830632528,2.3233295,0,0,5.281963967718184e-4,8.6363194e-4,3.124999990783787e-4,0.010359322,0,0,296.9550399780273,4.9307421199057115,39.56446297363227,196.66552470793948,30.236221506038817,25.52743453960084,-0.17813366446922693,0.3899978771805763,0.86237286,63465.10424037791,0.049119653936524114,0.08156623815496762,1.0951867,0.010107177193276584,0.31882408,0.0366138257086277,0.4721474 +1973,4.975651785811607,1.318385656312959,0,0,5.895831575895738,0.7138798783222834,1.3307870000000002,82.79306348164876,129.79157,45.45469538370768,14.085332,8.576456785202026,42.979262,7.723947962125142,12.585161,0.43801355610291165,2.92937,86.87261581420898,338.0693,172.25726318359375,454.71123,7.255663514137268,146.54158,301.85553,544.4634094238281,5118.3195,1462.860677083333,260.2947249743578,329.90895080566406,826.0293132269293,0,0,0.11499984314044316,0.82240702,19.92769479751587,65.420113,1.0719714812997458e-5,1.3772853e-5,0,0,8.184554402153783e-5,5.4973948e-5,0.005062500150719036,0.090214925,2.365882933139801,2.4006492,0,0,5.307358029919366e-4,8.768767699999999e-4,6.328129966277629e-4,0.011968111000000002,0,0,297.3990402221679,5.050826137007638,39.9571427129374,186.52593193281965,31.240096880428535,23.455648107310147,-0.17877469579588295,0.42499801019827527,0.92401065,66317.71188639547,0.15522883058251086,0.1075315357496341,1.5930673,0.02092159477372964,0.39726303,0.04518213029950857,0.54390644 +1974,4.948149198232062,1.2905489996591684,0,0,5.971643938399686,0.7649898727734884,1.4191691,84.59316635131836,129.76026000000002,46.34259541829427,14.311146,9.748060464859009,49.247959,8.108936508496603,13.447442,0.5431961392362913,3.5184015,99.53890228271484,340.6055,192.56424713134766,453.22872,7.319503704706828,147.80664,327.35544,545.3698170979818,5113.8208,1476.140909830729,261.8082770537653,330.7559534708659,824.6214022160059,0,0,0.16126984233657518,0.76119143,22.525582949320476,71.666995,1.1049491528562308e-5,1.3967525e-5,0,0,8.331976338619522e-5,0.052416219000000014,0.008000000069538752,0.08706316300000001,2.556043048699697,2.474116,0,0,5.332752092120548e-4,8.7789564e-4,9.999999989910673e-4,0.01237887,0,0,297.8550415039062,5.0344191249004195,40.69211663930812,183.60052508219061,31.077406046065626,23.599624622127063,-0.17941572712253898,0.45999792218208313,1.0394718,65371.62666713273,0.10279066121396813,0.14653477569421133,2.1806547000000003,0.034983893080304064,0.67241083,0.05499073459456364,0.65809554 +1975,4.928622399679322,1.303204963553737,0,0,5.9984313740411705,0.8284898797671,1.4004084,86.32876841227214,129.65616,47.35769589742025,14.321042000000002,11.09574286142985,57.565811,8.51440660158793,14.538442000000002,0.661696677406629,4.217686799999999,112.33176358540852,337.71465,213.23522440592447,440.16522,7.389227231343587,148.91662,384.99818,546.1371358235677,5104.4298,1491.7409667968748,263.05854864525753,330.8269551595052,816.9194858581777,0,0,0.19499984259406725,0.80304672,25.179124514261883,79.153904,1.1379648640286177e-5,1.4151174000000003e-5,0,0,8.637850078230258e-5,0.19213674,0.010937500201786557,0.07287558599999999,2.7517531315485635,2.545125,0,0,5.35814615432173e-4,8.7775104e-4,0.0013671900087501854,0.011478755,0,0,298.32604471842444,5.2068127673577305,41.476725896945794,177.51306730736252,30.76637271161256,23.129653790732366,-0.180056758449195,0.49999761829773587,1.1646458,64182.768823129416,-0.20496901654447228,0.20330782110492387,2.8018363,0.051680791191756725,1.2682709,0.06614344008266926,0.8287437 +1976,5.1946610219984874,1.3202053582443383,0,0,6.237496531818932,0.8872098724047343,1.5554771,87.99307123819987,129.63321000000002,48.276095390319824,16.011714,12.636435270309448,57.24638,8.955106973648071,15.386466,0.8118081788221995,4.743647,124.73074785868327,329.27602,232.99722162882486,426.10768,7.465574224789937,150.23158,475.43135,546.7914225260416,5104.2152,1509.1109517415362,269.9482096580869,331.5449498494466,856.063491529847,0,0,0.22999984274307886,0.82394648,28.196115493774414,92.664426,1.171018743661989e-5,1.4358855e-5,0,0,0.007432716122517983,0.33759564,0.01350000019495686,0.047412585,2.9527832667032876,2.614347,0,0,5.383540216522912e-4,8.8049315e-4,0.001687499995265777,0.0091593417,0,0,298.8140436808268,5.352361696512741,42.5213569666273,186.24742729810202,32.28663209283211,24.40571791742575,-0.18069778977585105,0.5443803270657858,1.4235416,67153.40876186565,0.042795931279707856,0.27751198535164195,3.4107057000000003,0.08715698743859927,1.8435573,0.08035514317452908,0.98712807 +1977,5.364428639868427,1.3520979710065895,0,0,6.353178768287844,0.9490798612435659,1.6923549999999998,89.59247398376465,129.63647,49.29249509175619,16.762577,14.47871708869934,55.875241,9.431879123051962,15.71703,0.9836416741212209,5.1782548,136.7956975301107,306.11158,251.99420674641928,404.2283,7.534413854281108,152.04263999999995,533.0325,547.3396860758463,5117.6518,1527.680948893229,274.03015240270713,333.3529459635417,868.4313096928761,0,0,0.2649998404085636,0.93269902,31.407798290252686,109.06413,1.2041107462816095e-5,2.1399971000000003e-6,0,0,0.026895795327921707,0.42456315,0.015312500220413009,0.022180513,3.1589433749516806,3.5323931000000006,0,0,5.408934278724095e-4,8.8740955e-4,0.0019140600246222068,-0.0065053902,0,0,299.3190358479817,5.499463794793741,43.27485687581617,189.22553225601726,33.05929028320198,24.38724427025082,-0.181338821102507,0.5945511807998022,2.1583469,67777.19082397268,0.12845401331973466,0.3696969747543335,3.8826089,0.1504269844541947,2.1420878,0.09829714894294739,1.0852977 +1978,5.581802902559232,1.2993019000302957,0,0,6.57904481781486,1.0211598575115204,1.7691766,91.13187662760417,130.48848999999998,50.43949508666992,16.898235,15.96304734547933,72.245349,9.926631212234497,15.529417,1.1736451586087544,5.5214165999999985,148.00458017985025,278.45958,270.00118255615234,383.9896,7.609319130579631,153.91731,529.79652,547.7978973388672,5132.0601,1546.890899658203,276.33335446294114,335.00994873046875,897.405148357044,0,0,0.29872983197371167,1.277913,35.72357686360677,112.78031,1.237240955257827e-5,-6.2543157e-5,0,0,0.054136695029834904,0.45249588,0.016000000139077503,-0.059867027,3.3700035015741983,4.661461,0,0,5.434328243912508e-4,8.9480636e-4,0.0019999999882808575,-0.021383103,0,0,299.8450393676757,5.625120895967197,44.240892074424366,192.93479554653743,34.269193302792054,25.019744191924026,-0.18197985242916306,0.6599957346916199,2.8286901,68023.041876235,0.1506635484397897,0.4763076677918434,4.2701212,0.23020097613334656,2.1599238,0.1185080527017514,1.1209156999999998 +1979,5.730732140077329,1.2523176484359615,0,0,6.677231649399466,1.094819853703181,1.9203395,92.61308097839355,128.37989,51.557394663492836,17.898313,17.68312692642212,94.634628,10.421233495076498,14.991238,1.3782646457354228,6.1020639,157.6384735107422,271.13342,286.4941584269206,394.80033,7.689991553624471,155.58903999999995,518.50501,548.1820729573568,5138.651,1566.1608581542966,281.6000656120118,336.60494740804035,900.4664227016348,0,0,0.34251976509888965,1.7595655,40.48909950256348,113.22088,1.1487397311308692e-5,-2.0391387e-6,0,0,0.0849026944488287,0.42017076,0.016000000139077503,-0.17766763,3.7300036549568176,5.0937882000000005,0,0,5.459722354620075e-4,9.0008302e-4,0.001000000006267025,-0.0099825707,0,0,300.39303843180335,5.807081798508845,45.13478108156769,196.0169028731842,35.013987182511805,25.212479862598272,-0.18262088375581906,0.7699926396210989,2.8296177000000005,69119.86371174049,0.1473114304822424,0.5893768072128296,4.6513697,0.31519197672605515,2.0579417,0.13952905808885893,1.1328091 +1980,5.650947966828631,1.2441357938650308,0,0,6.618387124854692,1.1735098262627919,1.9633226,94.1031723022461,125.08456,52.72269503275553,17.664267000000006,20.167388280232746,120.23426,10.897735516230265,14.760860999999998,1.5939541260401409,7.2362595,166.07752100626627,276.09356,302.1822509765625,398.43779,7.769993821779887,157.04196000000005,513.02719,548.5012359619141,5131.8984,1584.940734863281,283.34647023515436,338.70494588216144,890.5114951943987,0,0,0.41178564727306366,2.0330453,44.551489194234215,118.29604,5.5193815645300974e-6,7.9351775e-5,0,0,0.11494099286695321,0.35605477,0.011000000056810677,-0.12485274,4.130003849665324,5.1732709,0,0,5.485116416821256e-4,9.0155542e-4,5.107808434938003e-5,0.0031252635,0,8.167018e-5,300.9650395711262,5.872959052014542,45.97852705498147,194.39124204024887,34.76440146642314,25.232545658292864,-0.18326191508247508,0.8899930367867152,2.8304822999999995,68783.84556601176,0.109190156973947,0.7097166180610657,5.1129913,0.39410896847645444,2.1545661,0.15989606082439423,1.1562096000000002 +1981,5.539335981414791,1.2528135487313492,0,0,6.577782229862206,1.2601898312568665,1.7391266,95.31219546000163,126.52811,53.97579542795817,16.187192,23.256973266601562,128.45086,11.349838097890219,13.920115,1.8424933552742004,8.637244699999998,174.73850377400717,271.00597,319.4201304117839,403.07178,7.849401632944743,158.51506,516.86109,548.7653757731119,5123.4643,1602.6506245930987,279.78942071631377,340.05894978841144,875.7816094417443,0,0,0.5049996227025986,1.96562,48.66220633188883,122.37567,1.075440430516513e-5,1.7112573999999998e-5,0,0,0.1399999943872293,0.32601335,0.0030000001109632044,0.11779446,4.560003956158956,4.4274361,0,0,5.510510430516055e-4,9.0259513e-4,1.2761924275158285e-4,0.038309698,0,6.9675129e-4,301.56203460693354,5.805407445505892,46.37436562130664,189.16861385900194,34.11541673008395,24.873295971397052,-0.1839029464091311,0.999993642171224,2.9541119,66688.82721964004,0.0757372745424995,0.8352456837892532,6.0090214999999985,0.4687449559569359,2.4863888,0.1800000655154387,1.1742814 +1982,5.477249508472458,1.2581454775126868,0,0,6.915258577522967,1.3425698479016621,1.6205522,96.45029131571452,129.38621,55.10939598083496,15.97381,27.298911412556965,128.57689,11.805440743764242,13.885459000000001,2.144632577896118,9.2748324,183.27747344970703,277.72577,335.1432698567708,391.79861,7.934991518656413,159.18065000000001,532.93449,548.9834696451823,5083.3728,1618.7305399576821,287.6693153882337,340.64394124348956,967.4292982868147,0,0,0.5972496171792349,1.6573363999999997,52.764092127482094,125.26367,1.2755718368377226e-5,-8.228379000000001e-5,0,0,0.1600000001490116,0.33083911,0.0020000001228860733,0.22216908,4.970003763834636,3.5575865,0,0,5.535904541223621e-4,8.9426293e-4,2.6965544202539604e-4,0.066661524,3.741915871084226e-6,0.0015785006,302.18704223632807,6.043062727559764,47.66689067623099,206.8844647776702,34.15609140912993,28.272205714382924,-0.1845634619404803,1.1199926137924194,2.9550432,65532.301753925305,-0.15641584008740989,0.9728992034991583,6.4693449,0.5532129456599554,3.0131287,0.2000000737607479,1.352411 +1983,5.483062192797363,1.4330241763538591,0,0,6.625402213840496,1.4098998308181763,1.8456854,97.67579015096028,130.75988999999998,56.16269588470459,16.384525,30.830673376719158,150.74703,12.194235563278198,15.564841,2.4999918937683105,9.057039,191.16732279459634,353.29433,352.50609588623047,385.70972,8.019996364911398,160.09108999999995,547.19948,549.1685434977213,5047.3484,1632.620147705078,281.617658355317,342.26594797770184,862.0214943304857,0,0,0.672999694943428,1.3378778,56.786487897237144,129.4055,1.1691284877694367e-5,-2.7098867e-5,0,0,0.17999999349315962,0.33559498,0.011000000212031106,0.09748991,5.270004232724507,3.8040369,0,0,5.561298603424802e-4,8.871233e-4,0.0029999999581680945,0.024088349,3.1704332892938204e-5,0.0020178464,302.84204101562494,6.065834079500119,47.64540210423812,183.83582233478342,33.285128980692804,24.459513427275525,-0.18530513482030356,1.2399930556615193,3.2014371,64552.41617363238,-0.6775945263802521,1.144959529240926,6.0034055,0.651974951227506,3.8198142,0.21950007850925127,1.378774 +1984,5.619005090796103,1.4612248534423995,0,0,6.8150189551184415,1.4820398290952046,1.954181,98.93998591105144,134.9934,57.26739501953125,14.927399,34.79922644297282,167.86607,12.642924229303995,17.177695999999994,2.8499913215637207,10.537606,199.96714146931967,352.61795,366.79923248291016,438.30954,8.103740215301514,162.15076000000005,546.6524,549.3226318359375,5054.1956,1643.5008544921873,285.00304516787423,344.00794728597003,889.7020107049092,0,0,0.7217137465874354,1.2391705,60.742489178975426,137.14096999999998,3.96903745780719e-6,8.659051799999999e-5,0,0,0.19999999552965164,0.48356263,0.017000000225380063,0.027417786,5.530004461606343,4.8805394999999985,0,0,5.586692617119601e-4,8.9282411e-4,0.005000000004656613,-0.04014793,7.402270027038564e-5,0.0043071608,303.5280380249023,5.996375963335671,48.69349353439086,189.33352573144714,34.32486538148798,25.326276357675727,-0.1860468077001268,1.3599929014841716,3.5706830000000003,65309.89915296105,-0.2289078353791943,1.295939067999522,6.3412338,0.7757129470507304,4.798725900000001,0.24612508217493692,1.1329507 +1985,5.678895002751574,1.4997437788078463,0,0,6.922761988583978,1.5687698423862457,1.930951,100.18199602762859,138.44665,58.3761952718099,13.863624,39.652387619018555,191.20489,13.144109964370728,18.042992,3.187290926774343,12.093107,214.03345489501953,321.80334,383.26725006103516,487.46531,8.199989477793375,164.43684,559.24581,549.4526824951172,5072.7864,1655.9104715983071,285.6752697155976,345.4589538574219,906.9368199480392,0,0,0.7549997667471567,1.4290266,64.80020904541016,148.48134,8.568774148898228e-6,2.1606645e-4,0,0,0.21999999756614366,0.56320674,0.01700000014776985,0.085787554,5.8700045347213745,5.2553933,0,0,5.612086727827167e-4,9.0213205e-4,0.003999999995964269,-0.006224988000000001,1.1811007364788868e-4,0.012966035,304.2470397949218,5.996554239215087,49.41563613245486,190.4568856663394,34.861509200143864,25.83243997550224,-0.18678848057995007,1.4999912877877553,3.6945657,65474.087150351224,-0.011715700559269468,1.4159816404183705,7.686271400000001,0.9354569266239802,5.5359652000000015,0.26520808786153793,1.1864916 +1986,5.784334367519234,1.5301135694160417,0,0,7.0137036621234845,1.6502498388290405,2.0447892,101.67297554016113,134.66824,59.28379599253336,14.595216,44.608107248942055,226.48099,13.69979476928711,17.343175,3.6499905784924827,11.156209,222.3396848042806,363.19165,402.41221872965497,561.19711,8.294995307922363,166.53505,605.54478,549.5567423502604,5079.9439,1668.7911478678384,290.8084487539618,346.90294647216797,914.5218093193049,0,0,0.7879217316706976,2.1480617000000004,69.13964017232259,163.26271,1.2043192891534696e-5,2.1612991e-4,0,6.836250999999999e-4,0.2599999929467837,0.57273931,0.018000000156462193,0.044305139,6.3100047906239825,5.6896951,0,0,5.637480790028349e-4,9.0805661e-4,9.999999941404287e-4,0.03179967,2.603702887427062e-4,0.028102657000000003,305.0020370483398,6.123193922877899,50.21167873708514,195.66522346659664,35.24652923018162,25.9121168517712,-0.18753015345977328,1.6499911447366078,3.9411958,65479.271483930934,-1.4658150072006793e-4,1.5741113722324371,8.619926699999999,1.1329799195130665,5.6626388,0.2791670933365822,1.453026 +1987,5.942054872368608,1.51568933473453,0,0,7.200139154017295,1.7349598209063213,2.1868179,103.0739803314209,140.05915,60.248695373535156,15.122737,50.83082103729248,234.71551,14.25549602508545,15.986362,4.105550249417623,11.176584,233.33564122517905,377.17492,423.347417195638,543.59326,8.389330943425497,168.70781000000005,636.85035,549.6467793782552,5087.8651,1683.749786376953,295.0485146932872,348.77494557698566,952.061149189977,0,0.0011578226,0.8391895890235901,3.2631248,73.98439725240071,177.25124,2.903536521140874e-5,5.821475400000001e-5,0,0.0048785865000000005,0.28999998917182285,0.79616882,0.022000000191231567,-0.099665792,6.710005084673564,6.538606400000001,0,0,5.662874803723147e-4,9.1426979e-4,0.0030000000745834163,0.0083239765,6.904602487338707e-4,0.044783508,305.7930348714192,6.350228641755308,51.33101365968814,203.58517005144802,36.43815818195585,27.251867169865875,-0.18827182633959655,1.7999912301699321,4.3106697,66721.09399661662,0.062169756099630324,1.7711602052052815,9.1692428,1.346309910217921,5.241268700000001,0.29950010031461716,1.7364871 +1988,6.133362796862496,1.5150947746951446,0,0,7.39663506024057,1.8262398143609364,2.2384091,104.16901715596516,134.89421000000002,61.255194981892906,15.295333,57.8955987294515,225.34631,14.756715536117554,14.052169,4.49442990620931,12.063592,244.82575480143228,324.40759,449.32311248779297,433.01446,8.48999317487081,171.54521,645.54402,549.7208353678385,5119.7697,1693.940928141276,298.68549508376714,351.2759323120117,950.4151874289803,0,0.34924766,0.9504593312740326,5.2661192,79.53813616434734,185.3279,3.188543450960424e-5,0.021115007,7.708864601833436e-5,0.06849384,0.32999999324480694,0.88192316,0.02000000032906731,-0.07366243900000001,7.220005750656128,6.627813900000001,0,0,5.688268914430713e-4,9.2784993e-4,0.0030000005305434265,0.034690666,0.001493088435381651,0.060567348,306.624043782552,6.188309996026968,51.72677741877051,203.53222760721053,37.7977892884268,27.185066126098715,-0.18901349921941984,1.9699894785881042,4.6802608,67287.48390226346,0.1102479335964212,1.9729202787081401,10.094657000000002,1.548219899336497,4.7030971,0.32425010204315186,1.770198 +1989,6.211121149262674,1.53212989041127,0,0,7.320233667650651,1.9231797953446705,2.2075539,105.88293329874675,105.50252,62.29139518737793,15.212081,64.49583530426025,212.83728,15.212542057037354,10.119863,4.9499895970026655,11.292045,256.58931223551434,246.46809,468.0721740722656,357.7641,8.589393774668375,174.22363000000001,713.52261,549.7808532714844,5139.3872,1705.6304423014321,302.164174394028,352.89392344156903,930.8467754620427,1.1203966126534699e-4,0.72136249,1.1215790609518688,10.730464,85.39031410217285,189.56819,3.284409467596561e-5,0.31476996,5.449304395976166e-4,0.67304705,0.38999999314546585,0.82629641,0.014000000199303031,0.054397397,7.7600061893463135,6.6572182,0,0,5.713662976631895e-4,0.0060655338,0.0030000010544123747,0.077007399,0.002615397213958204,0.07614778700000001,307.8310241699218,6.264529714671574,52.06403696267891,200.31650520357337,38.13825088093059,26.33140676747172,-0.18975517209924306,2.149989446004232,5.0499664000000015,67312.93275191178,0.14261546154697627,2.1840911904970803,10.904862,1.7223599056402843,4.3864096,0.35575009882450104,1.6702493000000005 +1990,6.186811699323791,1.4450968870559717,0,0,7.508271531599201,2.018889824549357,2.1076967,106.4680290222168,86.426532,63.32119528452555,14.407865,70.81883303324382,176.8456,15.573984305063883,7.0905085,5.40554936726888,10.591201,263.08519744873047,208.25652,482.7560577392578,333.97703,8.694339831670126,176.36773,658.40311,549.8308563232422,5137.248,1717.400675455729,305.27255465213847,354.07293192545575,940.5626313485474,0.03376847004983574,1.5203264,1.4477779567241669,17.768055,90.98358980814616,192.30881,0.002091195086904918,0.96053501,0.0077552789346858235,1.7208698,0.43999998768170673,0.69729352,0.014000000121692816,0.18589003,8.280006090799967,6.6838429,0,0,5.739056990326693e-4,0.02696988,0.005000001498653243,0.018320285,0.004025665286462754,0.091767095,308.68303680419916,6.277152282827942,52.52170067846646,203.0212309920509,38.25721546450458,27.365368354710768,-0.19049684497906635,2.3499877055486045,5.1743108,67094.07179291768,0.14079531171550244,2.425140698750814,10.051338,1.8762499292691548,4.2741531,0.38000010202328366,1.7373255 +1991,6.190131151726644,1.6368601104218738,0,0,8.011536269395817,2.113149801890055,1.982897,105.85304832458496,85.14222600000002,64.34609444936116,12.924815,76.4864673614502,120.64491,15.752021392186483,6.9542228,5.799989104270935,10.775591,267.79015350341797,159.81288999999995,493.7842102050781,286.27307,8.804992516835531,177.30503000000004,474.47964,549.8710784912109,5089.9323,1729.3305562337237,318.7311920514537,355.35293833414715,1129.9838832525568,0.06648059604534258,6.9394223,2.221526563167572,22.06288,96.40249379475911,185.52075,0.03069222376992305,1.727734,0.07582558194796245,2.7251313,0.48999999711910885,0.70613627,0.017000000070159633,0.24819351,8.820006291071573,7.057256599999999,0,0,0.0016515196378653247,0.058141591,0.008000002048599223,-0.073018715,0.005709253367967904,0.10715402,309.23303731282545,6.34494559215869,54.26130892359681,244.42863411026067,39.69249193256378,34.394938327949504,-0.1909628409298788,2.5599875847498574,5.29866,66472.31501729792,-0.4148185776434353,2.665145973364512,9.6580528,2.020599921544393,4.1585749,0.40500009556611377,1.6735462 +1992,6.145912972932644,1.683057085276074,0,0,7.364888993342175,2.20022984345754,1.9500444,104.98307355244954,85.437279,65.2670955657959,11.907588,80.40375582377116,74.361852,15.899934848149618,5.3089984,6.199989080429077,10.120439,270.7759323120117,106.91739,505.86798095703125,227.43518,8.91499400138855,179.3441,361.04368,549.9049123128256,5056.1355,1740.1392618815103,299.4017954744593,356.22894795735675,913.3754185979066,0.1707762268682321,22.26499,3.3005158503850303,24.233416,101.49227841695149,194.06099999999998,0.09482813626527786,2.4767485,0.19600565483172736,4.0250116,0.5199999809265137,1.0018637,0.026000000691662233,0.18194194,9.340006430943808,7.910261500000002,0,0,0.005856849117359768,0.088755914,0.0050000026628064615,-0.030822369,0.007651571494837602,0.12273589,309.7250391642252,6.358476438557756,52.37759098866641,198.23847301394608,38.71717596139569,26.648976889112614,-0.19129755052506844,2.769987682501475,5.4230636,64223.92565128395,-1.6835767484157795,2.8172022501627603,10.784362,2.161349892616272,3.8127392,0.4305000975728035,1.4631107 +1993,6.193394814861415,1.5467274300386273,0,0,7.531122846620259,2.2837098240852356,1.9984803,104.32304191589355,84.458339,66.09139442443848,11.381334,82.41623814900716,50.567396,16.066639582316082,3.463778,6.607129295667012,8.677164900000001,271.1687749226888,84.3251,511.9880956013997,231.9618,9.027161439259848,179.76429,256.33383,549.941884358724,5078.4684,1743.1006876627603,299.4425140657421,356.92495981852215,941.8816353260038,0.7146161670486132,34.33223,4.47598530848821,22.551362,105.4173412322998,208.33854,0.19552044942975044,3.0949997,0.36491671949625015,11.967198,0.5699999282757441,1.5166355,0.0330000047882398,0.157163,9.94000768661499,8.353483800000001,0,0,0.01262219933172067,0.11880940000000001,0.0010666858239953096,0.042782191,0.009837979606042305,0.13825367,310.09905242919916,6.310752016783032,52.78275226171121,203.77578316226604,39.74372708975235,28.114996259780565,-0.19163226012025816,2.9899867177009583,5.424762,63195.55051984089,-0.8170844043492784,3.0058298110961914,11.612337,2.2925199468930564,3.3180441,0.4508330797155698,1.2514505 +1994,6.240067755470377,1.5037166846247065,0,0,7.8957327340876935,2.36793980995814,2.1430557,103.57006708780925,86.05046,66.87479654947917,11.006658,83.36027018229167,37.565451,16.09994300206502,4.6095776,6.955350279808044,8.163642999999999,269.62779235839844,85.893495,518.2140757242838,238.58315,9.131617546081543,178.03958,159.08791000000005,545.3847249348959,5003.2837,1748.620371500651,310.25183676250725,358.2539596557617,1060.282744333416,2.2383394837379456,45.287421,5.687364776929219,24.423112,110.94440905253093,237.88968,0.32772576560576755,3.5515517999999995,0.6123692641655604,24.558229,0.6399997919797897,2.3253155,0.03700000451256832,0.20390529,10.600008169809977,8.737967999999999,0,0,0.021451599275072415,0.14808425,0.002012556239302891,0.0083003343,0.012253877784435948,0.15358509,310.80802917480463,6.441827000222701,54.21042306521078,231.0503542937696,40.27137015559246,33.14335063351852,-0.1919669697154478,3.2099871834119162,5.549182599999999,61820.50123949212,-0.0813850082344821,3.2168917854626975,11.303115,2.4025299350420632,2.9604627,0.4654170672098796,1.1962062 +1995,6.3773864537253155,1.4860805049306975,0,0,7.813189501191085,2.4555798172950745,2.3880707,102.88904825846355,80.480245,67.62789662679036,10.682998,83.83788744608562,23.473127,16.137446244557697,5.7076242,7.249991933504741,7.674757700000002,268.1038513183594,86.264975,524.6570994059244,210.72453,9.13146940867106,180.13151000000005,95.783763,552.4202321370443,5016.3948,1755.2296244303384,305.40958889562864,360.2389551798503,955.0363061603086,3.747459292411804,51.095458,6.54466180006663,27.59918,116.0475304921468,230.3453,0.4816569561759631,3.8771223,1.649199257294337,36.211193,0.7599995483954748,3.4395305,0.04200000377992789,0.29614801,11.270008246103922,9.315257,0,0,0.031974499113857746,0.17780027,0.00400000410930564,0.0084622213,0.014884675852954388,0.16982122,311.2790552775065,6.504076135852905,53.416717880413046,206.47424846775004,40.45040793019892,29.71540753892105,-0.1923016793106375,3.429987053076426,5.6736625,60635.50706790533,0.08530772110638411,3.4390769600868225,11.011358,2.4911099076271057,2.8923304,0.475000041226546,1.0842597 +1996,6.511379278926775,1.470193984753465,0,0,7.686339550726493,2.5522598028182983,2.6638414,102.31104151407878,75.256035,68.36059633890788,10.505743,83.94530232747395,13.005309,16.249948978424072,4.6522227,7.557493487993876,5.5242189,266.7558415730794,85.278741,531.4079996744791,170.78176000000005,9.06367564201355,183.44400000000002,59.514335,537.3112080891927,5297.7083,1757.1905924479165,307.29120752307955,362.00496164957684,930.0218807197676,6.036929090817769,53.568363,7.866570234298706,26.00128,124.7284984588623,224.86947,0.6497871528069178,4.0579149,3.2318945129712424,48.538296,0.9399992177883784,4.501452099999999,0.04900001051525275,0.39044285,11.990008195241293,9.7707047,0,0,0.04382059909403324,0.20547879,0.002013620309298858,0.11353612,0.01771567389369011,0.23841137,312.29801940917963,6.542220103334365,53.42127728765462,200.87242078907184,40.45019229181408,28.71419152495162,-0.1926363889058272,3.6599862774213157,5.5527008,59650.01603284395,0.14569222560343534,3.602302074432373,10.510994,2.569999933242798,2.8654227000000003,0.48625003546476364,0.84755661 +1997,6.574573878777592,2.183313990263035,0,0,8.269788742717703,2.6610097885131836,2.8728436999999998,101.2420825958252,75.489912,69.06989606221516,10.417958,83.52113278706868,10.398164,16.362446784973145,3.7691062,7.813324570655823,3.4559389,265.2918523152669,86.34144599999998,534.9630432128906,160.63531,9.140432437260946,180.149,29.550907,542.7740173339844,5288.9251,1761.5010782877603,331.28891975653016,363.25195566813153,1204.992305406782,7.7147689660390215,55.76348100000001,8.959980805714926,29.370536,127.37702624003093,240.5221,0.8248193363348643,4.6266327,5.39930792649587,58.758537,1.2099987765153248,5.5717023,0.06000001293917497,0.427562,12.750008503595987,9.7952259,0,4.9588597e-5,0.05661919961373011,0.25820595,0.004000423466398691,0.1113431,0.02073227148503065,0.31501343,313.18303171793616,6.740456045264001,56.11803188775538,264.67515030448345,41.89315592193428,38.341382315947115,-0.19297109850101685,3.889986495176951,5.7834259,59868.27681505938,0.16690248873741567,3.780295729637146,9.824276800000002,2.650669972101847,2.8566852000000003,0.49000003685553867,0.76826308 +1998,6.590459870606787,1.5412452817195224,0,0,8.412226876444452,2.781449774901072,2.9899069,100.31604703267415,72.916263,69.77859687805176,10.335348,82.96492513020833,12.992477,16.399945735931396,3.9615346,7.95416518052419,2.9318362,263.8838653564453,86.348141,537.6670277913412,156.67666,9.254634141921997,176.1082,23.412636,570.7273610432943,5175.5355,1770.2906799316404,315.332621195414,365.9329554239909,1085.4305991966446,9.836338837941488,55.95678100000001,9.961479743321737,28.471196000000006,134.272824605306,234.46613,0.9994525363047918,6.9049469,8.110631505648294,70.04979200000001,1.5299981534481049,6.8917397,0.07300002624591191,0.54029666,13.540009021759033,10.02529,0,3.583493100000001e-4,0.06999999843537807,0.60512272,0.01000000579127421,0.06915097099999999,0.026339268311858177,0.38665542,313.90700531005854,6.446521520705138,56.589344323708055,232.31801820181306,42.33468433879227,37.81227830332195,-0.1933058080962065,4.1099876165390015,5.6031107,58604.367585517175,0.1710925825750941,3.8873608311017356,10.323837,2.724999964237213,2.701239,0.49000004182259244,0.76943857 +1999,6.661329053494626,1.3034304715400178,0,0,7.698162125432142,2.9081997672716775,2.9607505,99.330872853597,72.96355,70.47599538167317,10.216505,82.38263448079427,14.054175,16.44995387395223,3.9749853,8.04999581972758,3.1538842,262.5458628336589,82.703538,540.1430358886719,140.42543999999998,9.093777736028036,168.37661,18.420173,562.6231740315756,5112.4264,1778.199513753255,309.40837085260006,367.84497833251953,940.7006779859273,11.384798526763916,58.33870699999999,11.354286829630533,25.741051,138.68090184529623,252.31636,1.2204217116038005,8.6848445,11.121968984603882,91.978363,1.9399973253409069,7.9486502,0.08600003769000371,0.7424206999999999,14.300010919570923,10.07373,4.148790035666631e-6,0.0031081514,0.08999998929599921,1.0699013000000002,0.011000006149212519,0.13954925,0.03241546514133612,0.49435229,314.70898946126295,6.28115080714577,54.76937230485621,205.11187816433736,40.94720104039744,30.449171325383368,-0.1936405176913962,4.358643651008606,5.1676463,55523.54473764534,0.17324185027932018,3.9997291962305703,10.262658,2.8026700019836426,2.1509855,0.49000003188848495,0.7706312 +2000,6.893167303200749,1.2013380488633538,0,0,7.457347231717921,3.038709739844004,2.8153943,98.27196884155273,72.65140799999998,71.17349561055501,9.9231457,81.99841690063477,9.4043884,16.499963760375977,3.9867142,8.149996836980185,2.3476517999999995,261.1698455810547,76.330076,542.3829905192057,122.76605,8.829522927602133,165.25876,19.471227,552.0705413818359,5074.2696,1778.0101216634112,310.18680982649335,369.1249745686849,886.5647302341199,13.121398448944092,56.341686,12.102788925170898,25.730152,143.4614372253418,263.60627,1.603711913029353,10.640667,14.691894769668579,99.657424,2.429996371269226,8.598756300000002,0.10600005090236664,0.86319988,15.120010137557983,9.2978389,2.9456416086759418e-5,0.034006926,0.1699999620517095,1.411492,0.013000006632258495,0.2699959,0.040547359734773636,0.57423278,315.7589950561523,6.112229814393959,54.5095965154282,195.32415818527357,41.26362178323956,27.98197839802492,-0.19397522728658584,4.563808560371399,5.2735332,55661.00151337025,0.17458241694797966,4.127887845039368,9.480134800000002,2.8623799681663513,1.9694412,0.49000002940495807,0.77151922 +2001,6.95708692825445,0.961802096435875,0,0,7.591758768528899,3.162919799486796,3.0480682,97.35795720418294,70.65696899999998,71.8547960917155,10.593275,81.4894282023112,5.9590470999999985,16.54997984568278,3.2771364000000003,8.262498617172241,1.1600545,259.5498352050781,68.271466,543.1950124104818,111.64066,8.354893207550049,165.59900000000002,19.806901,542.7083333333334,5094.2258,1776.5307312011716,312.89637869980686,370.67298889160156,881.6703955806449,14.544998407363892,56.36878100000001,13.052591880162558,24.490463,149.25739415486655,261.60586,1.978332092364629,11.075295,19.702295621236164,96.243251,2.9699952602386475,9.8521252,0.132000050197045,0.94275566,15.880009412765503,8.984000300000002,2.597141228761757e-4,0.80619906,0.2699999349812667,1.6540308999999995,0.019000007305294275,0.6107305000000001,0.050659650626281895,0.63867332,316.4930165608723,6.188009183487292,54.709896387749005,196.1877828105409,41.3771755400566,27.8779984365221,-0.19430993688177556,4.776847044626872,5.3282102,56049.16642558323,0.17084303620462507,4.220908443133037,8.8337936,2.8942899902661643,2.3248261,0.49000003188848495,0.74608572 +2002,7.097947294929641,1.0706525114551886,0,0,8.046474186766174,3.2808697621027627,3.4534372,96.3429667154948,70.45667399999998,72.51259549458821,11.982167,80.81803385416667,3.1513602,16.5999755859375,2.420559,8.29999844233195,0.95011524,257.66879018147785,63.484809,543.6559855143229,101.90454,8.333909193674723,161.14055,12.302716,535.3501332600912,5096.5932,1778.960947672526,322.2788312475723,372.83499399820965,970.7244171943499,15.739598194758097,50.843174,13.693090518315634,25.156097,154.4252700805664,270.32175,2.527012268702189,12.214474,23.51545794804891,102.73275,3.5299941102663674,11.617585,0.15900006766120592,1.2107813,16.560010592142742,9.7208997,0.002832789449409271,2.9170651000000003,0.3899999012549718,2.8037817000000005,0.030000012057522934,1.313749,0.06128753939022621,0.73327062,317.1010182698567,6.359556247633107,57.07665954461615,218.4604141242816,41.898783266207694,33.80824328599571,-0.19464464647696525,4.990507483482361,5.4976481,55687.522360887495,0.17652225756277531,4.2806588013966875,8.3685909,2.9381799499193826,2.2797577,0.49000003188848495,0.67660085 +2003,7.424688347669062,0.9010419027374732,0,0,8.2416975979600835,3.4251197973887124,3.16329,95.34536170959473,69.839024,73.28449440002441,12.579882,80.10183588663737,5.7693016,16.59995237986247,1.7336337,8.320768594741821,0.74505988,255.41280873616537,62.27795500000001,543.3510030110677,97.844828,8.222527821858725,158.92828,10.122917,538.8634541829427,5113.7538,1783.5898132324216,328.12422419548386,375.41099802652997,944.7470786126371,16.890098412831623,44.441172,14.409090280532837,25.070909,158.99640528361002,287.30923,2.9139525095621743,15.640539000000002,27.517083009084065,117.40605,4.223822851975759,13.114832,0.1890000912050406,1.560512,17.260011196136475,11.005369,0.06715815638502438,5.226518,0.5027138615647951,4.785689700000002,0.060000043672819935,2.2356391,0.07306782963375251,0.85366012,317.73000590006507,6.4283053046514125,57.69037487838639,214.40339143057142,42.682165561174564,34.362181347359645,-0.19497935607215489,5.207866946856181,5.541719400000002,57641.72369815564,0.165150043379564,4.319008390108745,8.0831154,2.99712997674942,2.0262772,0.48882503310839337,0.60195554 +2004,7.812644316268693,1.0382131676166668,0,0,8.542465507294889,3.577999790509542,2.2029533,94.38845952351888,66.998563,74.13009516398112,12.194883,79.26674334208171,9.216749,16.590060075124104,1.4729968999999998,8.341978788375854,0.75667708,253.1937993367513,60.966802,542.8480021158854,87.654103,8.019330620765686,156.21655,9.7469995,537.7152353922526,5141.4447,1784.230285644531,338.9417722149104,376.9870020548503,945.5469500687323,17.334598859151203,49.135801,15.063492933909098,28.554887,164.7063954671224,307.5767600000001,3.5451226830482483,15.758879,31.54472287495931,125.65071,5.00792149702708,13.097501,0.23300011828541756,2.0510461,18.06001361211141,12.712613,0.23797391975919405,6.6512131,0.8247378170490265,5.4873038,0.12000008982916673,3.1186526000000003,0.08672221936285496,0.97410928,318.3570175170898,6.590470046881482,58.11358476694662,216.68728340618873,44.556855897235216,32.33033041098627,-0.19531406566734455,5.435196399688721,5.6480085,60340.85188935469,0.1719032893302405,4.3401593764623,7.526764599999999,3.035939951737722,2.1192661,0.4857220376531283,0.55294607 +2005,8.093491315549059,1.025657164253795,0,0,8.840128385718105,3.697199821472168,1.9480504,93.41565831502278,63.195607,74.98279317220052,11.060838,78.73161888122559,4.6297025000000005,16.54227288564046,1.8139658,8.346869071324667,0.58070615,250.9148038228353,60.33117900000001,542.1459757486979,71.956593,7.931297580401103,154.12291000000005,7.5405195,538.5567677815756,5209.9819,1783.360432942708,346.39555462360056,378.9070078531901,950.5924444363927,17.678198496500652,53.955471,15.682193517684937,33.447493,170.47949091593424,329.52471,4.231992959976196,16.143675000000002,36.60471884409586,126.49199,5.8813802401224775,12.434284,0.28500013550122577,2.365528,18.97001536687215,14.626529,0.46645688513914746,7.0791974,1.2757697900136311,6.3606922,0.21000011265277863,3.4180583,0.10239290756483872,1.0845927,319.1300023396809,6.6935794842136405,58.883410476258234,218.7880647839753,45.62238086061233,32.723990706702715,-0.19564877526253424,5.6560072501500445,6.2799143,62587.82671838024,0.14980785321635395,4.354827245076497,6.9433284,3.073349952697754,1.8947828,0.481325035293897,0.46971744 +2006,8.358134409609946,1.092642827822681,0,0,8.925648149522456,3.767239769299825,2.045423,92.3141638437907,60.048081,75.77629216512044,10.21735,78.12813186645508,0.6450640999999999,16.514484405517578,1.7510311,8.368909200032553,0.58710647,248.66479873657227,63.03720300000001,540.64996337890625,65.575271,7.679868618647258,152.41471,9.3190485,536.2959035237631,5272.2746,1783.421223958333,356.46968956461853,381.01000722249347,986.1510088892475,18.454998811086018,51.911598,16.647892634073894,36.489809,177.60554122924805,346.30497,4.8289631605148315,19.891066,40.86165841420492,133.41048,6.627838969230652,14.118518,0.3600001533826192,2.3531588,20.050018151601154,12.639849,0.7066208471854528,6.875404400000001,1.6065597534179688,8.3862482,0.32000014930963516,2.5592336,0.1196288987994194,1.1852524,319.9329986572265,6.875606952566932,60.37974252884005,229.89543951646962,46.63913373990392,34.3551466019379,-0.19598348485772396,5.891855637232463,6.9409178,63046.345147395674,0.12455411284421772,4.33484947681427,6.3118449,3.1184199452400208,1.5902358,0.47626903901497525,0.43579597 +2007,8.681148087085731,0.9662119668592635,0,0,9.284494092478702,3.864439765612284,1.7666157999999998,91.12946637471516,57.25715400000001,76.47559356689453,9.3272415,77.3146406809489,4.5089203,16.49068291982015,1.5545493,8.360188722610474,0.78280059,246.4138298034668,64.737513,538.4259847005209,61.623755,7.651655554771423,147.28895,9.6981304,544.8235321044922,5250.6823,1788.9513142903643,355.0225755363805,382.60301971435547,945.8695944358407,19.124198754628498,49.953532,17.730092525482178,37.109679,185.02057011922201,357.26506,5.509383638699849,26.595246000000003,45.3168420791626,127.25708,7.37440820535024,16.399738,0.4300001785159111,2.4154053,21.274523735046387,9.3262891,0.9124758193890253,6.6980995,2.1004197100798288,8.4029745,0.41000018020470935,2.7884,0.13823089003562927,1.2649376,320.64601389567054,6.596141361261144,60.965826091796124,219.70587066030026,48.13085999118788,33.27729799228883,-0.1963181944529136,6.164003173510234,6.9754073000000005,62641.35919619402,0.1214193886258194,4.309016704559326,5.7707437000000015,3.1368099649747214,1.7021554,0.46845003962516785,0.59162888 +2008,8.733139806444965,0.6683379874909382,0,0,9.091850913798911,3.9428598284721375,1.746034,89.87336858113606,56.837697,77.15499623616536,9.0353429,76.47364234924316,8.339533900000001,16.458677450815838,1.9164483,8.382678429285685,0.45696793,244.47682189941406,63.06087700000001,536.3339691162109,57.108479,7.470538298288981,144.47281,6.337644999999998,546.2872212727865,5191.6855,1798.4196472167966,360.4917104977002,384.739018758138,912.5104843071592,19.5464989344279,54.881457,18.928292592366535,33.091627,193.09755071004233,362.72449,6.4292839368184405,30.815622,49.719340324401855,138.28669,8.326615969340006,17.544095000000002,0.5000001961986223,2.6196596000000003,22.006818771362305,8.8123411,1.0804997682571411,7.076053,2.7087196509043374,10.669375,0.4322652171055476,2.7884,0.15781688069303831,1.3164863000000002,321.57499186197913,6.638276368451454,61.316441745117054,214.69549502704018,48.035076099905325,31.619011505170853,-0.1966529040481033,6.453542669614156,6.8835341,61275.77057569818,0.13327703444478306,4.247629324595134,5.5737514,3.1567599376042685,1.6171325,0.4623090426127116,0.63840472 +2009,8.584990106780188,0.7548632834009588,0,0,9.109514001671727,4.015999873479207,1.7995506999999995,88.57357406616211,55.35525300000001,77.73389498392741,9.6854874,75.92381922403972,5.7877004,16.42168601353963,1.6755174,8.389018853505453,0.38354940000000004,242.4608243306478,60.065148,533.7759806315104,54.788238,7.171112656593323,144.24254,3.7694324,539.8231658935547,5145.2658,1802.1011861165362,364.2003633816462,386.28002166748047,917.7292309352042,19.870198726654053,61.50634300000001,19.930792331695557,32.081369,200.3144874572754,366.5558,7.706023693084717,33.926872,52.765931129455566,160.10848,9.35536535580953,21.142804,0.5700002362330755,2.9666725,22.658213933308918,9.933600300000002,1.2225398023923237,7.852249400000002,3.002319614092509,16.223306,0.4763352448741595,2.9974,0.17747688045104346,1.4335011999999998,322.27500661214185,6.712782947167917,61.37795929686438,218.75811433708597,46.48309573333753,31.77247636618844,-0.19698761364329287,6.728324254353841,7.159861,58721.16171394653,0.1066842123978326,4.189547856648763,5.2570896,3.1835699876149497,1.7272846000000002,0.4620170295238495,0.47723148 +2010,8.97554368419623,0.8851100551119334,0,0,9.665129375647625,4.092629869778951,1.7742175999999998,87.3809585571289,56.090865,78.37379455566406,10.48947,75.33903121948242,4.4070317,16.415090084075928,1.4644148,8.386359055836996,0.65896445,240.45181020100912,58.86009,531.2819671630859,52.271203,7.125164190928142,142.6745,2.4614781000000003,535.3102569580078,5179.9719,1807.850667317708,370.8962527865861,388.71703084309894,953.2286302920015,20.67949867248535,65.20953100000001,20.536893049875896,29.851794,207.74554824829102,361.74691,8.963194449742636,35.069515,57.8515370686849,165.044,10.426983912785849,20.460881,0.650000254313151,3.1827017000000004,23.296514352162678,11.247607,1.3827498058478038,8.7778712,3.920989453792572,15.914528,0.5346282621224722,3.3098,0.19690187896291414,1.3375544,323.140993754069,6.708375367844256,62.4444721228101,224.60211210242653,47.318297037341715,34.61053251023121,-0.19732232323848264,7.010202924410502,7.2759031,58249.4552717192,0.1379875550624469,4.121598919232686,4.897554799999999,3.1960699955622354,1.8511656000000003,0.4581970274448395,0.39655186 +2011,9.255966259655072,0.9136545403955806,0,0,9.478876565579496,4.170369823773702,1.8467555,86.05878257751465,57.565927,79.04059473673503,11.056837,74.6382344563802,4.6237938,16.361384391784668,2.0468287,8.387009064356485,0.85601742,238.2458127339681,62.415615,528.532969156901,52.120722,7.106488426526387,140.42156,3.0036158,534.1656138102213,5252.9333,1813.0701904296873,372.6576831783338,390.9440205891927,906.7673675143252,21.561198711395264,67.69059200000001,21.354194005330402,28.645628,214.5593744913737,366.94427,10.464804887771606,43.330418,62.84794902801514,190.47655,11.92148502667745,22.158614,0.7400002578894297,3.410604,24.134215990702312,12.498165,1.555159757534663,9.4654578,5.171979467074077,20.415233,0.5557872851689657,3.5841,0.21967886885007223,1.1291345,324.15898386637366,6.648935415452754,62.39874927347722,218.62875398112044,48.492221562223264,32.518259270416976,-0.19765703283367228,7.307322184244792,7.4656928,58834.52201769484,0.1090569133516887,4.04886809984843,4.3361773,3.2309599916140237,2.096153,0.450772022207578,0.39105944 +2012,9.386649744945927,0.9706890780006704,0,0,9.705285171316014,4.244799852371216,1.794986,85.01424598693848,59.464919,79.78919410705566,9.6609456,73.97862943013509,5.4529267,16.34028704961141,2.0520518,8.405529419581095,0.7168607,236.20683797200522,70.235225,525.833974202474,53.35878,6.98785674571991,136.71475,3.0096674,537.6538136800131,5232.3317,1815.2612304687498,380.80976664436446,393.0159912109375,949.6022183538887,22.543598651885986,63.311547,21.61989386876424,25.468261,220.10840479532877,356.29002,11.74120569229126,45.81505,67.7508716583252,205.00564,12.84508458773295,21.423000000000002,0.8300002614657084,3.2771162000000005,24.988317330678303,12.591587,1.750789761543274,9.054248,5.6421693166097,24.0671,0.6353292663892111,3.9269,0.23203588897983232,0.98551995,325.0049921671549,6.7427966320324675,63.84845417053954,229.10693623998705,48.176745092515574,35.82690195539086,-0.197991742428862,7.598473310470581,7.7062836,57925.01408286904,0.13867518125293046,3.9642380078633628,3.8379813,3.252539952596029,1.7328717,0.44370101888974506,0.41594871 +2013,9.65939649634906,0.9186575700100624,0,0,9.560553735096205,4.328779697418213,1.6324652,83.89107831319173,62.512861,80.53269322713216,8.3027436,73.30493418375652,6.5167934,16.327280203501385,1.9408617,8.421289602915445,0.61330322,234.38086700439453,75.740842,523.1149698893229,54.819887,6.848844488461812,133.39273,1.8384424,539.620361328125,5231.2321,1822.580841064453,381.59439281758614,395.72497812906903,901.2387566412425,23.414698759714764,59.817791,22.207694212595623,19.467118,226.13036346435547,342.89828,13.946606318155924,38.8888,74.7700621287028,202.01825,14.522682428359985,23.8069,0.9300002753734589,2.9986006,26.02762222290039,11.604213,1.9295397400856018,9.7859,7.50248924891154,21.452891,0.6930242776870728,4.2254,0.2427388938764731,0.87225171,325.91899108886713,6.847910646098343,63.650976650406456,219.3811792508812,47.50620674450057,33.245565827085585,-0.19832645202405166,7.910870313644409,7.686158,57413.51786587013,0.15767154312883705,3.8617884318033853,3.5745493,3.305999994277954,0.96258078,0.43652602036794025,0.44442215 +2014,9.719224641485487,1.0957648183627096,0,0,9.744379658087517,4.398729681968689,1.6517,83.06993166605632,53.5475,81.09249051411946,9.8735,72.71072514851888,2.8024,16.306567827860516,1.6696,8.429009358088175,1.114899,233.07986958821616,54.9365,520.5809682210287,28.9612,6.6860902309417725,133.6791,1.2625,539.5420227050781,5358.4982,1831.470998128255,387.873539205888,397.5469792683919,964.047618150183,23.809098561604817,59.82,22.075694402058918,22.47,229.5420659383138,358.8813,15.355007727940878,57.1243,80.51572863260905,200.0249,15.25278091430664,25.2487,1.0056702643632889,3.5393,26.890435059865315,12.991,2.047369738419851,10.1025,8.336968978246054,30.4858,0.7650303095579147,4.4701,0.24726289386550585,1.1516,326.98799133300776,6.916164550612366,65.0368536583283,233.52551800560903,47.385237858595374,36.145821385036584,-0.19866116161924133,8.221433083216349,7.8784,57093.261416151574,0.13977836334337682,3.7536577781041465,3.4810000000000003,3.2976099848747253,1.2299,0.431062030295531,0.3854 +2015,9.724603236619341,0.9598830811179276,0,0,9.727423576882977,4.48009459177653,1.57,82.11867332458496,47.5476,81.8340072631836,10.8699,72.07452774047852,0.8742,16.297699610392254,1.6696,8.46001672744751,1.6714,231.4518674214681,43.5734,518.0192159016927,14.6096,6.666922569274902,133.82299999999998,0,549.8265838623047,5404.8069,1841.9559936523435,388.07279566332187,399.9491322835286,934.3498846847756,24.225393454233807,59.82,22.05013370513916,22.47,233.69507471720377,358.8813,17.753809293111164,78.7906,84.766908009847,201.9534,16.742653687795002,32.381,1.0911485850811005,3.6633,27.94633404413859,14.4857,2.2237508495648703,11.7285,9.834414084752401,38.5792,0.8708131710688273,4.6492000000000004,0.252856516589721,1.1516,328.17964680989576,6.937624392238832,65.27970313424456,227.24481931953315,47.34877178380204,34.746024228000834,-0.19899587121443105,8.568533420562744,8.02,50464.18814475436,0.12580052700903913,3.6527328491210938,3.2933,3.2844178279240928,1.3378,0.4261276324590047,0.3481 +2016,9.772787469668758,0.9412258275783926,0,0,9.346808648619202,4.563908696174622,1.64646,80.86898867289226,45.017160000000004,82.689117431640625,11.191977,71.4100399017334,0.78156,16.2742174466451,1.515231454,8.488823413848877,1.61422146,229.59260686238608,41.88082,514.5848337809244,12.88774,6.884193301200867,135.22241999999997,0,563.0182749430338,5438.2612,1851.5939737955728,382.23978747158236,403.1169662475586,906.3534658648936,24.526807467142742,60.8428786,22.259799321492512,21.990155599999998,237.7288475036621,351.625206,21.1880939801534,96.0355,90.27675882975261,211.47616,19.401511987050373,37.92486,1.2003816763559978,3.99074446,28.906192779541016,12.09188,2.4407402873039246,13.420601600000001,12.709800720214844,32.20384,0.9575200627247492,4.8684292000000005,0.26552995791037876,1.16567266,329.07598114013666,6.912977981970805,65.2514202512025,219.91552670660485,46.73538488330197,33.6260620425839,-0.19933058080962068,8.884455680847168,7.73546,48338.67641198973,0.11182269067470146,3.5471805334091187,3.07158,3.2989591161410012,1.29166,0.41886203239361447,0.33428 +2017,9.820971702718175,0.9225685740388576,0,0,8.96619372035543,4.606989026069641,1.72292,79.52129236857097,42.486720000000005,83.1493148803711,11.514054,70.57014719645183,0.68892,16.217710494995117,1.360862908,8.531164169311523,1.55704292,226.30972035725912,40.18824,508.81994374593097,11.16588,6.611528674761455,136.62184,0,559.08221435546875,5471.7155,1872.6688435872393,376.40677927984285,405.75096130371094,878.3570470450115,24.88560724258423,61.8657572,22.13019911448161,21.5103112,240.9888776143392,344.369112,23.537092844645183,113.28039999999999,96.25290997823079,220.99892,20.76111634572347,43.46872,1.2812815109888713,4.31818892,29.844895044962566,9.69806,2.632450262705485,15.1127032,13.167500575383505,25.82848,1.0300400753815968,5.0876584000000005,0.2752249762415886,1.17974532,329.77697753906244,6.888331571702777,65.22313736816047,212.58623409367655,46.121997982801894,32.50609985716696,-0.1996652904048104,9.175116618474325,7.45092,46213.164679225105,0.09784485434036376,3.4357604583104453,2.8498599999999996,3.3043991525967917,1.24552,0.4108480264743169,0.32046 +2018,9.86915593576759,0.9039113204993225,0,0,8.585578792091654,4.679159164428711,1.79938,78.11839421590169,39.95628000000001,83.91531435648601,11.836131,69.81614049275716,0.59628,16.178108374277752,1.206494362,8.575854301452637,1.49986438,223.6417096455892,38.49566,504.2629089355469,9.44402,6.6703247626622515,138.02125999999998,0,563.4309794108073,5505.1698,1882.6005554199216,370.5737710881033,408.58695729573566,850.3606282251294,25.246907393137615,62.8886358,22.13149929046631,21.0304668,243.49690628051758,337.113018,27.863791306813557,130.5253,101.51613489786784,230.52168,23.196019172668457,49.01258,1.388161559899648,4.64563338,30.633196353912354,7.30424,2.9018102486928306,16.8048048,13.882500171661377,19.453120000000002,1.102800081173579,5.3068876,0.2848559816678365,1.19381798,330.50797017415357,6.863685161434749,65.19485448511841,205.25694148074825,45.508611082301826,31.386137671750017,-0.2,9.481545766194662,7.166379999999999,44087.652946460476,0.08386701800602607,3.327050487200419,2.62814,3.3077792127927146,1.1993800000000001,0.4034990295767784,0.30663999999999997 +2019,9.917340168817008,0.8852540669597876,0,0,8.204963863827881,4.754629095395406,1.87584,76.66869608561198,37.42584,84.7031135559082,12.158208,69.06644121805827,0.50364,16.132907549540203,1.052125816,8.618204037348429,1.44268584,220.9477106730143,36.80308,499.6569137573242,7.722159999999999,6.737257560094197,139.42068,0,567.2884826660156,5538.6241,1889.6500447591143,364.7407628963638,411.4049580891927,822.3642094052474,25.62180741628011,63.9115144,22.104199409484863,20.5506224,245.2909304300944,329.856924,32.888890425364174,147.7702,106.94242032368977,240.04444,25.97072124481201,54.556439999999995,1.5033116738001506,4.97307784,31.21499729156494,4.91042,3.2085703015327454,18.4969064,13.807700077692667,13.077759999999998,1.1757400731245677,5.5261168,0.2942139804363251,1.20789064,331.2279713948567,6.839038751166721,65.16657160207637,197.92764886781995,44.89522418180175,30.266175486333076,-0.20090761167753185,9.776285489400228,6.8818399999999995,41962.14121369585,0.06988918167168841,3.216910481452942,2.40642,3.3092092672983804,1.15324,0.3960850238800049,0.29281999999999997 +2020,9.965524401866425,0.8665968134202525,0,0,7.824348935564107,4.833389004071553,1.9523,75.17999839782715,34.8954,85.51261393229167,12.480285,68.32144101460774,0.41100000000000003,16.083006540934246,0.89775727,8.658293883005777,1.3855073,218.23170852661133,35.1105,495.01591237386066,6.0003,6.8053542375564575,140.8201,0,570.8554738362631,5572.0784,1894.0300089518228,358.90775470462427,414.2139663696289,794.3677905853654,26.004807631174724,64.934393,22.052699247996014,20.070778,246.5279426574707,322.60083,38.58898957570394,165.0151,112.51471265157063,249.5672,29.078122933705647,60.1003,1.6264817516009014,5.3005223,31.591198603312176,2.5166,3.547910292943319,20.189008,13.080600182215372,6.7024,1.2487600843111675,5.745346,0.3033069794376691,1.2219633,331.9369735717773,6.814392340898694,65.13828871903432,190.59835625489166,44.28183728130168,29.146213300916138,-0.20182445423731896,10.059305349985758,6.5973,39836.629480931224,0.05591134533735071,3.1060604651769004,2.1847,3.3087692062060037,1.1071,0.3886220206816991,0.27899999999999997 +2021,9.582296378129072,0.7900976593187808,0,0,7.485336860045909,4.91542915503184,1.8031199999999998,73.65949948628743,33.28538,86.34391212463379,11.64406271,67.58164151509602,0.37899000000000005,16.02880557378133,0.833926213,8.696223735809326,1.342148655,215.4957071940104,33.879090000000005,490.3539098103841,5.50149,6.872624039649963,138.0897,0,574.2186177571615,5485.21957,1895.9098002115884,347.3196812781956,417.0139617919922,767.5769375754764,26.391207536061604,63.8401921,21.980799357096355,19.2265454,247.32899602254233,304.67177,44.94098981221517,151.8476522,118.21776008605957,227.73617000000002,32.51132154464722,55.285129999999995,1.7574216425418854,4.850124236,31.762498537699383,2.27322,3.9155803124109902,18.56624278,11.814500013987223,6.054209999999999,1.3217700620492299,5.242764301999999,0.3121409813563029,1.111101229,332.6349716186523,6.667198499578048,65.11029535660056,183.2158847136023,42.49273829077934,28.313227520356158,-0.20266035720338565,10.330705086390177,6.246659999999999,37678.6053141758,0.041933509003013035,2.9951204657554626,2.06237,3.3065592646598816,1.07222,0.3811270197232564,0.26903 +2022,9.199068354391722,0.7135985052173092,0,0,7.146324784527713,4.995899200439453,1.65394,72.1135991414388,31.67536,87.15781211853027,10.80784042,66.84724108378093,0.34698,15.97090514500936,0.770095156,8.732073624928793,1.29879001,212.7447077433268,32.64768,485.67991129557294,5.00268,6.873660524686177,135.3593,0,574.0177510579427,5398.36074,1895.029602050781,335.73160785176697,419.69896697998047,740.7860845655875,26.75210730234782,62.7459912,21.878599325815838,18.3823128,247.12806955973306,286.74271,51.186890602111816,138.68020439999998,123.1871903737386,205.90514000000002,35.90242004394531,50.46996,1.8826414843400319,4.399726171999999,31.82159884770711,2.02984,4.240620255470276,16.94347756,10.408999999364218,5.40602,1.3815700709819794,4.740182603999999,0.31936198721329373,1.000239158,333.30997721354163,6.5200046582574025,65.0823019941668,175.8334131723129,40.703639300257,27.480241739796174,-0.2034153205757318,10.589104652404785,5.89602,35520.58114742037,0.02795567266867536,2.8846404353777566,1.9400399999999998,3.302669326464335,1.03734,0.37361301978429157,0.25905999999999996 +2023,8.81584033065437,0.6370993511158376,0,0,6.807312709009516,5.069929321606954,1.5047599999999999,70.54840151468913,30.065340000000003,87.91511154174805,9.971618130000001,66.11843935648601,0.31497000000000003,15.909904559453329,0.7062640990000001,8.76590363184611,1.255431365,209.98170471191406,31.41627,481.00390879313153,4.50387,6.789880355199178,132.6289,0,569.1389872233073,5311.50191,1891.1594441731768,324.1435344253384,422.16996510823566,713.9952315556985,27.063706874847412,61.6517903,21.73849932352702,17.5380802,245.54410044352213,268.81365,56.59479204813639,125.51275659999999,126.6230239868164,184.07411000000002,38.8917179107666,45.65479,1.9890713493029277,3.949328108,31.860599199930828,1.78646,4.460980216662089,15.32071234,9.192109982172648,4.75783,1.4164200524489086,4.237600906,0.3236989825963974,0.8893770870000001,333.94797515869135,6.372810816936756,65.05430863173305,168.45094163102354,38.91454030973467,26.647255959236194,-0.20408934435435747,10.833104610443115,5.54538,33362.55698066495,0.013977836334337678,2.7751004497210183,1.81771,3.2971893151601157,1.00246,0.3660930171608925,0.24908999999999998 +2024,8.432612306917017,0.5606001970143659,0,0,6.468300633491319,5.137519399325053,1.3555799999999998,68.96930249532063,28.45532,88.6159102121989,9.135395840000001,65.39543914794922,0.28296,15.84610398610433,0.642433042,8.797803243001303,1.21207272,207.2087033589681,30.18486,476.3339131673177,4.00506,6.680801510810852,129.89849999999998,0,562.6074625651041,5224.64308,1884.499318440755,312.5554609989097,424.4429702758789,687.2043785458096,27.331507205963135,60.5575894,21.56779940923055,16.693847599999998,242.9991251627604,250.88459,61.192992528279625,112.3453088,128.6351572672526,162.24308000000002,41.48741594950358,40.83962,2.0772412021954856,3.4989300439999997,31.87939914067586,1.54308,4.589500228563945,13.69794712,8.127560059229532,4.10964,1.4290800491968791,3.7350192079999993,0.32532599071661633,0.7785150160000001,334.54897562662757,6.22561697561611,65.02631526929929,161.06847008973415,37.12544131921233,25.814270178676214,-0.2046824285392626,11.06270432472229,5.1947399999999995,31204.532813909525,0,2.666900416215261,1.6953799999999999,3.290199359258016,0.96758,0.35858002056678134,0.23911999999999997 +2025,8.049384283179666,0.48410104291289424,0,0,6.129288557973122,5.19866943359375,1.2064,67.38140360514323,26.8453,89.26010958353679,8.29917355,64.67853927612305,0.25095,15.779803355534872,0.578601985,8.82783325513204,1.168714075,204.42970275878906,28.95345,471.67491912841797,3.50625,6.563159545262654,127.1681,0,555.4087270100912,5137.784250000001,1875.2491861979165,300.9673875724811,426.5249659220378,660.4135255359207,27.560407161712646,59.4633885,21.37299919128418,15.849615,239.8141326904297,232.95553,65.00849374135335,99.177861,129.31938807169595,140.41205000000002,43.69751421610514,36.02445,2.147661050160726,3.04853198,31.878199418385822,1.2997,4.637290120124817,12.0751819,7.1863800684611006,3.46145,1.421960045893987,3.2324375099999996,0.32440098375082016,0.667652945,335.11497243245435,6.078423134295464,64.99832190686553,153.6859985484448,35.336342328689994,24.98128439811623,-0.20519457313044728,11.278004010518393,4.8441,29046.5086471541,0,2.5603904128074646,1.5730499999999998,3.2817793687184653,0.9327,0.35108601798613864,0.22914999999999996 +2026,7.666156259442314,0.4076018888114226,0,0,5.790276482454924,5.253379503885905,1.05722,65.78930409749348,25.235280000000003,89.84770838419597,7.462951260000001,63.96783955891927,0.21894,15.71150310834249,0.5147709280000001,8.856083075205484,1.12535543,201.6477025349935,27.72204,467.0329055786133,3.0074400000000003,6.441808899243672,124.43769999999999,0,547.8685658772787,5050.9254200000005,1863.5790608723955,289.3793141460524,428.4259719848633,633.6226725260318,27.754806836446125,58.369187600000004,21.15929937362671,15.0053824,236.22918446858725,215.02647000000002,68.06699434916179,86.0104132,128.76673952738443,118.58102000000002,45.52951240539551,31.20928,2.200830856959025,2.598133916,31.856899579366047,1.0563200000000001,4.613970160484314,10.45241668,6.345160047213237,2.8132600000000005,1.3971900244553883,2.729855812,0.3210729906956355,0.556790874,335.64497375488276,5.931229292974819,64.97032854443177,146.30352700715542,33.54724333816766,24.14829861755625,-0.20562577812791144,11.478903532028198,4.49346,26888.484480398678,0,2.4558504025141397,1.45072,3.2720093925793967,0.89782,0.34362001965443295,0.21917999999999999 +2027,7.282928235704961,0.331102734709951,0,0,5.451264406936728,5.301649610201518,0.90804,64.19710508982341,23.625260000000004,90.37890752156575,6.626728970000001,63.263438860575356,0.18693,15.64140272140503,0.45093987100000005,8.882613182067871,1.081996785,198.8647028605143,26.49063,462.4119110107422,2.50863,6.3182066679000854,121.7073,0,540.1039326985677,4964.06659,1849.6589355468748,277.79124071962383,430.1509704589844,606.8318195161429,27.8827068010966,57.2749867,20.91059970855713,14.1611498,231.7252540588379,197.09741000000002,70.39279619852702,72.8429654,127.05921173095703,96.74999000000003,46.991010665893555,26.394109999999998,2.2372007369995117,2.1477358520000003,31.815699736277264,0.8129400000000002,4.527890165646871,8.829651460000001,5.585010051727295,2.165070000000001,1.3566400210062664,2.2272741139999996,0.3154799888531367,0.44592880300000004,336.1399765014648,5.784035451654173,64.942335181998,138.92105546586606,31.758144347645327,23.31531283699627,-0.20597604353165508,11.66550342241923,4.14282,24730.460313643256,0,2.3535303672154746,1.3283900000000002,3.2609694401423135,0.86294,0.3361930176615715,0.20921 +2028,6.899700211967609,0.2546035806084792,0,0,5.112252331418531,5.343489646911621,0.7588599999999999,62.60860633850098,22.01524,90.85340627034505,5.790506680000001,62.56553808848063,0.15492,15.569802522659302,0.38710881399999997,8.90747300783793,1.03863814,196.08270390828451,25.25922,457.81691487630206,2.00982,6.192877014478047,118.9769,0,532.1617889404297,4877.20776,1833.6488342285154,266.2031672931952,431.7059733072917,580.0409665062539,27.91750653584798,56.1807858,20.61359961827596,13.316917199999999,225.94027455647787,179.16835000000003,72.00929578145345,59.67551759999999,124.27375666300456,74.91896,48.08910814921061,21.578939999999996,2.25724059343338,1.6973377879999996,31.75439977645874,0.5695600000000001,4.386350115140279,7.206886239999999,4.8906599680582685,1.5168799999999996,1.3019500176111858,1.724692415999999,0.30775199582179386,0.33506673200000003,336.59997558593744,5.636841610333526,64.91434181956426,131.53858392457667,29.969045357122987,22.48232705643629,-0.20624536934167825,11.83780320485433,3.7921799999999997,22572.436146887827,0,2.2536203463872275,1.20606,3.2487194339434304,0.82806,0.32881401230891544,0.19923999999999997 +2029,6.516472188230258,0.17810442650700764,0,0,4.773240255900333,5.378889719645183,0.6096799999999998,61.02720705668131,20.40522,91.27140553792317,4.954284390000001,61.87423769632975,0.12290999999999996,15.496902147928873,0.32327775700000005,8.930742740631104,0.995279495,193.30570220947266,24.02781,453.24891408284503,1.5110099999999997,6.0660719871521,116.2465,0,524.0644836425781,4790.34893,1815.678751627604,254.61509386676653,433.0959726969401,553.250113496365,27.872706254323322,55.0865849,20.278199831644695,12.4726846,219.33229446411133,161.23929000000004,72.93879699707031,46.50806979999999,120.48045539855957,53.08793,48.83070659637451,16.76377,2.26138041416804,1.2469397239999997,31.673200130462646,0.3261799999999999,4.195710102717082,5.5841210199999995,4.249710043271382,0.86869,1.2345900038878124,1.2221107179999997,0.2980109974741936,0.22420466100000003,337.02497863769526,5.489647769012881,64.8863484571305,124.15611238328731,28.179946366600653,21.649341275876306,-0.2064337555579809,11.995702823003134,3.44154,20414.411980132405,0,2.156300365924835,1.08373,3.235349496205648,0.79318,0.3214910129706065,0.18927 +2030,6.133244164492906,0.101605272405536,0,0,4.434228180382137,5.407859762509664,0.4605,59.4559071858724,18.7952,91.63280614217122,4.1180621,61.18953768412272,0.0909,15.42290178934733,0.25944670000000003,8.952472686767578,0.95192085,190.53470738728842,22.7964,448.71191660563153,1.0122,5.93794830640157,113.5161,0,515.8313166300455,4703.4901,1795.8786214192705,243.02702044033788,434.323974609375,526.4592604864761,27.760005950927734,53.992384,19.912999471028645,11.628452,212.24329249064127,143.31023000000005,73.20269775390625,33.340622,115.74612744649251,31.2569,49.22270488739014,11.9486,2.2500202655792236,0.79654166,31.572100003560383,0.0828,3.961560090382894,3.9613558,3.6521300077438354,0.2205,1.1558600068092346,0.71952902,0.2863679925600688,0.11334258999999999,337.4149780273437,5.342453927692235,64.85835509469673,116.77364084199793,26.390847376078316,20.816355495316326,-0.20654120218056304,12.139302333196005,3.0909,18256.38781337698,0,2.0616703232129416,0.9614,3.220899482568105,0.7583,0.3142320141196251,0.1793 +2031,5.768018358892436,0.12920347746712182,0,0,4.345371325390917,5.430389801661174,0.44271000000000005,57.897507667541504,17.92802,91.9377047220866,4.02317297,60.51163705190023,0.08381999999999999,15.348001639048258,0.24100761240000002,8.972732623418173,0.9221711260000001,187.772705078125,21.996879999999997,444.2079162597656,0.92805,5.8086572488149,113.1905,0,507.473388671875,4693.63392,1774.388682047526,238.7856045894419,435.39397684733075,525.3744959080251,27.59000571568807,51.769800000000004,19.525399684906006,10.82562094,204.9323361714681,131.00808400000005,72.82169850667317,31.830417800000003,110.13004302978516,29.523120000000002,49.27160485585531,11.43154,2.2235902746518454,0.753686015,31.451200167338055,0.07682,3.6888000766436257,3.79240023,3.0897899866104126,0.20458,1.066930005947749,0.6796168269999999,0.2729329963525136,0.10617118449999999,337.7709808349609,5.341360110843042,64.89423801817695,116.10716371330652,25.71331796106085,20.79887160397985,-0.20667785522991408,12.268502235412598,3.05227,17613.721624647987,0,1.969850331544876,0.90757,3.2054595152537027,0.7343999999999999,0.30704300850629807,0.1729 +2032,5.402792553291967,0.15680168252870763,0,0,4.256514470399697,5.44931976000468,0.42492,56.35440889994303,17.060840000000002,92.21110407511394,3.92828384,59.840436935424805,0.07673999999999999,15.272301435470581,0.22256852480000003,8.991562525431315,0.8924214020000001,185.02170689900717,21.19736,439.73791758219403,0.8439,5.718288938204448,112.86489999999999,0,501.41376241048175,4683.7777399999995,1752.3588358561196,234.5441887385459,436.3369776407878,524.2897313295741,27.334205627441406,49.547216,19.099999745686848,10.02278988,196.9043960571289,118.70593800000003,72.09629694620769,30.320213600000002,104.24504661560059,27.789340000000003,49.133204778035484,10.914480000000001,2.189420243104299,0.71083037,31.320300102233887,0.07084,3.4114500681559243,3.62344466,2.588470002015432,0.18866,0.9774520049492518,0.639704634,0.25896799316008884,0.098999779,338.1089782714843,5.3402662939938494,64.93012094165715,115.44068658461512,25.03578854604338,20.78138771264338,-0.206843714706034,12.3898024559021,3.01364,16971.055435918992,0,1.880890319744746,0.85374,3.189079542954763,0.7105,0.29993101457754773,0.16649999999999998 +2033,5.037566747691498,0.18439988759029344,0,0,4.167657615408478,5.467479825019836,0.40713,54.82900842030843,16.19366,92.47810554504395,3.8333947100000003,59.17613697052002,0.06966,15.196101268132528,0.2041294372,9.009042421976725,0.862671678,182.28270848592123,20.39784,435.30491892496747,0.7597499999999999,5.678853631019592,112.5393,0,498.51202901204425,4673.92156,1730.8687947591143,230.30277288764992,437.1789830525716,523.204966751123,26.969004948933918,47.324632,18.624499797821045,9.219958819999999,187.81541061401367,106.40379200000004,71.31789779663086,28.810009400000002,98.66115315755208,26.05556,48.96040439605713,10.39742,2.1546402176221213,0.6679747250000001,31.189300060272217,0.06486,3.159670035044352,3.45448909,2.170010060071945,0.17274,0.8960880140463511,0.599792441,0.24566699812809625,0.09182837349999999,338.4429779052734,5.339172477144657,64.96600386513737,114.77420945592371,24.358259131025914,20.763903821306904,-0.20703878060892275,12.509502331415812,2.97501,16328.38924719,0,1.794860303401947,0.79991,3.171819508075714,0.6866,0.29290301352739334,0.1601 +2034,4.6723409420910285,0.21199809265187924,0,0,4.078800760417258,5.484869837760925,0.38934,53.32310835520426,15.32648,92.7387040456136,3.73850558,58.518636067708336,0.06258,15.119301080703735,0.18569034960000003,9.02520219484965,0.832921954,179.55870946248373,19.598319999999998,430.9089177449544,0.6756,5.65425185362498,112.21369999999999,0,496.67967224121094,4664.06538,1709.8788350423174,226.06135703675392,437.91698455810547,522.1202021726721,26.513304869333904,45.102047999999996,18.1103998819987,8.41712776,178.11242039998373,94.10164600000002,70.48849805196126,27.2998052,93.359100341796875,24.32178,48.753804524739586,9.88036,2.119280219078064,0.62511908,31.058300018310547,0.05888,2.9305200775464377,3.28553352,1.8205500145753224,0.15682000000000001,0.82198599477609,0.559880248,0.23299400011698404,0.084656968,338.77397664388013,5.338078660295464,65.00188678861757,114.10773232723231,23.680729716008447,20.74641992997043,-0.2072630529385804,12.627502282460531,2.93638,15685.723058461008,0,1.7117603023846943,0.7460800000000001,3.153739551703135,0.6627,0.2859620079398155,0.1537 +2035,4.307115136490559,0.23959629771346508,0,0,3.9899439054260384,5.501489758491516,0.37155000000000005,51.83840878804525,14.4593,92.9928035736084,3.64361645,57.868035316467285,0.055499999999999994,15.042201042175293,0.167251262,9.04009222984314,0.80317223,176.84971364339194,18.7988,426.5519205729167,0.59145,5.6341317892074585,111.8881,0,495.22399139404297,4654.209199999999,1689.3788452148435,221.81994118585794,438.55298614501953,521.0354375942211,25.983304659525555,42.879464,17.567500114440918,7.6142967,168.13141759236655,81.79950000000002,69.61009915669759,25.789601,88.32085927327473,22.588,48.5143035252889,9.3633,2.0833701888720193,0.582263435,30.927199999491375,0.0529,2.7213900486628213,3.11657795,1.5285300115744274,0.1409,0.754376009106636,0.519968055,0.2209129991630713,0.0774855625,339.1029790242512,5.336984843446272,65.03776971209778,113.4412551985409,23.00320030099098,20.728936038633954,-0.20751653169500694,12.74400250116984,2.8977500000000003,15043.056869732014,0,1.6316102941830952,0.69225,3.134889562924703,0.6388,0.2791140079498291,0.1473 +2036,3.9418893308900897,0.26719450277505086,0,0,3.901087050434819,5.517339785893758,0.35376,50.37620894114176,13.592120000000001,93.24060376485188,3.5487273200000002,57.22433567047119,0.04842,14.964800914128622,0.1488121744,9.053772131601969,0.7734225060000001,174.15871556599936,17.99928,422.23291778564453,0.5073,5.615521391232808,111.5625,0,493.9157460530599,4644.35302,1669.318888346354,217.57852533496197,439.08398691813153,519.9506730157701,25.393404642740887,40.65688,17.00409968694051,6.81146564,158.11940892537436,69.49735400000002,68.68459828694661,24.2793968,83.52938588460286,20.85422,48.24260298411051,8.84624,2.046930174032847,0.53940779,30.7960999806722,0.04692,2.529970029989878,2.9476223800000003,1.284280002117157,0.12498,0.6925740192333857,0.480055862,0.20938999950885773,0.07031415699999999,339.42797851562494,5.335891026597079,65.073652635578,112.77477806984949,22.325670885973512,20.711452147297482,-0.2077992168782024,12.85880215962728,2.85912,14400.39068100302,0,1.5544002850850422,0.63842,3.115319569905599,0.6149,0.27236101031303406,0.1409 +2037,3.5766635252896206,0.2947927078366367,0,0,3.8122301954435995,5.5324298938115435,0.33597000000000005,48.93800894419352,12.72494,93.48190371195476,3.45383819,56.58753522237142,0.041339999999999995,14.887300650278727,0.1303730868,9.066282033920288,0.7436727820000001,171.48571650187174,17.199759999999998,417.95392354329425,0.42315,5.597541173299153,111.23689999999999,0,492.67660268147785,4634.49684,1649.6788940429685,213.33710948406596,439.5129877726237,518.8659084373191,24.7562042872111,38.434296,16.427499930063885,6.00863458,148.2563934326172,57.19520800000002,67.71369806925456,22.7691926,78.96869277954102,19.120440000000002,47.939503033955894,8.329180000000001,2.009980152050654,0.49655214500000006,30.664999961853027,0.040940000000000004,2.3542000452677407,2.7786668100000003,1.0797800074021022,0.10906,0.6359610011180242,0.440143669,0.1983949989080429,0.0631427515,339.75098164876295,5.334797209747887,65.1095355590582,112.10830094115809,21.648141470956045,20.693968255961007,-0.20811110848816675,12.972102403640747,2.82049,13757.724492274028,0,1.4801102777322133,0.58459,3.0950796008110046,0.591,0.26570801188548404,0.1345 +2038,3.211437719689151,0.3223909128982225,0,0,3.7233733404523797,5.54673985640208,0.31818,47.524709701538086,11.857759999999999,93.71670405069987,3.35894906,55.95753415425619,0.03425999999999999,14.809600671132406,0.1119339992,9.077671925226847,0.713923058,168.8337173461914,16.40024,413.7149200439453,0.33899999999999997,5.579920848210652,110.9113,0,491.47848256429035,4624.64066,1630.4289347330728,209.09569363317,439.83699289957684,517.7811438588681,24.082404295603435,36.211712,15.843599875768026,5.20580352,138.67138290405273,44.893062,66.69909858703613,21.2589884,74.62358093261719,17.38666,47.605703035990395,7.812119999999999,1.9725401401519775,0.4536965,30.534000237782795,0.03496,2.19225005308787,2.60971124,0.9083070059617361,0.09314,0.5839830090602239,0.400231476,0.18789699797828993,0.05597134599999999,340.07097625732416,5.333703392898694,65.14541848253842,111.44182381246668,20.970612055938577,20.67648436462453,-0.20845220652489996,13.083702246348063,2.78186,13115.058303545035,0,1.4087002476056416,0.53076,3.0742196639378867,0.5670999999999999,0.2591560060779254,0.1281 +2039,2.8462119140886815,0.3499891179598083,0,0,3.63451648546116,5.560289899508159,0.30039000000000005,46.13720989227295,10.990580000000001,93.94520441691081,3.2640599299999997,55.33433437347412,0.027179999999999996,14.731800556182861,0.09349491159999998,9.087981859842936,0.684173334,166.20172119140625,15.600719999999999,409.5159225463867,0.2548499999999999,5.562570492426555,110.58569999999999,0,490.31343841552734,4614.784479999999,1611.5389506022134,204.85427778227398,440.0589904785156,516.6963792804171,23.381604035695393,33.989128,15.257399797439575,4.40297246,129.45236206054688,32.59091600000001,65.6424986521403,19.7487842,70.48005104064941,15.65288,47.24180285135905,7.295059999999999,1.9346401393413544,0.410840855,30.402899901072185,0.02898,2.042520006497701,2.44075567,0.764286994934082,0.07721999999999998,0.5361419965823492,0.360319283,0.17786699905991554,0.048799940499999986,340.3889795939127,5.332609576049501,65.18130140601862,110.77534668377528,20.29308264092111,20.65900047328806,-0.208822510988402,13.19370206197103,2.74323,12472.39211481604,0,1.3401402533054352,0.47693,3.0527796546618142,0.5432,0.2527090050280094,0.1217 +2040,2.4809861084882123,0.37758732302139414,0,0,3.5456596304699404,5.57306985060374,0.2826,44.7764097849528,10.1234,94.16720326741536,3.1691708,54.71793429056803,0.0201,14.65410049756368,0.07505582400000001,9.097251892089844,0.65442361,163.59172439575195,14.8012,405.35792032877606,0.1707,5.545450210571289,110.2601,0,489.1732889811198,4604.9283,1592.9889322916665,200.612861931378,440.1789906819661,515.6116147019661,22.66180356343587,31.766544,14.673299789428711,3.6001414,120.65734036763509,20.28877,64.54529889424641,18.23858,66.52449607849121,13.9191,46.84850311279297,6.778,1.8962801297505696,0.36798521,30.271899859110516,0.023,1.9035800397396088,2.2718001,0.6430799961090088,0.0613,0.49199699858824414,0.32040709,0.16827799876530966,0.041628535,340.7029774983723,5.331515759200308,65.21718432949883,110.10886955508387,19.615553225903643,20.641516581951585,-0.20922202187867292,13.302102247873941,2.7046,11829.725926087049,0,1.274360219637553,0.4231,3.030799627304077,0.5193,0.2463690067330996,0.1153 +2041,2.311083468533338,0.31758545397364074,0,0,3.470846458243273,5.585079908370972,0.27091000000000004,43.44280974070231,9.656320000000001,94.38280296325684,3.0823316,54.10823313395182,0.01853,14.57640035947164,0.0697234998,9.105531692504883,0.633957487,161.00472768147787,14.28209,401.2399190266927,0.15650999999999998,5.528549869855245,110.04614,0,488.05841573079425,4595.90827,1574.7489827473955,197.5712619269401,440.1969935099284,508.70148912663194,21.93000332514445,30.4061322,14.094599882761637,3.34120265,112.32132466634114,18.44822429,63.40899848937988,18.483510799999998,62.74463621775309,14.002410000000001,46.42640240987142,6.8843,1.8574901223182678,0.36958045300000003,30.140899817148846,0.02188,1.7741600374380748,2.31540641,0.5408219993114471,0.05831,0.45114900916814804,0.322322624,0.1591049979130427,0.0413583793,341.0159784952799,5.312231170419305,65.16868014903346,108.40584693239555,19.147433672665954,20.31657319322617,-0.2095580492816902,13.408902009328207,2.65612,11729.8590265991,0,1.211310217777888,0.39941,3.008329669634501,0.5029399999999999,0.2401370070874691,0.11118 +2042,2.141180828578463,0.2575835849258874,0,0,3.396033286016606,5.596459825833638,0.25922,42.13691012064616,9.18924,94.59230295817058,2.9954924,53.505233446756996,0.01696,14.4988001982371,0.0643911756,9.112841685612997,0.613491364,158.4417292277018,13.762979999999999,397.16192118326825,0.14232,5.512149453163147,109.83218,0,486.81602478027344,4586.888239999999,1556.8990173339841,194.5296619225022,440.1389897664388,501.79136355129776,21.187803268432617,29.0457204,13.522100130716959,3.0822639,104.39931106567383,16.607678579999998,62.276098569234215,18.7284416,59.175947189331055,14.08572,45.997403144836426,6.9906,1.8190101285775502,0.371175696,30.0100998878479,0.02076,1.6574000418186188,2.35901272,0.4549029966195424,0.05532,0.41399700691302616,0.324238158,0.15039400135477385,0.0410882236,341.3229726155598,5.292946581638303,65.12017596856808,106.70282430970722,18.67931411942827,19.99162980450075,-0.20983059319745373,13.513902187347412,2.60764,11629.99212711115,0,1.1509302258491516,0.37572,2.985399683316549,0.48658,0.23401600743333498,0.10706 +2043,1.9712781886235886,0.19758171587813403,0,0,3.3212201137899386,5.607329924901326,0.24753,40.85921001434326,8.72216,94.79590288798015,2.9086532,52.90893268585205,0.015390000000000001,14.421400388081869,0.0590588514,9.119221607844034,0.5930252410000001,155.9027303059896,13.24387,393.1249287923177,0.12813,5.496339241663615,109.61822,0,485.3943277994792,4577.86821,1539.489023844401,191.48806191806432,440.02699025472003,494.8812379759636,20.43630313873291,27.6853086,12.956199884414673,2.82332515,96.8518918355306,14.767132870000001,61.187499046325684,18.9733724,55.85178311665853,14.16903,45.58250300089518,7.0969,1.7815401355425518,0.372770939,29.8795002301534,0.01964,1.5560700198014576,2.40261903,0.38317400217056274,0.05233,0.3809030055999756,0.326153692,0.1421899994214376,0.040818067900000005,341.6239802042643,5.273661992857299,65.0716717881027,104.9998016870189,18.21119456619058,19.66668641577533,-0.2100396536259636,13.616901954015097,2.5591600000000003,11530.125227623203,0,1.0931502083937328,0.35202999999999995,2.9620397090911865,0.47021999999999997,0.22800601025422415,0.10294 +2044,1.8013755486687142,0.13757984683038063,0,0,3.2464069415632713,5.617689887682597,0.23584,39.609910011291504,8.25508,94.99360275268555,2.821814,52.31923230489095,0.013819999999999999,14.34410031636556,0.0537265272,9.124721686045328,0.572559118,153.38873291015625,12.72476,389.12792714436847,0.11393999999999999,5.480879028638204,109.40426,0,483.9333190917969,4568.84818,1522.4990437825518,188.44646191362642,439.85999298095703,487.9711124006294,19.681502978007,26.324896799999998,12.399399757385254,2.5643864,89.70567639668782,12.92658716,60.14229838053385,19.2183032,52.75638484954834,14.25234,45.18180274963379,7.2032,1.7450801332791646,0.374366182,29.74910004933675,0.01852,1.4683900475502014,2.44622534,0.3232659970720609,0.049339999999999995,0.3514370049039523,0.328069226,0.13446400066216788,0.0405479122,341.9189783732096,5.254377404076296,65.02316760763733,103.29677906433058,17.743075012952893,19.341743027049915,-0.2101852305672197,13.717801968256632,2.5106800000000002,11430.258328135253,0,1.0379001994927723,0.32833999999999997,2.9383097092310586,0.45386,0.2221080077191194,0.09881999999999999 +2045,1.6314729087138398,0.07757797778262726,0,0,3.171593769336604,5.627549846967061,0.22415000000000002,38.38910961151123,7.788,95.18550237019856,2.7349748,51.73603121439616,0.01225,14.267000357309977,0.048394203000000004,9.129371484120687,0.552092995,150.9007364908854,12.205649999999999,385.1709264119466,0.09974999999999999,5.465668797492981,109.19030000000001,0,482.4752883911133,4559.828149999999,1505.9090576171873,185.40486190918853,439.63498942057294,481.06098682529523,18.92810297012329,24.964485,11.853899876276651,2.30544765,82.97255833943684,11.08604145,59.139198303222656,19.463234,49.874770164489746,14.335650000000001,44.79490343729655,7.3095,1.7095901370048523,0.375961425,29.61900011698405,0.0174,1.3927700420220692,2.48983165,0.27320000032583874,0.04635,0.32521700362364453,0.32998476,0.1271899975836277,0.0402777565,342.20797983805335,5.2350928152952925,64.97466342717195,101.59375644164226,17.27495545971521,19.0167996383245,-0.2102673240212221,13.816801945368448,2.4622,11330.391428647305,0,0.9851021816333135,0.30465,2.9142196973164878,0.4375,0.2163220060368379,0.0947 +2046,1.4615702687589651,0.01757610873487392,0,0,3.096780597109937,5.636899948120117,0.21245999999999998,37.19710954030355,7.320920000000001,95.37140146891277,2.6481356,51.15943113962809,0.01068,14.190200249354044,0.0430618788,9.133191506067911,0.531626872,148.43974177042642,11.686539999999999,381.25292714436847,0.08556,5.450678626696269,108.97634000000001,0,481.0352300008138,4550.80812,1489.6790771484373,182.36326190475063,439.35199483235675,474.15086124996105,18.180402755737305,23.604073200000002,11.321299950281778,2.0465089,76.65424092610677,9.24549574,58.17719872792562,19.7081648,47.19313589731852,14.41896,44.42170238494873,7.4158,1.6750701169172924,0.37755666800000004,29.489200115203857,0.01628,1.3277900318304698,2.53343796,0.2313220016658306,0.043359999999999996,0.30189700424671173,0.33190029400000004,0.12034200069804986,0.0400076008,342.48997243245435,5.21580822651429,64.92615924670658,99.89073381895392,16.80683590647752,18.69185624959908,-0.21028593398797085,13.913801908493042,2.41372,11230.524529159356,0,0.9346831738948822,0.28096,2.889809707800547,0.42114,0.21064900855223337,0.09058 +2047,1.2916676288040907,0,0,0.04242576031287948,3.0219674248832695,5.645749926567078,0.20077,36.03370984395345,6.85384,95.55150349934895,2.5612964,50.589231173197426,0.009110000000000002,14.113600254058838,0.037729554600000006,9.136221567789713,0.5111607490000001,146.00574111938477,11.16743,377.3759282430013,0.07137,5.435878356297811,108.76238000000001,0,479.61417388916016,4541.78809,1473.7890828450518,179.32166190031273,439.01099395751953,467.2407356746269,17.441802342732746,22.2436614,10.802999893824259,1.7875701500000003,70.74532508850098,7.40495003,57.25509866078695,19.9530956,44.69828446706136,14.50227,44.06200313568115,7.5221,1.6414901117483776,0.379151911,29.359700202941895,0.01516,1.2722200353940327,2.57704427,0.19626200323303541,0.04037,0.28116700053215027,0.33381582800000004,0.11389500026901563,0.039737445100000005,342.7659759521484,5.196523637733287,64.8776550662412,98.1877111962656,16.338716353239832,18.36691286087366,-0.21024106046746585,14.00870188077291,2.36524,11130.657629671407,0,0.886564165353775,0.25727,2.8650997479756675,0.40478000000000003,0.2050890065729618,0.08646000000000001 +2048,1.121764988849216,0,0,0.10242762936063288,2.947154252656602,5.65408988793691,0.18907999999999997,34.898908615112305,6.386760000000001,95.72570292154948,2.4744572,50.02543099721273,0.00754,14.037300268809,0.0323972304,9.138501326243082,0.490694626,143.59774525960287,10.648319999999998,373.5379282633464,0.05717999999999998,5.421258131663005,108.54842000000001,0,478.2121175130208,4532.76806,1458.2091166178384,176.28006189587484,438.61099497477215,460.3306100992927,16.715302149454754,20.8832496,10.299999952316284,1.5286314,65.23460865020752,5.5644043199999995,56.371798515319824,20.1980264,42.37791728973389,14.58558,43.71570364634196,7.6284,1.6088301241397858,0.38074715400000003,29.23039976755778,0.014039999999999999,1.224940021832784,2.62065058,0.16686799998084703,0.03738,0.262752003967762,0.33573136200000003,0.1078269990781943,0.0394672894,343.03598276774085,5.177239048952283,64.82915088577583,96.48468857357727,15.870596800002145,18.041969472148246,-0.2101327034597071,14.101701815923056,2.3167600000000004,11030.790730183458,0,0.8406691551208496,0.23357999999999998,2.8401297529538474,0.38842,0.19964300468564034,0.08234 +2049,0.9518623488943414,0,0,0.16242949840838622,2.872341080429935,5.661929965019226,0.17739,33.792609214782715,5.9196800000000005,95.8941027323405,2.387618,49.46792984008789,0.005970000000000001,13.961300293604532,0.027064906200000002,9.14004135131836,0.470228503,141.21875,10.129209999999999,369.7389322916667,0.04299,5.406797885894775,108.33446000000001,0,476.82906341552734,4523.74803,1442.9391174316404,173.23846189143694,438.1510009765625,453.4204845239585,16.003202120463055,19.522837799999998,9.812949895858765,1.26969265,60.107394218444824,3.7238586100000006,55.526398340861,20.442957200000002,40.22053368886312,14.668890000000001,43.38240273793539,7.7347,1.5770601332187653,0.382342397,29.101399898529053,0.01292,1.1849800248940785,2.66425689,0.14217800150314966,0.03439,0.24640400086839995,0.33764689600000003,0.10211599866549174,0.0391971337,343.29997762044263,5.157954460171281,64.78064670531045,94.78166595088895,15.402477246764459,17.71702608342283,-0.2099608629646947,14.192601760228476,2.2682800000000003,10930.923830695509,0,0.7969191521406174,0.20989,2.8149297634760537,0.37206,0.19430800651510557,0.07822 +2050,0.781959708939467,0,0,0.22243136745613964,2.797527908203268,5.669269879659017,0.1657,32.714708964029946,5.4526,96.05650266011556,2.3007788,48.91672992706299,0.0044,13.885600169499716,0.021732582,9.140881299972534,0.44976238,138.86675135294595,9.6101,365.9789326985677,0.0288,5.39248784383138,108.1205,0,475.4640197753906,4514.728,1427.9291280110674,170.19686188699905,437.63200124104816,446.51035894862434,15.307502031326294,18.162426,9.3424600760142,1.0107539,55.34657986958822,1.8833129,54.71769905090332,20.687888,38.21523666381836,14.7522,43.062103271484375,7.841,1.5461801290512085,0.38393764,28.972700277964275,0.0118,1.1514800290266674,2.7078632,0.12139599894483884,0.0314,0.23189900567134222,0.33956243,0.09674129945536454,0.038926978,343.55798339843744,5.138669871390277,64.73214252484507,93.07864332820063,14.93435769352677,17.39208269469741,-0.2097255389824286,14.281601746877035,2.2198,10831.05693120756,0,0.7552341421445211,0.1862,2.789519786834717,0.3557,0.18908600509166718,0.0741 +2051,0.7027959760926927,0,0,0.24086327628374862,2.769658552912245,5.676099936167399,0.15925999999999998,31.66490936279297,5.20103,96.21310297648112,2.2561192099999996,48.371730168660484,0.00406,13.810200055440268,0.02018665606,9.141061305999756,0.435696317,136.54375584920248,9.27305,362.25793202718097,0.02641,5.378337542215983,108.00263000000001,0,474.11495208740234,4510.08918,1413.1891581217446,168.9330654214778,437.0539957682292,443.41291888774305,14.629701932271322,17.3846094,8.88880999883016,0.9380561430000001,50.93346691131592,1.712466056,53.94479846954346,20.8506632,36.35192394256592,14.79238,42.75440247853597,7.90757,1.516150136788686,0.381718694,28.84440008799235,0.01125,1.1236700316270192,2.7413177199999996,0.10386000076929729,0.029939999999999998,0.2190380059182644,0.340494028,0.09168299908439319,0.038656822300000004,343.80997721354163,5.1302700355649975,64.66919320380056,92.15430193706258,14.79499157722783,17.274865993127364,-0.20947071581998547,14.368501663208008,2.1911300000000002,10783.061113259124,0,0.7155381341775259,0.17577,2.763919770717621,0.34449,0.18397600452105203,0.07145 +2052,0.6236322432459186,0,0,0.2592951851113576,2.7417891976212223,5.6825400193532305,0.15281999999999998,30.643008867899578,4.94946,96.36530303955078,2.21145962,47.83282947540283,0.0037200000000000002,13.73520016670227,0.01864073012,9.140591144561768,0.42163025400000004,134.24875768025717,8.936,358.57493082682294,0.02402,5.36467707157135,107.88476,0,472.79385630289715,4505.45036,1398.8992411295571,167.66926895595657,436.4459966023763,440.31547882686175,13.970001856486002,16.6067928,8.451849778493246,0.865358386,46.845754305521645,1.541619212,53.203198750813804,21.013438400000002,34.6178944905599,14.83256,42.457303047180176,7.97414,1.4868601361910503,0.379499748,28.71620003382365,0.0107,1.100560039281845,2.77477224,0.08908829900125663,0.02848,0.2076100048919519,0.34142562600000004,0.08691929901639621,0.0383866666,344.0569763183593,5.121870199739718,64.60624388275605,91.22996054592454,14.655625460928889,17.157649291557316,-0.2091963934773654,14.453901767730713,2.1624600000000003,10735.06529531069,0,0.6777541289726893,0.16534,2.738169769446055,0.33328,0.17897800480326018,0.0688 +2053,0.5444685103991443,0,0,0.27772709393896655,2.7139198423301996,5.688699960708618,0.14637999999999998,29.648608843485516,4.69789,96.51440302530925,2.16680003,47.3001283009847,0.00338,13.660500129063925,0.01709480418,9.139491160710653,0.407564191,131.98276138305664,8.59895,354.929931640625,0.02163,5.351696888605754,107.76689,0,471.5097401936849,4500.81154,1385.2592468261716,166.40547249043533,435.83599853515625,437.2180387659805,13.328701893488565,15.8289762,8.031309962272644,0.7926606290000001,43.06184228261312,1.370772368,52.48899841308594,21.1762136,33.00175031026205,14.87274,42.16860262552897,8.04071,1.4582101205984752,0.377280802,28.588300069173176,0.01015,1.0812900364398956,2.8082267599999997,0.07668220127622287,0.02702,0.1974270020922025,0.342357224,0.08242959901690483,0.0381165109,344.29997762044263,5.113470363914438,64.54329456171155,90.3056191547865,14.516259344629946,17.040432589987265,-0.20890257195456835,14.538001775741577,2.1337900000000003,10687.069477362253,0,0.6418061157067617,0.15491,2.7122697830200195,0.32207,0.17409100383520126,0.06615 +2054,0.46530477755237015,0,0,0.29615900276657553,2.686050487039177,5.69458011786143,0.13993999999999998,28.681408564249676,4.44632,96.66050338745117,2.12214044,46.77342891693115,0.00304,13.586200078328451,0.01554887824,9.137801170349121,0.393498128,129.7457644144694,8.261899999999999,351.32293701171875,0.01924,5.339146693547566,107.64902000000001,0,470.265630086263,4496.17272,1372.229278564453,165.1416760249141,435.2200012207031,434.1205987050992,12.706801573435465,15.0511596,7.627249995867412,0.719962872,39.5636313756307,1.199925524,51.80149904886881,21.3389888,31.496098200480144,14.912920000000002,41.88830248514811,8.10728,1.4301801423231761,0.375061856,28.46049992243449,0.0096,1.0654200315475464,2.84168128,0.06623930111527443,0.02556,0.18836000437537828,0.34328882200000005,0.07819909850756328,0.0378463552,344.5399831136067,5.105070528089158,64.48034524066703,89.38127776364846,14.376893228331005,16.923215888417218,-0.2085892512515944,14.621001640955607,2.1051200000000003,10639.073659413816,0,0.6076191167036692,0.14448,2.6862598061561584,0.31086,0.16931200524171194,0.0635 +2055,0.38614104470559596,0,0,0.3145909115941845,2.658181131748154,5.700179934501648,0.1335,27.741108417510986,4.19475,96.80350303649902,2.0774808499999997,46.25262864430746,0.0027,13.512200037638346,0.0140029523,9.135530948638916,0.37943206500000004,127.53776868184407,7.924849999999999,347.752934773763,0.01685,5.326946536699931,107.53115,0,469.05752817789715,4491.5339,1359.769327799479,163.87787955939285,434.5969975789388,431.0231586442179,12.105101744333902,14.273343,7.239589969317119,0.6472651150000001,36.333221117655434,1.02907868,51.140198389689125,21.501764,30.09393580754598,14.953100000000001,41.61630312601725,8.17385,1.4027601182460785,0.37284291,28.33300018310547,0.009049999999999999,1.0525700449943542,2.8751358,0.05743440023312966,0.024099999999999996,0.18029000610113144,0.34422042,0.07421349982420604,0.037576199500000004,344.7769749959309,5.096670692263878,64.41739591962252,88.45693637251043,14.237527112032064,16.80599918684717,-0.20825643136844332,14.702801624933878,2.0764500000000004,10591.07784146538,0,0.5751221080621084,0.13405,2.660149792830149,0.29965,0.16464300453662872,0.06085 +2056,0.30697731185882177,0,0,0.3330228204217935,2.6303117764571313,5.70549996693929,0.12706,26.827208360036213,3.94318,96.94360224405925,2.03282126,45.737827936808266,0.00236,13.438600222269693,0.01245702636,9.132710933685303,0.365366002,125.35977045694987,7.5878,344.21893819173175,0.01446,5.315066377321879,107.41328,0,467.8854217529297,4486.89508,1347.8293253580728,162.6140830938716,433.96400197347003,427.9257185833366,11.524201472600302,13.4955264,6.86817999680837,0.5745673580000001,33.352911790212,0.8582318360000001,50.50459829966227,21.6645392,28.788565158843994,14.99328,41.3526029586792,8.24042,1.3759501179059346,0.370623964,28.205700238545734,0.0085,1.0423700511455536,2.9085903199999996,0.04999070024738709,0.02264,0.17311400547623634,0.345152018,0.07045909948647022,0.0373060438,345.0089772542317,5.088270856438598,64.35444659857801,87.53259498137238,14.098160995733123,16.688782485277123,-0.20790411230511535,14.783301591873169,2.04778,10543.082023516945,0,0.5442431072394053,0.12362000000000001,2.633969803651174,0.28844000000000003,0.1600810041030248,0.0582 +2057,0.22781357901204757,0,0,0.35145472924940246,2.6024424211661086,5.7105499903361006,0.12062,25.939308007558186,3.6916100000000003,97.08060137430827,1.98816167,45.228827476501465,0.00202,13.365300099054972,0.01091110042,9.129361152648926,0.351299939,123.2097733815511,7.25075,340.72293345133465,0.012070000000000001,5.3034762144088745,107.29541,0,466.74632517496747,4482.25626,1336.3793436686196,161.35028662835037,433.3209966023763,424.8282785224553,10.964401404062906,12.7177098,6.512759963671367,0.5018696010000001,30.605702877044678,0.6873849920000001,49.89409859975179,21.8273144,27.573785463968914,15.033460000000002,41.09720325469971,8.30699,1.349730134010315,0.368405018,28.07859977086385,0.00795,1.0345400373140972,2.94204484,0.043672300254305206,0.021179999999999997,0.16673600301146507,0.34608361600000004,0.06692319922149181,0.037035888100000004,345.2389806111653,5.079871020613318,64.2914972775335,86.60825359023434,13.958794879434182,16.571565783707076,-0.2075322940616104,14.862701654434204,2.01911,10495.086205568508,0,0.5149121036132177,0.11319000000000001,2.6077197988828025,0.27723000000000003,0.1556240034600099,0.05555 +2058,0.14864984616527332,0,0,0.36988663807701144,2.574573065875086,5.715319991111755,0.11418,25.07700777053833,3.44004,97.21460215250652,1.94350208,44.725527127583824,0.00168,13.292400121688843,0.009365174479999998,9.125500917434692,0.337233876,121.0897757212321,6.9137,337.262934366862,0.009680000000000001,5.292155981063843,107.17754000000001,0,465.63824462890625,4477.61744,1325.3893737792966,160.08649016282914,432.66499582926434,421.7308384615741,10.425901333491007,11.9398932,6.173029939333598,0.42917184399999997,28.07539447148641,0.516538148,49.30799802144369,21.990089599999997,26.443698565165203,15.073640000000001,40.84980328877767,8.373560000000001,1.3241001268227894,0.366186072,27.951800028483074,0.0073999999999999995,1.028780033191045,2.9754993599999997,0.03829320054501295,0.019719999999999998,0.1610700065890948,0.347015214,0.06359329881767432,0.0367657324,345.46497853597,5.071471184788038,64.228547956489,85.6839121990963,13.819428763135239,16.454349082137025,-0.20714097663792846,14.940901517868042,1.99044,10447.090387620072,0,0.4870610957344373,0.10275999999999999,2.5814398527145386,0.26602000000000003,0.15127300471067429,0.0529 +2059,0.06948611331849908,0,0,0.3883185469046204,2.546703710584063,5.719809969266255,0.10774,24.239707628885906,3.18847,97.34560203552246,1.89884249,44.22802734375,0.00134,13.219900051752726,0.007819248539999999,9.121150811513266,0.32316781299999997,118.99777857462566,6.57665,333.8389358520508,0.007290000000000001,5.281085809071858,107.05967,0,464.5591583251953,4472.97862,1314.81938680013,158.8226936973079,431.9969991048177,418.6333984006928,9.90865127245585,11.162076599999999,5.848640004793803,0.35647408700000005,25.746387163798016,0.34569130400000003,48.74589856465658,22.1528648,25.392903963724773,15.113820000000002,40.61050351460775,8.44013,1.2990401089191437,0.363967126,27.825300216674805,0.00685,1.0248700380325317,3.00895388,0.033693500173588596,0.01826,0.15604000414411226,0.34794681200000005,0.06045769962171713,0.036495576700000004,345.6869761149088,5.063071348962758,64.16559863544448,84.75957080795826,13.680062646836298,16.337132380566977,-0.20673016003406955,15.01790157953898,1.96177,10399.094569671637,0,0.4606240913271904,0.09233,2.555129826068878,0.25481,0.147025004029274,0.05025 +2060,0,0,0.00967761952827501,0.4067504557322294,2.5188343552930403,5.724019964536031,0.1013,23.4271076520284,2.9369,97.473602294921875,1.8541829,43.7361265818278,0.001,13.147799889246622,0.0062733226,9.11634087562561,0.30910175,116.93578211466472,6.2396,330.44993591308594,0.0049,5.27025572458903,106.9418,0,463.50709025065106,4468.3398,1304.6394042968748,157.55889723178666,431.31399790445965,415.5359583398115,9.412481228510538,10.38426,5.539169987042745,0.28377633,23.604080041249592,0.17484446,48.207098642985024,22.31564,24.416001955668133,15.154000000000002,40.379302978515625,8.5067,1.2745501200358074,0.36174818,27.699100176493328,0.0063,1.022580047448476,3.0424084,0.029734700452536345,0.0168,0.15157900378108025,0.34887841000000003,0.05750529902676741,0.036225421,345.9059804280598,5.054671513137478,64.10264931439997,83.83522941682021,13.540696530537357,16.21991567899693,-0.2062998442500337,15.093701442082724,1.9331,10351.0987517232,0,0.43553708493709564,0.0819,2.5288098454475403,0.2436,0.14287900303800902,0.0476 +2061,0,0,0.080881510199747,0.4160769261203702,2.5039805860122786,5.727959950764974,0.09776,22.638607343037922,2.80139,97.59850056966145,1.83071312,43.249826749165855,9.2e-4,13.076000054677328,0.0058252281299999995,9.11107087135315,0.299431331,114.90378697713216,6.02076,327.09593963623047,0.00449,5.259645303090413,106.87701,0,462.4809748331706,4465.90198,1294.829427083333,156.44897785918366,430.6170018513997,413.6047310827009,8.937151114145914,9.939558329999999,5.244209965070088,0.2633617666,21.634373982747395,0.1589853287,47.69099807739258,22.488572899999998,23.508294423421223,15.2452,40.1559034983317,8.587950000000001,1.2506101330121357,0.36010496,27.573099772135418,0.006,1.0217300454775493,3.0780637299999998,0.026312400431682665,0.016,0.14762700349092484,0.35097189,0.054725599475204945,0.036102623,346.12198384602857,5.055724247944843,64.07984602293212,82.97654151840815,13.483029733160988,16.154819014446698,-0.2058596624312937,15.168301423390707,1.9059,10237.743412709457,0,0.411741075416406,0.07732,2.50249981880188,0.23592000000000002,0.13883300373951593,0.0459 +2062,0,0,0.152085400871219,0.42540339650851106,2.4891268167315164,5.731679956118266,0.09422,21.873706817626953,2.66588,97.72110303243001,1.80724334,42.76912625630697,8.4e-4,13.00470002492269,0.00537713366,9.10537083943685,0.289760912,112.89978790283203,5.80192,323.7779362996419,0.00408,5.249834815661113,106.81222,0,461.51773325602215,4463.4641599999995,1285.369435628255,155.33905848658065,429.90800221761066,411.67350382559033,8.48215103149414,9.49485666,4.963239947954814,0.24294720320000002,19.824068069458008,0.1431261974,47.19709841410319,22.661505799999997,22.666182200113933,15.336400000000001,39.94070339202881,8.6692,1.2272201279799144,0.35846174,27.447499752044678,0.0057,1.0221600532531738,3.1137190599999998,0.02337030026440819,0.015199999999999998,0.14414800455172858,0.35306537000000005,0.05210969938586155,0.035979825,346.3359756469726,5.056776982752209,64.05704273146428,82.1178536199961,13.425362935784621,16.089722349896466,-0.2054096145778496,15.241701443990072,1.8787,10124.38807369571,0,0.3891760781407356,0.07274,2.4761998454729715,0.22824,0.13488700365026793,0.0442 +2063,0,0,0.22328929154269098,0.4347298668966519,2.4742730474507546,5.735240022341411,0.09068,21.132006963094074,2.53037,97.84220186869304,1.78377356,42.29372596740723,7.6e-4,12.93370008468628,0.00492903919,9.09925103187561,0.280090493,110.92479197184245,5.58308,320.49293518066406,0.00367,5.240954717000325,106.74743,0,460.6285680135091,4461.026339999999,1276.2294820149737,154.22913911397762,429.19000244140625,409.7422765684797,8.04694096247355,9.05015499,4.695739944775899,0.22253263980000001,18.16056203842163,0.1272670661,46.724698066711426,22.8344387,21.88636541366577,15.427600000000002,39.733903884887695,8.75045,1.204370121161143,0.35681852,27.322100003560383,0.0054,1.0237500568230946,3.1493743899999997,0.02085640048608184,0.0144,0.14110900461673737,0.35515885,0.0496490995089213,0.035857027,346.547976175944,5.0578297175595734,64.03423943999643,81.25916572158404,13.367696138408252,16.024625685346233,-0.20494970068970145,15.314101457595825,1.8515000000000001,10011.032734681965,0,0.3677840729554494,0.06816,2.4499298731486,0.22056,0.13103800266981125,0.0425 +2064,0,0,0.294493182214163,0.4440563372847927,2.4594192781699924,5.738649964332581,0.08714,20.412906805674236,2.39486,97.96160252888997,1.76030378,41.8238255182902,6.8e-4,12.863100051879883,0.0044809447199999995,9.092740774154663,0.270420074,108.97779401143391,5.36424,317.2429377237956,0.00326,5.232464710871379,106.68263999999999,0,459.77649943033856,4458.588519999999,1267.389465332031,153.11921974137462,428.46299997965497,407.8110493113691,7.631090958913167,8.605453319999999,4.441259940465291,0.2021180764,16.63275686899821,0.1114079348,46.27319876352946,23.0073716,21.164743105570476,15.5188,39.53550370534261,8.8317,1.1820401151974995,0.35517529999999997,27.197099844614666,0.0051,1.0263600548108418,3.1850297199999997,0.018696899991482496,0.0136,0.1384620058039824,0.35725233,0.04733489919453859,0.035734229,346.75798288981116,5.058882452366939,64.01143614852857,80.40047782317198,13.310029341031884,15.959529020796003,-0.2044799207668492,15.385201374689737,1.8243,9897.677395668221,0,0.34750806788603467,0.06358,2.4237098693847656,0.21288,0.12728500242034593,0.0408 +2065,0,0,0.36569707288563497,0.4533828076729335,2.4445655088892306,5.741910020510356,0.08360000000000001,19.715806643168133,2.25935,98.07950146993001,1.736834,41.359225273132324,6.000000000000001e-4,12.792900085449219,0.00403285025,9.085840781529745,0.260749655,107.06079864501953,5.1454,314.02593994140625,0.00285,5.224194566408793,106.61785,0,458.94942982991535,4456.1507,1258.8394978841143,152.00930036877162,427.7260004679362,405.8798220542585,7.234110871950786,8.16075165,4.199310024579366,0.181703513,15.23005223274231,0.0955488035,45.842098236083984,23.1803045,20.49741506576538,15.61,39.345303535461426,8.91295,1.1602401336034138,0.35353208,27.07230011622111,0.0048000000000000004,1.0298700630664825,3.22068505,0.016830899752676487,0.012799999999999999,0.13616500670711199,0.35934581,0.04515849954138199,0.035611431,346.96797688802076,5.059935187174304,63.98863285706073,79.54178992475991,13.252362543655515,15.89443235624577,-0.2040002748092928,15.455301443735758,1.7971,9784.322056654477,0,0.32829805960257846,0.059,2.3975398540496826,0.2052,0.1236250028014183,0.0391 +2066,0,0,0.43690096355710695,0.4627092780610743,2.429711739608469,5.745019912719727,0.08006,19.040406386057537,2.12384,98.19580268859863,1.7133642199999999,40.899925231933594,5.200000000000001e-4,12.723100105921427,0.00358475578,9.07857076327006,0.25107923600000004,105.1718012491862,4.92656,310.84293874104816,0.0024400000000000003,5.216104507446289,106.55306,0,458.1423797607422,4453.71288,1250.5494791666665,150.89938099616862,426.97900136311847,403.94859479714796,6.8554909229278564,7.716049979999999,3.9694299697875977,0.1612889496,13.942747990290323,0.0796896722,45.43079821268717,23.353237399999998,19.880682309468586,15.7012,39.16320355733236,8.994200000000001,1.138940115769704,0.35188886,26.947799841562908,0.0045000000000000005,1.034170041481654,3.25634038,0.015207600314170122,0.012,0.13418100525935492,0.36143929,0.043111899557212986,0.035488633000000006,347.1759770711262,5.060987921981669,63.965829565592884,78.68310202634785,13.194695746279148,15.829335691695539,-0.20351076281703234,15.524201313654581,1.7699,9670.966717640731,0,0.3101000611980756,0.054419999999999996,2.3714398543039956,0.19752,0.12005900343259175,0.0374 +2067,0,0,0.508104854228579,0.47203574844921514,2.4148579703277067,5.74796998500824,0.07652,18.386006355285645,1.9883300000000002,98.31040128072102,1.68989444,40.44582494099935,4.4000000000000007e-4,12.653600136439005,0.0031366613100000003,9.070950746536255,0.241408817,103.31080436706543,4.70772,307.6929397583008,0.0020300000000000006,5.20816433429718,106.48827,0,457.35233306884766,4451.27506,1242.499521891276,149.78946162356561,426.2210057576497,402.01736754003736,6.494670828183492,7.27134831,3.751129984855652,0.1408743862,12.761644045511881,0.06383054090000001,45.03889878590902,23.526170299999997,19.311245441436768,15.7924,38.98910331726074,9.07545,1.118130127588908,0.35024564,26.823699951171875,0.004200000000000001,1.0391700367132823,3.29199571,0.013785200115914146,0.011200000000000002,0.13247400522232056,0.36353277,0.04118749871850014,0.035365835000000005,347.38298288981116,5.062040656789034,63.94302627412503,77.8244141279358,13.13702894890278,15.764239027145306,-0.20301138479006775,15.59200127919515,1.7427000000000001,9557.611378626985,0,0.2928670570254326,0.04984,2.3454198837280273,0.18984,0.11658300086855888,0.0357 +2068,0,0,0.579308744900051,0.48136221883735597,2.400004201046945,5.7507699728012085,0.07298,17.752106189727783,1.8528200000000001,98.42350196838379,1.66642466,39.99682458241781,3.5999999999999997e-4,12.584499915440878,0.00268856684,9.063000758488974,0.231738398,101.4788080851237,4.48888,304.57593790690106,0.00162,5.200364311536153,106.42348,0,456.5782877604167,4448.83724,1234.6795145670571,148.67954225096258,425.4520034790039,400.08614028292675,6.1510807275772095,6.82664664,3.543940007686615,0.1204598228,11.678440570831299,0.04797140959999999,44.6657985051473,23.6991032,18.78570334116618,15.8836,38.822903633117676,9.1567,1.0978201230367024,0.34860242,26.699900150299072,0.0039,1.0447800556818645,3.32765104,0.012528800095121065,0.0104,0.1310150052110354,0.36562625,0.039378099143505096,0.035243037000000005,347.5879821777343,5.063093391596399,63.92022298265719,76.96572622952374,13.07936215152641,15.699142362595076,-0.20250214072839912,15.658701340357462,1.7155,9444.256039613241,0,0.276552048822244,0.04526,2.3194898764292398,0.18216,0.11319600294033687,0.034 +2069,0,0,0.6505126355715231,0.4906886892254968,2.3851504317661827,5.753419876098633,0.06944,17.138405958811443,1.7173100000000001,98.53500239054362,1.64295488,39.55292479197184,2.8e-4,12.515900135040283,0.0022404723699999997,9.054720640182495,0.22206797900000003,99.67421023050944,4.27004,301.4909413655599,0.0012100000000000001,5.1926941474278765,106.35869,0,455.8192418416341,4446.39942,1227.0695292154946,147.56962287835958,424.67000579833984,398.1549130258162,5.824110706647237,6.381944969999999,3.3473899761835733,0.1000452594,10.685136953989664,0.03211227829999999,44.310898780822754,23.8720361,18.3011581103007,15.974799999999998,38.66450309753418,9.23795,1.0779801110426586,0.3469592,26.57640012105306,0.0036,1.0509400566418965,3.36330637,0.0114098001892368,0.009600000000000001,0.12977600346008936,0.36771973,0.03767679942150911,0.035120239000000004,347.792978922526,5.064146126403765,63.897419691189334,76.10703833111168,13.021695354150044,15.634045698044844,-0.2019830306320264,15.724201281865438,1.6883,9330.900700599497,0,0.26110804826021194,0.04068,2.2936498721440635,0.17448,0.10989600171645482,0.032299999999999995 +2070,0,0,0.721716526242995,0.5000151596136376,2.370296662485421,5.755919933319092,0.0659,16.544106006622314,1.5818,98.64490063985188,1.6194851,39.11412334442139,2e-4,12.44760004679362,0.0017923779,9.046130657196045,0.21239756,97.89751307169597,4.0512,298.43694559733075,8e-4,5.185144106547038,106.2939,0,455.07521057128906,4443.9616,1219.6595560709634,146.45970350575658,423.8770065307617,396.2236857687056,5.513160705566406,5.9372433,3.16102002064387,0.079630696,9.774693886439005,0.016253147,43.973898569742836,24.044969,17.854808648427326,16.066,38.513803482055664,9.3192,1.0586001177628834,0.34531598,26.45329984029134,0.0033,1.0575600663820903,3.3989617,0.010404400061815977,0.0088,0.12873400499423346,0.36981321,0.03607719919333855,0.034997441000000004,347.99597676595045,5.06519886121113,63.87461639972149,75.24835043269962,12.964028556773675,15.568949033494611,-0.2014540545009496,15.788601160049438,1.6611,9217.545361585751,0,0.2464920493463675,0.0361,2.267919898033142,0.1668,0.10668300340572993,0.0306 +2071,0,0,0.7910888434640296,0.5079208866499977,2.357638554252752,5.7582599719365435,0.06381,15.968905846277872,1.50882,98.7533016204834,1.6000852799999998,38.68022346496582,1.8e-4,12.379600048065186,0.001657949557,9.037240584691366,0.205751345,96.14841715494792,3.9091199999999997,295.4159444173177,7.300000000000001e-4,5.177713791529338,106.25564,0,454.34215037027997,4441.946529999999,1212.4295450846353,145.03847288494174,423.0709991455078,394.0068207914588,5.217610677083333,5.6829841299999995,2.984380026658376,0.0739077507,8.940301020940145,0.014775588179999999,43.654098192850746,24.192763499999998,17.44395621617635,16.20012,38.37050437927246,9.38695,1.039680113395055,0.344260481,26.330399831136067,0.00314,1.0646100342273712,3.4315100000000003,0.009492880043884119,0.00837,0.12786600490411124,0.372901093,0.03457319891701142,0.0349851612,348.1969782511393,5.0665209707467085,63.84864503521199,74.36779354315914,12.894751351154005,15.465255705741919,-0.20091671552929735,15.851901292800903,1.63254,9072.206772488493,0,0.23266404618819556,0.03408,2.2423099080721536,0.16155,0.10355500318109989,0.029509999999999998 +2072,0,0,0.8604611606850643,0.5158266136863577,2.3449804460200827,5.760479887326558,0.06172,15.412205378214518,1.43584,98.8601016998291,1.58068546,38.25122324625651,1.6e-4,12.312099933624268,0.001523521214,9.028070449829102,0.19910513000000002,94.4265193939209,3.7670399999999997,292.4259440104167,6.6e-4,5.170873522758484,106.21737999999999,0,453.6400400797526,4439.93146,1205.3195393880205,143.61724226412687,422.2540054321289,391.78995581421196,4.936870535214742,5.428724959999999,2.8170299728711448,0.06818480539999999,8.175818483034769,0.01329802936,43.35049851735433,24.340557999999998,17.06750249862671,16.334239999999998,38.23430347442627,9.4547,1.021210124095281,0.343204982,26.20800018310547,0.00298,1.0719500581423442,3.4640583,0.00867989007383585,0.007940000000000001,0.12717300529281297,0.37598897600000003,0.033160500228405,0.0349728814,348.3979822794596,5.0678430802822865,63.822673670702486,73.48723665361864,12.825474145534335,15.361562377989225,-0.20037101371706986,15.914101203282675,1.60398,8926.868183391232,0,0.2195830469330152,0.03206,2.216809888680776,0.1563,0.10050900218387444,0.028419999999999997 +2073,0,0,0.929833477906099,0.5237323407227178,2.3323223377874136,5.762609998385112,0.05963,14.873505115509033,1.36286,98.96570078531902,1.56128564,37.8271230061849,1.4000000000000001e-4,12.244899988174438,0.0013890928710000002,9.018610636393229,0.192458915,92.73182233174641,3.6249599999999997,289.4669443766276,5.9e-4,5.164743423461914,106.17912,0,452.969975789388,4437.91639,1198.259531656901,142.19601164331203,421.42500559488934,389.5730908369652,4.670310576756795,5.17446579,2.658549984296163,0.0624618601,7.475556095441182,0.01182047054,43.06199868520101,24.488352499999998,16.724147001902264,16.46836,38.104403495788574,9.522450000000001,1.0032001187403996,0.34214948300000003,26.08590014775594,0.00282,1.0795100529988606,3.4966066,0.007963870108748475,0.00751,0.12665500616033873,0.379076859,0.031834799175461136,0.0349606016,348.59697723388666,5.069165189817865,63.79670230619299,72.60667976407815,12.756196939914664,15.257869050236533,-0.1998169490642669,15.975001255671183,1.57542,8781.529594293974,0,0.2072110412021478,0.03004,2.1914499402046204,0.15105000000000002,0.09754380211234093,0.02733 +2074,0,0,0.9992057951271337,0.5316380677590778,2.3196642295547445,5.764649947484334,0.05754,14.352305253346762,1.2898800000000001,99.07000096638997,1.5418858199999999,37.407822926839195,1.2e-4,12.178099870681763,0.001254664528,9.0089004834493,0.1858127,91.06402524312337,3.4828799999999998,286.5379460652669,5.200000000000001e-4,5.158803423245748,106.14085999999999,0,452.3099721272786,4435.90132,1191.2595418294268,140.7747810224972,420.5840021769206,387.3562258597184,4.4173405567804975,4.92020662,2.508519987265269,0.0567389148,6.8342238664627075,0.01034291172,42.78809769948324,24.636146999999998,16.411587715148926,16.60248,37.98070398966471,9.590200000000001,0.9856351166963577,0.341093984,25.964200178782146,0.00266,1.0872300366560619,3.5291549,0.007327770038197438,0.00708,0.12629000594218573,0.382164742,0.030590699209521215,0.0349483218,348.79597981770826,5.070487299353443,63.77073094168349,71.72612287453767,12.686919734294994,15.15417572248384,-0.19925452157088866,16.034801244735718,1.54686,8636.191005196715,0,0.19551304106911024,0.02802,2.1662199099858603,0.14579999999999999,0.09465750182668368,0.02624 +2075,0,0,1.0685781123481684,0.5395437947954378,2.3070061213220754,5.766599973042806,0.05545,13.848205010096232,1.2169,99.1729024251302,1.5224859999999998,36.9933230082194,1e-4,12.111700057983398,0.001120236185,8.998940626780191,0.179166485,89.42272885640462,3.3407999999999998,283.63994852701825,4.5000000000000004e-4,5.15294337272644,106.1026,0,451.65495045979816,4433.88625,1184.2995503743487,139.35355040168236,419.7310078938802,385.1393608824716,4.177340507507324,4.66594745,2.3665200074513755,0.0510159695,6.246971766153972,0.0088653529,42.528398513793945,24.783941499999997,16.127625862757366,16.7366,37.86320400238037,9.65795,0.9685001075267792,0.340038485,25.84280014038086,0.0025,1.0951000551382701,3.5617032,0.006762760070463021,0.00665,0.12606100365519524,0.385252625,0.029423299400756758,0.034936042,348.9929835001627,5.071809408889022,63.74475957717399,70.84556598499717,12.617642528675324,15.050482394731148,-0.19868373123693506,16.09330113728841,1.5183,8490.852416099455,0,0.18445403749744096,0.026000000000000002,2.1411399245262146,0.14055,0.09184850193560123,0.02515 +2076,0,0,1.137950429569203,0.5474495218317978,2.294348013089406,5.768459955851237,0.05336,13.360704819361368,1.14392,99.27450180053711,1.50308618,36.58342266082764,8e-5,12.045699993769327,9.85807842e-4,8.988730510075888,0.17252027,87.807830810546875,3.19872,280.7719497680664,3.800000000000001e-4,5.147103389104207,106.06434,0,451.00295003255206,4431.87118,1177.3995564778643,137.9323197808675,418.86700439453125,382.92249590522476,3.9497405091921487,4.41168828,2.232159992059072,0.045293024200000004,5.70933997631073,0.007387794080000001,42.282398541768394,24.931736,15.870261033376059,16.87072,37.75170358022054,9.7257,0.9517851124207178,0.338982986,25.721799850463867,0.00234,1.103100061416626,3.5942515,0.006256320086928706,0.00622,0.12595300624767938,0.38834050800000003,0.028327799402177334,0.0349237622,349.18898264567054,5.073131518424601,63.718788212664485,69.96500909545668,12.548365323055654,14.946789066978454,-0.19810457806240606,16.15070088704427,1.48974,8345.513827002196,0,0.17400003224611282,0.02398,2.1161999106407166,0.1353,0.08911490129927795,0.024059999999999998 +2077,0,0,1.2073227467902377,0.5553552488681579,2.2816899048567367,5.770229935646057,0.051269999999999996,12.889304717381796,1.07094,99.37480036417644,1.4836863599999999,36.178221702575684,6.000000000000002e-5,11.979999939600626,8.513794990000002e-4,8.97830057144165,0.165874055,86.21893310546875,3.05664,277.93294525146484,3.1000000000000005e-4,5.141273299853007,106.02608,0,450.35194905598956,4429.856110000001,1170.529551188151,136.51108916005265,417.9910024007161,380.70563092797795,3.733950436115265,4.157429110000001,2.105080008506775,0.03957007890000001,5.21720830599467,0.0059102352600000005,42.04969787597656,25.0795305,15.63749368985494,17.004839999999998,37.64600340525309,9.79345,0.9354811211427053,0.33792748699999997,25.601199944814045,0.00218,1.1112100581328075,3.6267997999999997,0.005792950124790271,0.00579,0.12595200538635254,0.39142839100000004,0.027299899297455948,0.0349114824,349.3829778035481,5.074453627960179,63.69281684815498,69.0844522059162,12.479088117435984,14.843095739225761,-0.19751706204730168,16.207001209259033,1.46118,8200.175237904938,0,0.1641190325220426,0.02196,2.0914199153582254,0.13005,0.08645640127360821,0.022969999999999997 +2078,0,0,1.2766950640112724,0.563260975904518,2.2690317966240676,5.771909991900126,0.04918,12.433504740397135,0.99796,99.47380129496257,1.4642865399999998,35.77762222290039,3.9999999999999996e-05,11.914699951807657,7.16951156e-4,8.967630545298258,0.15922783999999998,84.65593592325847,2.91456,275.1239471435547,2.3999999999999998e-4,5.135463317235311,105.98782,0,449.70293680826825,4427.84104,1163.709554036458,135.0898585392378,417.1020050048828,378.4887659507312,3.5294504364331565,3.90316994,1.984909991423289,0.033847133599999996,4.766806761423747,0.00443267644,41.829799016316734,25.227325,15.427624146143595,17.13896,37.54620361328125,9.8612,0.9195761134227117,0.336871988,25.480899969736736,0.00202,1.1194100677967072,3.6593481,0.005365130142308772,0.00536,0.12604500725865364,0.394516274,0.026335399287442367,0.0348992026,349.57698059082026,5.075775737495758,63.66684548364549,68.20389531637571,12.409810911816313,14.739402411473069,-0.19692118319162194,16.262000878651936,1.43262,8054.836648807677,0,0.15478303159276643,0.01994,2.0667998989423118,0.1248,0.08387130064268906,0.021879999999999997 +2079,0,0,1.3460673812323072,0.571166702940878,2.2563736883913985,5.773500005404155,0.04708999999999999,11.992904424667358,0.92498,99.57150204976399,1.44488672,35.38152186075846,1.9999999999999998e-5,11.849800030390421,5.82522813e-4,8.956750392913818,0.152581625,83.11843935648601,2.77248,272.34395090738934,1.7e-4,5.129653215408325,105.94955999999999,0,449.0559387207031,4425.82597,1156.9195556640623,133.66862791842294,416.2020034790039,376.2719009734844,3.335680445035299,3.64891077,1.8712999920050304,0.0281241883,4.3546552658081055,0.0029551176199999994,41.6223980585734,25.3751195,15.238952239354452,17.27308,37.452003161112465,9.92895,0.9040611088275909,0.335816489,25.361000219980877,0.0018599999999999999,1.1276800433794658,3.6918964,0.004972410077850024,0.0049299999999999995,0.12622000401218733,0.397604157,0.02543039930363496,0.0348869228,349.7699813842773,5.077097847031336,63.64087411913599,67.3233384268352,12.340533706196643,14.635709083720375,-0.1963169414953669,16.315901120503742,1.4040599999999999,7909.498059710419,0,0.14596303179860115,0.017920000000000002,2.0423399011294046,0.11954999999999999,0.08135690167546272,0.020789999999999996 +2080,0,0,1.4154396984533417,0.5790724299772381,2.2437155801587294,5.77498992284139,0.045,11.567104260126749,0.852,99.66790199279785,1.4254869,34.9899206161499,0,11.785199880599976,4.4809447e-4,8.94567052523295,0.14593541,81.60624249776204,2.6304,269.5929438273112,1e-4,5.123863220214844,105.9113,0,448.408935546875,4423.8109,1150.1695251464841,132.2473972976081,415.28800710042316,374.05503599623756,3.1521403789520264,3.3946516000000004,1.7639199992020924,0.022401243,3.977563997109731,0.0014775588,41.426998138427734,25.522914,15.070078611373901,17.4072,37.363404273986816,9.9967,0.8889251053333282,0.33476099,25.24149990081787,0.0017,1.1360200643539429,3.7244447,0.004608630125100414,0.0045,0.12647000576059023,0.40069204,0.024581199201444786,0.034874643,349.9609807332356,5.078419956566915,63.614902754626485,66.44278153729472,12.271256500576973,14.532015755967683,-0.19570433695853648,16.36850102742513,1.3755,7764.159470613159,0,0.13763103013237318,0.0159,2.0180599292119346,0.1143,0.07891190114120643,0.0197 +2081,0,0,1.501544314595257,0.5818281760513226,2.2370843204655437,5.776400009791057,0.04323,11.155604283014933,0.81269,99.76290130615234,1.4004471299999999,34.602721214294434,0,11.7210001150767,4.25689747e-4,8.93440047899882,0.141363939,80.11894353230794,2.53814,266.8709538777669,9e-5,5.118073105812073,105.87890999999999,0,447.76393636067706,4421.210010000001,1143.4495849609373,131.09908817774593,414.3620071411133,372.92345356476494,2.9783403674761453,3.2492708500000003,1.662449985742569,0.020790642680000002,3.6326127847035727,0.0013462202399999999,41.24329853057861,25.5794786,14.919402758280436,17.52036,37.2802038192749,10.017980000000001,0.8741581191619238,0.33326170299999996,25.122300148010254,0.0016099999999999999,1.1444100538889568,3.74492089,0.004262930092712243,0.00426,0.12678400427103043,0.40329842200000005,0.02378439934303363,0.034837803599999995,350.15098317464185,5.09279244148301,63.60523740236932,66.0768707170551,12.215217506095298,14.475504870684148,-0.19508881072044174,16.42000087102254,1.35195,7619.826501941822,0,0.1297630270322164,0.01501,1.9939499199390411,0.11069999999999999,0.07653480271498363,0.01899 +2082,0,0,1.5876489307371722,0.5845839221254071,2.230453060772358,5.777730027834575,0.04146,10.758003950119019,0.77338,99.85640144348145,1.3754073599999999,34.219920794169106,0,11.65720001856486,4.03285024e-4,8.922950585683187,0.136792468,78.65644645690918,2.44588,264.1759516398112,8e-5,5.112503012021382,105.84652,0,447.10997517903644,4418.60912,1136.8195597330728,129.95077905788372,413.42100524902344,371.7918711332923,2.813810348510742,3.1038901000000005,1.5665900111198425,0.01918004236,3.317121684551239,0.00121488168,41.06859874725342,25.6360432,14.7851243019104,17.63352,37.20080407460531,10.03926,0.8597461134195328,0.331762416,25.00350014368693,0.0015199999999999999,1.1526000400384266,3.76539708,0.003942650083142023,0.004019999999999999,0.12714600563049316,0.405904804,0.02303649935250481,0.0348009642,350.3419799804687,5.107164926399106,63.59557205011215,65.71095989681548,12.159178511613622,14.418993985400615,-0.19447036278108276,16.470401128133137,1.3284,7475.493533270485,0,0.12233302493890126,0.01412,1.970019926627477,0.1071,0.07422330106298129,0.018279999999999998 +2083,0,0,1.6737535468790874,0.5873396681994917,2.2238218010791724,5.778970003128052,0.03969,10.37390406926473,0.73407,99.9483019510905,1.3503675899999998,33.84152094523112,0,11.593699932098389,3.80880301e-4,8.91131043434143,0.13222099699999998,77.21834882100423,2.35362,261.50995381673175,7.000000000000001e-5,5.10722295443217,105.81413,0,446.4479802449544,4416.00823,1130.309580485026,128.80246993802155,412.4610061645508,370.6602887018197,2.6581103006998696,2.9585093500000004,1.476060003042221,0.01756944204,3.0286306937535605,0.00108354312,40.9006986618042,25.6926078,14.665643692016602,17.746679999999998,37.123403549194336,10.06054,0.8456721057494482,0.330263129,24.885100205739338,0.0014299999999999998,1.1603600680828094,3.7858732699999997,0.0036537500369983413,0.0037799999999999995,0.1275430048505465,0.408511186,0.022334199243535597,0.0347641248,350.5339787801106,5.1215374113152015,63.58590669785498,65.34504907657586,12.103139517131947,14.36248310011708,-0.1938489931404594,16.519901116689045,1.3048499999999998,7331.1605645991485,0,0.11531802204747994,0.01323,1.9462699194749196,0.1035,0.0719759011020263,0.01757 +2084,0,0,1.7598581630210028,0.5900954142735761,2.2171905413859867,5.7801499764124555,0.037919999999999995,10.002803802490234,0.6947599999999999,100.03800201416016,1.3253278199999998,33.46732044219971,0,11.53059983253479,3.58475578e-4,8.899510383605957,0.12764952599999999,75.80435117085774,2.26136,258.8709487915039,6e-5,5.102082888285319,105.78174,0,445.78996022542316,4413.40734,1123.9295959472654,127.65416081815935,411.4840087890625,369.5287062703471,2.5108103156089783,2.8131286,1.390579988559087,0.01595884172,2.7648797631263733,9.522045599999999e-4,40.73919868469238,25.7491724,14.559761842091879,17.85984,37.04810396830241,10.08182,0.8319291124741236,0.328763842,24.767100016276043,0.00134,1.1677700579166412,3.80634946,0.0033906800866437456,0.0035399999999999997,0.12797200679779053,0.411117568,0.021674899384379387,0.0347272854,350.7279790242512,5.135909896231297,63.576241345597815,64.97913825633624,12.047100522650272,14.305972214833545,-0.19322470179857174,16.568401018778484,1.2812999999999999,7186.827595927812,0,0.10869502152005832,0.01234,1.9227099517981212,0.09989999999999999,0.06979170193274815,0.01686 +2085,0,0,1.8459627791629178,0.5928511603476607,2.2105592816928015,5.781239986419678,0.03615,9.64435362815857,0.65545,100.12700208028157,1.3002880499999998,33.09742005666097,0,11.46779998143514,3.36070855e-4,8.887540499369303,0.12307805499999999,74.41425514221191,2.1691,256.25895436604816,5e-5,5.09703282515208,105.74934999999999,0,445.1389414469401,4410.80645,1117.6595865885415,126.50585169829716,410.4900080362956,368.39712383887445,2.3714802861213684,2.6677478500000005,1.3098800083001454,0.0143482414,2.5237789352734885,8.20866e-4,40.584197680155434,25.805737,14.466678857803345,17.973,36.97490374247233,10.103100000000001,0.8185081084569296,0.32726455499999996,24.64940007527669,0.00125,1.1748600602149963,3.82682565,0.003154070038969318,0.0033,0.1284300039211909,0.41372395,0.021055899560451508,0.034690446,350.92397816975904,5.150282381147392,63.56657599334065,64.61322743609662,11.991061528168597,14.249461329550012,-0.1925974887554198,16.615800857543945,1.25775,7042.494627256475,0,0.10244302079081535,0.01145,1.8993299504121144,0.0963,0.0676693016042312,0.016149999999999998 +2086,0,0,1.9320673953048333,0.5956069064217453,2.203928021999616,5.782260020573934,0.03438,9.298213640848795,0.61614,100.21400197347005,1.27524828,32.73171933492025,0,11.405400117238363,3.13666132e-4,8.875420411427816,0.118506584,73.04765637715657,2.07684,253.67495473225912,4e-5,5.09207284450531,105.71696,0,444.4959131876628,4408.20556,1111.4995829264321,125.35754257843497,409.4770100911458,367.2655414074019,2.2397203048070273,2.5223671000000003,1.2337200045585632,0.012737641079999999,2.303428133328756,6.8952744e-4,40.43529828389486,25.862301600000002,14.385294278462728,18.08616,36.90370400746664,10.12438,0.8054031034310659,0.325765268,24.53219985961914,0.00116,1.181670069694519,3.84730184,0.0029340400360524654,0.00306,0.12891200557351112,0.416330332,0.020474699325859547,0.0346536066,351.12097676595045,5.164654866063487,63.55691064108348,64.24731661585702,11.93502253368692,14.192950444266478,-0.1919673540110036,16.662400881449383,1.2342,6898.161658585138,0,0.09654151958723863,0.01056,1.876149942477544,0.0927,0.0656076017767191,0.015439999999999999 +2087,0,0,2.0181720114467483,0.5983626524958298,2.19729676230643,5.7831999858220415,0.03261,8.963953495025635,0.57683,100.29900232950847,1.25020851,32.37011973063151,0,11.343399922053019,2.91261409e-4,8.863150437672934,0.113935113,71.70435778299968,1.98458,251.11795043945312,3.000000000000001e-5,5.087182720502217,105.68457000000001,0,443.8618876139323,4405.60467,1105.4395955403643,124.20923345857278,408.44801330566406,366.13395897592926,2.115150272846222,2.37698635,1.1618499954541524,0.01112704076,2.102067470550537,5.5818888e-4,40.29249795277914,25.9188662,14.315009117126465,18.19932,36.83460394541422,10.14566,0.7926041086514791,0.324265981,24.415299892425537,0.00107,1.188250054915746,3.86777803,0.00272768004409348,0.0028199999999999996,0.12941600382328033,0.418936714,0.019928799476474524,0.0346167672,351.31998189290357,5.179027350979583,63.54724528882632,63.88140579561739,11.878983539205246,14.136439558982943,-0.19133429756532305,16.707901000976562,1.21065,6753.828689913801,0,0.09097331762313843,0.00967,1.8531599442164104,0.0891,0.06360460196932156,0.01473 +2088,0,0,2.1042766275886637,0.6011183985699143,2.1906655026132444,5.784070014953613,0.03084,8.641223271687826,0.53752,100.38200187683105,1.22516874,32.012619177500405,0,11.281699895858765,2.68856686e-4,8.850730339686075,0.10936364199999998,70.38396135965984,1.8923199999999998,248.58695348103842,1.9999999999999998e-5,5.082362731297811,105.65218,0,443.234868367513,4403.00378,1099.4696146647134,123.0609243387106,407.40100860595703,365.00237654445664,1.9973902304967244,2.2316056,1.0940399964650471,0.009516440439999998,1.9180768231550853,4.268503199999999e-4,40.15549882253011,25.9754308,14.254822413126627,18.312479999999997,36.76740392049154,10.16694,0.7801061073939005,0.32276669399999997,24.29890028635661,9.8e-4,1.1946300665537517,3.88825422,0.0025326100294478238,0.00258,0.12994100774327913,0.421543096,0.019416299182921648,0.0345799278,351.5199813842773,5.193399835895678,63.537579936569145,63.51549497537778,11.82294454472357,14.079928673699408,-0.1906983194183782,16.752501010894775,1.1870999999999998,6609.495721242464,0,0.0857192190984885,0.00878,1.8303799629211426,0.08549999999999999,0.061658001194397606,0.01402 +2089,0,0,2.190381243730579,0.6038741446439988,2.1840342429200588,5.784859935442607,0.029070000000000002,8.329643170038858,0.49821,100.46400197347005,1.20012897,31.65921958287557,0,11.22029995918274,2.46451963e-4,8.838180383046469,0.10479217099999999,69.0862642923991,1.80006,246.0819549560547,9.999999999999999e-6,5.0776026248931885,105.61979,0,442.6158396402995,4400.402889999999,1093.579600016276,121.91261521884842,406.3360112508138,363.870794112984,1.8860802352428436,2.0862248500000002,1.030080000559489,0.007905840119999999,1.7499962250391643,2.955117599999998e-4,40.024298350016274,26.0319954,14.20403504371643,18.425639999999998,36.70220375061035,10.188220000000001,0.7678991009791692,0.321267407,24.182899951934814,8.900000000000001e-4,1.200830082098643,3.90873041,0.002346850039126972,0.0023399999999999996,0.13048100719849268,0.42414947799999997,0.01893489932020505,0.034543088400000005,351.7219797770182,5.207772320811774,63.52791458431198,63.14958415513816,11.766905550241894,14.023417788415875,-0.19005941957016906,16.7961007754008,1.1635499999999999,6465.162752571127,0,0.08076171701153119,0.00789,1.807789941628774,0.0819,0.059767000998059906,0.013309999999999999 +2090,0,0,2.276485859872494,0.6066298907180834,2.177402983226873,5.785569985707601,0.0273,8.028873125712076,0.4589,100.54400316874187,1.1750892,31.309819221496582,0,11.159299850463867,2.2404724e-4,8.825510263442993,0.1002207,67.8109671274821,1.7078,243.60295486450195,0,5.0729025999705,105.5874,0,442.00282796223956,4397.802,1087.7796122233071,120.76430609898622,405.2550048828125,362.7392116815114,1.7809002101421356,1.9408441000000003,0.969756007194519,0.0062952398,1.5964656968911488,1.641732e-4,39.8985980351766,26.08856,14.162146965662638,18.5388,36.63900407155355,10.2095,0.7559771041075388,0.31976812,24.067200024922688,8e-4,1.2068800628185272,3.9292066,0.0021739800189000866,0.0021,0.13103500629464784,0.42675586,0.018482699369390804,0.034506249,351.92597961425776,5.222144805727869,63.518249232054814,62.78367333489854,11.71086655576022,13.96690690313234,-0.1894175980206956,16.838700930277508,1.14,6320.8297838997905,0,0.07608611509203911,0.006999999999999999,1.7853999435901642,0.0783,0.057930600829422474,0.0126 +2091,0,0,2.362891650602346,0.6109544436670058,2.167120796721733,5.786209940910339,0.02553,7.738553047180176,0.43762,100.62200037638347,1.1500494289999998,30.964319229125977,0,11.098699887593588,2.01642516e-4,8.812710444132486,0.0970558359,66.55756759643555,1.6476899999999999,241.14995447794595,0.0012000000000000001,5.068252603212993,105.555,0,441.39681752522785,4395.20111,1082.049601236979,119.86000009804687,404.1570053100586,361.0794621002315,1.6815002262592316,1.8667949400000003,0.91287000477314,0.00775867862,1.4562451938788097,0.00105070848,39.7781982421875,25.9699291,14.128357489903768,18.521539999999998,36.57770347595215,10.16304,0.7443331082661947,0.31657763499999997,23.9520001411438,7.2e-4,1.2127900818983715,3.9201768,0.002006530024421712,0.0018899999999999998,0.13160400465130806,0.426358099,0.018057899394383032,0.0342729327,352.1309738159179,5.2306949923405215,63.48463770240683,62.3568796812716,11.67746977506621,13.864186264073554,-0.18877120337359105,16.88040081659953,1.11568,6162.555261574821,0,0.07167671496669452,0.0070999999999999995,1.7632099489370983,0.07583,0.05614690141131481,0.012150000000000001 +2092,0,0,2.449297441332198,0.6152789966159283,2.1568386102165937,5.786769986152649,0.02376,7.458362897237142,0.41634,100.69900131225586,1.125009658,30.62281862894694,0,11.038399934768677,1.7923779199999998e-4,8.799800237019857,0.0938909718,65.32607078552246,1.58758,238.72295506795248,0.0024000000000000002,5.063472708066304,105.5226,0,440.7778905232747,4392.600219999999,1076.4196065266924,118.95569409710751,403.04100545247394,359.4197125189516,1.5875802040100098,1.7927457800000002,0.8592310051123301,0.00922211744,1.328174740076065,0.0019372437600000002,39.65879821777344,25.851298200000002,14.098259687423706,18.504279999999998,36.515904108683266,10.11658,0.7329281121492386,0.31338715,23.8372000058492,6.4e-4,1.217970073223114,3.911147,0.0018435600310719262,0.0016799999999999999,0.1321260097126166,0.425960338,0.01765649936472376,0.0340396164,352.3379770914713,5.239245178953173,63.45102617275884,61.93008602764466,11.644072994372202,13.761465625014768,-0.1881202356288554,16.921001116434734,1.0913599999999999,6004.280739249853,0,0.06751721414426963,0.0072,1.7412299712498982,0.07336,0.05441510087500016,0.0117 +2093,0,0,2.53570323206205,0.6196035495648508,2.146556423711454,5.7872499624888105,0.021990000000000003,7.1879628499348955,0.39505999999999997,100.77400016784668,1.0999698869999999,30.28511842091878,0,10.97849996884664,1.56833068e-4,8.786780198415121,0.0907261077,64.11597379048665,1.5274699999999999,236.3209546407064,0.0036,5.05853267510732,105.4902,0,440.1419143676758,4389.99933,1070.9096374511716,118.05138809616815,401.9080073038737,357.75996293767173,1.4988201757272084,1.7186966200000002,0.8086550037066141,0.01068555626,1.2112243473529816,0.00282377904,39.535698890686035,25.7326673,14.068058649698893,18.487019999999998,36.451104164123535,10.07012,0.7217251062393188,0.310196665,23.722699960072834,5.600000000000001e-4,1.2218700647354126,3.9021172,0.0016894800355657935,0.00147,0.1325520078341166,0.425562577,0.017274699329088133,0.033806300100000006,352.5439834594726,5.247795365565825,63.41741464311085,61.50329237401773,11.610676213678193,13.658744985955982,-0.18746469478648872,16.96070082982381,1.06704,5846.006216924883,0,0.06359401283164819,0.007299999999999999,1.7194599608580272,0.07089,0.05273440107703209,0.01125 +2094,0,0,2.6221090227919017,0.6239281025137732,2.136274237206314,5.787660042444865,0.020220000000000002,6.927042722702026,0.37378,100.84700139363606,1.074930116,29.95131826400757,0,10.91890001296997,1.34428344e-4,8.773660262425741,0.0875612436,62.92697525024414,1.4673599999999998,233.9429562886556,0.0048000000000000004,5.053612629572551,105.4578,0,439.5068868001302,4387.39844,1065.5296427408853,117.1470820952288,400.7580108642578,356.10021335639186,1.4149601757526398,1.64464746,0.7609769950310389,0.012148995079999999,1.1044339537620544,0.0037103143200000006,39.40929857889811,25.6140364,14.037558635075888,18.469759999999997,36.38340441385905,10.02366,0.7107201019922892,0.30700618,23.608699957529705,4.8e-4,1.2246700624624889,3.8930874,0.0015427300240844488,0.0012599999999999998,0.13289200638731322,0.425164816,0.016911199316382408,0.033572983800000004,352.75098164876295,5.256345552178477,63.38380311346286,61.076498720390795,11.577279432984184,13.556024346897196,-0.18680458084649093,16.99940077463786,1.0427199999999999,5687.731694599914,0,0.05989591218531132,0.0073999999999999995,1.6978999475638072,0.06842,0.05110300052911043,0.0108 +2095,0,0,2.708514813521753,0.6282526554626957,2.125992050701174,5.787990013758342,0.01845,6.675282597541809,0.35250000000000004,100.91800053914388,1.049890345,29.62121804555257,0,10.859599908192953,1.1202362e-4,8.760430256525675,0.08439637950000001,61.758877754211426,1.40725,231.5909563700358,0.006,5.048762520154317,105.4254,0,438.8798828125,4384.797549999999,1060.2596638997393,116.24277609428944,399.59100850423175,354.440463775112,1.3357301652431488,1.5705983000000001,0.7160389969746271,0.013612433899999998,1.0069536070028942,0.0045968496,39.27979850769043,25.4954055,14.006958484649658,18.4525,36.31300417582194,9.9772,0.6999090959628423,0.303815695,23.495000044504803,4e-4,1.2265200714270275,3.8840576000000002,0.001402040021882082,0.00105,0.1331550069153309,0.424767055,0.01656499955182274,0.0333396675,352.95797983805335,5.264895738791129,63.350191583814876,60.64970506676386,11.543882652290176,13.453303707838412,-0.18613989380886206,17.03700065612793,1.0184,5529.457172274944,0,0.05640921120842298,0.0075,1.676539957523346,0.06595,0.04951910053690275,0.010350000000000002 +2096,0,0,2.794920604251605,0.6325772084116181,2.1157098641960346,5.78823999563853,0.01668,6.432382504145305,0.33122,100.98800086975098,1.024850574,29.294917742411297,0,10.800700028737387,8.961889599999999e-5,8.747100194295248,0.08123151540000001,60.61127948760986,1.34714,229.26195653279623,0.0072,5.043992042541504,105.393,0,438.26074473063153,4382.19666,1055.089650472005,115.3384700933501,398.4070103963216,352.78071419383207,1.2609001696109772,1.4965491400000002,0.6736860026915868,0.01507587272,0.9179592877626419,0.00548338488,39.147098223368324,25.3767746,13.97635849316915,18.43524,36.23990376790365,9.93074,0.6892860978841782,0.30062521,23.381700197855633,3.2e-4,1.2275400658448536,3.8750278,0.0012663700132785987,8.4e-4,0.1333510068555673,0.424369294,0.016234899250169594,0.0331063512,353.1659825642903,5.27344592540378,63.31658005416689,60.22291141313692,11.510485871596169,13.350583068779626,-0.1854706336736021,17.07370074590047,0.99408,5371.182649949976,0,0.05312081084897121,0.0076,1.6553899546464284,0.06348,0.0479810011262695,0.0099 +2097,0,0,2.881326394981457,0.6369017613605406,2.1054276776908947,5.788420001665751,0.014910000000000001,6.198062419891357,0.30994,101.05600166320801,0.9998108029999999,28.972317695617676,0,10.74210007985433,6.7214172e-5,8.733680248260498,0.07806665130000001,59.48388195037842,1.28703,226.95795822143555,0.0084,5.0406709512074785,105.3606,0,437.79502360026044,4379.59577,1050.0796915690103,114.43416409241074,397.2060089111328,351.1209646125522,1.1903201540311177,1.42249998,0.6338039934635162,0.016539311539999997,0.8367929955323538,0.00636992016,39.01269817352295,25.2581437,13.946560064951578,18.41798,36.1647040049235,9.88428,0.6788641015688578,0.297434725,23.26890007654826,2.400000000000001e-4,1.227970043818156,3.865998,0.0011350300046615303,6.300000000000001e-4,0.13350000604987144,0.423971533,0.015920899497965973,0.0328730349,353.3739802042643,5.281996112016432,63.2829685245189,59.79611775950998,11.47708909090216,13.24786242972084,-0.1847968004407111,17.10930061340332,0.96976,5212.908127625006,0,0.05002211065342029,0.0077,1.6344499588012695,0.06101,0.04648820124566555,0.00945 +2098,0,0,2.967732185711309,0.641226314309463,2.0951454911857548,5.788530031840007,0.01314,5.972032388051351,0.28866000000000003,101.1230017344157,0.9747710319999999,28.653417587280273,0,10.683800061543783,4.480944799999998e-5,8.72018019358317,0.0749017872,58.37648359934489,1.2269199999999998,224.67795689900717,0.009600000000000001,5.039280851682027,105.32820000000001,0,437.53759511311847,4376.99488,1045.3096618652341,113.52985809147138,395.98901112874347,349.46121503127233,1.1238401432832081,1.34845082,0.5962850004434586,0.01800275036,0.7628247241179148,0.007256455440000001,38.87769889831543,25.1395128,13.918362538019815,18.40072,36.088103930155434,9.837819999999999,0.6686540941397349,0.29424424,23.156699816385906,1.5999999999999999e-4,1.2280300656954448,3.8569682,0.0010022500064224005,4.199999999999998e-4,0.1336240035792192,0.423573772,0.015622599516063929,0.032639718600000006,353.58198038736975,5.290546298629084,63.249356994870915,59.36932410588305,11.443692310208151,13.145141790662054,-0.18411839411018896,17.144000848134358,0.9454400000000001,5054.633605300037,0,0.04710130952298641,0.0078,1.6137199501196544,0.058539999999999995,0.04504000054051479,0.009000000000000001 +2099,0,0,3.0541379764411607,0.6455508672583855,2.0848633046806153,5.788550059000651,0.011370000000000002,5.7540123462677,0.26738000000000006,101.18700154622395,0.9497312609999999,28.338117440541584,0,10.625900030136108,2.240472399999999e-5,8.706590175628662,0.0717369231,57.2887856165568,1.16681,222.42195892333984,0.0108,5.038550853729248,105.2958,0,437.35953013102215,4374.39399,1040.7397054036455,112.62555209053203,394.75601450602215,347.8014654499924,1.0612201392650604,1.27440166,0.5609949976205826,0.01946618918,0.6954214870929718,0.00814299072,38.7422981262207,25.0208819,13.891864856084188,18.38346,36.010203997294106,9.79136,0.6586510886748632,0.291053755,23.045100212097168,7.999999999999999e-5,1.227770060300827,3.8479384,8.68294004855367e-4,2.099999999999999e-4,0.13372500613331795,0.423176011,0.01533909933641553,0.032406402300000005,353.7899831136067,5.299096485241735,63.21574546522292,58.942530452256115,11.410295529514142,13.042421151603268,-0.18343541468203572,17.177600383758545,0.92112,4896.359082975068,0,0.04434760877241691,0.0079,1.5931999683380127,0.05607,0.043635000474750996,0.008550000000000002 +2100,0,0,3.1405437671710126,0.6498754202073079,2.0745811181754754,5.78849995136261,0.0096,5.543732285499573,0.24610000000000004,101.25,0.92469149,28.02631711959839,0,10.568300008773804,0,8.692929983139038,0.068572059,56.22038904825846,1.1066999999999998,220.18895721435547,0.012,5.038010915120442,105.2634,0,437.2065022786458,4371.7931,1036.369689941406,111.72124608959267,393.5060119628906,346.14171586871254,1.0022201240062714,1.2003525,0.5278009871641794,0.020929628,0.6339992433786392,0.009029526,38.606398582458496,24.902251,13.866866827011108,18.3662,35.931104024251304,9.7449,0.6488490949074427,0.28786327,22.93400017420451,0,1.227250059445699,3.8389086,7.38531996224386e-4,0,0.13380500550071397,0.42277825,0.015069399339457354,0.032173086000000004,353.99898274739576,5.307646671854387,63.18213393557494,58.51573679862918,11.376898748820134,12.939700512544482,-0.1827478621562515,17.21030060450236,0.8968,4738.084560650099,0,0.041752408569057785,0.008,1.5728899836540222,0.0536,0.04227160010486841,0.008100000000000001 +2101,0,0,3.1405437671710126,0.6368779118031618,2.0681940872801428,5.7883700132369995,0.009536,5.336252252260844,0.24445933333333336,101.31200154622395,0.9185268800666666,27.718117237091064,0,10.511100133260092,0,8.67786987622579,0.06811491194000001,55.192294438680015,1.099322,217.9789581298828,0.01192,5.037540674209595,104.561644,0,437.06239064534503,4342.647812666666,1032.159729003906,111.42271567714961,392.24101003011066,345.1809046522693,0.948802133401235,1.19235015,0.4971279998620351,0.020790097146666665,0.5783220380544662,0.00896932916,38.47009785970052,24.736235993333334,13.843268553415934,18.243758666666665,35.850704193115234,9.679934,0.6392410943905512,0.28594418153333334,22.82360013326009,0,1.226490060488383,3.813315876,6.121680053183809e-4,0,0.13386700550715128,0.41995972833333334,0.014812699519097805,0.031958598760000005,354.2079772949218,5.30128596158474,63.08081104844795,58.3850431214861,11.337248928647151,12.908551902310307,-0.18207406068098286,17.24190044403076,0.8908213333333334,4710.948463159738,0,0.03939320705831051,0.007946666666666666,1.552029977242152,0.05324266666666667,0.04085710023840269,0.008046000000000001 +2102,0,0,3.1405437671710126,0.6238804033990156,2.06180705638481,5.788209994633992,0.009472,5.13177231947581,0.2428186666666667,101.37200101216634,0.9123622701333333,27.413416862487793,0,10.454100052515665,0,8.661460002263388,0.06765776488,54.20329666137695,1.0919439999999998,215.7929573059082,0.01184,5.037780125935872,103.859888,0,437.00498962402344,4313.502525333333,1028.219736735026,111.12418526470654,390.9830093383789,344.2200934358261,0.9017751316229502,1.1843477999999998,0.4688289985060692,0.020650566293333332,0.5278548697630564,0.008909132319999999,38.33239873250326,24.570220986666666,13.818164269129435,18.121317333333334,35.76850382486979,9.614968,0.6298460861047109,0.2840250930666667,22.71370029449463,0,1.2251900533835094,3.787723152,4.989039977469171e-4,0,0.13386800636847815,0.4171412066666667,0.014567899517714977,0.03174411152000001,354.41598765055335,5.294925251315093,62.97948816132096,58.25434944434301,11.297599108474168,12.877403292076135,-0.18141401025623,17.272900581359863,0.8848426666666667,4683.812365669378,0,0.03724330756813288,0.007893333333333334,1.5306499898433685,0.05288533333333333,0.03939790030320486,0.007992 +2103,0,0,3.1405437671710126,0.6108828949948695,2.0554200254894774,5.788040041923523,0.009408,4.935172160466512,0.24117800000000003,101.43200047810872,0.9061976601999999,27.112216472625732,0,10.397599935531616,0,8.645099878311157,0.06720061782,53.230998039245605,1.0845659999999997,213.6299591064453,0.01176,5.038880228996277,103.15813200000001,0,437.05482228597003,4284.357238,1024.6197509765623,110.82565485226348,389.75501759847003,343.25928221938284,0.8596031367778778,1.17634545,0.44221799820661545,0.02051103544,0.48178670307000476,0.00884893548,38.19229825337728,24.40420598,13.788758277893066,17.998876,35.68390432993571,9.550002,0.6206791053215662,0.2821060046,22.604399998982746,0,1.2231000463167827,3.762130428,4.0664699918124825e-4,0,0.13377200812101364,0.414322685,0.014335499533141652,0.03152962428,354.620979309082,5.288564541045446,62.87816527419397,58.123655767199935,11.257949288301184,12.846254681841963,-0.1807677108819928,17.303700764973957,0.8788640000000001,4656.676268179017,0,0.03520790704836448,0.00784,1.509550005197525,0.052528000000000005,0.037991199952860676,0.007938 +2104,0,0,3.1405437671710126,0.5978853865907233,2.049032994594145,5.7878700494766235,0.009344,4.746142188707988,0.23953733333333338,101.49100049336751,0.9000330502666666,26.814316272735596,0,10.341300090154013,0,8.62876001993815,0.06674347076,52.27520020802816,1.0771879999999998,211.4879608154297,0.01168,5.040230234464009,102.456376,0,437.13877360026044,4255.211950666667,1021.3297678629556,110.52712443982041,388.55200958251953,342.2984710029396,0.8217441340287527,1.1683431,0.4171929980317752,0.020371504586666665,0.43972355624039966,0.00878873864,38.04979864756266,24.23819097333333,13.755353053410849,17.876434666666665,35.59700425465902,9.485036,0.6117340872685114,0.28018691613333335,22.495699882507324,0,1.2203100621700287,3.736537704,3.314909990876913e-4,0,0.13359000409642854,0.41150416333333334,0.014114899405588707,0.03131513704,354.82397460937494,5.282203830775799,62.77684238706698,57.99296209005686,11.218299468128201,12.815106071607788,-0.18013516255827122,17.334200382232666,0.8728853333333334,4629.540170688656,0,0.033279906337459884,0.0077866666666666666,1.488739977280299,0.05217066666666667,0.0366349999482433,0.007884 +2105,0,0,3.1405437671710126,0.5848878781865772,2.0426459636988117,5.787690003712972,0.00928,4.56439205010732,0.2378966666666667,101.5500005086263,0.8938684403333332,26.51991621653239,0,10.285300016403198,0,8.612469991048178,0.06628632370000001,51.33570130666097,1.06981,209.3699607849121,0.0116,5.041660229365031,101.75462,0,437.2347590128581,4226.066663333333,1018.3197784423827,110.22859402737735,387.37300872802734,341.3376597864964,0.787720133860906,1.16034075,0.39365600049495697,0.020231973733333332,0.4013364141186078,0.0087285418,37.904998461405434,24.072175966666666,13.718248208363852,17.753993333333334,35.50780328114828,9.420069999999999,0.6030030896266302,0.2782678276666667,22.387600262959797,0,1.216930051644643,3.71094498,2.7025999588659033e-4,0,0.1333320066332817,0.40868564166666665,0.013903699427222213,0.031100649800000005,355.02298482259107,5.275843120506152,62.675519499939995,57.86226841291378,11.178649647955218,12.783957461373614,-0.17951636528506534,17.364500681559246,0.8669066666666667,4602.404073198295,0,0.03145270608365536,0.007733333333333333,1.4681899944941204,0.051813333333333336,0.035327499732375145,0.00783 +2106,0,0,3.1405437671710126,0.5718903697824309,2.036258932803479,5.78751003742218,0.0092159999999999985,4.389631907145183,0.23625600000000002,101.60900115966797,0.8877038304,26.22881619135539,0,10.229700009028116,0,8.59621000289917,0.06582917664,50.412103017171226,1.0624319999999998,207.27295939127603,0.01152,5.0431002378463745,101.052864,0,437.33474985758465,4196.921376,1015.5597890218098,109.9300636149343,386.2160135904948,340.3768485700532,0.7571051369110743,1.1523383999999999,0.37151800096035004,0.02009244288,0.3663242906332016,0.00866834496,37.75809860229492,23.90616096,13.677743514378866,17.631552,35.41650358835856,9.355104,0.5944810956716537,0.27634873919999997,22.28000020980835,0,1.2130100329717,3.685352256,2.2036699859503037e-4,0,0.13300800696015358,0.40586712,0.013701299438253045,0.030886162560000003,355.2199783325195,5.269482410236504,62.574196612813004,57.73157473577069,11.138999827782236,12.752808851139442,-0.17891131906237515,17.394500732421875,0.860928,4575.267975707935,0,0.029720206124087174,0.00768,1.4479199945926666,0.051456,0.03406700026243925,0.007776000000000001 +2107,0,0,3.1405437671710126,0.5588928613782848,2.0298719019081464,5.7873300313949585,0.009151999999999999,4.221601963043213,0.23461533333333337,101.66700172424316,0.8815392204666667,25.941015879313152,0,10.174399932225546,0,8.57998013496399,0.06537202958,49.50440470377604,1.0550539999999997,205.19796244303384,0.01144,5.044550180435181,100.351108,0,437.4357452392578,4167.7760886666665,1013.0198109944661,109.63153320249123,385.0800145467122,339.41603735360997,0.729519118865331,1.14433605,0.35069599996010464,0.019952912026666665,0.3343861848115921,0.008608148119999999,37.60899829864502,23.740145953333332,13.634039322535196,17.509110666666665,35.322903633117676,9.290138,0.5861591001351675,0.2744296507333333,22.173100153605144,0,1.2086500624815624,3.659759532,1.7970699991565198e-4,0,0.1326250061392784,0.40304859833333334,0.013508599484339356,0.03067167532,355.4139836629231,5.263121699966858,62.472873725686014,57.600881058627614,11.099350007609253,12.721660240905269,-0.1783200238902007,17.424200534820557,0.8549493333333333,4548.131878217574,0,0.028076505443702143,0.007626666666666667,1.4279200037320454,0.05109866666666667,0.03285180001209179,0.0077220000000000006 +2108,0,0,3.1405437671710126,0.5458953529741386,2.0234848710128137,5.787149906158447,0.009087999999999999,4.060041785240173,0.2329746666666667,101.72500165303548,0.8753746105333333,25.656415462493896,0,10.119400024414062,0,8.563790082931519,0.06491488252000001,48.61220645904541,1.0476759999999998,203.14396158854166,0.01136,5.046000202496846,99.64935200000001,0,437.53675333658856,4138.630801333334,1010.6898193359374,109.33300279004817,383.9640121459961,338.45522613716673,0.7046261330445608,1.1363337,0.33111199736595154,0.019813381173333332,0.3052210782965024,0.00854795128,37.457798639933266,23.574130946666667,13.587435881296793,17.38666933333333,35.227203369140625,9.225172,0.5780321011940638,0.27251056226666664,22.066700140635174,0,1.2038800418376923,3.634166808,1.4656799855098748e-4,0,0.13219100361069044,0.40023007666666666,0.013324799481779337,0.030457188080000003,355.60597991943354,5.25676098969721,62.371550838559024,57.470187381484536,11.059700187436269,12.690511630671095,-0.17774247976854193,17.45370070139567,0.8489706666666668,4520.995780727213,0,0.02653350525846084,0.007573333333333333,1.4081900020440419,0.05074133333333334,0.03168019993851582,0.007668000000000001 +2109,0,0,3.1405437671710126,0.5328978445699925,2.017097840117481,5.786969979604085,0.009023999999999999,3.904691735903422,0.23133400000000004,101.78200085957845,0.8692100006,25.375115553538006,0,10.06469996770223,0,8.547640005747477,0.06445773546,47.73530832926432,1.040298,201.1119613647461,0.01128,5.0474501848220825,98.947596,0,437.6367467244466,4109.485514,1008.53982035319,109.0344723776051,382.8670120239258,337.4944149207235,0.682125136256218,1.1283313499999998,0.3126870046059291,0.01967385032,0.27860898276170093,0.00848775444,37.3045981725057,23.40811594,13.53823208808899,17.264228,35.12950325012207,9.160206,0.5700941036144892,0.2705914738,21.960899988810223,0,1.1987700760364532,3.608574084,1.1955499879453176e-4,0,0.13171400626500449,0.397411555,0.013148099572087327,0.030242700840000004,355.79498036702466,5.250400279427564,62.270227951432034,57.33949370434145,11.020050367263286,12.65936302043692,-0.1771786866973988,17.48300043741862,0.8429920000000001,4493.859683236853,0,0.02506770504017671,0.00752,1.388729989528656,0.050384000000000005,0.03055060002952814,0.007614000000000001 +2110,0,0,3.1405437671710126,0.5199003361658463,2.0107108092221484,5.786780039469401,0.00896,3.755311667919159,0.22969333333333336,101.83900133768718,0.8630453906666666,25.09691508611043,0,10.010399977366129,0,8.531519889831543,0.0640005884,46.873409271240234,1.0329199999999998,199.09996541341147,0.0112,5.0488901535669966,98.24584,0,437.73675537109375,4080.3402266666667,1006.549825032552,108.73594196516204,381.7880096435547,336.53360370428027,0.6617521246274313,1.120329,0.2953549971183141,0.019534319466666665,0.2543228988846143,0.0084275576,37.149498303731285,23.242100933333333,13.48642873764038,17.141786666666665,35.029603004455566,9.09524,0.5623380889495214,0.2686723853333333,21.85570001602173,0,1.1933500568072002,3.58298136,9.753309980927345e-5,0,0.13119600589076677,0.39459303333333334,0.012977799400687218,0.030028213600000003,355.98098246256507,5.244039569157916,62.168905064305044,57.20880002719837,10.980400547090303,12.628214410202748,-0.1766286446767714,17.512000560760498,0.8370133333333334,4466.723585746492,0,0.023674304441859324,0.007466666666666667,1.369509994983673,0.05002666666666667,0.02946159973119696,0.007560000000000001 +2111,0,0,3.1405437671710126,0.5069028277617001,2.0043237783268157,5.786589980125427,0.008896,3.6116716066996255,0.22805266666666668,101.89600054423015,0.8568807807333333,24.822015126546223,0,9.956339756647745,0,8.515430132548014,0.06354344134,46.026411056518555,1.0255419999999997,197.10996627807617,0.01112,5.05033020178477,97.544084,0,437.83574930826825,4051.1949393333334,1004.7198435465493,108.43741155271898,380.72501373291016,335.57279248783703,0.6432721267143885,1.11232665,0.27904899915059406,0.01939478861333333,0.232155820975701,0.00836736076,36.99249871571859,23.076085926666668,13.432325522104898,17.01934533333333,34.9278039932251,9.030274,0.554759090145429,0.26675329686666666,21.751000086466473,0,1.1876700520515442,3.5573886359999998,7.957729940244462e-5,0,0.13064100469152132,0.39177451166666666,0.012814999480421344,0.02981372636,356.1639836629231,5.237678858888269,62.06758217717805,57.07810635005529,10.94075072691732,12.597065799968574,-0.17609235370665965,17.540700435638428,0.8310346666666667,4439.587488256131,0,0.0223664043781658,0.007413333333333333,1.3505499958992004,0.049669333333333336,0.028411599962661665,0.0075060000000000005 +2112,0,0,3.1405437671710126,0.493905319357554,1.9979367474314829,5.7864000002543134,0.008832,3.4735615650812783,0.22641200000000003,101.95200157165527,0.8507161708,24.55011510848999,0,9.902599970499674,0,8.499380032221476,0.06308629428,45.19401327768961,1.0181639999999998,195.13996378580728,0.01104,5.051760236422221,96.842328,0,437.9347635904948,4022.049652,1003.0098368326821,108.13888114027591,379.6790084838867,334.6119812713938,0.6264731287956238,1.1043242999999998,0.2637059986591339,0.01925525776,0.2119187501569589,0.00830716392,36.83369827270508,22.91007092,13.376022736231485,16.896904,34.82400385538737,8.965308,0.5473520855108897,0.2648342084,21.646900018056233,0,1.1817600627740223,3.5317959119999998,6.493519958894467e-5,0,0.13005400449037552,0.38895599000000003,0.012659199458236495,0.029599239120000002,356.3449783325195,5.231318148618622,61.96625929005106,56.94741267291221,10.901100906744336,12.565917189734401,-0.17556981378706366,17.56920035680135,0.825056,4412.451390765771,0,0.02112110424786806,0.00736,1.3318600058555603,0.049312,0.0273991998595496,0.007452000000000001 +2113,0,0,3.1405437671710126,0.48090781095340784,1.99154971653615,5.786199967066447,0.008768,3.340751508871714,0.22477133333333338,102.00800196329753,0.8445515608666666,24.281214555104572,0,9.849169890085856,0,8.483369906743368,0.06262914722,44.37601407368978,1.010786,193.18996302286783,0.01096,5.05318025747935,96.140572,0,438.03175862630206,3992.9043646666664,1001.4198404947915,107.84035072783286,378.64801025390625,333.65117005495057,0.6111691246430079,1.0963219499999999,0.24927000080545744,0.019115726906666665,0.19344068070252737,0.00824696708,36.67309856414795,22.744055913333334,13.317820151646933,16.774462666666665,34.71820386250814,8.900342,0.5401100814342499,0.26291511993333333,21.54330015182495,0,1.175640046596527,3.5062031879999997,5.299380003028394e-5,0,0.12943900500734648,0.38613746833333334,0.012508399474124113,0.029384751880000004,356.5229822794596,5.224957438348975,61.86493640292407,56.81671899576913,10.861451086571353,12.534768579500227,-0.17506102491798325,17.597500324249268,0.8190773333333334,4385.31529327541,0,0.019934604099641245,0.007306666666666666,1.3134199976921082,0.04895466666666667,0.02642319972316424,0.007398000000000001 +2114,0,0,3.1405437671710126,0.4679103025492617,1.9851626856408173,5.78600001335144,0.008704,3.213051418463389,0.2231306666666667,102.06300036112468,0.8383869509333333,24.015514691670734,0,9.79604991277059,0,8.467390060424805,0.062172000160000004,43.57211526234945,1.0034079999999999,191.2609634399414,0.010879999999999999,5.054590225219727,95.438816,0,438.1287612915039,3963.759077333333,999.9378611246743,107.5418203153898,377.6330159505208,332.69035883850734,0.5971951385339102,1.0883196,0.2356869988143444,0.01897619605333333,0.17659362281362215,0.00818677024,36.51079909006754,22.578040906666665,13.257717450459799,16.65202133333333,34.61060301462809,8.835376,0.5330280860265096,0.26099603146666667,21.44039996465047,0,1.1693500479062398,3.4806104639999997,4.325360017295073e-5,0,0.12879900385936102,0.38331894666666666,0.012362399604171515,0.029170264640000002,356.69897969563795,5.218596728079327,61.76361351579708,56.68602531862605,10.821801266398369,12.503619969266055,-0.1745659870994186,17.625500202178955,0.8130986666666667,4358.17919578505,0,0.018820903884867828,0.007253333333333333,1.2952199975649517,0.04859733333333333,0.02548210012416045,0.007344000000000001 +2115,0,0,3.1405437671710126,0.45491279414511554,1.9787756547454847,5.785800019900004,0.008639999999999998,3.090251366297404,0.22149000000000002,102.11800193786621,0.832222341,23.752714316050213,0,9.74323002497355,0,8.45143993695577,0.0617148531,42.78221734364828,0.9960299999999999,189.3509661356608,0.0108,5.056000312169393,94.73706,0,438.22476450602215,3934.61379,998.5478515624999,107.24328990294674,376.63101450602215,331.72954762206416,0.5844021340211233,1.0803172499999998,0.22290199995040894,0.018836665199999998,0.16123056784272194,0.0081265734,36.34669844309489,22.4120259,13.195815404256185,16.52958,34.50110371907552,8.77041,0.5261020908753077,0.259076943,21.337899843851726,0,1.1628900369008381,3.4550177399999997,3.530800010291083e-5,0,0.12813600649436316,0.38050042500000003,0.012222199545552334,0.0289557774,356.87198384602857,5.21223601780968,61.66229062867009,56.555331641482965,10.782151446225386,12.47247135903188,-0.1740847003313696,17.65320046742757,0.8071200000000001,4331.043098294689,0,0.017775303684175014,0.0072,1.277269999186198,0.048240000000000005,0.0245746998116374,0.007290000000000001 +2116,0,0,3.1405437671710126,0.4419152857409694,1.9723886238501518,5.785589933395386,0.008575999999999999,2.972161293029785,0.21984933333333337,102.17200088500977,0.8260577310666667,23.492814540863037,0,9.690709908803305,0,8.435529947280884,0.06125770604,42.00601863861084,0.9886519999999999,187.4609629313151,0.01072,5.057400266329448,94.035304,0,438.31976318359375,3905.4685026666666,997.2418619791665,106.94475949050367,375.6440073649089,330.7687364056209,0.572658121585846,1.0723148999999998,0.21086799974242845,0.018697134346666665,0.1471945196390152,0.00806637656,36.18109893798828,22.246010893333334,13.132413228352865,16.407138666666665,34.38970343271891,8.705444,0.5193260908126831,0.25715785453333334,21.236000061035156,0,1.156300038099289,3.4294250159999997,2.8825499915304437e-5,0,0.1274530030786991,0.37768190333333335,0.012087399528051416,0.028741290160000002,357.0419794718424,5.205875307540033,61.56096774154311,56.42463796433989,10.742501626052404,12.441322748797706,-0.17361716461383628,17.68070062001546,0.8011413333333334,4303.907000804328,0,0.016793803156663973,0.007146666666666667,1.259559988975525,0.04788266666666667,0.02369989998017748,0.007236000000000001 +2117,0,0,3.1405437671710126,0.42891777733682324,1.966001592954819,5.785380005836487,0.008511999999999999,2.858611245950063,0.21820866666666672,102.22600110371907,0.8198931211333333,23.235913912455242,0,9.638480027516684,0,8.419649918874105,0.06080055898,41.243319829305015,0.9812739999999999,185.5909652709961,0.01064,5.0587901671727495,93.333548,0,438.4147771199544,3876.3232153333333,996.0098673502603,106.64622907806061,374.66901143391925,329.8079251891777,0.5618491272131602,1.06431255,0.19954299802581468,0.01855760349333333,0.13436747218171755,0.00800617972,36.01379903157552,22.079995886666666,13.067411263783773,16.28469733333333,34.27660306294759,8.640478,0.5126960774262747,0.2552387660666667,21.134699821472168,0,1.1495900650819142,3.4038322919999997,2.3536000147335773e-5,0,0.12675300364693007,0.37486338166666666,0.011956299422308803,0.028526802920000004,357.209981282552,5.199514597270386,61.45964485441612,56.29394428719681,10.702851805879419,12.410174138563534,-0.17316337994681866,17.707900683085125,0.7951626666666667,4276.770903313968,0,0.01585490310875078,0.0070933333333333334,1.2420999904473622,0.047525333333333336,0.02285629976540804,0.007182000000000001 +2118,0,0,3.1405437671710126,0.4159202689326771,1.9596145620594863,5.785169959068298,0.008447999999999999,2.749421219031016,0.21656800000000004,102.28000005086263,0.8137285112,22.981913884480793,0,9.586560010910034,0,8.403800010681152,0.06034341192,40.49392127990723,0.9738959999999999,183.73896662394205,0.01056,5.0601701736450195,92.631792,0,438.50777435302734,3847.1779279999996,994.8438618977864,106.34769866561756,373.708012898763,328.84711397273446,0.5518701175848643,1.0563102,0.18888300036390623,0.018418072639999998,0.12266943355401357,0.00794598288,35.8450984954834,21.91398088,13.00110944112142,16.162256,34.16170342763265,8.575512,0.5062070886294047,0.2533196776,21.033899943033855,0,1.1427700519561768,3.3782395679999997,1.921939989794434e-5,0,0.126037006576856,0.37204486,0.01182849945810934,0.028312315680000002,357.37598164876295,5.193153887000738,61.35832196728913,56.16325061005373,10.663201985706436,12.37902552832936,-0.1727233463303167,17.73490047454834,0.7891840000000001,4249.634805823607,0,0.01495610293932259,0.007039999999999999,1.2248799900213878,0.047168,0.022042999664942425,0.007128000000000001 +2119,0,0,3.1405437671710126,0.40292276052853093,1.9532275311641536,5.784960031509399,0.008383999999999999,2.6444112062454224,0.21492733333333336,102.33300081888835,0.8075639012666667,22.73081398010254,0,9.534929911295572,0,8.38799007733663,0.05988626486,39.757522900899254,0.9665179999999999,181.90696589152017,0.01048,5.0615501801172895,91.930036,0,438.6007715861003,3818.0326406666663,993.7378641764321,106.04916825317449,372.75901285807294,327.88630275629123,0.5426301211118698,1.0483078499999998,0.17884700000286102,0.018278541786666665,0.11200039337078731,0.00788578604,35.67479864756266,21.74796587333333,12.933407545089722,16.039814666666665,34.045002937316895,8.510546,0.49985408534606296,0.25140058913333335,20.933600107828777,0,1.1358500520388286,3.3526468439999997,1.5696399941589334e-5,0,0.12530700551966825,0.36922633833333335,0.011705399490892887,0.02809782844,357.53897603352857,5.186793176731092,61.25699908016214,56.032556932910644,10.623552165533452,12.347876918095187,-0.17229706376433046,17.761600335439045,0.7832053333333334,4222.498708333247,0,0.014112302878250679,0.006986666666666666,1.2078799903392792,0.04681066666666667,0.021258700018127758,0.007074000000000001 +2120,0,0,3.1405437671710126,0.3899252521243848,1.9468405002688207,5.784740050633748,0.00832,2.5434411565462747,0.2132866666666667,102.38600095113118,0.8013992913333333,22.48241360982259,0,9.48360006014506,0,8.372210025787354,0.0594291178,39.034023920694985,0.9591399999999999,180.09396743774414,0.0104,5.062920252482097,91.22828,0,438.6927795410156,3788.887353333333,992.6848704020181,105.75063784073143,371.82201131184894,326.925491539848,0.5340461184581121,1.0403054999999999,0.16939899946252504,0.01813901093333333,0.10226835931340854,0.0078255892,35.50299866994222,21.581950866666666,12.864606062571207,15.917373333333332,33.926703135172524,8.44558,0.49363408237695694,0.24948150066666666,20.83390013376872,0,1.1288600663344066,3.3270541199999997,1.2820699945829498e-5,0,0.12456400444110234,0.36640781666666666,0.011586499478047093,0.0278833412,357.69897969563795,5.180432466461444,61.15567619303515,55.901863255767566,10.58390234536047,12.316728307861013,-0.17188453224885988,17.788100401560467,0.7772266666666667,4195.362610842886,0,0.013320202628771463,0.006933333333333333,1.1911199887593586,0.04645333333333333,0.020502599887549877,0.007020000000000001 +2121,0,0,3.1405437671710126,0.37692774372023863,1.940453469373488,5.78453000386556,0.008256,2.4463310837745667,0.21164600000000003,102.43800036112468,0.7952346814,22.236913522084553,0,9.432550112406412,0,8.356470108032227,0.058971970740000004,38.32322565714518,0.9517619999999999,178.29896799723306,0.01032,5.064280192057292,90.526524,0,438.78377532958984,3759.742066,991.6778818766275,105.45210742828837,370.8970133463542,325.96468032340476,0.5260461121797562,1.03230315,0.16050399839878082,0.017999480079999998,0.09339222870767117,0.00776539236,35.329898834228516,21.41593586,12.794604539871216,15.794932,33.80670356750488,8.380614,0.4875410844882329,0.2475624122,20.734699885050457,0,1.1217800378799438,3.3014613959999997,1.0472999974808772e-5,0,0.12381100344161193,0.363589295,0.011470099445432425,0.027668853960000003,357.85697937011713,5.174071756191797,61.05435330590816,55.77116957862449,10.544252525187487,12.28557969762684,-0.171485751783905,17.814300219217937,0.771248,4168.226513352525,0,0.012576502670223514,0.00688,1.1745899816354115,0.046096,0.01977339976777633,0.006966000000000001 +2122,0,0,3.1405437671710126,0.3639302353160925,1.9340664384781552,5.784309983253479,0.008192,2.3529510299364724,0.21000533333333338,102.4900016784668,0.7890700714666666,21.994113127390545,0,9.381799936294556,0,8.340760151545206,0.05851482368,37.62492656707764,0.9443839999999999,176.52296829223633,0.010239999999999999,5.065640250841777,89.824768,0,438.8747838338216,3730.5967786666665,990.7118631998696,105.1535770158453,369.98301188151044,325.00386910696153,0.5185661216576894,1.0243007999999998,0.15212799981236458,0.017859949226666665,0.08529519972701867,0.00770519552,35.15529823303223,21.249920853333332,12.723603010177612,15.672490666666665,33.68500264485677,8.315648,0.48157207916180295,0.24564332373333334,20.63599983851115,0,1.114640047152837,3.2758686719999996,8.556300144846318e-6,0,0.12304900462428729,0.36077077333333335,0.011356199470659098,0.02745436672,358.0129826863606,5.16771104592215,60.95303041878117,55.6404759014814,10.504602705014502,12.254431087392666,-0.1711007223694658,17.84030071894328,0.7652693333333334,4141.090415862165,0,0.011878302320837975,0.006826666666666667,1.1582699815432231,0.045738666666666664,0.019070299963156383,0.0069120000000000015 +2123,0,0,3.1405437671710126,0.35093272691194627,1.9276794075828225,5.784080068270366,0.008128,2.2631510297457376,0.2083646666666667,102.54200108846028,0.7829054615333333,21.75411335627238,0,9.331329981486002,0,8.325080076853434,0.05805767662,36.93882751464844,0.9370059999999999,174.76496760050455,0.01016,5.066980202992757,89.123012,0,438.96378326416016,3701.4514913333333,989.7838694254556,104.85504660340224,369.0800145467122,324.0430578905183,0.5115441183249155,1.0162984499999999,0.14423799887299538,0.01772041837333333,0.07790877483785152,0.00764499868,34.97939840952555,21.083905846666667,12.651601870854696,15.550049333333332,33.56180318196615,8.250682,0.4757230803370476,0.24372423526666667,20.537800153096516,0,1.1074400544166565,3.2502759479999996,6.991170001432086e-6,0,0.1222800047447284,0.35795225166666667,0.011245899523297945,0.027239879480000003,358.1659825642903,5.161350335652503,60.851707531654185,55.50978222433832,10.46495288484152,12.223282477158492,-0.17072944400554227,17.866000334421795,0.7592906666666668,4113.954318371804,0,0.011222802257786194,0.0067733333333333335,1.1421899994214375,0.045381333333333336,0.01839239988476038,0.006858000000000001 +2124,0,0,3.1405437671710126,0.3379352185078001,1.9212923766874899,5.783860007921855,0.008064,2.1768009662628174,0.20672400000000005,102.59300168355306,0.7767408516,21.51671266555786,0,9.281149943669638,0,8.309439897537231,0.05760052956,36.264729499816895,0.9296279999999999,173.02496846516928,0.01008,5.0683302481969195,88.421256,0,439.0527852376302,3672.306204,988.8888753255208,104.55651619095917,368.1880137125651,323.08224667407507,0.5049331237872442,1.0082961,0.1368079992632071,0.017580887519999998,0.07114325153330962,0.00758480184,34.802199045817055,20.91789084,12.578700542449951,15.427608,33.43690331776937,8.185716,0.4699910804629326,0.2418051468,20.440200010935467,0,1.1001900434494019,3.2246832239999996,5.712989983900722e-6,0,0.12150200456380844,0.35513373000000004,0.011138899562259516,0.02702539224,358.3169809977213,5.154989625382856,60.750384644527195,55.37908854719524,10.425303064668537,12.192133866924319,-0.17037191669213447,17.89150063196818,0.7533120000000001,4086.8182208814437,0,0.010590002251168093,0.00672,1.1263399918874104,0.045024,0.017738699913024902,0.006804000000000001 +2125,0,0,3.1405437671710126,0.32493771010365397,1.9149053457921572,5.783629973729451,0.008,2.0937509139378867,0.20508333333333337,102.64300219217937,0.7705762416666666,21.282012780507404,0,9.231260140736898,0,8.293829997380575,0.057143382500000006,35.60253111521403,0.9222499999999998,171.3029670715332,0.01,5.0696602662404375,87.71950000000001,0,439.1407877604167,3643.1609166666667,988.0218760172525,104.25798577851612,367.30600992838544,322.12143545763183,0.49868611494700116,1.00029375,0.12981100132068,0.017441356666666664,0.06494382830957572,0.007524605,34.62369887034098,20.751875833333333,12.504899581273397,15.305166666666665,33.31050364176432,8.12075,0.46437007933855057,0.23988605833333332,20.34310007095337,0,1.0928900440533955,3.1990904999999996,4.6690399434131296e-6,0,0.12071700394153595,0.35231520833333335,0.011033699537316958,0.026810905000000003,358.46497853597,5.148628915113209,60.649061757400204,55.24839487005216,10.385653244495554,12.160985256690147,-0.17002814042924233,17.916700681050617,0.7473333333333334,4059.682123391083,0,0.009978462010622025,0.006666666666666666,1.1106899976730347,0.04466666666666667,0.017108399731417496,0.006750000000000001 +2126,0,0,3.1405437671710126,0.3119402016995078,1.9085183148968243,5.7833999792734785,0.007935999999999999,2.013880878686905,0.2034426666666667,102.69400215148926,0.7644116317333334,21.04991277058919,0,9.181639989217123,0,8.278249979019165,0.05668623544,34.95203177134196,0.9148719999999998,169.59897104899088,0.00992,5.070990165074666,87.01774400000001,0,439.2287902832031,3614.015629333333,987.1808776855468,103.95945536607306,366.4350102742513,321.16062424118866,0.49276411285003024,0.9922913999999999,0.12321799993515015,0.01730182581333333,0.05928750894963741,0.00746440816,34.44399833679199,20.585860826666668,12.43039838473002,15.182725333333332,33.182602882385254,8.055784,0.45885908355315524,0.23796696986666666,20.24650001525879,0,1.0855400462945302,3.173497776,3.816290037169286e-6,0,0.11992500474055608,0.34949668666666667,0.010930199564124147,0.026596417760000005,358.6109822591145,5.142268204843561,60.547738870273214,55.11770119290908,10.34600342432257,12.129836646455972,-0.1696981152168659,17.941600640614826,0.7413546666666667,4032.5460259007223,0,0.009404311887919903,0.006613333333333333,1.09525000055631,0.04430933333333333,0.01650050018603603,0.006696000000000001 +2127,0,0,3.1405437671710126,0.29894269329536166,1.9021312840014917,5.783159971237183,0.007871999999999999,1.9370708465576172,0.20180200000000004,102.74400202433269,0.7582470218,20.820512771606445,0,9.132309993108114,0,8.262699921925863,0.05622908838,34.31303278605143,0.9074939999999998,167.91196823120117,0.00984,5.072320222854614,86.315988,0,439.3147964477539,3584.8703419999997,986.3618774414061,103.66092495362999,365.57301330566406,320.1998130247454,0.4871291170517604,0.98428905,0.11700899961094062,0.017162294959999998,0.05412649052838484,0.0074042113199999995,34.26309871673584,20.41984582,12.354997237523397,15.060284,33.0532029469808,7.990818,0.45345307886600494,0.2360478814,20.150400002797443,0,1.0781600375970204,3.147905052,3.1196500079507436e-6,0,0.11912700533866882,0.34667816500000004,0.010829499534641704,0.026381930520000003,358.7549794514973,5.135907494573915,60.446415983146224,54.987007515765995,10.306353604149587,12.098688036221798,-0.16938184105500512,17.966400305430096,0.735376,4005.4099284103618,0,0.008865261838460961,0.00656,1.0800299843152363,0.043952,0.01591439979771773,0.006642000000000001 +2128,0,0,3.1405437671710126,0.28594518489121545,1.895744253106159,5.782920002937317,0.007807999999999999,1.8632108271121979,0.20016133333333336,102.79300053914388,0.7520824118666667,20.593612353007,0,9.08326013882955,0,8.247189919153849,0.055771941320000004,33.685333887736,0.9001159999999998,166.24196751912436,0.009760000000000001,5.073630213737488,85.614232,0,439.4007873535156,3555.7250546666664,985.5628763834634,103.36239454118693,364.72100830078125,319.2390018083022,0.48175110667943954,0.9762867,0.1111589999248584,0.017022764106666664,0.049417173800369106,0.007344014479999999,34.08099842071533,20.253830813333334,12.278996388117472,14.937842666666667,32.922303199768066,7.925852,0.44814808170000714,0.23412879293333333,20.054800351460774,0,1.0707400540510814,3.122312328,2.550459953454265e-6,0,0.11832300511499245,0.34385964333333335,0.010731599604090055,0.026167443280000004,358.8959808349609,5.129546784304267,60.34509309601924,54.85631383862292,10.266703783976604,12.067539425987626,-0.16907931794366005,17.990800539652508,0.7293973333333335,3978.2738309200013,0,0.008359171682968736,0.006506666666666667,1.065029998620351,0.04359466666666667,0.015349199995398521,0.006588000000000001 +2129,0,0,3.1405437671710126,0.2729476764870693,1.8893572222108261,5.782679994901021,0.007743999999999999,1.7921707928180695,0.1985206666666667,102.84199968973796,0.7459178019333333,20.369212468465168,0,9.034480015436808,0,8.231710036595663,0.05531479426000001,33.06873575846354,0.8927379999999998,164.589968363444,0.009680000000000001,5.0749402443567915,84.91247600000001,0,439.4867909749349,3526.579767333333,984.7818908691405,103.06386412874386,363.8790105183919,318.27819059185896,0.47660010556379956,0.96828435,0.1056449996928374,0.01688323325333333,0.045119858967761196,0.00728381764,33.897698720296226,20.087815806666665,12.202295541763306,14.815401333333332,32.79000282287598,7.860886,0.4429430787762006,0.23220970446666667,19.959700107574463,0,1.063280036052068,3.096719604,2.0853600138555826e-6,0,0.11751400617261727,0.3410411216666667,0.01063469952593247,0.025952956040000003,359.0349782307942,5.123186074034621,60.24377020889225,54.72562016147983,10.22705396380362,12.036390815753453,-0.16879054588283068,18.015000502268474,0.7234186666666668,3951.1377334296403,0,0.00788402157680442,0.0064533333333333335,1.050249993801117,0.043237333333333336,0.01480420003645122,0.006534000000000002 +2130,0,0,3.1405437671710126,0.25995016808292315,1.8829701913154935,5.7824400663375854,0.007679999999999999,1.7238507469495137,0.19688000000000003,102.89100074768066,0.739753192,20.14731216430664,0,8.985980113347372,0,8.216259956359863,0.054857647200000005,32.46303653717041,0.8853599999999998,162.95396931966147,0.009600000000000001,5.076250235239665,84.21072000000001,0,439.57179768880206,3497.43448,984.0158793131509,102.7653337163008,363.0450134277344,317.3173793754157,0.4716481144229571,0.960282,0.10044900017480056,0.016743702399999998,0.04119814528773228,0.0072236207999999994,33.71329879760742,19.9218008,12.1249946753184,14.69296,32.65620358784994,7.79592,0.4378330782055855,0.230290616,19.86519988377889,0,1.0558000306288402,3.07112688,1.705259999577417e-6,0,0.11670100378493468,0.33822260000000004,0.010538999612132708,0.025738468800000004,359.1719818115234,5.116825363764973,60.14244732176526,54.59492648433675,10.187404143630637,12.005242205519279,-0.16851552487251695,18.039000511169434,0.7174400000000001,3924.00163593928,0,0.007437911427890261,0.0064,1.0356499950091045,0.04288,0.014278600070004662,0.006480000000000001 +2131,0,0,3.1405437671710126,0.246952659678777,1.8765831604201608,5.7821900844573975,0.0076159999999999995,1.6581507523854573,0.19523933333333338,102.9390017191569,0.7335885820666667,19.928012053171795,0,8.937750101089478,0,8.200849930445353,0.05440050014,31.86813767751058,0.8779819999999998,161.3349698384603,0.00952,5.077550292015076,83.508964,0,439.65579477945965,3468.2891926666666,983.2628784179686,102.46680330385774,362.2210108439128,316.3565681589725,0.4668761119246483,0.9522796499999999,0.09555359929800034,0.016604171546666664,0.03761913254857063,0.007163423959999999,33.52789815266927,19.755785793333335,12.047094106674194,14.570518666666667,32.52110322316488,7.730954,0.43281607578198117,0.22837152753333334,19.77110004425049,0,1.0482900540033977,3.045534156,1.394609986012559e-6,0,0.11588300454119842,0.33540407833333336,0.010445599521820744,0.025523981560000006,359.3059819539387,5.110464653495326,60.04112443463827,54.464232807193675,10.147754323457654,11.974093595285105,-0.16825425491271892,18.062700748443604,0.7114613333333334,3896.8655384489193,0,0.007019071412893633,0.006346666666666667,1.0212499996026356,0.04252266666666667,0.013771800013879934,0.006426000000000001 +2132,0,0,3.1405437671710126,0.23395515127463085,1.870196129524828,5.78193994363149,0.007552,1.5949607094128926,0.1935986666666667,102.9860013326009,0.7274239721333333,19.7110120455424,0,8.889799992243448,0,8.18546994527181,0.053943353080000006,31.283738613128662,0.8706039999999998,159.73296737670898,0.00944,5.078840295473735,82.807208,0,439.7388000488281,3439.1439053333334,982.5208892822264,102.16827289141467,361.406010945638,315.39575694252926,0.46226411312818527,0.9442773,0.09093709972997506,0.01646464069333333,0.034352721025546394,0.00710322712,33.341298739115395,19.589770786666666,11.968693256378174,14.448077333333332,32.38450304667155,7.665988,0.4278890788555145,0.22645243906666668,19.6775000890096,0,1.0407600502173107,3.019941432,1.1406700082261523e-6,0,0.11506100371479988,0.3325855566666667,0.010354399681091309,0.025309494320000004,359.4379781087239,5.104103943225679,59.93980154751128,54.33353913005059,10.10810450328467,11.942944985050932,-0.16800673600343655,18.08620039621989,0.7054826666666667,3869.7294409585584,0,0.006625821348279715,0.006293333333333334,1.0070499976476033,0.04216533333333333,0.013283099979162216,0.006372000000000001 +2133,0,0,3.1405437671710126,0.2209576428704847,1.8638090986294953,5.781690080960591,0.007487999999999999,1.534190684556961,0.19195800000000002,103.03399976094563,0.7212593622,19.496511936187744,0,8.84210991859436,0,8.170119762420654,0.05348620602,30.709839979807537,0.8632259999999998,158.14697265625,0.00936,5.080130219459534,82.10545200000001,0,439.82179768880206,3409.9986179999996,981.7888844807942,101.86974247897162,360.59900919596356,314.434945726086,0.45779310911893845,0.9362749499999999,0.08658330018321674,0.016325109839999997,0.03137141062567631,0.007043030279999999,33.153798739115395,19.42375578,11.889692385991415,14.325636,32.24670282999674,7.6010219999999995,0.42304807404677075,0.2245333506,19.584400177001953,0,1.0332000354925792,2.994348708,9.330749956385868e-7,0,0.1142360046505928,0.32976703500000004,0.010263899574056268,0.025095007080000002,359.5679779052734,5.097743232956032,59.83847866038429,54.20284545290751,10.068454683111687,11.91179637481676,-0.16777296814466988,18.109400431315105,0.6995040000000001,3842.593343468198,0,0.006256601268736024,0.00624,0.9930480072895685,0.041808000000000005,0.012811799999326468,0.0063180000000000016 +2134,0,0,3.1405437671710126,0.20796013446633854,1.8574220677341624,5.781440019607544,0.007423999999999999,1.4757506648699443,0.19031733333333337,103.0810006459554,0.7150947522666666,19.284411748250324,0,8.794690132141113,0,8.154799938201904,0.05302905896000001,30.146140893300373,0.8558479999999998,156.57697041829428,0.00928,5.081420222918193,81.40369600000001,0,439.90480550130206,3380.8533306666664,981.0658823649087,101.57121206652855,359.8010075887044,313.4741345096428,0.4534471084674199,0.9282726,0.08247909881174564,0.016185578986666664,0.028650200615326565,0.00698283344,32.965198834737144,19.25774077333333,11.8102920850118,14.203194666666665,32.107502937316895,7.536055999999999,0.4182920729120572,0.22261426213333332,19.49179983139038,0,1.0256200432777405,2.968755984,7.633449996546915e-7,0,0.11340700462460518,0.32694851333333336,0.010173899587243795,0.024880519840000004,359.6959864298502,5.091382522686384,59.7371557732573,54.072151775764425,10.028804862938705,11.880647764582585,-0.1675529513364189,18.132300694783527,0.6935253333333334,3815.457245977837,0,0.005909941159188747,0.006186666666666667,0.9792510022719702,0.04145066666666667,0.012357300069803992,0.006264000000000001 +2135,0,0,3.1405437671710126,0.1949626260621924,1.8510350368388298,5.781179944674174,0.007359999999999999,1.419540633757909,0.18867666666666671,103.12700080871582,0.7089301423333333,19.074711163838703,0,8.74753999710083,0,8.139509916305542,0.052571911900000004,29.59244171778361,0.8484699999999998,155.02297337849936,0.0092,5.082700252532959,80.70194000000001,0,439.98580169677734,3351.708043333333,980.34987894694,101.27268165408549,359.01000722249347,312.51332329319956,0.4492131049434344,0.92027025,0.07860949883858363,0.01604604813333333,0.026166292062650125,0.0069226366,32.77559884389242,19.091725766666666,11.730391105016073,14.080753333333332,31.967002868652344,7.47109,0.41361607362826663,0.22069517366666666,19.399699846903484,0,1.018030047416687,2.94316326,6.245589929676498e-7,0,0.112576004738609,0.3241299916666667,0.010085999500006437,0.024666032600000005,359.82097625732416,5.085021812416738,59.635832886130316,53.94145809862135,9.98915504276572,11.849499154348411,-0.16734668557868362,18.15500036875407,0.6875466666666668,3788.3211484874764,0,0.005584461032412946,0.0061333333333333335,0.9656510055065155,0.041093333333333336,0.011918999875585238,0.006210000000000001 +2136,0,0,3.1405437671710126,0.18196511765804624,1.844648005943497,5.780919988950093,0.0072959999999999995,1.3654805918534596,0.18703600000000004,103.17299969991048,0.7027655324,18.867311318715412,0,8.700659990310669,0,8.124260028203329,0.05211476484,29.048643112182617,0.8410919999999998,153.48496882120767,0.009120000000000001,5.083970268567403,80.000184,0,440.06781005859375,3322.562756,979.6398824055989,100.97415124164243,358.2280095418294,311.55251207675633,0.44507810721794766,0.9122678999999999,0.07495829897622268,0.015906517279999997,0.02389888387794296,0.006862439759999999,32.58509922027588,18.92571076,11.649990638097128,13.958312,31.82520294189453,7.406124,0.409020076195399,0.2187760852,19.30810006459554,0,1.0104100505510967,2.917570536,5.110620051596015e-7,0,0.11174300499260426,0.32131147000000004,0.009999809553846717,0.024451545360000004,359.943977355957,5.07866110214709,59.534509999003326,53.81076442147827,9.949505222592737,11.818350544114239,-0.16715417087146406,18.17750072479248,0.6815680000000001,3761.185050997116,0,0.0052788610725353164,0.00608,0.9522250046332678,0.040736,0.01149629995537301,0.006156000000000001 +2137,0,0,3.1405437671710126,0.1689676092539001,1.8382609750481642,5.780660033226013,0.007232,1.3134805858135223,0.18539533333333336,103.21900113423665,0.6966009224666666,18.662211259206135,0,8.654039939244589,0,8.109040101369223,0.051657617780000005,28.514644145965576,0.8337139999999998,151.96297327677408,0.009040000000000001,5.085240324338277,79.298428,0,440.14780680338544,3293.4174686666665,978.933878580729,100.67562082919936,357.4540100097656,310.5917008603131,0.4410281057159106,0.90426555,0.07151499887307484,0.015766986426666664,0.021828976770242054,0.00680224292,32.393598874409996,18.759695753333332,11.569290161132812,13.835870666666665,31.68220281600952,7.341158,0.4045000746846199,0.21685699673333333,19.216900030771892,0,1.0027700612942378,2.891977812,4.1823600109106945e-7,0,0.11091000524659951,0.31849294833333336,0.009913969784975052,0.024237058120000002,360.06498209635413,5.072300391877443,59.433187111876336,53.68007074433518,9.909855402419755,11.787201933880066,-0.16697540721476012,18.199700514475506,0.6755893333333334,3734.048953506755,0,0.004991920936542253,0.006026666666666667,0.9389700045188268,0.04037866666666667,0.011088700033724308,0.006102000000000001 +2138,0,0,3.1405437671710126,0.15597010084975393,1.8318739441528316,5.780399998029073,0.007167999999999999,1.2634805540243785,0.1837546666666667,103.2640012105306,0.6904363125333333,18.45941146214803,0,8.607679923375448,0,8.093850056330362,0.05120047072,27.990145206451416,0.8263359999999998,150.45597203572592,0.008960000000000001,5.086510221163432,78.59667200000001,0,440.2288182576497,3264.272181333333,978.2328745524087,100.3770904167563,356.68700917561847,309.63088964386986,0.437055100997289,0.8962631999999999,0.06826709893842538,0.01562745557333333,0.019939269870519638,0.0067420460799999995,32.20129871368408,18.593680746666667,11.488189935684204,13.713429333333332,31.538003126780193,7.276192,0.40005407234032947,0.21493790826666664,19.12629969914754,0,0.9951180468002955,2.866385088,3.4230699933838576e-7,0,0.11007400415837765,0.3156744266666667,0.00982839947876831,0.024022570880000003,360.18398284912104,5.065939681607795,59.331864224749346,53.549377067192104,9.870205582246772,11.756053323645892,-0.1668103946085719,18.22160053253174,0.6696106666666668,3706.9128560163945,0,0.004722510852540533,0.005973333333333333,0.9259050041437149,0.04002133333333334,0.010695600028460225,0.006048000000000001 +2139,0,0,3.1405437671710126,0.14297259244560778,1.8254869132574987,5.78012998898824,0.007103999999999999,1.2153805394967396,0.18211400000000005,103.30900065104167,0.6842717025999999,18.25891097386678,0,8.561580101648966,0,8.07869005203247,0.050743323660000006,27.475045839945476,0.8189579999999999,148.96497217814127,0.00888,5.087770183881124,77.89491600000001,0,440.3078079223633,3235.1268939999995,977.5348815917968,100.07856000431323,355.92801157633465,308.67007842742663,0.43315110355615616,0.88826085,0.06520080069700877,0.015487924719999999,0.01821396391217907,0.00668184924,32.00799894332886,18.42766574,11.406689087549845,13.590987999999998,31.392502625783283,7.211226,0.3956790665785472,0.21301881979999998,19.036100069681805,0,0.987449049949646,2.840792364,2.801940013341664e-7,0,0.10923500421146552,0.31285590500000005,0.009744479553774,0.023808083640000005,360.3009821573893,5.059578971338149,59.230541337622356,53.41868339004902,9.830555762073788,11.724904713411718,-0.16665913305289934,18.243400414784748,0.6636320000000001,3679.7767585260335,0,0.004452110966667533,0.00592,0.9130260000626246,0.039664000000000005,0.01031660009175539,0.005994000000000001 +2140,0,0,3.1405437671710126,0.12997508404146163,1.819099882362166,5.779860059420268,0.007039999999999999,1.1691205203533173,0.18047333333333337,103.35300064086914,0.6781070926666666,18.060611089070637,0,8.515739917755127,0,8.063560088475546,0.0502861766,26.969146887461346,0.8115799999999999,147.48897298177084,0.0088,5.089030186335246,77.19316,0,440.3878122965495,3205.9816066666663,976.8388773600259,99.78002959187017,355.17700958251953,307.7092672109834,0.42930810153484344,0.8802584999999999,0.0623052998756369,0.015348393866666666,0.01663875828186671,0.0066216524,31.813798586527508,18.261650733333333,11.324788649876913,13.468546666666665,31.24590269724528,7.14626,0.3913740739226341,0.21109973133333332,18.94630018870036,0,0.9797640442848206,2.81519964,2.2937600145193451e-7,0,0.10839400378366311,0.31003738333333336,0.009662099570656816,0.023593596400000003,360.4149780273437,5.053218261068501,59.129218450495365,53.28798971290594,9.790905941900805,11.693756103177545,-0.16652162254774253,18.264800389607746,0.6576533333333334,3652.640661035673,0,0.0041807709106554585,0.005866666666666667,0.9003310004870096,0.03930666666666667,0.009950979923208555,0.005940000000000001 +2141,0,0,3.0777328918275924,0.11697757563731546,1.8127128514668334,5.779589970906575,0.0069759999999999996,1.1246304909388225,0.1788326666666667,103.39700063069661,0.6719424827333332,17.864510536193848,0,8.470160086949667,0,8.048470179239908,0.04982902954,26.472447713216145,0.8042019999999999,146.02697245279947,0.00872,5.090280254681905,76.491404,0,440.46581776936847,3176.836319333333,976.1438751220702,99.48149917942712,354.4330088297526,306.74845599454017,0.4255191038052241,0.8722561499999999,0.05957289971411228,0.015208863013333332,0.015200453189512094,0.006561455559999999,31.61879889170329,18.095635726666668,11.242688417434692,13.346105333333332,31.0981027285258,7.081294,0.3871350735425949,0.20918064286666666,18.857100009918213,0,0.9720650414625803,2.789606916,1.8773799936866453e-7,0,0.10755000449717045,0.3072188616666667,0.009579739688585201,0.02337910916,360.52797953287757,5.046857550798854,59.027895563368375,53.15729603576286,9.751256121727822,11.662607492943371,-0.16639786309310134,18.286000569661457,0.6516746666666667,3625.5045635453125,0,0.0039260008100730675,0.0058133333333333335,0.8878160019715627,0.038949333333333336,0.00959842000156641,0.005886000000000001 +2142,0,0,3.014922016484172,0.1039800672331693,1.8063258205715005,5.779310027758281,0.006912,1.0818404754002888,0.17719200000000004,103.4410006205241,0.6657778727999999,17.67051076889038,0,8.424829959869385,0,8.0334099928538,0.049371882480000004,25.984548727671307,0.7968239999999999,144.58097457885742,0.00864,5.0915303230285645,75.789648,0,440.54381561279297,3147.6910319999997,975.4508870442708,99.18296876698405,353.7100118001302,305.78764477809693,0.42177509764830273,0.8642538,0.05699389955649773,0.015069332159999999,0.013887148583307862,0.00650125872,31.422998746236164,17.92962072,11.16018788019816,13.223663999999998,30.949102719624836,7.016328,0.38296207040548325,0.2072615544,18.76830005645752,0,0.9643520464499792,2.764014192,1.536189984108205e-7,0,0.10670500434935093,0.30440034000000005,0.009497409531225761,0.023164621920000003,360.6379826863606,5.040496840529207,58.926572676241385,53.026602358619776,9.711606301554838,11.631458882709198,-0.1662878546889759,18.307000319163006,0.645696,3598.3684660549516,0,0.003686780789090941,0.00576,0.8754800061384836,0.038592,0.009258409884447852,0.005832 +2143,0,0,2.952111141140752,0.09098255882902315,1.7999387896761678,5.779030044873555,0.006847999999999999,1.0406904717286427,0.17555133333333336,103.48400115966797,0.6596132628666667,17.47881031036377,0,8.379759867986044,0,8.018369992574057,0.04891473542000001,25.505449771881104,0.7894459999999999,143.14997355143228,0.00856,5.0927702983220415,75.08789200000001,0,440.62181854248047,3118.5457446666665,974.7568817138671,98.88443835454099,353.02001190185547,304.82683356165376,0.4180730978647868,0.8562514499999999,0.05455679974208275,0.014929801306666666,0.012687944419061145,0.00644106188,31.226398944854736,17.763605713333334,11.077387491861979,13.101222666666665,30.799002647399902,6.951362,0.3788510685165723,0.20534246593333333,18.68000014623006,0,0.9566250344117483,2.738421468,1.257139992105749e-7,0,0.10585700534284115,0.30158181833333336,0.00941648978429536,0.022950134680000005,360.745979309082,5.03413613025956,58.825249789114395,52.8959086814767,9.671956481381855,11.600310272475024,-0.1661915973353661,18.32770045598348,0.6397173333333335,3571.232368564591,0,0.0034621507317448654,0.005706666666666667,0.8633189996083578,0.03823466666666667,0.008930499975879988,0.005778000000000001 +2144,0,0,2.8893002657973317,0.07798505042487697,1.793551758780835,5.778749942779541,0.006783999999999999,1.0011004507541656,0.1739106666666667,103.5270004272461,0.6534486529333333,17.289210478464764,0,8.334940115610758,0,8.00336996714274,0.048457588360000005,25.034950733184814,0.7820679999999999,141.73297373453775,0.00848,5.093990246454875,74.38613600000001,0,440.6978251139323,3089.400457333333,974.0628763834634,98.58590794209792,352.3630142211914,303.8660223452105,0.4144070992867152,0.8482491,0.052255699411034584,0.014790270453333332,0.011592740581060449,0.00638086504,31.028899033864338,17.597590706666665,10.994287014007568,12.978781333333332,30.64780282974243,6.8863959999999995,0.374801071981589,0.20342337746666667,18.592099984486897,0,0.9488830467065176,2.712828744,7.085481238770323e-8,0,0.10500700399279594,0.2987632966666667,0.009336879632125298,0.022735647440000003,360.85198211669916,5.027775419989913,58.723926901987404,52.76521500433362,9.632306661208872,11.569161662240852,-0.16610909103227198,18.348100185394287,0.6337386666666668,3544.09627107423,0,0.003251230693422258,0.005653333333333334,0.8513309955596924,0.03787733333333333,0.00861426000483334,0.005724000000000001 +2145,0,0,2.8264893904539115,0.06498754202073082,1.7871647278855023,5.778469999631246,0.006719999999999999,0.9630304276943207,0.17227000000000003,103.56900024414062,0.647284043,17.1016100247701,0,8.290369908014933,0,7.988400061925252,0.0480004413,24.572951634724934,0.7746899999999999,140.32997385660806,0.008400000000000001,5.095200260480245,73.68438,0,440.77183024088544,3060.25517,973.3668874104817,98.28737752965486,351.7350082397461,302.9052111287673,0.4107740968465805,0.8402467499999999,0.05008249978224436,0.0146507396,0.01059263696273168,0.0063206682,30.83069896697998,17.4315757,10.91098666191101,12.85634,30.49550263086955,6.821429999999999,0.370810071627299,0.201504289,18.504700183868408,0,0.9411280453205109,2.68723602,0,0,0.10415500402450562,0.29594477500000005,0.009257089657088121,0.0225211602,360.9569753011067,5.021414709720266,58.622604014860414,52.63452132719054,9.59265684103589,11.538013052006677,-0.16604033577969354,18.368300437927246,0.6277600000000001,3516.9601735838696,0,0.003053180640563369,0.005600000000000001,0.8395139972368876,0.03752,0.008309270022436976,0.0056700000000000006 +2146,0,0,2.7636785151104912,0.05199003361658465,1.7807776969901696,5.778180042902629,0.006656,0.9264104117949804,0.17062933333333336,103.61100069681804,0.6411194330666666,16.916210174560547,0,8.246049880981445,0,7.973460078239441,0.047543294240000006,24.11935265858968,0.7673119999999999,138.94197209676108,0.008320000000000001,5.096390287081401,72.982624,0,440.84383900960285,3031.1098826666666,972.6678771972655,97.9888471172118,351.1360092163086,301.94439991232406,0.40716809779405594,0.8322443999999999,0.048027198761701584,0.014511208746666667,0.009679143782705069,0.0062604713599999995,30.631698926289875,17.265560693333335,10.82728624343872,12.733898666666665,30.34210268656413,6.756463999999999,0.3668760731816292,0.19958520053333334,18.41770013173421,0,0.9333590368429819,2.661643296,0,0,0.10330100295444329,0.29312625333333336,0.009177109614635507,0.022306672960000003,361.05898284912104,5.015053999450618,58.52128112773343,52.503827650047455,9.553007020862905,11.506864441772503,-0.1659853315776308,18.38830057779948,0.6217813333333334,3489.824076093509,0,0.0028672105787942805,0.005546666666666667,0.8278450071811676,0.03716266666666667,0.008015120091537634,0.005616 +2147,0,0,2.700867639767071,0.0389925252124385,1.7743906660948368,5.777889966964722,0.006592,0.8911883980035782,0.1689886666666667,103.65300114949544,0.6349548231333333,16.732810020446777,0,8.201970020929972,0,7.958559989929199,0.04708614718000001,23.673853238423664,0.7599339999999999,137.56697463989258,0.00824,5.0975602467854815,72.280868,0,440.912846883138,3001.9645953333334,971.9648793538411,97.69031670476873,350.5640106201172,300.9835886958808,0.40358609954516095,0.82424205,0.0460829995572567,0.014371677893333334,0.008844850895305475,0.00620027452,30.43189875284831,17.099545686666666,10.743386030197144,12.611457333333332,30.187702814737957,6.691497999999999,0.3629970649878184,0.19766611206666668,18.331200122833252,0,0.9255770395199457,2.636050572,0,0,0.1024460041274627,0.2903077316666667,0.009098359616473317,0.022092185720000004,361.1589787801106,5.008693289180972,58.41995824060644,52.37313397290438,9.513357200689923,11.47571583153833,-0.16594407842608372,18.408000469207764,0.6158026666666667,3462.687978603148,0,0.0026925805723294616,0.005493333333333334,0.8163209954897562,0.036805333333333336,0.007731429960889121,0.005562 +2148,0,0,2.638056764423651,0.025995016808292318,1.768003635199504,5.777599930763245,0.006527999999999999,0.8573093712329865,0.16734800000000002,103.69400024414062,0.6287902132000001,16.551509857177734,0,8.158140023549398,0,7.943679928779602,0.04662900012000001,23.236454327901203,0.7525559999999999,136.20697657267252,0.00816,5.098700324694316,71.57911200000001,0,440.97985585530597,2972.819308,971.2578684488931,97.39178629232568,350.0190073649089,300.02277747943765,0.4000260904431343,0.8162396999999999,0.044245499496658645,0.01423214704,0.008082798294102153,0.00614007768,30.23129892349243,16.93353068,10.659285624821981,12.489016,30.03220256169637,6.626531999999999,0.3591700668136279,0.19574702360000001,18.245199998219807,0,0.9177790433168411,2.610457848,0,0,0.1015880045791467,0.28748921,0.009020739623034993,0.021877698480000003,361.25698598225904,5.002332578911324,58.31863535347945,52.2424402957613,9.47370738051694,11.444567221304156,-0.16591657632505233,18.427400430043537,0.6098240000000001,3435.5518811127877,0,0.0025286105422613523,0.00544,0.8049609959125519,0.036448,0.0074578299730395274,0.005508000000000001 +2149,0,0,2.5752458890802306,0.012997508404146166,1.7616166043041712,5.777300000190735,0.006463999999999999,0.8247223645448685,0.16570733333333337,103.73399988810222,0.6226256032666667,16.372109572092693,0,8.11456004778544,0,7.928830027580261,0.046171853060000004,22.806955019632976,0.7451779999999999,134.86097462972006,0.00808,5.099820216496785,70.877356,0,441.04386647542316,2943.674020666667,970.5458831787108,97.0932558798826,349.50001271565753,299.0619662629944,0.3964800958832105,0.80823735,0.04250849969685078,0.014092616186666667,0.007386715811056395,0.00607988084,30.029998938242596,16.76751567333333,10.574785153071085,12.366574666666665,29.87560224533081,6.561565999999999,0.3553950637578964,0.19382793513333335,18.159599939982098,0,0.909964049855868,2.584865124,0,0,0.10073100465039413,0.28467068833333337,0.008942769529918829,0.02166321124,361.35197957356763,4.995971868641678,58.21731246635246,52.11174661861821,9.434057560343955,11.413418611069984,-0.16590282527453667,18.446600278218586,0.6038453333333335,3408.4157836224267,0,0.0023746304602051773,0.005386666666666667,0.7937629967927933,0.03609066666666667,0.007193949927265446,0.0054540000000000005 +2150,0,0,2.5124350137368103,-0,1.7552295734088386,5.777009963989258,0.0063999999999999994,0.7933783481518427,0.1640666666666667,103.77500089009602,0.6164609933333334,16.194709936777752,0,8.07121992111206,0,7.91402002175649,0.04571470600000001,22.38515567779541,0.7377999999999999,133.5279769897461,0.008,5.10092027982076,70.1756,0,441.10586802164715,2914.5287333333335,969.8268839518228,96.79472546743955,349.00500742594403,298.1011550465512,0.3929500902692477,0.8002349999999999,0.04086369927972555,0.013953085333333334,0.006750853538202743,0.006019684,29.827998797098797,16.601500666666666,10.490185022354126,12.244133333333332,29.718002637227375,6.496599999999999,0.3516700665156047,0.1919088466666667,18.074399948120117,0,0.9021350542704264,2.5592724,0,0,0.09987300323943298,0.2818521666666667,0.008864449725175897,0.021448724000000002,361.4459838867187,4.98961115837203,58.11598957922547,51.981052941475134,9.394407740170973,11.38227000083581,-0.16590282527453667,18.465600331624348,0.5978666666666668,3381.279686132066,0,0.0022300404768126705,0.005333333333333334,0.7827220012744268,0.03573333333333333,0.006939440073134999,0.0054 +2151,0,0,2.44962413839339,-0,1.748842542513506,5.7767099142074585,0.006336,0.7632293254137039,0.16242600000000001,103.81400108337402,0.6102963834,16.019309600194294,0,8.028120040893555,0,7.8992299636205034,0.045257558940000005,21.97105662027995,0.7304219999999999,132.20797475179037,0.00792,5.10200035572052,69.473844,0,441.16587320963544,2885.3834460000003,969.1018727620442,96.49619505499649,348.5340092976888,297.14034383010795,0.3894330908854802,0.7922326499999999,0.039307999114195503,0.01381355448,0.006169971544295549,0.00595948716,29.62519915898641,16.43548566,10.405184348424276,12.121692,29.559402465820312,6.431633999999999,0.34799306094646454,0.18998975820000003,17.989599863688152,0,0.8942920416593552,2.5336796759999998,0,0,0.0990130038311084,0.279033645,0.008787219567845264,0.021234236760000004,361.53798166910804,4.983250448102383,58.01466669209848,51.850359264332056,9.35475791999799,11.351121390601637,-0.16590282527453667,18.484300136566162,0.5918880000000001,3354.1435886417057,0,0.0020942704674477377,0.005280000000000001,0.7718390027681986,0.035376,0.006693969985159735,0.005346 +2152,0,0,2.38681326304997,-0,1.742455511618173,5.776400009791057,0.006272,0.7342293312152227,0.16078533333333336,103.85400072733562,0.6041317734666667,15.845909516016642,0,7.985249996185303,0,7.884470025698344,0.04480041188000001,21.56435759862264,0.7230439999999999,130.90197626749674,0.00784,5.103050311406453,68.772088,0,441.22288004557294,2856.238158666667,968.3698730468749,96.19766464255342,348.08301035563153,296.1795326136647,0.38592709352572757,0.7842302999999999,0.03783609966437022,0.013674023626666667,0.005639289622195065,0.00589929032,29.421699047088623,16.269470653333332,10.32008441289266,11.999250666666665,29.399802366892498,6.366667999999999,0.3443620651960373,0.18807066973333336,17.90529998143514,0,0.8864320317904154,2.5080869519999998,0,0,0.09815080339709918,0.27621512333333337,0.008710979639242092,0.021019749520000002,361.6279856363932,4.976889737832736,57.91334380497149,51.71966558718897,9.315108099825006,11.319972780367463,-0.16590282527453667,18.502800464630127,0.5859093333333334,3327.0074911513448,0,0.001966770398818577,0.005226666666666668,0.7611089994510015,0.03501866666666666,0.006457209975148241,0.005292000000000001 +2153,0,0,2.3240023877065497,-0,1.7360684807228404,5.776099960009257,0.006207999999999999,0.7063343127568563,0.15914466666666668,103.89300028483073,0.5979671635333333,15.674309492111206,0,7.942630012830098,0,7.869750022888184,0.044343264820000006,21.16515827178955,0.7156659999999999,129.60897318522134,0.00776,5.104080359141032,68.07033200000001,0,441.2768859863281,2827.0928713333333,967.6298675537108,95.89913423011036,347.65000915527344,295.2187213972215,0.3824300865332286,0.77622795,0.036440898974736534,0.013534492773333334,0.005154447940488656,0.00583909348,29.217499256134033,16.103455646666667,10.234683752059937,11.876809333333332,29.23920249938965,6.301702,0.3407760684688886,0.18615158126666667,17.821499983469646,0,0.878556047876676,2.4824942279999997,0,0,0.09728650376200676,0.2733966016666667,0.00863425969146192,0.020805262280000004,361.7159805297851,4.970529027563089,57.8120209178445,51.58897191004589,9.275458279652023,11.28882417013329,-0.16590282527453667,18.521000385284424,0.5799306666666667,3299.8713936609843,0,0.0018470404029358178,0.005173333333333334,0.750530997912089,0.034661333333333336,0.006228859963205953,0.0052380000000000005 +2154,0,0,2.2611915123631294,-0,1.7296814498275077,5.775789936383565,0.006143999999999999,0.6795023083686829,0.15750400000000003,103.93100102742513,0.5918025536,15.504709402720133,0,7.900239984194438,0,7.8550500472386675,0.04388611776000001,20.773059050242107,0.7082879999999999,128.328976949056,0.00768,5.105090300242106,67.368576,0,441.3288930257161,2797.947584,966.8868713378905,95.60060381766729,347.2340087890625,294.25791018077825,0.37894008805354434,0.7682256,0.03511999951054653,0.01339496192,0.00471146641454349,0.0057788966399999996,29.01249885559082,15.93744064,10.148983558019003,11.754368,29.07760222752889,6.236736,0.3372330615917842,0.1842324928,17.73799975713094,0,0.8706650386253992,2.4569015039999997,0,0,0.096420103063186,0.27057808,0.008557079515109459,0.020590775040000002,361.80298360188795,4.964168317293441,57.71069803071751,51.458278232902806,9.235808459479038,11.257675559899116,-0.16590282527453667,18.53890037536621,0.573952,3272.7352961706238,0,0.001734610355924815,0.00512,0.740102007985115,0.034304,0.006008619985853632,0.005184 +2155,0,0,2.198380637019709,-0,1.7232944189321748,5.775480031967163,0.0060799999999999995,0.653691291809082,0.15586333333333335,103.96999994913737,0.5856379436666667,15.336909294128418,0,7.8580799500147505,0,7.840379953384399,0.04342897070000001,20.38815975189209,0.7009099999999999,127.06197738647461,0.0076,5.106070359547933,66.66682,0,441.3779042561849,2768.8022966666667,966.1448771158853,95.30207340522423,346.8350118001302,293.297098964335,0.375455083946387,0.7602232499999999,0.03386909949282805,0.013255431066666667,0.0043067050476868944,0.005718699799999999,28.806899070739746,15.771425633333333,10.063183307647705,11.631926666666665,28.91500234603882,6.1717699999999995,0.3337320610880852,0.18231340433333335,17.65500005086263,0,0.8627610405286154,2.43130878,0,0,0.09555160440504551,0.2677595583333333,0.008480859609941641,0.020376287800000004,361.88698069254554,4.957807607023794,57.609375143590526,51.32758455575973,9.196158639306056,11.226526949664944,-0.16590282527453667,18.55660057067871,0.5679733333333334,3245.599198680263,0,0.0016290303513718147,0.005066666666666667,0.7298210014899572,0.03394666666666667,0.005796190002001822,0.005130000000000001 +2156,0,0,2.1355697616762885,-0,1.7169073880368422,5.775159994761149,0.006016,0.6288642833630244,0.15422266666666667,104.00700124104817,0.5794733337333333,15.17090924580892,0,7.816159963607788,0,7.82575003306071,0.042971823640000004,20.010160446166992,0.6935319999999998,125.8079776763916,0.00752,5.107030312220256,65.965064,0,441.42491149902344,2739.6570093333335,965.4038696289061,95.00354299278118,346.45301055908203,292.3362877478918,0.37197408576806384,0.7522209,0.03268179918328921,0.013115900213333333,0.003936863678973168,0.00565850296,28.600598971048992,15.605410626666666,9.977072715759277,11.509485333333332,28.751502513885498,6.1068039999999995,0.33027106275161106,0.18039431586666668,17.572400252024334,0,0.8548420468966166,2.405716056,0,0,0.09468110278248787,0.2649410366666667,0.00840553967282176,0.020161800560000005,361.9689865112304,4.951446896754147,57.508052256463536,51.19689087861665,9.156508819133073,11.195378339430771,-0.16590282527453667,18.574100176493328,0.5619946666666668,3218.4631011899023,0,0.001529890326006959,0.005013333333333334,0.7196850031614304,0.03358933333333333,0.005591289993996422,0.005076000000000001 +2157,0,0,2.0727588863328683,-0,1.7105203571415095,5.774839997291565,0.005952,0.6049832801024119,0.15258200000000002,104.04500007629395,0.5733087238,15.006808916727701,0,7.774460077285767,0,7.811139941215515,0.04251467658000001,19.639061450958252,0.6861539999999998,124.56597646077473,0.0074400000000000004,5.107980330785115,65.263308,0,441.46891530354816,2710.511722,964.6638793945311,94.7050125803381,346.08800252278644,291.37547653144856,0.36849608769019443,0.74421855,0.031554299561927714,0.01297636936,0.0035989125608466566,0.0055983061199999995,28.393598715464275,15.439395619999999,9.890772740046183,11.387044,28.58710225423177,6.041837999999999,0.3268500591317813,0.17847522740000002,17.49020004272461,0,0.846907044450442,2.380123332,0,0,0.09380870374540488,0.262122515,0.008329649688676,0.019947313320000003,362.04898071289057,4.9450861864845,57.406729369336546,51.066197201473564,9.116858998960089,11.164229729196597,-0.16590282527453667,18.59130048751831,0.5560160000000001,3191.327003699542,0,0.0014367802941706032,0.004960000000000001,0.709691991408666,0.033232,0.005393660006423791,0.005022 +2158,0,0,2.009948010989448,-0,1.7041333262461769,5.7745299736658735,0.005887999999999999,0.5820102542638779,0.15094133333333334,104.08100128173828,0.5671441138666666,14.844509045282999,0,7.733000079790751,0,7.796560009320577,0.042057529520000005,19.274661540985107,0.6787759999999998,123.33697764078777,0.00736,5.108900348345439,64.561552,0,441.5119222005208,2681.3664346666665,963.922876993815,94.40648216789505,345.74100494384766,290.4146653150053,0.36502008388439816,0.7362162,0.030485499650239944,0.012836838506666667,0.0032900814937117198,0.005538109279999999,28.185898939768474,15.273380613333334,9.80425230662028,11.264602666666667,28.42170254389445,5.976872,0.32346605757872265,0.17655613893333333,17.40850019454956,0,0.8389560331900915,2.354530608,0,0,0.09293450290958087,0.2593039933333333,0.008253209680939714,0.019732826080000005,362.12797800699866,4.938725476214852,57.305406482209555,50.935503524330485,9.077209178787106,11.133081118962425,-0.16590282527453667,18.60830020904541,0.5500373333333334,3164.1909062091813,0,0.0013493502726002287,0.004906666666666667,0.6998399943113327,0.03287466666666667,0.005203029955737293,0.004968 +2159,0,0,1.9471371356460279,-0,1.697746295350844,5.774199962615967,0.005823999999999999,0.5599122444788615,0.1493006666666667,104.11800066630046,0.5609795039333333,14.684008836746216,0,7.691759983698527,0,7.782009998957316,0.04160038246000001,18.91696246465047,0.6713979999999998,122.11997731526692,0.00728,5.109800338745117,63.859796,0,441.5519307454427,2652.221147333333,963.1818644205728,94.10795175545198,345.4090092976888,289.4538540985621,0.3615470826625824,0.7282138499999999,0.02947189938277006,0.012697307653333333,0.0030078504544993243,0.00547791244,27.977599143981934,15.107365606666667,9.717522064844767,11.142161333333332,28.255402088165283,5.911906,0.32011906057596207,0.17463705046666667,17.3271001180013,0,0.8309910446405411,2.328937884,0,0,0.09205840403834979,0.2564854716666667,0.008177649540205797,0.019518338840000003,362.203982035319,4.932364765945206,57.204083595082565,50.8048098471874,9.037559358614121,11.10193250872825,-0.16590282527453667,18.625000317891438,0.5440586666666667,3137.0548087188204,0,0.001267240276016916,0.004853333333333334,0.6901270051797231,0.032517333333333336,0.00501917003809164,0.004914000000000001 +2160,0,0,1.8843262603026076,-0,1.6913592644555113,5.7738800048828125,0.0057599999999999995,0.5386552413304647,0.14766,104.15399996439616,0.554814894,14.525208791097006,0,7.6507500012715655,0,7.767489989598592,0.041143235400000006,18.565763155619305,0.6640199999999998,120.91497802734375,0.0072,5.110690434773763,63.15804,0,441.59093475341797,2623.07586,962.4398701985676,93.80942134300892,345.09400685628253,288.49304288211886,0.3580750798185666,0.7202115,0.02850789964819948,0.0125577768,0.0027499196003191173,0.005417715599999999,27.768599033355713,14.9413506,9.630591789881388,11.01972,28.088202476501465,5.84694,0.31680705895026523,0.172717962,17.24620008468628,0,0.8230140407880148,2.30334516,0,0,0.09118060395121574,0.25366695,0.008102919673547149,0.019303851600000005,362.27897898356116,4.926004055675558,57.102760707955575,50.67411617004432,8.997909538441139,11.070783898494078,-0.16590282527453667,18.64140033721924,0.53808,3109.91871122846,0,0.001190130259298409,0.0048000000000000004,0.6805499990781149,0.03216,0.004841820026437442,0.004860000000000001 +2161,0,0,1.8215153849591874,-0,1.6849722335601787,5.773549993832906,0.005696,0.5182062288125356,0.14601933333333333,104.19000053405762,0.5486502840666666,14.368208646774292,0,7.609969933827718,0,7.752999981244405,0.04068608834,18.220963795979817,0.6566419999999998,119.72197723388672,0.00712,5.111550410588582,62.456284,0,441.626948038737,2593.9305726666666,961.6948699951171,93.51089093056586,344.79501088460285,287.5322316656756,0.3546030844251315,0.71220915,0.027592999394983053,0.012418245946666667,0.002514188779362788,0.005357518759999999,27.558999061584473,14.775335593333333,9.543461561203003,10.897278666666667,27.92010227839152,5.781974,0.3135300601522128,0.17079887353333334,17.165599981943767,0,0.8150210330883662,2.277752436,0,0,0.09030100268622239,0.2508484283333333,0.008027549600228667,0.019089364360000003,362.35198211669916,4.919643345405911,57.001437820828585,50.54342249290124,8.958259718268156,11.039635288259904,-0.16590282527453667,18.65760024388631,0.5321013333333333,3082.7826137380994,0,0.0011177202492641907,0.004746666666666667,0.6711089958747228,0.03180266666666667,0.004670750039319198,0.004806 +2162,0,0,1.7587045096157672,-0,1.6785852026648458,5.77321990331014,0.005632,0.49853622168302536,0.14437866666666668,104.22500101725261,0.5424856741333333,14.212908585866293,0,7.569409966468811,0,7.738540013631185,0.040228941280000007,17.882364908854168,0.6492639999999998,118.54197883605957,0.007039999999999999,5.11240033308665,61.754528,0,441.66094970703125,2564.7852853333334,960.9478759765624,93.2123605181228,344.5130106608073,286.5714204492324,0.3511310840646426,0.7042068,0.026724199764430523,0.012278715093333333,0.002298738011935105,0.00529732192,27.34869893391927,14.609320586666666,9.456131140391031,10.774837333333332,27.751102447509766,5.717008,0.3102850591142972,0.16887978506666668,17.08549992243449,0,0.8070130397876104,2.252159712,0,0,0.08941980451345444,0.24802990666666666,0.007951559654126564,0.018874877120000005,362.42297871907545,4.913282635136264,56.900114933701595,50.41272881575816,8.918609898095172,11.008486678025731,-0.16590282527453667,18.673600673675537,0.5261226666666666,3055.6465162477384,0,0.0010497202165424824,0.004693333333333334,0.6617999921242396,0.03144533333333333,0.004505750024691224,0.004752000000000001 +2163,0,0,1.695893634272347,-0,1.6721981717695131,5.772889931996663,0.005567999999999999,0.4796142131090164,0.142738,104.26000086466472,0.5363210641999999,14.059208393096924,0,7.5290699402491255,0,7.724100073178609,0.039771794220000004,17.549965063730877,0.6418859999999998,117.37297757466634,0.00696,5.11322037378947,61.052772000000004,0,441.6919581095378,2535.6399979999997,960.1988779703775,92.91383010567974,344.24600474039715,285.61060923278916,0.3476560761531194,0.69620445,0.025896599671492975,0.01213918424,0.0021018172847107053,0.005237125079999999,27.137799104054768,14.44330558,9.368610938390097,10.652396,27.581202189127605,5.652042,0.30707205832004547,0.1669606966,17.005800088246662,0,0.7989920328060786,2.226566988,0,0,0.08853900308410327,0.245211385,0.007876409605766336,0.018660389880000003,362.4919764200846,4.906921924866617,56.798792046574604,50.28203513861508,8.878960077922189,10.977338067791557,-0.16590282527453667,18.689300378163654,0.520144,3028.510418757378,0,9.858592190236475e-4,0.00464,0.6526219993829727,0.031088,0.004346589945877592,0.004698000000000001 +2164,0,0,1.6330827589289267,-0,1.6658111408741803,5.772549986839294,0.005503999999999999,0.4614112029472987,0.14109733333333335,104.2939993540446,0.5301564542666666,13.907308181126913,0,7.48895001411438,0,7.709699988365173,0.03931464716000001,17.223665555318195,0.6345079999999998,116.21597862243652,0.00688,5.114030400911967,60.351016,0,441.72196197509766,2506.4947106666664,959.4458719889321,92.61529969323668,343.99400838216144,284.6497980163459,0.34418008228143054,0.6882021,0.02510769944638014,0.011999653386666666,0.0019218166708014905,0.00517692824,26.92629925409953,14.277290573333334,9.280900716781616,10.529954666666665,27.410502433776855,5.587076,0.3038910577694575,0.16504160813333335,16.926500002543133,0,0.7909590353568395,2.200974264,0,0,0.08765820413827896,0.24239286333333335,0.0078020096601297455,0.018445902640000005,362.5589803059895,4.900561214596969,56.697469159447614,50.151341461472,8.839310257749206,10.946189457557384,-0.16590282527453667,18.704800605773926,0.5141653333333334,3001.3743212670174,0,9.258861876636123e-4,0.004586666666666667,0.643574004371961,0.030730666666666667,0.004193060061273475,0.0046440000000000006 +2165,0,0,1.5702718835855065,-0,1.6594241099788476,5.772220015525818,0.0054399999999999995,0.4439011936386426,0.13945666666666667,104.32800038655598,0.5239918443333333,13.757108211517334,0,7.4490500291188555,0,7.695320010185242,0.038857500100000004,16.903266429901123,0.6271299999999999,115.06997871398926,0.0068,5.11482040087382,59.64926,0,441.74996693929035,2477.349423333333,958.6898701985676,92.31676928079361,343.7580032348633,283.68898679990275,0.3407030800978343,0.68019975,0.024357599206268787,0.011860122533333333,0.0017572860815562308,0.0051167313999999995,26.714099248250324,14.111275566666666,9.193000475565592,10.407513333333332,27.23890193303426,5.52211,0.30073805153369904,0.1631225196666667,16.847500165303547,0,0.7829120308160782,2.17538154,0,0,0.08677550281087558,0.2395743416666667,0.007726929732598364,0.018231415400000003,362.6249796549479,4.894200504327323,56.596146272320624,50.020647784328915,8.799660437576222,10.91504084732321,-0.16590282527453667,18.72000026702881,0.5081866666666667,2974.238223776657,0,8.695651777088642e-4,0.004533333333333334,0.6346520036458969,0.030373333333333336,0.004044969954217474,0.00459 +2166,0,0,1.5074610082420863,-0,1.653037079083515,5.771869977315267,0.005376,0.4270561908682187,0.137816,104.3620007832845,0.5178272344,13.608408212661743,0,7.40936001141866,0,7.6809699932734175,0.03840035304,16.588767210642498,0.6197519999999999,113.93597920735677,0.006719999999999999,5.115590453147888,58.947504,0,441.7749735514323,2448.204136,957.9298756917317,92.01823886835055,343.53800710042316,282.7281755834595,0.337224081158638,0.6721974,0.023644099632898968,0.01172059168,0.0016068955786370982,0.005056534559999999,26.501398881276447,13.94526056,9.104930400848389,10.285072,27.06650193532308,5.457144,0.29761505126953125,0.1612034312,16.76900005340576,0,0.7748510390520096,2.149788816,0,0,0.08589090344806512,0.23675582,0.007651189691387117,0.01801692816,362.68898264567054,4.887839794057675,56.49482338519364,49.88995410718584,8.760010617403239,10.883892237089036,-0.16590282527453667,18.735000133514404,0.502208,2947.102126286296,0,8.16671172894227e-4,0.0044800000000000005,0.6258560021718343,0.030016,0.003902130042357991,0.004536000000000001 +2167,0,0,1.444650132898666,-0,1.646650048188182,5.771529992421468,0.005312,0.41085217893123627,0.13617533333333334,104.39500109354655,0.5116626244666667,13.461408058802286,0,7.369900027910869,0,7.66664997736613,0.037943205980000005,16.279967466990154,0.6123739999999999,112.81297938028972,0.00664,5.116340438524882,58.245748000000006,0,441.7989756266276,2419.0588486666666,957.1648763020833,91.7197084559075,343.3320032755534,281.7673643670163,0.3337430755297343,0.66419505,0.022962499565134447,0.011581060826666666,0.0014694050963347156,0.00499633772,26.288098971048992,13.779245553333332,9.016679922739664,10.162630666666665,26.89330228169759,5.392178,0.2945200552543004,0.15928434273333333,16.690800189971924,0,0.766777033607165,2.124196092,0,0,0.08500450352827708,0.23393729833333335,0.007576229710442324,0.017802440920000002,362.74998219807935,4.881479083788028,56.39350049806665,49.75926043004276,8.720360797230256,10.852743626854863,-0.16590282527453667,18.749700387318928,0.49622933333333336,2919.9660287959355,0,7.669981569051743e-4,0.004426666666666667,0.6171829998493195,0.029658666666666667,0.0037643300214161477,0.004482000000000001 +2168,0,0,1.3818392575552456,-0,1.6402630172928494,5.771180033683777,0.005247999999999999,0.3952641760309537,0.13453466666666666,104.42700131734212,0.5054980145333333,13.316107988357544,0,7.330649971961975,0,7.652360041936238,0.03748605892,15.976768334706625,0.6049959999999999,111.70197931925456,0.00656,5.117070396741231,57.543992,0,441.8199869791667,2389.913561333333,956.3968658447264,91.42117804346444,343.1420084635417,280.80655315057305,0.3302590747674306,0.6561927,0.022313499667992193,0.011441529973333333,0.0013437246476920943,0.004936140879999999,26.074199040730793,13.613230546666667,8.928249756495157,10.040189333333332,26.719202200571697,5.327212,0.2914510543147723,0.15736525426666667,16.613100051879883,0,0.7586930344502131,2.098603368,0,0,0.08411630305151145,0.2311187766666667,0.007501999653565387,0.01758795368,362.8109792073567,4.87511837351838,56.29217761093966,49.62856675289968,8.680710977057274,10.82159501662069,-0.16590282527453667,18.76420021057129,0.49025066666666667,2892.829931305575,0,7.203481460843856e-4,0.004373333333333333,0.6086120009422302,0.029301333333333332,0.0036314200066650906,0.0044280000000000005 +2169,0,0,1.3190283822118254,-0,1.6338759863975165,5.770829995473226,0.005183999999999999,0.3802681714296341,0.132894,104.46000099182129,0.4993334046,13.172307888666788,0,7.2916100025177,0,7.6380899747212725,0.037028911860000006,15.679068803787231,0.5976179999999999,110.60098012288411,0.00648,5.117780407269795,56.842236,0,441.8399887084961,2360.7682739999996,955.6228637695311,91.12264763102137,342.9660059611003,279.8457419341298,0.3267730747660001,0.64819035,0.02169509930536151,0.01130199912,0.0012288242675519239,0.00487594404,25.859699090321858,13.44721554,8.839649597803751,9.917747999999998,26.544401963551838,5.262246,0.2884090517958005,0.1554461658,16.53569984436035,0,0.7505970299243927,2.073010644,0,0,0.08322640260060628,0.228300255,0.007427039750230809,0.017373466440000002,362.8689804077148,4.868757663248734,56.19085472381267,49.497873075756594,8.64106115688429,10.790446406386517,-0.16590282527453667,18.77839994430542,0.48427200000000004,2865.693833815214,0,6.765371460157136e-4,0.00432,0.6001420070727667,0.028944,0.003503210008299599,0.004374000000000001 +2170,0,0,1.2562175068684052,-0,1.6274889555021839,5.770480036735535,0.0051199999999999996,0.36584116518497467,0.13125333333333333,104.49200057983398,0.49316879466666663,13.03000783920288,0,7.252780040105184,0,7.623850027720134,0.0365717648,15.386969566345215,0.5902399999999999,109.51097933451335,0.0063999999999999994,5.118470470110576,56.140480000000004,0,441.85699971516925,2331.6229866666663,954.8448689778645,90.82411721857831,342.8050003051758,278.8849307176866,0.32328207542498905,0.640188,0.021103199881811936,0.011162468266666666,0.0011237738945055753,0.0048157472,25.644699096679688,13.281200533333333,8.75088938077291,9.795306666666665,26.368701934814453,5.19728,0.28539105008045834,0.15352707733333334,16.45870018005371,0,0.7424870332082113,2.04741792,0,0,0.08233490337928136,0.22548173333333335,0.0073513896980633335,0.0171589792,362.92597961425776,4.862396952979086,56.08953183668568,49.367179398613516,8.601411336711307,10.759297796152342,-0.16590282527453667,18.792400360107422,0.47829333333333335,2838.5577363248535,0,6.353921295764545e-4,0.004266666666666667,0.5917900105317434,0.028586666666666666,0.003379530021144698,0.004320000000000001 +2171,0,0,1.193406631524985,-0,1.6211019246068512,5.770119945208232,0.005056,0.3519631524880727,0.12961266666666665,104.52300135294597,0.4870041847333333,12.889307816823324,0,7.214160005251567,0,7.609650015830994,0.03611461774,15.100070079167685,0.5828619999999999,108.43298021952312,0.006319999999999999,5.119150439898173,55.438724,0,441.8720016479492,2302.477699333333,954.0628662109374,90.52558680613525,342.6590092976888,277.92411950124335,0.3197890693942706,0.6321856499999999,0.02053849942361315,0.011022937413333333,0.001027733562902237,0.004755550359999999,25.429099241892498,13.115185526666666,8.661959091822306,9.672865333333332,26.192302068074543,5.132314,0.2823980500300725,0.15160798886666668,16.382099946339924,0,0.7343640327453613,2.021825196,0,0,0.08144180290400982,0.2226632116666667,0.0072764896710092826,0.016944491960000002,362.98097991943354,4.856036242709439,55.98820894955869,49.23648572147044,8.561761516538324,10.72814918591817,-0.16590282527453667,18.806100686391193,0.47231466666666666,2811.421638834493,0,5.967511193982015e-4,0.004213333333333334,0.5835549930731455,0.028229333333333332,0.0032602199935354292,0.004266000000000001 +2172,0,0,1.1305957561815647,-0,1.6147148937115183,5.76976998647054,0.004992,0.3386121516426404,0.127972,104.55399894714355,0.48083957479999995,12.750207742055258,0,7.175750017166138,0,7.5954599777857466,0.035657470680000004,14.818470557530722,0.5754839999999999,107.36498006184895,0.00624,5.119810461997986,54.736968000000005,0,441.885009765625,2273.3324119999997,953.2748718261718,90.22705639369218,342.5279998779297,276.9633082848001,0.31629207481940586,0.6241833,0.019999599705139797,0.01088340656,9.399232512805611e-4,0.00469535352,25.212899049123127,12.94917052,8.572868744532267,9.550423999999998,26.01510175069173,5.067348,0.27942804743846256,0.14968890040000002,16.305899779001873,0,0.7262310286362966,1.996232472,0,0,0.08054730296134949,0.21984469,0.007202289649285376,0.01673000472,363.03398386637366,4.849675532439792,55.8868860624317,49.10579204432735,8.52211169636534,10.697000575683996,-0.16590282527453667,18.819600264231365,0.46633600000000003,2784.285541344132,0,5.604611214948818e-4,0.0041600000000000005,0.5754350076119105,0.027872,0.0031451399942549565,0.0042120000000000005 +2173,0,0,1.0677848808381443,-0,1.6083278628161857,5.769409974416097,0.004927999999999999,0.3257691462834676,0.12633133333333335,104.58499972025554,0.47467496486666666,12.612507502237955,0,7.137560089429219,0,7.581309994061788,0.03520032362,14.542071024576822,0.5681059999999999,106.30698076883952,0.00616,5.120440403620402,54.035212,0,441.89701080322266,2244.1871246666665,952.4818674723306,89.92852598124912,342.4100036621094,276.0024970683569,0.3127930735548337,0.61618095,0.019482399492214125,0.010743875706666666,8.596369734732434e-4,0.0046351566799999995,24.996199289957683,12.783155513333334,8.483628829320272,9.427982666666665,25.837101936340332,5.002382,0.2764810472726822,0.14776981193333333,16.230000336964924,0,0.7180870225032171,1.970639748,0,0,0.07965120238562425,0.21702616833333335,0.007127339718863368,0.016515517480000002,363.08497873942054,4.843314822170145,55.785563175304716,48.97509836718427,8.482461876192357,10.665851965449821,-0.16590282527453667,18.832900524139404,0.46035733333333334,2757.1494438537716,0,5.263791050917158e-4,0.0041066666666666665,0.5674300044775009,0.027514666666666666,0.003034129971638322,0.004158000000000001 +2174,0,0,1.004974005494724,-0,1.601940831920853,5.769040028254191,0.004863999999999999,0.31341313819090527,0.12469066666666667,104.61500040690105,0.4685103549333333,12.476407527923584,0,7.099559982617696,0,7.567180037498474,0.034743176560000005,14.270671526590982,0.5607279999999999,105.25998115539551,0.0060799999999999995,5.121070345242818,53.333456000000005,0,441.90602620442706,2215.041837333333,951.6828715006509,89.62999556880605,342.30700429280597,275.04168585191366,0.3092900688449542,0.6081786,0.018985899941374857,0.010604344853333333,7.86226722993888e-4,0.00457495984,24.778899033864338,12.617140506666667,8.394218524297079,9.305541333333332,25.65840212504069,4.937416,0.27355604867140454,0.14585072346666667,16.154499848683674,0,0.7099300275246302,1.945047024,0,0,0.07875370296339194,0.21420764666666667,0.007051659670347969,0.01630103024,363.13498179117835,4.836954111900498,55.684240288177726,48.84440469004119,8.442812056019374,10.634703355215649,-0.16590282527453667,18.845800081888836,0.4543786666666667,2730.0133463634106,0,4.943710979811536e-4,0.004053333333333333,0.5595359951257706,0.027157333333333332,0.002927030009838442,0.004104000000000001 +2175,0,0,0.9421631301513038,-0,1.5955538010255204,5.768679936726888,0.0048,0.30152613421281177,0.12305,104.64500045776367,0.462345745,12.34180728594462,0,7.061770002047221,0,7.553079962730408,0.0342860295,14.004272301991781,0.5533499999999999,104.22398058573405,0.006,5.121670405069987,52.6317,0,441.91302998860675,2185.8965499999995,950.8788757324218,89.331465156363,342.218999226888,274.0808746354704,0.3057850698630015,0.60017625,0.018510999623686075,0.010464814,7.191014883574098e-4,0.004514763,24.5611990292867,12.4511255,8.304668188095093,9.1831,25.478902022043865,4.872450000000001,0.27065204580624896,0.143931635,16.079399903615315,0,0.7017610321442286,1.9194543,0,0,0.07785480283200741,0.211389125,0.0069767197128385305,0.016086543000000002,363.18298339843744,4.830593401630851,55.582917401050736,48.71371101289811,8.403162235846391,10.603554744981476,-0.16590282527453667,18.85860013961792,0.4484,2702.87724887305,0,4.643100983230397e-4,0.004,0.5517529944578806,0.026799999999999997,0.002823730018765976,0.004050000000000001 +2176,0,0,0.8793522548078836,-0,1.5891667701301875,5.768310070037842,0.004736,0.2900901287794113,0.12140933333333334,104.6740010579427,0.45618113506666663,12.208607276280722,0,7.024189988772075,0,7.5390100081761675,0.03382888244,13.742672681808472,0.5459719999999999,103.19798024495442,0.00592,5.122250437736511,51.929944,0,441.91803487141925,2156.751262666666,950.0698750813801,89.03293474391994,342.1440022786458,273.12006341902725,0.30227607240279514,0.5921738999999999,0.018056599733730156,0.010325283146666666,6.577222811756656e-4,0.0044545661599999994,24.342899322509766,12.285110493333333,8.214968045552572,9.060658666666665,25.298701922098797,4.8074840000000005,0.26776805023352307,0.14201254653333334,16.00469994544983,0,0.6935830265283585,1.893861576,0,0,0.07695460381607215,0.20857060333333335,0.006902459659613669,0.015872055760000003,363.2299880981445,4.824232691361203,55.481594513923746,48.58301733575503,8.363512415673407,10.572406134747302,-0.16590282527453667,18.871099948883057,0.44242133333333333,2675.7411513826896,0,4.3607708842804033e-4,0.003946666666666667,0.5440779974063238,0.026442666666666666,0.00272407002436618,0.003996 +2177,0,0,0.8165413794644634,-0,1.5827797392348548,5.767940004666646,0.004672,0.2790891230106354,0.11976866666666668,104.70300038655598,0.45001652513333334,12.076807101567587,0,6.986809968948364,0,7.524959961573283,0.03337173538,13.485973199208578,0.5385939999999999,102.18198076883952,0.00584,5.122820496559143,51.228188,0,441.92103576660156,2127.605975333333,949.2548675537108,88.73440433147687,342.0830078125,272.159252202584,0.298761064807574,0.58417155,0.01761899966125687,0.010185752293333333,6.015950687772905e-4,0.00439436932,24.124098936716717,12.119095486666666,8.125117858250936,8.938217333333332,25.117801825205486,4.7425180000000005,0.2649040495355924,0.14009345806666668,15.930300076802572,0,0.6853940188884735,1.868268852,0,0,0.07605510329206784,0.20575208166666667,0.006827419662537674,0.01565756852,363.2739868164062,4.817871981091557,55.380271626796755,48.452323658611945,8.323862595500424,10.541257524513128,-0.16590282527453667,18.883300304412842,0.4364426666666667,2648.6050538923287,0,4.0956308657769114e-4,0.0038933333333333333,0.5365110039710999,0.026085333333333332,0.0026279399559522667,0.003942 +2178,0,0,0.753730504121043,-0,1.5763927083395222,5.767560005187988,0.004607999999999999,0.2685051163037618,0.11812800000000001,104.73200098673503,0.4438519152,11.946507136027018,0,6.94963002204895,0,7.510950048764546,0.03291458832,13.233973503112793,0.5312159999999999,101.17598152160645,0.0057599999999999995,5.1233704884847,50.526432,0,441.9220453898112,2098.4606879999997,948.433868408203,88.43587391903381,342.03600311279297,271.1984409861408,0.2952430645624797,0.5761691999999999,0.01719969945649306,0.01004622144,5.502689018612728e-4,0.00433417248,23.90479914347331,11.95308048,8.035127600034079,8.815776,24.936101754506428,4.677552,0.2620590527852376,0.13817436959999999,15.856299877166748,0,0.6771960258483887,1.842676128,0,0,0.07515600385765235,0.20293356,0.006753049713249008,0.015443081280000003,363.3169835408528,4.811511270821909,55.27894873966977,48.32162998146887,8.284212775327441,10.510108914278955,-0.16590282527453667,18.895300070444744,0.430464,2621.468956401968,0,3.846600860318479e-4,0.00384,0.5290490041176478,0.025727999999999997,0.0025352099910378456,0.0038880000000000004 +2179,0,0,0.6909196287776227,-0,1.5700056774441893,5.7671899398167925,0.004543999999999999,0.2583231156071027,0.11648733333333335,104.76000086466472,0.43768730526666666,11.817607005437216,0,6.912649989128113,0,7.496949990590413,0.032457441260000004,12.986574093500773,0.5238379999999999,100.17998186747234,0.00568,5.123900492986043,49.824676000000004,0,441.9220479329427,2069.3154006666664,947.6068725585936,88.13734350659074,342.0030008951823,270.23762976969755,0.29172206421693164,0.56816685,0.016797699655095737,0.009906690586666666,5.033317429479212e-4,0.00427397564,23.68489933013916,11.787065473333334,7.944997469584147,8.693334666666665,24.753801981608074,4.612586,0.2592320442199707,0.13625528113333332,15.782600084940592,0,0.668987030784289,1.817083404,0,0,0.07425530192752679,0.20011503833333333,0.006679309726071854,0.015228594040000003,363.3589833577473,4.805150560552263,55.17762585254278,48.19093630432578,8.244562955154457,10.478960304044783,-0.16590282527453667,18.907100200653076,0.4244853333333334,2594.332858911607,0,3.6127307733598474e-4,0.0037866666666666665,0.5216920028130213,0.025370666666666666,0.0024457399655754366,0.0038340000000000006 +2180,0,0,0.6281087534342025,-0,1.5636186465488566,5.766810019810994,0.00448,0.24852711086471876,0.11484666666666668,104.78700065612793,0.4315226953333333,11.690107027689615,0,6.875869989395142,0,7.482990026473999,0.0320002942,12.743674437204996,0.5164599999999999,99.19378153483073,0.0056,5.1244105497996015,49.12292,0,441.91905975341797,2040.1701133333331,946.7748616536458,87.83881309414768,341.98400115966797,269.2768185532543,0.2881980662544568,0.5601645,0.016409399919211864,0.009767159733333333,4.604065931440952e-4,0.0042137788,23.464599291483562,11.621050466666667,7.854727307955424,8.570893333333332,24.57070191701253,4.54762,0.2564240445693334,0.13433619266666666,15.70929996172587,0,0.6607660204172134,1.79149068,0,0,0.07335300308962663,0.19729651666666667,0.0066047397364551825,0.015014106800000003,363.3989817301432,4.798789850282615,55.07630296541579,48.0602426271827,8.204913134981474,10.447811693810609,-0.16590282527453667,18.91860024134318,0.4185066666666667,2567.1967614212467,0,3.3930806481900316e-4,0.0037333333333333333,0.5144369949897131,0.025013333333333332,0.0023594400069365897,0.0037800000000000004 +2181,0,0,0.5652978780907822,-0,1.557231615653524,5.766430020332336,0.004416,0.23910410329699516,0.11320600000000001,104.81500053405762,0.4253580854,11.564007043838501,0,6.839280009269714,0,7.469050010045369,0.031543147140000005,12.505274931589762,0.5090819999999999,98.21738306681316,0.00552,5.124900499979655,48.421164,0,441.91405487060547,2011.0248259999998,945.9358622233071,87.54028268170462,341.9780044555664,268.3160073368111,0.28467006236314774,0.5521621499999999,0.016034199701001246,0.00962762888,4.2115145091277856e-4,0.00415358196,23.24389918645223,11.45503546,7.7643271287282305,8.448452,24.387001832326252,4.482654,0.2536320462822914,0.1324171042,15.636400063832602,0,0.6525360296169916,1.7658979559999999,0,0,0.07244920295973618,0.19447799500000001,0.006529399737094839,0.014799619560000003,363.43698374430335,4.792429140012968,54.9749800782888,47.929548950039624,8.165263314808492,10.416663083576434,-0.16590282527453667,18.929800033569336,0.412528,2540.060663930886,0,3.1867806683294475e-4,0.00368,0.5072840054829916,0.024655999999999997,0.0022761899745091796,0.003726 +2182,0,0,0.502487002747362,-0,1.550844584758191,5.766040007273356,0.004352,0.23003710185488066,0.11156533333333335,104.84200096130371,0.41919347546666663,11.439206918080648,0,6.802890022595723,0,7.455140034357707,0.031086000080000002,12.271275440851847,0.5017039999999999,97.25068219502766,0.0054399999999999995,5.125380516052246,47.719408,0,441.9070688883464,1981.8795386666666,945.0918629964192,87.24175226926155,341.9860026041667,267.35519612036785,0.2811390683054924,0.5441598,0.015673599593962233,0.009488098026666666,3.852493270339134e-4,0.00409338512,23.0225993792216,11.289020453333332,7.673796931902568,8.326010666666665,24.20260190963745,4.417688,0.25085704525311786,0.13049801573333333,15.56380001703898,0,0.6442970236142477,1.7403052319999999,0,0,0.0715439027796189,0.19165947333333333,0.006454729669106503,0.014585132320000003,363.4729792277018,4.786068429743321,54.87365719116181,47.79885527289654,8.125613494635507,10.385514473342262,-0.16590282527453667,18.94090000788371,0.4065493333333334,2512.9245664405253,0,2.9930406405280036e-4,0.003626666666666667,0.5002300043900808,0.024298666666666666,0.002195879972229401,0.0036720000000000004 +2183,0,0,0.43967612740394174,-0,1.5444575538628584,5.7656499942143755,0.004287999999999999,0.22131509830554327,0.10992466666666667,104.86800003051758,0.41302886553333334,11.315806786219278,0,6.766699989636739,0,7.441250006357829,0.030628853020000003,12.041575988133749,0.49432599999999993,96.29358228047688,0.00536,5.125840465227763,47.017652,0,441.8990732828776,1952.734251333333,944.2418619791665,86.9432218568185,342.00700124104816,266.3943849039246,0.277605061729749,0.5361574499999999,0.015326799592003226,0.009348567173333332,3.5241522224775207e-4,0.00403318828,22.800899346669514,11.123005446666667,7.583126783370972,8.203569333333332,24.017501672108967,4.352722,0.24809804310401282,0.12857892726666667,15.491599957148233,0,0.6360470205545425,1.7147125079999999,0,0,0.07063730247318745,0.18884095166666667,0.006380679745537539,0.014370645080000003,363.50798034667963,4.779707719473674,54.77233430403482,47.66816159575346,8.085963674462525,10.35436586310809,-0.16590282527453667,18.951600392659504,0.4005706666666667,2485.7884689501648,0,2.811070589814335e-4,0.0035733333333333333,0.4932740007837613,0.023941333333333332,0.002118400007020682,0.003618 +2184,0,0,0.37686525206052146,-0,1.5380705229675256,5.765269994735718,0.0042239999999999995,0.21292309338847795,0.108284,104.89399973551433,0.4068642556,11.19370667139689,0,6.7307000160217285,0,7.427389979362488,0.030171705960000003,11.816076358159384,0.48694799999999994,95.34588241577148,0.00528,5.126280506451924,46.315896,0,441.88807678222656,1923.5889639999998,943.3848571777343,86.64469144437543,342.04100036621094,265.4335736874814,0.274065059920152,0.5281551,0.014990499708801508,0.009209036319999999,3.2238411464883637e-4,0.00397299144,22.57859929402669,10.95699044,7.492336591084798,8.081128,23.831801732381184,4.287756,0.24535404269893965,0.1266598388,15.419699986775717,0,0.6277870237827301,1.6891197839999998,0,0,0.06972940141956012,0.18602243000000002,0.006305809753636519,0.014156157840000003,363.5409825642903,4.773347009204026,54.67101141690783,47.537467918610375,8.046313854289542,10.323217252873915,-0.16590282527453667,18.96210018793742,0.39459200000000005,2458.6523714598043,0,2.6401705205595743e-4,0.00352,0.4864159971475601,0.023584,0.002043660012229035,0.0035640000000000003 +2185,0,0,0.31405437671710124,-0,1.531683492072193,5.764870047569275,0.00416,0.2048500900467237,0.10664333333333334,104.92000007629395,0.40069964566666666,11.073006550470987,0,6.694900035858154,0,7.413559953371684,0.029714558900000004,11.594676971435547,0.47956999999999994,94.40758196512859,0.0052,5.126700520515442,45.61414,0,441.8750864664714,1894.4436766666665,942.5228525797525,86.34616103193237,342.08900451660156,264.4727624710382,0.2705230539043744,0.5201527499999999,0.01466669972675542,0.009069505466666666,2.9491701813337084e-4,0.0039127946,22.35599946975708,10.790975433333333,7.401416341463725,7.958686666666666,23.64540163675944,4.22279,0.2426260436574618,0.12474075033333333,15.348099946975708,0,0.6195190300544103,1.6635270599999998,0,0,0.0688202033440272,0.18320390833333333,0.006230159701469044,0.013941670600000003,363.5729777018229,4.766986298934379,54.56968852978085,47.406774241467296,8.006664034116557,10.292068642639741,-0.16590282527453667,18.972400188446045,0.38861333333333337,2431.5162739694433,0,2.479660506651271e-4,0.003466666666666667,0.479653000831604,0.023226666666666666,0.0019715599773917347,0.00351 +2186,0,0,0.251243501373681,-0,1.5252964611768602,5.764480034510295,0.004096,0.19708308825890222,0.10500266666666667,104.94500160217285,0.3945350357333333,10.953506549199423,0,6.659279942512512,0,7.399750034014384,0.029257411840000004,11.377477248509726,0.47219199999999995,93.47848320007324,0.0051199999999999996,5.127100547154744,44.912383999999996,0,441.861089070638,1865.2983893333333,941.653849283854,86.04763061948931,342.1510009765625,263.511951254595,0.26697705934445065,0.5121503999999999,0.014354399871081114,0.008929974613333334,2.6979493122780696e-4,0.00385259776,22.132899443308514,10.624960426666666,7.310376246770223,7.836245333333332,23.458301703135174,4.157824,0.23991104091207185,0.12282166186666667,15.276899973551432,0,0.6112430244684219,1.6379343359999998,0,0,0.06790980324149132,0.18038538666666667,0.006155179813504219,0.013727183360000002,363.60298156738276,4.760625588664732,54.46836564265386,47.27608056432422,7.967014213943575,10.260920032405568,-0.16590282527453667,18.98240041732788,0.3826346666666667,2404.380176479083,0,2.328910498666422e-4,0.0034133333333333338,0.4729839985569318,0.022869333333333332,0.0019019999987600993,0.003456 +2187,0,0,0.18843262603026079,-0,1.5189094302815274,5.764080047607422,0.004032,0.18961108351747194,0.10336200000000001,104.97000058492024,0.38837042580000003,10.835406382878622,0,6.623859882354736,0,7.385970075925191,0.028800264780000005,11.164177656173706,0.46481399999999995,92.55858357747395,0.005039999999999999,5.127490480740865,44.210628,0,441.84409586588544,1836.153102,940.7788645426431,85.74910020704624,342.2250035603841,262.55114003815174,0.26342806220054626,0.50414805,0.014050799732406935,0.00879044376,2.468158563715406e-4,0.0037924009200000003,21.90929937362671,10.45894542,7.219216068585713,7.713804,23.27070140838623,4.092858,0.2372110423942407,0.1209025734,15.206099907557169,0,0.6029590219259262,1.6123416119999998,0,0,0.0669982023537159,0.17756686500000002,0.006080829810040693,0.013512696120000002,363.63198089599604,4.754264878395085,54.36704275552687,47.14538688718113,7.927364393770591,10.229771422171396,-0.16590282527453667,18.99220037460327,0.37665600000000005,2377.2440789887223,0,2.187330489202092e-4,0.0033600000000000006,0.46640900274117786,0.022512,0.0018349000116965424,0.003402 +2188,0,0,0.12562175068684045,-0,1.5125223993861947,5.763680060704549,0.003967999999999999,0.1824220803876718,0.10172133333333333,104.99400075276692,0.3822058158666667,10.718506415685018,0,6.588620026906331,0,7.372209986050923,0.028343117720000005,10.954878171284994,0.45743599999999995,91.64768282572429,0.004959999999999999,5.1278605461120605,43.508872,0,441.8260955810547,1807.0078146666665,939.8978576660155,85.45056979460318,342.31300099690753,261.5903288217085,0.2598760575056076,0.4961456999999999,0.013757599595313271,0.008650912906666667,2.257977806342145e-4,0.00373220408,21.685399532318115,10.292930413333334,7.1279358466466265,7.591362666666666,23.082401752471924,4.027892,0.23452403768897057,0.11898348493333333,15.135599931081137,0,0.5946660290161768,1.5867488879999998,0,0,0.066085501263539,0.17474834333333333,0.006005659777050217,0.013298208880000002,363.65898132324213,4.747904168125437,54.26571986839988,47.014693210038054,7.8877145735976075,10.198622811937222,-0.16590282527453667,19.001700401306152,0.37067733333333336,2350.107981498362,0,2.054360435674122e-4,0.003306666666666667,0.45992400248845416,0.022154666666666666,0.0017701600154396147,0.003348 +2189,0,0,0.06281087534342022,-0,1.5061353684908618,5.763269980748494,0.0039039999999999995,0.17550507436196008,0.10008066666666666,105.01800028483073,0.37604120593333334,10.602906386057535,0,6.553569992383321,0,7.358479976654053,0.027885970660000006,10.749378442764282,0.45005799999999996,90.74578348795573,0.00488,5.1282105048497515,42.807116,0,441.8061014811198,1777.8625273333332,939.0108591715493,85.15203938216011,342.4129994710286,260.6295176052653,0.2563210551937421,0.4881433499999999,0.013474199610451857,0.008511382053333334,2.0657171383694126e-4,0.00367200724,21.460899353027344,10.126915406666667,7.036545713742574,7.468921333333332,22.893401463826496,3.9629259999999995,0.23185003797213236,0.11706439646666666,15.065399964650473,0,0.5863620191812515,1.5611561639999998,0,0,0.06517170245448749,0.17192982166666668,0.005929709761403501,0.013083721640000002,363.68398284912104,4.741543457855791,54.16439698127289,46.88399953289497,7.848064753424625,10.167474201703047,-0.16590282527453667,19.011000156402588,0.3646986666666667,2322.971884008001,0,1.9294703937096833e-4,0.0032533333333333338,0.4535300036271413,0.021797333333333335,0.0017077099861732374,0.003294 +2190,0,0,-0,-0,1.4997483375955292,5.762869914372762,0.0038399999999999997,0.16885107631484667,0.09844,105.04200108846028,0.369876596,10.488506237665812,0,6.518710017204285,0,7.344779968261719,0.027428823600000006,10.547678788503012,0.44267999999999996,89.85278383890788,0.0048,5.12855060895284,42.10536,0,441.7841059366862,1748.71724,938.1178588867186,84.85350896971705,342.5270029703776,259.66870638882205,0.2527630552649498,0.48014099999999993,0.013197799678891897,0.0083718512,1.8898565273654336e-4,0.0036118104,21.236099402109783,9.9609004,6.945045590400696,7.34648,22.703901449839275,3.8979599999999994,0.2291890357931455,0.115145308,14.995600064595541,0,0.57805202404658,1.5355634399999998,0,0,0.06425890140235424,0.16911130000000002,0.005854439766456683,0.012869234400000002,363.70797983805335,4.735182747586143,54.0630740941459,46.75330585575189,7.808414933251641,10.136325591468875,-0.16590282527453667,19.020099957784016,0.35872000000000004,2295.8357865176404,0,1.81217038819644e-4,0.0032000000000000006,0.4472250019510587,0.02144,0.0016474600027625759,0.00324 +2191,0,0,-0,-0,1.4933613067001965,5.762459993362427,0.003776,0.162449070562919,0.09679933333333333,105.06500053405762,0.36371198606666666,10.375406265258789,0,6.48403000831604,0,7.331099947293599,0.026971676540000007,10.349679311116537,0.43530199999999997,88.96858406066895,0.004719999999999999,5.128870566685994,41.403604,0,441.76011912027997,1719.5719526666667,937.2178700764973,84.554978557274,342.6530024210612,258.7078951723788,0.24919905389348665,0.47213864999999994,0.012927799796064695,0.008232320346666667,1.7289959820724712e-4,0.0035516135600000003,21.010899543762207,9.794885393333333,6.853435397148132,7.224038666666666,22.51380141576131,3.8329939999999993,0.2265390381217003,0.11322621953333334,14.926099936167398,0,0.5697340170542399,1.5099707159999998,0,0,0.06334680256744225,0.16629277833333336,0.0057797997336213785,0.012654747160000002,363.73098246256507,4.728822037316496,53.96175120701891,46.62261217860881,7.768765113078658,10.1051769812347,-0.16590282527453667,19.02880032857259,0.35274133333333335,2268.69968902728,0,1.7020003603344472e-4,0.0031466666666666674,0.44100700318813324,0.021082666666666666,0.0015893400025864441,0.003186 +2192,0,0,-0,-0,1.4869742758048636,5.762039979298909,0.0037119999999999996,0.15629006922245026,0.09515866666666667,105.08700116475423,0.3575473761333333,10.263506094614664,0,6.449540019035339,0,7.3174500068028765,0.026514529480000007,10.155279715855917,0.42792399999999997,88.09308369954427,0.00464,5.1291706164677935,40.701848,0,441.73412322998047,1690.4266653333334,936.3118642171223,84.25644814483093,342.7789993286133,257.7470839559356,0.2456330545246601,0.46413629999999995,0.012666299706324935,0.008092789493333334,1.5818354828904072e-4,0.0034914167200000004,20.785199642181396,9.628870386666666,6.761705279350281,7.101597333333332,22.323101202646892,3.7680279999999993,0.2239020379881064,0.11130713106666668,14.856900056203207,0,0.5614070296287537,1.4843779919999998,0,0,0.062433301781614624,0.16347425666666668,0.005704329814761877,0.012440259920000002,363.75198109944654,4.722461327046849,53.860428319891916,46.491918501465726,7.729115292905675,10.074028371000528,-0.16590282527453667,19.037400245666504,0.3467626666666667,2241.563591536919,0,1.5985303131553033e-4,0.003093333333333334,0.4348760023713112,0.02072533333333333,0.0015332699792149167,0.003132 +2193,0,0,-0,-0,1.480587244909531,5.761630058288574,0.0036479999999999998,0.15036506578326225,0.093518,105.10999997456868,0.35138276620000003,10.152806043624878,0,6.41522999604543,0,7.303820013999939,0.026057382420000004,9.964590152104696,0.420546,87.22618293762207,0.00456,5.129450559616089,40.000091999999995,0,441.7061284383138,1661.281378,935.3998565673827,83.95791773238787,342.88999938964844,256.78627273949235,0.2420650546749433,0.4561339499999999,0.012412799677501122,0.00795325864,1.4472250040853396e-4,0.00343121988,20.559099356333416,9.46285538,6.6698851982752485,6.979156,22.13180160522461,3.7030619999999996,0.22127503777543703,0.1093880426,14.788100004196167,0,0.5530720253785452,1.4587852679999997,0,0,0.06151850211123625,0.16065573500000002,0.0056280997426559525,0.012225772680000002,363.77097829182935,4.716100616777202,53.759105432764926,46.36122482432265,7.689465472732692,10.042879760766354,-0.16590282527453667,19.045700073242188,0.34078400000000003,2214.4274940465584,0,1.5013503192070252e-4,0.0030400000000000006,0.4288300002614657,0.020368,0.0014791799864421289,0.003078 +2194,0,0,-0,-0,1.474200214014198,5.761209964752197,0.0035839999999999995,0.14466406404972076,0.09187733333333334,105.1320006052653,0.3452181562666667,10.04330595334371,0,6.381109992663066,0,7.290219942728679,0.025600235360000004,9.777390480041504,0.413168,86.36778322855632,0.00448,5.1297305425008135,39.298336,0,441.6781285603841,1632.1360906666666,934.4818522135415,83.65938731994481,342.98999786376953,255.82546152304914,0.2384930526216825,0.4481315999999999,0.012164499921103319,0.007813727786666667,1.324084551015403e-4,0.00337102304,20.33269961675008,9.296840373333334,6.5779649416605634,6.856714666666666,21.93990151087443,3.6380959999999996,0.21866003423929214,0.10746895413333334,14.719500064849854,0,0.5447310308615366,1.4331925439999997,0,0,0.06060250196605921,0.15783721333333334,0.0055525398735577864,0.012011285440000002,363.78898111979163,4.709739906507555,53.657782545637936,46.23053114717957,7.649815652559709,10.011731150532182,-0.16590282527453667,19.053700129191082,0.3348053333333334,2187.2913965561975,0,1.4100802945904434e-4,0.002986666666666667,0.4228680009643237,0.020010666666666666,0.0014269900081368785,0.0030239999999999998 +2195,0,0,-0,-0,1.4678131831188654,5.760790069897969,0.0035199999999999997,0.1391790620982647,0.09023666666666667,105.15300051371257,0.33905354633333334,9.9349258740743,0,6.34716002146403,0,7.276640017827352,0.025143088300000005,9.593630711237589,0.40579,85.517884572347,0.004399999999999999,5.130010565121968,38.59658,0,441.64913177490234,1602.9908033333334,933.5578613281249,83.36085690750176,343.0800018310547,254.8646503066059,0.2349200521906217,0.4401292499999999,0.011923399598648151,0.007674196933333334,1.2114341977091196e-4,0.0033108262000000003,20.105799198150635,9.130825366666667,6.485944906870524,6.7342733333333324,21.747401237487793,3.5731299999999995,0.21605503434936205,0.10554986566666667,14.651400009791056,0,0.5363840212424597,1.4075998199999997,0,0,0.0596855025117596,0.15501869166666668,0.005477619784263273,0.011796798200000002,363.80598449707026,4.703379196237908,53.556459658510946,46.09983747003649,7.610165832386725,9.980582540298007,-0.16590282527453667,19.06160004933675,0.3288266666666667,2160.155299065837,0,1.324350268987473e-4,0.002933333333333334,0.4169890011350314,0.01965333333333333,0.0013766500051133335,0.00297 +2196,0,0,-0,-0,1.4614261522235328,5.760369976361592,0.003456,0.13390205800533295,0.08859600000000001,105.1740010579427,0.3328889364,9.827755769093832,0,6.313400030136108,0,7.263090014457703,0.024685941240000005,9.413271188735962,0.398412,84.67628479003906,0.00432,5.130290548006694,37.894824,0,441.6211242675781,1573.845516,932.6298624674478,83.06232649505868,343.16000111897785,253.90383909016268,0.2313440479338169,0.4321268999999999,0.011689199910809597,0.00753466608,1.1083838277651618e-4,0.0032506293600000004,19.878599643707275,8.96481036,6.393834789594014,6.611831999999999,21.554401238759358,3.5081639999999994,0.21346003313859305,0.10363077720000001,14.583499908447266,0,0.5280310213565826,1.3820070959999997,0,0,0.05876740192373594,0.15220017000000002,0.00540188979357481,0.011582310960000002,363.82097625732416,4.69701848596826,53.45513677138396,45.969143792893405,7.5705160122137425,9.949433930063833,-0.16590282527453667,19.069100379943848,0.322848,2133.0192015754765,0,1.2438402457822426e-4,0.0028800000000000006,0.41119199991226196,0.019295999999999997,0.0013280800194479525,0.002916 +2197,0,0,-0,-0,1.4550391213282,5.759939988454183,0.0033919999999999996,0.12882505729794502,0.08695533333333334,105.19499969482422,0.3267243264666667,9.721745808919271,0,6.279810031255086,0,7.249560038248698,0.024228794180000006,9.236261367797852,0.391034,83.84298451741536,0.00424,5.1305705308914185,37.193068,0,441.59213002522785,1544.7002286666668,931.6968485514321,82.76379608261563,343.23199971516925,252.94302787371944,0.22776704902450243,0.42412454999999993,0.011458899670590958,0.007395135226666667,6.862144982733298e-5,0.0031904325200000005,19.65109936396281,8.798795353333333,6.301644643147786,6.489390666666665,21.360901355743408,3.4431979999999998,0.21087503557403883,0.10171168873333335,14.515999952952066,0,0.5196710179249445,1.3564143719999997,0,0,0.057848502260943256,0.14938164833333334,0.005325399882470568,0.011367823720000001,363.83398437499994,4.690657775698614,53.35381388425697,45.83845011575033,7.53086619204076,9.91828531982966,-0.16590282527453667,19.07640012105306,0.3168693333333334,2105.8831040851155,0,1.1682202481703523e-4,0.002826666666666667,0.40547500054041546,0.018938666666666666,0.0012812199905359496,0.002862 +2198,0,0,-0,-0,1.4486520904328672,5.7595200935999555,0.003328,0.12394005494813125,0.08531466666666668,105.21499951680501,0.32055971653333337,9.616875807444254,0,6.2463999191919966,0,7.23605998357137,0.023771647120000003,9.062521934509277,0.383656,83.017884572347,0.00416,5.130850553512573,36.491312,0,441.5641225179036,1515.5549413333333,930.7588602701821,82.46526567017257,343.2970021565755,251.98221665727624,0.22418504705031714,0.4161221999999999,0.011232599693660935,0.0072556043733333336,0,0.00313023568,19.42319981257121,8.632780346666667,6.20937458674113,6.3669493333333325,21.16680113474528,3.3782319999999997,0.2083000329633554,0.09979260026666667,14.448700269063314,0,0.5113070160150528,1.3308216479999997,0,0,0.05692870200922092,0.14656312666666668,0.005249609782670935,0.011153336480000001,363.8459803263346,4.684297065428966,53.25249099712998,45.70775643860725,7.491216371867776,9.887136709595486,-0.16590282527453667,19.083500067392986,0.3108906666666667,2078.747006594755,0,1.097200232228109e-4,0.002773333333333334,0.3998379980524381,0.01858133333333333,0.0012360199956068147,0.002808 +2199,0,0,-0,-0,1.4422650595375344,5.759079972902934,0.0032639999999999995,0.11924105261762936,0.08367400000000001,105.23499997456868,0.31439510660000003,9.51313559214274,0,6.213170011838277,0,7.2225799560546875,0.023314500060000003,8.891981999079386,0.376278,82.2008851369222,0.00408,5.13114058971405,35.789556000000005,0,441.53613026936847,1486.409654,929.8178609212239,82.1667352577295,343.3550033569336,251.021405440833,0.2206010470787684,0.4081198499999999,0.01101209968328476,0.00711607352,0,0.0030700388400000003,19.194899559020996,8.46676534,6.117024501164754,6.244507999999999,20.972301483154297,3.3132659999999996,0.20573403437932333,0.09787351180000001,14.381799936294556,0,0.5029400164882342,1.3052289239999997,0,0,0.05600820202380419,0.143744605,0.005174459773115814,0.010938849240000001,363.85698699951166,4.67793635515932,53.15116811000299,45.57706276146416,7.451566551694793,9.855988099361314,-0.16590282527453667,19.0903000831604,0.30491200000000007,2051.610909104394,0,1.0305002191065189e-4,0.00272,0.39427900065978366,0.018223999999999997,0.001192410010844469,0.002754 +2200,0,0,-0,-0,1.4358780286422017,5.758650024731954,0.0031999999999999997,0.11472005086640517,0.08203333333333335,105.25399907430013,0.3082304966666667,9.410515705744425,0,6.18011999130249,0,7.209129969278972,0.022857353000000004,8.724612633387247,0.3689,81.39188575744629,0.004,5.131430506706238,35.0878,0,441.5091298421224,1457.2643666666668,928.8728586832681,81.86820484528644,343.40699768066406,250.06059422438977,0.2170170471072197,0.4001174999999999,0.010797299755116304,0.006976542666666667,0,0.0030098420000000004,18.96639919281006,8.300750333333333,6.024604360262553,6.122066666666665,20.777201493581135,3.2482999999999995,0.20317703237136206,0.09595442333333334,14.315299987792969,0,0.4945700193444888,1.2796361999999997,0,0,0.055087001683811344,0.14092608333333334,0.005098509796274205,0.010724362000000001,363.865982055664,4.671575644889672,53.049845222876,45.446369084321084,7.41191673152181,9.82483948912714,-0.16590282527453667,19.09689982732137,0.2989333333333334,2024.4748116140336,0,0,0.002666666666666667,0.3887970025340716,0.017866666666666663,0.0011503400067643572,0.0027 +2201,0,0,-0,-0,1.429490997746869,5.758209943771362,0.003136,0.11037004925310612,0.08039266666666668,105.27300071716309,0.30206588673333334,9.309005578358969,0,6.147239963213603,0,7.1957000096638994,0.022400205940000004,8.560342709223429,0.361522,80.59088452657063,0.00392,5.131720503171285,34.386044,0,441.4811248779297,1428.1190793333335,927.923853556315,81.56967443284339,343.45300038655597,249.09978300794654,0.21343004579345384,0.3921151499999999,0.010585399887834987,0.0068370118133333335,0,0.0029496451600000005,18.737499237060547,8.134735326666666,5.932124376296997,5.999625333333332,20.5816011428833,3.1833339999999994,0.20062902942299843,0.09403533486666668,14.248999834060669,0,0.48619402199983597,1.2540434759999997,0,0,0.05416520250340303,0.13810756166666668,0.0050218098719293875,0.010509874760000001,363.87398274739576,4.665214934620025,52.94852233574901,45.315675407178006,7.372266911348826,9.793690878892967,-0.16590282527453667,19.10319995880127,0.2929546666666667,1997.3387141236728,0,0,0.002613333333333334,0.38339100033044815,0.017509333333333328,0.0011097599926870316,0.0026460000000000003 +2202,0,0,-0,-0,1.4231039668515362,5.75777006149292,0.0030719999999999996,0.10618604719638824,0.07875200000000002,105.29100036621094,0.2959012768,9.208585500717163,0,6.114540060361226,0,7.182300051053365,0.021943058880000005,8.399123112360636,0.354144,79.79778671264648,0.00384,5.1320104996363325,33.684288,0,441.4541193644206,1398.973792,926.9718577067056,81.27114402040031,343.49499766031903,248.1389717915033,0.20984304323792458,0.3841127999999999,0.01037869967209796,0.00669748096,0,0.00288944832,18.508299509684246,7.96872032,5.839584191640218,5.877183999999999,20.38550090789795,3.1183679999999994,0.19809003174304962,0.0921162464,14.183100064595541,0,0.477813017865022,1.2284507519999996,0,0,0.05324280199905237,0.13528904,0.00494581984821707,0.010295387520000001,363.8799794514973,4.658854224350378,52.84719944862202,45.18498173003492,7.332617091175844,9.762542268658793,-0.16590282527453667,19.10929997762044,0.28697600000000006,1970.2026166333123,0,0,0.00256,0.37806099901596707,0.017151999999999997,0.0010705999933027972,0.002592 +2203,0,0,-0,-0,1.4167169359562035,5.757330020268758,0.003008,0.10215904501577218,0.07711133333333334,105.30999946594238,0.28973666686666666,9.109245459238688,0,6.08200999101003,0,7.168920040130615,0.021485911820000002,8.240893522898356,0.34676599999999996,79.01248550415039,0.00376,5.132310509681702,32.982532,0,441.4281260172526,1369.8285046666667,926.0178578694661,80.97261360795726,343.5320053100586,247.1781605750601,0.20625504354635874,0.3761104499999999,0.010176799803351363,0.006557950106666667,0,0.0028292514800000003,18.278799215952557,7.802705313333333,5.746974070866902,5.754742666666665,20.18890142440796,3.0534019999999997,0.19555903101960817,0.09019715793333334,14.11740001042684,0,0.4694310153524081,1.2028580279999999,0,0,0.05231990168491999,0.13247051833333334,0.00487047981005162,0.010080900280000003,363.8849843343098,4.652493514080731,52.74587656149503,45.05428805289184,7.29296727100286,9.731393658424619,-0.16590282527453667,19.11520004272461,0.2809973333333334,1943.0665191429516,0,0,0.002506666666666667,0.3728039984901746,0.016794666666666663,0.0010328299831598997,0.0025380000000000003 +2204,0,0,-0,-0,1.4103299050608706,5.756890018781026,0.0029439999999999996,0.09828594389061134,0.07547066666666667,105.32700157165527,0.2835720569333333,9.010985374450684,0,6.0496500333150225,0,7.155569990475972,0.021028764760000002,8.085583766301474,0.33938799999999997,78.2348861694336,0.00368,5.132610599199931,32.280776,0,441.40211995442706,1340.6832173333332,925.059855143229,80.67408319551419,343.56500244140625,246.21734935861687,0.20266504461566606,0.3681080999999999,0.009977049737547835,0.006418419253333333,0,0.00276905464,18.048999468485516,7.636690306666667,5.654314001401265,5.6323013333333325,19.991901238759358,2.9884359999999996,0.19303503135840097,0.08827806946666666,14.05209994316101,0,0.4610460177063942,1.1772653039999998,0,0,0.051398501731455326,0.12965199666666666,0.004794349893927574,0.009866413040000003,363.8889846801757,4.646132803811083,52.64455367436804,44.92359437574876,7.2533174508298766,9.700245048190446,-0.16590282527453667,19.120700359344482,0.27501866666666674,1915.9304216525911,0,0,0.0024533333333333334,0.36762100209792453,0.01643733333333333,9.963890091360856e-4,0.002484 +2205,0,0,-0,-0,1.403942874165538,5.756440003712972,0.0028799999999999997,0.09455934104820092,0.07383,105.34500058492024,0.277407447,8.913785457611084,0,6.017469922701518,0,7.142240007718404,0.020571617700000003,7.933174053827922,0.33200999999999997,77.46488571166992,0.0036,5.132910529772441,31.57902,0,441.37611897786456,1311.53793,924.0988515218098,80.37555278307113,343.593999226888,245.25653814217364,0.19907204061746597,0.3601057499999999,0.009781749763836464,0.0062788884,0,0.0027088578,17.818899790445965,7.4706753,5.561593969662984,5.509859999999999,19.794401168823242,2.9234699999999996,0.19052003075679144,0.086358981,13.98710004488627,0,0.4526570215821266,1.1516725799999998,0,0,0.050478401593863964,0.126833475,0.00471747984799246,0.009651925800000002,363.8909835815429,4.639772093541437,52.54323078724106,44.79290069860568,7.213667630656893,9.669096437956274,-0.16590282527453667,19.126100063323975,0.26904000000000006,1888.7943241622304,0,0,0.0024000000000000002,0.36251000066598255,0.016079999999999997,9.612349967937917e-4,0.0024300000000000003 +2206,0,0,-0,-0,1.3975558432702053,5.7559899886449175,0.002816,0.09097404032945633,0.07218933333333334,105.36100069681804,0.27124283706666663,8.817625204722086,0,5.985460003217061,0,7.128940065701802,0.020114470640000003,7.7836043039957685,0.324632,76.70248603820801,0.0035199999999999997,5.1332205931345625,30.877264,0,441.3501230875651,1282.3926426666667,923.1358642578124,80.07702237062807,343.61899820963544,244.2957269257304,0.1954780394832293,0.3521033999999999,0.009590619709342718,0.006139357546666667,0,0.0026486609600000002,17.588599681854248,7.304660293333333,5.4688239097595215,5.387418666666665,19.59640121459961,2.8585039999999995,0.1880120299756527,0.08443989253333334,13.922399918238321,0,0.444264014561971,1.1260798559999998,0,0,0.049557402109106384,0.12401495333333333,0.004641319741494954,0.009437438560000002,363.891980489095,4.633411383271789,52.44190790011407,44.6622070214626,7.17401781048391,9.6379478277221,-0.16590282527453667,19.131199995676678,0.26306133333333337,1861.6582266718697,0,0,0.002346666666666667,0.3574690024058024,0.015722666666666663,9.27320991953214e-4,0.0023760000000000005 +2207,0,0,-0,-0,1.3911688123748724,5.755539973576863,0.0027519999999999997,0.08752463882168134,0.07054866666666668,105.3780008951823,0.2650782271333333,8.722505251566568,0,5.953619996706645,0,7.115659952163696,0.019657323580000004,7.636814713478088,0.317254,75.94768651326497,0.00344,5.133520523707072,30.175508,0,441.3241195678711,1253.2473553333332,922.1708526611327,79.778491958185,343.6409962972005,243.33491570928717,0.19188303872942924,0.3441010499999999,0.00940105978709956,0.005999826693333333,0,0.00258846412,17.357999801635742,7.138645286666667,5.375993808110555,5.2649773333333325,19.398001194000244,2.793538,0.1855110265314579,0.08252080406666666,13.858000040054321,0,0.4358690132697423,1.100487132,0,0,0.04863570133845011,0.12119643166666666,0.004565819865092635,0.009222951320000002,363.8909835815429,4.627050673002142,52.34058501298708,44.53151334431952,7.134367990310927,9.606799217487925,-0.16590282527453667,19.13610013326009,0.25708266666666674,1834.5221291815092,0,0,0.0022933333333333334,0.3524990032116572,0.015365333333333332,8.94603993704853e-4,0.0023220000000000003 +2208,0,0,-0,-0,1.3847817814795398,5.755080024401347,0.002688,0.08420603846510251,0.068908,105.39399909973145,0.25891361719999995,8.62841510772705,0,5.921939969062805,0,7.102409998575847,0.01920017652,7.492764949798584,0.30987599999999993,75.20018513997395,0.0033599999999999997,5.1338305075963335,29.473751999999998,0,441.2991180419922,1224.102068,921.2018483479817,79.47996154574194,343.6599934895833,242.37410449284397,0.1882870395978292,0.33609869999999986,0.009212989748145143,0.00586029584,0,0.00252826728,17.12709967295329,6.97263028,5.283123811086019,5.142535999999999,19.199100971221924,2.7285719999999998,0.18301802749435106,0.0806017156,13.793900092442831,0,0.42747201522191364,1.074894408,0,0,0.04771320180346569,0.11837791,0.004489539850813647,0.009008464080000004,363.8899841308593,4.620689962732494,52.23926212586009,44.40081966717644,7.094718170137943,9.575650607253753,-0.16590282527453667,19.140700181325276,0.25110400000000005,1807.3860316911484,0,0,0.0022400000000000002,0.34759800136089325,0.015007999999999997,8.630410011392087e-4,0.0022680000000000005 +2209,0,0,-0,-0,1.378394750584207,5.754619995752971,0.0026239999999999996,0.08101333553592364,0.06726733333333333,105.40899976094563,0.2527490072666666,8.535335063934326,0,5.890439947446187,0,7.089179992675781,0.01874302946,7.351385156313579,0.30249799999999993,74.46008682250977,0.00328,5.134150544802348,28.771995999999998,0,441.2741165161133,1194.9567806666664,920.2308502197264,79.18143113329887,343.67699940999347,241.41329327640074,0.1846910367409388,0.32809634999999987,0.009028659823040167,0.0057207649866666665,0,0.0024680704399999997,16.895999590555828,6.806615273333334,5.190213720003764,5.020094666666665,18.999900817871094,2.6636059999999997,0.18053102741638818,0.07868262713333332,13.730200052261353,0,0.41907401382923126,1.049301684,0,0,0.046790001913905144,0.11555938833333333,0.004412519823138912,0.008793976840000004,363.88698832194007,4.614329252462848,52.1379392387331,44.27012599003336,7.0550683499649605,9.54450199701958,-0.16590282527453667,19.145000139872234,0.2451253333333334,1780.249934200788,0,0,0.0021866666666666666,0.3427650009592374,0.014650666666666664,8.325910069591677e-4,0.0022140000000000003 +2210,0,0,-0,-0,1.3720077196888742,5.754159927368164,0.0025599999999999998,0.07794163376092911,0.06562666666666667,105.4250005086263,0.24658439733333326,8.443265040715536,0,5.8591000239054365,0,7.075980067253113,0.0182858824,7.212645530700684,0.29511999999999994,73.72728665669759,0.0031999999999999997,5.13446048895518,28.07024,0,441.24911244710285,1165.8114933333331,919.257853190104,78.88290072085582,343.69000244140625,240.4524820599575,0.18109403798977533,0.3200939999999999,0.008847859920933843,0.005581234133333333,0,0.0024078736,16.664599577585857,6.640600266666667,5.097253680229187,4.8976533333333325,18.800200939178467,2.5986399999999996,0.1780510259171327,0.07676353866666666,13.666699886322021,0,0.41067201892534894,1.02370896,0,0,0.04586630159368118,0.11274086666666666,0.004336219824229677,0.008579489600000004,363.88198598225904,4.6079685421932,52.036616351606106,44.13943231289028,7.015418529791977,9.513353386785406,-0.16590282527453667,19.149199962615967,0.23914666666666673,1753.1138367104272,0,0,0.0021333333333333334,0.33799999952316284,0.014293333333333332,8.032159967115149e-4,0.0021600000000000005 +2211,0,0,-0,-0,1.3656206887935416,5.753699938456218,0.002496,0.0749863317857186,0.063986,105.43899981180827,0.24041978739999992,8.352185010910034,0,5.827929933865865,0,7.062800010045369,0.017828735340000002,7.076475739479065,0.28774199999999994,73.0017859141032,0.0031199999999999995,5.134780565897624,27.368484,0,441.22511037190753,1136.6662059999999,918.2818603515624,78.58437030841276,343.7020009358724,239.49167084351427,0.1774960346519947,0.3120916499999999,0.008668039847786227,0.00544170328,0,0.00234767676,16.43299945195516,6.47458526,5.004243532816569,4.775211999999999,18.600101153055828,2.5336739999999995,0.17557702461878458,0.0748444502,13.603499809900919,0,0.4022660180926323,0.998116236,0,0,0.04494190122932196,0.10992234499999999,0.004260579822584987,0.008365002360000004,363.87598164876295,4.601607831923553,51.935293464479116,44.0087386357472,6.975768709618993,9.482204776551232,-0.16590282527453667,19.153000195821125,0.23316800000000004,1725.9777392200665,0,0,0.0020800000000000003,0.33329999695221585,0.013935999999999999,7.748770003672689e-4,0.0021060000000000002 +2212,0,0,-0,-0,1.3592336578982087,5.753230015436809,0.0024319999999999997,0.07214323120812575,0.06234533333333333,105.45400110880534,0.2342551774666666,8.26208488146464,0,5.796930034955342,0,7.049639940261841,0.017371588280000003,6.942855954170227,0.28036399999999995,72.2832857767741,0.0030399999999999997,5.135100523630778,26.666728,0,441.2011133829753,1107.5209186666666,917.3038533528645,78.28583989596969,343.7099965413411,238.53085962707104,0.17389503493905067,0.3040892999999999,0.00849147979170084,0.005302172426666666,0,0.00228747992,16.201199531555176,6.308570253333333,4.911203543345134,4.652770666666666,18.399501005808514,2.4687079999999995,0.17310902600487074,0.07292536173333333,13.54069995880127,0,0.39385801553726196,0.972523512,0,0,0.044017101327578224,0.10710382333333332,0.004184159838284056,0.008150515120000004,363.8689804077148,4.595247121653906,51.833970577352126,43.878044958604114,6.936118889446011,9.45105616631706,-0.16590282527453667,19.156699975331623,0.22718933333333338,1698.8416417297058,0,0,0.0020266666666666666,0.32866600155830383,0.013578666666666666,7.475390011677518e-4,0.0020520000000000004 +2213,0,0,-0,-0,1.352846627002876,5.7527700662612915,0.002368,0.0694078312565883,0.060704666666666664,105.46799850463867,0.22809056753333326,8.172964890797934,0,5.766090035438538,0,7.036509990692139,0.016914441220000003,6.8117363055547075,0.27298599999999995,71.57198715209961,0.0029599999999999995,5.135420560836792,25.964971999999996,0,441.1761220296224,1078.375631333333,916.3218638102212,77.98730948352663,343.7170003255208,237.57004841062783,0.17029303312301636,0.2960869499999999,0.008318009786307812,0.005162641573333334,0,0.0022272830799999997,15.969099521636963,6.142555246666666,4.818113446235657,4.5303293333333325,18.19860092798869,2.403742,0.1706480234861374,0.07100627326666666,13.478100061416626,0,0.3854500154654185,0.946930788,0,0,0.04309170165409645,0.10428530166666666,0.004107019864022732,0.007936027880000003,363.8609822591145,4.588886411384259,51.732647690225136,43.747351281461036,6.896469069273027,9.419907556082887,-0.16590282527453667,19.160100142161053,0.2212106666666667,1671.7055442393453,0,0,0.0019733333333333334,0.32409700006246567,0.013221333333333331,7.211650081444532e-4,0.001998 +2214,0,0,-0,-0,1.3464595961075434,5.75228997071584,0.0023039999999999996,0.06677622968951862,0.05906399999999999,105.48100026448567,0.22192595759999995,8.084794998168945,0,5.73541001478831,0,7.023409962654114,0.016457294160000004,6.6830464998881025,0.26560799999999996,70.86758804321289,0.0028799999999999997,5.135740518569946,25.263215999999996,0,441.15211232503253,1049.2303439999998,915.3388570149739,77.68877907108356,343.7219975789388,236.6092371941846,0.16669003292918205,0.2880845999999999,0.008145079870397845,0.0050231107200000005,0,0.00216708624,15.736799558003744,5.97654024,4.72498341401418,4.407888,17.997300624847412,2.3387759999999997,0.16819202403227487,0.06908718479999999,13.415799935658773,0,0.37703701357046765,0.921338064,0,0,0.04216580154995123,0.10146677999999999,0.004030579895091553,0.007721540640000003,363.85098266601557,4.582525701114611,51.631324803098146,43.61665760431795,6.8568192491000435,9.388758945848712,-0.16590282527453667,19.16320006052653,0.21523200000000003,1644.5694467489845,0,0,0.00192,0.319591003159682,0.012863999999999999,6.95720998919569e-4,0.0019440000000000002 +2215,0,0,-0,-0,1.3400725652122105,5.751820047696431,0.00224,0.06424432868758838,0.057423333333333326,105.49400011698405,0.2157613476666666,7.997584740320842,0,5.704899986584981,0,7.0103300015131635,0.016000147100000004,6.556766748428345,0.25822999999999996,70.17018572489421,0.0027999999999999995,5.136070569356282,24.561459999999997,0,441.1291097005208,1020.0850566666666,914.3548482259114,77.3902486586405,343.7239990234375,235.64842597774137,0.16308703273534775,0.2800822499999999,0.007972669787704945,0.004883579866666667,0,0.0021068894,15.504299481709799,5.810525233333333,4.6318133274714155,4.285446666666666,17.795601050059002,2.2738099999999997,0.16574202477931976,0.06716809633333333,13.353900035222372,0,0.36862001816431683,0.89574534,0,0,0.041239601559937,0.09864825833333332,0.003954819869250059,0.007507053400000003,363.8399861653645,4.576164990844964,51.530001915971155,43.48596392717487,6.817169428927061,9.357610335614538,-0.16590282527453667,19.16609986623128,0.20925333333333335,1617.4333492586238,0,0,0.0018666666666666666,0.31514700253804523,0.012506666666666666,6.71174998084704e-4,0.0018900000000000002 +2216,0,0,-0,-0,1.3336855343168779,5.75133999188741,0.002176,0.061808526826401554,0.05578266666666666,105.50699996948242,0.20959673773333326,7.9113147258758545,0,5.67454993724823,0,6.997269908587138,0.015543000040000005,6.432847062746684,0.25085199999999996,69.47958691914876,0.0027199999999999993,5.136390566825867,23.859703999999997,0,441.1051203409831,990.9397693333333,913.3708496093749,77.09171824619744,343.7250010172526,234.68761476129814,0.1594830354054769,0.27207989999999993,0.007803099773203333,0.004744049013333334,0,0.00204669256,15.271599690119425,5.644510226666666,4.538613239924113,4.163005333333333,17.59350061416626,2.2088439999999996,0.16329702362418175,0.06524900786666667,13.292199929555258,0,0.36020301282405853,0.8701526159999999,0,0,0.040312801177302994,0.09582973666666665,0.003878279821947217,0.007292566160000003,363.82798004150385,4.569804280575317,51.42867902884417,43.35527025003179,6.777519608754077,9.326461725380366,-0.16590282527453667,19.16880003611247,0.20327466666666666,1590.297251768263,0,0,0.0018133333333333332,0.3107660040259361,0.012149333333333333,6.474949962769946e-4,0.0018360000000000002 +2217,0,0,-0,-0,1.3272985034215452,5.750860095024109,0.0021119999999999997,0.05946502617249886,0.05414199999999999,105.51899909973145,0.20343212779999995,7.825974623362224,0,5.644369959831238,0,6.984239975611369,0.015085852980000005,6.31124730904897,0.24347399999999997,68.79578653971355,0.0026399999999999996,5.136720577875773,23.157947999999998,0,441.08111572265625,961.7944819999999,912.3908487955728,76.79318783375437,343.7250010172526,233.7268035448549,0.15587703262766203,0.26407754999999994,0.00763618981000036,0.004604518160000001,0,0.00198649572,15.038599650065104,5.47849522,4.445363283157349,4.040564,17.391100724538166,2.143878,0.16085702180862427,0.0633299194,13.230799992879232,0,0.35178401072820026,0.8445598919999999,0,0,0.03938770138969024,0.09301121499999998,0.003801019901099304,0.007078078920000003,363.81498209635413,4.56344357030567,51.32735614171718,43.22457657288871,6.737869788581094,9.295313115146193,-0.16590282527453667,19.171199798583984,0.197296,1563.1611542779024,0,0,0.0017599999999999998,0.3064450000723203,0.011792,6.246509922978779e-4,0.0017820000000000002 +2218,0,0,-0,-0,1.3209114725262125,5.750379999478658,0.002048,0.05721032526344061,0.052501333333333323,105.5310001373291,0.1972675178666666,7.741554657618205,0,5.614339987436931,0,6.971229990323384,0.014628705920000006,6.191907445589702,0.23609599999999997,68.1187858581543,0.0025599999999999993,5.137040575345357,22.456191999999994,0,441.05811564127606,932.6491946666666,911.4158528645833,76.49465742131132,343.7229944864909,232.7659923284117,0.1522690306107203,0.25607519999999995,0.007469449851972361,0.004464987306666668,0,0.00192629888,14.805499792098999,5.312480213333333,4.352083206176758,3.918122666666666,17.188300768534344,2.078912,0.15842302019397417,0.061410830933333334,13.169700066248575,0,0.3433610151211421,0.8189671679999999,0,0,0.03846390079706907,0.09019269333333332,0.0037244698614813387,0.006863591680000003,363.79997762044263,4.557082860036022,51.22603325459019,43.09388289574563,6.69821996840811,9.264164504912019,-0.16590282527453667,19.17340024312337,0.1913173333333333,1536.0250567875419,0,0,0.0017066666666666667,0.3021850014726321,0.011434666666666666,6.026129995007068e-4,0.001728 +2219,0,0,-0,-0,1.3145244416308797,5.749890049298604,0.0019839999999999997,0.055041223764419556,0.05086066666666665,105.54300117492676,0.1911029079333333,7.65805455048879,0,5.58447003364563,0,6.958240032196045,0.014171558860000006,6.074797709782918,0.22871799999999998,67.44848759969075,0.0024799999999999996,5.1373705466588335,21.754435999999995,0,441.0341161092122,903.5039073333332,910.444854736328,76.19612700886825,343.7199986775716,231.80518111196847,0.14866202945510545,0.24807284999999996,0.007305219808282952,0.0043254564533333345,0,0.00186610204,14.572199583053589,5.146465206666667,4.25877312819163,3.795681333333333,16.985100905100506,2.013946,0.15599301954110464,0.059491742466666664,13.10890007019043,0,0.3349340135852496,0.7933744439999999,0,0,0.03753930112967888,0.08737417166666665,0.003648589850248148,0.006649104440000003,363.78398132324213,4.550722149766376,51.1247103674632,42.963189218602544,6.658570148235127,9.233015894677845,-0.16590282527453667,19.175299803415935,0.18533866666666665,1508.8889592971811,0,0,0.0016533333333333333,0.2979830006758372,0.011077333333333333,5.813529957473899e-4,0.001674 +2220,0,0,-0,-0,1.308137410735547,5.749399979909261,0.0019199999999999998,0.052954322968920074,0.049219999999999986,105.5540002187093,0.18493829799999995,7.575444459915161,0,5.554769992828369,0,6.945289969444275,0.013714411800000006,5.959897955258687,0.22133999999999998,66.78468831380208,0.0023999999999999994,5.13770055770874,21.052679999999995,0,441.01111094156903,874.35862,909.4788513183593,75.89759659642519,343.7160008748372,230.84436989552523,0.14505302906036377,0.24007049999999996,0.007143339801890154,0.004185925600000001,0,0.0018059052,14.338599602381388,4.9804502,4.16541314125061,3.67324,16.781600634257,1.9489799999999997,0.15356901908914247,0.057572654,13.048400084177652,0,0.3265070120493571,0.7677817199999999,0,0,0.03661400141815344,0.08455564999999998,0.0035719398874789476,0.006434617200000003,363.76698557535804,4.544361439496728,51.02338748033621,42.832495541459465,6.618920328062144,9.201867284443672,-0.16590282527453667,19.176999886830647,0.17935999999999996,1481.7528618068204,0,0,0.0015999999999999999,0.2938399985432625,0.01072,5.608419984734306e-4,0.00162 +2221,0,0,-0,-0,1.3017503798402144,5.7489099105199175,0.0018559999999999998,0.05094662246604761,0.04757933333333332,105.56400108337402,0.1787736880666666,7.493724505106608,0,5.525219996770223,0,6.9323499997456866,0.013257264740000007,5.847138166427612,0.21396199999999999,66.12748845418294,0.002319999999999999,5.138020475705464,20.350923999999996,0,440.98711649576825,845.2133326666667,908.51784769694,75.59906618398213,343.71099853515625,229.883558679082,0.1414440261820952,0.23206814999999995,0.006981329837193091,0.004046394746666668,0,0.00174570836,14.104899724324545,4.814435193333333,4.072033087412517,3.550798666666666,16.57770077387492,1.8840139999999996,0.15114901835719743,0.05565356553333334,12.988199869791666,0,0.3180770128965378,0.7421889959999999,0,0,0.03568790170053641,0.08173712833333333,0.003494559903629124,0.006220129960000003,363.74898274739576,4.538000729227081,50.92206459320922,42.70180186431639,6.579270507889161,9.170718674209498,-0.16590282527453667,19.17840003967285,0.1733813333333333,1454.6167643164597,0,0,0.0015466666666666667,0.28975500414768857,0.010362666666666666,5.4105499778719e-4,0.001566 +2222,0,0,-0,-0,1.2953633489448815,5.748419960339864,0.0017919999999999998,0.0490150215725104,0.045938666666666655,105.57399940490723,0.1726090781333333,7.412894407908122,0,5.495820005734761,0,6.919439951578776,0.012800117680000006,5.736478408177693,0.206584,65.47668902079265,0.0022399999999999994,5.138350526491801,19.649167999999996,0,440.964106241862,816.0680453333333,907.559855143229,75.30053577153906,343.70499928792316,228.92274746263877,0.13783402740955353,0.22406579999999993,0.0068191998871043324,0.003906863893333334,0,0.0016855115199999999,13.870999733606974,4.648420186666667,3.978602965672811,3.428357333333333,16.37350050608317,1.8190479999999998,0.1487330198287964,0.05373447706666667,12.928300142288208,0,0.30964601039886475,0.7165962719999999,0,0,0.03476130093137423,0.07891860666666665,0.0034178998903371394,0.006005642720000003,363.72998555501295,4.531640018957434,50.82074170608223,42.5711081871733,6.5396206877161775,9.139570063975325,-0.16590282527453667,19.17959992090861,0.16740266666666664,1427.4806668260992,0,0,0.0014933333333333333,0.28572699924310047,0.010005333333333333,5.219670031995823e-4,0.0015119999999999999 +2223,0,0,-0,-0,1.2889763180495488,5.747920036315918,0.001728,0.047156620770692825,0.04429799999999999,105.58400026957194,0.16644446819999995,7.332934379577637,0,5.4665900866190595,0,6.906550010045369,0.012342970620000006,5.627898613611857,0.199206,64.83238665262859,0.002159999999999999,5.1386905113856,18.947411999999993,0,440.9411112467448,786.922758,906.6048533121743,75.002005359096,343.6989974975586,227.96193624619556,0.13422302529215813,0.21606344999999993,0.006659289860787491,0.003767333040000001,0,0.00162531468,13.636899630228678,4.48240518,3.8851529359817505,3.3059159999999994,16.16900094350179,1.7540819999999997,0.1463210185368856,0.051815388600000005,12.868600050608316,0,0.30121200780073804,0.6910035479999999,0,0,0.033834001049399376,0.076100085,0.003341919897745053,0.0057911554800000025,363.70897928873694,4.525279308687787,50.71941881895525,42.44041451003022,6.499970867543194,9.108421453741151,-0.16590282527453667,19.180500030517578,0.16142399999999996,1400.3445693357385,0,0,0.00144,0.2817540019750595,0.009647999999999999,5.035519910355409e-4,0.0014579999999999997 +2224,0,0,-0,-0,1.2825892871542162,5.747430046399434,0.001664,0.04536872046689192,0.042657333333333325,105.59400049845378,0.16027985826666663,7.253844340642293,0,5.437510013580322,0,6.89368999004364,0.011885823560000005,5.521358847618103,0.191828,64.19438807169597,0.0020799999999999994,5.139020522435506,18.245655999999993,0,440.9181086222331,757.7774706666667,905.652857462565,74.70347494665293,343.69100189208984,227.00112502975233,0.1306100239356359,0.20806109999999992,0.00650148990098387,0.0036278021866666676,0,0.0015651178399999999,13.402699708938599,4.316390173333334,3.791662851969401,3.1834746666666662,15.96410075823466,1.6891159999999998,0.14391401782631874,0.049896300133333335,12.809299945831299,0,0.2927730083465576,0.6654108239999998,0,0,0.032906100464363895,0.07328156333333333,0.0032651598836916187,0.005576668240000002,363.68698374430335,4.51891859841814,50.61809593182826,42.30972083288714,6.460321047370211,9.077272843506979,-0.16590282527453667,19.18120018641154,0.1554453333333333,1373.208471845378,0,0,0.0013866666666666667,0.27783699830373126,0.009290666666666666,4.857870007981546e-4,0.0014039999999999996 +2225,0,0,-0,-0,1.2762022562588835,5.7469199895858765,0.0015999999999999999,0.043648519863684974,0.04101666666666666,105.60200055440266,0.1541152483333333,7.1755943695704145,0,5.40858006477356,0,6.880850036938985,0.011428676500000005,5.4168291091918945,0.18445,63.56268850962321,0.001999999999999999,5.1393504937489825,17.543899999999994,0,440.8951187133789,728.6321833333334,904.7038472493489,74.40494453420987,343.68299865722656,226.0403138133091,0.12699602420131365,0.2000587499999999,0.006343319779261947,0.0034882713333333343,0,0.0015049209999999998,13.16819969813029,4.150375166666667,3.6981328328450522,3.0610333333333326,15.75890072186788,1.6241499999999998,0.14151101683576903,0.04797721166666667,12.750199953715006,0,0.2843330105145772,0.6398180999999998,0,0,0.03197780096282562,0.07046304166666667,0.0031876699261677763,0.005362181000000002,363.6639836629231,4.512557888148493,50.51677304470127,42.17902715574406,6.420671227197229,9.046124233272804,-0.16590282527453667,19.181699911753338,0.14946666666666664,1346.0723743550172,0,0,0.0013333333333333335,0.2739749997854233,0.008933333333333331,4.6864799757410464e-4,0.0013499999999999996 +2226,0,0,-0,-0,1.2698152253635506,5.746420065561931,0.0015359999999999998,0.04199371890475353,0.039375999999999994,105.61099942525227,0.14795063839999995,7.098194281260173,0,5.379810055096944,0,6.868040045102437,0.010971529440000006,5.31425929069519,0.177072,62.937188466389976,0.0019199999999999992,5.139680544535319,16.842143999999994,0,440.87111409505206,699.4868960000001,903.756856282552,74.10641412176682,343.6739959716797,225.07950259686586,0.12338102298478286,0.19205639999999988,0.006187139932687084,0.003348740480000001,0,0.0014447241599999997,12.933599789937338,3.98436016,3.6045828064282737,2.938591999999999,15.55340051651001,1.5591839999999997,0.13911201432347298,0.04605812320000001,12.691399971644083,0,0.2758920093377431,0.6142253759999998,0,0,0.03104890075822671,0.06764452000000001,0.0031109099315168955,0.005147693760000002,363.6399815877278,4.506197177878845,50.41545015757428,42.04833347860098,6.381021407024245,9.01497562303863,-0.16590282527453667,19.181900024414062,0.14348799999999998,1318.9362768646565,0,0,0.0012800000000000003,0.27016599973042804,0.008575999999999997,4.521150015837823e-4,0.0012959999999999996 +2227,0,0,-0,-0,1.263428194468218,5.745910008748372,0.0014719999999999998,0.040401517413556576,0.03773533333333333,105.61900011698405,0.14178602846666663,7.021634181340535,0,5.351200024286906,0,6.8552500406901045,0.010514382380000005,5.213609496752421,0.169694,62.31778812408447,0.0018399999999999992,5.140010436375936,16.140387999999994,0,440.8481089274089,670.3416086666667,902.8118591308593,73.80788370932375,343.6639989217122,224.11869138042263,0.11976502028604348,0.18405404999999986,0.006032839883118868,0.0032092096266666675,0,0.0013845273199999996,12.698899666468302,3.8183451533333335,3.5109827319780984,2.816150666666666,15.34760053952535,1.4942179999999998,0.1367160143951575,0.04413903473333334,12.63290007909139,0,0.26744601130485535,0.5886326519999998,0,0,0.030119501209507387,0.06482599833333334,0.003034819907043129,0.004933206520000002,363.6139806111653,4.499836467609199,50.31412727044729,41.917639801457895,6.3413715868512615,8.983827012804458,-0.16590282527453667,19.181899865468342,0.13750933333333332,1291.800179374296,0,0,0.001226666666666667,0.2664100006222725,0.008218666666666664,4.361640045923802e-4,0.0012419999999999996 +2228,0,0,-0,-0,1.2570411635728853,5.7453999519348145,0.001408,0.03886971715837717,0.036094666666666664,105.62700080871582,0.1356214185333333,6.945894122123718,0,5.32272998491923,0,6.842479983965556,0.010057235320000005,5.1148596207300825,0.16231600000000002,61.70458857218424,0.001759999999999999,5.140340447425842,15.438631999999991,0,440.8251088460286,641.1963213333335,901.8698476155598,73.50935329688069,343.6539942423503,223.15788016397943,0.11614901944994926,0.17605169999999987,0.00587795985241731,0.003069678773333334,0,0.0013243304799999997,12.463899691899618,3.6523301466666664,3.4173627297083535,2.693709333333332,15.14150063196818,1.4292519999999997,0.13432401418685913,0.042219946266666676,12.574700037638346,0,0.25899701317151386,0.5630399279999998,0,0,0.029189700881640118,0.062007476666666686,0.0029579599116307995,0.004718719280000002,363.58798472086585,4.493475757339551,50.212804383320304,41.78694612431482,6.301721766678279,8.952678402570283,-0.16590282527453667,19.181599934895832,0.13153066666666663,1264.6640818839353,0,0,0.0011733333333333337,0.2627059991161029,0.00786133333333333,4.2077700588076067e-4,0.0011879999999999994 +2229,0,0,-0,-0,1.2506541326775524,5.744889974594116,0.0013439999999999997,0.03739601590981086,0.034454,105.63399950663249,0.12945680859999997,6.870984077453613,0,5.294419924418132,0,6.829740007718404,0.009600088260000004,5.0179498593012495,0.15493800000000002,61.097388903299965,0.001679999999999999,5.1406805117925005,14.736875999999992,0,440.80311075846356,612.0510340000001,900.9288533528645,73.21082288443762,343.64300028483075,222.1970689475362,0.11253301985561848,0.16804934999999982,0.005724889847139518,0.002930147920000001,0,0.0012641336399999994,12.22879966100057,3.48631514,3.323712686697642,2.571267999999999,14.935100475947062,1.3642859999999999,0.13193501407901445,0.040300857800000006,12.516700029373169,0,0.25054700920979184,0.5374472039999998,0,0,0.028259401054431994,0.059188955000000015,0.0028803699533455074,0.004504232040000002,363.55998229980463,4.487115047069905,50.11148149619331,41.65625244717173,6.262071946505296,8.921529792336111,-0.16590282527453667,19.18110005060832,0.12555199999999997,1237.5279843935748,0,0,0.0011200000000000003,0.259053997695446,0.007503999999999996,4.0593200295309845e-4,0.0011339999999999994 +2230,0,0,-0,-0,1.2442671017822198,5.744370063145955,0.0012799999999999999,0.035978216057022415,0.03281333333333333,105.64099947611491,0.12329219866666663,6.796874046325684,0,5.266250014305115,0,6.817020018895467,0.009142941200000004,4.92287003993988,0.14756000000000002,60.4961887995402,0.001599999999999999,5.141010483105977,14.035119999999992,0,440.78011322021484,582.9057466666668,899.9888610839843,72.91229247199456,343.6309992472331,221.23625773109296,0.10891501791775227,0.16004699999999983,0.005573509959504008,0.0027906170666666674,0,0.0012039367999999995,11.993499755859375,3.3203001333333333,3.230022609233856,2.4488266666666654,14.72830073038737,1.2993199999999998,0.1295500099658966,0.03838176933333334,12.458999872207642,0,0.24209500725070635,0.5118544799999998,0,0,0.02732880087569356,0.05637043333333336,0.00280350991912807,0.004289744800000002,363.53097788492835,4.480754336800257,50.01015860906632,41.52555877002865,6.2224221263323125,8.890381182101937,-0.16590282527453667,19.180299917856853,0.11957333333333331,1210.391886903214,0,0,0.0010666666666666672,0.2554530029495557,0.007146666666666662,3.916119967470877e-4,0.0010799999999999994 +2231,0,0,-0,-0,1.2378800708868871,5.743859966595967,0.0012159999999999999,0.03461421436319748,0.031172666666666664,105.64700126647949,0.1171275887333333,6.723553975423177,0,5.238239963849385,0,6.804320057233174,0.008685794140000005,4.829570213953654,0.14018200000000003,59.90088939666748,0.001519999999999999,5.141340533892314,13.333363999999992,0,440.75711313883465,553.7604593333334,899.0508524576821,72.6137620595515,343.6190007527669,220.27544651464973,0.10529401774207751,0.15204464999999984,0.005421369879816969,0.002651086213333334,0,0.0011437399599999996,11.758099873860678,3.1542851266666667,3.136292576789856,2.3263853333333318,14.521300474802652,1.234354,0.12716801092028618,0.03646268086666668,12.401599963506063,0,0.2336410072942575,0.48626175599999977,0,0,0.026399700436741114,0.05355191166666669,0.0027273198938928545,0.004075257560000002,363.50198109944654,4.47439362653061,49.90883572193933,41.394865092885574,6.182772306159329,8.859232571867764,-0.16590282527453667,19.17930014928182,0.11359466666666665,1183.2557894128533,0,0,0.0010133333333333338,0.2519010007381439,0.0067893333333333295,3.777960058262882e-4,0.0010259999999999994 +2232,0,0,-0,-0,1.2314930399915542,5.743339975674947,0.0011519999999999998,0.03330191504210234,0.029531999999999996,105.6529992421468,0.11096297879999997,6.651043931643168,0,5.210379958152771,0,6.791650017102559,0.008228647080000004,4.738020459810893,0.132804,59.31148910522461,0.001439999999999999,5.141680558522542,12.631607999999995,0,440.7341079711914,524.615172,898.1138509114583,72.31523164710843,343.6070022583008,219.3146352982065,0.1016730157037576,0.14404229999999987,0.005268529833604892,0.0025115553600000007,0,0.0010835431199999995,11.522599776585897,2.98827012,3.042542517185211,2.2039439999999986,14.314000447591146,1.169388,0.12478901135424773,0.03454359240000001,12.344499985376993,0,0.22518300637602806,0.46066903199999976,0,0,0.025472001017381746,0.050733390000000024,0.0026503599559267363,0.0038607703200000017,363.4709854125976,4.468032916260963,49.80751283481234,41.26417141574249,6.143122485986346,8.82808396163359,-0.16590282527453667,19.178099791208904,0.10761599999999998,1156.1196919224926,0,0,9.600000000000005e-4,0.24839900185664496,0.006431999999999996,3.644679915547992e-4,9.719999999999994e-4 +2233,0,0,-0,-0,1.2251060090962216,5.742809971173604,0.001088,0.032039315129319824,0.02789133333333333,105.65900039672852,0.10479836886666663,6.579303900400798,0,5.182659943898519,0,6.779000083605449,0.007771500020000004,4.648180603981018,0.125426,58.72788906097412,0.0013599999999999988,5.142010529836019,11.929851999999995,0,440.71111551920575,495.4698846666667,897.1778564453124,72.01670123466538,343.59400177001953,218.35382408176326,0.09805131641527016,0.13603994999999988,0.005117349947492282,0.0023720245066666673,0,0.0010233462799999996,11.286799669265747,2.822255113333333,2.948752462863922,2.081502666666665,14.106400410334269,1.104422,0.12241401026646297,0.03262450393333335,12.28759996096293,0,0.21672100697954497,0.43507630799999975,0,0,0.02454340100909273,0.04791486833333335,0.002572669938672334,0.0036462830800000016,363.4379857381184,4.461672205991316,49.70618994768535,41.13347773859941,6.103472665813363,8.796935351399416,-0.16590282527453667,19.176600138346355,0.10163733333333332,1128.983594432132,0,0,9.066666666666671e-4,0.24494599923491478,0.006074666666666663,3.516100041451864e-4,9.179999999999994e-4 +2234,0,0,-0,-0,1.2187189782008887,5.742290059725444,0.001024,0.030824613602211077,0.026250666666666662,105.66399955749512,0.0986337589333333,6.5083439747492475,0,5.155100067456563,0,6.7663800319035845,0.007314352960000004,4.560020764668782,0.118048,58.14998912811279,0.0012799999999999988,5.142350474993388,11.228095999999997,0,440.6881103515625,466.3245973333334,896.2428487141926,71.7181708222223,343.5800043741862,217.39301286532003,0.09442881494760513,0.12803759999999992,0.004967759906624754,0.002232493653333334,0,9.631494399999996e-4,11.050999879837036,2.6562401066666665,2.854932407538096,1.9590613333333315,13.898500283559164,1.0394560000000002,0.12004100965956847,0.03070541546666668,12.230999867121378,0,0.208258006721735,0.40948358399999973,0,0,0.023614100491007168,0.04509634666666669,0.002495709942498555,0.0034317958400000015,363.4049809773762,4.455311495721668,49.60486706055836,41.002784061456325,6.063822845640379,8.765786741165243,-0.16590282527453667,19.17490005493164,0.09565866666666664,1101.8474969417712,0,0,8.533333333333338e-4,0.24154099822044373,0.0057173333333333295,3.392059952602722e-4,8.639999999999995e-4 +2235,0,0,-0,-0,1.212331947305556,5.741760055224101,9.599999999999999e-4,0.02965591320147117,0.024609999999999993,105.6689993540446,0.09246914899999997,6.438143849372864,0,5.127679944038391,0,6.753779967625936,0.006857205900000003,4.473520994186401,0.11066999999999999,57.5777899424235,0.0011999999999999988,5.142680486043294,10.526339999999998,0,440.6661097208659,437.17931,895.3078613281249,71.41964040977925,343.5659993489583,216.4322016488768,0.09080561498800914,0.12003524999999993,0.004817299932862322,0.0020929628000000006,0,9.029525999999996e-4,10.81499981880188,2.4902251,2.761082410812378,1.8366199999999981,13.69040036201477,0.9744900000000003,0.11767100977400939,0.028786327000000014,12.174699942270914,0,0.19979300598303476,0.3838908599999997,0,0,0.022684200511624415,0.04227782500000002,0.0024194199747095504,0.0032173086000000014,363.370984395345,4.448950785452022,49.50354417343138,40.872090384313246,6.024173025467396,8.73463813093107,-0.16590282527453667,19.1728998819987,0.08967999999999998,1074.7113994514107,0,0,8.000000000000004e-4,0.23818299919366837,0.005359999999999997,3.272400038743702e-4,8.099999999999995e-4 +2236,0,0,-0,-0,1.2059449164102234,5.741230050722758,8.959999999999999e-4,0.028531612517933052,0.022969333333333328,105.67299906412761,0.08630453906666664,6.368703842163086,0,5.100400010744731,0,6.741199970245361,0.006400058840000004,4.388651132583618,0.103292,57.011189460754395,0.0011199999999999988,5.143020510673523,9.824583999999998,0,440.6431121826172,408.0340226666666,894.3748626708983,71.12110999733619,343.5510025024414,215.4713904324336,0.08718161347011726,0.11203289999999995,0.004668369928064446,0.001953431946666667,0,8.427557599999997e-4,10.578799883524576,2.3242100933333334,2.667202333609263,1.7141786666666647,13.482000350952148,0.9095240000000004,0.11530300912757714,0.02686723853333335,12.118599891662598,0,0.191324004282554,0.3582981359999997,0,0,0.02175350037092964,0.03945930333333335,0.002342369950686892,0.0030028213600000013,363.33598327636713,4.442590075182374,49.40222128630439,40.74139670717017,5.984523205294413,8.703489520696897,-0.16590282527453667,19.170699914296467,0.08370133333333332,1047.57530196105,0,0,7.46666666666667e-4,0.23487200091282526,0.005002666666666664,3.156950018213441e-4,7.559999999999995e-4 +2237,0,0,-0,-0,1.1995578855148905,5.740700006484985,8.32e-4,0.027449912391602993,0.021328666666666656,105.67699940999348,0.08013992913333332,6.300013780593872,0,5.073269963264465,0,6.728640000025432,0.0059429117800000025,4.305391271909078,0.09591399999999997,56.4502903620402,0.0010399999999999988,5.1433504819869995,9.122828,0,440.62011464436847,378.8887353333333,893.4418487548827,70.82257958489312,343.53600056966144,214.51057921599036,0.08355681225657463,0.10403054999999997,0.004520889992515246,0.0018139010933333338,0,7.825589199999996e-4,10.342499812444052,2.158195086666667,2.573292334874471,1.5917373333333313,13.273300409317017,0.8445580000000006,0.11293800920248032,0.02494815006666668,12.06279993057251,0,0.1828520049651464,0.3327054119999997,0,0,0.02082230073089401,0.036640781666666684,0.0022645799714761474,0.002788334120000001,363.29898579915357,4.436229364912727,49.3008983991774,40.61070303002708,5.944873385121429,8.672340910462722,-0.16590282527453667,19.16820001602173,0.07772266666666666,1020.4392044706892,0,0,6.933333333333337e-4,0.23160699879129729,0.004645333333333331,3.045579990915333e-4,7.019999999999996e-4 +2238,0,0,-0,-0,1.1931708546195579,5.74015998840332,7.679999999999999e-4,0.026409211413313944,0.01968799999999999,105.68099975585938,0.07397531919999997,6.2320637702941895,0,5.046290040016174,0,6.716109951337178,0.005485764720000003,4.223691463470459,0.08853599999999998,55.894789377848305,9.599999999999986e-4,5.143690466880798,8.421072,0,440.59710693359375,349.7434479999999,892.5088500976561,70.52404917245006,343.521001180013,213.54976799954713,0.07992901156346004,0.09602819999999998,0.004372409932936232,0.0016743702400000005,0,7.223620799999997e-4,10.106099764506022,1.9921800799999998,2.47934228181839,1.4692959999999977,13.06440019607544,0.7795920000000006,0.11057600813607375,0.02302906160000002,12.007299979527792,0,0.1743780051668485,0.3071126879999997,0,0,0.01989050054301818,0.033822260000000014,0.002187519974540919,0.002573846880000001,363.261983235677,4.429868654643079,49.19957551205041,40.480009352884004,5.905223564948446,8.64119230022855,-0.16590282527453667,19.165500005086262,0.07174399999999997,993.3031069803285,0,0,6.400000000000003e-4,0.228388000279665,0.004287999999999997,2.9381399751097587e-4,6.479999999999996e-4 +2239,0,0,-0,-0,1.186783823724225,5.739619930585225,7.039999999999999e-4,0.02540801124026378,0.018047333333333318,105.68400001525879,0.06781070926666664,6.1648536920547485,0,5.019449949264526,0,6.703610062599182,0.0050286176600000025,4.143511613210042,0.08115799999999997,55.344789822896324,8.799999999999986e-4,5.144030491511027,7.719316000000002,0,440.5751088460286,320.5981606666665,891.5768483479817,70.22551876000699,343.50500233968097,212.5889567831039,0.07630060985684395,0.08802585,0.004222989974853893,0.001534839386666667,0,6.621652399999997e-4,9.869479894638062,1.8261650733333332,2.385362227757772,1.3468546666666643,12.855200290679932,0.7146260000000006,0.10821600692967574,0.021109973133333352,11.952099800109863,0,0.16590200612942377,0.2815199639999997,0,0,0.018958200390140217,0.031003738333333346,0.002111139959500482,0.002359359640000001,363.2229843139648,4.423507944373433,49.09825262492342,40.34931567574092,5.865573744775463,8.610043689994377,-0.16590282527453667,19.16260004043579,0.06576533333333331,966.1670094899678,0,0,5.86666666666667e-4,0.22521300117174783,0.003930666666666664,2.8344899813722196e-4,5.939999999999997e-4 +2240,0,0,-0,-0,1.1803967928288923,5.73907991250356,6.399999999999999e-4,0.024444810580462217,0.016406666666666653,105.68600018819173,0.061646099333333315,6.098363637924194,0,4.99275004863739,0,6.691119988759358,0.004571470600000002,4.064851800600688,0.07377999999999996,54.80029010772705,7.999999999999986e-4,5.144360383351644,7.017560000000003,0,440.55211130777997,291.4528733333332,890.6448465983071,69.92698834756393,343.48900349934894,211.62814556666066,0.07267150903741519,0.08002350000000003,0.004075029864907265,0.0013953085333333337,0,6.019683999999997e-4,9.632759888966879,1.6601500666666666,2.2913521925608316,1.224413333333331,12.645700295766195,0.6496600000000008,0.10585900706549485,0.019190884666666685,11.89709989229838,0,0.15742200364669165,0.25592723999999967,0,0,0.018025300465524197,0.02818521666666668,0.0020339799618038037,0.002144872400000001,363.18398284912104,4.417147234103785,48.99692973779643,40.21862199859784,5.825923924602479,8.578895079760203,-0.16590282527453667,19.159399668375652,0.059786666666666655,939.030911999607,0,0,5.333333333333336e-4,0.22208200146754584,0.003573333333333331,2.734500012593344e-4,5.399999999999997e-4 +2241,0,0,-0,-0,1.1740097619335597,5.7385300397872925,5.759999999999999e-4,0.02351801050826907,0.014765999999999987,105.68899981180827,0.055481489399999986,6.032593647638957,0,4.966190059979756,0,6.678660074869792,0.004114323540000002,3.9876819054285684,0.06640199999999996,54.26109027862549,7.199999999999987e-4,5.144700487454732,6.315804000000003,0,440.5291112263997,262.30758599999984,889.7138468424478,69.62845793512088,343.47300211588544,210.66733435021743,0.06904170910517375,0.07202115000000002,0.0039284499556136625,0.0012557776800000003,0,5.417715599999997e-4,9.395919958750406,1.49413506,2.197312116622925,1.1019719999999977,12.436000347137451,0.5846940000000007,0.10350300619999568,0.017271796200000016,11.842300097147623,0,0.1489380026857058,0.2303345159999997,0,0,0.017092000227421522,0.025366695000000012,0.0019560999353416264,0.0019303851600000008,363.1429824829101,4.410786523834138,48.89560685066944,40.08792832145476,5.786274104429496,8.547746469526029,-0.16590282527453667,19.156000296274822,0.05380799999999999,911.8948145092464,0,0,4.8000000000000023e-4,0.2189949986835321,0.003215999999999998,2.638039998904181e-4,4.859999999999997e-4 +2242,0,0,-0,-0,1.1676227310382268,5.737980047861735,5.12e-4,0.022626409928003948,0.013125333333333322,105.69099998474121,0.04931687946666665,5.967533588409424,0,4.939779996871948,0,6.666229963302612,0.003657176480000002,3.9119420647621155,0.059023999999999965,53.72719033559164,6.399999999999989e-4,5.145030419031779,5.614048000000002,0,440.506108601888,233.16229866666654,888.7818450927733,69.3299275226778,343.4559961954753,209.7065231337742,0.06541120757659276,0.06401880000000001,0.0037808099295943975,0.001116246826666667,0,4.815747199999998e-4,9.158949931462606,1.3281200533333333,2.103242059548696,0.9795306666666648,12.226100206375122,0.5197280000000006,0.10115000481406848,0.015352707733333349,11.787900050481161,0,0.14045300334692,0.20474179199999973,0,0,0.016158200334757566,0.022548173333333345,0.0018789499687651794,0.0017158979200000007,363.10098266601557,4.404425813564491,48.79428396354245,39.957234644311676,5.746624284256513,8.516597859291856,-0.16590282527453667,19.152299880981445,0.04782933333333332,884.7587170188858,0,0,4.266666666666669e-4,0.21595100065072378,0.0028586666666666647,2.544980015954934e-4,4.3199999999999977e-4 +2243,0,0,-0,-0,1.1612357001428941,5.737430016199748,4.4799999999999994e-4,0.021768609372278053,0.011484666666666657,105.69200007120769,0.04315226953333332,5.903173446655273,0,4.91350011030833,0,6.6538099845250445,0.003200029420000002,3.8376422127087912,0.05164599999999997,53.198489824930824,5.599999999999991e-4,5.1453704833984375,4.9122920000000025,0,440.4841079711914,204.01701133333324,887.850850423177,69.03139711023475,343.4390004475911,208.745711917331,0.061779905731479325,0.05601645000000002,0.003634529964377483,9.767159733333336e-4,0,4.2137787999999986e-4,8.921839872996012,1.1621050466666667,2.009142051140467,0.8570893333333316,12.015900214513143,0.45476200000000055,0.09879900390903155,0.013433619266666679,11.73360006014506,0,0.13196700314680734,0.17914906799999977,0,0,0.015223900166650614,0.019729651666666674,0.0018024699723658462,0.0015014106800000006,363.05897776285804,4.398065103294844,48.69296107641546,39.8265409671686,5.70697446408353,8.485449249057684,-0.16590282527453667,19.148399988810223,0.04185066666666666,857.6226195285251,0,0,3.733333333333335e-4,0.2129490002989769,0.002501333333333332,2.455200022571565e-4,3.7799999999999976e-4 +2244,0,0,-0,-0,1.1548486692475612,5.736879984537761,3.8399999999999996e-4,0.020943309025218088,0.009843999999999992,105.69300142923991,0.036987659599999986,5.839513460795085,0,4.887369990348816,0,6.641420006752014,0.0027428823600000015,3.764752368132273,0.044267999999999974,52.67509015401205,4.7999999999999914e-4,5.1457105080286665,4.210536000000001,0,440.4611129760742,174.87172399999992,886.9198506673176,68.73286669779169,343.4219970703125,207.78490070088776,0.058147806053360306,0.04801410000000001,0.003489519973906378,8.371851200000002e-4,0,3.6118103999999986e-4,8.684609969456991,0.9960900399999999,1.9150019884109497,0.7346479999999985,11.805400053660074,0.3897960000000005,0.09644990290204684,0.011514530800000011,11.679700056711832,0,0.12347800098359585,0.1535563439999998,0,0,0.014289300267895063,0.016911130000000007,0.0017252099836089958,0.0012869234400000006,363.01498667399085,4.391704393025197,48.59163818928847,39.69584729002552,5.667324643910546,8.45430063882351,-0.16590282527453667,19.14420000712077,0.03587199999999999,830.4865220381645,0,0,3.2000000000000013e-4,0.20998899762829146,0.0021439999999999983,2.3685899941483513e-4,3.239999999999998e-4 +2245,0,0,-0,-0,1.1484616383522286,5.73631997903188,3.1999999999999997e-4,0.02014940915008386,0.008203333333333326,105.69400087992351,0.030823049666666658,5.776533484458923,0,4.861379981040955,0,6.629050016403198,0.002285735300000001,3.693232516447703,0.03688999999999998,52.15679041544596,3.999999999999993e-4,5.146040479342143,3.5087800000000016,0,440.43811289469403,145.7264366666666,885.9898427327473,68.43433628534862,343.4040044148763,206.82408948444453,0.054512604450186096,0.04001175000000001,0.0033433599940811596,6.976542666666669e-4,0,3.0098419999999987e-4,8.447259902954102,0.8300750333333333,1.82083194454511,0.6122066666666655,11.594800154368082,0.3248300000000004,0.09410260369380315,0.009595442333333343,11.626000006993612,0,0.1149860005825758,0.12796361999999983,0,0,0.013356200186535716,0.01409260833333334,0.001647239977804323,0.0010724362000000005,362.969980875651,4.38534368275555,48.49031530216148,39.56515361288244,5.6276748237375624,8.423152028589335,-0.16590282527453667,19.13979959487915,0.029893333333333327,803.3504245478039,0,0,2.666666666666668e-4,0.2070700004696846,0.0017866666666666656,2.2850299986506192e-4,2.6999999999999984e-4 +2246,0,0,-0,-0,1.142074607456896,5.73576005299886,2.56e-4,0.019385508572061855,0.006562666666666661,105.69399897257487,0.02465843973333333,5.71423343817393,0,4.835519949595134,0,6.616710027058919,0.0018285882400000011,3.6230626503626504,0.029511999999999983,51.64369042714437,3.199999999999995e-4,5.146380464235942,2.807024000000001,0,440.4161071777344,116.58114933333329,885.058842976888,68.13580587290556,343.38599904378253,205.8632782680013,0.05087680400659641,0.032009400000000014,0.0031984599966866276,5.581234133333335e-4,0,2.4078735999999993e-4,8.209779818852743,0.6640600266666667,1.726631909608841,0.4897653333333324,11.383900006612143,0.2598640000000003,0.09175720190008481,0.0076763538666666745,11.572499990463257,0,0.10648900084197521,0.10237089599999988,0,0,0.012424400231490532,0.011274086666666672,0.0015699899813625962,8.579489600000004e-4,362.9249827067057,4.378982972485902,48.388992415034494,39.434459935739355,5.58802500356458,8.392003418355163,-0.16590282527453667,19.135200023651123,0.02391466666666666,776.2143270574433,0,0,2.1333333333333344e-4,0.20419200137257576,0.0014293333333333324,2.204430008229489e-4,2.1599999999999988e-4 +2247,0,0,-0,-0,1.135687576561563,5.735200007756551,1.92e-4,0.018650608292470377,0.004921999999999996,105.69400087992351,0.0184938298,5.6526133219401045,0,4.809799989064534,0,6.604390025138855,0.0013714411800000007,3.5542227824529014,0.022133999999999987,51.13559087117513,2.3999999999999965e-4,5.1467204093933105,2.1052680000000015,0,440.39310963948566,87.43586199999996,884.1278483072915,67.83727546046251,343.36799875895184,204.90246705155806,0.04724030258754889,0.02400705000000001,0.003054749977309257,4.185925600000001e-4,0,1.8059051999999993e-4,7.972180008888245,0.49804502000000017,1.6324018935362499,0.3673239999999993,11.172800143559774,0.1948980000000003,0.08941350070138772,0.005757265400000006,11.519400040308634,0,0.09799100086092949,0.07677817199999992,0,0,0.011491899999479452,0.008455565000000005,0.0014934099939030905,6.434617200000003e-4,362.87797800699866,4.372622262216256,48.287669527907504,39.303766258596276,5.548375183391596,8.36085480812099,-0.16590282527453667,19.130299886067707,0.017936,749.0782295670826,0,0,1.600000000000001e-4,0.20135299985607466,0.0010719999999999996,2.1266699938375191e-4,1.6199999999999993e-4 +2248,0,0,-0,-0,1.1293005456662304,5.734640002250671,1.2799999999999997e-4,0.017943507836510737,0.0032813333333333305,105.69300015767415,0.012329219866666657,5.591653307278951,0,4.784219940503438,0,6.592089970906575,9.142941200000003e-4,3.486682931582133,0.014755999999999991,50.63249111175537,1.5999999999999966e-4,5.147050420443217,1.403512,0,440.37010955810547,58.29057466666663,883.1968536376952,67.53874504801945,343.34899648030597,203.94165583511486,0.04360310143480698,0.016004699999999997,0.002909810010654231,2.7906170666666674e-4,0,1.2039367999999994e-4,7.734450022379558,0.33203001333333315,1.5381418069203694,0.24488266666666614,10.961400190989176,0.12993200000000016,0.08707150133947532,0.0038381769333333364,11.466400146484375,0,0.08949119970202446,0.05118544799999991,0,0,0.010558600071817636,0.0056370433333333345,0.0014160599869986374,4.289744800000002e-4,362.82998402913404,4.366261551946608,48.18634664078051,39.1730725814532,5.508725363218613,8.329706197886816,-0.16590282527453667,19.125200112660725,0.011957333333333327,721.9421320767219,0,0,1.066666666666667e-4,0.19855400050679842,7.14666666666666e-4,2.0516500080702826e-4,1.0799999999999991e-4 +2249,0,0,-0,-0,1.1229135147708975,5.7340699434280396,6.399999999999993e-5,0.017263307701796293,0.0016406666666666653,105.69200007120769,0.006164609933333329,5.531343380610148,0,4.758780002593994,0,6.579819997151692,4.571470600000004e-4,3.420423070589701,0.007377999999999996,50.13429069519043,7.999999999999988e-5,5.147390405337016,0.7017560000000005,0,440.3481089274089,29.14528733333333,882.2668558756509,67.24021463557638,343.3310012817383,202.98084461867163,0.039965200858811535,0.008002350000000005,0.00276369999240463,1.3953085333333337e-4,0,6.0196839999999995e-5,7.496610045433044,0.16601500666666658,1.4438518583774567,0.12244133333333296,10.749899864196777,0.06496600000000008,0.08473110074798267,0.0019190884666666665,11.413700024286905,0,0.08098740130662918,0.025592723999999956,0,0,0.00962459008830289,0.0028185216666666672,0.001337989999835069,2.144872400000001e-4,362.7819849650065,4.359900841676962,48.08502375365352,39.04237890431011,5.46907554304563,8.298557587652642,-0.16590282527453667,19.119800249735516,0.005978666666666667,694.8060345863613,0,0,5.333333333333335e-5,0.19579499835769335,3.573333333333332e-4,1.9792699822573923e-4,5.399999999999996e-5 +2250,0,0,-0,-0,1.1165264838755649,5.733500003814697,0,0.016608807258307934,0,105.68999926249187,0,5.471693277359009,0,4.7334699630737305,0,6.5675599575042725,0,3.355403204758962,0,49.640990575154625,0,5.1477305094401045,0,0,440.3251139322917,0,881.3358408610025,66.94168422313332,343.31199900309247,202.0200334022284,0.03632640031476816,0,0.0026188299913580218,0,0,0,7.258650024731954,0,1.3495315710703533,0,10.538100004196167,0,0.0823923001686732,0,11.361300071080526,0,0.0724796000868082,0,0,0,0.008689930041631063,0,0.0012606500046482931,0,362.73197937011713,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.1141996383667,0,667.6699370960007,0,0,0,0.19307300075888634,0,1.9094600308259638e-4,0 +2251,0,0,-0,-0,1.1165264838755649,5.732930024464925,0,0.01597920727605621,0,105.6879997253418,0,5.412683169047038,0,4.708290060361226,0,6.555329958597819,0,3.291623334089915,0,49.15269088745117,0,5.148070494333903,0,0,440.30309804280597,0,880.4048563639321,66.94168422313332,343.2929967244466,202.0200334022284,0.03268690034747124,0,0.002475149987731129,0,0,0,7.020570000012715,0,1.255171924829483,0,10.32610003153483,0,0.08005490029851596,0,11.309099912643433,0,0.06397040095180273,0,0,0,0.007754669990390539,0,0.001183979989339908,0,362.6809870402018,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.108399868011475,0,667.6699370960007,0,0,0,0.19038900112112364,0,1.8420999913359992e-4,0 +2252,0,0,-0,-0,1.1165264838755649,5.732360005378723,0,0.015373406776537498,0,105.68600018819173,0,5.354313294092814,0,4.683250029881795,0,6.543130000432332,0,3.229033430417379,0,48.669090270996094,0,5.148310542106628,0,0,440.29105377197266,0,879.5208638509114,66.94168422313332,343.2729949951172,202.0200334022284,0.02923790008450548,0,0.002334909998656561,0,0,0,6.786409974098206,0,1.1642285883426666,0,10.116100072860718,0,0.07775189975897472,0,11.257199923197428,0,0.05599109952648481,0,0,0,0.006872339989058673,0,0.0011093399953097105,0,362.62998199462885,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.102399826049805,0,667.6699370960007,0,0,0,0.18774299944440523,0,1.777119978214614e-4,0 +2253,0,0,-0,-0,1.1165264838755649,5.731789906819661,0,0.014790706491718689,0,105.68400001525879,0,5.29658317565918,0,4.658340056737264,0,6.530939976374309,0,3.167633573214213,0,48.19029108683268,0,5.148410518964131,0,0,440.29003651936847,0,878.7238769531249,66.94168422313332,343.2530008951823,202.0200334022284,0.026152899954468012,0,0.002202619992507001,0,0,0,6.5600599845250445,0,1.0798782706260681,0,9.910450061162313,0,0.07551520007352035,0,11.20550004641215,0,0.04900729997704426,0,0,0,0.0060904200266425805,0,0.0010394099905776482,0,362.57998148600257,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.096399784088135,0,667.6699370960007,0,0,0,0.18513400107622147,0,1.7144399923078404e-4,0 +2254,0,0,-0,-0,1.1165264838755649,5.731209913889567,0,0.01423000629680852,0,105.68200047810872,0,5.2394630908966064,0,4.633570035298665,0,6.518779993057251,0,3.107383688290914,0,47.71619065602621,0,5.148480614026387,0,0,440.29302978515625,0,878.0068715413411,66.94168422313332,343.23299407958984,202.0200334022284,0.02339349997540315,0,0.0020778300046610334,0,0,0,6.341270009676616,0,1.001636028289795,0,9.708960056304932,0,0.07334279951949914,0,11.154000043869019,0,0.04289470054209232,0,0,0,0.005397470008271436,0,9.738860001865154e-4,0,362.52997843424475,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.090499877929688,0,667.6699370960007,0,0,0,0.18255999808510145,0,1.6539600013250796e-4,0 +2255,0,0,-0,-0,1.1165264838755649,5.730639974276225,0,0.013690506108105183,0,105.67999903361003,0,5.182963053385417,0,4.608930031458537,0,6.506650010744731,0,3.048283835252126,0,47.24679183959961,0,5.148540536562602,0,0,440.2990239461263,0,877.3618825276692,66.94168422313332,343.21199798583984,202.0200334022284,0.02092519976819555,0,0.001960109996919831,0,0,0,6.129780054092407,0,0.9290716896454493,0,9.51156997680664,0,0.07123299998541673,0,11.102799971898397,0,0.03754459942380587,0,0,0,0.0047833800393467145,0,9.124970044164608e-4,0,362.47998555501295,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.084499677022297,0,667.6699370960007,0,0,0,0.18002299840251604,0,1.595620002869206e-4,0 +2256,0,0,-0,-0,1.1165264838755649,5.730070034662883,0,0.013171605843429765,0,105.67800076802571,0,5.12708306312561,0,4.584419926007588,0,6.494530002276103,0,2.990303933620453,0,46.78199100494385,0,5.1486005783081055,0,0,440.30502065022785,0,876.7798817952473,66.94168422313332,343.1909993489583,202.0200334022284,0.018717500070730846,0,0.0018490699876565486,0,0,0,5.925349990526835,0,0.861763616402944,0,9.318199952443441,0,0.06918399967253208,0,11.051800012588501,0,0.03286200032259027,0,0,0,0.004239169997163117,0,8.549779934886222e-4,0,362.43098449707026,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.078499794006348,0,667.6699370960007,0,0,0,0.17752100030581155,0,1.5393399856596565e-4,0 +2257,0,0,-0,-0,1.1165264838755649,5.729489962259929,0,0.012672305572777987,0,105.67600059509277,0,5.071792999903361,0,4.56004003683726,0,6.482439994812012,0,2.9334240555763245,0,46.32179101308187,0,5.148670593897502,0,0,440.3130238850911,0,876.2578837076821,66.94168422313332,343.16900126139325,202.0200334022284,0.016742699934790533,0,0.001744319995244344,0,0,0,5.727740049362183,0,0.7993331104516983,0,9.12876001993815,0,0.06719400050739448,0,11.001000006993612,0,0.028763499887039263,0,0,0,0.00375689003461351,0,8.010860037757084e-4,0,362.38198089599604,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.07259972890218,0,667.6699370960007,0,0,0,0.17505400131146112,0,1.485050015617162e-4,0 +2258,0,0,-0,-0,1.1165264838755649,5.728919943173726,0,0.012191905407235026,0,105.6740010579427,0,5.017113089561462,0,4.535790006319682,0,6.470370014508565,0,2.877614200115204,0,45.86609141031901,0,5.148740530014038,0,0,440.32002512613934,0,875.78689066569,66.94168422313332,343.14600372314453,202.0200334022284,0.014976300143947205,0,0.0016454999955991905,0,0,0,5.536730051040649,0,0.7414271185795466,0,8.943190097808838,0,0.06526120007038116,0,10.950500011444092,0,0.025176200084388256,0,0,0,0.0033294900010029473,0,7.50592997064814e-4,0,362.3339818318684,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.06659984588623,0,667.6699370960007,0,0,0,0.1726210005581379,0,1.4326700087015828e-4,0 +2259,0,0,-0,-0,1.1165264838755649,5.728349963823955,0,0.011729805187011758,0,105.67200024922688,0,4.963022947311401,0,4.511680006980896,0,6.458319942156474,0,2.8228542606035867,0,45.41499169667562,0,5.1488105456034345,0,0,440.32802327473956,0,875.3638865152993,66.94168422313332,343.1230010986328,202.0200334022284,0.01339630006502072,0,0.0015522899921052158,0,0,0,5.352099974950154,0,0.6877166976531347,0,8.761380116144815,0,0.06338409893214703,0,10.900200049082438,0,0.022036399847517412,0,0,0,0.0029507199845587215,0,7.032840027629087e-4,0,362.2849807739257,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.060699780782063,0,667.6699370960007,0,0,0,0.17022200177113214,0,1.3821399867689857e-4,0 +2260,0,0,-0,-0,1.1165264838755649,5.727779944737752,0,0.011285204906016588,0,105.66900062561035,0,4.909512917200725,0,4.487689971923828,0,6.4462999900182085,0,2.7691244085629783,0,44.968292554219566,0,5.148880521456401,0,0,440.3350245157878,0,874.9838968912759,66.94168422313332,343.0999984741211,202.0200334022284,0.011983099936818084,0,0.0014643500132175784,0,0,0,5.173619985580444,0,0.6378998557726542,0,8.583280007044474,0,0.06156099991252025,0,10.850200017293295,0,0.019288300070911646,0,0,0,0.002615049985858301,0,6.58958000713028e-4,0,362.2379811604817,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.054700056711834,0,667.6699370960007,0,0,0,0.16785699874162674,0,1.3333899914869107e-4,0 +2261,0,0,-0,-0,1.1165264838755649,5.727200031280518,0,0.01085740498577555,0,105.66700045267741,0,4.856582880020142,0,4.463819980621338,0,6.434299945831299,0,2.7164345184961953,0,44.525991439819336,0,5.148960590362549,0,0,440.343022664388,0,874.6418965657551,66.94168422313332,343.0759989420573,202.0200334022284,0.010718999973808726,0,0.0013814099947921932,0,0,0,5.0011099974314375,0,0.5916926513115565,0,8.408809979756674,0,0.05979049919794003,0,10.800299882888794,0,0.016882899838189285,0,0,0,0.0023175699946781,0,6.174259954908242e-4,0,362.18998209635413,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.048700014750164,0,667.6699370960007,0,0,0,0.16552400092283884,0,1.2863599962050407e-4,0 +2262,0,0,-0,-0,1.1165264838755649,5.726630012194316,0,0.01044590468518436,0,105.6649996439616,0,4.804222782452901,0,4.44009002049764,0,6.422319968541463,0,2.6647245486577353,0,44.08799171447754,0,5.149030566215515,0,0,440.3520202636719,0,874.3348897298176,66.94168422313332,343.0509948730469,202.0200334022284,0.009588220001508793,0,0.0013031600004372497,0,0,0,4.834349989891052,0,0.5488330920537313,0,8.237890084584555,0,0.05807089960823456,0,10.750800132751465,0,0.014777599989126125,0,0,0,0.002053950011031702,0,5.785139995471885e-4,0,362.14298502604163,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.042800108591717,0,667.6699370960007,0,0,0,0.16322400172551474,0,1.2410000090312678e-4,0 +2263,0,0,-0,-0,1.1165264838755649,5.726060072580974,0,0.010050004348158836,0,105.66300010681152,0,4.75242280960083,0,4.41648002465566,0,6.410359938939412,0,2.6139947175979614,0,43.65439097086588,0,5.149110515912374,0,0,440.36002349853516,0,874.0588938395181,66.94168422313332,343.0259958902995,202.0200334022284,0.008576790026078621,0,0.0012293499894440174,0,0,0,4.673150022824605,0,0.5090802237391472,0,8.07044005393982,0,0.05640079981336991,0,10.701400200525919,0,0.012934800082196793,0,0,0,0.0018203099898528308,0,5.420550054016834e-4,0,362.0969848632812,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.036800066630047,0,667.6699370960007,0,0,0,0.16095600028832754,0,1.1972299944318365e-4,0 +2264,0,0,-0,-0,1.1165264838755649,5.725490013758342,0,0.009669044055044651,0,105.66099993387859,0,4.701192816098531,0,4.39299996693929,0,6.3984300295511884,0,2.5642347931861877,0,43.2250919342041,0,5.149180610974629,0,0,440.36802164713544,0,873.8108927408853,66.94168422313332,343.0010019938151,202.0200334022284,0.007672079955227673,0,0.0011597200063988566,0,0,0,4.517339984575908,0,0.47220804790655774,0,7.906410018603007,0,0.05477880003551642,0,10.652300198872885,0,0.011321900024389228,0,0,0,0.0016132600236839305,0,5.078949955835318e-4,0,362.04998016357416,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.03090000152588,0,667.6699370960007,0,0,0,0.158719003200531,0,1.1550100073994447e-4,0 +2265,0,0,-0,-0,1.1165264838755649,5.7249101003011065,0,0.009302574132258693,0,105.65899976094563,0,4.65051273504893,0,4.36964996655782,0,6.386519988377889,0,2.5154349207878113,0,42.799991607666016,0,5.149260600407918,0,0,440.3760223388672,0,873.5878906249999,66.94168422313332,342.9749984741211,202.0200334022284,0.00686281993209074,0,0.0010940300126094371,0,0,0,4.366729935010274,0,0.43800658732652664,0,7.745710055033366,0,0.053203500186403595,0,10.603300094604492,0,0.009910179922978083,0,0,0,0.0014297599943044286,0,4.7588799740575877e-4,0,362.00398254394526,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.024999777475994,0,667.6699370960007,0,0,0,0.15651400138934454,0,1.114269998652162e-4,0 +2266,0,0,-0,-0,1.1165264838755649,5.724340001742045,0,0.008949994031960765,0,105.65699895222981,0,4.600382725397746,0,4.346420049667358,0,6.3746300141016645,0,2.467544953028361,0,42.37899239857992,0,5.149340589841207,0,0,440.38502248128253,0,873.3878987630208,66.94168422313332,342.9490000406901,202.0200334022284,0.006138949926632146,0,0.001032069994835183,0,0,0,4.221140027046204,0,0.4062838827570279,0,7.588279962539673,0,0.05167349924643835,0,10.554699977238974,0,0.008674509900932511,0,0,0,0.0012671400133209925,0,4.458989981988755e-4,0,361.9589818318684,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.019000212351482,0,667.6699370960007,0,0,0,0.15433899809916815,0,1.0749799973079159e-4,0 +2267,0,0,-0,-0,1.1165264838755649,5.723770062128703,0,0.008610773831605911,0,105.65499941507976,0,4.550792694091797,0,4.323309977849324,0,6.362759987513225,0,2.4205550948778787,0,41.96229203542074,0,5.149420539538066,0,0,440.39302317301434,0,873.2088979085286,66.94168422313332,342.9229965209961,202.0200334022284,0.005491450002106528,0,9.736200008774176e-4,0,0,0,4.080409963925679,0,0.37685992817083996,0,7.434060017267863,0,0.05018759953478972,0,10.506200075149536,0,0.007592940082152684,0,0,0,0.0011230200082839776,0,4.17801000973365e-4,0,361.9129842122395,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.013099670410156,0,667.6699370960007,0,0,0,0.15219500040014586,0,1.0370699904645637e-4,0 +2268,0,0,-0,-0,1.1165264838755649,5.723199963569641,0,0.008284423733130097,0,105.65299987792969,0,4.501732707023621,0,4.300329963366191,0,6.350920001665751,0,2.374465227127075,0,41.54959265391032,0,5.149490674336751,0,0,440.4010238647461,0,873.047892252604,66.94168422313332,342.8969955444336,202.0200334022284,0.004912259988486767,0,9.184809944902858e-4,0,0,0,3.944379985332489,0,0.3495667651295662,0,7.28298004468282,0,0.04874440003186464,0,10.45800002415975,0,0.006646249986564119,0,0,0,9.952989979259048e-4,0,3.914739960843387e-4,0,361.8689829508463,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.007099946339924,0,667.6699370960007,0,0,0,0.15007999911904335,0,5.047395037157306e-5,0 +2269,0,0,-0,-0,1.1165264838755649,5.722619970639546,0,0.007970453472808003,0,105.64999834696452,0,4.45321261882782,0,4.277460058530171,0,6.339100003242493,0,2.3292452692985535,0,41.14099248250326,0,5.14957058429718,0,0,440.41002146402997,0,872.9028879801431,66.94168422313332,342.8710021972656,202.0200334022284,0.0043941699744512635,0,8.664660078162948e-4,0,0,0,3.812879979610443,0,0.3242513835430145,0,7.13496994972229,0,0.04734279991437992,0,10.410000085830688,0,0.005817620006079475,0,0,0,8.821049996186048e-4,0,3.6680699849966913e-4,0,361.823984781901,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,19.001200040181477,0,667.6699370960007,0,0,0,0.14799500132600465,0,0,0 +2270,0,0,-0,-0,1.1165264838755649,5.722049991289775,0,0.007668373407796025,0,105.64799944559734,0,4.405212680498759,0,4.254730025927226,0,6.3273000319798784,0,2.284865359465281,0,40.73649247487386,0,5.149650573730469,0,0,440.4180221557617,0,872.7739054361978,66.94168422313332,342.84400177001953,202.0200334022284,0.003930740000214428,0,8.173989917850122e-4,0,0,0,3.6857799887657166,0,0.3007708291212718,0,6.989970048268636,0,0.04598149936646223,0,10.362199942270914,0,0.005092320071222882,0,0,0,7.817870064172894e-4,0,3.4369500402438763e-4,0,361.7799809773762,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.99519983927409,0,667.6699370960007,0,0,0,0.14593899995088577,0,0,0 +2271,0,0,-0,-0,1.1165264838755649,5.721479972203572,0,0.007377753189454476,0,105.64600054423015,0,4.357732613881429,0,4.232110023498535,0,6.315520008405049,0,2.241345445315043,0,40.335892041524254,0,5.149720589319865,0,0,440.42601776123047,0,872.6578928629556,66.94168422313332,342.81700134277344,202.0200334022284,0.0035161899674373367,0,7.711110083619133e-4,0,0,0,3.5629100600878396,0,0.27899108330408734,0,6.847930034001668,0,0.04465949938942989,0,10.314599990844727,0,0.0044574600566799445,0,0,0,6.928799994057044e-4,0,3.2203999823347357e-4,0,361.73597971598304,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.98930009206136,0,667.6699370960007,0,0,0,0.14391099909941354,0,0,0 +2272,0,0,-0,-0,1.1165264838755649,5.720909992853801,0,0.0070981431830053525,0,105.6440003712972,0,4.310762604077657,0,4.209609945615132,0,6.303770025571187,0,2.1986555457115173,0,39.93929227193197,0,5.149800539016724,0,0,440.43502044677734,0,872.5539093017577,66.94168422313332,342.7899983723958,202.0200334022284,0.0031453800038434565,0,7.274460076587275e-4,0,0,0,3.4441399772961936,0,0.2587881771226724,0,6.70878001054128,0,0.04337539989501238,0,10.267300128936768,0,0.0039017699697675803,0,0,0,6.140860011025021e-4,0,3.0175000089608756e-4,0,361.6929829915364,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.983399868011475,0,667.6699370960007,0,0,0,0.14191199963291487,0,0,0 +2273,0,0,-0,-0,1.1165264838755649,5.720329999923706,0,0.006829142997351785,0,105.64200019836426,0,4.264302571614583,0,4.187229951222737,0,6.292029976844788,0,2.1567856272061667,0,39.54649225870768,0,5.149880568186442,0,0,440.4430211385091,0,872.4608968098958,66.94168422313332,342.76300048828125,202.0200334022284,0.0028136800004479787,0,6.862549926154315e-4,0,0,0,3.3293399810791016,0,0.24004912128051123,0,6.572450002034505,0,0.042128399945795536,0,10.220099925994873,0,0.003415370030173411,0,0,0,5.442549979003767e-4,0,2.8273800368576e-4,0,361.64897918701166,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.977399984995525,0,667.6699370960007,0,0,0,0.1399409994482994,0,0,0 +2274,0,0,-0,-0,1.1165264838755649,5.719760060310364,0,0.006570332955258588,0,105.64000002543132,0,4.218342463175456,0,4.1649800936381025,0,6.280320008595784,0,2.1156956950823465,0,39.15769259134928,0,5.149950583775838,0,0,440.4510243733724,0,872.3769022623696,66.94168422313332,342.73600006103516,202.0200334022284,0.0025169700190114477,0,6.473969988292083e-4,0,0,0,3.218370020389557,0,0.22266792505979538,0,6.438899993896484,0,0.04091719972590605,0,10.173200050989786,0,0.0029896199703216553,0,0,0,4.823660007483947e-4,0,2.649249994040777e-4,0,361.60698445638013,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.97149960199992,0,667.6699370960007,0,0,0,0.1379960005482038,0,0,0 +2275,0,0,-0,-0,1.1165264838755649,5.7191899220148725,0,0.006321342817197244,0,105.6379992167155,0,4.172872543334961,0,4.142839948336284,0,6.268630027770996,0,2.075375775496165,0,38.77269268035889,0,5.150030612945557,0,0,440.4590199788411,0,872.3029022216796,66.94168422313332,342.70799255371094,202.0200334022284,0.0022515499925551317,0,6.107409911540648e-4,0,0,0,3.1110999981562295,0,0.20654559507966042,0,6.308070023854573,0,0.039740899888177715,0,10.126499891281128,0,0.0026169500003258386,0,0,0,4.275170019051681e-4,0,2.482349979497182e-4,0,361.56398264567054,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.96560001373291,0,667.6699370960007,0,0,0,0.13607899968822798,0,0,0 +2276,0,0,-0,-0,1.1165264838755649,5.7186200221379595,0,0.006081782553034524,0,105.63600095113118,0,4.127902428309123,0,4.120819965998332,0,6.256970047950745,0,2.035835882027944,0,38.39149284362793,0,5.150100588798523,0,0,440.46801503499347,0,872.2359008789061,66.94168422313332,342.68099721272785,202.0200334022284,0.0020141300143829235,0,5.761610033611456e-4,0,0,0,3.0074100295702615,0,0.1915911448498567,0,6.1798999309539795,0,0.03859840023020903,0,10.080000082651773,0,0.00229073998828729,0,0,0,3.7890499758456525e-4,0,2.3259699931562258e-4,0,361.5219853719075,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.959699789683025,0,667.6699370960007,0,0,0,0.13418900221586227,0,0,0 +2277,0,0,-0,-0,1.1165264838755649,5.718049963315328,0,0.005851312579276661,0,105.6330000559489,0,4.083422462145488,0,4.098919947942098,0,6.245320002237956,0,1.9970459342002869,0,38.01399294535319,0,5.1501805782318115,0,0,440.4760208129883,0,872.1769002278645,66.94168422313332,342.65299733479816,202.0200334022284,0.0018017500018080075,0,5.435400040975461e-4,0,0,0,2.907169977823893,0,0.17771958063046137,0,6.054339965184529,0,0.037488799852629505,0,10.03380004564921,0,0.002005210000788793,0,0,0,3.358229999624503e-4,0,2.1794400163344108e-4,0,361.4799880981445,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.953699747721355,0,667.6699370960007,0,0,0,0.13232499981919923,0,0,0 +2278,0,0,-0,-0,1.1165264838755649,5.717479983965556,0,0.005629572474087278,0,105.6309986114502,0,4.039412419001262,0,4.07712999979655,0,6.233699997266133,0,1.9590060313542683,0,37.64019266764323,0,5.150250593821208,0,0,440.48401896158856,0,872.1228942871093,66.94168422313332,342.62599690755206,202.0200334022284,0.0016117700045773138,0,5.12767001055181e-4,0,0,0,2.8102800051371255,0,0.1648529184361299,0,5.931329965591431,0,0.03641110068807999,0,9.987729946772257,0,0.001755270001012832,0,0,0,2.976399991894141e-4,0,2.0421500084921718e-4,0,361.43898264567054,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.947799682617188,0,667.6699370960007,0,0,0,0.13048699870705605,0,0,0 +2279,0,0,-0,-0,1.1165264838755649,5.716899991035461,0,0.005416242366967102,0,105.62900098164876,0,3.995882431666056,0,4.055459976196289,0,6.222099939982097,0,1.9216760993003845,0,37.27019341786703,0,5.1503305832544966,0,0,440.4920196533203,0,872.0758921305337,66.94168422313332,342.5979970296224,202.0200334022284,0.0014418300124816597,0,4.8373700216567766e-4,0,0,0,2.7166300217310586,0,0.1529181549946467,0,5.810830036799113,0,0.035364500557382904,0,9.941889921824137,0,0.0015364899882115424,0,0,0,2.6379900130753714e-4,0,1.9135099986063628e-4,0,361.39798482259107,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.94189993540446,0,667.6699370960007,0,0,0,0.12867399801810583,0,0,0 +2280,0,0,-0,-0,1.1165264838755649,5.716330051422119,0,0.005210992298088968,0,105.62700080871582,0,3.9528223276138306,0,4.033909956614177,0,6.210520068804423,0,1.8850361704826355,0,36.90379333496094,0,5.150400559107463,0,0,440.5000228881836,0,872.0328979492186,66.94168422313332,342.5699996948242,202.0200334022284,0.0012898100054978083,0,4.5635200270529214e-4,0,0,0,2.6260900100072226,0,0.14184830337762833,0,5.692779978116353,0,0.034347900499900184,0,9.896270036697388,0,0.0013449899852275848,0,0,0,2.3380699955547848e-4,0,1.792980001482647e-4,0,361.35698699951166,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.935999870300293,0,667.6699370960007,0,0,0,0.12688700233896574,0,0,0 +2281,0,0,-0,-0,1.1165264838755649,5.7157600323359175,0,0.00501353219927599,0,105.62500063578288,0,3.910222331682841,0,4.012469967206319,0,6.198959906895955,0,1.8490962485472362,0,36.54099305470785,0,5.150470574696858,0,0,440.5080261230469,0,871.99489847819,66.94168422313332,342.5429992675781,202.0200334022284,0.0011538199808758993,0,4.3051700049545616e-4,0,0,0,2.538580000400543,0,0.13157936558127403,0,5.57712996006012,0,0.03336059985061487,0,9.850850025812784,0,0.0011773599932591121,0,0,0,2.0722500024324594e-4,0,1.6800400044303387e-4,0,361.3159815470377,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.930099964141846,0,667.6699370960007,0,0,0,0.12512500087420145,0,0,0 +2282,0,0,-0,-0,1.1165264838755649,5.715190013249715,0,0.0048235420836135745,0,105.62300046284993,0,3.868082284927368,0,3.9911399682362876,0,6.187419931093852,0,1.8138563136259716,0,36.18169339497884,0,5.150550564130147,0,0,440.5160191853841,0,871.9609018961587,66.94168422313332,342.51499938964844,202.0200334022284,0.0010321700052979093,0,4.0614600099312764e-4,0,0,0,2.453980008761088,0,0.12205435397724311,0,5.46383003393809,0,0.032401700193683304,0,9.805649995803833,0,0.0010306200031967212,0,0,0,1.8366599882331988e-4,0,1.574219980587562e-4,0,361.27598317464185,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.924099763234455,0,667.6699370960007,0,0,0,0.1233869989713033,0,0,0 +2283,0,0,-0,-0,1.1165264838755649,5.714619994163513,0,0.004640762073298295,0,105.62099965413411,0,3.8264022866884866,0,3.9699300130208335,0,6.175909956296285,0,1.7792864044507344,0,35.82599353790283,0,5.150620539983113,0,0,440.5240173339844,0,871.9309031168618,66.94168422313332,342.4869969685872,202.0200334022284,9.23355997656472e-4,0,3.831550032676508e-4,0,0,0,2.3722100059191384,0,0.11321926862001419,0,5.352830012639363,0,0.031470400436470904,0,9.760649919509888,0,9.021789931769794e-4,0,0,0,1.6278599772097854e-4,0,1.4750600045469278e-4,0,361.23598480224604,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.91819969813029,0,667.6699370960007,0,0,0,0.12167299911379814,0,0,0 +2284,0,0,-0,-0,1.1165264838755649,5.7140499750773115,0,0.004464911956650515,0,105.61899884541829,0,3.785172243913015,0,3.948830008506775,0,6.164419968922933,0,1.7453864514827728,0,35.47389348347982,0,5.15069059530894,0,0,440.53102620442706,0,871.9039001464843,66.94168422313332,342.4590021769206,202.0200334022284,8.260119939222932e-4,0,3.6146600420276326e-4,0,0,0,2.293160001436869,0,0.10502311773598194,0,5.244099974632263,0,0.03056590026244521,0,9.71586012840271,0,7.897469962093359e-4,0,0,0,1.442809977258245e-4,0,1.3821599835258289e-4,0,361.19698079427076,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.91230010986328,0,667.6699370960007,0,0,0,0.11998300005992253,0,0,0 +2285,0,0,-0,-0,1.1165264838755649,5.713469982147217,0,0.004295731894671917,0,105.61699867248535,0,3.744392216205597,0,3.9278500080108643,0,6.152949968973796,0,1.7121065258979797,0,35.12509314219157,0,5.1507606108983355,0,0,440.53901926676434,0,871.879898071289,66.94168422313332,342.4310022989909,202.0200334022284,7.389319992701834e-4,0,3.410050000335711e-4,0,0,0,2.216749986012777,0,0.09742130835851033,0,5.137569983800252,0,0.029687500093132257,0,9.6712799072265625,0,6.91329007774281e-4,0,0,0,1.278790005017072e-4,0,1.2951099779456854e-4,0,361.1569849650065,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.906399885813396,0,667.6699370960007,0,0,0,0.11831600094834964,0,0,0 +2286,0,0,-0,-0,1.1165264838755649,5.712900002797444,0,0.004132951920231183,0,105.61399904886882,0,3.7040421962738037,0,3.9069799979527793,0,6.141499996185303,0,1.6794465879599254,0,34.77989355723063,0,5.1508305470148725,0,0,440.5470199584961,0,871.8579050699868,66.94168422313332,342.4030024210612,202.0200334022284,6.610350052748496e-4,0,3.2170299770465743e-4,0,0,0,2.1428900162378945,0,0.09036983673771222,0,5.033220012982686,0,0.028834299960484106,0,9.626899878184,0,6.051780025397117e-4,0,0,0,1.1334299961163197e-4,0,1.2135400174884126e-4,0,361.1179809570312,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.900499661763508,0,667.6699370960007,0,0,0,0.116672998915116,0,0,0 +2287,0,0,-0,-0,1.1165264838755649,5.712330023447673,0,0.0039763516979292035,0,105.61200014750163,0,3.6641321778297424,0,3.886210004488627,0,6.130069971084595,0,1.6474166611830394,0,34.4379940032959,0,5.1509106159210205,0,0,440.5550231933594,0,871.8389027913411,66.94168422313332,342.37500254313153,202.0200334022284,5.913520047518735e-4,0,3.03493997004504e-4,0,0,0,2.071490009625753,0,0.08382881619036198,0,4.93098000685374,0,0.028005600286026795,0,9.582729975382486,0,5.297650010713065e-4,0,0,0,1.0045900065354847e-4,0,1.1371099996419314e-4,0,361.07998148600257,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.89459991455078,0,667.6699370960007,0,0,0,0.11505299992859364,0,0,0 +2288,0,0,-0,-0,1.1165264838755649,5.7117600440979,0,0.0038256816721210876,0,105.60999933878581,0,3.624652167161306,0,3.865560015042623,0,6.118660012880961,0,1.616006722052892,0,34.099493980407715,0,5.150980591773987,0,0,440.56202443440753,0,871.8219045003254,66.94168422313332,342.3479970296224,202.0200334022284,5.290159994425873e-4,0,2.863159994982804e-4,0,0,0,2.002479980389277,0,0.07776154515643914,0,4.830820004145305,0,0.02720080005625884,0,9.53876002629598,0,4.6375099918805063e-4,0,0,0,8.90397004695842e-5,0,1.065500000549946e-4,0,361.0409825642903,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.888700008392334,0,667.6699370960007,0,0,0,0.11345500064392884,0,0,0 +2289,0,0,-0,-0,1.1165264838755649,5.711189905802409,0,0.0036807315967356167,0,105.60799916585286,0,3.585602104663849,0,3.8450200160344443,0,6.107279976209004,0,1.585186779499054,0,33.76429398854574,0,5.151050607363383,0,0,440.5700200398763,0,871.8059031168618,66.94168422313332,342.3199971516927,202.0200334022284,4.7325199799767387e-4,0,2.701109988265671e-4,0,0,0,1.9357599914073944,0,0.07213342748582363,0,4.732710003852844,0,0.026419099885970354,0,9.494999885559082,0,4.059649969955596e-4,0,0,0,7.891890042325637e-5,0,9.98403005117628e-5,0,361.00298309326166,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.882799943288166,0,667.6699370960007,0,0,0,0.11187899919847648,0,0,0 +2290,0,0,-0,-0,1.1165264838755649,5.710620005925496,0,0.0035412615591970584,0,105.60600026448567,0,3.546972115834554,0,3.824590007464091,0,6.095909992853801,0,1.5549668371677399,0,33.43239402770996,0,5.151120543479919,0,0,440.57802327473956,0,871.7918955485025,66.94168422313332,342.291997273763,202.0200334022284,4.2336799621504423e-4,0,2.548240008763969e-4,0,0,0,1.8712700108687084,0,0.0669128696123759,0,4.636579990386963,0,0.025659900158643723,0,9.451430002848307,0,3.5537999792722985e-4,0,0,0,6.994880034956925e-5,0,9.355300001819462e-5,0,360.9659805297851,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.87689971923828,0,667.6699370960007,0,0,0,0.11032499993840854,0,0,0 +2291,0,0,-0,-0,1.1165264838755649,5.710049986839294,0,0.0034070914844051003,0,105.60400009155273,0,3.5087521076202393,0,3.8042699893315635,0,6.084570010503133,0,1.5253268877665203,0,33.10379441579183,0,5.151190559069316,0,0,440.58502197265625,0,871.7799072265624,66.94168422313332,342.26399993896484,202.0200334022284,3.787430008136046e-4,0,2.404019990838909e-4,0,0,0,1.8089299996693928,0,0.06207027037938436,0,4.542409976323445,0,0.024922499898821115,0,9.408069928487143,0,3.111000017573436e-4,0,0,0,6.199839905699871e-5,0,8.766179962549359e-5,0,360.9279810587565,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.870999813079834,0,667.6699370960007,0,0,0,0.10879300038019817,0,0,0 +2292,0,0,-0,-0,1.1165264838755649,5.709479967753093,0,0.0032779914520991347,0,105.60200119018555,0,3.4709520737330117,0,3.7840500275293985,0,6.07325001557668,0,1.4962369501590729,0,32.778394063313804,0,5.1512605746587115,0,0,440.59302012125653,0,871.7689056396483,66.94168422313332,342.2360026041667,202.0200334022284,3.3882199932122603e-4,0,2.267970000199663e-4,0,0,0,1.7486699918905895,0,0.05757833582659563,0,4.450159986813863,0,0.02420639976238211,0,9.364909966786703,0,2.723379996799243e-4,0,0,0,5.495189998327987e-5,0,8.214169914329734e-5,0,360.8909810384114,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.865099747975666,0,667.6699370960007,0,0,0,0.10728200090428193,0,0,0 +2293,0,0,-0,-0,1.1165264838755649,5.70890998840332,0,0.003153791360091418,0,105.59999974568684,0,3.433552086353302,0,3.763950010140737,0,6.061949968338013,0,1.4676770269870758,0,32.45629437764486,0,5.151330550511678,0,0,440.6000264485677,0,871.7588958740233,66.94168422313332,342.20800018310547,202.0200334022284,3.031110002969702e-4,0,2.1396199978577593e-4,0,0,0,1.6904099881649017,0,0.053411467311282955,0,4.359780033429463,0,0.02351079989845554,0,9.32195003827413,0,2.3840700062767914e-4,0,0,0,4.8706399866205174e-5,0,7.69692996982485e-5,0,360.85398101806635,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.85920000076294,0,667.6699370960007,0,0,0,0.10579300113022327,0,0,0 +2294,0,0,-0,-0,1.1165264838755649,5.708330035209656,0,0.003034301334992051,0,105.5979995727539,0,3.3965620001157126,0,3.7439500093460083,0,6.050669987996419,0,1.4396670858065288,0,32.137294133504234,0,5.151390512784322,0,0,440.60801951090497,0,871.7489115397134,66.94168422313332,342.1800003051758,202.0200334022284,2.711639996656838e-4,0,2.018530006656268e-4,0,0,0,1.6341000000635784,0,0.04954636810968319,0,4.271239995956421,0,0.022835299838334322,0,9.279179811477661,0,2.0870399991205582e-4,0,0,0,4.317090042604832e-5,0,7.212279888335615e-5,0,360.81697591145826,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.85329993565877,0,667.6699370960007,0,0,0,0.10432300033668677,0,0,0 +2295,0,0,-0,-0,1.1165264838755649,5.707759976387024,0,0.002919341301700721,0,105.59499867757161,0,3.3599720199902854,0,3.724049965540568,0,6.039410034815471,0,1.4121971329053242,0,31.821394284566242,0,5.151460528373718,0,0,440.6150258382161,0,871.7409057617186,66.94168422313332,342.15199788411456,202.0200334022284,2.4258499858357632e-4,0,1.9043099988872805e-4,0,0,0,1.579669992129008,0,0.0459610391408205,0,4.1845000584920244,0,0.022179200158764917,0,9.23661986986796,0,1.827019987103995e-4,0,0,0,3.8264600031349495e-5,0,6.758160028160394e-5,0,360.7809855143229,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.847399870554607,0,667.6699370960007,0,0,0,0.10287500048677127,0,0,0 +2296,0,0,-0,-0,1.1165264838755649,5.707190036773682,0,0.002808731204519669,0,105.59299977620442,0,3.323781987031301,0,3.70426998535792,0,6.0281699895858765,0,1.3852471907933552,0,31.508694330851238,0,5.151530663172404,0,0,440.6220219930013,0,871.7328999837239,66.94168422313332,342.1230010986328,202.0200334022284,2.170190006533327e-4,0,1.796550010719026e-4,0,0,0,1.527049978574117,0,0.04263518409182628,0,4.099530021349589,0,0.021541900156686705,0,9.194240093231201,0,1.5994000083689267e-4,0,0,0,3.391599966562353e-5,0,6.332639956478185e-5,0,360.7449849446614,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.84149980545044,0,667.6699370960007,0,0,0,0.10144600023825963,0,0,0 +2297,0,0,-0,-0,1.1165264838755649,5.706620097160339,0,0.002702321178124597,0,105.59099960327148,0,3.2879719535509744,0,3.684590001900991,0,6.016960024833679,0,1.358817219734192,0,31.198994318644207,0,5.15160055955251,0,0,440.63002014160156,0,871.7259063720702,66.94168422313332,342.0949961344401,202.0200334022284,1.9414699878931666e-4,0,1.6948900156421587e-4,0,0,0,1.4761800070603688,0,0.039550103868047394,0,4.016279935836792,0,0.020923000139494736,0,9.152070124944052,0,1.4001499827524336e-4,0,0,0,3.0061699969034333e-5,0,5.933930030247817e-5,0,360.70898437499994,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.83559974034627,0,667.6699370960007,0,0,0,0.10003799945116043,0,0,0 +2298,0,0,-0,-0,1.1165264838755649,5.706050078074138,0,0.002599931186220298,0,105.58900006612141,0,3.2525519927342734,0,3.6650099953015647,0,6.005759994188945,0,1.3328972856203716,0,30.89239438374837,0,5.151670535405477,0,0,440.6370264689128,0,871.7199045817056,66.94168422313332,342.06699625651044,202.0200334022284,1.7368700234025405e-4,0,1.598979991589052e-4,0,0,0,1.4270100096861522,0,0.036688401053349175,0,3.9347299933433533,0,0.02032189986978968,0,9.110090017318726,0,1.2257200008510458e-4,0,0,0,2.6645500080727896e-5,0,5.560319944682609e-5,0,360.6739832560221,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.829800128936768,0,667.6699370960007,0,0,0,0.09864849969744682,0,0,0 +2299,0,0,-0,-0,1.1165264838755649,5.705480019251506,0,0.0025014311152820787,0,105.5869992574056,0,3.2175119519233704,0,3.645540018876394,0,5.9945900440216064,0,1.307477355003357,0,30.588794231414795,0,5.15173065662384,0,0,440.6440200805664,0,871.712905883789,66.94168422313332,342.03900146484375,202.0200334022284,1.5538299824887267e-4,0,1.508510007018534e-4,0,0,0,1.379480004310608,0,0.03403377501914898,0,3.854829986890157,0,0.01973810000345111,0,9.068300008773804,0,1.0730299921609306e-4,0,0,0,2.361759970881394e-5,0,5.210249977001998e-5,0,360.6389821370442,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.823899745941162,0,667.6699370960007,0,0,0,0.0972786998997132,0,0,0 +2300,0,0,-0,-0,1.1165264838755649,5.704910000165303,0,0.0024066610688654086,0,105.5850003560384,0,3.1828518907229104,0,3.626169979572296,0,5.983440001805623,0,1.2825373907883961,0,30.28819449742635,0,5.151800632476807,0,0,440.6520233154297,0,871.7069040934243,66.94168422313332,342.01100667317706,202.0200334022284,1.3900900012231432e-4,0,1.423150000240033e-4,0,0,0,1.3335399727026622,0,0.03157123069589337,0,3.7765600283940635,0,0.019170999992638826,0,9.026710033416748,0,9.393609919546482e-5,0,0,0,2.0933900335270057e-5,0,4.8822300110866e-5,0,360.60398610432935,4.353540131407314,47.98370086652653,38.911685227167034,5.429425722872646,8.26740897741847,-0.16590282527453667,18.817999839782715,0,667.6699370960007,0,0,0,0.0959280002862215,0,0,0 diff --git a/inst/input/tables/ssp126_emiss-constraints_rf.csv b/inst/input/tables/ssp126_emiss-constraints_rf.csv new file mode 100644 index 000000000..3c8dc57f8 --- /dev/null +++ b/inst/input/tables/ssp126_emiss-constraints_rf.csv @@ -0,0 +1,562 @@ +; ssp126 from rcmip +; hectordata 0.0.0.9000 +; commit dab9aad8750535b +; date Fri Nov 4 11:35:30 2022 +; UNITS:, PgC year-1, PgC year-1, PgC year-1, PgC year-1, Tg year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg CH4 year-1, ppm, Tg CO year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg N year-1, Tg year-1, Tg NMVOC year-1, Tg N year-1, Tg year-1, W m-2, ppt, ppt, Gg S year-1, W m-2, ppt, ppt, ppt, ppt, ppt, ppt +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_constrain,C2F6_emissions,CCl4_constrain,CCl4_emissions,CF4_constrain,CF4_emissions,CFC113_constrain,CFC113_emissions,CFC114_constrain,CFC114_emissions,CFC115_constrain,CFC115_emissions,CFC11_constrain,CFC11_emissions,CFC12_constrain,CFC12_emissions,CH3Br_constrain,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_constrain,CH3Cl_emissions,CH4_constrain,CH4_emissions,CO2_constrain,CO_emissions,HCFC141b_constrain,HCFC141b_emissions,HCFC142b_constrain,HCFC142b_emissions,HCFC22_constrain,HCFC22_emissions,HFC125_constrain,HFC125_emissions,HFC134a_constrain,HFC134a_emissions,HFC143a_constrain,HFC143a_emissions,HFC227ea_constrain,HFC227ea_emissions,HFC23_constrain,HFC23_emissions,HFC245_constrain,HFC245fa_emissions,HFC32_constrain,HFC32_emissions,HFC365_constrain,HFC365_emissions,HFC4310_constrain,HFC4310_emissions,N2O_constrain,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,RF_albedo,SF6_constrain,SF6_emissions,SO2_emissions,SV,halon1211_constrain,halon1211_emissions,halon1301_constrain,halon1301_emissions,halon2402_constrain,halon2402_emissions +1745,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,728.6180877685546,19.019783117809567,276.9859975179036,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7540486653645,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1746,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.704874674479,19.019783117809567,277.01399993896484,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7850443522135,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1747,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.8320821126301,19.019783117809567,277.0439987182617,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.80204772949213,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1748,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.2330983479817,19.019783117809567,277.07999928792316,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8170496622721,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1749,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.9769846598306,19.019783117809567,277.10900115966797,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8330459594726,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1750,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,731.4059956868489,19.019783117809567,277.1470031738281,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8650512695312,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1751,0.0025941063027029847,0.0826692695573487,0,0,2.0729259257736388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1072,0,457.00000254313153,4276.7685,731.838165283203,18.915108869931455,277.18800099690753,343.9263672486595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8940556844075,0.05578579647289745,6.860142184947855,59.08812628149409,3.8337729357251344,15.188716744277112,-0.00022945725475492763,0,0,1206.0681799841475,0.1857567460517512,0.004446572546536724,0.0077232726,0,0,0,0 +1752,0.0025952084646724115,0.0841901460141451,0,0,2.0643119329193533,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12502,0,457.00000254313153,4277.7049,732.8999735514321,18.889711811886766,277.22900136311847,341.8090339016869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.92705535888666,0.056839716429342754,6.819482036717451,58.63199702688318,3.8343718514044016,15.034475741403988,-4.5891450950985525e-4,0,0,1200.4278473396196,0.1857604715824308,0.004446572546536724,0.0077232726,0,0,0,0 +1753,0.0025953021590175993,0.08573900221733607,0,0,2.0719505635154682,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10373,0,457.00000254313153,4276.585999999999,733.634038289388,19.121377231171937,277.26300048828125,343.6754562091752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.9730555216471,0.057913547319122724,6.88143852899345,59.02634940020826,3.8177943228183677,15.18254515100842,-6.883717642647818e-4,0,0,1207.227098535096,0.1857617169069504,0.004446572546536724,0.0077232726,0,0,0,0 +1754,0.0025964043209870257,0.0873163529136683,0,0,2.09934978275426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07356,0,457.00000254313153,4274.9998,734.2020212809243,19.50906106501577,277.3040033976237,349.81562520064375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.01604461669916,0.059007665304832875,7.015189223980566,60.269945173845855,3.847331336983454,15.55877304959727,-9.178290190197105e-4,0,0,1232.9531143620388,0.18576213564093827,0.004446572546536724,0.0077232726,0,0,0,0 +1755,0.0025975064829564486,0.08892272231974611,0,0,2.099173164966012,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09182,0,457.00000254313153,4275.9598,734.7360788981118,19.500454933311694,277.3510030110677,348.144667955229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.05104319254554,0.06012245365563151,6.9439890428442705,59.824933724698546,3.8866528883154143,15.358182527090067,-0.0011472862737746368,0,0,1223.0826850431558,0.16149051004268924,0.004446572546536724,0.0077232726,0,0,0,0 +1756,0.002775090479167637,0.09055864429624946,0,0,2.0689154070023212,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08556000000002,0,457.00000254313153,4275.6306,735.4210001627603,19.46253659981589,277.38899993896484,343.32315167584505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.07905069986975,0.06125830288149874,6.92271155666652,58.94682931223554,3.780146274357017,15.195776625722106,-0.001376743528529566,0,0,1211.479201655296,-0.06413990375550595,0.004446572546536724,0.0077232726,0,0,0,0 +1757,0.0027761926411370656,0.09222466252535721,0,0,2.1479236761828795,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09137,0,457.00000254313153,4275.9361,735.8930308024087,20.023540664144175,277.4419987996419,355.9418922631908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.09605153401685,0.06241561087003213,7.047674128999731,61.263692996283645,3.9984362659957116,15.704819120374072,-0.0016062007832844925,0,0,1255.6882474413671,0.06548148963396255,0.004446572546536724,0.0077232726,0,0,0,0 +1758,0.002777294803106484,0.09392133069143445,0,0,2.120611409560707,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09662,0,457.00000254313153,4276.2118,736.2069956461587,19.93400532918585,277.48900095621747,351.839749049401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.12904612223304,0.06359478302582648,6.995459767973222,60.43461244378834,3.951609319926169,15.514611629339965,-0.0018356580380394208,0,0,1241.8061904390202,0.143706674085902,0.004446572546536724,0.0077232726,0,0,0,0 +1759,0.0027783969650759127,0.09564921266504378,0,0,2.1172674310973973,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08372,0,457.00000254313153,4275.5338,736.0988871256509,20.14146621388408,277.5399983723958,351.50776272566816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.1650466918945,0.06479623241248693,7.045958325346581,60.44526305257086,3.8825594605141793,15.574013491239148,-0.0020651152927943475,0,0,1238.6934463843995,0.17156026373747926,0.004446572546536724,0.0077232726,0,0,0,0 +1760,0.002778490659421102,0.09740888269034213,0,0,2.127804104941503,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04022,0,457.00000254313153,4273.2473,735.484171549479,20.416797144500503,277.6050033569336,354.41828530815224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.19305165608716,0.06602037989732504,7.1280482855702605,61.0517247888764,3.870426966375627,15.819063930323424,-0.002294572547549277,0,0,1250.820917255113,0.18098830087140405,0.004446572546536724,0.0077232726,0,0,0,0 +1761,0.0030417996868854222,0.09920092557592508,0,0,2.1377569894528237,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09143,0,457.00000254313153,4275.9395,735.7630208333333,20.45599016898809,277.6639989217122,354.70796791995804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.22205098470045,0.06726765429878842,7.080969808277224,60.98422720066375,3.9477855453840847,15.691915882574792,-0.0025240298023042032,0,0,1256.5481216489331,0.1841585443588585,0.004446572546536724,0.0077232726,0,0,0,0 +1762,0.0030429071320477096,0.10102593688918185,0,0,2.101748108909336,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08127,0,457.00000254313153,4275.4052,736.3031056722004,20.451687381976814,277.7320022583008,349.24969722773284,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3203315e-8,0,0,0,0,0,1.5142326e-6,0,0,0,0,274.25004831949866,0.06853849253667572,7.072547337152548,60.0270893345371,3.8056067222316985,15.52593530614623,-0.002753487057059132,0,0,1235.176016491452,-0.7198788864817063,0.004446572546536724,0.0077232726,0,0,0,0 +1763,0.003044014577209992,0.10288452315422644,0,0,2.1070297579949187,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09332,0,457.00000254313153,4276.0386,737.1810404459634,20.54517933681397,277.7959976196289,350.0593349220327,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6788058e-7,0,0,0,0,0,1.2367808e-5,0,0,0,0,274.30205535888666,0.06983333978518949,7.067982584358078,60.127066272688566,3.846149431214471,15.526762487788051,-0.0029829443118140585,0,0,1242.4313344000275,-0.4399601212913509,0.004446572546536724,0.0077232726,0,0,0,0 +1764,0.0030451220223722732,0.10477730205346951,0,0,2.0715492266986275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1104,0,457.00000254313153,4276.9364,738.1030629475911,20.26091721016315,277.8590037027995,342.04461065627544,0,0,0,0,0,0,0,0,0,0,0,0,5.745499576104152e-9,1.2683334e-6,0,0,0,0,3.1742572836890304e-7,2.4998684e-5,0,0,0,0,274.3400497436523,0.0711526496288805,6.89874574004507,58.43835716681741,3.8290033683946536,14.958698984764437,-0.003212401566568987,0,0,1212.8230980159792,-0.03904732457783037,0.004446572546536724,0.0077232726,0,0,0,0 +1765,0.0030462294675345533,0.10670490263289913,0,0,2.123600021913132,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07293,0,457.00000254313153,4274.9668,738.9860382080077,20.91915499807752,277.9129994710286,352.9327257663859,0,0,0,0,0,0,0,0,0,0,0,0,4.596399853321979e-8,1.3852706e-6,0,0,0,0,2.539405793792563e-6,3.0313258e-5,0,0,0,0,274.37204742431635,0.07249688422153833,7.112382325014417,60.629457859488916,3.8781552227346054,15.679924105503577,-0.0034418588213239137,0,0,1250.7252029507404,0.10958166609721692,0.004446572546536724,0.0077232726,0,0,0,0 +1766,0.0033962667106833934,0.10866796551113769,0,0,2.1104599771353545,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07758,0,457.00000254313153,4275.2111,739.831085205078,20.853591900632743,277.95800018310547,349.3806450006132,0,0,0,0,0,0,0,0,0,0,0,0,9.192799588220169e-8,1.4212948e-6,0,0,0,0,5.078811454950483e-6,3.4371719e-5,0,0,0,0,274.3920516967773,0.07386651444808362,7.0362965307494045,59.85878462626717,3.884852897551278,15.358830814708325,-0.00367131607607884,0,0,1244.142076911234,-0.17848752670419268,0.004446572546536724,0.0077232726,0,0,0,0 +1767,0.003397374155845676,0.11066714309234521,0,0,2.112460701438636,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08566,0,457.00000254313153,4275.6359,740.7289835611978,20.999179455660748,278.0169982910156,349.61609899642303,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199471148095e-7,1.4573362e-6,0,0,0,0,7.618217182425724e-6,3.8432158e-5,0,0,0,0,274.42605082194007,0.07526202008951893,7.045382426953697,59.89102690050866,3.880476348727496,15.400564496222026,-0.0039007733308337685,0,0,1243.3080558862168,-0.23003967707403605,0.004446572546536724,0.0077232726,0,0,0,0 +1768,0.003398481601007963,0.1127030997830392,0,0,2.183132040203538,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04673,0,457.00000254313153,4273.5893,741.2220560709634,21.659452113517297,278.07799530029297,362.65368482709385,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599176440337e-7,1.4932143e-6,0,0,0,0,1.0157622909900965e-5,4.247379e-5,0,0,0,0,274.44704691569007,0.07668388999099586,7.223617820830233,62.365825552982606,4.039005153575375,16.063730202230957,-0.004130230585588698,0,0,1294.7054231244865,0.0295441238874522,0.004446572546536724,0.0077232726,0,0,0,0 +1769,0.0033995890461702483,0.11477651221290339,0,0,2.1376337416440134,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0767,0,457.00000254313153,4275.165,741.7470499674478,21.496335350339965,278.135004679362,355.02541845168975,0,0,0,0,0,0,0,0,0,0,0,0,2.298199900015637e-7,1.5293427e-6,0,0,0,0,1.2697028751063044e-5,4.6544254e-5,0,0,0,0,274.4680506388346,0.07813262223305735,7.157863703024064,60.95040360500106,3.9146198633161595,15.735094791574257,-0.004359687840343624,0,0,1273.3622210005092,0.1325346158749756,0.004446572546536724,0.0077232726,0,0,0,0 +1770,0.003400696491332528,0.11688806945965896,0,0,2.1393647387522594,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04544,0,457.00000254313153,4273.5216,742.3010152180989,21.63439757224449,278.1939977010091,355.3605475565106,0,0,0,0,0,0,0,0,0,0,0,0,2.757839894229619e-7,1.5651961e-6,0,0,0,0,1.5236434516433897e-5,5.0583038e-5,0,0,0,0,274.49504852294916,0.0796087243061151,7.155978283657899,60.96602720867275,3.9271229910537153,15.742715085469241,-0.004589145095098551,0,0,1277.4922103572562,0.03636234846097209,0.004446572546536724,0.0077232726,0,0,0,0 +1771,0.0037688917930248853,0.11903847327807247,0,0,2.1009097006210053,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07227,0,457.00000254313153,4274.9318,742.8711649576821,21.428921101329358,278.2700017293294,347.8619882938519,0,0,0,0,0,0,0,0,0,0,0,0,3.2174798529164644e-7,1.6013494e-6,0,0,0,0,1.7775840206013527e-5,5.4656378000000014e-5,0,0,0,0,274.5130513509114,0.08111271328822328,7.069218405010363,59.42424032933085,3.843192572805414,15.321977391799376,-0.0048186023498534795,0,0,1230.1282386704063,0.08889303627750589,0.004446572546536724,0.0077232726,0,0,0,0 +1772,0.00377000487949438,0.12122843833317697,0,0,2.0870775413423877,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08887,0,457.00000254313153,4275.8046,744.0189666748046,21.39461571539237,278.33399963378906,344.613473832749,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198589728254e-7,1.6374741e-6,0,0,0,0,2.0315245971384382e-5,5.8726423e-5,0,0,0,0,274.5310490926106,0.08264511602621083,7.043230561502576,58.72495294608385,3.8129800371340568,15.114183286240658,-0.0050480596046084064,0,0,1217.8363475826973,0.15110052169091734,0.004446572546536724,0.0077232726,0,0,0,0 +1773,0.003771117965963877,0.12345869243778378,0,0,2.0927556031478227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.06952,0,457.00000254313153,4274.7874,744.6629842122395,21.59523139318095,278.41199493408203,345.7768090889352,0,0,0,0,0,0,0,0,0,0,0,0,4.136759793974913e-7,1.6733555e-6,0,0,0,0,2.2854651888337685e-5,6.276843000000001e-5,0,0,0,0,274.54705047607416,0.08420646932023572,7.104503735011084,58.916568849809806,3.795742518659598,15.204663791112324,-0.005277516859363335,0,0,1220.6866453772807,0.17402255695782867,0.004446572546536724,0.0077232726,0,0,0,0 +1774,0.0037722310524333762,0.12572997679436368,0,0,2.1549007405251683,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0265,0,457.00000254313153,4272.5262,744.8780721028645,22.25970772945681,278.49099985758465,358.1035850352457,0,0,0,0,0,0,0,0,0,0,0,0,4.5963998474007894e-7,1.709014e-6,0,0,0,0,2.539405750212609e-5,6.678474599999999e-5,0,0,0,0,274.56504567464185,0.08579732011182588,7.347701469094086,61.31335787055999,3.8921060554545215,15.87559317662792,-0.005506974114118261,0,0,1266.4286163930858,0.18181443567658306,0.004446572546536724,0.0077232726,0,0,0,0 +1775,0.0037733441389028706,0.12804304624137816,0,0,2.148996596875075,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05246,0,457.00000254313153,4273.8905,745.3670603434243,22.200963290559795,278.58600362141925,355.04717285558434,0,0,0,0,0,0,0,0,0,0,0,0,5.056039735033361e-7,1.7452255e-6,0,0,0,0,2.7933463115914492e-5,7.0864778e-5,0,0,0,0,274.5790456136067,0.08741822567547253,7.269644819584187,60.54083046418634,3.9181029245147934,15.589135703603631,-0.0057364313688731865,0,0,1250.604503536799,0.18443600769588672,0.004446572546536724,0.0077232726,0,0,0,0 +1776,0.004161708793079992,0.13039866950414225,0,0,2.1121431315177817,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03943999999998,0,457.00000254313153,4273.2061,746.0480702718098,22.141942125209106,278.68299865722656,348.8985525123486,0,0,0,0,0,0,0,0,0,0,0,0,5.515679741089722e-7,1.7810977e-6,0,0,0,0,3.0472869184450246e-5,7.490574e-5,0,0,0,0,274.59404754638666,0.08906975381384338,7.261469977422546,59.38114479685163,3.777483547468073,15.370077015958627,-0.005965888623628117,0,0,1235.2601205170242,0.1853168155815639,0.004446572546536724,0.0077232726,0,0,0,0 +1777,0.004162821879549489,0.13279762945030274,0,0,2.170244783620918,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05273,0,457.00000254313153,4273.9048,746.7369181315103,22.568710059808843,278.7739969889323,357.54536101292035,0,0,0,0,0,0,0,0,0,0,0,0,5.975319747146083e-7,1.8172253e-6,0,0,0,0,3.301227479823865e-5,7.8976112e-5,0,0,0,0,274.6060485839843,0.09075248305668364,7.355973763265293,60.89349007083899,3.9379814138510616,15.673457529791746,-0.0061953458783830465,0,0,1262.6435516726208,0.1856126856704365,0.004446572546536724,0.0077232726,0,0,0,0 +1778,0.004163934966018991,0.13524072335001636,0,0,2.19800140223097,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04465,0,457.00000254313153,4273.48,746.7510579427083,22.856080929571224,278.86599985758465,362.75541346308773,0,0,0,0,0,0,0,0,0,0,0,0,6.434959753202444e-7,1.8531337e-6,0,0,0,0,3.5551680412027054e-5,8.3021224e-5,0,0,0,0,274.61804707845045,0.09246700286347481,7.434606066614661,61.78348694597739,4.021077006745745,15.899456247670447,-0.006424803133137972,0,0,1282.2802932337786,0.18571207513321009,0.004446572546536724,0.0077232726,0,0,0,0 +1779,0.004165048052488488,0.1377287631409144,0,0,2.1596157774386384,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03691,0,457.00000254313153,4273.0734,746.907023111979,22.820635694370733,278.9590021769206,355.9261715181252,0,0,0,0,0,0,0,0,0,0,0,0,6.894599664519774e-7,1.889034e-6,0,0,0,0,3.809108632898036e-5,8.706542400000001e-5,0,0,0,0,274.6290486653645,0.09421391382992209,7.418773457145868,60.500814881249,3.8656452035830986,15.627457862925702,-0.006654260387892898,0,0,1253.8091981813902,0.18574546502203013,0.004446572546536724,0.0077232726,0,0,0,0 +1780,0.004167169606582223,0.14026257569794193,0,0,2.18926758767753,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98817,0,457.00000254313153,4270.5109999999995,747.2310638427733,23.24616665378551,279.0540033976237,361.61404216072185,0,0,0,0,0,0,0,0,0,0,0,0,7.354239623206619e-7,1.9244033000000003e-6,0,0,0,0,4.063049224593366e-5,9.1048394e-5,0,0,0,0,274.639050801595,0.09599382789834296,7.569429120654667,61.61859566014493,3.8711479642945226,16.01838080056119,-0.0068837176426478274,0,0,1274.797708672403,0.18575668147078706,0.004446572546536724,0.0077232726,0,0,0,0 +1781,0.004659412904951052,0.14284300310816161,0,0,2.189441199921453,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04236000000002,0,457.00000254313153,4273.3596,747.7660471598306,23.249655483903965,279.14499918619794,360.09005386289476,0,0,0,0,0,0,0,0,0,0,0,0,7.81387962926298e-7,1.9610810000000003e-6,0,0,0,0,4.316989755655717e-5,9.5182182e-5,0,0,0,0,274.6470464070637,0.09780736857203022,7.505783352638315,61.19330647262292,3.9207239231952387,15.80695226528239,-0.007113174897402756,0,0,1277.5362524488116,0.18576045057214427,0.004446572546536724,0.0077232726,0,0,0,0 +1782,0.00466053247031568,0.14547090295061266,0,0,2.160522701160256,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03125,0,457.00000254313153,4272.7759,748.2900187174478,23.341758118914438,279.2430013020833,356.04655462228243,0,0,0,0,0,0,0,0,0,0,0,0,8.273519635319341e-7,1.9969148e-6,0,0,0,0,4.570930377667537e-5,9.9218691e-5,0,0,0,0,274.65404764811194,0.09965517113366511,7.519625787694825,60.48572145305894,3.7938381853855025,15.712820826828775,-0.007342632152157681,0,0,1261.0508762359207,0.18576171303887845,0.004446572546536724,0.0077232726,0,0,0,0 +1783,0.004662660503304549,0.14814714858131856,0,0,2.150725589743228,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0436,0,457.00000254313153,4273.4248,748.6270294189452,23.379916787266467,279.33999888102215,354.28692425367274,0,0,0,0,0,0,0,0,0,0,0,0,8.733159641375702e-7,2.0330816e-6,0,0,0,0,4.824870908729887e-5,1.0329359e-4,0,0,0,0,274.6580505371093,0.1015378828678566,7.496232273464098,60.10171272373322,3.7887381780047664,15.607260472139073,-0.007572089406912609,0,0,1258.691215611721,-1.6071113091275233,0.004446572546536724,0.0077232726,0,0,0,0 +1784,0.004663780068669177,0.15087262942353824,0,0,2.140542212443426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05531,0,457.00000254313153,4274.0405,748.9340260823567,23.29404230240209,279.4340006510417,350.5694962640399,0,0,0,0,0,0,0,0,0,0,0,0,9.192799552693032e-7,2.0692567e-6,0,0,0,0,5.078811530741708e-5,1.0736946e-4,0,0,0,0,274.6640548706054,0.10345616328788484,7.381156400424443,59.21225989324307,3.835360348467436,15.228141255684468,-0.007801546661667537,0,0,1241.0913844308948,-3.4875496425880166,0.004446572546536724,0.0077232726,0,0,0,0 +1785,0.004666993144531652,0.1536482512633568,0,0,2.1658396912622853,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02817,0,457.00000254313153,4272.6136,749.2520395914712,23.80210553725873,279.53200276692706,356.805125351722,0,0,0,0,0,0,0,0,0,0,0,0,9.652439748227455e-7,2.1048124e-6,0,0,0,0,5.332752031487568e-5,1.113739e-4,0,0,0,0,274.66904958089185,0.1054106843667286,7.538152323485599,60.494479362546464,3.8216491921096964,15.732711479772949,-0.00803100391642247,0,0,1266.5681498543852,-1.3227211965923305,0.004446572546536724,0.0077232726,0,0,0,0 +1786,0.005295379572172684,0.15647493655071468,0,0,2.158683484868033,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02684000000001,0,457.00000254313153,4272.5442,749.563980102539,23.831994998220747,279.6290003458659,354.20587729579694,0,0,0,0,0,0,0,0,0,0,0,0,1.011207928058866e-6,2.14077e-6,0,0,0,0,5.586692683815878e-5,1.1542471e-4,0,0,0,0,274.67605336507154,0.10740213077245707,7.4910842541914535,59.91468240707549,3.8263162148060967,15.467157122376957,-0.008260461171177394,0,0,1263.905903422694,-0.4872575238005176,0.004446572546536724,0.0077232726,0,0,0,0 +1787,0.005297507605161552,0.15935362470597414,0,0,2.18517929356942,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03415,0,457.00000254313153,4272.9283,749.6690826416014,24.17652817967206,279.72900136311847,358.7933682521366,0,0,0,0,0,0,0,0,0,0,0,0,1.0571719712970662e-6,2.1768802999999995e-6,0,0,0,0,5.840633214878229e-5,1.1949308e-4,0,0,0,0,274.6780471801757,0.10943120010806894,7.555171969721947,60.75335707654267,3.8851079963013144,15.71033145518615,-0.00848991842593232,0,0,1281.3314192960927,-0.09613776148013498,0.004446572546536724,0.0077232726,0,0,0,0 +1788,0.005298627170526176,0.16228527243212662,0,0,2.255223483707013,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9922,0,457.00000254313153,4270.7227,750.1610209147134,24.855928924260272,279.83099873860675,371.3570923496072,0,0,0,0,0,0,0,0,0,0,0,0,1.1031359387440414e-6,2.2120831e-6,0,0,0,0,6.094573836890049e-5,1.2345688999999995e-4,0,0,0,0,274.67704772949213,0.11149860315586238,7.730934740743885,63.12433046674855,4.038519355079948,16.343354337191045,-0.008719375680687248,0,0,1326.080725437415,0.0885310651741068,0.004446572546536724,0.0077232726,0,0,0,0 +1789,0.005300755203515047,0.16527085403274291,0,0,2.2076646319075275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0242,0,457.00000254313153,4272.405,750.6470489501952,24.717072836600927,279.93299865722656,363.4416445787676,0,0,0,0,0,0,0,0,0,0,0,0,1.149099944086629e-6,2.2486571e-6,0,0,0,0,6.348514337635909e-5,1.2757871e-4,0,0,0,0,274.6780522664387,0.11360506412642196,7.663516243062957,61.632292379507476,3.911091424062233,16.00040861482673,-0.008948832935442175,0,0,1300.9350554928549,0.1529858926017705,0.004446572546536724,0.0077232726,0,0,0,0 +1790,0.005302883236503912,0.16831136173577357,0,0,2.2164369958956196,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99139,0,457.00000254313153,4270.6805,751.1640370686848,24.942208573783375,280.03700256347656,364.880216392627,0,0,0,0,0,0,0,0,0,0,0,0,1.195063968377023e-6,2.2839743e-6,0,0,0,0,6.60245495964773e-5,1.3155567e-4,0,0,0,0,274.67705281575513,0.11575132091230927,7.680254371033305,61.84599180813865,3.9372032070765473,16.056743908676,-0.009178290190197105,0,0,1304.8004807748046,0.1747471382296157,0.004446572546536724,0.0077232726,0,0,0,0 +1791,0.005920182770600551,0.1714078060233054,0,0,2.172583556470899,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02128,0,457.00000254313153,4272.2515,751.7080535888671,24.778432167331218,280.14099884033203,356.6583861664455,0,0,0,0,0,0,0,0,0,0,0,0,1.2410279168761917e-6,2.320551e-6,0,0,0,0,6.85639552102657e-5,1.3567783e-4,0,0,0,0,274.6740468343098,0.11793812534654649,7.556943543496139,60.21873920423577,3.848117366332663,15.616449876377857,-0.00940774744495203,0,0,1284.7688041559788,0.18206199111341248,0.004446572546536724,0.0077232726,0,0,0,0 +1792,0.006098811288557544,0.17456121596738536,0,0,2.1616507929601063,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04466,0,457.00000254313153,4273.4807,752.2780151367186,24.818892944319888,280.2409973144531,354.25153761087523,0,0,0,0,0,0,0,0,0,0,0,0,1.286991960114392e-6,2.3570319e-6,0,0,0,0,7.110336143038391e-5,1.3978892e-4,0,0,0,0,274.6740468343098,0.12016624346598324,7.499155044750518,59.70568574139235,3.8521685509833974,15.44666919254658,-0.009637204699706955,0,0,1279.936623401035,0.18451935326733201,0.004446572546536724,0.0077232726,0,0,0,0 +1793,0.00610508215549315,0.17777263957202216,0,0,2.1532738339280715,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02605,0,457.00000254313153,4272.5025,752.6820678710936,25.03153140920904,280.33199818929035,353.37230933667234,0,0,0,0,0,0,0,0,0,0,0,0,1.3329559275613672e-6,2.3926083e-6,0,0,0,0,7.364276643784251e-5,1.4379579e-4,0,0,0,0,274.65905253092444,0.12243645577963895,7.518120739119681,59.58493949599902,3.7981346475872892,15.477979537880952,-0.009866661954461885,0,0,1276.6758910223705,0.18534481647704806,0.004446572546536724,0.0077232726,0,0,0,0 +1794,0.006092419359098298,0.18104314412147968,0,0,2.2138431157688125,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98417,0,457.00000254313153,4270.3009999999995,753.2520446777343,25.76753777758947,280.41500091552734,365.72191403060503,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199329039548e-6,2.4276195000000003e-6,0,0,0,0,7.618217265796072e-5,1.4773748e-4,0,0,0,0,274.6480560302734,0.1247495575421151,7.731535991085819,62.03822453198564,3.901984420737959,16.16525997375536,-0.010096119209216816,0,0,1323.3915439011364,0.18562210038833984,0.004446572546536724,0.0077232726,0,0,0,0 +1795,0.006095932503617563,0.18437381653497847,0,0,2.2026922727614937,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01093,0,457.00000254313153,4271.7076,753.8410644531249,25.77334281488129,280.4919967651367,362.19212268926736,0,0,0,0,0,0,0,0,0,0,0,0,1.4248839571943488e-6,2.4642054e-6,0,0,0,0,7.872157827174912e-5,1.5186068000000002e-4,0,0,0,0,274.63105265299475,0.12710635903217238,7.626169221355247,61.24273214189555,3.9191066213899726,15.883131946283404,-0.01032557646397174,0,0,1307.1177907303108,0.18571524277301074,0.004446572546536724,0.0077232726,0,0,0,0 +1796,0.006396386441099536,0.18776576372792214,0,0,2.1531546155773227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99978,0,457.00000254313153,4271.1214,754.5180511474608,25.74058406529963,280.5549952189128,354.4783029356138,0,0,0,0,0,0,0,0,0,0,0,0,1.4708479056935175e-6,2.4998985e-6,0,0,0,0,8.126098449186732e-5,1.55881e-4,0,0,0,0,274.6150538126627,0.1295076858365712,7.5818630966127785,59.864242428463136,3.749609514115161,15.62836980130604,-0.010555033718726669,0,0,1286.4148371024328,0.056138903072538514,0.004446572546536724,0.0077232726,0,0,0,0 +1797,0.006712627262260326,0.19122011297976946,0,0,2.2134750361996645,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01623,0,457.00000254313153,4271.986,755.2560729980468,26.23006225836581,280.6230010986328,363.54823719907995,0,0,0,0,0,0,0,0,0,0,0,0,1.5168119489317178e-6,2.5362748e-6,0,0,0,0,8.380038949932593e-5,1.5998003e-4,0,0,0,0,274.6010538736979,0.1319543791392746,7.636302581611899,61.4713769474247,3.9409741021501565,15.938653048219956,-0.010784490973481595,0,0,1322.1792002170396,-0.04279485298025665,0.004446572546536724,0.0077232726,0,0,0,0 +1798,0.006990649026827593,0.19473801230867469,0,0,2.2340562829342026,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0081,0,457.00000254313153,4271.559,756.1130472819009,26.546440122432795,280.68200429280597,367.6501027985187,0,0,0,0,0,0,0,0,0,0,0,0,1.562775925852596e-6,2.5720343e-6,0,0,0,0,8.633979571944413e-5,1.6400798999999998e-4,0,0,0,0,274.5840530395507,0.1344472960161143,7.671017715782881,62.197639026391784,4.015700360730371,16.12667274116127,-0.011013948228236524,0,0,1344.4943107799907,0.057545267787991024,0.004446572546536724,0.0077232726,0,0,0,0 +1799,0.007363034100288113,0.19832063085301946,0,0,2.2072921648839388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99068,0,457.00000254313153,4270.6431,756.9420471191405,26.706488169365446,280.7529983520508,363.4860469038741,0,0,0,0,0,0,0,0,0,0,0,0,1.6087399217212806e-6,2.6075323e-6,0,0,0,0,8.887920133323253e-5,1.6800578999999998e-4,0,0,0,0,274.5700480143229,0.13698730973502452,7.674462849763394,61.49623019706863,3.882903388386678,16.03734278779562,-0.011243405482991452,0,0,1332.7327654492608,0.14035414546167346,0.004446572546536724,0.0077232726,0,0,0,0 +1800,0.007853247961014498,0.20196915925996428,0,0,2.2159740553936684,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95838,0,457.00000254313153,4268.9449,757.7620493570962,27.056343077702923,280.83399709065753,365.8466368441075,0,0,0,0,0,0,0,0,0,0,0,0,1.6547039554855776e-6,2.6425936e-6,0,0,0,0,9.141860694702093e-5,1.7195328999999998e-4,0,0,0,0,274.54705047607416,0.13957531006194712,7.7406453217716145,62.00320914073126,3.867691465248536,16.242141697691363,-0.011477676635976337,0,0,1351.4018850842497,0.17040288697636866,0.004446572546536724,0.0077232726,0,0,0,0 +1801,0.0077923631049037195,0.2056848100811483,0,0,2.219401689900871,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01099,0,457.00000254313153,4271.7107,758.5840606689452,27.12488718150826,280.9189987182617,364.91706838648093,0,0,0,0,0,0,0,0,0,0,0,0,1.7006678945108433e-6,2.6800125e-6,0,0,0,0,9.395801256080934e-5,1.7617249e-4,0,0,0,0,274.5320510864257,0.1422122035725165,7.701186978248275,61.665647788634544,3.9218437626561613,16.063733218320355,-0.011716461343221001,0,0,1346.3126694277855,0.1805980962819972,0.004446572546536724,0.0077232726,0,0,0,0 +1802,0.010116776318211833,0.20946881817566826,0,0,2.2026926609955066,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99468,0,457.00000254313153,4270.8532,759.5070699055989,27.339784315547476,280.9939956665039,362.96270750693964,0,0,0,0,0,0,0,0,0,0,0,0,1.7466319377490436e-6,2.7155059e-6,0,0,0,0,9.649741878092755e-5,1.8016977e-4,0,0,0,0,274.5230509440104,0.14489891396963264,7.763054085257172,61.32615659022455,3.814905719116379,16.0758236117733,-0.011955246050465669,0,0,1365.7924593201149,0.18402739824539616,0.004446572546536724,0.0077232726,0,0,0,0 +1803,0.008763957676258299,0.2133224411204717,0,0,2.1800158282432216,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0108,0,457.00000254313153,4271.7009,760.5080464680989,27.320499854247753,281.07299550374347,358.65077997506035,0,0,0,0,0,0,0,0,0,0,0,0,1.7925959146699217e-6,2.7519421e-6,0,0,0,0,9.903682439471595e-5,1.8427573e-4,0,0,0,0,274.50505065917963,0.1476363824070339,7.720863756565482,60.404341817460505,3.773697198795284,15.83103087932591,-0.01219403075771034,0,0,1340.0232615916289,0.18517955647392584,0.004446572546536724,0.0077232726,0,0,0,0 +1804,0.009565590378222546,0.2172469596283,0,0,2.197298086929074,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0121,0,457.00000254313153,4271.7691,761.5410817464192,27.46474997353236,281.15699768066406,359.52869597563125,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599105386063e-6,2.7879493e-6,0,0,0,0,1.0157623000850435e-4,1.8833223e-4,0,0,0,0,274.4860483805338,0.1504255678189829,7.687086730342071,60.36470274902327,3.8714733047891783,15.676248110600966,-0.012432815464955008,0,0,1347.9906823261654,0.1855665834344882,0.004446572546536724,0.0077232726,0,0,0,0 +1805,0.009351564248471856,0.2212436779733203,0,0,2.215042398148324,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98963,0,457.00000254313153,4270.588,762.6710561116536,27.95079819780367,281.23399607340497,364.30370432998336,0,0,0,0,0,0,0,0,0,0,0,0,1.8845239443029034e-6,2.8232141e-6,0,0,0,0,1.0411563562229276e-4,1.9230319e-4,0,0,0,0,274.46604665120435,0.15326744725618094,7.835162208853216,61.31991145746931,3.843518327224849,16.094154796194182,-0.012671600172199671,0,0,1367.0219318674867,0.18569659271698705,0.004446572546536724,0.0077232726,0,0,0,0 +1806,0.009786482457224585,0.22531392442458775,0,0,2.222822584756122,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98239,0,457.00000254313153,4270.2074,763.799077351888,28.134372446801326,281.32200113932294,364.34322933574117,0,0,0,0,0,0,0,0,0,0,0,0,1.930487997015007e-6,2.8589339e-6,0,0,0,0,1.0665504184241097e-4,1.9632654e-4,0,0,0,0,274.44705200195307,0.15616301622802836,7.843541453054056,61.22344968188294,3.8770122853259146,15.951443167692844,-0.01291038487944434,0,0,1370.2972329819197,0.18574025872045344,0.004446572546536724,0.0077232726,0,0,0,0 +1807,0.01047013855726404,0.22945905168748248,0,0,2.2398719818574606,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99423,0,457.00000254313153,4270.8298,765.0220794677733,28.45865602722048,281.40900166829425,367.234932813752,0,0,0,0,0,0,0,0,0,0,0,0,1.976451850775144e-6,2.8952686e-6,0,0,0,0,1.0919444745619937e-4,2.0042079e-4,0,0,0,0,274.4280471801757,0.15911328905135125,7.906227328891799,61.706469136452746,3.9067413834348796,16.117564084518662,-0.013149169586689009,0,0,1389.725529173022,0.1857549291426783,0.004446572546536724,0.0077232726,0,0,0,0 +1808,0.0097850874703066491,0.23368043735326766,0,0,2.311936484434354,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95199,0,457.00000254313153,4268.6094,766.3190816243489,29.185241168144344,281.4959996541341,380.03527200344246,0,0,0,0,0,0,0,0,0,0,0,0,2.022415856117732e-6,2.9298066e-6,0,0,0,0,1.1173385246365797e-4,2.0430798e-4,0,0,0,0,274.41105143229163,0.16211929920571624,8.095303457182244,64.08195973155631,4.0703582727403695,16.731546899631116,-0.013387954293933677,0,0,1425.5751228095764,0.1857598571570931,0.004446572546536724,0.0077232726,0,0,0,0 +1809,0.009793704265605399,0.23797948435691788,0,0,2.267442640293564,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.979,0,457.00000254313153,4270.0292,767.6550801595051,29.128658126909023,281.56599680582684,372.8486855412818,0,0,0,0,0,0,0,0,0,0,0,0,2.068379899355932e-6,2.9666566e-6,0,0,0,0,1.1427325929010597e-4,2.084616e-4,0,0,0,0,274.3830540974934,0.16518209969545813,8.062766978193096,62.71002212876877,3.9400684962479615,16.440165993612062,-0.013626739001178344,0,0,1403.1315870359595,-3.365688134186352,0.004446572546536724,0.0077232726,0,0,0,0 +1810,0.010412685282412803,0.24235762144337059,0,0,2.279523715758953,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93988,0,457.00000254313153,4267.9729,769.1471150716145,29.42453241885191,281.6480026245117,374.7180119050739,0,0,0,0,0,0,0,0,0,0,0,0,2.1143439425941324e-6,3.001229600000001e-6,0,0,0,0,1.1681266429756458e-4,2.1235282e-4,0,0,0,0,274.3600463867187,0.16830276341854683,8.107079152206923,62.97351665449524,3.9615915998724422,16.525388081401466,-0.013865523708423014,0,0,1414.1945614469914,-2.313830028435405,0.004446572546536724,0.0077232726,0,0,0,0 +1811,0.011014901476711613,0.24681630364235504,0,0,2.252530235973812,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96903,0,457.00000254313153,4269.505,770.71804300944,29.40578755819684,281.71799723307294,369.2694863079116,0,0,0,0,0,0,0,0,0,0,0,0,2.1603079858323326e-6,3.0381873e-6,0,0,0,0,1.1935207051768278e-4,2.1651886e-4,0,0,0,0,274.3340479532877,0.17148238354242323,8.026948341108737,61.82960599561912,3.9187456997844685,16.18886557071267,-0.014104308415667684,0,0,1403.686743399878,-0.7123016214302859,0.004446572546536724,0.0077232726,0,0,0,0 +1812,0.011395911929257216,0.2513570127519567,0,0,2.228006934512883,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99029,0,457.00000254313153,4270.6225,772.2101186116536,29.420298496849927,281.7899983723958,364.5806874718721,0,0,0,0,0,0,0,0,0,0,0,0,2.20627183959247e-6,3.0749001e-6,0,0,0,0,1.2189147552514139e-4,2.2065669e-4,0,0,0,0,274.3040517171223,0.17472207388693542,7.965169636083453,60.85746996681422,3.875988658118611,15.929050627989685,-0.014343093122912353,0,0,1394.884132023951,-0.11856299687933905,0.004446572546536724,0.0077232726,0,0,0,0 +1813,0.011449080560791872,0.25598125783107806,0,0,2.2319968590304815,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97005,0,457.00000254313153,4269.5589,773.7009938557942,29.7784760297943,281.8580017089844,365.91388742059627,0,0,0,0,0,0,0,0,0,0,0,0,2.2522358449350577e-6,3.110098e-6,0,0,0,0,1.244308817452596e-4,2.2461994e-4,0,0,0,0,274.2670516967773,0.17802296931450928,8.032995952278533,61.13613019851266,3.844088557026285,16.064915035546967,-0.014581877830157016,0,0,1400.3255529877902,0.08341540584179588,0.004446572546536724,0.0077232726,0,0,0,0 +1814,0.011703715690574799,0.26069057570095894,0,0,2.291579691300283,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93883999999998,0,457.00000254313153,4267.9182,774.8281351725259,30.547851858136706,281.9310048421224,377.9855416791419,0,0,0,0,0,0,0,0,0,0,0,0,2.298199888173258e-6,3.1448486e-6,0,0,0,0,1.269702879653778e-4,2.2853159e-4,0,0,0,0,274.2310485839843,0.18138622612769045,8.255365791822651,63.491928228846156,3.9468734522371403,16.719923485538892,-0.014820662537401687,0,0,1449.119879767822,0.1513774178324831,0.004446572546536724,0.0077232726,0,0,0,0 +1815,0.012094116593579975,0.2654865314559236,0,0,2.2873246936294374,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94955,0,457.00000254313153,4268.4808,776.1400197347004,30.644339540877155,281.9919967651367,375.58066479556715,0,0,0,0,0,0,0,0,0,0,0,0,2.344163931411458e-6,3.1811772e-6,0,0,0,0,1.295096929728364e-4,2.3262515e-4,0,0,0,0,274.1810506184895,0.18481302247419681,8.178894557702046,62.871575698722964,3.9779982661109097,16.487496881933723,-0.015059447244646357,0,0,1442.8346042595695,-3.3418049013197435,0.004446572546536724,0.0077232726,0,0,0,0 +1816,0.013382562792105972,0.27037071898352416,0,0,2.2610219999980314,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93504,0,457.00000254313153,4267.7184,777.380157470703,30.799856219058316,282.0590006510417,371.6298227687404,0,0,0,0,0,0,0,0,0,0,0,0,2.3901279746496584e-6,3.2165261e-6,0,0,0,0,1.320490991929546e-4,2.3660577e-4,0,0,0,0,274.1430511474609,0.1883045587596232,8.188247476569973,62.14643251873565,3.866008444908697,16.395033850520726,-0.01538342230023426,0,0,1449.5176305014372,-4.328813791919775,0.004446572546536724,0.0077232726,0,0,0,0 +1817,0.013970105691413876,0.2753447614942531,0,0,2.2961805691271597,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95336,0,457.00000254313153,4268.6815,778.9910329182942,31.198395410102997,282.1270014444987,376.4429441283954,0,0,0,0,0,0,0,0,0,0,0,0,2.4360918284097957e-6,3.2531745000000007e-6,0,0,0,0,1.345885054130728e-4,2.4073619e-4,0,0,0,0,274.10705566406244,0.1918620580679428,8.22082538393248,62.94153100870699,3.9812025759726706,16.517228645555626,-0.015754264592881567,0,0,1472.005826655642,-1.519519756284862,0.004446572546536724,0.0077232726,0,0,0,0 +1818,0.01405484729122227,0.2804103120610006,0,0,2.335490104759264,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94012,0,457.00000254313153,4267.9855,780.3030497233071,31.68760831940507,282.1999994913737,383.9142096017897,0,0,0,0,0,0,0,0,0,0,0,0,2.4820558337523835e-6,3.2885565000000008e-6,0,0,0,0,1.371279092078718e-4,2.4472062e-4,0,0,0,0,274.07105000813795,0.19548676658995365,8.306817108343136,64.26768048931984,4.1092958455936754,16.849648882949314,-0.01612510688552888,0,0,1503.3307533939446,-0.39544551956287705,0.004446572546536724,0.0077232726,0,0,0,0 +1819,0.01412101034059915,0.28556905416843703,0,0,2.304129482409452,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92235,0,457.00000254313153,4267.0511,781.42605082194,31.84544135012051,282.27200571695965,378.33258383444644,0,0,0,0,0,0,0,0,0,0,0,0,2.5280198769905837e-6,3.3237292e-6,0,0,0,0,1.396673166406496e-4,2.4868094e-4,0,0,0,0,274.05004882812494,0.19917995405981814,8.302878858634369,63.25758927353961,3.9635191901767652,16.665198211860137,-0.016495949178176192,0,0,1480.3972085438447,-0.009852951526022849,0.004446572546536724,0.0077232726,0,0,0,0 +1820,0.014336733148844732,0.29082270227250195,0,0,2.32104876587155,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88909,0,457.00000254313153,4265.3029,782.4270782470702,32.333394668843965,282.3460006713867,382.4197482792824,0,0,0,0,0,0,0,0,0,0,0,0,2.573983920228784e-6,3.3582175000000007e-6,0,0,0,0,1.4220672286076783e-4,2.5256240000000004e-4,0,0,0,0,274.0070495605468,0.20294291419985105,8.41607797478937,64.0766432984354,3.958562233257077,16.963564409475474,-0.0168667914708235,0,0,1500.1274234919138,0.12003571660703966,0.004446572546536724,0.0077232726,0,0,0,0 +1821,0.014562069432518771,0.2961730023701861,0,0,2.3334837772109833,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93899,0,457.00000254313153,4267.9261,783.568130493164,32.52138863261211,282.4150034586589,382.89753410088764,0,0,0,0,0,0,0,0,0,0,0,0,2.6199479634669842e-6,3.396252e-6,0,0,0,0,1.4474612665556683e-4,2.5685255e-4,0,0,0,0,273.9700495402018,0.20677696517370964,8.396299170642942,63.987449087582284,4.029731628274296,16.860100322541292,-0.01723763376347081,0,0,1506.0001599344928,0.06037517262922151,0.004446572546536724,0.0077232726,0,0,0,0 +1822,0.015133379255268703,0.30162173257979613,0,0,2.3025151175170526,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92104,0,457.00000254313153,4266.9822,784.9560546874999,32.73451051970765,282.4769999186198,378.6708004400731,0,0,0,0,0,0,0,0,0,0,0,0,2.665911836174928e-6,3.4313761e-6,0,0,0,0,1.4728553408834463e-4,2.6080728e-4,0,0,0,0,273.9330520629882,0.21068345004814615,8.447852069179593,63.22724653024458,3.871133523422822,16.796298079496715,-0.017608476056118122,0,0,1499.4772542487524,0.0654325060086605,0.004446572546536724,0.0077232726,0,0,0,0 +1823,0.01603814933316958,0.30717070373189426,0,0,2.2824717646567367,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94096,0,457.00000254313153,4268.0293,786.2210744222004,32.75571508609182,282.54000091552734,374.3931813157347,0,0,0,0,0,0,0,0,0,0,0,0,2.7118758225697093e-6,3.4681677e-6,0,0,0,0,1.4982493909580322e-4,2.6495418e-4,0,0,0,0,273.89505004882807,0.21466373726348362,8.395261063519708,62.26076437261461,3.846052063384317,16.532712282905738,-0.01797931834876543,0,0,1499.6047524729552,-0.2700677190301451,0.004446572546536724,0.0077232726,0,0,0,0 +1824,0.01650100893154855,0.31282175997110956,0,0,2.310947810882604,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93425,0,457.00000254313153,4267.6765,787.4750722249348,33.05197869569693,282.6179962158203,377.040711415511,0,0,0,0,0,0,0,0,0,0,0,0,2.7578398658079095e-6,3.5037779e-6,0,0,0,0,1.5236434531592144e-4,2.6896492e-4,0,0,0,0,273.847048441569,0.21871922111297978,8.395833943142073,62.56343379800663,3.956577312910641,16.47072525551795,-0.018354944497914732,0,0,1512.9125520641012,-0.02966138430388376,0.004446572546536724,0.0077232726,0,0,0,0 +1825,0.01722266283199113,0.3185767793690206,0,0,2.3227031118101618,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91652,0,457.00000254313153,4266.7449,788.7140604654946,33.52533881675272,282.6759999593099,380.31674976188685,0,0,0,0,0,0,0,0,0,0,0,0,2.8038039090461098e-6,3.5388691e-6,0,0,0,0,1.5490375032338002e-4,2.7291587000000003e-4,0,0,0,0,273.78604634602857,0.22285132223124796,8.516236488505783,63.185789553909586,3.9190680646113942,16.80867752489523,-0.0187628709494922,0,0,1538.203336309689,0.11056506113548577,0.004446572546536724,0.0077232726,0,0,0,0 +1826,0.017382230465949125,0.32443767454831385,0,0,2.320968833647435,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90841,0,457.00000254313153,4266.3186,789.8310445149739,33.74810290483613,282.6929982503255,378.82226551401243,0,0,0,0,0,0,0,0,0,0,0,0,2.84976795228431e-6,3.574385500000001e-6,0,0,0,0,1.5744315654349825e-4,2.7691579e-4,0,0,0,0,273.72805023193354,0.22706148809190466,8.523620414150141,62.815941509777446,3.9116044827887784,16.620779080998844,-0.01917079740106968,0,0,1531.9828127801402,0.16037395519074635,0.004446572546536724,0.0077232726,0,0,0,0 +1827,0.01863987745517804,0.3304063933184248,0,0,2.3463377823547544,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91515,0,457.00000254313153,4266.6729,790.8700917561848,34.15505001036133,282.69299570719403,382.4773392117438,0,0,0,0,0,0,0,0,0,0,0,0,2.8957318249922537e-6,3.6105981e-6,0,0,0,0,1.5998256276361644e-4,2.8099598e-4,0,0,0,0,273.67705535888666,0.23135119351461897,8.585850324307904,63.38999010724139,3.9627935910031815,16.799919229980286,-0.01957872385264715,0,0,1566.0922143761854,0.17722825483510965,0.004446572546536724,0.0077232726,0,0,0,0 +1828,0.01882474558367928,0.33648491932287206,0,0,2.420774152646399,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.87222,0,457.00000254313153,4264.4159,791.9830423990884,34.99912851284667,282.708002726237,395.9754324666183,0,0,0,0,0,0,0,0,0,0,0,0,2.941695811387035e-6,3.6444139e-6,0,0,0,0,1.6252196777107505e-4,2.847999e-4,0,0,0,0,273.6410522460937,0.23572194118174164,8.801495946618267,65.90535948629658,4.116354977084998,17.480564495882128,-0.019986650304224626,0,0,1618.0207226022496,0.18289538758840385,0.004446572546536724,0.0077232726,0,0,0,0 +1829,0.01866419595593191,0.34267527269850206,0,0,2.379376332459752,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90025,0,457.00000254313153,4265.8895,793.0000712076821,35.0164051294104,282.76099650065106,389.1746282041487,0,0,0,0,0,0,0,0,0,0,0,0,2.9876598546252353e-6,3.6816572e-6,0,0,0,0,1.6506137277853364e-4,2.8899889e-4,0,0,0,0,273.6020533243815,0.24017526216469398,8.767229394465893,64.57289823663554,4.000350816006103,17.19408165401919,-0.020394576755802103,0,0,1597.2383021208498,0.18479929364776207,0.004446572546536724,0.0077232726,0,0,0,0 +1830,0.024933734074320084,0.3489795107468605,0,0,2.4031598307534434,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8667,0,457.00000254313153,4264.1256,793.9600270589192,35.40215533786149,282.8249994913737,392.10653286413964,0,0,0,0,0,0,0,0,0,0,0,0,3.0336238978634356e-6,3.7158665e-6,0,0,0,0,1.6760078021131145e-4,2.9284816e-4,0,0,0,0,273.5640513102213,0.24471271646030182,8.81880644628117,64.94076179033591,4.038430290401805,17.314251572854413,-0.020802503207379586,0,0,1705.903253614498,0.1854388472573092,0.004446572546536724,0.0077232726,0,0,0,0 +1831,0.02366017773383691,0.3553997286179164,0,0,2.3613471253941487,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89173999999998,0,457.00000254313153,4265.442,794.810073852539,35.37418704933364,282.8909962972005,384.20125072452805,0,0,0,0,0,0,0,0,0,0,0,0,3.079587941101636e-6,3.7529959e-6,0,0,0,0,1.7014018521877006e-4,2.97034e-4,0,0,0,0,273.52005004882807,0.24933589353726177,8.731507391555889,63.33682174076503,3.9474094529519688,16.877728667025877,-0.02121042965895705,0,0,1661.033130299973,-2.2447406013527207,0.004446572546536724,0.0077232726,0,0,0,0 +1832,0.023685925177870507,0.3619380600063637,0,0,2.3538632990393804,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90924,0,457.00000254313153,4266.362,795.5789845784504,35.562723492003244,282.9219970703125,382.363398002473,0,0,0,0,0,0,0,0,0,0,0,0,3.1255518138095795e-6,3.7897747e-6,0,0,0,0,1.7267959022622867e-4,3.0117945e-4,0,0,0,0,273.4440485636393,0.25404641289293156,8.712430008651964,62.87089656141417,3.946175052921808,16.738986754109227,-0.021652683906249543,0,0,1660.6105827511283,-1.4987682109213591,0.004446572546536724,0.0077232726,0,0,0,0 +1833,0.024226693427449875,0.3685966778607331,0,0,2.356959381290607,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89175,0,457.00000254313153,4265.4426,796.1241149902343,35.98083111069253,282.96599833170575,383.4537927943128,0,0,0,0,0,0,0,0,0,0,0,0,3.171515800204361e-6,3.824754e-6,0,0,0,0,1.7521899765900648e-4,3.0511746e-4,0,0,0,0,273.3720499674479,0.2588459246206396,8.790922956695082,63.06958370159948,3.905335593523844,16.86449692010886,-0.02214928975776249,0,0,1673.8749364362222,-0.4194845439142279,0.004446572546536724,0.0077232726,0,0,0,0 +1834,0.02470258560682817,0.3753777951055501,0,0,2.4124454659285632,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.854,0,457.00000254313153,4263.4584,797.0440368652343,36.761060965311756,283.0279998779297,394.1429023376304,0,0,0,0,0,0,0,0,0,0,0,0,3.217479843442561e-6,3.8586347e-6,0,0,0,0,1.7775840266646506e-4,3.089289e-4,0,0,0,0,273.2140502929687,0.2637361099877118,9.001420472247489,65.10499264081507,3.9890612936666887,17.454285340709294,-0.02264589560927544,0,0,1721.2693465918007,-0.01933718178498213,0.004446572546536724,0.0077232726,0,0,0,0 +1835,0.025273637508183497,0.38228366537677744,0,0,2.4054563746496176,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8698,0,457.00000254313153,4264.2887,797.8309682210286,36.88278972577237,283.08599853515625,390.5551391819573,0,0,0,0,0,0,0,0,0,0,0,0,3.2634438866807614e-6,3.8953332e-6,0,0,0,0,1.8029780767392367e-4,3.1306506e-4,0,0,0,0,273.07905069986975,0.2687186820244191,8.925548285908778,64.23544316564437,3.998558037017324,17.170486789731093,-0.023142501460788386,0,0,1718.2221250231016,-1.6633625299236003,0.004446572546536724,0.0077232726,0,0,0,0 +1836,0.029221069497854205,0.389316583770789,0,0,2.4041879560344257,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84901,0,457.00000254313153,4263.1961,798.1060129801431,37.24729235142932,283.1489995320638,389.978664389183,0,0,0,0,0,0,0,0,0,0,0,0,3.3094079299189616e-6,3.9300644999999986e-6,0,0,0,0,1.8283721389404187e-4,3.1697451e-4,0,0,0,0,272.9540532430012,0.2737953861240514,8.99301508642379,64.08016333132153,3.917445996447821,17.23500428603742,-0.02363910731230133,0,0,1783.0834194781103,-1.0677252796589791,0.004446572546536724,0.0077232726,0,0,0,0 +1837,0.02926039926471735,0.39647888760712147,0,0,2.4402101737227215,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.86946,0,457.00000254313153,4264.2707,798.115982055664,37.699806775525964,283.19800059000653,394.75650376781886,0,0,0,0,0,0,0,0,0,0,0,0,3.3553718026269053e-6,3.9670389e-6,0,0,0,0,1.853766201141601e-4,3.2114251e-4,0,0,0,0,272.8730545043945,0.2789680006543284,9.027059824256213,64.82242714481194,4.040217213334495,17.353835237590644,-0.02413571316381428,0,0,1798.0881971564909,-0.2640591208376881,0.004446572546536724,0.0077232726,0,0,0,0 +1838,0.030288692886915835,0.4037729572052591,0,0,2.477311745666847,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85548,0,457.00000254313153,4263.5362,797.937016805013,38.242109615281024,283.2530034383138,401.2961870125921,0,0,0,0,0,0,0,0,0,0,0,0,3.4013357890216867e-6,4.0021199e-6,0,0,0,0,1.8791602512161867e-4,3.2509225e-4,0,0,0,0,272.8660507202148,0.28423833758036093,9.122535894908143,65.94724656685626,4.142172855024622,17.64153847089682,-0.024632319015327232,0,0,1841.5431392468436,0.03335501919910246,0.004446572546536724,0.0077232726,0,0,0,0 +1839,0.031310556578042714,0.4112012166757089,0,0,2.4526381380788647,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83788,0,457.00000254313153,4262.6108,797.9220987955728,38.51117555601762,283.3109995524089,396.9116368644367,0,0,0,0,0,0,0,0,0,0,0,0,3.447299832259887e-6,4.0369741e-6,0,0,0,0,1.904554313417369e-4,3.2901587999999995e-4,0,0,0,0,272.85805002848304,0.2896082430993816,9.139608329107503,65.11131218043978,4.015311872419976,17.505176328593002,-0.025128924866840176,0,0,1843.0808236850567,0.13450763436493787,0.004446572546536724,0.0077232726,0,0,0,0 +1840,0.03354297409334304,0.41876613472562935,0,0,2.4438775219719657,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.80755,0,457.00000254313153,4261.0163,798.3870493570962,38.88776194382017,283.38200124104816,395.88091618643386,0,0,0,0,0,0,0,0,0,0,0,0,3.493263875498087e-6,4.0710717e-6,0,0,0,0,1.9299483634919548e-4,3.3285227e-4,0,0,0,0,272.7990519205729,0.29507959828746777,9.211326298909695,64.92298176034035,3.924269140081404,17.575132478856116,-0.025625530718353124,0,0,1874.1418275066233,0.16854263071970732,0.004446572546536724,0.0077232726,0,0,0,0 +1841,0.03460122912653735,0.42647022547928015,0,0,2.490489852137439,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84789,0,457.00000254313153,4263.137,799.060084025065,39.38162316774325,283.46699778238934,402.37274181683716,0,0,0,0,0,0,0,0,0,0,0,0,3.5392279187362874e-6,4.1092335e-6,0,0,0,0,1.955342437819733e-4,3.3715711000000003e-4,0,0,0,0,272.6890487670898,0.3006543197584808,9.249453201790956,65.9454451837981,4.089445548039454,17.745543570932366,-0.026145023202402858,0,0,1916.2642072737253,0.17997793561545353,0.004446572546536724,0.0077232726,0,0,0,0 +1842,0.03663997981024372,0.4343160493135666,0,0,2.4491704689870333,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84034,0,457.00000254313153,4262.7403,800.0011189778645,39.618728876147166,283.5279998779297,396.99512213680947,0,0,0,0,0,0,0,0,0,0,0,0,3.585191791444231e-6,4.1446349e-6,0,0,0,0,1.980736475767723e-4,3.411438e-4,0,0,0,0,272.58205413818354,0.3063343603354562,9.261381852099804,64.92167359416241,3.9361680613715975,17.590961717477978,-0.026688925256719682,0,0,1931.46250751484,0.18381929631950947,0.004446572546536724,0.0077232726,0,0,0,0 +1843,0.037450386379355084,0.44230621370895423,0,0,2.4111362709735427,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85726,0,457.00000254313153,4263.6297,801.4921824137368,39.653263822240504,283.56600189208984,389.73678087183737,0,0,0,0,0,0,0,0,0,0,0,0,3.6311557778390124e-6,4.1814844e-6,0,0,0,0,2.006130537968905e-4,3.4529738e-4,0,0,0,0,272.6070480346679,0.3121217097346764,9.185852611691464,63.424060913522,3.8460662124532643,17.218218321973847,-0.027232827311036496,0,0,1929.66039784958,0.18510965928096967,0.004446572546536724,0.0077232726,0,0,0,0 +1844,0.03984697293733208,0.45044337411603935,0,0,2.4438258963267856,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85117,0,457.00000254313153,4263.3094,803.6190745035806,40.04426499219912,283.60899861653644,392.7074417140548,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198210772127e-6,4.2169694e-6,0,0,0,0,2.0315246122966832e-4,3.4929371e-4,0,0,0,0,272.64805348714185,0.3180183952626677,9.178913525794204,63.76245430030204,3.965309781326317,17.1801218980614,-0.027776729365353317,0,0,1991.4456467268888,0.1855430999305122,0.004446572546536724,0.0077232726,0,0,0,0 +1845,0.04379212851318448,0.4587302348380611,0,0,2.4713718751387326,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83257,0,457.00000254313153,4262.3319,805.665069580078,40.66967666700967,283.72499593098956,397.85005599568376,0,0,0,0,0,0,0,0,0,0,0,0,3.723083864315413e-6,4.2516813e-6,0,0,0,0,2.0569186502446732e-4,3.5320089999999995e-4,0,0,0,0,272.64005025227857,0.32402648252636523,9.30790591121511,64.68556723249593,3.957876345089828,17.599363300735142,-0.02832063141967013,0,0,2080.3810922503694,0.18568870533529727,0.004446572546536724,0.0077232726,0,0,0,0 +1846,0.04419737434029645,0.46716954992964915,0,0,2.4711987422790394,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82423,0,457.00000254313153,4261.8933,807.2559560139973,40.975199745155024,283.8470001220703,395.9082621735635,0,0,0,0,0,0,0,0,0,0,0,0,3.769047907553613e-6,4.2869996e-6,0,0,0,0,2.0823127124458551e-4,3.5717802e-4,0,0,0,0,272.7300465901692,0.3301480761566941,9.302498358152864,64.24405152639606,3.9495415402063423,17.39887856615626,-0.02886453347398695,0,0,2072.290434339566,0.003535562113167848,0.004446572546536724,0.0077232726,0,0,0,0 +1847,0.047464619118496226,0.4757641241121063,0,0,2.521115228079649,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82758,0,457.00000254313153,4262.0693,807.9369812011718,41.61647167525484,283.9359995524089,402.98515747487147,0,0,0,0,0,0,0,0,0,0,0,0,3.815011799209363e-6,4.3230378e-6,0,0,0,0,2.107706774647037e-4,3.6123808e-4,0,0,0,0,272.8130518595377,0.33638532054582115,9.401962018636505,65.44362075203811,4.040566100417133,17.760514190415755,-0.029408435528303762,0,0,2154.230603343035,0.05986150819062035,0.004446572546536724,0.0077232726,0,0,0,0 +1848,0.04711780719580413,0.484516813705529,0,0,2.5773717998210097,0,1.4945332000000003e-5,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.78829,0,457.00000254313153,4260.004,808.0920410156249,42.449470629613735,284.0679982503255,413.5582929452125,0,0,0,0,0,0,0,0,0,0,0,0,3.860975766656338e-6,4.3563791e-6,0,0,0,0,2.1331008247216232e-4,3.6498734e-4,0,0,0,0,272.8850479125976,0.3427404005983347,9.573238566746884,67.39824375327751,4.1550564996331225,18.30069373024327,-0.029952337582620583,0,0,2204.416735349108,0.14052998907092631,0.004446572546536724,0.0077232726,0,0,0,0 +1849,0.04885144245331925,0.49343052757807715,0,0,2.5523940889282035,0,1.1956415e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.81678,0,457.00000254313153,4261.5016,808.2150014241536,42.63396460567202,284.20699818929035,408.9399341234632,0,0,0,0,0,0,0,0,0,0,0,0,3.9069398098945385e-6,4.3940071e-6,0,0,0,0,2.1584948869228052e-4,3.6923065e-4,0,0,0,0,272.9540456136067,0.3492155424966158,9.543358834157274,66.42707154065786,4.087020956416189,18.074786269748145,-0.03055301159093652,0,0,2224.8957196823785,0.1704345774563485,0.004446572546536724,0.0077232726,0,0,0,0 +1850,0.051384895328128635,0.502508228112706,0,0,2.5711244787427185,1.2887821417469543e-6,2.2473666e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93295,0,457.00000254313153,4267.6083,808.249028523763,43.142363653343445,284.3169987996419,411.4628743194825,0,0,0,0,0,0,0,0,0,0,0,0,3.952903853132739e-6,4.4373643e-6,0,0,0,0,2.1838889491239874e-4,3.7413425e-4,0,0,0,0,273.02104695638013,0.35581301448066943,9.604162557026681,66.78304875030415,4.096904208036784,18.22682478664064,-0.03125687970329533,0,0,2275.7767113113205,0.18074597510251067,0.004446572546536724,0.0077232726,0,0,0,0 +1851,0.051562308443334225,0.4946563668475162,0,0,2.5266925893124657,1.031025730450589e-5,2.4082745e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96457,0,457.00000254313153,4269.2706,808.4141082763671,43.151913707774774,284.4510040283203,402.2448152541545,0,0,0,0,0,0,0,0,0,0,0,0,3.998867896370939e-6,4.475348e-6,0,0,0,0,2.2092829991985732e-4,3.7841858e-4,0,0,0,0,273.0940500895182,0.3637934413745739,9.478471328343609,64.9500465918497,4.010397677989623,17.726300494053056,-0.03196074781565415,0,0,2256.8151473435455,0.18431279870175096,0.004446572546536724,0.0077232726,0,0,0,0 +1852,0.05364238006818437,0.5506858688322854,0,0,2.5076341601822123,2.0667359725242324e-5,2.4179888e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98199,0,457.00000254313153,4270.1861,809.1631317138671,43.34412933408961,284.59800211588544,397.49851999155004,0,0,0,0,0,0,0,0,0,0,0,0,4.044831939609139e-6,4.5124367e-6,0,0,0,0,2.2346770613997555e-4,3.825997e-4,0,0,0,0,273.16805013020826,0.3724242241558459,9.424520247380277,63.95789986488204,3.9584516109367627,17.47926154999162,-0.03266461592801298,0,0,2277.6344054535484,0.17954033954307605,0.004446572546536724,0.0077232726,0,0,0,0 +1853,0.05595234905591053,0.5486310857453621,0,0,2.5278117426961444,3.10744549096853e-5,2.4277992e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9693,0,457.00000254313153,4269.5191,810.404057820638,43.88435962687079,284.7309977213542,400.33880414377563,0,0,0,0,0,0,0,0,0,0,0,0,4.0907959828473395e-6,4.5475315000000004e-06,0,0,0,0,2.2600711114743413e-4,3.8655105e-4,0,0,0,0,273.264050801595,0.38010970895337787,9.493187126119388,64.44555417814735,3.9683262348472685,17.65848987916477,-0.0333684840403718,0,0,2326.4206162177375,0.015887254241176648,0.004446572546536724,0.0077232726,0,0,0,0 +1854,0.06589565461208481,0.5467397743701289,0,0,2.6100485430157265,4.1513251138288375e-5,2.4405566e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9226,0,457.00000254313153,4267.0641,811.7321421305337,44.80907906406347,284.8459981282552,413.39913150953396,0,0,0,0,0,0,0,0,0,0,0,0,4.136759950294315e-6,4.5802995999999986e-6,0,0,0,0,2.2854651736755235e-4,3.9023425e-4,0,0,0,0,273.3630498250325,0.3881180379413641,9.708926054401639,66.794695219375825,4.086374133078645,18.340431326430615,-0.034072352152730634,0,0,2535.1581947111176,-0.014112611956298624,0.004446572546536724,0.0077232726,0,0,0,0 +1855,0.0665605946226626,0.543758286864958,0,0,2.593264313364505,5.2002859774802346e-5,2.4547759e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95064,0,457.00000254313153,4268.5385,813.332036336263,44.957053896332596,284.9409993489583,408.11045388038974,0,0,0,0,0,0,0,0,0,0,0,0,4.182723614576389e-6,4.6181251e-6,0,0,0,0,2.3108592358767055e-4,3.945003e-4,0,0,0,0,273.4700495402018,0.39515493127386314,9.608218449939441,65.65156397841133,4.071657215875477,17.99164859504197,-0.03477622026508945,0,0,2531.882070736542,0.11294859461260336,0.004446572546536724,0.0077232726,0,0,0,0 +1856,0.07119571676282484,0.5497252657327152,0,0,2.5734300072332923,6.254957406781614e-5,2.4704559e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92886,0,457.00000254313153,4267.3934,814.7961222330728,45.32147323346321,285.04899342854816,404.85491673017987,0,0,0,0,0,0,0,0,0,0,0,0,4.228687657814589e-6,4.652537400000002e-6,0,0,0,0,2.3362532859512916e-4,3.98373e-4,0,0,0,0,273.5780461629231,0.40121361649916243,9.648967407833753,65.04253470413643,3.941501863088442,17.954118052235966,-0.03548008837744827,0,0,2598.3233502208395,0.12225561148477546,0.004446572546536724,0.0077232726,0,0,0,0 +1857,0.0718939473501754,0.55506091263013,0,0,2.636452577483439,7.315969560295343e-5,2.487597e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94976,0,457.00000254313153,4268.4922,816.4521179199218,46.01300693840024,285.20399983723956,414.6731918454804,0,0,0,0,0,0,0,0,0,0,0,0,4.2746517010527896e-06,4.6899086e-6,0,0,0,0,2.3616473481524736e-4,4.025867e-4,0,0,0,0,273.67504882812494,0.4075261897409684,9.717987448936368,66.72779876959439,4.1591410074143615,18.291565645975457,-0.03618395648980709,0,0,2646.996287168382,-0.044823331390134384,0.004446572546536724,0.0077232726,0,0,0,0 +1858,0.0730281599923091,0.5597369099004649,0,0,2.660122641883427,8.383950868543859e-5,2.5062e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93987,0,457.00000254313153,4267.9722,818.3551279703775,46.54057728835799,285.3690007527669,419.01402360882946,0,0,0,0,0,0,0,0,0,0,0,0,4.32061574429099e-6,4.7251299e-6,0,0,0,0,2.3870414103536555e-4,4.0655264e-4,0,0,0,0,273.7560501098632,0.41251745553966174,9.773872716558104,67.47060376347301,4.240872484906792,18.47927629769415,-0.03688782460216592,0,0,2684.853418420537,0.08628782582640311,0.004446572546536724,0.0077232726,0,0,0,0 +1859,0.07785211331835136,0.5673853687525405,0,0,2.6482032498787995,9.459531490089527e-5,2.5262647e-4,0.025000428936133783,0.024856862,34.05000019073486,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91443,0,457.00000254313153,4266.635,820.3960774739583,46.94962615479032,285.5449956258138,416.29974849312515,0,0,0,0,0,0,0,0,0,0,0,0,4.36657978752919e-6,4.7592242000000015e-6,0,0,0,0,2.4124354483016455e-4,4.1038866e-4,0,0,0,0,273.89505004882807,0.41699740802681257,9.815633788495665,66.95694733909333,4.119710728903347,18.449505984059194,-0.03759169271452474,0,0,2765.3515040429447,0.1535034293269437,0.004446572546536724,0.0077232726,0,0,0,0 +1860,0.08580578973181537,0.57190571026195,0,0,2.6484047305257548,1.0543340310202136e-4,2.5477918999999995e-4,0.025000428936133783,0.024856862,34.04999955495199,0.010810676000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89112,0,457.00000254313153,4265.4096,822.3121185302733,47.37614022716783,285.73899332682294,416.0639965860974,0,0,0,0,0,0,0,0,0,0,0,0,4.41254383076739e-6,4.7934342e-6,0,0,0,0,2.4378295105028278e-4,4.1423802e-4,0,0,0,0,274.05604807535804,0.42075257795117216,9.868462594270229,66.84953492841794,4.0609762626653305,18.52046800322501,-0.03829556082688356,0,0,2898.3777844170777,0.17676937373971446,0.004446572546536724,0.0077232726,0,0,0,0 +1861,0.09043757175448788,0.5830953457170218,0,0,2.670268662609388,1.1636007608710013e-4,2.5707803e-4,0.025000428936133783,0.024856862,34.04999987284342,0.010810691,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94268,0,457.00000254313153,4268.1198,824.399190266927,48.23468669993056,285.9330012003581,417.24413721688705,0,0,0,0,0,0,0,0,0,0,0,0,4.4585078740055906e-6,4.8330788e-6,0,0,0,0,2.463223596957202e-4,4.1871377e-4,0,0,0,0,274.2400461832682,0.42335986018473476,9.85713564571437,66.88575551122409,4.161212988464047,18.437119828737263,-0.03899942893924239,0,0,2971.2788427875175,0.11623622338672868,0.004446572546536724,0.0077232726,0,0,0,0 +1862,0.09186559088261632,0.5229565631081879,0,0,2.648564983127743,1.2738162210249962e-4,2.5952295e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93302,0,457.00000254313153,4267.612,827.0292002360025,49.13056211810905,286.1000010172526,414.16280656087633,0,0,0,0,0,0,0,0,0,0,0,0,4.504471917243791e-6,4.8682827e-6,0,0,0,0,2.488617634905192e-4,4.2267767e-4,0,0,0,0,274.4160486857096,0.4259683950031353,9.918881972367876,66.358960161654025,4.0424493589722115,18.41589320519377,-0.0397032970516012,0,0,2976.388043494933,-0.6237998311805185,0.004446572546536724,0.0077232726,0,0,0,0 +1863,0.09748855439032131,0.523134296634959,0,0,2.6292695144324947,1.3850433606421575e-4,2.6211454e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9509,0,457.00000254313153,4268.552,830.1662139892577,49.710222528727996,286.271001180013,408.1224194075052,0,0,0,0,0,0,0,0,0,0,0,0,4.550435960481991e-6,4.9055252e-6,0,0,0,0,2.5140116971063736e-4,4.2687657e-4,0,0,0,0,274.57104492187494,0.4284326826015117,9.86866585386286,65.00963540040021,3.9715193557400945,18.09141100618794,-0.04040716516396003,0,0,3064.446906560989,-0.2585729087354761,0.004446572546536724,0.0077232726,0,0,0,0 +1864,0.10472513857630868,0.5234813827246285,0,0,2.667755633655596,1.4973450258063772e-4,2.6485186e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94467,0,457.00000254313153,4268.2247,833.6041412353514,50.66032472624755,286.44200134277344,411.3310642864957,0,0,0,0,0,0,0,0,0,0,0,0,4.5963999279289664e-6,4.9409793e-6,0,0,0,0,2.539405759307556e-4,4.308693e-4,0,0,0,0,274.72005208333326,0.431014195621195,9.887134077064891,65.39906664161046,4.087458726366705,18.093817300572518,-0.041111033276318855,0,0,3193.218258651068,0.037999846461008915,0.004446572546536724,0.0077232726,0,0,0,0 +1865,0.11093631924882667,0.5242503840770768,0,0,2.720201066299487,1.6107846022350714e-4,2.6773567000000004e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010810706000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93017,0,457.00000254313153,4267.4623,836.8942057291665,51.98007509857536,286.6139958699544,420.4890049801762,0,0,0,0,0,0,0,0,0,0,0,0,4.642363592211041e-6,4.9757947000000005e-6,0,0,0,0,2.564799797255546e-4,4.3478845e-4,0,0,0,0,274.8800430297851,0.43343877181201473,10.07353477775766,67.10347351160692,4.157661467348705,18.66656837953943,-0.04181490138867768,0,0,3327.080175680617,0.1429288681419851,0.004446572546536724,0.0077232726,0,0,0,0 +1866,0.11473850842802115,0.5243863634262115,0,0,2.7102983366424596,1.7254241417200925e-4,2.707659e-4,0.025000428936133783,0.024856862,34.050100008646645,0.01081072,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92398,0,457.00000254313153,4267.1368,840.3622080485025,52.74699292831513,286.78099822998047,417.1011849314015,0,0,0,0,0,0,0,0,0,0,0,0,4.688327635449241e-6,5.0112266e-6,0,0,0,0,2.590193835203536e-4,4.387786599999999e-4,0,0,0,0,275.0480473836262,0.4357447764915154,10.064549123367675,66.37528156013664,4.133671177718162,18.394680194366018,-0.042518769501036495,0,0,3388.2580778414886,0.1744104739671799,0.004446572546536724,0.0077232726,0,0,0,0 +1867,0.12258204012181728,0.5228764549771724,0,0,2.761022670595916,1.8413277454480217e-4,2.7394196e-4,0.025000428936133783,0.024856862,34.05020046234131,0.010070544,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93094,0,457.00000254313153,4267.5026,843.995122273763,53.9410217812425,286.9550018310547,424.2969752987472,0,0,0,0,0,0,0,0,0,0,0,0,4.734291678687441e-6,5.0476689e-6,0,0,0,0,2.615587945911102e-4,4.428853e-4,0,0,0,0,275.21304829915357,0.43821064879605803,10.189133101169272,67.66026448741948,4.231180960949066,18.768356166586962,-0.04322263761339532,0,0,3565.4355350198875,0.18466917521307166,0.004446572546536724,0.0077232726,0,0,0,0 +1868,0.12560944174010713,0.5214153984123745,0,0,2.825140562350265,1.9585573196915598e-4,2.7726501e-4,0.025000428936133783,0.024856862,34.05019982655843,0.010072023,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89186,0,457.00000254313153,4265.4483,847.2491251627603,55.287673564162375,287.10500081380206,434.93022825982507,0,0,0,0,0,0,0,0,0,0,0,0,4.780255721925641e-6,5.0805177e-6,0,0,0,0,2.640981983859092e-4,4.465778e-4,0,0,0,0,275.39104461669916,0.44143425556535276,10.372200923081559,69.64729381366908,4.3633047348631795,19.301247569591883,-0.043926505725754135,0,0,3668.308732016809,0.188148666241629,0.004446572546536724,0.0077232726,0,0,0,0 +1869,0.13329152205114916,0.5197708976584334,0,0,2.7850043169774756,2.0771763714340827e-4,2.8073396e-4,0.025000428936133783,0.024856862,34.05020014444987,0.010810735,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93014,0,457.00000254313153,4267.4609,850.1300862630208,55.83359728305401,287.2249984741211,426.4036167290826,0,0,0,0,0,0,0,0,0,0,0,0,4.826219765163842e-6,5.1194221e-6,0,0,0,0,2.666376021807082e-4,4.5096821e-4,0,0,0,0,275.5610478719075,0.44390826602791195,10.311061269202527,67.9294955911712,4.245329954023304,18.888825035193033,-0.04497175592064998,0,0,3791.4627445920805,0.1894123650346563,0.004446572546536724,0.0077232726,0,0,0,0 +1870,0.13667438365279438,0.5186718603074794,0,0,2.831200782445544,2.197247971101509e-4,2.8434934e-4,0.025000428936133783,0.024856862,34.05020014444987,0.01081075,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89317,0,457.00000254313153,4265.5174,852.4350077311196,56.996592307003596,287.3549982706706,433.2287624497814,0,0,0,0,0,0,0,0,0,0,0,0,4.872183808402042e-6,5.152380400000002e-6,0,0,0,0,2.691770132514648e-4,4.5467331e-4,0,0,0,0,275.7200444539387,0.4466399609979402,10.441023971231417,69.12187693609928,4.323468650206145,19.258120747383764,-0.046232618783436236,0,0,3887.5293351931314,0.189950840385198,0.004446572546536724,0.0077232726,0,0,0,0 +1871,0.1452491611173251,0.5388152153139819,0,0,2.7978303472693873,2.31883451003038e-4,2.8811122e-4,0.025000428936133783,0.024856862,34.050299326578774,0.010071314,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92871,0,457.00000254313153,4267.3856,853.9930725097655,57.57401422057298,287.4940007527669,425.1606513202936,0,0,0,0,0,0,0,0,0,0,0,0,4.918147851640242e-6,5.1911213e-6,0,0,0,0,2.717164146209446e-4,4.590449e-4,0,0,0,0,275.9030456542968,0.45433593382870696,10.369497697943174,67.42862357960736,4.269404036940666,18.76177376623424,-0.047493481646222496,0,0,4016.0322788183066,0.19025039687154105,0.004446572546536724,0.0077232726,0,0,0,0 +1872,0.16034651313527334,0.6242378015462033,0,0,2.771292693837977,2.4419995800902444e-4,2.9201899e-4,0.025000428936133783,0.024856862,34.050299962361656,0.010810765,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95075,0,457.00000254313153,4268.5441,855.2329915364583,58.18710545429253,287.66399637858075,417.7442733570141,0,0,0,0,0,0,0,0,0,0,0,0,4.964111894878442e-6,5.228817700000002e-6,0,0,0,0,2.742558184157436e-4,4.6329615e-4,0,0,0,0,276.07804361979163,0.4708626218532089,10.330384237922804,65.84553711122807,4.17870981733127,18.365341648996967,-0.048754344509008736,0,0,4250.256915543303,0.18883431574024787,0.004446572546536724,0.0077232726,0,0,0,0 +1873,0.17009548212988732,0.635197775727867,0,0,2.8416338477805057,2.566805657503816e-4,2.9607326e-4,0.025000428936133783,0.024856862,34.050299962361656,0.01081078,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93223,0,457.00000254313153,4267.5705,856.1681976318358,59.62016165313301,287.86000061035156,429.28028904113773,0,0,0,0,0,0,0,0,0,0,0,0,5.010075938116643e-6,5.2632224000000015e-6,0,0,0,0,2.7679522706118104e-4,4.6716788e-4,0,0,0,0,276.25004831949866,0.4938942498998885,10.56453511561426,67.99437045089431,4.309987323977962,18.937298904886617,-0.050015207371795004,0,0,4473.449627744114,-0.0158300305583035,0.004446572546536724,0.0077232726,0,0,0,0 +1874,0.16101264250188482,0.6424589219115043,0,0,2.8680589101535006,2.693315764190629e-4,3.0027407000000005e-4,0.025000428936133783,0.024856862,34.05039978027344,0.010810794,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88493,0,457.00000254313153,4265.0843,857.8200785319009,60.88850035180588,288.0609995524089,435.8041800080444,0,0,0,0,0,0,0,0,0,0,0,0,5.05603994345923e-6,5.295217800000002e-6,0,0,0,0,2.793346332812992e-4,4.7076201e-4,0,0,0,0,276.4160537719726,0.5217358117405276,10.751611012739497,69.34908007240699,4.369596917606238,19.304810723709583,-0.051276070234581236,0,0,4382.176552473297,0.10137566545666454,0.004446572546536724,0.0077232726,0,0,0,0 +1875,0.17325906778674766,0.6503215087418923,0,0,2.8334891051221005,2.821592812930855e-4,3.046214e-4,0.025000428936133783,0.024856862,34.05040009816488,0.010810809,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5065,859.4690653483071,61.447170295790954,288.29100290934247,426.89349545310597,0,0,0,0,0,0,0,0,0,0,0,0,5.102003569845692e-6,5.3349387000000006e-6,0,0,0,0,2.818740370760982e-4,4.7524653e-4,0,0,0,0,276.5850474039713,0.5521636138855727,10.663545228962466,67.4820885998621,4.311546235769538,18.753876090158617,-0.0525369330973675,0,0,4552.510356024947,0.11898633163405398,0.004446572546536724,0.0077232726,0,0,0,0 +1876,0.17593823238514505,0.6580403904252425,0,0,2.8431252665224327,2.9516999347833917e-4,3.0911468e-4,0.025000428936133783,0.024856862,34.05049991607666,0.010810823999999998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90175,0,457.00000254313153,4265.968,860.8591054280598,62.60294810766919,288.5199966430664,429.4805477313967,0,0,0,0,0,0,0,0,0,0,0,0,5.1479676130838925e-6,5.3683812e-6,0,0,0,0,2.8441344572153565e-4,4.790074400000001e-4,0,0,0,0,276.7350514729817,0.5828831599457934,10.831893028061607,68.07266489194261,4.273649915248981,19.002140660093694,-0.053797795960153764,0,0,4640.322706228576,0.13010732358702753,0.004446572546536724,0.0077232726,0,0,0,0 +1877,0.17982534828505667,0.6646940864903487,0,0,2.881579172917859,3.083699945515643e-4,3.1375456e-4,0.025000428936133783,0.024856862,34.050500551859535,0.010810839,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92824,0,457.00000254313153,4267.3608,862.3791147867837,63.64524258623489,288.7520014444987,434.0603459961696,0,0,0,0,0,0,0,0,0,0,0,0,5.193931656322093e-6,5.406519099999998e-6,0,0,0,0,2.869528519416538e-4,4.833095099999999e-4,0,0,0,0,276.86404927571607,0.6122267058453676,10.897021601068372,68.7783807279057,4.413505723589701,19.089059096309025,-0.05504429988349307,0,0,4762.60475525006,0.1696072468545434,0.004446572546536724,0.0077232726,0,0,0,0 +1878,0.18077698311132545,0.6715857617280921,0,0,2.905036494302108,3.2176555153758574e-4,3.1854156e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810853,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92472,0,457.00000254313153,4267.1759,864.1391499837239,64.71120382869425,288.9930013020833,437.9599497693981,0,0,0,0,0,0,0,0,0,0,0,0,5.239895699560293e-6,5.4421234e-6,0,0,0,0,2.8949225331113365e-4,4.8731959e-4,0,0,0,0,277.0020446777343,0.637718423578712,10.998945344161125,69.46979574102357,4.5031308409529425,19.22817130569276,-0.056156826594968116,0,0,4806.3164952803945,0.1844107426763875,0.004446572546536724,0.0077232726,0,0,0,0 +1879,0.1931754383145236,0.6786152944896107,0,0,2.9292586401809286,3.3536301149676245e-4,3.234746e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810868,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88028,0,457.00000254313153,4264.8396,866.2831624348958,65.90279841258594,289.2210006713867,440.8517590737373,0,0,0,0,0,0,0,0,0,0,0,0,5.285859742798493e-6,5.474183400000002e-6,0,0,0,0,2.920316595312518e-4,4.9092116e-4,0,0,0,0,277.1330490112304,0.6589267771109586,11.181505690638433,70.08572001647862,4.44715839638976,19.487315389320713,-0.05726935330644314,0,0,5054.634872921024,0.18865930412898813,0.004446572546536724,0.0077232726,0,0,0,0 +1880,0.2193400047887077,0.6848574235612915,0,0,2.921172062464678,3.4916867055774975e-4,3.2855365e-4,0.025000428936133783,0.024856862,34.05069955190023,0.010810144,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88174,0,457.00000254313153,4264.9162,868.6961059570311,66.66498430210106,289.4699986775716,437.365727538686,0,0,0,0,0,0,0,0,0,0,0,0,5.3318237860366935e-6,5.5101807e-6,0,0,0,0,2.9457106817668927e-4,4.9497652e-4,0,0,0,0,277.26505025227857,0.6727777764677255,11.210570347061365,69.18788119083449,4.386751757292326,19.32682128004249,-0.05838188001791818,0,0,5476.691840909654,0.15238702978073307,0.004446572546536724,0.0077232726,0,0,0,0 +1881,0.2252231799496281,0.7226262033549594,0,0,2.9628772256083247,3.6318877634281915e-4,3.3377873e-4,0.025000428936133783,0.024856862,34.05069955190023,0.011551088,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92914,0,457.00000254313153,4267.4079,870.9841257731118,67.70670094788971,289.7369969685872,440.9737248225101,0,0,0,0,0,0,0,0,0,0,0,0,5.377787829274894e-6,5.5502216e-6,0,0,0,0,2.9711047197148827e-4,4.9949792e-4,0,0,0,0,277.37404123942054,0.6806367037591056,11.274748464221961,69.70896888997471,4.531822010702024,19.327166243417963,-0.059494406729393226,0,0,5655.562652963553,0.14804251864424234,0.004446572546536724,0.0077232726,0,0,0,0 +1882,0.23694899687620047,0.6743786080130141,0,0,2.9443458510058322,3.774296346819028e-4,3.3915105e-4,0.025000428936133783,0.024856862,34.05080000559489,0.011550379,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92759,0,457.00000254313153,4267.3266,873.2501373291014,68.57787523920716,290.0190022786458,436.0786301154982,0,0,0,0,0,0,0,0,0,0,0,0,5.423751872513094e-6,5.585991e-6,0,0,0,0,2.9964987819160643e-4,5.035270200000001e-4,0,0,0,0,277.4860509236653,0.6892556813322581,11.343220962302505,68.75016748711803,4.409841205149023,19.158162285322444,-0.06060693344086825,0,0,5878.580768497191,0.1874362016564929,0.004446572546536724,0.0077232726,0,0,0,0 +1883,0.25089467695775003,0.6814540279475114,0,0,2.918084088079926,3.918974956225914e-4,3.4467464999999995e-4,0.025000428936133783,0.024856862,34.05090045928955,0.010810957,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95902,0,457.00000254313153,4268.979,875.6031494140624,69.18597910133236,290.26300048828125,428.22120343049505,0,0,0,0,0,0,0,0,0,0,0,0,5.469715915751294e-6,5.6247084000000005e-6,0,0,0,0,3.021892868370439e-4,5.0789587e-4,0,0,0,0,277.5910491943359,0.6958725524070566,11.301072778092927,67.06254475755776,4.3447075949809335,18.709361365312684,-0.06171946015234329,0,0,6136.7508152909495,-0.3245940535795368,0.004446572546536724,0.0077232726,0,0,0,0 +1884,0.2528499020827967,0.6846835417141454,0,0,2.9781587398376455,4.065987474556702e-4,3.503391000000001e-4,0.025000428936133783,0.024856862,34.05100059509277,0.010810972,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93535,0,457.00000254313153,4267.7345,878.1482035319009,70.48060514662333,290.5119984944661,436.5183491794865,0,0,0,0,0,0,0,0,0,0,0,0,5.515679921093882e-6,5.6585019e-6,0,0,0,0,3.047286906318429e-4,5.1169724e-4,0,0,0,0,277.69505055745435,0.7016904496772703,11.463778568830996,68.59402326244992,4.507763748192013,19.009889976177178,-0.06283198686381833,0,0,6243.347604744989,-1.8150618607595548,0.004446572546536724,0.0077232726,0,0,0,0 +1885,0.25444299147687327,0.6908637814371342,0,0,2.987658653242268,4.215400040266104e-4,3.5614909e-4,0.025000428936133783,0.024856862,34.05099964141846,0.011550438,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93798,0,457.00000254313153,4267.8727,881.0251312255858,71.60546241341835,290.7969970703125,438.1415385380004,0,0,0,0,0,0,0,0,0,0,0,0,5.561643547480344e-6,5.6946520999999985e-6,0,0,0,0,3.0726809200132266e-4,5.1577023e-4,0,0,0,0,277.79504903157545,0.7078908709316327,11.603153567015962,68.94977818435397,4.492846370676968,19.20686906057728,-0.06394451357529336,0,0,6294.938313202323,-0.6420197136906102,0.004446572546536724,0.0077232726,0,0,0,0 +1886,0.25832612706643443,0.6919349119161695,0,0,3.0001483762763606,4.3672676110873e-4,3.621046e-4,0.025000428936133783,0.024856862,34.05110009511312,0.011550467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9357,0,457.00000254313153,4267.7531,883.8392181396483,72.58254388217381,291.09999593098956,437.73332685492454,0,0,0,0,0,0,0,0,0,0,0,0,5.607607590718544e-6,5.7303567999999985e-6,0,0,0,0,3.0980750307207927e-4,5.1979186e-4,0,0,0,0,277.8850479125976,0.7126327786706089,11.675797474801131,68.86926284379062,4.534738954197774,19.067819582095456,-0.06519373004483152,0,0,6353.02729378205,-0.0852453820278208,0.004446572546536724,0.0077232726,0,0,0,0 +1887,0.27097332569304644,0.6918854634202647,0,0,3.0445900747103636,4.521660230238922e-4,3.6821147e-4,0.025000428936133783,0.024856862,34.05120054880778,0.011550497,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94903,0,457.00000254313153,4268.4538,886.933135986328,73.77743063310328,291.4139989217122,443.10773813765155,0,0,0,0,0,0,0,0,0,0,0,0,5.653571633956744e-6,5.7675003e-6,0,0,0,0,3.1234690686687827e-4,5.2397934e-4,0,0,0,0,277.99504597981763,0.7182166601192096,11.825655230740924,69.79403942185417,4.618994873829845,19.328453638145426,-0.06654164466411291,0,0,6605.766964967214,-0.025019474885791315,0.004446572546536724,0.0077232726,0,0,0,0 +1888,0.2990240690559838,0.6915397836551626,0,0,3.1234840519185503,4.6786327826945734e-4,3.7446389e-4,0.025000428936133783,0.024856862,34.051300366719566,0.011550526,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91459,0,457.00000254313153,4266.6433,889.9262135823567,75.11035553057255,291.76300048828125,452.50230797053916,0,0,0,0,0,0,0,0,0,0,0,0,5.699535677194945e-6,5.8002124e-6,0,0,0,0,3.1488631066167727e-4,5.2765607e-4,0,0,0,0,278.08005015055335,0.724224234516275,12.041623292379388,71.4272374400245,4.7418969174520385,19.785746426186453,-0.06788955928339427,0,0,7182.264808724919,0.13500730253153945,0.004446572546536724,0.0077232726,0,0,0,0 +1889,0.2993958898436063,0.6910492076322109,0,0,3.104668337723354,4.838260307830448e-4,3.8086186e-4,0.025000428936133783,0.024856862,34.05139986673991,0.011550556000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95877,0,457.00000254313153,4268.9657,893.1561584472655,75.9296001940716,292.1130015055339,448.69086963270234,0,0,0,0,0,0,0,0,0,0,0,0,5.745499720433145e-6,5.840258e-6,0,0,0,0,3.174257217324339e-4,5.3217801e-4,0,0,0,0,278.191047668457,0.730764111829077,12.075327913087893,70.65718771639492,4.727164288354711,19.55277705492912,-0.06923747390267565,0,0,7178.592239188243,0.1858189092422608,0.004446572546536724,0.0077232726,0,0,0,0 +1890,0.32528597028265194,0.6877629398180971,0,0,3.159194948993984,5.000592888488123e-4,3.8741134e-4,0.025000428936133783,0.024856862,34.05150000254313,0.011550586000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9317,0,457.00000254313153,4267.5425,896.3831837972004,77.07862319106741,292.45799763997394,453.89903232867,0,0,0,0,0,0,0,0,0,0,0,0,5.791463763671345e-6,5.8736235e-6,0,0,0,0,3.199651255272329e-4,5.359300400000001e-4,0,0,0,0,278.2730509440104,0.7556615541830685,12.221880708940976,71.47659716602703,4.8079166884923445,19.778064862780106,-0.07058538852195702,0,0,7728.431301023277,0.07030158718899164,0.004446572546536724,0.0077232726,0,0,0,0 +1891,0.34045390881796567,0.6844114067588241,0,0,3.125180696005549,5.165705564043795e-4,3.9410043e-4,0.025000428936133783,0.024856862,34.051600774129234,0.011550615,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97344,0,457.00000254313153,4269.7366,899.666264851888,77.68229292407419,292.8159993489583,444.382731801162,0,0,0,0,0,0,0,0,0,0,0,0,5.837427806909545e-6,5.9135147000000014e-06,0,0,0,0,3.225045293220319e-4,5.4043419e-4,0,0,0,0,278.34705098470045,0.7669960073050373,12.159640198474342,69.53172190504567,4.743306066350147,19.199673026982396,-0.0719333031412384,0,0,8025.900172756182,-0.1023137574833239,0.004446572546536724,0.0077232726,0,0,0,0 +1892,0.3429460922092071,0.698931319975308,0,0,3.1105283647598623,5.333653001192337e-4,4.0093536e-4,0.025000428936133783,0.024856862,34.05169995625814,0.011550645,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99082,0,457.00000254313153,4270.6504,903.534194946289,78.54558088981553,293.16699981689453,439.8086590465999,0,0,0,0,0,0,0,0,0,0,0,0,5.8833918501477456e-6,5.951126000000002e-6,0,0,0,0,3.250439355421501e-4,5.446755599999999e-4,0,0,0,0,278.44204457600904,0.77827246793364,12.199146519671457,68.66391958974123,4.69568230481039,18.949521757077395,-0.07328121776051978,0,0,8166.143155148587,0.07763085595364166,0.004446572546536724,0.0077232726,0,0,0,0 +1893,0.3378703897546753,0.6997131247828723,0,0,3.1254308946941567,5.504500586539507e-4,4.079215e-4,0.025000428936133783,0.024856862,34.05179977416992,0.012290126,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97993999999998,0,457.00000254313153,4270.0783,907.2741190592446,79.81501328862245,293.4769999186198,443.3506557921903,0,0,0,0,0,0,0,0,0,0,0,0,5.929355893385946e-6,5.986023799999998e-6,0,0,0,0,3.275833417622683e-4,5.4860421e-4,0,0,0,0,278.55404917399085,0.7897298228538592,12.379453862745622,69.48705801909811,4.715239732570137,19.178456201207396,-0.07462913237980115,0,0,8120.644734612286,0.1864156024276895,0.004446572546536724,0.0077232726,0,0,0,0 +1894,0.35112450392061667,0.7155813956083555,0,0,3.205110617860807,5.678308225469664e-4,4.1505353e-4,0.025000428936133783,0.024856862,34.051900227864586,0.01229017,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5063,910.4781341552733,81.38345626276687,293.7909978230794,456.69603250902094,0,0,0,0,0,0,0,0,0,0,0,0,5.975319936624146e-6,6.017190099999998e-6,0,0,0,0,3.301227455570673e-4,5.5210279e-4,0,0,0,0,278.6890487670898,0.8020046367832572,12.66238559332695,71.90804380664727,4.8889485381651845,19.8361284777738,-0.07597704699908253,0,0,8411.388473243653,0.19284299907478186,0.004446572546536724,0.0077232726,0,0,0,0 +1895,0.37171203675260484,0.7209450963563064,0,0,3.216163844950097,5.855145864188671e-4,4.2233098e-4,0.025000428936133783,0.024856862,34.05209986368815,0.011550763,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4251,913.2259826660155,82.23116014335764,294.0789972941081,453.5518850499526,0,0,0,0,0,0,0,0,0,0,0,0,6.0212835251149954e-6,6.056690099999998e-6,0,0,0,0,3.326621542025047e-4,5.5656184e-4,0,0,0,0,278.83104960123694,0.8128876331059834,12.672444225617587,71.15178658195539,4.91917125426521,19.522500482390267,-0.07728033747142447,0,0,8846.667009900264,0.1930910447676056,0.004446572546536724,0.0077232726,0,0,0,0 +1896,0.38367481768429307,0.7234407884813598,0,0,3.170768746502162,6.03506836341694e-4,4.2976003e-4,0.025000428936133783,0.024856862,34.05219968159994,0.012290244,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4252,914.7710927327473,83.00005426186281,294.36499786376953,444.0944277814877,0,0,0,0,0,0,0,0,0,0,0,0,6.067247568353196e-6,6.0926241e-6,0,0,0,0,3.352015604226229e-4,5.606100700000001e-4,0,0,0,0,278.9390513102213,0.824102858385605,12.720593693458584,69.42267705803128,4.733994615392683,19.177287716924887,-0.07856237646782513,0,0,9089.59843267371,0.19318346141929987,0.004446572546536724,0.0077232726,0,0,0,0 +1897,0.4019811637589425,0.725878270524141,0,0,3.2687021119074915,6.218145863385871e-4,4.373290900000001e-4,0.025000428936133783,0.024856862,34.052300453186035,0.012290288,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99693,0,457.00000254313153,4270.9718,916.2742818196614,84.39253635318506,294.64599863688153,456.4122054736632,0,0,0,0,0,0,0,0,0,0,0,0,6.113211611591396e-6,6.1314997000000015e-6,0,0,0,0,3.377409642174219e-4,5.6499701e-4,0,0,0,0,279.051045735677,0.8346371271895597,12.890217099416494,71.54673250412924,5.026760132357157,19.58218287923395,-0.07984441546422576,0,0,9520.393854224154,0.19322441190367687,0.004446572546536724,0.0077232726,0,0,0,0 +1898,0.4233042102069517,0.728376569617105,0,0,3.2968702587691077,6.404438560518125e-4,4.4504943e-4,0.025000428936133783,0.02485618,34.052499771118164,0.012290333,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01512,0,457.00000254313153,4271.9281,919.0172271728514,85.36127162189973,294.95399983723956,456.6037673563168,0,0,0,0,0,0,0,0,0,0,0,0,6.159175654829596e-6,6.1692876e-6,0,0,0,0,3.402803704375401e-4,5.692587400000001e-4,0,0,0,0,279.1630477905273,0.8443053161523663,12.959068227762758,71.45665951589594,5.0980295350528255,19.501681112942983,-0.0811264544606264,0,0,10010.09583228873,0.19324438193560026,0.004446572546536724,0.0077232356,0,0,0,0 +1899,0.46331719155147416,0.7285561578617307,0,0,3.35583134512378,6.594006069159756e-4,4.856732599999999e-4,0.025000428936133783,0.024857703,34.05260022481283,0.012290377,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97653,0,457.00000254313153,4269.8993,922.2811838785806,86.70543386559314,295.2999979654948,462.1035993919434,0,0,0,0,0,0,0,0,0,0,0,0,6.205139698067796e-6,6.2013454e-6,0,0,0,0,3.4281977665765834e-4,5.7286006e-4,0,0,0,0,279.3080469767252,0.8537833662798698,13.20706844128895,72.46072255843502,5.09497938372201,19.868709929010027,-0.08240849345702704,0,0,10838.113453916734,0.1932520396033143,0.004446572546536724,0.0077232334,0,0,0,0 +1900,0.4881558617748878,0.7305723603784592,0,0,3.3618210367956025,6.786918675061315e-4,0.0023926675,0.025000376626849174,0.024856437,34.052798906962074,0.028558348,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98481,0,457.00000254313153,4270.3344,925.5521138509114,87.61328845020651,295.6749954223633,459.5444668504325,0,0,0,0,0,0,0,0,0,0,0,0,6.251103741305997e-6,6.2381326e-6,0,0,0,0,3.4535918045245734e-4,5.770064599999999e-4,0,0,0,0,279.4540481567382,0.8631696543463733,13.276669554810011,71.90656631461616,5.089168388032589,19.750787925178965,-0.08385968995663869,0,0,11348.727499729994,0.19324967713848945,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1901,0.5044857194846931,0.7969063127701378,0,0,3.3829529353801377,7.011479125746215e-4,0.0048200969,0.025000494594375294,0.024857442,34.05289999643961,0.047784449000000014,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04131,0,457.00000254313153,4273.3046,928.800333658854,88.39116711070807,296.0069986979167,457.6168305058551,0,0,0,0,0,0,0,0,0,0,0,0,6.297067784544197e-6,6.2798935e-6,0,0,0,0,3.478985866725755e-4,5.817261e-4,0,0,0,0,279.613047281901,0.8714059588722426,13.301409901434221,71.63263161162581,5.20214413763188,19.48762216724768,-0.08579737819029178,0,0,11775.255202668699,0.1931616844954455,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1902,0.5193451170981727,0.800278636367018,0,0,3.3815414695884436,8.848810005777826e-4,0.0057781223,0.025000344030559063,0.024856062,34.055300076802574,0.050743008,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04898,0,457.00000254313153,4273.708,932.7311604817708,89.26282464192792,296.3249994913737,455.02617682462983,0,0,0,0,0,0,0,0,0,0,0,0,6.343031827782397e-6,6.316678900000002e-6,0,0,0,0,3.5043799531801295e-4,5.858722900000001e-4,0,0,0,0,279.8610509236653,0.8812154472523583,13.412488026584588,71.24149846316587,5.179688036784444,19.35806149893677,-0.08773506642394488,0,0,12100.548766402842,0.09059743996435048,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1903,0.5664546211178523,0.8295711459044773,0,0,3.389386332354358,0.001116641176243623,0.0069576127,0.025000539453079302,0.024857979,34.05799961090088,0.05591998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09555,0,457.00000254313153,4276.1561,936.7834269205728,89.89074056747505,296.65399678548175,449.9625304110428,0,0,0,0,0,0,0,0,0,0,0,0,6.388995871020597e-6,6.3575352999999986e-6,0,0,0,0,3.5297739911281195e-4,5.9048768e-4,0,0,0,0,280.15604146321607,0.890660734283567,13.437520518020643,70.25376393283156,5.1901034578968455,19.030597877588104,-0.08967275465759794,0,0,13044.158155518342,-0.7087274740337839,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1904,0.5751521325099065,0.856100074253587,0,0,3.4640582999698033,0.0013829462016777445,0.0094363385,0.02500028194238742,0.024855289,34.06080023447672,0.068491568,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07939,0,457.00000254313153,4275.3063,942.1142679850259,91.35674942842638,296.95399475097656,462.6217650299278,0,0,0,0,0,0,0,0,0,0,0,0,6.434959914258798e-6,6.3918668e-6,0,0,0,0,3.555168053329301e-4,5.9435105e-4,0,0,0,0,280.43204243977857,0.900998671506556,13.731471700844033,72.88437625246438,5.400226562773813,19.656119727265345,-0.09161044289125103,0,0,13274.437189098227,-0.26430883974577096,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1905,0.6122962467973883,0.8830904178747726,0,0,3.525334738078169,0.0017163676869434614,0.013412831000000002,0.02500062497953574,0.024859105,34.06420008341471,0.087718467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08907,0,457.00000254313153,4275.8152,947.4432729085286,92.40132432209919,297.28899637858075,467.44012883738543,0,0,0,0,0,0,0,0,0,0,0,0,6.480923502749647e-6,6.4289102e-6,0,0,0,0,3.5805621155304834e-4,5.985269799999999e-4,0,0,0,0,280.7050450642903,0.911796750677243,13.855105466247057,73.70973521692333,5.570897783797489,19.752967156958555,-0.09354813112490414,0,0,14100.978379035863,0.07758312468608113,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1906,0.6442763573284219,0.9139458953081726,0,0,3.549324480388693,0.0021963609227289758,0.018196454,0.02500016087045272,0.024853655,34.068699518839516,0.11138246,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10645,0,457.00000254313153,4276.7286,953.0924224853514,93.2499831638467,297.66199747721356,466.4356478967891,0,0,0,0,0,0,0,0,0,0,0,0,6.526887545987847e-6,6.466788299999998e-6,0,0,0,0,3.6059561534784734e-4,6.027991099999999e-4,0,0,0,0,280.9800465901692,0.9228643088832689,13.959645369835703,73.46173851221981,5.607842106776347,19.60693136091458,-0.09545551104287764,0,0,14766.450119103303,0.17494042863794804,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1907,0.726915977115476,0.9229970275040732,0,0,3.6744573684699935,0.002872606390155852,0.016966195,0.025000798360755045,0.025812945,34.074700037638344,0.10398923,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14627,0,457.00000254313153,4278.822,959.1561177571614,94.5608019449233,298.0979944864909,480.31745635776645,0,0,0,0,0,0,0,0,0,0,0,0,6.5728515892260475e-6,6.507102e-6,0,0,0,0,3.6313501914264634e-4,6.0735196e-4,0,0,0,0,281.2760442097981,0.9335570189055034,14.216774986296493,76.00444514305916,5.925751520425966,20.144490748304303,-0.09692403030316216,0,0,16264.987209463294,0.062031619541395626,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1908,0.7032325912946371,0.932378464388443,0,0,3.675876640379726,0.0037649905619521937,0.021404879,0.02499991360430916,0.029231937000000006,34.08239936828613,0.12765503,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12414,0,457.00000254313153,4277.6586,964.0852966308593,95.71237193404865,298.5179901123047,482.5826340091374,0,0,0,0,0,0,0,0,0,0,0,0,6.618815632464248e-6,6.5407783e-6,0,0,0,0,3.6567443021340296e-4,6.111398000000001e-4,0,0,0,0,281.61104329427076,0.9439781461374255,14.407422860628587,76.85623799627187,5.975251674338594,20.34218954572492,-0.09839254956344667,0,0,15590.713118515627,0.12577421060954422,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1909,0.7293531000033262,0.9394639872302616,0,0,3.6900486620571034,0.004334990129185219,0.036714367000000005,0.02507337733792762,0.7650859999999999,34.087400118509926,0.21121463,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.16533,0,457.00000254313153,4279.8240000000005,969.3983662923176,96.46669460330283,298.93599192301434,480.68946878632124,0,0,0,0,0,0,0,0,0,0,0,0,6.664779675702448e-6,6.5813135e-6,0,0,0,0,3.6821383400820196e-4,6.1571818e-4,0,0,0,0,281.95004526774085,0.9541466929230623,14.465734280062996,76.44087709943787,6.04171533179017,20.1096713132971,-0.0998610688237312,0,0,16371.00547137995,0.1917775514880681,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1910,0.765726394850593,0.9455920872078338,0,0,3.7676081069530625,0.005609989515505731,0.042342327,0.02532928188641866,1.0366888,34.098299980163574,0.24301505,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14442,0,457.00000254313153,4278.7248,974.7870890299478,97.77187102780431,299.37699635823566,491.4713622185322,0,0,0,0,0,0,0,0,0,0,0,0,6.710743718940648e-6,6.615104700000002e-6,0,0,0,0,3.7075323780300096e-4,6.1951928e-4,0,0,0,0,282.3140436808268,0.9648675091710838,14.7306044680131,78.48124342715315,6.22524154290356,20.602328395865626,-0.10126503542660648,0,0,17123.070519811292,0.19159019115572065,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1911,0.7810146544824405,0.8874036750204771,0,0,3.725917531952306,0.007499988889321685,0.047217079,0.0812472328543663,0.55672031,34.11459986368815,0.27037941,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.20214,0,457.00000254313153,4281.7592,979.4653218587239,98.4293811567004,299.82899220784503,482.3736483687901,0,0,0,0,0,0,0,0,0,0,0,0,6.7567077621788485e-6,6.6575406e-6,0,0,0,0,3.7329264887375757e-4,6.2431671e-4,0,0,0,0,282.72104136149085,0.9761720065989483,14.679374542895259,76.73370568501319,6.205453710840906,20.007607425742776,-0.10240012153911617,0,0,17244.1854917937,0.1913996219514424,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1912,0.8199661913672125,0.8508398703003752,0,0,3.7091004678175183,0.009259988398601612,0.055977137,0.10000008965531985,1.3372385,34.12980047861735,0.31844894,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.23472,0,457.00000254313153,4283.4718,983.6058603922525,99.26614632335712,300.3529917399089,477.9889214580395,0,0,0,0,0,0,0,0,0,0,0,0,6.802671805417049e-6,6.6972695e-6,0,0,0,0,3.7583205024323735e-4,6.288021400000001e-4,0,0,0,0,283.01904296874994,0.9924203303369911,14.713664798160675,75.8316081908469,6.21946391056852,19.680892428681513,-0.10353520765162587,0,0,17989.19691090075,-0.2483084466661772,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1913,0.889533970104308,0.8203484804069425,0,0,3.787939036045986,0.011569987594460448,0.05934571,0.11666701609889667,2.7874772,34.1497999827067,0.33694139,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.25437,0,457.00000254313153,4284.5046,986.2423197428384,100.61255837319116,300.9099934895833,488.2676034939648,0,0,0,0,0,0,0,0,0,0,0,0,6.848635848655249e-6,6.7356009000000015e-6,0,0,0,0,3.7837145403803635e-4,6.3312652e-4,0,0,0,0,283.3620402018229,1.0114400974128448,14.921807646192061,77.57996159883326,6.453879619764709,20.00732869050688,-0.10467029376413556,0,0,19072.753187289316,-0.30943169229472783,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1914,0.8114913689780275,0.8092045045442162,0,0,3.764418792127778,0.014084987109526992,0.064801984000000007,0.19333053504427275,4.5655912,34.17150020599365,0.36726542,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.19867,0,457.00000254313153,4281.5767,988.610880533854,102.28405865111169,301.4189910888672,494.4978826289548,0,0,0,0,0,0,0,0,0,0,0,0,6.894599891893449e-6,6.765480200000002e-6,0,0,0,0,3.809108626834738e-4,6.3647677e-4,0,0,0,0,283.71604156494135,1.0321295138459616,15.241497455163927,79.77807342879137,6.499176732511072,20.59248108677444,-0.10580537987664523,0,0,17594.434057832063,0.020398445252377703,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1915,0.8029916592535993,0.7974019582591167,0,0,3.7223377832742996,0.016684986495723326,0.08400062900000001,0.31655970215797424,6.2098372,34.193999926249184,0.47153519,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.2716,0,457.00000254313153,4285.4105,991.4610799153645,103.0579197466507,301.9369888305664,484.24768488469795,0,0,0,0,0,0,0,0,0,0,0,0,6.9405635182799115e-6,6.8098518e-6,0,0,0,0,3.8345026890359196e-4,6.4149729e-4,0,0,0,0,284.04704284667963,1.0546195831794383,15.232131029774814,78.35040062356745,6.4827720725927875,20.061424577974346,-0.10694046598915492,0,0,17573.116044207876,0.1641375391623491,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1916,0.8653307900276433,0.7997102256366486,0,0,3.744207068777381,0.019669986019531887,0.10465075,0.5206524853905042,5.9968917,34.21979999542236,0.58467971,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.29863,0,457.00000254313153,4286.831,998.4538218180337,104.08894352066241,302.48498789469403,482.95426600786,0,0,0,0,0,0,0,0,0,0,0,0,6.986527523622499e-6,6.8490958e-6,0,0,0,0,3.8598967269839096e-4,6.4592684e-4,0,0,0,0,284.31204223632807,1.077791381611315,15.342847178146304,78.27985154770643,6.60168085846147,19.908298607149394,-0.1080755521016646,0,0,19065.484279863696,0.18922175763831675,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1917,0.896621584801294,0.8027455741063269,0,0,3.8263968555995858,0.02392498527963956,0.11034348,0.7563406427701315,5.1585271,34.2564001083374,0.61870744,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.37275,0,457.00000254313153,4290.7275,1003.5705515543618,105.4397414501963,303.01098887125653,492.9600447524987,0,0,0,0,0,0,0,0,0,0,0,0,7.032491566860699e-6,6.8937875e-6,0,0,0,0,3.885290813438284e-4,6.509842700000001e-4,0,0,0,0,284.6150461832682,1.1002556131310455,15.500365004779491,80.4548180697849,7.003710361287698,20.17756104011222,-0.10921063821417433,0,0,19906.998931884555,0.19018318847478569,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1918,0.8873955587039598,0.8060358496732685,0,0,3.8305973797130326,0.02868998423218727,0.10461425,0.9276737372080485,4.2721672,34.29749997456869,0.58914082,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.37311,0,457.00000254313153,4290.7462,1010.1304473876952,106.74593160054405,303.44898732503253,496.242073076373,0,0,0,0,0,0,0,0,0,0,0,0,7.078455610098899e-6,6.9300659e-6,0,0,0,0,3.910684875639466e-4,6.550720200000001e-4,0,0,0,0,284.80504862467444,1.1212267086350811,15.704391027274072,81.61294813978053,7.118191256260811,20.368951576880015,-0.110345724326684,0,0,19743.244967391554,0.1899763122778872,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1919,0.7808604024397078,0.8111591475979437,0,0,3.7226411346821937,0.03343498365332683,0.10155164,1.0843643546104431,3.196035,34.338699658711754,0.57214502,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.33647,0,457.00000254313153,4288.8202,1017.6303660074868,108.09510704377881,303.8139877319336,490.9794171167238,0,0,0,0,0,0,0,0,0,0,0,0,7.1244196533371e-6,6.962042700000002e-6,0,0,0,0,3.936078889334264e-4,6.5866401e-4,0,0,0,0,284.85105133056635,1.1402334776582428,15.915652713498652,81.67724386438958,6.926922672741556,20.368638212598857,-0.1115197148188522,0,0,16994.786869895725,0.18976010178406924,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1920,0.9030601007400624,0.8135184546759534,0,0,3.8130101207834444,0.03770498279482126,0.071874804,1.176037738720576,4.0059497,34.375800132751465,0.41169313,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.40157,0,457.00000254313153,4292.2427,1025.0703277587888,109.13363853305731,304.24598693847656,498.87459987539705,0,0,0,0,0,0,0,0,0,0,0,0,7.1703836965753e-6,7.0058716e-6,0,0,0,0,3.961472951535446e-4,6.636221499999999e-4,0,0,0,0,284.9290440877278,1.157633764648187,16.036656139503478,82.96992111207,7.3188151464881575,20.402395098799328,-0.11278881532908334,0,0,18802.69892302283,0.18954070686553806,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1921,0.7938358638145999,0.8612993334837397,0,0,3.661222702405219,0.042184981517493725,0.05599481,1.241669515768687,6.3575754999999985,34.4146998723348,0.32444592,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.42979,0,457.00000254313153,4293.7261,1032.2003377278643,109.80934796264431,304.59998830159503,486.6136241874396,0,0,0,0,0,0,0,0,0,0,0,0,7.2163477398135e-6,7.045455500000001e-6,0,0,0,0,3.98686703798982e-4,6.6809072e-4,0,0,0,0,285.0390421549479,1.173417684573443,16.01016129774032,81.18725519244387,7.146950074087312,19.846108774902355,-0.11405791583931453,0,0,16049.705932221917,0.1893181118062252,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1922,0.8438966628298804,0.8533692042065284,0,0,3.6583337227642674,0.04389498041321834,0.10093674,1.3888855278491974,7.5196689,34.43010012308756,0.56921203,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.47367,0,457.00000254313153,4296.0327,1039.1002502441404,110.48581040150992,304.9449818929036,484.8273418444006,0,0,0,0,0,0,0,0,0,0,0,0,7.2623117830517e-6,7.0869364000000015e-6,0,0,0,0,4.01226107593781e-4,6.7277807e-4,0,0,0,0,285.17004903157545,1.188779371830489,16.07300912106922,80.53069430512947,7.252038815173717,19.474278395734512,-0.11532701634954567,0,0,16950.895997894484,0.0877045766097048,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1923,0.9595590008888546,0.8614844099618343,0,0,3.8812462099992877,0.04700497972468535,0.13753371,1.6249915957450867,8.1995609,34.45719941457113,0.77479139,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.54539,0,457.00000254313153,4299.8026,1045.1300659179685,112.25356413194692,305.27098337809247,514.2343951443905,0,0,0,0,0,0,0,0,0,0,0,0,7.308275826289901e-6,7.131803e-6,0,0,0,0,4.037655138138992e-4,6.7785565e-4,0,0,0,0,285.46704101562494,1.205120977529758,16.469305300306814,86.27583424473677,8.013836332456805,20.417825208931507,-0.11659611685977685,0,0,19723.672024100037,0.12093783396952988,0.004446569985399644,0.007723268,0,0,0,0 +1924,0.9703594405113312,0.8676633311171565,0,0,3.7748090158825875,0.052589978401859604,0.14595489,1.8459543486436207,10.064032,34.50569979349772,0.82730698,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.55899,0,457.00000254313153,4300.5175,1049.450032552083,112.63350596587964,305.62998453776044,499.0974143950571,0,0,0,0,0,0,0,0,0,0,0,0,7.354239869528101e-6,7.169801200000001e-6,0,0,0,0,4.0630492245933664e-4,6.8214162e-4,0,0,0,0,285.6050491333007,1.2222190421891945,16.415647771084632,83.21123114220697,7.790296571572385,19.77882376042076,-0.117865217370008,0,0,19521.89407498274,0.18863121099961191,0.004446569946594536,0.0077232683,0,0,0,0 +1925,0.9836991206856317,0.8708471713839661,0,0,3.7906069821644643,0.05885497791071733,0.15281139,2.1164215207099915,9.887985,34.5605993270874,0.86947278,0,0,0,0,0,0,0,0,0,0,5.299997687339783,105.60265,0,457.00000254313153,4302.8128,1052.159952799479,113.6704269189651,305.81298065185547,502.6957687586778,0,0,0,0,0,0,0,0,0,0,0,0,7.400203495914563e-6,7.2114506e-6,0,0,0,0,4.0884432625413564e-4,6.8684841e-4,0,0,0,0,285.6520512898762,1.2377911006225208,16.841681561106117,84.06174423454924,7.983263811925956,19.753454837168906,-0.11913431788023915,0,0,19738.889839322743,0.18839574168627352,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1926,0.9711936637110966,0.8752881607638067,0,0,3.724383638277895,0.06516497613241275,0.16877181,2.460367262363434,10.020584,34.616199811299644,0.96266008,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.65209,0,457.00000254313153,4305.4116,1053.600107828776,114.54563027246535,305.9539845784505,499.041820374083,0,0,0,0,0,0,0,0,0,0,0,0,7.4461675012571504e-6,7.2538666e-6,0,0,0,0,4.1138373004893464e-4,6.9164354e-4,0,0,0,0,285.69204711914057,1.2526121062865871,17.14732507530922,84.16877083488303,8.057166101708676,19.573020111236303,-0.12040341839047032,0,0,19808.91323463674,0.18815706175477445,0.0044465700242047506,0.0077232683,0,0,0,0 +1927,1.0719822978926645,0.9148152429216062,0,0,3.8503573823854342,0.0720199750115474,0.19366311,2.6942857106526694,13.691728,34.67679913838705,1.1076116000000005,0,0,0,0,0,0,0,0,0,0,5.299997607866923,105.65063,0,457.00000254313153,4305.3352,1055.770568847656,115.74747998347533,306.17698669433594,515.0910883833536,0,0,0,0,0,0,0,0,0,0,0,0,7.492131544495351e-6,7.290134400000002e-6,0,0.0049450274,0,0,4.1392313869437203e-4,6.9573008e-4,0,0,0,0,285.7400512695312,1.2667652835613548,17.432321744004053,86.52753524964037,8.499773806732605,19.875509864662817,-0.12167251890070148,0,0,21139.782286868525,0.187915087386083,0.004446569985399644,0.0077232677,0,0,0,0 +1928,1.0761742979146,0.9182619073884535,0,0,3.828134931557229,0.07970497260491054,0.21328049999999998,3.02649054924647,16.914307,34.74499924977621,1.2252077,0,0.020814729,0,0,0,0,0,0,0,0,5.2999982436498,105.59392,0,457.00000254313153,4302.3537,1060.6403605143228,116.7958666079441,306.3289794921875,515.8400889336957,0,0,0,0,0,0,0,0,0,0,0,0,7.538095587733551e-6,7.3196023e-6,0,0.030139896,0,0,4.1646254248917103e-4,6.990328999999999e-4,0,0,0,0,285.83304850260413,1.2797850846246124,17.62700284771002,87.11586336850812,8.569023694913732,19.91593076109437,-0.12294161941093265,0,0,21065.047460560574,0.16326849505962074,0.004446569985399644,0.007723269,0,0,0,0 +1929,1.1569513873862218,0.945536477224549,0,0,3.8902159937355303,0.08870497221748035,0.20802541,3.517713646094004,19.38339,34.825199127197266,1.2037865,0,0.33502494,0,0,0,0,0,0,0,0,5.299996972084045,105.60372,0,457.00000254313153,4297.9849,1066.6603291829424,118.01999771578741,306.49498748779297,527.0535755087527,0,0,0,0,0,0,0,0,0,0,0,0,7.584059630971751e-6,7.3457199e-6,8.387752144093005e-4,0.003329301,0,0,4.1900194628397003e-4,7.019496099999999e-4,0,0,0,0,285.8910522460937,1.290827581649255,17.867272783472913,89.37670246877072,8.894481947800461,20.274973944467554,-0.1242107199211638,0,0,22402.21951573089,0.008459436299327926,0.004446569946594536,0.007723266199999999,0,0,0,0 +1930,1.0728864782722383,1.0228008835417055,0,0,3.9076228058376485,0.0980799701064825,0.17035764,4.063463946183522,20.571834,34.909299532572426,0.99750344,0.001314997343191256,1.1701026,0,0,0,0,0,0,0,0,5.299998998641968,105.91828999999998,0,457,4287.8382,1072.6401163736978,119.67017881003574,306.6199773152669,535.0349028180784,0,0,0,0,0,0,0,0,0,0,0,0,7.630023560523114e-6,7.3580297999999985e-6,0.00510867650154978,-0.026051043,0,0,4.2154135735472664e-4,7.0327493e-4,0,0,0,0,285.9380518595377,1.3003703550961545,18.10997615018731,91.59573862667055,8.841770878325681,20.952388588675653,-0.12547982156900256,0,0,20792.33985686783,0.17991195822791398,0.004446570101814966,0.0077232725,0,0,0,0 +1931,0.9686717262631225,1.0331302905231323,0,0,3.699193086333459,0.10662497021257877,0.11326202,4.702978173891704,21.232329,34.9865992863973,0.6766021,0.021151568042114377,1.6600328999999998,0,0,0,0,0,0,0,0,5.3066509167353315,106.6887,0,457.000005086263,4282.6938,1077.4902242024737,119.90750782308882,306.82198333740234,504.89813450435264,0,0,0,0,0,0,0,0,0,0,0,0,7.675987490074476e-6,7.3819696e-6,0.0013775627594441175,-0.0038292076,0,0,4.2408076114952564e-4,7.059406299999999e-4,0,0,0,0,286.124043782552,1.3073181920546588,17.958294196248843,86.48531866506026,8.206316153499158,19.782983456664027,-0.12674892343562766,0,0,18348.14599749548,0.1869152841968948,0.0044465698301792145,0.0077232589,0,0,0,0 +1932,0.8802743934777767,0.934985060725432,0,0,3.701120518695932,0.11274996710320313,0.085847633,5.2942134141922,23.837144,35.04279931386312,0.51911084,0.07499745239814122,1.6167368,0,0,0,0,0,0,0,0,5.338305354118347,107.41813,0,457.00000254313153,4276.7559,1081.9602254231768,121.42198728704909,307.09297943115234,510.1823315036154,0,0,0,0,0,0.0057643486,0,0,0,0,0,0,7.721951533312676e-6,7.4038620000000015e-06,6.616643853097534e-4,7.431065e-4,0,0,4.2662016494432464e-4,7.083703599999999e-4,0,0,0,0,286.222048441569,1.3141063515038527,18.10001303714107,87.9072537284969,8.14248430159185,20.161815548303863,-0.12801802530225273,0,0,16151.105195411223,0.04254262073622287,0.004446570334645609,0.0077232888,0,0,0,0 +1933,0.9234526077537247,0.9318013427122356,0,0,3.6739916956408347,0.11636996641755104,0.10162739999999999,5.937420805295308,28.120028,35.076699574788414,0.61081444,0.12499795357386272,1.6336582,0,0,0,0,0,0,0,0,5.379978577295939,108.09758,0,456.99999745686847,4271.2585,1086.540334065755,122.34376589659303,307.40198008219403,508.11601205842635,0,0,0,0,0,0.14482802,0,0,0,0,0,0,7.767915576550877e-6,7.4266479000000016e-6,7.192010428601255e-4,8.0764091e-4,0,0,4.2915957358976203e-4,7.1090308e-4,0,0,0,0,286.3710505167643,1.3197777870137994,18.14058311592853,87.73926442282286,8.102332976784076,20.019613310457757,-0.1292871271688778,0,0,16995.040808999714,0.15037091489606738,0.004446569170492391,0.0077232216,0,0,0,0 +1934,1.000687973523085,0.9200297551297542,0,0,3.8176224066538618,0.120129964624842,0.15202423,6.679798523585002,34.519287,35.111599604288735,0.91252255,0.174997894714276,1.6505883,0,0,0,0,0,0,0,0,5.419978777567546,108.91202,0,456.99999745686847,4272.3774,1091.770294189453,123.95329985100088,307.7849833170573,528.0331660089164,0,0,0,0,7.617614949898174e-4,0.60639434,0,0,0,0,0,0,7.813879619789077e-6,7.4653224e-6,7.817409447549531e-4,8.7789025e-4,0,0,4.3169897738456103e-4,7.152669800000001e-4,0,0,0,0,286.4670486450195,1.326062978814577,18.32411358884008,91.49703968423377,8.603675585096985,20.702617836824825,-0.1305562290355029,0,0,18679.912767508573,0.18613128672545048,0.004446571848044793,0.007723374200000002,0,0,0,0 +1935,1.0505968685462075,0.9186843152571444,0,0,3.826763235457096,0.12510996125638485,0.22028466,7.595823089281718,40.132859,35.15789985656738,1.3303298,0.22499790415167809,1.6675173,0,0,0,0,0,0,0,0,5.459979295730591,109.70014,0,457,4272.1486,1097.08012898763,124.8946043872966,308.2269795735677,529.4409406291938,0,0,0,0,0.019080033137773473,0.97427321,0,0,0,0,0,0,7.859843663027277e-6,7.500741299999999e-6,8.497191738570109e-4,9.5422447e-4,0,0,4.3423838117936003e-4,7.192557e-4,0,0,0,0,286.58704884847,1.332452330452497,18.317319645408826,91.90214074154562,8.779424673428734,20.543197042155484,-0.13182533090212795,0,0,20077.943320367118,0.18586353451204687,0.004446565833253165,0.0077230226,0,0,0,0 +1936,1.1503667221829357,0.9270693885573005,0,0,3.9720080230657695,0.13321496173739433,0.28820401,8.761372248331705,42.33712,35.23359902699789,1.7570203000000002,0.27499790986378986,1.6844464,0,0,0,0,0,0,0,0,5.4999799728393555,110.56758,0,456.999994913737,4275.9063,1101.8303019205728,126.46470475438792,309.01197306315106,550.0398548533171,0,0,0,0,0.07932233065366745,1.0455299,0,0,0,0,0,0,7.905807706265477e-6,7.545934399999999e-6,9.236086334567517e-4,0.001037276,0,0,4.367777898247975e-4,7.243709e-4,0,0,0,0,286.7470448811848,1.3386899894061661,18.652869642211954,95.83484543323485,9.362043924590697,21.164186541248704,-0.13309443276875307,0,0,21597.571787769164,0.185592517547358,0.0044465794538458185,0.007723846199999999,0,0,0,0 +1937,1.231103104871657,0.9045164915618376,0,0,3.977215074471826,0.14407995715737343,0.34372195,10.024959723154703,44.188471,35.3363987604777,2.1186454,0.3249979118506114,1.7013755000000002,0,0.0063900215,0,0,0,0,0,0,5.539980530738831,111.3625,0,457.00000254313153,4275.9946,1106.3199869791665,127.18233706750797,309.7639745076497,550.6109419060176,0,0,0,0,0.1400045237193505,1.1131878000000002,0,0,0,0,0,0,7.951771749503678e-6,7.5821791e-6,0.0010039232001872733,0.0011274768,0,0,4.3931719604491565e-4,7.2845477e-4,0,0,0,0,286.95104471842444,1.3465253526433507,18.73588299543127,95.84567433043011,9.575630542004474,20.850604708617507,-0.13436353463537815,0,0,23231.712031323073,0.1853182578338796,0.004446548409759998,0.0077218498,0,0,0,0 +1938,1.1614219711074325,0.9073215418860066,0,0,3.8795464313880084,0.1580399548014005,0.39883954,11.266163110733032,49.06474,35.46979935963949,2.4891541,0.3749979188044866,1.7183046999999998,0,0.1328808,0,0,0,0,0,0,5.579981207847595,112.0603,0,456.99999745686847,4271.2734,1110.6307983398435,127.90539303616418,310.2939758300781,535.4268484555511,0,0,0,0,0.20000430569052696,1.185033,0,0,0,0,0,0,7.997735792741878e-6,7.6064912e-6,0.0010912219295278192,0.0012254241,0,0,4.4185659983971465e-4,7.3116337e-4,0,0,0,0,287.191042582194,1.3551266769032138,18.7206280051743,93.2370606174549,9.13361208452991,20.283818003860038,-0.13563263650200325,0,0,21542.975865724657,0.1850407365123296,0.004446620470844209,0.0077285525,0,0,0,0 +1939,1.2326137038964111,0.9058800276933815,0,0,4.010820601451636,0.1736899564663569,0.43390074,12.575761953989664,56.68305400000001,35.62149874369303,2.745053,0.4249979183077812,1.7352338,4.437717252585571e-4,0.68779311,0,0,0,0,0,0,5.61998176574707,112.8293,0,457.00002034505206,4270.1197,1116.909678141276,129.50135676592018,310.8509750366211,554.5379171230255,0,0,0,0,0.26000453531742096,1.2571398,0,0,0,0,0,0,8.043699835980078e-6,7.6395717e-6,0.0011861117285055418,0.0013320616,0,0,4.443960084851521e-4,7.3488257e-4,0,0,0,0,287.3870468139648,1.3668291715856424,18.987929691357078,97.34535423251211,9.632984018885308,21.020853325485078,-0.13690173836862835,0,0,23010.268809183824,0.1847599106254542,0.004446447691104065,0.11813875,0,0,0,0 +1940,1.332494477928578,0.8934636293441599,0,0,4.026253626433618,0.19239995131889978,0.50172554,14.090854724248251,67.98074100000001,35.804999033610024,3.2190952,0.4749979227781296,1.7521629,0.009225911945880702,1.4928916,0,0,0,0,0,0,5.6599823633829756,113.75015,0,456.9999643961589,4276.3916,1120.120178222656,130.13499426241637,311.35697682698566,550.4654056455058,0,0,0,0,0.3200042446454366,1.3304593999999998,0,0,0,0,0,0,8.089663500262153e-6,7.6912641e-6,0.0012892556163327147,0.0014481828,0,0,4.469354122799511e-4,7.4074684e-4,0,0,0,0,287.61904144287104,1.3795892066065865,18.93380647928792,96.49612886832482,9.961368880607099,20.566275747266797,-0.13793690008074544,0,0,25159.0741191676,0.1844758339571321,0.0044469935819506645,0.21814961,0,0,0,0 +1941,1.3573323902091925,0.87608140300394,0,0,4.050294266866393,0.21106995145479837,0.64957282,15.872149070103964,81.740279,35.991299311319985,4.2240743,0.5249979098637899,1.769092,0.04815833130851388,2.2339929,0,0,0,0,0,0,5.69998296101888,114.54353,0,457.0000813802083,4282.9257,1123.240509033203,132.2180939399341,311.81097412109375,552.9500650768001,0,0,0,0,0.3800046021739642,1.4028748,0,0,0,0,0,0,8.135627467709128e-6,7.727317500000001e-6,0.0014013840700499713,0.0015741503,0,0,4.494748160747501e-4,7.448086699999999e-4,0,0,0,0,287.8640467325846,1.42706317607174,19.034030783582587,97.09407345232208,10.193711740010501,20.462031367555745,-0.1386016615843945,0,0,26113.949704774812,0.1841885864846894,0.012151915968085328,0.1951164,0,0,0,0 +1942,1.3590493190022876,0.8973145216954003,0,0,4.1141932838166495,0.23562495286266008,0.84353078,18.12043031056722,95.021136,36.23889923095703,5.585489,0.5749979317188263,1.7860212,0.112600847457846,2.976471,0,0,0,0,0,0.19841173,5.739983518918355,115.26991,0,456.9997380574544,4303.7401,1128.1901550292966,134.70602408126945,312.17197672526044,560.1841861089208,0,0,0,0,0.4400041376550992,1.4745563999999998,0,0,0,0,0,0,8.181591510947328e-6,7.7551846e-6,0.0015232670799984287,0.0017109548,0,0,4.5201422229486826e-4,7.4792699e-4,0,0,0,0,288.1380538940429,1.5298185446895778,19.210183227285178,98.65719695401302,10.345483778655613,21.014193770024683,-0.13926642308804354,0,0,26702.042786503276,0.18389809416798145,0.018664849922060966,0.16898031,0,0,0,0 +1943,1.4029458246329907,0.8921248427380299,0,0,4.11408578168194,0.267039954662323,0.80476688,20.794118722279865,89.521615,36.56109873453776,5.4576739000000005,0.6249979237715403,1.8029502,0.20245546102523804,3.7199961,0,0,0,0.056451758,0,4.3053247,5.77998411655426,116.04761,0,457.93199666341144,4331.4951,1132.6601562499998,136.62968688428126,312.3899790445964,561.0185502959332,0,0,0,0,0.5000047385692596,1.5467027,0,0,0,0,0,0,8.227555554185528e-6,7.789335e-6,0.0016557506072179724,0.0018597366,0,0,4.545536309403057e-4,7.517695e-4,0,0,0,0,288.78102874755854,1.6777932069727464,19.226489945128584,99.48634644476039,10.644062862464148,20.76469900653816,-0.13993118459169265,0,0,27110.348585419746,0.1836043762155363,0.023900681796173256,0.14684461,0,0,0,0 +1944,1.3879131189978564,0.8983189521156985,0,0,4.111269896041665,0.30831495175759,0.41764093,23.86478344599406,72.69430200000002,36.99279912312826,2.9606569,0.6749979356924692,1.8198794,0.3176470845937729,4.4638059000000005,0,0,0,0.97266311,0.019433656940236688,16.545617,5.8199847141901655,116.85265,0,460.7425028483073,4354.745,1136.270060221354,138.93105622391963,312.41297149658203,569.4275578497453,0,0,0,0,0.5600039213895798,1.6191675,0,0,0,0,0,0,8.273519597423729e-6,7.8268219e-6,0.00179975672896641,0.0020215068,0,0,4.570930347351047e-4,7.559967e-4,0,0,0,0,289.00005086263013,1.8537439967013465,19.454671365649084,102.00830515112277,10.972149966258387,20.918122282494288,-0.14059594609534168,0,0,26578.15151015907,0.18330738198668892,0.027877628337591887,0.11439264,0,0,0,0 +1945,1.180916481863783,0.8988221719461101,0,0,3.970406317162407,0.33637995769580203,0.20111842,25.904248396555584,68.369262,37.297698974609375,1.5076942,0.7249979277451833,1.8368084,0.4580556924144427,5.2077233,0,0,0.004844144840414326,3.4593405,0.4215002196530501,24.846154,5.85998531182607,117.6118,0,463.24369557698566,4376.5008,1139.32036336263,141.02296395690516,312.38497670491535,562.3881403027648,0,0,0,0,0.6200050512949625,1.69101,0,0,0,0,0,0,8.319483640661929e-6,7.8587212e-6,0.0019562874901263663,0.0021972582,0,0,4.596324409552229e-4,7.595796e-4,0,0,0,0,289.2270406087239,2.0468366239992983,19.530998731486306,102.38686289278726,10.811058367654892,20.630415192374578,-0.14126070759899073,0,0,23414.92285804937,0.18300712894373766,0.03101034214099248,0.080798572,0,0,0,0 +1946,1.2942110656768657,0.9829470073282762,0,0,3.9716964354580995,0.3442649617791176,0.27970458,27.504756927490234,74.71723399999998,37.39169883728027,2.0726649,0.7749979496002197,1.8537378,0.6235543092091879,5.9856104000000006,0,0,0.08337228807310264,4.940467900000002,1.6357106665770214,24.839378,5.899985949198405,118.39896,0,465.7432912190755,4399.6117,1143.6604919433591,142.70640224525258,312.38997141520184,555.2899629515077,0,0,0,0,0.680003434419632,1.7631907999999998,0,0,0,0,0,0,8.365447683900129e-6,7.894034299999999e-6,0.002126432334383329,0.0023883489,0,0,4.621718496006603e-4,7.635561099999999e-4,0,0,0,0,289.4270451863606,2.2422352077889016,19.68948842063387,102.65818348678006,10.80993836386383,20.305933499558623,-0.14192546910263978,0,0,23137.2912384495,0.18270359473494088,0.03229169764866432,0.06430042700000001,0,0,0,0 +1947,1.4498949379331847,1.013635265025484,0,0,4.004289599390247,0.3536549558242162,0.34838359,29.078561464945476,84.081746,37.50009854634603,2.6369074,0.8249979366858801,1.8706665,0.8140119264523188,6.4443541,0,0,0.3000110412637393,4.8390374000000005,2.835014005502065,24.982371,5.93998658657074,119.2973,0,468.2434260050456,4428.0553,1149.6402994791665,144.7944964951042,312.48597208658856,563.4037753734774,0,0,0,0,0.7400057514508566,1.8372679,0,0,0,0,0,0,8.41141172713833e-6,7.9428476e-6,0.0023113751861577234,0.0025963146,0,0,4.647112509701401e-4,7.6908855e-4,0,0,0,0,289.51104482014966,2.4286545050325703,19.916095128874474,104.15736760766261,11.489678423181335,20.190999473703123,-0.14259023060628884,0,0.0033728385,25978.580134271393,0.18239681638037056,0.03281248671313127,0.046731228,0,0,0,0 +1948,1.541746757752381,1.0217889660432258,0,0,4.123520872976997,0.3683149615923564,0.33316898,31.041143258412678,90.670686,37.670498530069985,2.6243892000000004,0.8749979635079702,1.8875961,1.0316545367240906,6.6649072,0,0,0.5000130111972491,4.856366099999999,4.025014281272888,24.987103,5.979986985524495,120.08364,0,470.7433776855469,4451.0369,1155.630167643229,147.27202945137043,312.5209681193034,586.5360800457117,0,0,0,0,0.8000023066997528,1.966277,0,0,0,0,0,0,8.45737577037653e-6,7.9780491e-6,0.002512403065338731,0.0033276717,0,0,4.672506547649391e-4,7.7305219e-4,0,0,0,0,289.55605316162104,2.589644895931103,20.349060560415165,108.09641738801687,12.195764994941479,20.65035706357972,-0.14325499210993792,0,0.023611977000000003,27162.316753376424,0.1820867991187164,0.0328332781791687,0.020169381,0,0,0,0 +1949,1.5150340802151026,1.0322291088892992,0,0,4.0957465510773075,0.38362496097882587,0.31424196,33.192337354024254,91.962416,37.855198542277016,2.5926444,0.9249979307254156,1.8955033,1.2518172562122345,7.1640705,0,0,0.7000119686126709,5.561141,5.215012947718303,27.295461,6.019987901051839,120.70601,0,473.243403116862,4466.7618,1160.3499450683591,150.21571488778258,312.63197072347003,588.4410386834926,0,0,0,0,0.8600076138973236,1.6426278000000003,0,0,0,0,0,0,8.50333981361473e-6,7.993390500000001e-6,0.0027309151094717285,0.02463759,0,0,4.697900658356957e-4,7.747269e-4,0,0,0,0,289.59805043538404,2.7140139811269637,20.909195897992674,109.1544257771438,11.863971231370714,21.081179377216955,-0.14391975361358694,2.747740879082509e-4,0.063741035,26198.851367200677,0.18177350173895448,0.03209515412648519,-0.0015784357,0,0,0,0 +1950,1.6956807866542396,1.0454343901508287,0,0,4.3312607912797665,0.3969699591398239,0.32876887,35.499832471211754,78.580053,38.023898442586265,2.8441101000000004,0.9749979873498281,1.9897329,1.4824664394060771,7.4706053,0,0,0.8938818424940109,8.1460574,6.382257183392842,32.673745000000004,6.059987783432007,121.62274,0,475.7314631144206,4499.2896,1163.820566813151,152.20100844625213,312.8209762573242,619.9439709148871,0,0,0,0,0.9275005906820297,1.0661465,0,0,0,0,0,0,8.549303477896805e-6,8.0453408e-6,0.003054187574889511,0.10531435,0,0,4.723294696304947e-4,7.806208900000001e-4,0,0,0,0,289.73904164632154,2.7868238058947905,21.601404570641137,113.85984719531825,13.132141828954166,22.105810561368756,-0.14458451511723602,0.001923504489241168,0.16053368,29148.546819670417,0.1814569633566329,0.03030576727663477,2.432756e-4,0,0,0,0 +1951,1.8173567042308394,1.2637884621306537,0,0,4.212336067356143,0.41064496090014774,0.33222262,37.58082548777262,70.47669,38.204298655192055,3.0430784,1.0244279702504475,2.1685287,1.7349158823490143,7.5542237,0,0,1.1468555231889088,12.050138,7.775353193283081,36.815853,6.099990487098694,122.51807,0.014330518,478.3116455078125,4529.1876,1168.810119628906,155.27193516536855,313.01397196451825,593.1994505844021,0,0,0,0,0.9349976976712545,1.0527789,0,0,0,0,0,0,8.59526744534378e-6,8.0850349e-6,0.006885135274690886,0.2343219,0,0,4.748688734252937e-4,7.8510233e-4,0,0,0,0,289.8600540161132,2.8307926461022945,21.710967064016447,109.09095441872181,13.152193894404679,20.398188183698103,-0.14710768873059346,0.005466860408584277,0.23983988,30378.934969744696,0.18113711866275609,0.028203126974403858,0.0011664316,0,0,0,0 +1952,1.8518759304813062,1.2915086581093504,0,0,4.27824996657228,0.42523996035257977,0.32854487,38.706894874572754,76.508762,38.406997998555504,3.2228257,1.079317679007848,2.4120426,1.984303871790568,7.673401400000001,0,0,1.5540266533692677,16.078842,9.444400389989218,40.441283,6.139426151911418,123.26435,0.21725302,481.16064198811847,4558.7052,1174.3108825683591,160.57335760480584,313.3419774373372,606.9563399935745,0,0,0,0,0.9200002650419871,1.4414744,0,0,0,0,0,0,8.64123148858198e-6,8.100092099999999e-6,0.02087512387273212,0.36283509999999997,0,0,4.7740828449605033e-4,7.867442699999999e-4,0,0,0,0,290.02505238850904,2.873469224433514,22.393786048989185,112.61821090484105,13.48661503998857,20.95793435117974,-0.1497592068193485,0.01499934789414207,0.24565292,30772.879377004218,0.1808140109638238,0.026776751192907493,-0.0020300648,0,0,0,0 +1953,1.9058871956207555,1.288662579097105,0,0,4.400134890913105,0.4392099554340045,0.31999622,40.05176067352295,81.681224,38.61429913838705,3.3863087,1.1389276186625164,2.8478934,2.2399121522903442,7.7034458,0,0,2.129436651865641,20.201055,11.213325262069702,45.581432,6.184987505276998,124.06078,1.3575508,484.1764450073242,4600.7084,1183.360656738281,165.68183230817434,313.72996775309247,623.9750547982311,0,0,0,0,0.9262516697247823,2.1004080000000003,0,0,0,0,0,0,8.68719553182018e-6,8.1248995e-6,0.04651178978383541,0.48047903,0,0,4.7994768829084933e-4,7.8950997e-4,0,0,0,0,290.3340403238932,2.918473220829267,23.086276532048977,116.77653779023555,14.050620354457529,21.600939708208692,-0.15241072490810365,0.024999434128403664,0.24572915,31392.44295532122,0.18048767518443254,0.02495241429035862,-2.2819236e-4,0,0,0,0 +1954,1.9553258305658399,1.3426832443153052,0,0,4.475107773130416,0.4534849599003792,0.29457384,41.54246679941813,86.86346999999998,38.84129842122396,3.4048632000000003,1.2079770465691884,3.2763156,2.4949118296305337,7.760213,0,0,2.8635963996251426,25.212381,13.203928073247274,51.892411,6.22998833656311,124.75392,3.6198833,488.50885518391925,4629.2231,1194.4306030273435,170.37100791893153,314.09496815999347,628.9096635314064,0,0,0,0,0.9637557764848074,2.8888848,0,0,0,0,0,0,8.73315957505838e-6,8.1370738e-6,0.08213070034980774,0.59576061,0,0,4.824870896603291e-4,7.9081967e-4,0,0,0,0,290.54804992675776,2.9653052307782946,23.518269296485517,118.7896928573186,14.352627821692423,21.654738949016565,-0.15506224299685875,0.034999388890961804,0.24580572,31601.64061572461,0.1801580463648328,0.0234999794823428,-0.0040708208,0,0,0,0 +1955,2.1387868172549656,1.3878206830387967,0,0,4.585745111893209,0.46671496083339054,0.26311875,43.17295900980631,91.980019,39.07069810231527,3.3346824,1.2937463521957397,3.6788015,2.7499121824900308,7.6370702,0,0,3.7677908142407737,30.727319,15.439632256825766,59.87188100000001,6.274988849957784,125.74327,6.4848679,493.2549794514974,4666.3367,1206.65092976888,174.7404470567501,314.4149703979492,641.3267253315221,0,0,0,0,1.0538601179917653,3.5564777000000003,0,0,0,0,0,0,8.77912361829658e-6,8.184845900000001e-6,0.1274599153548479,0.70910415,0,0,4.8502649830576655e-4,7.9623211e-4,0,0,0,0,290.84404500325513,3.016004167545106,23.788691617349485,122.54258151361353,15.359884890806127,21.61194057224027,-0.15771376108561386,0.044999435233573117,0.24588273,34555.402722250226,0.17982516920850813,0.021999980478237074,0.0010493547,0,0,0,0 +1956,2.291039468224933,1.4462836425278403,0,0,4.8444014888868745,0.478794959684213,0.22075982,44.93925635019938,97.008491,39.3001979192098,3.0796375,1.3882061143716176,4.2759912,3.006162941455841,7.543031599999999,0,0,4.90076740582784,33.546756,18.00713857014974,66.950489,6.319989720980327,126.58168,9.1561662,496.95969645182294,4699.2729,1221.1007995605466,180.671117460758,314.6979675292969,673.8062290292883,0,0,0,0,1.1860103805859883,4.5322657999999985,0,0,0,0,0,0,8.82508766153478e-6,8.2145095e-6,0.1822890266776085,0.82044371,0,0,4.8756590210056555e-4,7.995574900000001e-4,0,0,0,0,291.1870447794596,3.067693130108469,24.39548109092037,129.82302004314178,16.407730767105924,22.724482756858983,-0.16036527917436896,0.05499937882026037,0.24595899,37118.77108719959,0.1794890063461402,0.020458318758755922,0.006640162099999999,0,0,0,0 +1957,2.384773000160331,1.4774945790842637,0,0,5.084522572350242,0.489309956630071,0.18587639,46.82995192209879,102.11597,39.52009836832682,2.8571248,1.4974753856658936,4.9612019,3.2499133944511414,7.3765313,0,0,6.239397327105205,32.871446,20.977540334065754,72.204141,6.364989757537842,127.41838,11.488509,500.6978174845378,4733.2024,1235.8001810709634,186.0555677386444,314.9919611612956,695.9496130566932,0,0,0,0,1.3464653591314952,5.9875108,0,0,0,0,0,0,8.871051704772981e-6,8.2451464e-6,0.2464121406277021,0.92977447,0,0,4.901053131713221e-4,8.029950599999999e-4,0,0,0,0,291.5120417277018,3.1227659361540883,25.10938270800668,135.59152056062854,17.202288510585237,23.82634944628376,-0.16301679726312407,0.06499945092946291,0.24603635,38873.754310972414,0.1791495207576567,0.019499980999777716,0.004342369,0,0,0,0 +1958,2.4670954688378814,1.5285973472099872,0,0,5.060488042524024,0.4977349440256755,0.17928487,48.83994928995768,107.206,39.715097745259605,2.9954591,1.6274844805399578,5.6330503,3.4969948132832847,6.9087313,0,0,7.567232608795166,34.746284,24.184339841206867,80.925329,6.409992456436157,128.42262,14.781202,504.5039291381836,4771.3965,1247.4204813639321,188.38553994967657,315.344965616862,661.285485841322,0,0,0,0,1.5845945576826732,7.120203999999998,0,0,0,0,0,0,8.917015748011181e-6,8.2860065e-6,0.3196182499329249,1.0371306,0,0,4.926447145408019e-4,8.0761087e-4,0,0,0,0,291.7720464070637,3.18418831910038,25.26871426472444,129.20858361180427,17.043104741234497,22.24665040214954,-0.16566831535187918,0.07499935726324718,0.24611309999999997,39341.991357154206,0.1788067540033275,0.018499995737026136,0.0026052944,0,1.5255345e-5,0,1.550744e-4 +1959,2.6036729140488357,1.4736682886389454,0,0,5.186762349282971,0.505239948630333,0.18081021,50.97114499409994,112.29185,39.90489800771078,3.2476716,1.777483691771825,6.388022599999998,3.7265921036402383,6.8760458,0,0,8.797123988469442,43.506257,27.60905106862386,93.983467,6.4542984167734785,129.47587,18.063698,508.3637110392253,4808.726,1257.320078531901,192.68675731110378,315.8069661458333,665.4367222123257,0,0,0,0,1.9060347974300385,8.0253807,0,0,0,0,0,0,8.962979791249381e-6,8.3259739e-6,0.40169936915238696,1.1424694,0,0,4.951841207609201e-4,8.121238e-4,0,0,0,0,291.98704274495435,3.250322629161094,25.784568318874836,131.21049744121555,17.515266326606977,22.136950451664426,-0.1683198334406343,0.08499948245783646,0.30755864,41319.47350993611,0.1784607567238176,0.017499990140398342,8.684612300000001e-4,0,1.2225318000000002e-4,0,0.0012460364 +1960,2.728446849074149,1.4615195318866923,0,0,5.288213084302709,0.5130949467420578,0.17259465,53.211243311564125,117.2597,40.118597666422524,3.3209398,1.9469429155190785,7.3201718,3.938670496145884,7.2392631,0,0,10.23712126413981,56.28148100000001,31.60536019007365,107.5417,6.504989147186279,130.53321,21.750437,512.2328440348307,4847.0424,1264.1198730468748,197.26110047577146,316.62496693929035,668.5656629833454,0,0,0,0,2.2494065960248313,9.5885732,0,0,0,0,0,0,9.008943455531456e-6,8.3712137e-6,0.49244747559229535,1.2458107,0,0,4.977235318316767e-4,8.1724438e-4,0,0,0,0,292.2830454508463,3.323928526213912,26.127946785499923,133.33681491027784,18.137986763264845,22.068663139398165,-0.16971698815179884,0.09499939220647018,0.43040209999999995,42970.73471143208,0.17811146430862335,0.016499992460012436,-8.684921e-4,1.2107990556842196e-6,2.3072394e-4,6.978449713794059e-6,0.0023750868 +1961,2.7521018504089363,1.531158201999545,0,0,5.280187774913458,0.5207299540440241,0.16861102,55.563539822896324,121.58986000000002,40.34249718983968,3.4304351000000004,2.141221841176351,8.4287849,4.1636671622594195,7.4514735,0,0.0018618006,12.167853911717733,70.618557,36.23666445414225,123.80387,6.554991841316223,131.26152,27.278298,516.0400848388672,4864.0212,1269.4615275065103,205.13834130452685,317.29896291097003,701.0053452576341,0,0,0,0,2.637653867403666,11.884386,0,0,0,0,0,0,9.054907422978431e-6,8.367736999999999e-6,0.5916525920232137,1.346892,0,0,5.002629332011566e-4,8.1675024e-4,0,0,0,0,292.60204569498694,3.545375735491367,26.889738501199272,143.56526348207862,18.738996990578176,23.373573142607228,-0.17042405828273247,0.10999903393288453,0.55328481,48370.747602751726,0.1748425912224242,0.015499991675217947,-0.0026053238,9.686392521264983e-6,2.4913556000000003e-4,5.5827597558770016e-5,0.003546415 +1962,2.868392578555052,1.520724683920321,0,0,5.268371108547883,0.5278749416271845,0.17112099,58.007436752319336,125.71015,40.56609694163004,3.6249821,2.365680515766144,9.612767800000002,4.398663679758708,7.580527900000001,0,0.045181371,14.639893293380737,86.214551,41.47677803039551,144.89716,6.604418396949768,132.4011,32.049021,519.7264709472656,4895.6486,1282.5712890624998,207.2122991826155,318.0439631144206,678.8492233714484,0,0,0,0,3.1291542649269104,14.500089,0,0,0,0,0,0,9.100871466216631e-6,8.405538e-6,0.699107696612676,1.4460951000000002,0,0,5.028023394212747e-4,8.2101348e-4,0,0,0,0,292.9450378417968,3.678783292234149,27.391344297603926,140.1058920148071,19.332929386112895,22.550094638193304,-0.1711311284136661,0.12999879072109857,0.61483924,49373.4626711147,0.018878477916170075,0.01449999026954174,-0.0043425207,1.9372784966738738e-5,2.5250226000000003e-4,1.1165519572386984e-4,0.0049206759 +1963,3.036186160713145,1.5272093107248352,0,0,5.437875742912039,0.535164937376976,0.18314033,60.507436434427895,128.88013,40.80479653676351,3.9881367,2.6255189975102744,10.949721,4.63597031434377,7.911085400000001,1.4331860863118587e-4,0.24720738,17.71703306833903,101.83231,47.60459232330322,167.67883,6.659987608591716,132.99126,37.52532,523.2439982096354,4904.2354,1300.79057820638,216.19226558975322,318.64996337890625,741.3196016175318,0,0,0,0,3.753723760445913,17.280228,0,0,0,0,0,0,9.146835509454831e-6,8.3926404e-6,0.814602812131246,1.5429261,0,0,5.053417504920313e-4,8.194336200000001e-4,0,0,0,0,293.32704925537104,3.8037763068903097,28.744647607968993,156.13095399196706,20.520847373631998,24.609210933874923,-0.1718381985445997,0.15499834592143694,0.55366285,50918.547922521546,-0.7158139715324602,0.013499994995072484,-0.0078699311,2.905917745010811e-5,3.5209498e-4,2.0954201075558862e-4,0.005972759100000001 +1964,3.1935857269729495,1.5182530872301747,0,0,5.25990946510033,0.5425249338150024,0.20130699,63.07753308614095,129.76928999999998,41.05469576517741,4.432625700000001,2.9195976853370667,12.657214,4.877436995506287,8.477894599999999,0.003477728799528753,0.46848862,21.421671549479168,116.30072,54.79980500539144,189.8766,6.715564290682475,134.07707,49.914046,526.5386403401693,4933.087,1317.3704528808591,216.5561629558192,319.3329620361328,689.1114600087734,0,0,0,0,4.5027817487716675,20.771971,0,0,0,0,0,0,9.192799552693032e-6,8.436046300000001e-6,0.9379299183686575,1.6379776,0,0,5.078811470108727e-4,8.243428e-4,0,0,0,0,293.6850484212239,3.94575429191722,28.607416327576342,146.45477556142896,21.250626659387255,22.37762398460907,-0.17254526867553333,0.17999867846568426,0.49245891,52831.63766662475,-0.6203003960549346,0.012499973177909851,-7.597085899999999e-4,3.8745569933477476e-5,0.0010303711,3.218187654662567e-4,0.033580017000000004 +1965,3.342046614628416,1.5494103546996891,0,0,5.2700102527121695,0.5508499294519424,0.22504179999999996,65.62683486938477,129.69213,41.342495918273926,4.9089192000000015,3.2579756379127502,14.528257,5.135173638661702,9.0358315,0.019166271900758147,0.58010695,25.709799925486248,130.83983999999998,63.0290142695109,213.3919,6.764422178268433,135.19804,70.507935,529.5773620605469,4953.0596,1331.0602823893228,222.666415702745,319.81596120198566,709.3122962703268,0,0,0,0,5.391107479731242,25.0603,0,0,0,0,0,0,9.238763595931232e-6,8.4640089e-6,1.0688820282618205,1.7308461,0,0,5.10420553230991e-4,8.274721400000001e-4,0,0,0,0,294.04503885904944,4.115195266374096,29.972153677829578,153.40539119426893,22.08301053841794,22.64997293102378,-0.17325233880646695,0.1999987723926703,0.4926084,54063.80178149757,-0.2927293197139612,0.01137502615650495,0.015948649,5.60693097213516e-5,0.0021406888,4.596758565943067e-4,0.11324642 +1966,3.501720550339981,1.5517652807392261,0,0,5.285174795936927,0.5597749253114065,0.26721734,68.0712407430013,129.70542,41.65249570210775,5.6248074,3.653163174788157,16.547774,5.413369536399841,9.5008952,0.039499382954090834,0.77191369,30.50373379389445,147.99606,72.2479305267334,240.15802,6.8193081219991045,136.46754,94.258765,532.3371022542318,4976.4474,1342.240509033203,226.31069580205852,320.8799565633138,710.941466458106,0,0,0,0,6.472539742787679,30.477075,0,0,0,0,0,0,9.284727639169432e-6,8.5066137e-6,1.2072421511014302,1.8217969,0,0,5.129599594511092e-4,8.322890299999999e-4,0,0,0,0,294.45304361979163,4.31119735595728,31.553067549575943,156.4949809106804,22.847791402233124,22.434297142441455,-0.17395940893740058,0.21999895945191383,0.61550021,55269.31676159744,0.11690965230767818,0.010999986358607808,0.069786165,1.1921713667106815e-4,0.0031030971,0.0018055206843807052,0.20275693 +1967,3.6259660139730605,1.595865385821404,0,0,5.390458849300692,0.5701449265082678,0.32052973,70.42624282836914,129.68847,42.00469557444254,6.3547572,4.101901113986969,18.918172,5.707025408744812,9.9208119,0.06371349437783162,1.0373000000000001,35.86647764841715,169.42177,82.6101468404134,269.58286,6.879989941914876,137.66763,116.32544,534.8238169352213,4995.4184,1354.2715555826821,232.33314648826578,321.4799575805664,746.2098208746951,0,0,0,0,7.774255792299907,36.036945,0,1.246032e-5,0,0,0,6.8991852e-5,9.330691682407632e-6,8.544612699999999e-6,1.352812260389328,1.9105949,0,0,5.154993656712273e-4,8.365750900000001e-4,0,0,0,0,294.8600463867187,4.481777634666587,33.1677760500894,164.77531621039864,24.19623737938871,23.585293537089132,-0.1746664790683342,0.23999873300393423,0.7384486,54762.89709618766,-0.07633744709933905,0.011131961752350131,0.24404072,2.235555645408264e-4,0.0037542491,0.005476358346641064,0.26151045 +1968,3.8345952658425997,1.5469930909111562,0,0,5.370373092170119,0.5827049265305201,0.40423022,72.69054730733235,129.73308,42.41149616241455,7.332441499999999,4.61564834912618,21.713594,6.014501253763835,10.295172,0.09872918141384919,1.3673824,41.93913205464681,195.13757,94.25966453552246,299.7143700000001,6.939991156260173,139.24379,133.08156,537.0335591634115,5029.5667,1371.6504618326821,235.33540266621623,322.3889567057292,740.4824182303034,0,0,0,0.0092379775,9.383843421936035,40.359034,0,8.8038453e-5,0,0,0,4.8559101e-4,9.376655725645833e-6,8.6257131e-6,1.505382388830185,1.9976935,0,0,5.180387718913456e-4,8.458288900000001e-4,0,0,0,0,295.2690455118815,4.618299686146145,34.3815728401946,165.09570877308497,25.41081254044139,22.825796914652,-0.1753735491992678,0.26999801645676297,0.67731523,56868.37887037226,0.0011209927611538926,0.014528773414591948,0.44305972,3.60778462588011e-4,0.0055431793,0.010674211041380962,0.29037411 +1969,4.0615677268044985,1.5437089021510264,0,0,5.404091612813001,0.5976699193318685,0.5206411,74.8699499766032,129.76058,42.862396240234375,8.483171800000001,5.203845143318176,24.938178,6.334147016207377,10.638634,0.143262746433417,1.7120901000000002,48.922607421875,220.72612,107.28918075561523,327.55328,6.999991575876872,140.05867,146.61896000000004,538.9712473551432,5026.2804,1389.3417561848955,239.18485161256538,323.25095621744794,747.0297315350706,0,0,0,0.18322115,11.191637754440308,44.144508,1.2165773692155806e-6,9.3679956e-5,0,0,9.679108093981389e-6,5.038868e-4,9.422619768884033e-6,0.0098248184,1.6647424797217052,2.0817369,0,0,5.205781781114638e-4,8.450532600000001e-4,0,0.0011288309,0,0,295.681042989095,4.732615322675832,34.96181250811188,169.68157132242786,26.065069005292788,22.100489511661433,-0.17608061933020144,0.29999837279319763,0.67751619,58467.81079627766,0.07485921849687786,0.02660746080800891,0.55613635,5.134661914780736e-4,0.03648951,0.016677813526863854,0.30862539 +1970,4.323514044182916,1.5319290688025449,0,0,5.549708797290366,0.61744491259257,0.6581691999999999,76.96995290120442,129.69302,43.40139643351237,9.5318801,5.882411241531372,28.576904,6.6643119653066,11.00827,0.2035404990116755,1.8909658,56.95325533548991,245.38621,121.64918899536133,354.60102,7.059993505477905,141.52757,173.56366,540.6648610432943,5048.3132,1411.1005147298174,244.41839554629246,324.78295644124347,781.037552297546,0,0,0.001065175359447797,0.60795801,13.09374705950419,49.037394,8.557121153292732e-6,2.4685116e-5,0,0,6.793739824691632e-5,1.0851205e-4,9.468583508957332e-6,0.036330653,1.830672601858775,2.1644992000000003,0,0,5.23117584331582e-4,8.520249e-4,0,0.0042255569,0,0,296.0980377197265,4.714190307707546,37.469578527471604,179.6859546683907,27.824084069544437,22.780224323226346,-0.17678768946113504,0.32499857246875763,0.80047128,61529.779790205444,0.07891007914399001,0.042955159209668636,0.64373178,7.886756357038394e-4,0.11813403,0.022781516425311565,0.34789664 +1971,4.510244869270977,1.4055542417708098,0,0,5.703748992338275,0.6424449036518732,0.82992065,78.98995844523112,129.60227,44.007896423339844,10.711494,6.6607770919799805,32.729139,7.00438114007314,11.452529,0.27441523348291713,2.1402118,65.84650834401448,276.44309,137.13820521036783,387.53989,7.119412302970886,143.1196,217.72405,542.1264394124349,5067.5026,1431.1209615071612,249.2895330837902,325.3999557495117,796.2029425301106,0,0,0.021073126544555027,0.8564575999999999,15.120055437088013,55.790888,1.0061302646136028e-5,1.3254363e-5,0,0,7.890220331319142e-5,4.2594654e-5,6.875001223913083e-4,0.064586906,2.0029827058315277,2.2451174,0,0,5.256569905517002e-4,8.5867175e-4,8.593750105016322e-5,0.00774384,0,0,296.52204386393225,4.663522046368115,38.13342515565109,183.53555789915328,28.617263975091056,23.195116011534044,-0.17749263314257094,0.3549981142083804,0.86210262,61716.79562857309,-0.03213341039414315,0.06120223210503658,0.78786166,0.003391635837033391,0.2232129,0.029181620261321466,0.40686343 +1972,4.706494311867816,1.3269371347118073,0,0,5.971153374722522,0.6740748832623163,1.0559028999999998,80.9293607076009,129.65777,44.68869590759277,12.24311,7.553642193476359,37.465523,7.356679677963257,11.97792,0.34821991870800656,2.5517628,75.6708869934082,314.22879,153.8562266031901,427.68026,7.184317310651143,144.52172,267.60333,543.3849334716797,5079.1924,1449.2900187174478,257.2102054265862,327.3489532470703,868.4735707547015,0,0,0.06999984166274469,0.87667663,17.352389971415203,61.456633,1.0390318796756523e-5,1.3479254e-5,0,0,8.037302359298337e-5,4.3040854e-5,0.0025000001187436283,0.082580189,2.181452830632528,2.3233295,0,0,5.281963967718184e-4,8.6363194e-4,3.124999990783787e-4,0.010359322,0,0,296.9550399780273,4.9307421199057115,39.56446297363227,196.66552470793948,30.236221506038817,25.52743453960084,-0.17813366446922693,0.3899978771805763,0.86237286,63465.10424037791,0.049119653936524114,0.08156623815496762,1.0951867,0.010107177193276584,0.31882408,0.0366138257086277,0.4721474 +1973,4.975651785811607,1.318385656312959,0,0,5.895831575895738,0.7138798783222834,1.3307870000000002,82.79306348164876,129.79157,45.45469538370768,14.085332,8.576456785202026,42.979262,7.723947962125142,12.585161,0.43801355610291165,2.92937,86.87261581420898,338.0693,172.25726318359375,454.71123,7.255663514137268,146.54158,301.85553,544.4634094238281,5118.3195,1462.860677083333,260.2947249743578,329.90895080566406,826.0293132269293,0,0,0.11499984314044316,0.82240702,19.92769479751587,65.420113,1.0719714812997458e-5,1.3772853e-5,0,0,8.184554402153783e-5,5.4973948e-5,0.005062500150719036,0.090214925,2.365882933139801,2.4006492,0,0,5.307358029919366e-4,8.768767699999999e-4,6.328129966277629e-4,0.011968111000000002,0,0,297.3990402221679,5.050826137007638,39.9571427129374,186.52593193281965,31.240096880428535,23.455648107310147,-0.17877469579588295,0.42499801019827527,0.92401065,66317.71188639547,0.15522883058251086,0.1075315357496341,1.5930673,0.02092159477372964,0.39726303,0.04518213029950857,0.54390644 +1974,4.948149198232062,1.2905489996591684,0,0,5.971643938399686,0.7649898727734884,1.4191691,84.59316635131836,129.76026000000002,46.34259541829427,14.311146,9.748060464859009,49.247959,8.108936508496603,13.447442,0.5431961392362913,3.5184015,99.53890228271484,340.6055,192.56424713134766,453.22872,7.319503704706828,147.80664,327.35544,545.3698170979818,5113.8208,1476.140909830729,261.8082770537653,330.7559534708659,824.6214022160059,0,0,0.16126984233657518,0.76119143,22.525582949320476,71.666995,1.1049491528562308e-5,1.3967525e-5,0,0,8.331976338619522e-5,0.052416219000000014,0.008000000069538752,0.08706316300000001,2.556043048699697,2.474116,0,0,5.332752092120548e-4,8.7789564e-4,9.999999989910673e-4,0.01237887,0,0,297.8550415039062,5.0344191249004195,40.69211663930812,183.60052508219061,31.077406046065626,23.599624622127063,-0.17941572712253898,0.45999792218208313,1.0394718,65371.62666713273,0.10279066121396813,0.14653477569421133,2.1806547000000003,0.034983893080304064,0.67241083,0.05499073459456364,0.65809554 +1975,4.928622399679322,1.303204963553737,0,0,5.9984313740411705,0.8284898797671,1.4004084,86.32876841227214,129.65616,47.35769589742025,14.321042000000002,11.09574286142985,57.565811,8.51440660158793,14.538442000000002,0.661696677406629,4.217686799999999,112.33176358540852,337.71465,213.23522440592447,440.16522,7.389227231343587,148.91662,384.99818,546.1371358235677,5104.4298,1491.7409667968748,263.05854864525753,330.8269551595052,816.9194858581777,0,0,0.19499984259406725,0.80304672,25.179124514261883,79.153904,1.1379648640286177e-5,1.4151174000000003e-5,0,0,8.637850078230258e-5,0.19213674,0.010937500201786557,0.07287558599999999,2.7517531315485635,2.545125,0,0,5.35814615432173e-4,8.7775104e-4,0.0013671900087501854,0.011478755,0,0,298.32604471842444,5.2068127673577305,41.476725896945794,177.51306730736252,30.76637271161256,23.129653790732366,-0.180056758449195,0.49999761829773587,1.1646458,64182.768823129416,-0.20496901654447228,0.20330782110492387,2.8018363,0.051680791191756725,1.2682709,0.06614344008266926,0.8287437 +1976,5.1946610219984874,1.3202053582443383,0,0,6.237496531818932,0.8872098724047343,1.5554771,87.99307123819987,129.63321000000002,48.276095390319824,16.011714,12.636435270309448,57.24638,8.955106973648071,15.386466,0.8118081788221995,4.743647,124.73074785868327,329.27602,232.99722162882486,426.10768,7.465574224789937,150.23158,475.43135,546.7914225260416,5104.2152,1509.1109517415362,269.9482096580869,331.5449498494466,856.063491529847,0,0,0.22999984274307886,0.82394648,28.196115493774414,92.664426,1.171018743661989e-5,1.4358855e-5,0,0,0.007432716122517983,0.33759564,0.01350000019495686,0.047412585,2.9527832667032876,2.614347,0,0,5.383540216522912e-4,8.8049315e-4,0.001687499995265777,0.0091593417,0,0,298.8140436808268,5.352361696512741,42.5213569666273,186.24742729810202,32.28663209283211,24.40571791742575,-0.18069778977585105,0.5443803270657858,1.4235416,67153.40876186565,0.042795931279707856,0.27751198535164195,3.4107057000000003,0.08715698743859927,1.8435573,0.08035514317452908,0.98712807 +1977,5.364428639868427,1.3520979710065895,0,0,6.353178768287844,0.9490798612435659,1.6923549999999998,89.59247398376465,129.63647,49.29249509175619,16.762577,14.47871708869934,55.875241,9.431879123051962,15.71703,0.9836416741212209,5.1782548,136.7956975301107,306.11158,251.99420674641928,404.2283,7.534413854281108,152.04263999999995,533.0325,547.3396860758463,5117.6518,1527.680948893229,274.03015240270713,333.3529459635417,868.4313096928761,0,0,0.2649998404085636,0.93269902,31.407798290252686,109.06413,1.2041107462816095e-5,2.1399971000000003e-6,0,0,0.026895795327921707,0.42456315,0.015312500220413009,0.022180513,3.1589433749516806,3.5323931000000006,0,0,5.408934278724095e-4,8.8740955e-4,0.0019140600246222068,-0.0065053902,0,0,299.3190358479817,5.499463794793741,43.27485687581617,189.22553225601726,33.05929028320198,24.38724427025082,-0.181338821102507,0.5945511807998022,2.1583469,67777.19082397268,0.12845401331973466,0.3696969747543335,3.8826089,0.1504269844541947,2.1420878,0.09829714894294739,1.0852977 +1978,5.581802902559232,1.2993019000302957,0,0,6.57904481781486,1.0211598575115204,1.7691766,91.13187662760417,130.48848999999998,50.43949508666992,16.898235,15.96304734547933,72.245349,9.926631212234497,15.529417,1.1736451586087544,5.5214165999999985,148.00458017985025,278.45958,270.00118255615234,383.9896,7.609319130579631,153.91731,529.79652,547.7978973388672,5132.0601,1546.890899658203,276.33335446294114,335.00994873046875,897.405148357044,0,0,0.29872983197371167,1.277913,35.72357686360677,112.78031,1.237240955257827e-5,-6.2543157e-5,0,0,0.054136695029834904,0.45249588,0.016000000139077503,-0.059867027,3.3700035015741983,4.661461,0,0,5.434328243912508e-4,8.9480636e-4,0.0019999999882808575,-0.021383103,0,0,299.8450393676757,5.625120895967197,44.240892074424366,192.93479554653743,34.269193302792054,25.019744191924026,-0.18197985242916306,0.6599957346916199,2.8286901,68023.041876235,0.1506635484397897,0.4763076677918434,4.2701212,0.23020097613334656,2.1599238,0.1185080527017514,1.1209156999999998 +1979,5.730732140077329,1.2523176484359615,0,0,6.677231649399466,1.094819853703181,1.9203395,92.61308097839355,128.37989,51.557394663492836,17.898313,17.68312692642212,94.634628,10.421233495076498,14.991238,1.3782646457354228,6.1020639,157.6384735107422,271.13342,286.4941584269206,394.80033,7.689991553624471,155.58903999999995,518.50501,548.1820729573568,5138.651,1566.1608581542966,281.6000656120118,336.60494740804035,900.4664227016348,0,0,0.34251976509888965,1.7595655,40.48909950256348,113.22088,1.1487397311308692e-5,-2.0391387e-6,0,0,0.0849026944488287,0.42017076,0.016000000139077503,-0.17766763,3.7300036549568176,5.0937882000000005,0,0,5.459722354620075e-4,9.0008302e-4,0.001000000006267025,-0.0099825707,0,0,300.39303843180335,5.807081798508845,45.13478108156769,196.0169028731842,35.013987182511805,25.212479862598272,-0.18262088375581906,0.7699926396210989,2.8296177000000005,69119.86371174049,0.1473114304822424,0.5893768072128296,4.6513697,0.31519197672605515,2.0579417,0.13952905808885893,1.1328091 +1980,5.650947966828631,1.2441357938650308,0,0,6.618387124854692,1.1735098262627919,1.9633226,94.1031723022461,125.08456,52.72269503275553,17.664267000000006,20.167388280232746,120.23426,10.897735516230265,14.760860999999998,1.5939541260401409,7.2362595,166.07752100626627,276.09356,302.1822509765625,398.43779,7.769993821779887,157.04196000000005,513.02719,548.5012359619141,5131.8984,1584.940734863281,283.34647023515436,338.70494588216144,890.5114951943987,0,0,0.41178564727306366,2.0330453,44.551489194234215,118.29604,5.5193815645300974e-6,7.9351775e-5,0,0,0.11494099286695321,0.35605477,0.011000000056810677,-0.12485274,4.130003849665324,5.1732709,0,0,5.485116416821256e-4,9.0155542e-4,5.107808434938003e-5,0.0031252635,0,8.167018e-5,300.9650395711262,5.872959052014542,45.97852705498147,194.39124204024887,34.76440146642314,25.232545658292864,-0.18326191508247508,0.8899930367867152,2.8304822999999995,68783.84556601176,0.109190156973947,0.7097166180610657,5.1129913,0.39410896847645444,2.1545661,0.15989606082439423,1.1562096000000002 +1981,5.539335981414791,1.2528135487313492,0,0,6.577782229862206,1.2601898312568665,1.7391266,95.31219546000163,126.52811,53.97579542795817,16.187192,23.256973266601562,128.45086,11.349838097890219,13.920115,1.8424933552742004,8.637244699999998,174.73850377400717,271.00597,319.4201304117839,403.07178,7.849401632944743,158.51506,516.86109,548.7653757731119,5123.4643,1602.6506245930987,279.78942071631377,340.05894978841144,875.7816094417443,0,0,0.5049996227025986,1.96562,48.66220633188883,122.37567,1.075440430516513e-5,1.7112573999999998e-5,0,0,0.1399999943872293,0.32601335,0.0030000001109632044,0.11779446,4.560003956158956,4.4274361,0,0,5.510510430516055e-4,9.0259513e-4,1.2761924275158285e-4,0.038309698,0,6.9675129e-4,301.56203460693354,5.805407445505892,46.37436562130664,189.16861385900194,34.11541673008395,24.873295971397052,-0.1839029464091311,0.999993642171224,2.9541119,66688.82721964004,0.0757372745424995,0.8352456837892532,6.0090214999999985,0.4687449559569359,2.4863888,0.1800000655154387,1.1742814 +1982,5.477249508472458,1.2581454775126868,0,0,6.915258577522967,1.3425698479016621,1.6205522,96.45029131571452,129.38621,55.10939598083496,15.97381,27.298911412556965,128.57689,11.805440743764242,13.885459000000001,2.144632577896118,9.2748324,183.27747344970703,277.72577,335.1432698567708,391.79861,7.934991518656413,159.18065000000001,532.93449,548.9834696451823,5083.3728,1618.7305399576821,287.6693153882337,340.64394124348956,967.4292982868147,0,0,0.5972496171792349,1.6573363999999997,52.764092127482094,125.26367,1.2755718368377226e-5,-8.228379000000001e-5,0,0,0.1600000001490116,0.33083911,0.0020000001228860733,0.22216908,4.970003763834636,3.5575865,0,0,5.535904541223621e-4,8.9426293e-4,2.6965544202539604e-4,0.066661524,3.741915871084226e-6,0.0015785006,302.18704223632807,6.043062727559764,47.66689067623099,206.8844647776702,34.15609140912993,28.272205714382924,-0.1845634619404803,1.1199926137924194,2.9550432,65532.301753925305,-0.15641584008740989,0.9728992034991583,6.4693449,0.5532129456599554,3.0131287,0.2000000737607479,1.352411 +1983,5.483062192797363,1.4330241763538591,0,0,6.625402213840496,1.4098998308181763,1.8456854,97.67579015096028,130.75988999999998,56.16269588470459,16.384525,30.830673376719158,150.74703,12.194235563278198,15.564841,2.4999918937683105,9.057039,191.16732279459634,353.29433,352.50609588623047,385.70972,8.019996364911398,160.09108999999995,547.19948,549.1685434977213,5047.3484,1632.620147705078,281.617658355317,342.26594797770184,862.0214943304857,0,0,0.672999694943428,1.3378778,56.786487897237144,129.4055,1.1691284877694367e-5,-2.7098867e-5,0,0,0.17999999349315962,0.33559498,0.011000000212031106,0.09748991,5.270004232724507,3.8040369,0,0,5.561298603424802e-4,8.871233e-4,0.0029999999581680945,0.024088349,3.1704332892938204e-5,0.0020178464,302.84204101562494,6.065834079500119,47.64540210423812,183.83582233478342,33.285128980692804,24.459513427275525,-0.18530513482030356,1.2399930556615193,3.2014371,64552.41617363238,-0.6775945263802521,1.144959529240926,6.0034055,0.651974951227506,3.8198142,0.21950007850925127,1.378774 +1984,5.619005090796103,1.4612248534423995,0,0,6.8150189551184415,1.4820398290952046,1.954181,98.93998591105144,134.9934,57.26739501953125,14.927399,34.79922644297282,167.86607,12.642924229303995,17.177695999999994,2.8499913215637207,10.537606,199.96714146931967,352.61795,366.79923248291016,438.30954,8.103740215301514,162.15076000000005,546.6524,549.3226318359375,5054.1956,1643.5008544921873,285.00304516787423,344.00794728597003,889.7020107049092,0,0,0.7217137465874354,1.2391705,60.742489178975426,137.14096999999998,3.96903745780719e-6,8.659051799999999e-5,0,0,0.19999999552965164,0.48356263,0.017000000225380063,0.027417786,5.530004461606343,4.8805394999999985,0,0,5.586692617119601e-4,8.9282411e-4,0.005000000004656613,-0.04014793,7.402270027038564e-5,0.0043071608,303.5280380249023,5.996375963335671,48.69349353439086,189.33352573144714,34.32486538148798,25.326276357675727,-0.1860468077001268,1.3599929014841716,3.5706830000000003,65309.89915296105,-0.2289078353791943,1.295939067999522,6.3412338,0.7757129470507304,4.798725900000001,0.24612508217493692,1.1329507 +1985,5.678895002751574,1.4997437788078463,0,0,6.922761988583978,1.5687698423862457,1.930951,100.18199602762859,138.44665,58.3761952718099,13.863624,39.652387619018555,191.20489,13.144109964370728,18.042992,3.187290926774343,12.093107,214.03345489501953,321.80334,383.26725006103516,487.46531,8.199989477793375,164.43684,559.24581,549.4526824951172,5072.7864,1655.9104715983071,285.6752697155976,345.4589538574219,906.9368199480392,0,0,0.7549997667471567,1.4290266,64.80020904541016,148.48134,8.568774148898228e-6,2.1606645e-4,0,0,0.21999999756614366,0.56320674,0.01700000014776985,0.085787554,5.8700045347213745,5.2553933,0,0,5.612086727827167e-4,9.0213205e-4,0.003999999995964269,-0.006224988000000001,1.1811007364788868e-4,0.012966035,304.2470397949218,5.996554239215087,49.41563613245486,190.4568856663394,34.861509200143864,25.83243997550224,-0.18678848057995007,1.4999912877877553,3.6945657,65474.087150351224,-0.011715700559269468,1.4159816404183705,7.686271400000001,0.9354569266239802,5.5359652000000015,0.26520808786153793,1.1864916 +1986,5.784334367519234,1.5301135694160417,0,0,7.0137036621234845,1.6502498388290405,2.0447892,101.67297554016113,134.66824,59.28379599253336,14.595216,44.608107248942055,226.48099,13.69979476928711,17.343175,3.6499905784924827,11.156209,222.3396848042806,363.19165,402.41221872965497,561.19711,8.294995307922363,166.53505,605.54478,549.5567423502604,5079.9439,1668.7911478678384,290.8084487539618,346.90294647216797,914.5218093193049,0,0,0.7879217316706976,2.1480617000000004,69.13964017232259,163.26271,1.2043192891534696e-5,2.1612991e-4,0,6.836250999999999e-4,0.2599999929467837,0.57273931,0.018000000156462193,0.044305139,6.3100047906239825,5.6896951,0,0,5.637480790028349e-4,9.0805661e-4,9.999999941404287e-4,0.03179967,2.603702887427062e-4,0.028102657000000003,305.0020370483398,6.123193922877899,50.21167873708514,195.66522346659664,35.24652923018162,25.9121168517712,-0.18753015345977328,1.6499911447366078,3.9411958,65479.271483930934,-1.4658150072006793e-4,1.5741113722324371,8.619926699999999,1.1329799195130665,5.6626388,0.2791670933365822,1.453026 +1987,5.942054872368608,1.51568933473453,0,0,7.200139154017295,1.7349598209063213,2.1868179,103.0739803314209,140.05915,60.248695373535156,15.122737,50.83082103729248,234.71551,14.25549602508545,15.986362,4.105550249417623,11.176584,233.33564122517905,377.17492,423.347417195638,543.59326,8.389330943425497,168.70781000000005,636.85035,549.6467793782552,5087.8651,1683.749786376953,295.0485146932872,348.77494557698566,952.061149189977,0,0.0011578226,0.8391895890235901,3.2631248,73.98439725240071,177.25124,2.903536521140874e-5,5.821475400000001e-5,0,0.0048785865000000005,0.28999998917182285,0.79616882,0.022000000191231567,-0.099665792,6.710005084673564,6.538606400000001,0,0,5.662874803723147e-4,9.1426979e-4,0.0030000000745834163,0.0083239765,6.904602487338707e-4,0.044783508,305.7930348714192,6.350228641755308,51.33101365968814,203.58517005144802,36.43815818195585,27.251867169865875,-0.18827182633959655,1.7999912301699321,4.3106697,66721.09399661662,0.062169756099630324,1.7711602052052815,9.1692428,1.346309910217921,5.241268700000001,0.29950010031461716,1.7364871 +1988,6.133362796862496,1.5150947746951446,0,0,7.39663506024057,1.8262398143609364,2.2384091,104.16901715596516,134.89421000000002,61.255194981892906,15.295333,57.8955987294515,225.34631,14.756715536117554,14.052169,4.49442990620931,12.063592,244.82575480143228,324.40759,449.32311248779297,433.01446,8.48999317487081,171.54521,645.54402,549.7208353678385,5119.7697,1693.940928141276,298.68549508376714,351.2759323120117,950.4151874289803,0,0.34924766,0.9504593312740326,5.2661192,79.53813616434734,185.3279,3.188543450960424e-5,0.021115007,7.708864601833436e-5,0.06849384,0.32999999324480694,0.88192316,0.02000000032906731,-0.07366243900000001,7.220005750656128,6.627813900000001,0,0,5.688268914430713e-4,9.2784993e-4,0.0030000005305434265,0.034690666,0.001493088435381651,0.060567348,306.624043782552,6.188309996026968,51.72677741877051,203.53222760721053,37.7977892884268,27.185066126098715,-0.18901349921941984,1.9699894785881042,4.6802608,67287.48390226346,0.1102479335964212,1.9729202787081401,10.094657000000002,1.548219899336497,4.7030971,0.32425010204315186,1.770198 +1989,6.211121149262674,1.53212989041127,0,0,7.320233667650651,1.9231797953446705,2.2075539,105.88293329874675,105.50252,62.29139518737793,15.212081,64.49583530426025,212.83728,15.212542057037354,10.119863,4.9499895970026655,11.292045,256.58931223551434,246.46809,468.0721740722656,357.7641,8.589393774668375,174.22363000000001,713.52261,549.7808532714844,5139.3872,1705.6304423014321,302.164174394028,352.89392344156903,930.8467754620427,1.1203966126534699e-4,0.72136249,1.1215790609518688,10.730464,85.39031410217285,189.56819,3.284409467596561e-5,0.31476996,5.449304395976166e-4,0.67304705,0.38999999314546585,0.82629641,0.014000000199303031,0.054397397,7.7600061893463135,6.6572182,0,0,5.713662976631895e-4,0.0060655338,0.0030000010544123747,0.077007399,0.002615397213958204,0.07614778700000001,307.8310241699218,6.264529714671574,52.06403696267891,200.31650520357337,38.13825088093059,26.33140676747172,-0.18975517209924306,2.149989446004232,5.0499664000000015,67312.93275191178,0.14261546154697627,2.1840911904970803,10.904862,1.7223599056402843,4.3864096,0.35575009882450104,1.6702493000000005 +1990,6.186811699323791,1.4450968870559717,0,0,7.508271531599201,2.018889824549357,2.1076967,106.4680290222168,86.426532,63.32119528452555,14.407865,70.81883303324382,176.8456,15.573984305063883,7.0905085,5.40554936726888,10.591201,263.08519744873047,208.25652,482.7560577392578,333.97703,8.694339831670126,176.36773,658.40311,549.8308563232422,5137.248,1717.400675455729,305.27255465213847,354.07293192545575,940.5626313485474,0.03376847004983574,1.5203264,1.4477779567241669,17.768055,90.98358980814616,192.30881,0.002091195086904918,0.96053501,0.0077552789346858235,1.7208698,0.43999998768170673,0.69729352,0.014000000121692816,0.18589003,8.280006090799967,6.6838429,0,0,5.739056990326693e-4,0.02696988,0.005000001498653243,0.018320285,0.004025665286462754,0.091767095,308.68303680419916,6.277152282827942,52.52170067846646,203.0212309920509,38.25721546450458,27.365368354710768,-0.19049684497906635,2.3499877055486045,5.1743108,67094.07179291768,0.14079531171550244,2.425140698750814,10.051338,1.8762499292691548,4.2741531,0.38000010202328366,1.7373255 +1991,6.190131151726644,1.6368601104218738,0,0,8.011536269395817,2.113149801890055,1.982897,105.85304832458496,85.14222600000002,64.34609444936116,12.924815,76.4864673614502,120.64491,15.752021392186483,6.9542228,5.799989104270935,10.775591,267.79015350341797,159.81288999999995,493.7842102050781,286.27307,8.804992516835531,177.30503000000004,474.47964,549.8710784912109,5089.9323,1729.3305562337237,318.7311920514537,355.35293833414715,1129.9838832525568,0.06648059604534258,6.9394223,2.221526563167572,22.06288,96.40249379475911,185.52075,0.03069222376992305,1.727734,0.07582558194796245,2.7251313,0.48999999711910885,0.70613627,0.017000000070159633,0.24819351,8.820006291071573,7.057256599999999,0,0,0.0016515196378653247,0.058141591,0.008000002048599223,-0.073018715,0.005709253367967904,0.10715402,309.23303731282545,6.34494559215869,54.26130892359681,244.42863411026067,39.69249193256378,34.394938327949504,-0.1909628409298788,2.5599875847498574,5.29866,66472.31501729792,-0.4148185776434353,2.665145973364512,9.6580528,2.020599921544393,4.1585749,0.40500009556611377,1.6735462 +1992,6.145912972932644,1.683057085276074,0,0,7.364888993342175,2.20022984345754,1.9500444,104.98307355244954,85.437279,65.2670955657959,11.907588,80.40375582377116,74.361852,15.899934848149618,5.3089984,6.199989080429077,10.120439,270.7759323120117,106.91739,505.86798095703125,227.43518,8.91499400138855,179.3441,361.04368,549.9049123128256,5056.1355,1740.1392618815103,299.4017954744593,356.22894795735675,913.3754185979066,0.1707762268682321,22.26499,3.3005158503850303,24.233416,101.49227841695149,194.06099999999998,0.09482813626527786,2.4767485,0.19600565483172736,4.0250116,0.5199999809265137,1.0018637,0.026000000691662233,0.18194194,9.340006430943808,7.910261500000002,0,0,0.005856849117359768,0.088755914,0.0050000026628064615,-0.030822369,0.007651571494837602,0.12273589,309.7250391642252,6.358476438557756,52.37759098866641,198.23847301394608,38.71717596139569,26.648976889112614,-0.19129755052506844,2.769987682501475,5.4230636,64223.92565128395,-1.6835767484157795,2.8172022501627603,10.784362,2.161349892616272,3.8127392,0.4305000975728035,1.4631107 +1993,6.193394814861415,1.5467274300386273,0,0,7.531122846620259,2.2837098240852356,1.9984803,104.32304191589355,84.458339,66.09139442443848,11.381334,82.41623814900716,50.567396,16.066639582316082,3.463778,6.607129295667012,8.677164900000001,271.1687749226888,84.3251,511.9880956013997,231.9618,9.027161439259848,179.76429,256.33383,549.941884358724,5078.4684,1743.1006876627603,299.4425140657421,356.92495981852215,941.8816353260038,0.7146161670486132,34.33223,4.47598530848821,22.551362,105.4173412322998,208.33854,0.19552044942975044,3.0949997,0.36491671949625015,11.967198,0.5699999282757441,1.5166355,0.0330000047882398,0.157163,9.94000768661499,8.353483800000001,0,0,0.01262219933172067,0.11880940000000001,0.0010666858239953096,0.042782191,0.009837979606042305,0.13825367,310.09905242919916,6.310752016783032,52.78275226171121,203.77578316226604,39.74372708975235,28.114996259780565,-0.19163226012025816,2.9899867177009583,5.424762,63195.55051984089,-0.8170844043492784,3.0058298110961914,11.612337,2.2925199468930564,3.3180441,0.4508330797155698,1.2514505 +1994,6.240067755470377,1.5037166846247065,0,0,7.8957327340876935,2.36793980995814,2.1430557,103.57006708780925,86.05046,66.87479654947917,11.006658,83.36027018229167,37.565451,16.09994300206502,4.6095776,6.955350279808044,8.163642999999999,269.62779235839844,85.893495,518.2140757242838,238.58315,9.131617546081543,178.03958,159.08791000000005,545.3847249348959,5003.2837,1748.620371500651,310.25183676250725,358.2539596557617,1060.282744333416,2.2383394837379456,45.287421,5.687364776929219,24.423112,110.94440905253093,237.88968,0.32772576560576755,3.5515517999999995,0.6123692641655604,24.558229,0.6399997919797897,2.3253155,0.03700000451256832,0.20390529,10.600008169809977,8.737967999999999,0,0,0.021451599275072415,0.14808425,0.002012556239302891,0.0083003343,0.012253877784435948,0.15358509,310.80802917480463,6.441827000222701,54.21042306521078,231.0503542937696,40.27137015559246,33.14335063351852,-0.1919669697154478,3.2099871834119162,5.549182599999999,61820.50123949212,-0.0813850082344821,3.2168917854626975,11.303115,2.4025299350420632,2.9604627,0.4654170672098796,1.1962062 +1995,6.3773864537253155,1.4860805049306975,0,0,7.813189501191085,2.4555798172950745,2.3880707,102.88904825846355,80.480245,67.62789662679036,10.682998,83.83788744608562,23.473127,16.137446244557697,5.7076242,7.249991933504741,7.674757700000002,268.1038513183594,86.264975,524.6570994059244,210.72453,9.13146940867106,180.13151000000005,95.783763,552.4202321370443,5016.3948,1755.2296244303384,305.40958889562864,360.2389551798503,955.0363061603086,3.747459292411804,51.095458,6.54466180006663,27.59918,116.0475304921468,230.3453,0.4816569561759631,3.8771223,1.649199257294337,36.211193,0.7599995483954748,3.4395305,0.04200000377992789,0.29614801,11.270008246103922,9.315257,0,0,0.031974499113857746,0.17780027,0.00400000410930564,0.0084622213,0.014884675852954388,0.16982122,311.2790552775065,6.504076135852905,53.416717880413046,206.47424846775004,40.45040793019892,29.71540753892105,-0.1923016793106375,3.429987053076426,5.6736625,60635.50706790533,0.08530772110638411,3.4390769600868225,11.011358,2.4911099076271057,2.8923304,0.475000041226546,1.0842597 +1996,6.511379278926775,1.470193984753465,0,0,7.686339550726493,2.5522598028182983,2.6638414,102.31104151407878,75.256035,68.36059633890788,10.505743,83.94530232747395,13.005309,16.249948978424072,4.6522227,7.557493487993876,5.5242189,266.7558415730794,85.278741,531.4079996744791,170.78176000000005,9.06367564201355,183.44400000000002,59.514335,537.3112080891927,5297.7083,1757.1905924479165,307.29120752307955,362.00496164957684,930.0218807197676,6.036929090817769,53.568363,7.866570234298706,26.00128,124.7284984588623,224.86947,0.6497871528069178,4.0579149,3.2318945129712424,48.538296,0.9399992177883784,4.501452099999999,0.04900001051525275,0.39044285,11.990008195241293,9.7707047,0,0,0.04382059909403324,0.20547879,0.002013620309298858,0.11353612,0.01771567389369011,0.23841137,312.29801940917963,6.542220103334365,53.42127728765462,200.87242078907184,40.45019229181408,28.71419152495162,-0.1926363889058272,3.6599862774213157,5.5527008,59650.01603284395,0.14569222560343534,3.602302074432373,10.510994,2.569999933242798,2.8654227000000003,0.48625003546476364,0.84755661 +1997,6.574573878777592,2.183313990263035,0,0,8.269788742717703,2.6610097885131836,2.8728436999999998,101.2420825958252,75.489912,69.06989606221516,10.417958,83.52113278706868,10.398164,16.362446784973145,3.7691062,7.813324570655823,3.4559389,265.2918523152669,86.34144599999998,534.9630432128906,160.63531,9.140432437260946,180.149,29.550907,542.7740173339844,5288.9251,1761.5010782877603,331.28891975653016,363.25195566813153,1204.992305406782,7.7147689660390215,55.76348100000001,8.959980805714926,29.370536,127.37702624003093,240.5221,0.8248193363348643,4.6266327,5.39930792649587,58.758537,1.2099987765153248,5.5717023,0.06000001293917497,0.427562,12.750008503595987,9.7952259,0,4.9588597e-5,0.05661919961373011,0.25820595,0.004000423466398691,0.1113431,0.02073227148503065,0.31501343,313.18303171793616,6.740456045264001,56.11803188775538,264.67515030448345,41.89315592193428,38.341382315947115,-0.19297109850101685,3.889986495176951,5.7834259,59868.27681505938,0.16690248873741567,3.780295729637146,9.824276800000002,2.650669972101847,2.8566852000000003,0.49000003685553867,0.76826308 +1998,6.590459870606787,1.5412452817195224,0,0,8.412226876444452,2.781449774901072,2.9899069,100.31604703267415,72.916263,69.77859687805176,10.335348,82.96492513020833,12.992477,16.399945735931396,3.9615346,7.95416518052419,2.9318362,263.8838653564453,86.348141,537.6670277913412,156.67666,9.254634141921997,176.1082,23.412636,570.7273610432943,5175.5355,1770.2906799316404,315.332621195414,365.9329554239909,1085.4305991966446,9.836338837941488,55.95678100000001,9.961479743321737,28.471196000000006,134.272824605306,234.46613,0.9994525363047918,6.9049469,8.110631505648294,70.04979200000001,1.5299981534481049,6.8917397,0.07300002624591191,0.54029666,13.540009021759033,10.02529,0,3.583493100000001e-4,0.06999999843537807,0.60512272,0.01000000579127421,0.06915097099999999,0.026339268311858177,0.38665542,313.90700531005854,6.446521520705138,56.589344323708055,232.31801820181306,42.33468433879227,37.81227830332195,-0.1933058080962065,4.1099876165390015,5.6031107,58604.367585517175,0.1710925825750941,3.8873608311017356,10.323837,2.724999964237213,2.701239,0.49000004182259244,0.76943857 +1999,6.661329053494626,1.3034304715400178,0,0,7.698162125432142,2.9081997672716775,2.9607505,99.330872853597,72.96355,70.47599538167317,10.216505,82.38263448079427,14.054175,16.44995387395223,3.9749853,8.04999581972758,3.1538842,262.5458628336589,82.703538,540.1430358886719,140.42543999999998,9.093777736028036,168.37661,18.420173,562.6231740315756,5112.4264,1778.199513753255,309.40837085260006,367.84497833251953,940.7006779859273,11.384798526763916,58.33870699999999,11.354286829630533,25.741051,138.68090184529623,252.31636,1.2204217116038005,8.6848445,11.121968984603882,91.978363,1.9399973253409069,7.9486502,0.08600003769000371,0.7424206999999999,14.300010919570923,10.07373,4.148790035666631e-6,0.0031081514,0.08999998929599921,1.0699013000000002,0.011000006149212519,0.13954925,0.03241546514133612,0.49435229,314.70898946126295,6.28115080714577,54.76937230485621,205.11187816433736,40.94720104039744,30.449171325383368,-0.1936405176913962,4.358643651008606,5.1676463,55523.54473764534,0.17324185027932018,3.9997291962305703,10.262658,2.8026700019836426,2.1509855,0.49000003188848495,0.7706312 +2000,6.893167303200749,1.2013380488633538,0,0,7.457347231717921,3.038709739844004,2.8153943,98.27196884155273,72.65140799999998,71.17349561055501,9.9231457,81.99841690063477,9.4043884,16.499963760375977,3.9867142,8.149996836980185,2.3476517999999995,261.1698455810547,76.330076,542.3829905192057,122.76605,8.829522927602133,165.25876,19.471227,552.0705413818359,5074.2696,1778.0101216634112,310.18680982649335,369.1249745686849,886.5647302341199,13.121398448944092,56.341686,12.102788925170898,25.730152,143.4614372253418,263.60627,1.603711913029353,10.640667,14.691894769668579,99.657424,2.429996371269226,8.598756300000002,0.10600005090236664,0.86319988,15.120010137557983,9.2978389,2.9456416086759418e-5,0.034006926,0.1699999620517095,1.411492,0.013000006632258495,0.2699959,0.040547359734773636,0.57423278,315.7589950561523,6.112229814393959,54.5095965154282,195.32415818527357,41.26362178323956,27.98197839802492,-0.19397522728658584,4.563808560371399,5.2735332,55661.00151337025,0.17458241694797966,4.127887845039368,9.480134800000002,2.8623799681663513,1.9694412,0.49000002940495807,0.77151922 +2001,6.95708692825445,0.961802096435875,0,0,7.591758768528899,3.162919799486796,3.0480682,97.35795720418294,70.65696899999998,71.8547960917155,10.593275,81.4894282023112,5.9590470999999985,16.54997984568278,3.2771364000000003,8.262498617172241,1.1600545,259.5498352050781,68.271466,543.1950124104818,111.64066,8.354893207550049,165.59900000000002,19.806901,542.7083333333334,5094.2258,1776.5307312011716,312.89637869980686,370.67298889160156,881.6703955806449,14.544998407363892,56.36878100000001,13.052591880162558,24.490463,149.25739415486655,261.60586,1.978332092364629,11.075295,19.702295621236164,96.243251,2.9699952602386475,9.8521252,0.132000050197045,0.94275566,15.880009412765503,8.984000300000002,2.597141228761757e-4,0.80619906,0.2699999349812667,1.6540308999999995,0.019000007305294275,0.6107305000000001,0.050659650626281895,0.63867332,316.4930165608723,6.188009183487292,54.709896387749005,196.1877828105409,41.3771755400566,27.8779984365221,-0.19430993688177556,4.776847044626872,5.3282102,56049.16642558323,0.17084303620462507,4.220908443133037,8.8337936,2.8942899902661643,2.3248261,0.49000003188848495,0.74608572 +2002,7.097947294929641,1.0706525114551886,0,0,8.046474186766174,3.2808697621027627,3.4534372,96.3429667154948,70.45667399999998,72.51259549458821,11.982167,80.81803385416667,3.1513602,16.5999755859375,2.420559,8.29999844233195,0.95011524,257.66879018147785,63.484809,543.6559855143229,101.90454,8.333909193674723,161.14055,12.302716,535.3501332600912,5096.5932,1778.960947672526,322.2788312475723,372.83499399820965,970.7244171943499,15.739598194758097,50.843174,13.693090518315634,25.156097,154.4252700805664,270.32175,2.527012268702189,12.214474,23.51545794804891,102.73275,3.5299941102663674,11.617585,0.15900006766120592,1.2107813,16.560010592142742,9.7208997,0.002832789449409271,2.9170651000000003,0.3899999012549718,2.8037817000000005,0.030000012057522934,1.313749,0.06128753939022621,0.73327062,317.1010182698567,6.359556247633107,57.07665954461615,218.4604141242816,41.898783266207694,33.80824328599571,-0.19464464647696525,4.990507483482361,5.4976481,55687.522360887495,0.17652225756277531,4.2806588013966875,8.3685909,2.9381799499193826,2.2797577,0.49000003188848495,0.67660085 +2003,7.424688347669062,0.9010419027374732,0,0,8.2416975979600835,3.4251197973887124,3.16329,95.34536170959473,69.839024,73.28449440002441,12.579882,80.10183588663737,5.7693016,16.59995237986247,1.7336337,8.320768594741821,0.74505988,255.41280873616537,62.27795500000001,543.3510030110677,97.844828,8.222527821858725,158.92828,10.122917,538.8634541829427,5113.7538,1783.5898132324216,328.12422419548386,375.41099802652997,944.7470786126371,16.890098412831623,44.441172,14.409090280532837,25.070909,158.99640528361002,287.30923,2.9139525095621743,15.640539000000002,27.517083009084065,117.40605,4.223822851975759,13.114832,0.1890000912050406,1.560512,17.260011196136475,11.005369,0.06715815638502438,5.226518,0.5027138615647951,4.785689700000002,0.060000043672819935,2.2356391,0.07306782963375251,0.85366012,317.73000590006507,6.4283053046514125,57.69037487838639,214.40339143057142,42.682165561174564,34.362181347359645,-0.19497935607215489,5.207866946856181,5.541719400000002,57641.72369815564,0.165150043379564,4.319008390108745,8.0831154,2.99712997674942,2.0262772,0.48882503310839337,0.60195554 +2004,7.812644316268693,1.0382131676166668,0,0,8.542465507294889,3.577999790509542,2.2029533,94.38845952351888,66.998563,74.13009516398112,12.194883,79.26674334208171,9.216749,16.590060075124104,1.4729968999999998,8.341978788375854,0.75667708,253.1937993367513,60.966802,542.8480021158854,87.654103,8.019330620765686,156.21655,9.7469995,537.7152353922526,5141.4447,1784.230285644531,338.9417722149104,376.9870020548503,945.5469500687323,17.334598859151203,49.135801,15.063492933909098,28.554887,164.7063954671224,307.5767600000001,3.5451226830482483,15.758879,31.54472287495931,125.65071,5.00792149702708,13.097501,0.23300011828541756,2.0510461,18.06001361211141,12.712613,0.23797391975919405,6.6512131,0.8247378170490265,5.4873038,0.12000008982916673,3.1186526000000003,0.08672221936285496,0.97410928,318.3570175170898,6.590470046881482,58.11358476694662,216.68728340618873,44.556855897235216,32.33033041098627,-0.19531406566734455,5.435196399688721,5.6480085,60340.85188935469,0.1719032893302405,4.3401593764623,7.526764599999999,3.035939951737722,2.1192661,0.4857220376531283,0.55294607 +2005,8.093491315549059,1.025657164253795,0,0,8.840128385718105,3.697199821472168,1.9480504,93.41565831502278,63.195607,74.98279317220052,11.060838,78.73161888122559,4.6297025000000005,16.54227288564046,1.8139658,8.346869071324667,0.58070615,250.9148038228353,60.33117900000001,542.1459757486979,71.956593,7.931297580401103,154.12291000000005,7.5405195,538.5567677815756,5209.9819,1783.360432942708,346.39555462360056,378.9070078531901,950.5924444363927,17.678198496500652,53.955471,15.682193517684937,33.447493,170.47949091593424,329.52471,4.231992959976196,16.143675000000002,36.60471884409586,126.49199,5.8813802401224775,12.434284,0.28500013550122577,2.365528,18.97001536687215,14.626529,0.46645688513914746,7.0791974,1.2757697900136311,6.3606922,0.21000011265277863,3.4180583,0.10239290756483872,1.0845927,319.1300023396809,6.6935794842136405,58.883410476258234,218.7880647839753,45.62238086061233,32.723990706702715,-0.19564877526253424,5.6560072501500445,6.2799143,62587.82671838024,0.14980785321635395,4.354827245076497,6.9433284,3.073349952697754,1.8947828,0.481325035293897,0.46971744 +2006,8.358134409609946,1.092642827822681,0,0,8.925648149522456,3.767239769299825,2.045423,92.3141638437907,60.048081,75.77629216512044,10.21735,78.12813186645508,0.6450640999999999,16.514484405517578,1.7510311,8.368909200032553,0.58710647,248.66479873657227,63.03720300000001,540.64996337890625,65.575271,7.679868618647258,152.41471,9.3190485,536.2959035237631,5272.2746,1783.421223958333,356.46968956461853,381.01000722249347,986.1510088892475,18.454998811086018,51.911598,16.647892634073894,36.489809,177.60554122924805,346.30497,4.8289631605148315,19.891066,40.86165841420492,133.41048,6.627838969230652,14.118518,0.3600001533826192,2.3531588,20.050018151601154,12.639849,0.7066208471854528,6.875404400000001,1.6065597534179688,8.3862482,0.32000014930963516,2.5592336,0.1196288987994194,1.1852524,319.9329986572265,6.875606952566932,60.37974252884005,229.89543951646962,46.63913373990392,34.3551466019379,-0.19598348485772396,5.891855637232463,6.9409178,63046.345147395674,0.12455411284421772,4.33484947681427,6.3118449,3.1184199452400208,1.5902358,0.47626903901497525,0.43579597 +2007,8.681148087085731,0.9662119668592635,0,0,9.284494092478702,3.864439765612284,1.7666157999999998,91.12946637471516,57.25715400000001,76.47559356689453,9.3272415,77.3146406809489,4.5089203,16.49068291982015,1.5545493,8.360188722610474,0.78280059,246.4138298034668,64.737513,538.4259847005209,61.623755,7.651655554771423,147.28895,9.6981304,544.8235321044922,5250.6823,1788.9513142903643,355.0225755363805,382.60301971435547,945.8695944358407,19.124198754628498,49.953532,17.730092525482178,37.109679,185.02057011922201,357.26506,5.509383638699849,26.595246000000003,45.3168420791626,127.25708,7.37440820535024,16.399738,0.4300001785159111,2.4154053,21.274523735046387,9.3262891,0.9124758193890253,6.6980995,2.1004197100798288,8.4029745,0.41000018020470935,2.7884,0.13823089003562927,1.2649376,320.64601389567054,6.596141361261144,60.965826091796124,219.70587066030026,48.13085999118788,33.27729799228883,-0.1963181944529136,6.164003173510234,6.9754073000000005,62641.35919619402,0.1214193886258194,4.309016704559326,5.7707437000000015,3.1368099649747214,1.7021554,0.46845003962516785,0.59162888 +2008,8.733139806444965,0.6683379874909382,0,0,9.091850913798911,3.9428598284721375,1.746034,89.87336858113606,56.837697,77.15499623616536,9.0353429,76.47364234924316,8.339533900000001,16.458677450815838,1.9164483,8.382678429285685,0.45696793,244.47682189941406,63.06087700000001,536.3339691162109,57.108479,7.470538298288981,144.47281,6.337644999999998,546.2872212727865,5191.6855,1798.4196472167966,360.4917104977002,384.739018758138,912.5104843071592,19.5464989344279,54.881457,18.928292592366535,33.091627,193.09755071004233,362.72449,6.4292839368184405,30.815622,49.719340324401855,138.28669,8.326615969340006,17.544095000000002,0.5000001961986223,2.6196596000000003,22.006818771362305,8.8123411,1.0804997682571411,7.076053,2.7087196509043374,10.669375,0.4322652171055476,2.7884,0.15781688069303831,1.3164863000000002,321.57499186197913,6.638276368451454,61.316441745117054,214.69549502704018,48.035076099905325,31.619011505170853,-0.1966529040481033,6.453542669614156,6.8835341,61275.77057569818,0.13327703444478306,4.247629324595134,5.5737514,3.1567599376042685,1.6171325,0.4623090426127116,0.63840472 +2009,8.584990106780188,0.7548632834009588,0,0,9.109514001671727,4.015999873479207,1.7995506999999995,88.57357406616211,55.35525300000001,77.73389498392741,9.6854874,75.92381922403972,5.7877004,16.42168601353963,1.6755174,8.389018853505453,0.38354940000000004,242.4608243306478,60.065148,533.7759806315104,54.788238,7.171112656593323,144.24254,3.7694324,539.8231658935547,5145.2658,1802.1011861165362,364.2003633816462,386.28002166748047,917.7292309352042,19.870198726654053,61.50634300000001,19.930792331695557,32.081369,200.3144874572754,366.5558,7.706023693084717,33.926872,52.765931129455566,160.10848,9.35536535580953,21.142804,0.5700002362330755,2.9666725,22.658213933308918,9.933600300000002,1.2225398023923237,7.852249400000002,3.002319614092509,16.223306,0.4763352448741595,2.9974,0.17747688045104346,1.4335011999999998,322.27500661214185,6.712782947167917,61.37795929686438,218.75811433708597,46.48309573333753,31.77247636618844,-0.19698761364329287,6.728324254353841,7.159861,58721.16171394653,0.1066842123978326,4.189547856648763,5.2570896,3.1835699876149497,1.7272846000000002,0.4620170295238495,0.47723148 +2010,8.97554368419623,0.8851100551119334,0,0,9.665129375647625,4.092629869778951,1.7742175999999998,87.3809585571289,56.090865,78.37379455566406,10.48947,75.33903121948242,4.4070317,16.415090084075928,1.4644148,8.386359055836996,0.65896445,240.45181020100912,58.86009,531.2819671630859,52.271203,7.125164190928142,142.6745,2.4614781000000003,535.3102569580078,5179.9719,1807.850667317708,370.8962527865861,388.71703084309894,953.2286302920015,20.67949867248535,65.20953100000001,20.536893049875896,29.851794,207.74554824829102,361.74691,8.963194449742636,35.069515,57.8515370686849,165.044,10.426983912785849,20.460881,0.650000254313151,3.1827017000000004,23.296514352162678,11.247607,1.3827498058478038,8.7778712,3.920989453792572,15.914528,0.5346282621224722,3.3098,0.19690187896291414,1.3375544,323.140993754069,6.708375367844256,62.4444721228101,224.60211210242653,47.318297037341715,34.61053251023121,-0.19732232323848264,7.010202924410502,7.2759031,58249.4552717192,0.1379875550624469,4.121598919232686,4.897554799999999,3.1960699955622354,1.8511656000000003,0.4581970274448395,0.39655186 +2011,9.255966259655072,0.9136545403955806,0,0,9.478876565579496,4.170369823773702,1.8467555,86.05878257751465,57.565927,79.04059473673503,11.056837,74.6382344563802,4.6237938,16.361384391784668,2.0468287,8.387009064356485,0.85601742,238.2458127339681,62.415615,528.532969156901,52.120722,7.106488426526387,140.42156,3.0036158,534.1656138102213,5252.9333,1813.0701904296873,372.6576831783338,390.9440205891927,906.7673675143252,21.561198711395264,67.69059200000001,21.354194005330402,28.645628,214.5593744913737,366.94427,10.464804887771606,43.330418,62.84794902801514,190.47655,11.92148502667745,22.158614,0.7400002578894297,3.410604,24.134215990702312,12.498165,1.555159757534663,9.4654578,5.171979467074077,20.415233,0.5557872851689657,3.5841,0.21967886885007223,1.1291345,324.15898386637366,6.648935415452754,62.39874927347722,218.62875398112044,48.492221562223264,32.518259270416976,-0.19765703283367228,7.307322184244792,7.4656928,58834.52201769484,0.1090569133516887,4.04886809984843,4.3361773,3.2309599916140237,2.096153,0.450772022207578,0.39105944 +2012,9.386649744945927,0.9706890780006704,0,0,9.705285171316014,4.244799852371216,1.794986,85.01424598693848,59.464919,79.78919410705566,9.6609456,73.97862943013509,5.4529267,16.34028704961141,2.0520518,8.405529419581095,0.7168607,236.20683797200522,70.235225,525.833974202474,53.35878,6.98785674571991,136.71475,3.0096674,537.6538136800131,5232.3317,1815.2612304687498,380.80976664436446,393.0159912109375,949.6022183538887,22.543598651885986,63.311547,21.61989386876424,25.468261,220.10840479532877,356.29002,11.74120569229126,45.81505,67.7508716583252,205.00564,12.84508458773295,21.423000000000002,0.8300002614657084,3.2771162000000005,24.988317330678303,12.591587,1.750789761543274,9.054248,5.6421693166097,24.0671,0.6353292663892111,3.9269,0.23203588897983232,0.98551995,325.0049921671549,6.7427966320324675,63.84845417053954,229.10693623998705,48.176745092515574,35.82690195539086,-0.197991742428862,7.598473310470581,7.7062836,57925.01408286904,0.13867518125293046,3.9642380078633628,3.8379813,3.252539952596029,1.7328717,0.44370101888974506,0.41594871 +2013,9.65939649634906,0.9186575700100624,0,0,9.560553735096205,4.328779697418213,1.6324652,83.89107831319173,62.512861,80.53269322713216,8.3027436,73.30493418375652,6.5167934,16.327280203501385,1.9408617,8.421289602915445,0.61330322,234.38086700439453,75.740842,523.1149698893229,54.819887,6.848844488461812,133.39273,1.8384424,539.620361328125,5231.2321,1822.580841064453,381.59439281758614,395.72497812906903,901.2387566412425,23.414698759714764,59.817791,22.207694212595623,19.467118,226.13036346435547,342.89828,13.946606318155924,38.8888,74.7700621287028,202.01825,14.522682428359985,23.8069,0.9300002753734589,2.9986006,26.02762222290039,11.604213,1.9295397400856018,9.7859,7.50248924891154,21.452891,0.6930242776870728,4.2254,0.2427388938764731,0.87225171,325.91899108886713,6.847910646098343,63.650976650406456,219.3811792508812,47.50620674450057,33.245565827085585,-0.19832645202405166,7.910870313644409,7.686158,57413.51786587013,0.15767154312883705,3.8617884318033853,3.5745493,3.305999994277954,0.96258078,0.43652602036794025,0.44442215 +2014,9.719224641485487,1.0957648183627096,0,0,9.744379658087517,4.398729681968689,1.6517,83.06993166605632,53.5475,81.09249051411946,9.8735,72.71072514851888,2.8024,16.306567827860516,1.6696,8.429009358088175,1.114899,233.07986958821616,54.9365,520.5809682210287,28.9612,6.6860902309417725,133.6791,1.2625,539.5420227050781,5358.4982,1831.470998128255,387.873539205888,397.5469792683919,964.047618150183,23.809098561604817,59.82,22.075694402058918,22.47,229.5420659383138,358.8813,15.355007727940878,57.1243,80.51572863260905,200.0249,15.25278091430664,25.2487,1.0056702643632889,3.5393,26.890435059865315,12.991,2.047369738419851,10.1025,8.336968978246054,30.4858,0.7650303095579147,4.4701,0.24726289386550585,1.1516,326.98799133300776,6.916164550612366,65.0368536583283,233.52551800560903,47.385237858595374,36.145821385036584,-0.19866116161924133,8.221433083216349,7.8784,57093.261416151574,0.13977836334337682,3.7536577781041465,3.4810000000000003,3.2976099848747253,1.2299,0.431062030295531,0.3854 +2015,9.724603236619341,0.9598830811179276,0,0,9.727423576882977,4.480095783869426,1.57,82.11867141723633,47.5476,81.83401044209798,10.8699,72.07452774047852,0.8742,16.29770040512085,1.6696,8.46001704533895,1.6714,231.45186487833658,43.5734,518.0192311604818,14.6096,6.666904846827189,133.82299999999998,0,549.8251800537109,5404.8069,1841.9610799153643,388.07279566332187,399.9491551717122,934.3498846847756,24.22537612915039,59.82,22.050132274627686,22.47,233.69509251912436,358.8813,17.75432316462199,78.7906,84.76761627197266,201.9534,16.742900371551514,32.381,1.0911573469638824,3.6633,27.9463373819987,14.4857,2.2238450050354004,11.7285,9.834424575169882,38.5792,0.8708229462305704,4.6492000000000004,0.2528575286269188,1.1516,328.17979176839185,6.937624392238832,65.27970313424456,227.24481931953315,47.34877178380204,34.746024228000834,-0.19899587121443105,8.568542242050171,8.02,50464.18814475436,0.12580052700903913,3.6527332067489624,3.2933,3.28441854317983,1.3378,0.4261275927225749,0.3481 +2016,9.778657667244135,0.9413749285466426,0,0,9.338206726914896,4.563908696174622,1.65008,80.868988037109375,45.017160000000004,82.689117431640625,11.2194168,71.41004053751628,0.78156,16.274217287699383,1.515231454,8.488823334376017,1.61422146,229.5926081339518,41.88082,514.5848337809244,12.88774,6.884192784627278,135.28867999999997,0,563.0181783040365,5441.111379999999,1851.5939229329424,379.9564301392655,403.1169611612956,905.4497064779266,24.52680730819702,60.8428786,22.259799321492512,21.990155599999998,237.72884241739908,351.625206,21.18809429804484,95.49579,90.27675183614095,210.65992,19.401511510213215,37.72828,1.2003816664218903,3.9734007,28.906192938486736,12.083639999999999,2.4407403071721396,13.3545772,12.709800799687704,32.18188,0.9575200627247492,4.84962976,0.2655299554268519,1.16166944,329.07597605387366,6.859269373881525,65.25153841141807,219.58766659716878,46.67399176983314,33.61734354409822,-0.19933058080962068,8.88445552190145,7.713819999999999,48397.01157367403,0.11182269067470146,3.5471805334091187,3.07158,3.2989591360092163,1.29166,0.4188620373606682,0.33428 +2017,9.832712097868928,0.9228667759753576,0,0,8.948989876946817,4.607059081395467,1.7301600000000001,79.52129300435384,42.486720000000005,83.15021260579427,11.5689336,70.57014719645183,0.68892,16.217710494995117,1.360862908,8.531164328257242,1.55704292,226.30971908569336,40.18824,508.81993611653644,11.16588,6.613007028897603,136.75436,0,559.2124532063802,5477.41586,1872.2987263997393,371.84006461520914,405.75196075439453,876.5495282710776,24.88600730895996,61.8657572,22.13029956817627,21.5103112,240.99087524414062,344.369112,23.52409283320109,112.20098,96.23087374369304,219.36643999999998,20.754316488901775,43.07556,1.2809914747873943,4.2835014000000005,29.8445946375529,9.68158,2.631120244661967,14.980654399999999,13.16670036315918,25.78456,1.0297000606854756,5.0500595200000005,0.27518197397391003,1.17173888,329.7709757486979,6.780914355524218,65.22337368859158,211.93051387480438,45.99921175586423,32.4886628601956,-0.1996652904048104,9.174676418304443,7.40764,46329.83500259371,0.09784485434036376,3.4357604384422302,2.8498599999999996,3.3043991525967917,1.24552,0.41084803144137066,0.32046 +2018,9.886766528493721,0.9043586234040727,0,0,8.559773026978736,4.679479122161865,1.8102399999999998,78.11839421590169,39.95628000000001,83.91901270548503,11.9184504,69.81614049275716,0.59628,16.17810853322347,1.206494362,8.575854221979776,1.49986438,223.64171091715494,38.49566,504.2629089355469,9.44402,6.674983938535054,138.22003999999998,0,563.8481597900391,5513.72034,1881.130401611328,363.72369909115275,408.5919596354167,847.6493500642285,25.24800745646159,62.8886358,22.131999333699543,21.0304668,243.5059076944987,337.113018,27.811991850535076,128.90617,101.43001619974773,228.07296,23.168818950653076,48.42284,1.3869915505250294,4.5936021,30.631895860036213,7.279520000000001,2.8966302474339805,16.6067316,13.879200379053751,19.387240000000002,1.1014700730641682,5.25048928,0.2846839750806491,1.18180832,330.4859720865885,6.702559337166911,65.19520896576509,204.27336115244,45.32443174189533,31.359982176292988,-0.2,9.479785601298014,7.101459999999999,44262.65843151338,0.08386701800602607,3.3270604610443115,2.62814,3.3077891866366067,1.1993800000000001,0.4034990221261978,0.30663999999999997 +2019,9.940820959118515,0.8858504708327877,0,0,8.170556177010656,4.755329012870789,1.89032,76.66879590352376,37.42584,84.71141370137532,12.2679672,69.06644058227539,0.50364,16.132907072703045,1.052125816,8.618204037348429,1.44268584,220.94770940144858,36.80308,499.6569112141927,7.722159999999999,6.7453261613845825,139.68572,0,568.0144500732422,5550.0248200000005,1886.4098714192705,355.6073335670964,411.4169642130534,818.7491718573796,25.62370729446411,63.9115144,22.105199019114178,20.5506224,245.3059310913086,329.856924,32.773390452067055,145.61136,106.7502810160319,236.77947999999998,25.909821033477783,53.770120000000006,1.5006916522979736,4.9037028,31.211997509002686,4.877459999999999,3.1973002354303994,18.2328088,13.80020014444987,12.989919999999998,1.1728200614452362,5.4509190400000005,0.2938299799958865,1.19187776,331.1779759724934,6.624204318809604,65.1670442429386,196.6162084300756,44.649651727926425,30.231301492390372,-0.20090909369991228,9.77232567469279,6.79528,42195.48186043306,0.06988918167168841,3.2169204552968345,2.40642,3.3092092076937356,1.15324,0.396086019774278,0.29281999999999997 +2020,9.994875389743308,0.8673423182615027,0,0,7.781339327042575,4.834629058837891,1.9704,75.18019803365071,34.8954,85.5274149576823,12.617484,68.32154083251953,0.41100000000000003,16.083006540934246,0.89775727,8.65830397605896,1.3855073,218.23170598347983,35.1105,495.01691182454425,6.0003,6.816614389419556,141.1514,0,571.8699696858724,5586.3293,1888.3897603352862,347.49096804304,414.2319615681966,789.8489936505306,26.007407506306965,64.934393,22.053999265034992,20.070778,246.5479393005371,322.60083,38.385589599609375,162.31655,112.17746416727702,245.486,28.970422744750977,59.1174,1.6218617459138234,5.2138035,31.585798581441242,2.4754,3.528540313243866,19.858886,13.067200263341268,6.5926,1.2437200645605724,5.6513488,0.3026319816708565,1.2019472,331.84797668457026,6.545849300452297,65.13887952011211,188.95905570771123,43.97487171395752,29.102620808487757,-0.20182667727088965,10.052305301030477,6.4891,40128.305289352735,0.05591134533735071,3.1060704588890076,2.1847,3.3087692658106485,1.1071,0.38862302154302597,0.27899999999999997 +2021,9.938132219557865,0.7857401731861613,0,0,7.505990086245276,4.917379180590312,1.86258,73.65989939371745,33.28538,86.3671137491862,12.125228519999999,67.58183987935384,0.37899000000000005,16.02880573272705,0.833926213,8.696223974227905,1.342148655,215.496706644694,33.879090000000005,490.35491434733075,5.50149,6.8868010838826494,139.178,0,575.4913075764974,5535.19848,1887.2996724446612,341.3270820941875,417.0419642130534,767.2151410836539,26.394007364908855,63.8401921,21.98229916890462,19.2265454,247.35199864705405,304.67177,44.62618923187256,162.811973,117.69952138264973,236.6191,32.3437229792277,59.20029,1.750241716702779,5.09202535,31.75399859746297,2.2694,3.8863202730814614,19.860418,11.793600082397461,6.04397,1.3141300976276398,5.44722405,0.3110999787847201,1.138632531,332.49597167968744,6.458445213978587,65.10155153996139,182.86784320791503,42.91131700888035,28.347800421485527,-0.2026579330382062,10.31970500946045,6.24864,38706.357201493905,0.041933509003013035,2.995140473047892,2.06237,3.306569278240204,1.07222,0.38112902641296387,0.26903 +2022,9.881389049372423,0.70413802811082,0,0,7.230640845447978,4.999519149462382,1.7547599999999999,72.1143004099528,31.67536,87.20191383361816,11.63297304,66.84753926595052,0.34698,15.971005042394003,0.770095156,8.732073624928793,1.29879001,212.74670537312826,32.64768,485.6819101969401,5.00268,6.898052374521892,137.2046,0,576.20330810546875,5484.067660000001,1883.9396667480466,335.163196145335,419.80896250406903,744.581288516777,26.749407450358074,62.7459912,21.877599398295086,18.3823128,247.10907618204752,286.74271,51.080489794413246,163.307396,122.82365481058757,227.7522,35.839722633361816,59.28318,1.878231664498647,4.9702472,31.810898939768474,2.0634,4.2339803377787275,19.86195,10.381800095240274,5.49534,1.3765700658162434,5.2430993,0.3184339851140976,1.075317862,333.12097676595045,6.371041127504876,65.06422355981067,176.77663070811883,41.84776230380319,27.592980034483293,-0.20340286100186195,10.575904846191406,6.008179999999999,37284.40911363507,0.02795567266867536,2.8846704363822937,1.9400399999999998,3.3026893536249795,1.03734,0.3736160198847453,0.25905999999999996 +2023,9.82464587918698,0.6225358830354788,0,0,6.955291604650679,5.077009201049805,1.64694,70.54940223693848,30.065340000000003,88.00341351826985,11.140717559999999,66.1189416249593,0.31497000000000003,15.909904400507608,0.7062640990000001,8.765913565953573,1.255431365,209.98370615641275,31.41627,481.0079116821289,4.50387,6.834463278452556,135.2312,0,573.1667989095052,5432.93684,1879.0495503743487,328.9993101964825,422.4989700317383,721.9474359499003,27.04540729522705,61.6517903,21.730199337005615,17.5380802,245.40610885620117,268.81365,57.3484894434611,163.802819,127.09444363911946,218.8853,39.27202288309733,59.36607,1.9984616140524547,4.84846905,31.85029888153076,1.8574000000000002,4.539560278256734,19.863481999999998,9.163100163141886,4.94671,1.4244500696659088,5.03897455,0.32388698558012646,1.012003193,333.7229792277018,6.283637041031166,65.02689557965995,170.68541820832266,40.78420759872602,26.838159647481064,-0.2040614611618569,10.82220466931661,5.76772,35862.46102577624,0.013977836334337678,2.77515039841334,1.81771,3.297219375769297,1.00246,0.3660990198453267,0.24908999999999998 +2024,9.767902709001538,0.5409337379601374,0,0,6.67994236385338,5.149829268455505,1.53912,68.97070376078288,28.45532,88.77161343892415,10.64846208,65.39613914489746,0.28296,15.84610382715861,0.642433042,8.797813415527344,1.21207272,207.21270370483398,30.18486,476.3389078776042,4.00506,6.749304175376892,133.2578,0,568.862559000651,5381.80602,1872.7494812011716,322.83542424763,425.1199645996094,699.3135833830236,27.289007504781086,60.5575894,21.54819917678833,16.693847599999998,242.67713673909506,250.88459,63.43618965148926,164.29824200000002,130.5714079538981,210.01839999999999,42.64202308654785,59.44896,2.111141622066498,4.7266909,31.872299035390217,1.6514,4.808200279871623,19.865014,8.102729956309,4.39808,1.4593800604343414,4.8348498,0.3275719831387202,0.948688524,334.3009770711262,6.1962329545574555,64.98956759950923,164.59420570852646,39.720652893648854,26.08333926047883,-0.20463373351819092,11.058704455693563,5.52726,34440.5129379174,0,2.6669603983561196,1.6953799999999999,3.29023939371109,0.96758,0.35858802249034244,0.23911999999999997 +2025,9.711159538816094,0.45933159288479614,0,0,6.404593123056081,5.217999339103699,1.4313,67.38320287068684,26.8453,89.50651168823242,10.156206599999999,64.67943954467773,0.25095,15.779903491338095,0.578601985,8.827853123346964,1.168714075,204.4347038269043,28.95345,471.680913289388,3.50625,6.657492558161418,131.2844,0,564.0934041341146,5330.6752,1865.12944539388,316.6715382987775,427.67396545410156,676.6797308161467,27.48640727996826,59.4633885,21.338399410247803,15.849615,239.25614166259766,232.95553,69.34959030151367,164.793665,133.31042098999023,201.1515,45.950822830200195,59.531850000000006,2.216471552848816,4.6049127500000004,31.876699447631836,1.4454,5.044400294621785,19.866546,7.172160069147746,3.84945,1.4827900727589924,4.630725050000001,0.32959598302841187,0.885373855,334.855972290039,6.108828868083744,64.9522396193585,158.50299320873026,38.657098188571695,25.3285188734766,-0.20511967807086415,11.285304148991903,5.2867999999999995,33018.564850058574,0,2.560460388660431,1.5730499999999998,3.2818293968836465,0.9327,0.3510960191488266,0.22914999999999996 +2026,9.65441636863065,0.37772944780945483,0,0,6.129243882258783,5.281519333521525,1.32348,65.79140408833821,25.235280000000003,90.20801226298015,9.66395112,63.968939463297524,0.21894,15.711603005727133,0.5147709280000001,8.85610318183899,1.12535543,201.65270360310873,27.72204,467.03991444905597,3.0074400000000003,6.563291748364766,129.311,0,559.1227976481119,5279.54438,1856.29936726888,310.507652349925,430.16595967610675,654.04587824927,27.64320707321167,58.369187600000004,21.10689942042033,15.0053824,235.3931973775228,215.02647000000002,75.09428850809734,165.289088,135.36251322428384,192.2846,49.1996234258016,59.614740000000005,2.31466152270635,4.4831346,31.863799413045246,1.2394,5.252050280570984,19.868078,6.34811011950175,3.3008200000000003,1.4959400693575542,4.4266003000000005,0.3300589869419734,0.8220591859999999,335.3879776000976,6.021424781610034,64.91491163920777,152.41178070893406,37.59354348349453,24.57369848647437,-0.20551929481987655,11.502004067103067,5.04634,31596.616762199745,0,2.4559303919474282,1.45072,3.2720693945884705,0.89782,0.343632015089194,0.21917999999999999 +2027,9.597673198445209,0.2961273027341136,0,0,5.853894641461484,5.340379476547241,1.2156600000000002,64.19950612386067,23.625260000000004,90.87631034851074,9.17169564,63.26473871866862,0.18693,15.641602754592896,0.45093987100000005,8.882633129755655,1.081996785,198.87070083618164,26.49063,462.4209162394206,2.50863,6.467930237452189,127.3376,0,554.0380605061849,5228.41356,1846.3393249511716,304.3437664010725,432.5979639689128,631.4120256823933,27.728607018788654,57.2749867,20.837899525960285,14.1611498,230.58026758829752,197.09741000000002,80.67549006144206,165.784511,136.77465947469076,183.4177,52.38952382405599,59.697630000000004,2.405901471773783,4.36135645,31.83359956741333,1.0334,5.434590379397075,19.86961,5.61149005095164,2.75219,1.4999500413735707,4.22247555,0.3290539930264155,0.758744517,335.89797719319654,5.934020695136324,64.87758365905705,146.3205682091379,36.52998877841736,23.818878099472137,-0.20583258376522814,11.708903789520264,4.80588,30174.668674340908,0,2.353620409965515,1.3283900000000002,3.26103945573171,0.86294,0.33620601892471313,0.20921 +2028,9.540930028259766,0.21452515765877223,0,0,5.578545400664185,5.394579490025838,1.10784,62.61110623677572,22.01524,91.51130930582683,8.679440159999999,62.566938400268555,0.15492,15.570002476374308,0.38710881399999997,8.907502969106039,1.03863814,196.08970387776694,25.25922,457.82591247558594,2.00982,6.371819774309794,125.3642,0,548.874277750651,5177.28274,1835.3292643229165,298.17988045222,434.9739685058594,608.7781731155164,27.71700668334961,56.1807858,20.51849953333537,13.316917199999999,224.46429061889648,179.16835000000003,86.0982894897461,166.279934,137.59087117513022,174.55079999999998,55.521623293558754,59.78052,2.490381439526876,4.2395783,31.786099592844646,0.8273999999999999,5.5949902931849165,19.871142,4.946710030237834,2.2035599999999995,1.4958200454711914,4.0183508,0.32666798681020737,0.695429848,336.3839772542317,5.846616608662613,64.84025567890633,140.2293557093417,35.466434073340196,23.064057712469907,-0.2060595449069189,11.905903736750284,4.56542,28752.72058648208,0,2.2537203828493753,1.20606,3.248799463113149,0.82806,0.3288280169169108,0.19923999999999997 +2029,9.484186858074324,0.13292301258343087,0,0,5.303196159866887,5.44413944085439,1.0000200000000001,61.02960618336996,20.40522,92.11300977071126,8.18718468,61.875538190205894,0.12290999999999996,15.4971022605896,0.32327775700000005,8.930762767791748,0.995279495,193.31170145670572,24.02781,453.2579167683919,1.5110099999999997,6.27511727809906,123.3908,0,543.6444295247396,5126.15192,1823.3492228190103,292.0159945033675,437.29496510823566,586.1443205486397,27.62290620803833,55.0865849,20.159199396769207,12.4726846,217.51330947875977,161.23929000000004,91.36758995056152,166.775357,137.8511225382487,165.6839,58.596923828125,59.86341,2.5682813922564187,4.11780015,31.721299648284912,0.6214,5.735870321591695,19.872674,4.341000040372212,1.6549300000000002,1.48443004488945,3.8142260500000003,0.3229839876294136,0.6321151789999999,336.84897613525385,5.759212522188903,64.80292769875561,134.1381432095455,34.40287936826303,22.309237325467674,-0.20620017824494888,12.093003511428833,4.32496,27330.772498623242,0,2.156390368938446,1.08373,3.235419432322184,0.79318,0.3215050126115481,0.18927 +2030,9.42744368788888,0.05132086750808962,0,0,5.027846919069588,5.48902956644694,0.8922,59.458007176717125,18.7952,92.68140856424968,7.6949292,61.190737088521324,0.0909,15.423101902008057,0.25944670000000003,8.952492713928223,0.95192085,190.54070536295572,22.7964,448.71991475423175,1.0122,6.177898804346721,121.4174,0,538.3576456705729,5075.0211,1810.4691772460935,285.852108554515,439.56396484375,563.510467981763,27.45900599161784,53.992384,19.768999576568604,11.628452,210.07730992635092,143.31023000000005,96.48788897196452,167.27078,137.59545262654623,156.817,61.616323153177895,59.9463,2.639771342277527,3.996022,31.63939968744914,0.4154,5.859520395596822,19.874206,3.7838800152142844,1.1063,1.4665800432364147,3.6101013,0.3180809865395228,0.56880051,337.2909825642903,5.671808435715192,64.76559971860489,128.0469307097493,33.33932466318586,21.554416938465444,-0.206254483779318,12.27030340830485,4.0845,25908.824410764413,0,2.061750372250875,0.9614,3.2209695180257163,0.7583,0.31424401452143985,0.1793 +2031,9.218697840206213,0.035606038081127056,0,0,4.943111814835009,5.529279589653015,0.83035,57.89900779724121,17.92802,93.21650822957356,7.25007329,60.51253732045492,0.08381999999999999,15.348101695378622,0.24100761240000002,8.972742636998495,0.9221711260000001,187.77770614624023,21.996879999999997,444.2139129638672,0.92805,6.080240766207377,120.28538,0,533.0216623942057,5028.81369,1796.7591451009112,281.54591247492516,441.78096262613934,560.583789340854,27.236505667368572,51.769800000000004,19.35539960861206,10.82562094,202.42035166422525,131.00808400000005,101.46398989359538,153.7756382,136.8567911783854,143.60181,64.58072153727214,55.15276,2.7050312558809915,3.661632825,31.540299892425537,0.37794,5.967950304349263,18.2893508,3.2667499780654907,1.00654,1.4429600536823273,3.30587681,0.31203099091847736,0.5193006211,337.71097819010413,5.627556826455546,64.7215319559362,127.04518297029443,32.82850044234803,21.378586446581824,-0.2062921589054037,12.437702973683676,3.9296900000000003,25074.78659456965,0,1.969900369644165,0.90757,3.2055095434188843,0.7343999999999999,0.30705201377471286,0.1729 +2032,9.009951992523543,0.0198912086541645,0,0,4.85837671060043,5.56585967540741,0.7685,56.35510857899984,17.060840000000002,93.71990712483723,6.80521738,59.84093697865804,0.07673999999999999,15.272401332855225,0.22256852480000003,8.991572459538778,0.8924214020000001,185.0237070719401,21.19736,439.7409159342448,0.8439,5.996280113855998,119.15336,0,527.7243957519531,4982.60628,1782.5391642252603,277.23971639533534,443.92896779378253,557.6571106999451,26.930805524190266,49.547216,18.90489975611369,10.02278988,194.07440694173178,118.70593800000003,105.95599174499512,140.2804964,135.54394658406576,130.38662,67.31981976826985,50.35922,2.7605111598968506,3.3272436499999998,31.431299686431885,0.34048,6.02957018216451,16.7044956,2.8058000206947327,0.90678,1.4122300346692402,3.0016523200000003,0.3050539940595627,0.46980073219999996,338.1129760742187,5.583305217195901,64.67746419326751,126.04343523083958,32.317676221510204,21.20275595469821,-0.20631320362320602,12.597102959950766,3.77488,24240.748778374887,0,1.8809203306833904,0.85374,3.1890995502471924,0.7105,0.2999350155393283,0.16649999999999998 +2033,8.801206144840876,0.004176379227201953,0,0,4.773641606365851,5.599769671758016,0.70665,54.82850901285807,16.19366,94.19330724080403,6.36036147,59.1759360631307,0.06966,15.196101427078247,0.2041294372,9.009032408396402,0.862671678,182.2817064921061,20.39784,435.30391184488934,0.7597499999999999,5.930141131083171,118.02134,0,522.5082499186198,4936.39887,1768.099161783854,272.9335203157455,445.9899622599284,554.730432059036,26.52140537897746,47.324632,18.40619993209839,9.219958819999999,184.71341705322266,106.40379200000004,109.63899167378743,126.7853546,133.56903966267905,117.17143000000002,69.66631825764973,45.56568,2.802801012992859,2.9928544749999997,31.31939967473348,0.30302,6.0167001485824585,15.119640400000002,2.414500037829081,0.8070200000000001,1.3732400337855022,2.69742783,0.2973569979270299,0.42030084329999995,338.50297800699866,5.539053607936254,64.63339643059884,125.04168749138472,31.80685200067237,21.02692546281459,-0.20631761793272485,12.75000294049581,3.62007,23406.71096218013,0,1.794830322265625,0.79991,3.1717995603879294,0.6866,0.2928990150491397,0.1601 +2034,8.592460297158208,0,0,0.011538450199760616,4.688906502131272,5.6310096979141235,0.6447999999999999,53.320908864339195,15.32648,94.63650703430176,5.91550556,58.51753616333008,0.06258,15.119201183319092,0.18569034960000003,9.025172313054403,0.832921954,179.5527089436849,19.598319999999998,430.9019190470378,0.6756,5.868989904721578,116.88932,0,517.3182245890299,4890.19146,1753.4791361490884,268.6273242361557,447.9689636230469,551.8037534181271,26.026404857635498,45.102047999999996,17.87079970041911,8.41712776,174.7804272969564,94.10164600000002,112.53799184163411,113.2902128,130.97923024495444,103.95624000000001,71.62801615397136,40.77214,2.8322509129842124,2.6584652999999996,31.204699834187824,0.26556,5.938490231831868,13.5347852,2.080790013074875,0.70726,1.326900045077006,2.3932033400000003,0.2889869933327039,0.37080095439999994,338.8799743652343,5.494801998676608,64.58932866793015,124.03993975192986,31.296027779834542,20.85109497093097,-0.2063054018339604,12.896702686945597,3.4652600000000002,22572.673145985365,0,1.7116803030172985,0.7460800000000001,3.1536596020062766,0.6627,0.2859490141272545,0.1537 +2035,8.38371444947554,0,0,0.027253279626723165,4.604171397896693,5.659589687983195,0.58295,51.83410898844401,14.4593,95.0496056874593,5.47064965,57.86583550771078,0.055499999999999994,15.042000929514566,0.167251262,9.040042320887247,0.80317223,176.83871205647787,18.7988,426.5359166463216,0.59145,5.809259096781413,115.7573,0,512.1361923217773,4843.98405,1738.6691385904946,264.3211281565658,449.86596934000653,548.8770747772181,25.461604754130047,42.879464,17.308199882507324,7.6142967,164.6084213256836,81.79950000000002,114.67899386088054,99.79507100000001,127.82047462463379,90.74105,73.21251360575359,35.9786,2.8492207725842795,2.324076125,31.0872000058492,0.2281,5.803000171979268,11.94993,1.7947400013605754,0.6075,1.2740500370661418,2.08897885,0.2799859916170438,0.3213010655,339.24497731526685,5.4505503894169625,64.54526090526146,123.03819201247501,30.785203558996713,20.67526447904735,-0.20627655532691244,13.036902586619059,3.3104500000000003,21738.635329790603,0,1.6314702828725178,0.69225,3.134729584058126,0.6388,0.27908900876839954,0.1473 +2036,8.174968601792873,0,0,0.04296810905368571,4.519436293662115,5.685489694277446,0.5210999999999999,50.36960951487223,13.592120000000001,95.43270556131999,5.02579374,57.22073491414388,0.04842,14.96440084775289,0.1488121744,9.05369202295939,0.7734225060000001,174.1407152811686,17.99928,422.20792388916016,0.5073,5.749938408533732,114.62528,0,506.96120198567706,4797.77664,1723.7191365559893,260.014932076976,451.68496958414715,545.9503961363091,24.840904871622723,40.65688,16.726799805959065,6.81146564,154.44041315714517,69.49735400000002,116.08599535624187,86.29992920000001,124.13376998901367,77.52586000000001,74.42741266886394,31.18506,2.8540806770324707,1.9896869499999998,30.96679989496867,0.19064,5.617330153783162,10.3650748,1.548090010881424,0.5077400000000001,1.2154500385125477,1.7847543600000002,0.2703939924637477,0.27180117659999997,339.5979792277018,5.406298780157316,64.50119314259277,122.03644427302015,30.27437933815888,20.499433987163734,-0.20623107841158111,13.170902411142984,3.15564,20904.59751359584,0,1.5541802843411763,0.63842,3.115069627761841,0.6149,0.27232301235198975,0.1409 +2037,7.966222754110204,0,0,0.058682938480648275,4.434701189427535,5.708719770113627,0.45925,48.92870903015137,12.72494,95.7856051127116,4.58093783,56.582234700520836,0.041339999999999995,14.886600812276205,0.1303730868,9.066162109375,0.7436727820000001,171.45971552530924,17.199759999999998,417.9179204305013,0.42315,5.6907773812611895,113.49326,0,501.7891311645508,4751.56923,1708.6191202799478,255.70873599738619,453.42596944173175,543.0237174954002,24.176404158274334,38.434296,16.133599917093914,6.00863458,144.45439910888672,57.19520800000002,116.7829958597819,72.80478740000001,119.95612080891927,64.31067,75.27990976969402,26.39152,2.847160538037618,1.6552977750000002,30.843699773152668,0.15318000000000004,5.387720108032227,8.7802196,1.3340300222237904,0.4079800000000001,1.1517500082651775,1.4805298700000002,0.26024900128444034,0.22230128770000002,339.9379781087239,5.36204717089767,64.45712537992408,121.0346965335653,29.76355511732105,20.323603495280114,-0.2061689710879664,13.298502365748087,3.00083,20070.559697401077,0,1.4798102676868439,0.58459,3.0947296420733132,0.591,0.26565401007731754,0.1345 +2038,7.757476906427536,0,0,0.07439776790761085,4.349966085192957,5.729279796282451,0.3973999999999999,47.51240952809652,11.857759999999999,96.10850461324056,4.13608192,55.950234731038414,0.03425999999999999,14.808700720469156,0.1119339992,9.07751210530599,0.713923058,168.7987149556478,16.40024,413.6659215291341,0.33899999999999997,5.6316771904627485,112.36124,0,496.62324778238934,4705.36182,1693.3891092936196,251.40253991779633,455.0919698079427,540.0970388544912,23.478504180908203,36.211712,15.534399827321371,5.20580352,134.77438354492188,44.893062,116.7949956258138,59.30964560000001,115.32451248168945,51.095479999999995,75.77740859985352,21.59798,2.8288004795710244,1.3209085999999997,30.7176996866862,0.11571999999999999,5.1196502049763994,7.195364399999999,1.1469300190607707,0.30821999999999994,1.083540012439092,1.17630538,0.24958899741371474,0.17280139879999995,340.2659835815429,5.3177955616380235,64.4130576172554,120.03294879411044,29.25273089648322,20.147773003396495,-0.20609023335606827,13.419702370961508,2.84602,19236.521881206318,0,1.4083202580610912,0.53076,3.0737396081288657,0.5670999999999999,0.2590850094954173,0.1281 +2039,7.548731058744869,0,0,0.09011259733457339,4.2652309809583775,5.747179826100667,0.3355499999999999,46.1217098236084,10.990580000000001,96.40130424499512,3.6912260100000003,55.324934005737305,0.027179999999999996,14.730700651804606,0.09349491159999998,9.087772051493326,0.684173334,166.15672175089517,15.600719999999999,409.45192464192706,0.2548499999999999,5.572635134061177,111.22922,0,491.46092987060547,4659.15441,1678.049102783203,247.0963438382065,456.68396759033203,537.1703602135823,22.75640360514323,33.989128,14.934199810028076,4.40297246,125.48636309305827,32.59091600000001,116.14299710591634,45.81450380000001,110.27196820576985,37.88028999999999,75.92700703938802,16.80444,2.7993303338686624,0.986519425,30.589000066121418,0.07826,4.81798009077708,5.610509199999999,0.9821280141671499,0.20845999999999998,1.0113600095113118,0.8720808899999999,0.23844599723815918,0.1233015099,340.58198038736975,5.273543952378378,64.36898985458672,119.03120105465558,28.74190667564539,19.97194251151288,-0.20599486521588672,13.534602085749308,2.69121,18402.484065011555,0,1.3396602272987366,0.47693,3.0521596868832908,0.5432,0.25261800984541577,0.1217 +2040,7.3399852110622,0,0,0.10582742676153593,4.180495876723799,5.762409885724385,0.2737,44.75750986735026,10.1234,96.6640027364095,3.2463701,54.7061341603597,0.0201,14.652600606282553,0.07505582400000001,9.096992015838623,0.65442361,163.5357208251953,14.8012,405.2769241333008,0.1707,5.513647397359212,110.0972,0,486.3046188354492,4612.947,1662.6090901692705,242.79014775861668,458.20097096761066,534.2436815726733,22.017903804779053,31.766544,14.337199926376343,3.6001414,116.64534250895183,20.28877,114.84999783833821,32.319362,104.82941563924153,24.6651,75.73570378621419,12.0109,2.7590602238972983,0.65213025,30.457599639892578,0.0408,4.486950119336446,4.025654,0.8357529938220978,0.1087,0.935668001572291,0.5678564,0.22685199851791063,0.073801621,340.8859786987304,5.229292343118732,64.32492209191803,118.02945331520073,28.23108245480756,19.79611201962926,-0.2058828666674218,13.643102089564005,2.5364,17568.446248816792,0,1.273780236641566,0.4231,3.0300296346346536,0.5193,0.24625700960556665,0.1153 +2041,7.144189750005914,0,0,0.14323619072271596,4.123748115351983,5.7749598026275635,0.26215,43.420210202534996,9.656320000000001,96.89660326639812,3.148411,54.093833923339844,0.01853,14.574600299199423,0.0697234998,9.105211814244589,0.633957487,160.9367243448893,14.28209,401.1409225463867,0.15650999999999998,5.4547081391016645,109.8858,0,481.15284220377606,4602.7719400000005,1647.079132080078,239.62201294027753,459.64697265625,531.1024823426575,21.26970338821411,30.4061322,13.746899922688803,3.34120265,108.28232447306316,18.44822429,112.93599764506023,31.1287897,99.02628898620605,23.654249999999998,75.2104040781657,11.58351,2.7083102265993753,0.624795234,30.323299725850422,0.037880000000000004,4.130310078461965,3.89028242,0.7046299974123637,0.10092000000000001,0.8568860044082006,0.544576905,0.21483799939354262,0.0702650375,341.17898050944007,5.21180587403307,64.31294744174086,117.13894142108283,27.675482916067175,19.639373846884805,-0.20573129812139904,13.745301882425943,2.49378,17150.217000599914,0,1.2106402317682903,0.39941,3.0073896646499634,0.5029399999999999,0.24000400925676027,0.11118 +2042,6.948394288949629,0,0,0.18064495468389596,4.067000353980167,5.785939852396647,0.2506,42.110609690348305,9.18924,97.11090405782063,3.0504519,53.488133112589516,0.01696,14.49660038948059,0.0643911756,9.112451712290445,0.613491364,158.3607292175293,13.762979999999999,397.0439224243164,0.14232,5.412416855494182,109.6744,0,477.3010838826497,4592.59688,1631.6891581217446,236.4538781219384,461.0189743041992,527.9612831126416,20.515403270721436,29.0457204,13.16439970334371,3.0822639,100.36130968729655,16.607678579999998,110.72399711608887,29.9382174,93.23452186584473,22.6434,74.51120440165202,11.15612,2.6526801784833274,0.597460218,30.187900066375732,0.034960000000000005,3.7815900643666587,3.7549108400000004,0.5909369985262553,0.09314,0.7807250122229258,0.5212974100000001,0.20295899733901024,0.06672845399999999,341.4619827270507,5.194319404947407,64.30097279156368,116.24842952696496,27.11988337732679,19.482635674140354,-0.2055401595778184,13.843502044677734,2.45116,16731.987752383036,0,1.1501702268918355,0.37572,2.984269678592682,0.48658,0.23386000717679659,0.10706 +2043,6.752598827893343,0,0,0.218053718645076,4.010252592608351,5.796409885088603,0.23905,40.8289098739624,8.72216,97.31850306193034,2.9524928,52.888732274373375,0.015390000000000001,14.418800354003906,0.0590588514,9.118761698404947,0.5930252410000001,155.80872853597006,13.24387,392.98592376708984,0.12813,5.391448577245076,109.463,0,475.17486572265625,4582.42182,1616.6491699218748,233.28574330359925,462.3149693806966,524.8200838826258,19.757803122202557,27.6853086,12.591000000635782,2.82332515,92.84649022420247,14.767132870000001,108.52499898274739,28.7476451,87.79827245076497,21.63255,73.79490534464519,10.728729999999999,2.5976401766141257,0.570125202,30.052599747975666,0.03204,3.470180034637451,3.6195392600000003,0.4964480052391688,0.08536,0.7122470041116079,0.49801791500000003,0.1917359990378221,0.0631918705,341.7399800618489,5.1768329358617455,64.28899814138651,115.35791763284706,26.56428383858641,19.3258975013959,-0.20530945103667994,13.93990182876587,2.40854,16313.758504166159,0,1.092290202776591,0.35202999999999995,2.9607197046279907,0.47021999999999997,0.22782500957449278,0.10294 +2044,6.556803366837057,0,0,0.25546248260625604,3.9535048312365353,5.806389888127645,0.2275,39.575609842936196,8.25508,97.51950454711914,2.8545337,52.29583231608073,0.013819999999999999,14.341100295384726,0.0537265272,9.124191602071127,0.572559118,153.28073374430338,12.72476,388.96692657470703,0.11393999999999999,5.37659768263499,109.2516,0,473.6202341715495,4572.24676,1601.9391886393228,230.11760848526012,463.53597259521484,521.67888465261,19.002003351847332,26.324896799999998,12.028999964396158,2.5643864,85.75957298278809,12.92658716,106.33699798583984,27.5570728,82.69278780619304,20.621699999999997,73.06200345357259,10.30134,2.543170173962911,0.542790186,29.91770029067993,0.02912,3.1915400425593057,3.48416768,0.4178029994169871,0.07758,0.6506040046612421,0.47473842,0.18112999821702638,0.059655287,342.01098124186194,5.159346466776083,64.27702349120935,114.46740573872918,26.008684299846024,19.169159328651446,-0.20503917249798365,14.034501711527506,2.36592,15895.529255949281,0,1.0369502007961273,0.32833999999999997,2.936769704023997,0.45386,0.22190300623575845,0.09881999999999999 +2045,6.361007905780772,0,0,0.292871246567436,3.8967570698647194,5.815869927406311,0.21595,38.3508103688558,7.788,97.71390279134114,2.7565746,51.70933214823405,0.01225,14.26360042889913,0.048394203000000004,9.128751516342163,0.552092995,150.77773666381836,12.205649999999999,384.9859263102214,0.09974999999999999,5.3635977904001875,109.0402,0,472.2628428141276,4562.0717,1587.5291951497393,226.94947366692097,464.68297322591144,518.5376854225942,18.252302805582683,24.964485,11.480299870173136,2.30544765,79.10795402526855,11.08604145,104.1619987487793,26.3665005,77.89510536193848,19.61085,72.3130054473877,9.87395,2.4892701705296836,0.5154551700000001,29.783000151316326,0.0262,2.941670060157776,3.3487961000000004,0.3522299999992053,0.0698,0.5950329999128977,0.451458925,0.1711039977769057,0.0561187035,342.276980082194,5.141859997690421,64.26504884103218,113.57689384461129,25.45308476110564,19.012421155906992,-0.20472932396172952,14.127301851908365,2.3232999999999997,15477.300007732403,0,0.9840611865123113,0.30465,2.9124597311019897,0.4375,0.21609200909733772,0.0947 +2046,6.165212444724486,0,0,0.33028001052861605,3.8400093084929035,5.824849883715312,0.20440000000000003,37.15460968017578,7.320920000000001,97.90170351664226,2.6586155,51.129231770833336,0.01068,14.186300357182821,0.0430618788,9.132471481959024,0.531626872,148.30174128214517,11.686539999999999,381.04492441813153,0.08556,5.351237456003825,108.8288,0,470.9837290445964,4551.89664,1573.399210611979,223.7813388485818,465.7549794514974,515.3964861925783,17.512102286020916,23.604073200000002,10.946399847666422,2.0465089,72.88953717549641,9.24549574,101.99799919128418,25.1759282,73.38408215840657,18.6,71.54830423990886,9.44656,2.435930152734121,0.48812015400000003,29.648600101470947,0.023280000000000002,2.717060069243113,3.2134245200000002,0.2974329963326454,0.06202,0.5448570052782694,0.42817943,0.16162299861510596,0.052582119999999996,342.5359853108723,5.124373528604759,64.253074190855,112.6863819504934,24.897485222365255,18.85568298316254,-0.20437990542791756,14.218401908874512,2.28068,15059.070759515525,0,0.9335571726163229,0.28096,2.8878097534179688,0.42114,0.21039400498072305,0.09058 +2047,5.9694169836682,0,0,0.3676887744897961,3.7832615471210875,5.833329916000366,0.19285000000000002,35.98710982004801,6.85384,98.0828030904134,2.5606564,50.55533091227213,0.009110000000000002,14.109200239181519,0.037729554600000006,9.135411500930786,0.5111607490000001,145.85074106852213,11.16743,377.14192454020184,0.07137,5.339187304178874,108.6174,0,469.7406463623047,4541.721579999999,1559.5392150878904,220.61320403024268,466.7529780069987,512.2552869625625,16.78440237045288,22.2436614,10.428499857584635,1.7875701500000003,67.09491920471191,7.40495003,99.84729894002278,23.985355900000002,69.13963826497395,17.58915,70.76840273539226,9.019169999999999,2.3831401467323303,0.46078513800000004,29.514400005340576,0.020360000000000003,2.5146300196647644,3.07805294,0.25151200344165164,0.054240000000000003,0.49947500228881836,0.404899935,0.15265400211016336,0.0490455365,342.7899805704752,5.106887059519097,64.24109954067784,111.79587005637552,24.341885683624874,18.698944810418087,-0.20399091689654772,14.307801723480225,2.23806,14640.841511298648,0,0.8853561679522196,0.25727,2.8628597259521484,0.40478000000000003,0.20480800544222197,0.08646000000000001 +2048,5.773621522611914,0,0,0.4050975384509761,3.7265137857492716,5.841309865315755,0.18130000000000002,34.84830983479818,6.386760000000001,98.2573013305664,2.4626973,49.98763084411621,0.00754,14.032400051752726,0.0323972304,9.137591361999512,0.490694626,143.42774454752603,10.648319999999998,373.2769292195638,0.05717999999999998,5.327327052752177,108.40599999999999,0,468.5215810139974,4531.54652,1545.9292195638018,217.44506921190353,467.67798105875653,509.1140877325467,16.071502447128296,20.8832496,9.927280028661093,1.5286314,61.709903399149574,5.5644043199999995,97.70809745788574,22.7947836,65.14306767781575,16.5783,69.973602294921875,8.59178,2.3308801651000977,0.433450122,29.380599975585938,0.017439999999999997,2.3316500584284463,2.94268136,0.21290400127569833,0.046459999999999994,0.4583480084935824,0.38162043999999995,0.14416600142916045,0.045508953,343.03798166910804,5.089400590433435,64.22912489050067,110.90535816225763,23.786286144884485,18.542206637673633,-0.2035623583676201,14.395301739374796,2.1954399999999996,14222.61226308177,0,0.8393831650416056,0.23357999999999998,2.8376397689183555,0.38842,0.1993360072374344,0.08234 +2049,5.577826061555629,0,0,0.4425063024121561,3.6697660243774557,5.848789930343628,0.16975,33.73800913492838,5.9196800000000005,98.42520205179851,2.3647381999999997,49.42623074849447,0.005970000000000001,13.955900271733602,0.027064906200000002,9.139031251271566,0.470228503,141.0307502746582,10.129209999999999,369.450927734375,0.04299,5.315626899401347,108.1946,0,467.321528116862,4521.37146,1532.5392456054685,214.2769343935644,468.5299809773763,505.9728885025309,15.375502268473307,19.522837799999998,9.44340991973877,1.26969265,56.71688747406006,3.7238586100000006,95.58059946695964,21.6042113,61.37717469533285,15.56745,69.16440327962239,8.164390000000001,2.279160181681315,0.406115106,29.24710003534953,0.014519999999999998,2.1657300194104514,2.8073097799999998,0.1803220013777415,0.03867999999999999,0.42100000381469727,0.358340945,0.1361289992928505,0.041972369499999995,343.2809753417968,5.071914121347772,64.21715024032349,110.01484626813975,23.230686606144104,18.385468464929183,-0.20309422984113465,14.481101751327515,2.1528199999999997,13804.383014864892,0,0.7955601513385773,0.20989,2.8121697505315146,0.37206,0.19397500654061636,0.07822 +2050,5.382030600499343,0,0,0.47991506637333614,3.6130182630056398,5.855769872665405,0.1582,32.65600903828939,5.4526,98.58640225728352,2.2667791,48.87083085378011,0.0044,13.879600286483765,0.021732582,9.139761288960775,0.44976238,138.66274897257486,9.6101,365.6619288126628,0.0288,5.304056644439697,107.9832,0,466.1364974975586,4511.1964,1519.3592427571612,211.10879957522525,469.3099772135417,502.83168927251506,14.697702089945475,18.162426,8.97724986076355,1.0107539,52.096274058024086,1.8833129,93.46469942728679,20.413639,57.82555739084879,14.5566,68.34110323588054,7.737,2.227950155735016,0.37878009,29.11389986673991,0.0116,2.014780024687449,2.6719382,0.1527059997121493,0.0309,0.38700800637404126,0.33506145,0.12851499766111374,0.038435786,343.51798502604163,5.0544276522621105,64.20517559014633,109.12433437402186,22.67508706740372,18.22873029218473,-0.20258653131709128,14.565101703008017,2.1102,13386.153766648014,0,0.7538081357876459,0.1862,2.78648974498113,0.3557,0.188727006316185,0.0741 +2051,5.201715010778353,0,0,0.5025103626920406,3.5890504503989495,5.862259944279988,0.15205000000000002,31.60230890909831,5.20103,98.74100176493327,2.2237695,48.32162952423096,0.00406,13.803600152333578,0.02018665606,9.139811277389526,0.435696317,136.32175064086914,9.27305,361.91092681884766,0.02641,5.292616526285808,107.87064,0,464.9664357503255,4506.72897,1506.3792419433591,209.08707375136862,470.01897684733075,499.8023607443419,14.039501905441284,17.3846094,8.52895998954773,0.9380561430000001,47.827060063680015,1.712466056,91.36029815673828,20.5836663,54.473225911458336,14.60264,67.50410270690918,7.8062700000000005,2.177250107129415,0.376741058,28.98100010553996,0.011059999999999999,1.8769600590070088,2.7062342,0.12918100071450075,0.02946,0.35599300265312195,0.336129124,0.1212999988347292,0.0381779101,343.74898274739576,5.047009139534205,64.13985286103916,108.26972434328695,22.45521369289482,18.103186222884958,-0.2020549298892262,14.647401650746664,2.08573,13151.271878698248,0,0.7140501389900843,0.17577,2.760609765847524,0.34449,0.18359200780590376,0.07145 +2052,5.021399421057363,0,0,0.5251056590107452,3.5650826377922593,5.868359883626302,0.1459,30.576508680979412,4.94946,98.89090220133464,2.1807599,47.77842998504639,0.0037200000000000002,13.728000084559122,0.01864073012,9.13922127087911,0.42163025400000004,134.00875600179037,8.936,358.19693247477215,0.02402,5.2812864780426025,107.75807999999999,0,463.8233362833659,4502.2615399999995,1493.6592915852862,207.06534792751197,470.66298421223956,496.77303221616876,13.400301853815714,16.6067928,8.098139882087708,0.865358386,43.88474814097086,1.541619212,89.29739952087402,20.7536936,51.332021395365395,14.64868,66.66990343729655,7.87554,2.1274201075236,0.374702026,28.848299980163574,0.01052,1.7539600531260173,2.7405302000000002,0.10933200021584828,0.02802,0.3280470023552577,0.33719679799999996,0.11448799942930539,0.0379200342,343.97598012288404,5.039590626806298,64.074530131932,107.41511431255203,22.23534031838592,17.977642153585187,-0.20149942555753944,14.728301525115967,2.06126,12916.389990748481,0,0.6762081235647202,0.16534,2.7345697482426963,0.33328,0.17856900642315546,0.0688 +2053,4.841083831336373,0,0,0.5477009553294498,3.5411148251855695,5.874189933141072,0.13975,29.57830874125163,4.69789,99.03780110677083,2.1377503,47.24122969309489,0.00338,13.652600129445394,0.01709480418,9.138001124064127,0.407564191,131.72575887044272,8.59895,354.5209325154622,0.02163,5.270066301027934,107.64552,0,462.7122548421224,4497.79411,1481.2492879231768,205.04362210365534,471.24998474121094,493.74370368799566,12.779801686604818,15.8289762,7.6843399206797285,0.7926606290000001,40.24533653259277,1.370772368,87.30519930521648,20.9237209,48.41342544555664,14.69472,65.85480244954427,7.94481,2.0788201292355857,0.372662994,28.716000080108643,0.00998,1.6473000347614288,2.7748262,0.092823700979352,0.02658,0.30325500667095184,0.338264472,0.10808799974620342,0.0376621583,344.1989771525065,5.032172114078392,64.00920740282481,106.56050428181713,22.01546694387702,17.85209808428542,-0.20092001832203102,14.808201551437378,2.03679,12681.508102798714,0,0.6402081201473871,0.15491,2.708369771639506,0.32207,0.17365600789586702,0.06615 +2054,4.660768241615383,0,0,0.5702962516481543,3.5171470125788793,5.879769881566365,0.1336,28.607508818308514,4.44632,99.1818021138509,2.0947407,46.70992946624756,0.00304,13.577600081761679,0.01554887824,9.136181116104126,0.393498128,129.46976470947266,8.261899999999999,350.8809305826823,0.01924,5.258996208508809,107.53296,0,461.6241989135742,4493.32668,1469.1393229166665,203.02189627979868,471.7789840698242,490.7143751598225,12.178801695505777,15.0511596,7.287479956944783,0.719962872,36.88962586720785,1.199925524,85.38169924418132,21.0937482,45.70229848225912,14.74076,65.0584036509196,8.01408,2.031420131524404,0.37062396200000003,28.583899815877277,0.009439999999999999,1.5550100306669872,2.8091222,0.07907480125625928,0.02514,0.28126900643110275,0.339332146,0.10207399850090344,0.0374042824,344.4189783732096,5.024753601350485,63.94388467371765,105.70589425108221,21.79559356936812,17.72655401498565,-0.20031670818270075,14.887001593907675,2.01232,12446.626214848948,0,0.6059741228818893,0.14448,2.6820597847302756,0.31086,0.16885200267036757,0.0635 +2055,4.480452651894393,0,0,0.5928915479668588,3.493179199972189,5.885069926579793,0.12745,27.663508415222168,4.19475,99.32290204366048,2.0517311,46.18452898661295,0.0027,13.503000100453695,0.0140029523,9.133771022160849,0.37943206500000004,127.24376551310222,7.924849999999999,347.27793375651044,0.01685,5.248096028963725,107.4204,0,460.55613962809247,4488.8592499999995,1457.3093261718748,201.00017045594205,472.250981648763,487.68504663164936,11.598001639048258,14.273343,6.907410065333049,0.6472651150000001,33.79861545562744,1.02907868,83.52519798278809,21.2637755,43.184556325276695,14.7868,64.28060372670491,8.08335,1.985210120677948,0.36858493000000003,28.452099959055584,0.0089,1.4753300448258717,2.8434182000000003,0.06760400099058946,0.0237,0.26177900781234104,0.34039982,0.09642389913400014,0.0371464065,344.63598124186194,5.01733508862258,63.87856194461048,104.85128422034731,21.57572019485922,17.601009945685878,-0.1996894951395488,14.964801470438639,1.98785,12211.744326899181,0,0.5734341144561768,0.13405,2.6556398073832193,0.29965,0.1641590048869451,0.06085 +2056,4.300137062173404,0,0,0.6154868442855634,3.469211387365499,5.890109936396281,0.12129999999999999,26.746208031972248,3.94318,99.46110153198242,2.0087215,45.6649284362793,0.00236,13.428600072860718,0.01245702636,9.130801121393839,0.365366002,125.04676818847656,7.5878,343.7119318644206,0.01446,5.237345973650615,107.30784,0,459.5080846150716,4484.39182,1445.729329427083,198.97844463208543,472.6649856567383,484.6557181034762,11.037801583607992,13.4955264,6.543880025545756,0.5745673580000001,30.95430612564087,0.8582318360000001,81.73379834493001,21.4338028,40.84709548950195,14.832840000000001,63.52110322316488,8.15262,1.9401501317818959,0.366545898,28.32070016860962,0.00836,1.4067300458749135,2.8777142000000002,0.05801280060162147,0.022260000000000002,0.24451100329558054,0.341467494,0.09111669970055421,0.0368885306,344.84998067220045,5.009916575894674,63.81323921550331,103.9966741896124,21.35584682035032,17.475465876386107,-0.1990383791925752,15.041601578394571,1.96338,11976.862438949416,0,0.5425181041161219,0.12362000000000001,2.6291398207346597,0.28844000000000003,0.15957200651367506,0.0582 +2057,4.119821472452414,0,0,0.638082140604268,3.4452435747588086,5.894879976908366,0.11515,25.85490830739339,3.6916100000000003,99.59640185038249,1.9657119,45.151028633117676,0.00202,13.354700167973837,0.01091110042,9.127310991287231,0.351299939,122.87877146402995,7.25075,340.1809361775716,0.012070000000000001,5.226755817731221,107.19528,0,458.4760386149089,4479.92439,1434.3993326822915,196.95671880822877,473.02198282877606,481.62638957530305,10.498401323954264,12.7177098,6.196559985478719,0.5018696010000001,28.338997840881348,0.6873849920000001,80.0055980682373,21.6038301,38.67761961619059,14.87888,62.77960332234701,8.22189,1.8962201277414958,0.364506866,28.189499696095783,0.00782,1.3478700419267018,2.9120102,0.049977000802755356,0.02082,0.22921600316961607,0.342535168,0.08613189992805322,0.0366306547,345.05997721354163,5.002498063166767,63.74791648639614,103.14206415887749,21.13597344584142,17.349921807086336,-0.19836336034177976,15.117401440938314,1.93891,11741.98055099965,0,0.5131551027297974,0.11319000000000001,2.602569798628489,0.27723000000000003,0.15509200592835745,0.05555 +2058,3.9395058827314235,0,0,0.6606774369229725,3.421275762152119,5.899389942487081,0.10899999999999999,24.98930788040161,3.44004,99.72880172729492,1.9227022999999999,44.64292812347412,0.00168,13.281000137329102,0.009365174479999998,9.123300949732462,0.337233876,120.73977533976237,6.9137,336.68593343098956,0.009680000000000001,5.216315666834514,107.08272000000001,0,457.46199289957684,4475.45696,1423.289357503255,194.93499298437214,473.32198842366535,478.59706104712996,9.97978130976359,11.9398932,5.865099946657817,0.42917184399999997,25.93588987986247,0.516538148,78.33899943033855,21.7738574,36.66452725728353,14.92492,62.05590311686198,8.29116,1.8534001211325328,0.362467834,28.058599948883057,0.007279999999999999,1.2975400388240814,2.9463062,0.0432182007158796,0.01938,0.21567600592970848,0.343602842,0.08145019908746083,0.0363727788,345.266980489095,4.995079550438861,63.68259375728897,102.28745412814258,20.91610007133252,17.22437773778657,-0.19766443858716265,15.19210155804952,1.91444,11507.098663049883,0,0.48527709394693375,0.10275999999999999,2.5759598215421042,0.26602000000000003,0.1507180059949557,0.0529 +2059,3.759190293010434,0,0,0.683272733241677,3.3973079495454286,5.9036299387613935,0.10285,24.14900779724121,3.18847,99.85830116271973,1.8796926999999999,44.14042822519938,0.00134,13.207799990971884,0.007819248539999999,9.118790864944458,0.32316781299999997,118.6297779083252,6.57665,333.22593180338544,0.007290000000000001,5.2060054540634155,106.97016,0,456.4629364013672,4470.98953,1412.3893737792966,192.9132671605155,473.56398518880206,475.5677325189568,9.481931209564209,11.162076599999999,5.549080014228821,0.35647408700000005,23.729382197062176,0.34569130400000003,76.73209889729817,21.943884699999998,34.79702091217041,14.970960000000002,61.34970315297445,8.360430000000001,1.8116501073042552,0.360428802,27.928100109100342,0.0067399999999999995,1.2547000348567963,2.9806022000000003,0.03751170045385758,0.01794,0.20369500542680422,0.344670516,0.07705359968046348,0.0361149029,345.47097778320307,4.9876610377109545,63.617271028181804,101.43284409740767,20.69622669682362,17.098833668486797,-0.19694161392872386,15.265901565551758,1.88997,11272.216775100116,0,0.45881809045871097,0.09233,2.5493198235829673,0.25481,0.14644800126552582,0.05025 +2060,3.578874703289444,0,0,0.7058680295603816,3.3733401369387384,5.907609939575195,0.0967,23.333507855733234,2.9369,99.98480224609375,1.8366831,43.643527348836265,0.001,13.134899934132894,0.0062733226,9.113810857137045,0.30910175,116.5497817993164,6.2396,329.8019332885742,0.0049,5.195835550626119,106.8576,0,455.4789225260417,4466.5221,1401.6893819173174,190.89154133665886,473.74998728434247,472.53840399078365,9.004631201426188,10.38426,5.248049974441528,0.28377633,21.70437526702881,0.17484446,75.18329811096191,22.113912,33.06500085194906,15.017000000000001,60.66070302327474,8.4297,1.7709601124127705,0.35838977,27.7978998819987,0.0062,1.2184300522009532,3.0148982,0.03267700085416436,0.0165,0.19310100376605988,0.34573819,0.07292500076194604,0.035857027,345.6709823608398,4.980242524983049,63.55194829907463,100.57823406667276,20.47635332231472,16.973289599187027,-0.1961948863664633,15.338601271311441,1.8655,11037.33488715035,0,0.4337140868107478,0.0819,2.522669812043508,0.2436,0.14228100577990213,0.0476 +2061,3.4136574532823936,0,0,0.7057957933122991,3.350692965643752,5.911319891611735,0.09332,22.54220740000407,2.80139,100.10800298055013,1.81424331,43.152126948038735,9.2e-4,13.062400023142496,0.0058252281299999995,9.108370860417685,0.299431331,114.49778429667155,6.02076,326.4119364420573,0.00449,5.185784816741943,106.79573,0,454.5107676188151,4464.19127,1391.1793823242185,188.44601838746993,473.87798563639325,470.4382773581631,8.547571023305258,9.939558329999999,4.96154002348582,0.2633617666,19.847068786621094,0.1589853287,73.69089825948079,22.295895299999998,31.459068457285564,15.114460000000001,59.988802909851074,8.514330000000001,1.7312901218732197,0.356926465,27.66800022125244,0.0059099999999999995,1.1879200438658397,3.0517294600000002,0.028555100318044424,0.01573,0.18373900527755418,0.347978214,0.06904829914371173,0.0357587886,345.8689804077148,4.980250647712202,63.53450750019524,99.54598460686277,20.233641087103642,16.933719394806435,-0.19544823290532176,15.410301446914673,1.84196,10822.398131601925,0,0.4099050809939702,0.07732,2.496019800504049,0.23592000000000002,0.13821500539779663,0.0459 +2062,3.248440203275343,0,0,0.7057235570642166,3.328045794348766,5.914829969406128,0.08993999999999999,21.774706840515137,2.66588,100.23000208536784,1.79180352,42.66622670491537,8.4e-4,12.99020004272461,0.00537713366,9.102500756581625,0.289760912,112.47578684488933,5.80192,323.05694071451825,0.00408,5.176924109458923,106.73386,0,453.6473337809245,4461.86044,1380.7793884277341,186.000495438281,473.958989461263,468.33815072554245,8.110471169153849,9.49485666,4.689079999923706,0.24294720320000002,18.144363403320312,0.1431261974,72.25379880269368,22.4778786,29.972227732340496,15.211920000000001,59.33430322011312,8.59896,1.6926501095294952,0.35546316,27.53849983215332,0.00562,1.1625200510025024,3.0885607200000003,0.025051500493039686,0.014960000000000001,0.1754910039405028,0.350218238,0.06541039856771629,0.0356605502,346.0639775594075,4.980258770441356,63.51706670131585,98.51373514705278,19.990928851892566,16.894149190425843,-0.1947016535452992,15.481001297632853,1.81842,10607.461376053501,0,0.38733207682768506,0.07274,2.4693798422813416,0.22824,0.13424900298317274,0.0442 +2063,3.083222953268293,0,0,0.705651320816134,3.30539862305378,5.918189962704976,0.08656,21.03050708770752,2.53037,100.35000165303548,1.76936373,42.18582661946615,7.6e-4,12.918400128682455,0.00492903919,9.096210877100626,0.280090493,110.48278935750325,5.58308,319.7359364827474,0.00367,5.169504125912984,106.67199000000001,0,452.9160690307617,4459.5296100000005,1370.4193623860674,183.55497248909205,473.9989878336589,466.2380240929218,7.692921002705892,9.05015499,4.430200020472209,0.22253263980000001,16.584157943725586,0.1272670661,70.8707987467448,22.6598619,28.597576936086018,15.30938,58.697503089904785,8.68359,1.655020107825597,0.353999855,27.409300009409588,0.00533,1.1416500508785248,3.1253919800000003,0.02209840016439557,0.014190000000000001,0.16825700302918753,0.352458262,0.0619989987462759,0.035562311799999996,346.25798288981116,4.98026689317051,63.49962590243645,97.4814856872428,19.74821661668149,16.85457898604525,-0.19395514828639573,15.550701459248861,1.79488,10392.524620505077,0,0.36593707650899887,0.06816,2.442779858907064,0.22056,0.1303810030221939,0.0425 +2064,2.918005703261242,0,0,0.7055790845680515,3.2827514517587937,5.92139991124471,0.08317999999999999,20.309106667836506,2.39486,100.46800104777019,1.74692394,41.71072578430176,6.8e-4,12.847000042597452,0.0044809447199999995,9.089520692825317,0.270420074,108.51879374186198,5.36424,316.4489339192708,0.00326,5.162514090538025,106.61012000000001,0,452.2300262451172,4457.198780000001,1360.099375406901,181.10944953990312,473.9989878336589,464.13789746030125,7.294390956560771,8.605453319999999,4.184370040893555,0.2021180764,15.155153195063273,0.1114079348,69.54029846191406,22.841845199999998,27.327115217844646,15.40684,58.07820415496826,8.76822,1.618370105822881,0.35253655,27.28059991200765,0.005039999999999999,1.1247600416342418,3.1622232400000003,0.019601100279639166,0.013420000000000001,0.1619230049351851,0.35469828600000003,0.0588001993795236,0.0354640734,346.44997914632154,4.980275015899664,63.48218510355706,96.4492362274328,19.505504381470413,16.81500878166466,-0.1932087171286113,15.619401375452677,1.77134,10177.587864956653,0,0.34566206733385724,0.06358,2.416209876537323,0.21288,0.12661000030736128,0.0408 +2065,2.7527884532541917,0,0,0.705506848319969,3.2601042804638074,5.924469908078511,0.0798,19.6100066502889,2.25935,100.58500226338704,1.7244841499999999,41.241025606791176,6.000000000000001e-4,12.776000102361044,0.00403285025,9.082440773646036,0.260749655,106.5837968190511,5.1454,313.1959406534831,0.00285,5.155653953552246,106.54825,0,451.5599899291992,4454.86795,1349.8293660481768,178.6639265907142,473.95699310302734,462.0377708276807,6.914300918579102,8.16075165,3.9510599772135415,0.181703513,13.846548716227213,0.0955488035,68.26069831848145,23.0238285,26.15364424387614,15.5043,57.476003328959145,8.85285,1.5826901296774547,0.35107324500000003,27.152299880981445,0.00475,1.1113400359948475,3.1990545,0.01747250013674299,0.012650000000000002,0.15638200441996256,0.35693831,0.055800798969964184,0.035365835,346.6409835815429,4.980283138628817,63.464744304677666,95.41698676762282,19.262792146259336,16.775438577284067,-0.19246236007194584,15.687201182047525,1.7478,9962.651109408229,0,0.32645606497923535,0.059,2.3897098700205484,0.2052,0.12293400305012862,0.0391 +2066,2.5875712032471414,0,0,0.7054346120718865,3.237457109168821,5.927389979362488,0.07642,18.932606379191082,2.12384,100.70000139872234,1.70204436,40.77662499745687,5.200000000000001e-4,12.705300013224283,0.00358475578,9.074980656305948,0.25107923600000004,104.6777998606364,4.92656,309.97593943277997,0.0024400000000000003,5.148853937784831,106.48638,0,450.896977742513,4452.53712,1339.5893758138018,176.21840364152527,473.87299092610675,459.93764419506005,6.5520708958307905,7.716049979999999,3.729770004749298,0.1612889496,12.64864452679952,0.0796896722,67.03029886881511,23.2058118,25.069963455200195,15.60176,56.890703201293945,8.93748,1.547930121421814,0.34960994,27.02430009841919,0.00446,1.100950042406718,3.23588576,0.015648000175133348,0.011880000000000002,0.1515480031569799,0.359178334,0.052988498782118164,0.0352675966,346.82998148600257,4.980291261357971,63.447303505798274,94.38473730781283,19.020079911048263,16.735868372903475,-0.19171607711639946,15.753901243209839,1.7242600000000001,9747.714353859805,0,0.30826706687609357,0.054419999999999996,2.3632798393567405,0.19752,0.11935200293858846,0.0374 +2067,2.422353953240091,0,0,0.705362375823804,3.214809937873835,5.93015988667806,0.07304,18.276506106058758,1.9883300000000002,100.81400108337402,1.67960457,40.317325592041016,4.4000000000000007e-4,12.634999910990397,0.0031366613100000003,9.067180713017782,0.241408817,102.80080286661784,4.70772,306.7889404296875,0.0020300000000000006,5.142083923021953,106.42451,0,450.23797098795575,4450.20629,1329.3893839518228,173.77288069233634,473.74698638916016,457.8375175624395,6.2070707480112715,7.27134831,3.5199700196584067,0.1408743862,11.552440643310547,0.06383054090000001,65.84759839375813,23.387795099999998,24.06977415084839,15.69922,56.32180372873942,9.02211,1.5140901108582814,0.348146635,26.896700382232666,0.00417,1.0932100613911946,3.27271702,0.014073300252979001,0.011110000000000002,0.1473390037814776,0.361418358,0.05035170012464126,0.0351693582,347.0169779459635,4.980299384087124,63.42986270691888,93.35248784800284,18.777367675837187,16.696298168522883,-0.190969868261972,15.819701274236044,1.70072,9532.77759831138,0,0.29104606062173843,0.04984,2.3369198640187583,0.18984,0.11586200383802255,0.0357 +2068,2.2571367032330407,0,0,0.7052901395757214,3.192162766578849,5.932789921760559,0.06966,17.641106128692627,1.8528200000000001,100.927001953125,1.65716478,39.86332480112711,3.5999999999999997e-4,12.565100113550821,0.00268856684,9.059040546417236,0.231738398,100.95180638631184,4.48888,303.63394419352215,0.00162,5.135343909263611,106.36264,0,449.5819625854492,4447.87546,1319.2193908691404,171.3273577431474,473.57799530029297,455.73739092981884,5.878700693448384,6.82664664,3.321179986000061,0.1204598228,10.549437363942465,0.04797140959999999,64.71109835306804,23.569778399999997,23.146977106730144,15.79668,55.76910368601481,9.10674,1.4811401168505351,0.34668333,26.769500096638996,0.0038799999999999998,1.0877800484498341,3.30954828,0.012698700108254949,0.01034,0.1436820055047671,0.363658382,0.04787939911087354,0.035071119799999995,347.203982035319,4.9803075068162785,63.412421908039484,92.32023838819285,18.53465544062611,16.65672796414229,-0.1902237335086636,15.884501218795776,1.6771800000000001,9317.840842762957,0,0.27474605292081833,0.04526,2.310659865538279,0.18216,0.11246100254356861,0.034 +2069,2.09191945322599,0,0,0.7052179033276389,3.1695155952838627,5.935279965400696,0.06627999999999999,17.025905927022297,1.7173100000000001,101.03700192769368,1.63472499,39.41442457834879,2.8e-4,12.495600064595541,0.0022404723699999997,9.050570487976074,0.22206797900000003,99.13140869140625,4.27004,300.51294199625653,0.0012100000000000001,5.128613789876302,106.30077,0,448.928949991862,4445.54463,1309.0893758138018,168.88183479395846,473.364995320638,453.63726429719827,5.566330711046855,6.381944969999999,3.132879992326101,0.1000452594,9.631874163945517,0.03211227829999999,63.61929893493652,23.7517617,22.296172936757404,15.89414,55.23230393727621,9.19137,1.4490401148796082,0.34522002500000004,26.642699877421062,0.00359,1.0843700567881267,3.34637954,0.011488500206420818,0.00957,0.1405160054564476,0.365898406,0.04556149958322445,0.034972881399999996,347.3889846801757,4.980315629545432,63.39498110916009,91.28798892838286,18.291943205415034,16.6171577597617,-0.1894776728564743,15.94840137163798,1.65364,9102.904087214532,0,0.25932104885578156,0.04068,2.284489870071411,0.17448,0.10914900278051694,0.032299999999999995 +2070,1.9267022032189398,0,0,0.7051456670795564,3.1468684239888765,5.937609990437825,0.0629,16.430505911509197,1.5818,101.14700190226237,1.6122852,38.97052447001139,2e-4,12.426399946212769,0.0017923779,9.041780710220337,0.21239756,97.339111328125,4.0512,297.4229380289714,8e-4,5.12191383043925,106.2389,0,448.27795155843097,4443.2138,1298.9893697102862,166.43631184476953,473.1099904378255,451.53713766457764,5.269340713818868,5.9372433,2.9546000361442566,0.079630696,8.792761007944742,0.016253147,62.57079823811849,23.933745,21.51206111907959,15.9916,54.71110407511393,9.276,1.4177901248137157,0.34375672,26.516300042470295,0.0033,1.0827200313409169,3.3832108,0.010418500130375227,0.0088,0.1377820037305355,0.36813843,0.04338839929550886,0.034874643,347.57197570800776,4.980323752274586,63.3775403102807,90.25573946857287,18.049230970203958,16.577587555381108,-0.188731686305404,16.01120114326477,1.6301,8887.967331666108,0,0.24472604940334955,0.0361,2.2584398786226907,0.1668,0.10592500306665897,0.0306 +2071,1.710886837063945,0,0,0.701132329648978,3.107429478709202,5.939800024032593,0.06091,15.85420568784078,1.50882,101.25400161743164,1.5936053700000001,38.53162415822347,1.8e-4,12.357599973678589,0.001657949557,9.032700697580973,0.205751345,95.57481384277344,3.9091199999999997,294.3659439086914,7.300000000000001e-4,5.115223526954651,106.20248000000001,0,447.62891387939453,4441.273510000001,1288.9193725585935,163.7238975025048,472.8109944661458,448.2550693369735,4.987110575040181,5.6829841299999995,2.7858699758847556,0.0739077507,8.025518337885538,0.014775588179999999,61.56419849395752,24.0926619,20.789743264516193,16.13316,54.20510387420654,9.34807,1.3873601059118907,0.34285714700000003,26.390300273895264,0.00314,1.0826000571250916,3.41733419,0.009463720178852478,0.00837,0.13543200741211572,0.37139379100000003,0.041350899574657284,0.034874643,347.75397745768225,4.993097925115046,63.39843990761558,88.9744140590117,17.759645411647572,16.49599300354975,-0.18798994468986616,16.07310136159261,1.60464,8663.253294716846,0,0.2309220482905706,0.03408,2.2324998577435813,0.16155,0.10278600205977757,0.029509999999999998 +2072,1.4950714709089503,0,0,0.6971189922183996,3.067990533429527,5.941879987716675,0.05892,15.296605428059896,1.43584,101.3610013326009,1.57492554,38.09782409667969,1.6e-4,12.289199988047281,0.001523521214,9.023320515950521,0.19910513000000002,93.83831787109375,3.7670399999999997,291.33994547526044,6.6e-4,5.109133164087932,106.16606,0,447.008794148763,4439.33322,1278.8493652343748,161.0114831602401,472.45799509684247,444.9730010093694,4.7190806070963545,5.428724959999999,2.626259982585907,0.06818480539999999,7.324155966440837,0.01329802936,60.597798347473145,24.251578799999997,20.126322428385418,16.27472,53.713903745015465,9.42014,1.357730120420456,0.341957574,26.264699935913086,0.00298,1.08377006649971,3.45145758,0.008619200127820173,0.007940000000000001,0.13344000279903412,0.37464915200000004,0.03944189908603827,0.034874643,347.9359817504882,5.005872097955504,63.41933950495047,87.69308864945054,17.470059853091186,16.414398451718387,-0.18725244800986096,16.13400109608968,1.57918,8438.539257767585,0,0.2178670441110929,0.03206,2.2066898544629416,0.1563,0.09973050157229106,0.028419999999999997 +2073,1.2792561047539555,0,0,0.6931056547878213,3.0285515881498526,5.943870027860005,0.056929999999999994,14.757205327351889,1.36286,101.46600087483723,1.55624571,37.66882292429606,1.4000000000000001e-4,12.221199989318848,0.0013890928710000002,9.013670523961386,0.192458915,92.12932014465332,3.6249599999999997,288.3449478149414,5.9e-4,5.103783130645752,106.12964,0,446.4257176717122,4437.39293,1268.7293701171873,158.29906881797535,472.04099527994794,441.6909326817653,4.464650591214498,5.17446579,2.4753300150235495,0.0624618601,6.683183868726094,0.01182047054,59.66989835103353,24.4104957,19.5185964902242,16.41628,53.23660405476888,9.49221,1.328910122315089,0.341058001,26.139599800109863,0.00282,1.0860200623671215,3.48558097,0.007880840140084425,0.00751,0.13178500284751257,0.377904513,0.037654599795738854,0.034874643,348.1199798583984,5.018646270795964,63.440239102285354,86.4117632398894,17.180474294534797,16.33280389988703,-0.1865191962653883,16.193801085154217,1.55372,8213.825220818322,0,0.2055240422487259,0.03004,2.181009908517202,0.15105000000000002,0.09675700155397256,0.02733 +2074,1.0634407385989606,0,0,0.6890923173572429,2.989112642870178,5.945769985516866,0.054939999999999996,14.235505183537802,1.2898800000000001,101.57000096638997,1.53756588,37.24472300211588,1.2e-4,12.153500080108643,0.001254664528,9.003760496775309,0.1858127,90.44772402445476,3.4828799999999998,285.38094329833984,5.200000000000001e-4,5.098603169123332,106.09322,0,445.85172780354816,4435.45264,1258.569346110026,155.58665447571065,471.5609944661458,438.40886435416115,4.2232305606206255,4.92020662,2.332659979661306,0.0567389148,6.097481727600098,0.01034291172,58.779098192850746,24.5694126,18.96266523996989,16.55784,52.773003896077476,9.56428,1.3008601268132527,0.340158428,26.014800389607746,0.00266,1.0892000595728557,3.51970436,0.007229510112665594,0.00708,0.13042800625165304,0.381159874,0.03598139931758245,0.034874643,348.30397796630854,5.031420443636423,63.461138699620236,85.13043783032823,16.89088873597841,16.25120934805567,-0.1857901894564482,16.252501010894775,1.52826,7989.111183869061,0,0.1938560369114081,0.02802,2.1554798682530723,0.14579999999999999,0.09386350152393182,0.02624 +2075,0.847625372443966,0,0,0.6850789799266644,2.9496736975905034,5.9475899537404375,0.05295,13.73100487391154,1.2169,101.67200152079265,1.5188860499999999,36.82542324066162,1e-4,12.08619999885559,0.001120236185,8.993590434392294,0.179166485,88.79322624206543,3.3407999999999998,282.4479446411133,4.5000000000000004e-4,5.093463063240051,106.05680000000001,0,445.27871958414715,4433.512350000001,1248.3693644205728,152.8742401334459,471.0179951985677,435.12679602655703,3.9942305286725364,4.66594745,2.197819968064626,0.0510159695,5.562369863192241,0.0088653529,57.92429828643799,24.7283295,18.454628944396973,16.6994,52.322903633117676,9.63635,1.2735701004664104,0.33925885499999997,25.89049990971883,0.0025,1.0931900640328724,3.55382775,0.006654700109114249,0.00665,0.12933600569764772,0.384415235,0.03441489953547716,0.034874643,348.4899826049804,5.044194616476883,63.482038296955125,83.84911242076707,16.601303177422025,16.16961479622431,-0.18506542758304065,16.310201168060303,1.5028000000000001,7764.397146919799,0,0.1828280376891295,0.026000000000000002,2.1300899585088096,0.14055,0.09104820216695468,0.02515 +2076,0.6318100062889713,0,0,0.681065642496086,2.9102347523108287,5.949319998423259,0.05096,13.243204911549887,1.14392,101.77400143941243,1.50020622,36.410922368367515,8e-5,12.019299983978271,9.85807842e-4,8.98318044344584,0.17252027,87.16562970479329,3.19872,279.5459467569987,3.800000000000001e-4,5.088313023249309,106.02038,0,444.7047297159831,4431.57206,1238.1493631998696,150.16182579118117,470.4139989217122,431.84472769895297,3.777080476284027,4.41168828,2.070430020491282,0.045293024200000004,5.073548078536987,0.007387794080000001,57.10419845581055,24.8872464,17.99098777770996,16.84096,51.885903676350914,9.70842,1.2470201253890991,0.338359282,25.766499996185303,0.00234,1.0978800455729167,3.58795114,0.006142610024350385,0.00622,0.12847700715065002,0.38767059600000003,0.032948498924573265,0.034874643,348.67797851562494,5.056968789317342,63.50293789429001,82.56778701120591,16.31171761886564,16.08802024439295,-0.18434491064516564,16.366800944010418,1.47734,7539.683109970538,0,0.17240803564588228,0.02398,2.1048598686854043,0.1353,0.08830940226713817,0.024059999999999998 +2077,0.41599464013397647,0,0,0.6770523050655076,2.870795807031154,5.950969934463501,0.04897,12.77170459429423,1.07094,101.87400182088216,1.48152639,36.001123110453285,6.000000000000002e-5,11.952800035476685,8.513794990000002e-4,8.972540537516275,0.165874055,85.56463241577148,3.05664,276.6739451090495,3.1000000000000005e-4,5.08314315478007,105.98396,0,444.1287333170573,4429.63177,1227.8893432617185,147.44941144891646,469.74900309244794,428.56265937134884,3.5712204575538635,4.157429110000001,1.9500999947388966,0.03957007890000001,4.627066532770793,0.0059102352600000005,56.317697842915855,25.0461633,17.568442503611248,16.98252,51.46190325419108,9.78049,1.2211801211039226,0.337459709,25.64299996693929,0.00218,1.1031800508499146,3.62207453,0.005676770000718534,0.00579,0.12782200674215952,0.39092595700000005,0.0315756993368268,0.034874643,348.86597188313795,5.069742962157801,63.52383749162489,81.28646160164476,16.022132060309254,16.006425692561592,-0.1836286386428232,16.422400951385498,1.45188,7314.969073021275,0,0.16256203378240267,0.02196,2.079789916674296,0.13005,0.08564650143186252,0.022969999999999997 +2078,0.2001792739789816,0,0,0.6730389676349293,2.8313568617514795,5.95252001285553,0.046979999999999994,12.316004594167074,0.99796,101.97200139363606,1.46284656,35.596022605895996,3.9999999999999996e-05,11.88670015335083,7.16951156e-4,8.961670557657877,0.15922783999999998,83.99003410339355,2.91456,273.83094278971356,2.3999999999999998e-4,5.077953060468038,105.94754,0,443.5507405598958,4427.69148,1217.6093546549478,144.73699710665173,469.0219955444336,425.2805910437447,3.376120448112488,3.90316994,1.8364800016085308,0.033847133599999996,4.219325065612793,0.00443267644,55.563697814941406,25.2050802,17.183993021647137,17.12408,51.0504035949707,9.85256,1.196040113766988,0.336560136,25.51990016301473,0.00202,1.1090100606282551,3.65619792,0.005248870079716046,0.00536,0.12734600404898325,0.394181318,0.030290599291523296,0.034874643,349.05597941080725,5.082517134998261,63.54473708895977,80.0051361920836,15.732546501752866,15.924831140730232,-0.1829166115760133,16.476900895436604,1.42642,7090.255036072013,0,0.15326103071371713,0.01994,2.0548899372418723,0.1248,0.08305810205638409,0.021879999999999997 +2079,0,0,0.01563609217601325,0.6690256302043509,2.791917916471805,5.953999956448873,0.044989999999999995,11.875604391098022,0.92498,102.07000160217285,1.4441667299999998,35.19552199045817,1.9999999999999998e-5,11.820899963378906,5.82522813e-4,8.950580358505249,0.152581625,82.44143740336101,2.77248,271.0189437866211,1.7e-4,5.072753071784973,105.91112000000001,0,442.9707489013672,4425.751190000001,1207.309356689453,142.02458276438702,468.2360026041667,421.9985227161406,3.1912604371706643,3.64891077,1.7292100091775258,0.0281241883,3.847013751665751,0.0029551176199999994,54.84109878540039,25.3639971,16.834739685058594,17.26564,50.651403745015465,9.92463,1.1715701222419739,0.33566056299999997,25.397199948628742,0.0018599999999999999,1.1152800520261128,3.69032131,0.004857290148114164,0.0049299999999999995,0.12703000257412592,0.397436679,0.02908769917363922,0.034874643,349.24698384602857,5.095291307838719,63.56563668629466,78.72381078252243,15.442960943196478,15.843236588898874,-0.18220882944473601,16.53040091196696,1.40096,6865.540999122752,0,0.14447802926103273,0.017920000000000002,2.030159910519918,0.11954999999999999,0.080541401480635,0.020789999999999996 +2080,0,0,0.23145145833100803,0.6650122927737725,2.7524789711921303,5.955379923184712,0.043,11.450104395548502,0.852,102.16600100199382,1.4254869,34.79952176411947,0,11.755499998728434,4.4809447e-4,8.939300298690796,0.14593541,80.9187405904134,2.6304,268.2349497477214,1e-4,5.067523002624512,105.8747,0,442.38873291015625,4423.8109,1196.9893290201821,139.31216842212228,467.38999938964844,418.7164543885365,3.0161604086558023,3.3946516000000004,1.6279599964618683,0.022401243,3.507092555363973,0.0014775588,54.148898442586265,25.522914,16.51818307240804,17.4072,50.264503479003906,9.9967,1.1477600832780201,0.33476099,25.27500009536743,0.0017,1.1219500601291656,3.7244447,0.004495510094178219,0.0045,0.1268520044783751,0.40069204,0.027961599174886942,0.034874643,349.43997701009107,5.108065480679179,63.58653628362954,77.44248537296127,15.153375384640093,15.761642037067514,-0.1815052922489912,16.58280086517334,1.3755,6640.82696217349,0,0.13618402803937593,0.0159,2.0056099196275077,0.1143,0.07809480217595895,0.0197 +2081,0,0,0.3802423119249334,0.6554004387867941,2.7244623557037895,5.956689953804016,0.04131,11.03900416692098,0.81269,102.26100158691406,1.4004471299999999,34.40822156270345,0,11.690499941507975,4.25689747e-4,8.927820285161337,0.141363939,79.42154248555501,2.53814,265.480951944987,9e-5,5.062273184458415,105.84377,0,441.8058217366536,4421.210010000001,1186.6593729654946,138.39392020527697,466.48399861653644,416.197689776576,2.8503403464953103,3.2492708500000003,1.5324200093746185,0.020790642680000002,3.196781496206919,0.0013462202399999999,53.48599783579508,25.5794786,16.231823126475017,17.52036,49.889403661092125,10.017980000000001,1.1245901187260945,0.33326170299999996,25.15310001373291,0.0016099999999999999,1.1289500693480174,3.74492089,0.004153040121309459,0.00426,0.1267980063954989,0.40329842200000005,0.02690759937589367,0.034837803599999995,349.6339797973632,5.141085543817695,63.615426108762485,76.73775091676481,14.99381791377133,15.67102280816216,-0.18081192807830074,16.634200890858967,1.35195,6492.700774662489,0,0.12835302700599036,0.01501,1.9812399347623189,0.11069999999999999,0.0757172020773093,0.01899 +2082,0,0,0.5290331655188587,0.6457885847998157,2.6964457402154487,5.957910021146138,0.039619999999999995,10.64190403620402,0.77338,102.35500144958496,1.3754073599999999,34.02132097880045,0,11.625800053278605,4.03285024e-4,8.916160424550375,0.136792468,77.94964408874512,2.44588,262.7559458414714,8e-5,5.056573351224263,105.81284000000001,0,441.14117431640625,4418.60912,1176.5894266764321,137.47567198843169,465.53599802652997,413.6789251646155,2.6932503382364907,3.1038901000000005,1.442250003417333,0.01918004236,2.913470466931661,0.00121488168,52.84829807281494,25.6360432,15.972257932027182,17.63352,49.5239044825236,10.03926,1.102020114660263,0.331762416,25.03159999847412,0.0015199999999999999,1.1359100540479024,3.76539708,0.0038365801059020064,0.004019999999999999,0.12683500597874323,0.405904804,0.025920099578797817,0.0348009642,349.83097839355463,5.1741056069562115,63.64431593389543,76.03301646056835,14.834260442902568,15.580403579256807,-0.18012873693266465,16.684600989023846,1.3284,6344.574587151486,0,0.12096202435592811,0.01412,1.9570499261220295,0.1071,0.07340580100814502,0.018279999999999998 +2083,0,0,0.677824019112784,0.6361767308128373,2.668429124727108,5.959059993426005,0.03793,10.258403857549032,0.73407,102.44600168863933,1.3503675899999998,33.63882064819336,0,11.561499993006388,3.80880301e-4,8.904320319493612,0.13222099699999998,76.50274721781413,2.35362,260.05994923909503,7.000000000000001e-5,5.050433238347371,105.78191,0,440.3853123982747,4416.00823,1167.0394592285154,136.55742377158637,464.5610071818034,411.1601605526551,2.544420301914215,2.9585093500000004,1.3571500182151794,0.01756944204,2.6547995607058206,0.00108354312,52.23229853312174,25.6926078,15.736389001210531,17.746679999999998,49.16580359141032,10.06054,1.080020119746526,0.330263129,24.910400072733562,0.0014299999999999998,1.142510066429774,3.7858732699999997,0.0035516800708137453,0.0037799999999999995,0.12693800404667854,0.408511186,0.024994099667916696,0.0347641248,350.0339787801106,5.207125670094727,63.67320575902838,75.32828200437189,14.674702972033806,15.489784350351451,-0.17945571881208286,16.733900864919026,1.3048499999999998,6196.448399640485,0,0.1139850231508414,0.01323,1.9330599407354991,0.1035,0.07115950124959151,0.01757 +2084,0,0,0.8266148727067094,0.6265648768258589,2.640412509238767,5.960130016009013,0.036239999999999994,9.888133843739828,0.6947599999999999,102.53600184122722,1.3253278199999998,33.26072025299072,0,11.497599919637045,3.58475578e-4,8.892310380935669,0.12764952599999999,75.08045069376628,2.26136,257.39094797770184,6e-5,5.044413089752197,105.75098,0,439.6272150675456,4413.40734,1157.9794820149737,135.6391755547411,463.55800374348956,408.6413959406946,2.4034903248151145,2.8131286,1.2768699924151103,0.01595884172,2.418688734372457,9.522045599999999e-4,51.6372979482015,25.7491724,15.522618611653646,17.85984,48.81510384877523,10.08182,1.0585801204045613,0.328763842,24.789599736531574,0.00134,1.148820052544276,3.80634946,0.0032927700667642057,0.0035399999999999997,0.1271010053654512,0.411117568,0.0241258991882205,0.0347272854,350.2419815063476,5.240145733233243,63.70209558416132,74.62354754817542,14.515145501165044,15.399165121446098,-0.17879287371655542,16.78230094909668,1.2812999999999999,6048.322212129484,0,0.10740102144579093,0.01234,1.90925994515419,0.09989999999999999,0.06897700143357118,0.01686 +2085,0,0,0.9754057263006347,0.6169530228388805,2.6123958937504264,5.961139996846517,0.03455,9.53057368596395,0.65545,102.62500127156575,1.3002880499999998,32.887020111083984,0,11.433999935785929,3.36070855e-4,8.88014038403829,0.12307805499999999,73.6826540629069,2.1691,254.75094985961914,5e-5,5.0386730035146075,105.72005,0,438.89515177408856,4410.80645,1149.3694966634112,134.72092733789577,462.5270029703776,406.12263132873414,2.270110289255778,2.6677478500000005,1.2011700073877971,0.0143482414,2.203237990538279,8.20866e-4,51.06309827168783,25.805737,15.329546133677164,17.973,48.471704165140785,10.103100000000001,1.0376801093419392,0.32726455499999996,24.669200261433918,0.00125,1.154900054136912,3.82682565,0.0030604200825716057,0.0033,0.12731700266400972,0.41372395,0.023312099433193605,0.034690446,350.45598347981763,5.273165796371759,63.73098540929426,73.91881309197896,14.355588030296282,15.308545892540744,-0.17814020164608227,16.829801082611084,1.25775,5900.196024618483,0,0.10118802078068256,0.01145,1.88565993309021,0.0963,0.06685720073680083,0.016149999999999998 +2086,0,0,1.1241965798945601,0.6073411688519021,2.5843792782620856,5.962070027987163,0.03286,9.185373544692993,0.61614,102.71200116475423,1.27524828,32.51752026875814,0,11.370799938837687,3.13666132e-4,8.867810408274332,0.118506584,72.30875587463379,2.07684,252.1389528910319,4e-5,5.033232847849528,105.68912,0,438.1940460205078,4408.20556,1141.1795145670571,133.80267912105046,461.4660059611003,403.60386671677367,2.143930276234945,2.5223671000000003,1.1298000017801921,0.012737641079999999,2.0066972772280374,6.8952744e-4,50.50909837086996,25.862301600000002,15.155771732330322,18.08616,48.1357037226359,10.12438,1.0173201064268749,0.325765268,24.54920021692912,0.00116,1.1607800523440044,3.84730184,0.002844730062255015,0.00306,0.12758300577600798,0.416330332,0.022549499291926622,0.0346536066,350.67498016357416,5.3061858595102755,63.759875234427206,73.2140786357825,14.19603055942752,15.21792666363539,-0.17749770260066347,16.876200993855793,1.2342,5752.0698371074805,0,0.09532572018603484,0.01056,1.8622599244117737,0.0927,0.06479880089561145,0.015439999999999999 +2087,0,0,1.2729874334884854,0.5977293148649238,2.556362662773745,5.96291987101237,0.031170000000000003,8.852153460184732,0.57683,102.79700088500977,1.25020851,32.15232022603353,0,11.308000087738037,2.91261409e-4,8.855340242385864,0.113935113,70.9587574005127,1.98458,249.5539525349935,3.000000000000001e-5,5.02806278069814,105.65819,0,437.5239613850911,4405.60467,1133.3795369466143,132.88443090420517,460.37500762939453,401.0851021048132,2.024610251188278,2.37698635,1.0625300010045369,0.01112704076,1.8274466196695964,5.5818888e-4,49.97489802042643,25.9188662,14.999995628992716,18.19932,47.807003339131676,10.14566,0.997484102845192,0.324265981,24.42959992090861,0.00107,1.1665100554625194,3.86777803,0.0026427600532770157,0.0028199999999999996,0.12789400418599448,0.418936714,0.021834899205714464,0.0346167672,350.89897918701166,5.339205922648792,63.78876505956015,72.50934417958604,14.036473088558758,15.127307434730037,-0.176865376580299,16.92170063654582,1.21065,5603.943649596479,0,0.08979601909716924,0.00967,1.8390499353408813,0.0891,0.0627996011947592,0.01473 +2088,0,0,1.421778287082411,0.5881174608779454,2.528346047285404,5.963710029919942,0.02948,8.530523379643759,0.53752,102.88000106811523,1.22516874,31.791319847106934,0,11.245500008265177,2.68856686e-4,8.84272027015686,0.10936364199999998,69.63216082255046,1.8923199999999998,246.99595260620117,1.9999999999999998e-5,5.023172537485759,105.62725999999999,0,436.88486735026044,4403.00378,1125.9395548502603,131.96618268735986,459.2550099690755,398.56633749285277,1.911820262670517,2.2316056,0.999142994483312,0.009516440439999998,1.663996030886968,4.268503199999999e-4,49.45999813079834,25.9754308,14.860918045043945,18.312479999999997,47.48560460408529,10.16694,0.9781611065069834,0.32276669399999997,24.310399850209553,9.8e-4,1.172120064496994,3.88825422,0.002452130060798178,0.00258,0.12824700648585954,0.421543096,0.021165299384544294,0.0345799278,351.1289800008137,5.372225985787307,63.8176548846931,71.80460972338958,13.876915617689995,15.036688205824682,-0.17624322358498887,16.966200669606526,1.1870999999999998,5455.817462085477,0,0.08458021717766921,0.00878,1.8160599370797474,0.08549999999999999,0.060857400919000305,0.01402 +2089,0,0,1.5705691406763362,0.578505606890967,2.5003294317970632,5.964420040448506,0.027790000000000002,8.220113277435303,0.49821,102.96200180053711,1.20012897,31.43451913197835,0,11.18340007464091,2.46451963e-4,8.829960187276205,0.10479217099999999,68.3286641438802,1.80006,244.4649518330892,9.999999999999999e-6,5.018542528152466,105.59633,0,436.27378845214844,4400.402889999999,1118.8295694986978,131.04793447051458,458.10400390625,396.0475728808923,1.8052302499612172,2.0862248500000002,0.9394359936316808,0.007905840119999999,1.5149954954783122,2.955117599999998e-4,48.96399815877279,26.0319954,14.737438599268595,18.425639999999998,47.171403566996254,10.188220000000001,0.9593421071767807,0.321267407,24.19160000483195,8.900000000000001e-4,1.1776400605837505,3.90873041,0.0022708300578718386,0.0023399999999999996,0.1286340057849884,0.42414947799999997,0.020538099575787783,0.034543088400000005,351.3639831542968,5.405246048925823,63.84654470982604,71.09987526719311,13.717358146821233,14.946068976919328,-0.17563124361473306,17.009700934092205,1.1635499999999999,5307.691274574476,0,0.07966051623225212,0.00789,1.79326993227005,0.0819,0.05897140068312486,0.013309999999999999 +2090,0,0,1.7193599942702615,0.5688937529039886,2.4723128163087225,5.965059955914815,0.0261,7.920583128929138,0.4589,103.04200108846028,1.1750892,31.081719398498535,0,11.121699968973795,2.2404724e-4,8.81708025932312,0.1002207,67.04806582132976,1.7078,241.96095275878906,0,5.014142354329427,105.5654,0,435.68970489501953,4397.802,1112.029581705729,130.12968625366926,456.9240036010742,393.5288082689318,1.7045302093029022,1.9408441000000003,0.8832059999306997,0.0062952398,1.3791950245698292,1.641732e-4,48.486398696899414,26.08856,14.62845778465271,18.5388,46.86440372467041,10.2095,0.9410131027301153,0.31976812,24.073300043741863,8e-4,1.1831000645955403,3.9292066,0.0021024200250394642,0.0021,0.12905500705043474,0.42675586,0.019950499137242634,0.034506249,351.60398101806635,5.43826611206434,63.875434534958984,70.39514081099665,13.557800675952471,14.855449748013974,-0.17502943666953158,17.052300453186035,1.14,5159.5650870634745,0,0.07502221626540025,0.006999999999999999,1.7706899344921112,0.0783,0.05714050121605396,0.0126 +2091,0,0,1.703484419798786,0.5911168963041796,2.4477842408593853,5.965619921684265,0.02441,7.631553053855896,0.43762,103.1200008392334,1.1500494289999998,30.733119010925293,0,11.06030003229777,2.01642516e-4,8.804080327351889,0.0970558359,65.78986740112305,1.6476899999999999,239.48295211791992,0.0012000000000000001,5.00997253259023,105.53447,0,435.13067626953125,4395.20111,1105.509602864583,129.33625191858982,455.71300506591797,389.50352028158187,1.6094102164109547,1.8667949400000003,0.8302620003620783,0.00775867862,1.2554445564746857,0.00105070848,48.026698430379234,25.9699291,14.532975832621256,18.521539999999998,46.56460380554199,10.16304,0.9231641044219335,0.31657763499999997,23.955399990081787,7.2e-4,1.188520073890686,3.9201768,0.001939410043026631,0.0018899999999999998,0.1295070064564546,0.426358099,0.0194001995647947,0.0342729327,351.84998067220045,5.4263463677994315,63.77882505766904,69.5861323596474,13.457282076037822,14.678670887863706,-0.17440411849785176,17.093900839487713,1.11568,5047.755476108137,0,0.07064961579938729,0.0070999999999999995,1.7483199536800385,0.07583,0.05536280075709025,0.012150000000000001 +2092,0,0,1.6876088453273106,0.6133400397043706,2.4232556654100486,5.9661100308100385,0.02272,7.352702895800273,0.41634,103.19600041707356,1.125009658,30.388418674468994,0,10.999200026194254,1.7923779199999998e-4,8.79097024599711,0.0938909718,64.55397033691406,1.58758,237.03095499674478,0.0024000000000000002,5.005552689234416,105.50354,0,434.5478286743164,4392.600219999999,1099.2596130371091,128.54281758351036,454.50200907389325,385.478232294232,1.5195402105649312,1.7927457800000002,0.7804130017757416,0.00922211744,1.1426741778850555,0.0019372437600000002,47.57979869842529,25.851298200000002,14.446184476216635,18.504279999999998,46.26910432179769,10.11658,0.9057481090227762,0.31338715,23.838000138600666,6.4e-4,1.1932600637276967,3.911147,0.001780800036309908,0.0016799999999999999,0.1299270043770472,0.425960338,0.018882199345777433,0.0340396164,352.0959803263346,5.414426623534522,63.682215580379086,68.77712390829815,13.356763476123174,14.501892027713437,-0.17375528909969365,17.13450066248576,1.0913599999999999,4935.945865152799,0,0.0665262130399545,0.0072,1.7261699636777241,0.07336,0.05363750116278728,0.0117 +2093,0,0,1.6717332708558352,0.6355631831045616,2.3987270899607114,5.966530005137126,0.02103,7.083692828814189,0.39505999999999997,103.27100118001302,1.0999698869999999,30.04771852493286,0,10.938599983851114,1.56833068e-4,8.777750333150228,0.0907261077,63.33987267812093,1.5274699999999999,234.60495376586914,0.0036,5.000752568244934,105.47261,0,433.92489369710285,4389.99933,1093.2396138509112,127.74938324843092,453.31900787353516,381.45294430688205,1.4346001942952473,1.7186966200000002,0.7334729929765066,0.01068555626,1.0398937910795212,0.00282377904,47.14069811503092,25.7326673,14.363488912582397,18.487019999999998,45.97560437520345,10.07012,0.8887181083361307,0.310196665,23.7208997408549,5.600000000000001e-4,1.196770042181015,3.9021172,0.001630940018609787,0.00147,0.1302600068350633,0.425562577,0.018391999416053295,0.033806300100000006,352.3379745483398,5.402506879269614,63.58560610308914,67.9681154569489,13.256244876208527,14.325113167563169,-0.1730829484750572,17.174101034800213,1.06704,4824.136254197462,0,0.0626383125782013,0.007299999999999999,1.7042199671268463,0.07089,0.05196360064049562,0.01125 +2094,0,0,1.6558576963843596,0.6577863265047527,2.3741985145113746,5.966879963874817,0.01934,6.8241926829020185,0.37378,103.34400113423665,1.074930116,29.71091826756795,0,10.878200054168701,1.34428344e-4,8.76442019144694,0.0875612436,62.1472749710083,1.4673599999999998,232.20495478312174,0.0048000000000000004,4.9959624608357744,105.44168,0,433.30084737141925,4387.39844,1087.4396158854165,126.95594891335146,452.1600112915039,377.42765631953216,1.3543601830800374,1.64464746,0.6892819950977961,0.012148995079999999,0.9462434450785319,0.0037103143200000006,46.70919863382975,25.6140364,14.284795125325521,18.469759999999997,45.68380387624105,10.02366,0.8720661054054896,0.30700618,23.604300181070965,4.8e-4,1.199220061302185,3.8930874,0.0014882700246137877,0.0012599999999999998,0.130519005159537,0.425164816,0.01792789933582147,0.033572983800000004,352.57597859700513,5.390587135004705,63.48899662579919,67.15910700559964,13.155726276293878,14.148334307412899,-0.17238709662394244,17.212700525919598,1.0427199999999999,4712.326643242125,0,0.058974912079672016,0.0073999999999999995,1.6824899812539418,0.06842,0.05033950041979551,0.0108 +2095,0,0,1.639982121912884,0.6800094699049437,2.3496699390620375,5.967150052388509,0.01765,6.573892553647359,0.35250000000000004,103.41600163777669,1.049890345,29.377918402353924,0,10.818199952443441,1.1202362e-4,8.750990311304728,0.08439637950000001,60.97597726186117,1.40725,229.8289566040039,0.006,4.991262475649516,105.41075000000001,0,432.6858367919922,4384.797549999999,1081.849639892578,126.16251457827201,451.02400461832684,373.4023683321822,1.2785501678784688,1.5705983000000001,0.6476869980494181,0.013612433899999998,0.8609281480312347,0.0045968496,46.28519852956136,25.4954055,14.209599097569784,18.4525,45.394003550211586,9.9772,0.8557831148306528,0.303815695,23.488100210825603,4e-4,1.2007600565751393,3.8840576000000002,0.0013515300233848393,0.00105,0.13071000576019287,0.424767055,0.017488299248119194,0.0333396675,352.80898284912104,5.378667390739797,63.39238714850924,66.3500985542504,13.05520767637923,13.97155544726263,-0.17166773354634934,17.25030056635539,1.0184,4600.517032286787,0,0.05552211124449968,0.0075,1.6609799563884735,0.06595,0.04876310067872206,0.010350000000000002 +2096,0,0,1.6241065474414087,0.7022326133051346,2.3251413636127003,5.967350006103516,0.015960000000000002,6.33248249689738,0.33122,103.4860013326009,1.024850574,29.048818111419678,0,10.758600076039633,8.961889599999999e-5,8.737460136413574,0.08123151540000001,59.82547918955485,1.34714,227.4789555867513,0.0072,4.9866723616917925,105.37982,0,432.08477783203125,4382.19666,1076.4396260579424,125.36908024319256,449.9090092976888,369.3770803448323,1.2069401641686757,1.4965491400000002,0.6085400034983953,0.01507587272,0.7832158654928207,0.00548338488,45.868598302205406,25.3767746,14.138004620869955,18.43524,45.10600344340006,9.93074,0.8398591031630834,0.30062521,23.372299989064533,3.2e-4,1.2015200555324554,3.8750278,0.0012196700263302773,8.4e-4,0.13084300607442856,0.424369294,0.017071599295983713,0.0331063512,353.037976582845,5.366747646474889,63.2957776712193,65.54109010290114,12.95468907646458,13.794776587112363,-0.17092485924227793,17.286900997161865,0.99408,4488.70742133145,0,0.05226671105871598,0.0076,1.6396799683570862,0.06348,0.04723280016332865,0.0099 +2097,0,0,1.6082309729699333,0.7244557567053257,2.3006127881633636,5.967479944229126,0.014270000000000001,6.09966246287028,0.30994,103.55400149027507,0.9998108029999999,28.723517894744873,0,10.699299971262613,6.7214172e-5,8.723840157190958,0.07806665130000001,58.695581118265785,1.28703,225.152956644694,0.0084,4.982192357381185,105.34889,0,431.49475860595703,4379.59577,1071.2096659342446,124.5756459081131,448.812006632487,365.3517923574824,1.139330158631007,1.42249998,0.5717030068238577,0.016539311539999997,0.7124386231104533,0.00636992016,45.45909849802653,25.2581437,14.069507916768393,18.41798,44.820003827412926,9.88428,0.82428710659345,0.297434725,23.25689999262492,2.400000000000001e-4,1.2016100585460663,3.865998,0.0010918600116080295,6.300000000000001e-4,0.13092500468095145,0.423971533,0.016676499197880428,0.0328730349,353.2629826863606,5.35482790220998,63.199168193929346,64.73208165155188,12.854170476549932,13.617997726962093,-0.1701584737117282,17.322400728861492,0.96976,4376.897810376113,0,0.049200210409859814,0.0077,1.61858997742335,0.06101,0.04574800034364065,0.00945 +2098,0,0,1.5923553984984578,0.7466789001055167,2.2760842127140264,5.96754002571106,0.01258,5.875162323315938,0.28866000000000003,103.62000147501628,0.9747710319999999,28.401917616526287,0,10.640299956003824,4.480944799999998e-5,8.710140148798624,0.0749017872,57.58598391215006,1.2269199999999998,222.85195668538412,0.009600000000000001,4.9778222640355425,105.31796,0,430.9167124430339,4376.99488,1066.1296590169268,123.78221157303366,447.7340087890625,361.32650437013245,1.0754801233609517,1.34845082,0.5370480020840963,0.01800275036,0.6479853789011637,0.007256455440000001,45.056698163350426,25.1395128,14.004112799962362,18.40072,44.53590393066406,9.837819999999999,0.8090560932954153,0.29424424,23.142000039418537,1.5999999999999999e-4,1.2011200586954753,3.8569682,9.62219011853449e-4,4.199999999999998e-4,0.13096400598684946,0.423573772,0.01630139925206701,0.032639718600000006,353.4839782714843,5.342908157945072,63.1025587166394,63.92307320020263,12.753651876635285,13.441218866811825,-0.16936857695470015,17.357000827789307,0.9454400000000001,4265.088199420775,0,0.046310809440910816,0.0078,1.597719967365265,0.058539999999999995,0.04430820078899463,0.009000000000000001 +2099,0,0,1.5764798240269822,0.7689020435057077,2.2515556372646897,5.967519998550415,0.01089,5.658682306607564,0.26738000000000006,103.6850020090739,0.9497312609999999,28.08391761779785,0,10.581700007120768,2.240472399999999e-5,8.696350336074829,0.0717369231,56.49638589223226,1.16681,220.57495752970377,0.0108,4.973542292912801,105.28703,0,430.34969838460285,4374.39399,1061.2096659342446,122.98877723795421,446.67200978597003,357.30121638278257,1.0151901443799336,1.27440166,0.5044510066509247,0.01946618918,0.5893031607071558,0.00814299072,44.66109848022461,25.0208819,13.941615978876749,18.38346,44.25370407104492,9.79136,0.7941600978374481,0.291053755,23.02749999364217,7.999999999999999e-5,1.2001500527064006,3.8479384,8.311730052810162e-4,2.099999999999999e-4,0.13096800446510315,0.423176011,0.01594529937331875,0.032406402300000005,353.70098114013666,5.330988413680163,63.00594923934945,63.11406474885337,12.653133276720636,13.264440006661555,-0.1685551689711938,17.39060068130493,0.92112,4153.278588465438,0,0.04358750923226277,0.0079,1.5770699679851532,0.05607,0.042911700593928494,0.008550000000000002 +2100,0,0,1.5606042495555068,0.7911251869058987,2.2270270618153525,5.967429995536804,0.0092,5.449952244758606,0.24610000000000004,103.74799982706706,0.92469149,27.769617239634197,0,10.52339998881022,0,8.682480017344156,0.068572059,55.4262892405192,1.1066999999999998,218.3209571838379,0.012,4.969342072804769,105.2561,0,429.79163360595703,4371.7931,1056.4096577962237,122.19534290287476,445.62500254313153,353.27592839543263,0.9582791378100713,1.2003525,0.47379499673843384,0.020929628,0.5358809580405554,0.009029526,44.272298177083336,24.902251,13.881820122400919,18.3662,43.97340361277262,9.7449,0.7795881032943726,0.28786327,22.91349999109904,0,1.1987500588099163,3.8389086,7.042040039474765e-4,0,0.1309380071858565,0.42277825,0.015606899512931705,0.032173086000000004,353.91298166910804,5.3190686694152545,62.9093397620595,62.30505629750412,12.552614676805987,13.087661146511287,-0.16771824976120908,17.423200766245525,0.8968,4041.4689775101,0,0.04102190863341093,0.008,1.5566299955050151,0.0536,0.04155690005669991,0.008100000000000001 +2101,0,0,1.5606042495555068,0.7753026831677807,2.219681389758905,5.967269976933797,0.009138666666666666,5.244022210439046,0.24445933333333336,103.80900065104167,0.9185268800666666,27.45901695887248,0,10.465500036875406,0,8.667210022608439,0.06811491194000001,54.39679463704427,1.099322,216.09195836385092,0.01192,4.966090838114421,104.55439266666667,0,429.33304087320965,4342.647812666666,1051.7896931966143,121.84178705657295,444.5920054117839,352.27749365897665,0.9067741433779398,1.19235015,0.4455289989709854,0.020790097146666665,0.4875717634956042,0.00896932916,43.890698750813804,24.736235993333334,13.825024286905924,18.243758666666665,43.69550323486328,9.679934,0.7653440982103348,0.28594418153333334,22.79990005493164,0,1.1970700720945995,3.813315876,5.806499975733459e-4,0,0.13088700796167055,0.41995972833333334,0.01528539943198363,0.031958598760000005,354.12197621663404,5.312694270966706,62.80801687493251,62.15111784940851,12.505155600338181,13.055777030719005,-0.16689806681824926,17.454800923665363,0.8908213333333334,4019.0098996250663,0,0.03869130710760752,0.007946666666666666,1.5356399814287822,0.05324266666666667,0.040151298977434635,0.008046000000000001 +2102,0,0,1.5606042495555068,0.7594801794296627,2.2123357177024574,5.967060009638469,0.009077333333333333,5.041112343470256,0.2428186666666667,103.86900075276692,0.9123622701333333,27.151817003885906,0,10.407899856567383,0,8.650610049565634,0.06765776488,53.40669600168864,1.0919439999999998,213.88595835367838,0.01184,4.965020219484965,103.85268533333334,0,429.1182556152344,4313.502525333333,1047.4697265624998,121.48823121027114,443.5780029296875,351.2790589225207,0.8615701446930567,1.1843477999999998,0.4195299943288167,0.020650566293333332,0.4439206048846245,0.008909132319999999,43.51629765828451,24.570220986666666,13.768923282623291,18.121317333333334,43.41990407307943,9.614968,0.7514600902795792,0.2840250930666667,22.686899820963543,0,1.1949200630187988,3.787723152,0.00047028500557644293,0,0.13078400368491808,0.4171412066666667,0.014980499477436146,0.03174411152000001,354.32698059082026,5.306319872518159,62.70669398780552,61.99717940131289,12.457696523870377,13.023892914926725,-0.16609462014231433,17.485700607299805,0.8848426666666667,3996.550821740033,0,0.036569107013444103,0.007893333333333334,1.5141299962997437,0.05288533333333333,0.03870100031296412,0.007992 +2103,0,0,1.5606042495555068,0.7436576756915448,2.20499004564601,5.966860016187032,0.009016,4.846082170804341,0.24117800000000003,103.9290002187093,0.9061976601999999,26.84821653366089,0,10.350599924723307,0,8.634039878845215,0.06720061782,52.43349806467692,1.0845659999999997,211.7039566040039,0.01176,4.965570370356242,103.15097800000001,0,429.09996541341144,4284.357238,1043.5097554524737,121.13467536396934,442.5860112508138,350.28062418606464,0.8211421370506287,1.17634545,0.3951229949792226,0.02051103544,0.40416546662648517,0.00884893548,43.148098627726235,24.40420598,13.710920413335165,17.998876,43.146203676859535,9.550002,0.7379510899384817,0.2821060046,22.574600219726562,0,1.1920900543530781,3.762130428,3.809359986917116e-4,0,0.1305940051873525,0.414322685,0.014692499457548061,0.03152962428,354.52898406982416,5.299945474069611,62.60537110067853,61.84324095321727,12.41023744740257,12.992008799134442,-0.16530790973340426,17.516400655110676,0.8788640000000001,3974.091743854999,0,0.03456040658056736,0.00784,1.4929200112819672,0.052528000000000005,0.03730350018789371,0.007938 +2104,0,0,1.5606042495555068,0.7278351719534268,2.1976443735895623,5.966650009155273,0.008954666666666666,4.658622105916341,0.23953733333333338,103.9880002339681,0.9000330502666666,26.548016389211018,0,10.293600082397461,0,8.617499907811483,0.06674347076,51.476999600728355,1.0771879999999998,209.5439592997233,0.01168,4.966550310452779,102.44927066666668,0,429.14088185628253,4255.211950666667,1039.8997497558591,120.78111951766753,441.614008585612,349.28218944960867,0.7849471420049667,1.1683431,0.37221000095208484,0.020371504586666665,0.36794933180014294,0.00878873864,42.78579870859782,24.23819097333333,13.651118040084839,17.876434666666665,42.874403635660805,9.485036,0.7248070935408274,0.28018691613333335,22.46279986699422,0,1.1886500815550487,3.736537704,3.0859400430927053e-4,0,0.13032800455888113,0.41150416333333334,0.014420299557968974,0.03131513704,354.72898101806635,5.293571075621064,62.50404821355154,61.68930250512165,12.362778370934764,12.960124683342162,-0.16453793559151902,17.546900749206543,0.8728853333333334,3951.6326659699657,0,0.032658206609388195,0.0077866666666666666,1.4719899892807007,0.05217066666666667,0.03595660006006559,0.007884 +2105,0,0,1.5606042495555068,0.7120126682153088,2.190298701533115,5.966440002123515,0.008893333333333333,4.478441993395488,0.2378966666666667,104.04700152079265,0.8938684403333332,26.25131622950236,0,10.236999988555908,0,8.60099999109904,0.06628632370000001,50.53690147399902,1.06981,207.40596135457358,0.0116,4.967650294303894,101.74756333333335,0,429.20086161295575,4226.066663333333,1036.5797729492185,120.42756367136573,440.66200002034503,348.2837547131527,0.7525021384159724,1.16034075,0.3506939982374509,0.020231973733333332,0.3349752152959506,0.0087285418,42.429198265075684,24.072175966666666,13.589615821838379,17.753993333333334,42.604403495788574,9.420069999999999,0.7120151023070017,0.2782678276666667,22.351600011189777,0,1.1846800645192463,3.71094498,2.5001700002273236e-4,0,0.12999600544571877,0.40868564166666665,0.014161399488026897,0.031100649800000005,354.92597452799475,5.287196677172516,62.40272532642456,61.53536405702604,12.31531929446696,12.92824056754988,-0.16378469771665866,17.577100435892742,0.8669066666666667,3929.173588084932,0,0.03085600584745407,0.007733333333333333,1.451339989900589,0.051813333333333336,0.0346585006142656,0.00783 +2106,0,0,1.5606042495555068,0.6961901644771908,2.1829530294766677,5.966230034828186,0.008832,4.305251955986023,0.23625600000000002,104.10600090026855,0.8877038304,25.95801607767741,0,10.180699904759726,0,8.584529956181845,0.06582917664,49.61310323079427,1.0624319999999998,205.29095967610678,0.01152,4.968780358632405,101.045856,0,429.26484934488934,4196.921376,1033.5197957356768,120.07400782506392,439.72900390625,347.2853199766967,0.7233781268199285,1.1523383999999999,0.3304910014073054,0.02009244288,0.30497510482867557,0.00866834496,42.07819811503092,23.90616096,13.526613791783651,17.631552,42.33620389302572,9.355104,0.6995640893777212,0.27634873919999997,22.241100152333576,0,1.1802700559298198,3.685352256,2.0257899814168923e-4,0,0.1296050064265728,0.40586712,0.013914899512504538,0.030886162560000003,355.1189804077148,5.280822278723968,62.30140243929757,61.38142560893042,12.267860217999154,12.896356451757597,-0.16304819610882318,17.60700050989787,0.860928,3906.714510199898,0,0.0291475059154133,0.00768,1.4309599995613098,0.051456,0.03340750032414993,0.007776000000000001 +2107,0,0,1.5606042495555068,0.680367660739073,2.17560735742022,5.966019988059998,0.008770666666666666,4.138781865437825,0.23461533333333337,104.16400146484375,0.8815392204666667,25.668016115824383,0,10.124699910481771,0,8.568099896113077,0.06537202958,48.70530478159586,1.0550539999999997,203.19796244303384,0.01144,4.969910343488057,100.34414866666667,0,429.3308512369792,4167.7760886666665,1030.6997985839841,119.72045197876211,438.81300099690753,346.28688524024074,0.697199136018753,1.14433605,0.3115209961930911,0.019952912026666665,0.2776750052968661,0.008608148119999999,41.732398668924965,23.740145953333332,13.462212085723877,17.509110666666665,42.06970373789469,9.290138,0.6874440958102545,0.2744296507333333,22.131099700927734,0,1.1754600902398427,3.659759532,1.641589988139458e-4,0,0.12916300569971403,0.40304859833333334,0.013681199479227265,0.03067167532,355.31098429361975,5.274447880275421,62.20007955217058,61.227487160834805,12.220401141531347,12.864472335965317,-0.1623284307680125,17.63670031229655,0.8549493333333333,3884.2554323148647,0,0.0275269056049486,0.007626666666666667,1.4108599821726482,0.05109866666666667,0.03220189983646075,0.0077220000000000006 +2108,0,0,1.5606042495555068,0.6645451570009548,2.1682616853637726,5.965800046920776,0.008709333333333333,3.978781779607137,0.2329746666666667,104.22200012207031,0.8753746105333333,25.3813157081604,0,10.06909982363383,0,8.55171004931132,0.06491488252000001,47.813206354777016,1.0476759999999998,201.1269620259603,0.01136,4.971040368080139,99.64244133333334,0,429.39685312906903,4138.630801333334,1028.0898081461587,119.36689613246031,437.91400655110675,345.2884505037847,0.6736281315485636,1.1363337,0.29370899746815365,0.019813381173333332,0.2528029220799605,0.00854795128,41.39179833730062,23.574130946666667,13.396510283152262,17.38666933333333,41.804903984069824,9.225172,0.6756430914004644,0.27251056226666664,22.02180004119873,0,1.1703100601832073,3.634166808,1.3303900050232187e-4,0,0.12867700681090355,0.40023007666666666,0.013459599576890469,0.030457188080000003,355.49898274739576,5.268073481826873,62.09875666504359,61.07354871273918,12.172942065063541,12.832588220173035,-0.16162540169422676,17.66610050201416,0.8489706666666668,3861.796354429831,0,0.026006305124610662,0.007573333333333333,1.3910399973392487,0.05074133333333334,0.031039999953160684,0.007668000000000001 +2109,0,0,1.5606042495555068,0.648722653262837,2.160916013307325,5.965579986572266,0.008648,3.824971695741018,0.23133400000000004,104.27899996439616,0.8692100006,25.097915649414062,0,10.013699928919474,0,8.535339991251627,0.06445773546,46.93650817871094,1.040298,199.07696406046549,0.01128,4.972170313199361,98.940734,0,429.4618555704753,4109.485514,1025.6698252360025,119.0133402861585,437.03100840250653,344.2900157673287,0.6523661265770594,1.1283313499999998,0.2769789968927701,0.01967385032,0.23016383250554404,0.00848775444,41.05599816640218,23.40811594,13.32960875829061,17.264228,41.54180367787679,9.160206,0.6641510923703512,0.2705914738,21.912999947865803,0,1.1648700435956318,3.608574084,1.0782999985773738e-4,0,0.12815400585532188,0.397411555,0.01324779943873485,0.030242700840000004,355.68498484293616,5.261699083378326,61.9974337779166,60.919610264643566,12.125482988595737,12.800704104380754,-0.16093910888746585,17.695300738016766,0.8429920000000001,3839.3372765447975,0,0.024562005264063675,0.00752,1.3714800079663594,0.050384000000000005,0.02992010038966934,0.007614000000000001 +2110,0,0,1.5606042495555068,0.632900149524719,2.1535703412508775,5.965359965960185,0.008586666666666666,3.6771416862805686,0.22969333333333336,104.33600107828777,0.8630453906666666,24.817815621693928,0,9.95870010058085,0,8.519009987513224,0.0640005884,46.07510916392008,1.0329199999999998,197.0489616394043,0.0112,4.9732902844746905,98.23902666666667,0,429.526860555013,4080.3402266666667,1023.4098103841145,118.6597844398567,436.1630045572917,343.29158103087275,0.6331521322329839,1.120329,0.2612670014301936,0.019534319466666665,0.20955375954508781,0.0084275576,40.72489802042643,23.242100933333333,13.261507193247477,17.141786666666665,41.28020350138346,9.09524,0.6529590884844462,0.2686723853333333,21.804799874623615,0,1.1591600676377614,3.58298136,8.740599938998155e-5,0,0.12759400655825934,0.39459303333333334,0.0130449995243301,0.030028213600000003,355.8679835001627,5.255324684929778,61.89611089078961,60.76567181654795,12.07802391212793,12.768819988588472,-0.16026955234772985,17.7242005666097,0.8370133333333334,3816.8781986597637,0,0.023189404513686895,0.007466666666666667,1.3521699905395508,0.05002666666666667,0.02884090008834998,0.007560000000000001 +2111,0,0,1.5606042495555068,0.617077645786601,2.1462246691944302,5.965129971504211,0.008525333333333333,3.5350315968195596,0.22805266666666668,104.39300155639648,0.8568807807333333,24.540815194447834,0,9.903990109761557,0,8.502719958623251,0.06354344134,45.22871112823486,1.0255419999999997,195.04196166992188,0.01112,4.97441037495931,97.53731933333334,0,429.5908610026042,4051.1949393333334,1021.3098246256509,118.30622859355489,435.3110071818034,342.2931462944168,0.6157541324694952,1.11232665,0.24651199703415236,0.01939478861333333,0.1907866932451725,0.00836736076,40.39839839935303,23.076085926666668,13.192305644353231,17.01934533333333,41.020203590393066,9.030274,0.6420560926198959,0.26675329686666666,21.697200298309326,0,1.1532400647799175,3.5573886359999998,7.085779967989463e-5,0,0.1270040050148964,0.39177451166666666,0.012852199375629425,0.02981372636,356.047976175944,5.24895028648123,61.79478800366262,60.611733368452335,12.030564835660124,12.73693587279619,-0.1596167320750186,17.75290012359619,0.8310346666666667,3794.41912077473,0,0.021901404485106468,0.007413333333333333,1.3331300020217896,0.049669333333333336,0.027800700161606073,0.0075060000000000005 +2112,0,0,1.5606042495555068,0.601255142048483,2.1388789971379825,5.964899977048238,0.008464,3.398441513379415,0.22641200000000003,104.44900004069011,0.8507161708,24.26701482137044,0,9.849589904149374,0,8.486459970474243,0.06308629428,44.39711284637451,1.0181639999999998,193.05596542358398,0.01104,4.975510358810425,96.83561200000001,0,429.65386454264325,4022.049652,1019.3398284912108,117.95267274725308,434.47300720214844,341.29471155796074,0.5999631235996882,1.1043242999999998,0.2326509989798069,0.01925525776,0.17369563008348146,0.00830716392,40.07609844207764,22.91007092,13.122204542160034,16.896904,40.76170349121094,8.965308,0.6314330895741781,0.2648342084,21.590199947357178,0,1.1471100648244221,3.5317959119999998,5.744830014009494e-5,0,0.1263860066731771,0.38895599000000003,0.01266859945220252,0.029599239120000002,356.22598012288404,5.2425758880326825,61.69346511653563,60.45779492035672,11.98310575919232,12.705051757003908,-0.15898064806933232,17.781400362650555,0.825056,3771.9600428896965,0,0.020675304035345714,0.00736,1.3143599927425385,0.049312,0.026798200017462175,0.007452000000000001 +2113,0,0,1.5606042495555068,0.5854326383103651,2.131533325081535,5.964669903119405,0.008402666666666666,3.2671414812405906,0.22477133333333338,104.50400161743164,0.8445515608666666,23.996214707692463,0,9.795510053634644,0,8.470230023066202,0.06262914722,43.5800142288208,1.010786,191.089963277181,0.01096,4.976610382397969,96.13390466666667,0,429.7168655395508,3992.9043646666664,1017.4898376464843,117.59911690095127,433.6500015258789,340.29627682150476,0.5855981310208639,1.0963219499999999,0.21963099762797356,0.019115726906666665,0.1581275723874569,0.00824696708,39.75809860229492,22.744055913333334,13.051203091939291,16.774462666666665,40.50470288594564,8.900342,0.6210820923248926,0.26291511993333333,21.483799934387207,0,1.14082004626592,3.5062031879999997,4.65811996643121e-5,0,0.1257430041829745,0.38613746833333334,0.012492099466423193,0.029384751880000004,356.4009806315104,5.2362014895841344,61.59214222940864,60.303856472261096,11.935646682724514,12.673167641211627,-0.1583613003306709,17.80950053532918,0.8190773333333334,3749.5009650046627,0,0.019507403951138258,0.007306666666666666,1.2958400050799053,0.04895466666666667,0.02583189991613229,0.007398000000000001 +2114,0,0,1.5606042495555068,0.5696101345722471,2.124187653025088,5.9644399881362915,0.008341333333333333,3.1409313877423606,0.2231306666666667,104.56000137329102,0.8383869509333333,23.728614330291748,0,9.741730054219564,0,8.454039971033732,0.062172000160000004,42.77731577555338,1.0034079999999999,189.14496358235678,0.010879999999999999,4.977700432141622,95.43219733333333,0,429.7788619995117,3963.759077333333,1015.7498372395833,117.24556105464947,432.84000396728516,339.2978420850487,0.5724971244732538,1.0883196,0.2074009987215201,0.01897619605333333,0.1439705230295658,0.00818677024,39.44399833679199,22.578040906666665,12.979301850001017,16.65202133333333,40.24910322825114,8.835376,0.6109930922587713,0.26099603146666667,21.37790012359619,0,1.1343700587749481,3.4806104639999997,3.777339952648617e-5,0,0.1250790065775315,0.38331894666666666,0.012322299337635437,0.029170264640000002,356.57397969563795,5.229827091135587,61.49081934228165,60.14991802416548,11.888187606256707,12.641283525419345,-0.1577586888590343,17.837400436401367,0.8130986666666667,3727.0418871196293,0,0.01841140367711584,0.007253333333333333,1.2775699893633525,0.04859733333333333,0.024900699965655804,0.007344000000000001 +2115,0,0,1.5606042495555068,0.5537876308341291,2.1168419809686405,5.964209993680318,0.00828,3.019601364930471,0.22149000000000002,104.61400032043457,0.832222341,23.464014530181885,0,9.688250064849854,0,8.437879880269369,0.0617148531,41.98861757914225,0.9960299999999999,187.21996434529623,0.0108,4.978790362675984,94.73049,0,429.838872273763,3934.61379,1014.1098429361978,116.89200520834765,432.0440038045247,338.29940734859275,0.5605141272147497,1.0803172499999998,0.19590899969140688,0.018836665199999998,0.13109647668898106,0.0081265734,39.133798917134605,22.4120259,12.906600952148438,16.52958,39.99490292867025,8.77041,0.6011580924193064,0.259076943,21.272599856058758,0,1.127800037463506,3.4550177399999997,3.063409955454214e-5,0,0.12439500602583091,0.38050042500000003,0.012160199306284388,0.0289557774,356.7439854939778,5.223452692687039,61.38949645515466,59.995979576069864,11.840728529788901,12.609399409627063,-0.1571728136544226,17.865100701649983,0.8071200000000001,3704.5828092345955,0,0.01738300345217188,0.0072,1.259550005197525,0.048240000000000005,0.024003099805365007,0.007290000000000001 +2116,0,0,1.5606042495555068,0.5379651270960111,2.1094963089121928,5.963970025380452,0.008218666666666666,2.9029813408851624,0.21984933333333337,104.6690018971761,0.8260577310666667,23.202414353688557,0,9.635089953740438,0,8.421760002772013,0.06125770604,41.213818868001304,0.9886519999999999,185.31496556599936,0.01072,4.979860345522563,94.02878266666667,0,429.89886474609375,3905.4685026666666,1012.559844970703,116.53844936204585,431.26100667317706,337.3009726121368,0.5495211184024811,1.0723148999999998,0.18511099740862846,0.018697134346666665,0.11936043327053387,0.00806637656,38.82719866434733,22.246010893333334,12.833200057347616,16.407138666666665,39.742003440856934,8.705444,0.5915700842936834,0.25715785453333334,21.167899926503498,0,1.1211100618044536,3.4294250159999997,2.4846499854902504e-5,0,0.12369500597318013,0.37768190333333335,0.01200509948345522,0.028741290160000002,356.9109802246093,5.217078294238491,61.28817356802767,59.84204112797425,11.793269453321097,12.57751529383478,-0.15660367471683573,17.892500559488933,0.8011413333333334,3682.1237313495617,0,0.016418003166715305,0.007146666666666667,1.2417699893315632,0.04788266666666667,0.023138000008960564,0.007236000000000001 +2117,0,0,1.5606042495555068,0.5221426233578932,2.1021506368557454,5.963729977607727,0.008157333333333332,2.7908812363942466,0.21820866666666672,104.72300084431966,0.8198931211333333,22.943814277648926,0,9.58221991856893,0,8.405669927597046,0.06080055898,40.452619870503746,0.9812739999999999,183.42996470133463,0.01064,4.980930368105571,93.32707533333334,0,429.95887756347656,3876.3232153333333,1011.079854329427,116.18489351574405,430.4910024007161,336.30253787568074,0.5394081224997839,1.06431255,0.17496500040094057,0.01855760349333333,0.1086603943258524,0.00800617972,38.52419884999593,22.079995886666666,12.759099006652832,16.28469733333333,39.490502993265785,8.640478,0.5822190841039022,0.2552387660666667,21.063700040181477,0,1.1143200397491455,3.4038322919999997,2.015429996996924e-5,0,0.12298000479737918,0.37486338166666666,0.01185519954500099,0.028526802920000004,357.07597859700513,5.210703895789944,61.18685068090068,59.68810267987863,11.74581037685329,12.545631178042498,-0.15605127204627375,17.919700781504314,0.7951626666666667,3659.6646534645283,0,0.015495003201067448,0.0070933333333333334,1.2242499788602192,0.047525333333333336,0.0223042001016438,0.007182000000000001 +2118,0,0,1.5606042495555068,0.5063201196197751,2.094804964799298,5.963479995727539,0.008095999999999999,2.6831212043762207,0.21656800000000004,104.77600161234538,0.8137285112,22.688214143117268,0,9.529650211334229,0,8.389609893163046,0.06034341192,39.70492172241211,0.9738959999999999,181.56396611531576,0.01056,4.981990337371826,92.625368,0,430.01687876383465,3847.1779279999996,1009.6698557535806,115.83133766944225,429.73400624593097,335.30410313922476,0.5300741195678711,1.0563102,0.16543199742833772,0.018418072639999998,0.09892865891257922,0.00794598288,38.224598248799644,21.91398088,12.684298435846964,16.162256,39.24030303955078,8.575512,0.5730980833371481,0.2533196776,20.960100332895916,0,1.107440044482549,3.3782395679999997,1.6349799807358067e-5,0,0.1222520067046086,0.37204486,0.011710099643096328,0.028312315680000002,357.2379811604817,5.204329497341396,61.08552779377369,59.53416423178301,11.698351300385484,12.513747062250218,-0.15551560564273662,17.946600755055744,0.7891840000000001,3637.2055755794945,0,0.014611402914548913,0.007039999999999999,1.2069600125153859,0.047168,0.021500600191454094,0.007128000000000001 +2119,0,0,1.5606042495555068,0.4904976158816572,2.0874592927428504,5.963239947954814,0.008034666666666666,2.5795311331748962,0.21492733333333336,104.82900047302246,0.8075639012666667,22.4354141553243,0,9.477389971415201,0,8.373580058415731,0.05988626486,38.97042338053385,0.9665179999999999,179.71796671549478,0.01048,4.983050346374512,91.92366066666666,0,430.0738703409831,3818.0326406666663,1008.319854736328,115.47778182314043,428.9880065917969,334.30566840276873,0.521431123216947,1.0483078499999998,0.1564719999829928,0.018278541786666665,0.09007682589193185,0.00788578604,37.92819849650065,21.74796587333333,12.608997265497843,16.039814666666665,38.99130312601725,8.510546,0.5642000834147135,0.25140058913333335,20.85700003306071,0,1.100480059782664,3.3526468439999997,1.3264699797825111e-5,0,0.12151200572649638,0.36922633833333335,0.01157089943687121,0.02809782844,357.3979822794596,5.197955098892849,60.9842049066467,59.38022578368739,11.65089222391768,12.481862946457936,-0.15499667550622434,17.973300615946453,0.7832053333333334,3614.746497694461,0,0.013782302771384517,0.006986666666666666,1.1899099946022034,0.04681066666666667,0.02072600011403362,0.007074000000000001 +2120,0,0,1.5606042495555068,0.4746751121435392,2.080113620686403,5.962990005811055,0.007973333333333332,2.479951103528341,0.2132866666666667,104.8820006052653,0.8013992913333333,22.185513814290363,0,9.4254199663798,0,8.357590039571127,0.0594291178,38.24882443745931,0.9591399999999999,177.8909657796224,0.0104,4.984100381533305,91.22195333333333,0,430.1308822631836,3788.887353333333,1007.0298512776692,115.12422597683863,428.2540054321289,333.30723366631275,0.5133991241455078,1.0403054999999999,0.14805199826757112,0.01813901093333333,0.08202509644130866,0.0078255892,37.63499895731608,21.581950866666666,12.532996654510498,15.917373333333332,38.743502934773765,8.44558,0.5555180907249451,0.24948150066666666,20.754500071207683,0,1.0934500594933827,3.3270541199999997,1.076269995792245e-5,0,0.12076200544834137,0.36640781666666666,0.0114372995061179,0.0278833412,357.55498250325513,5.191580700444301,60.88288201951971,59.22628733559178,11.603433147449874,12.449978830665653,-0.15449448163673696,17.99970022837321,0.7772266666666667,3592.2874198094273,0,0.01300420262850821,0.006933333333333333,1.1730999847253163,0.04645333333333333,0.01997940040503939,0.007020000000000001 +2121,0,0,1.5606042495555068,0.4588526084054212,2.0727679486299557,5.962740023930867,0.007911999999999999,2.3842210372289023,0.21164600000000003,104.93400065104167,0.7952346814,21.93841330210368,0,9.373739957809448,0,8.341629981994629,0.058971970740000004,37.54012584686279,0.9517619999999999,176.08296839396158,0.01032,4.985140323638916,90.520246,0,430.18687693277997,3759.742066,1005.7798716227212,114.77067013053683,427.5320053100586,332.3087989298568,0.5059101233879725,1.03230315,0.14013799776633581,0.017999480079999998,0.07470096958180268,0.00776539236,37.34479840596517,21.41593586,12.45659605662028,15.794932,38.49690310160319,8.380614,0.5470450768868128,0.2475624122,20.65250015258789,0,1.086370050907135,3.3014613959999997,8.733539971217397e-6,0,0.12000200587014358,0.363589295,0.01130729952516655,0.027668853960000003,357.70997873942054,5.185206301995753,60.78155913239272,59.07234888749616,11.555974070982067,12.418094714873371,-0.15400902403427447,18.025800387064617,0.771248,3569.8283419243935,0,0.012274102540686727,0.00688,1.1565099954605103,0.046096,0.01925980020314455,0.006966000000000001 +2122,0,0,1.5606042495555068,0.44303010466730325,2.065422276573508,5.962490042050679,0.007850666666666666,2.292201062043508,0.21000533333333338,104.9860013326009,0.7890700714666666,21.694113572438557,0,9.322349945704142,0,8.32570997873942,0.05851482368,36.84402720133463,0.9443839999999999,174.29296493530273,0.010239999999999999,4.986170331637065,89.81853866666667,0,430.2428792317708,3730.5967786666665,1004.5798695882161,114.41711428423501,426.82100677490234,331.31036419340074,0.4989011163512866,1.0243007999999998,0.13269699985782304,0.017859949226666665,0.06803844558695953,0.00770519552,37.05749924977621,21.249920853333332,12.379595120747885,15.672490666666665,38.25140349070231,8.315648,0.5387740830580393,0.24564332373333334,20.55109961827596,0,1.0792200366655986,3.2758686719999996,7.0875800020075985e-6,0,0.11923600547015667,0.36077077333333335,0.011180799687281251,0.02745436672,357.8629786173502,5.178831903547206,60.68023624526573,58.91841043940054,11.508514994514263,12.38621059908109,-0.15354030269883678,18.051700592041016,0.7652693333333334,3547.36926403936,0,0.011588902212679386,0.006826666666666667,1.1401500006516774,0.045738666666666664,0.01856620004400611,0.0069120000000000015 +2123,0,0,1.5606042495555068,0.4272076009291853,2.0580766045170606,5.96222996711731,0.007789333333333333,2.2037410140037537,0.2083646666666667,105.0380007425944,0.7829054615333333,21.452613194783527,0,9.271260023117065,0,8.30982001622518,0.05805767662,36.160228411356606,0.9370059999999999,172.52196629842123,0.01016,4.987200339635213,89.11683133333334,0,430.29688517252606,3701.4514913333333,1003.4098612467446,114.06355843793321,426.12000783284503,330.31192945694477,0.4923161193728447,1.0162984499999999,0.12570000005265078,0.01772041837333333,0.06197732469687859,0.00764499868,36.772898038228355,21.083905846666667,12.302194595336914,15.550049333333332,38.007003466288246,8.250682,0.5306990842024485,0.24372423526666667,20.450300216674805,0,1.0720300376415253,3.2502759479999996,5.752360001073005e-6,0,0.11846400424838066,0.35795225166666667,0.011058899651591977,0.027239879480000003,358.01198069254554,5.172457505098658,60.57891335813875,58.76447199130492,11.461055918046457,12.354326483288808,-0.15308831763042402,18.07740084330241,0.7592906666666668,3524.9101861543263,0,0.01094590212839345,0.0067733333333333335,1.1240299940109253,0.045381333333333336,0.01789769995957613,0.006858000000000001 +2124,0,0,1.5606042495555068,0.4113850971910673,2.0507309324606133,5.9619700113932295,0.007728,2.1187109549840293,0.20672400000000005,105.08900133768718,0.7767408516,21.213812987009685,0,9.220459858576456,0,8.293950001398722,0.05760052956,35.48862934112549,0.9296279999999999,170.76896794637045,0.01008,4.98822037378947,88.415124,0,430.35088602701825,3672.306204,1002.2798716227212,113.71000259163141,425.4310048421224,329.3134947204888,0.48610811680555344,1.0082961,0.11912299878895283,0.017580887519999998,0.05643630617608627,0.00758480184,36.49099890391032,20.91789084,12.224294106165567,15.427608,37.763803799947105,8.185716,0.5228130916754404,0.2418051468,20.349900245666504,0,1.0648000339667003,3.2246832239999996,4.669109936609554e-6,0,0.11768500444789727,0.35513373000000004,0.010941299609839916,0.02702539224,358.1599807739257,5.16608310665011,60.47759047101176,58.61053354320931,11.41359684157865,12.322442367496528,-0.15265306882903604,18.102800528208416,0.7533120000000001,3502.451108269293,0,0.010325002173582712,0.00672,1.1081299881140392,0.045024,0.017253300175070763,0.006804000000000001 +2125,0,0,1.5606042495555068,0.3955625934529493,2.0433852604041656,5.961709976196289,0.007666666666666666,2.0369609196980796,0.20508333333333337,105.1390012105306,0.7705762416666666,20.977712790171307,0,9.169939915339151,0,8.278129975001017,0.057143382500000006,34.829030990600586,0.9222499999999998,169.03496932983398,0.01,4.989230354626973,87.71341666666666,0,430.4038899739583,3643.1609166666667,1001.1798604329426,113.3564467453296,424.7510019938151,328.3150599840328,0.4802351122101148,1.00029375,0.11293899826705456,0.017441356666666664,0.05136808597793182,0.007524605,36.21169853210449,20.751875833333333,12.146093527475992,15.305166666666665,37.521602948506676,8.12075,0.5151100854078928,0.23988605833333332,20.250099976857502,0,1.057530055443446,3.1990904999999996,3.7901900213910267e-6,0,0.11690000506738822,0.35231520833333335,0.010826299355054895,0.026810905000000003,358.30497741699213,5.159708708201562,60.37626758388477,58.456595095113684,11.366137765110846,12.290558251704246,-0.15223455629467295,18.127900282541912,0.7473333333333334,3479.992030384259,0,0.009724991939341029,0.006666666666666666,1.0924499928951263,0.04466666666666667,0.016632199753075838,0.006750000000000001 +2126,0,0,1.5606042495555068,0.37974008971483136,2.0360395883477183,5.961449980735779,0.007605333333333333,1.958380897839864,0.2034426666666667,105.19000053405762,0.7644116317333334,20.74431260426839,0,9.119710048039755,0,8.262329975763956,0.05668623544,34.18113168080648,0.9148719999999998,167.3179677327474,0.00992,4.990240375200908,87.01170933333333,0,430.45588938395184,3614.015629333333,1000.099868774414,113.00289089902779,424.0820058186849,327.3166252475768,0.47465811173121136,0.9922913999999999,0.1071229986846447,0.01730182581333333,0.046756769840916,0.00746440816,35.934798876444496,20.585860826666668,12.067392985026041,15.182725333333332,37.28040281931559,8.055784,0.5075840801000595,0.23796696986666666,20.15079975128174,0,1.0502300361792247,3.173497776,3.077009997317267e-6,0,0.11610900486509006,0.34949668666666667,0.010713699584205946,0.026596417760000005,358.4479827880859,5.153334309753014,60.27494469675778,58.30265664701807,11.31867868864304,12.258674135911964,-0.15183278002733475,18.152800401051838,0.7413546666666667,3457.5329524992253,0,0.009161881792048613,0.006613333333333333,1.0769799848397572,0.04430933333333333,0.016033500122527283,0.006696000000000001 +2127,0,0,1.5606042495555068,0.3639175859767134,2.028693916291271,5.961180011431376,0.0075439999999999995,1.8828308482964833,0.20180200000000004,105.23900032043457,0.7582470218,20.51351261138916,0,9.069760004679361,0,8.246569871902466,0.05622908838,33.5449333190918,0.9074939999999998,165.61896896362305,0.00984,4.991240342458089,86.310002,0,430.5078938802083,3584.8703419999997,999.0488739013671,112.64933505272599,423.42300669352215,326.3181905111208,0.4693441167473793,0.98428905,0.10165299971898396,0.017162294959999998,0.04256115419169267,0.0074042113199999995,35.6601988474528,20.41984582,11.98839251200358,15.060284,37.04020341237386,7.990818,0.5002300764123598,0.2360478814,20.052099863688152,0,1.042890061934789,3.147905052,2.4982500311428644e-6,0,0.11531300532321136,0.34667816500000004,0.010604699530328313,0.026381930520000003,358.58798472086585,5.146959911304466,60.17362180963079,58.14871819892245,11.271219612175233,12.226790020119683,-0.15144774002702144,18.177500406901043,0.735376,3435.073874614192,0,0.008633431668082872,0.00656,1.061730017264684,0.043952,0.015456499997526407,0.006642000000000001 +2128,0,0,1.5606042495555068,0.3480950822385954,2.0213482442348236,5.960910081863403,0.007482666666666667,1.8102108041445415,0.20016133333333336,105.28900210062663,0.7520824118666667,20.285412470499676,0,9.020099957784018,0,8.230839967727661,0.055771941320000004,32.92003504435221,0.9001159999999998,163.93796920776367,0.009760000000000001,4.992240349451701,85.60829466666667,0,430.55889892578125,3555.7250546666664,998.016866048177,112.29577920642419,422.7740020751953,325.3197557746648,0.46426110963026684,0.9762867,0.09650889908274014,0.017022764106666664,0.03874354064464569,0.007344014479999999,35.387898445129395,20.253830813333334,11.908991893132528,14.937842666666667,36.80100313822428,7.925852,0.4930420791109403,0.23412879293333333,19.9539000193278,0,1.035530040661494,3.122312328,2.0285300100416257e-6,0,0.11451200519998868,0.34385964333333335,0.010499099579950174,0.026167443280000004,358.72597757975257,5.140585512855918,60.072298922503805,57.99477975082684,11.223760535707427,12.1949059043274,-0.15107943629373294,18.201900641123455,0.7293973333333335,3412.614796729158,0,0.008137511787936091,0.006506666666666667,1.046700010697047,0.04359466666666667,0.014900199991340438,0.006588000000000001 +2129,0,0,1.5606042495555068,0.3322725785004774,2.014002572178376,5.960639953613281,0.007421333333333334,1.740400791168213,0.1985206666666667,105.33800061543782,0.7459178019333333,20.059812545776367,0,8.970710039138794,0,8.215140024820963,0.05531479426000001,32.306435902913414,0.8927379999999998,162.27397028605142,0.009680000000000001,4.99323042233785,84.90658733333333,0,430.60889943440753,3526.579767333333,997.0018717447915,111.94222336012237,422.1340077718099,324.3213210382088,0.45938511192798615,0.96828435,0.09166829846799374,0.01688323325333333,0.0352696276580294,0.00728381764,35.117698669433594,20.087815806666665,11.829291661580404,14.815401333333332,36.562703132629395,7.860886,0.4860160748163859,0.23220970446666667,19.856200059254963,0,1.0281400382518768,3.096719604,1.6472699921147675e-6,0,0.11370800559719403,0.3410411216666667,0.010395299488057693,0.025952956040000003,358.86097971598304,5.134211114407371,59.970976035376815,57.840841302731214,11.176301459239623,12.16302178853512,-0.15072786882746936,18.226000785827637,0.7234186666666668,3390.1557188441247,0,0.007672111503779888,0.0064533333333333335,1.0318799912929535,0.043237333333333336,0.014364099983746806,0.006534000000000002 +2130,0,0,1.5606042495555068,0.3164500747623595,2.0066569001219285,5.960360010464986,0.00736,1.6732807556788127,0.19688000000000003,105.38600158691406,0.739753192,19.836812019348145,0,8.921610037485758,0,8.199469963709513,0.054857647200000005,31.703836758931477,0.8853599999999998,160.62696965535483,0.009600000000000001,4.994210322697957,84.20488,0,430.65890248616535,3497.43448,996.0028788248696,111.58866751382057,421.50400797526044,323.3228863017528,0.45468810945749283,0.960282,0.08711480038861434,0.016743702399999998,0.03210841631516814,0.0072236207999999994,34.8496987024943,19.9218008,11.749291261037191,14.69296,36.325402895609535,7.79592,0.4791440765062968,0.230290616,19.758999665578205,0,1.0207200348377228,3.07112688,1.337790005588128e-6,0,0.1128990047921737,0.33822260000000004,0.010293199525525173,0.025738468800000004,358.99397786458326,5.127836715958823,59.869653148249824,57.6869028546356,11.128842382771817,12.131137672742838,-0.1503930376282306,18.249900341033936,0.7174400000000001,3367.696640959091,0,0.007235361495986581,0.0064,1.0172700087229412,0.04288,0.013847299929087361,0.006480000000000001 +2131,0,0,1.5606042495555068,0.3006275710242415,1.999311228065481,5.960080027580261,0.007298666666666667,1.6087607145309448,0.19523933333333338,105.43400192260742,0.7335885820666667,19.616212050120037,0,8.872780005137125,0,8.183840115865072,0.05440050014,31.112038135528564,0.8779819999999998,158.9979680379232,0.00952,4.995190382003784,83.50317266666667,0,430.70789845784503,3468.2891926666666,995.0178782145181,111.23511166751877,420.8820037841797,322.32445156529684,0.4501541083057721,0.9522796499999999,0.08283099966744582,0.016604171546666664,0.029231705858061712,0.007163423959999999,34.58359877268473,19.755785793333335,11.668990850448608,14.570518666666667,36.08890247344971,7.730954,0.47242407500743866,0.22837152753333334,19.66230010986328,0,1.0132800439993541,3.045534156,1.0865500049324812e-6,0,0.1120870045075814,0.33540407833333336,0.01019389950670302,0.025523981560000006,359.12497711181635,5.121462317510275,59.768330261122834,57.53296440653998,11.08138330630401,12.099253556950556,-0.15007495328189085,18.273600419362385,0.7114613333333334,3345.237563074057,0,0.006825481308624148,0.006346666666666667,1.0028399874766667,0.04252266666666667,0.013349199978013834,0.006426000000000001 +2132,0,0,1.5606042495555068,0.28480506728612354,1.9919655560090337,5.959809978802999,0.0072373333333333335,1.5467306971549988,0.1935986666666667,105.48200098673503,0.7274239721333333,19.39821179707845,0,8.824220101038614,0,8.168239990870157,0.053943353080000006,30.53093942006429,0.8706039999999998,157.38497161865234,0.00944,4.996170361836751,82.80146533333334,0,430.75689697265625,3439.1439053333334,994.0448710123696,110.88155582121695,420.27000681559247,321.3260168288408,0.44576210528612137,0.9442773,0.07879799976944923,0.01646464069333333,0.026613696323086817,0.00710322712,34.31939888000488,19.589770786666666,11.588390429814657,14.448077333333332,35.853302637736,7.665988,0.465849074224631,0.22645243906666668,19.56619993845622,0,1.005830039580663,3.019941432,8.825670031834912e-7,0,0.1112720047434171,0.3325855566666667,0.010097299547245106,0.025309494320000004,359.2539800008137,5.115087919061728,59.667007373995844,57.379025958444366,11.033924229836204,12.067369441158275,-0.1497736157884501,18.297000567118328,0.7054826666666667,3322.7784851890237,0,0.006440831309494873,0.006293333333333334,0.9886219948530197,0.04216533333333333,0.012868999969214201,0.006372000000000001 +2133,0,0,1.5606042495555068,0.26898256354800554,1.9846198839525862,5.959520022074382,0.007176,1.4871006707350414,0.19195800000000002,105.52899932861328,0.7212593622,19.18261178334554,0,8.77593986193339,0,8.152659893035889,0.05348620602,29.96033986409505,0.8632259999999998,155.78797149658203,0.00936,4.997140367825826,82.09975800000001,0,430.8049062093099,3409.9986179999996,993.0828704833983,110.52799997491515,419.66700236002606,320.32758209238483,0.4414961114525795,0.9362749499999999,0.07500059964756171,0.016325109839999997,0.024231087726851303,0.007043030279999999,34.05699857076009,19.42375578,11.507490078608194,14.325636,35.6185032526652,7.6010219999999995,0.45941607654094696,0.2245333506,19.470499833424885,0,0.9983560492595037,2.994348708,7.169439915818051e-7,0,0.11045400363703568,0.32976703500000004,0.01000189951931437,0.025095007080000002,359.37998199462885,5.10871352061318,59.565684486868854,57.22508751034874,10.9864651533684,12.035485325365993,-0.1494890251479084,18.32010046641032,0.6995040000000001,3300.31940730399,0,0.0060798412111277384,0.00624,0.9746099909146627,0.041808000000000005,0.012406100053340197,0.0063180000000000016 +2134,0,0,1.5606042495555068,0.2531600598098876,1.9772742118961386,5.959240039189656,0.007114666666666667,1.429780642191569,0.19031733333333337,105.57600084940593,0.7150947522666666,18.96951166788737,0,8.727929910024008,0,8.13713010152181,0.05302905896000001,29.400041421254475,0.8558479999999998,154.2079709370931,0.00928,4.998100320498149,81.39805066666668,0,430.8519109090169,3380.8533306666664,992.1288706461587,110.17444412861335,419.07200876871747,319.32914735592885,0.4373421048124631,0.9282726,0.07142659897605579,0.016185578986666664,0.02206267975270748,0.00698283344,33.79639879862467,19.25774077333333,11.426389694213867,14.203194666666665,35.384602864583336,7.536055999999999,0.45311907182137173,0.22261426213333332,19.375399907430012,0,0.9908670485019684,2.968755984,5.824520030728308e-7,0,0.10963300429284573,0.32694851333333336,0.009907529456540942,0.024880519840000004,359.5049794514973,5.102339122164633,59.46436159974186,57.07114906225313,10.939006076900593,12.003601209573711,-0.1492211813602657,18.343000570933025,0.6935253333333334,3277.8603294189566,0,0.0057410611771047115,0.006186666666666667,0.9607999920845032,0.04145066666666667,0.011960000032559037,0.006264000000000001 +2135,0,0,1.5606042495555068,0.2373375560717696,1.969928539839691,5.958950002988179,0.007053333333333333,1.3746706247329712,0.18867666666666671,105.6230017344157,0.7089301423333333,18.758811632792156,0,8.680190086364746,0,8.121620098749796,0.052571911900000004,28.849942366282146,0.8484699999999998,152.6449712117513,0.0092,4.999060392379761,80.69634333333335,0,430.89890543619794,3351.708043333333,991.183878580729,109.82088828231153,418.48500569661456,318.3307126194728,0.4332871064543724,0.92027025,0.06806239982446034,0.01604604813333333,0.02008897252380848,0.0069226366,33.53749815622965,19.091725766666666,11.345089515050253,14.080753333333332,35.15140279134115,7.47109,0.4469550773501396,0.22069517366666666,19.280800024668377,0,0.9833610405524572,2.94316326,4.73229998002959e-7,0,0.10881000384688377,0.3241299916666667,0.009815509586284557,0.024666032600000005,359.62598164876295,5.095964723716085,59.36303871261488,56.91721061415751,10.891547000432787,11.971717093781429,-0.148970084425522,18.36560042699178,0.6875466666666668,3255.4012515339227,0,0.005423131049610674,0.0061333333333333335,0.9471889982620875,0.041093333333333336,0.011529899900779128,0.006210000000000001 +2136,0,0,1.5606042495555068,0.22151505233365165,1.9625828677832438,5.958659927050273,0.006992,1.321680595477422,0.18703600000000004,105.66900126139323,0.7027655324,18.550411383310955,0,8.632719993591309,0,8.106139977773031,0.05211476484,28.30974356333415,0.8410919999999998,151.0969696044922,0.009120000000000001,5.000010371208191,79.994636,0,430.9449055989583,3322.562756,990.244878133138,109.46733243600973,417.9070002237956,317.33227788301684,0.4293201019366582,0.9122678999999999,0.06489289986590545,0.015906517279999997,0.018292566140492756,0.006862439759999999,33.28019905090332,18.92571076,11.26348908742269,13.958312,34.91900221506754,7.406124,0.44091907391945523,0.2187760852,19.18660004933675,0,0.9758390486240387,2.917570536,3.845230030682008e-7,0,0.10798700526356697,0.32131147000000004,0.009725699434056878,0.024451545360000004,359.7459818522135,5.089590325267537,59.26171582548789,56.763272166061896,10.844087923964981,11.939832977989148,-0.1487357343436773,18.38800032933553,0.6815680000000001,3232.942173648889,0,0.005124750973967214,0.00608,0.9337559938430786,0.040736,0.011115400043005744,0.006156000000000001 +2137,0,0,1.5606042495555068,0.20569254859553365,1.9552371957267962,5.958370010058085,0.006930666666666667,1.2707505722840626,0.18539533333333336,105.7140007019043,0.6966009224666666,18.344411373138428,0,8.585520029067993,0,8.090699990590414,0.051657617780000005,27.77934455871582,0.8337139999999998,149.56597264607748,0.009040000000000001,5.000960389773051,79.29292866666667,0,430.9909083048503,3293.4174686666665,989.3118794759114,109.11377658970792,417.33700307210285,316.33384314656087,0.4254271040360133,0.90426555,0.06190849840641022,0.015766986426666664,0.016657360053310793,0.00680224292,33.024398485819496,18.759695753333332,11.181688865025839,13.835870666666665,34.68740304311117,7.341158,0.43500606964031857,0.21685699673333333,19.092999935150146,0,0.968304047981898,2.891977812,3.12471001961967e-7,0,0.10716300457715988,0.31849294833333336,0.009636539422596494,0.024237058120000002,359.86398569742835,5.08321592681899,59.1603929383609,56.60933371796628,10.796628847497175,11.907948862196866,-0.14851813111473164,18.410200595855713,0.6755893333333334,3210.4830957638555,0,0.0048447308751444025,0.006026666666666667,0.9204959919055303,0.04037866666666667,0.010715799949442347,0.006102000000000001 +2138,0,0,1.5606042495555068,0.18987004485741568,1.9478915236703487,5.958069960276286,0.006869333333333333,1.2217805584271748,0.1837546666666667,105.76000022888184,0.6904363125333333,18.140711307525635,0,8.538580020268759,0,8.075279951095581,0.05120047072,27.258545398712158,0.8263359999999998,148.0499725341797,0.008960000000000001,5.001900355021159,78.59122133333334,0,431.0359166463216,3264.272181333333,988.3838755289712,108.76022074340612,416.77500915527344,315.3354084101049,0.42160310596227646,0.8962631999999999,0.059097999396423496,0.01562745557333333,0.015168854889149467,0.0067420460799999995,32.7700990041097,18.593680746666667,11.099688450495401,13.713429333333332,34.45650291442871,7.276192,0.4292140727241834,0.21493790826666664,18.999799887339275,0,0.9607570419708887,2.866385088,2.539410009679462e-7,0,0.10633700403074424,0.3156744266666667,0.009547969636817774,0.024022570880000003,359.9789784749348,5.076841528370442,59.05907005123391,56.45539526987066,10.74916977102937,11.876064746404584,-0.14831727473868495,18.43210045496623,0.6696106666666668,3188.0240178788217,0,0.004581930853116016,0.005973333333333333,0.9074280013640722,0.04002133333333334,0.010330599965527654,0.006048000000000001 +2139,0,0,1.5606042495555068,0.1740475411192977,1.9405458516139014,5.957769989967346,0.006808,1.174700528383255,0.18211400000000005,105.80400085449219,0.6842717025999999,17.939311027526855,0,8.491900046666464,0,8.059900045394897,0.050743323660000006,26.747246424357098,0.8189579999999999,146.54997126261392,0.00888,5.0028403997421265,77.889514,0,431.07991790771484,3235.1268939999995,987.4598693847655,108.4066648971043,416.22100830078125,314.33697367364886,0.41783909996350604,0.88826085,0.05644849967211485,0.015487924719999999,0.013813950043792525,0.00668184924,32.51719856262207,18.42766574,11.017488320668539,13.590987999999998,34.22630214691162,7.211226,0.42353807638088864,0.21301881979999998,18.90719985961914,0,0.9531960437695185,2.840792364,2.0639300046809694e-7,0,0.10550900486608346,0.31285590500000005,0.0094613595089564715,0.023808083640000005,360.0919825236002,5.070467129921894,58.95774716410692,56.30145682177504,10.701710694561564,11.844180630612303,-0.1481331652155373,18.45370038350423,0.6636320000000001,3165.5649399937884,0,0.004317861011562248,0.00592,0.8945489972829819,0.039664000000000005,0.009959249990060925,0.005994000000000001 +2140,0,0,1.5606042495555068,0.15822503738117974,1.9332001795574538,5.957470019658406,0.0067466666666666664,1.1294505099455516,0.18047333333333337,105.84900029500325,0.6781070926666666,17.740210851033527,0,8.44549004236857,0,8.04455010096232,0.0502861766,26.245147387186687,0.8115799999999999,145.06497065226236,0.0088,5.003770351409912,77.18780666666667,0,431.1249135335286,3205.9816066666663,986.5388793945311,108.0531090508025,415.67500559488934,313.3385389371929,0.4141291007399559,0.8802584999999999,0.05394999931255976,0.015348393866666666,0.012580445424343148,0.0066216524,32.265598932902016,18.261650733333333,10.935188213984171,13.468546666666665,33.99680233001709,7.14626,0.4179740672310193,0.21109973133333332,18.81499973932902,0,0.9456220467885336,2.81519964,1.6776100035068944e-7,0,0.10467800373832385,0.31003738333333336,0.009376569651067257,0.023593596400000003,360.2029876708984,5.064092731473346,58.85642427697993,56.147518373679425,10.654251618093758,11.812296514820021,-0.14796580254528868,18.47510035832723,0.6576533333333334,3143.1058621087545,0,0.004052590928040445,0.005866666666666667,0.8818549960851669,0.03930666666666667,0.009601320062453548,0.005940000000000001 +2141,0,0,1.5293921645643966,0.14240253364306177,1.9258545075010063,5.957169969876607,0.006685333333333333,1.0859404702981312,0.1788326666666667,105.89300028483073,0.6719424827333332,17.54331064224243,0,8.3993399143219,0,8.029230038324991,0.04982902954,25.75234842300415,0.8042019999999999,143.59597142537436,0.00872,5.004700342814128,76.48609933333334,0,431.1679204305013,3176.836319333333,985.621866861979,107.6995532045007,415.1360117594401,312.3401042007369,0.41046510140101117,0.8722561499999999,0.051595899276435375,0.015208863013333332,0.011457541414226094,0.006561455559999999,32.01539866129557,18.095635726666668,10.852587779362997,13.346105333333332,33.76790301005045,7.081294,0.41251906752586365,0.20918064286666666,18.723300298055012,0,0.93803704281648,2.789606916,1.3637199813842926e-7,0,0.10384600423276424,0.3072188616666667,0.009292069744939605,0.02337910916,360.3119862874348,5.057718333024798,58.75510138985294,55.99357992558381,10.606792541625952,11.780412399027739,-0.1478151761420649,18.496200243632,0.6516746666666667,3120.6467842237207,0,0.003803630805729578,0.0058133333333333335,0.8693449993928274,0.038949333333333336,0.009256279949719707,0.005886000000000001 +2142,0,0,1.4981800795732865,0.1265800299049438,1.918508835444559,5.956860105196635,0.006624,1.0441004733244579,0.17719200000000004,105.93600145975749,0.6657778727999999,17.348610719045002,0,8.353439966837565,0,8.013940016428629,0.049371882480000004,25.268449465433758,0.7968239999999999,142.14097468058267,0.00864,5.005630373954773,75.78439200000001,0,431.21091715494794,3147.6910319999997,984.7058715820311,107.34599735819889,414.6120020548503,311.34166946428087,0.4068400984009107,0.8642538,0.049377199883262314,0.015069332159999999,0.010435237704465786,0.00650125872,31.766398906707764,17.92962072,10.769887606302897,13.223663999999998,33.53980255126953,7.016328,0.40717006971438724,0.2072615544,18.632099787394207,0,0.9304430484771729,2.764014192,1.1086500014319729e-7,0,0.10301200486719608,0.30440034000000005,0.009207829600200057,0.023164621920000003,360.417984008789,5.051343934576251,58.65377850272595,55.839641477488186,10.559333465158147,11.748528283235459,-0.14768128600586594,18.5171004931132,0.645696,3098.1877063386873,0,0.003569970741712799,0.00576,0.857014000415802,0.038592,0.008923689912383756,0.005832 +2143,0,0,1.4669679945821763,0.11075752616682583,1.9111631633881114,5.9565500020980835,0.006562666666666666,1.0038904547691345,0.17555133333333336,105.97899945576985,0.6596132628666667,17.156110286712646,0,8.307809988657633,0,7.998690048853557,0.04891473542000001,24.793350219726562,0.7894459999999999,140.70197550455728,0.00856,5.006550391515096,75.08268466666668,0,431.25391642252606,3118.5457446666665,983.7918701171874,106.99244151189708,414.1080042521159,310.3432347278249,0.40325209746758145,0.8562514499999999,0.047283499812086426,0.014929801306666666,0.009504474389056364,0.00644106188,31.518598874409992,17.763605713333334,10.686987241109213,13.101222666666665,33.31220277150472,6.951362,0.4019230703512828,0.20534246593333333,18.54139979680379,0,0.922837033867836,2.738421468,0,0,0.10217700339853764,0.30158181833333336,0.009125239526232084,0.022950134680000005,360.52297973632807,5.044969536127703,58.55245561559896,55.68570302939257,10.511874388690341,11.716644167443176,-0.14756413213669195,18.53770049413045,0.6397173333333335,3075.7286284536535,0,0.003350690705701709,0.005706666666666667,0.8448620041211446,0.03823466666666667,0.008603070008878907,0.005778000000000001 +2144,0,0,1.4357559095910661,0.09493502242870784,1.903817491331664,5.956239978472392,0.006501333333333333,0.9652244299650192,0.1739106666666667,106.02200126647949,0.6534486529333333,16.965810616811115,0,8.26243003209432,0,7.983460028966268,0.048457588360000005,24.326951503753662,0.7820679999999999,139.27697372436523,0.00848,5.007460355758667,74.38097733333335,0,431.2959264119466,3089.400457333333,982.8798726399739,106.63888566559527,413.625,309.34479999136886,0.39969609926144284,0.8482491,0.04530929929266373,0.014790270453333332,0.008657041316231092,0.00638086504,31.27189874649048,17.597590706666665,10.60388700167338,12.978781333333332,33.08520253499349,6.8863959999999995,0.3967740659912427,0.20342337746666667,18.451200008392334,0,0.9152190436919531,2.712828744,0,0,0.10133900493383408,0.2987632966666667,0.009044169681146741,0.022735647440000003,360.625986735026,5.038595137679155,58.45113272847197,55.531764581296954,10.464415312222537,11.684760051650894,-0.14746371453454274,18.558100541432697,0.6337386666666668,3053.26955056862,0,0.003144880679125587,0.005653333333333334,0.8328850020964941,0.03787733333333333,0.008293999979893366,0.005724000000000001 +2145,0,0,1.4045438245999562,0.07911251869058987,1.8964718192752166,5.9559299548467,0.0064399999999999995,0.928053413828214,0.17227000000000003,106.06400044759114,0.647284043,16.777610143025715,0,8.217299938201904,0,7.968269944190979,0.0480004413,23.869152069091797,0.7746899999999999,137.8669751485189,0.008400000000000001,5.008360346158345,73.67927,0,431.33592987060547,3060.25517,981.9678649902343,106.28532981929347,413.16100056966144,308.3463652549129,0.3961680978536606,0.8402467499999999,0.04344759974628687,0.0146507396,0.007885438506491482,0.0063206682,31.026299158732098,17.4315757,10.520686944325766,12.85634,32.85880343119303,6.821429999999999,0.39172106484572095,0.201504289,18.361399968465168,0,0.9075930317242941,2.68723602,0,0,0.1005010058482488,0.29594477500000005,0.008963119549055895,0.0225211602,360.72598266601557,5.032220739230608,58.34980984134498,55.37782613320134,10.41695623575473,11.652875935858614,-0.14738003319941842,18.57830047607422,0.6277600000000001,3030.8104726835863,0,0.0029517306247726083,0.005600000000000001,0.8210799992084503,0.03752,0.007996070043494305,0.0056700000000000006 +2146,0,0,1.373331739608846,0.0632900149524719,1.889126147218769,5.955609997113545,0.006378666666666666,0.8923154026269913,0.17062933333333336,106.1059996287028,0.6411194330666666,16.591610113779705,0,8.172429958979288,0,7.953099966049194,0.047543294240000006,23.419652938842773,0.7673119999999999,136.47197596232095,0.008320000000000001,5.009250322977702,72.97756266666667,0,431.3749287923177,3031.1098826666666,981.0548706054686,105.93177397299166,412.7150014241536,307.3479305184569,0.392664094765981,0.8322443999999999,0.04168899947156509,0.014511208746666667,0.007182855896341304,0.0062604713599999995,30.781699180603027,17.265560693333335,10.437286694844564,12.733898666666665,32.633002281188965,6.756463999999999,0.3867600659529368,0.19958520053333334,18.27209997177124,0,0.8999560376008352,2.661643296,0,0,0.09966050398846467,0.29312625333333336,0.00888208975084126,0.022306672960000003,360.8239822387695,5.02584634078206,58.248486954217995,55.223887685105716,10.369497159286924,11.620991820066331,-0.14731308813131894,18.59820048014323,0.6217813333333334,3008.3513947985525,0,0.0027704506064765155,0.005546666666666667,0.8094249914089838,0.03716266666666667,0.007708859979175031,0.005616 +2147,0,0,1.3421196546177359,0.04746751121435393,1.8817804751623215,5.955289999643962,0.006317333333333333,0.8579573879639307,0.1689886666666667,106.14800135294597,0.6349548231333333,16.407609939575195,0,8.127799908320108,0,7.937970002492269,0.04708614718000001,22.978453795115154,0.7599339999999999,135.0909741719564,0.00824,5.010140419006348,72.27585533333334,0,431.4139353434245,3001.9645953333334,980.1428680419921,105.57821812668985,412.28800710042316,306.3494957820009,0.38918109486500424,0.82424205,0.040027398926516376,0.014371677893333334,0.006543093593791127,0.00620027452,30.53809881210327,17.099545686666666,10.353686332702637,12.611457333333332,32.40780226389567,6.691497999999999,0.38188906262318295,0.19766611206666668,18.183299859364826,0,0.8923110365867615,2.636050572,0,0,0.09881890440980594,0.2903077316666667,0.008802449563518167,0.022092185720000004,360.9209823608398,5.019471942333512,58.147164067091005,55.0699492370101,10.32203808281912,11.58910770427405,-0.14726287933024435,18.61780055363973,0.6158026666666667,2985.892316913519,0,0.002600310583754132,0.005493333333333334,0.7979190001885096,0.036805333333333336,0.007432000013068318,0.005562 +2148,0,0,1.3109075696266257,0.03164500747623594,1.874434803105874,5.954970002174377,0.006255999999999999,0.824924369653066,0.16734800000000002,106.18900108337402,0.6287902132000001,16.225710074106853,0,8.083430051803589,0,7.922859986623128,0.04662900012000001,22.545254548390705,0.7525559999999999,133.72397486368814,0.00816,5.011000394821167,71.57414800000001,0,431.44994099934894,2972.819308,979.2288665771483,105.22466228038805,411.87800852457684,305.3510610455449,0.3857161005338033,0.8162396999999999,0.038459098897874355,0.01423214704,0.005960521521046758,0.00614007768,30.295499006907146,16.93353068,10.269986232121786,12.489016,32.18310356140137,6.626531999999999,0.3771040638287862,0.19574702360000001,18.09489981333415,0,0.8846540451049805,2.610457848,0,0,0.09797590412199497,0.28748921,0.008724119591837129,0.021877698480000003,361.01498667399085,5.013097543884964,58.045841179964015,54.916010788914484,10.274579006351313,11.557223588481767,-0.14722940679619465,18.637200196584065,0.6098240000000001,2963.4332390284853,0,0.002440620524187883,0.00544,0.7865780045588812,0.036448,0.0071650999986256165,0.005508000000000001 +2149,0,0,1.2796954846355155,0.01582250373811797,1.8670891310494266,5.954649964968364,0.006194666666666666,0.7931653459866842,0.16570733333333337,106.22899945576985,0.6226256032666667,16.045809745788574,0,8.039309978485107,0,7.907789985338847,0.046171853060000004,22.120055357615154,0.7451779999999999,132.3709716796875,0.00808,5.011860370635986,70.87244066666668,0,431.48594156901044,2943.674020666667,978.3138783772786,104.87110643408623,411.4850082397461,304.35262630908886,0.3822650909423828,0.80823735,0.036978499653438725,0.014092616186666667,0.005429989619491001,0.00607988084,30.053698539733887,16.76751567333333,10.186185995737711,12.366574666666665,31.958802382151287,6.561565999999999,0.3724030653635661,0.19382793513333335,18.006999969482422,0,0.876985048254331,2.584865124,0,0,0.09713350360592206,0.28467068833333337,0.008645599630350867,0.02166321124,361.10698445638013,5.006723145436417,57.944518292837024,54.76207234081886,10.227119929883509,11.525339472689486,-0.1472126705291698,18.65630054473877,0.6038453333333335,2940.974161143452,0,0.002290760457981378,0.005386666666666667,0.7753999928633372,0.03609066666666667,0.0069078099525844055,0.0054540000000000005 +2150,0,0,1.2484833996444054,-0,1.859743458992979,5.954320033391316,0.006133333333333333,0.7626323302586874,0.1640666666666667,106.26900100708008,0.6164609933333334,15.867909749348959,0,7.995430072148641,0,7.89274001121521,0.04571470600000001,21.70275640487671,0.7377999999999999,131.0309715270996,0.008,5.012700319290161,70.17073333333335,0,431.5199457804362,2914.5287333333335,977.3978627522786,104.51755058778443,411.10900115966797,303.3541915726329,0.37882809589306515,0.8002349999999999,0.035577899776399136,0.013953085333333334,0.004946847795508802,0.006019684,29.812798659006756,16.601500666666666,10.102185805638632,12.244133333333332,31.735102653503418,6.496599999999999,0.367783064643542,0.1919088466666667,17.919500192006428,0,0.8693070362011591,2.5592724,0,0,0.09629150542120139,0.2818521666666667,0.008566889523838958,0.021448724000000002,361.19698079427076,5.000348746987869,57.843195405710034,54.608133892723245,10.179660853415703,11.493455356897204,-0.1472126705291698,18.675200303395588,0.5978666666666668,2918.515083258418,0,0.002150100461828212,0.005333333333333334,0.7643829981486002,0.03573333333333333,0.006659780008097489,0.0054 +2151,0,0,1.2172713146532952,-0,1.8523977869365316,5.953990022341411,0.006071999999999999,0.7332753290732702,0.16242600000000001,106.30900001525879,0.6102963834,15.69210966428121,0,7.951790014902751,0,7.877730011940002,0.045257558940000005,21.293057123819988,0.7304219999999999,129.70597712198892,0.00792,5.013530453046163,69.46902600000001,0,431.5529530843099,2885.3834460000003,976.4788767496743,104.16399474148263,410.74900309244794,302.3557568361769,0.3754020929336548,0.7922326499999999,0.0342548992484808,0.01381355448,0.004506836257254084,0.00595948716,29.572699069976807,16.43548566,10.018085718154907,12.121692,31.51190249125163,6.431633999999999,0.36324206242958706,0.18998975820000003,17.832499821980793,0,0.8616200387477875,2.5336796759999998,0,0,0.09544770233333111,0.279033645,0.008489409694448113,0.021234236760000004,361.2859802246093,4.993974348539321,57.741872518583044,54.45419544462763,10.132201776947896,11.461571241104922,-0.1472126705291698,18.693800449371338,0.5918880000000001,2896.0560053733843,0,0.0020180804228099682,0.005280000000000001,0.7535239905118942,0.035376,0.00642066999959449,0.005346 +2152,0,0,1.186059229662185,-0,1.8450521148800842,5.953660011291504,0.006010666666666666,0.7050513128439585,0.16078533333333336,106.34800020853679,0.6041317734666667,15.51820961634318,0,7.908400058746338,0,7.862750053405762,0.04480041188000001,20.890857696533203,0.7230439999999999,128.39397430419922,0.00784,5.0143504937489825,68.76731866666668,0,431.5839538574219,2856.238158666667,975.557866414388,103.81043889518082,410.4020055135091,301.3573220997209,0.37198709199825924,0.7842302999999999,0.03300459962338209,0.013674023626666667,0.00410608477735271,0.00589929032,29.333399136861164,16.269470653333332,9.93375539779663,11.999250666666665,31.28910239537557,6.366667999999999,0.35877606521050137,0.18807066973333336,17.74600013097127,0,0.8539210309584936,2.5080869519999998,0,0,0.09460230295856793,0.27621512333333337,0.008413059714560708,0.021019749520000002,361.37197875976557,4.9875999500907735,57.640549631456054,54.30025699653201,10.08474270048009,11.429687125312642,-0.1472126705291698,18.712200164794922,0.5859093333333334,2873.596927488351,0,0.0018941703892778605,0.005226666666666668,0.7428220063447952,0.03501866666666666,0.006190169990683596,0.005292000000000001 +2153,0,0,1.1548471446710749,-0,1.8377064428236367,5.953319986661275,0.0059493333333333325,0.6779152999321619,0.15914466666666668,106.38700040181477,0.5979671635333333,15.346209287643433,0,7.865249991416931,0,7.847790042559306,0.044343264820000006,20.496158281962078,0.7156659999999999,127.09597524007161,0.00776,5.0151604016621905,68.06561133333334,0,431.61395772298175,2827.0928713333333,974.6338755289712,103.456883048879,410.06300354003906,300.3588873632649,0.36858009298642475,0.77622795,0.031820399686694145,0.013534492773333334,0.003741093445569277,0.00583909348,29.094699064890545,16.103455646666667,9.849345286687216,11.876809333333332,31.066802660624187,6.301702,0.35438406467437744,0.18615158126666667,17.659899870554607,0,0.8462110360463461,2.4824942279999997,0,0,0.09375540415445964,0.2733966016666667,0.008336359557385245,0.020805262280000004,361.45597839355463,4.9812255516422255,57.53922674432906,54.14631854843639,10.037283624012286,11.39780300952036,-0.1472126705291698,18.73040024439494,0.5799306666666667,2851.137849603317,0,0.0017778803885448724,0.005173333333333334,0.7322729925314585,0.034661333333333336,0.005967959955645104,0.0052380000000000005 +2154,0,0,1.123635059679965,-0,1.8303607707671892,5.952980041503906,0.005887999999999999,0.6518252938985825,0.15750400000000003,106.42599995930989,0.5918025536,15.176209290822348,0,7.822340091069539,0,7.83286992708842,0.04388611776000001,20.108659426371258,0.7082879999999999,125.81097602844238,0.00768,5.0159504016240435,67.363904,0,431.6429697672526,2797.947584,973.7078704833983,103.1033272025772,409.7340037027995,299.3604526268089,0.36518008758624393,0.7682256,0.030700599464277428,0.01339496192,0.003408652284027388,0.0057788966399999996,28.856798966725666,15.93744064,9.764795144399008,11.754368,30.844902515411377,6.236736,0.3500630632042885,0.1842324928,17.574299971262615,0,0.8384920308987299,2.4569015039999997,0,0,0.09290690471728642,0.27057808,0.00825932971201837,0.020590775040000002,361.5389836629231,4.974851153193678,57.43790385720207,53.992380100340775,9.98982454754448,11.365918893728077,-0.1472126705291698,18.748300393422443,0.573952,2828.6787717182838,0,0.001668730362628897,0.00512,0.7218749970197678,0.034304,0.005753750020327668,0.005184 +2155,0,0,1.0924229746888547,-0,1.8230150987107416,5.952640016873677,0.005826666666666666,0.6267412801583608,0.15586333333333335,106.4640007019043,0.5856379436666667,15.008109331130981,0,7.779670039812724,0,7.817969957987468,0.04342897070000001,19.728260040283203,0.7009099999999999,124.53897603352864,0.0076,5.0167404015858965,66.66219666666667,0,431.6709671020508,2768.8022966666667,972.7788696289061,102.7497713562754,409.4130045572917,298.36201789035294,0.3617860898375511,0.7602232499999999,0.02964119954655568,0.013255431066666667,0.00310584115019689,0.005718699799999999,28.61949888865153,15.771425633333333,9.680104811986288,11.631926666666665,30.6234024365743,6.1717699999999995,0.34581106156110764,0.18231340433333335,17.489000002543133,0,0.8307650337616602,2.43130878,0,0,0.09205690398812294,0.2677595583333333,0.00818338974689444,0.020376287800000004,361.6189829508463,4.96847675474513,57.33658097007509,53.83844165224516,9.942365471076673,11.334034777935795,-0.1472126705291698,18.765900293986004,0.5679733333333334,2806.21969383325,0,0.0015662903412400435,0.005066666666666667,0.7116269965966543,0.03394666666666667,0.0055472300155088305,0.005130000000000001 +2156,0,0,1.0612108896977446,-0,1.8156694266542943,5.952299992243449,0.005765333333333333,0.6026232788960139,0.15422266666666667,106.50200017293294,0.5794733337333333,14.841909170150757,0,7.737239956855774,0,7.8031100034713745,0.042971823640000004,19.354960918426514,0.6935319999999998,123.27997716267903,0.00752,5.017510414123535,65.96048933333334,0,431.6969706217448,2739.6570093333335,971.8458658854165,102.3962155099736,409.10200754801434,297.3635831538969,0.3583940888444583,0.7522209,0.028636399656534195,0.013115900213333333,0.0028300201520323753,0.00565850296,28.382898966471355,15.605410626666666,9.595284700393677,11.509485333333332,30.402302424112957,6.1068039999999995,0.34162506461143494,0.18039431586666668,17.40429989496867,0,0.823028028011322,2.405716056,0,0,0.09120560437440872,0.2649410366666667,0.008108459723492464,0.020161800560000005,361.69698079427076,4.962102356296582,57.2352580829481,53.68450320414954,9.894906394608867,11.302150662143514,-0.1472126705291698,18.78330071767171,0.5619946666666668,2783.760615948216,0,0.001470140307598437,0.005013333333333334,0.7015260010957718,0.03358933333333333,0.0053481500362977386,0.005076000000000001 +2157,0,0,1.0299988047066344,-0,1.8083237545978468,5.951949954032898,0.005704,0.5794352541367213,0.15258200000000002,106.53899955749512,0.5733087238,14.677509228388468,0,7.695039947827657,0,7.788269956906636,0.04251467658000001,18.988561630249023,0.6861539999999998,122.0339781443278,0.0074400000000000004,5.018280466397603,65.25878200000001,0,431.7229690551758,2710.511722,970.9108632405598,102.0426596636718,408.7990036010742,296.36514841744093,0.3550070871909459,0.74421855,0.027682699573536713,0.01297636936,0.0025787692672262588,0.0055983061199999995,28.146799246470135,15.439395619999999,9.510334571202597,11.387044,30.181602478027344,6.041837999999999,0.3375040590763092,0.17847522740000002,17.31999985376994,0,0.8152810384829839,2.380123332,0,0,0.09035290405154228,0.262122515,0.008033059692631165,0.019947313320000003,361.7739817301432,4.955727957848035,57.13393519582111,53.53056475605393,9.847447318141061,11.270266546351232,-0.1472126705291698,18.80050039291382,0.5560160000000001,2761.3015380631828,0,0.001379900291794911,0.004960000000000001,0.6915699938933054,0.033232,0.005156219975712399,0.005022 +2158,0,0,0.9987867197155242,-0,1.8009780825413992,5.951609969139099,0.0056426666666666665,0.5571412493785223,0.15094133333333334,106.57600021362305,0.5671441138666666,14.515008767445883,0,7.653079986572266,0,7.773470004399617,0.042057529520000005,18.628862222035725,0.6787759999999998,120.7999776204427,0.00736,5.019040425618489,64.55707466666667,0,431.7479782104492,2681.3664346666665,969.9718678792317,101.68910381736998,408.5060068766276,295.36671368098496,0.35162309060494107,0.7362162,0.02677939956386884,0.012836838506666667,0.0023498984325366714,0.005538109279999999,27.911298910776775,15.273380613333334,9.425264279047648,11.264602666666667,29.961202144622803,5.976872,0.33344505975643796,0.17655613893333333,17.23609972000122,0,0.8075230369965235,2.354530608,0,0,0.08949900294343631,0.2593039933333333,0.007957229623571038,0.019732826080000005,361.84898122151685,4.949353559399487,57.03261230869412,53.376626307958304,9.799988241673256,11.23838243055895,-0.1472126705291698,18.81730016072591,0.5500373333333334,2738.842460178149,0,0.001295200267729039,0.004906666666666667,0.6817560096581777,0.03287466666666667,0.004971189928861956,0.004968 +2159,0,0,0.9675746347244141,-0,1.793632410484952,5.951260010401408,0.005581333333333333,0.5357052435477575,0.1493006666666667,106.61200014750163,0.5609795039333333,14.354208707809448,0,7.6113399267196655,0,7.758690079053243,0.04160038246000001,18.27586301167806,0.6713979999999998,119.57897631327312,0.00728,5.019780357678731,63.855367333333334,0,431.77098083496094,2652.221147333333,969.0298665364583,101.33554797106818,408.22100830078125,294.3682789445289,0.3482420817017555,0.7282138499999999,0.025923499682297308,0.012697307653333333,0.002141397698627164,0.00547791244,27.67639907201131,15.107365606666667,9.340064207712809,11.142161333333332,29.741302490234375,5.911906,0.32944606244564056,0.17463705046666667,17.152599970499676,0,0.7997570335865021,2.328937884,0,0,0.08864380232989788,0.2564854716666667,0.007882379616300264,0.019518338840000003,361.92197926839185,4.94297916095094,56.93128942156713,53.22268785986269,9.75252916520545,11.20649831476667,-0.1472126705291698,18.83400026957194,0.5440586666666667,2716.3833822931156,0,0.0012157002735572557,0.004853333333333334,0.6720839937527975,0.032517333333333336,0.004792810068465769,0.004914000000000001 +2160,0,0,0.936362549733304,-0,1.7862867384285044,5.950899998346965,0.00552,0.5150952339172363,0.14766,106.64800071716309,0.554814894,14.195308764775595,0,7.569850007692973,0,7.743949969609578,0.041143235400000006,17.929463545481365,0.6640199999999998,118.37097676595052,0.0072,5.0205204884211225,63.15366,0,431.7939758300781,2623.07586,968.0838623046874,100.98199212476638,407.9449996948242,293.36984420807295,0.34486208111047745,0.7202115,0.025109799423565466,0.0125577768,0.0019514470380575706,0.005417715599999999,27.441899299621582,14.9413506,9.254743973414103,11.01972,29.5217022895813,5.84694,0.3255060588320096,0.172717962,17.069600105285645,0,0.791984036564827,2.30334516,0,0,0.08778740279376507,0.25366695,0.0078084495617076755,0.019303851600000005,361.99198404947913,4.936604762502392,56.82996653444014,53.06874941176707,9.705070088737644,11.174614198974387,-0.1472126705291698,18.85040028889974,0.53808,2693.9243044080818,0,0.0011410802447547515,0.0048000000000000004,0.6625500023365021,0.03216,0.004620849969796836,0.004860000000000001 +2161,0,0,0.9051504647421938,-0,1.7789410663720568,5.950549999872844,0.005458666666666666,0.4952802260716756,0.14601933333333333,106.68400128682454,0.5486502840666666,14.038208564122518,0,7.528579990069072,0,7.729229927062988,0.04068608834,17.589464505513508,0.6566419999999998,117.1749776204427,0.00712,5.021250446637471,62.45195266666667,0,431.8159815470378,2593.9305726666666,967.1348775227864,100.62843627846458,407.6790008544922,292.37140947161697,0.34148408224185306,0.71220915,0.024337999522686005,0.012418245946666667,0.0017784063917739938,0.005357518759999999,27.20789909362793,14.775335593333333,9.169313907623291,10.897278666666667,29.302401860555012,5.781974,0.32162205626567203,0.17079887353333334,16.98700014750163,0,0.7842000325520834,2.277752436,0,0,0.08693000425895055,0.2508484283333333,0.007733969677550097,0.019089364360000003,362.0619862874348,4.930230364053844,56.72864364731315,52.91481096367146,9.657611012269838,11.142730083182105,-0.1472126705291698,18.86649990081787,0.5321013333333333,2671.465226523048,0,0.0010710502392612398,0.004746666666666667,0.653152992328008,0.03180266666666667,0.004455059999600053,0.004806 +2162,0,0,0.8739383797510838,-0,1.7715953943156095,5.9501899878184,0.005397333333333333,0.4762282148003578,0.14437866666666668,106.7189998626709,0.5424856741333333,13.882808526357016,0,7.487540086110433,0,7.714540044466655,0.040228941280000007,17.255664984385174,0.6492639999999998,115.99097887674968,0.007039999999999999,5.021980404853821,61.75024533333333,0,431.8369827270508,2564.7852853333334,966.1828613281249,100.27488043216276,407.42000579833984,291.37297473516094,0.33810708423455554,0.7042068,0.02360559906810522,0.012278715093333333,0.0016207558122308303,0.00529732192,26.974399089813232,14.609320586666666,9.08375358581543,10.774837333333332,29.08340247472127,5.717008,0.31779205550750095,0.16887978506666668,16.904799938201904,0,0.7764060298601786,2.252159712,0,0,0.08607140307625134,0.24802990666666666,0.007658969688539703,0.018874877120000005,362.1289850870768,4.923855965605297,56.62732076018616,52.76087251557584,9.610151935802033,11.110845967389825,-0.1472126705291698,18.882400671641033,0.5261226666666666,2649.0061486380146,0,0.0010053102159872651,0.004693333333333334,0.6438900033632914,0.03144533333333333,0.004295239962326984,0.004752000000000001 +2163,0,0,0.8427262947599736,-0,1.764249722259162,5.949829975763957,0.005336,0.4579092115163803,0.142738,106.75400098164876,0.5363210641999999,13.729108413060507,0,7.446720043818156,0,7.699879964192708,0.039771794220000004,16.928165594736736,0.6418859999999998,114.81897799173991,0.00696,5.022690335909526,61.048538,0,431.8569869995117,2535.6399979999997,965.2268625895181,99.92132458586096,407.17100524902344,290.37453999870496,0.33472808202107746,0.69620445,0.02290799965461095,0.01213918424,0.0014771153025018673,0.005237125079999999,26.741299152374268,14.44330558,8.998093446095785,10.652396,28.864701906840008,5.652042,0.31401605904102325,0.1669606966,16.823000113169353,0,0.768604040145874,2.226566988,0,0,0.08521370279292266,0.245211385,0.007584879640489817,0.018660389880000003,362.1939798990885,4.917481567156749,56.52599787305917,52.60693406748022,9.562692859334227,11.078961851597542,-0.1472126705291698,18.89810021718343,0.520144,2626.547070752981,0,9.436152079918733e-4,0.00464,0.6347600072622299,0.031088,0.004141150003609558,0.004698000000000001 +2164,0,0,0.8115142097688635,-0,1.7569040502027145,5.949460069338481,0.005274666666666666,0.44029619296391803,0.14109733333333335,106.7880007425944,0.5301564542666666,13.57710830370585,0,7.406129956245422,0,7.685249964396159,0.03931464716000001,16.60676654179891,0.6345079999999998,113.65997823079427,0.00688,5.02340038617452,60.34683066666667,0,431.87598927815753,2506.4947106666664,964.267862955729,99.56776873955914,406.9310073852539,289.376105262249,0.33135007818539935,0.6882021,0.022242899518460035,0.011999653386666666,0.0013462448356828343,0.00517692824,26.508599122365315,14.277290573333334,8.912313540776571,10.529954666666665,28.64640204111735,5.587076,0.3102910593152046,0.16504160813333335,16.741700013478596,0,0.7607960353295008,2.200974264,0,0,0.0843567034850518,0.24239286333333335,0.007511639695925017,0.018445902640000005,362.25798288981116,4.9111071687082015,56.42467498593218,52.4529956193846,9.51523378286642,11.04707773580526,-0.1472126705291698,18.913500150044758,0.5141653333333334,2604.0879928679474,0,8.857061863333607e-4,0.004586666666666667,0.6257610023021698,0.030730666666666667,0.0039926000172272325,0.0046440000000000006 +2165,0,0,0.7803021247777533,-0,1.7495583781462671,5.949100097020467,0.005213333333333333,0.4233611896634102,0.13945666666666667,106.82200113932292,0.5239918443333333,13.426908334096273,0,7.365770022074382,0,7.670639991760254,0.038857500100000004,16.291266759236652,0.6271299999999999,112.51197878519694,0.0068,5.02409040927887,59.64512333333333,0,431.8939946492513,2477.349423333333,963.3048655192056,99.21421289325734,406.6990000406901,288.37767052579295,0.32797107845544815,0.68019975,0.021610799555977184,0.011860122533333333,0.0012270044050334643,0.0051167313999999995,26.276298840840656,14.111275566666666,8.826423168182373,10.407513333333332,28.42830228805542,5.52211,0.3066150521238645,0.1631225196666667,16.660799821217854,0,0.7529780318339666,2.17538154,0,0,0.08349830284714699,0.2395743416666667,0.007437789618658523,0.018231415400000003,362.31998189290357,4.9047327702596535,56.32335209880519,52.299057171288986,9.467774706398615,11.01519362001298,-0.1472126705291698,18.9287002881368,0.5081866666666667,2581.6289149829136,0,8.313531725434586e-4,0.004533333333333334,0.6168910016616186,0.030373333333333336,0.003849390021059662,0.00459 +2166,0,0,0.7490900397866432,-0,1.7422127060898196,5.948729991912842,0.0051519999999999995,0.40707918256521225,0.137816,106.85600026448567,0.5178272344,13.278308073679606,0,7.3256300290425616,0,7.6560700337092085,0.03840035304,15.981667677561441,0.6197519999999999,111.37497965494792,0.006719999999999999,5.0247803926467896,58.943416,0,431.9099985758464,2448.204136,962.3378601074218,98.86065704695554,406.4750035603841,287.379235789337,0.32459207624197006,0.6721974,0.021009699751933415,0.01172059168,0.0011183440025585394,0.005056534559999999,26.044299125671387,13.94526056,8.740423123041788,10.285072,28.21050198872884,5.457144,0.3029880498846372,0.1612034312,16.580300013224285,0,0.745150034626325,2.149788816,0,0,0.08263840277989705,0.23675582,0.007363359676674008,0.01801692816,362.3799794514973,4.8983583718111054,56.222029211678205,52.14511872319337,9.42031562993081,10.983309504220697,-0.1472126705291698,18.943600177764893,0.502208,2559.16983709788,0,7.80336165917106e-4,0.0044800000000000005,0.6081479986508688,0.030016,0.0037113300058990717,0.004536000000000001 +2167,0,0,0.7178779547955331,-0,1.734867034033372,5.948359966278076,0.005090666666666666,0.39142317573229474,0.13617533333333334,106.88899993896484,0.5116626244666667,13.131407976150513,0,7.2857100168863935,0,7.641529997189839,0.037943205980000005,15.677868207295736,0.6123739999999999,110.25097910563152,0.00664,5.025460481643677,58.24170866666667,0,431.92699178059894,2419.0588486666666,961.3678690592446,98.50710120065372,406.260004679362,286.380801052881,0.32121207813421887,0.66419505,0.020435299413899582,0.011581060826666666,0.0010193436658785988,0.00499633772,25.81269915898641,13.779245553333332,8.654322862625122,10.162630666666665,27.99300193786621,5.392178,0.29940605411926907,0.15928434273333333,16.500199794769287,0,0.7373150239388148,2.124196092,0,0,0.08177730192740758,0.23393729833333335,0.007289779682954152,0.017802440920000002,362.43798319498694,4.891983973362558,56.120706324551215,51.991180275097754,9.372856553463004,10.951425388428415,-0.1472126705291698,18.958200295766193,0.49622933333333336,2536.710759212847,0,7.324521575355902e-4,0.004426666666666667,0.5995290031035742,0.029658666666666667,0.0035782200090276697,0.004482000000000001 +2168,0,0,0.6866658698044229,-0,1.7275213619769245,5.947989980379741,0.005029333333333333,0.3763701717058818,0.13453466666666666,106.92100016276042,0.5054980145333333,12.986107985178629,0,7.246009985605876,0,7.627010027567546,0.03748605892,15.379668792088827,0.6049959999999999,109.13697942097981,0.00656,5.026130477587382,57.540001333333336,0,431.94200134277344,2389.913561333333,960.3928731282551,98.15354535435192,406.0540008544922,285.382366316425,0.3178310791651408,0.6561927,0.01988839978973071,0.011441529973333333,9.29131322967199e-4,0.004936140879999999,25.581399122873943,13.613230546666667,8.568112850189209,10.040189333333332,27.775701840718586,5.327212,0.2958700507879257,0.15736525426666667,16.420499801635742,0,0.7294740329186121,2.098603368,0,0,0.08091490219036739,0.2311187766666667,0.007216999734130998,0.01758795368,362.4939854939778,4.88560957491401,56.019383437424224,51.83724182700213,9.325397476995198,10.919541272636133,-0.1472126705291698,18.97260046005249,0.49025066666666667,2514.251681327813,0,6.875081550485144e-4,0.004373333333333333,0.5910149961709976,0.029301333333333332,0.0034498900058679283,0.0044280000000000005 +2169,0,0,0.6554537848133128,-0,1.7201756899204772,5.947609941164653,0.004967999999999999,0.36189716806014377,0.132894,106.95400110880534,0.4993334046,12.842407703399658,0,7.206539988517761,0,7.612519979476929,0.037028911860000006,15.086969375610352,0.5976179999999999,108.03497886657715,0.00648,5.026790459950765,56.838294,0,431.9560089111328,2360.7682739999996,959.4158630371093,97.7999895080501,405.8560028076172,284.383931579969,0.31444907436768216,0.64819035,0.019367399780700605,0.01130199912,8.46923033047157e-4,0.00487594404,25.350399335225422,13.44721554,8.481802701950073,9.917747999999998,27.558702150980633,5.262246,0.2923770571748416,0.1554461658,16.341300169626873,0,0.721626028418541,2.073010644,0,0,0.08005130290985107,0.228300255,0.0071435597104330855,0.017373466440000002,362.54897816975904,4.879235176465463,55.918060550297234,51.683303378906515,9.277938400527393,10.887657156843852,-0.1472126705291698,18.98680051167806,0.48427200000000004,2491.792603442779,0,6.453221285482869e-4,0.00432,0.5826019992431005,0.028944,0.0033261699912448726,0.004374000000000001 +2170,0,0,0.6242416998222027,-0,1.7128300178640297,5.947229941685994,0.004906666666666666,0.34798115988572437,0.13125333333333333,106.98499997456868,0.49316879466666663,12.70040766398112,0,7.167279958724976,0,7.5980600118637085,0.0365717648,14.799870014190674,0.5902399999999999,106.94397989908855,0.0063999999999999994,5.027450482050578,56.136586666666666,0,431.96900939941406,2331.6229866666663,958.43386332194,97.4464336617483,405.66700490315753,283.385496843513,0.3110630710919698,0.640188,0.018868299511571724,0.011162468266666666,7.720087693693737e-4,0.0048157472,25.119699478149414,13.281200533333333,8.395382563273111,9.795306666666665,27.341902097066242,5.19728,0.28892605006694794,0.15352707733333334,16.262399673461914,0,0.7137680351734161,2.04741792,0,0,0.07918660404781501,0.22548173333333335,0.00706949969753623,0.0171589792,362.6019846598307,4.872860778016915,55.816737663170244,51.5293649308109,9.230479324059587,10.85577304105157,-0.1472126705291698,19.000700155893963,0.47829333333333335,2469.333525557746,0,6.057261295306186e-4,0.004266666666666667,0.5743099947770437,0.028586666666666666,0.003206899952298651,0.004320000000000001 +2171,0,0,0.5930296148310925,-0,1.7054843458075821,5.946849981943767,0.004845333333333333,0.3346001481016477,0.12961266666666665,107.01700083414714,0.4870041847333333,12.55990751584371,0,7.128229975700378,0,7.583629926045735,0.03611461774,14.518070538838705,0.5828619999999999,105.86498006184895,0.006319999999999999,5.028090516726176,55.434879333333335,0,431.9820073445638,2302.477699333333,957.4478607177733,97.0928778154465,405.48600514729816,282.38706210705703,0.3076760719219844,0.6321856499999999,0.018392099688450497,0.011022937413333333,7.037385124325132e-4,0.004755550359999999,24.889199256896973,13.115185526666666,8.30887246131897,9.672865333333332,27.12530215581258,5.132314,0.28551605095465976,0.15160798886666668,16.183899879455566,0,0.7059020350376765,2.021825196,0,0,0.07832080187896888,0.2226632116666667,0.006996239729536076,0.016944491960000002,362.65297953287757,4.866486379568367,55.715414776043254,51.375426482715284,9.18302024759178,10.823888925259288,-0.1472126705291698,19.014400164286297,0.47231466666666666,2446.874447672712,0,5.685611249646172e-4,0.004213333333333334,0.5661359975735346,0.028229333333333332,0.003091900007954488,0.004266000000000001 +2172,0,0,0.5618175298399825,-0,1.6981386737511348,5.946459968884786,0.004783999999999999,0.32173514117797214,0.127972,107.04800160725911,0.48083957479999995,12.421007553736368,0,7.089399973551433,0,7.569230039914449,0.035657470680000004,14.24147097269694,0.5754839999999999,104.79597981770833,0.00624,5.028730471928914,54.733172,0,431.99300893147785,2273.3324119999997,956.4588673909504,96.73932196914468,405.31300354003906,281.388627370601,0.3042880694071452,0.6241833,0.017937499564141035,0.01088340656,6.415212992578745e-4,0.00469535352,24.65899912516276,12.94917052,8.222262144088745,9.550423999999998,26.90900166829427,5.067348,0.28214505314826965,0.14968890040000002,16.105899810791016,0,0.6980290313561758,1.996232472,0,0,0.07745400257408619,0.21984469,0.006923749732474486,0.01673000472,362.7029825846354,4.86011198111982,55.61409188891626,51.22148803461966,9.135561171123975,10.792004809467008,-0.1472126705291698,19.0278000831604,0.46633600000000003,2424.4153697876786,0,5.336771137081087e-4,0.0041600000000000005,0.558078999320666,0.027872,0.0029810399864800274,0.0042120000000000005 +2173,0,0,0.5306054448488723,-0,1.6907930016946873,5.946079969406128,0.004722666666666666,0.3093641400337219,0.12633133333333335,107.07800038655598,0.47467496486666666,12.283607482910156,0,7.050790031750997,0,7.554849942525228,0.03520032362,13.970071713129679,0.5681059999999999,103.73797988891602,0.00616,5.02936049302419,54.031464666666665,0,432.0040105183919,2244.1871246666665,955.4658559163411,96.38576612284288,405.1490020751953,280.390192634145,0.30089807013670605,0.61618095,0.017500899266451597,0.010743875706666666,5.84819097033081e-4,0.0046351566799999995,24.428999265034992,12.783155513333334,8.135552167892456,9.427982666666665,26.692902088165283,5.002382,0.27881204585234326,0.14776981193333333,16.02820022900899,0,0.6901500374078751,1.970639748,0,0,0.07658610368768375,0.21702616833333335,0.006850559768887858,0.016515517480000002,362.75098164876295,4.853737582671272,55.51276900178928,51.067549586524045,9.08810209465617,10.760120693674725,-0.1472126705291698,19.041000525156658,0.46035733333333334,2401.956291902645,0,5.009330949784877e-4,0.0041066666666666665,0.5501369933287302,0.027514666666666666,0.0028741499797130623,0.004158000000000001 +2174,0,0,0.4993933598577621,-0,1.68344732963824,5.945689956347148,0.0046613333333333324,0.2974701349933942,0.12469066666666667,107.10800043741862,0.4685103549333333,12.147707462310791,0,7.012380043665568,0,7.540500005086263,0.034743176560000005,13.703772147496542,0.5607279999999999,102.69098154703777,0.0060799999999999995,5.0299904346466064,53.32975733333333,0,432.01401774088544,2215.041837333333,954.4688669840493,96.03221027654108,404.99299875895184,279.39175789768905,0.29750606666008633,0.6081786,0.017080999445170164,0.010604344853333333,5.331419088179246e-4,0.00457495984,24.199299176534016,12.617140506666667,8.048742095629374,9.305541333333332,26.47690200805664,4.937416,0.2755160505572955,0.14585072346666667,15.950900077819824,0,0.6822630365689596,1.945047024,0,0,0.07571730390191078,0.21420764666666667,0.006776709691621363,0.01630103024,362.7969818115234,4.847363184222724,55.41144611466229,50.91361113842843,9.040643018188364,10.728236577882443,-0.1472126705291698,19.053900082906086,0.4543786666666667,2379.4972140176114,0,4.7020009757640463e-4,0.004053333333333333,0.5423090010881424,0.027157333333333332,0.00277109999054422,0.004104000000000001 +2175,0,0,0.468181274866652,-0,1.6761016575817924,5.945289969444275,0.0046,0.28603313118219376,0.12305,107.13800112406413,0.462345745,12.013407468795776,0,6.97418995698293,0,7.526180068651835,0.0342860295,13.442472775777182,0.5533499999999999,101.6549809773763,0.006,5.030600428581238,52.62805,0,432.0230178833008,2185.8965499999995,953.4678599039712,95.67865443023928,404.84400177001953,278.39332316123307,0.29411306728919345,0.60017625,0.016679399646818638,0.010464814,4.8604273615637794e-4,0.004514763,23.969699223836262,12.4511255,7.9618518352508545,9.1831,26.261201699574787,4.872450000000001,0.2722560490171115,0.143931635,15.874000072479248,0,0.6743670354286829,1.9194543,0,0,0.07484750263392925,0.211389125,0.006703649725144108,0.016086543000000002,362.84098307291663,4.840988785774176,55.3101232275353,50.759672690332806,8.993183941720558,10.696352462090161,-0.1472126705291698,19.06660000483195,0.4484,2357.0381361325776,0,4.4135309387153637e-4,0.004,0.53459199766318,0.026799999999999997,0.0026717500295490026,0.004050000000000001 +2176,0,0,0.4369691898755419,-0,1.6687559855253449,5.944899996121724,0.0045386666666666665,0.27503711978594464,0.12140933333333334,107.16800053914388,0.45618113506666663,11.88060720761617,0,6.936209956804912,0,7.511890014012654,0.03382888244,13.185973087946573,0.5459719999999999,100.62898190816243,0.00592,5.031210462252299,51.92634266666667,0,432.03102111816406,2156.751262666666,952.4628499348958,95.32509858393746,404.7040023803711,277.39488842477704,0.2907170703013738,0.5921738999999999,0.016294799745082855,0.010325283146666666,4.4311458623269573e-4,0.0044545661599999994,23.740299065907795,12.285110493333333,7.874861756960551,9.060658666666665,26.045601844787598,4.8074840000000005,0.2690300519267718,0.14201254653333334,15.797499974568685,0,0.6664640257755915,1.893861576,0,0,0.07397680232922237,0.20857060333333335,0.006631319721539815,0.015872055760000003,362.88398742675776,4.834614387325629,55.20880034040831,50.60573424223719,8.945724865252751,10.66446834629788,-0.1472126705291698,19.079000155131023,0.44242133333333333,2334.579058247544,0,4.1427608812227845e-4,0.003946666666666667,0.5269859979550043,0.026442666666666666,0.002575969983202716,0.003996 +2177,0,0,0.40575710488443173,-0,1.6614103134688976,5.944499969482422,0.004477333333333333,0.2644631216923396,0.11976866666666668,107.19600105285645,0.45001652513333334,11.749207099278768,0,6.898440003395081,0,7.497630039850871,0.03337173538,12.934373617172241,0.5385939999999999,99.61328125,0.00584,5.031800429026286,51.22463533333334,0,432.0380223592122,2127.605975333333,951.45485941569,94.97154273763566,404.573003133138,276.39645368832106,0.2873180682460467,0.58417155,0.015923899598419666,0.010185752293333333,4.03987445073047e-4,0.00439436932,23.511099815368652,12.119095486666666,7.787781596183777,8.938217333333332,25.830201466878254,4.7425180000000005,0.2658380443851153,0.14009345806666668,15.721400101979574,0,0.6585560292005539,1.868268852,0,0,0.07310720284779866,0.20575208166666667,0.006558259716257453,0.01565756852,362.92498524983716,4.828239988877081,55.10747745328132,50.451795794141574,8.898265788784945,10.632584230505598,-0.1472126705291698,19.09120003382365,0.4364426666666667,2312.1199803625104,0,3.8886107843912515e-4,0.0038933333333333333,0.5194880018631617,0.026085333333333332,0.0024836200173012912,0.003942 +2178,0,0,0.37454501989332156,-0,1.65406464141245,5.94409994284312,0.004416,0.2542971173922221,0.11812800000000001,107.22500101725261,0.4438519152,11.619307041168213,0,6.860879937807719,0,7.483390053113301,0.03291458832,12.687474091847738,0.5312159999999999,98.60808118184407,0.0057599999999999995,5.032390475273132,50.522928,0,432.04402414957684,2098.4606879999997,950.4418640136718,94.61798689133386,404.4490000406901,275.3980189518651,0.28391606609026593,0.5761691999999999,0.015568199645106992,0.01004622144,3.683243169992541e-4,0.00433417248,23.28209940592448,11.95308048,7.700611511866252,8.815776,25.615001837412517,4.677552,0.26267704119284946,0.13817436959999999,15.645700057347616,0,0.6506420324246088,1.842676128,0,0,0.07223850240310033,0.20293356,0.0064859197397405905,0.015443081280000003,362.96497853597,4.821865590428533,55.006154566154336,50.29785734604596,8.85080671231714,10.600700114713316,-0.1472126705291698,19.103100458780926,0.430464,2289.6609024774766,0,3.650060801495177e-4,0.00384,0.5120980044205984,0.025727999999999997,0.002394590002950281,0.0038880000000000004 +2179,0,0,0.34333293490221145,-0,1.6467189693560027,5.943699995676677,0.004354666666666666,0.2445211112499237,0.11648733333333335,107.25300025939941,0.43768730526666666,11.490807056427002,0,6.823520024617513,0,7.469190001487732,0.032457441260000004,12.44517469406128,0.5238379999999999,97.61308161417644,0.00568,5.032970428466797,49.82122066666667,0,432.0490315755208,2069.3154006666664,949.4248606363931,94.26443104503204,404.33300018310547,274.39958421540905,0.2805130605896314,0.56816685,0.015226799606656035,0.009906690586666666,3.3581619694208104e-4,0.00427397564,23.053199291229248,11.787065473333334,7.613351424535115,8.693334666666665,25.400002002716064,4.612586,0.25954904158910114,0.13625528113333332,15.570399761199951,0,0.6427200237909952,1.817083404,0,0,0.07136840249101321,0.20011503833333333,0.006414259745118518,0.015228594040000003,363.00298309326166,4.815491191979985,54.904831679027346,50.143918897950336,8.803347635849335,10.568815998921036,-0.1472126705291698,19.114800135294598,0.4244853333333334,2267.2018245924432,0,3.426140732093093e-4,0.0037866666666666665,0.50481299559275306,0.025370666666666666,0.002308750020650526,0.0038340000000000006 +2180,0,0,0.31212084991110134,-0,1.6393732972995552,5.9432899951934814,0.004293333333333333,0.23512110486626625,0.11484666666666668,107.28100077311198,0.4315226953333333,11.363807121912638,0,6.786370038986206,0,7.455010016759236,0.0320002942,12.207475026448568,0.5164599999999999,96.62808163960774,0.0056,5.033550540606181,49.11951333333334,0,432.0540313720703,2040.1701133333331,948.4038594563801,93.91087519873024,404.2250035603841,273.4011494789531,0.2771070599555969,0.5601645,0.014896499458700418,0.009767159733333333,3.061850948142819e-4,0.0042137788,22.82439931233724,11.621050466666667,7.526001254717509,8.570893333333332,25.18510166803996,4.54762,0.2564500446120898,0.13433619266666666,15.495400031407675,0,0.6347890347242355,1.79149068,0,0,0.07049720237652461,0.19729651666666667,0.006341809639707208,0.015014106800000003,363.03898111979163,4.809116793531437,54.803508791900356,49.98998044985472,8.755888559381528,10.536931883128753,-0.1472126705291698,19.126200199127197,0.4185066666666667,2244.7427467074094,0,3.215960702315594e-4,0.0037333333333333333,0.4976319993535678,0.025013333333333332,0.0022259900191177926,0.0037800000000000004 +2181,0,0,0.2809087649199912,-0,1.6320276252431076,5.942890048027039,0.004232,0.22608410194516182,0.11320600000000001,107.30800120035808,0.4253580854,11.238106807072958,0,6.749420007069905,0,7.440850019454956,0.031543147140000005,11.974175532658895,0.5090819999999999,95.65318171183269,0.00552,5.034110466639201,48.417806000000006,0,432.0570373535156,2011.0248259999998,947.3788604736327,93.55731935242844,404.12500254313153,272.4027147424971,0.2737000659108162,0.5521621499999999,0.014576599622766176,0.00962762888,2.791739971144125e-4,0.00415358196,22.595699469248455,11.45503546,7.438571174939473,8.448452,24.97030194600423,4.482654,0.2533800428112348,0.1324171042,15.420899947484335,0,0.6268530289332072,1.7658979559999999,0,0,0.06962480209767818,0.19447799500000001,0.006268629765448471,0.014799619560000003,363.073984781901,4.802742395082889,54.702185904773366,49.836042001759104,8.708429482913722,10.505047767336471,-0.1472126705291698,19.13739999135335,0.412528,2222.2836688223756,0,3.0186906224116683e-4,0.00368,0.49055299907922745,0.024655999999999997,0.0021462000246780613,0.003726 +2182,0,0,0.24969667992888106,-0,1.6246819531866603,5.942480007807414,0.004170666666666666,0.2173930952946345,0.11156533333333335,107.33499972025554,0.41919347546666663,11.113906780878702,0,6.712670008341472,0,7.426729957262675,0.031086000080000002,11.745275974273682,0.5017039999999999,94.68808301289876,0.0054399999999999995,5.03467043240865,47.71609866666667,0,432.06003824869794,1981.8795386666666,946.3498535156249,93.20376350612662,404.0329996744792,271.40428000604106,0.2702910602092743,0.5441598,0.014268799684941769,0.009488098026666666,2.545519055274781e-4,0.00409338512,22.367199420928955,11.289020453333332,7.351061065991719,8.326010666666665,24.755701541900635,4.417688,0.25033904363711673,0.13049801573333333,15.346700112024942,0,0.6189110179742178,1.7403052319999999,0,0,0.06875130285819371,0.19165947333333333,0.006196169725929697,0.014585132320000003,363.10698191324866,4.796367996634342,54.600863017646375,49.68210355366349,8.660970406445918,10.47316365154419,-0.1472126705291698,19.14840014775594,0.4065493333333334,2199.8245909373422,0,2.8335106374773506e-4,0.003626666666666667,0.4835750013589859,0.024298666666666666,0.0020692700248522065,0.0036720000000000004 +2183,0,0,0.21848459493777095,-0,1.6173362811302128,5.9420599937438965,0.004109333333333333,0.2090370940665404,0.10992466666666667,107.36100006103516,0.41302886553333334,10.991106748580933,0,6.676130016644795,0,7.412630081176758,0.030628853020000003,11.520676533381144,0.49432599999999993,93.73288091023763,0.00536,5.035220503807068,47.014391333333336,0,432.06104278564453,1952.734251333333,945.3168538411458,92.85020765982482,403.948003133138,270.4058452695851,0.26687905937433243,0.5361574499999999,0.01397249948543807,0.009348567173333332,2.3210682896509147e-4,0.00403318828,22.13879919052124,11.123005446666667,7.2634609540303545,8.203569333333332,24.54120175043742,4.352722,0.24732504412531853,0.12857892726666667,15.272899945576986,0,0.6109620233376821,1.7147125079999999,0,0,0.06787680213650067,0.18884095166666667,0.00612436980009079,0.014370645080000003,363.1379826863606,4.789993598185794,54.499540130519385,49.528165105567865,8.613511329978111,10.441279535751908,-0.1472126705291698,19.15910005569458,0.4005706666666667,2177.3655130523084,0,2.659700548974797e-4,0.0035733333333333333,0.47669700036446255,0.023941333333333332,0.0019950999800736704,0.003618 +2184,0,0,0.18727250994666078,-0,1.6099906090737652,5.941649993260701,0.0040479999999999995,0.20100309078892073,0.108284,107.38700040181477,0.4068642556,10.869606653849283,0,6.639780084292094,0,7.398559967676799,0.030171705960000003,11.30027691523234,0.48694799999999994,92.78728167215984,0.00528,5.0357604424158735,46.312684000000004,0,432.0620396931966,1923.5889639999998,944.2798563639321,92.49665181352302,403.8709971110026,269.4074105331291,0.26346305509408313,0.5281551,0.013684499620770415,0.009209036319999999,2.116447564427896e-4,0.00397299144,21.910399119059246,10.95699044,7.175780773162842,8.081128,24.32690159479777,4.287756,0.24433804427584013,0.1266598388,15.199399948120117,0,0.6030040283997854,1.6891197839999998,0,0,0.06700130179524422,0.18602243000000002,0.006051779763462643,0.014156157840000003,363.1679814656575,4.783619199737246,54.398217243392395,49.37422665747225,8.566052253510305,10.409395419959626,-0.1472126705291698,19.169500192006428,0.39459200000000005,2154.9064351672746,0,2.496550575112148e-4,0.00352,0.4699169993400574,0.023584,0.0019235900059963267,0.0035640000000000003 +2185,0,0,0.15606042495555067,-0,1.6026449370173177,5.941230018933614,0.003986666666666666,0.19327708457907042,0.10664333333333334,107.4130007425944,0.40069964566666666,10.749406655629477,0,6.603640000025432,0,7.384509960810344,0.029714558900000004,11.083977301915487,0.47956999999999994,91.85118166605632,0.0052,5.036290526390076,45.61097666666667,0,432.06204986572266,1894.4436766666665,943.2378540039061,92.1430959672212,403.802001953125,268.4089757966731,0.2600450615088145,0.5201527499999999,0.013406699678550163,0.009069505466666666,1.929906878406958e-4,0.0039127946,21.682199160257976,10.790975433333333,7.088010668754578,7.958686666666666,24.11260159810384,4.22279,0.24137604236602783,0.12474075033333333,15.126299937566122,0,0.5950420300165812,1.6635270599999998,0,0,0.06612490241726239,0.18320390833333333,0.005978459725156426,0.013941670600000003,363.19598134358716,4.777244801288699,54.29689435626541,49.22028820937663,8.5185931770425,10.377511304167346,-0.1472126705291698,19.17970021565755,0.38861333333333337,2132.447357282241,0,2.3434104999372116e-4,0.003466666666666667,0.46323399990797043,0.023226666666666666,0.0018546500068623573,0.00351 +2186,0,0,0.12484833996444053,-0,1.5952992649608704,5.940810004870097,0.003925333333333333,0.18584808334708214,0.10500266666666667,107.43800099690755,0.3945350357333333,10.630606412887573,0,6.5676900545756025,0,7.370490034421285,0.029257411840000004,10.871877829233805,0.47219199999999995,90.92468325297038,0.0051199999999999996,5.036820491154988,44.909269333333334,0,432.06104278564453,1865.2983893333333,942.1928660074868,91.7895401209194,403.7410024007161,267.4105410602171,0.25662505626678467,0.5121503999999999,0.01313849980942905,0.008929974613333334,1.759836292573406e-4,0.00385259776,21.453999201456707,10.624960426666666,7.000170588493347,7.836245333333332,23.89850155512492,4.157824,0.2384390408794085,0.12282166186666667,15.053600072860718,0,0.5870740314324697,1.6379343359999998,0,0,0.06524750217795372,0.18038538666666667,0.00590584974270314,0.013727183360000002,363.22298177083326,4.770870402840151,54.19557146913842,49.06634976128102,8.471134100574695,10.345627188375063,-0.1472126705291698,19.18970012664795,0.3826346666666667,2109.9882793972074,0,2.199670476935959e-4,0.0034133333333333338,0.45664599786202115,0.022869333333333332,0.0017881800013128668,0.003456 +2187,0,0,0.09363625497333042,-0,1.5879535929044228,5.9403800169626875,0.0038639999999999994,0.17870508134365082,0.10336200000000001,107.46300061543782,0.38837042580000003,10.513106425603231,0,6.53193998336792,0,7.356499950091044,0.028800264780000005,10.663678169250488,0.46481399999999995,90.00748380025227,0.005039999999999999,5.037330508232117,44.207562,0,432.06005096435547,1836.153102,941.1458587646483,91.4359842746176,403.68700154622394,266.4121063237611,0.2532030592362086,0.50414805,0.012876999642079076,0.00879044376,1.604795725143049e-4,0.0037924009200000003,21.22589906056722,10.45894542,6.912240544954936,7.713804,23.68450180689494,4.092858,0.23552604019641876,0.1209025734,14.981300036112467,0,0.579101026058197,1.6123416119999998,0,0,0.06436930224299431,0.17756686500000002,0.005833899757514398,0.013512696120000002,363.2479858398437,4.764496004391603,54.09424858201143,48.9124113131854,8.423675024106888,10.313743072582781,-0.1472126705291698,19.199400107065838,0.37665600000000005,2087.5292015121736,0,2.0647504303876e-4,0.0033600000000000006,0.4501510014136632,0.022512,0.001724090000304083,0.003402 +2188,0,0,0.06242416998222025,-0,1.5806079208479753,5.9399599234263105,0.003802666666666666,0.17183708027005196,0.10172133333333333,107.48700141906738,0.3822058158666667,10.39690645535787,0,6.496380011240642,0,7.342539985974629,0.028343117720000005,10.459378639856974,0.45743599999999995,89.09958267211914,0.004959999999999999,5.0378404060999555,43.505854666666664,0,432.0570576985677,1807.0078146666665,940.100850423177,91.0824284283158,403.64200083414715,265.41367158730515,0.24978005761901537,0.4961456999999999,0.012624099617823958,0.008650912906666667,1.4634452478882545e-4,0.00373220408,20.997799237569172,10.292930413333334,6.824240326881409,7.591362666666666,23.470601399739582,4.027892,0.23263604069749513,0.11898348493333333,14.909299929936727,0,0.5711210320393244,1.5867488879999998,0,0,0.06349020265042782,0.17474834333333333,0.005761149805039167,0.013298208880000002,363.2719853719075,4.758121605943055,53.99292569488444,48.75847286508978,8.376215947639082,10.281858956790499,-0.1472126705291698,19.208900451660156,0.37067733333333336,2065.0701236271398,0,1.9381004070358662e-4,0.003306666666666667,0.443750003973643,0.022154666666666666,0.001662300016808634,0.003348 +2189,0,0,0.03121208499111011,-0,1.573262248791528,5.93953005472819,0.0037413333333333326,0.16523307313521704,0.10008066666666666,107.51100095113118,0.37604120593333334,10.28200634320577,0,6.46101991335551,0,7.3285999695460005,0.027885970660000006,10.258978843688965,0.45005799999999996,88.2008825937907,0.00488,5.038340449333191,42.80414733333333,0,432.05305735270184,1777.8625273333332,939.0568644205728,90.72887258201398,403.60400136311847,264.4152368508491,0.24635305628180504,0.4881433499999999,0.01237929977166156,0.008511382053333334,1.3345647676032968e-4,0.00367200724,20.76979939142863,10.126915406666667,6.736160198847453,7.468921333333332,23.256701628367107,3.9629259999999995,0.22976904238263765,0.11706439646666666,14.837699969609579,0,0.5631330261627833,1.5611561639999998,0,0,0.06261030243088801,0.17192982166666668,0.005687669773275654,0.013083721640000002,363.29398091634107,4.751747207494508,53.89160280775745,48.60453441699416,8.328756871171278,10.249974840998219,-0.1472126705291698,19.21810022989909,0.3646986666666667,2042.6110457421062,0,1.8192203909469148e-4,0.0032533333333333338,0.437439002096653,0.021797333333333335,0.0016027299958902101,0.003294 +2190,0,0,-0,-0,1.5659165767350804,5.93909998734792,0.0036799999999999992,0.15888207157452902,0.09844,107.53399976094563,0.369876596,10.168406009674072,0,6.425860007603963,0,7.314689993858337,0.027428823600000006,10.062379280726114,0.44267999999999996,87.31128311157227,0.0048,5.038830478986104,42.10244,0,432.04805755615234,1748.71724,938.0138498942056,90.37531673571218,403.5750020345052,263.41680211439314,0.24292505532503128,0.48014099999999993,0.012139699732263884,0.0083718512,1.2170643276476767e-4,0.0036118104,20.541799545288086,9.9609004,6.648000160853068,7.34648,23.04300133387248,3.8979599999999994,0.226923036078612,0.115145308,14.766400019327799,0,0.5551400184631348,1.5355634399999998,0,0,0.06173160175482432,0.16911130000000002,0.005614899836170177,0.012869234400000002,363.3149846394856,4.74537280904596,53.79027992063046,48.45059596889855,8.281297794703471,10.218090725205936,-0.1472126705291698,19.227100531260174,0.35872000000000004,2020.1519678570726,0,1.7076403552588695e-4,0.0032000000000000006,0.4312190016110738,0.02144,0.0015452899970114231,0.00324 +2191,0,0,-0,-0,1.558570904678633,5.938660025596619,0.003618666666666666,0.15277606869737306,0.09679933333333333,107.55700047810872,0.36371198606666666,10.05600611368815,0,6.390880028406779,0,7.300810019175212,0.026971676540000007,9.869459788004557,0.43530199999999997,86.43058395385742,0.004719999999999999,5.039320468902588,41.40073266666667,0,432.0430603027344,1719.5719526666667,936.9718526204426,90.02176088941037,403.5529963175456,262.41836737793716,0.23949305589000383,0.47213864999999994,0.011905099730938673,0.008232320346666667,1.1099239479032501e-4,0.0035516135600000003,20.313799381256104,9.794885393333333,6.559770107269287,7.224038666666666,22.82940133412679,3.8329939999999993,0.22409803792834282,0.11322621953333334,14.695500135421753,0,0.5471420188744863,1.5099707159999998,0,0,0.060853902560969196,0.16629277833333336,0.005542779807001352,0.012654747160000002,363.33398437499994,4.738998410597412,53.68895703350347,48.29665752080293,8.233838718235665,10.186206609413654,-0.1472126705291698,19.23580010732015,0.35274133333333335,1997.692889972039,0,1.602900338184554e-4,0.0031466666666666674,0.4250869999329249,0.021082666666666666,0.001489910006057471,0.003186 +2192,0,0,-0,-0,1.5512252326221856,5.93822995821635,0.0035573333333333325,0.14690506582458815,0.09515866666666667,107.5800011952718,0.3575473761333333,9.944876114527384,0,6.3561000029246015,0,7.286950031916301,0.026514529480000007,9.680190165837606,0.42792399999999997,85.55888366699219,0.00464,5.039790391921997,40.69902533333334,0,432.0360692342122,1690.4266653333334,935.9308522542317,89.66820504310856,403.5320002237956,261.4199326414811,0.23605905597408613,0.46413629999999995,0.011677499705304703,0.008092789493333334,6.853075137769338e-5,0.0034914167200000004,20.085899511973064,9.628870386666666,6.47146999835968,7.101597333333332,22.615801334381104,3.7680279999999993,0.22129303589463234,0.11130713106666668,14.625,0,0.5391370256741842,1.4843779919999998,0,0,0.05997490230947733,0.16347425666666668,0.00546986978345861,0.012440259920000002,363.35198211669916,4.7326240121488645,53.58763414637648,48.14271907270731,8.186379641767859,10.154322493621374,-0.1472126705291698,19.244300206502277,0.3467626666666667,1975.2338120870054,0,1.504590327385813e-4,0.003093333333333334,0.41904200116793316,0.02072533333333333,0.001436519999212275,0.003132 +2193,0,0,-0,-0,1.543879560565738,5.937789996465047,0.0034959999999999995,0.1412590630352497,0.093518,107.6019999186198,0.35138276620000003,9.834975957870483,0,6.321509957313538,0,7.273119966189067,0.026057382420000004,9.494500557581583,0.420546,84.695982615153,0.00456,5.040260434150696,39.997318,0,432.02906545003253,1661.281378,934.8888600667317,89.31464919680676,403.5049997965495,260.42149790502515,0.23262205347418785,0.4561339499999999,0.011456399612749616,0.00795325864,0,0.00343121988,19.857999324798584,9.46285538,6.383089900016785,6.979156,22.40230131149292,3.7030619999999996,0.21850803742806116,0.1093880426,14.554800113042196,0,0.5311250239610672,1.4587852679999997,0,0,0.0590949027488629,0.16065573500000002,0.005396219707715015,0.012225772680000002,363.3679835001627,4.7262496137003165,53.48631125924949,47.98878062461169,8.138920565300054,10.122438377829091,-0.1472126705291698,19.25250021616618,0.34078400000000003,1952.7747342019718,0,1.412300298397895e-4,0.0030400000000000006,0.4130839978655179,0.020368,0.0013850399991497397,0.003078 +2194,0,0,-0,-0,1.5365338885092905,5.937349955240886,0.003434666666666666,0.1358310580253601,0.09187733333333334,107.6240005493164,0.3452181562666667,9.726295948028564,0,6.287099997202556,0,7.259319980939229,0.025600235360000004,9.312320868174234,0.413168,83.84178415934245,0.00448,5.040720502535502,39.29561066666667,0,432.0220642089844,1632.1360906666666,933.8478546142577,88.96109335050495,403.47399648030597,259.4230631685692,0.22918405259648958,0.4481315999999999,0.011239199666306376,0.007813727786666667,0,0.00337102304,19.630099137624104,9.296840373333334,6.294639786084493,6.856714666666666,22.18890158335368,3.6380959999999996,0.21574203670024872,0.10746895413333334,14.484899997711182,0,0.5231090188026428,1.4331925439999997,0,0,0.05821390232692162,0.15783721333333334,0.005323279765434563,0.012011285440000002,363.38298288981116,4.719875215251769,53.3849883721225,47.83484217651608,8.091461488832248,10.09055426203681,-0.1472126705291698,19.26050027211507,0.3348053333333334,1930.3156563169382,0,1.325680289786154e-4,0.002986666666666667,0.40720999985933304,0.020010666666666666,0.0013354100131740172,0.0030239999999999998 +2195,0,0,-0,-0,1.5291882164528432,5.936900019645691,0.003373333333333333,0.13061105708281198,0.09023666666666667,107.64600054423015,0.33905354633333334,9.618815819422403,0,6.2528800169626875,0,7.245540062586467,0.025143088300000005,9.133581320444742,0.40579,82.99618466695149,0.004399999999999999,5.041180491447449,38.59390333333334,0,432.0140660603841,1602.9908033333334,932.8068542480468,88.60753750420315,403.43800099690753,258.42462843211314,0.22574505085746446,0.4401292499999999,0.01102789972598354,0.007674196933333334,0,0.0033108262000000003,19.402199268341064,9.130825366666667,6.206119616826375,6.7342733333333324,21.975501537322998,3.5731299999999995,0.21299503495295843,0.10554986566666667,14.4153999487559,0,0.5150890251000723,1.4075998199999997,0,0,0.05733190197497606,0.15501869166666668,0.005250989808700979,0.011796798200000002,363.3969853719075,4.713500816803221,53.28366548499551,47.68090372842046,8.044002412364442,10.058670146244527,-0.1472126705291698,19.268200238545734,0.3288266666666667,1907.8565784319044,0,1.2443702568513496e-4,0.002933333333333334,0.4014200021823247,0.01965333333333333,0.0012875600077677518,0.00297 +2196,0,0,-0,-0,1.5218425443963957,5.936450004577637,0.0033119999999999994,0.12559105766316256,0.08859600000000001,107.66599909464519,0.3328889364,9.512525876363119,0,6.218849976857503,0,7.231789906819661,0.024685941240000005,8.958211660385132,0.398412,82.15918477376302,0.00432,5.041650454203288,37.892196000000006,0,432.0060679117839,1573.845516,931.7648468017577,88.25398165790133,403.3989995320638,257.42619369565716,0.22230305025974909,0.4321268999999999,0.010822199750691652,0.00753466608,0,0.0032506293600000004,19.174299399058025,8.96481036,6.117539644241333,6.611831999999999,21.76220115025838,3.5081639999999994,0.2102650341888269,0.10363077720000001,14.346299966176352,0,0.5070620179176331,1.3820070959999997,0,0,0.05644900258630514,0.15220017000000002,0.00517791979170094,0.011582310960000002,363.407979329427,4.707126418354673,53.18234259786853,47.52696528032484,7.996543335896636,10.026786030452246,-0.1472126705291698,19.275700092315674,0.322848,1885.3975005468708,0,1.1680502514839948e-4,0.0028800000000000006,0.3957120006283124,0.019295999999999997,0.0012414199979199718,0.002916 +2197,0,0,-0,-0,1.5144968723399481,5.936010003089905,0.0032506666666666665,0.12076505459845066,0.08695533333333334,107.6870002746582,0.3267243264666667,9.407415707906088,0,6.185009996096293,0,7.218069990475972,0.024228794180000006,8.786182165145874,0.391034,81.33058420817058,0.00424,5.0421104828516645,37.190488666666674,0,431.99806722005206,1544.7002286666668,930.7238566080728,87.90042581159953,403.35599517822266,256.4277589592012,0.21886004755894342,0.42412454999999993,0.010619299796720346,0.007395135226666667,0,0.0031904325200000005,18.946399370829266,8.798795353333333,6.028889497121175,6.489390666666665,21.54900137583415,3.4431979999999998,0.20755203564961752,0.10171168873333335,14.277499834696451,0,0.499029020468394,1.3564143719999997,0,0,0.05556530226022005,0.14938164833333334,0.005104099866002798,0.011367823720000001,363.41898600260413,4.700752019906126,53.081019710741536,47.37302683222922,7.9490842594288305,9.994901914659964,-0.1472126705291698,19.283000151316326,0.3168693333333334,1862.9384226618372,0,1.096410220876957e-4,0.002826666666666667,0.39008500178654987,0.018938666666666666,0.001196929990934829,0.002862 +2198,0,0,-0,-0,1.5071512002835006,5.9355500141779585,0.003189333333333333,0.11612405255436897,0.08531466666666668,107.70699946085612,0.32055971653333337,9.303465684254965,0,6.151350061098735,0,7.204370021820068,0.023771647120000003,8.617392222086588,0.383656,80.51038487752278,0.00416,5.042570392290751,36.488781333333336,0,431.9900716145833,1515.5549413333333,929.6818542480468,87.54686996529773,403.30999755859375,255.42932422274515,0.2154130476216475,0.4161221999999999,0.010419199708849192,0.0072556043733333336,0,0.00313023568,18.718499183654785,8.632780346666667,5.9401793877283735,6.3669493333333325,21.335801283518474,3.3782319999999997,0.20485603561004004,0.09979260026666667,14.208999951680502,0,0.49099302291870117,1.3308216479999997,0,0,0.05468090188999971,0.14656312666666668,0.00503099977504462,0.011153336480000001,363.4279810587565,4.694377621457578,52.979696823614546,47.219088384133606,7.901625182961024,9.963017798867682,-0.1472126705291698,19.290000120798748,0.3108906666666667,1840.4793447768036,0,9.457998567086179e-5,0.002773333333333334,0.38453900068998337,0.01858133333333333,0.0011540400058341522,0.002808 +2199,0,0,-0,-0,1.4998055282270533,5.935099959373474,0.0031279999999999997,0.11166104922691981,0.08367400000000001,107.72700055440266,0.31439510660000003,9.200665632883707,0,6.1178799867630005,0,7.190700093905131,0.023314500060000003,8.451802651087442,0.376278,79.69848569234212,0.00408,5.0430305401484175,35.787074000000004,0,431.98206837972003,1486.409654,928.6398569742837,87.19331411899591,403.26199595133465,254.43088948628917,0.2119640459616979,0.4081198499999999,0.010223999774704376,0.00711607352,0,0.0030700388400000003,18.490599473317463,8.46676534,5.851399302482605,6.244507999999999,21.122701327006023,3.3132659999999996,0.20217603320876756,0.09787351180000001,14.140900135040283,0,0.4829540227850278,1.3052289239999997,0,0,0.05379570213456949,0.143744605,0.004958559836571415,0.010938849240000001,363.4359817504882,4.688003223009031,52.878373936487556,47.06514993603798,7.854166106493219,9.931133683075402,-0.1472126705291698,19.29670015970866,0.30491200000000007,1818.02026689177,0,0,0.00272,0.3790720005830129,0.018223999999999997,0.0011126900014157097,0.002754 +2200,0,0,-0,-0,1.4924598561706057,5.934639970461528,0.0030666666666666663,0.10737004814048608,0.08203333333333335,107.74600028991699,0.3082304966666667,9.099005619684855,0,6.084579984347026,0,7.177049994468689,0.022857353000000004,8.289342959721884,0.3689,78.89478492736816,0.004,5.043490529060364,35.08536666666667,0,431.97406514485675,1457.2643666666668,927.5978597005208,86.83975827269411,403.2109959920247,253.43245474983317,0.2085140459239483,0.4001174999999999,0.010033399797976017,0.006976542666666667,0,0.0030098420000000004,18.262699604034424,8.300750333333333,5.762569149335225,6.122066666666665,20.909601370493572,3.2482999999999995,0.19951203341285387,0.09595442333333334,14.073199987411499,0,0.47491101920604706,1.2796361999999997,0,0,0.052909902296960354,0.14092608333333334,0.004885329864919186,0.010724362000000001,363.4419835408528,4.681628824560483,52.777051049360566,46.91121148794237,7.806707030025413,9.89924956728312,-0.1472126705291698,19.303300221761067,0.2989333333333334,1795.5611890067364,0,0,0.002666666666666667,0.37368200222651166,0.017866666666666663,0.0010728200043862064,0.0027 +2201,0,0,-0,-0,1.4851141841141582,5.934179981549581,0.003005333333333333,0.10324404761195183,0.08039266666666668,107.76500002543132,0.30206588673333334,8.998465458552042,0,6.051469961802165,0,7.163430015246074,0.022400205940000004,8.12997325261434,0.361522,78.09928448994954,0.00392,5.043950438499451,34.38365933333334,0,431.966064453125,1428.1190793333335,926.5558522542317,86.48620242639231,403.15800221761066,252.43402001337716,0.20506304502487183,0.3921151499999999,0.009844809770584106,0.0068370118133333335,0,0.0029496451600000005,18.034799257914226,8.134735326666666,5.673679192860921,5.999625333333332,20.696601072947185,3.1833339999999994,0.19686303287744522,0.09403533486666668,14.00570019086202,0,0.4668620203932126,1.2540434759999997,0,0,0.052023401794334255,0.13810756166666668,0.004811359802260995,0.010509874760000001,363.4469782511393,4.675254426111935,52.675728162233575,46.75727303984675,7.759247953557607,9.867365451490837,-0.1472126705291698,19.309500058492024,0.2929546666666667,1773.1021111217028,0,0,0.002613333333333334,0.3683690031369527,0.017509333333333328,0.0010343799949623644,0.0026460000000000003 +2202,0,0,-0,-0,1.4777685120577109,5.933720032374064,0.0029439999999999996,0.09927714491883914,0.07875200000000002,107.78400039672852,0.2959012768,8.899045467376709,0,6.018540064493815,0,7.149839997291565,0.021943058880000005,7.973613699277242,0.354144,77.3116849263509,0.00384,5.044420440991719,33.681952,0,431.9580663045247,1398.973792,925.5138549804686,86.1326465800905,403.1030019124349,251.4355852769212,0.20161004612843195,0.3841127999999999,0.00966040991867582,0.00669748096,0,0.00288944832,17.806899706522625,7.96872032,5.584739089012146,5.877183999999999,20.483601252237957,3.1183679999999994,0.19422803074121475,0.0921162464,13.938600063323975,0,0.4588090181350708,1.2284507519999996,0,0,0.05113630214085182,0.13528904,0.004738109807173411,0.010295387520000001,363.4499842325846,4.668880027663388,52.574405275106585,46.603334591751135,7.711788877089801,9.835481335698557,-0.1472126705291698,19.315500259399414,0.28697600000000006,1750.6430332366692,0,0,0.00256,0.3631319999694824,0.017151999999999997,9.973130169479798e-4,0.002592 +2203,0,0,-0,-0,1.4704228400012633,5.933259924252828,0.002882666666666666,0.09546224276224773,0.07711133333333334,107.80200131734212,0.28973666686666666,8.800715366999308,0,5.985790014266968,0,7.136270006497701,0.021485911820000002,7.820223967234294,0.34676599999999996,76.53208478291829,0.00376,5.0448804299036665,32.98024466666667,0,431.95006561279297,1369.8285046666667,924.4718627929686,85.77909073378869,403.04600016276044,250.43715054046518,0.19815604264537492,0.3761104499999999,0.009479969662303725,0.006557950106666667,0,0.0028292514800000003,17.57889970143636,7.802705313333333,5.495738943417867,5.754742666666665,20.270700931549072,3.0534019999999997,0.1916080303490162,0.09019715793333334,13.871900081634521,0,0.45075201988220215,1.2028580279999999,0,0,0.05024860116342703,0.13247051833333334,0.004665509797632694,0.010080900280000003,363.45198059082026,4.66250562921484,52.473082387979595,46.44939614365551,7.664329800621996,9.803597219906274,-0.1472126705291698,19.321299870808918,0.2809973333333334,1728.1839553516354,0,0,0.002506666666666667,0.3579690034190814,0.016794666666666663,9.615769910548503e-4,0.0025380000000000003 +2204,0,0,-0,-0,1.4630771679448158,5.932789961496989,0.002821333333333333,0.09179394195477168,0.07547066666666667,107.81900024414062,0.2835720569333333,8.703485409418741,0,5.953220009803772,0,7.122730016708374,0.021028764760000002,7.669744253158569,0.33938799999999997,75.76038551330566,0.00368,5.045350591341655,32.27853733333333,0,431.9430618286133,1340.6832173333332,923.4288533528645,85.42553488748689,402.98800404866535,249.43871580400918,0.19470104202628136,0.3681080999999999,0.00930089969187975,0.006418419253333333,0,0.00276905464,17.350999355316162,7.636690306666667,5.406688928604126,5.6323013333333325,20.057801246643066,2.9884359999999996,0.18900102749466896,0.08827806946666666,13.805399815241495,0,0.44269301493962604,1.1772653039999998,0,0,0.049362401788433395,0.12965199666666666,0.004592139855958521,0.009866413040000003,363.45298512776685,4.6561312307662925,52.371759500852605,46.2954576955599,7.6168707241541895,9.771713104113992,-0.1472126705291698,19.326899846394856,0.27501866666666674,1705.7248774666018,0,0,0.0024533333333333334,0.35288000106811523,0.01643733333333333,9.271229985946169e-4,0.002484 +2205,0,0,-0,-0,1.4557314958883683,5.93231999874115,0.0027599999999999994,0.0882666390389204,0.07383,107.83699989318848,0.277407447,8.607325315475464,0,5.920819997787476,0,7.109210014343262,0.020571617700000003,7.522124528884888,0.33200999999999997,74.99648602803548,0.0036,5.045810421307881,31.57683,0,431.9350763956706,1311.53793,922.3858489990233,85.07197904118507,402.9280064900716,248.4402810675532,0.19124204168717066,0.3601057499999999,0.009125469718128443,0.0062788884,0,0.0027088578,17.122999668121338,7.4706753,5.317588885625203,5.509859999999999,19.845001220703125,2.9234699999999996,0.18640702962875366,0.086358981,13.739300092061361,0,0.4346280172467232,1.1516725799999998,0,0,0.048477401646474995,0.126833475,0.00451802978447328,0.009651925800000002,363.4519831339518,4.6497568323177445,52.27043661372562,46.14151924746428,7.569411647686384,9.739828988321712,-0.1472126705291698,19.332100073496502,0.26904000000000006,1683.2657995815682,0,0,0.0024000000000000002,0.3478640044728915,0.016079999999999997,8.939040029266229e-4,0.0024300000000000003 +2206,0,0,-0,-0,1.448385823831921,5.9318400621414185,0.002698666666666666,0.08487493731081486,0.07218933333333334,107.85300064086914,0.27124283706666663,8.512225151062012,0,5.888609965642293,0,7.095720012982686,0.020114470640000003,7.3773148854573565,0.324632,74.24028587341309,0.0035199999999999997,5.04628050327301,30.875122666666666,0,431.9270655314128,1282.3926426666667,921.3428497314452,84.71842319488327,402.8659947713216,247.4418463310972,0.18778204172849655,0.3521033999999999,0.008953459716091553,0.006139357546666667,0,0.0026486609600000002,16.894999504089355,7.304660293333333,5.228438814481099,5.387418666666665,19.63210105895996,2.8585039999999995,0.18382702643672624,0.08443989253333334,13.67360003789266,0,0.4265590161085129,1.1260798559999998,0,0,0.04759150184690952,0.12401495333333333,0.004444639819363753,0.009437438560000002,363.45098114013666,4.6433824338691965,52.16911372659863,45.987580799368665,7.521952571218579,9.70794487252943,-0.1472126705291698,19.337199846903484,0.26306133333333337,1660.8067216965346,0,0,0.002346666666666667,0.3429180011153221,0.015722666666666663,8.618749949770669e-4,0.0023760000000000005 +2207,0,0,-0,-0,1.4410401517754734,5.93136998017629,0.0026373333333333327,0.0816136362651984,0.07054866666666668,107.87000020345052,0.2650782271333333,8.418185075124105,0,5.85657000541687,0,7.082260052363078,0.019657323580000004,7.235265254974365,0.317254,73.49168586730957,0.00344,5.046740492184957,30.17341533333333,0,431.9200668334961,1253.2473553333332,920.2998555501301,84.36486734858147,402.8039957682292,246.4434115946412,0.18432004004716873,0.3441010499999999,0.008782299856344858,0.005999826693333333,0,0.00258846412,16.666999499003094,7.138645286666667,5.139238715171814,5.2649773333333325,19.41940100987752,2.793538,0.18125802899400392,0.08252080406666666,13.608100016911825,0,0.41848701735337573,1.100487132,0,0,0.046704601806898914,0.12119643166666666,0.0043719097739085555,0.009222951320000002,363.4469858805338,4.637008035420649,52.06779083947164,45.83364235127305,7.474493494750773,9.676060756737147,-0.1472126705291698,19.342000166575115,0.25708266666666674,1638.347643811501,0,0,0.0022933333333333334,0.3380429993073146,0.015365333333333332,8.309949965526661e-4,0.0023220000000000003 +2208,0,0,-0,-0,1.4336944797190259,5.930890003840129,0.0025759999999999993,0.07847763473788898,0.068908,107.88600158691406,0.25891361719999995,8.325185139973959,0,5.824700037638347,0,7.068819959958394,0.01920017652,7.09591539700826,0.30987599999999993,72.75068537394206,0.0033599999999999997,5.047210534413655,29.471708,0,431.9120635986328,1224.102068,919.256856282552,84.01131150227967,402.73999786376953,245.44497685818519,0.1808580383658409,0.33609869999999986,0.008611959793294469,0.00586029584,0,0.00252826728,16.438899358113606,6.97263028,5.049988667170207,5.142535999999999,19.20660098393758,2.7285719999999998,0.17870202660560608,0.0806017156,13.542999982833862,0,0.4104120184977849,1.074894408,0,0,0.04581700203319391,0.11837791,0.004298399901017547,0.009008464080000004,363.4429855346679,4.630633636972101,51.96646795234465,45.679703903177426,7.427034418282967,9.644176640944865,-0.1472126705291698,19.346500237782795,0.25110400000000005,1615.8885659264672,0,0,0.0022400000000000002,0.33323799818754196,0.015007999999999997,8.012209921920052e-4,0.0022680000000000005 +2209,0,0,-0,-0,1.4263488076625785,5.930410027503967,0.002514666666666666,0.07546213393410046,0.06726733333333333,107.90100034077962,0.2527490072666666,8.233214934666952,0,5.793009996414185,0,7.055409948031108,0.01874302946,6.959215680758159,0.30249799999999993,72.01718775431316,0.00328,5.047680417696635,28.770000666666665,0,431.9050649007161,1194.9567806666664,918.2128499348958,83.65775565597785,402.6759999593099,244.4465421217292,0.17739503582318625,0.32809634999999987,0.008444709858546654,0.0057207649866666665,0,0.0024680704399999997,16.21079953511556,6.806615273333334,4.960688551266988,5.020094666666665,18.99390109380086,2.6636059999999997,0.17615702748298645,0.07868262713333332,13.478200117746988,0,0.4023350179195404,1.049301684,0,0,0.044928601322074734,0.11555938833333333,0.004224149859510362,0.008793976840000004,363.43698374430335,4.624259238523554,51.86514506521766,45.52576545508181,7.379575341815161,9.612292525152585,-0.1472126705291698,19.350800037384033,0.2451253333333334,1593.4294880414336,0,0,0.0021866666666666666,0.32850099603335065,0.014650666666666664,7.725140021648258e-4,0.0022140000000000003 +2210,0,0,-0,-0,1.419003135606131,5.929930051167806,0.0024533333333333325,0.0725626324613889,0.06562666666666667,107.91600036621094,0.24658439733333326,8.142254908879599,0,5.7614900668462115,0,7.0420200030008955,0.0182858824,6.825115879376729,0.29511999999999994,71.2910868326823,0.0031999999999999997,5.048140486081441,28.06829333333333,0,431.8970642089844,1165.8114933333331,917.1688537597655,83.30419980967605,402.60999298095703,243.4481073852732,0.17393003652493158,0.3200939999999999,0.008280389864618579,0.005581234133333333,0,0.0024078736,15.982699553171793,6.640600266666667,4.871338526407878,4.8976533333333325,18.781200885772705,2.5986399999999996,0.1736240287621816,0.07676353866666666,13.41380000114441,0,0.39425301800171536,1.02370896,0,0,0.044039501808583736,0.11274086666666666,0.00415061980796357,0.008579489600000004,363.42998504638666,4.617884840075006,51.76382217809067,45.371827006986194,7.332116265347356,9.580408409360302,-0.1472126705291698,19.354899883270264,0.23914666666666673,1570.9704101564,0,0,0.0021333333333333334,0.3238310019175212,0.014293333333333332,7.448369966975102e-4,0.0021600000000000005 +2211,0,0,-0,-0,1.4116574635496835,5.929440021514893,0.002391999999999999,0.069774530827999115,0.063986,107.93100102742513,0.24041978739999992,8.0523149172465,0,5.730140010515849,0,7.02866001923879,0.017828735340000002,6.6935562292734785,0.28774199999999994,70.57238578796387,0.0031199999999999995,5.04861056804657,27.366585999999998,0,431.8900731404622,1136.6662059999999,916.1248423258462,82.95064396337425,402.54400126139325,242.4496726488172,0.1704640363653501,0.3120916499999999,0.008116459784408411,0.00544170328,0,0.00234767676,15.754499594370523,6.47458526,4.781948526700337,4.775211999999999,18.568500836690266,2.5336739999999995,0.1711010249952475,0.0748444502,13.349599997202555,0,0.386166013777256,0.998116236,0,0,0.043149701630075775,0.10992234499999999,0.004077759804204106,0.008365002360000004,363.4209823608398,4.611510441626458,51.66249929096368,45.21788855889058,7.2846571888795495,9.54852429356802,-0.1472126705291698,19.358700116475422,0.23316800000000004,1548.5113322713664,0,0,0.0020800000000000003,0.3192279984553655,0.013935999999999999,7.181510106117154e-4,0.0021060000000000002 +2212,0,0,-0,-0,1.4043117914932362,5.928950031598409,0.0023306666666666658,0.06709353066980839,0.06234533333333333,107.94500096638997,0.2342551774666666,7.96335490544637,0,5.698970039685567,0,7.015320022900899,0.017371588280000003,6.564516464869182,0.28036399999999995,69.86088689168294,0.0030399999999999997,5.049080491065979,26.664878666666663,0,431.88206736246747,1107.5209186666666,915.0808461507161,82.59708811707243,402.4769999186198,241.45123791236122,0.16699503486355147,0.3040892999999999,0.007955239852890372,0.005302172426666666,0,0.00228747992,15.526299635569254,6.308570253333333,4.6925084590911865,4.652770666666666,18.35590108235677,2.4687079999999995,0.16858902449409166,0.07292536173333333,13.285799900690714,0,0.37807601193586987,0.972523512,0,0,0.0422593013693889,0.10710382333333332,0.004004109922486047,0.008150515120000004,363.4119796752929,4.605136043177911,51.56117640383669,45.06395011079496,7.237198112411744,9.51664017777574,-0.1472126705291698,19.36230007807414,0.22718933333333338,1526.0522543863328,0,0,0.0020266666666666666,0.314690001308918,0.013578666666666666,6.924219972764453e-4,0.0020520000000000004 +2213,0,0,-0,-0,1.3969661194367886,5.928460041681926,0.002269333333333333,0.06451562854150932,0.060704666666666664,107.95900090535481,0.22809056753333326,7.875394741694133,0,5.667959968249003,0,7.002009908358256,0.016914441220000003,6.437946756680806,0.27298599999999995,69.15658632914226,0.0029599999999999995,5.049550493558248,25.96317133333333,0,431.8750635782878,1078.375631333333,914.0358581542968,82.24353227077063,402.40900166829425,240.45280317590522,0.16352503498395285,0.2960869499999999,0.007796569882581632,0.005162641573333334,0,0.0022272830799999997,15.298099756240845,6.142555246666666,4.603018323580424,4.5303293333333325,18.143200874328613,2.403742,0.16608702267209688,0.07100627326666666,13.222299893697103,0,0.3699840158224106,0.946930788,0,0,0.04136820168544849,0.10428530166666666,0.003929739856782059,0.007936027880000003,363.4009857177734,4.598761644729363,51.4598535167097,44.91001166269934,7.189739035943939,9.484756061983457,-0.1472126705291698,19.36559995015462,0.2212106666666667,1503.5931765012992,0,0,0.0019733333333333334,0.3102170005440712,0.013221333333333331,6.676139989091704e-4,0.001998 +2214,0,0,-0,-0,1.389620447380341,5.9279699722925825,0.0022079999999999995,0.06203682813793421,0.05906399999999999,107.9729995727539,0.22192595759999995,7.788394769032796,0,5.637120048205058,0,6.9887300332387285,0.016457294160000004,6.313777009646098,0.26560799999999996,68.4593874613444,0.0028799999999999997,5.050020496050517,25.261463999999997,0,431.8680674235026,1049.2303439999998,912.9908548990884,81.88997642446883,402.34100341796875,239.45436843944924,0.16005303213993707,0.2880845999999999,0.007637949815640847,0.0050231107200000005,0,0.00216708624,15.069799661636353,5.97654024,4.513488332430522,4.407888,17.930601119995117,2.3387759999999997,0.16359502325455347,0.06908718479999999,13.15909997622172,0,0.36188702036937076,0.921338064,0,0,0.040476600639522076,0.10146677999999999,0.003856079866333554,0.007721540640000003,363.38798014322913,4.592387246280815,51.35853062958271,44.756073214603724,7.142279959476133,9.452871946191177,-0.1472126705291698,19.368699709574383,0.21523200000000003,1481.1340986162656,0,0,0.00192,0.305807001888752,0.012863999999999999,6.436959956772625e-4,0.0019440000000000002 +2215,0,0,-0,-0,1.3822747753238938,5.927470048268636,0.002146666666666666,0.05965322659661373,0.057423333333333326,107.98600006103516,0.2157613476666666,7.7023647626241045,0,5.606460054715474,0,6.975469986597697,0.016000147100000004,6.191977302233378,0.25822999999999996,67.76918665568034,0.0027999999999999995,5.050490538279216,24.559756666666665,0,431.8600667317708,1020.0850566666666,911.9458465576171,81.53642057816703,402.2720006306966,238.45593370299324,0.15658103302121162,0.2800822499999999,0.0074793698731809855,0.004883579866666667,0,0.0021068894,14.841399669647217,5.810525233333333,4.423918167750041,4.285446666666666,17.718000888824463,2.2738099999999997,0.16111302251617113,0.06716809633333333,13.096200068791708,0,0.35378601650396985,0.89574534,0,0,0.0395845016464591,0.09864825833333332,0.003783089865464717,0.007507053400000003,363.3749796549479,4.586012847832267,51.25720774245572,44.60213476650811,7.094820883008326,9.420987830398895,-0.1472126705291698,19.37150001525879,0.20925333333333335,1458.675020731232,0,0,0.0018666666666666666,0.30146100372076035,0.012506666666666666,6.206349983888989e-4,0.0018900000000000002 +2216,0,0,-0,-0,1.3749291032674462,5.9269700050354,0.0020853333333333327,0.05736132555951675,0.05578266666666666,107.99899991353352,0.20959673773333326,7.617284615834554,0,5.575960079828898,0,6.96223000685374,0.015543000040000005,6.072507460912068,0.25085199999999996,67.0859858194987,0.0027199999999999993,5.050960461298625,23.858049333333334,0,431.85306549072266,990.9397693333333,910.9008534749348,81.18286473186521,402.2020034790039,237.45749896653723,0.15310703093806902,0.27207989999999993,0.007323169809145232,0.004744049013333334,0,0.00204669256,14.613099495569864,5.644510226666666,4.334298173586528,4.163005333333333,17.50540081659953,2.2088439999999996,0.15863902121782303,0.06524900786666667,13.033699989318848,0,0.34568201502164203,0.8701526159999999,0,0,0.03869180132945379,0.09582973666666665,0.003709309850819409,0.007292566160000003,363.35998026529944,4.57963844938372,51.155884855328736,44.44819631841249,7.047361806540521,9.389103714606613,-0.1472126705291698,19.37410004933675,0.20327466666666666,1436.2159428461982,0,0,0.0018133333333333332,0.2971759960055351,0.012149333333333333,5.984010009948785e-4,0.0018360000000000002 +2217,0,0,-0,-0,1.3675834312109987,5.926470081011455,0.0020239999999999998,0.05515742519249519,0.05414199999999999,108.01100031534831,0.20343212779999995,7.533144593238831,0,5.5456200043360395,0,6.949019988377889,0.015085852980000005,5.955317735671997,0.24347399999999997,66.40968767801921,0.0026399999999999996,5.0514304637908936,23.156342,0,431.8460693359375,961.7944819999999,909.8548533121743,80.8293088855634,402.1319986979167,236.45906423008125,0.14963103085756302,0.26407754999999994,0.007169209886342287,0.004604518160000001,0,0.00198649572,14.384599606196085,5.47849522,4.2446381251017256,4.040564,17.292901039123535,2.143878,0.15617502108216286,0.0633299194,12.971399943033854,0,0.3375760093331337,0.8445598919999999,0,0,0.03780060106267532,0.09301121499999998,0.003634809865616262,0.007078078920000003,363.3439814249674,4.573264050935172,51.054561968201746,44.294257870316876,6.999902730072716,9.357219598814332,-0.1472126705291698,19.376499970753986,0.197296,1413.7568649611646,0,0,0.0017599999999999998,0.2929520010948181,0.011792,5.76964002296639e-4,0.0017820000000000002 +2218,0,0,-0,-0,1.3602377591545511,5.925969958305359,0.0019626666666666664,0.05303822364658117,0.052501333333333323,108.0230000813802,0.1972675178666666,7.449944655100505,0,5.5154500007629395,0,6.9358400503794355,0.014628705920000006,5.840357979138692,0.23609599999999997,65.74028714497884,0.0025599999999999993,5.051900466283162,22.454634666666667,0,431.8380635579427,932.6491946666666,908.8088480631509,80.4757530392616,402.06199900309247,235.46062949362525,0.14615303029616675,0.25607519999999995,0.007015009915145735,0.004464987306666668,0,0.00192629888,14.15619969367981,5.312480213333333,4.154928008715312,3.918122666666666,17.08030064900716,2.078912,0.15371901914477348,0.061410830933333334,12.909500042597452,0,0.32946501423915225,0.8189671679999999,0,0,0.03691060064981381,0.09019269333333332,0.0035610198974609375,0.006863591680000003,363.32698059082026,4.566889652486624,50.953239081074756,44.14031942222125,6.9524436536049095,9.32533548302205,-0.1472126705291698,19.378600120544434,0.1913173333333333,1391.297787076131,0,0,0.0017066666666666667,0.2887880007425944,0.011434666666666666,5.562939962449794e-4,0.001728 +2219,0,0,-0,-0,1.3528920870981038,5.9254599412282305,0.001901333333333333,0.05100052338093519,0.05086066666666665,108.03400039672852,0.1911029079333333,7.3676544825236006,0,5.4854499499003095,0,6.922680020332336,0.014171558860000006,5.727598230044047,0.22871799999999998,65.07758776346843,0.0024799999999999996,5.052370508511861,21.752927333333332,0,431.83106740315753,903.5039073333332,907.7628479003905,80.12219719295979,401.99099985758465,234.46219475716927,0.14267403011520705,0.24807284999999996,0.006862919816436867,0.0043254564533333345,0,0.00186610204,13.92769972483317,5.146465206666667,4.065178016821544,3.795681333333333,16.867700894673664,2.013946,0.15127102037270865,0.059491742466666664,12.847899993260702,0,0.32134900987148285,0.7933744439999999,0,0,0.03601970120022694,0.08737417166666665,0.0034879098917978504,0.006649104440000003,363.30898539225257,4.5605152540380764,50.851916193947766,43.98638097412564,6.904984577137103,9.29345136722977,-0.1472126705291698,19.380399862925213,0.18533866666666665,1368.8387091910975,0,0,0.0016533333333333333,0.2846840023994446,0.011077333333333333,5.363660020520911e-4,0.001674 +2220,0,0,-0,-0,1.3455464150416563,5.9249500433603925,0.0018399999999999996,0.049041121887664,0.049219999999999986,108.04500007629395,0.18493829799999995,7.286284486452739,0,5.455609997113545,0,6.909549951553345,0.013714411800000006,5.616998513539632,0.22133999999999998,64.4215882619222,0.0023999999999999994,5.0528404712677,21.05122,0,431.8240661621094,874.35862,906.716837565104,79.76864134665799,401.9199981689453,233.46376002071327,0.1391950286924839,0.24007049999999996,0.006712809787131846,0.004185925600000001,0,0.0018059052,13.69909954071045,4.9804502,3.975388010342916,3.67324,16.655200640360516,1.9489799999999997,0.14883101855715117,0.057572654,12.786500136057535,0,0.3132310137152672,0.7677817199999999,0,0,0.03512800112366676,0.08455564999999998,0.0034140099111633995,0.006434617200000003,363.2889785766601,4.554140855589528,50.750593306820775,43.83244252603002,6.857525500669298,9.261567251437487,-0.1472126705291698,19.381999969482422,0.17935999999999996,1346.3796313060639,0,0,0.0015999999999999999,0.28063799689213437,0.01072,5.171509983483702e-4,0.00162 +2221,0,0,-0,-0,1.3382007429852087,5.924440105756124,0.0017786666666666662,0.047157020618518196,0.04757933333333332,108.0549996693929,0.1787736880666666,7.205804308255513,0,5.4259300629297895,0,6.896440029144287,0.013257264740000007,5.508508602778117,0.21396199999999999,63.772287686665855,0.002319999999999999,5.0533104340235395,20.34951266666667,0,431.81705983479816,845.2133326666667,905.6698557535806,79.41508550035618,401.8479970296224,232.46532528425726,0.13571402678887048,0.23206814999999995,0.006562229789172609,0.004046394746666668,0,0.00174570836,13.470499674479166,4.814435193333333,3.885557850201925,3.550798666666666,16.4426007270813,1.8840139999999996,0.14639902114868164,0.05565356553333334,12.725500027338663,0,0.30511100838581723,0.7421889959999999,0,0,0.03423540107905865,0.08173712833333333,0.0033393798706432185,0.006220129960000003,363.2689844767252,4.54776645714098,50.649270419693785,43.678504077934406,6.8100664242014926,9.229683135645205,-0.1472126705291698,19.383399963378906,0.1733813333333333,1323.9205534210303,0,0,0.0015466666666666667,0.27664900322755176,0.010362666666666666,4.986259979583944e-4,0.001566 +2222,0,0,-0,-0,1.3308550709287614,5.9239199956258135,0.0017173333333333329,0.045345320366322994,0.045938666666666655,108.06599934895833,0.1726090781333333,7.126224319140117,0,5.396419962247212,0,6.883360107739766,0.012800117680000006,5.40208884080251,0.206584,63.129388173421226,0.0022399999999999994,5.0537904898325605,19.647805333333334,0,431.81006622314453,816.0680453333333,904.6228485107421,79.06152965405437,401.7759958902995,231.46689054780128,0.13223202526569366,0.22406579999999993,0.006411179861364265,0.003906863893333334,0,0.0016855115199999999,13.24179975191752,4.648420186666667,3.7956777811050415,3.428357333333333,16.230100631713867,1.8190479999999998,0.1439750182131926,0.05373447706666667,12.664800008138021,0,0.296988012890021,0.7165962719999999,0,0,0.03334220095227162,0.07891860666666665,0.0032654698782910905,0.006005642720000003,363.2469813028971,4.541392058692433,50.547947532566795,43.52456562983878,6.762607347733686,9.197799019852923,-0.1472126705291698,19.38449986775716,0.16740266666666664,1301.4614755359967,0,0,0.0014933333333333333,0.27271799743175507,0.010005333333333333,4.8076400222877663e-4,0.0015119999999999999 +2223,0,0,-0,-0,1.323509398872314,5.923409978548686,0.0016559999999999995,0.043603219712773957,0.04429799999999999,108.07500012715657,0.16644446819999995,7.047514279683431,0,5.367069999376933,0,6.870300014813741,0.012342970620000006,5.297709067662557,0.199206,62.49308840433756,0.002159999999999999,5.05426041285197,18.946098000000003,0,431.80306243896484,786.922758,903.5748545328775,78.70797380775257,401.7039972941081,230.46845581134528,0.12874902412295341,0.21606344999999993,0.006262049893848598,0.003767333040000001,0,0.00162531468,13.012999773025513,4.48240518,3.705757757027944,3.3059159999999994,16.017500797907513,1.7540819999999997,0.14155701672037443,0.051815388600000005,12.604400078455607,0,0.2888600106040637,0.6910035479999999,0,0,0.032448200819393,0.076100085,0.0031922298949211836,0.0057911554800000025,363.2239837646484,4.535017660243885,50.44662464543981,43.37062718174317,6.715148271265881,9.165914904060642,-0.1472126705291698,19.38539997736613,0.16142399999999996,1279.0023976509628,0,0,0.00144,0.2688419967889786,0.009647999999999999,4.6354199973090243e-4,0.0014579999999999997 +2224,0,0,-0,-0,1.3161637268158666,5.922889947891235,0.001594666666666666,0.04192811871568362,0.042657333333333325,108.08499972025554,0.16027985826666663,6.96968428293864,0,5.337870081265767,0,6.857270002365112,0.011885823560000005,5.195329308509827,0.191828,61.86328856150309,0.0020799999999999994,5.054730455080668,18.244390666666668,0,431.7960688273112,757.7774706666667,902.527857462565,78.35441796145076,401.6320037841797,229.4700210748893,0.1252630235006412,0.20806109999999992,0.0061147199012339115,0.0036278021866666676,0,0.0015651178399999999,12.784199794133505,4.316390173333334,3.615797678629557,3.1834746666666662,15.80500070254008,1.6891159999999998,0.13914701466759047,0.049896300133333335,12.544299999872843,0,0.2807270089785258,0.6654108239999998,0,0,0.03155350095281998,0.07328156333333333,0.003118199878372252,0.005576668240000002,363.1989771525065,4.528643261795338,50.34530175831282,43.21668873364755,6.667689194798075,9.13403078826836,-0.1472126705291698,19.386099974314373,0.1554453333333333,1256.5433197659293,0,0,0.0013866666666666667,0.2650210012992223,0.009290666666666666,4.46936998438711e-4,0.0014039999999999996 +2225,0,0,-0,-0,1.308818054759419,5.922369996706645,0.0015333333333333327,0.04031731809178988,0.04101666666666666,108.09299977620442,0.1541152483333333,6.892714182535808,0,5.308839996655782,0,6.844259937604268,0.011428676500000005,5.094929496447246,0.18445,61.23968823750814,0.001999999999999999,5.055200417836507,17.542683333333336,0,431.7880681355794,728.6321833333334,901.4798482259114,78.00086211514895,401.55899810791016,228.4715863384333,0.12177602325876553,0.2000587499999999,0.005966719860831897,0.0034882713333333343,0,0.0015049209999999998,12.555399815241495,4.150375166666667,3.525797645250956,3.0610333333333326,15.592400550842285,1.6241499999999998,0.13674401367704073,0.04797721166666667,12.484500090281168,0,0.27259300649166107,0.6398180999999998,0,0,0.03065830050036311,0.07046304166666667,0.003043449930070589,0.005362181000000002,363.1739832560221,4.52226886334679,50.24397887118583,43.06275028555193,6.620230118330269,9.102146672476078,-0.1472126705291698,19.386499881744385,0.14946666666666664,1234.0842418808957,0,0,0.0013333333333333335,0.26125499854485196,0.008933333333333331,4.3092799751320854e-4,0.0013499999999999996 +2226,0,0,-0,-0,1.3014723827029715,5.921839992205302,0.0014719999999999994,0.03876851747433344,0.039375999999999994,108.1019999186198,0.14795063839999995,6.816594163576762,0,5.279960036277771,0,6.831279953320821,0.010971529440000006,4.996449788411458,0.177072,60.62248865763346,0.0019199999999999992,5.055680473645528,16.840976000000005,0,431.7810643513997,699.4868960000001,900.4318491617837,77.64730626884715,401.4860026041667,227.4731516019773,0.1182870219151179,0.19205639999999988,0.005820449946137766,0.003348740480000001,0,0.0014447241599999997,12.326499780019125,3.98436016,3.4357575376828513,2.938591999999999,15.379900693893433,1.5591839999999997,0.13434701412916183,0.04605812320000001,12.424999952316284,0,0.26445500801006955,0.6142253759999998,0,0,0.029762400469432276,0.06764452000000001,0.0029694199135216572,0.005147693760000002,363.1479873657226,4.515894464898242,50.14265598405884,42.90881183745631,6.572771041862464,9.070262556683796,-0.1472126705291698,19.386600017547607,0.14348799999999998,1211.625163995862,0,0,0.0012800000000000003,0.2575430025657018,0.008575999999999997,4.154920025030151e-4,0.0012959999999999996 +2227,0,0,-0,-0,1.2941267106465242,5.9213099877039594,0.001410666666666666,0.037279216572642326,0.03773533333333333,108.11000061035156,0.14178602846666663,6.741314133008321,0,5.251239935557048,0,6.818319956461589,0.010514382380000005,4.89985994497935,0.169694,60.011488596598305,0.0018399999999999992,5.056150396664937,16.13926866666667,0,431.7740732828776,670.3416086666667,899.382843017578,77.29375042254534,401.4129918416341,226.47471686552132,0.11479802181323369,0.18405404999999986,0.005675799873036643,0.0032092096266666675,0,0.0013845273199999996,12.09749968846639,3.8183451533333335,3.345667521158854,2.816150666666666,15.167300462722778,1.4942179999999998,0.13195601354042688,0.04413903473333334,12.365700006484985,0,0.2563130060831706,0.5886326519999998,0,0,0.028865900977204244,0.06482599833333334,0.002896049952444931,0.004933206520000002,363.1199849446614,4.509520066449695,50.04133309693185,42.7548733893607,6.525311965394658,9.038378440891513,-0.1472126705291698,19.386500199635822,0.13750933333333332,1189.1660861108285,0,0,0.001226666666666667,0.2538829942544301,0.008218666666666664,4.0060900209937245e-4,0.0012419999999999996 +2228,0,0,-0,-0,1.2867810385900766,5.920789996782939,0.0013493333333333326,0.0358471159512798,0.036094666666666664,108.11800003051758,0.1356214185333333,6.666874090830485,0,5.222680012385051,0,6.8053799867630005,0.010057235320000005,4.80511999130249,0.16231600000000002,59.40668869018555,0.001759999999999999,5.056620438893636,15.437561333333338,0,431.7670618693034,641.1963213333335,898.3338470458983,76.94019457624354,401.33999888102215,225.4762821290653,0.11130802147090435,0.17605169999999987,0.005530309863388538,0.003069678773333334,0,0.0013243304799999997,11.868399699529013,3.6523301466666664,3.2555474837621055,2.693709333333332,14.954700390497843,1.4292519999999997,0.1295710156361262,0.042219946266666676,12.3067999680837,0,0.24816700940330824,0.5630399279999998,0,0,0.027968900899092358,0.062007476666666686,0.002821899931101749,0.004718719280000002,363.09098307291663,4.503145668001147,49.94001020980487,42.60093494126508,6.4778528889268525,9.006494325099233,-0.1472126705291698,19.386200110117596,0.13153066666666663,1166.7070082257947,0,0,0.0011733333333333337,0.2502749984463056,0.00786133333333333,3.86259004396076e-4,0.0011879999999999994 +2229,0,0,-0,-0,1.2794353665336293,5.920250058174133,0.0012879999999999992,0.034470014895002045,0.034454,108.12499936421712,0.12945680859999997,6.593254089355469,0,5.194280068079631,0,6.792480031649272,0.009600088260000004,4.712200323740642,0.15493800000000002,58.80798880259196,0.001679999999999999,5.057090401649475,14.735854000000003,0,431.76007080078125,612.0510340000001,897.2848459879556,76.58663872994173,401.2669957478841,224.47784739260933,0.10781701902548473,0.16804934999999982,0.0053863999200984836,0.002930147920000001,0,0.0012641336399999994,11.639299790064493,3.48631514,3.1653773387273154,2.571267999999999,14.74220069249471,1.3642859999999999,0.12719201296567917,0.040300857800000006,12.248200019200643,0,0.24001800765593848,0.5374472039999998,0,0,0.02707140085597833,0.059188955000000015,0.0027470299197981753,0.004504232040000002,363.0609792073567,4.4967712695526,49.83868732267788,42.44699649316946,6.430393812459046,8.97461020930695,-0.1472126705291698,19.385600090026855,0.12555199999999997,1144.247930340761,0,0,0.0011200000000000003,0.2467190014819304,0.007503999999999996,3.7242400139803067e-4,0.0011339999999999994 +2230,0,0,-0,-0,1.2720896944771818,5.919719974199931,0.0012266666666666658,0.0331458148236076,0.03281333333333333,108.13199996948242,0.12329219866666663,6.5204440752665205,0,5.1660300095876055,0,6.779590090115865,0.009142941200000004,4.621050437291463,0.14756000000000002,58.21528911590576,0.001599999999999999,5.057570457458496,14.034146666666672,0,431.75205993652344,582.9057466666668,896.2348429361978,76.23308288363992,401.1929982503255,223.47941265615333,0.1043240192035834,0.16004699999999983,0.005243949902554353,0.0027906170666666674,0,0.0012039367999999995,11.410099744796753,3.3203001333333333,3.0751673579216003,2.4488266666666654,14.529600540796915,1.2993199999999998,0.1248190136005481,0.03838176933333334,12.189899921417236,0,0.23186600704987845,0.5118544799999998,0,0,0.026173400847862165,0.05637043333333336,0.002672869925542424,0.004289744800000002,363.0299809773762,4.490396871104052,49.73736443555089,42.29305804507384,6.382934735991241,8.942726093514668,-0.1472126705291698,19.38480011622111,0.11957333333333331,1121.7888524557275,0,0,0.0010666666666666672,0.24321300039688745,0.007146666666666662,3.5908499800522503e-4,0.0010799999999999994 +2231,0,0,-0,-0,1.2647440224207342,5.919180075327556,0.0011653333333333325,0.03187261428683996,0.031172666666666664,108.13799985249837,0.1171275887333333,6.44844392935435,0,5.137930075327556,0,6.766729990641276,0.008685794140000005,4.531660636266072,0.14018200000000003,57.62868881225586,0.001519999999999999,5.058040539423625,13.332439333333337,0,431.74506123860675,553.7604593333334,895.1848500569661,75.87952703733812,401.11999766031903,222.48097791969732,0.10082801741858323,0.15204464999999984,0.005100529834938546,0.002651086213333334,0,0.0011437399599999996,11.180899937947592,3.1542851266666667,2.984927256902059,2.3263853333333318,14.316900491714478,1.234354,0.12245101171235244,0.03646268086666668,12.131799936294556,0,0.22371200720469156,0.48626175599999977,0,0,0.025276800617575645,0.05355191166666669,0.002599379940268894,0.004075257560000002,362.9979807535807,4.484022472655504,49.6360415484239,42.139119596978226,6.335475659523436,8.910841977722386,-0.1472126705291698,19.383699893951416,0.11359466666666665,1099.3297745706939,0,0,0.0010133333333333338,0.23975700015823045,0.0067893333333333295,3.4622300396828604e-4,0.0010259999999999994 +2232,0,0,-0,-0,1.257398350364287,5.91863997777303,0.001103999999999999,0.03064821350077788,0.029531999999999996,108.14400100708008,0.11096297879999997,6.377243876457214,0,5.109989960988362,0,6.753899971644084,0.008228647080000004,4.443970839182536,0.132804,57.04788907368978,0.001439999999999999,5.058510422706604,12.630732000000004,0,431.7380625406901,524.615172,894.1338551839192,75.5259711910363,401.04600016276044,221.48254318324135,0.09733151644468307,0.14404229999999987,0.004956199903972447,0.0025115553600000007,0,0.0010835431199999995,10.951599677403768,2.98827012,2.8946272134780884,2.2039439999999986,14.104300498962402,1.169388,0.12008901250859101,0.03454359240000001,12.074100017547607,0,0.21555300801992416,0.46066903199999976,0,0,0.024381500979264576,0.050733390000000024,0.002525119964654247,0.0038607703200000017,362.96497853597,4.477648074206956,49.53471866129691,41.9851811488826,6.288016583055629,8.878957861930106,-0.1472126705291698,19.382400194803875,0.10761599999999998,1076.8706966856603,0,0,9.600000000000005e-4,0.23634999866286913,0.006431999999999996,3.338220000538665e-4,9.719999999999994e-4 +2233,0,0,-0,-0,1.2500526783078394,5.918089985847473,0.0010426666666666657,0.029470913112163544,0.02789133333333333,108.15000025431316,0.10479836886666663,6.306823809941609,0,5.0821999708811445,0,6.741089979807536,0.007771500020000004,4.357960939407349,0.125426,56.472989082336426,0.0013599999999999988,5.058990399042766,11.929024666666669,0,431.73106384277344,495.4698846666667,893.0838470458983,75.1724153447345,400.9719950358073,220.48410844678534,0.09383371658623219,0.13603994999999988,0.004813349999797841,0.0023720245066666673,0,0.0010233462799999996,10.7221999168396,2.822255113333333,2.8042971889177957,2.081502666666665,13.891700347264608,1.104422,0.11773101178308328,0.03262450393333335,12.016599973042807,0,0.20738900701204935,0.43507630799999975,0,0,0.023485300752023857,0.04791486833333335,0.002450119936838746,0.0036462830800000016,362.93098958333326,4.471273675758408,49.43339577416992,41.83124270078699,6.240557506587823,8.847073746137823,-0.1472126705291698,19.380899906158447,0.10163733333333332,1054.4116188006267,0,0,9.066666666666671e-4,0.23299200211962065,0.006074666666666663,3.2186599855776876e-4,9.179999999999994e-4 +2234,0,0,-0,-0,1.2427070062513919,5.917549967765808,9.813333333333323e-4,0.028338912564019363,0.026250666666666662,108.15500005086263,0.0986337589333333,6.237193862597148,0,5.0545601050059,0,6.728299975395203,0.007314352960000004,4.273601134618123,0.118048,55.90388933817545,0.0012799999999999988,5.059460520744324,11.227317333333335,0,431.7240626017253,466.3245973333334,892.0328521728514,74.8188594984327,400.8979975382487,219.48567371032934,0.09033491524557273,0.12803759999999992,0.004671889939345419,0.002232493653333334,0,9.631494399999996e-4,10.492699782053629,2.6562401066666665,2.713927149772644,1.9590613333333315,13.679000536600748,1.0394560000000002,0.11537901125848293,0.03070541546666668,11.959399859110514,0,0.19922300800681114,0.40948358399999973,0,0,0.02258830051869154,0.04509634666666669,0.002375839937788745,0.0034317958400000015,362.8949839274088,4.464899277309861,49.332072887042926,41.67730425269137,6.193098430120018,8.815189630345543,-0.1472126705291698,19.379100163777668,0.09565866666666664,1031.952540915593,0,0,8.533333333333338e-4,0.2296819972495238,0.0057173333333333295,3.103380076936446e-4,8.639999999999995e-4 +2235,0,0,-0,-0,1.2353613341949443,5.91700001557668,9.199999999999989e-4,0.02725031226873398,0.024609999999999993,108.15899976094563,0.09246914899999997,6.168323755264282,0,5.027069965998332,0,6.715540011723836,0.006857205900000003,4.190851370493571,0.11066999999999999,55.34058984120687,0.0011999999999999988,5.059930443763733,10.52561,0,431.71706136067706,437.17931,890.9808553059895,74.4653036521309,400.8250045776367,218.48723897387333,0.08683501432339351,0.12003524999999993,0.004529389940823118,0.0020929628000000006,0,9.029525999999996e-4,10.26319988568624,2.4902251,2.6235170364379883,1.8366199999999981,13.46630048751831,0.9744900000000003,0.1130310104538997,0.028786327000000014,11.902499993642172,0,0.19105500852068266,0.3838908599999997,0,0,0.02169050058970849,0.04227782500000002,0.002302229947720965,0.0032173086000000014,362.8589833577473,4.458524878861313,49.23074999991594,41.523365804595755,6.1456393536522125,8.78330551455326,-0.1472126705291698,19.377000013987224,0.08967999999999998,1009.4934630305594,0,0,8.000000000000004e-4,0.22641799971461296,0.005359999999999997,2.9922300260902074e-4,8.099999999999995e-4 +2236,0,0,-0,-0,1.228015662138497,5.916450023651123,8.586666666666656e-4,0.026203611865639687,0.022969333333333328,108.164000193278,0.08630453906666664,6.1002137660980225,0,4.99974004427592,0,6.702799995740254,0.006400058840000004,4.10970155398051,0.103292,54.782989501953125,0.0011199999999999988,5.060410459836324,9.823902666666665,0,431.7100652058919,408.0340226666666,889.9288482666014,74.11174780582908,400.7509994506836,217.48880423741736,0.08333411316076915,0.11203289999999995,0.004388259956613183,0.001953431946666667,0,8.427557599999997e-4,10.033599774042765,2.3242100933333334,2.533066987991333,1.7141786666666647,13.253600279490152,0.9095240000000004,0.11068800898889701,0.02686723853333335,11.845899979273478,0,0.18288100386659303,0.3582981359999997,0,0,0.020791900499413412,0.03945930333333335,0.0022278399555943906,0.0030028213600000013,362.82098134358716,4.452150480412765,49.12942711278895,41.36942735650013,6.098180277184406,8.751421398760979,-0.1472126705291698,19.374799887339275,0.08370133333333332,987.0343851455258,0,0,7.46666666666667e-4,0.22320199881990752,0.005002666666666664,2.885060045324887e-4,7.559999999999995e-4 +2237,0,0,-0,-0,1.2206699900820495,5.915900031725566,7.973333333333322e-4,0.025197011418640614,0.021328666666666656,108.16800117492676,0.08013992913333332,6.032863696416219,0,4.97255011399587,0,6.69008998076121,0.0059429117800000025,4.030121644337972,0.09591399999999997,54.23098913828532,0.0010399999999999988,5.060880382855733,9.122195333333332,0,431.7020670572917,378.8887353333333,888.8768412272134,73.75819195952728,400.676996866862,216.49036950096135,0.0798319112509489,0.10403054999999997,0.004248409920061628,0.0018139010933333338,0,7.825589199999996e-4,9.8039398193359375,2.158195086666667,2.4425669511159263,1.5917373333333313,13.040900389353434,0.8445580000000006,0.10834900848567486,0.02494815006666668,11.789499918619791,0,0.17470300445954004,0.3327054119999997,0,0,0.019892600520203512,0.036640781666666684,0.0021527199811923006,0.002788334120000001,362.78298441569007,4.445776081964218,49.02810422566196,41.21548890840452,6.0507212007166,8.719537282968698,-0.1472126705291698,19.372200171152752,0.07772266666666666,964.5753072604922,0,0,6.933333333333337e-4,0.22002999857068062,0.004645333333333331,2.781729999696836e-4,7.019999999999996e-4 +2238,0,0,-0,-0,1.213324318025602,5.915340065956116,7.359999999999988e-4,0.024229210956643026,0.01968799999999999,108.17100079854329,0.07397531919999997,5.966263651847839,0,4.9455099900563555,0,6.67740003267924,0.005485764720000003,3.9520618319511414,0.08853599999999998,53.68448956807455,9.599999999999986e-4,5.061360438664754,8.420487999999997,0,431.69506581624347,349.7434479999999,887.8238525390624,73.40463611322548,400.6030044555664,215.49193476450534,0.07632641183833282,0.09602819999999998,0.004107409932961066,0.0016743702400000005,0,7.223620799999997e-4,9.574199994405111,1.9921800799999998,2.3520369132359824,1.4692959999999977,12.828200340270996,0.7795920000000006,0.10601400770246983,0.02302906160000002,11.733500083287558,0,0.16652200495203337,0.3071126879999997,0,0,0.0189927004588147,0.033822260000000014,0.002078319957945496,0.002573846880000001,362.7429835001627,4.43940168351567,48.92678133853497,41.0615504603089,6.003262124248795,8.687653167176416,-0.1472126705291698,19.369500001271565,0.07174399999999997,942.1162293754585,0,0,6.400000000000003e-4,0.21690400317311287,0.004287999999999997,2.6821100133626413e-4,6.479999999999996e-4 +2239,0,0,-0,-0,1.2059786459691546,5.914780060450236,6.746666666666654e-4,0.02329851035028696,0.018047333333333318,108.1740010579427,0.06781070926666664,5.900393565495809,0,4.9186199108759565,0,6.664739966392517,0.0050286176600000025,3.8754920164744058,0.08115799999999997,53.14358997344971,8.799999999999986e-4,5.061830480893453,7.718780666666663,0,431.6880645751953,320.5981606666665,886.7708485921223,73.05108026692366,400.5289993286133,214.49350002804937,0.07282000904281934,0.08802585,0.003965329883309702,0.001534839386666667,0,6.621652399999997e-4,9.344369967778524,1.8261650733333332,2.261456867059072,1.3468546666666643,12.615400155385336,0.7146260000000006,0.10368400750060876,0.021109973133333352,11.677699963251749,0,0.15834000706672668,0.2815199639999997,0,0,0.01809210019807021,0.031003738333333346,0.002004589963083466,0.002359359640000001,362.70198567708326,4.433027285067123,48.82545845140798,40.90761201221328,5.955803047780989,8.655769051384135,-0.1472126705291698,19.36650021870931,0.06576533333333331,919.6571514904249,0,0,5.86666666666667e-4,0.2138229993482431,0.003930666666666664,2.586049983316722e-4,5.939999999999997e-4 +2240,0,0,-0,-0,1.198632973912707,5.914219975471497,6.13333333333332e-4,0.022403710211316746,0.016406666666666653,108.17700004577637,0.061646099333333315,5.835253596305847,0,4.891870021820068,0,6.6520999272664385,0.004571470600000002,3.8004021644592285,0.07377999999999996,52.60809008280436,7.999999999999986e-4,5.062300403912862,7.017073333333329,0,431.6810607910156,291.4528733333332,885.7178446451821,72.69752442062186,400.4540023803711,213.49506529159336,0.06931251101195812,0.08002350000000003,0.003824579956320425,0.0013953085333333337,0,6.019683999999997e-4,9.114479939142862,1.6601500666666666,2.1708468198776245,1.224413333333331,12.402600208918253,0.6496600000000008,0.1013570073992014,0.019190884666666685,11.622199853261312,0,0.15015200401345888,0.25592723999999967,0,0,0.017191000593205292,0.02818521666666668,0.0019300799952664722,0.002144872400000001,362.6609776814778,4.426652886618575,48.72413556428099,40.75367356411766,5.908343971313183,8.623884935591853,-0.1472126705291698,19.363199869791668,0.059786666666666655,897.1980736053913,0,0,5.333333333333336e-4,0.21078500151634216,0.003573333333333331,2.493440018345912e-4,5.399999999999997e-4 +2241,0,0,-0,-0,1.1912873018562595,5.913660009702046,5.519999999999989e-4,0.02154310963427027,0.014765999999999987,108.1790002187093,0.055481489399999986,5.770833492279053,0,4.865270018577576,0,6.639490008354187,0.004114323540000002,3.726762314637502,0.06640199999999996,52.07808971405029,7.199999999999987e-4,5.062780459721883,6.315365999999996,0,431.67406463623047,262.30758599999984,884.66384379069,72.34396857432006,400.3799997965495,212.49663055513736,0.06580400777359803,0.07202115000000002,0.0036850699495213726,0.0012557776800000003,0,5.417715599999997e-4,8.884499788284302,1.49413506,2.0801867246627808,1.1019719999999977,12.189800341924032,0.5846940000000007,0.09903390457232793,0.017271796200000016,11.566999991734823,0,0.14195900410413742,0.2303345159999997,0,0,0.016289200478543837,0.025366695000000012,0.0018548299558460712,0.0019303851600000008,362.6179809570312,4.420278488170027,48.622812677154,40.599735116022046,5.860884894845377,8.592000819799571,-0.1472126705291698,19.359699885050457,0.05380799999999999,874.7389957203576,0,0,4.8000000000000023e-4,0.20779099936286607,0.003215999999999998,2.404140007759755e-4,4.859999999999997e-4 +2242,0,0,-0,-0,1.1839416297998122,5.913089990615845,4.906666666666656e-4,0.020715709154804546,0.013125333333333322,108.18099975585938,0.04931687946666665,5.707123478253682,0,4.838819980621338,0,6.626889944076538,0.003657176480000002,3.65452241897583,0.059023999999999965,51.55339050292969,6.399999999999989e-4,5.063250422477722,5.613658666666663,0,431.6670608520508,233.16229866666654,883.6098581949868,71.99041272801824,400.30599721272785,211.49819581868138,0.06229440743724505,0.06401880000000001,0.003544379937617729,0.001116246826666667,0,4.815747199999998e-4,8.654449939727783,1.3281200533333333,1.9894966582457225,0.9795306666666648,11.976900259653727,0.5197280000000006,0.09671450530489285,0.015352707733333349,11.51200008392334,0,0.13376500457525253,0.20474179199999973,0,0,0.01538700028322637,0.022548173333333345,0.001780309956908847,0.0017158979200000007,362.5739822387695,4.41390408972148,48.52148979002701,40.44579666792643,5.8134258183775716,8.56011670400729,-0.1472126705291698,19.35599994659424,0.04782933333333332,852.279917835324,0,0,4.266666666666669e-4,0.20483899985750517,0.0028586666666666647,2.3180499799006307e-4,4.3199999999999977e-4 +2243,0,0,-0,-0,1.1765959577433647,5.912519971529643,4.2933333333333246e-4,0.01992000887791316,0.011484666666666657,108.18199984232585,0.04315226953333332,5.644123514493306,0,4.812510013580322,0,6.614330013593038,0.003200029420000002,3.5836825569470725,0.05164599999999997,51.03399054209391,5.599999999999991e-4,5.063730478286743,4.911951333333331,0,431.6600697835286,204.01701133333324,882.5548451741536,71.63685688171644,400.2319971720378,210.49976108222538,0.05878380655000607,0.05601645000000002,0.0034049299623196325,9.767159733333336e-4,0,4.2137787999999986e-4,8.424320062001547,1.1621050466666667,1.8987566033999126,0.8570893333333316,11.764000097910563,0.45476200000000055,0.09439870404700439,0.013433619266666679,11.457300106684366,0,0.1255670034637054,0.17914906799999977,0,0,0.014484100121383866,0.019729651666666674,0.0017064599863563974,0.0015014106800000006,362.5299809773762,4.407529691272932,48.42016690290002,40.29185821983081,5.765966741909766,8.528232588215008,-0.1472126705291698,19.35200007756551,0.04185066666666666,829.8208399502903,0,0,3.733333333333335e-4,0.20192900051673254,0.002501333333333332,2.2350300059770234e-4,3.7799999999999976e-4 +2244,0,0,-0,-0,1.1692502856869171,5.9119499524434405,3.6799999999999924e-4,0.01915490875641505,0.009843999999999992,108.1830005645752,0.036987659599999986,5.581813414891561,0,4.786339958508809,0,6.601779977480571,0.0027428823600000015,3.5142027139663696,0.044267999999999974,50.51979033152262,4.7999999999999914e-4,5.064200401306152,4.210243999999998,0,431.65206654866535,174.87172399999992,881.5008392333983,71.28330103541464,400.1579996744792,209.5013263457694,0.05527190584689379,0.04801410000000001,0.003266629995778203,8.371851200000002e-4,0,3.6118103999999986e-4,8.194109996159872,0.9960900399999999,1.8079765637715657,0.7346479999999985,11.551100174585978,0.3897960000000005,0.09208620215455691,0.011514530800000011,11.402900139490763,0,0.1173680021117131,0.1535563439999998,0,0,0.013580800189326206,0.016911130000000007,0.0016318299846413236,0.0012869234400000006,362.48398081461585,4.401155292824384,48.31884401577303,40.13791977173519,5.71850766544196,8.496348472422726,-0.1472126705291698,19.34779977798462,0.03587199999999999,807.3617620652566,0,0,3.2000000000000013e-4,0.19906000047922134,0.0021439999999999983,2.154989997507073e-4,3.239999999999998e-4 +2245,0,0,-0,-0,1.1619046136304698,5.911379973093669,3.06666666666666e-4,0.018419208315511543,0.008203333333333326,108.18400065104167,0.030823049666666658,5.520193378130595,0,4.7603200276692705,0,6.589269995689392,0.002285735300000001,3.4460728565851846,0.03688999999999998,50.01089096069336,3.999999999999993e-4,5.064670443534851,3.5085366666666644,0,431.6450678507487,145.7264366666666,880.444839477539,70.92974518911282,400.08399963378906,208.5028916093134,0.05175670422613621,0.04001175000000001,0.0031270799809135497,6.976542666666669e-4,0,3.0098419999999987e-4,7.963819940884908,0.8300750333333333,1.7171564996242523,0.6122066666666655,11.338200012842814,0.3248300000000004,0.0897769033908844,0.009595442333333343,11.34880002339681,0,0.10916300242145856,0.12796361999999983,0,0,0.012679000229885181,0.01409260833333334,0.0015564599986343335,0.0010724362000000005,362.4369812011718,4.394780894375836,48.21752112864604,39.983981323639576,5.671048588974154,8.464464356630444,-0.1472126705291698,19.343300183614094,0.029893333333333327,784.9026841802229,0,0,2.666666666666668e-4,0.19623300060629845,0.0017866666666666656,2.077819978391441e-4,2.6999999999999984e-4 +2246,0,0,-0,-0,1.1545589415740223,5.910800019900004,2.453333333333328e-4,0.01771180781846245,0.006562666666666661,108.1839993794759,0.02465843973333333,5.459263364473979,0,4.734439969062805,0,6.576769987742106,0.0018285882400000011,3.379253009955088,0.029511999999999983,49.50709088643392,3.199999999999995e-4,5.065150499343872,2.806829333333332,0,431.63805898030597,116.58114933333329,879.3888448079426,70.57618934281102,400.00999704996747,207.5044568728574,0.04824050422757864,0.032009400000000014,0.0029886799942081175,5.581234133333335e-4,0,2.4078735999999993e-4,7.733449935913086,0.6640600266666667,1.626296450694402,0.4897653333333324,11.125200112660727,0.2598640000000003,0.08747070282697678,0.0076763538666666745,11.294900099436441,0,0.10095300152897835,0.10237089599999988,0,0,0.011778400201971332,0.011274086666666672,0.0014818199949028592,8.579489600000004e-4,362.3899841308593,4.388406495927288,48.11619824151906,39.83004287554396,5.623589512506348,8.432580240838163,-0.1472126705291698,19.338599999745686,0.02391466666666666,762.4436062951893,0,0,2.1333333333333344e-4,0.1934449995557467,0.0014293333333333324,2.003420001225701e-4,2.1599999999999988e-4 +2247,0,0,-0,-0,1.1472132695175747,5.9102199872334795,1.8399999999999965e-4,0.017031607528527577,0.004921999999999996,108.18299929300944,0.0184938298,5.399003267288208,0,4.708699981371562,0,6.564299980799357,0.0013714411800000007,3.3137231270472207,0.022133999999999987,49.00829060872396,2.3999999999999965e-4,5.065620422363281,2.105121999999999,0,431.6310679117839,87.43586199999996,878.3328399658202,70.22263349650922,399.93599700927734,206.5060221364014,0.0447233027468125,0.02400705000000001,0.0028513700235635042,4.185925600000001e-4,0,1.8059051999999993e-4,7.503000020980835,0.49804502000000017,1.535396416982015,0.3673239999999993,10.912200212478638,0.1948980000000003,0.08516740115980308,0.005757265400000006,11.241299947102865,0,0.09274160116910934,0.07677817199999992,0,0,0.010876900128399333,0.008455565000000005,0.001407839988435929,6.434617200000003e-4,362.3409856160481,4.38203209747874,48.01487535439207,39.676104427448344,5.576130436038543,8.400696125045881,-0.1472126705291698,19.333699862162273,0.017936,739.9845284101556,0,0,1.600000000000001e-4,0.190696998188893,0.0010719999999999996,1.931669988456027e-4,1.6199999999999993e-4 +2248,0,0,-0,-0,1.1398675974611272,5.909639994303386,1.2266666666666643e-4,0.016377407126128674,0.0032813333333333305,108.18299992879231,0.012329219866666657,5.33940331141154,0,4.683100024859111,0,6.551850001017253,9.142941200000003e-4,3.2494632999102273,0.014755999999999991,48.514591217041016,1.5999999999999966e-4,5.066100438435872,1.4034146666666656,0,431.6230697631836,58.29057466666663,877.2768452962239,69.86907765020742,399.8619969685872,205.5075873999454,0.04120500199496746,0.016004699999999997,0.002712729969061911,2.7906170666666674e-4,0,1.2039367999999994e-4,7.272469997406006,0.33203001333333315,1.4444663226604462,0.24488266666666614,10.699100097020468,0.12993200000000016,0.0828671008348465,0.0038381769333333364,11.188000122706095,0,0.08452720132966836,0.05118544799999991,0,0,0.009974600048735738,0.0056370433333333345,0.001333089981926605,4.289744800000002e-4,362.2909800211588,4.375657699030192,47.91355246726508,39.52216597935272,5.528671359570737,8.368812009253599,-0.1472126705291698,19.32849995295207,0.011957333333333327,717.5254505251219,0,0,1.066666666666667e-4,0.18798899898926416,7.14666666666666e-4,1.862500018129746e-4,1.0799999999999991e-4 +2249,0,0,-0,-0,1.1325219254046799,5.909060001373291,6.133333333333316e-5,0.015748506877571344,0.0016406666666666653,108.1820011138916,0.006164609933333329,5.280473152796428,0,4.657639980316162,0,6.539430022239685,4.571470600000004e-4,3.186433414618174,0.007377999999999996,48.02589098612467,7.999999999999988e-5,5.066570440928142,0.7017073333333324,0,431.6160608927409,29.14528733333333,876.2188364664712,69.5155218039056,399.7879994710286,204.50915266348943,0.037685701002677284,0.008002350000000005,0.0025728399438473084,1.3953085333333337e-4,0,6.0196839999999995e-5,7.041849931081136,0.16601500666666658,1.3534863491853077,0.12244133333333296,10.486000140508017,0.06496600000000008,0.08056940138339996,0.0019190884666666665,11.134900013605753,0,0.07630790024995804,0.025592723999999956,0,0,0.009071480017155409,0.0028185216666666672,0.0012576100028430421,2.144872400000001e-4,362.240982055664,4.369283300581645,47.81222958013809,39.368227531257105,5.481212283102931,8.336927893461318,-0.1472126705291698,19.323100090026855,0.005978666666666667,695.0663726400883,0,0,5.333333333333335e-5,0.18531900147596994,3.573333333333332e-4,1.7958099973232797e-4,5.399999999999996e-5 +2250,0,0,-0,-0,1.1251762533482323,5.908469994862874,0,0.015143606889372071,0,108.17999903361003,0,5.222183108329773,0,4.632320006688436,0,6.527030070622762,0,3.1246235370635986,0,47.542091369628906,0,5.067050417264302,0,0,431.60906473795575,0,875.1618398030598,69.1619659576038,399.71400197347003,203.51071792703343,0.034165299807985626,0,0.0024341099391070506,0,0,0,6.811149954795837,0,1.262466053167979,0,10.272900104522705,0,0.07827439966301124,0,11.08210015296936,0,0.06808390157918136,0,0,0,0.008167610115682086,0,0.0011828400117034714,0,362.1889775594075,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.317399819691975,0,672.6072947550546,0,0,0,0.18268599982062975,0,1.731510007327112e-4,0 +2251,0,0,-0,-0,1.1251762533482323,5.907880067825317,0,0.01456210653608044,0,108.17800013224284,0,5.164543151855469,0,4.607140064239502,0,6.514650026957194,0,3.0640036861101785,0,47.06319077809652,0,5.067530473073323,0,0,431.60205841064453,0,874.1038462320962,69.1619659576038,399.63999938964844,203.51071792703343,0.030643700311581295,0,0.002296470028037826,0,0,0,6.5803699890772505,0,1.171396404504776,0,10.059699853261312,0,0.07598190009593964,0,11.029500007629395,0,0.05985760036855936,0,0,0,0.00726304998776565,0,0.0011087399907410145,0,362.13698577880854,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.31149975458781,0,672.6072947550546,0,0,0,0.1800919994711876,0,1.6695000037240484e-4,0 +2252,0,0,-0,-0,1.1251762533482323,5.907289981842041,0,0.014002806351830563,0,108.17599932352702,0,5.107543110847473,0,4.582090059916179,0,6.502299984296163,0,3.0045537749926248,0,46.58919111887614,0,5.067870616912842,0,0,431.60103607177734,0,873.1008656819661,69.1619659576038,399.56599680582684,203.51071792703343,0.027311899699270725,0,0.0021621999718869724,0,0,0,6.353519996007283,0,1.0837330718835194,0,9.848780075709024,0,0.07372479823728402,0,10.977199951807657,0,0.052159300073981285,0,0,0,0.006411229958757758,0,0.001036670000758022,0,362.0839818318684,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.305399735768635,0,672.6072947550546,0,0,0,0.1775340015689532,0,1.6097300006852797e-4,0 +2253,0,0,-0,-0,1.1251762533482323,5.906700015068054,0,0.013465106099223098,0,108.17400042215984,0,5.051173090934753,0,4.557180047035217,0,6.489969968795776,0,2.9462439020474753,0,46.11989116668701,0,5.0680205424626665,0,0,431.6070200602214,0,872.1988779703775,69.1619659576038,399.4920018513997,203.51071792703343,0.024342500139027834,0,0.0020357799755098918,0,0,0,6.134510000546773,0,1.0026426762342453,0,9.642269929250082,0,0.07153470069169998,0,10.92519998550415,0,0.04545130021870136,0,0,0,0.00565932997657607,0,9.692799794720486e-4,0,362.03197733561194,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.299399852752686,0,672.6072947550546,0,0,0,0.17501200114687285,0,1.5520899857316786e-4,0 +2254,0,0,-0,-0,1.1251762533482323,5.906109968821208,0,0.012948005848253766,0,108.17199961344402,0,4.995433052380879,0,4.532410025596619,0,6.477669994036357,0,2.8890640139579773,0,45.65539137522379,0,5.06812059879303,0,0,431.6150182088216,0,871.3888753255208,69.1619659576038,399.41800181070965,203.51071792703343,0.021696000049511593,0,0.0019167600160775085,0,0,0,5.923050045967102,0,0.9276123692591985,0,9.44009002049764,0,0.06940980007251103,0,10.873400131861368,0,0.03960620022068421,0,0,0,0.0049956400180235505,0,9.062739942843715e-4,0,361.97998555501295,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.293399651845295,0,672.6072947550546,0,0,0,0.17252699782450995,0,1.4965199928459091e-4,0 +2255,0,0,-0,-0,1.1251762533482323,5.905520002047221,0,0.012450805477177104,0,108.16900062561035,0,4.9403029680252075,0,4.507780035336812,0,6.465389966964722,0,2.832974116007487,0,45.19549147288004,0,5.068220575650533,0,0,431.62501525878906,0,870.6618652343749,69.1619659576038,399.34400177001953,203.51071792703343,0.019337300055970747,0,0.0018047000048682094,0,0,0,5.718889991442363,0,0.8582029591004053,0,9.242159922917685,0,0.06734810024499893,0,10.821799993515015,0,0.034512900126477085,0,0,0,0.004409799973169963,0,8.473669974288592e-4,0,361.92898305257154,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.28729995091756,0,672.6072947550546,0,0,0,0.17007699981331825,0,1.442929994179091e-4,0 +2256,0,0,-0,-0,1.1251762533482323,5.904930035273234,0,0.011972605405996243,0,108.16700045267741,0,4.885782917340596,0,4.483269969622294,0,6.453130006790161,0,2.777994235356649,0,44.74039204915365,0,5.068320631980896,0,0,431.63501230875653,0,870.0098724365233,69.1619659576038,399.26900482177734,203.51071792703343,0.01723520007605354,0,0.0016991999873425812,0,0,0,5.521780053774516,0,0.7939887990554174,0,9.048379818598429,0,0.06534770006934802,0,10.77049994468689,0,0.030074800209452707,0,0,0,0.0038926799704010286,0,7.922900064537922e-4,0,361.87798055013013,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.281299750010174,0,672.6072947550546,0,0,0,0.16766099880139032,0,1.3912699917758195e-4,0 +2257,0,0,-0,-0,1.1251762533482323,5.904339989026387,0,0.011512905126437545,0,108.1649996439616,0,4.831873019536336,0,4.45890998840332,0,6.440900007883708,0,2.724074363708496,0,44.28979206085205,0,5.068420608838399,0,0,431.64600880940753,0,869.4238789876301,69.1619659576038,399.1940002441406,203.51071792703343,0.01536159993459781,0,0.0015998699818737805,0,0,0,5.3314599593480425,0,0.734582190712293,0,8.858679930369059,0,0.06340680023034413,0,10.719500064849854,0,0.026207600099345047,0,0,0,0.0034362200337151685,0,7.407949985160182e-4,0,361.8269831339518,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.27530002593994,0,672.6072947550546,0,0,0,0.1652810014784336,0,1.341459998608722e-4,0 +2258,0,0,-0,-0,1.1251762533482323,5.903749982515971,0,0.01107080498089393,0,108.16300010681152,0,4.778552850087483,0,4.434669931729634,0,6.428689996401469,0,2.671184460322062,0,43.84379164377848,0,5.068520545959473,0,0,431.6570103963216,0,868.8988850911458,69.1619659576038,399.11800384521484,203.51071792703343,0.013691800025602182,0,0.001506350003182888,0,0,0,5.147719979286194,0,0.679623082280159,0,8.672960042953491,0,0.0615236001710097,0,10.668700059254965,0,0.022837699856609106,0,0,0,0.0030332999886013567,0,6.926490023033693e-4,0,361.776980082194,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.269299666086834,0,672.6072947550546,0,0,0,0.1629340002934138,0,1.293440000154078e-4,0 +2259,0,0,-0,-0,1.1251762533482323,5.903160015741984,0,0.010645704654355844,0,108.16099993387859,0,4.725822885831197,0,4.41057010491689,0,6.416500051816304,0,2.6193146109580994,0,43.4022912979126,0,5.068630536397298,0,0,431.66801198323566,0,868.4268951416014,69.1619659576038,399.04199981689453,203.51071792703343,0.012203499830017487,0,0.001418290000098447,0,0,0,4.970309933026631,0,0.6287775486707687,0,8.491140127182007,0,0.059696500189602375,0,10.618100007375082,0,0.019901300159593422,0,0,0,0.0026776400239517293,0,6.476340010218943e-4,0,361.7269846598307,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.26329978307088,0,672.6072947550546,0,0,0,0.1606199989716212,0,1.2471299972579195e-4,0 +2260,0,0,-0,-0,1.1251762533482323,5.902569969495137,0,0.010236904568349322,0,108.15900039672852,0,4.673682848612468,0,4.386599898338318,0,6.404340028762817,0,2.5684346755345664,0,42.96519184112549,0,5.068730513254802,0,0,431.6790084838867,0,868.0038909912108,69.1619659576038,398.9660008748372,203.51071792703343,0.01087700001274546,0,0.001335389989738663,0,0,0,4.79902998606364,0,0.5817375977834066,0,8.313140074412027,0,0.05792359976718823,0,10.567800203959147,0,0.017342500233401854,0,0,0,0.0023636999928082028,0,6.055460059239218e-4,0,361.6769765218098,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.25719992319743,0,672.6072947550546,0,0,0,0.1583390012383461,0,1.2024799859015427e-4,0 +2261,0,0,-0,-0,1.1251762533482323,5.901979962984721,0,0.009843884346385797,0,108.15600077311198,0,4.6221128304799395,0,4.362759947776794,0,6.392199993133545,0,2.5185548265775046,0,42.532592137654625,0,5.068840583165486,0,0,431.6910095214844,0,867.6248931884764,69.1619659576038,398.88999938964844,203.51071792703343,0.009694829815998673,0,0.0012573399969066183,0,0,0,4.633649945259094,0,0.5382192780574163,0,8.138879934946695,0,0.05620350005726019,0,10.517700036366781,0,0.015112900097543994,0,0,0,0.002086569981959959,0,5.661950029510384e-4,0,361.62798055013013,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.251200040181477,0,672.6072947550546,0,0,0,0.1560909984012445,0,1.1594400045093305e-4,0 +2262,0,0,-0,-0,1.1251762533482323,5.901390035947164,0,0.00946592423133552,0,108.15399996439616,0,4.571122805277507,0,4.339060068130493,0,6.380080024401347,0,2.4696348905563354,0,42.10429255167643,0,5.0689505736033125,0,0,431.70201619466144,0,867.2848866780598,69.1619659576038,398.81300099690753,203.51071792703343,0.008641150081530213,0,0.0011838599942469348,0,0,0,4.473989923795064,0,0.49795758972565335,0,7.968280037244161,0,0.05453459980587164,0,10.46779998143514,0,0.013169900048524141,0,0,0,0.0018419499780672293,0,5.294029979268089e-4,0,361.57997894287104,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.24519968032837,0,672.6072947550546,0,0,0,0.15387500077486038,0,1.1179299993576326e-4,0 +2263,0,0,-0,-0,1.1251762533482323,5.9008000294367475,0,0.009102474121997753,0,108.1520004272461,0,4.520692706108093,0,4.315480033556621,0,6.367990016937256,0,2.421654979387919,0,41.68039162953695,0,5.069060564041138,0,0,431.71400960286456,0,866.9798940022786,69.1619659576038,398.7370020548503,203.51071792703343,0.007702030086268981,0,0.001114670002910619,0,0,0,4.319830020268758,0,0.4607095917065938,0,7.801259954770406,0,0.052915300242602825,0,10.418200016021729,0,0.011476800000915924,0,0,0,0.0016260099946521223,0,4.950029979227111e-4,0,361.5309804280598,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.239200274149578,0,672.6072947550546,0,0,0,0.15169100215037665,0,1.0779100011859555e-4,0 +2264,0,0,-0,-0,1.1251762533482323,5.9002099831899,0,0.008752994006499648,0,108.15000025431316,0,4.470822771390279,0,4.292030056317647,0,6.35591999689738,0,2.3746150732040405,0,41.26079177856445,0,5.069160540898641,0,0,431.72600809733075,0,866.7058868408202,69.1619659576038,398.66000111897785,203.51071792703343,0.006865000003017485,0,0.0010495299842053403,0,0,0,4.170989910761516,0,0.42625028640031815,0,7.637749989827474,0,0.0513440997650226,0,10.368800004323324,0,0.010001499981929859,0,0,0,0.001435400015907362,0,4.628400007883708e-4,0,361.4829788208007,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.23319975535075,0,672.6072947550546,0,0,0,0.1495369995633761,0,1.0393300059755954e-4,0 +2265,0,0,-0,-0,1.1251762533482323,5.899620016415914,0,0.008416933783640465,0,108.14799944559734,0,4.421502669652303,0,4.268710017204285,0,6.343870043754578,0,2.3284951647122702,0,40.84539222717285,0,5.069270531336467,0,0,431.7370122273763,0,866.4608968098958,69.1619659576038,398.583002726237,203.51071792703343,0.006118969991803169,0,9.881930018309504e-4,0,0,0,4.02728005250295,0,0.3943687056501706,0,7.477669994036357,0,0.04981959983706474,0,10.31969984372457,0,0.008715839978928367,0,0,0,0.001267130011304592,0,4.327670006508318e-4,0,361.4359817504882,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.227200031280518,0,672.6072947550546,0,0,0,0.14741399884223938,0,5.89010675563865e-5,0 +2266,0,0,-0,-0,1.1251762533482323,5.8990300099054975,0,0.008093793643638492,0,108.14600054423015,0,4.372722665468852,0,4.2455100218455,0,6.331849972407023,0,2.2832652926445007,0,40.43419233957926,0,5.0693806409835815,0,0,431.7490056355794,0,866.2418975830077,69.1619659576038,398.50599670410156,203.51071792703343,0.005454039938437442,0,9.304469955774645e-4,0,0,0,3.8885300159454346,0,0.36487287034591037,0,7.32095996538798,0,0.04834049971153339,0,10.270800034205118,0,0.007595499977469444,0,0,0,0.00111859999014996,0,4.04649998624033e-4,0,361.38897450764966,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.22119967142741,0,672.6072947550546,0,0,0,0.1453209991256396,0,0,0 +2267,0,0,-0,-0,1.1251762533482323,5.89843996365865,0,0.007783053481640915,0,108.14399909973145,0,4.324492613474528,0,4.222449978192647,0,6.319850047429402,0,2.2388953963915506,0,40.027092615763344,0,5.069490512212117,0,0,431.7610092163086,0,866.0448913574218,69.1619659576038,398.4289957682292,203.51071792703343,0.004861390024113159,0,8.760779989340032e-4,0,0,0,3.754570027192434,0,0.3375847985347112,0,7.167529980341594,0,0.046905300269524254,0,10.222100019454956,0,0.0066192099669327336,0,0,0,9.874879809406896e-4,0,3.78361000912264e-4,0,361.3419825236002,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.215199947357178,0,672.6072947550546,0,0,0,0.14325899754961333,0,0,0 +2268,0,0,-0,-0,1.1251762533482323,5.897849996884664,0,0.007484253263100982,0,108.14099947611491,0,4.276792605717977,0,4.199510018030803,0,6.307869950930278,0,2.1953954100608826,0,39.624192555745445,0,5.069600582122803,0,0,431.7720082600911,0,865.8688964843749,69.1619659576038,398.3519973754883,203.51071792703343,0.004333160002715886,0,8.248880039900541e-4,0,0,0,3.625229994455973,0,0.3123385086655617,0,7.017329970995585,0,0.04551289975643158,0,10.173699935277304,0,0.005768439926517506,0,0,0,8.717449964024127e-4,0,3.5377999787063646e-4,0,361.2949829101562,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.209199905395508,0,672.6072947550546,0,0,0,0.14122499898076057,0,0,0 +2269,0,0,-0,-0,1.1251762533482323,5.8972599903742475,0,0.007196933186302583,0,108.13899930318196,0,4.229612668355306,0,4.176689982414246,0,6.295920014381409,0,2.1527255376180015,0,39.22529252370199,0,5.069710652033488,0,0,431.7840067545573,0,865.7118988037108,69.1619659576038,398.2749964396159,203.51071792703343,0.0038623400420571366,0,7.766910033145299e-4,0,0,0,3.500349998474121,0,0.28898101548353833,0,6.870279947916667,0,0.04416180060555538,0,10.125499884287516,0,0.005027049997200568,0,0,0,7.695730018895119e-4,0,3.3079799565409e-4,0,361.24898274739576,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.203099886576336,0,672.6072947550546,0,0,0,0.13921999807159105,0,0,0 +2270,0,0,-0,-0,1.1251762533482323,5.896669983863831,0,0.006920643073196213,0,108.1369997660319,0,4.182962536811829,0,4.153999924659729,0,6.283979972203572,0,2.1108756264050803,0,38.83039251963297,0,5.069810589154561,0,0,431.79601287841797,0,865.5698954264321,69.1619659576038,398.198003133138,203.51071792703343,0.003442700020968914,0,7.313120004255325e-4,0,0,0,3.37977002064387,0,0.26737132916847867,0,6.726320068041484,0,0.04285089951008558,0,10.077499945958456,0,0.004380979963267843,0,0,0,6.79380003324089e-4,0,3.0930900053742033e-4,0,361.20398457845045,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.197100003560383,0,672.6072947550546,0,0,0,0.1372439960638682,0,0,0 +2271,0,0,-0,-0,1.1251762533482323,5.896080017089844,0,0.00665496305252115,0,108.13499959309895,0,4.136832515398662,0,4.13143002986908,0,6.272080024083455,0,2.069845716158549,0,38.43959299723307,0,5.069920579592387,0,0,431.80701446533203,0,865.4439036051431,69.1619659576038,398.12200419108075,203.51071792703343,0.003068670048378408,0,6.885860008575643e-4,0,0,0,3.263360023498535,0,0.24737847596406937,0,6.5853800773620605,0,0.041578899758557476,0,10.029800097147623,0,0.0038179599990447364,0,0,0,5.997599946567789e-4,0,2.8921700140926987e-4,0,361.15798441569007,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.191199779510498,0,672.6072947550546,0,0,0,0.13529599954684576,0,0,0 +2272,0,0,-0,-0,1.1251762533482323,5.895490050315857,0,0.006399492927206059,0,108.1330000559489,0,4.09120253721873,0,4.108989993731181,0,6.260189970334371,0,2.029615819454193,0,38.05269273122152,0,5.0700306097666425,0,0,431.8190104166667,0,865.3308970133462,69.1619659576038,398.04500071207684,203.51071792703343,0.0027352899972659848,0,6.483579927589744e-4,0,0,0,3.1509600083033242,0,0.22888145968317986,0,6.447400013605754,0,0.040344800179203354,0,9.98225998878479,0,0.003327319980598986,0,0,0,5.294739967212081e-4,0,2.704310027183965e-4,0,361.11298624674475,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.18519989649455,0,672.6072947550546,0,0,0,0.1333760010699431,0,0,0 +2273,0,0,-0,-0,1.1251762533482323,5.894899964332581,0,0.00615383277181536,0,108.13100115458171,0,4.046082456906636,0,4.086670001347859,0,6.248329997062683,0,1.9901858468850453,0,37.66969267527262,0,5.070140600204468,0,0,431.83001708984375,0,865.2299092610676,69.1619659576038,397.9679997762044,203.51071792703343,0.0024381300124029317,0,6.104819961668303e-4,0,0,0,3.042430023352305,0,0.21176829809943834,0,6.312310020128886,0,0.039147300024827324,0,9.934969902038574,0,0.00289975000002111,0,0,0,4.67427996530508e-4,0,2.5286599702667445e-4,0,361.0689798990885,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.179199695587158,0,672.6072947550546,0,0,0,0.13148300101359686,0,0,0 +2274,0,0,-0,-0,1.1251762533482323,5.894309997558594,0,0.005917602645543714,0,108.12800153096516,0,4.001462439695994,0,4.064470012982686,0,6.2364899317423506,0,1.9514959653218586,0,37.29049301147461,0,5.070240577061971,0,0,431.84100850423175,0,865.139897664388,69.1619659576038,397.8919957478841,203.51071792703343,0.002173270001852264,0,5.748200007171059e-4,0,0,0,2.9376500050226846,0,0.19593599438667297,0,6.180059949556987,0,0.03798539967586597,0,9.88791004816691,0,0.0025271300110034645,0,0,0,4.1265400068368763e-4,0,2.36443000176223e-4,0,361.0239868164062,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.17319965362549,0,672.6072947550546,0,0,0,0.12961700186133385,0,0,0 +2275,0,0,-0,-0,1.1251762533482323,5.893720030784607,0,0.00569045248751839,0,108.1259994506836,0,3.9573323925336203,0,4.042390028635661,0,6.224670052528381,0,1.9135460257530212,0,36.91519323984782,0,5.070350646972656,0,0,431.8530095418294,0,865.0589040120442,69.1619659576038,397.81599680582684,203.51071792703343,0.0019372000048557918,0,5.412420044497898e-4,0,0,0,2.8364800016085305,0,0.18128656720121702,0,6.050589958826701,0,0.036858100133637585,0,9.84107001622518,0,0.0022024099986689785,0,0,0,3.643010010515961e-4,0,2.2108599781252755e-4,0,360.98098246256507,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.167199929555256,0,672.6072947550546,0,0,0,0.12777700275182724,0,0,0 +2276,0,0,-0,-0,1.1251762533482323,5.893129944801331,0,0.005472022419174512,0,108.12399991353352,0,3.9136924346288047,0,4.020429968833923,0,6.2128799756368,0,1.876346121231715,0,36.54369322458903,0,5.07045050462087,0,0,431.86401621500653,0,864.9869079589843,69.1619659576038,397.73900095621747,203.51071792703343,0.001726769997427861,0,5.096280025706316e-4,0,0,0,2.7387999892234802,0,0.16773402442534766,0,5.923840006192525,0,0.03576419968158007,0,9.794449965159098,0,0.0019194299917823325,0,0,0,3.216160015047838e-4,0,2.067279977685151e-4,0,360.9369812011718,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.161199887593586,0,672.6072947550546,0,0,0,0.12596399833758673,0,0,0 +2277,0,0,-0,-0,1.1251762533482323,5.892539978027344,0,0.00526197231374681,0,108.1219991048177,0,3.8705323735872903,0,3.9986000259717307,0,6.201099991798401,0,1.8398661812146504,0,36.17589282989502,0,5.070560654004415,0,0,431.87500762939453,0,864.921905517578,69.1619659576038,397.66299692789715,203.51071792703343,0.0015392100225047518,0,4.798610001065147e-4,0,0,0,2.6444899837176004,0,0.1551943669716517,0,5.799739996592204,0,0.0347028998658061,0,9.74806006749471,0,0.0016728100017644465,0,0,0,2.839329996883559e-4,0,1.933029998326674e-4,0,360.8939819335937,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.1551996866862,0,672.6072947550546,0,0,0,0.12417599931359291,0,0,0 +2278,0,0,-0,-0,1.1251762533482323,5.891950011253357,0,0.0050600022077560425,0,108.11999956766765,0,3.8278523286183677,0,3.976879974206289,0,6.189349969228108,0,1.8041062553723652,0,35.811893145243324,0,5.070660551389058,0,0,431.88700612386066,0,864.8638966878254,69.1619659576038,397.5870005289714,203.51071792703343,0.0013720299951576938,0,4.5183399682476494e-4,0,0,0,2.5534300009409585,0,0.1435936118165652,0,5.678249994913737,0,0.0336730998630325,0,9.701890071233114,0,0.0014578899814902495,0,0,0,2.50666998908855e-4,0,1.8074999752570875e-4,0,360.85098266601557,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.149199803670246,0,672.6072947550546,0,0,0,0.12241399909059207,0,0,0 +2279,0,0,-0,-0,1.1251762533482323,5.891359965006511,0,0.0048657822189852595,0,108.1179993947347,0,3.7856523195902505,0,3.9552799661954245,0,6.177630027135213,0,1.7690263390541077,0,35.45149326324463,0,5.070770621299744,0,0,431.89801534016925,0,864.8129069010415,69.1619659576038,397.51200103759766,203.51071792703343,0.0012230100110173225,0,4.254449959262274e-4,0,0,0,2.4655099908510842,0,0.1328597590327263,0,5.559309999148051,0,0.03267390032609304,0,9.65593989690145,0,0.0012705900007858872,0,0,0,2.2129900025902316e-4,0,1.6901300114113837e-4,0,360.80798339843744,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.143199920654297,0,672.6072947550546,0,0,0,0.12067699991166592,0,0,0 +2280,0,0,-0,-0,1.1251762533482323,5.890769958496094,0,0.004679012073514362,0,108.11499913533528,0,3.7439022858937583,0,3.9338000218073526,0,6.16591997941335,0,1.7346064150333405,0,35.09479331970215,0,5.070870598157247,0,0,431.9090092976888,0,864.7669118245442,69.1619659576038,397.4359995524089,203.51071792703343,0.0010901799929949145,0,4.005979984261406e-4,0,0,0,2.380620022614797,0,0.12292882551749547,0,5.442869941393535,0,0.03170439973473549,0,9.610209862391153,0,0.0011073599841135244,0,0,0,1.9537399930413812e-4,0,1.58037998820267e-4,0,360.7659784952799,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.13729985555013,0,672.6072947550546,0,0,0,0.11896500115593274,0,0,0 +2281,0,0,-0,-0,1.1251762533482323,5.890179951985677,0,0.004499422075847785,0,108.11300150553386,0,3.7026222944259644,0,3.9124299685160318,0,6.154239972432454,0,1.7008664707342784,0,34.74159336090088,0,5.07097053527832,0,0,431.9200134277344,0,864.7259114583333,69.1619659576038,397.3609975179036,203.51071792703343,9.717870125314221e-4,0,3.7720299830349785e-4,0,0,0,2.298650006453196,0,0.11374081112444401,0,5.328869978586833,0,0.030763699983557064,0,9.56470012664795,0,9.651080035837367e-4,0,0,0,1.724859988219881e-4,0,1.4777600154047832e-4,0,360.7239837646484,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.131299654642742,0,672.6072947550546,0,0,0,0.1172769982367754,0,0,0 +2282,0,0,-0,-0,1.1251762533482323,5.88958998521169,0,0.004326731936695675,0,108.11100069681804,0,3.6618022322654724,0,3.8911799987157187,0,6.142579992612203,0,1.667796532313029,0,34.39199352264404,0,5.071070591608684,0,0,431.93100992838544,0,864.6889038085936,69.1619659576038,397.2849985758464,203.51071792703343,8.662519879483929e-4,0,3.5517599947828177e-4,0,0,0,2.219509998957316,0,0.10523972287774086,0,5.217260003089905,0,0.02985099997992317,0,9.519409894943237,0,8.411319965186218e-4,0,0,0,1.5227999877727902e-4,0,1.3818099857113944e-4,0,360.68297831217444,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.12529993057251,0,672.6072947550546,0,0,0,0.1156129992256562,0,0,0 +2283,0,0,-0,-0,1.1251762533482323,5.889009952545166,0,0.004160661793624361,0,108.10899925231934,0,3.6214322050412497,0,3.870050032933553,0,6.130950053532918,0,1.6353666086991627,0,34.0459934870402,0,5.071180621782939,0,0,431.9420166015625,0,864.6558990478514,69.1619659576038,397.2100016276042,203.51071792703343,7.721820002188906e-4,0,3.3443499948286143e-4,0,0,0,2.1431000034014382,0,0.09737436597545941,0,5.1079899072647095,0,0.028965300259490807,0,9.474330027898153,0,7.330859953071922e-4,0,0,0,1.3444200279385163e-4,0,1.2920999749136777e-4,0,360.6409886678059,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.11929972966512,0,672.6072947550546,0,0,0,0.11397199891507626,0,0,0 +2284,0,0,-0,-0,1.1251762533482323,5.888420025507609,0,0.0040009818427885575,0,108.10699971516927,0,3.5815021793047586,0,3.8490399916966758,0,6.119329969088237,0,1.6035666763782501,0,33.703393618265785,0,5.071280638376872,0,0,431.95301055908203,0,864.6269073486327,69.1619659576038,397.13500213623047,203.51071792703343,6.883300035648668e-4,0,3.14907003485132e-4,0,0,0,2.0693300366401672,0,0.09009704552590847,0,5.001020034154256,0,0.028105999963978927,0,9.42946982383728,0,6.389220022053147e-4,0,0,0,1.1869400016924676e-4,0,1.2082099783583544e-4,0,360.6009852091471,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.11329984664917,0,672.6072947550546,0,0,0,0.1123550006498893,0,0,0 +2285,0,0,-0,-0,1.1251762533482323,5.887830018997192,0,0.0038474217096033194,0,108.10500017801921,0,3.542022148768107,0,3.8281399806340537,0,6.1077399253845215,0,1.5723767379919689,0,33.36429405212402,0,5.071380575497945,0,0,431.9640121459961,0,864.6008961995442,69.1619659576038,397.0609995524089,203.51071792703343,6.135870110786831e-4,0,2.9651899967575446e-4,0,0,0,1.9980900088946025,0,0.08336396825810273,0,4.896289944648743,0,0.027272199901441734,0,9.384819984436035,0,5.568570049945265e-4,0,0,0,1.0479199954716023e-4,0,1.1297699954108491e-4,0,360.55998484293616,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.107399940490723,0,672.6072947550546,0,0,0,0.11076099860171477,0,0,0 +2286,0,0,-0,-0,1.1251762533482323,5.887240012486775,0,0.0036997616407461464,0,108.10199928283691,0,3.502972106138865,0,3.8073500196139016,0,6.096169988314311,0,1.5417668024698894,0,33.02869415283203,0,5.071480631828308,0,0,431.9740168253581,0,864.5769042968749,69.1619659576038,396.9859975179036,203.51071792703343,5.469619985281801e-4,0,2.7920600162663806e-4,0,0,0,1.9293099840482075,0,0.07713423545161883,0,4.793749968210856,0,0.026463200182964403,0,9.34038003285726,0,4.853349964832887e-4,0,0,0,9.251769976496386e-5,0,1.0564300040035353e-4,0,360.5199813842773,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.101399739583332,0,672.6072947550546,0,0,0,0.10918900060156982,0,0,0 +2287,0,0,-0,-0,1.1251762533482323,5.886650085449219,0,0.0035577715995411077,0,108.10000038146973,0,3.464352091153463,0,3.786669969558716,0,6.084619998931885,0,1.5117668807506561,0,32.69639364878336,0,5.071580608685811,0,0,431.9850133260091,0,864.5558980305989,69.1619659576038,396.91200002034503,203.51071792703343,4.8757400024139014e-4,0,2.629040027386509e-4,0,0,0,1.8628999988238018,0,0.07137035330136617,0,4.6933700243632,0,0.0256782000263532,0,9.296160062154135,0,4.2300199856981635e-4,0,0,0,8.168189985250744e-5,0,9.878489981929306e-5,0,360.47998555501295,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.095399856567383,0,672.6072947550546,0,0,0,0.10764000006020069,0,0,0 +2288,0,0,-0,-0,1.1251762533482323,5.886059959729512,0,0.0034212315416273973,0,108.09800020853679,0,3.4261621236801147,0,3.7661100029945374,0,6.0730899175008135,0,1.4823569258054097,0,32.36739412943522,0,5.071680545806885,0,0,431.9960174560547,0,864.5379079182942,69.1619659576038,396.83800252278644,203.51071792703343,4.346360025616984e-4,0,2.4755499907769263e-4,0,0,0,1.7987800041834514,0,0.06603732518851757,0,4.595100045204163,0,0.024916500163575012,0,9.252149979273478,0,3.686760028358549e-4,0,0,0,7.211549988520953e-5,0,9.237240010406822e-5,0,360.4399846394856,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.089499632517498,0,672.6072947550546,0,0,0,0.10611300108333428,0,0,0 +2289,0,0,-0,-0,1.1251762533482323,5.885469992955525,0,0.0032899314731669924,0,108.09600003560384,0,3.388402044773102,0,3.7456599871317544,0,6.061589956283569,0,1.4535169899463654,0,32.04179382324219,0,5.071780641873677,0,0,432.00601450602215,0,864.5209045410155,69.1619659576038,396.7639973958333,203.51071792703343,3.874480025842786e-4,0,2.331020004930906e-4,0,0,0,1.7368700007597606,0,0.06110305432230234,0,4.4988800684611006,0,0.024177499891569216,0,9.20834994316101,0,3.2132900135669235e-4,0,0,0,6.366989994906665e-5,0,8.637640045587129e-5,0,360.4009857177734,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.083499590555828,0,672.6072947550546,0,0,0,0.10460800118744373,0,0,0 +2290,0,0,-0,-0,1.1251762533482323,5.884880026181539,0,0.003163671412039548,0,108.0939998626709,0,3.3510520458221436,0,3.7253300150235495,0,6.0501099824905396,0,1.4252370397249858,0,31.719494183858234,0,5.071870565414429,0,0,432.01701100667316,0,864.5059102376301,69.1619659576038,396.6899998982747,203.51071792703343,3.453839987438793e-4,0,2.1949399888399057e-4,0,0,0,1.6770899991194408,0,0.05653764307498932,0,4.404689947764079,0,0.02346030001839002,0,9.16476003328959,0,2.8006499633193016e-4,0,0,0,5.621360044945808e-5,0,8.076979853891923e-5,0,360.36198425292963,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.077499866485596,0,672.6072947550546,0,0,0,0.10312399951120217,0,0,0 +2291,0,0,-0,-0,1.1251762533482323,5.884300033251445,0,0.003042271399560074,0,108.09200096130371,0,3.3141120274861655,0,3.7050999999046326,0,6.038650035858154,0,1.3975170850753784,0,31.400394439697266,0,5.071970502535502,0,0,432.0280125935872,0,864.4919026692708,69.1619659576038,396.61599985758465,203.51071792703343,3.0788799631409347e-4,0,2.066810011456255e-4,0,0,0,1.6193699836730957,0,0.052313496048251786,0,4.312459985415141,0,0.02276449992010991,0,9.121369997660318,0,2.4410000332864001e-4,0,0,0,4.963069992906336e-5,0,7.552729888023653e-5,0,360.3229853312174,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.071599801381428,0,672.6072947550546,0,0,0,0.10166100102166335,0,0,0 +2292,0,0,-0,-0,1.1251762533482323,5.883710026741028,0,0.0029255213060726724,0,108.08899943033855,0,3.277581969896952,0,3.684980014959971,0,6.027209997177124,0,1.3703271349271138,0,31.08449411392212,0,5.072070558865865,0,0,432.0380172729492,0,864.4798940022786,69.1619659576038,396.54300181070965,203.51071792703343,2.744639981150006e-4,0,1.9461600095382892e-4,0,0,0,1.5636399984359741,0,0.048405115182201065,0,4.2221799691518145,0,0.022089400018254917,0,9.078190008799234,0,2.1275500087843588e-4,0,0,0,4.38190002872337e-5,0,7.06252006542248e-5,0,360.2849782307942,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.06559960047404,0,672.6072947550546,0,0,0,0.1002190001308918,0,0,0 +2293,0,0,-0,-0,1.1251762533482323,5.883119901021321,0,0.0028132512622202435,0,108.0869992574056,0,3.2414519985516868,0,3.6649799942970276,0,6.0157999992370605,0,1.3436372180779774,0,30.77179416020711,0,5.072170575459798,0,0,432.0480092366536,0,864.4689025878905,69.1619659576038,396.46900431315106,203.51071792703343,2.4466999821015634e-4,0,1.8325599861176065e-4,0,0,0,1.5098299880822499,0,0.04478880235304435,0,4.133780042330424,0,0.021434300113469362,0,9.035220066706339,0,1.854369996484214e-4,0,0,0,3.868789978393276e-5,0,6.604150075872894e-5,0,360.2469813028971,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.05969985326131,0,672.6072947550546,0,0,0,0.09879730083048344,0,0,0 +2294,0,0,-0,-0,1.1251762533482323,5.882529973983765,0,0.00270530121633783,0,108.08499972025554,0,3.205731987953186,0,3.645080010096232,0,6.004399975140889,0,1.3174772560596466,0,30.462294101715088,0,5.072260578473409,0,0,432.0590082804362,0,864.4589131673176,69.1619659576038,396.39599863688153,203.51071792703343,2.1811100062526143e-4,0,1.725590009300504e-4,0,0,0,1.457880010207494,0,0.04144286115964254,0,4.047250032424927,0,0.02079859996835391,0,8.99244991938273,0,1.6162700194399804e-4,0,0,0,3.415790009360838e-5,0,6.175549939750151e-5,0,360.2089818318684,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.05369997024536,0,672.6072947550546,0,0,0,0.09739590001602967,0,0,0 +2295,0,0,-0,-0,1.1251762533482323,5.881940046946208,0,0.002601481198022763,0,108.08300081888835,0,3.170391937096914,0,3.6252899765968323,0,5.993029952049255,0,1.2918173174063365,0,30.15589427947998,0,5.072360595067342,0,0,432.0690155029297,0,864.4499104817708,69.1619659576038,396.32300059000653,203.51071792703343,1.9443599982575202e-4,0,1.624869995187813e-4,0,0,0,1.4077100058396657,0,0.03834699311604103,0,3.9625200033187866,0,0.02018190020074447,0,8.949889898300171,0,1.4087400146915266e-4,0,0,0,3.015850006704568e-5,0,5.774770003578548e-5,0,360.1719818115234,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.047799905141193,0,672.6072947550546,0,0,0,0.09601440032323201,0,0,0 +2296,0,0,-0,-0,1.1251762533482323,5.881350040435791,0,0.002501661113152901,0,108.0810006459554,0,3.135451932748159,0,3.6056100130081177,0,5.981679995854695,0,1.2666773796081543,0,29.85259437561035,0,5.072450637817383,0,0,432.07901255289715,0,864.4409027099608,69.1619659576038,396.2510019938151,203.51071792703343,1.7333100064812848e-4,0,1.53002999771464e-4,0,0,0,1.3592700064182281,0,0.0354824997484684,0,3.8795699874560037,0,0.01958339987322688,0,8.907529989878336,0,1.2278699917563549e-4,0,0,0,2.662740007508546e-5,0,5.400019957354137e-5,0,360.1339848836262,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.041800022125244,0,672.6072947550546,0,0,0,0.09465260058641434,0,0,0 +2297,0,0,-0,-0,1.1251762533482323,5.880770007769267,0,0.0024056610806534686,0,108.07899920145671,0,3.1009018619855246,0,3.586039960384369,0,5.970350066820781,0,1.2420174181461334,0,29.55239454905192,0,5.072550535202026,0,0,432.09000905354816,0,864.4338938395181,69.1619659576038,396.17799886067706,203.51071792703343,1.5451799966588928e-4,0,1.440740015823394e-4,0,0,0,1.3124999801317851,0,0.03283208360274633,0,3.798359990119934,0,0.01900269991407792,0,8.86537996927897,0,1.0702300035821584e-4,0,0,0,2.3509900074714096e-5,0,5.049599955479304e-5,0,360.0979843139648,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.03589963912964,0,672.6072947550546,0,0,0,0.09331009909510612,0,0,0 +2298,0,0,-0,-0,1.1251762533482323,5.88017996152242,0,0.0023133510258048773,0,108.07600021362305,0,3.0667218565940857,0,3.566569983959198,0,5.95904008547465,0,1.2178474764029186,0,29.255094528198242,0,5.072640538215637,0,0,432.1000162760417,0,864.4269104003905,69.1619659576038,396.1060028076172,203.51071792703343,1.3774699861338982e-4,0,1.3566500153198527e-4,0,0,0,1.2673499981562297,0,0.030379746419688065,0,3.7188599904378257,0,0.018439299737413723,0,8.82341996828715,0,9.328340032273748e-5,0,0,0,2.075749974513504e-5,0,4.721929993441639e-5,0,360.0609792073567,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.029900074005127,0,672.6072947550546,0,0,0,0.09198660030961037,0,0,0 +2299,0,0,-0,-0,1.1251762533482323,5.879589994748433,0,0.0022245909979877374,0,108.07400004069011,0,3.0329318245251975,0,3.5472099979718528,0,5.947759985923767,0,1.1941475073496501,0,28.960894266764324,0,5.07274055480957,0,0,432.1100133260091,0,864.4199015299478,69.1619659576038,396.0339991251628,203.51071792703343,1.2279700058570597e-4,0,1.2774800052284263e-4,0,0,0,1.2237399816513062,0,0.028110589366406202,0,3.6410200198491416,0,0.017892499919980764,0,8.781660000483194,0,8.130799930465098e-5,0,0,0,1.8327400084672263e-5,0,4.415539994321686e-5,0,360.02498372395826,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.023999849955242,0,672.6072947550546,0,0,0,0.09068199930091699,0,0,0 +2300,0,0,-0,-0,1.1251762533482323,5.878999988238017,0,0.0021392309572547674,0,108.07199986775716,0,2.99951179822286,0,3.5279500087102256,0,5.936490019162496,0,1.1709075570106506,0,28.669594287872314,0,5.072830557823181,0,0,432.12001546223956,0,864.4138997395833,69.1619659576038,395.96199798583984,203.51071792703343,1.0947000009764452e-4,0,1.2029299978166819e-4,0,0,0,1.1816399991512299,0,0.026011114474385977,0,3.564809958140055,0,0.017362000110248726,0,8.74010999997457,0,7.087030098773539e-5,0,0,0,1.6181899961035622e-5,0,4.129030063874476e-5,0,359.98898569742835,4.362908902133097,47.7109066930111,39.21428908316149,5.433753206635125,8.305043777669036,-0.1472126705291698,19.017999807993572,0,672.6072947550546,0,0,0,0.08939590056737264,0,0,0 diff --git a/inst/input/tables/ssp245_emiss-constraints_rf.csv b/inst/input/tables/ssp245_emiss-constraints_rf.csv new file mode 100644 index 000000000..9626961c4 --- /dev/null +++ b/inst/input/tables/ssp245_emiss-constraints_rf.csv @@ -0,0 +1,562 @@ +; ssp245 from rcmip +; hectordata 0.0.0.9000 +; commit dab9aad8750535b +; date Fri Nov 4 11:35:30 2022 +; UNITS:, PgC year-1, PgC year-1, PgC year-1, PgC year-1, Tg year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg CH4 year-1, ppm, Tg CO year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg N year-1, Tg year-1, Tg NMVOC year-1, Tg N year-1, Tg year-1, W m-2, ppt, ppt, Gg S year-1, W m-2, ppt, ppt, ppt, ppt, ppt, ppt +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_constrain,C2F6_emissions,CCl4_constrain,CCl4_emissions,CF4_constrain,CF4_emissions,CFC113_constrain,CFC113_emissions,CFC114_constrain,CFC114_emissions,CFC115_constrain,CFC115_emissions,CFC11_constrain,CFC11_emissions,CFC12_constrain,CFC12_emissions,CH3Br_constrain,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_constrain,CH3Cl_emissions,CH4_constrain,CH4_emissions,CO2_constrain,CO_emissions,HCFC141b_constrain,HCFC141b_emissions,HCFC142b_constrain,HCFC142b_emissions,HCFC22_constrain,HCFC22_emissions,HFC125_constrain,HFC125_emissions,HFC134a_constrain,HFC134a_emissions,HFC143a_constrain,HFC143a_emissions,HFC227ea_constrain,HFC227ea_emissions,HFC23_constrain,HFC23_emissions,HFC245_constrain,HFC245fa_emissions,HFC32_constrain,HFC32_emissions,HFC365_constrain,HFC365_emissions,HFC4310_constrain,HFC4310_emissions,N2O_constrain,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,RF_albedo,SF6_constrain,SF6_emissions,SO2_emissions,SV,halon1211_constrain,halon1211_emissions,halon1301_constrain,halon1301_emissions,halon2402_constrain,halon2402_emissions +1745,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,728.6180877685546,19.019783117809567,276.9859975179036,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7540486653645,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1746,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.704874674479,19.019783117809567,277.01399993896484,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7850443522135,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1747,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.8320821126301,19.019783117809567,277.0439987182617,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.80204772949213,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1748,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.2330983479817,19.019783117809567,277.07999928792316,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8170496622721,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1749,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.9769846598306,19.019783117809567,277.10900115966797,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8330459594726,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1750,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,731.4059956868489,19.019783117809567,277.1470031738281,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8650512695312,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1751,0.0025941063027029847,0.0826692695573487,0,0,2.0729259257736388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1072,0,457.00000254313153,4276.7685,731.838165283203,18.915108869931455,277.18800099690753,343.9263672486595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8940556844075,0.05578579647289745,6.860142184947855,59.08812628149409,3.8337729357251344,15.188716744277112,-0.00022945725475492763,0,0,1206.0681799841475,0.1857567460517512,0.004446572546536724,0.0077232726,0,0,0,0 +1752,0.0025952084646724115,0.0841901460141451,0,0,2.0643119329193533,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12502,0,457.00000254313153,4277.7049,732.8999735514321,18.889711811886766,277.22900136311847,341.8090339016869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.92705535888666,0.056839716429342754,6.819482036717451,58.63199702688318,3.8343718514044016,15.034475741403988,-4.5891450950985525e-4,0,0,1200.4278473396196,0.1857604715824308,0.004446572546536724,0.0077232726,0,0,0,0 +1753,0.0025953021590175993,0.08573900221733607,0,0,2.0719505635154682,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10373,0,457.00000254313153,4276.585999999999,733.634038289388,19.121377231171937,277.26300048828125,343.6754562091752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.9730555216471,0.057913547319122724,6.88143852899345,59.02634940020826,3.8177943228183677,15.18254515100842,-6.883717642647818e-4,0,0,1207.227098535096,0.1857617169069504,0.004446572546536724,0.0077232726,0,0,0,0 +1754,0.0025964043209870257,0.0873163529136683,0,0,2.09934978275426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07356,0,457.00000254313153,4274.9998,734.2020212809243,19.50906106501577,277.3040033976237,349.81562520064375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.01604461669916,0.059007665304832875,7.015189223980566,60.269945173845855,3.847331336983454,15.55877304959727,-9.178290190197105e-4,0,0,1232.9531143620388,0.18576213564093827,0.004446572546536724,0.0077232726,0,0,0,0 +1755,0.0025975064829564486,0.08892272231974611,0,0,2.099173164966012,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09182,0,457.00000254313153,4275.9598,734.7360788981118,19.500454933311694,277.3510030110677,348.144667955229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.05104319254554,0.06012245365563151,6.9439890428442705,59.824933724698546,3.8866528883154143,15.358182527090067,-0.0011472862737746368,0,0,1223.0826850431558,0.16149051004268924,0.004446572546536724,0.0077232726,0,0,0,0 +1756,0.002775090479167637,0.09055864429624946,0,0,2.0689154070023212,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08556000000002,0,457.00000254313153,4275.6306,735.4210001627603,19.46253659981589,277.38899993896484,343.32315167584505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.07905069986975,0.06125830288149874,6.92271155666652,58.94682931223554,3.780146274357017,15.195776625722106,-0.001376743528529566,0,0,1211.479201655296,-0.06413990375550595,0.004446572546536724,0.0077232726,0,0,0,0 +1757,0.0027761926411370656,0.09222466252535721,0,0,2.1479236761828795,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09137,0,457.00000254313153,4275.9361,735.8930308024087,20.023540664144175,277.4419987996419,355.9418922631908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.09605153401685,0.06241561087003213,7.047674128999731,61.263692996283645,3.9984362659957116,15.704819120374072,-0.0016062007832844925,0,0,1255.6882474413671,0.06548148963396255,0.004446572546536724,0.0077232726,0,0,0,0 +1758,0.002777294803106484,0.09392133069143445,0,0,2.120611409560707,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09662,0,457.00000254313153,4276.2118,736.2069956461587,19.93400532918585,277.48900095621747,351.839749049401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.12904612223304,0.06359478302582648,6.995459767973222,60.43461244378834,3.951609319926169,15.514611629339965,-0.0018356580380394208,0,0,1241.8061904390202,0.143706674085902,0.004446572546536724,0.0077232726,0,0,0,0 +1759,0.0027783969650759127,0.09564921266504378,0,0,2.1172674310973973,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08372,0,457.00000254313153,4275.5338,736.0988871256509,20.14146621388408,277.5399983723958,351.50776272566816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.1650466918945,0.06479623241248693,7.045958325346581,60.44526305257086,3.8825594605141793,15.574013491239148,-0.0020651152927943475,0,0,1238.6934463843995,0.17156026373747926,0.004446572546536724,0.0077232726,0,0,0,0 +1760,0.002778490659421102,0.09740888269034213,0,0,2.127804104941503,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04022,0,457.00000254313153,4273.2473,735.484171549479,20.416797144500503,277.6050033569336,354.41828530815224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.19305165608716,0.06602037989732504,7.1280482855702605,61.0517247888764,3.870426966375627,15.819063930323424,-0.002294572547549277,0,0,1250.820917255113,0.18098830087140405,0.004446572546536724,0.0077232726,0,0,0,0 +1761,0.0030417996868854222,0.09920092557592508,0,0,2.1377569894528237,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09143,0,457.00000254313153,4275.9395,735.7630208333333,20.45599016898809,277.6639989217122,354.70796791995804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.22205098470045,0.06726765429878842,7.080969808277224,60.98422720066375,3.9477855453840847,15.691915882574792,-0.0025240298023042032,0,0,1256.5481216489331,0.1841585443588585,0.004446572546536724,0.0077232726,0,0,0,0 +1762,0.0030429071320477096,0.10102593688918185,0,0,2.101748108909336,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08127,0,457.00000254313153,4275.4052,736.3031056722004,20.451687381976814,277.7320022583008,349.24969722773284,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3203315e-8,0,0,0,0,0,1.5142326e-6,0,0,0,0,274.25004831949866,0.06853849253667572,7.072547337152548,60.0270893345371,3.8056067222316985,15.52593530614623,-0.002753487057059132,0,0,1235.176016491452,-0.7198788864817063,0.004446572546536724,0.0077232726,0,0,0,0 +1763,0.003044014577209992,0.10288452315422644,0,0,2.1070297579949187,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09332,0,457.00000254313153,4276.0386,737.1810404459634,20.54517933681397,277.7959976196289,350.0593349220327,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6788058e-7,0,0,0,0,0,1.2367808e-5,0,0,0,0,274.30205535888666,0.06983333978518949,7.067982584358078,60.127066272688566,3.846149431214471,15.526762487788051,-0.0029829443118140585,0,0,1242.4313344000275,-0.4399601212913509,0.004446572546536724,0.0077232726,0,0,0,0 +1764,0.0030451220223722732,0.10477730205346951,0,0,2.0715492266986275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1104,0,457.00000254313153,4276.9364,738.1030629475911,20.26091721016315,277.8590037027995,342.04461065627544,0,0,0,0,0,0,0,0,0,0,0,0,5.745499576104152e-9,1.2683334e-6,0,0,0,0,3.1742572836890304e-7,2.4998684e-5,0,0,0,0,274.3400497436523,0.0711526496288805,6.89874574004507,58.43835716681741,3.8290033683946536,14.958698984764437,-0.003212401566568987,0,0,1212.8230980159792,-0.03904732457783037,0.004446572546536724,0.0077232726,0,0,0,0 +1765,0.0030462294675345533,0.10670490263289913,0,0,2.123600021913132,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07293,0,457.00000254313153,4274.9668,738.9860382080077,20.91915499807752,277.9129994710286,352.9327257663859,0,0,0,0,0,0,0,0,0,0,0,0,4.596399853321979e-8,1.3852706e-6,0,0,0,0,2.539405793792563e-6,3.0313258e-5,0,0,0,0,274.37204742431635,0.07249688422153833,7.112382325014417,60.629457859488916,3.8781552227346054,15.679924105503577,-0.0034418588213239137,0,0,1250.7252029507404,0.10958166609721692,0.004446572546536724,0.0077232726,0,0,0,0 +1766,0.0033962667106833934,0.10866796551113769,0,0,2.1104599771353545,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07758,0,457.00000254313153,4275.2111,739.831085205078,20.853591900632743,277.95800018310547,349.3806450006132,0,0,0,0,0,0,0,0,0,0,0,0,9.192799588220169e-8,1.4212948e-6,0,0,0,0,5.078811454950483e-6,3.4371719e-5,0,0,0,0,274.3920516967773,0.07386651444808362,7.0362965307494045,59.85878462626717,3.884852897551278,15.358830814708325,-0.00367131607607884,0,0,1244.142076911234,-0.17848752670419268,0.004446572546536724,0.0077232726,0,0,0,0 +1767,0.003397374155845676,0.11066714309234521,0,0,2.112460701438636,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08566,0,457.00000254313153,4275.6359,740.7289835611978,20.999179455660748,278.0169982910156,349.61609899642303,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199471148095e-7,1.4573362e-6,0,0,0,0,7.618217182425724e-6,3.8432158e-5,0,0,0,0,274.42605082194007,0.07526202008951893,7.045382426953697,59.89102690050866,3.880476348727496,15.400564496222026,-0.0039007733308337685,0,0,1243.3080558862168,-0.23003967707403605,0.004446572546536724,0.0077232726,0,0,0,0 +1768,0.003398481601007963,0.1127030997830392,0,0,2.183132040203538,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04673,0,457.00000254313153,4273.5893,741.2220560709634,21.659452113517297,278.07799530029297,362.65368482709385,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599176440337e-7,1.4932143e-6,0,0,0,0,1.0157622909900965e-5,4.247379e-5,0,0,0,0,274.44704691569007,0.07668388999099586,7.223617820830233,62.365825552982606,4.039005153575375,16.063730202230957,-0.004130230585588698,0,0,1294.7054231244865,0.0295441238874522,0.004446572546536724,0.0077232726,0,0,0,0 +1769,0.0033995890461702483,0.11477651221290339,0,0,2.1376337416440134,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0767,0,457.00000254313153,4275.165,741.7470499674478,21.496335350339965,278.135004679362,355.02541845168975,0,0,0,0,0,0,0,0,0,0,0,0,2.298199900015637e-7,1.5293427e-6,0,0,0,0,1.2697028751063044e-5,4.6544254e-5,0,0,0,0,274.4680506388346,0.07813262223305735,7.157863703024064,60.95040360500106,3.9146198633161595,15.735094791574257,-0.004359687840343624,0,0,1273.3622210005092,0.1325346158749756,0.004446572546536724,0.0077232726,0,0,0,0 +1770,0.003400696491332528,0.11688806945965896,0,0,2.1393647387522594,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04544,0,457.00000254313153,4273.5216,742.3010152180989,21.63439757224449,278.1939977010091,355.3605475565106,0,0,0,0,0,0,0,0,0,0,0,0,2.757839894229619e-7,1.5651961e-6,0,0,0,0,1.5236434516433897e-5,5.0583038e-5,0,0,0,0,274.49504852294916,0.0796087243061151,7.155978283657899,60.96602720867275,3.9271229910537153,15.742715085469241,-0.004589145095098551,0,0,1277.4922103572562,0.03636234846097209,0.004446572546536724,0.0077232726,0,0,0,0 +1771,0.0037688917930248853,0.11903847327807247,0,0,2.1009097006210053,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07227,0,457.00000254313153,4274.9318,742.8711649576821,21.428921101329358,278.2700017293294,347.8619882938519,0,0,0,0,0,0,0,0,0,0,0,0,3.2174798529164644e-7,1.6013494e-6,0,0,0,0,1.7775840206013527e-5,5.4656378000000014e-5,0,0,0,0,274.5130513509114,0.08111271328822328,7.069218405010363,59.42424032933085,3.843192572805414,15.321977391799376,-0.0048186023498534795,0,0,1230.1282386704063,0.08889303627750589,0.004446572546536724,0.0077232726,0,0,0,0 +1772,0.00377000487949438,0.12122843833317697,0,0,2.0870775413423877,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08887,0,457.00000254313153,4275.8046,744.0189666748046,21.39461571539237,278.33399963378906,344.613473832749,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198589728254e-7,1.6374741e-6,0,0,0,0,2.0315245971384382e-5,5.8726423e-5,0,0,0,0,274.5310490926106,0.08264511602621083,7.043230561502576,58.72495294608385,3.8129800371340568,15.114183286240658,-0.0050480596046084064,0,0,1217.8363475826973,0.15110052169091734,0.004446572546536724,0.0077232726,0,0,0,0 +1773,0.003771117965963877,0.12345869243778378,0,0,2.0927556031478227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.06952,0,457.00000254313153,4274.7874,744.6629842122395,21.59523139318095,278.41199493408203,345.7768090889352,0,0,0,0,0,0,0,0,0,0,0,0,4.136759793974913e-7,1.6733555e-6,0,0,0,0,2.2854651888337685e-5,6.276843000000001e-5,0,0,0,0,274.54705047607416,0.08420646932023572,7.104503735011084,58.916568849809806,3.795742518659598,15.204663791112324,-0.005277516859363335,0,0,1220.6866453772807,0.17402255695782867,0.004446572546536724,0.0077232726,0,0,0,0 +1774,0.0037722310524333762,0.12572997679436368,0,0,2.1549007405251683,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0265,0,457.00000254313153,4272.5262,744.8780721028645,22.25970772945681,278.49099985758465,358.1035850352457,0,0,0,0,0,0,0,0,0,0,0,0,4.5963998474007894e-7,1.709014e-6,0,0,0,0,2.539405750212609e-5,6.678474599999999e-5,0,0,0,0,274.56504567464185,0.08579732011182588,7.347701469094086,61.31335787055999,3.8921060554545215,15.87559317662792,-0.005506974114118261,0,0,1266.4286163930858,0.18181443567658306,0.004446572546536724,0.0077232726,0,0,0,0 +1775,0.0037733441389028706,0.12804304624137816,0,0,2.148996596875075,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05246,0,457.00000254313153,4273.8905,745.3670603434243,22.200963290559795,278.58600362141925,355.04717285558434,0,0,0,0,0,0,0,0,0,0,0,0,5.056039735033361e-7,1.7452255e-6,0,0,0,0,2.7933463115914492e-5,7.0864778e-5,0,0,0,0,274.5790456136067,0.08741822567547253,7.269644819584187,60.54083046418634,3.9181029245147934,15.589135703603631,-0.0057364313688731865,0,0,1250.604503536799,0.18443600769588672,0.004446572546536724,0.0077232726,0,0,0,0 +1776,0.004161708793079992,0.13039866950414225,0,0,2.1121431315177817,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03943999999998,0,457.00000254313153,4273.2061,746.0480702718098,22.141942125209106,278.68299865722656,348.8985525123486,0,0,0,0,0,0,0,0,0,0,0,0,5.515679741089722e-7,1.7810977e-6,0,0,0,0,3.0472869184450246e-5,7.490574e-5,0,0,0,0,274.59404754638666,0.08906975381384338,7.261469977422546,59.38114479685163,3.777483547468073,15.370077015958627,-0.005965888623628117,0,0,1235.2601205170242,0.1853168155815639,0.004446572546536724,0.0077232726,0,0,0,0 +1777,0.004162821879549489,0.13279762945030274,0,0,2.170244783620918,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05273,0,457.00000254313153,4273.9048,746.7369181315103,22.568710059808843,278.7739969889323,357.54536101292035,0,0,0,0,0,0,0,0,0,0,0,0,5.975319747146083e-7,1.8172253e-6,0,0,0,0,3.301227479823865e-5,7.8976112e-5,0,0,0,0,274.6060485839843,0.09075248305668364,7.355973763265293,60.89349007083899,3.9379814138510616,15.673457529791746,-0.0061953458783830465,0,0,1262.6435516726208,0.1856126856704365,0.004446572546536724,0.0077232726,0,0,0,0 +1778,0.004163934966018991,0.13524072335001636,0,0,2.19800140223097,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04465,0,457.00000254313153,4273.48,746.7510579427083,22.856080929571224,278.86599985758465,362.75541346308773,0,0,0,0,0,0,0,0,0,0,0,0,6.434959753202444e-7,1.8531337e-6,0,0,0,0,3.5551680412027054e-5,8.3021224e-5,0,0,0,0,274.61804707845045,0.09246700286347481,7.434606066614661,61.78348694597739,4.021077006745745,15.899456247670447,-0.006424803133137972,0,0,1282.2802932337786,0.18571207513321009,0.004446572546536724,0.0077232726,0,0,0,0 +1779,0.004165048052488488,0.1377287631409144,0,0,2.1596157774386384,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03691,0,457.00000254313153,4273.0734,746.907023111979,22.820635694370733,278.9590021769206,355.9261715181252,0,0,0,0,0,0,0,0,0,0,0,0,6.894599664519774e-7,1.889034e-6,0,0,0,0,3.809108632898036e-5,8.706542400000001e-5,0,0,0,0,274.6290486653645,0.09421391382992209,7.418773457145868,60.500814881249,3.8656452035830986,15.627457862925702,-0.006654260387892898,0,0,1253.8091981813902,0.18574546502203013,0.004446572546536724,0.0077232726,0,0,0,0 +1780,0.004167169606582223,0.14026257569794193,0,0,2.18926758767753,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98817,0,457.00000254313153,4270.5109999999995,747.2310638427733,23.24616665378551,279.0540033976237,361.61404216072185,0,0,0,0,0,0,0,0,0,0,0,0,7.354239623206619e-7,1.9244033000000003e-6,0,0,0,0,4.063049224593366e-5,9.1048394e-5,0,0,0,0,274.639050801595,0.09599382789834296,7.569429120654667,61.61859566014493,3.8711479642945226,16.01838080056119,-0.0068837176426478274,0,0,1274.797708672403,0.18575668147078706,0.004446572546536724,0.0077232726,0,0,0,0 +1781,0.004659412904951052,0.14284300310816161,0,0,2.189441199921453,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04236000000002,0,457.00000254313153,4273.3596,747.7660471598306,23.249655483903965,279.14499918619794,360.09005386289476,0,0,0,0,0,0,0,0,0,0,0,0,7.81387962926298e-7,1.9610810000000003e-6,0,0,0,0,4.316989755655717e-5,9.5182182e-5,0,0,0,0,274.6470464070637,0.09780736857203022,7.505783352638315,61.19330647262292,3.9207239231952387,15.80695226528239,-0.007113174897402756,0,0,1277.5362524488116,0.18576045057214427,0.004446572546536724,0.0077232726,0,0,0,0 +1782,0.00466053247031568,0.14547090295061266,0,0,2.160522701160256,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03125,0,457.00000254313153,4272.7759,748.2900187174478,23.341758118914438,279.2430013020833,356.04655462228243,0,0,0,0,0,0,0,0,0,0,0,0,8.273519635319341e-7,1.9969148e-6,0,0,0,0,4.570930377667537e-5,9.9218691e-5,0,0,0,0,274.65404764811194,0.09965517113366511,7.519625787694825,60.48572145305894,3.7938381853855025,15.712820826828775,-0.007342632152157681,0,0,1261.0508762359207,0.18576171303887845,0.004446572546536724,0.0077232726,0,0,0,0 +1783,0.004662660503304549,0.14814714858131856,0,0,2.150725589743228,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0436,0,457.00000254313153,4273.4248,748.6270294189452,23.379916787266467,279.33999888102215,354.28692425367274,0,0,0,0,0,0,0,0,0,0,0,0,8.733159641375702e-7,2.0330816e-6,0,0,0,0,4.824870908729887e-5,1.0329359e-4,0,0,0,0,274.6580505371093,0.1015378828678566,7.496232273464098,60.10171272373322,3.7887381780047664,15.607260472139073,-0.007572089406912609,0,0,1258.691215611721,-1.6071113091275233,0.004446572546536724,0.0077232726,0,0,0,0 +1784,0.004663780068669177,0.15087262942353824,0,0,2.140542212443426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05531,0,457.00000254313153,4274.0405,748.9340260823567,23.29404230240209,279.4340006510417,350.5694962640399,0,0,0,0,0,0,0,0,0,0,0,0,9.192799552693032e-7,2.0692567e-6,0,0,0,0,5.078811530741708e-5,1.0736946e-4,0,0,0,0,274.6640548706054,0.10345616328788484,7.381156400424443,59.21225989324307,3.835360348467436,15.228141255684468,-0.007801546661667537,0,0,1241.0913844308948,-3.4875496425880166,0.004446572546536724,0.0077232726,0,0,0,0 +1785,0.004666993144531652,0.1536482512633568,0,0,2.1658396912622853,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02817,0,457.00000254313153,4272.6136,749.2520395914712,23.80210553725873,279.53200276692706,356.805125351722,0,0,0,0,0,0,0,0,0,0,0,0,9.652439748227455e-7,2.1048124e-6,0,0,0,0,5.332752031487568e-5,1.113739e-4,0,0,0,0,274.66904958089185,0.1054106843667286,7.538152323485599,60.494479362546464,3.8216491921096964,15.732711479772949,-0.00803100391642247,0,0,1266.5681498543852,-1.3227211965923305,0.004446572546536724,0.0077232726,0,0,0,0 +1786,0.005295379572172684,0.15647493655071468,0,0,2.158683484868033,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02684000000001,0,457.00000254313153,4272.5442,749.563980102539,23.831994998220747,279.6290003458659,354.20587729579694,0,0,0,0,0,0,0,0,0,0,0,0,1.011207928058866e-6,2.14077e-6,0,0,0,0,5.586692683815878e-5,1.1542471e-4,0,0,0,0,274.67605336507154,0.10740213077245707,7.4910842541914535,59.91468240707549,3.8263162148060967,15.467157122376957,-0.008260461171177394,0,0,1263.905903422694,-0.4872575238005176,0.004446572546536724,0.0077232726,0,0,0,0 +1787,0.005297507605161552,0.15935362470597414,0,0,2.18517929356942,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03415,0,457.00000254313153,4272.9283,749.6690826416014,24.17652817967206,279.72900136311847,358.7933682521366,0,0,0,0,0,0,0,0,0,0,0,0,1.0571719712970662e-6,2.1768802999999995e-6,0,0,0,0,5.840633214878229e-5,1.1949308e-4,0,0,0,0,274.6780471801757,0.10943120010806894,7.555171969721947,60.75335707654267,3.8851079963013144,15.71033145518615,-0.00848991842593232,0,0,1281.3314192960927,-0.09613776148013498,0.004446572546536724,0.0077232726,0,0,0,0 +1788,0.005298627170526176,0.16228527243212662,0,0,2.255223483707013,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9922,0,457.00000254313153,4270.7227,750.1610209147134,24.855928924260272,279.83099873860675,371.3570923496072,0,0,0,0,0,0,0,0,0,0,0,0,1.1031359387440414e-6,2.2120831e-6,0,0,0,0,6.094573836890049e-5,1.2345688999999995e-4,0,0,0,0,274.67704772949213,0.11149860315586238,7.730934740743885,63.12433046674855,4.038519355079948,16.343354337191045,-0.008719375680687248,0,0,1326.080725437415,0.0885310651741068,0.004446572546536724,0.0077232726,0,0,0,0 +1789,0.005300755203515047,0.16527085403274291,0,0,2.2076646319075275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0242,0,457.00000254313153,4272.405,750.6470489501952,24.717072836600927,279.93299865722656,363.4416445787676,0,0,0,0,0,0,0,0,0,0,0,0,1.149099944086629e-6,2.2486571e-6,0,0,0,0,6.348514337635909e-5,1.2757871e-4,0,0,0,0,274.6780522664387,0.11360506412642196,7.663516243062957,61.632292379507476,3.911091424062233,16.00040861482673,-0.008948832935442175,0,0,1300.9350554928549,0.1529858926017705,0.004446572546536724,0.0077232726,0,0,0,0 +1790,0.005302883236503912,0.16831136173577357,0,0,2.2164369958956196,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99139,0,457.00000254313153,4270.6805,751.1640370686848,24.942208573783375,280.03700256347656,364.880216392627,0,0,0,0,0,0,0,0,0,0,0,0,1.195063968377023e-6,2.2839743e-6,0,0,0,0,6.60245495964773e-5,1.3155567e-4,0,0,0,0,274.67705281575513,0.11575132091230927,7.680254371033305,61.84599180813865,3.9372032070765473,16.056743908676,-0.009178290190197105,0,0,1304.8004807748046,0.1747471382296157,0.004446572546536724,0.0077232726,0,0,0,0 +1791,0.005920182770600551,0.1714078060233054,0,0,2.172583556470899,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02128,0,457.00000254313153,4272.2515,751.7080535888671,24.778432167331218,280.14099884033203,356.6583861664455,0,0,0,0,0,0,0,0,0,0,0,0,1.2410279168761917e-6,2.320551e-6,0,0,0,0,6.85639552102657e-5,1.3567783e-4,0,0,0,0,274.6740468343098,0.11793812534654649,7.556943543496139,60.21873920423577,3.848117366332663,15.616449876377857,-0.00940774744495203,0,0,1284.7688041559788,0.18206199111341248,0.004446572546536724,0.0077232726,0,0,0,0 +1792,0.006098811288557544,0.17456121596738536,0,0,2.1616507929601063,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04466,0,457.00000254313153,4273.4807,752.2780151367186,24.818892944319888,280.2409973144531,354.25153761087523,0,0,0,0,0,0,0,0,0,0,0,0,1.286991960114392e-6,2.3570319e-6,0,0,0,0,7.110336143038391e-5,1.3978892e-4,0,0,0,0,274.6740468343098,0.12016624346598324,7.499155044750518,59.70568574139235,3.8521685509833974,15.44666919254658,-0.009637204699706955,0,0,1279.936623401035,0.18451935326733201,0.004446572546536724,0.0077232726,0,0,0,0 +1793,0.00610508215549315,0.17777263957202216,0,0,2.1532738339280715,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02605,0,457.00000254313153,4272.5025,752.6820678710936,25.03153140920904,280.33199818929035,353.37230933667234,0,0,0,0,0,0,0,0,0,0,0,0,1.3329559275613672e-6,2.3926083e-6,0,0,0,0,7.364276643784251e-5,1.4379579e-4,0,0,0,0,274.65905253092444,0.12243645577963895,7.518120739119681,59.58493949599902,3.7981346475872892,15.477979537880952,-0.009866661954461885,0,0,1276.6758910223705,0.18534481647704806,0.004446572546536724,0.0077232726,0,0,0,0 +1794,0.006092419359098298,0.18104314412147968,0,0,2.2138431157688125,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98417,0,457.00000254313153,4270.3009999999995,753.2520446777343,25.76753777758947,280.41500091552734,365.72191403060503,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199329039548e-6,2.4276195000000003e-6,0,0,0,0,7.618217265796072e-5,1.4773748e-4,0,0,0,0,274.6480560302734,0.1247495575421151,7.731535991085819,62.03822453198564,3.901984420737959,16.16525997375536,-0.010096119209216816,0,0,1323.3915439011364,0.18562210038833984,0.004446572546536724,0.0077232726,0,0,0,0 +1795,0.006095932503617563,0.18437381653497847,0,0,2.2026922727614937,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01093,0,457.00000254313153,4271.7076,753.8410644531249,25.77334281488129,280.4919967651367,362.19212268926736,0,0,0,0,0,0,0,0,0,0,0,0,1.4248839571943488e-6,2.4642054e-6,0,0,0,0,7.872157827174912e-5,1.5186068000000002e-4,0,0,0,0,274.63105265299475,0.12710635903217238,7.626169221355247,61.24273214189555,3.9191066213899726,15.883131946283404,-0.01032557646397174,0,0,1307.1177907303108,0.18571524277301074,0.004446572546536724,0.0077232726,0,0,0,0 +1796,0.006396386441099536,0.18776576372792214,0,0,2.1531546155773227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99978,0,457.00000254313153,4271.1214,754.5180511474608,25.74058406529963,280.5549952189128,354.4783029356138,0,0,0,0,0,0,0,0,0,0,0,0,1.4708479056935175e-6,2.4998985e-6,0,0,0,0,8.126098449186732e-5,1.55881e-4,0,0,0,0,274.6150538126627,0.1295076858365712,7.5818630966127785,59.864242428463136,3.749609514115161,15.62836980130604,-0.010555033718726669,0,0,1286.4148371024328,0.056138903072538514,0.004446572546536724,0.0077232726,0,0,0,0 +1797,0.006712627262260326,0.19122011297976946,0,0,2.2134750361996645,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01623,0,457.00000254313153,4271.986,755.2560729980468,26.23006225836581,280.6230010986328,363.54823719907995,0,0,0,0,0,0,0,0,0,0,0,0,1.5168119489317178e-6,2.5362748e-6,0,0,0,0,8.380038949932593e-5,1.5998003e-4,0,0,0,0,274.6010538736979,0.1319543791392746,7.636302581611899,61.4713769474247,3.9409741021501565,15.938653048219956,-0.010784490973481595,0,0,1322.1792002170396,-0.04279485298025665,0.004446572546536724,0.0077232726,0,0,0,0 +1798,0.006990649026827593,0.19473801230867469,0,0,2.2340562829342026,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0081,0,457.00000254313153,4271.559,756.1130472819009,26.546440122432795,280.68200429280597,367.6501027985187,0,0,0,0,0,0,0,0,0,0,0,0,1.562775925852596e-6,2.5720343e-6,0,0,0,0,8.633979571944413e-5,1.6400798999999998e-4,0,0,0,0,274.5840530395507,0.1344472960161143,7.671017715782881,62.197639026391784,4.015700360730371,16.12667274116127,-0.011013948228236524,0,0,1344.4943107799907,0.057545267787991024,0.004446572546536724,0.0077232726,0,0,0,0 +1799,0.007363034100288113,0.19832063085301946,0,0,2.2072921648839388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99068,0,457.00000254313153,4270.6431,756.9420471191405,26.706488169365446,280.7529983520508,363.4860469038741,0,0,0,0,0,0,0,0,0,0,0,0,1.6087399217212806e-6,2.6075323e-6,0,0,0,0,8.887920133323253e-5,1.6800578999999998e-4,0,0,0,0,274.5700480143229,0.13698730973502452,7.674462849763394,61.49623019706863,3.882903388386678,16.03734278779562,-0.011243405482991452,0,0,1332.7327654492608,0.14035414546167346,0.004446572546536724,0.0077232726,0,0,0,0 +1800,0.007853247961014498,0.20196915925996428,0,0,2.2159740553936684,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95838,0,457.00000254313153,4268.9449,757.7620493570962,27.056343077702923,280.83399709065753,365.8466368441075,0,0,0,0,0,0,0,0,0,0,0,0,1.6547039554855776e-6,2.6425936e-6,0,0,0,0,9.141860694702093e-5,1.7195328999999998e-4,0,0,0,0,274.54705047607416,0.13957531006194712,7.7406453217716145,62.00320914073126,3.867691465248536,16.242141697691363,-0.011477676635976337,0,0,1351.4018850842497,0.17040288697636866,0.004446572546536724,0.0077232726,0,0,0,0 +1801,0.0077923631049037195,0.2056848100811483,0,0,2.219401689900871,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01099,0,457.00000254313153,4271.7107,758.5840606689452,27.12488718150826,280.9189987182617,364.91706838648093,0,0,0,0,0,0,0,0,0,0,0,0,1.7006678945108433e-6,2.6800125e-6,0,0,0,0,9.395801256080934e-5,1.7617249e-4,0,0,0,0,274.5320510864257,0.1422122035725165,7.701186978248275,61.665647788634544,3.9218437626561613,16.063733218320355,-0.011716461343221001,0,0,1346.3126694277855,0.1805980962819972,0.004446572546536724,0.0077232726,0,0,0,0 +1802,0.010116776318211833,0.20946881817566826,0,0,2.2026926609955066,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99468,0,457.00000254313153,4270.8532,759.5070699055989,27.339784315547476,280.9939956665039,362.96270750693964,0,0,0,0,0,0,0,0,0,0,0,0,1.7466319377490436e-6,2.7155059e-6,0,0,0,0,9.649741878092755e-5,1.8016977e-4,0,0,0,0,274.5230509440104,0.14489891396963264,7.763054085257172,61.32615659022455,3.814905719116379,16.0758236117733,-0.011955246050465669,0,0,1365.7924593201149,0.18402739824539616,0.004446572546536724,0.0077232726,0,0,0,0 +1803,0.008763957676258299,0.2133224411204717,0,0,2.1800158282432216,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0108,0,457.00000254313153,4271.7009,760.5080464680989,27.320499854247753,281.07299550374347,358.65077997506035,0,0,0,0,0,0,0,0,0,0,0,0,1.7925959146699217e-6,2.7519421e-6,0,0,0,0,9.903682439471595e-5,1.8427573e-4,0,0,0,0,274.50505065917963,0.1476363824070339,7.720863756565482,60.404341817460505,3.773697198795284,15.83103087932591,-0.01219403075771034,0,0,1340.0232615916289,0.18517955647392584,0.004446572546536724,0.0077232726,0,0,0,0 +1804,0.009565590378222546,0.2172469596283,0,0,2.197298086929074,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0121,0,457.00000254313153,4271.7691,761.5410817464192,27.46474997353236,281.15699768066406,359.52869597563125,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599105386063e-6,2.7879493e-6,0,0,0,0,1.0157623000850435e-4,1.8833223e-4,0,0,0,0,274.4860483805338,0.1504255678189829,7.687086730342071,60.36470274902327,3.8714733047891783,15.676248110600966,-0.012432815464955008,0,0,1347.9906823261654,0.1855665834344882,0.004446572546536724,0.0077232726,0,0,0,0 +1805,0.009351564248471856,0.2212436779733203,0,0,2.215042398148324,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98963,0,457.00000254313153,4270.588,762.6710561116536,27.95079819780367,281.23399607340497,364.30370432998336,0,0,0,0,0,0,0,0,0,0,0,0,1.8845239443029034e-6,2.8232141e-6,0,0,0,0,1.0411563562229276e-4,1.9230319e-4,0,0,0,0,274.46604665120435,0.15326744725618094,7.835162208853216,61.31991145746931,3.843518327224849,16.094154796194182,-0.012671600172199671,0,0,1367.0219318674867,0.18569659271698705,0.004446572546536724,0.0077232726,0,0,0,0 +1806,0.009786482457224585,0.22531392442458775,0,0,2.222822584756122,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98239,0,457.00000254313153,4270.2074,763.799077351888,28.134372446801326,281.32200113932294,364.34322933574117,0,0,0,0,0,0,0,0,0,0,0,0,1.930487997015007e-6,2.8589339e-6,0,0,0,0,1.0665504184241097e-4,1.9632654e-4,0,0,0,0,274.44705200195307,0.15616301622802836,7.843541453054056,61.22344968188294,3.8770122853259146,15.951443167692844,-0.01291038487944434,0,0,1370.2972329819197,0.18574025872045344,0.004446572546536724,0.0077232726,0,0,0,0 +1807,0.01047013855726404,0.22945905168748248,0,0,2.2398719818574606,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99423,0,457.00000254313153,4270.8298,765.0220794677733,28.45865602722048,281.40900166829425,367.234932813752,0,0,0,0,0,0,0,0,0,0,0,0,1.976451850775144e-6,2.8952686e-6,0,0,0,0,1.0919444745619937e-4,2.0042079e-4,0,0,0,0,274.4280471801757,0.15911328905135125,7.906227328891799,61.706469136452746,3.9067413834348796,16.117564084518662,-0.013149169586689009,0,0,1389.725529173022,0.1857549291426783,0.004446572546536724,0.0077232726,0,0,0,0 +1808,0.0097850874703066491,0.23368043735326766,0,0,2.311936484434354,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95199,0,457.00000254313153,4268.6094,766.3190816243489,29.185241168144344,281.4959996541341,380.03527200344246,0,0,0,0,0,0,0,0,0,0,0,0,2.022415856117732e-6,2.9298066e-6,0,0,0,0,1.1173385246365797e-4,2.0430798e-4,0,0,0,0,274.41105143229163,0.16211929920571624,8.095303457182244,64.08195973155631,4.0703582727403695,16.731546899631116,-0.013387954293933677,0,0,1425.5751228095764,0.1857598571570931,0.004446572546536724,0.0077232726,0,0,0,0 +1809,0.009793704265605399,0.23797948435691788,0,0,2.267442640293564,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.979,0,457.00000254313153,4270.0292,767.6550801595051,29.128658126909023,281.56599680582684,372.8486855412818,0,0,0,0,0,0,0,0,0,0,0,0,2.068379899355932e-6,2.9666566e-6,0,0,0,0,1.1427325929010597e-4,2.084616e-4,0,0,0,0,274.3830540974934,0.16518209969545813,8.062766978193096,62.71002212876877,3.9400684962479615,16.440165993612062,-0.013626739001178344,0,0,1403.1315870359595,-3.365688134186352,0.004446572546536724,0.0077232726,0,0,0,0 +1810,0.010412685282412803,0.24235762144337059,0,0,2.279523715758953,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93988,0,457.00000254313153,4267.9729,769.1471150716145,29.42453241885191,281.6480026245117,374.7180119050739,0,0,0,0,0,0,0,0,0,0,0,0,2.1143439425941324e-6,3.001229600000001e-6,0,0,0,0,1.1681266429756458e-4,2.1235282e-4,0,0,0,0,274.3600463867187,0.16830276341854683,8.107079152206923,62.97351665449524,3.9615915998724422,16.525388081401466,-0.013865523708423014,0,0,1414.1945614469914,-2.313830028435405,0.004446572546536724,0.0077232726,0,0,0,0 +1811,0.011014901476711613,0.24681630364235504,0,0,2.252530235973812,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96903,0,457.00000254313153,4269.505,770.71804300944,29.40578755819684,281.71799723307294,369.2694863079116,0,0,0,0,0,0,0,0,0,0,0,0,2.1603079858323326e-6,3.0381873e-6,0,0,0,0,1.1935207051768278e-4,2.1651886e-4,0,0,0,0,274.3340479532877,0.17148238354242323,8.026948341108737,61.82960599561912,3.9187456997844685,16.18886557071267,-0.014104308415667684,0,0,1403.686743399878,-0.7123016214302859,0.004446572546536724,0.0077232726,0,0,0,0 +1812,0.011395911929257216,0.2513570127519567,0,0,2.228006934512883,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99029,0,457.00000254313153,4270.6225,772.2101186116536,29.420298496849927,281.7899983723958,364.5806874718721,0,0,0,0,0,0,0,0,0,0,0,0,2.20627183959247e-6,3.0749001e-6,0,0,0,0,1.2189147552514139e-4,2.2065669e-4,0,0,0,0,274.3040517171223,0.17472207388693542,7.965169636083453,60.85746996681422,3.875988658118611,15.929050627989685,-0.014343093122912353,0,0,1394.884132023951,-0.11856299687933905,0.004446572546536724,0.0077232726,0,0,0,0 +1813,0.011449080560791872,0.25598125783107806,0,0,2.2319968590304815,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97005,0,457.00000254313153,4269.5589,773.7009938557942,29.7784760297943,281.8580017089844,365.91388742059627,0,0,0,0,0,0,0,0,0,0,0,0,2.2522358449350577e-6,3.110098e-6,0,0,0,0,1.244308817452596e-4,2.2461994e-4,0,0,0,0,274.2670516967773,0.17802296931450928,8.032995952278533,61.13613019851266,3.844088557026285,16.064915035546967,-0.014581877830157016,0,0,1400.3255529877902,0.08341540584179588,0.004446572546536724,0.0077232726,0,0,0,0 +1814,0.011703715690574799,0.26069057570095894,0,0,2.291579691300283,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93883999999998,0,457.00000254313153,4267.9182,774.8281351725259,30.547851858136706,281.9310048421224,377.9855416791419,0,0,0,0,0,0,0,0,0,0,0,0,2.298199888173258e-6,3.1448486e-6,0,0,0,0,1.269702879653778e-4,2.2853159e-4,0,0,0,0,274.2310485839843,0.18138622612769045,8.255365791822651,63.491928228846156,3.9468734522371403,16.719923485538892,-0.014820662537401687,0,0,1449.119879767822,0.1513774178324831,0.004446572546536724,0.0077232726,0,0,0,0 +1815,0.012094116593579975,0.2654865314559236,0,0,2.2873246936294374,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94955,0,457.00000254313153,4268.4808,776.1400197347004,30.644339540877155,281.9919967651367,375.58066479556715,0,0,0,0,0,0,0,0,0,0,0,0,2.344163931411458e-6,3.1811772e-6,0,0,0,0,1.295096929728364e-4,2.3262515e-4,0,0,0,0,274.1810506184895,0.18481302247419681,8.178894557702046,62.871575698722964,3.9779982661109097,16.487496881933723,-0.015059447244646357,0,0,1442.8346042595695,-3.3418049013197435,0.004446572546536724,0.0077232726,0,0,0,0 +1816,0.013382562792105972,0.27037071898352416,0,0,2.2610219999980314,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93504,0,457.00000254313153,4267.7184,777.380157470703,30.799856219058316,282.0590006510417,371.6298227687404,0,0,0,0,0,0,0,0,0,0,0,0,2.3901279746496584e-6,3.2165261e-6,0,0,0,0,1.320490991929546e-4,2.3660577e-4,0,0,0,0,274.1430511474609,0.1883045587596232,8.188247476569973,62.14643251873565,3.866008444908697,16.395033850520726,-0.01538342230023426,0,0,1449.5176305014372,-4.328813791919775,0.004446572546536724,0.0077232726,0,0,0,0 +1817,0.013970105691413876,0.2753447614942531,0,0,2.2961805691271597,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95336,0,457.00000254313153,4268.6815,778.9910329182942,31.198395410102997,282.1270014444987,376.4429441283954,0,0,0,0,0,0,0,0,0,0,0,0,2.4360918284097957e-6,3.2531745000000007e-6,0,0,0,0,1.345885054130728e-4,2.4073619e-4,0,0,0,0,274.10705566406244,0.1918620580679428,8.22082538393248,62.94153100870699,3.9812025759726706,16.517228645555626,-0.015754264592881567,0,0,1472.005826655642,-1.519519756284862,0.004446572546536724,0.0077232726,0,0,0,0 +1818,0.01405484729122227,0.2804103120610006,0,0,2.335490104759264,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94012,0,457.00000254313153,4267.9855,780.3030497233071,31.68760831940507,282.1999994913737,383.9142096017897,0,0,0,0,0,0,0,0,0,0,0,0,2.4820558337523835e-6,3.2885565000000008e-6,0,0,0,0,1.371279092078718e-4,2.4472062e-4,0,0,0,0,274.07105000813795,0.19548676658995365,8.306817108343136,64.26768048931984,4.1092958455936754,16.849648882949314,-0.01612510688552888,0,0,1503.3307533939446,-0.39544551956287705,0.004446572546536724,0.0077232726,0,0,0,0 +1819,0.01412101034059915,0.28556905416843703,0,0,2.304129482409452,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92235,0,457.00000254313153,4267.0511,781.42605082194,31.84544135012051,282.27200571695965,378.33258383444644,0,0,0,0,0,0,0,0,0,0,0,0,2.5280198769905837e-6,3.3237292e-6,0,0,0,0,1.396673166406496e-4,2.4868094e-4,0,0,0,0,274.05004882812494,0.19917995405981814,8.302878858634369,63.25758927353961,3.9635191901767652,16.665198211860137,-0.016495949178176192,0,0,1480.3972085438447,-0.009852951526022849,0.004446572546536724,0.0077232726,0,0,0,0 +1820,0.014336733148844732,0.29082270227250195,0,0,2.32104876587155,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88909,0,457.00000254313153,4265.3029,782.4270782470702,32.333394668843965,282.3460006713867,382.4197482792824,0,0,0,0,0,0,0,0,0,0,0,0,2.573983920228784e-6,3.3582175000000007e-6,0,0,0,0,1.4220672286076783e-4,2.5256240000000004e-4,0,0,0,0,274.0070495605468,0.20294291419985105,8.41607797478937,64.0766432984354,3.958562233257077,16.963564409475474,-0.0168667914708235,0,0,1500.1274234919138,0.12003571660703966,0.004446572546536724,0.0077232726,0,0,0,0 +1821,0.014562069432518771,0.2961730023701861,0,0,2.3334837772109833,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93899,0,457.00000254313153,4267.9261,783.568130493164,32.52138863261211,282.4150034586589,382.89753410088764,0,0,0,0,0,0,0,0,0,0,0,0,2.6199479634669842e-6,3.396252e-6,0,0,0,0,1.4474612665556683e-4,2.5685255e-4,0,0,0,0,273.9700495402018,0.20677696517370964,8.396299170642942,63.987449087582284,4.029731628274296,16.860100322541292,-0.01723763376347081,0,0,1506.0001599344928,0.06037517262922151,0.004446572546536724,0.0077232726,0,0,0,0 +1822,0.015133379255268703,0.30162173257979613,0,0,2.3025151175170526,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92104,0,457.00000254313153,4266.9822,784.9560546874999,32.73451051970765,282.4769999186198,378.6708004400731,0,0,0,0,0,0,0,0,0,0,0,0,2.665911836174928e-6,3.4313761e-6,0,0,0,0,1.4728553408834463e-4,2.6080728e-4,0,0,0,0,273.9330520629882,0.21068345004814615,8.447852069179593,63.22724653024458,3.871133523422822,16.796298079496715,-0.017608476056118122,0,0,1499.4772542487524,0.0654325060086605,0.004446572546536724,0.0077232726,0,0,0,0 +1823,0.01603814933316958,0.30717070373189426,0,0,2.2824717646567367,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94096,0,457.00000254313153,4268.0293,786.2210744222004,32.75571508609182,282.54000091552734,374.3931813157347,0,0,0,0,0,0,0,0,0,0,0,0,2.7118758225697093e-6,3.4681677e-6,0,0,0,0,1.4982493909580322e-4,2.6495418e-4,0,0,0,0,273.89505004882807,0.21466373726348362,8.395261063519708,62.26076437261461,3.846052063384317,16.532712282905738,-0.01797931834876543,0,0,1499.6047524729552,-0.2700677190301451,0.004446572546536724,0.0077232726,0,0,0,0 +1824,0.01650100893154855,0.31282175997110956,0,0,2.310947810882604,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93425,0,457.00000254313153,4267.6765,787.4750722249348,33.05197869569693,282.6179962158203,377.040711415511,0,0,0,0,0,0,0,0,0,0,0,0,2.7578398658079095e-6,3.5037779e-6,0,0,0,0,1.5236434531592144e-4,2.6896492e-4,0,0,0,0,273.847048441569,0.21871922111297978,8.395833943142073,62.56343379800663,3.956577312910641,16.47072525551795,-0.018354944497914732,0,0,1512.9125520641012,-0.02966138430388376,0.004446572546536724,0.0077232726,0,0,0,0 +1825,0.01722266283199113,0.3185767793690206,0,0,2.3227031118101618,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91652,0,457.00000254313153,4266.7449,788.7140604654946,33.52533881675272,282.6759999593099,380.31674976188685,0,0,0,0,0,0,0,0,0,0,0,0,2.8038039090461098e-6,3.5388691e-6,0,0,0,0,1.5490375032338002e-4,2.7291587000000003e-4,0,0,0,0,273.78604634602857,0.22285132223124796,8.516236488505783,63.185789553909586,3.9190680646113942,16.80867752489523,-0.0187628709494922,0,0,1538.203336309689,0.11056506113548577,0.004446572546536724,0.0077232726,0,0,0,0 +1826,0.017382230465949125,0.32443767454831385,0,0,2.320968833647435,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90841,0,457.00000254313153,4266.3186,789.8310445149739,33.74810290483613,282.6929982503255,378.82226551401243,0,0,0,0,0,0,0,0,0,0,0,0,2.84976795228431e-6,3.574385500000001e-6,0,0,0,0,1.5744315654349825e-4,2.7691579e-4,0,0,0,0,273.72805023193354,0.22706148809190466,8.523620414150141,62.815941509777446,3.9116044827887784,16.620779080998844,-0.01917079740106968,0,0,1531.9828127801402,0.16037395519074635,0.004446572546536724,0.0077232726,0,0,0,0 +1827,0.01863987745517804,0.3304063933184248,0,0,2.3463377823547544,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91515,0,457.00000254313153,4266.6729,790.8700917561848,34.15505001036133,282.69299570719403,382.4773392117438,0,0,0,0,0,0,0,0,0,0,0,0,2.8957318249922537e-6,3.6105981e-6,0,0,0,0,1.5998256276361644e-4,2.8099598e-4,0,0,0,0,273.67705535888666,0.23135119351461897,8.585850324307904,63.38999010724139,3.9627935910031815,16.799919229980286,-0.01957872385264715,0,0,1566.0922143761854,0.17722825483510965,0.004446572546536724,0.0077232726,0,0,0,0 +1828,0.01882474558367928,0.33648491932287206,0,0,2.420774152646399,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.87222,0,457.00000254313153,4264.4159,791.9830423990884,34.99912851284667,282.708002726237,395.9754324666183,0,0,0,0,0,0,0,0,0,0,0,0,2.941695811387035e-6,3.6444139e-6,0,0,0,0,1.6252196777107505e-4,2.847999e-4,0,0,0,0,273.6410522460937,0.23572194118174164,8.801495946618267,65.90535948629658,4.116354977084998,17.480564495882128,-0.019986650304224626,0,0,1618.0207226022496,0.18289538758840385,0.004446572546536724,0.0077232726,0,0,0,0 +1829,0.01866419595593191,0.34267527269850206,0,0,2.379376332459752,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90025,0,457.00000254313153,4265.8895,793.0000712076821,35.0164051294104,282.76099650065106,389.1746282041487,0,0,0,0,0,0,0,0,0,0,0,0,2.9876598546252353e-6,3.6816572e-6,0,0,0,0,1.6506137277853364e-4,2.8899889e-4,0,0,0,0,273.6020533243815,0.24017526216469398,8.767229394465893,64.57289823663554,4.000350816006103,17.19408165401919,-0.020394576755802103,0,0,1597.2383021208498,0.18479929364776207,0.004446572546536724,0.0077232726,0,0,0,0 +1830,0.024933734074320084,0.3489795107468605,0,0,2.4031598307534434,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8667,0,457.00000254313153,4264.1256,793.9600270589192,35.40215533786149,282.8249994913737,392.10653286413964,0,0,0,0,0,0,0,0,0,0,0,0,3.0336238978634356e-6,3.7158665e-6,0,0,0,0,1.6760078021131145e-4,2.9284816e-4,0,0,0,0,273.5640513102213,0.24471271646030182,8.81880644628117,64.94076179033591,4.038430290401805,17.314251572854413,-0.020802503207379586,0,0,1705.903253614498,0.1854388472573092,0.004446572546536724,0.0077232726,0,0,0,0 +1831,0.02366017773383691,0.3553997286179164,0,0,2.3613471253941487,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89173999999998,0,457.00000254313153,4265.442,794.810073852539,35.37418704933364,282.8909962972005,384.20125072452805,0,0,0,0,0,0,0,0,0,0,0,0,3.079587941101636e-6,3.7529959e-6,0,0,0,0,1.7014018521877006e-4,2.97034e-4,0,0,0,0,273.52005004882807,0.24933589353726177,8.731507391555889,63.33682174076503,3.9474094529519688,16.877728667025877,-0.02121042965895705,0,0,1661.033130299973,-2.2447406013527207,0.004446572546536724,0.0077232726,0,0,0,0 +1832,0.023685925177870507,0.3619380600063637,0,0,2.3538632990393804,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90924,0,457.00000254313153,4266.362,795.5789845784504,35.562723492003244,282.9219970703125,382.363398002473,0,0,0,0,0,0,0,0,0,0,0,0,3.1255518138095795e-6,3.7897747e-6,0,0,0,0,1.7267959022622867e-4,3.0117945e-4,0,0,0,0,273.4440485636393,0.25404641289293156,8.712430008651964,62.87089656141417,3.946175052921808,16.738986754109227,-0.021652683906249543,0,0,1660.6105827511283,-1.4987682109213591,0.004446572546536724,0.0077232726,0,0,0,0 +1833,0.024226693427449875,0.3685966778607331,0,0,2.356959381290607,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89175,0,457.00000254313153,4265.4426,796.1241149902343,35.98083111069253,282.96599833170575,383.4537927943128,0,0,0,0,0,0,0,0,0,0,0,0,3.171515800204361e-6,3.824754e-6,0,0,0,0,1.7521899765900648e-4,3.0511746e-4,0,0,0,0,273.3720499674479,0.2588459246206396,8.790922956695082,63.06958370159948,3.905335593523844,16.86449692010886,-0.02214928975776249,0,0,1673.8749364362222,-0.4194845439142279,0.004446572546536724,0.0077232726,0,0,0,0 +1834,0.02470258560682817,0.3753777951055501,0,0,2.4124454659285632,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.854,0,457.00000254313153,4263.4584,797.0440368652343,36.761060965311756,283.0279998779297,394.1429023376304,0,0,0,0,0,0,0,0,0,0,0,0,3.217479843442561e-6,3.8586347e-6,0,0,0,0,1.7775840266646506e-4,3.089289e-4,0,0,0,0,273.2140502929687,0.2637361099877118,9.001420472247489,65.10499264081507,3.9890612936666887,17.454285340709294,-0.02264589560927544,0,0,1721.2693465918007,-0.01933718178498213,0.004446572546536724,0.0077232726,0,0,0,0 +1835,0.025273637508183497,0.38228366537677744,0,0,2.4054563746496176,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8698,0,457.00000254313153,4264.2887,797.8309682210286,36.88278972577237,283.08599853515625,390.5551391819573,0,0,0,0,0,0,0,0,0,0,0,0,3.2634438866807614e-6,3.8953332e-6,0,0,0,0,1.8029780767392367e-4,3.1306506e-4,0,0,0,0,273.07905069986975,0.2687186820244191,8.925548285908778,64.23544316564437,3.998558037017324,17.170486789731093,-0.023142501460788386,0,0,1718.2221250231016,-1.6633625299236003,0.004446572546536724,0.0077232726,0,0,0,0 +1836,0.029221069497854205,0.389316583770789,0,0,2.4041879560344257,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84901,0,457.00000254313153,4263.1961,798.1060129801431,37.24729235142932,283.1489995320638,389.978664389183,0,0,0,0,0,0,0,0,0,0,0,0,3.3094079299189616e-6,3.9300644999999986e-6,0,0,0,0,1.8283721389404187e-4,3.1697451e-4,0,0,0,0,272.9540532430012,0.2737953861240514,8.99301508642379,64.08016333132153,3.917445996447821,17.23500428603742,-0.02363910731230133,0,0,1783.0834194781103,-1.0677252796589791,0.004446572546536724,0.0077232726,0,0,0,0 +1837,0.02926039926471735,0.39647888760712147,0,0,2.4402101737227215,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.86946,0,457.00000254313153,4264.2707,798.115982055664,37.699806775525964,283.19800059000653,394.75650376781886,0,0,0,0,0,0,0,0,0,0,0,0,3.3553718026269053e-6,3.9670389e-6,0,0,0,0,1.853766201141601e-4,3.2114251e-4,0,0,0,0,272.8730545043945,0.2789680006543284,9.027059824256213,64.82242714481194,4.040217213334495,17.353835237590644,-0.02413571316381428,0,0,1798.0881971564909,-0.2640591208376881,0.004446572546536724,0.0077232726,0,0,0,0 +1838,0.030288692886915835,0.4037729572052591,0,0,2.477311745666847,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85548,0,457.00000254313153,4263.5362,797.937016805013,38.242109615281024,283.2530034383138,401.2961870125921,0,0,0,0,0,0,0,0,0,0,0,0,3.4013357890216867e-6,4.0021199e-6,0,0,0,0,1.8791602512161867e-4,3.2509225e-4,0,0,0,0,272.8660507202148,0.28423833758036093,9.122535894908143,65.94724656685626,4.142172855024622,17.64153847089682,-0.024632319015327232,0,0,1841.5431392468436,0.03335501919910246,0.004446572546536724,0.0077232726,0,0,0,0 +1839,0.031310556578042714,0.4112012166757089,0,0,2.4526381380788647,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83788,0,457.00000254313153,4262.6108,797.9220987955728,38.51117555601762,283.3109995524089,396.9116368644367,0,0,0,0,0,0,0,0,0,0,0,0,3.447299832259887e-6,4.0369741e-6,0,0,0,0,1.904554313417369e-4,3.2901587999999995e-4,0,0,0,0,272.85805002848304,0.2896082430993816,9.139608329107503,65.11131218043978,4.015311872419976,17.505176328593002,-0.025128924866840176,0,0,1843.0808236850567,0.13450763436493787,0.004446572546536724,0.0077232726,0,0,0,0 +1840,0.03354297409334304,0.41876613472562935,0,0,2.4438775219719657,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.80755,0,457.00000254313153,4261.0163,798.3870493570962,38.88776194382017,283.38200124104816,395.88091618643386,0,0,0,0,0,0,0,0,0,0,0,0,3.493263875498087e-6,4.0710717e-6,0,0,0,0,1.9299483634919548e-4,3.3285227e-4,0,0,0,0,272.7990519205729,0.29507959828746777,9.211326298909695,64.92298176034035,3.924269140081404,17.575132478856116,-0.025625530718353124,0,0,1874.1418275066233,0.16854263071970732,0.004446572546536724,0.0077232726,0,0,0,0 +1841,0.03460122912653735,0.42647022547928015,0,0,2.490489852137439,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84789,0,457.00000254313153,4263.137,799.060084025065,39.38162316774325,283.46699778238934,402.37274181683716,0,0,0,0,0,0,0,0,0,0,0,0,3.5392279187362874e-6,4.1092335e-6,0,0,0,0,1.955342437819733e-4,3.3715711000000003e-4,0,0,0,0,272.6890487670898,0.3006543197584808,9.249453201790956,65.9454451837981,4.089445548039454,17.745543570932366,-0.026145023202402858,0,0,1916.2642072737253,0.17997793561545353,0.004446572546536724,0.0077232726,0,0,0,0 +1842,0.03663997981024372,0.4343160493135666,0,0,2.4491704689870333,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84034,0,457.00000254313153,4262.7403,800.0011189778645,39.618728876147166,283.5279998779297,396.99512213680947,0,0,0,0,0,0,0,0,0,0,0,0,3.585191791444231e-6,4.1446349e-6,0,0,0,0,1.980736475767723e-4,3.411438e-4,0,0,0,0,272.58205413818354,0.3063343603354562,9.261381852099804,64.92167359416241,3.9361680613715975,17.590961717477978,-0.026688925256719682,0,0,1931.46250751484,0.18381929631950947,0.004446572546536724,0.0077232726,0,0,0,0 +1843,0.037450386379355084,0.44230621370895423,0,0,2.4111362709735427,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85726,0,457.00000254313153,4263.6297,801.4921824137368,39.653263822240504,283.56600189208984,389.73678087183737,0,0,0,0,0,0,0,0,0,0,0,0,3.6311557778390124e-6,4.1814844e-6,0,0,0,0,2.006130537968905e-4,3.4529738e-4,0,0,0,0,272.6070480346679,0.3121217097346764,9.185852611691464,63.424060913522,3.8460662124532643,17.218218321973847,-0.027232827311036496,0,0,1929.66039784958,0.18510965928096967,0.004446572546536724,0.0077232726,0,0,0,0 +1844,0.03984697293733208,0.45044337411603935,0,0,2.4438258963267856,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85117,0,457.00000254313153,4263.3094,803.6190745035806,40.04426499219912,283.60899861653644,392.7074417140548,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198210772127e-6,4.2169694e-6,0,0,0,0,2.0315246122966832e-4,3.4929371e-4,0,0,0,0,272.64805348714185,0.3180183952626677,9.178913525794204,63.76245430030204,3.965309781326317,17.1801218980614,-0.027776729365353317,0,0,1991.4456467268888,0.1855430999305122,0.004446572546536724,0.0077232726,0,0,0,0 +1845,0.04379212851318448,0.4587302348380611,0,0,2.4713718751387326,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83257,0,457.00000254313153,4262.3319,805.665069580078,40.66967666700967,283.72499593098956,397.85005599568376,0,0,0,0,0,0,0,0,0,0,0,0,3.723083864315413e-6,4.2516813e-6,0,0,0,0,2.0569186502446732e-4,3.5320089999999995e-4,0,0,0,0,272.64005025227857,0.32402648252636523,9.30790591121511,64.68556723249593,3.957876345089828,17.599363300735142,-0.02832063141967013,0,0,2080.3810922503694,0.18568870533529727,0.004446572546536724,0.0077232726,0,0,0,0 +1846,0.04419737434029645,0.46716954992964915,0,0,2.4711987422790394,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82423,0,457.00000254313153,4261.8933,807.2559560139973,40.975199745155024,283.8470001220703,395.9082621735635,0,0,0,0,0,0,0,0,0,0,0,0,3.769047907553613e-6,4.2869996e-6,0,0,0,0,2.0823127124458551e-4,3.5717802e-4,0,0,0,0,272.7300465901692,0.3301480761566941,9.302498358152864,64.24405152639606,3.9495415402063423,17.39887856615626,-0.02886453347398695,0,0,2072.290434339566,0.003535562113167848,0.004446572546536724,0.0077232726,0,0,0,0 +1847,0.047464619118496226,0.4757641241121063,0,0,2.521115228079649,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82758,0,457.00000254313153,4262.0693,807.9369812011718,41.61647167525484,283.9359995524089,402.98515747487147,0,0,0,0,0,0,0,0,0,0,0,0,3.815011799209363e-6,4.3230378e-6,0,0,0,0,2.107706774647037e-4,3.6123808e-4,0,0,0,0,272.8130518595377,0.33638532054582115,9.401962018636505,65.44362075203811,4.040566100417133,17.760514190415755,-0.029408435528303762,0,0,2154.230603343035,0.05986150819062035,0.004446572546536724,0.0077232726,0,0,0,0 +1848,0.04711780719580413,0.484516813705529,0,0,2.5773717998210097,0,1.4945332000000003e-5,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.78829,0,457.00000254313153,4260.004,808.0920410156249,42.449470629613735,284.0679982503255,413.5582929452125,0,0,0,0,0,0,0,0,0,0,0,0,3.860975766656338e-6,4.3563791e-6,0,0,0,0,2.1331008247216232e-4,3.6498734e-4,0,0,0,0,272.8850479125976,0.3427404005983347,9.573238566746884,67.39824375327751,4.1550564996331225,18.30069373024327,-0.029952337582620583,0,0,2204.416735349108,0.14052998907092631,0.004446572546536724,0.0077232726,0,0,0,0 +1849,0.04885144245331925,0.49343052757807715,0,0,2.5523940889282035,0,1.1956415e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.81678,0,457.00000254313153,4261.5016,808.2150014241536,42.63396460567202,284.20699818929035,408.9399341234632,0,0,0,0,0,0,0,0,0,0,0,0,3.9069398098945385e-6,4.3940071e-6,0,0,0,0,2.1584948869228052e-4,3.6923065e-4,0,0,0,0,272.9540456136067,0.3492155424966158,9.543358834157274,66.42707154065786,4.087020956416189,18.074786269748145,-0.03055301159093652,0,0,2224.8957196823785,0.1704345774563485,0.004446572546536724,0.0077232726,0,0,0,0 +1850,0.051384895328128635,0.502508228112706,0,0,2.5711244787427185,1.2887821417469543e-6,2.2473666e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93295,0,457.00000254313153,4267.6083,808.249028523763,43.142363653343445,284.3169987996419,411.4628743194825,0,0,0,0,0,0,0,0,0,0,0,0,3.952903853132739e-6,4.4373643e-6,0,0,0,0,2.1838889491239874e-4,3.7413425e-4,0,0,0,0,273.02104695638013,0.35581301448066943,9.604162557026681,66.78304875030415,4.096904208036784,18.22682478664064,-0.03125687970329533,0,0,2275.7767113113205,0.18074597510251067,0.004446572546536724,0.0077232726,0,0,0,0 +1851,0.051562308443334225,0.4946563668475162,0,0,2.5266925893124657,1.031025730450589e-5,2.4082745e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96457,0,457.00000254313153,4269.2706,808.4141082763671,43.151913707774774,284.4510040283203,402.2448152541545,0,0,0,0,0,0,0,0,0,0,0,0,3.998867896370939e-6,4.475348e-6,0,0,0,0,2.2092829991985732e-4,3.7841858e-4,0,0,0,0,273.0940500895182,0.3637934413745739,9.478471328343609,64.9500465918497,4.010397677989623,17.726300494053056,-0.03196074781565415,0,0,2256.8151473435455,0.18431279870175096,0.004446572546536724,0.0077232726,0,0,0,0 +1852,0.05364238006818437,0.5506858688322854,0,0,2.5076341601822123,2.0667359725242324e-5,2.4179888e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98199,0,457.00000254313153,4270.1861,809.1631317138671,43.34412933408961,284.59800211588544,397.49851999155004,0,0,0,0,0,0,0,0,0,0,0,0,4.044831939609139e-6,4.5124367e-6,0,0,0,0,2.2346770613997555e-4,3.825997e-4,0,0,0,0,273.16805013020826,0.3724242241558459,9.424520247380277,63.95789986488204,3.9584516109367627,17.47926154999162,-0.03266461592801298,0,0,2277.6344054535484,0.17954033954307605,0.004446572546536724,0.0077232726,0,0,0,0 +1853,0.05595234905591053,0.5486310857453621,0,0,2.5278117426961444,3.10744549096853e-5,2.4277992e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9693,0,457.00000254313153,4269.5191,810.404057820638,43.88435962687079,284.7309977213542,400.33880414377563,0,0,0,0,0,0,0,0,0,0,0,0,4.0907959828473395e-6,4.5475315000000004e-06,0,0,0,0,2.2600711114743413e-4,3.8655105e-4,0,0,0,0,273.264050801595,0.38010970895337787,9.493187126119388,64.44555417814735,3.9683262348472685,17.65848987916477,-0.0333684840403718,0,0,2326.4206162177375,0.015887254241176648,0.004446572546536724,0.0077232726,0,0,0,0 +1854,0.06589565461208481,0.5467397743701289,0,0,2.6100485430157265,4.1513251138288375e-5,2.4405566e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9226,0,457.00000254313153,4267.0641,811.7321421305337,44.80907906406347,284.8459981282552,413.39913150953396,0,0,0,0,0,0,0,0,0,0,0,0,4.136759950294315e-6,4.5802995999999986e-6,0,0,0,0,2.2854651736755235e-4,3.9023425e-4,0,0,0,0,273.3630498250325,0.3881180379413641,9.708926054401639,66.794695219375825,4.086374133078645,18.340431326430615,-0.034072352152730634,0,0,2535.1581947111176,-0.014112611956298624,0.004446572546536724,0.0077232726,0,0,0,0 +1855,0.0665605946226626,0.543758286864958,0,0,2.593264313364505,5.2002859774802346e-5,2.4547759e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95064,0,457.00000254313153,4268.5385,813.332036336263,44.957053896332596,284.9409993489583,408.11045388038974,0,0,0,0,0,0,0,0,0,0,0,0,4.182723614576389e-6,4.6181251e-6,0,0,0,0,2.3108592358767055e-4,3.945003e-4,0,0,0,0,273.4700495402018,0.39515493127386314,9.608218449939441,65.65156397841133,4.071657215875477,17.99164859504197,-0.03477622026508945,0,0,2531.882070736542,0.11294859461260336,0.004446572546536724,0.0077232726,0,0,0,0 +1856,0.07119571676282484,0.5497252657327152,0,0,2.5734300072332923,6.254957406781614e-5,2.4704559e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92886,0,457.00000254313153,4267.3934,814.7961222330728,45.32147323346321,285.04899342854816,404.85491673017987,0,0,0,0,0,0,0,0,0,0,0,0,4.228687657814589e-6,4.652537400000002e-6,0,0,0,0,2.3362532859512916e-4,3.98373e-4,0,0,0,0,273.5780461629231,0.40121361649916243,9.648967407833753,65.04253470413643,3.941501863088442,17.954118052235966,-0.03548008837744827,0,0,2598.3233502208395,0.12225561148477546,0.004446572546536724,0.0077232726,0,0,0,0 +1857,0.0718939473501754,0.55506091263013,0,0,2.636452577483439,7.315969560295343e-5,2.487597e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94976,0,457.00000254313153,4268.4922,816.4521179199218,46.01300693840024,285.20399983723956,414.6731918454804,0,0,0,0,0,0,0,0,0,0,0,0,4.2746517010527896e-06,4.6899086e-6,0,0,0,0,2.3616473481524736e-4,4.025867e-4,0,0,0,0,273.67504882812494,0.4075261897409684,9.717987448936368,66.72779876959439,4.1591410074143615,18.291565645975457,-0.03618395648980709,0,0,2646.996287168382,-0.044823331390134384,0.004446572546536724,0.0077232726,0,0,0,0 +1858,0.0730281599923091,0.5597369099004649,0,0,2.660122641883427,8.383950868543859e-5,2.5062e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93987,0,457.00000254313153,4267.9722,818.3551279703775,46.54057728835799,285.3690007527669,419.01402360882946,0,0,0,0,0,0,0,0,0,0,0,0,4.32061574429099e-6,4.7251299e-6,0,0,0,0,2.3870414103536555e-4,4.0655264e-4,0,0,0,0,273.7560501098632,0.41251745553966174,9.773872716558104,67.47060376347301,4.240872484906792,18.47927629769415,-0.03688782460216592,0,0,2684.853418420537,0.08628782582640311,0.004446572546536724,0.0077232726,0,0,0,0 +1859,0.07785211331835136,0.5673853687525405,0,0,2.6482032498787995,9.459531490089527e-5,2.5262647e-4,0.025000428936133783,0.024856862,34.05000019073486,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91443,0,457.00000254313153,4266.635,820.3960774739583,46.94962615479032,285.5449956258138,416.29974849312515,0,0,0,0,0,0,0,0,0,0,0,0,4.36657978752919e-6,4.7592242000000015e-6,0,0,0,0,2.4124354483016455e-4,4.1038866e-4,0,0,0,0,273.89505004882807,0.41699740802681257,9.815633788495665,66.95694733909333,4.119710728903347,18.449505984059194,-0.03759169271452474,0,0,2765.3515040429447,0.1535034293269437,0.004446572546536724,0.0077232726,0,0,0,0 +1860,0.08580578973181537,0.57190571026195,0,0,2.6484047305257548,1.0543340310202136e-4,2.5477918999999995e-4,0.025000428936133783,0.024856862,34.04999955495199,0.010810676000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89112,0,457.00000254313153,4265.4096,822.3121185302733,47.37614022716783,285.73899332682294,416.0639965860974,0,0,0,0,0,0,0,0,0,0,0,0,4.41254383076739e-6,4.7934342e-6,0,0,0,0,2.4378295105028278e-4,4.1423802e-4,0,0,0,0,274.05604807535804,0.42075257795117216,9.868462594270229,66.84953492841794,4.0609762626653305,18.52046800322501,-0.03829556082688356,0,0,2898.3777844170777,0.17676937373971446,0.004446572546536724,0.0077232726,0,0,0,0 +1861,0.09043757175448788,0.5830953457170218,0,0,2.670268662609388,1.1636007608710013e-4,2.5707803e-4,0.025000428936133783,0.024856862,34.04999987284342,0.010810691,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94268,0,457.00000254313153,4268.1198,824.399190266927,48.23468669993056,285.9330012003581,417.24413721688705,0,0,0,0,0,0,0,0,0,0,0,0,4.4585078740055906e-6,4.8330788e-6,0,0,0,0,2.463223596957202e-4,4.1871377e-4,0,0,0,0,274.2400461832682,0.42335986018473476,9.85713564571437,66.88575551122409,4.161212988464047,18.437119828737263,-0.03899942893924239,0,0,2971.2788427875175,0.11623622338672868,0.004446572546536724,0.0077232726,0,0,0,0 +1862,0.09186559088261632,0.5229565631081879,0,0,2.648564983127743,1.2738162210249962e-4,2.5952295e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93302,0,457.00000254313153,4267.612,827.0292002360025,49.13056211810905,286.1000010172526,414.16280656087633,0,0,0,0,0,0,0,0,0,0,0,0,4.504471917243791e-6,4.8682827e-6,0,0,0,0,2.488617634905192e-4,4.2267767e-4,0,0,0,0,274.4160486857096,0.4259683950031353,9.918881972367876,66.358960161654025,4.0424493589722115,18.41589320519377,-0.0397032970516012,0,0,2976.388043494933,-0.6237998311805185,0.004446572546536724,0.0077232726,0,0,0,0 +1863,0.09748855439032131,0.523134296634959,0,0,2.6292695144324947,1.3850433606421575e-4,2.6211454e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9509,0,457.00000254313153,4268.552,830.1662139892577,49.710222528727996,286.271001180013,408.1224194075052,0,0,0,0,0,0,0,0,0,0,0,0,4.550435960481991e-6,4.9055252e-6,0,0,0,0,2.5140116971063736e-4,4.2687657e-4,0,0,0,0,274.57104492187494,0.4284326826015117,9.86866585386286,65.00963540040021,3.9715193557400945,18.09141100618794,-0.04040716516396003,0,0,3064.446906560989,-0.2585729087354761,0.004446572546536724,0.0077232726,0,0,0,0 +1864,0.10472513857630868,0.5234813827246285,0,0,2.667755633655596,1.4973450258063772e-4,2.6485186e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94467,0,457.00000254313153,4268.2247,833.6041412353514,50.66032472624755,286.44200134277344,411.3310642864957,0,0,0,0,0,0,0,0,0,0,0,0,4.5963999279289664e-6,4.9409793e-6,0,0,0,0,2.539405759307556e-4,4.308693e-4,0,0,0,0,274.72005208333326,0.431014195621195,9.887134077064891,65.39906664161046,4.087458726366705,18.093817300572518,-0.041111033276318855,0,0,3193.218258651068,0.037999846461008915,0.004446572546536724,0.0077232726,0,0,0,0 +1865,0.11093631924882667,0.5242503840770768,0,0,2.720201066299487,1.6107846022350714e-4,2.6773567000000004e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010810706000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93017,0,457.00000254313153,4267.4623,836.8942057291665,51.98007509857536,286.6139958699544,420.4890049801762,0,0,0,0,0,0,0,0,0,0,0,0,4.642363592211041e-6,4.9757947000000005e-6,0,0,0,0,2.564799797255546e-4,4.3478845e-4,0,0,0,0,274.8800430297851,0.43343877181201473,10.07353477775766,67.10347351160692,4.157661467348705,18.66656837953943,-0.04181490138867768,0,0,3327.080175680617,0.1429288681419851,0.004446572546536724,0.0077232726,0,0,0,0 +1866,0.11473850842802115,0.5243863634262115,0,0,2.7102983366424596,1.7254241417200925e-4,2.707659e-4,0.025000428936133783,0.024856862,34.050100008646645,0.01081072,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92398,0,457.00000254313153,4267.1368,840.3622080485025,52.74699292831513,286.78099822998047,417.1011849314015,0,0,0,0,0,0,0,0,0,0,0,0,4.688327635449241e-6,5.0112266e-6,0,0,0,0,2.590193835203536e-4,4.387786599999999e-4,0,0,0,0,275.0480473836262,0.4357447764915154,10.064549123367675,66.37528156013664,4.133671177718162,18.394680194366018,-0.042518769501036495,0,0,3388.2580778414886,0.1744104739671799,0.004446572546536724,0.0077232726,0,0,0,0 +1867,0.12258204012181728,0.5228764549771724,0,0,2.761022670595916,1.8413277454480217e-4,2.7394196e-4,0.025000428936133783,0.024856862,34.05020046234131,0.010070544,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93094,0,457.00000254313153,4267.5026,843.995122273763,53.9410217812425,286.9550018310547,424.2969752987472,0,0,0,0,0,0,0,0,0,0,0,0,4.734291678687441e-6,5.0476689e-6,0,0,0,0,2.615587945911102e-4,4.428853e-4,0,0,0,0,275.21304829915357,0.43821064879605803,10.189133101169272,67.66026448741948,4.231180960949066,18.768356166586962,-0.04322263761339532,0,0,3565.4355350198875,0.18466917521307166,0.004446572546536724,0.0077232726,0,0,0,0 +1868,0.12560944174010713,0.5214153984123745,0,0,2.825140562350265,1.9585573196915598e-4,2.7726501e-4,0.025000428936133783,0.024856862,34.05019982655843,0.010072023,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89186,0,457.00000254313153,4265.4483,847.2491251627603,55.287673564162375,287.10500081380206,434.93022825982507,0,0,0,0,0,0,0,0,0,0,0,0,4.780255721925641e-6,5.0805177e-6,0,0,0,0,2.640981983859092e-4,4.465778e-4,0,0,0,0,275.39104461669916,0.44143425556535276,10.372200923081559,69.64729381366908,4.3633047348631795,19.301247569591883,-0.043926505725754135,0,0,3668.308732016809,0.188148666241629,0.004446572546536724,0.0077232726,0,0,0,0 +1869,0.13329152205114916,0.5197708976584334,0,0,2.7850043169774756,2.0771763714340827e-4,2.8073396e-4,0.025000428936133783,0.024856862,34.05020014444987,0.010810735,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93014,0,457.00000254313153,4267.4609,850.1300862630208,55.83359728305401,287.2249984741211,426.4036167290826,0,0,0,0,0,0,0,0,0,0,0,0,4.826219765163842e-6,5.1194221e-6,0,0,0,0,2.666376021807082e-4,4.5096821e-4,0,0,0,0,275.5610478719075,0.44390826602791195,10.311061269202527,67.9294955911712,4.245329954023304,18.888825035193033,-0.04497175592064998,0,0,3791.4627445920805,0.1894123650346563,0.004446572546536724,0.0077232726,0,0,0,0 +1870,0.13667438365279438,0.5186718603074794,0,0,2.831200782445544,2.197247971101509e-4,2.8434934e-4,0.025000428936133783,0.024856862,34.05020014444987,0.01081075,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89317,0,457.00000254313153,4265.5174,852.4350077311196,56.996592307003596,287.3549982706706,433.2287624497814,0,0,0,0,0,0,0,0,0,0,0,0,4.872183808402042e-6,5.152380400000002e-6,0,0,0,0,2.691770132514648e-4,4.5467331e-4,0,0,0,0,275.7200444539387,0.4466399609979402,10.441023971231417,69.12187693609928,4.323468650206145,19.258120747383764,-0.046232618783436236,0,0,3887.5293351931314,0.189950840385198,0.004446572546536724,0.0077232726,0,0,0,0 +1871,0.1452491611173251,0.5388152153139819,0,0,2.7978303472693873,2.31883451003038e-4,2.8811122e-4,0.025000428936133783,0.024856862,34.050299326578774,0.010071314,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92871,0,457.00000254313153,4267.3856,853.9930725097655,57.57401422057298,287.4940007527669,425.1606513202936,0,0,0,0,0,0,0,0,0,0,0,0,4.918147851640242e-6,5.1911213e-6,0,0,0,0,2.717164146209446e-4,4.590449e-4,0,0,0,0,275.9030456542968,0.45433593382870696,10.369497697943174,67.42862357960736,4.269404036940666,18.76177376623424,-0.047493481646222496,0,0,4016.0322788183066,0.19025039687154105,0.004446572546536724,0.0077232726,0,0,0,0 +1872,0.16034651313527334,0.6242378015462033,0,0,2.771292693837977,2.4419995800902444e-4,2.9201899e-4,0.025000428936133783,0.024856862,34.050299962361656,0.010810765,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95075,0,457.00000254313153,4268.5441,855.2329915364583,58.18710545429253,287.66399637858075,417.7442733570141,0,0,0,0,0,0,0,0,0,0,0,0,4.964111894878442e-6,5.228817700000002e-6,0,0,0,0,2.742558184157436e-4,4.6329615e-4,0,0,0,0,276.07804361979163,0.4708626218532089,10.330384237922804,65.84553711122807,4.17870981733127,18.365341648996967,-0.048754344509008736,0,0,4250.256915543303,0.18883431574024787,0.004446572546536724,0.0077232726,0,0,0,0 +1873,0.17009548212988732,0.635197775727867,0,0,2.8416338477805057,2.566805657503816e-4,2.9607326e-4,0.025000428936133783,0.024856862,34.050299962361656,0.01081078,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93223,0,457.00000254313153,4267.5705,856.1681976318358,59.62016165313301,287.86000061035156,429.28028904113773,0,0,0,0,0,0,0,0,0,0,0,0,5.010075938116643e-6,5.2632224000000015e-6,0,0,0,0,2.7679522706118104e-4,4.6716788e-4,0,0,0,0,276.25004831949866,0.4938942498998885,10.56453511561426,67.99437045089431,4.309987323977962,18.937298904886617,-0.050015207371795004,0,0,4473.449627744114,-0.0158300305583035,0.004446572546536724,0.0077232726,0,0,0,0 +1874,0.16101264250188482,0.6424589219115043,0,0,2.8680589101535006,2.693315764190629e-4,3.0027407000000005e-4,0.025000428936133783,0.024856862,34.05039978027344,0.010810794,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88493,0,457.00000254313153,4265.0843,857.8200785319009,60.88850035180588,288.0609995524089,435.8041800080444,0,0,0,0,0,0,0,0,0,0,0,0,5.05603994345923e-6,5.295217800000002e-6,0,0,0,0,2.793346332812992e-4,4.7076201e-4,0,0,0,0,276.4160537719726,0.5217358117405276,10.751611012739497,69.34908007240699,4.369596917606238,19.304810723709583,-0.051276070234581236,0,0,4382.176552473297,0.10137566545666454,0.004446572546536724,0.0077232726,0,0,0,0 +1875,0.17325906778674766,0.6503215087418923,0,0,2.8334891051221005,2.821592812930855e-4,3.046214e-4,0.025000428936133783,0.024856862,34.05040009816488,0.010810809,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5065,859.4690653483071,61.447170295790954,288.29100290934247,426.89349545310597,0,0,0,0,0,0,0,0,0,0,0,0,5.102003569845692e-6,5.3349387000000006e-6,0,0,0,0,2.818740370760982e-4,4.7524653e-4,0,0,0,0,276.5850474039713,0.5521636138855727,10.663545228962466,67.4820885998621,4.311546235769538,18.753876090158617,-0.0525369330973675,0,0,4552.510356024947,0.11898633163405398,0.004446572546536724,0.0077232726,0,0,0,0 +1876,0.17593823238514505,0.6580403904252425,0,0,2.8431252665224327,2.9516999347833917e-4,3.0911468e-4,0.025000428936133783,0.024856862,34.05049991607666,0.010810823999999998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90175,0,457.00000254313153,4265.968,860.8591054280598,62.60294810766919,288.5199966430664,429.4805477313967,0,0,0,0,0,0,0,0,0,0,0,0,5.1479676130838925e-6,5.3683812e-6,0,0,0,0,2.8441344572153565e-4,4.790074400000001e-4,0,0,0,0,276.7350514729817,0.5828831599457934,10.831893028061607,68.07266489194261,4.273649915248981,19.002140660093694,-0.053797795960153764,0,0,4640.322706228576,0.13010732358702753,0.004446572546536724,0.0077232726,0,0,0,0 +1877,0.17982534828505667,0.6646940864903487,0,0,2.881579172917859,3.083699945515643e-4,3.1375456e-4,0.025000428936133783,0.024856862,34.050500551859535,0.010810839,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92824,0,457.00000254313153,4267.3608,862.3791147867837,63.64524258623489,288.7520014444987,434.0603459961696,0,0,0,0,0,0,0,0,0,0,0,0,5.193931656322093e-6,5.406519099999998e-6,0,0,0,0,2.869528519416538e-4,4.833095099999999e-4,0,0,0,0,276.86404927571607,0.6122267058453676,10.897021601068372,68.7783807279057,4.413505723589701,19.089059096309025,-0.05504429988349307,0,0,4762.60475525006,0.1696072468545434,0.004446572546536724,0.0077232726,0,0,0,0 +1878,0.18077698311132545,0.6715857617280921,0,0,2.905036494302108,3.2176555153758574e-4,3.1854156e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810853,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92472,0,457.00000254313153,4267.1759,864.1391499837239,64.71120382869425,288.9930013020833,437.9599497693981,0,0,0,0,0,0,0,0,0,0,0,0,5.239895699560293e-6,5.4421234e-6,0,0,0,0,2.8949225331113365e-4,4.8731959e-4,0,0,0,0,277.0020446777343,0.637718423578712,10.998945344161125,69.46979574102357,4.5031308409529425,19.22817130569276,-0.056156826594968116,0,0,4806.3164952803945,0.1844107426763875,0.004446572546536724,0.0077232726,0,0,0,0 +1879,0.1931754383145236,0.6786152944896107,0,0,2.9292586401809286,3.3536301149676245e-4,3.234746e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810868,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88028,0,457.00000254313153,4264.8396,866.2831624348958,65.90279841258594,289.2210006713867,440.8517590737373,0,0,0,0,0,0,0,0,0,0,0,0,5.285859742798493e-6,5.474183400000002e-6,0,0,0,0,2.920316595312518e-4,4.9092116e-4,0,0,0,0,277.1330490112304,0.6589267771109586,11.181505690638433,70.08572001647862,4.44715839638976,19.487315389320713,-0.05726935330644314,0,0,5054.634872921024,0.18865930412898813,0.004446572546536724,0.0077232726,0,0,0,0 +1880,0.2193400047887077,0.6848574235612915,0,0,2.921172062464678,3.4916867055774975e-4,3.2855365e-4,0.025000428936133783,0.024856862,34.05069955190023,0.010810144,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88174,0,457.00000254313153,4264.9162,868.6961059570311,66.66498430210106,289.4699986775716,437.365727538686,0,0,0,0,0,0,0,0,0,0,0,0,5.3318237860366935e-6,5.5101807e-6,0,0,0,0,2.9457106817668927e-4,4.9497652e-4,0,0,0,0,277.26505025227857,0.6727777764677255,11.210570347061365,69.18788119083449,4.386751757292326,19.32682128004249,-0.05838188001791818,0,0,5476.691840909654,0.15238702978073307,0.004446572546536724,0.0077232726,0,0,0,0 +1881,0.2252231799496281,0.7226262033549594,0,0,2.9628772256083247,3.6318877634281915e-4,3.3377873e-4,0.025000428936133783,0.024856862,34.05069955190023,0.011551088,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92914,0,457.00000254313153,4267.4079,870.9841257731118,67.70670094788971,289.7369969685872,440.9737248225101,0,0,0,0,0,0,0,0,0,0,0,0,5.377787829274894e-6,5.5502216e-6,0,0,0,0,2.9711047197148827e-4,4.9949792e-4,0,0,0,0,277.37404123942054,0.6806367037591056,11.274748464221961,69.70896888997471,4.531822010702024,19.327166243417963,-0.059494406729393226,0,0,5655.562652963553,0.14804251864424234,0.004446572546536724,0.0077232726,0,0,0,0 +1882,0.23694899687620047,0.6743786080130141,0,0,2.9443458510058322,3.774296346819028e-4,3.3915105e-4,0.025000428936133783,0.024856862,34.05080000559489,0.011550379,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92759,0,457.00000254313153,4267.3266,873.2501373291014,68.57787523920716,290.0190022786458,436.0786301154982,0,0,0,0,0,0,0,0,0,0,0,0,5.423751872513094e-6,5.585991e-6,0,0,0,0,2.9964987819160643e-4,5.035270200000001e-4,0,0,0,0,277.4860509236653,0.6892556813322581,11.343220962302505,68.75016748711803,4.409841205149023,19.158162285322444,-0.06060693344086825,0,0,5878.580768497191,0.1874362016564929,0.004446572546536724,0.0077232726,0,0,0,0 +1883,0.25089467695775003,0.6814540279475114,0,0,2.918084088079926,3.918974956225914e-4,3.4467464999999995e-4,0.025000428936133783,0.024856862,34.05090045928955,0.010810957,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95902,0,457.00000254313153,4268.979,875.6031494140624,69.18597910133236,290.26300048828125,428.22120343049505,0,0,0,0,0,0,0,0,0,0,0,0,5.469715915751294e-6,5.6247084000000005e-6,0,0,0,0,3.021892868370439e-4,5.0789587e-4,0,0,0,0,277.5910491943359,0.6958725524070566,11.301072778092927,67.06254475755776,4.3447075949809335,18.709361365312684,-0.06171946015234329,0,0,6136.7508152909495,-0.3245940535795368,0.004446572546536724,0.0077232726,0,0,0,0 +1884,0.2528499020827967,0.6846835417141454,0,0,2.9781587398376455,4.065987474556702e-4,3.503391000000001e-4,0.025000428936133783,0.024856862,34.05100059509277,0.010810972,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93535,0,457.00000254313153,4267.7345,878.1482035319009,70.48060514662333,290.5119984944661,436.5183491794865,0,0,0,0,0,0,0,0,0,0,0,0,5.515679921093882e-6,5.6585019e-6,0,0,0,0,3.047286906318429e-4,5.1169724e-4,0,0,0,0,277.69505055745435,0.7016904496772703,11.463778568830996,68.59402326244992,4.507763748192013,19.009889976177178,-0.06283198686381833,0,0,6243.347604744989,-1.8150618607595548,0.004446572546536724,0.0077232726,0,0,0,0 +1885,0.25444299147687327,0.6908637814371342,0,0,2.987658653242268,4.215400040266104e-4,3.5614909e-4,0.025000428936133783,0.024856862,34.05099964141846,0.011550438,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93798,0,457.00000254313153,4267.8727,881.0251312255858,71.60546241341835,290.7969970703125,438.1415385380004,0,0,0,0,0,0,0,0,0,0,0,0,5.561643547480344e-6,5.6946520999999985e-6,0,0,0,0,3.0726809200132266e-4,5.1577023e-4,0,0,0,0,277.79504903157545,0.7078908709316327,11.603153567015962,68.94977818435397,4.492846370676968,19.20686906057728,-0.06394451357529336,0,0,6294.938313202323,-0.6420197136906102,0.004446572546536724,0.0077232726,0,0,0,0 +1886,0.25832612706643443,0.6919349119161695,0,0,3.0001483762763606,4.3672676110873e-4,3.621046e-4,0.025000428936133783,0.024856862,34.05110009511312,0.011550467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9357,0,457.00000254313153,4267.7531,883.8392181396483,72.58254388217381,291.09999593098956,437.73332685492454,0,0,0,0,0,0,0,0,0,0,0,0,5.607607590718544e-6,5.7303567999999985e-6,0,0,0,0,3.0980750307207927e-4,5.1979186e-4,0,0,0,0,277.8850479125976,0.7126327786706089,11.675797474801131,68.86926284379062,4.534738954197774,19.067819582095456,-0.06519373004483152,0,0,6353.02729378205,-0.0852453820278208,0.004446572546536724,0.0077232726,0,0,0,0 +1887,0.27097332569304644,0.6918854634202647,0,0,3.0445900747103636,4.521660230238922e-4,3.6821147e-4,0.025000428936133783,0.024856862,34.05120054880778,0.011550497,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94903,0,457.00000254313153,4268.4538,886.933135986328,73.77743063310328,291.4139989217122,443.10773813765155,0,0,0,0,0,0,0,0,0,0,0,0,5.653571633956744e-6,5.7675003e-6,0,0,0,0,3.1234690686687827e-4,5.2397934e-4,0,0,0,0,277.99504597981763,0.7182166601192096,11.825655230740924,69.79403942185417,4.618994873829845,19.328453638145426,-0.06654164466411291,0,0,6605.766964967214,-0.025019474885791315,0.004446572546536724,0.0077232726,0,0,0,0 +1888,0.2990240690559838,0.6915397836551626,0,0,3.1234840519185503,4.6786327826945734e-4,3.7446389e-4,0.025000428936133783,0.024856862,34.051300366719566,0.011550526,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91459,0,457.00000254313153,4266.6433,889.9262135823567,75.11035553057255,291.76300048828125,452.50230797053916,0,0,0,0,0,0,0,0,0,0,0,0,5.699535677194945e-6,5.8002124e-6,0,0,0,0,3.1488631066167727e-4,5.2765607e-4,0,0,0,0,278.08005015055335,0.724224234516275,12.041623292379388,71.4272374400245,4.7418969174520385,19.785746426186453,-0.06788955928339427,0,0,7182.264808724919,0.13500730253153945,0.004446572546536724,0.0077232726,0,0,0,0 +1889,0.2993958898436063,0.6910492076322109,0,0,3.104668337723354,4.838260307830448e-4,3.8086186e-4,0.025000428936133783,0.024856862,34.05139986673991,0.011550556000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95877,0,457.00000254313153,4268.9657,893.1561584472655,75.9296001940716,292.1130015055339,448.69086963270234,0,0,0,0,0,0,0,0,0,0,0,0,5.745499720433145e-6,5.840258e-6,0,0,0,0,3.174257217324339e-4,5.3217801e-4,0,0,0,0,278.191047668457,0.730764111829077,12.075327913087893,70.65718771639492,4.727164288354711,19.55277705492912,-0.06923747390267565,0,0,7178.592239188243,0.1858189092422608,0.004446572546536724,0.0077232726,0,0,0,0 +1890,0.32528597028265194,0.6877629398180971,0,0,3.159194948993984,5.000592888488123e-4,3.8741134e-4,0.025000428936133783,0.024856862,34.05150000254313,0.011550586000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9317,0,457.00000254313153,4267.5425,896.3831837972004,77.07862319106741,292.45799763997394,453.89903232867,0,0,0,0,0,0,0,0,0,0,0,0,5.791463763671345e-6,5.8736235e-6,0,0,0,0,3.199651255272329e-4,5.359300400000001e-4,0,0,0,0,278.2730509440104,0.7556615541830685,12.221880708940976,71.47659716602703,4.8079166884923445,19.778064862780106,-0.07058538852195702,0,0,7728.431301023277,0.07030158718899164,0.004446572546536724,0.0077232726,0,0,0,0 +1891,0.34045390881796567,0.6844114067588241,0,0,3.125180696005549,5.165705564043795e-4,3.9410043e-4,0.025000428936133783,0.024856862,34.051600774129234,0.011550615,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97344,0,457.00000254313153,4269.7366,899.666264851888,77.68229292407419,292.8159993489583,444.382731801162,0,0,0,0,0,0,0,0,0,0,0,0,5.837427806909545e-6,5.9135147000000014e-06,0,0,0,0,3.225045293220319e-4,5.4043419e-4,0,0,0,0,278.34705098470045,0.7669960073050373,12.159640198474342,69.53172190504567,4.743306066350147,19.199673026982396,-0.0719333031412384,0,0,8025.900172756182,-0.1023137574833239,0.004446572546536724,0.0077232726,0,0,0,0 +1892,0.3429460922092071,0.698931319975308,0,0,3.1105283647598623,5.333653001192337e-4,4.0093536e-4,0.025000428936133783,0.024856862,34.05169995625814,0.011550645,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99082,0,457.00000254313153,4270.6504,903.534194946289,78.54558088981553,293.16699981689453,439.8086590465999,0,0,0,0,0,0,0,0,0,0,0,0,5.8833918501477456e-6,5.951126000000002e-6,0,0,0,0,3.250439355421501e-4,5.446755599999999e-4,0,0,0,0,278.44204457600904,0.77827246793364,12.199146519671457,68.66391958974123,4.69568230481039,18.949521757077395,-0.07328121776051978,0,0,8166.143155148587,0.07763085595364166,0.004446572546536724,0.0077232726,0,0,0,0 +1893,0.3378703897546753,0.6997131247828723,0,0,3.1254308946941567,5.504500586539507e-4,4.079215e-4,0.025000428936133783,0.024856862,34.05179977416992,0.012290126,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97993999999998,0,457.00000254313153,4270.0783,907.2741190592446,79.81501328862245,293.4769999186198,443.3506557921903,0,0,0,0,0,0,0,0,0,0,0,0,5.929355893385946e-6,5.986023799999998e-6,0,0,0,0,3.275833417622683e-4,5.4860421e-4,0,0,0,0,278.55404917399085,0.7897298228538592,12.379453862745622,69.48705801909811,4.715239732570137,19.178456201207396,-0.07462913237980115,0,0,8120.644734612286,0.1864156024276895,0.004446572546536724,0.0077232726,0,0,0,0 +1894,0.35112450392061667,0.7155813956083555,0,0,3.205110617860807,5.678308225469664e-4,4.1505353e-4,0.025000428936133783,0.024856862,34.051900227864586,0.01229017,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5063,910.4781341552733,81.38345626276687,293.7909978230794,456.69603250902094,0,0,0,0,0,0,0,0,0,0,0,0,5.975319936624146e-6,6.017190099999998e-6,0,0,0,0,3.301227455570673e-4,5.5210279e-4,0,0,0,0,278.6890487670898,0.8020046367832572,12.66238559332695,71.90804380664727,4.8889485381651845,19.8361284777738,-0.07597704699908253,0,0,8411.388473243653,0.19284299907478186,0.004446572546536724,0.0077232726,0,0,0,0 +1895,0.37171203675260484,0.7209450963563064,0,0,3.216163844950097,5.855145864188671e-4,4.2233098e-4,0.025000428936133783,0.024856862,34.05209986368815,0.011550763,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4251,913.2259826660155,82.23116014335764,294.0789972941081,453.5518850499526,0,0,0,0,0,0,0,0,0,0,0,0,6.0212835251149954e-6,6.056690099999998e-6,0,0,0,0,3.326621542025047e-4,5.5656184e-4,0,0,0,0,278.83104960123694,0.8128876331059834,12.672444225617587,71.15178658195539,4.91917125426521,19.522500482390267,-0.07728033747142447,0,0,8846.667009900264,0.1930910447676056,0.004446572546536724,0.0077232726,0,0,0,0 +1896,0.38367481768429307,0.7234407884813598,0,0,3.170768746502162,6.03506836341694e-4,4.2976003e-4,0.025000428936133783,0.024856862,34.05219968159994,0.012290244,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4252,914.7710927327473,83.00005426186281,294.36499786376953,444.0944277814877,0,0,0,0,0,0,0,0,0,0,0,0,6.067247568353196e-6,6.0926241e-6,0,0,0,0,3.352015604226229e-4,5.606100700000001e-4,0,0,0,0,278.9390513102213,0.824102858385605,12.720593693458584,69.42267705803128,4.733994615392683,19.177287716924887,-0.07856237646782513,0,0,9089.59843267371,0.19318346141929987,0.004446572546536724,0.0077232726,0,0,0,0 +1897,0.4019811637589425,0.725878270524141,0,0,3.2687021119074915,6.218145863385871e-4,4.373290900000001e-4,0.025000428936133783,0.024856862,34.052300453186035,0.012290288,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99693,0,457.00000254313153,4270.9718,916.2742818196614,84.39253635318506,294.64599863688153,456.4122054736632,0,0,0,0,0,0,0,0,0,0,0,0,6.113211611591396e-6,6.1314997000000015e-6,0,0,0,0,3.377409642174219e-4,5.6499701e-4,0,0,0,0,279.051045735677,0.8346371271895597,12.890217099416494,71.54673250412924,5.026760132357157,19.58218287923395,-0.07984441546422576,0,0,9520.393854224154,0.19322441190367687,0.004446572546536724,0.0077232726,0,0,0,0 +1898,0.4233042102069517,0.728376569617105,0,0,3.2968702587691077,6.404438560518125e-4,4.4504943e-4,0.025000428936133783,0.02485618,34.052499771118164,0.012290333,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01512,0,457.00000254313153,4271.9281,919.0172271728514,85.36127162189973,294.95399983723956,456.6037673563168,0,0,0,0,0,0,0,0,0,0,0,0,6.159175654829596e-6,6.1692876e-6,0,0,0,0,3.402803704375401e-4,5.692587400000001e-4,0,0,0,0,279.1630477905273,0.8443053161523663,12.959068227762758,71.45665951589594,5.0980295350528255,19.501681112942983,-0.0811264544606264,0,0,10010.09583228873,0.19324438193560026,0.004446572546536724,0.0077232356,0,0,0,0 +1899,0.46331719155147416,0.7285561578617307,0,0,3.35583134512378,6.594006069159756e-4,4.856732599999999e-4,0.025000428936133783,0.024857703,34.05260022481283,0.012290377,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97653,0,457.00000254313153,4269.8993,922.2811838785806,86.70543386559314,295.2999979654948,462.1035993919434,0,0,0,0,0,0,0,0,0,0,0,0,6.205139698067796e-6,6.2013454e-6,0,0,0,0,3.4281977665765834e-4,5.7286006e-4,0,0,0,0,279.3080469767252,0.8537833662798698,13.20706844128895,72.46072255843502,5.09497938372201,19.868709929010027,-0.08240849345702704,0,0,10838.113453916734,0.1932520396033143,0.004446572546536724,0.0077232334,0,0,0,0 +1900,0.4881558617748878,0.7305723603784592,0,0,3.3618210367956025,6.786918675061315e-4,0.0023926675,0.025000376626849174,0.024856437,34.052798906962074,0.028558348,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98481,0,457.00000254313153,4270.3344,925.5521138509114,87.61328845020651,295.6749954223633,459.5444668504325,0,0,0,0,0,0,0,0,0,0,0,0,6.251103741305997e-6,6.2381326e-6,0,0,0,0,3.4535918045245734e-4,5.770064599999999e-4,0,0,0,0,279.4540481567382,0.8631696543463733,13.276669554810011,71.90656631461616,5.089168388032589,19.750787925178965,-0.08385968995663869,0,0,11348.727499729994,0.19324967713848945,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1901,0.5044857194846931,0.7969063127701378,0,0,3.3829529353801377,7.011479125746215e-4,0.0048200969,0.025000494594375294,0.024857442,34.05289999643961,0.047784449000000014,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04131,0,457.00000254313153,4273.3046,928.800333658854,88.39116711070807,296.0069986979167,457.6168305058551,0,0,0,0,0,0,0,0,0,0,0,0,6.297067784544197e-6,6.2798935e-6,0,0,0,0,3.478985866725755e-4,5.817261e-4,0,0,0,0,279.613047281901,0.8714059588722426,13.301409901434221,71.63263161162581,5.20214413763188,19.48762216724768,-0.08579737819029178,0,0,11775.255202668699,0.1931616844954455,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1902,0.5193451170981727,0.800278636367018,0,0,3.3815414695884436,8.848810005777826e-4,0.0057781223,0.025000344030559063,0.024856062,34.055300076802574,0.050743008,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04898,0,457.00000254313153,4273.708,932.7311604817708,89.26282464192792,296.3249994913737,455.02617682462983,0,0,0,0,0,0,0,0,0,0,0,0,6.343031827782397e-6,6.316678900000002e-6,0,0,0,0,3.5043799531801295e-4,5.858722900000001e-4,0,0,0,0,279.8610509236653,0.8812154472523583,13.412488026584588,71.24149846316587,5.179688036784444,19.35806149893677,-0.08773506642394488,0,0,12100.548766402842,0.09059743996435048,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1903,0.5664546211178523,0.8295711459044773,0,0,3.389386332354358,0.001116641176243623,0.0069576127,0.025000539453079302,0.024857979,34.05799961090088,0.05591998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09555,0,457.00000254313153,4276.1561,936.7834269205728,89.89074056747505,296.65399678548175,449.9625304110428,0,0,0,0,0,0,0,0,0,0,0,0,6.388995871020597e-6,6.3575352999999986e-6,0,0,0,0,3.5297739911281195e-4,5.9048768e-4,0,0,0,0,280.15604146321607,0.890660734283567,13.437520518020643,70.25376393283156,5.1901034578968455,19.030597877588104,-0.08967275465759794,0,0,13044.158155518342,-0.7087274740337839,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1904,0.5751521325099065,0.856100074253587,0,0,3.4640582999698033,0.0013829462016777445,0.0094363385,0.02500028194238742,0.024855289,34.06080023447672,0.068491568,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07939,0,457.00000254313153,4275.3063,942.1142679850259,91.35674942842638,296.95399475097656,462.6217650299278,0,0,0,0,0,0,0,0,0,0,0,0,6.434959914258798e-6,6.3918668e-6,0,0,0,0,3.555168053329301e-4,5.9435105e-4,0,0,0,0,280.43204243977857,0.900998671506556,13.731471700844033,72.88437625246438,5.400226562773813,19.656119727265345,-0.09161044289125103,0,0,13274.437189098227,-0.26430883974577096,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1905,0.6122962467973883,0.8830904178747726,0,0,3.525334738078169,0.0017163676869434614,0.013412831000000002,0.02500062497953574,0.024859105,34.06420008341471,0.087718467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08907,0,457.00000254313153,4275.8152,947.4432729085286,92.40132432209919,297.28899637858075,467.44012883738543,0,0,0,0,0,0,0,0,0,0,0,0,6.480923502749647e-6,6.4289102e-6,0,0,0,0,3.5805621155304834e-4,5.985269799999999e-4,0,0,0,0,280.7050450642903,0.911796750677243,13.855105466247057,73.70973521692333,5.570897783797489,19.752967156958555,-0.09354813112490414,0,0,14100.978379035863,0.07758312468608113,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1906,0.6442763573284219,0.9139458953081726,0,0,3.549324480388693,0.0021963609227289758,0.018196454,0.02500016087045272,0.024853655,34.068699518839516,0.11138246,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10645,0,457.00000254313153,4276.7286,953.0924224853514,93.2499831638467,297.66199747721356,466.4356478967891,0,0,0,0,0,0,0,0,0,0,0,0,6.526887545987847e-6,6.466788299999998e-6,0,0,0,0,3.6059561534784734e-4,6.027991099999999e-4,0,0,0,0,280.9800465901692,0.9228643088832689,13.959645369835703,73.46173851221981,5.607842106776347,19.60693136091458,-0.09545551104287764,0,0,14766.450119103303,0.17494042863794804,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1907,0.726915977115476,0.9229970275040732,0,0,3.6744573684699935,0.002872606390155852,0.016966195,0.025000798360755045,0.025812945,34.074700037638344,0.10398923,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14627,0,457.00000254313153,4278.822,959.1561177571614,94.5608019449233,298.0979944864909,480.31745635776645,0,0,0,0,0,0,0,0,0,0,0,0,6.5728515892260475e-6,6.507102e-6,0,0,0,0,3.6313501914264634e-4,6.0735196e-4,0,0,0,0,281.2760442097981,0.9335570189055034,14.216774986296493,76.00444514305916,5.925751520425966,20.144490748304303,-0.09692403030316216,0,0,16264.987209463294,0.062031619541395626,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1908,0.7032325912946371,0.932378464388443,0,0,3.675876640379726,0.0037649905619521937,0.021404879,0.02499991360430916,0.029231937000000006,34.08239936828613,0.12765503,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12414,0,457.00000254313153,4277.6586,964.0852966308593,95.71237193404865,298.5179901123047,482.5826340091374,0,0,0,0,0,0,0,0,0,0,0,0,6.618815632464248e-6,6.5407783e-6,0,0,0,0,3.6567443021340296e-4,6.111398000000001e-4,0,0,0,0,281.61104329427076,0.9439781461374255,14.407422860628587,76.85623799627187,5.975251674338594,20.34218954572492,-0.09839254956344667,0,0,15590.713118515627,0.12577421060954422,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1909,0.7293531000033262,0.9394639872302616,0,0,3.6900486620571034,0.004334990129185219,0.036714367000000005,0.02507337733792762,0.7650859999999999,34.087400118509926,0.21121463,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.16533,0,457.00000254313153,4279.8240000000005,969.3983662923176,96.46669460330283,298.93599192301434,480.68946878632124,0,0,0,0,0,0,0,0,0,0,0,0,6.664779675702448e-6,6.5813135e-6,0,0,0,0,3.6821383400820196e-4,6.1571818e-4,0,0,0,0,281.95004526774085,0.9541466929230623,14.465734280062996,76.44087709943787,6.04171533179017,20.1096713132971,-0.0998610688237312,0,0,16371.00547137995,0.1917775514880681,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1910,0.765726394850593,0.9455920872078338,0,0,3.7676081069530625,0.005609989515505731,0.042342327,0.02532928188641866,1.0366888,34.098299980163574,0.24301505,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14442,0,457.00000254313153,4278.7248,974.7870890299478,97.77187102780431,299.37699635823566,491.4713622185322,0,0,0,0,0,0,0,0,0,0,0,0,6.710743718940648e-6,6.615104700000002e-6,0,0,0,0,3.7075323780300096e-4,6.1951928e-4,0,0,0,0,282.3140436808268,0.9648675091710838,14.7306044680131,78.48124342715315,6.22524154290356,20.602328395865626,-0.10126503542660648,0,0,17123.070519811292,0.19159019115572065,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1911,0.7810146544824405,0.8874036750204771,0,0,3.725917531952306,0.007499988889321685,0.047217079,0.0812472328543663,0.55672031,34.11459986368815,0.27037941,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.20214,0,457.00000254313153,4281.7592,979.4653218587239,98.4293811567004,299.82899220784503,482.3736483687901,0,0,0,0,0,0,0,0,0,0,0,0,6.7567077621788485e-6,6.6575406e-6,0,0,0,0,3.7329264887375757e-4,6.2431671e-4,0,0,0,0,282.72104136149085,0.9761720065989483,14.679374542895259,76.73370568501319,6.205453710840906,20.007607425742776,-0.10240012153911617,0,0,17244.1854917937,0.1913996219514424,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1912,0.8199661913672125,0.8508398703003752,0,0,3.7091004678175183,0.009259988398601612,0.055977137,0.10000008965531985,1.3372385,34.12980047861735,0.31844894,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.23472,0,457.00000254313153,4283.4718,983.6058603922525,99.26614632335712,300.3529917399089,477.9889214580395,0,0,0,0,0,0,0,0,0,0,0,0,6.802671805417049e-6,6.6972695e-6,0,0,0,0,3.7583205024323735e-4,6.288021400000001e-4,0,0,0,0,283.01904296874994,0.9924203303369911,14.713664798160675,75.8316081908469,6.21946391056852,19.680892428681513,-0.10353520765162587,0,0,17989.19691090075,-0.2483084466661772,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1913,0.889533970104308,0.8203484804069425,0,0,3.787939036045986,0.011569987594460448,0.05934571,0.11666701609889667,2.7874772,34.1497999827067,0.33694139,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.25437,0,457.00000254313153,4284.5046,986.2423197428384,100.61255837319116,300.9099934895833,488.2676034939648,0,0,0,0,0,0,0,0,0,0,0,0,6.848635848655249e-6,6.7356009000000015e-6,0,0,0,0,3.7837145403803635e-4,6.3312652e-4,0,0,0,0,283.3620402018229,1.0114400974128448,14.921807646192061,77.57996159883326,6.453879619764709,20.00732869050688,-0.10467029376413556,0,0,19072.753187289316,-0.30943169229472783,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1914,0.8114913689780275,0.8092045045442162,0,0,3.764418792127778,0.014084987109526992,0.064801984000000007,0.19333053504427275,4.5655912,34.17150020599365,0.36726542,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.19867,0,457.00000254313153,4281.5767,988.610880533854,102.28405865111169,301.4189910888672,494.4978826289548,0,0,0,0,0,0,0,0,0,0,0,0,6.894599891893449e-6,6.765480200000002e-6,0,0,0,0,3.809108626834738e-4,6.3647677e-4,0,0,0,0,283.71604156494135,1.0321295138459616,15.241497455163927,79.77807342879137,6.499176732511072,20.59248108677444,-0.10580537987664523,0,0,17594.434057832063,0.020398445252377703,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1915,0.8029916592535993,0.7974019582591167,0,0,3.7223377832742996,0.016684986495723326,0.08400062900000001,0.31655970215797424,6.2098372,34.193999926249184,0.47153519,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.2716,0,457.00000254313153,4285.4105,991.4610799153645,103.0579197466507,301.9369888305664,484.24768488469795,0,0,0,0,0,0,0,0,0,0,0,0,6.9405635182799115e-6,6.8098518e-6,0,0,0,0,3.8345026890359196e-4,6.4149729e-4,0,0,0,0,284.04704284667963,1.0546195831794383,15.232131029774814,78.35040062356745,6.4827720725927875,20.061424577974346,-0.10694046598915492,0,0,17573.116044207876,0.1641375391623491,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1916,0.8653307900276433,0.7997102256366486,0,0,3.744207068777381,0.019669986019531887,0.10465075,0.5206524853905042,5.9968917,34.21979999542236,0.58467971,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.29863,0,457.00000254313153,4286.831,998.4538218180337,104.08894352066241,302.48498789469403,482.95426600786,0,0,0,0,0,0,0,0,0,0,0,0,6.986527523622499e-6,6.8490958e-6,0,0,0,0,3.8598967269839096e-4,6.4592684e-4,0,0,0,0,284.31204223632807,1.077791381611315,15.342847178146304,78.27985154770643,6.60168085846147,19.908298607149394,-0.1080755521016646,0,0,19065.484279863696,0.18922175763831675,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1917,0.896621584801294,0.8027455741063269,0,0,3.8263968555995858,0.02392498527963956,0.11034348,0.7563406427701315,5.1585271,34.2564001083374,0.61870744,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.37275,0,457.00000254313153,4290.7275,1003.5705515543618,105.4397414501963,303.01098887125653,492.9600447524987,0,0,0,0,0,0,0,0,0,0,0,0,7.032491566860699e-6,6.8937875e-6,0,0,0,0,3.885290813438284e-4,6.509842700000001e-4,0,0,0,0,284.6150461832682,1.1002556131310455,15.500365004779491,80.4548180697849,7.003710361287698,20.17756104011222,-0.10921063821417433,0,0,19906.998931884555,0.19018318847478569,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1918,0.8873955587039598,0.8060358496732685,0,0,3.8305973797130326,0.02868998423218727,0.10461425,0.9276737372080485,4.2721672,34.29749997456869,0.58914082,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.37311,0,457.00000254313153,4290.7462,1010.1304473876952,106.74593160054405,303.44898732503253,496.242073076373,0,0,0,0,0,0,0,0,0,0,0,0,7.078455610098899e-6,6.9300659e-6,0,0,0,0,3.910684875639466e-4,6.550720200000001e-4,0,0,0,0,284.80504862467444,1.1212267086350811,15.704391027274072,81.61294813978053,7.118191256260811,20.368951576880015,-0.110345724326684,0,0,19743.244967391554,0.1899763122778872,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1919,0.7808604024397078,0.8111591475979437,0,0,3.7226411346821937,0.03343498365332683,0.10155164,1.0843643546104431,3.196035,34.338699658711754,0.57214502,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.33647,0,457.00000254313153,4288.8202,1017.6303660074868,108.09510704377881,303.8139877319336,490.9794171167238,0,0,0,0,0,0,0,0,0,0,0,0,7.1244196533371e-6,6.962042700000002e-6,0,0,0,0,3.936078889334264e-4,6.5866401e-4,0,0,0,0,284.85105133056635,1.1402334776582428,15.915652713498652,81.67724386438958,6.926922672741556,20.368638212598857,-0.1115197148188522,0,0,16994.786869895725,0.18976010178406924,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1920,0.9030601007400624,0.8135184546759534,0,0,3.8130101207834444,0.03770498279482126,0.071874804,1.176037738720576,4.0059497,34.375800132751465,0.41169313,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.40157,0,457.00000254313153,4292.2427,1025.0703277587888,109.13363853305731,304.24598693847656,498.87459987539705,0,0,0,0,0,0,0,0,0,0,0,0,7.1703836965753e-6,7.0058716e-6,0,0,0,0,3.961472951535446e-4,6.636221499999999e-4,0,0,0,0,284.9290440877278,1.157633764648187,16.036656139503478,82.96992111207,7.3188151464881575,20.402395098799328,-0.11278881532908334,0,0,18802.69892302283,0.18954070686553806,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1921,0.7938358638145999,0.8612993334837397,0,0,3.661222702405219,0.042184981517493725,0.05599481,1.241669515768687,6.3575754999999985,34.4146998723348,0.32444592,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.42979,0,457.00000254313153,4293.7261,1032.2003377278643,109.80934796264431,304.59998830159503,486.6136241874396,0,0,0,0,0,0,0,0,0,0,0,0,7.2163477398135e-6,7.045455500000001e-6,0,0,0,0,3.98686703798982e-4,6.6809072e-4,0,0,0,0,285.0390421549479,1.173417684573443,16.01016129774032,81.18725519244387,7.146950074087312,19.846108774902355,-0.11405791583931453,0,0,16049.705932221917,0.1893181118062252,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1922,0.8438966628298804,0.8533692042065284,0,0,3.6583337227642674,0.04389498041321834,0.10093674,1.3888855278491974,7.5196689,34.43010012308756,0.56921203,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.47367,0,457.00000254313153,4296.0327,1039.1002502441404,110.48581040150992,304.9449818929036,484.8273418444006,0,0,0,0,0,0,0,0,0,0,0,0,7.2623117830517e-6,7.0869364000000015e-6,0,0,0,0,4.01226107593781e-4,6.7277807e-4,0,0,0,0,285.17004903157545,1.188779371830489,16.07300912106922,80.53069430512947,7.252038815173717,19.474278395734512,-0.11532701634954567,0,0,16950.895997894484,0.0877045766097048,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1923,0.9595590008888546,0.8614844099618343,0,0,3.8812462099992877,0.04700497972468535,0.13753371,1.6249915957450867,8.1995609,34.45719941457113,0.77479139,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.54539,0,457.00000254313153,4299.8026,1045.1300659179685,112.25356413194692,305.27098337809247,514.2343951443905,0,0,0,0,0,0,0,0,0,0,0,0,7.308275826289901e-6,7.131803e-6,0,0,0,0,4.037655138138992e-4,6.7785565e-4,0,0,0,0,285.46704101562494,1.205120977529758,16.469305300306814,86.27583424473677,8.013836332456805,20.417825208931507,-0.11659611685977685,0,0,19723.672024100037,0.12093783396952988,0.004446569985399644,0.007723268,0,0,0,0 +1924,0.9703594405113312,0.8676633311171565,0,0,3.7748090158825875,0.052589978401859604,0.14595489,1.8459543486436207,10.064032,34.50569979349772,0.82730698,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.55899,0,457.00000254313153,4300.5175,1049.450032552083,112.63350596587964,305.62998453776044,499.0974143950571,0,0,0,0,0,0,0,0,0,0,0,0,7.354239869528101e-6,7.169801200000001e-6,0,0,0,0,4.0630492245933664e-4,6.8214162e-4,0,0,0,0,285.6050491333007,1.2222190421891945,16.415647771084632,83.21123114220697,7.790296571572385,19.77882376042076,-0.117865217370008,0,0,19521.89407498274,0.18863121099961191,0.004446569946594536,0.0077232683,0,0,0,0 +1925,0.9836991206856317,0.8708471713839661,0,0,3.7906069821644643,0.05885497791071733,0.15281139,2.1164215207099915,9.887985,34.5605993270874,0.86947278,0,0,0,0,0,0,0,0,0,0,5.299997687339783,105.60265,0,457.00000254313153,4302.8128,1052.159952799479,113.6704269189651,305.81298065185547,502.6957687586778,0,0,0,0,0,0,0,0,0,0,0,0,7.400203495914563e-6,7.2114506e-6,0,0,0,0,4.0884432625413564e-4,6.8684841e-4,0,0,0,0,285.6520512898762,1.2377911006225208,16.841681561106117,84.06174423454924,7.983263811925956,19.753454837168906,-0.11913431788023915,0,0,19738.889839322743,0.18839574168627352,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1926,0.9711936637110966,0.8752881607638067,0,0,3.724383638277895,0.06516497613241275,0.16877181,2.460367262363434,10.020584,34.616199811299644,0.96266008,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.65209,0,457.00000254313153,4305.4116,1053.600107828776,114.54563027246535,305.9539845784505,499.041820374083,0,0,0,0,0,0,0,0,0,0,0,0,7.4461675012571504e-6,7.2538666e-6,0,0,0,0,4.1138373004893464e-4,6.9164354e-4,0,0,0,0,285.69204711914057,1.2526121062865871,17.14732507530922,84.16877083488303,8.057166101708676,19.573020111236303,-0.12040341839047032,0,0,19808.91323463674,0.18815706175477445,0.0044465700242047506,0.0077232683,0,0,0,0 +1927,1.0719822978926645,0.9148152429216062,0,0,3.8503573823854342,0.0720199750115474,0.19366311,2.6942857106526694,13.691728,34.67679913838705,1.1076116000000005,0,0,0,0,0,0,0,0,0,0,5.299997607866923,105.65063,0,457.00000254313153,4305.3352,1055.770568847656,115.74747998347533,306.17698669433594,515.0910883833536,0,0,0,0,0,0,0,0,0,0,0,0,7.492131544495351e-6,7.290134400000002e-6,0,0.0049450274,0,0,4.1392313869437203e-4,6.9573008e-4,0,0,0,0,285.7400512695312,1.2667652835613548,17.432321744004053,86.52753524964037,8.499773806732605,19.875509864662817,-0.12167251890070148,0,0,21139.782286868525,0.187915087386083,0.004446569985399644,0.0077232677,0,0,0,0 +1928,1.0761742979146,0.9182619073884535,0,0,3.828134931557229,0.07970497260491054,0.21328049999999998,3.02649054924647,16.914307,34.74499924977621,1.2252077,0,0.020814729,0,0,0,0,0,0,0,0,5.2999982436498,105.59392,0,457.00000254313153,4302.3537,1060.6403605143228,116.7958666079441,306.3289794921875,515.8400889336957,0,0,0,0,0,0,0,0,0,0,0,0,7.538095587733551e-6,7.3196023e-6,0,0.030139896,0,0,4.1646254248917103e-4,6.990328999999999e-4,0,0,0,0,285.83304850260413,1.2797850846246124,17.62700284771002,87.11586336850812,8.569023694913732,19.91593076109437,-0.12294161941093265,0,0,21065.047460560574,0.16326849505962074,0.004446569985399644,0.007723269,0,0,0,0 +1929,1.1569513873862218,0.945536477224549,0,0,3.8902159937355303,0.08870497221748035,0.20802541,3.517713646094004,19.38339,34.825199127197266,1.2037865,0,0.33502494,0,0,0,0,0,0,0,0,5.299996972084045,105.60372,0,457.00000254313153,4297.9849,1066.6603291829424,118.01999771578741,306.49498748779297,527.0535755087527,0,0,0,0,0,0,0,0,0,0,0,0,7.584059630971751e-6,7.3457199e-6,8.387752144093005e-4,0.003329301,0,0,4.1900194628397003e-4,7.019496099999999e-4,0,0,0,0,285.8910522460937,1.290827581649255,17.867272783472913,89.37670246877072,8.894481947800461,20.274973944467554,-0.1242107199211638,0,0,22402.21951573089,0.008459436299327926,0.004446569946594536,0.007723266199999999,0,0,0,0 +1930,1.0728864782722383,1.0228008835417055,0,0,3.9076228058376485,0.0980799701064825,0.17035764,4.063463946183522,20.571834,34.909299532572426,0.99750344,0.001314997343191256,1.1701026,0,0,0,0,0,0,0,0,5.299998998641968,105.91828999999998,0,457,4287.8382,1072.6401163736978,119.67017881003574,306.6199773152669,535.0349028180784,0,0,0,0,0,0,0,0,0,0,0,0,7.630023560523114e-6,7.3580297999999985e-6,0.00510867650154978,-0.026051043,0,0,4.2154135735472664e-4,7.0327493e-4,0,0,0,0,285.9380518595377,1.3003703550961545,18.10997615018731,91.59573862667055,8.841770878325681,20.952388588675653,-0.12547982156900256,0,0,20792.33985686783,0.17991195822791398,0.004446570101814966,0.0077232725,0,0,0,0 +1931,0.9686717262631225,1.0331302905231323,0,0,3.699193086333459,0.10662497021257877,0.11326202,4.702978173891704,21.232329,34.9865992863973,0.6766021,0.021151568042114377,1.6600328999999998,0,0,0,0,0,0,0,0,5.3066509167353315,106.6887,0,457.000005086263,4282.6938,1077.4902242024737,119.90750782308882,306.82198333740234,504.89813450435264,0,0,0,0,0,0,0,0,0,0,0,0,7.675987490074476e-6,7.3819696e-6,0.0013775627594441175,-0.0038292076,0,0,4.2408076114952564e-4,7.059406299999999e-4,0,0,0,0,286.124043782552,1.3073181920546588,17.958294196248843,86.48531866506026,8.206316153499158,19.782983456664027,-0.12674892343562766,0,0,18348.14599749548,0.1869152841968948,0.0044465698301792145,0.0077232589,0,0,0,0 +1932,0.8802743934777767,0.934985060725432,0,0,3.701120518695932,0.11274996710320313,0.085847633,5.2942134141922,23.837144,35.04279931386312,0.51911084,0.07499745239814122,1.6167368,0,0,0,0,0,0,0,0,5.338305354118347,107.41813,0,457.00000254313153,4276.7559,1081.9602254231768,121.42198728704909,307.09297943115234,510.1823315036154,0,0,0,0,0,0.0057643486,0,0,0,0,0,0,7.721951533312676e-6,7.4038620000000015e-06,6.616643853097534e-4,7.431065e-4,0,0,4.2662016494432464e-4,7.083703599999999e-4,0,0,0,0,286.222048441569,1.3141063515038527,18.10001303714107,87.9072537284969,8.14248430159185,20.161815548303863,-0.12801802530225273,0,0,16151.105195411223,0.04254262073622287,0.004446570334645609,0.0077232888,0,0,0,0 +1933,0.9234526077537247,0.9318013427122356,0,0,3.6739916956408347,0.11636996641755104,0.10162739999999999,5.937420805295308,28.120028,35.076699574788414,0.61081444,0.12499795357386272,1.6336582,0,0,0,0,0,0,0,0,5.379978577295939,108.09758,0,456.99999745686847,4271.2585,1086.540334065755,122.34376589659303,307.40198008219403,508.11601205842635,0,0,0,0,0,0.14482802,0,0,0,0,0,0,7.767915576550877e-6,7.4266479000000016e-6,7.192010428601255e-4,8.0764091e-4,0,0,4.2915957358976203e-4,7.1090308e-4,0,0,0,0,286.3710505167643,1.3197777870137994,18.14058311592853,87.73926442282286,8.102332976784076,20.019613310457757,-0.1292871271688778,0,0,16995.040808999714,0.15037091489606738,0.004446569170492391,0.0077232216,0,0,0,0 +1934,1.000687973523085,0.9200297551297542,0,0,3.8176224066538618,0.120129964624842,0.15202423,6.679798523585002,34.519287,35.111599604288735,0.91252255,0.174997894714276,1.6505883,0,0,0,0,0,0,0,0,5.419978777567546,108.91202,0,456.99999745686847,4272.3774,1091.770294189453,123.95329985100088,307.7849833170573,528.0331660089164,0,0,0,0,7.617614949898174e-4,0.60639434,0,0,0,0,0,0,7.813879619789077e-6,7.4653224e-6,7.817409447549531e-4,8.7789025e-4,0,0,4.3169897738456103e-4,7.152669800000001e-4,0,0,0,0,286.4670486450195,1.326062978814577,18.32411358884008,91.49703968423377,8.603675585096985,20.702617836824825,-0.1305562290355029,0,0,18679.912767508573,0.18613128672545048,0.004446571848044793,0.007723374200000002,0,0,0,0 +1935,1.0505968685462075,0.9186843152571444,0,0,3.826763235457096,0.12510996125638485,0.22028466,7.595823089281718,40.132859,35.15789985656738,1.3303298,0.22499790415167809,1.6675173,0,0,0,0,0,0,0,0,5.459979295730591,109.70014,0,457,4272.1486,1097.08012898763,124.8946043872966,308.2269795735677,529.4409406291938,0,0,0,0,0.019080033137773473,0.97427321,0,0,0,0,0,0,7.859843663027277e-6,7.500741299999999e-6,8.497191738570109e-4,9.5422447e-4,0,0,4.3423838117936003e-4,7.192557e-4,0,0,0,0,286.58704884847,1.332452330452497,18.317319645408826,91.90214074154562,8.779424673428734,20.543197042155484,-0.13182533090212795,0,0,20077.943320367118,0.18586353451204687,0.004446565833253165,0.0077230226,0,0,0,0 +1936,1.1503667221829357,0.9270693885573005,0,0,3.9720080230657695,0.13321496173739433,0.28820401,8.761372248331705,42.33712,35.23359902699789,1.7570203000000002,0.27499790986378986,1.6844464,0,0,0,0,0,0,0,0,5.4999799728393555,110.56758,0,456.999994913737,4275.9063,1101.8303019205728,126.46470475438792,309.01197306315106,550.0398548533171,0,0,0,0,0.07932233065366745,1.0455299,0,0,0,0,0,0,7.905807706265477e-6,7.545934399999999e-6,9.236086334567517e-4,0.001037276,0,0,4.367777898247975e-4,7.243709e-4,0,0,0,0,286.7470448811848,1.3386899894061661,18.652869642211954,95.83484543323485,9.362043924590697,21.164186541248704,-0.13309443276875307,0,0,21597.571787769164,0.185592517547358,0.0044465794538458185,0.007723846199999999,0,0,0,0 +1937,1.231103104871657,0.9045164915618376,0,0,3.977215074471826,0.14407995715737343,0.34372195,10.024959723154703,44.188471,35.3363987604777,2.1186454,0.3249979118506114,1.7013755000000002,0,0.0063900215,0,0,0,0,0,0,5.539980530738831,111.3625,0,457.00000254313153,4275.9946,1106.3199869791665,127.18233706750797,309.7639745076497,550.6109419060176,0,0,0,0,0.1400045237193505,1.1131878000000002,0,0,0,0,0,0,7.951771749503678e-6,7.5821791e-6,0.0010039232001872733,0.0011274768,0,0,4.3931719604491565e-4,7.2845477e-4,0,0,0,0,286.95104471842444,1.3465253526433507,18.73588299543127,95.84567433043011,9.575630542004474,20.850604708617507,-0.13436353463537815,0,0,23231.712031323073,0.1853182578338796,0.004446548409759998,0.0077218498,0,0,0,0 +1938,1.1614219711074325,0.9073215418860066,0,0,3.8795464313880084,0.1580399548014005,0.39883954,11.266163110733032,49.06474,35.46979935963949,2.4891541,0.3749979188044866,1.7183046999999998,0,0.1328808,0,0,0,0,0,0,5.579981207847595,112.0603,0,456.99999745686847,4271.2734,1110.6307983398435,127.90539303616418,310.2939758300781,535.4268484555511,0,0,0,0,0.20000430569052696,1.185033,0,0,0,0,0,0,7.997735792741878e-6,7.6064912e-6,0.0010912219295278192,0.0012254241,0,0,4.4185659983971465e-4,7.3116337e-4,0,0,0,0,287.191042582194,1.3551266769032138,18.7206280051743,93.2370606174549,9.13361208452991,20.283818003860038,-0.13563263650200325,0,0,21542.975865724657,0.1850407365123296,0.004446620470844209,0.0077285525,0,0,0,0 +1939,1.2326137038964111,0.9058800276933815,0,0,4.010820601451636,0.1736899564663569,0.43390074,12.575761953989664,56.68305400000001,35.62149874369303,2.745053,0.4249979183077812,1.7352338,4.437717252585571e-4,0.68779311,0,0,0,0,0,0,5.61998176574707,112.8293,0,457.00002034505206,4270.1197,1116.909678141276,129.50135676592018,310.8509750366211,554.5379171230255,0,0,0,0,0.26000453531742096,1.2571398,0,0,0,0,0,0,8.043699835980078e-6,7.6395717e-6,0.0011861117285055418,0.0013320616,0,0,4.443960084851521e-4,7.3488257e-4,0,0,0,0,287.3870468139648,1.3668291715856424,18.987929691357078,97.34535423251211,9.632984018885308,21.020853325485078,-0.13690173836862835,0,0,23010.268809183824,0.1847599106254542,0.004446447691104065,0.11813875,0,0,0,0 +1940,1.332494477928578,0.8934636293441599,0,0,4.026253626433618,0.19239995131889978,0.50172554,14.090854724248251,67.98074100000001,35.804999033610024,3.2190952,0.4749979227781296,1.7521629,0.009225911945880702,1.4928916,0,0,0,0,0,0,5.6599823633829756,113.75015,0,456.9999643961589,4276.3916,1120.120178222656,130.13499426241637,311.35697682698566,550.4654056455058,0,0,0,0,0.3200042446454366,1.3304593999999998,0,0,0,0,0,0,8.089663500262153e-6,7.6912641e-6,0.0012892556163327147,0.0014481828,0,0,4.469354122799511e-4,7.4074684e-4,0,0,0,0,287.61904144287104,1.3795892066065865,18.93380647928792,96.49612886832482,9.961368880607099,20.566275747266797,-0.13793690008074544,0,0,25159.0741191676,0.1844758339571321,0.0044469935819506645,0.21814961,0,0,0,0 +1941,1.3573323902091925,0.87608140300394,0,0,4.050294266866393,0.21106995145479837,0.64957282,15.872149070103964,81.740279,35.991299311319985,4.2240743,0.5249979098637899,1.769092,0.04815833130851388,2.2339929,0,0,0,0,0,0,5.69998296101888,114.54353,0,457.0000813802083,4282.9257,1123.240509033203,132.2180939399341,311.81097412109375,552.9500650768001,0,0,0,0,0.3800046021739642,1.4028748,0,0,0,0,0,0,8.135627467709128e-6,7.727317500000001e-6,0.0014013840700499713,0.0015741503,0,0,4.494748160747501e-4,7.448086699999999e-4,0,0,0,0,287.8640467325846,1.42706317607174,19.034030783582587,97.09407345232208,10.193711740010501,20.462031367555745,-0.1386016615843945,0,0,26113.949704774812,0.1841885864846894,0.012151915968085328,0.1951164,0,0,0,0 +1942,1.3590493190022876,0.8973145216954003,0,0,4.1141932838166495,0.23562495286266008,0.84353078,18.12043031056722,95.021136,36.23889923095703,5.585489,0.5749979317188263,1.7860212,0.112600847457846,2.976471,0,0,0,0,0,0.19841173,5.739983518918355,115.26991,0,456.9997380574544,4303.7401,1128.1901550292966,134.70602408126945,312.17197672526044,560.1841861089208,0,0,0,0,0.4400041376550992,1.4745563999999998,0,0,0,0,0,0,8.181591510947328e-6,7.7551846e-6,0.0015232670799984287,0.0017109548,0,0,4.5201422229486826e-4,7.4792699e-4,0,0,0,0,288.1380538940429,1.5298185446895778,19.210183227285178,98.65719695401302,10.345483778655613,21.014193770024683,-0.13926642308804354,0,0,26702.042786503276,0.18389809416798145,0.018664849922060966,0.16898031,0,0,0,0 +1943,1.4029458246329907,0.8921248427380299,0,0,4.11408578168194,0.267039954662323,0.80476688,20.794118722279865,89.521615,36.56109873453776,5.4576739000000005,0.6249979237715403,1.8029502,0.20245546102523804,3.7199961,0,0,0,0.056451758,0,4.3053247,5.77998411655426,116.04761,0,457.93199666341144,4331.4951,1132.6601562499998,136.62968688428126,312.3899790445964,561.0185502959332,0,0,0,0,0.5000047385692596,1.5467027,0,0,0,0,0,0,8.227555554185528e-6,7.789335e-6,0.0016557506072179724,0.0018597366,0,0,4.545536309403057e-4,7.517695e-4,0,0,0,0,288.78102874755854,1.6777932069727464,19.226489945128584,99.48634644476039,10.644062862464148,20.76469900653816,-0.13993118459169265,0,0,27110.348585419746,0.1836043762155363,0.023900681796173256,0.14684461,0,0,0,0 +1944,1.3879131189978564,0.8983189521156985,0,0,4.111269896041665,0.30831495175759,0.41764093,23.86478344599406,72.69430200000002,36.99279912312826,2.9606569,0.6749979356924692,1.8198794,0.3176470845937729,4.4638059000000005,0,0,0,0.97266311,0.019433656940236688,16.545617,5.8199847141901655,116.85265,0,460.7425028483073,4354.745,1136.270060221354,138.93105622391963,312.41297149658203,569.4275578497453,0,0,0,0,0.5600039213895798,1.6191675,0,0,0,0,0,0,8.273519597423729e-6,7.8268219e-6,0.00179975672896641,0.0020215068,0,0,4.570930347351047e-4,7.559967e-4,0,0,0,0,289.00005086263013,1.8537439967013465,19.454671365649084,102.00830515112277,10.972149966258387,20.918122282494288,-0.14059594609534168,0,0,26578.15151015907,0.18330738198668892,0.027877628337591887,0.11439264,0,0,0,0 +1945,1.180916481863783,0.8988221719461101,0,0,3.970406317162407,0.33637995769580203,0.20111842,25.904248396555584,68.369262,37.297698974609375,1.5076942,0.7249979277451833,1.8368084,0.4580556924144427,5.2077233,0,0,0.004844144840414326,3.4593405,0.4215002196530501,24.846154,5.85998531182607,117.6118,0,463.24369557698566,4376.5008,1139.32036336263,141.02296395690516,312.38497670491535,562.3881403027648,0,0,0,0,0.6200050512949625,1.69101,0,0,0,0,0,0,8.319483640661929e-6,7.8587212e-6,0.0019562874901263663,0.0021972582,0,0,4.596324409552229e-4,7.595796e-4,0,0,0,0,289.2270406087239,2.0468366239992983,19.530998731486306,102.38686289278726,10.811058367654892,20.630415192374578,-0.14126070759899073,0,0,23414.92285804937,0.18300712894373766,0.03101034214099248,0.080798572,0,0,0,0 +1946,1.2942110656768657,0.9829470073282762,0,0,3.9716964354580995,0.3442649617791176,0.27970458,27.504756927490234,74.71723399999998,37.39169883728027,2.0726649,0.7749979496002197,1.8537378,0.6235543092091879,5.9856104000000006,0,0,0.08337228807310264,4.940467900000002,1.6357106665770214,24.839378,5.899985949198405,118.39896,0,465.7432912190755,4399.6117,1143.6604919433591,142.70640224525258,312.38997141520184,555.2899629515077,0,0,0,0,0.680003434419632,1.7631907999999998,0,0,0,0,0,0,8.365447683900129e-6,7.894034299999999e-6,0.002126432334383329,0.0023883489,0,0,4.621718496006603e-4,7.635561099999999e-4,0,0,0,0,289.4270451863606,2.2422352077889016,19.68948842063387,102.65818348678006,10.80993836386383,20.305933499558623,-0.14192546910263978,0,0,23137.2912384495,0.18270359473494088,0.03229169764866432,0.06430042700000001,0,0,0,0 +1947,1.4498949379331847,1.013635265025484,0,0,4.004289599390247,0.3536549558242162,0.34838359,29.078561464945476,84.081746,37.50009854634603,2.6369074,0.8249979366858801,1.8706665,0.8140119264523188,6.4443541,0,0,0.3000110412637393,4.8390374000000005,2.835014005502065,24.982371,5.93998658657074,119.2973,0,468.2434260050456,4428.0553,1149.6402994791665,144.7944964951042,312.48597208658856,563.4037753734774,0,0,0,0,0.7400057514508566,1.8372679,0,0,0,0,0,0,8.41141172713833e-6,7.9428476e-6,0.0023113751861577234,0.0025963146,0,0,4.647112509701401e-4,7.6908855e-4,0,0,0,0,289.51104482014966,2.4286545050325703,19.916095128874474,104.15736760766261,11.489678423181335,20.190999473703123,-0.14259023060628884,0,0.0033728385,25978.580134271393,0.18239681638037056,0.03281248671313127,0.046731228,0,0,0,0 +1948,1.541746757752381,1.0217889660432258,0,0,4.123520872976997,0.3683149615923564,0.33316898,31.041143258412678,90.670686,37.670498530069985,2.6243892000000004,0.8749979635079702,1.8875961,1.0316545367240906,6.6649072,0,0,0.5000130111972491,4.856366099999999,4.025014281272888,24.987103,5.979986985524495,120.08364,0,470.7433776855469,4451.0369,1155.630167643229,147.27202945137043,312.5209681193034,586.5360800457117,0,0,0,0,0.8000023066997528,1.966277,0,0,0,0,0,0,8.45737577037653e-6,7.9780491e-6,0.002512403065338731,0.0033276717,0,0,4.672506547649391e-4,7.7305219e-4,0,0,0,0,289.55605316162104,2.589644895931103,20.349060560415165,108.09641738801687,12.195764994941479,20.65035706357972,-0.14325499210993792,0,0.023611977000000003,27162.316753376424,0.1820867991187164,0.0328332781791687,0.020169381,0,0,0,0 +1949,1.5150340802151026,1.0322291088892992,0,0,4.0957465510773075,0.38362496097882587,0.31424196,33.192337354024254,91.962416,37.855198542277016,2.5926444,0.9249979307254156,1.8955033,1.2518172562122345,7.1640705,0,0,0.7000119686126709,5.561141,5.215012947718303,27.295461,6.019987901051839,120.70601,0,473.243403116862,4466.7618,1160.3499450683591,150.21571488778258,312.63197072347003,588.4410386834926,0,0,0,0,0.8600076138973236,1.6426278000000003,0,0,0,0,0,0,8.50333981361473e-6,7.993390500000001e-6,0.0027309151094717285,0.02463759,0,0,4.697900658356957e-4,7.747269e-4,0,0,0,0,289.59805043538404,2.7140139811269637,20.909195897992674,109.1544257771438,11.863971231370714,21.081179377216955,-0.14391975361358694,2.747740879082509e-4,0.063741035,26198.851367200677,0.18177350173895448,0.03209515412648519,-0.0015784357,0,0,0,0 +1950,1.6956807866542396,1.0454343901508287,0,0,4.3312607912797665,0.3969699591398239,0.32876887,35.499832471211754,78.580053,38.023898442586265,2.8441101000000004,0.9749979873498281,1.9897329,1.4824664394060771,7.4706053,0,0,0.8938818424940109,8.1460574,6.382257183392842,32.673745000000004,6.059987783432007,121.62274,0,475.7314631144206,4499.2896,1163.820566813151,152.20100844625213,312.8209762573242,619.9439709148871,0,0,0,0,0.9275005906820297,1.0661465,0,0,0,0,0,0,8.549303477896805e-6,8.0453408e-6,0.003054187574889511,0.10531435,0,0,4.723294696304947e-4,7.806208900000001e-4,0,0,0,0,289.73904164632154,2.7868238058947905,21.601404570641137,113.85984719531825,13.132141828954166,22.105810561368756,-0.14458451511723602,0.001923504489241168,0.16053368,29148.546819670417,0.1814569633566329,0.03030576727663477,2.432756e-4,0,0,0,0 +1951,1.8173567042308394,1.2637884621306537,0,0,4.212336067356143,0.41064496090014774,0.33222262,37.58082548777262,70.47669,38.204298655192055,3.0430784,1.0244279702504475,2.1685287,1.7349158823490143,7.5542237,0,0,1.1468555231889088,12.050138,7.775353193283081,36.815853,6.099990487098694,122.51807,0.014330518,478.3116455078125,4529.1876,1168.810119628906,155.27193516536855,313.01397196451825,593.1994505844021,0,0,0,0,0.9349976976712545,1.0527789,0,0,0,0,0,0,8.59526744534378e-6,8.0850349e-6,0.006885135274690886,0.2343219,0,0,4.748688734252937e-4,7.8510233e-4,0,0,0,0,289.8600540161132,2.8307926461022945,21.710967064016447,109.09095441872181,13.152193894404679,20.398188183698103,-0.14710768873059346,0.005466860408584277,0.23983988,30378.934969744696,0.18113711866275609,0.028203126974403858,0.0011664316,0,0,0,0 +1952,1.8518759304813062,1.2915086581093504,0,0,4.27824996657228,0.42523996035257977,0.32854487,38.706894874572754,76.508762,38.406997998555504,3.2228257,1.079317679007848,2.4120426,1.984303871790568,7.673401400000001,0,0,1.5540266533692677,16.078842,9.444400389989218,40.441283,6.139426151911418,123.26435,0.21725302,481.16064198811847,4558.7052,1174.3108825683591,160.57335760480584,313.3419774373372,606.9563399935745,0,0,0,0,0.9200002650419871,1.4414744,0,0,0,0,0,0,8.64123148858198e-6,8.100092099999999e-6,0.02087512387273212,0.36283509999999997,0,0,4.7740828449605033e-4,7.867442699999999e-4,0,0,0,0,290.02505238850904,2.873469224433514,22.393786048989185,112.61821090484105,13.48661503998857,20.95793435117974,-0.1497592068193485,0.01499934789414207,0.24565292,30772.879377004218,0.1808140109638238,0.026776751192907493,-0.0020300648,0,0,0,0 +1953,1.9058871956207555,1.288662579097105,0,0,4.400134890913105,0.4392099554340045,0.31999622,40.05176067352295,81.681224,38.61429913838705,3.3863087,1.1389276186625164,2.8478934,2.2399121522903442,7.7034458,0,0,2.129436651865641,20.201055,11.213325262069702,45.581432,6.184987505276998,124.06078,1.3575508,484.1764450073242,4600.7084,1183.360656738281,165.68183230817434,313.72996775309247,623.9750547982311,0,0,0,0,0.9262516697247823,2.1004080000000003,0,0,0,0,0,0,8.68719553182018e-6,8.1248995e-6,0.04651178978383541,0.48047903,0,0,4.7994768829084933e-4,7.8950997e-4,0,0,0,0,290.3340403238932,2.918473220829267,23.086276532048977,116.77653779023555,14.050620354457529,21.600939708208692,-0.15241072490810365,0.024999434128403664,0.24572915,31392.44295532122,0.18048767518443254,0.02495241429035862,-2.2819236e-4,0,0,0,0 +1954,1.9553258305658399,1.3426832443153052,0,0,4.475107773130416,0.4534849599003792,0.29457384,41.54246679941813,86.86346999999998,38.84129842122396,3.4048632000000003,1.2079770465691884,3.2763156,2.4949118296305337,7.760213,0,0,2.8635963996251426,25.212381,13.203928073247274,51.892411,6.22998833656311,124.75392,3.6198833,488.50885518391925,4629.2231,1194.4306030273435,170.37100791893153,314.09496815999347,628.9096635314064,0,0,0,0,0.9637557764848074,2.8888848,0,0,0,0,0,0,8.73315957505838e-6,8.1370738e-6,0.08213070034980774,0.59576061,0,0,4.824870896603291e-4,7.9081967e-4,0,0,0,0,290.54804992675776,2.9653052307782946,23.518269296485517,118.7896928573186,14.352627821692423,21.654738949016565,-0.15506224299685875,0.034999388890961804,0.24580572,31601.64061572461,0.1801580463648328,0.0234999794823428,-0.0040708208,0,0,0,0 +1955,2.1387868172549656,1.3878206830387967,0,0,4.585745111893209,0.46671496083339054,0.26311875,43.17295900980631,91.980019,39.07069810231527,3.3346824,1.2937463521957397,3.6788015,2.7499121824900308,7.6370702,0,0,3.7677908142407737,30.727319,15.439632256825766,59.87188100000001,6.274988849957784,125.74327,6.4848679,493.2549794514974,4666.3367,1206.65092976888,174.7404470567501,314.4149703979492,641.3267253315221,0,0,0,0,1.0538601179917653,3.5564777000000003,0,0,0,0,0,0,8.77912361829658e-6,8.184845900000001e-6,0.1274599153548479,0.70910415,0,0,4.8502649830576655e-4,7.9623211e-4,0,0,0,0,290.84404500325513,3.016004167545106,23.788691617349485,122.54258151361353,15.359884890806127,21.61194057224027,-0.15771376108561386,0.044999435233573117,0.24588273,34555.402722250226,0.17982516920850813,0.021999980478237074,0.0010493547,0,0,0,0 +1956,2.291039468224933,1.4462836425278403,0,0,4.8444014888868745,0.478794959684213,0.22075982,44.93925635019938,97.008491,39.3001979192098,3.0796375,1.3882061143716176,4.2759912,3.006162941455841,7.543031599999999,0,0,4.90076740582784,33.546756,18.00713857014974,66.950489,6.319989720980327,126.58168,9.1561662,496.95969645182294,4699.2729,1221.1007995605466,180.671117460758,314.6979675292969,673.8062290292883,0,0,0,0,1.1860103805859883,4.5322657999999985,0,0,0,0,0,0,8.82508766153478e-6,8.2145095e-6,0.1822890266776085,0.82044371,0,0,4.8756590210056555e-4,7.995574900000001e-4,0,0,0,0,291.1870447794596,3.067693130108469,24.39548109092037,129.82302004314178,16.407730767105924,22.724482756858983,-0.16036527917436896,0.05499937882026037,0.24595899,37118.77108719959,0.1794890063461402,0.020458318758755922,0.006640162099999999,0,0,0,0 +1957,2.384773000160331,1.4774945790842637,0,0,5.084522572350242,0.489309956630071,0.18587639,46.82995192209879,102.11597,39.52009836832682,2.8571248,1.4974753856658936,4.9612019,3.2499133944511414,7.3765313,0,0,6.239397327105205,32.871446,20.977540334065754,72.204141,6.364989757537842,127.41838,11.488509,500.6978174845378,4733.2024,1235.8001810709634,186.0555677386444,314.9919611612956,695.9496130566932,0,0,0,0,1.3464653591314952,5.9875108,0,0,0,0,0,0,8.871051704772981e-6,8.2451464e-6,0.2464121406277021,0.92977447,0,0,4.901053131713221e-4,8.029950599999999e-4,0,0,0,0,291.5120417277018,3.1227659361540883,25.10938270800668,135.59152056062854,17.202288510585237,23.82634944628376,-0.16301679726312407,0.06499945092946291,0.24603635,38873.754310972414,0.1791495207576567,0.019499980999777716,0.004342369,0,0,0,0 +1958,2.4670954688378814,1.5285973472099872,0,0,5.060488042524024,0.4977349440256755,0.17928487,48.83994928995768,107.206,39.715097745259605,2.9954591,1.6274844805399578,5.6330503,3.4969948132832847,6.9087313,0,0,7.567232608795166,34.746284,24.184339841206867,80.925329,6.409992456436157,128.42262,14.781202,504.5039291381836,4771.3965,1247.4204813639321,188.38553994967657,315.344965616862,661.285485841322,0,0,0,0,1.5845945576826732,7.120203999999998,0,0,0,0,0,0,8.917015748011181e-6,8.2860065e-6,0.3196182499329249,1.0371306,0,0,4.926447145408019e-4,8.0761087e-4,0,0,0,0,291.7720464070637,3.18418831910038,25.26871426472444,129.20858361180427,17.043104741234497,22.24665040214954,-0.16566831535187918,0.07499935726324718,0.24611309999999997,39341.991357154206,0.1788067540033275,0.018499995737026136,0.0026052944,0,1.5255345e-5,0,1.550744e-4 +1959,2.6036729140488357,1.4736682886389454,0,0,5.186762349282971,0.505239948630333,0.18081021,50.97114499409994,112.29185,39.90489800771078,3.2476716,1.777483691771825,6.388022599999998,3.7265921036402383,6.8760458,0,0,8.797123988469442,43.506257,27.60905106862386,93.983467,6.4542984167734785,129.47587,18.063698,508.3637110392253,4808.726,1257.320078531901,192.68675731110378,315.8069661458333,665.4367222123257,0,0,0,0,1.9060347974300385,8.0253807,0,0,0,0,0,0,8.962979791249381e-6,8.3259739e-6,0.40169936915238696,1.1424694,0,0,4.951841207609201e-4,8.121238e-4,0,0,0,0,291.98704274495435,3.250322629161094,25.784568318874836,131.21049744121555,17.515266326606977,22.136950451664426,-0.1683198334406343,0.08499948245783646,0.30755864,41319.47350993611,0.1784607567238176,0.017499990140398342,8.684612300000001e-4,0,1.2225318000000002e-4,0,0.0012460364 +1960,2.728446849074149,1.4615195318866923,0,0,5.288213084302709,0.5130949467420578,0.17259465,53.211243311564125,117.2597,40.118597666422524,3.3209398,1.9469429155190785,7.3201718,3.938670496145884,7.2392631,0,0,10.23712126413981,56.28148100000001,31.60536019007365,107.5417,6.504989147186279,130.53321,21.750437,512.2328440348307,4847.0424,1264.1198730468748,197.26110047577146,316.62496693929035,668.5656629833454,0,0,0,0,2.2494065960248313,9.5885732,0,0,0,0,0,0,9.008943455531456e-6,8.3712137e-6,0.49244747559229535,1.2458107,0,0,4.977235318316767e-4,8.1724438e-4,0,0,0,0,292.2830454508463,3.323928526213912,26.127946785499923,133.33681491027784,18.137986763264845,22.068663139398165,-0.16971698815179884,0.09499939220647018,0.43040209999999995,42970.73471143208,0.17811146430862335,0.016499992460012436,-8.684921e-4,1.2107990556842196e-6,2.3072394e-4,6.978449713794059e-6,0.0023750868 +1961,2.7521018504089363,1.531158201999545,0,0,5.280187774913458,0.5207299540440241,0.16861102,55.563539822896324,121.58986000000002,40.34249718983968,3.4304351000000004,2.141221841176351,8.4287849,4.1636671622594195,7.4514735,0,0.0018618006,12.167853911717733,70.618557,36.23666445414225,123.80387,6.554991841316223,131.26152,27.278298,516.0400848388672,4864.0212,1269.4615275065103,205.13834130452685,317.29896291097003,701.0053452576341,0,0,0,0,2.637653867403666,11.884386,0,0,0,0,0,0,9.054907422978431e-6,8.367736999999999e-6,0.5916525920232137,1.346892,0,0,5.002629332011566e-4,8.1675024e-4,0,0,0,0,292.60204569498694,3.545375735491367,26.889738501199272,143.56526348207862,18.738996990578176,23.373573142607228,-0.17042405828273247,0.10999903393288453,0.55328481,48370.747602751726,0.1748425912224242,0.015499991675217947,-0.0026053238,9.686392521264983e-6,2.4913556000000003e-4,5.5827597558770016e-5,0.003546415 +1962,2.868392578555052,1.520724683920321,0,0,5.268371108547883,0.5278749416271845,0.17112099,58.007436752319336,125.71015,40.56609694163004,3.6249821,2.365680515766144,9.612767800000002,4.398663679758708,7.580527900000001,0,0.045181371,14.639893293380737,86.214551,41.47677803039551,144.89716,6.604418396949768,132.4011,32.049021,519.7264709472656,4895.6486,1282.5712890624998,207.2122991826155,318.0439631144206,678.8492233714484,0,0,0,0,3.1291542649269104,14.500089,0,0,0,0,0,0,9.100871466216631e-6,8.405538e-6,0.699107696612676,1.4460951000000002,0,0,5.028023394212747e-4,8.2101348e-4,0,0,0,0,292.9450378417968,3.678783292234149,27.391344297603926,140.1058920148071,19.332929386112895,22.550094638193304,-0.1711311284136661,0.12999879072109857,0.61483924,49373.4626711147,0.018878477916170075,0.01449999026954174,-0.0043425207,1.9372784966738738e-5,2.5250226000000003e-4,1.1165519572386984e-4,0.0049206759 +1963,3.036186160713145,1.5272093107248352,0,0,5.437875742912039,0.535164937376976,0.18314033,60.507436434427895,128.88013,40.80479653676351,3.9881367,2.6255189975102744,10.949721,4.63597031434377,7.911085400000001,1.4331860863118587e-4,0.24720738,17.71703306833903,101.83231,47.60459232330322,167.67883,6.659987608591716,132.99126,37.52532,523.2439982096354,4904.2354,1300.79057820638,216.19226558975322,318.64996337890625,741.3196016175318,0,0,0,0,3.753723760445913,17.280228,0,0,0,0,0,0,9.146835509454831e-6,8.3926404e-6,0.814602812131246,1.5429261,0,0,5.053417504920313e-4,8.194336200000001e-4,0,0,0,0,293.32704925537104,3.8037763068903097,28.744647607968993,156.13095399196706,20.520847373631998,24.609210933874923,-0.1718381985445997,0.15499834592143694,0.55366285,50918.547922521546,-0.7158139715324602,0.013499994995072484,-0.0078699311,2.905917745010811e-5,3.5209498e-4,2.0954201075558862e-4,0.005972759100000001 +1964,3.1935857269729495,1.5182530872301747,0,0,5.25990946510033,0.5425249338150024,0.20130699,63.07753308614095,129.76928999999998,41.05469576517741,4.432625700000001,2.9195976853370667,12.657214,4.877436995506287,8.477894599999999,0.003477728799528753,0.46848862,21.421671549479168,116.30072,54.79980500539144,189.8766,6.715564290682475,134.07707,49.914046,526.5386403401693,4933.087,1317.3704528808591,216.5561629558192,319.3329620361328,689.1114600087734,0,0,0,0,4.5027817487716675,20.771971,0,0,0,0,0,0,9.192799552693032e-6,8.436046300000001e-6,0.9379299183686575,1.6379776,0,0,5.078811470108727e-4,8.243428e-4,0,0,0,0,293.6850484212239,3.94575429191722,28.607416327576342,146.45477556142896,21.250626659387255,22.37762398460907,-0.17254526867553333,0.17999867846568426,0.49245891,52831.63766662475,-0.6203003960549346,0.012499973177909851,-7.597085899999999e-4,3.8745569933477476e-5,0.0010303711,3.218187654662567e-4,0.033580017000000004 +1965,3.342046614628416,1.5494103546996891,0,0,5.2700102527121695,0.5508499294519424,0.22504179999999996,65.62683486938477,129.69213,41.342495918273926,4.9089192000000015,3.2579756379127502,14.528257,5.135173638661702,9.0358315,0.019166271900758147,0.58010695,25.709799925486248,130.83983999999998,63.0290142695109,213.3919,6.764422178268433,135.19804,70.507935,529.5773620605469,4953.0596,1331.0602823893228,222.666415702745,319.81596120198566,709.3122962703268,0,0,0,0,5.391107479731242,25.0603,0,0,0,0,0,0,9.238763595931232e-6,8.4640089e-6,1.0688820282618205,1.7308461,0,0,5.10420553230991e-4,8.274721400000001e-4,0,0,0,0,294.04503885904944,4.115195266374096,29.972153677829578,153.40539119426893,22.08301053841794,22.64997293102378,-0.17325233880646695,0.1999987723926703,0.4926084,54063.80178149757,-0.2927293197139612,0.01137502615650495,0.015948649,5.60693097213516e-5,0.0021406888,4.596758565943067e-4,0.11324642 +1966,3.501720550339981,1.5517652807392261,0,0,5.285174795936927,0.5597749253114065,0.26721734,68.0712407430013,129.70542,41.65249570210775,5.6248074,3.653163174788157,16.547774,5.413369536399841,9.5008952,0.039499382954090834,0.77191369,30.50373379389445,147.99606,72.2479305267334,240.15802,6.8193081219991045,136.46754,94.258765,532.3371022542318,4976.4474,1342.240509033203,226.31069580205852,320.8799565633138,710.941466458106,0,0,0,0,6.472539742787679,30.477075,0,0,0,0,0,0,9.284727639169432e-6,8.5066137e-6,1.2072421511014302,1.8217969,0,0,5.129599594511092e-4,8.322890299999999e-4,0,0,0,0,294.45304361979163,4.31119735595728,31.553067549575943,156.4949809106804,22.847791402233124,22.434297142441455,-0.17395940893740058,0.21999895945191383,0.61550021,55269.31676159744,0.11690965230767818,0.010999986358607808,0.069786165,1.1921713667106815e-4,0.0031030971,0.0018055206843807052,0.20275693 +1967,3.6259660139730605,1.595865385821404,0,0,5.390458849300692,0.5701449265082678,0.32052973,70.42624282836914,129.68847,42.00469557444254,6.3547572,4.101901113986969,18.918172,5.707025408744812,9.9208119,0.06371349437783162,1.0373000000000001,35.86647764841715,169.42177,82.6101468404134,269.58286,6.879989941914876,137.66763,116.32544,534.8238169352213,4995.4184,1354.2715555826821,232.33314648826578,321.4799575805664,746.2098208746951,0,0,0,0,7.774255792299907,36.036945,0,1.246032e-5,0,0,0,6.8991852e-5,9.330691682407632e-6,8.544612699999999e-6,1.352812260389328,1.9105949,0,0,5.154993656712273e-4,8.365750900000001e-4,0,0,0,0,294.8600463867187,4.481777634666587,33.1677760500894,164.77531621039864,24.19623737938871,23.585293537089132,-0.1746664790683342,0.23999873300393423,0.7384486,54762.89709618766,-0.07633744709933905,0.011131961752350131,0.24404072,2.235555645408264e-4,0.0037542491,0.005476358346641064,0.26151045 +1968,3.8345952658425997,1.5469930909111562,0,0,5.370373092170119,0.5827049265305201,0.40423022,72.69054730733235,129.73308,42.41149616241455,7.332441499999999,4.61564834912618,21.713594,6.014501253763835,10.295172,0.09872918141384919,1.3673824,41.93913205464681,195.13757,94.25966453552246,299.7143700000001,6.939991156260173,139.24379,133.08156,537.0335591634115,5029.5667,1371.6504618326821,235.33540266621623,322.3889567057292,740.4824182303034,0,0,0,0.0092379775,9.383843421936035,40.359034,0,8.8038453e-5,0,0,0,4.8559101e-4,9.376655725645833e-6,8.6257131e-6,1.505382388830185,1.9976935,0,0,5.180387718913456e-4,8.458288900000001e-4,0,0,0,0,295.2690455118815,4.618299686146145,34.3815728401946,165.09570877308497,25.41081254044139,22.825796914652,-0.1753735491992678,0.26999801645676297,0.67731523,56868.37887037226,0.0011209927611538926,0.014528773414591948,0.44305972,3.60778462588011e-4,0.0055431793,0.010674211041380962,0.29037411 +1969,4.0615677268044985,1.5437089021510264,0,0,5.404091612813001,0.5976699193318685,0.5206411,74.8699499766032,129.76058,42.862396240234375,8.483171800000001,5.203845143318176,24.938178,6.334147016207377,10.638634,0.143262746433417,1.7120901000000002,48.922607421875,220.72612,107.28918075561523,327.55328,6.999991575876872,140.05867,146.61896000000004,538.9712473551432,5026.2804,1389.3417561848955,239.18485161256538,323.25095621744794,747.0297315350706,0,0,0,0.18322115,11.191637754440308,44.144508,1.2165773692155806e-6,9.3679956e-5,0,0,9.679108093981389e-6,5.038868e-4,9.422619768884033e-6,0.0098248184,1.6647424797217052,2.0817369,0,0,5.205781781114638e-4,8.450532600000001e-4,0,0.0011288309,0,0,295.681042989095,4.732615322675832,34.96181250811188,169.68157132242786,26.065069005292788,22.100489511661433,-0.17608061933020144,0.29999837279319763,0.67751619,58467.81079627766,0.07485921849687786,0.02660746080800891,0.55613635,5.134661914780736e-4,0.03648951,0.016677813526863854,0.30862539 +1970,4.323514044182916,1.5319290688025449,0,0,5.549708797290366,0.61744491259257,0.6581691999999999,76.96995290120442,129.69302,43.40139643351237,9.5318801,5.882411241531372,28.576904,6.6643119653066,11.00827,0.2035404990116755,1.8909658,56.95325533548991,245.38621,121.64918899536133,354.60102,7.059993505477905,141.52757,173.56366,540.6648610432943,5048.3132,1411.1005147298174,244.41839554629246,324.78295644124347,781.037552297546,0,0,0.001065175359447797,0.60795801,13.09374705950419,49.037394,8.557121153292732e-6,2.4685116e-5,0,0,6.793739824691632e-5,1.0851205e-4,9.468583508957332e-6,0.036330653,1.830672601858775,2.1644992000000003,0,0,5.23117584331582e-4,8.520249e-4,0,0.0042255569,0,0,296.0980377197265,4.714190307707546,37.469578527471604,179.6859546683907,27.824084069544437,22.780224323226346,-0.17678768946113504,0.32499857246875763,0.80047128,61529.779790205444,0.07891007914399001,0.042955159209668636,0.64373178,7.886756357038394e-4,0.11813403,0.022781516425311565,0.34789664 +1971,4.510244869270977,1.4055542417708098,0,0,5.703748992338275,0.6424449036518732,0.82992065,78.98995844523112,129.60227,44.007896423339844,10.711494,6.6607770919799805,32.729139,7.00438114007314,11.452529,0.27441523348291713,2.1402118,65.84650834401448,276.44309,137.13820521036783,387.53989,7.119412302970886,143.1196,217.72405,542.1264394124349,5067.5026,1431.1209615071612,249.2895330837902,325.3999557495117,796.2029425301106,0,0,0.021073126544555027,0.8564575999999999,15.120055437088013,55.790888,1.0061302646136028e-5,1.3254363e-5,0,0,7.890220331319142e-5,4.2594654e-5,6.875001223913083e-4,0.064586906,2.0029827058315277,2.2451174,0,0,5.256569905517002e-4,8.5867175e-4,8.593750105016322e-5,0.00774384,0,0,296.52204386393225,4.663522046368115,38.13342515565109,183.53555789915328,28.617263975091056,23.195116011534044,-0.17749263314257094,0.3549981142083804,0.86210262,61716.79562857309,-0.03213341039414315,0.06120223210503658,0.78786166,0.003391635837033391,0.2232129,0.029181620261321466,0.40686343 +1972,4.706494311867816,1.3269371347118073,0,0,5.971153374722522,0.6740748832623163,1.0559028999999998,80.9293607076009,129.65777,44.68869590759277,12.24311,7.553642193476359,37.465523,7.356679677963257,11.97792,0.34821991870800656,2.5517628,75.6708869934082,314.22879,153.8562266031901,427.68026,7.184317310651143,144.52172,267.60333,543.3849334716797,5079.1924,1449.2900187174478,257.2102054265862,327.3489532470703,868.4735707547015,0,0,0.06999984166274469,0.87667663,17.352389971415203,61.456633,1.0390318796756523e-5,1.3479254e-5,0,0,8.037302359298337e-5,4.3040854e-5,0.0025000001187436283,0.082580189,2.181452830632528,2.3233295,0,0,5.281963967718184e-4,8.6363194e-4,3.124999990783787e-4,0.010359322,0,0,296.9550399780273,4.9307421199057115,39.56446297363227,196.66552470793948,30.236221506038817,25.52743453960084,-0.17813366446922693,0.3899978771805763,0.86237286,63465.10424037791,0.049119653936524114,0.08156623815496762,1.0951867,0.010107177193276584,0.31882408,0.0366138257086277,0.4721474 +1973,4.975651785811607,1.318385656312959,0,0,5.895831575895738,0.7138798783222834,1.3307870000000002,82.79306348164876,129.79157,45.45469538370768,14.085332,8.576456785202026,42.979262,7.723947962125142,12.585161,0.43801355610291165,2.92937,86.87261581420898,338.0693,172.25726318359375,454.71123,7.255663514137268,146.54158,301.85553,544.4634094238281,5118.3195,1462.860677083333,260.2947249743578,329.90895080566406,826.0293132269293,0,0,0.11499984314044316,0.82240702,19.92769479751587,65.420113,1.0719714812997458e-5,1.3772853e-5,0,0,8.184554402153783e-5,5.4973948e-5,0.005062500150719036,0.090214925,2.365882933139801,2.4006492,0,0,5.307358029919366e-4,8.768767699999999e-4,6.328129966277629e-4,0.011968111000000002,0,0,297.3990402221679,5.050826137007638,39.9571427129374,186.52593193281965,31.240096880428535,23.455648107310147,-0.17877469579588295,0.42499801019827527,0.92401065,66317.71188639547,0.15522883058251086,0.1075315357496341,1.5930673,0.02092159477372964,0.39726303,0.04518213029950857,0.54390644 +1974,4.948149198232062,1.2905489996591684,0,0,5.971643938399686,0.7649898727734884,1.4191691,84.59316635131836,129.76026000000002,46.34259541829427,14.311146,9.748060464859009,49.247959,8.108936508496603,13.447442,0.5431961392362913,3.5184015,99.53890228271484,340.6055,192.56424713134766,453.22872,7.319503704706828,147.80664,327.35544,545.3698170979818,5113.8208,1476.140909830729,261.8082770537653,330.7559534708659,824.6214022160059,0,0,0.16126984233657518,0.76119143,22.525582949320476,71.666995,1.1049491528562308e-5,1.3967525e-5,0,0,8.331976338619522e-5,0.052416219000000014,0.008000000069538752,0.08706316300000001,2.556043048699697,2.474116,0,0,5.332752092120548e-4,8.7789564e-4,9.999999989910673e-4,0.01237887,0,0,297.8550415039062,5.0344191249004195,40.69211663930812,183.60052508219061,31.077406046065626,23.599624622127063,-0.17941572712253898,0.45999792218208313,1.0394718,65371.62666713273,0.10279066121396813,0.14653477569421133,2.1806547000000003,0.034983893080304064,0.67241083,0.05499073459456364,0.65809554 +1975,4.928622399679322,1.303204963553737,0,0,5.9984313740411705,0.8284898797671,1.4004084,86.32876841227214,129.65616,47.35769589742025,14.321042000000002,11.09574286142985,57.565811,8.51440660158793,14.538442000000002,0.661696677406629,4.217686799999999,112.33176358540852,337.71465,213.23522440592447,440.16522,7.389227231343587,148.91662,384.99818,546.1371358235677,5104.4298,1491.7409667968748,263.05854864525753,330.8269551595052,816.9194858581777,0,0,0.19499984259406725,0.80304672,25.179124514261883,79.153904,1.1379648640286177e-5,1.4151174000000003e-5,0,0,8.637850078230258e-5,0.19213674,0.010937500201786557,0.07287558599999999,2.7517531315485635,2.545125,0,0,5.35814615432173e-4,8.7775104e-4,0.0013671900087501854,0.011478755,0,0,298.32604471842444,5.2068127673577305,41.476725896945794,177.51306730736252,30.76637271161256,23.129653790732366,-0.180056758449195,0.49999761829773587,1.1646458,64182.768823129416,-0.20496901654447228,0.20330782110492387,2.8018363,0.051680791191756725,1.2682709,0.06614344008266926,0.8287437 +1976,5.1946610219984874,1.3202053582443383,0,0,6.237496531818932,0.8872098724047343,1.5554771,87.99307123819987,129.63321000000002,48.276095390319824,16.011714,12.636435270309448,57.24638,8.955106973648071,15.386466,0.8118081788221995,4.743647,124.73074785868327,329.27602,232.99722162882486,426.10768,7.465574224789937,150.23158,475.43135,546.7914225260416,5104.2152,1509.1109517415362,269.9482096580869,331.5449498494466,856.063491529847,0,0,0.22999984274307886,0.82394648,28.196115493774414,92.664426,1.171018743661989e-5,1.4358855e-5,0,0,0.007432716122517983,0.33759564,0.01350000019495686,0.047412585,2.9527832667032876,2.614347,0,0,5.383540216522912e-4,8.8049315e-4,0.001687499995265777,0.0091593417,0,0,298.8140436808268,5.352361696512741,42.5213569666273,186.24742729810202,32.28663209283211,24.40571791742575,-0.18069778977585105,0.5443803270657858,1.4235416,67153.40876186565,0.042795931279707856,0.27751198535164195,3.4107057000000003,0.08715698743859927,1.8435573,0.08035514317452908,0.98712807 +1977,5.364428639868427,1.3520979710065895,0,0,6.353178768287844,0.9490798612435659,1.6923549999999998,89.59247398376465,129.63647,49.29249509175619,16.762577,14.47871708869934,55.875241,9.431879123051962,15.71703,0.9836416741212209,5.1782548,136.7956975301107,306.11158,251.99420674641928,404.2283,7.534413854281108,152.04263999999995,533.0325,547.3396860758463,5117.6518,1527.680948893229,274.03015240270713,333.3529459635417,868.4313096928761,0,0,0.2649998404085636,0.93269902,31.407798290252686,109.06413,1.2041107462816095e-5,2.1399971000000003e-6,0,0,0.026895795327921707,0.42456315,0.015312500220413009,0.022180513,3.1589433749516806,3.5323931000000006,0,0,5.408934278724095e-4,8.8740955e-4,0.0019140600246222068,-0.0065053902,0,0,299.3190358479817,5.499463794793741,43.27485687581617,189.22553225601726,33.05929028320198,24.38724427025082,-0.181338821102507,0.5945511807998022,2.1583469,67777.19082397268,0.12845401331973466,0.3696969747543335,3.8826089,0.1504269844541947,2.1420878,0.09829714894294739,1.0852977 +1978,5.581802902559232,1.2993019000302957,0,0,6.57904481781486,1.0211598575115204,1.7691766,91.13187662760417,130.48848999999998,50.43949508666992,16.898235,15.96304734547933,72.245349,9.926631212234497,15.529417,1.1736451586087544,5.5214165999999985,148.00458017985025,278.45958,270.00118255615234,383.9896,7.609319130579631,153.91731,529.79652,547.7978973388672,5132.0601,1546.890899658203,276.33335446294114,335.00994873046875,897.405148357044,0,0,0.29872983197371167,1.277913,35.72357686360677,112.78031,1.237240955257827e-5,-6.2543157e-5,0,0,0.054136695029834904,0.45249588,0.016000000139077503,-0.059867027,3.3700035015741983,4.661461,0,0,5.434328243912508e-4,8.9480636e-4,0.0019999999882808575,-0.021383103,0,0,299.8450393676757,5.625120895967197,44.240892074424366,192.93479554653743,34.269193302792054,25.019744191924026,-0.18197985242916306,0.6599957346916199,2.8286901,68023.041876235,0.1506635484397897,0.4763076677918434,4.2701212,0.23020097613334656,2.1599238,0.1185080527017514,1.1209156999999998 +1979,5.730732140077329,1.2523176484359615,0,0,6.677231649399466,1.094819853703181,1.9203395,92.61308097839355,128.37989,51.557394663492836,17.898313,17.68312692642212,94.634628,10.421233495076498,14.991238,1.3782646457354228,6.1020639,157.6384735107422,271.13342,286.4941584269206,394.80033,7.689991553624471,155.58903999999995,518.50501,548.1820729573568,5138.651,1566.1608581542966,281.6000656120118,336.60494740804035,900.4664227016348,0,0,0.34251976509888965,1.7595655,40.48909950256348,113.22088,1.1487397311308692e-5,-2.0391387e-6,0,0,0.0849026944488287,0.42017076,0.016000000139077503,-0.17766763,3.7300036549568176,5.0937882000000005,0,0,5.459722354620075e-4,9.0008302e-4,0.001000000006267025,-0.0099825707,0,0,300.39303843180335,5.807081798508845,45.13478108156769,196.0169028731842,35.013987182511805,25.212479862598272,-0.18262088375581906,0.7699926396210989,2.8296177000000005,69119.86371174049,0.1473114304822424,0.5893768072128296,4.6513697,0.31519197672605515,2.0579417,0.13952905808885893,1.1328091 +1980,5.650947966828631,1.2441357938650308,0,0,6.618387124854692,1.1735098262627919,1.9633226,94.1031723022461,125.08456,52.72269503275553,17.664267000000006,20.167388280232746,120.23426,10.897735516230265,14.760860999999998,1.5939541260401409,7.2362595,166.07752100626627,276.09356,302.1822509765625,398.43779,7.769993821779887,157.04196000000005,513.02719,548.5012359619141,5131.8984,1584.940734863281,283.34647023515436,338.70494588216144,890.5114951943987,0,0,0.41178564727306366,2.0330453,44.551489194234215,118.29604,5.5193815645300974e-6,7.9351775e-5,0,0,0.11494099286695321,0.35605477,0.011000000056810677,-0.12485274,4.130003849665324,5.1732709,0,0,5.485116416821256e-4,9.0155542e-4,5.107808434938003e-5,0.0031252635,0,8.167018e-5,300.9650395711262,5.872959052014542,45.97852705498147,194.39124204024887,34.76440146642314,25.232545658292864,-0.18326191508247508,0.8899930367867152,2.8304822999999995,68783.84556601176,0.109190156973947,0.7097166180610657,5.1129913,0.39410896847645444,2.1545661,0.15989606082439423,1.1562096000000002 +1981,5.539335981414791,1.2528135487313492,0,0,6.577782229862206,1.2601898312568665,1.7391266,95.31219546000163,126.52811,53.97579542795817,16.187192,23.256973266601562,128.45086,11.349838097890219,13.920115,1.8424933552742004,8.637244699999998,174.73850377400717,271.00597,319.4201304117839,403.07178,7.849401632944743,158.51506,516.86109,548.7653757731119,5123.4643,1602.6506245930987,279.78942071631377,340.05894978841144,875.7816094417443,0,0,0.5049996227025986,1.96562,48.66220633188883,122.37567,1.075440430516513e-5,1.7112573999999998e-5,0,0,0.1399999943872293,0.32601335,0.0030000001109632044,0.11779446,4.560003956158956,4.4274361,0,0,5.510510430516055e-4,9.0259513e-4,1.2761924275158285e-4,0.038309698,0,6.9675129e-4,301.56203460693354,5.805407445505892,46.37436562130664,189.16861385900194,34.11541673008395,24.873295971397052,-0.1839029464091311,0.999993642171224,2.9541119,66688.82721964004,0.0757372745424995,0.8352456837892532,6.0090214999999985,0.4687449559569359,2.4863888,0.1800000655154387,1.1742814 +1982,5.477249508472458,1.2581454775126868,0,0,6.915258577522967,1.3425698479016621,1.6205522,96.45029131571452,129.38621,55.10939598083496,15.97381,27.298911412556965,128.57689,11.805440743764242,13.885459000000001,2.144632577896118,9.2748324,183.27747344970703,277.72577,335.1432698567708,391.79861,7.934991518656413,159.18065000000001,532.93449,548.9834696451823,5083.3728,1618.7305399576821,287.6693153882337,340.64394124348956,967.4292982868147,0,0,0.5972496171792349,1.6573363999999997,52.764092127482094,125.26367,1.2755718368377226e-5,-8.228379000000001e-5,0,0,0.1600000001490116,0.33083911,0.0020000001228860733,0.22216908,4.970003763834636,3.5575865,0,0,5.535904541223621e-4,8.9426293e-4,2.6965544202539604e-4,0.066661524,3.741915871084226e-6,0.0015785006,302.18704223632807,6.043062727559764,47.66689067623099,206.8844647776702,34.15609140912993,28.272205714382924,-0.1845634619404803,1.1199926137924194,2.9550432,65532.301753925305,-0.15641584008740989,0.9728992034991583,6.4693449,0.5532129456599554,3.0131287,0.2000000737607479,1.352411 +1983,5.483062192797363,1.4330241763538591,0,0,6.625402213840496,1.4098998308181763,1.8456854,97.67579015096028,130.75988999999998,56.16269588470459,16.384525,30.830673376719158,150.74703,12.194235563278198,15.564841,2.4999918937683105,9.057039,191.16732279459634,353.29433,352.50609588623047,385.70972,8.019996364911398,160.09108999999995,547.19948,549.1685434977213,5047.3484,1632.620147705078,281.617658355317,342.26594797770184,862.0214943304857,0,0,0.672999694943428,1.3378778,56.786487897237144,129.4055,1.1691284877694367e-5,-2.7098867e-5,0,0,0.17999999349315962,0.33559498,0.011000000212031106,0.09748991,5.270004232724507,3.8040369,0,0,5.561298603424802e-4,8.871233e-4,0.0029999999581680945,0.024088349,3.1704332892938204e-5,0.0020178464,302.84204101562494,6.065834079500119,47.64540210423812,183.83582233478342,33.285128980692804,24.459513427275525,-0.18530513482030356,1.2399930556615193,3.2014371,64552.41617363238,-0.6775945263802521,1.144959529240926,6.0034055,0.651974951227506,3.8198142,0.21950007850925127,1.378774 +1984,5.619005090796103,1.4612248534423995,0,0,6.8150189551184415,1.4820398290952046,1.954181,98.93998591105144,134.9934,57.26739501953125,14.927399,34.79922644297282,167.86607,12.642924229303995,17.177695999999994,2.8499913215637207,10.537606,199.96714146931967,352.61795,366.79923248291016,438.30954,8.103740215301514,162.15076000000005,546.6524,549.3226318359375,5054.1956,1643.5008544921873,285.00304516787423,344.00794728597003,889.7020107049092,0,0,0.7217137465874354,1.2391705,60.742489178975426,137.14096999999998,3.96903745780719e-6,8.659051799999999e-5,0,0,0.19999999552965164,0.48356263,0.017000000225380063,0.027417786,5.530004461606343,4.8805394999999985,0,0,5.586692617119601e-4,8.9282411e-4,0.005000000004656613,-0.04014793,7.402270027038564e-5,0.0043071608,303.5280380249023,5.996375963335671,48.69349353439086,189.33352573144714,34.32486538148798,25.326276357675727,-0.1860468077001268,1.3599929014841716,3.5706830000000003,65309.89915296105,-0.2289078353791943,1.295939067999522,6.3412338,0.7757129470507304,4.798725900000001,0.24612508217493692,1.1329507 +1985,5.678895002751574,1.4997437788078463,0,0,6.922761988583978,1.5687698423862457,1.930951,100.18199602762859,138.44665,58.3761952718099,13.863624,39.652387619018555,191.20489,13.144109964370728,18.042992,3.187290926774343,12.093107,214.03345489501953,321.80334,383.26725006103516,487.46531,8.199989477793375,164.43684,559.24581,549.4526824951172,5072.7864,1655.9104715983071,285.6752697155976,345.4589538574219,906.9368199480392,0,0,0.7549997667471567,1.4290266,64.80020904541016,148.48134,8.568774148898228e-6,2.1606645e-4,0,0,0.21999999756614366,0.56320674,0.01700000014776985,0.085787554,5.8700045347213745,5.2553933,0,0,5.612086727827167e-4,9.0213205e-4,0.003999999995964269,-0.006224988000000001,1.1811007364788868e-4,0.012966035,304.2470397949218,5.996554239215087,49.41563613245486,190.4568856663394,34.861509200143864,25.83243997550224,-0.18678848057995007,1.4999912877877553,3.6945657,65474.087150351224,-0.011715700559269468,1.4159816404183705,7.686271400000001,0.9354569266239802,5.5359652000000015,0.26520808786153793,1.1864916 +1986,5.784334367519234,1.5301135694160417,0,0,7.0137036621234845,1.6502498388290405,2.0447892,101.67297554016113,134.66824,59.28379599253336,14.595216,44.608107248942055,226.48099,13.69979476928711,17.343175,3.6499905784924827,11.156209,222.3396848042806,363.19165,402.41221872965497,561.19711,8.294995307922363,166.53505,605.54478,549.5567423502604,5079.9439,1668.7911478678384,290.8084487539618,346.90294647216797,914.5218093193049,0,0,0.7879217316706976,2.1480617000000004,69.13964017232259,163.26271,1.2043192891534696e-5,2.1612991e-4,0,6.836250999999999e-4,0.2599999929467837,0.57273931,0.018000000156462193,0.044305139,6.3100047906239825,5.6896951,0,0,5.637480790028349e-4,9.0805661e-4,9.999999941404287e-4,0.03179967,2.603702887427062e-4,0.028102657000000003,305.0020370483398,6.123193922877899,50.21167873708514,195.66522346659664,35.24652923018162,25.9121168517712,-0.18753015345977328,1.6499911447366078,3.9411958,65479.271483930934,-1.4658150072006793e-4,1.5741113722324371,8.619926699999999,1.1329799195130665,5.6626388,0.2791670933365822,1.453026 +1987,5.942054872368608,1.51568933473453,0,0,7.200139154017295,1.7349598209063213,2.1868179,103.0739803314209,140.05915,60.248695373535156,15.122737,50.83082103729248,234.71551,14.25549602508545,15.986362,4.105550249417623,11.176584,233.33564122517905,377.17492,423.347417195638,543.59326,8.389330943425497,168.70781000000005,636.85035,549.6467793782552,5087.8651,1683.749786376953,295.0485146932872,348.77494557698566,952.061149189977,0,0.0011578226,0.8391895890235901,3.2631248,73.98439725240071,177.25124,2.903536521140874e-5,5.821475400000001e-5,0,0.0048785865000000005,0.28999998917182285,0.79616882,0.022000000191231567,-0.099665792,6.710005084673564,6.538606400000001,0,0,5.662874803723147e-4,9.1426979e-4,0.0030000000745834163,0.0083239765,6.904602487338707e-4,0.044783508,305.7930348714192,6.350228641755308,51.33101365968814,203.58517005144802,36.43815818195585,27.251867169865875,-0.18827182633959655,1.7999912301699321,4.3106697,66721.09399661662,0.062169756099630324,1.7711602052052815,9.1692428,1.346309910217921,5.241268700000001,0.29950010031461716,1.7364871 +1988,6.133362796862496,1.5150947746951446,0,0,7.39663506024057,1.8262398143609364,2.2384091,104.16901715596516,134.89421000000002,61.255194981892906,15.295333,57.8955987294515,225.34631,14.756715536117554,14.052169,4.49442990620931,12.063592,244.82575480143228,324.40759,449.32311248779297,433.01446,8.48999317487081,171.54521,645.54402,549.7208353678385,5119.7697,1693.940928141276,298.68549508376714,351.2759323120117,950.4151874289803,0,0.34924766,0.9504593312740326,5.2661192,79.53813616434734,185.3279,3.188543450960424e-5,0.021115007,7.708864601833436e-5,0.06849384,0.32999999324480694,0.88192316,0.02000000032906731,-0.07366243900000001,7.220005750656128,6.627813900000001,0,0,5.688268914430713e-4,9.2784993e-4,0.0030000005305434265,0.034690666,0.001493088435381651,0.060567348,306.624043782552,6.188309996026968,51.72677741877051,203.53222760721053,37.7977892884268,27.185066126098715,-0.18901349921941984,1.9699894785881042,4.6802608,67287.48390226346,0.1102479335964212,1.9729202787081401,10.094657000000002,1.548219899336497,4.7030971,0.32425010204315186,1.770198 +1989,6.211121149262674,1.53212989041127,0,0,7.320233667650651,1.9231797953446705,2.2075539,105.88293329874675,105.50252,62.29139518737793,15.212081,64.49583530426025,212.83728,15.212542057037354,10.119863,4.9499895970026655,11.292045,256.58931223551434,246.46809,468.0721740722656,357.7641,8.589393774668375,174.22363000000001,713.52261,549.7808532714844,5139.3872,1705.6304423014321,302.164174394028,352.89392344156903,930.8467754620427,1.1203966126534699e-4,0.72136249,1.1215790609518688,10.730464,85.39031410217285,189.56819,3.284409467596561e-5,0.31476996,5.449304395976166e-4,0.67304705,0.38999999314546585,0.82629641,0.014000000199303031,0.054397397,7.7600061893463135,6.6572182,0,0,5.713662976631895e-4,0.0060655338,0.0030000010544123747,0.077007399,0.002615397213958204,0.07614778700000001,307.8310241699218,6.264529714671574,52.06403696267891,200.31650520357337,38.13825088093059,26.33140676747172,-0.18975517209924306,2.149989446004232,5.0499664000000015,67312.93275191178,0.14261546154697627,2.1840911904970803,10.904862,1.7223599056402843,4.3864096,0.35575009882450104,1.6702493000000005 +1990,6.186811699323791,1.4450968870559717,0,0,7.508271531599201,2.018889824549357,2.1076967,106.4680290222168,86.426532,63.32119528452555,14.407865,70.81883303324382,176.8456,15.573984305063883,7.0905085,5.40554936726888,10.591201,263.08519744873047,208.25652,482.7560577392578,333.97703,8.694339831670126,176.36773,658.40311,549.8308563232422,5137.248,1717.400675455729,305.27255465213847,354.07293192545575,940.5626313485474,0.03376847004983574,1.5203264,1.4477779567241669,17.768055,90.98358980814616,192.30881,0.002091195086904918,0.96053501,0.0077552789346858235,1.7208698,0.43999998768170673,0.69729352,0.014000000121692816,0.18589003,8.280006090799967,6.6838429,0,0,5.739056990326693e-4,0.02696988,0.005000001498653243,0.018320285,0.004025665286462754,0.091767095,308.68303680419916,6.277152282827942,52.52170067846646,203.0212309920509,38.25721546450458,27.365368354710768,-0.19049684497906635,2.3499877055486045,5.1743108,67094.07179291768,0.14079531171550244,2.425140698750814,10.051338,1.8762499292691548,4.2741531,0.38000010202328366,1.7373255 +1991,6.190131151726644,1.6368601104218738,0,0,8.011536269395817,2.113149801890055,1.982897,105.85304832458496,85.14222600000002,64.34609444936116,12.924815,76.4864673614502,120.64491,15.752021392186483,6.9542228,5.799989104270935,10.775591,267.79015350341797,159.81288999999995,493.7842102050781,286.27307,8.804992516835531,177.30503000000004,474.47964,549.8710784912109,5089.9323,1729.3305562337237,318.7311920514537,355.35293833414715,1129.9838832525568,0.06648059604534258,6.9394223,2.221526563167572,22.06288,96.40249379475911,185.52075,0.03069222376992305,1.727734,0.07582558194796245,2.7251313,0.48999999711910885,0.70613627,0.017000000070159633,0.24819351,8.820006291071573,7.057256599999999,0,0,0.0016515196378653247,0.058141591,0.008000002048599223,-0.073018715,0.005709253367967904,0.10715402,309.23303731282545,6.34494559215869,54.26130892359681,244.42863411026067,39.69249193256378,34.394938327949504,-0.1909628409298788,2.5599875847498574,5.29866,66472.31501729792,-0.4148185776434353,2.665145973364512,9.6580528,2.020599921544393,4.1585749,0.40500009556611377,1.6735462 +1992,6.145912972932644,1.683057085276074,0,0,7.364888993342175,2.20022984345754,1.9500444,104.98307355244954,85.437279,65.2670955657959,11.907588,80.40375582377116,74.361852,15.899934848149618,5.3089984,6.199989080429077,10.120439,270.7759323120117,106.91739,505.86798095703125,227.43518,8.91499400138855,179.3441,361.04368,549.9049123128256,5056.1355,1740.1392618815103,299.4017954744593,356.22894795735675,913.3754185979066,0.1707762268682321,22.26499,3.3005158503850303,24.233416,101.49227841695149,194.06099999999998,0.09482813626527786,2.4767485,0.19600565483172736,4.0250116,0.5199999809265137,1.0018637,0.026000000691662233,0.18194194,9.340006430943808,7.910261500000002,0,0,0.005856849117359768,0.088755914,0.0050000026628064615,-0.030822369,0.007651571494837602,0.12273589,309.7250391642252,6.358476438557756,52.37759098866641,198.23847301394608,38.71717596139569,26.648976889112614,-0.19129755052506844,2.769987682501475,5.4230636,64223.92565128395,-1.6835767484157795,2.8172022501627603,10.784362,2.161349892616272,3.8127392,0.4305000975728035,1.4631107 +1993,6.193394814861415,1.5467274300386273,0,0,7.531122846620259,2.2837098240852356,1.9984803,104.32304191589355,84.458339,66.09139442443848,11.381334,82.41623814900716,50.567396,16.066639582316082,3.463778,6.607129295667012,8.677164900000001,271.1687749226888,84.3251,511.9880956013997,231.9618,9.027161439259848,179.76429,256.33383,549.941884358724,5078.4684,1743.1006876627603,299.4425140657421,356.92495981852215,941.8816353260038,0.7146161670486132,34.33223,4.47598530848821,22.551362,105.4173412322998,208.33854,0.19552044942975044,3.0949997,0.36491671949625015,11.967198,0.5699999282757441,1.5166355,0.0330000047882398,0.157163,9.94000768661499,8.353483800000001,0,0,0.01262219933172067,0.11880940000000001,0.0010666858239953096,0.042782191,0.009837979606042305,0.13825367,310.09905242919916,6.310752016783032,52.78275226171121,203.77578316226604,39.74372708975235,28.114996259780565,-0.19163226012025816,2.9899867177009583,5.424762,63195.55051984089,-0.8170844043492784,3.0058298110961914,11.612337,2.2925199468930564,3.3180441,0.4508330797155698,1.2514505 +1994,6.240067755470377,1.5037166846247065,0,0,7.8957327340876935,2.36793980995814,2.1430557,103.57006708780925,86.05046,66.87479654947917,11.006658,83.36027018229167,37.565451,16.09994300206502,4.6095776,6.955350279808044,8.163642999999999,269.62779235839844,85.893495,518.2140757242838,238.58315,9.131617546081543,178.03958,159.08791000000005,545.3847249348959,5003.2837,1748.620371500651,310.25183676250725,358.2539596557617,1060.282744333416,2.2383394837379456,45.287421,5.687364776929219,24.423112,110.94440905253093,237.88968,0.32772576560576755,3.5515517999999995,0.6123692641655604,24.558229,0.6399997919797897,2.3253155,0.03700000451256832,0.20390529,10.600008169809977,8.737967999999999,0,0,0.021451599275072415,0.14808425,0.002012556239302891,0.0083003343,0.012253877784435948,0.15358509,310.80802917480463,6.441827000222701,54.21042306521078,231.0503542937696,40.27137015559246,33.14335063351852,-0.1919669697154478,3.2099871834119162,5.549182599999999,61820.50123949212,-0.0813850082344821,3.2168917854626975,11.303115,2.4025299350420632,2.9604627,0.4654170672098796,1.1962062 +1995,6.3773864537253155,1.4860805049306975,0,0,7.813189501191085,2.4555798172950745,2.3880707,102.88904825846355,80.480245,67.62789662679036,10.682998,83.83788744608562,23.473127,16.137446244557697,5.7076242,7.249991933504741,7.674757700000002,268.1038513183594,86.264975,524.6570994059244,210.72453,9.13146940867106,180.13151000000005,95.783763,552.4202321370443,5016.3948,1755.2296244303384,305.40958889562864,360.2389551798503,955.0363061603086,3.747459292411804,51.095458,6.54466180006663,27.59918,116.0475304921468,230.3453,0.4816569561759631,3.8771223,1.649199257294337,36.211193,0.7599995483954748,3.4395305,0.04200000377992789,0.29614801,11.270008246103922,9.315257,0,0,0.031974499113857746,0.17780027,0.00400000410930564,0.0084622213,0.014884675852954388,0.16982122,311.2790552775065,6.504076135852905,53.416717880413046,206.47424846775004,40.45040793019892,29.71540753892105,-0.1923016793106375,3.429987053076426,5.6736625,60635.50706790533,0.08530772110638411,3.4390769600868225,11.011358,2.4911099076271057,2.8923304,0.475000041226546,1.0842597 +1996,6.511379278926775,1.470193984753465,0,0,7.686339550726493,2.5522598028182983,2.6638414,102.31104151407878,75.256035,68.36059633890788,10.505743,83.94530232747395,13.005309,16.249948978424072,4.6522227,7.557493487993876,5.5242189,266.7558415730794,85.278741,531.4079996744791,170.78176000000005,9.06367564201355,183.44400000000002,59.514335,537.3112080891927,5297.7083,1757.1905924479165,307.29120752307955,362.00496164957684,930.0218807197676,6.036929090817769,53.568363,7.866570234298706,26.00128,124.7284984588623,224.86947,0.6497871528069178,4.0579149,3.2318945129712424,48.538296,0.9399992177883784,4.501452099999999,0.04900001051525275,0.39044285,11.990008195241293,9.7707047,0,0,0.04382059909403324,0.20547879,0.002013620309298858,0.11353612,0.01771567389369011,0.23841137,312.29801940917963,6.542220103334365,53.42127728765462,200.87242078907184,40.45019229181408,28.71419152495162,-0.1926363889058272,3.6599862774213157,5.5527008,59650.01603284395,0.14569222560343534,3.602302074432373,10.510994,2.569999933242798,2.8654227000000003,0.48625003546476364,0.84755661 +1997,6.574573878777592,2.183313990263035,0,0,8.269788742717703,2.6610097885131836,2.8728436999999998,101.2420825958252,75.489912,69.06989606221516,10.417958,83.52113278706868,10.398164,16.362446784973145,3.7691062,7.813324570655823,3.4559389,265.2918523152669,86.34144599999998,534.9630432128906,160.63531,9.140432437260946,180.149,29.550907,542.7740173339844,5288.9251,1761.5010782877603,331.28891975653016,363.25195566813153,1204.992305406782,7.7147689660390215,55.76348100000001,8.959980805714926,29.370536,127.37702624003093,240.5221,0.8248193363348643,4.6266327,5.39930792649587,58.758537,1.2099987765153248,5.5717023,0.06000001293917497,0.427562,12.750008503595987,9.7952259,0,4.9588597e-5,0.05661919961373011,0.25820595,0.004000423466398691,0.1113431,0.02073227148503065,0.31501343,313.18303171793616,6.740456045264001,56.11803188775538,264.67515030448345,41.89315592193428,38.341382315947115,-0.19297109850101685,3.889986495176951,5.7834259,59868.27681505938,0.16690248873741567,3.780295729637146,9.824276800000002,2.650669972101847,2.8566852000000003,0.49000003685553867,0.76826308 +1998,6.590459870606787,1.5412452817195224,0,0,8.412226876444452,2.781449774901072,2.9899069,100.31604703267415,72.916263,69.77859687805176,10.335348,82.96492513020833,12.992477,16.399945735931396,3.9615346,7.95416518052419,2.9318362,263.8838653564453,86.348141,537.6670277913412,156.67666,9.254634141921997,176.1082,23.412636,570.7273610432943,5175.5355,1770.2906799316404,315.332621195414,365.9329554239909,1085.4305991966446,9.836338837941488,55.95678100000001,9.961479743321737,28.471196000000006,134.272824605306,234.46613,0.9994525363047918,6.9049469,8.110631505648294,70.04979200000001,1.5299981534481049,6.8917397,0.07300002624591191,0.54029666,13.540009021759033,10.02529,0,3.583493100000001e-4,0.06999999843537807,0.60512272,0.01000000579127421,0.06915097099999999,0.026339268311858177,0.38665542,313.90700531005854,6.446521520705138,56.589344323708055,232.31801820181306,42.33468433879227,37.81227830332195,-0.1933058080962065,4.1099876165390015,5.6031107,58604.367585517175,0.1710925825750941,3.8873608311017356,10.323837,2.724999964237213,2.701239,0.49000004182259244,0.76943857 +1999,6.661329053494626,1.3034304715400178,0,0,7.698162125432142,2.9081997672716775,2.9607505,99.330872853597,72.96355,70.47599538167317,10.216505,82.38263448079427,14.054175,16.44995387395223,3.9749853,8.04999581972758,3.1538842,262.5458628336589,82.703538,540.1430358886719,140.42543999999998,9.093777736028036,168.37661,18.420173,562.6231740315756,5112.4264,1778.199513753255,309.40837085260006,367.84497833251953,940.7006779859273,11.384798526763916,58.33870699999999,11.354286829630533,25.741051,138.68090184529623,252.31636,1.2204217116038005,8.6848445,11.121968984603882,91.978363,1.9399973253409069,7.9486502,0.08600003769000371,0.7424206999999999,14.300010919570923,10.07373,4.148790035666631e-6,0.0031081514,0.08999998929599921,1.0699013000000002,0.011000006149212519,0.13954925,0.03241546514133612,0.49435229,314.70898946126295,6.28115080714577,54.76937230485621,205.11187816433736,40.94720104039744,30.449171325383368,-0.1936405176913962,4.358643651008606,5.1676463,55523.54473764534,0.17324185027932018,3.9997291962305703,10.262658,2.8026700019836426,2.1509855,0.49000003188848495,0.7706312 +2000,6.893167303200749,1.2013380488633538,0,0,7.457347231717921,3.038709739844004,2.8153943,98.27196884155273,72.65140799999998,71.17349561055501,9.9231457,81.99841690063477,9.4043884,16.499963760375977,3.9867142,8.149996836980185,2.3476517999999995,261.1698455810547,76.330076,542.3829905192057,122.76605,8.829522927602133,165.25876,19.471227,552.0705413818359,5074.2696,1778.0101216634112,310.18680982649335,369.1249745686849,886.5647302341199,13.121398448944092,56.341686,12.102788925170898,25.730152,143.4614372253418,263.60627,1.603711913029353,10.640667,14.691894769668579,99.657424,2.429996371269226,8.598756300000002,0.10600005090236664,0.86319988,15.120010137557983,9.2978389,2.9456416086759418e-5,0.034006926,0.1699999620517095,1.411492,0.013000006632258495,0.2699959,0.040547359734773636,0.57423278,315.7589950561523,6.112229814393959,54.5095965154282,195.32415818527357,41.26362178323956,27.98197839802492,-0.19397522728658584,4.563808560371399,5.2735332,55661.00151337025,0.17458241694797966,4.127887845039368,9.480134800000002,2.8623799681663513,1.9694412,0.49000002940495807,0.77151922 +2001,6.95708692825445,0.961802096435875,0,0,7.591758768528899,3.162919799486796,3.0480682,97.35795720418294,70.65696899999998,71.8547960917155,10.593275,81.4894282023112,5.9590470999999985,16.54997984568278,3.2771364000000003,8.262498617172241,1.1600545,259.5498352050781,68.271466,543.1950124104818,111.64066,8.354893207550049,165.59900000000002,19.806901,542.7083333333334,5094.2258,1776.5307312011716,312.89637869980686,370.67298889160156,881.6703955806449,14.544998407363892,56.36878100000001,13.052591880162558,24.490463,149.25739415486655,261.60586,1.978332092364629,11.075295,19.702295621236164,96.243251,2.9699952602386475,9.8521252,0.132000050197045,0.94275566,15.880009412765503,8.984000300000002,2.597141228761757e-4,0.80619906,0.2699999349812667,1.6540308999999995,0.019000007305294275,0.6107305000000001,0.050659650626281895,0.63867332,316.4930165608723,6.188009183487292,54.709896387749005,196.1877828105409,41.3771755400566,27.8779984365221,-0.19430993688177556,4.776847044626872,5.3282102,56049.16642558323,0.17084303620462507,4.220908443133037,8.8337936,2.8942899902661643,2.3248261,0.49000003188848495,0.74608572 +2002,7.097947294929641,1.0706525114551886,0,0,8.046474186766174,3.2808697621027627,3.4534372,96.3429667154948,70.45667399999998,72.51259549458821,11.982167,80.81803385416667,3.1513602,16.5999755859375,2.420559,8.29999844233195,0.95011524,257.66879018147785,63.484809,543.6559855143229,101.90454,8.333909193674723,161.14055,12.302716,535.3501332600912,5096.5932,1778.960947672526,322.2788312475723,372.83499399820965,970.7244171943499,15.739598194758097,50.843174,13.693090518315634,25.156097,154.4252700805664,270.32175,2.527012268702189,12.214474,23.51545794804891,102.73275,3.5299941102663674,11.617585,0.15900006766120592,1.2107813,16.560010592142742,9.7208997,0.002832789449409271,2.9170651000000003,0.3899999012549718,2.8037817000000005,0.030000012057522934,1.313749,0.06128753939022621,0.73327062,317.1010182698567,6.359556247633107,57.07665954461615,218.4604141242816,41.898783266207694,33.80824328599571,-0.19464464647696525,4.990507483482361,5.4976481,55687.522360887495,0.17652225756277531,4.2806588013966875,8.3685909,2.9381799499193826,2.2797577,0.49000003188848495,0.67660085 +2003,7.424688347669062,0.9010419027374732,0,0,8.2416975979600835,3.4251197973887124,3.16329,95.34536170959473,69.839024,73.28449440002441,12.579882,80.10183588663737,5.7693016,16.59995237986247,1.7336337,8.320768594741821,0.74505988,255.41280873616537,62.27795500000001,543.3510030110677,97.844828,8.222527821858725,158.92828,10.122917,538.8634541829427,5113.7538,1783.5898132324216,328.12422419548386,375.41099802652997,944.7470786126371,16.890098412831623,44.441172,14.409090280532837,25.070909,158.99640528361002,287.30923,2.9139525095621743,15.640539000000002,27.517083009084065,117.40605,4.223822851975759,13.114832,0.1890000912050406,1.560512,17.260011196136475,11.005369,0.06715815638502438,5.226518,0.5027138615647951,4.785689700000002,0.060000043672819935,2.2356391,0.07306782963375251,0.85366012,317.73000590006507,6.4283053046514125,57.69037487838639,214.40339143057142,42.682165561174564,34.362181347359645,-0.19497935607215489,5.207866946856181,5.541719400000002,57641.72369815564,0.165150043379564,4.319008390108745,8.0831154,2.99712997674942,2.0262772,0.48882503310839337,0.60195554 +2004,7.812644316268693,1.0382131676166668,0,0,8.542465507294889,3.577999790509542,2.2029533,94.38845952351888,66.998563,74.13009516398112,12.194883,79.26674334208171,9.216749,16.590060075124104,1.4729968999999998,8.341978788375854,0.75667708,253.1937993367513,60.966802,542.8480021158854,87.654103,8.019330620765686,156.21655,9.7469995,537.7152353922526,5141.4447,1784.230285644531,338.9417722149104,376.9870020548503,945.5469500687323,17.334598859151203,49.135801,15.063492933909098,28.554887,164.7063954671224,307.5767600000001,3.5451226830482483,15.758879,31.54472287495931,125.65071,5.00792149702708,13.097501,0.23300011828541756,2.0510461,18.06001361211141,12.712613,0.23797391975919405,6.6512131,0.8247378170490265,5.4873038,0.12000008982916673,3.1186526000000003,0.08672221936285496,0.97410928,318.3570175170898,6.590470046881482,58.11358476694662,216.68728340618873,44.556855897235216,32.33033041098627,-0.19531406566734455,5.435196399688721,5.6480085,60340.85188935469,0.1719032893302405,4.3401593764623,7.526764599999999,3.035939951737722,2.1192661,0.4857220376531283,0.55294607 +2005,8.093491315549059,1.025657164253795,0,0,8.840128385718105,3.697199821472168,1.9480504,93.41565831502278,63.195607,74.98279317220052,11.060838,78.73161888122559,4.6297025000000005,16.54227288564046,1.8139658,8.346869071324667,0.58070615,250.9148038228353,60.33117900000001,542.1459757486979,71.956593,7.931297580401103,154.12291000000005,7.5405195,538.5567677815756,5209.9819,1783.360432942708,346.39555462360056,378.9070078531901,950.5924444363927,17.678198496500652,53.955471,15.682193517684937,33.447493,170.47949091593424,329.52471,4.231992959976196,16.143675000000002,36.60471884409586,126.49199,5.8813802401224775,12.434284,0.28500013550122577,2.365528,18.97001536687215,14.626529,0.46645688513914746,7.0791974,1.2757697900136311,6.3606922,0.21000011265277863,3.4180583,0.10239290756483872,1.0845927,319.1300023396809,6.6935794842136405,58.883410476258234,218.7880647839753,45.62238086061233,32.723990706702715,-0.19564877526253424,5.6560072501500445,6.2799143,62587.82671838024,0.14980785321635395,4.354827245076497,6.9433284,3.073349952697754,1.8947828,0.481325035293897,0.46971744 +2006,8.358134409609946,1.092642827822681,0,0,8.925648149522456,3.767239769299825,2.045423,92.3141638437907,60.048081,75.77629216512044,10.21735,78.12813186645508,0.6450640999999999,16.514484405517578,1.7510311,8.368909200032553,0.58710647,248.66479873657227,63.03720300000001,540.64996337890625,65.575271,7.679868618647258,152.41471,9.3190485,536.2959035237631,5272.2746,1783.421223958333,356.46968956461853,381.01000722249347,986.1510088892475,18.454998811086018,51.911598,16.647892634073894,36.489809,177.60554122924805,346.30497,4.8289631605148315,19.891066,40.86165841420492,133.41048,6.627838969230652,14.118518,0.3600001533826192,2.3531588,20.050018151601154,12.639849,0.7066208471854528,6.875404400000001,1.6065597534179688,8.3862482,0.32000014930963516,2.5592336,0.1196288987994194,1.1852524,319.9329986572265,6.875606952566932,60.37974252884005,229.89543951646962,46.63913373990392,34.3551466019379,-0.19598348485772396,5.891855637232463,6.9409178,63046.345147395674,0.12455411284421772,4.33484947681427,6.3118449,3.1184199452400208,1.5902358,0.47626903901497525,0.43579597 +2007,8.681148087085731,0.9662119668592635,0,0,9.284494092478702,3.864439765612284,1.7666157999999998,91.12946637471516,57.25715400000001,76.47559356689453,9.3272415,77.3146406809489,4.5089203,16.49068291982015,1.5545493,8.360188722610474,0.78280059,246.4138298034668,64.737513,538.4259847005209,61.623755,7.651655554771423,147.28895,9.6981304,544.8235321044922,5250.6823,1788.9513142903643,355.0225755363805,382.60301971435547,945.8695944358407,19.124198754628498,49.953532,17.730092525482178,37.109679,185.02057011922201,357.26506,5.509383638699849,26.595246000000003,45.3168420791626,127.25708,7.37440820535024,16.399738,0.4300001785159111,2.4154053,21.274523735046387,9.3262891,0.9124758193890253,6.6980995,2.1004197100798288,8.4029745,0.41000018020470935,2.7884,0.13823089003562927,1.2649376,320.64601389567054,6.596141361261144,60.965826091796124,219.70587066030026,48.13085999118788,33.27729799228883,-0.1963181944529136,6.164003173510234,6.9754073000000005,62641.35919619402,0.1214193886258194,4.309016704559326,5.7707437000000015,3.1368099649747214,1.7021554,0.46845003962516785,0.59162888 +2008,8.733139806444965,0.6683379874909382,0,0,9.091850913798911,3.9428598284721375,1.746034,89.87336858113606,56.837697,77.15499623616536,9.0353429,76.47364234924316,8.339533900000001,16.458677450815838,1.9164483,8.382678429285685,0.45696793,244.47682189941406,63.06087700000001,536.3339691162109,57.108479,7.470538298288981,144.47281,6.337644999999998,546.2872212727865,5191.6855,1798.4196472167966,360.4917104977002,384.739018758138,912.5104843071592,19.5464989344279,54.881457,18.928292592366535,33.091627,193.09755071004233,362.72449,6.4292839368184405,30.815622,49.719340324401855,138.28669,8.326615969340006,17.544095000000002,0.5000001961986223,2.6196596000000003,22.006818771362305,8.8123411,1.0804997682571411,7.076053,2.7087196509043374,10.669375,0.4322652171055476,2.7884,0.15781688069303831,1.3164863000000002,321.57499186197913,6.638276368451454,61.316441745117054,214.69549502704018,48.035076099905325,31.619011505170853,-0.1966529040481033,6.453542669614156,6.8835341,61275.77057569818,0.13327703444478306,4.247629324595134,5.5737514,3.1567599376042685,1.6171325,0.4623090426127116,0.63840472 +2009,8.584990106780188,0.7548632834009588,0,0,9.109514001671727,4.015999873479207,1.7995506999999995,88.57357406616211,55.35525300000001,77.73389498392741,9.6854874,75.92381922403972,5.7877004,16.42168601353963,1.6755174,8.389018853505453,0.38354940000000004,242.4608243306478,60.065148,533.7759806315104,54.788238,7.171112656593323,144.24254,3.7694324,539.8231658935547,5145.2658,1802.1011861165362,364.2003633816462,386.28002166748047,917.7292309352042,19.870198726654053,61.50634300000001,19.930792331695557,32.081369,200.3144874572754,366.5558,7.706023693084717,33.926872,52.765931129455566,160.10848,9.35536535580953,21.142804,0.5700002362330755,2.9666725,22.658213933308918,9.933600300000002,1.2225398023923237,7.852249400000002,3.002319614092509,16.223306,0.4763352448741595,2.9974,0.17747688045104346,1.4335011999999998,322.27500661214185,6.712782947167917,61.37795929686438,218.75811433708597,46.48309573333753,31.77247636618844,-0.19698761364329287,6.728324254353841,7.159861,58721.16171394653,0.1066842123978326,4.189547856648763,5.2570896,3.1835699876149497,1.7272846000000002,0.4620170295238495,0.47723148 +2010,8.97554368419623,0.8851100551119334,0,0,9.665129375647625,4.092629869778951,1.7742175999999998,87.3809585571289,56.090865,78.37379455566406,10.48947,75.33903121948242,4.4070317,16.415090084075928,1.4644148,8.386359055836996,0.65896445,240.45181020100912,58.86009,531.2819671630859,52.271203,7.125164190928142,142.6745,2.4614781000000003,535.3102569580078,5179.9719,1807.850667317708,370.8962527865861,388.71703084309894,953.2286302920015,20.67949867248535,65.20953100000001,20.536893049875896,29.851794,207.74554824829102,361.74691,8.963194449742636,35.069515,57.8515370686849,165.044,10.426983912785849,20.460881,0.650000254313151,3.1827017000000004,23.296514352162678,11.247607,1.3827498058478038,8.7778712,3.920989453792572,15.914528,0.5346282621224722,3.3098,0.19690187896291414,1.3375544,323.140993754069,6.708375367844256,62.4444721228101,224.60211210242653,47.318297037341715,34.61053251023121,-0.19732232323848264,7.010202924410502,7.2759031,58249.4552717192,0.1379875550624469,4.121598919232686,4.897554799999999,3.1960699955622354,1.8511656000000003,0.4581970274448395,0.39655186 +2011,9.255966259655072,0.9136545403955806,0,0,9.478876565579496,4.170369823773702,1.8467555,86.05878257751465,57.565927,79.04059473673503,11.056837,74.6382344563802,4.6237938,16.361384391784668,2.0468287,8.387009064356485,0.85601742,238.2458127339681,62.415615,528.532969156901,52.120722,7.106488426526387,140.42156,3.0036158,534.1656138102213,5252.9333,1813.0701904296873,372.6576831783338,390.9440205891927,906.7673675143252,21.561198711395264,67.69059200000001,21.354194005330402,28.645628,214.5593744913737,366.94427,10.464804887771606,43.330418,62.84794902801514,190.47655,11.92148502667745,22.158614,0.7400002578894297,3.410604,24.134215990702312,12.498165,1.555159757534663,9.4654578,5.171979467074077,20.415233,0.5557872851689657,3.5841,0.21967886885007223,1.1291345,324.15898386637366,6.648935415452754,62.39874927347722,218.62875398112044,48.492221562223264,32.518259270416976,-0.19765703283367228,7.307322184244792,7.4656928,58834.52201769484,0.1090569133516887,4.04886809984843,4.3361773,3.2309599916140237,2.096153,0.450772022207578,0.39105944 +2012,9.386649744945927,0.9706890780006704,0,0,9.705285171316014,4.244799852371216,1.794986,85.01424598693848,59.464919,79.78919410705566,9.6609456,73.97862943013509,5.4529267,16.34028704961141,2.0520518,8.405529419581095,0.7168607,236.20683797200522,70.235225,525.833974202474,53.35878,6.98785674571991,136.71475,3.0096674,537.6538136800131,5232.3317,1815.2612304687498,380.80976664436446,393.0159912109375,949.6022183538887,22.543598651885986,63.311547,21.61989386876424,25.468261,220.10840479532877,356.29002,11.74120569229126,45.81505,67.7508716583252,205.00564,12.84508458773295,21.423000000000002,0.8300002614657084,3.2771162000000005,24.988317330678303,12.591587,1.750789761543274,9.054248,5.6421693166097,24.0671,0.6353292663892111,3.9269,0.23203588897983232,0.98551995,325.0049921671549,6.7427966320324675,63.84845417053954,229.10693623998705,48.176745092515574,35.82690195539086,-0.197991742428862,7.598473310470581,7.7062836,57925.01408286904,0.13867518125293046,3.9642380078633628,3.8379813,3.252539952596029,1.7328717,0.44370101888974506,0.41594871 +2013,9.65939649634906,0.9186575700100624,0,0,9.560553735096205,4.328779697418213,1.6324652,83.89107831319173,62.512861,80.53269322713216,8.3027436,73.30493418375652,6.5167934,16.327280203501385,1.9408617,8.421289602915445,0.61330322,234.38086700439453,75.740842,523.1149698893229,54.819887,6.848844488461812,133.39273,1.8384424,539.620361328125,5231.2321,1822.580841064453,381.59439281758614,395.72497812906903,901.2387566412425,23.414698759714764,59.817791,22.207694212595623,19.467118,226.13036346435547,342.89828,13.946606318155924,38.8888,74.7700621287028,202.01825,14.522682428359985,23.8069,0.9300002753734589,2.9986006,26.02762222290039,11.604213,1.9295397400856018,9.7859,7.50248924891154,21.452891,0.6930242776870728,4.2254,0.2427388938764731,0.87225171,325.91899108886713,6.847910646098343,63.650976650406456,219.3811792508812,47.50620674450057,33.245565827085585,-0.19832645202405166,7.910870313644409,7.686158,57413.51786587013,0.15767154312883705,3.8617884318033853,3.5745493,3.305999994277954,0.96258078,0.43652602036794025,0.44442215 +2014,9.719224641485487,1.0957648183627096,0,0,9.744379658087517,4.398729681968689,1.6517,83.06993166605632,53.5475,81.09249051411946,9.8735,72.71072514851888,2.8024,16.306567827860516,1.6696,8.429009358088175,1.114899,233.07986958821616,54.9365,520.5809682210287,28.9612,6.6860902309417725,133.6791,1.2625,539.5420227050781,5358.4982,1831.470998128255,387.873539205888,397.5469792683919,964.047618150183,23.809098561604817,59.82,22.075694402058918,22.47,229.5420659383138,358.8813,15.355007727940878,57.1243,80.51572863260905,200.0249,15.25278091430664,25.2487,1.0056702643632889,3.5393,26.890435059865315,12.991,2.047369738419851,10.1025,8.336968978246054,30.4858,0.7650303095579147,4.4701,0.24726289386550585,1.1516,326.98799133300776,6.916164550612366,65.0368536583283,233.52551800560903,47.385237858595374,36.145821385036584,-0.19866116161924133,8.221433083216349,7.8784,57093.261416151574,0.13977836334337682,3.7536577781041465,3.4810000000000003,3.2976099848747253,1.2299,0.431062030295531,0.3854 +2015,9.724603236619341,0.9598830811179276,0,0,9.727423576882975,4.480120619138082,1.57,82.11867268880208,47.5476,81.83418210347493,10.8699,72.07452964782715,0.8742,16.297699451446533,1.6696,8.460016568501791,1.6714,231.45184453328451,43.5734,518.0192209879557,14.6096,6.667385617891948,133.82299999999998,0,549.8469696044922,5404.8069,1841.942667643229,388.0727956633218,399.94909922281903,934.3498846847745,24.225354830423992,59.82,22.050124168395996,22.47,233.69485219319662,358.8813,17.75351683298747,78.7906,84.76600329081218,201.9534,16.742482980092365,32.381,1.091137985388438,3.6633,27.94631751378377,14.4857,2.223768174648285,11.7285,9.834319035212198,38.5792,0.8707990000645319,4.6492000000000004,0.25285430749257404,1.1516,328.17959340413404,6.937624392238832,65.27970313424439,227.24481931953326,47.34877178380204,34.746024228000806,-0.19899587121443105,8.56845219930013,8.02,50464.18814475436,0.12580052700903913,3.6527326901753745,3.2933,3.284417708714803,1.3378,0.4261276473601659,0.3481 +2016,9.820270764960046,0.9457996982596846,0,0,9.546242688363092,4.563908735911052,1.5674000000000001,80.868988037109375,45.017160000000004,82.68911806742351,10.851960199999999,71.41004117329915,0.78156,16.274217287699383,1.515231454,8.488823334376017,1.61422146,229.5926055908203,41.88082,514.5848439534506,12.88774,6.884202678998311,133.77542,0,563.0193583170573,5402.94348,1851.5940958658853,388.07635106311034,403.11696370442706,923.9837001214911,24.526807467142742,60.8428786,22.259799162546795,21.990155599999998,237.7288449605306,351.625206,21.18809429804484,98.363272,90.27675882975261,214.99666,19.401511669158936,38.77266,1.2003816664218903,4.06551696,28.906192779541016,12.127379999999999,2.4407403270403543,13.705391200000001,12.709800879160563,32.29838,0.9575220743815104,4.949467820000001,0.2655299554268519,1.1829135,329.07597605387366,6.99145180665672,65.63437281905732,225.56688239723752,46.89505483247382,34.479772000152195,-0.19933058080962068,8.884455760320028,8.04314,48391.954308426524,0.11182269067470146,3.5471805731455484,3.07158,3.2989591161410012,1.29166,0.4188620348771413,0.33428 +2017,9.91593829330075,0.9317163154014415,0,0,9.36506179984321,4.605279207229614,1.5648,79.52129236857097,42.486720000000005,83.13781229654948,10.8340204,70.57014656066895,0.68892,16.217710494995117,1.360862908,8.531164328257242,1.55704292,226.30972035725912,40.18824,508.81994374593097,11.16588,6.587661902109782,133.72784,0,558.0248311360677,5401.08006,1873.7992146809893,388.0799064628988,405.76196034749347,913.6175155582077,24.887507279713947,61.8657572,22.131099383036297,21.5103112,241.00387318929037,344.369112,23.5944922765096,117.935944,96.35783767700195,228.03992,20.791117350260418,45.16432,1.2826015551884968,4.467733920000001,29.846494674682617,9.76906,2.6386402448018393,15.6822824,13.17430051167806,26.01756,1.031660074989001,5.24973564,0.2754349733392398,1.214227,329.7849756876627,7.0452792210746065,65.98904250387027,223.88894547494178,46.44133788114559,34.213519772303584,-0.1996652904048104,9.181387027104696,8.066279999999999,46319.72047209869,0.09784485434036376,3.4357604583104453,2.8498599999999996,3.3043991724650064,1.24552,0.4108480264743169,0.32046 +2018,10.011605821641455,0.9176329325431986,0,0,9.183880911323325,4.672349214553833,1.5622,78.11839294433594,39.95628000000001,83.86931228637695,10.8160806,69.81614112854004,0.59628,16.178108374277752,1.206494362,8.575854221979776,1.49986438,223.6417121887207,38.49566,504.2629114786784,9.44402,6.592206875483195,133.68026,0,559.9354756673177,5399.21664,1887.0409952799478,388.08346186268733,408.63196563720703,903.2513309949244,25.254507223765057,62.8886358,22.135399341583252,21.0304668,243.55890274047852,337.113018,28.091691335042317,137.50861600000002,101.92962964375813,241.08317999999997,23.315719922383625,51.55597999999999,1.393411636352539,4.86995088,30.639695803324383,7.4107400000000005,2.925900320212046,17.6591736,13.909000317255655,19.73674,1.1091500719388325,5.55000346,0.28568598131338757,1.2455405,330.5409723917643,7.099106635492494,66.3437121886832,222.21100855264604,45.98762092981736,33.947267544454974,-0.2,9.506616592407227,8.08942,44247.48663577085,0.08386701800602607,3.3270504673322043,2.62814,3.3077792127927146,1.1993800000000001,0.4034990246097247,0.30663999999999997 +2019,10.107273349982158,0.9035495496849555,0,0,9.002700022803442,4.739289244016011,1.5595999999999999,76.66869608561198,37.42584,84.59961191813152,10.7981408,69.06634203592937,0.50364,16.132907549540203,1.052125816,8.618204037348429,1.44268584,220.94770940144858,36.80308,499.6569112141927,7.722159999999999,6.597232540448506,133.63268,0,560.9950205485026,5397.35322,1899.4105834960935,388.0870172624758,411.50596618652344,892.885146431641,25.639607588450115,63.9115144,22.11329936981201,20.5506224,245.43492380777994,329.856924,33.39778995513916,157.08128800000003,107.85619862874348,254.12643999999997,26.238722642262776,57.94763999999999,1.515051782131195,5.27216784,31.229597568511963,5.05242,3.261090338230133,19.6360648,13.865400234858194,13.455919999999999,1.1896301011244457,5.850271279999999,0.29605497668186825,1.276854,331.3019765218098,7.152934049910381,66.69838187349615,220.5330716303503,45.533903978489136,33.68101531660636,-0.2009558832636377,9.832676728566488,8.11256,42175.25279944302,0.06988918167168841,3.216910481452942,2.40642,3.3092092474301658,1.15324,0.396085021396478,0.29281999999999997 +2020,10.202940878322863,0.8894661668267124,0,0,8.821519134283559,4.806119322776794,1.557,75.17989730834961,34.8954,85.32871309916179,10.780201,68.32144101460774,0.41100000000000003,16.083006540934246,0.89775727,8.658293883005777,1.3855073,218.23070780436197,35.1105,495.0159149169922,6.0003,6.602039774258931,133.5851,0,561.7300872802734,5395.4898,1910.9706319173174,388.0905726622643,414.3899637858073,882.5189618683577,26.03780746459961,64.934393,22.069499333699543,20.070778,246.79493459065756,322.60083,39.48688920338949,176.65396,114.1126880645752,267.1697,29.552324771881104,64.3393,1.6472219030062358,5.6743848,31.617198308308918,2.6941,3.638450344403585,21.612956,13.179299910863241,7.1751,1.2727800905704498,6.1505391,0.30653397490580875,1.3081675,332.06797536214185,7.2067614643282685,67.05305155830908,218.85513470805455,45.08018702716091,33.41476308875775,-0.20189686161647785,10.159606695175171,8.1357,40103.01896311519,0.05591134533735071,3.106050491333008,2.1847,3.308759252230326,1.1071,0.388622023165226,0.27899999999999997 +2021,10.290445159821855,0.8791504270184545,0,0,8.74161120309567,4.87282919883728,1.55626,73.65929985046387,33.28538,86.05651219685872,10.775021,67.58154042561848,0.37899000000000005,16.02880605061849,0.833926213,8.696223815282186,1.342148655,215.49570337931314,33.879090000000005,490.35291798909503,5.50149,6.606398582458496,133.57155,0,562.3235321044922,5394.95176,1921.7905985514321,389.22613990281627,417.2869567871094,879.256414352004,26.444907506306965,63.8401921,22.008199373881023,19.2265454,247.7639923095703,304.67177,46.33388805389404,181.70838500000002,120.67602221171062,261.75264999999996,33.24912563959757,66.04767,1.7896519005298615,5.64972451,31.803298791249592,2.48112,4.052930335203807,22.1511087,11.96180017789205,6.60788,1.358320067326228,6.0258305,0.31711698075135547,1.254602996,332.8389739990234,7.263147064244855,67.59376003659966,218.43020469569782,44.897071766929614,33.247384590578,-0.20282692593307336,10.487306435902914,7.66123,40045.547748775934,0.041933509003013035,2.9951104521751404,2.06237,3.306549290815989,1.07222,0.3811250180006027,0.26903 +2022,10.377949441320846,0.8688346872101965,0,0,8.661703271907784,4.939459244410197,1.55552,72.11330032348633,31.67536,86.78351147969563,10.769841,66.84703954060872,0.34698,15.970905065536499,0.770095156,8.73206353187561,1.29879001,212.7447026570638,32.64768,485.6789093017578,5.00268,6.610019326210022,133.55800000000002,0,562.7938944498698,5394.4137200000005,1932.060607910156,390.3617071433682,420.19796498616535,875.9938668356504,26.822307586669922,62.7459912,21.914899349212646,18.3823128,247.69807052612305,286.74271,53.559987703959145,186.76281,127.00134150187175,256.3356,37.15692647298177,67.75604,1.9346518913904827,5.6250642200000005,31.879798730214436,2.26814,4.46992031733195,22.6892614,10.601900100708008,6.040659999999999,1.4378700753053029,5.9011219,0.32681697607040405,1.201038492,333.615976969401,7.319532664161442,68.13446851489024,218.00527468334113,44.71395650669832,33.08000609239824,-0.2037460762134244,10.805805842081705,7.18676,39988.076534436674,0.02795567266867536,2.8846304615338645,1.9400399999999998,3.302659293015798,1.03734,0.3736110255122185,0.25905999999999996 +2023,10.465453722819838,0.8585189474019386,0,0,8.581795340719896,5.0060493151346845,1.55478,70.54800160725911,30.065340000000003,87.51021194458008,10.764661,66.1182409922282,0.31497000000000003,15.909904400507608,0.7062640990000001,8.76590347290039,1.255431365,209.9807039896647,31.41627,481.00290934244794,4.50387,6.612889210383098,133.54445,0,563.1521148681641,5393.87568,1941.9405822753904,391.4972743839202,423.1249593098958,872.7313193192967,27.137307167053223,61.6517903,21.77769947052002,17.5380802,246.14810180664062,268.81365,60.7984873453776,191.817235,132.58327356974283,250.91854999999998,41.10732650756836,69.46441,2.074781914552053,5.600403930000001,31.93799877166748,2.05516,4.859000364939372,23.2274141,9.421110153198242,5.47344,1.5039700667063396,5.7764133,0.3347119813164075,1.147473988,334.39797210693354,7.375918264078028,68.67517699318084,217.5803446709844,44.53084124646703,32.91262759421849,-0.2046543124575308,11.10480546951294,6.71229,39930.60532009742,0.013977836334337678,2.7750904162724814,1.81771,3.297179321448008,1.00246,0.3660910228888194,0.24908999999999998 +2024,10.552958004318828,0.8482032075936806,0,0,8.501887409532008,5.0725992520650225,1.55404,68.96890322367351,28.45532,88.2365125020345,10.759481,65.39523951212566,0.28296,15.846003929773966,0.642433042,8.79779346783956,1.21207272,207.20770136515299,30.18486,476.3329086303711,4.00506,6.615399400393168,133.5309,0,563.4582163492838,5393.337640000001,1951.4605611165362,392.6328416244722,426.06895955403644,869.468771802943,27.397807121276855,60.5575894,21.604999383290608,16.693847599999998,243.5561294555664,250.88459,68.04938697814941,196.87166000000002,137.47437286376953,245.5015,45.09962749481201,71.17278,2.2101818720499673,5.575743640000001,31.97799889246623,1.84218,5.22363034884135,23.7655668,8.387740015983582,4.906219999999999,1.5581400692462921,5.6517047,0.340909980237484,1.0939094839999999,335.1859741210937,7.4323038639946155,69.21588547147142,217.1554146586277,44.34772598623573,32.745249096038734,-0.2055516346653927,11.384405295054117,6.23782,39873.13410575816,0,2.6668904423713684,1.6953799999999999,3.2901893655459085,0.96758,0.35857802132765454,0.23911999999999997 +2025,10.64046228581782,0.8378874677854227,0,0,8.42197947834412,5.139109293619792,1.5533000000000001,67.38090387980144,26.8453,88.96251169840495,10.754301,64.67823918660481,0.25095,15.77980351448059,0.578601985,8.827833334604898,1.168714075,204.42870076497397,28.95345,471.67291768391925,3.50625,6.617649396260579,133.51735000000002,0,563.7322998046875,5392.7996,1960.6505330403643,393.7684088650241,429.0299580891927,866.2062242865893,27.610507329305012,59.4633885,21.403999487559002,15.849615,240.25714111328125,232.95553,75.31258773803711,201.926085,141.72451527913412,240.08445,49.13302834828695,72.88114999999999,2.3409918745358786,5.551083350000001,31.99989938735962,1.6292,5.566850423812866,24.3037195,7.475740075111389,4.3389999999999995,1.6017000675201416,5.5269961,0.34551798552274704,1.04034498,335.9799779256184,7.488689463911202,69.756593949762,216.73048464627098,44.16461072600443,32.57787059785898,-0.20643804283701006,11.644604603449503,5.76335,39815.662891418906,0,2.560370405515035,1.5730499999999998,3.2817593614260354,0.9327,0.35108302036921185,0.22914999999999996 +2026,10.727966567316813,0.8275717279771648,0,0,8.342071547156234,5.205589294433594,1.55256,65.78850491841634,25.235280000000003,89.68801180521648,10.749121,63.96743965148926,0.21894,15.711503187815348,0.5147709280000001,8.856073220570883,1.12535543,201.64570109049478,27.72204,467.0299123128255,3.0074400000000003,6.619699438412984,133.5038,0,563.98236083984375,5392.26156,1969.5405171712237,394.9039761055761,432.0109608968099,862.9436767702357,27.78150701522827,58.369187600000004,21.180699666341145,15.0053824,236.50619252522787,215.02647000000002,82.58788744608562,206.98050999999998,145.37872568766275,234.6674,53.20682875315348,74.58952,2.4673218528429666,5.52642306,32.00379912058512,1.41622,5.89128041267395,24.8418722,6.6636901299158735,3.7717799999999997,1.6358300844828289,5.402287499999999,0.34863198548555374,0.9867804760000001,336.7789738972981,7.545075063827788,70.29730242805259,216.30555463391426,43.981495465773136,32.41049209967923,-0.20731353697238286,11.885404268900553,5.288880000000001,39758.19167707965,0,2.455820401509603,1.45072,3.271989425023397,0.89782,0.3436160186926524,0.21917999999999999 +2027,10.815470848815803,0.8172559881689069,0,0,8.262163615968346,5.272019267082214,1.55182,64.19580554962158,23.625260000000004,90.41321182250977,10.743941,63.26283836364746,0.18693,15.641302665074667,0.45093987100000005,8.882592916488647,1.081996785,198.8607037862142,26.49063,462.4079132080078,2.50863,6.621559580167134,133.49025,0,564.2114308675131,5391.7235200000005,1978.1505126953123,396.039543346128,435.01196034749347,859.6811292538821,27.880606810251873,57.2749867,20.919599533081055,14.1611498,231.79726282755533,197.09741000000002,89.87508583068848,212.034935,148.47898737589517,229.25035,57.32012971242269,76.29789,2.5893218517303467,5.50176277,31.989699363708496,1.20324,6.199260354042053,25.3800249,5.933970014254252,3.20456,1.6615700721740723,5.277578899999999,0.3503429815173149,0.933215972,337.5829772949218,7.601460663744375,70.83801090634317,215.88062462155756,43.79838020554184,32.24311360149947,-0.20817811707151107,12.106803814570108,4.8144100000000005,39700.72046274039,0,2.3534804383913674,1.3283900000000002,3.2609294255574546,0.86294,0.3361860116322835,0.20921 +2028,10.902975130314795,0.8069402483606489,0,0,8.182255684780458,5.338419238726298,1.55108,62.60650602976481,22.01524,91.13811302185059,10.738761,62.56453800201416,0.15492,15.569702386856079,0.38710881399999997,8.907452980677286,1.03863814,196.07770538330078,25.25922,457.8089141845703,2.00982,6.623249491055806,133.4767,0,564.4204661051432,5391.18548,1986.490488688151,397.17511058668003,438.03295644124347,856.4185817375284,27.882206598917644,56.1807858,20.608099301656086,13.316917199999999,225.7802848815918,179.16835000000003,97.17418670654297,217.08936,151.06330235799155,223.8333,61.47243022918701,78.00626,2.7071118354797363,5.47710248,31.957699457804363,0.9902599999999997,6.492790420850118,25.9181776,5.272040049235026,2.637339999999999,1.679840048154195,5.152870299999999,0.35073698808749515,0.879651468,338.39297231038404,7.657846263660962,71.37871938463377,215.45569460920083,43.61526494531055,32.07573510331972,-0.2090317831343948,12.308803717295328,4.33994,39643.24924840114,0,2.253540337085724,1.20606,3.2486594518025718,0.82806,0.32880201439062756,0.19923999999999997 +2029,10.990479411813785,0.796624508552391,0,0,8.102347753592571,5.404779275258382,1.55034,61.024006843566895,20.40522,91.86261240641277,10.733581,61.87253761291504,0.12290999999999996,15.496702194213867,0.32327775700000005,8.930712779362997,0.995279495,193.2977040608724,24.02781,453.2379150390625,1.5110099999999997,6.624789595603943,133.46315,0,564.6145222981771,5390.647440000001,1994.6004943847654,398.310677827232,441.0769577026367,853.1560342211747,27.80130624771118,55.0865849,20.25649944941203,12.4726846,218.92230478922525,161.23929000000004,104.48498471577962,222.14378499999998,153.1686668395996,218.41625,65.66283130645752,79.71463,2.8208018143971763,5.45244219,31.907899697621662,0.7772799999999997,6.77366046110789,26.456330299999998,4.6659700473149615,2.0701199999999993,1.6914800504843395,5.028161699999999,0.3498939846952756,0.8260869639999999,339.2079722086588,7.714231863577549,71.91942786292435,215.03076459684414,43.43214968507925,31.908356605139968,-0.2098745351610339,12.491403023401896,3.86547,39585.77803406188,0,2.1561803420384726,1.08373,3.235239485899607,0.79318,0.32147301981846493,0.18927 +2030,11.077983693312778,0.786308768744133,0,0,8.022439822404683,5.471099257469177,1.5496,59.451206843058266,18.7952,92.58671188354492,10.728401,61.187037785847984,0.0909,15.422601779301962,0.25944670000000003,8.952422698338827,0.95192085,190.522705078125,22.7964,448.6949183146159,1.0122,6.62619952360789,133.4496,0,564.7915395100912,5390.1094,2002.480478922526,399.44624506778393,444.14295959472656,849.893486704821,27.650806109110516,53.992384,19.87399959564209,11.628452,211.57730356852213,143.31023000000005,111.80698521931966,227.19821,154.82807413736978,212.9992,69.89073181152344,81.423,2.930521825949351,5.4277819,31.840399901072185,0.5643,7.043400327364604,26.994483,4.105910023053487,1.5029,1.6972200870513916,4.903453099999999,0.347888986269633,0.77252246,340.0289738972981,7.770617463494135,72.46013634121493,214.6058345844874,43.249034424847956,31.740978106960213,-0.2107063731514285,12.654602686564127,3.391,39528.306819722624,0,2.061500370502472,0.9614,3.22074947754542,0.7583,0.3142050156990687,0.1793 +2031,11.118751433058554,0.766740343065068,0,0,7.947593945994701,5.537379225095113,1.5411700000000002,57.890807469685875,17.92802,93.31051254272461,10.6700816,60.5080369313558,0.08381999999999999,15.347601572672525,0.24100761240000002,8.972662607828775,0.9221711260000001,187.7557055155436,21.996879999999997,444.1829147338867,0.92805,6.627419948577881,133.29531,0,564.9506683349609,5384.05172,2010.150421142578,397.78129518402903,447.2319590250651,844.5785359700349,27.4420059521993,51.769800000000004,19.468299706776936,10.82562094,204.00834528605142,131.00808400000005,119.13998730977376,226.050031,156.07352574666342,208.16209,74.15533192952473,81.29742,3.036361793677012,5.32028896,31.755199909210205,0.53513,7.303360382715861,26.981936299999997,3.5837300221125283,1.4252099999999999,1.697690079609553,4.792100909999999,0.34479297945896786,0.744561346,340.8549702962239,7.797032382334346,72.7534628398171,214.03242469162888,42.823250659836404,31.538353692033493,-0.21151751575786765,12.798402388890585,3.35405,38905.72161275077,0,1.969610333442688,0.90757,3.2052395145098367,0.7343999999999999,0.30700600892305374,0.1729 +2032,11.15951917280433,0.7471719173860031,0,0,7.872748069584717,5.603459318478902,1.53274,56.34530862172445,17.060840000000002,94.032012939453125,10.6117622,59.83543745676676,0.07673999999999999,15.271801392237345,0.22256852480000003,8.991462469100952,0.8924214020000001,184.99670918782553,21.19736,439.7039159138997,0.8439,6.6272908846537275,133.14102,0,565.0320027669271,5377.9940400000005,2017.2303568522134,396.11634530027413,450.3329544067383,839.2635852352487,27.1528058052063,49.547216,19.02679983774821,10.02278988,195.7624028523763,118.70593800000003,126.33498573303223,224.901852,156.95505650838217,203.32498,78.39263153076172,81.17184,3.1370617548624673,5.21279602,31.660199483235676,0.50596,7.543790419896443,26.9693896,3.1186700065930686,1.3475199999999998,1.6938300728797913,4.6807487199999995,0.3409759849309921,0.716600232,341.6829732259114,7.823447301174557,73.04678933841927,213.45901479877034,42.39746689482486,31.335729277106772,-0.21230796298035126,12.931802670160929,3.3171,38283.13640577892,0,1.8805703123410542,0.85374,3.188759525616964,0.7105,0.2998790144920349,0.16649999999999998 +2033,11.200286912550105,0.727603491706938,0,0,7.7979021931747345,5.669169267018636,1.52431,54.8167085647583,16.19366,94.74971199035645,10.5534428,59.169236501057945,0.06966,15.195301373799643,0.2041294372,9.008902390797934,0.862671678,182.2497075398763,20.39784,435.2579116821289,0.7597499999999999,6.625340819358826,132.98673,0,565.0032704671224,5371.93636,2023.3903096516924,394.45139541651923,453.4349543253581,833.9486345004625,26.76480547587077,47.324632,18.53909969329834,9.219958819999999,186.52441279093424,106.40379200000004,133.24798583984375,223.753673,157.5216433207194,198.48787,82.53953107198079,81.04626,3.231391708056132,5.1053030800000005,31.56339963277181,0.47679000000000005,7.756060481071472,26.956842899999998,2.7265400489171348,1.26983,1.6864700615406036,4.56939653,0.336783987780412,0.688639118,342.5099716186523,7.849862220014768,73.34011583702144,212.8856049059118,41.97168312981331,31.13310486218005,-0.2130777148188794,13.063602606455484,3.28015,37660.55119880707,0,1.794430325428645,0.79991,3.171389559904734,0.6866,0.29283201446135837,0.1601 +2034,11.241054652295881,0.708035066027873,0,0,7.723056316764752,5.734509309132894,1.5158800000000001,53.30690892537435,15.32648,95.46341196695964,10.495123399999999,58.5094362894694,0.06258,15.118301232655844,0.18569034960000003,9.025012095769247,0.832921954,179.5137087504069,19.598319999999998,430.846918741862,0.6756,6.622480948766072,132.83244,0,564.8994496663412,5365.87868,2028.6802469889321,392.78644553276433,456.5409622192383,828.6336837656763,26.29480520884196,45.102047999999996,18.016099611918133,8.41712776,176.7304204305013,94.10164600000002,139.8869832356771,222.605494,157.7922477722168,193.65076,86.59793154398601,80.92068,3.3195117314656577,4.99781014,31.464799722035725,0.44762,7.943500439325969,26.9442962,2.3944900035858154,1.19214,1.675950050354004,4.45804434,0.3322349910934766,0.660678004,343.3359705607096,7.876277138854979,73.63344233562361,212.31219501305327,41.54589936480176,30.93048044725333,-0.21382677127345207,13.193902571996054,3.2432,37037.96599183522,0,1.7112102905909221,0.7460800000000001,3.153159578641256,0.6627,0.2858690122763316,0.1537 +2035,11.281822392041658,0.688466640348808,0,0,7.648210440354768,5.7994693120320635,1.50745,51.81770896911621,14.4593,96.17311159769694,10.436803999999999,57.85613600413004,0.055499999999999994,15.040800968805948,0.167251262,9.039842287699381,0.80317223,176.79170989990234,18.7988,426.46991475423175,0.59145,6.619030912717183,132.67815000000002,0,564.7366231282552,5359.821,2033.160217285156,391.1214956490094,459.6519597371419,823.3187330308901,25.75750478108724,42.879464,17.46709982554118,7.6142967,166.7024180094401,81.79950000000002,146.2619857788086,221.457315,157.78688049316406,188.81365,90.56943194071452,80.79509999999999,3.401591638724009,4.8903172,31.364299774169922,0.41845,8.109040260314941,26.9317495,2.111929992834727,1.11445,1.6625900566577911,4.34669215,0.3273489897449811,0.63271689,344.1599731445312,7.90269205769519,73.92676883422578,211.73878512019473,41.12011559979021,30.727856032326613,-0.2145551323440693,13.32260251045227,3.20625,36415.380784863366,0,1.630920281012853,0.69225,3.1341295639673867,0.6388,0.2789950097600619,0.1473 +2036,11.322590131787434,0.6688982146697431,0,0,7.573364563944786,5.86406930287679,1.49902,50.350409189860024,13.592120000000001,96.87881151835124,10.3784846,57.209235191345215,0.04842,14.963000933329264,0.1488121744,9.053452173868815,0.7734225060000001,174.0857137044271,17.99928,422.1299184163411,0.5073,6.615111072858174,132.52386,0,564.5217539469401,5353.76332,2036.9001668294268,389.4565457652545,462.7699559529622,818.0037822961041,25.16600449879964,40.65688,16.899999777475994,6.81146564,156.67940775553384,69.49735400000002,152.38098653157553,220.30913600000002,157.52253595987955,183.97654,94.45583279927571,80.66951999999999,3.4778016010920205,4.78282426,31.261999766031902,0.38928,8.255230585734049,26.919202799999997,1.8702000081539154,1.03676,1.6466800570487976,4.23533996,0.3221429909269015,0.604755776,344.9839706420898,7.929106976535401,74.22009533282794,211.1653752273362,40.69433183477866,30.525231617399893,-0.21526279803073106,13.44980263710022,3.1693000000000002,35792.79557789151,0,1.5535602867603302,0.63842,3.114349603652954,0.6149,0.27221200863520306,0.1409 +2037,11.36335787153321,0.6493297889906781,0,0,7.498518687534803,5.928299307823181,1.49059,48.90640926361084,12.72494,97.58061281840007,10.3201652,56.568634668986,0.041339999999999995,14.885000785191854,0.1303730868,9.065882126490274,0.7436727820000001,171.39571380615234,17.199759999999998,417.8249155680339,0.42315,6.610771099726359,132.36957,0,564.2618764241537,5347.70564,2039.9401448567705,387.7915958814996,465.8969548543294,812.6888315613179,24.531304359436035,38.434296,16.321499824523926,6.00863458,146.8333943684896,57.19520800000002,158.25098673502603,219.16095700000002,157.01721827189127,179.13943,98.25863202412923,80.54393999999999,3.548271576563517,4.67533132,31.157699584960938,0.36011000000000004,8.384320338567099,26.9066561,1.662150005499522,0.95907,1.6284700433413188,4.12398777,0.31663298855225247,0.576794662,345.8069737752278,7.955521895375612,74.51342183143011,210.59196533447766,40.268548069767114,30.322607202473172,-0.2159497683334373,13.575502316157023,3.13235,35170.21037091967,0,1.4791002770264943,0.58459,3.093869606653849,0.591,0.2655250107248624,0.1345 +2038,11.404125611278985,0.629761363311613,0,0,7.4236728111248205,5.992159326871236,1.4821600000000001,47.48690954844157,11.857759999999999,98.27851104736328,10.2618458,55.934434254964195,0.03425999999999999,14.806700468063354,0.1119339992,9.07717196146647,0.713923058,168.72371546427408,16.40024,413.5569203694661,0.33899999999999997,6.606061021486918,132.21528,0,563.9609883626302,5341.647959999999,2042.340128580729,386.1266459977447,469.032958984375,807.3738808265317,23.863404115041096,36.211712,15.737199942270914,5.20580352,137.28537877400717,44.893062,163.88198598225912,218.01277800000003,156.28491083780924,174.30231999999998,101.98003005981445,80.41835999999999,3.6131815314292908,4.5678383799999995,31.051599820454914,0.33094,8.498290379842123,26.894109399999998,1.481900026400884,0.8813799999999999,1.6082000533739726,4.01263558,0.31083498895168304,0.548833548,346.62797037760413,7.981936814215823,74.80674833003228,210.01855544161913,39.84276430475556,30.11998278754645,-0.21661604325218808,13.699602444966635,3.0954,34547.625163947814,0,1.4075202544530232,0.53076,3.072739621003469,0.5670999999999999,0.25893601030111313,0.1281 +2039,11.444893351024762,0.6101929376325481,0,0,7.348826934714837,6.055649280548096,1.47373,46.09270922342936,10.990580000000001,98.972412109375,10.2035264,55.30653349558512,0.027179999999999996,14.728400548299154,0.09349491159999998,9.087381839752197,0.684173334,166.06971995035806,15.600719999999999,409.32591756184894,0.2548499999999999,6.601011236508687,132.06099,0,563.6221211751302,5335.590279999999,2044.1300760904946,384.4616961139898,472.17895762125653,802.0589300917455,23.17070420583089,33.989128,15.151899735132853,4.40297246,128.11735916137695,32.59091600000001,169.27898661295572,216.86459900000003,155.34063084920248,169.46520999999998,105.62003008524577,80.29278,3.6726615031560264,4.46034544,30.943599541982014,0.30177,8.598880370457968,26.8815627,1.324590007464091,0.8036899999999999,1.5860600570837657,3.9012833900000006,0.30476399262746173,0.5208724339999999,347.44897460937494,8.008351733056035,75.10007482863445,209.4451455487606,39.41698053974402,29.91735837261973,-0.21726162278698333,13.822102387746176,3.05845,33925.03995697596,0,1.3387702405452728,0.47693,3.0509896278381348,0.5432,0.25244900956749916,0.1217 +2040,11.485661090770538,0.5906245119534831,0,0,7.273981058304854,6.118759314219157,1.4653,44.724610010782875,10.1234,99.6623109181722,10.145207,54.68503379821777,0.0201,14.65000057220459,0.07505582400000001,9.096531788508097,0.65442361,163.4367192586263,14.8012,405.13192494710285,0.1707,6.595640858014424,131.9067,0,563.2491556803385,5329.5326,2045.3600362141924,382.7967462302349,475.3359603881836,796.7439793569594,22.46070369084676,31.766544,14.569599866867065,3.6001414,119.38333829243977,20.28877,174.45098749796549,215.71642000000003,154.1983642578125,164.6281,109.18103154500325,80.1672,3.726851463317871,4.3528525,30.83370002110799,0.2726,8.687610387802124,26.869016,1.1862400273482006,0.726,1.5622500379880269,3.7899312000000007,0.2984349901477496,0.49291132,348.2679773966471,8.034766651896245,75.39340132723662,208.87173565590206,38.991196774732465,29.71473395769301,-0.2178865069378232,13.94320241610209,3.0215,33302.45475000411,0,1.2728002270062764,0.4231,3.028679668903351,0.5193,0.24606500814358392,0.1153 +2041,11.509476003966167,0.5452317142654596,0,0,7.179840921541253,6.181509375572205,1.45543,43.38340950012207,9.656320000000001,100.34800974527995,10.076847599999999,54.06973425547282,0.01853,14.571600516637167,0.0697234998,9.104671716690063,0.633957487,160.82372029622397,14.28209,400.9749221801758,0.15650999999999998,6.590001503626506,131.72605,0,562.8443857828776,5322.43208,2046.0800374348955,380.2337654857025,478.5039571126302,790.1965079738944,21.739703337351482,30.4061322,13.993399858474731,3.34120265,111.11332321166992,18.44822429,179.40398406982422,213.18030000000002,152.87012354532877,161.73917,112.66503016153972,79.36518,3.7759114503860474,4.27081147,30.72189998626709,0.25616,8.765830437342325,26.6736614,1.0635400116443634,0.6822199999999999,1.5369300444920857,3.7234213500000006,0.29186198860406876,0.47942809599999997,349.0869750976562,8.032422612823959,75.45718801777699,207.69986054191634,38.64709045457717,29.42994786009545,-0.21846336297766247,14.062602281570435,2.96873,32641.313633291928,0,1.2095702191193898,0.39941,3.0058396657307944,0.5029399999999999,0.23978800947467485,0.11118 +2042,11.533290917161796,0.49983891657743607,0,0,7.085700784777652,6.24385933081309,1.44556,42.069610277811684,9.18924,101.03001149495442,10.008488199999999,53.46063359578451,0.01696,14.493200381596884,0.0643911756,9.111841837565104,0.613491364,158.23372650146484,13.762979999999999,396.85492451985675,0.14232,6.582892378171285,131.5454,0,562.2989807128906,5315.33156,2046.109944661458,377.6707847411702,481.6739552815755,783.6490365908294,21.009803295135498,29.0457204,13.42419981956482,3.0822639,103.26530774434407,16.607678579999998,184.10998916625977,210.64418000000003,151.41999053955078,158.85023999999999,116.04903157552083,78.56316,3.8203614155451455,4.18877044,30.608700116475422,0.23972000000000002,8.830570379892984,26.4783068,0.9555070151885351,0.63844,1.5110400517781575,3.6569115000000005,0.2852169871330261,0.465944872,349.90097300211585,8.030078573751675,75.52097470831734,206.5279854279306,38.30298413442188,29.145161762497892,-0.21899219090650127,14.180202404657999,2.91596,31980.172516579743,0,1.1489902138710022,0.37572,2.9825096925099692,0.48658,0.2336180085937182,0.10706 +2043,11.557105830357424,0.45444611888941255,0,0,6.99156064801405,6.305779258410136,1.4356900000000001,40.78360970815023,8.72216,101.70701090494792,9.9401288,52.85773277282715,0.015390000000000001,14.414900302886963,0.0590588514,9.118061621983847,0.5930252410000001,155.66472752888998,13.24387,392.7719243367513,0.12813,6.573932250340779,131.36475000000002,0,561.5693817138672,5308.23104,2045.2799173990884,375.10780399663787,484.83795674641925,777.1015652077645,20.272802988688152,27.6853086,12.862699826558432,2.82332515,95.80158996582031,14.767132870000001,188.53898493448892,208.10806000000002,149.90491739908853,155.96131,119.3090311686198,77.76114,3.8607314030329385,4.10672941,30.49459966023763,0.22328,8.879150390625,26.2829522,0.8613140136003494,0.59466,1.485420048236847,3.5904016500000004,0.278663990398248,0.452461648,350.7079747517903,8.02773453467939,75.58476139885771,205.35611031394487,37.95887781426658,28.86037566490033,-0.2194729907243396,14.2957022190094,2.86319,31319.031399867563,0,1.0910201966762543,0.35202999999999995,2.9587196906407676,0.47021999999999997,0.2275560088455677,0.10294 +2044,11.580920743553053,0.40905332120138904,0,0,6.8974205112504485,6.36725930372874,1.42582,39.52571042378744,8.25508,102.37901178995769,9.8717694,52.26103274027506,0.013819999999999999,14.336700359980265,0.0537265272,9.12339154879252,0.572559118,153.120730082194,12.72476,388.72692616780597,0.11393999999999999,6.564152240753174,131.1841,0,560.7495320638021,5301.13052,2043.6598815917966,372.5448232521055,487.9959538777669,770.5540938246995,19.533603032430012,26.324896799999998,12.311099847157797,2.5643864,88.74277242024739,12.92658716,192.6999880472819,205.57194,148.32983525594076,153.07237999999998,122.44903055826823,76.95912,3.8971113562583923,4.02468838,30.379500071207683,0.20684000000000002,8.91338046391805,26.087597600000002,0.7785920153061548,0.55088,1.4600400527318318,3.5238918000000004,0.2721959898869197,0.438978424,351.5089721679687,8.025390495607105,75.64854808939806,204.18423519995912,37.61477149411128,28.57558956730277,-0.21990576243117727,14.408902088801065,2.81042,30657.890283155382,0,1.0355801979700725,0.32833999999999997,2.9345196882883706,0.45386,0.22160500784715018,0.09881999999999999 +2045,11.604735656748682,0.3636605235133656,0,0,6.803280374486848,6.428309361139934,1.41595,38.29610951741537,7.788,103.04701105753581,9.80341,51.67033290863037,0.01225,14.258600155512491,0.048394203000000004,9.127851645151773,0.552092995,150.599733988444,12.205649999999999,384.7179260253906,0.09974999999999999,6.553892215092977,131.00345,0,559.8746846516927,5294.03,2041.3098347981768,369.9818425075732,491.1499506632487,764.0066224416346,18.796502749125164,24.964485,11.771399895350138,2.30544765,82.0982551574707,11.08604145,196.6009864807129,203.03582,146.69675572713217,150.18345,125.46902910868327,76.15709999999999,3.929611325263977,3.94264735,30.26349973678589,0.1904,8.934850454330444,25.892243,0.7053750058015188,0.5071,1.4348400632540386,3.4573819500000003,0.2658049960931142,0.42549519999999996,352.30197397867835,8.02304645653482,75.71233477993843,203.0123600859734,37.27066517395599,28.29080346970521,-0.22029050602701453,14.5199023882548,2.75765,29996.749166443202,0,0.9825901935497919,0.30465,2.909929653008779,0.4375,0.2157650093237559,0.0947 +2046,11.628550569944311,0.3182677258253421,0,0,6.709140237723246,6.488929311434428,1.40608,37.09500948588053,7.320920000000001,103.71001116434734,9.7350506,51.08583164215088,0.01068,14.180700143178305,0.0430618788,9.131461461385092,0.531626872,148.1047388712565,11.686539999999999,380.7459233601888,0.08556,6.543252269426982,130.8228,0,558.956797281901,5286.92948,2038.269785563151,367.41886176304087,494.29995981852215,757.4591510585695,18.065102736155193,23.604073200000002,11.244800011316935,2.0465089,75.86733818054199,9.24549574,200.24898783365884,200.49970000000002,145.00868352254233,147.29452,128.37202962239584,75.35507999999999,3.9583113193511963,3.86060632,30.146499792734783,0.17396,8.94497044881185,25.696888400000002,0.6400300016005834,0.46332,1.4097900291283925,3.3908721,0.25948599725961685,0.412011976,353.08897145589185,8.020702417462534,75.7761214704788,201.84048497198768,36.92655885380069,28.006017372107653,-0.22062722151185127,14.628802061080933,2.7048799999999997,29335.608049731018,0,0.9319871763388315,0.28096,2.8849997321764627,0.42114,0.21003600706656775,0.09058 +2047,11.65236548313994,0.2728749281373186,0,0,6.615000100959644,6.549119313557942,1.39621,35.92250887552897,6.85384,104.36901028951009,9.666691199999999,50.50723203023275,0.009110000000000002,14.103000243504843,0.037729554600000006,9.134281396865845,0.5111607490000001,145.63373947143555,11.16743,376.80992889404297,0.07137,6.532302260398865,130.64215000000002,0,558.0028991699219,5279.82896,2034.5997517903643,364.8558810185085,497.4469579060872,750.9116796755046,17.34250243504842,22.2436614,10.732699871063232,1.7875701500000003,70.04262034098308,7.40495003,203.6509869893392,197.96358,143.26861445109049,144.40559,131.16102854410806,74.55305999999999,3.9833112557729087,3.7785652900000004,30.028500080108643,0.15752000000000002,8.945010503133139,25.501533800000004,0.5812130123376846,0.41954,1.3848700523376465,3.32436225,0.25323299318552017,0.398528752,353.8679758707682,8.01835837839025,75.83990816101915,200.66860985800193,36.582452533645395,27.721231274510092,-0.22091590888568755,14.735502084096273,2.65211,28674.466933018837,0,0.8836901734272639,0.25727,2.8597397208213806,0.40478000000000003,0.2044190081457297,0.08646000000000001 +2048,11.676180396335567,0.22748213044929505,0,0,6.520859964196043,6.608879407246907,1.3863400000000001,34.77860895792643,6.386760000000001,105.023011525472,9.5983318,49.93473116556803,0.00754,14.025500218073526,0.0323972304,9.13633139928182,0.490694626,143.18974431355795,10.648319999999998,372.91092681884766,0.05717999999999998,6.521072030067444,130.4615,0,557.0179646809896,5272.72844,2030.3397318522134,362.29290027397616,500.5919545491536,744.3642082924397,16.63120237986247,20.8832496,10.23579994837443,1.5286314,64.61190573374431,5.5644043199999995,206.8149871826172,195.42746,141.48054885864258,141.51666,133.83602905273438,73.75103999999999,4.0047012368837995,3.6965242600000003,29.909599939982098,0.14108,8.936070362726847,25.306179200000006,0.5278110057115555,0.37576,1.360040048758189,3.2578524,0.24704099570711455,0.38504552799999997,354.6409784952799,8.016014339317964,75.90369485155952,199.4967347440162,36.2383462134901,27.43644517691253,-0.22115656814852327,14.840001980463663,2.5993399999999998,28013.325816306657,0,0.8376241574684778,0.23357999999999998,2.834189772605896,0.38842,0.19891400635242462,0.08234 +2049,11.699995309531197,0.1820893327612716,0,0,6.426719827432442,6.6682093143463135,1.37647,33.66310977935791,5.9196800000000005,105.67201169331868,9.5299724,49.368030865987144,0.005970000000000001,13.94830028216044,0.027064906200000002,9.137631495793661,0.470228503,140.77174377441406,10.129209999999999,369.04793039957684,0.04299,6.5095824003219604,130.28085,0,556.0041249593099,5265.62792,2025.5397033691404,359.72991952944386,503.7339579264323,737.8167369093746,15.933502356211344,19.522837799999998,9.754819949467977,1.26969265,59.55949115753174,3.7238586100000006,209.74698766072592,192.89134,139.6454874674479,138.62772999999999,136.40102767944336,72.94901999999999,4.022581259409587,3.6144832300000003,29.789699872334797,0.12464,8.91916028658549,25.110824600000004,0.47890400389830273,0.33198,1.3353000382582347,3.19134255,0.24090699230631193,0.371562304,355.40697733561194,8.01367030024568,75.96748154209988,198.32485963003046,35.894239893334806,27.151659079314975,-0.22134919930035848,14.942301988601685,2.54657,27352.184699594472,0,0.7937111457188925,0.20989,2.8083797295888266,0.37206,0.19352000703414282,0.07822 +2050,11.723810222726826,0.1366965350732481,0,0,6.33257969066884,6.727099378903707,1.3666,32.576008796691895,5.4526,106.31601142883301,9.461613,48.80733076731364,0.0044,13.87120016415914,0.021732582,9.138211409250895,0.44976238,138.38074747721353,9.6101,365.22193145751953,0.0288,6.497851252555847,130.1002,0,554.9639790852865,5258.5274,2020.2396647135415,357.1669387849115,506.8749542236328,731.2692655263097,15.251102050145468,18.162426,9.290159861246744,1.0107539,54.86767768859863,1.8833129,212.4539883931478,190.35522,137.76642227172852,135.7388,138.85602951049805,72.14699999999999,4.037031213442485,3.5324422,29.66890001296997,0.1082,8.895140250523886,24.915470000000006,0.43372800201177597,0.2882,1.3106200595696766,3.1248327,0.23482599357763925,0.35807908,356.16597493489576,8.011326261173394,76.03126823264024,197.15298451604474,35.55013357317951,26.866872981717414,-0.22149380234119315,15.042401949564615,2.4938,26691.043582882292,0,0.7518721520900726,0.1862,2.7823297580083213,0.3557,0.1882380060851574,0.0741 +2051,11.690384358274654,0.08100374556345855,0,0,6.252962759351124,6.7855693101882935,1.33951,31.517008940378826,5.20103,106.95601018269856,9.27408472,48.25243059794108,0.00406,13.79450019200643,0.02018665606,9.13810125986735,0.435696317,136.01675033569336,9.27305,361.43092346191406,0.02641,6.4859243631362915,129.60438,0,553.9026540120443,5239.04874,2014.4696248372393,354.3823885432747,510.0139516194661,723.5198151310166,14.585301955540976,17.3846094,8.842100143432617,0.9380561430000001,50.51766395568848,1.712466056,214.94398752848306,191.742661,135.84638086954752,136.03359,141.20402908325195,72.71744999999999,4.048131187756856,3.5102287500000005,29.547000249226887,0.10313,8.864810307820639,25.208318400000007,0.3916580031315486,0.27469,1.2860000332196553,3.13162604,0.22879399359226227,0.355389803,356.9189783732096,7.98788026365288,75.94460432855358,195.39838145461061,35.2450128933955,26.589125025003835,-0.22157948440653105,15.140401840209961,2.4641699999999997,26325.61533506562,0,0.7120301425457001,0.17577,2.7560798128445945,0.34449,0.1830690068503221,0.07145 +2052,11.656958493822483,0.02531095605366898,0,0,6.173345828033408,6.843229373296102,1.31242,30.48590898513794,4.94946,107.58801015218098,9.086556439999999,47.70333035786947,0.0037200000000000002,13.718000173568726,0.01864073012,9.137341181437174,0.42163025400000004,133.6807518005371,8.936,357.6759338378906,0.02402,6.467778007189433,129.10856,0,552.3388315836588,5219.5700799999995,2008.1996053059893,351.5978383016379,513.1369603474935,715.7703647357233,13.937201897303263,16.6067928,8.410640080769857,0.865358386,46.48905245463053,1.541619212,217.31598790486655,193.130102,133.97650146484375,136.32838,143.49502817789713,73.2879,4.056981245676677,3.4880153000000003,29.424599806467693,0.09806000000000001,8.83884048461914,25.501166800000004,0.3537420059243838,0.26118,1.2627800305684407,3.1384193799999998,0.2229309951265653,0.352700526,357.6629740397135,7.964434266132365,75.8579404244669,193.64377839317646,34.93989221361148,26.31137706829026,-0.22160624549637226,15.236601909001669,2.4345399999999997,25960.187087248953,0,0.6741111278533936,0.16534,2.729639768600464,0.33328,0.1780110038816929,0.0688 +2053,11.623532629370311,0,0,0.030381833456120583,6.093728896715693,6.899709383646647,1.28533,29.482508818308514,4.69789,108.2060095469157,8.89902816,47.15992959340414,0.00338,13.641800085703531,0.01709480418,9.135951121648153,0.407564191,131.37175496419272,8.59895,353.9559326171875,0.02163,6.441687226295471,128.61274,0,550.1151326497396,5200.09142,2001.3995869954424,348.81328806000107,516.2299601236979,708.0209143404302,13.307501872380575,15.8289762,7.9957098960876465,0.7926606290000001,42.761839866638184,1.370772368,219.6679890950521,194.517543,132.23869705200195,136.62317,145.77602895100912,73.85835,4.064651131629944,3.46580185,29.302199999491375,0.09299,8.826610565185547,25.794015200000004,0.32084600379069644,0.24767,1.242180049419403,3.14521272,0.21734499310453734,0.35001124899999997,358.39597320556635,7.94098826861185,75.77127652038024,191.88917533174234,34.63477153382747,26.03362911157668,-0.2215740856107166,15.3317019144694,2.4049099999999997,25594.75883943228,0,0.6380371252695719,0.15491,2.703039805094401,0.32207,0.17306300376852354,0.06615 +2054,11.59010676491814,0,0,0.08607462296591015,6.014111965397977,6.955029408137004,1.25824,28.506508827209473,4.44632,108.81201108296712,8.71149988,46.62232971191406,0.00304,13.565900087356567,0.01554887824,9.133940935134888,0.393498128,129.0917599995931,8.261899999999999,350.27193450927734,0.01924,6.413227041562398,128.11692,0,547.6623687744141,5180.61276,1994.1095581054685,346.0287378183643,519.2919565836588,700.2714639451369,12.696701606114706,15.0511596,7.597210009892781,0.719962872,39.316829681396484,1.199925524,222.0009854634603,195.90498399999998,130.625857035319,136.91796,148.04703013102213,74.4288,4.071171164512634,3.4435884000000003,29.17959992090861,0.08792,8.826400438944498,26.086863600000004,0.29211900383234024,0.23416,1.2239100337028503,3.1520060599999997,0.21202099323272705,0.347321972,359.11797841389966,7.917542271091335,75.68461261629358,190.1345722703082,34.32965085404346,25.7558811548631,-0.2214830047495642,15.42540184656779,2.3752799999999996,25229.33059161561,0,0.6037361174821854,0.14448,2.676299790541331,0.31086,0.1682250052690506,0.0635 +2055,11.556680900465969,0,0,0.1417674124756997,5.934495034080261,7.009169419606526,1.23115,27.55750830968221,4.19475,109.40501022338867,8.5239716,46.09032917022705,0.0027,13.49020012219747,0.0140029523,9.131341139475504,0.37943206500000004,126.8397610982259,7.924849999999999,346.6229298909505,0.01685,6.383986671765645,127.62110000000001,0,545.12457275390625,5161.134099999999,1986.3695170084634,343.2441875767275,522.3259582519531,692.5220135498438,12.105501651763916,14.273343,7.214959939320882,0.6472651150000001,36.13531939188639,1.02907868,224.31298828125,197.29242499999998,129.12600708007812,137.21275,150.30902862548828,74.99924999999999,4.076541105906169,3.4213749500000006,29.057000001271565,0.08285000000000001,8.836660385131836,26.379712000000005,0.266853004693985,0.22065,1.2077000439167023,3.1587994,0.2069429929057757,0.344632695,359.8289769490559,7.8940962735708204,75.59794871220691,188.37996920887406,34.02453017425944,25.47813319814952,-0.22133300291291505,15.518001794815063,2.34565,24863.902343798938,0,0.5711341053247452,0.13405,2.6494498252868652,0.29965,0.16349700341622034,0.06085 +2056,11.523255036013797,0,0,0.19746020198548928,5.854878102762545,7.062129418055217,1.20406,26.63510815302531,3.94318,109.9860102335612,8.33644332,45.56402842203776,0.00236,13.414899984995523,0.01245702636,9.12817088762919,0.365366002,124.61576588948567,7.5878,343.0089340209961,0.01446,6.354426463445027,127.12528,0,542.5486195882162,5141.6554399999995,1978.209533691406,340.4596373350907,525.3319600423177,684.7725631545507,11.534301360448202,13.4955264,6.848719994227092,0.5745673580000001,33.199610233306885,0.8582318360000001,226.60498682657877,198.679866,127.73415184020996,137.50754,152.56202824910483,75.5697,4.080811142921448,3.3991615000000004,28.934300263722736,0.07778,8.856070439020792,26.672560400000002,0.24446400254964828,0.20714000000000002,1.1933300495147705,3.16559274,0.20209499448537827,0.341943418,360.5299758911132,7.8706502760503065,75.51128480812024,186.62536614743993,33.71940949447543,25.200385241435946,-0.22112408010076912,15.609301884969076,2.31602,24498.47409598227,0,0.5401610980431238,0.12362000000000001,2.6224997838338218,0.28844000000000003,0.15887600431839624,0.0582 +2057,11.489829171561626,0,0,0.2531529914952788,5.77526117144483,7.1139194170633955,1.1769699999999998,25.738908290863037,3.6916100000000003,110.55400975545247,8.14891504,45.043228467305504,0.00202,13.339900096257528,0.01091110042,9.124460935592651,0.351299939,122.42176882425944,7.25075,339.4289372762044,0.012070000000000001,6.324686090151469,126.62946000000001,0,539.9516754150391,5122.17678,1969.669494628906,337.6750870934539,528.3099568684896,677.0231127592574,10.983201424280802,12.7177098,6.498179992039998,0.5018696010000001,30.49230146408081,0.6873849920000001,228.8769874572754,200.067307,126.4392801920573,137.80233,154.8040313720703,76.14014999999999,4.083991090456645,3.37694805,28.811399936676025,0.07271,8.883440256118774,26.965408800000002,0.22446000079313913,0.19363000000000002,1.180580049753189,3.17238608,0.1974639929831028,0.339254141,361.21997578938795,7.847204278529792,75.42462090403357,184.8707630860058,33.41428881469142,24.922637284722367,-0.22085623631312645,15.699301799138388,2.28639,24133.0458481656,0,0.5107470974326134,0.11319000000000001,2.595469812552134,0.27723000000000003,0.15436200549205145,0.05555 +2058,11.456403307109454,0,0,0.30884578100506843,5.695644240127114,7.164539456367493,1.14988,24.868608156840008,3.44004,111.10900942484538,7.96138676,44.528029123942055,0.00168,13.265199899673462,0.009365174479999998,9.120230913162231,0.337233876,120.25577227274577,6.9137,335.8839340209961,0.009680000000000001,6.2948358456293745,126.13364000000001,0,537.3397165934244,5102.69812,1960.7694905598955,334.89053685181705,531.2609608968099,669.2736623639643,10.4522012869517,11.9398932,6.1629899342854815,0.42917184399999997,27.997193972269695,0.516538148,231.12898763020834,201.454748,125.23740577697754,138.09712,157.03702799479166,76.7106,4.086111068725586,3.3547346000000005,28.688499927520752,0.06764,8.917740424474081,27.258257200000003,0.20643700286746025,0.18012,1.1692800521850586,3.17917942,0.1930369958281517,0.33656486399999996,361.89897155761713,7.823758281009277,75.33795699994691,183.11616002457168,33.10916813490741,24.644889328008787,-0.22052947154998687,15.788201808929443,2.25676,23767.617600348927,0,0.4828250954548518,0.10275999999999999,2.568389813105265,0.26602000000000003,0.1499540035923322,0.0529 +2059,11.422977442657283,0,0,0.36453857051485805,5.616027308809398,7.213989535967509,1.12279,24.0236078898112,3.18847,111.65100860595703,7.7738584799999995,44.018327713012695,0.00134,13.190900087356567,0.007819248539999999,9.115490674972534,0.32316781299999997,118.11877504984538,6.57665,332.37293752034503,0.007290000000000001,6.264865358670552,125.63782,0,534.7167205810547,5083.219459999999,1951.5494689941404,332.10598661018025,534.1859588623047,661.524211968671,9.941461245218912,11.162076599999999,5.8427499532699585,0.35647408700000005,25.698886076609295,0.34569130400000003,233.36098607381186,202.842189,124.11951446533203,138.39191,159.2590306599935,77.28105,4.087201118469238,3.3325211500000007,28.56539996465047,0.06257,8.958040396372477,27.5511056,0.19006700068712234,0.16661,1.1592600246270497,3.18597276,0.1888019951681296,0.333875587,362.5679728190104,7.800312283488762,75.25129309586023,181.36155696313753,32.80404745512339,24.36714137129521,-0.2201437858113507,15.8758016427358,2.22713,23402.18935253226,0,0.45632708817720413,0.09233,2.541269858678182,0.25481,0.14565100272496542,0.05025 +2060,11.389551578205111,0,0,0.42023136002464756,5.536410377491682,7.2622595230738325,1.0957,23.203507741292317,2.9369,112.18100865681966,7.5863302,43.5139274597168,0.001,13.11680014928182,0.0062733226,9.110270977020264,0.30910175,116.01077842712402,6.2396,328.8959325154622,0.0049,6.23481551806132,125.14200000000001,0,532.0838216145834,5063.7408,1942.0294392903643,329.32143636854346,537.0849558512369,653.7747615733779,9.450671037038168,10.38426,5.537050008773804,0.28377633,23.582779089609783,0.17484446,235.57198588053384,204.22963,123.08062108357747,138.6867,161.47203063964844,77.8515,4.087271094322205,3.3103077000000005,28.44230016072591,0.0575,9.003560543060303,27.843954,0.1750720019141833,0.15310000000000001,1.1503800451755524,3.1927661,0.184746994326512,0.33118631,363.22697448730463,7.776866285968247,75.16462919177357,179.6069539017034,32.49892677533938,24.089393414581632,-0.21969917909721767,15.962101697921753,2.1975,23036.761104715588,0,0.431190088391304,0.0819,2.514119863510132,0.2436,0.1414510024090608,0.0476 +2061,11.272486745350072,0,0,0.43854990294911644,5.449905341849427,7.309359471003215,1.0768199999999999,22.407907485961914,2.80139,112.69800885518391,7.4556113999999996,43.01502704620361,9.2e-4,13.043200016021729,0.0058252281299999995,9.104590892791748,0.299431331,113.93178176879883,6.02076,325.4519348144531,0.00449,6.20470376809438,124.79645000000001,0,529.4435831705729,5050.162979999999,1932.2294718424478,328.0531966995652,539.9579620361328,646.1582596895978,8.979641119639078,9.939558329999999,5.245460033416748,0.2633617666,21.635372797648113,0.1589853287,237.76398849487305,204.98136799999997,122.11471748352051,138.96620000000001,163.67403030395508,78.27308000000001,4.086341142654419,3.2834044800000006,28.318999926249187,0.05466,9.05357050895691,28.0527831,0.16122200091679892,0.14554,1.142510066429774,3.19919308,0.18086099500457445,0.328902266,363.8749745686848,7.734040793914579,74.93462067657948,177.88246717666885,32.17861877239297,23.793309968127296,-0.21923518964752328,16.04720179239909,2.15534,22832.07975327725,0,0.4073530857761701,0.07732,2.486969828605652,0.23592000000000002,0.13735400264461836,0.0459 +2062,11.155421912495033,0,0,0.4568684458735853,5.363400306207171,7.355469465255737,1.0579399999999999,21.63620726267497,2.66588,113.2050069173177,7.3248926,42.521427154541016,8.4e-4,12.969799995422363,0.00537713366,9.098460753758749,0.289760912,111.8817850748698,5.80192,322.0419387817383,0.00408,6.177321712176005,124.4509,0,527.0166168212891,5036.58516,1922.45952351888,326.78495703058695,542.7949523925781,638.5417578058176,8.52812115351359,9.49485666,4.967519998550415,0.24294720320000002,19.843966960906982,0.1431261974,239.92098744710287,205.733106,121.21680768330891,139.2457,165.86103312174478,78.69466,4.084381182988484,3.2565012600000003,28.19569985071818,0.051820000000000005,9.105800549189249,28.261612200000002,0.1486390046775341,0.13798000000000002,1.1355400482813518,3.20562006,0.17713999624053636,0.326618222,364.5109786987304,7.69121530186091,74.7046121613854,176.1579804516343,31.858310769446565,23.497226521672964,-0.21875181746226754,16.130901495615642,2.11318,22627.39840183891,0,0.3847580775618553,0.07274,2.4598198731740317,0.22824,0.13335600246985754,0.0442 +2063,11.038357079639995,0,0,0.47518698879805427,5.276895270564916,7.40075957775116,1.0390599999999999,20.887907028198242,2.53037,113.70200729370117,7.1941738,42.03312683105469,7.6e-4,12.89679996172587,0.00492903919,9.09191083908081,0.280090493,109.86178779602051,5.58308,318.66493733723956,0.00367,6.1535515785217285,124.10535,0,524.8860117594401,5023.00734,1912.989512125651,325.51671736160864,545.5869496663412,630.9252559220375,8.095821062723795,9.05015499,4.702809969584147,0.22253263980000001,18.19676160812378,0.1272670661,242.02898661295572,206.48484399999998,120.38289324442546,139.52519999999998,168.02803166707358,79.11624,4.0813411474227905,3.2295980400000004,28.0724999109904,0.04898,9.158260345458984,28.4704413,0.1374200036128362,0.13042,1.129360059897105,3.21204704,0.17357899621129036,0.324334178,365.13298034667963,7.648389809807242,74.47460364619131,174.43349372659975,31.538002766500156,23.201143075218628,-0.2182490625414504,16.212801774342854,2.07102,22422.71705040057,0,0.36334507415692013,0.06816,2.4326998194058738,0.22056,0.12945900236566862,0.0425 +2064,10.921292246784956,0,0,0.49350553172252315,5.190390234922661,7.4452195564905805,1.0201799999999999,20.162606875101726,2.39486,114.19100761413574,7.063455,41.550126711527504,6.8e-4,12.824099858601889,0.0044809447199999995,9.084940671920776,0.270420074,107.8697903951009,5.36424,315.32093811035156,0.00326,6.130941271781921,123.7598,0,522.8668772379557,5009.42952,1903.7895202636716,324.2484776926304,548.334950764974,623.3087540382575,7.682370940844218,8.605453319999999,4.450869997342427,0.2021180764,16.682756503423054,0.1114079348,244.088986714681,207.236582,119.60897382100423,139.8047,170.17603174845377,79.53782,4.077251036961873,3.20269482,27.949400107065838,0.04614,9.210970401763916,28.6792704,0.1273300014436245,0.12286000000000001,1.1239100595315297,3.21847402,0.1701709950963656,0.322050134,365.7409795125325,7.605564317753573,74.24459513099723,172.7090070015652,31.217694763553748,22.905059628764292,-0.21772692488507192,16.292901515960693,2.02886,22218.03569896223,0,0.34305906544129056,0.06358,2.4056098659833274,0.21288,0.12565800237158933,0.0408 +2065,10.804227413929917,0,0,0.511824074646992,5.1038851992804055,7.488869547843933,1.0013,19.4598069190979,2.25935,114.67000897725423,6.9327362,41.072325706481934,6.000000000000001e-4,12.751800060272217,0.00403285025,9.07758084932963,0.260749655,105.90679359436035,5.1454,312.0089391072591,0.00285,6.108811020851135,123.41425000000001,0,520.8977508544922,4995.851699999999,1894.8595275878904,322.98023802365213,551.0389607747396,615.6922521544773,7.287330985069275,8.16075165,4.2112399737040205,0.181703513,15.291651964187622,0.0955488035,246.10398610432944,207.98832,118.89004580179851,140.0842,172.3040339152018,79.9594,4.072151064872742,3.1757916,27.82639980316162,0.043300000000000005,9.263950427373251,28.888099500000003,0.11818500173588593,0.11530000000000001,1.119100034236908,3.224901,0.16690599297483763,0.31976609,366.334976196289,7.562738825699904,74.01458661580314,170.98452027653065,30.89738676060734,22.60897618230996,-0.21718540449313206,16.371301651000977,1.9867,22013.35434752389,0,0.3238460645079613,0.059,2.3785699009895325,0.2052,0.12195400334894657,0.0391 +2066,10.687162581074878,0,0,0.530142617571461,5.017380163638149,7.531699538230896,0.98242,18.778906504313152,2.12384,115.1410083770752,6.8020173999999995,40.599626223246254,5.200000000000001e-4,12.679800033569336,0.00358475578,9.069830576578775,0.25107923600000004,103.97179667154948,4.92656,308.72994232177734,0.0024400000000000003,6.086950659751892,123.0687,0,518.9596913655599,4982.27388,1886.1695760091143,321.7119983546739,553.699951171875,608.0757502706972,6.910230875015259,7.716049979999999,3.9834500352541604,0.1612889496,14.014047702153524,0.0796896722,248.07598622639975,208.74005799999998,118.2251205444336,140.3637,174.41303253173828,80.38098000000001,4.0660810470581055,3.1488883800000003,27.70349995295207,0.04046,9.317190488179525,29.096928600000002,0.10982400240997474,0.10774,1.1148800353209178,3.23132798,0.16377699499328932,0.317482046,366.9149780273437,7.519913333646235,73.78457810060905,169.26003355149612,30.577078757660935,22.312892735855623,-0.2166245013656308,16.448001543680828,1.94454,21808.67299608555,0,0.30565406382083893,0.054419999999999996,2.351589878400167,0.19752,0.11834400333464146,0.0374 +2067,10.570097748219839,0,0,0.5484611604959299,4.930875127995894,7.5737195412317915,0.9635400000000001,18.11940622329712,1.9883300000000002,115.60300763448079,6.6712986,40.13212617238363,4.4000000000000007e-4,12.608100096384684,0.0031366613100000003,9.061730782190958,0.241408817,102.06679916381836,4.70772,305.48394266764325,0.0020300000000000006,6.065290331840515,122.72315,0,517.0446217854818,4968.69606,1877.7095743815103,320.4437586856956,556.3189544677734,600.4592483869171,6.5505607922871905,7.27134831,3.767039974530538,0.1408743862,12.840943574905396,0.06383054090000001,250.005983988444,209.491796,117.60918299357097,140.64319999999998,176.50403340657553,80.80256,4.059070984522502,3.12198516,27.5807998975118,0.03762,9.370710452397665,29.3057577,0.10211600239078204,0.10018,1.1111800372600555,3.23775496,0.1607769951224327,0.31519800200000003,367.48097991943354,7.477087841592566,73.55456958541497,167.53554682646157,30.256770754714527,22.016809289401287,-0.21604421550256814,16.5229016939799,1.90238,21603.99164464721,0,0.28843605766693753,0.04984,2.3246898651123047,0.18984,0.11482700146734715,0.0357 +2068,10.453032915364801,0,0,0.5667797034203987,4.844370092353639,7.614909569422404,0.94466,17.48080603281657,1.8528200000000001,116.05600802103679,6.5405798,39.66962464650472,3.5999999999999997e-4,12.536799987157186,0.00268856684,9.053280512491861,0.231738398,100.1898021697998,4.48888,302.26894124348956,0.00162,6.04381004969279,122.3776,0,515.1495590209961,4955.11824,1869.4595845540362,319.1755190167173,558.8949534098307,592.842746503137,6.207770784695943,6.82664664,3.56155002117157,0.1204598228,11.764140208562216,0.04797140959999999,251.8949851989746,210.24353399999998,117.0402463277181,140.9227,178.57703145345053,81.22414,4.051160971323649,3.09508194,27.45810031890869,0.03478,9.424500385920206,29.5145868,0.09495070079962413,0.09262000000000001,1.1079500516255696,3.24418194,0.15789799516399702,0.312913958,368.0339736938476,7.434262349538898,73.32456107022088,165.81106010142702,29.93646275176812,21.72072584294695,-0.21544454690394416,16.596101601918537,1.86022,21399.31029320887,0,0.2721420576175054,0.04526,2.297869861125946,0.18216,0.11140000199278195,0.034 +2069,10.335968082509762,0,0,0.5850982463448676,4.757865056711383,7.655289530754089,0.92578,16.862706184387207,1.7173100000000001,116.50100708007812,6.409860999999999,39.21222496032715,2.8e-4,12.46590002377828,0.0022404723699999997,9.044490575790405,0.22206797900000003,98.34160550435384,4.27004,299.08594512939453,0.0012100000000000001,6.022499918937683,122.03205,0,513.2725423177084,4941.540419999999,1861.4295857747393,317.90727934773906,561.4309590657552,585.2262446193569,5.881310701370239,6.381944969999999,3.366510013739268,0.1000452594,10.775836706161499,0.03211227829999999,253.7449862162272,210.995272,116.51430384318034,141.2022,180.63203303019205,81.64572,4.042370994885762,3.0681787199999997,27.335599899291992,0.031939999999999996,9.478560447692871,29.723415900000003,0.08823220121363799,0.08506,1.1051500538984935,3.25060892,0.15513399367531142,0.310629914,368.57298024495435,7.391436857485229,73.0945525550268,164.08657337639247,29.616154748821714,21.42464239649262,-0.2148254955697588,16.667601267496746,1.81806,21194.62894177053,0,0.25672704974810284,0.04068,2.2711498936017356,0.17448,0.10806300180653731,0.032299999999999995 +2070,10.218903249654723,0,0,0.6034167892693365,4.671360021069128,7.694839596748352,0.9069,16.264405886332195,1.5818,116.93600718180339,6.2791422,38.759724934895836,2e-4,12.39520009358724,0.0017923779,9.035380681355795,0.21239756,96.52150980631511,4.0512,295.93394724527997,8e-4,6.001338879267375,121.6865,0,511.4133580525716,4927.9626,1853.579600016276,316.6390396787608,563.9249572753906,577.6097427355768,5.570590694745381,5.9372433,3.1814799904823303,0.079630696,9.869203805923462,0.016253147,255.55798467000326,211.74701,116.03035990397136,141.4817,182.67002868652344,82.0673,4.032731016476949,3.0412755,27.213300069173176,0.0291,9.532890637715658,29.932245,0.08189100089172523,0.0775,1.1027300556500752,3.2570359,0.15247799456119537,0.30834587,369.0989786783854,7.348611365431561,72.86454403983271,162.3620866513579,29.295846745875306,21.128558950038283,-0.2141870615000121,16.737301190694172,1.7759,20989.94759033219,0,0.24214604745308557,0.0361,2.244529942671458,0.1668,0.10481500253081322,0.0306 +2071,10.022123074084453,0,0,0.6357861116318215,4.583232100087865,7.733579556147258,0.8724000000000001,15.685505469640097,1.50882,117.36300722757976,6.0402344,38.312124252319336,1.8e-4,12.325000127156576,0.001657949557,9.025960604349772,0.205751345,94.72951253255208,3.9091199999999997,292.8129475911458,7.300000000000001e-4,5.98034143447876,121.05505,0,509.57083384195965,4903.14712,1845.9095967610674,315.26586406164137,566.3799591064453,569.9106122339339,5.275050640106201,5.6829841299999995,3.0060199896494546,0.0739077507,9.037550926208496,0.014775588179999999,257.33398691813153,212.058223,115.58440971374512,141.98742,184.69203186035156,82.27609,4.02229102452596,3.0189421,27.091100215911865,0.027620000000000002,9.587490479151407,30.0743377,0.07586420079072316,0.07356,1.1006600459416707,3.26868612,0.1499249947567781,0.306884574,369.6109771728515,7.2733105823234565,72.56882330195582,160.78223455750415,29.109231157572268,20.828373160548903,-0.2135143927132771,16.805201371510822,1.72584,20819.24604127862,0,0.2283590460817019,0.03408,2.2180199027061462,0.16155,0.10165300158162911,0.029509999999999998 +2072,9.825342898514183,0,0,0.6681554339943065,4.495104179106602,7.771169622739156,0.8379,15.125405550003052,1.43584,117.77700678507487,5.8013265999999994,37.86952431996664,1.6e-4,12.255100091298422,0.001523521214,9.01624059677124,0.19910513000000002,92.96551577250163,3.7670399999999997,289.7229410807292,6.6e-4,5.953704595565796,120.4236,0,507.27686818440753,4878.331639999999,1838.3395894368487,313.8926884445219,568.771962483724,562.2114817322908,4.993930657704671,5.428724959999999,2.839649975299835,0.06818480539999999,8.27461838722229,0.01329802936,259.06298573811847,212.36943599999998,115.17846743265788,142.49313999999998,186.6880315144857,82.48488,4.011090993881226,2.9966087,26.9690998395284,0.02614,9.640540520350138,30.2164304,0.07028279950221379,0.06962,1.098960041999817,3.28033634,0.14747499426205954,0.305423278,370.10597483317054,7.1980097992153524,72.27310256407893,159.20238246365042,28.922615569269233,20.52818737105952,-0.21280748920955392,16.871301492055256,1.67578,20648.54449222505,0,0.21532504260540009,0.03206,2.1916398803393045,0.1563,0.0985761017849048,0.028419999999999997 +2073,9.628562722943915,0,0,0.7005247563567916,4.406976258125339,7.807259599367778,0.8034,14.58370534578959,1.36286,118.17500559488933,5.5624188,37.4317242304484,1.4000000000000001e-4,12.185500065485636,0.0013890928710000002,9.006240447362265,0.192458915,91.22931671142578,3.6249599999999997,286.6639455159505,5.9e-4,5.91978391011556,119.79215,0,504.3760732014974,4853.51616,1830.789581298828,312.5195128274025,571.0829620361328,554.5123512306479,4.7264905373255415,5.17446579,2.6818900307019553,0.0624618601,7.574656128883362,0.01182047054,260.72998809814453,212.680649,114.81251970926921,142.99886,188.65103149414062,82.69367,3.999211092789968,2.9742753,26.84720007578532,0.02466,9.69040052096049,30.358523100000003,0.06525460009773572,0.06568,1.0976400474707286,3.2919865600000002,0.14512799431880316,0.303961982,370.5819778442382,7.122709016107248,71.97738182620205,157.62253036979666,28.735999980966195,20.22800158157014,-0.21206635098884247,16.935301303863525,1.62572,20477.842943171476,0,0.20300504316886267,0.03004,2.165389915307363,0.15105000000000002,0.09558180222908656,0.02733 +2074,9.431782547373645,0,0,0.7328940787192766,4.318848337144076,7.841869632403056,0.7689,14.059905211130777,1.2898800000000001,118.55700556437175,5.323511,36.99862321217855,1.2e-4,12.116300026575724,0.001254664528,8.995960632960001,0.1858127,89.52062034606934,3.4828799999999998,283.63594309488934,5.200000000000001e-4,5.883933385213216,119.1607,0,501.2891337076823,4828.70068,1823.259582519531,311.14633721028304,573.3139597574869,546.813220729005,4.472240606943767,4.92020662,2.5323700110117593,0.0567389148,6.932613929112752,0.01034291172,262.3389841715495,212.991862,114.4835688273112,143.50458,190.5800348917643,82.90246,3.986670990784963,2.9519419,26.72559992472331,0.02318,9.737470626831055,30.500615800000002,0.0606852009271582,0.06174,1.0966600477695465,3.30363678,0.14287899558742842,0.302500686,371.0379740397135,7.047408232999144,71.68166108832516,156.04267827594293,28.549384392663157,19.927815792080757,-0.2112909780511428,16.99730094273885,1.57566,20307.141394117905,0,0.19136304035782814,0.02802,2.1392698884010315,0.14579999999999999,0.09266840231915315,0.02624 +2075,9.235002371803375,0,0,0.7652634010817616,4.2307204161628125,7.874979654947917,0.7343999999999999,13.553505102793375,1.2169,118.92300605773926,5.0846032,36.570423444112144,1e-4,12.047399997711182,0.001120236185,8.985430479049683,0.179166485,87.83922449747722,3.3407999999999998,280.6369400024414,4.5000000000000004e-4,5.847622950871785,118.52925,0,498.15228271484375,4803.8852,1815.749593098958,309.77316159316365,575.4659678141276,539.1140902273621,4.230640570322673,4.66594745,2.3906899889310202,0.0510159695,6.3438219626744585,0.0088653529,263.89098358154297,213.30307499999998,114.19061787923177,144.0103,192.47803370157877,83.11125,3.9734909931818643,2.9296084999999996,26.604100068410236,0.0217,9.782100280125936,30.6427085,0.05649640100697676,0.057800000000000004,1.0959900418917339,3.315287,0.1407219941417376,0.30103939,371.474978129069,6.972107449891039,71.38594035044827,154.46282618208917,28.362768804360122,19.627630002591378,-0.2104813703964548,17.05720106760661,1.5256,20136.439845064335,0,0.1803650384147962,0.026000000000000002,2.1132999062538147,0.14055,0.08983440138399601,0.02515 +2076,9.038222196233106,0,0,0.7976327234442466,4.14259249518155,7.906599601109822,0.6999,13.064004898071289,1.14392,119.27200571695964,4.8456954,36.14682388305664,8e-5,11.978900035222372,9.85807842e-4,8.974640528361002,0.17252027,86.18502553304036,3.19872,277.668950398763,3.800000000000001e-4,5.811272382736206,117.8978,0,495.00822194417316,4779.0697199999995,1808.2595926920571,308.3999859760442,577.5399678548177,531.4149597257191,4.001200497150421,4.41168828,2.2564900120099387,0.045293024200000004,5.804000059763591,0.007387794080000001,265.3879903157552,213.614288,113.92965952555339,144.51602,194.34403228759766,83.32003999999999,3.9597010215123496,2.9072750999999997,26.482800165812176,0.020220000000000002,9.82459044456482,30.7848012,0.05262360100944837,0.053860000000000005,1.0956000288327534,3.32693722,0.13865199436744055,0.299578094,371.8909835815429,6.896806666782935,71.09021961257137,152.88297408823541,28.176153216057084,19.327444213101998,-0.2096375280247786,17.115001042683918,1.47554,19965.738296010764,0,0.16997603327035904,0.02398,2.087489902973175,0.1353,0.08707790200908978,0.024059999999999998 +2077,8.841442020662836,0,0,0.8300020458067316,4.054464574200287,7.936729709307353,0.6654,12.590904792149862,1.07094,119.60600471496582,4.6067876,35.72792307535807,6.000000000000002e-5,11.910800059636435,8.513794990000002e-4,8.963610331217447,0.165874055,84.55772844950359,3.05664,274.7299448649089,3.1000000000000005e-4,5.775001962979634,117.26635,0,491.87221272786456,4754.254239999999,1800.799591064453,307.02681035892476,579.5369618733724,523.7158292240762,3.7834004561106362,4.157429110000001,2.129419982433319,0.03957007890000001,5.309168418248494,0.0059102352600000005,266.83198801676434,213.925501,113.69970258076985,145.02174,196.17903264363608,83.52883,3.945310970147451,2.8849416999999997,26.3618000348409,0.01874,9.865220546722412,30.9268939,0.04901850068320831,0.049920000000000006,1.0954400499661763,3.33858744,0.1366649977862835,0.298116798,372.2889785766601,6.821505883674831,70.79449887469448,151.30312199438168,27.989537627754046,19.027258423612615,-0.2087594509361142,17.17080084482829,1.42548,19795.036746957194,0,0.16016403461496034,0.02196,2.0618399182955423,0.13005,0.08439840190112591,0.022969999999999997 +2078,8.644661845092568,0,0,0.8623713681692168,3.966336653219024,7.965369741121928,0.6309,12.13380471865336,0.99796,119.92300478617351,4.3678798,35.31362247467041,3.9999999999999996e-05,11.843000014623007,7.16951156e-4,8.952350378036499,0.15922783999999998,82.95703188578288,2.91456,271.81994374593097,2.3999999999999998e-4,5.7388414939244585,116.63490000000002,0,488.7471745808919,4729.43876,1793.3695882161455,305.6536347418053,581.4579722086588,516.0166987224333,3.5767604311307273,3.90316994,2.00914000471433,0.033847133599999996,4.8556768496831255,0.00443267644,268.22398885091144,214.236714,113.49873924255371,145.52746000000002,197.98303349812826,83.73761999999999,3.9303409655888877,2.8626082999999998,26.240900198618572,0.017259999999999998,9.904220501581827,31.068986600000002,0.04563070057580868,0.04598,1.095510055621465,3.3502376600000003,0.13475499426325163,0.296655502,372.6669820149739,6.746205100566727,70.4987781368176,149.72326990052792,27.80292203945101,18.727072634123235,-0.20784713913046154,17.22450129191081,1.37542,19624.33519790362,0,0.1508990302681923,0.01994,2.036349892616272,0.1248,0.08179440225164096,0.021879999999999997 +2079,8.447881669522298,0,0,0.8947406905317018,3.878208732237761,7.992519815762837,0.5963999999999999,11.69210433959961,0.92498,120.22400601704915,4.128971999999999,34.904022534688316,1.9999999999999998e-5,11.775499900182089,5.82522813e-4,8.940860430399576,0.152581625,81.38273493448894,2.77248,268.939946492513,1.7e-4,5.7028108437856035,116.00345000000002,0,485.6341069539388,4704.62328,1785.9695841471353,304.2804591246859,583.303965250651,508.31756822079024,3.3807804187138877,3.64891077,1.8953100045522053,0.0281241883,4.440165400505066,0.0029551176199999994,269.5669860839844,214.547927,113.32377370198567,146.03318000000002,199.7580312093099,83.94641,3.914820969104767,2.8402749,26.12030013402303,0.015780000000000002,9.941810448964437,31.2110793,0.04242380087574323,0.04204,1.0957800447940826,3.3618878800000003,0.13291799649596214,0.295194206,373.026980082194,6.670904317458623,70.20305739894071,148.1434178066742,27.616306451147974,18.426886844633852,-0.20690059260782065,17.276201089223225,1.32536,19453.63364885005,0,0.1421530283987522,0.017920000000000002,2.011029918988546,0.11954999999999999,0.07926310102144878,0.020789999999999996 +2080,8.251101493952028,0,0,0.9271100128941868,3.790080811256498,8.018179575602213,0.5619,11.265604416529337,0.852,120.50900522867839,3.8900642,34.4988218943278,0,11.708400090535482,4.4809447e-4,8.929160356521606,0.14593541,79.8346373240153,2.6304,266.08894602457684,1e-4,5.666891256968181,115.37200000000001,0,482.53521219889325,4679.8078,1778.5995992024737,302.90728350756643,585.0739695231119,500.6184377191473,3.195000390211741,3.3946516000000004,1.7876299917697906,0.022401243,4.059534152348836,0.0014775588,270.8619867960612,214.85914,113.17480913798015,146.5389,201.50303268432617,84.1552,3.8987709482510886,2.8179415,25.999900023142498,0.0143,9.978170474370321,31.353172,0.039367799957593284,0.0381,1.0962200462818146,3.3735381,0.13114999483029047,0.29373291,373.36697387695307,6.595603534350519,69.90733666106382,146.56356571282043,27.429690862844936,18.126701055144473,-0.20591981136819149,17.32580105463664,1.2753,19282.93209979648,0,0.13389802972475687,0.0159,1.9858899315198262,0.1143,0.07680310122668743,0.0197 +2081,7.989282821813316,0,0,0.9522100465623046,3.713470578890971,8.042349735895792,0.5555399999999999,10.853604157765707,0.81269,120.77700424194336,3.84606461,34.09822209676107,0,11.641600131988525,4.25689747e-4,8.91726040840149,0.141363939,78.3124402364095,2.53814,263.26694742838544,9e-5,5.6310966809590655,115.25560000000002,0,479.449457804362,4675.23754,1771.2696228027341,302.49818755839715,586.7699686686198,493.40128234345275,3.018950363000234,3.2492708500000003,1.6857899924119313,0.020790642680000002,3.71090296904246,0.0013462202399999999,272.1109873453776,215.436683,113.04883829752605,147.56354000000002,203.21903483072916,84.37398999999999,3.882210930188497,2.80653492,25.879599889119465,0.01358,10.013500610987345,31.5408237,0.03643770019213358,0.036180000000000004,1.0968200266361237,3.3971211500000003,0.1294469969968001,0.293536433,373.688980102539,6.5422744289478985,69.65501721776842,144.96699508621415,27.21491432601419,17.88351626459064,-0.20491247017033,17.373301029205322,1.23543,19015.269180450294,0,0.12610802613198757,0.01501,1.960929940144221,0.11069999999999999,0.07441290219624837,0.01899 +2082,7.727464149674605,0,0,0.9773100802304222,3.6368603465254443,8.065629800160727,0.54918,10.455703973770142,0.77338,121.03600374857585,3.8020650199999997,33.70202159881592,0,11.575200080871582,4.03285024e-4,8.905170520146688,0.136792468,76.81594212849934,2.44588,260.4729461669922,8e-5,5.604650656382243,115.13920000000002,0,477.0971501668294,4670.66728,1764.149668375651,302.08909160922786,588.3779602050781,486.1841269677582,2.852200369040171,3.1038901000000005,1.5894900063673656,0.01918004236,3.3916918635368347,0.00121488168,273.32198333740234,216.014226,112.95989926656087,148.58818000000002,204.90703328450522,84.59277999999999,3.8653409481048584,2.7951283399999998,25.759699821472168,0.01286,10.048900604248047,31.7284754,0.03372279989222685,0.03426,1.0978000462055206,3.4207042000000003,0.12782099470496178,0.293339956,373.99497731526685,6.488945323545277,69.402697774473,143.37042445960788,27.00013778918344,17.640331474036806,-0.20387856901423604,17.41900110244751,1.1955600000000002,18747.60626110411,0,0.11875802526871364,0.01412,1.9361599286397297,0.1071,0.0720901017387708,0.018279999999999998 +2083,7.465645477535894,0,0,1.00241011389854,3.560250114159918,8.088639736175537,0.54282,10.071703910827637,0.73407,121.29300435384114,3.75806543,33.31022103627523,0,11.509100039800009,3.80880301e-4,8.892900387446085,0.13222099699999998,75.34474563598633,2.35362,257.7069447835286,7.000000000000001e-5,5.590150753657023,115.0228,0,475.7181752522786,4666.097019999999,1757.4096679687498,301.6799956600586,589.8859710693359,478.96697159206354,2.694350302219391,2.9585093500000004,1.4984899858633678,0.01756944204,3.099490841229757,0.00108354312,274.5049819946289,216.591769,112.92096900939941,149.61282,206.57003275553384,84.81157,3.8484009504318237,2.78372176,25.639999866485596,0.01214,10.08560053507487,31.9161271,0.03128570023303231,0.03234,1.0993500451246898,3.44428725,0.12628299494584402,0.29314347900000004,374.2859776814778,6.4356162181426555,69.15037833117759,141.7738538330016,26.785361252352693,17.397146683482973,-0.20281810789990976,17.46310059229533,1.15569,18479.943341757924,0,0.11182402384777863,0.01323,1.9115799367427826,0.1035,0.06983340034882228,0.01757 +2084,7.203826805397182,0,0,1.0275101475666577,3.483639881794391,8.111379702885946,0.5364599999999999,9.700893719991049,0.6947599999999999,121.54600397745769,3.71406584,32.92282168070475,0,11.443400065104166,3.58475578e-4,8.8804403146108,0.12764952599999999,73.89864921569824,2.26136,254.96994654337564,6e-5,5.579120794932048,114.9064,0,474.66401926676434,4661.52676,1751.0296732584634,301.2708997108893,591.2959747314453,471.74981621636897,2.5449703335762024,2.8131286,1.412500003973643,0.01595884172,2.832089920838674,9.522045599999999e-4,275.6619822184245,217.169312,112.93003209431966,150.63746,208.20703252156576,85.03036,3.8314009308815002,2.77231518,25.520699977874756,0.01142,10.123500426610311,32.1037788,0.029078100342303514,0.030420000000000003,1.1014400621255238,3.4678703,0.1248279952754577,0.292947002,374.563980102539,6.382287112740035,68.89805888788217,140.17728320639532,26.570584715521946,17.15396189292914,-0.20173108682735116,17.50550079345703,1.11582,18212.28042241174,0,0.10528402092556159,0.01234,1.887189934651057,0.09989999999999999,0.06764140166342258,0.01686 +2085,6.94200813325847,0,0,1.0526101812347755,3.407029649428864,8.133829752604166,0.5301,9.343033711115519,0.65545,121.7960033416748,3.6700662499999996,32.53972085316976,0,11.377999941507975,3.36070855e-4,8.867820501327515,0.12307805499999999,72.4772497812907,2.1691,252.25995254516602,5e-5,5.569210569063823,114.79,0,473.7285970052083,4656.9565,1744.9797159830728,300.86180376172,592.6089782714844,464.5326608406744,2.403670291105906,2.6677478500000005,1.331270009279251,0.0143482414,2.587429086367289,8.20866e-4,276.79298909505206,217.74685499999998,112.98309071858723,151.6621,209.82003275553384,85.24915,3.8143309156099954,2.7609086,25.401700019836426,0.010700000000000001,10.162500540415445,32.291430500000004,0.02706520026549697,0.0285,1.1039900581041973,3.49145335,0.12345099573334058,0.292750525,374.82897949218744,6.328958007337414,68.64573944458677,138.580712579789,26.3558081786912,16.910777102375306,-0.20061750579656007,17.546300888061523,1.0759500000000002,17944.617503065554,0,0.09911571939786275,0.01145,1.86299995581309,0.0963,0.06551310109595458,0.016149999999999998 +2086,6.680189461119759,0,0,1.0777102149028932,3.330419417063337,8.156009753545126,0.52374,8.997673670450846,0.61614,122.04300435384114,3.6260666599999998,32.161020596822105,0,11.312999963760376,3.13666132e-4,8.855030377705893,0.118506584,71.08045323689778,2.07684,249.57794952392578,4e-5,5.559770425160726,114.67360000000001,0,472.8476206461589,4652.38624,1739.2397359212237,300.45270781255067,593.8249664306641,457.3155054649798,2.270050287246704,2.5223671000000003,1.2545700073242188,0.012737641079999999,2.3636182943979898,6.8952744e-4,277.8999837239583,218.324398,113.0781478881836,152.68674000000001,211.4080327351888,85.46794,3.797230899333954,2.74950202,25.283099969228108,0.00998,10.202500422795614,32.4790822,0.025213300560911495,0.02658,1.1069600383440654,3.5150364,0.12214899497727554,0.292554048,375.07997894287104,6.275628901934793,68.39342000129136,136.98414195318273,26.14103164186045,16.667592311821473,-0.1994773648075367,17.585501035054524,1.0360800000000001,17676.95458371937,0,0.09329851965109508,0.01056,1.8390199144681294,0.0927,0.06344720162451267,0.015439999999999999 +2087,6.418370788981047,0,0,1.1028102485710107,3.2538091846978103,8.177909771601358,0.51738,8.664433399836222,0.57683,122.2870044708252,3.58206707,31.786420504252117,0,11.248300075531006,2.91261409e-4,8.842080354690552,0.113935113,69.70795567830403,1.98458,246.9239501953125,3.000000000000001e-5,5.5506203174591064,114.55720000000001,0,471.9994532267253,4647.81598,1733.7997131347654,300.0436118633814,594.9449768066406,450.09835008928525,2.1437203089396157,2.37698635,1.182149996360143,0.01112704076,2.1589175860087075,5.5818888e-4,278.9859873453776,218.901941,113.21320215861003,153.71138000000002,212.9740333557129,85.68673,3.7801009019215903,2.73809544,25.164799849192303,0.009260000000000001,10.243600447972616,32.6667339,0.02349680041273435,0.02466,1.1103300551573436,3.53861945,0.12091699490944545,0.29235757100000004,375.3179829915364,6.222299796532171,68.14110055799594,135.38757132657645,25.926255105029703,16.42440752126764,-0.19831066386028096,17.623000621795654,0.99621,17409.291664373184,0,0.0878145198027293,0.00967,1.81523992617925,0.0891,0.061441500981648765,0.01473 +2088,6.156552116842336,0,0,1.1279102822391285,3.177198952332284,8.199539740880331,0.51102,8.342933495839437,0.53752,122.5290044148763,3.5380674799999996,31.416120211283367,0,11.183900038401285,2.68856686e-4,8.82899022102356,0.10936364199999998,68.3592586517334,1.8923199999999998,244.29595057169595,1.9999999999999998e-5,5.541690230369568,114.4408,0,471.17743428548175,4643.24572,1728.6197611490884,299.6345159142121,595.9699757893881,442.8811947135906,2.0243202447891235,2.2316056,1.1137999991575878,0.009516440439999998,1.971736917893092,4.268503199999999e-4,280.04998779296875,219.47948399999999,113.38525072733562,154.73602,214.51703262329102,85.90552000000001,3.7629409035046897,2.7266888600000003,25.046799818674724,0.008539999999999999,10.285600423812866,32.8543856,0.02189210057258606,0.02274,1.1140300532182057,3.5622024999999997,0.11975099456806977,0.292161094,375.5419794718424,6.168970691129551,67.88878111470054,133.79100069997017,25.711478568198956,16.181222730713806,-0.1971174029547928,17.65890073776245,0.95634,17141.628745027,0,0.08264491831262906,0.00878,1.7916699548562367,0.08549999999999999,0.05949390151848396,0.01402 +2089,5.894733444703624,0,0,1.1530103159072462,3.100588719966757,8.220889806747437,0.50466,8.032783309618631,0.49821,122.76700401306152,3.4940678899999997,31.050020058949787,0,11.119900226593018,2.46451963e-4,8.815750360488892,0.10479217099999999,67.03426106770833,1.80006,241.69595082600912,9.999999999999999e-6,5.532969991366069,114.3244,0,470.3773371378581,4638.67546,1723.709767659505,299.2254199650428,596.8999786376953,435.66403933789604,1.9115002353986104,2.0862248500000002,1.0492899815241497,0.007905840119999999,1.8006063501040142,2.955117599999998e-4,281.09599049886066,220.057027,113.59129587809245,155.76066,216.03803380330405,86.12431000000001,3.7457709113756814,2.7152822800000003,24.929200172424316,0.00782,10.328600406646729,33.042037300000004,0.02037210048486789,0.020819999999999998,1.1180600424607594,3.5857855499999998,0.11864799447357655,0.291964617,375.75297800699866,6.11564158572693,67.63646167140512,132.1944300733639,25.49670203136821,15.938037940159973,-0.19589758209107225,17.693100770314533,0.9164700000000001,16873.965825680814,0,0.07777181640267372,0.00789,1.7683099607626598,0.0819,0.05760330085953077,0.013309999999999999 +2090,5.632914772564913,0,0,1.178110349575364,3.02397848760123,8.24196974436442,0.4983,7.733643094698588,0.4589,123.0020039876302,3.4500683,30.68801975250244,0,11.05620002746582,2.2404724e-4,8.802380243937174,0.1002207,65.73266474405925,1.7078,239.121950785319,0,5.52442987759908,114.208,0,469.59930928548175,4634.1052,1719.0297749837237,298.81632401587353,597.7349751790365,428.44688396220147,1.8049102028210957,1.9408441000000003,0.9884230047464371,0.0062952398,1.6441757877667744,1.641732e-4,282.1219838460286,220.63457,113.83134206136067,156.7853,217.53803507486978,86.3431,3.7286009192466736,2.7038757,24.811999956766766,0.0071,10.372400522232056,33.229689,0.018922200271238882,0.0189,1.122370054324468,3.6093686,0.11760499514639378,0.29176814,375.95097605387366,6.062312480324309,67.38414222810971,130.5978594467576,25.28192549453746,15.69485314960614,-0.19465120126911933,17.72570053736369,0.8766,16606.30290633463,0,0.07318021543323994,0.006999999999999999,1.7451599438985188,0.0783,0.055768901482224464,0.0126 +2091,5.464851785459314,0,0,1.1912898267714418,2.986676293318784,8.262759764989218,0.49533000000000005,7.445133010546367,0.43762,123.23500315348308,3.4294784899999997,30.330119768778484,0,10.992899894714355,2.01642516e-4,8.788880427678427,0.0970558359,64.45406436920166,1.6476899999999999,236.5749537150065,0.0012000000000000001,5.5160893201828,114.15364,0,468.8411636352539,4631.96653,1714.5697733561196,298.4499852752869,598.4769846598307,424.09432595251445,1.7042202254136403,1.8667949400000003,0.9310069928566614,0.00775867862,1.5011952916781108,0.00105070848,283.1319859822591,219.413929,114.10138003031413,156.47905,219.01803334554037,85.86515,3.711440940697988,2.67444168,24.695200125376385,0.00639,10.417100350062052,33.119821,0.0175356005008022,0.01701,1.1269400417804718,3.60232404,0.1166179950038592,0.289520936,376.136983235677,6.011876245468622,67.18268569760374,129.60794854873714,25.119098236319086,15.57933439922039,-0.19339087885091613,17.75670051574707,0.86816,16489.19655346549,0,0.06885441516836484,0.0070999999999999995,1.7222299476464589,0.07583,0.05398850173999866,0.012150000000000001 +2092,5.296788798353715,0,0,1.2044693039675196,2.9493740990363384,8.28335976600647,0.49236,7.166922887166341,0.41634,123.4650026957194,3.40888868,29.97621949513753,0,10.92989993095398,1.7923779199999998e-4,8.775260289510092,0.0938909718,63.198168436686196,1.58758,234.05295181274414,0.0024000000000000002,5.50903848807017,114.09928,0,468.18971252441406,4629.82786,1710.3397725423174,298.0836465347003,599.1499837239584,419.74176794282744,1.6091302037239075,1.7927457800000002,0.8768570025761923,0.00922211744,1.370544840892156,0.0019372437600000002,284.08198801676434,218.193288,114.36434682210286,156.1728,220.45403289794922,85.387200000000007,3.693980892499288,2.64500766,24.578800042470295,0.00568,10.456400553385416,33.009953,0.016201700161521632,0.01512,1.131160060564677,3.59527948,0.115659994383653,0.287273732,376.3099797566731,5.961440010612936,66.9812291670978,128.61803765071667,24.956270978100708,15.463815648834641,-0.19211661483646256,17.78670088450114,0.85972,16372.090200596343,0,0.06477791319290797,0.0072,1.6995199422041576,0.07336,0.05226150124023358,0.0117 +2093,5.128725811248116,0,0,1.2176487811635974,2.9120719047538923,8.30381973584493,0.48939,6.898682753245036,0.39505999999999997,123.69300333658855,3.38829887,29.626419226328533,0,10.867299954096476,1.56833068e-4,8.761530240376791,0.0907261077,61.964871088663735,1.5274699999999999,231.55795415242514,0.0036,5.503578424453735,114.04492,0,467.6724217732747,4627.68919,1706.3197937011716,297.7173077941136,599.7759857177734,415.38920993314036,1.5193501710891724,1.7186966200000002,0.8257929980754852,0.01068555626,1.2511644164721172,0.00282377904,284.9319839477539,216.972647,114.58227348327637,155.86655000000002,221.8220329284668,84.90925,3.675930897394816,2.61557364,24.46269989013672,0.0049700000000000005,10.485000610351562,32.900085000000004,0.014911400154232979,0.01323,1.1345200339953105,3.58823492,0.11470699496567249,0.285026528,376.4699834187825,5.911003775757249,66.77977263659184,127.62812675269622,24.793443719882333,15.348296898448892,-0.19082840922575872,17.816300710042317,0.85128,16254.983847727202,0,0.060936913515130676,0.007299999999999999,1.6770199636618297,0.07089,0.05058690067380667,0.01125 +2094,4.960662824142517,0,0,1.2308282583596752,2.8747697104714467,8.324159622192383,0.48642,6.640072703361511,0.37378,123.92100397745769,3.36770906,29.280519008636475,0,10.804999987284342,1.34428344e-4,8.747690280278524,0.0875612436,60.753673235575356,1.4673599999999998,229.0889549255371,0.0048000000000000004,5.498678366343181,113.99056,0,467.20837656656903,4625.55052,1702.509826660156,297.35096905352697,600.35498046875,411.03665192345335,1.4345701734224956,1.64464746,0.777648001909256,0.012148995079999999,1.1421140134334564,0.0037103143200000006,285.6849873860677,215.752006,114.7602310180664,155.5603,223.1250343322754,84.43130000000001,3.6573208769162497,2.58613962,24.347100257873535,0.00426,10.504300594329834,32.790217000000005,0.013657400229324898,0.01134,1.137110044558843,3.58119036,0.11375999512771766,0.282779324,376.6189804077148,5.860567540901562,66.57831610608588,126.63821585467575,24.63061646166396,15.232778148063144,-0.1895262620188046,17.845600605010986,0.84284,16137.87749485806,0,0.05732031166553497,0.0073999999999999995,1.6547499597072601,0.06842,0.048962900415062904,0.0108 +2095,4.792599837036918,0,0,1.244007735555753,2.8374675161890006,8.344359715779623,0.48345000000000005,6.390772620836894,0.35250000000000004,124.14700444539388,3.34711925,28.938618342081707,0,10.743099927902222,1.1202362e-4,8.73373015721639,0.08439637950000001,59.56427510579427,1.40725,226.64595413208008,0.006,5.494038263956706,113.9362,0,466.77227783203125,4623.41185,1698.8798421223955,296.98463031294034,600.8859812418619,406.68409391376633,1.3545301755269368,1.5705983000000001,0.7322639922300974,0.013612433899999998,1.0424936811129253,0.0045968496,286.34498596191406,214.531365,114.90117454528809,155.25405,224.36403528849283,83.95335,3.638170858224233,2.5567056,24.231899897257488,0.00355,10.515600522359213,32.68034900000001,0.012433500261977315,0.00945,1.1390400528907776,3.5741458,0.11281799525022507,0.28053212,376.75598144531244,5.810131306045876,66.37685957557991,125.64830495665528,24.467789203445584,15.117259397677394,-0.18821017321560013,17.87450059254964,0.8344,16020.771141988916,0,0.05391401114563147,0.0075,1.6326899528503418,0.06595,0.04738770052790642,0.010350000000000002 +2096,4.624536849931319,0,0,1.2571872127518307,2.8001653219065545,8.364439646402994,0.48048,6.150482575098674,0.33122,124.37100410461426,3.32652944,28.600518703460693,0,10.681399981180826,8.961889599999999e-5,8.719670295715332,0.08123151540000001,58.396477381388344,1.34714,224.22695668538412,0.0072,5.489558219909668,113.88184,0,466.354248046875,4621.27318,1695.4298299153643,296.6182915723537,601.3659871419271,402.3315359040793,1.2789801557858784,1.4965491400000002,0.6894840002059937,0.01507587272,0.9515123764673868,0.00548338488,286.9159876505534,213.310724,115.00813420613606,154.9478,225.54003270467123,83.4754,3.618510822455088,2.5272715800000003,24.117000102996826,0.0028400000000000005,10.51990040143331,32.57048100000001,0.011239900020882487,0.007560000000000001,1.140390048424403,3.5671012400000004,0.1118819968154033,0.278284916,376.88098144531244,5.7596950711901895,66.17540304507396,124.65839405863481,24.304961945227205,15.001740647291644,-0.18688014281614532,17.90310064951579,0.82596,15903.664789119774,0,0.050704910419881344,0.0076,1.6108599702517192,0.06348,0.04585930115232865,0.0099 +2097,4.45647386282572,0,0,1.2703666899479085,2.762863127624109,8.384379704793295,0.47751,5.918892463048299,0.30994,124.59400304158528,3.30593963,28.266318480173748,0,10.620199998219809,6.7214172e-5,8.705520153045654,0.07806665130000001,57.24987983703613,1.28703,221.83395767211914,0.0084,5.485228061676025,113.82748,0,465.9531885782878,4619.13451,1692.1398518880205,296.2519528317671,601.7969818115234,397.9789778943923,1.2076601485411327,1.42249998,0.649165004491806,0.016539311539999997,0.8684190760056177,0.00636992016,287.40098571777344,212.090083,115.0840892791748,154.64155,226.65503311157227,82.99745,3.598340849081675,2.4978375600000002,24.00260019302368,0.002130000000000001,10.518300533294678,32.46061300000001,0.01007140016493698,0.005670000000000001,1.1412200530370076,3.56005668,0.11095099647839864,0.276037712,376.9939854939778,5.709258836334503,65.97394651456801,123.66848316061434,24.14213468700883,14.886221896905896,-0.18553617082044027,17.93130048116048,0.81752,15786.55843625063,0,0.047684310004115105,0.0077,1.58925994237264,0.06101,0.044377400229374565,0.00945 +2098,4.288410875720121,0,0,1.2835461671439863,2.725560933341663,8.404199759165445,0.47454,5.695712288220723,0.28866000000000003,124.81600379943848,3.28534982,27.936017990112305,0,10.559200048446655,4.480944799999998e-5,8.691280285517374,0.0749017872,56.12418270111084,1.2269199999999998,219.46595764160156,0.009600000000000001,5.481027960777283,113.77312,0,465.56617228190106,4616.99584,1689.009847005208,295.8856140911804,602.1769866943359,393.62641988470523,1.1403501530488331,1.34845082,0.6111720005671183,0.01800275036,0.7925388117631277,0.007256455440000001,287.8049850463867,210.869442,115.13305854797363,154.33530000000002,227.71003087361655,82.5195,3.5777008334795632,2.46840354,23.88859971364339,0.0014199999999999994,10.511500597000122,32.35074500000001,0.00891870011885961,0.0037799999999999986,1.141620049873988,3.5530121200000004,0.1100249948600928,0.273790508,377.0959803263346,5.658822601478816,65.77248998406205,122.67857226259389,23.979307428790456,14.770703146520146,-0.18417825722848485,17.959200541178387,0.80908,15669.45208338149,0,0.04484040973087152,0.0078,1.5678699711958568,0.058539999999999995,0.0429413008193175,0.009000000000000001 +2099,4.120347888614522,0,0,1.296725644340064,2.688258739059217,8.423879702885946,0.47157000000000004,5.480652332305908,0.26738000000000006,125.03600311279297,3.2647600100000003,27.60941791534424,0,10.498600085576376,2.240472399999999e-5,8.676940282185873,0.0717369231,55.01918411254883,1.16681,217.12295786539713,0.0108,5.47695791721344,113.71876,0,465.1921157836914,4614.85717,1686.019856770833,295.5192753505938,602.5049794514974,389.2738618750182,1.0768101414044697,1.27440166,0.5753769924243292,0.01946618918,0.7232555647691091,0.00814299072,288.12898508707684,209.648801,115.15601857503255,154.02905,228.7080307006836,82.04155,3.5566108425458274,2.43896952,23.775099913279217,7.099999999999997e-4,10.500300407409668,32.24087700000001,0.007779100211337209,0.0018899999999999993,1.14164004723231,3.5459675600000002,0.10910499468445778,0.271543304,377.18598429361975,5.6083863666231295,65.57103345355608,121.68866136457342,23.816480170572078,14.655184396134398,-0.18280640204027912,17.986700534820557,0.80064,15552.345730512347,0,0.04216210885594288,0.0079,1.546709954738617,0.05607,0.04154930046449105,0.008550000000000002 +2100,3.952284901508923,0,0,1.309905121536142,2.650956544776771,8.443429787953695,0.4686,5.27343225479126,0.24610000000000004,125.25500297546387,3.2441702,27.286617437998455,0,10.438299973805746,0,8.662529945373535,0.068572059,53.93448797861735,1.1066999999999998,214.803955078125,0.012,5.472997943560283,113.6644,0,464.8310852050781,4612.7185,1683.1598612467446,295.15293661000715,602.781982421875,384.9213038653312,1.0168501486380894,1.2003525,0.5416570007801056,0.020929628,0.6600003292163213,0.009029526,288.3779881795247,208.42816,115.15499178568523,153.7228,229.64803187052408,81.5636,3.535070816675822,2.4095355,23.66189988454183,0,10.485400597254435,32.13100900000001,0.006650540046393871,0,1.1413200497627258,3.5389230000000005,0.10819099470973015,0.2692961,377.2639795939127,5.557950131767443,65.36957692305013,120.69875046655295,23.653652912353703,14.539665645748649,-0.18142060525582307,18.01390027999878,0.7922,15435.239377643204,0,0.03964100840191046,0.008,1.5257799824078877,0.0536,0.0401998000840346,0.008100000000000001 +2101,3.9259363354988634,0,0,1.2837070191054192,2.6413543801796,8.462859710057577,0.465476,5.069112181663513,0.24445933333333336,125.47300465901692,3.2225423986666666,26.967517693837483,0,10.378400007883707,0,8.64670991897583,0.06811491194000001,52.890993436177574,1.099322,212.50895818074545,0.01192,5.469137827555339,112.90663733333334,0,464.4820505777995,4581.967043333333,1680.4298706054685,293.99926766335284,603.0049845377604,383.8264145386258,0.9624301294485728,1.19235015,0.5104419887065887,0.020790097146666665,0.6025501141945521,0.00896932916,288.5539855957031,207.03863893333332,115.13396390279134,152.69798133333333,230.53303146362305,81.01984266666666,3.513120790322622,2.39347193,23.54920021692912,0,10.46720059712728,31.916802273333346,0.0055312300100922585,0,1.1407100558280945,3.5153301800000003,0.10728199407458305,0.26750079266666665,377.33198038736975,5.551289456581811,65.27148573035643,120.16257250323007,23.528106974870465,14.514083738066041,-0.18006252228988134,18.04070059458415,0.7869186666666667,15339.117884224057,0,0.03735420728723208,0.007946666666666666,1.5043099919954936,0.05324266666666667,0.03880030009895563,0.008046000000000001 +2102,3.899587769488804,0,0,1.2575089166746962,2.631752215582429,8.482149918874105,0.46235200000000004,4.867892344792684,0.2428186666666667,125.6890042622884,3.2009145973333335,26.65201727549235,0,10.31879997253418,0,8.629550059636435,0.06765776488,51.88739426930746,1.0919439999999998,210.23895899454752,0.01184,5.465427716573079,112.14887466666667,0,464.1479949951172,4551.215586666666,1677.6898295084634,292.84559871669853,603.2179870605469,382.73152521192037,0.914397140343984,1.1843477999999998,0.48159100115299225,0.020650566293333332,0.5503789385159811,0.008909132319999999,288.656987508138,205.64911786666667,115.07289441426595,151.67316266666668,231.36203002929688,80.47608533333333,3.4910008112589517,2.37740836,23.437000274658203,0,10.444100459416708,31.70259554666668,0.00451813005687048,0,1.1395500500996907,3.4917373600000006,0.1063829946021239,0.2657054853333333,377.391980489095,5.54462878139618,65.17339453766274,119.62639453990717,23.402561037387223,14.488501830383434,-0.17873215314245386,18.067200501759846,0.7816373333333333,15242.996390804909,0,0.03527500697722038,0.007893333333333334,1.4823299845059712,0.05288533333333333,0.037357100285589695,0.007992 +2103,3.873239203478745,0,0,1.2313108142439733,2.6221500509852573,8.501309712727865,0.459228,4.674642125765483,0.24117800000000003,125.90400250752766,3.179286796,26.340216954549152,0,10.25949994723002,0,8.612419923146566,0.06720061782,50.90149688720703,1.0845659999999997,207.99295934041342,0.01176,5.461797714233398,111.39111199999999,0,463.82698313395184,4520.46413,1674.809824625651,291.6919297700442,603.458984375,381.636635885215,0.871219128370285,1.17634545,0.45442300538221997,0.02051103544,0.5026787668466568,0.00884893548,288.6849873860677,204.2595968,114.95581944783528,150.648344,232.1340306599935,79.932328,3.468960781892141,2.36134479,23.325299898783367,0,10.414700428644815,31.48838882000001,0.0036903399935302636,0,1.1375900506973267,3.4681445400000004,0.10550099549194177,0.263910178,377.45098114013666,5.537968106210549,65.07530334496904,119.09021657658428,23.277015099903984,14.462919922700829,-0.1774294978135407,18.09350045522054,0.776356,15146.874897385762,0,0.033308506943285465,0.00784,1.4606499870618184,0.052528000000000005,0.035967399987081684,0.007938 +2104,3.846890637468685,0,0,1.2051127118132505,2.612547886388086,8.52031977971395,0.456104,4.48903210957845,0.23953733333333338,126.11700375874837,3.157658994666667,26.031916936238606,0,10.200499931971232,0,8.595320065816244,0.06674347076,49.932899157206215,1.0771879999999998,205.76995849609375,0.01168,5.458157658576965,110.63334933333333,0,463.50499725341797,4489.712673333333,1671.7998250325518,290.5382608233899,603.7239888509115,380.5417465585096,0.8323631385962168,1.1683431,0.4288389980792999,0.020371504586666665,0.45905961592992145,0.00878873864,288.6409861246745,202.87007573333332,114.78775151570638,149.62352533333333,232.85003280639648,79.38857066666667,3.446980814139048,2.34528122,23.214000066121418,0,10.379700342814127,31.274182093333344,0.003014020020297418,0,1.1349200308322906,3.4445517200000006,0.10463299478093784,0.26211487066666667,377.50798034667963,5.531307431024917,64.97721215227534,118.55403861326138,23.151469162420742,14.437338015018222,-0.17615455630314186,18.119600613911945,0.7710746666666667,15050.753403966615,0,0.031447606471677624,0.0077866666666666666,1.4392700095971425,0.05217066666666667,0.03462919996430477,0.007884 +2105,3.8205420714586253,0,0,1.1789146093825278,2.602945721790915,8.5391998291015625,0.45298000000000005,4.3107820351918535,0.2378966666666667,126.32900365193684,3.1360311933333334,25.727216720581055,0,10.141899983088175,0,8.57825001080831,0.06628632370000001,48.98140048980713,1.06981,203.56995900472006,0.0116,5.454477667808533,109.87558666666666,0,463.1780090332031,4458.961216666667,1668.6697998046873,289.3845918767356,604.0119832356771,379.4468572318042,0.7973561336596807,1.16034075,0.4047440042098363,0.020231973733333332,0.41919347643852234,0.0087285418,288.52698771158856,201.48055466666665,114.57168833414714,148.59870666666666,233.5110295613607,78.84481333333332,3.425070822238922,2.3292176500000004,23.103299776713055,0,10.339900334676107,31.059975366666677,0.0024614600115455687,0,1.131630043188731,3.4209589000000005,0.10377999519308408,0.2603195633333333,377.5629755655924,5.524646755839285,64.87912095958166,118.0178606499385,23.025923224937504,14.411756107335615,-0.17490732861125724,18.145500500996906,0.7657933333333333,14954.631910547469,0,0.029685805551707745,0.007733333333333333,1.4181699852148693,0.051813333333333336,0.033340600319206715,0.00783 +2106,3.794193505448566,0,0,1.1527165069518048,2.593343557193744,8.557949860890707,0.44985600000000003,4.139581918716431,0.23625600000000002,126.5390027364095,3.114403392,25.426016489664715,0,10.083599964777628,0,8.5612100760142,0.06582917664,48.04670206705729,1.0624319999999998,201.3939577738444,0.01152,5.450747569402059,109.117824,0,462.8470204671224,4428.20976,1665.4298095703123,288.23092293008125,604.3219858805338,378.3519679050988,0.7657781342665354,1.1523383999999999,0.3820509960254033,0.02009244288,0.3827803507447243,0.00866834496,288.34498596191406,200.0910336,114.31062698364258,147.573888,234.1180305480957,78.30105599999999,3.403220772743225,2.3131540800000003,22.992999871571858,0,10.295800606409708,30.845768640000014,0.0020100399754786244,0,1.1277900437513988,3.3973660800000003,0.10293899476528168,0.25852425599999995,377.6149826049804,5.517986080653654,64.78102976688795,117.48168268661561,22.900377287454265,14.386174199653007,-0.173687814737887,18.17110013961792,0.760512,14858.51041712832,0,0.02801680580402414,0.00768,1.3973700106143951,0.051456,0.03209970022241274,0.007776000000000001 +2107,3.7678449394385067,0,0,1.1265184045210819,2.583741392596573,8.576559782028198,0.446732,3.975161890188853,0.23461533333333337,126.74800300598145,3.0927755906666667,25.12821610768636,0,10.025600035985311,0,8.54420002301534,0.06537202958,47.12860361735026,1.0550539999999997,199.23996098836264,0.01144,5.446967601776123,108.36006133333333,0,462.5110397338867,4397.458303333333,1662.0898030598955,287.07725398342694,604.6499837239584,377.25707857839336,0.7372521311044693,1.14433605,0.3606799965103467,0.019952912026666665,0.34951923539241153,0.008608148119999999,288.0979868570964,198.70151253333333,114.00857353210449,146.54906933333334,234.67203267415366,77.75729866666666,3.381430764993032,2.2970905100000003,22.88320016860962,0,10.248000462849935,30.631561913333346,0.0016412800080919017,0,1.1234500408172607,3.3737732600000006,0.1021079955001672,0.2567289486666666,377.6659825642903,5.511325405468023,64.68293857419425,116.94550472329271,22.774831349971024,14.3605922919704,-0.17249601468303094,18.196500460306805,0.7552306666666666,14762.388923709173,0,0.026434805088986952,0.007626666666666667,1.3768499791622162,0.05109866666666667,0.030904899972180527,0.0077220000000000006 +2108,3.741496373428447,0,0,1.1003203020903591,2.5741392279994013,8.595029830932617,0.443608,3.817251761754354,0.2329746666666667,126.95500373840332,3.071147789333333,24.833916028340656,0,9.96798006693522,0,8.527229944864908,0.06491488252000001,46.226805686950684,1.0476759999999998,197.1089604695638,0.01136,5.443147619565328,107.60229866666666,0,462.17005157470703,4366.706846666667,1658.6497904459634,285.92358503677264,604.9959869384766,376.162189251688,0.7114451279242834,1.1363337,0.34055399646361667,0.019813381173333332,0.3191081260641416,0.00854795128,287.7879867553711,197.31199146666665,113.66852124532063,145.52425066666666,235.17503102620444,77.21354133333332,3.359700779120127,2.2810269400000003,22.773900190989178,0,10.197000503540039,30.41735518666668,0.0013400600000750273,0,1.1186900436878204,3.3501804400000004,0.10128899663686752,0.2549336413333333,377.71498362223304,5.504664730282391,64.58484738150055,116.40932675996983,22.649285412487785,14.335010384287795,-0.17133192844668926,18.22170066833496,0.7499493333333334,14666.267430290027,0,0.024951905012130737,0.007573333333333333,1.3566199839115143,0.05074133333333334,0.029754499749590952,0.007668000000000001 +2109,3.7151478074183872,0,0,1.0741221996596364,2.56453706340223,8.613359769185385,0.44048400000000004,3.66560169061025,0.23133400000000004,127.16100247701009,3.049519988,24.543015638987224,0,9.910649935404459,0,8.510279973347982,0.06445773546,45.34110736846924,1.040298,194.99996058146158,0.01128,5.439287543296814,106.84453599999999,0,461.82506052652997,4335.95539,1655.1197916666665,284.76991609011833,605.3569793701172,375.0672999249826,0.6880561312039694,1.1283313499999998,0.32159700493017834,0.01967385032,0.29132603108882904,0.00848775444,287.41698964436847,195.9224704,113.29147402445476,144.499432,235.6270294189453,76.66978399999999,3.3380207419395447,2.2649633700000003,22.66509993871053,0,10.143100579579672,30.203148460000012,0.0010940300029081602,0,1.1135400434335072,3.3265876200000006,0.10047999583184719,0.25313833399999996,377.7629826863606,5.498004055096759,64.486756188806865,115.87314879664693,22.523739475004543,14.309428476605188,-0.17019555602886186,18.246700445810955,0.744668,14570.145936870878,0,0.02354440496613582,0.00752,1.3366600076357524,0.050384000000000005,0.028646700084209442,0.007614000000000001 +2110,3.688799241408328,0,0,1.0479240972289134,2.554934898805059,8.6315598487854,0.43736,3.5199616154034934,0.22969333333333336,127.36500358581543,3.0278921866666666,24.255415598551433,0,9.85362990697225,0,8.493369976679483,0.0640005884,44.471208572387695,1.0329199999999998,192.912961324056,0.0112,5.435377478599548,106.08677333333333,0,461.4750747680664,4305.203933333333,1651.5097859700518,283.616247143464,605.7339833577474,373.9724105982772,0.6668231338262558,1.120329,0.30374399820963544,0.019534319466666665,0.2659439394871394,0.0084275576,286.98598225911456,194.53294933333333,112.88243103027344,143.47461333333334,236.0290298461914,76.12602666666666,3.3164007663726807,2.2488998000000002,22.556699911753338,0,10.086700598398844,29.988941733333345,8.930829935707152e-4,0,1.1080400447050731,3.3029948000000005,0.09967969544231892,0.25134302666666664,377.8079808553059,5.491343379911128,64.38866499611316,115.33697083332405,22.398193537521305,14.28384656892258,-0.16908689742954872,18.271400292714436,0.7393866666666666,14474.024443451732,0,0.02220770437270403,0.007466666666666667,1.316959987084071,0.05002666666666667,0.027579999528825283,0.007560000000000001 +2111,3.6624506753982686,0,0,1.0217259947981907,2.545332734207888,8.649619738260904,0.434236,3.3800915479660034,0.22805266666666668,127.56800333658855,3.006264385333333,23.971215565999348,0,9.796939929326376,0,8.47648000717163,0.06354344134,43.61701043446859,1.0255419999999997,190.84796015421549,0.01112,5.431447466214498,105.32901066666666,0,461.12208302815753,4274.452476666666,1647.8298034667966,282.4625781968097,606.1239878336588,372.87752127157177,0.6475101312001547,1.11232665,0.28693099816640216,0.01939478861333333,0.24275385960936546,0.00836736076,286.4979883829753,193.14342826666666,112.44238980611165,142.44979466666666,236.38203048706055,75.58226933333333,3.2948207457860312,2.23283623,22.44890038172404,0,10.02820054690043,29.774735006666678,7.28978993720375e-4,0,1.1022500395774841,3.2794019800000003,0.0988882960130771,0.2495477193333333,377.8509852091471,5.484682704725497,64.29057380341946,114.80079287000116,22.272647600038066,14.258264661239973,-0.1680059526487499,18.295900185902912,0.7341053333333333,14377.902950032585,0,0.020954603950182598,0.007413333333333333,1.2975399990876515,0.049669333333333336,0.02655289974063635,0.0075060000000000005 +2112,3.636102109388209,0,0,0.9955278923674677,2.535730569610717,8.6675496896108,0.43111200000000005,3.2457614739735923,0.22641200000000003,127.77000300089519,2.984636584,23.690215587615967,0,9.740559895833334,0,8.459630012512207,0.06308629428,42.77811241149902,1.0181639999999998,188.80496088663736,0.01104,5.427477399508159,104.571248,0,460.7651011149089,4243.7010199999995,1644.0797729492185,281.3089092501554,606.5269877115885,371.78263194486635,0.6299061377843221,1.1043242999999998,0.2710929984847705,0.01925525776,0.2215627854069074,0.00830716392,285.95398712158203,191.7539072,111.9743537902832,141.42497600000002,236.68802769978842,75.038512,3.273290733496348,2.21677266,22.341399987538654,0,9.967700481414795,29.56052828000001,5.949709981602306e-4,0,1.0961900452772777,3.2558091600000005,0.09810529587169488,0.24775241199999998,377.8929824829101,5.478022029539865,64.19248261072578,114.26461490667826,22.147101662554824,14.232682753557368,-0.16695272168646533,18.3202002843221,0.728824,14281.781456613438,0,0.019762604342152674,0.00736,1.2783999939759572,0.049312,0.025563899738093216,0.007452000000000001 +2113,3.6097535433781496,0,0,0.9693297899367449,2.5261284050135457,8.68533992767334,0.42798800000000004,3.1167614658673606,0.22477133333333338,127.97000249226888,2.963008782666667,23.412514686584473,0,9.684499899546305,0,8.44281005859375,0.06262914722,41.95431359608968,1.010786,186.78296407063803,0.01096,5.4234773715337115,103.81348533333333,0,460.4041061401367,4212.949563333334,1640.2597859700518,280.1552403035011,606.9419860839844,370.687742618161,0.6138251274824142,1.0963219499999999,0.2561769982179006,0.019115726906666665,0.20219871525963148,0.00824696708,285.35698954264325,190.36438613333334,111.48031806945801,140.40015733333334,236.94602966308594,74.49475466666667,3.2518107692400613,2.20070909,22.23449977238973,0,9.905560413996378,29.346321553333343,4.85549991329511e-4,0,1.0899000366528828,3.2322163400000004,0.09733019582927227,0.24595710466666665,377.932985941569,5.471361354354234,64.09439141803207,113.72843694335538,22.021555725071586,14.207100845874761,-0.16592720454269508,18.344300587972004,0.7235426666666667,14185.65996319429,0,0.018627803772687912,0.007306666666666666,1.2595299979050953,0.04895466666666667,0.024611700015763443,0.007398000000000001 +2114,3.58340497736809,0,0,0.943131687506022,2.5165262404163746,8.70298981666565,0.424864,2.992871363957723,0.2231306666666667,128.1680030822754,2.9413809813333334,23.13791497548421,0,9.628740072250366,0,8.42601990699768,0.062172000160000004,41.14541530609131,1.0034079999999999,184.78296279907227,0.010879999999999999,5.419447461764018,103.05572266666667,0,460.0411148071289,4182.198106666667,1636.3897705078123,279.0015713568468,607.3669840494791,369.5928532914556,0.5990991195042928,1.0883196,0.24212899804115295,0.01897619605333333,0.18452765171726546,0.00818677024,284.70798746744794,188.97486506666667,110.96128527323405,139.37533866666666,237.15902964274088,73.95099733333333,3.2303707599639893,2.18464552,22.128000100453693,0,9.841970523198446,29.132114826666676,3.9621200509524596e-4,0,1.083400050799052,3.2086235200000006,0.09656239487230778,0.24416179733333332,377.9709854125976,5.464700679168602,63.99630022533837,113.19225898003248,21.896009787588348,14.181518938192154,-0.16492940121743913,18.36810048421224,0.7182613333333333,14089.538469775143,0,0.017564103628198307,0.007253333333333333,1.2409199674924214,0.04859733333333333,0.023694800212979317,0.007344000000000001 +2115,3.5570564113580305,0,0,0.9169335850752993,2.5069240758192035,8.720509767532349,0.42174,2.873891294002533,0.22149000000000002,128.3650042215983,2.91975318,22.86661497751872,0,9.573300043741861,0,8.409259875615438,0.0617148531,40.35111713409424,0.9960299999999999,182.80296198527017,0.0108,5.415387392044067,102.29795999999999,0,459.6741231282552,4151.44665,1632.459777832031,277.8479024101925,607.802988688151,368.49796396475017,0.5855811287959417,1.0803172499999998,0.22889499987165132,0.018836665199999998,0.16840359568595886,0.0081265734,284.0089848836263,187.585344,110.41925430297852,138.35052000000002,237.32702763875326,73.40724,3.2089607318242392,2.16858195,22.022000312805176,0,9.777100324630737,28.917908100000012,3.2327799757088843e-4,0,1.076710045337677,3.1850307000000004,0.09579999558627605,0.24236649,378.00798288981116,5.458040003982971,63.89820903264468,112.65608101670959,21.77046385010511,14.155937030509548,-0.16395931171069747,18.391700585683186,0.71298,13993.416976355997,0,0.016567003292342026,0.0072,1.2225599884986877,0.048240000000000005,0.022811999699721735,0.007290000000000001 +2116,3.530707845347971,0,0,0.8907354826445765,2.4973219112220324,8.737889766693115,0.41861600000000004,2.759631256262461,0.21984933333333337,128.5610033671061,2.8981253786666668,22.598414580027264,0,9.51816995938619,0,8.392539978027344,0.06125770604,39.57131830851237,0.9886519999999999,180.84496307373047,0.01072,5.411307295163472,101.54019733333332,0,459.3051300048828,4120.695193333333,1628.4797566731768,276.6942334635382,608.24798583984375,367.40307463804476,0.573135127623876,1.0723148999999998,0.21642799923817316,0.018697134346666665,0.15366354708870253,0.00806637656,283.26098887125653,186.19582293333332,109.85622723897298,137.32570133333334,237.45002873738608,72.86348266666666,3.1876007517178855,2.15251838,21.91639995574951,0,9.711110353469849,28.703701373333345,2.637419978176088e-4,0,1.0698600510756175,3.1614378800000003,0.09504409569005172,0.24057118266666663,378.0419820149739,5.45137932879734,63.800117839950985,112.11990305338671,21.644917912621867,14.130355122826941,-0.16301693602247008,18.415200233459473,0.7076986666666667,13897.29548293685,0,0.015632403005535405,0.007146666666666667,1.2044600049654643,0.04788266666666667,0.02196189993992448,0.007236000000000001 +2117,3.5043592793379115,0,0,0.8645373802138536,2.4877197466248613,8.755129734675089,0.41549200000000003,2.6499012311299643,0.21820866666666672,128.75500361124674,2.8764975773333337,22.33321460088094,0,9.463350057601929,0,8.375839869181315,0.06080055898,38.80561955769857,0.9812739999999999,178.9069620768229,0.01064,5.407207290331523,100.78243466666666,0,458.9341405232747,4089.9437366666666,1624.449768066406,275.5405645168839,608.70098876953125,366.30818531133934,0.5616471221049627,1.06431255,0.2046869993209839,0.01855760349333333,0.14018749818205833,0.00800617972,282.4669876098633,184.80630186666664,109.27520434061687,136.30088266666667,237.5310287475586,72.31972533333332,3.166280726591746,2.13645481,21.81130011876424,0,9.644160509109497,28.489494646666678,2.1514700104792914e-4,0,1.0628600319226582,3.1378450600000005,0.09429419661561649,0.2387758753333333,378.07498677571607,5.444718653611708,63.702026647257284,111.58372509006381,21.51937197513863,14.104773215144334,-0.16210227415275702,18.438300609588623,0.7024173333333333,13801.173989517703,0,0.01473890314809978,0.0070933333333333334,1.1866300106048584,0.047525333333333336,0.021143500072260697,0.007182000000000001 +2118,3.478010713327852,0,0,0.8383392777831308,2.47811758202769,8.772229750951132,0.412368,2.544531206289927,0.21656800000000004,128.94800440470377,2.854869776,22.0712145169576,0,9.40884002049764,0,8.359170118967691,0.06034341192,38.053921381632485,0.9738959999999999,176.9889653523763,0.01056,5.403077284495036,100.024672,0,458.5601450602214,4059.1922799999998,1620.3797810872393,274.38689557022957,609.1629892985026,365.213295984634,0.5510111252466837,1.0563102,0.19362700109680495,0.018418072639999998,0.12789145360390344,0.00794598288,281.62699127197266,183.4167808,108.6751766204834,135.276064,237.56902821858725,71.77596799999999,3.144990702470144,2.12039124,21.706600030263264,0,9.57636030515035,28.27528792000001,1.754869990691077e-4,0,1.0557400385538738,3.1142522400000003,0.09354859590530396,0.23698056799999997,378.10597991943354,5.438057978426077,63.60393545456359,111.04754712674092,21.39382603765539,14.079191307461727,-0.1612153261015582,18.461300373077393,0.697136,13705.052496098555,0,0.01388400288609167,0.007039999999999999,1.1690399944782257,0.047168,0.020355400008459885,0.007128000000000001 +2119,3.4516621473177924,0,0,0.8121411753524079,2.468515417430519,8.7891998291015625,0.40924400000000005,2.4433311422665915,0.21492733333333336,129.1390012105306,2.8332419746666666,21.812114397684734,0,9.35462999343872,0,8.3425399462382,0.05988626486,37.31592241923014,0.9665179999999999,175.0919647216797,0.01048,5.398937225341797,99.26690933333333,0,458.1841506958008,4028.4408233333334,1616.2697550455728,273.23322662357526,609.6329803466797,364.1184066579286,0.5411351223786672,1.0483078499999998,0.18320799991488457,0.018278541786666665,0.11667341428498428,0.00788578604,280.7439880371094,182.02725973333332,108.05815569559734,134.25124533333334,237.5650291442871,71.23221066666666,3.1237406730651855,2.10432767,21.602400461832683,0,9.507830381393433,28.061081193333344,1.4312200073618442e-4,0,1.0485100547472637,3.0906594200000006,0.09280839624504249,0.23518526066666665,378.1359786987304,5.431397303240445,63.50584426186989,110.51136916341802,21.26828010017215,14.053609399779122,-0.1603560918688737,18.484000364939373,0.6918546666666667,13608.931002679408,0,0.01308270264416933,0.006986666666666666,1.151699999968211,0.04681066666666667,0.019596599663297336,0.007074000000000001 +2120,3.425313581307733,0,0,0.7859430729216851,2.458913252833348,8.806039889653524,0.40612000000000004,2.346151133378347,0.2132866666666667,129.32800165812174,2.8116141733333335,21.556114037831623,0,9.30071989695231,0,8.325929959615072,0.0594291178,36.591423988342285,0.9591399999999999,173.2149658203125,0.0104,5.394777258237203,98.50914666666667,0,457.80615997314453,3997.6893666666665,1612.1197713216143,272.07955767692096,610.1099853515625,363.02351733122316,0.531935120622317,1.0403054999999999,0.17339399953683218,0.01813901093333333,0.10643937687079112,0.0078255892,279.81898498535156,180.63773866666665,107.42713610331218,133.22642666666667,237.52102661132812,70.68845333333333,3.102520704269409,2.0882641,21.498600006103516,0,9.438650449117025,27.846874466666677,1.1671200081764255e-4,0,1.0411800344785054,3.0670666000000004,0.09207319468259811,0.23338995333333332,378.16298166910804,5.424736628054814,63.407753069176195,109.97519120009514,21.14273416268891,14.028027492096514,-0.15952457145470347,18.506500562032063,0.6865733333333334,13512.809509260262,0,0.012331502434487144,0.006933333333333333,1.1346099774042766,0.04645333333333333,0.01886610019331177,0.007020000000000001 +2121,3.398965015297674,0,0,0.7597449704909622,2.449311088236177,8.82272974650065,0.402996,2.252831061681112,0.21164600000000003,129.5170046488444,2.789986372,21.303013801574707,0,9.247119983037313,0,8.309360027313232,0.058971970740000004,35.88022549947103,0.9517619999999999,171.35696665445963,0.01032,5.3905971844991045,97.751384,0,457.42615509033203,3966.9379099999996,1607.939758300781,270.92588873026665,610.5929921468099,361.92862800451775,0.5233361124992371,1.03230315,0.16414900124073029,0.017999480079999998,0.09710254582266013,0.00776539236,278.8519872029622,179.24821759999998,106.7811164855957,132.201608,237.43802769978842,70.144696,3.081340710322062,2.07220053,21.395300070444744,0,9.36892040570577,27.63266774000001,9.516550016996916e-5,0,1.0337600409984589,3.0434737800000002,0.09134259571631749,0.231594646,378.188980102539,5.418075952869183,63.3096618764825,109.43901323677225,21.017188225205672,14.002445584413907,-0.15872077544492172,18.52880032857259,0.681292,13416.688015841115,0,0.011627502351378402,0.00688,1.1177599827448528,0.046096,0.01816259991998474,0.006966000000000001 +2122,3.372616449287614,0,0,0.7335468680602394,2.4397089236390057,8.839289744695028,0.399872,2.163211007912954,0.21000533333333338,129.70400365193686,2.768358570666667,21.052913983662922,0,9.193809986114502,0,8.29281997680664,0.05851482368,35.18212731679281,0.9443839999999999,169.51896540323892,0.010239999999999999,5.386407097180684,96.99362133333334,0,457.04516347249347,3936.1864533333332,1603.729766845703,269.77221978361234,611.0819905598959,360.83373867781233,0.5152741173903147,1.0243007999999998,0.1554389980932077,0.017859949226666665,0.08858521468937397,0.00770519552,277.8469874064128,177.85869653333333,106.12109820048015,131.17678933333335,237.31502787272134,69.60093866666666,3.060190717379252,2.05613696,21.2924002011617,0,9.298710425694784,27.418461013333342,7.75874996179482e-5,0,1.0262700319290161,3.0198809600000005,0.09061649565895398,0.22979933866666666,378.21398417154944,5.411415277683551,63.2115706837888,108.90283527344936,20.89164228772243,13.976863676731302,-0.15794470383952838,18.55090030034383,0.6760106666666666,13320.566522421967,0,0.010967602099602422,0.006826666666666667,1.101129988829295,0.045738666666666664,0.01748539988572399,0.0069120000000000015 +2123,3.3462678832775548,0,0,0.7073487656295167,2.4301067590418346,8.855719884236654,0.39674800000000005,2.077141006787618,0.2083646666666667,129.8890012105306,2.7467307693333334,20.80561367670695,0,9.140810092290243,0,8.276309967041016,0.05805767662,34.4969285329183,0.9370059999999999,167.70096715291342,0.01016,5.382197101910909,96.23585866666667,0,456.6621627807617,3905.4349966666664,1599.479766845703,268.61855083695804,611.5779825846354,359.738849351107,0.5076871166626612,1.0162984499999999,0.14723199854294458,0.01772041837333333,0.0808156890173753,0.00764499868,276.80299123128253,176.46917546666666,105.45008341471355,130.15197066666667,237.15402603149414,69.05718133333333,3.0390806794166565,2.04007339,21.189900080362957,0,9.22808043162028,27.20425428666668,6.324890000541927e-5,0,1.0187000532944996,2.9962881400000003,0.08989309581617515,0.22800403133333333,378.23697916666663,5.404754602497919,63.113479491095106,108.36665731012647,20.76609635023919,13.951281769048695,-0.1571963566385235,18.57270050048828,0.6707293333333334,13224.44502900282,0,0.01034900212349991,0.0067733333333333335,1.0847599903742473,0.045381333333333336,0.016833300081392128,0.006858000000000001 +2124,3.3199193172674955,0,0,0.6811506631987938,2.4205045944446635,8.872009754180908,0.39362400000000003,1.9944909413655598,0.20672400000000005,130.07300440470377,2.7251029680000003,20.56121301651001,0,9.08810019493103,0,8.259819904963175,0.05760052956,33.8243293762207,0.9296279999999999,165.9019686381022,0.01008,5.377987066904704,95.47809600000001,0,456.27917226155597,3874.68354,1595.219757080078,267.46488189030373,612.0789947509766,358.64396002440157,0.500526120265325,1.0082961,0.1394999995827675,0.017580887519999998,0.07370166542629401,0.00758480184,275.7229868570964,175.07965439999998,104.76806767781575,129.127152,236.95602416992188,68.513424,3.01799068848292,2.02400982,21.087899843851726,0,9.157090504964193,26.99004756000001,5.155419997511975e-5,0,1.0110800464948018,2.9726953200000006,0.08917369631429513,0.226208724,378.25798034667963,5.398093927312288,63.015388298401405,107.83047934680357,20.64055041275595,13.925699861366088,-0.15647573384190705,18.59440024693807,0.665448,13128.323535583673,0,0.009751792221019665,0.00672,1.0686299800872803,0.045024,0.01620550003523628,0.006804000000000001 +2125,3.2935707512574357,0,0,0.654952560768071,2.410902429847492,8.888159910837809,0.3905,1.9151308834552765,0.20508333333333337,130.255002339681,2.7034751666666668,20.31971327463786,0,9.035680055618286,0,8.243369897206625,0.057143382500000006,33.164130528767906,0.9222499999999998,164.12096532185873,0.01,5.373757044474284,94.72033333333334,0,455.89317830403644,3843.932083333333,1590.92973836263,266.3112129436494,612.5849914550781,357.54907069769615,0.493744117518266,1.00029375,0.13221700116991997,0.017441356666666664,0.06718584150075912,0.007524605,274.6079915364583,173.69013333333334,104.07505480448405,128.10233333333332,236.72102737426758,67.96966666666665,2.996940632661184,2.00794625,20.986300309499104,0,9.085800409317017,26.775840833333344,4.201679985271767e-5,0,1.0034100413322449,2.9491025000000004,0.08845799540479977,0.22441341666666664,378.27698262532545,5.391433252126657,62.91729710570771,107.29430138348069,20.51500447527271,13.90011795368348,-0.155782835449679,18.615800380706787,0.6601666666666667,13032.202042164525,0,0.009174601950993141,0.006666666666666666,1.0527200003465016,0.04466666666666667,0.015601000050082803,0.006750000000000001 +2126,3.2672221852473764,0,0,0.6287544583373481,2.401300265250321,8.904169797897339,0.387376,1.838910847902298,0.2034426666666667,130.43600209554037,2.6818473653333332,20.080913066864014,0,8.983570019404093,0,8.22694993019104,0.05668623544,32.51623217264811,0.9148719999999998,162.35996882120767,0.00992,5.36950699488322,93.96257066666666,0,455.5071767171224,3813.1806266666663,1586.6097513834634,265.1575439969951,613.0949961344401,356.45418137099074,0.4872991169492404,0.9922913999999999,0.1253529998163382,0.01730182581333333,0.061242820074160896,0.00746440816,273.4579900105794,172.30061226666666,103.37304178873698,127.07751466666667,236.45002619425455,67.42590933333332,2.9759106636047363,1.99188268,20.885199705759685,0,9.014240423838297,26.561634106666677,3.423970004708584e-5,0,0.99569404621919,2.9255096800000002,0.08774589685102303,0.22261810933333331,378.29498036702466,5.384772576941025,62.81920591301402,106.7581234201578,20.389458537789473,13.874536046000875,-0.15511766146183945,18.637000401814777,0.6548853333333333,12936.080548745378,0,0.00863360178967317,0.006613333333333333,1.0370199978351593,0.04430933333333333,0.015018999964619676,0.006696000000000001 +2127,3.240873619237317,0,0,0.6025563559066254,2.3916981006531497,8.920049826304117,0.384252,1.7657208343346913,0.20180200000000004,130.61599985758463,2.660219564,19.84491268793742,0,8.931740045547485,0,8.210570017496744,0.05622908838,31.880333423614502,0.9074939999999998,160.6169687906901,0.00984,5.3652669588724775,93.204808,0,455.11918385823566,3782.42917,1582.2797342936196,264.0038750503408,613.6109822591146,355.3592920442853,0.4811551148692767,0.98428905,0.11888700040678184,0.017162294959999998,0.05582269995162884,0.0074042113199999995,272.2749888102214,170.9110912,102.66203053792317,126.052696,236.1440289815267,66.88215199999999,2.954920689264933,1.97581911,20.78439998626709,0,8.942470471064249,26.34742738000001,2.7898700106258428e-5,0,0.9879390398661295,2.9019168600000005,0.08703699459632237,0.22082280199999998,378.3109792073567,5.378111901755393,62.721114720320315,106.2219454568349,20.26391260030623,13.848954138318268,-0.1544802118783883,18.65790017445882,0.649604,12839.959055326231,0,0.008126521715894341,0.00656,1.0215700070063274,0.043952,0.014458600043629607,0.006642000000000001 +2128,3.214525053227258,0,0,0.5763582534759024,2.3820959360559786,8.935799757639566,0.381128,1.6954407890637715,0.20016133333333336,130.79300435384116,2.6385917626666666,19.61171277364095,0,8.880210002263388,0,8.194209893544516,0.055771941320000004,31.256234804789226,0.9001159999999998,158.8919677734375,0.009760000000000001,5.36100693543752,92.44704533333334,0,454.7311833699544,3751.677713333333,1577.919738769531,262.8502061036865,614.1299743652344,354.26440271757997,0.47527911017338437,0.9762867,0.11279399879276752,0.017022764106666664,0.0508795827627182,0.007344014479999999,271.0609842936198,169.5215701333333,101.94302050272624,125.02787733333334,235.80402628580728,66.33839466666666,2.933950662612915,1.9597555400000002,20.68409999211629,0,8.870510339736938,26.133220653333346,2.272930002315358e-5,0,0.9801490406195322,2.8783240400000003,0.08632989538212617,0.21902749466666666,378.3259836832682,5.371451226569762,62.62302352762662,105.68576749351202,20.138366662822992,13.82337223063566,-0.15387048669932565,18.67870060602824,0.6443226666666667,12743.837561907085,0,0.007651241573815544,0.006506666666666667,1.0063400020202,0.04359466666666667,0.013919099777316054,0.006588000000000001 +2129,3.188176487217198,0,0,0.5501601510451797,2.3724937714588075,8.95139996210734,0.378004,1.6279507676760356,0.1985206666666667,130.9700024922689,2.6169639613333335,19.381112416585285,0,8.828960100809732,0,8.177880048751831,0.05531479426000001,30.643736044565838,0.8927379999999998,157.18596903483072,0.009680000000000001,5.356736858685811,91.68928266666667,0,454.3421910603841,3720.9262566666666,1573.5497538248696,261.6965371570322,614.6539866129557,353.16951339087456,0.46964211016893387,0.96828435,0.10705199961860974,0.01688323325333333,0.04637176636606455,0.00728381764,269.8159866333008,168.13204906666667,101.21600977579753,124.00305866666666,235.431027730306,65.79463733333333,2.9130106965700784,1.9436919700000002,20.584300359090168,0,8.79839038848877,25.91901392666668,1.8515400067068793e-5,0,0.9723300337791443,2.8547312200000006,0.08562579564750195,0.21723218733333333,378.33898417154944,5.3647905513841305,62.52493233493292,105.14958953018912,20.01282072533975,13.797790322953055,-0.15328848592465133,18.699200471242268,0.6390413333333334,12647.716068487936,0,0.007205761464623113,0.0064533333333333335,0.9913360029459,0.043237333333333336,0.013399700013299784,0.006534000000000002 +2130,3.1618279212071387,0,0,0.5239620486144568,2.3628916068616364,8.966869831085205,0.37488,1.5631407300631206,0.19688000000000003,131.14500172932944,2.59533616,19.153312524159748,0,8.778000036875406,0,8.161580006281534,0.054857647200000005,30.042737007141113,0.8853599999999998,155.4979680379232,0.009600000000000001,5.352466861406962,90.93152,0,453.95118459065753,3690.1748,1569.1597391764321,260.5428682103779,615.1809895833334,352.07462406416914,0.46421510974566144,0.960282,0.10164099931716919,0.016743702399999998,0.04226115128646294,0.0072236207999999994,268.5409901936849,166.742528,100.48300234476726,122.97824,235.02402369181314,65.25088,2.8921006123224893,1.9276284000000001,20.48480002085368,0,8.72614041964213,25.704807200000012,1.5080900008494305e-5,0,0.9644870410362879,2.8311384000000004,0.08492449671030045,0.21543688,378.349983215332,5.358129876198499,62.426841142239226,104.61341156686623,19.887274787856512,13.772208415270448,-0.1527342095543655,18.719500223795574,0.63376,12551.59457506879,0,0.00678822142072022,0.0064,0.9765379925568899,0.04288,0.012899599969387054,0.006480000000000001 +2131,3.135479355197079,0,0,0.497763946183734,2.3532894422644652,8.982209841410318,0.371756,1.5009007155895233,0.19523933333333338,131.31900278727213,2.573708358666667,18.928012053171795,0,8.727330048878988,0,8.145310004552206,0.05440050014,29.452938238779705,0.8779819999999998,153.82697041829428,0.00952,5.348176717758179,90.17375733333334,0,453.56119028727215,3659.423343333333,1564.7597452799478,259.3891992637236,615.7119954427084,350.97973473746373,0.458978109061718,0.9522796499999999,0.09654229879379272,0.016604171546666664,0.03851283838351568,0.007163423959999999,267.2379837036133,165.35300693333332,99.74379412333171,121.95342133333334,234.58502451578775,64.70712266666666,2.871220648288727,1.91156483,20.385800043741863,0,8.653790473937988,25.490600473333345,1.228199986750648e-5,0,0.9566230376561483,2.80754558,0.08422459724048774,0.21364157266666667,378.3599828084309,5.3514692010128675,62.32874994954553,104.07723360354333,19.761728850373274,13.746626507587841,-0.15220764700259398,18.739500522613525,0.6284786666666666,12455.473081649643,0,0.006396881382291515,0.006346666666666667,0.9619419872760773,0.04252266666666667,0.012418100067103902,0.006426000000000001 +2132,3.1091307891870197,0,0,0.47156584375301114,2.343687277667294,8.99740974108378,0.368632,1.4411406715710957,0.1935986666666667,131.49100494384766,2.5520805573333334,18.705411911010742,0,8.676950136820475,0,8.129079977671305,0.053943353080000006,28.87423912684123,0.8706039999999998,152.1749699910482,0.00944,5.343886812527974,89.41599466666668,0,453.169189453125,3628.6718866666665,1560.3497314453123,258.2355303170693,616.2459971110026,349.8848454107583,0.45391010741392773,0.9442773,0.09173529967665672,0.01646464069333333,0.03509512605766455,0.00710322712,265.90699005126953,163.96348586666664,98.99858411153157,120.92860266666666,234.1150245666504,64.16336533333333,2.850360651810964,1.89550126,20.28720013300578,0,8.581350247065226,25.276393746666677,1.0001300021637386e-5,0,0.9487400352954865,2.7839527600000005,0.08352729678153992,0.21184626533333334,378.3679809570312,5.3448085258272355,62.23065875685183,103.54105564022045,19.636182912890032,13.721044599905234,-0.15170879826933673,18.759400685628254,0.6231973333333334,12359.351588230495,0,0.006030081266847749,0.006293333333333334,0.9475640008846918,0.04216533333333333,0.011954600069050988,0.006372000000000001 +2133,3.0827822231769604,0,0,0.4453677413222883,2.334085113070123,9.01246976852417,0.365508,1.3837506473064423,0.19195800000000002,131.6610018412272,2.530452756,18.485412120819092,0,8.626850048700968,0,8.11287005742391,0.05348620602,28.306340217590332,0.8632259999999998,150.53997039794922,0.00936,5.339596748352051,88.658232,0,452.7771987915039,3597.9204299999997,1555.919728597005,257.08186137041497,616.78399658203125,348.78995608405296,0.44899410754442215,0.9362749499999999,0.08720289977888267,0.016325109839999997,0.031978914514184,0.007043030279999999,264.5499903361003,162.5739648,98.24807929992676,119.903784,233.6140276590983,63.61960799999999,2.8295306166013083,1.87943769,20.18899981180827,0,8.508850336074829,25.06218702000001,8.143069938644961e-6,0,0.9408420423666636,2.7603599400000003,0.08283259595433871,0.21005095799999998,378.37498219807935,5.3381478506416045,62.13256756415814,103.00487767689756,19.51063697540679,13.695462692222629,-0.15123766335459374,18.779000123341877,0.617916,12263.230094811348,0,0.005686281171316902,0.00624,0.9334000001351038,0.041808000000000005,0.011508299969136715,0.0063180000000000016 +2134,3.0564336571669006,0,0,0.41916963889156544,2.324482948472952,9.027389923731485,0.362384,1.328640619913737,0.19031733333333337,131.83100382486978,2.5088249546666668,18.26791175206502,0,8.577029943466187,0,8.096690018971762,0.05302905896000001,27.749141534169514,0.8558479999999998,148.92196909586588,0.00928,5.335296670595805,87.90046933333333,0,452.3841959635417,3567.1689733333333,1551.4797363281248,255.92819242376066,617.3239898681641,347.69506675734755,0.4442121038834254,0.9282726,0.08293119817972183,0.016185578986666664,0.02913790491099159,0.00698283344,263.16798909505206,161.18444373333332,97.49277178446452,118.87896533333333,233.08202616373697,63.07585066666666,2.8087306221326194,1.86337412,20.091300010681152,0,8.436310291290283,24.847980293333343,6.629269970896227e-6,0,0.9329310357570648,2.7367671200000006,0.0821401954938968,0.20825565066666665,378.3809789021809,5.3314871754559725,62.03447637146444,102.46869971357467,19.38509103792355,13.669880784540021,-0.1507942422583651,18.79840024312337,0.6126346666666667,12167.108601392201,0,0.0053640611392135424,0.006186666666666667,0.919446994860967,0.04145066666666667,0.011078599995623032,0.006264000000000001 +2135,3.030085091156841,0,0,0.3929715364608426,2.314880783875781,9.042180061340332,0.35926,1.2757205764452617,0.18867666666666671,131.99800237019858,2.4871971533333337,18.053011576334637,0,8.52748998006185,0,8.080549955368042,0.052571911900000004,27.20244264602661,0.8484699999999998,147.32097498575845,0.0092,5.330996712048848,87.14270666666667,0,451.99119059244794,3536.4175166666664,1547.0297546386716,254.77452347710636,617.8669942220052,346.60017743064213,0.43955010920763016,0.92027025,0.07890499879916509,0.01604604813333333,0.026547795937707026,0.0069226366,261.76098887125653,159.79492266666665,96.7331657409668,117.85414666666667,232.52102533976236,62.53209333333333,2.787950654824575,1.84731055,19.993900140126545,0,8.363720417022705,24.633773566666676,5.396200018973711e-6,0,0.9250120421250662,2.7131743000000004,0.08145009602109592,0.20646034333333332,378.38398234049475,5.324826500270341,61.93638517877075,101.93252175025177,19.259545100440313,13.644298876857414,-0.15037853498065076,18.81760040918986,0.6073533333333334,12070.987107973055,0,0.005062051001004875,0.0061333333333333335,0.9057030032078425,0.041093333333333336,0.010664900066331029,0.006210000000000001 +2136,3.0037365251467816,0,0,0.36677343403011975,2.305278619278609,9.05683978398641,0.356136,1.2249005734920502,0.18703600000000004,132.1650021870931,2.465569352,17.840511798858643,0,8.478229999542236,0,8.064429918924967,0.05211476484,26.666043758392334,0.8410919999999998,145.73696899414062,0.009120000000000001,5.32668662071228,86.384944,0,451.5971984863281,3505.6660599999996,1542.5797220865884,253.62085453045205,618.4129943847656,345.5052881039367,0.43499510486920673,0.9122678999999999,0.075107598677277565,0.015906517279999997,0.02418668707832694,0.006862439759999999,260.3299865722656,158.40540159999998,95.96956062316895,116.829328,231.93102391560873,61.988336,2.7672006090482077,1.8312469800000002,19.896999994913738,0,8.291120370229086,24.41956684000001,4.391930019664869e-6,0,0.9170840432246526,2.68958148,0.08076079686482747,0.204665036,378.38698069254554,5.31816582508471,61.83829398607705,101.39634378692888,19.13399916295707,13.618716969174807,-0.14999054152145064,18.836600303649902,0.602072,11974.865614553906,0,0.0047789910264934106,0.00608,0.8921450028816859,0.040736,0.010266699905817708,0.006156000000000001 +2137,2.9773879591367223,0,0,0.34057533159939696,2.295676454681438,9.071359793345133,0.353012,1.1761105557282765,0.18539533333333336,132.3300018310547,2.4439415506666666,17.63051160176595,0,8.429250001907349,0,8.048350016276041,0.051657617780000005,26.139744758605957,0.8337139999999998,144.17097091674805,0.009040000000000001,5.322376569112142,85.62718133333334,0,451.20320383707684,3474.914603333333,1538.1097412109373,252.46718558379774,618.9609934488932,344.4103987772313,0.43053410202264786,0.90426555,0.07152769900858402,0.015766986426666664,0.02203437949841221,0.00680224292,258.87598673502606,157.0158805333333,95.20225588480632,115.80450933333333,231.31302642822266,61.444578666666665,2.7464806040128074,1.8151834100000002,19.80049991607666,0,8.218510230382284,24.20536011333334,3.5741100153548664e-6,0,0.909149040778478,2.6659886600000005,0.08007359504699707,0.20286972866666667,378.38698069254554,5.311505149899078,61.740202793383354,100.860165823606,19.008453225473833,13.5931350614922,-0.14963026188076484,18.855300426483154,0.5967906666666667,11878.74412113476,0,0.0045136807796855765,0.006026666666666667,0.8787690053383509,0.04037866666666667,0.009883239942913255,0.006102000000000001 +2138,2.9510393931266625,0,0,0.31437722916867405,2.286074290084267,9.085739771525065,0.349888,1.1292505065600078,0.1837546666666667,132.49300384521484,2.4223137493333335,17.423011620839436,0,8.380539973576864,0,8.032290061314901,0.05120047072,25.62344566980998,0.8263359999999998,142.6199722290039,0.008960000000000001,5.318066517512004,84.86941866666666,0,450.80920155843097,3444.1631466666663,1533.6397501627603,251.31351663714344,619.5119934082031,343.31550945052595,0.4261591037114461,0.8962631999999999,0.06815269899864991,0.01562745557333333,0.020072372319797676,0.0067420460799999995,257.40099080403644,155.62635946666666,94.4317512512207,114.77969066666667,230.6670239766439,60.900821333333326,2.7257806261380515,1.7991198400000001,19.704400380452473,0,8.14590040842692,23.991153386666674,2.9081999931198275e-6,0,0.9012090265750885,2.6423958400000003,0.07938839681446552,0.2010744213333333,378.386983235677,5.304844474713447,61.64211160068966,100.3239878602831,18.88290728799059,13.567553153809595,-0.14929769605859336,18.873900254567463,0.5915093333333333,11782.622627715613,0,0.0042650307683895035,0.005973333333333333,0.8655939946571986,0.04002133333333334,0.009514090061808625,0.006048000000000001 +2139,2.9246908271166028,0,0,0.28817912673795126,2.276472125487096,9.099979797999064,0.346764,1.084260493516922,0.18211400000000005,132.65500259399414,2.4006859480000005,17.21791124343872,0,8.332110087076822,0,8.016270160675049,0.050743323660000006,25.116947174072266,0.8189579999999999,141.0859718322754,0.00888,5.313746531804402,84.111656,0,450.41420491536456,3413.41169,1529.1497599283853,250.15984769048913,620.0639902750651,342.22062012382054,0.42186110466718674,0.88826085,0.06496809981763363,0.015487924719999999,0.018284165921310585,0.00668184924,255.90399042765299,154.23683839999998,93.65814717610677,113.75487199999999,229.99402364095053,60.357063999999994,2.7051105896631875,1.78305627,19.608699798583984,0,8.073300441106161,23.776946660000007,2.3660500308627284e-6,0,0.8932660321394602,2.6188030200000005,0.07870389583210151,0.19927911399999998,378.3849843343098,5.298183799527815,61.54402040799596,99.7878098969602,18.757361350507352,13.541971246126987,-0.14899284405493612,18.892200152079266,0.5862280000000001,11686.501134296464,0,0.004014550941064954,0.00592,0.8526149938503901,0.039664000000000005,0.009158700006082654,0.005994000000000001 +2140,2.8983422611065435,0,0,0.2619810243072284,2.2668699608899248,9.114089886347452,0.34364,1.041060487429301,0.18047333333333337,132.81500498453775,2.379058146666667,17.015111287434895,0,8.283960103988647,0,8.000269929567972,0.0502861766,24.62004788716634,0.8115799999999999,139.568972269694,0.0088,5.30941637357076,83.35389333333333,0,450.01919809977215,3382.660233333333,1524.669728597005,249.00617874383482,620.6189829508463,341.1257307971151,0.417631097137928,0.8802584999999999,0.06196290006240209,0.015348393866666666,0.016654360108077526,0.0066216524,254.38699213663736,152.8473173333333,92.88194338480632,112.73005333333333,229.2950210571289,59.81330666666666,2.684460620085398,1.7669927,19.513399600982666,0,8.000720461209616,23.56273993333334,1.9247300334275983e-6,0,0.885323037703832,2.5952102000000004,0.07802119602759679,0.19748380666666665,378.3809789021809,5.291523124342184,61.445929215302264,99.25163193363731,18.63181541302411,13.51638933844438,-0.1487157058697932,18.910300254821777,0.5809466666666667,11590.379640877318,0,0.0037623708291600146,0.005866666666666667,0.8398300061623255,0.03930666666666667,0.008816550020128489,0.005940000000000001 +2141,2.871993695096484,0,0,0.23578292187650557,2.2572677962927536,9.12805978457133,0.340516,0.9995744625727335,0.1788326666666667,132.97400283813477,2.3574303453333334,16.814710934956867,0,8.236069838205973,0,7.984309911727905,0.04982902954,24.13254912694295,0.8042019999999999,138.06697463989258,0.00872,5.305096467336019,82.59613066666667,0,449.6242039998372,3351.908776666666,1520.169728597005,247.85250979718052,621.1759948730469,340.0308414704097,0.4134620974461238,0.8722561499999999,0.05912859924137592,0.015208863013333332,0.015168955006326238,0.006561455559999999,252.85099029541016,151.45779626666663,92.10324223836263,111.70523466666667,228.57002385457358,59.26954933333333,2.6638406117757163,1.75092913,19.418499787648518,0,7.928170363108317,23.348533206666673,1.5655099995607695e-6,0,0.8773780216773351,2.57161738,0.07734049670398235,0.19568849933333332,378.3759841918945,5.284862449156553,61.34783802260857,98.71545397031443,18.506269475540872,13.490807430761773,-0.14846628150316454,18.928100109100342,0.5756653333333334,11494.258147458171,0,0.0035260107445841036,0.0058133333333333335,0.8272370000680288,0.038949333333333336,0.008487149995441238,0.005886000000000001 +2142,2.8456451290864244,0,0,0.20958481944578272,2.2476656316955825,9.141899824142456,0.337392,0.9597394416729609,0.17719200000000004,133.13200251261392,2.3358025440000003,16.616710821787517,0,8.188459952672323,0,7.968379974365234,0.049371882480000004,23.654350121815998,0.7968239999999999,136.58197148640951,0.00864,5.300766388575236,81.838368,0,449.22820536295575,3321.15732,1515.669738769531,246.6988408505262,621.7339986165365,338.93595214370436,0.4093471020460129,0.8642538,0.056455399530629315,0.015069332159999999,0.013815249859665832,0.00650125872,251.29599126180014,150.0682752,91.3224385579427,110.680416,227.81902186075845,58.725792,2.6432405908902488,1.73486556,19.324000040690105,0,7.855650385220845,23.134326480000006,1.2731799946171425e-6,0,0.8694330304861069,2.5480245600000004,0.07666149611274402,0.193893192,378.3699798583984,5.278201773970921,61.24974682991487,98.17927600699153,18.38072353805763,13.465225523079168,-0.14824457095505025,18.945800304412842,0.570384,11398.136654039023,0,0.0033044907031580806,0.00576,0.814831996957461,0.038592,0.00817002992456158,0.005832 +2143,2.8192965630763647,0,0,0.18338671701505987,2.2380634670984114,9.155599673589071,0.334268,0.9214894324541092,0.17555133333333336,133.28800201416016,2.314174742666667,16.420910676320393,0,8.141110102335611,0,7.952469984690349,0.04891473542000001,23.185250918070476,0.7894459999999999,135.11197408040366,0.00856,5.296436429023743,81.08060533333332,0,448.8322016398112,3290.405863333333,1511.169738769531,245.54517190387187,622.29498291015625,337.84106281699894,0.40528009583552677,0.8562514499999999,0.05393129959702492,0.014929801306666666,0.012581645355870327,0.00644106188,249.72199122111002,148.6787541333333,90.53963534037273,109.65559733333333,227.04402287801108,58.18203466666666,2.6226705511411033,1.71880199,19.230000336964924,0,7.783160328865051,22.920119753333342,1.0352900072045184e-6,0,0.8614900211493174,2.5244317400000003,0.0759842973202467,0.19209788466666664,378.3619817097981,5.27154109878529,61.151655637221175,97.64309804366863,18.25517760057439,13.43964361539656,-0.14805057422545026,18.96320041020711,0.5651026666666668,11302.015160619876,0,0.0030968806822784245,0.005706666666666667,0.8026130000750223,0.03823466666666667,0.00786473990107576,0.005778000000000001 +2144,2.7929479970663054,0,0,0.15718861458433703,2.2284613025012403,9.169159730275473,0.331144,0.8847604244947433,0.1739106666666667,133.4420026143392,2.2925469413333337,16.22751061121623,0,8.094029823939005,0,7.936599969863892,0.048457588360000005,22.725052038828533,0.7820679999999999,133.6579704284668,0.00848,5.2921063502629595,80.32284266666666,0,448.4362030029297,3259.6544066666665,1506.659729003906,244.39150295721757,622.8569844563802,336.74617349029353,0.4012591019272804,0.8482491,0.05154989939182997,0.014790270453333332,0.01145764160901308,0.00638086504,248.13099161783853,147.28923306666667,89.75503412882487,108.63077866666666,226.244021097819,57.63827733333333,2.602120598157247,1.70273842,19.136299928029377,0,7.710720340410869,22.705913026666675,8.417479951579784e-7,0,0.8535480350255966,2.5008389200000005,0.07530729720989864,0.1903025773333333,378.3529841105143,5.264880423599658,61.05356444452748,97.10692008034574,18.12963166309115,13.414061707713953,-0.14788429131436445,18.98040024439494,0.5598213333333334,11205.893667200728,0,0.002902300659722338,0.005653333333333334,0.7905759960412979,0.03787733333333333,0.007570819968047242,0.005724000000000001 +2145,2.766599431056246,0,0,0.1309905121536142,2.2188591379040687,9.182589928309122,0.32802,0.8494923959175745,0.17227000000000003,133.59500376383463,2.27091914,16.03631051381429,0,8.04722007115682,0,7.920749982198079,0.0480004413,22.273752848307293,0.7746899999999999,132.2189712524414,0.008400000000000001,5.287776271502177,79.56508,0,448.04020436604816,3228.9029499999997,1502.149739583333,243.23783401056326,623.4199981689453,335.6512841635881,0.3972770969072978,0.8402467499999999,0.04930289927870035,0.0146507396,0.010433337651193142,0.0063206682,246.52399063110352,145.899712,88.968931833903,107.60596,225.4200210571289,57.094519999999996,2.5815905729929605,1.6866748500000002,19.042999903361004,0,7.638330380121867,22.491706300000008,6.842949981470762e-7,0,0.845610037446022,2.4772461000000003,0.0746319970736901,0.18850726999999998,378.3419850667317,5.258219748414027,60.95547325183378,96.57074211702286,18.00408572560791,13.388479800031348,-0.147745722221793,18.997400442759197,0.55454,11109.772173781581,0,0.002719940598277996,0.005600000000000001,0.7787199864784876,0.03752,0.007287859955492119,0.0056700000000000006 +2146,2.7402508650461863,0,0,0.10479240972289136,2.2092569733068976,9.195879777272543,0.324896,0.8156283696492513,0.17062933333333336,133.74700164794922,2.2492913386666666,15.847310384114584,0,8.000669956207275,0,7.9049400091171265,0.047543294240000006,21.83095359802246,0.7673119999999999,130.7959747314453,0.008320000000000001,5.2834462722142534,78.80731733333333,0,447.64420318603516,3198.151493333333,1497.639729817708,242.08416506390896,623.9849904378256,334.55639483688276,0.3933320914705594,0.8322443999999999,0.0471798994888862,0.014511208746666667,0.009500174627949795,0.0062604713599999995,244.8999900817871,144.51019093333332,88.18152936299641,106.58114133333333,224.5740229288737,56.550762666666664,2.5610905289649963,1.6706112800000001,18.95009994506836,0,7.565980315208435,22.27749957333334,5.56221010583613e-7,0,0.8376750300327936,2.45365328,0.07395829632878304,0.18671196266666665,378.32998148600257,5.251559073228396,60.857382059140086,96.03456415369996,17.878539788124673,13.362897892348741,-0.14763486694773587,19.014100392659504,0.5492586666666667,11013.650680362434,0,0.002549030565811942,0.005546666666666667,0.7670209954182307,0.03716266666666667,0.007015460054390132,0.005616 +2147,2.7139022990361266,0,0,0.07859430729216854,2.1996548087097265,9.209039767583212,0.321772,0.7831113636493683,0.1689886666666667,133.8970044453939,2.2276635373333336,15.660510301589966,0,7.954390048980713,0,7.889159957567851,0.04708614718000001,21.3967547416687,0.7599339999999999,129.3869743347168,0.00824,5.279106259346008,78.04955466666667,0,447.24720764160156,3167.4000366666664,1493.1197408040362,240.93049611725465,624.5509847005209,333.46150551017735,0.3894180928667386,0.82424205,0.04517359907428423,0.014371677893333334,0.008649951312690973,0.00620027452,243.2609888712565,143.12066986666667,87.39292844136556,105.55632266666666,223.70502344767252,56.00700533333333,2.5406105717023215,1.6545477100000001,18.85759989420573,0,7.493700385093689,22.063292846666673,4.5205799636960364e-7,0,0.8297440310319265,2.4300604600000004,0.07328469678759575,0.18491665533333332,378.3169860839843,5.244898398042764,60.75929086644639,95.49838619037708,17.75299385064143,13.337315984666134,-0.14755172549219298,19.030700365702312,0.5439773333333333,10917.529186943286,0,0.0023888405218409994,0.005493333333333334,0.7554780046145121,0.036805333333333336,0.006753209978342056,0.005562 +2148,2.6875537330260673,0,0,0.05239620486144567,2.1900526441125554,9.222059806187948,0.318648,0.7518883546193441,0.16734800000000002,134.04600143432617,2.206035736,15.475910266240438,0,7.908370018005371,0,7.87340001265208,0.04662900012000001,20.970755259195965,0.7525559999999999,127.99397404988606,0.00816,5.274766167004903,77.29179199999999,0,446.85020701090497,3136.6485799999996,1488.5997111002603,239.7768271706003,625.1189880371094,332.36661618347193,0.3855340927839279,0.8162396999999999,0.04327949943641821,0.01423214704,0.00787537859287113,0.00614007768,241.60699335734049,141.7311488,86.60322697957356,104.531504,222.81302134195963,55.46324799999999,2.5201605757077536,1.63848414,18.765599886576336,0,7.4214703639348345,21.84908612000001,3.673539978876761e-7,0,0.8218200355768204,2.4064676400000002,0.07261269663770993,0.18312134799999996,378.3019765218098,5.238237722857133,60.6611996737527,94.96220822705418,17.627447913158193,13.311734076983527,-0.1474962978551644,19.047000408172607,0.5386960000000001,10821.40769352414,0,0.0022387204808183014,0.00544,0.7441080013910929,0.036448,0.006500749965198338,0.005508000000000001 +2149,2.661205167016008,0,0,0.026198102430722847,2.1804504795153843,9.234939734141031,0.315524,0.7219083309173584,0.16570733333333337,134.19300079345703,2.184407934666667,15.29351011912028,0,7.8626099824905396,0,7.857679963111877,0.046171853060000004,20.553056399027508,0.7451779999999999,126.61597379048665,0.00808,5.270426114400228,76.53402933333332,0,446.4532063802083,3105.897123333333,1484.0797220865884,238.623158223946,625.6869862874349,331.2717268567666,0.3816740959882736,0.80823735,0.04149099998176098,0.014092616186666667,0.007169756029422085,0.00607988084,239.93898900349936,140.34162773333335,85.81272506713867,103.50668533333332,221.90002059936523,54.91949066666666,2.4997305671374,1.62242057,18.67390012741089,0,7.349300344785054,21.634879393333343,2.9848100998227284e-7,0,0.8138990352551142,2.3828748200000005,0.07194229712088902,0.18132604066666663,378.2859853108723,5.231577047671501,60.563108481059,94.42603026373129,17.50190197567495,13.286152169300921,-0.1474685840366501,19.063100337982178,0.5334146666666667,10725.28620010499,0,0.0020980204571969807,0.005386666666666667,0.7329080055157343,0.03609066666666667,0.00625769995773832,0.0054540000000000005 +2150,2.634856601005948,0,0,-0,2.170848314918213,9.247689882914225,0.3124,0.6931213239828745,0.1640666666666667,134.33900451660156,2.1627801333333334,15.113109827041626,0,7.817110021909078,0,7.84197998046875,0.04571470600000001,20.143357117970783,0.7377999999999999,125.25197410583496,0.008,5.266086101531982,75.77626666666666,0,446.0562006632487,3075.1456666666663,1479.5597330729165,237.4694892772917,626.2569986979166,330.17683753006116,0.37783809502919513,0.8002349999999999,0.03979939998437961,0.013953085333333334,0.006526993704028428,0.006019684,238.25799051920572,138.95210666666668,85.0214246114095,102.48186666666666,220.96601994832358,54.37573333333333,2.479330539703369,1.606357,18.582600116729736,0,7.277190327644348,21.420672666666675,2.424880065632351e-7,0,0.8059840351343155,2.3592820000000003,0.07127329582969348,0.1795307333333333,378.2689819335937,5.22491637248587,60.4650172883653,93.88985230040839,17.376356038191712,13.260570261618314,-0.1474685840366501,19.07900047302246,0.5281333333333333,10629.164706685844,0,0.0019661604116360345,0.005333333333333334,0.7218760053316752,0.03573333333333333,0.006023719945612053,0.0054 +2151,2.608508034995889,0,0,-0,2.161246150321042,9.260299841562906,0.309276,0.6654803107182184,0.16242600000000001,134.48300170898438,2.141152332,14.93490974108378,0,7.771870017051697,0,7.8263200124104815,0.045257558940000005,19.741558074951172,0.7304219999999999,123.90297571818034,0.00792,5.2617461284001665,75.018504,0,445.6592076619466,3044.3942099999995,1475.0297241210935,236.3158203306374,626.8279876708984,329.08194820335575,0.37402409315109253,0.7922326499999999,0.03820139914751053,0.01381355448,0.005941511636289458,0.00595948716,236.5629908243815,137.5625856,84.22952334086101,101.457048,220.01101938883463,53.831976,2.4589505394299827,1.59029343,18.491700172424316,0,7.2051602602005005,21.206465940000008,1.969729979123258e-7,0,0.7980740318695704,2.33568918,0.0706056971102953,0.17773542599999997,378.24998219807935,5.218255697300238,60.36692609567161,93.35367433708551,17.250810100708474,13.234988353935707,-0.1474685840366501,19.094600518544514,0.522852,10533.043213266697,0,0.0018425904078564297,0.005280000000000001,0.7110099991162618,0.035376,0.0057984699960798025,0.005346 +2152,2.582159468985829,0,0,-0,2.151643985723871,9.272779862085978,0.30615200000000004,0.6389392962058386,0.16078533333333336,134.62600072224936,2.119524530666667,14.758809645970663,0,7.726879994074504,0,7.810680111249288,0.04480041188000001,19.347558975219727,0.7230439999999999,122.5679759979248,0.00784,5.257405996322632,74.26074133333333,0,445.26220957438153,3013.642753333333,1470.4997253417966,235.1621513839831,627.3939921061198,327.98705887665034,0.37023008863131207,0.7842302999999999,0.036691498942673206,0.013674023626666667,0.005408239589693646,0.00589929032,234.8549893697103,136.17306453333333,83.43712298075359,100.43222933333332,219.0360196431478,53.288218666666666,2.438600540161133,1.57422986,18.40109984079997,0,7.133180260658264,20.99225921333334,1.5997999488111722e-7,0,0.7901700288057327,2.3120963600000004,0.06993809590737025,0.17594011866666665,378.22998046874994,5.211595022114607,60.26883490297791,92.81749637376261,17.125264163225232,13.209406446253102,-0.1474685840366501,19.110100428263348,0.5175706666666666,10436.92171984755,0,0.0017267703854789336,0.005226666666666668,0.7003059933582941,0.03501866666666666,0.005581630005811651,0.005292000000000001 +2153,2.55581090297577,0,0,-0,2.1420418211267,9.285120010375977,0.303028,0.6134552756945292,0.15914466666666668,134.7670021057129,2.0978967293333333,14.584709405899048,0,7.68215008576711,0,7.7950799862543745,0.044343264820000006,18.9610595703125,0.7156659999999999,121.24697621663411,0.00776,5.253056009610494,73.50297866666666,0,444.8652089436849,2982.8912966666667,1465.9797363281248,234.00848243732878,627.948984781901,326.892169549945,0.3664540921648343,0.77622795,0.03526209884633621,0.013534492773333334,0.004922557893830041,0.00583909348,233.13599014282227,134.78354346666669,82.64432271321614,99.40741066666666,218.04102198282877,52.74446133333333,2.4182705084482827,1.5581662900000002,18.310999870300293,0,7.061280330022176,20.778052486666674,1.2991700515385673e-7,0,0.7822740375995636,2.2885035400000002,0.06927189665536086,0.17414481133333332,378.2089818318684,5.204934346928976,60.17074371028421,92.28131841043972,16.999718225741994,13.183824538570494,-0.1474685840366501,19.125300407409668,0.5122893333333334,10340.800226428402,0,0.0016182303370442241,0.005173333333333334,0.6897630045811335,0.034661333333333336,0.005372869976175328,0.0052380000000000005 +2154,2.5294623369657105,0,0,-0,2.1324396565295287,9.297319968541464,0.299904,0.5889862775802612,0.15750400000000003,134.9070027669271,2.076268928,14.412709395090738,0,7.637670000394185,0,7.7795000076293945,0.04388611776000001,18.58206033706665,0.7082879999999999,119.93997637430827,0.00768,5.248715877532959,72.745216,0,444.46720631917316,2952.13984,1461.4497273763018,232.85481349067447,628.4939880371094,325.79728022323957,0.3626940871278445,0.7682256,0.03391079977154732,0.01339496192,0.004480226314626634,0.0057788966399999996,231.40498860677084,133.3940224,81.85122426350911,98.38259199999999,217.02602005004883,52.200703999999995,2.3979605038960776,1.5421027200000001,18.221299807230633,0,6.989450295766194,20.563845760000007,8.114027908826908e-8,0,0.7743840217590332,2.2649107200000005,0.06860709624985854,0.172349504,378.1869812011718,5.198273671743344,60.07265251759051,91.74514044711682,16.87417228825875,13.158242630887887,-0.1474685840366501,19.140300114949543,0.507008,10244.678733009256,0,0.0015165003424044698,0.00512,0.6793780028820038,0.034304,0.005171910083542268,0.005184 +2155,2.5031137709556512,0,0,-0,2.1228374919323576,9.30938990910848,0.29678000000000004,0.5654912640651067,0.15586333333333335,135.04500198364258,2.0546411266666667,14.242609341939291,0,7.593449989954631,0,7.763959964116414,0.04342897070000001,18.210361162821453,0.7009099999999999,118.64797528584798,0.0076,5.244365851084392,71.98745333333332,0,444.07020568847656,2921.388383333333,1456.919728597005,231.70114454402017,629.0269978841146,324.70239089653415,0.35895008593797684,0.7602232499999999,0.03263289947062731,0.013255431066666667,0.004077414904410641,0.005718699799999999,229.661989847819,132.00450133333334,81.0579210917155,97.35777333333333,215.99302291870117,51.65694666666666,2.377680520216624,1.5260391500000001,18.13189999262492,0,6.917690277099609,20.34963903333334,0,0,0.7665010243654251,2.2413179000000003,0.0679435965915521,0.17055419666666666,378.1629842122395,5.191612996557712,59.97456132489682,91.20896248379394,16.748626350775513,13.13266072320528,-0.1474685840366501,19.15510018666585,0.5017266666666667,10148.557239590109,0,0.0014211703188872586,0.005066666666666667,0.6691489915053049,0.03394666666666667,0.0049784500151872635,0.005130000000000001 +2156,2.4767652049455915,0,0,-0,2.113235327335186,9.321329673131308,0.29365600000000003,0.54293226202329,0.15422266666666667,135.18200302124023,2.033013325333333,14.074609200159708,0,7.549470067024231,0,7.748439947764079,0.042971823640000004,17.84586191177368,0.6935319999999998,117.3689759572347,0.00752,5.2400258382161455,71.22969066666666,0,443.67320251464844,2890.6369266666666,1452.3997294108071,230.54747559736586,629.5509847005209,323.60750156982874,0.3552170892556508,0.7522209,0.03142179952313503,0.013115900213333333,0.003710603496680657,0.00565850296,227.9099909464518,130.61498026666666,80.26462173461914,96.33295466666667,214.94202041625977,51.11318933333333,2.3574205438296,1.50997558,18.042899926503498,0,6.84600027402242,20.135432306666676,0,0,0.7586250354846319,2.21772508,0.06728149640063445,0.1687588893333333,378.13798777262366,5.184952321372081,59.876470132203124,90.67278452047105,16.623080413292275,13.107078815522675,-0.1474685840366501,19.16960032780965,0.49644533333333335,10052.435746170962,0,0.001331820278816546,0.005013333333333334,0.6590730051199595,0.03358933333333333,0.0047922199591994286,0.005076000000000001 +2157,2.450416638935532,0,0,-0,2.103633162738015,9.333120028177897,0.290532,0.5212712436914444,0.15258200000000002,135.3180020650228,2.011385524,13.908509095509848,0,7.505750060081482,0,7.73294993241628,0.04251467658000001,17.488462607065838,0.6861539999999998,116.1029764811198,0.0074400000000000004,5.2356858253479,70.47192799999999,0,443.2762095133464,2859.88547,1447.8697509765623,229.39380665071155,630.0640004475912,322.51261224312333,0.3514970913529396,0.74421855,0.030273499432951212,0.01297636936,0.003376592299900949,0.0055983061199999995,226.14699172973633,129.2254592,79.471221923828125,95.30813599999999,213.87201690673828,50.569432,2.337180495262146,1.49391201,17.954299608866375,0,6.774390339851379,19.92122558000001,0,0,0.7507560302813848,2.1941322600000004,0.06661909694472949,0.16696358199999997,378.11098734537757,5.17829164618645,59.77837893950942,90.13660655714816,16.497534475809033,13.081496907840068,-0.1474685840366501,19.18400017420451,0.49116400000000004,9956.314252751816,0,0.0012480902757185202,0.004960000000000001,0.6491489956776301,0.033232,0.004612930002622306,0.005022 +2158,2.424068072925473,0,0,-0,2.094030998140844,9.344779888788858,0.287408,0.500474234422048,0.15094133333333334,135.4520034790039,1.9897577226666665,13.744308869043985,0,7.462280035018921,0,7.717489997545878,0.042057529520000005,17.138063271840412,0.6787759999999998,114.85197639465332,0.00736,5.231345733006795,69.71416533333333,0,442.8792088826497,2829.1340133333333,1443.3397216796873,228.24013770405725,630.5669911702474,321.417722916418,0.34778908640146255,0.7362162,0.029186599577466648,0.012836838506666667,0.0030724812337818244,0.005538109279999999,224.37399291992188,127.83593813333333,78.67792256673177,94.28331733333333,212.78501892089844,50.02567466666666,2.3169705073038735,1.4778484400000003,17.86609999338786,0,6.7028702100118,19.70701885333334,0,0,0.74289703369140625,2.17053944,0.06595819629728794,0.16516827466666664,378.08398437499994,5.171630971000818,59.68028774681573,89.60042859382527,16.371988538325795,13.05591500015746,-0.1474685840366501,19.198100407918293,0.4858826666666667,9860.192759332667,0,0.0011696202661066006,0.004906666666666667,0.6393729945023855,0.03287466666666667,0.00444033994184186,0.004968 +2159,2.397719506915413,0,0,-0,2.0844288335436727,9.35630989074707,0.28428400000000004,0.48050422718127567,0.1493006666666667,135.58399963378906,1.9681299213333332,13.582108815511068,0,7.419049938519795,0,7.702069958051045,0.04160038246000001,16.794364134470623,0.6713979999999998,113.61297671000163,0.00728,5.227015733718872,68.95640266666666,0,442.4832026163737,2798.3825566666665,1438.8197123209634,227.08646875740294,631.0609842936198,320.32283358971256,0.34409308433532715,0.7282138499999999,0.028157499463607866,0.012697307653333333,0.0027955901847841838,0.00547791244,222.59199142456055,126.44641706666667,77.88472112019856,93.25849866666665,211.6800193786621,49.48191733333333,2.296780526638031,1.4617848700000002,17.778300285339355,0,6.631420334180196,19.492812126666674,0,0,0.7350450307130814,2.1469466200000005,0.06529839647312959,0.1633729673333333,378.0549875895182,5.164970295815186,59.58219655412203,89.06425063050237,16.246442600842553,13.030333092474855,-0.1474685840366501,19.212000528971355,0.4806013333333333,9764.07126591352,0,0.0010960802319459617,0.004853333333333334,0.6297440032164255,0.032517333333333336,0.004274199988382558,0.004914000000000001 +2160,2.371370940905354,0,0,-0,2.0748266689465016,9.36769994099935,0.28116,0.46133121351401013,0.14766,135.71600087483725,1.94650212,13.42180879910787,0,7.376070062319438,0,7.686669985453288,0.041143235400000006,16.457464536031086,0.6640199999999998,112.38797696431477,0.0072,5.222675681114197,68.19864,0,442.0872039794922,2767.6311,1434.2897338867185,225.93279981074863,631.5439961751302,319.22794426300715,0.3404070834318797,0.7202115,0.027180399745702744,0.0125577768,0.0025435192704511187,0.005417715599999999,220.8009910583496,125.056896,77.09172248840332,92.23367999999999,210.55901845296225,48.938159999999996,2.276610473791758,1.4457213000000002,17.690800348917644,0,6.560050328572591,19.278605400000007,0,0,0.7272010296583176,2.1233538000000003,0.06463859664897124,0.16157765999999998,378.02498372395826,5.158309620629555,59.484105361428334,88.52807266717949,16.120896663359314,13.004751184792248,-0.1474685840366501,19.22570006052653,0.47532,9667.949772494374,0,0.001027160227143516,0.0048000000000000004,0.6202599952618281,0.03216,0.004114260043328007,0.004860000000000001 +2161,2.3450223748952945,0,0,-0,2.0652245043493305,9.378949880599976,0.278036,0.4429212088386218,0.14601933333333333,135.84499994913736,1.9248743186666666,13.26330860455831,0,7.333330035209656,0,7.671299934387207,0.04068608834,16.127065499623615,0.6566419999999998,111.17597834269206,0.00712,5.218355655670166,67.44087733333333,0,441.6922073364258,2736.879643333333,1429.7696940104165,224.77913086409433,632.0169830322266,318.13305493630173,0.33673108120759326,0.71220915,0.026254599603513878,0.012418245946666667,0.002314038419475158,0.005357518759999999,219.00199127197266,123.66737493333332,76.2990239461263,91.20886133333333,209.42102177937826,48.394402666666664,2.2564704616864524,1.4296577300000002,17.603700002034504,0,6.488770325978597,19.06439867333334,0,0,0.7193650255600611,2.09976098,0.06398009695112705,0.15978235266666665,377.9929809570312,5.151648945443924,59.38601416873464,87.9918947038566,15.995350725876074,12.97916927710964,-0.1474685840366501,19.239100297292072,0.4700386666666667,9571.828279075227,0,9.625732200220227e-4,0.004746666666666667,0.6109189987182617,0.03180266666666667,0.003960289992392063,0.004806 +2162,2.3186738088852348,0,0,-0,2.0556223397521594,9.390069882074991,0.27491200000000005,0.4252452030777931,0.14437866666666668,135.9730021158854,1.9032465173333333,13.106708447138468,0,7.290839950243632,0,7.655959963798523,0.040228941280000007,15.803166230519613,0.6492639999999998,109.97697766621907,0.007039999999999999,5.214025537172954,66.68311466666667,0,441.29620361328125,2706.128186666667,1425.2497151692705,223.62546191744002,632.4809926350912,317.0381656095963,0.33306408176819485,0.7042068,0.025377099867910147,0.012278715093333333,0.0021051377213249602,0.00529732192,217.1939951578776,122.27785386666666,75.50672340393066,90.18404266666666,208.26701736450195,47.85064533333333,2.2363504568735757,1.4135941600000002,17.517000198364258,0,6.417570233345032,18.850191946666673,0,0,0.7115380267302195,2.0761681600000004,0.06332279741764069,0.15798704533333333,377.96098327636713,5.144988270258292,59.28792297604094,87.4557167405337,15.869804788392834,12.953587369427034,-0.1474685840366501,19.252400398254395,0.46475733333333336,9475.706785656079,0,9.020441939355806e-4,0.004693333333333334,0.6017179985841116,0.03144533333333333,0.0038120799775545797,0.004752000000000001 +2163,2.2923252428751755,0,0,-0,2.0460201751549882,9.401049931844076,0.27178800000000003,0.40827319025993347,0.142738,136.10000228881836,1.881618716,12.952008485794067,0,7.248580018679301,0,7.6406499942143755,0.039771794220000004,15.48556669553121,0.6418859999999998,108.78997866312663,0.00696,5.209705551465352,65.925352,0,440.90120188395184,2675.37673,1420.7297261555987,222.4717929707857,632.9339955647787,315.94327628289096,0.3294030850132306,0.69620445,0.0245424994888405,0.01213918424,0.0019149870204273611,0.005237125079999999,215.37899271647134,120.8883328,74.71472358703613,89.159224,207.09801737467447,47.306887999999994,2.2162604928016663,1.3975305900000001,17.430699984232586,0,6.346450289090474,18.635985220000006,0,0,0.7037210265795389,2.05257534,0.06266679801046848,0.156191738,377.92698415120435,5.13832759507266,59.189831783347245,86.91953877721082,15.744258850909594,12.928005461744428,-0.1474685840366501,19.265399932861328,0.459476,9379.585292236932,0,8.45318179926835e-4,0.00464,0.5926550030708313,0.031088,0.0036694000009447336,0.004698000000000001 +2164,2.2659766768651157,0,0,-0,2.036418010557817,9.41189988454183,0.268664,0.3919781818985939,0.14109733333333335,136.22500483194986,1.8599909146666667,12.79900828997294,0,7.206569989522298,0,7.625369946161906,0.03931464716000001,15.1740673383077,0.6345079999999998,107.61697832743327,0.00688,5.205385446548462,65.16758933333332,0,440.5071970621745,2644.6252733333336,1416.209726969401,221.3181240241314,633.3779856363932,314.84838695618555,0.32575108110904694,0.6882021,0.023748399534573156,0.011999653386666666,0.0017419163777958602,0.00517692824,213.5569928487142,119.49881173333333,73.92322413126628,88.13440533333333,205.9140192667643,46.76313066666666,2.1962004701296487,1.38146702,17.34470017751058,0,6.275420228640239,18.42177849333334,0,0,0.6959120333194733,2.0289825200000005,0.062011997836331524,0.15439643066666667,377.891980489095,5.131666919887029,59.091740590653544,86.38336081388792,15.618712913426354,12.902423554061821,-0.1474685840366501,19.278200149536133,0.4541946666666667,9283.463798817786,0,7.921581709524617e-4,0.004586666666666667,0.5837289939324061,0.030730666666666667,0.003532060014549643,0.0046440000000000006 +2165,2.2396281108550564,0,0,-0,2.0268158459606456,9.422609885533651,0.26554,0.3763321762283643,0.13945666666666667,136.34900029500326,1.8383631133333331,12.647808313369751,0,7.164800047874451,0,7.610120018323262,0.038857500100000004,14.868767976760864,0.6271299999999999,106.45597902933757,0.0068,5.201065500577291,64.40982666666666,0,440.1122080485026,2613.8738166666667,1411.699717203776,220.1644550774771,633.8129933675131,313.75349762948014,0.3221070816119512,0.68019975,0.02299479969466726,0.011860122533333333,0.0015843957953620702,0.0051167313999999995,211.72699356079102,118.10929066666665,73.13212458292644,87.10958666666667,204.71401723225912,46.21937333333333,2.1761504411697388,1.36540345,17.25909996032715,0,6.204480250676473,18.207571766666675,0,0,0.6881120204925537,2.0053897000000003,0.06135699742784103,0.1526011233333333,377.85598246256507,5.125006244701398,58.99364939795985,85.84718285056503,15.493166975943115,12.876841646379214,-0.1474685840366501,19.29080041249593,0.4489133333333334,9187.342305398637,0,7.423391604485611e-4,0.004533333333333334,0.5749359975258509,0.030373333333333336,0.0033998399740085006,0.00459 +2166,2.213279544844997,0,0,-0,2.0172136813634745,9.43317985534668,0.262416,0.3613101715842883,0.137816,136.47100067138672,1.8167353119999998,12.498408238093058,0,7.123270034790039,0,7.594900012016296,0.03840035304,14.56946873664856,0.6197519999999999,105.30697758992513,0.006719999999999999,5.1967553695042925,63.652063999999996,0,439.7181930541992,2583.12236,1407.1897176106768,219.0107861308228,634.2379964192709,312.6586083027747,0.318470078210036,0.6721974,0.02227909956127405,0.01172059168,0.0014410352838846545,0.005056534559999999,209.89099248250326,116.71976959999999,72.34162521362305,86.084768,203.5000203450521,45.675616,2.156140466531118,1.3493398800000003,17.17389980951945,0,6.133620301882426,17.993365040000008,0,0,0.6803200294574102,1.9817968800000003,0.06070329714566469,0.15080581599999998,377.81898752848304,5.118345569515766,58.895558205266155,85.31100488724215,15.367621038459875,12.851259738696607,-0.1474685840366501,19.303100268046062,0.443632,9091.22081197949,0,6.956511448758343e-4,0.0044800000000000005,0.5662759989500046,0.030016,0.0032725700293667614,0.004536000000000001 +2167,2.1869309788349374,0,0,-0,2.0076115167663033,9.443620045979818,0.259292,0.34688716381788254,0.13617533333333334,136.59200286865234,1.7951075106666665,12.350807984670004,0,7.08197005589803,0,7.579710006713867,0.037943205980000005,14.27596926689148,0.6123739999999999,104.16997909545898,0.00664,5.192435383796692,62.89430133333333,0,439.32519785563153,2552.3709033333334,1402.6797078450518,217.8571171841685,634.6529897054037,311.5637189760693,0.3148410792152087,0.66419505,0.021596799604594707,0.011581060826666666,0.001310564800708865,0.00499633772,208.0489934285482,115.33024853333333,71.55162620544434,85.05994933333334,202.2720184326172,45.131858666666666,2.136140445868174,1.3332763100000002,17.08910020192464,0,6.06285027662913,17.77915831333334,0,0,0.6725380222002665,1.9582040600000004,0.06005079702784618,0.14901050866666665,377.78098297119135,5.111684894330134,58.797467012572454,84.77482692391925,15.242075100976635,12.825677831014,-0.1474685840366501,19.31530014673869,0.43835066666666667,8995.099318560344,0,6.518991431221366e-4,0.004426666666666667,0.557747001449267,0.029658666666666667,0.003150059977391114,0.004482000000000001 +2168,2.160582412824878,0,0,-0,1.9980093521691322,9.453919967015585,0.256168,0.3330391546090444,0.13453466666666666,136.71200307210287,1.7734797093333332,12.204907973607382,0,7.04091997941335,0,7.5645400285720825,0.03748605892,13.988270044326782,0.6049959999999999,103.04597854614258,0.00656,5.1881353457768755,62.13653866666667,0,438.93119557698566,2521.6194466666666,1398.169718424479,216.70344823751418,635.0589853922526,310.46882964936395,0.31121807793776196,0.6561927,0.020948299517234165,0.011441529973333333,0.0011918543993184965,0.004936140879999999,206.20099131266275,113.94072746666666,70.76232846577962,84.03513066666667,201.03001912434897,44.58810133333333,2.1161704063415527,1.3172127400000002,17.004600048065186,0,5.9921702941258745,17.564951586666673,0,0,0.6647660235563914,1.9346112400000002,0.05939809667567412,0.14721520133333332,377.74098459879554,5.105024219144503,58.69937581987876,84.23864896059636,15.116529163493395,12.800095923331394,-0.1474685840366501,19.327200094858807,0.43306933333333336,8898.977825141197,0,6.108961339729527e-4,0.004373333333333333,0.5493249942859014,0.029301333333333332,0.003032120002899319,0.0044280000000000005 +2169,2.1342338468148183,0,0,-0,1.988407187571961,9.464089711507162,0.253044,0.3197431539495786,0.132894,136.8300018310547,1.751851908,12.060707966486612,0,7.000090042750041,0,7.549410065015157,0.037028911860000006,13.706170479456583,0.5976179999999999,101.93397903442383,0.00648,5.183825254440308,61.378775999999995,0,438.53919219970703,2490.86799,1393.669728597005,215.54977929085987,635.4549865722656,309.37394032265854,0.30760207772254944,0.64819035,0.020331499477227528,0.01130199912,0.001083823968656361,0.00487594404,204.3459930419922,112.55120639999998,69.97362836201985,83.010312,199.77401733398438,44.044343999999995,2.096230467160543,1.3011491700000002,16.920499960581463,0,5.921580235163371,17.350744860000006,0,0,0.6570030252138773,1.9110184200000002,0.05874669769157966,0.145419894,377.70098114013666,5.098363543958872,58.60128462718506,83.70247099727347,14.990983226010155,12.774514015648787,-0.1474685840366501,19.338900407155354,0.42778800000000006,8802.856331722049,0,5.724711275737112e-4,0.00432,0.5410110006729761,0.028944,0.0029185899960187576,0.004374000000000001 +2170,2.107885280804759,0,0,-0,1.97880502297479,9.474119981129965,0.24992,0.3069771428902944,0.13125333333333333,136.94600041707358,1.7302241066666666,11.91820764541626,0,6.959499955177307,0,7.534310022989909,0.0365717648,13.429671049118042,0.5902399999999999,100.8339786529541,0.0063999999999999994,5.179525216420491,60.62101333333333,0,438.1461944580078,2460.1165333333333,1389.159729003906,214.39611034420557,635.8419952392578,308.2790509959531,0.30399007598559064,0.640188,0.019742299647380907,0.011162468266666666,9.855306222258757e-4,0.0048157472,202.48699188232422,111.16168533333332,69.18552843729655,81.98549333333334,198.5050163269043,43.50058666666666,2.076310416062673,1.2850856000000002,16.836699803670246,0,5.851070245107015,17.13653813333334,0,0,0.6492480238278707,1.8874256000000003,0.05809649763007959,0.14362458666666666,377.65898640950513,5.09170286877324,58.503193434491365,83.16629303395058,14.865437288526914,12.74893210796618,-0.1474685840366501,19.35040028889974,0.4225066666666667,8706.734838302902,0,5.364621223028129e-4,0.004266666666666667,0.5328219930330912,0.028586666666666666,0.0028093099826946855,0.004320000000000001 +2171,2.0815367147946997,0,0,-0,1.9692028583776189,9.484009822209677,0.24679600000000002,0.2947201331456502,0.12961266666666665,137.0610033671061,1.7085963053333333,11.7774076461792,0,6.919139981269836,0,7.519229968388875,0.03611461774,13.158571561177572,0.5828619999999999,99.74507904052734,0.006319999999999999,5.175225218137105,59.863250666666666,0,437.75418345133465,2429.3650766666665,1384.65971883138,213.24244139755126,636.219004313151,307.1841616692477,0.3003840719660123,0.6321856499999999,0.01918129933377107,0.011022937413333333,8.961012984703606e-4,0.004755550359999999,200.6219914754232,109.77216426666666,68.3982302347819,80.96067466666668,197.22401809692383,42.95682933333333,2.056410471598307,1.2690220300000001,16.753300189971924,0,5.78065025806427,16.92233140666667,0,0,0.6415030211210251,1.8638327800000003,0.05744749711205562,0.14182927933333334,377.615982055664,5.085042193587609,58.40510224179767,82.6301150706277,14.739891351043674,12.723350200283573,-0.1474685840366501,19.361700375874836,0.41722533333333334,8610.613344883755,0,5.027171088537822e-4,0.004213333333333334,0.5247559994459152,0.028229333333333332,0.002704109977154682,0.004266000000000001 +2172,2.05518814878464,0,0,-0,1.9596006937804478,9.493770043055216,0.243672,0.28295213480790454,0.127972,137.17400105794272,1.686968504,11.63820767402649,0,6.879009962081909,0,7.504180113474528,0.035657470680000004,12.892872333526611,0.5754839999999999,98.66818046569824,0.00624,5.170935193697612,59.105487999999994,0,437.36219278971356,2398.61362,1380.1696980794268,212.08877245089695,636.5870005289713,306.0892723425423,0.29678506900866825,0.6241833,0.018646799493581057,0.01088340656,8.147399979255473e-4,0.00469535352,198.75299453735352,108.38264319999999,67.61163075764973,79.935856,195.93001556396484,42.413072,2.036540389060974,1.25295846,16.670300324757893,0,5.710320194562276,16.708124680000005,0,0,0.6337670336167017,1.8402399600000003,0.05679959710687399,0.140033972,377.57198079427076,5.078381518401977,58.30701104910397,82.0939371073048,14.614345413560434,12.697768292600967,-0.1474685840366501,19.372700373331707,0.41194400000000003,8514.491851464607,0,4.7109410418973613e-4,0.0041600000000000005,0.5168120066324869,0.027872,0.0026028499899742505,0.0042120000000000005 +2173,2.0288395827745807,0,0,-0,1.9499985291832764,9.503399848937988,0.240548,0.27165412654479343,0.12633133333333335,137.28700256347656,1.6653407026666667,11.500607570012411,0,6.839110016822815,0,7.489169955253601,0.03520032362,12.632372776667276,0.5681059999999999,97.60278065999348,0.00616,5.166635115941365,58.34772533333333,0,436.9701894124349,2367.8621633333332,1375.669708251953,210.93510350424265,636.9449971516927,304.99438301583695,0.2931910678744316,0.61618095,0.01813489959264795,0.010743875706666666,7.407247273173804e-4,0.0046351566799999995,196.87799199422201,106.99312213333332,66.82573254903157,78.91103733333334,194.62301635742188,41.86931466666666,2.016690452893575,1.23689489,16.587600072224934,0,5.6400801340738935,16.493917953333337,0,0,0.626042033235232,1.8166471400000002,0.056151497488220535,0.13823866466666665,377.52698262532545,5.071720843216346,58.208919856410276,81.55775914398191,14.488799476077194,12.67218638491836,-0.1474685840366501,19.383599917093914,0.40666266666666673,8418.37035804546,0,4.414580956411858e-4,0.0041066666666666665,0.5089870045582453,0.027514666666666666,0.002505369969488432,0.004158000000000001 +2174,2.002491016764521,0,0,-0,1.9403963645861053,9.512889862060547,0.237424,0.2608061234156291,0.12469066666666667,137.39700317382812,1.6437129013333334,11.364707549413046,0,6.799440026283264,0,7.474179983139038,0.034743176560000005,12.376973231633505,0.5607279999999999,96.54887962341309,0.0060799999999999995,5.162345091501872,57.589962666666665,0,436.5791829427083,2337.110706666667,1371.1797078450518,209.78143455758834,637.2939910888672,303.89949368913153,0.2896030719081561,0.6081786,0.017644299970318873,0.010604344853333333,6.733944804485267e-4,0.00457495984,194.99999237060547,105.60360106666666,66.04063415527344,77.88621866666666,193.30501810709634,41.32555733333333,1.996860424677531,1.22083132,16.50529972712199,0,5.569930235544841,16.27971122666667,0,0,0.6183250248432159,1.7930543200000002,0.055504697685440384,0.13644335733333332,377.480977376302,5.065060168030714,58.110828663716575,81.02158118065901,14.363253538593954,12.646604477235753,-0.1474685840366501,19.394200483957928,0.40138133333333337,8322.248864626314,0,4.136870920774527e-4,0.004053333333333333,0.5012810006737709,0.027157333333333332,0.0024115400350031755,0.004104000000000001 +2175,1.9761424507544616,0,0,-0,1.9307941999889342,9.522240002950033,0.2343,0.2503911169866721,0.12305,137.50600051879883,1.6220851,11.230407317479452,0,6.760000030199687,0,7.4592199722925825,0.0342860295,12.126673857371012,0.5533499999999999,95.50628089904785,0.006,5.1580650806427,56.8322,0,436.18818918863934,2306.35925,1366.689727783203,208.62776561093403,637.6339874267578,302.8046043624261,0.28602106869220734,0.60017625,0.017175999625275534,0.010464814,6.121492576009283e-4,0.004514763,193.11699295043945,104.21408,65.25623385111491,76.8614,191.97501627604166,40.7818,1.9770603974660237,1.2047677500000002,16.423399766286213,0,5.499870181083679,16.065504500000003,0,0,0.6106180250644684,1.7694615000000002,0.05485899715373913,0.13464805,377.4329808553059,5.058399492845083,58.01273747102288,80.48540321733613,14.237707601110714,12.621022569553148,-0.1474685840366501,19.404600143432617,0.3961,8226.127371207167,0,3.8766108385364834e-4,0.004,0.49368999898433685,0.026799999999999997,0.0023212199836658933,0.004050000000000001 +2176,1.949793884744402,0,0,-0,1.921192035391763,9.531459967295328,0.23117600000000002,0.2403911128640175,0.12140933333333334,137.61400095621744,1.6004572986666665,11.097607215245565,0,6.72078005472819,0,7.4442899624506635,0.03382888244,11.881274382273356,0.5459719999999999,94.47488149007161,0.00592,5.153774976730347,56.07443733333333,0,435.7971928914388,2275.607793333333,1362.2097167968748,207.4740966642797,637.9639994303385,301.7097150357207,0.2824430664380391,0.5921738999999999,0.016728699517746765,0.010325283146666666,5.564430563633019e-4,0.0044545661599999994,191.2309913635254,102.82455893333332,64.47273635864258,75.83658133333334,190.63401667277017,40.238042666666665,1.957290420929591,1.1887041800000002,16.341800053914387,0,5.429890314737956,15.851297773333338,0,0,0.6029220223426819,1.7458686800000003,0.05421439744532108,0.13285274266666666,377.3849843343098,5.0517388176594515,57.91464627832919,79.94922525401324,14.112161663627475,12.59544066187054,-0.1474685840366501,19.41480016708374,0.3908186666666667,8130.005877788019,0,3.632730755877371e-4,0.003946666666666667,0.48621400197347003,0.026442666666666666,0.0022342800123927495,0.003996 +2177,1.9234453187343425,0,0,-0,1.911589870794592,9.540539900461832,0.228052,0.23079010844230652,0.11976866666666668,137.72000376383463,1.5788294973333332,10.966407219568888,0,6.681789954503377,0,7.429389993349711,0.03337173538,11.640774885813395,0.5385939999999999,93.45448048909505,0.00584,5.149495005607605,55.316674666666664,0,435.40718332926434,2244.8563366666667,1357.7197062174478,206.3204277176254,638.2849833170573,300.6148257090153,0.27886906762917835,0.58417155,0.01629889973749717,0.010185752293333333,5.057768648839556e-4,0.00439436932,189.33999506632486,101.43503786666665,63.6900364557902,74.81176266666667,189.2810147603353,39.69428533333333,1.9375403821468353,1.1726406100000002,16.260599931081135,0,5.360000252723694,15.637091046666672,0,0,0.5952340265115103,1.7222758600000003,0.05357099790126085,0.13105743533333333,377.33598327636713,5.04507814247382,57.816555085635486,79.41304729069034,13.986615726144235,12.569858754187933,-0.1474685840366501,19.424700101216633,0.3855373333333334,8033.884384368872,0,3.404180727860269e-4,0.0038933333333333333,0.47885099798440933,0.026085333333333332,0.0021505900270616016,0.003942 +2178,1.897096752724283,0,0,-0,1.9019877061974206,9.549489974975586,0.22492800000000002,0.2215731032192707,0.11812800000000001,137.82500076293945,1.557201696,10.83670703570048,0,6.643020033836365,0,7.414520025253296,0.03291458832,11.405075470606485,0.5312159999999999,92.44508171081543,0.0057599999999999995,5.145215034484863,54.55891199999999,0,435.0171864827474,2214.10488,1353.2397054036455,205.1667587709711,638.5970001220703,299.51993638230994,0.2753010739882787,0.5761691999999999,0.01588769940038522,0.01004622144,4.596976965937453e-4,0.00433417248,187.44699478149414,100.04551679999999,62.90813763936361,73.786944,187.9180145263672,39.150527999999994,1.917820394039154,1.1565770400000002,16.179700056711834,0,5.2902001937230425,15.422884320000005,0,0,0.5875560243924459,1.6986830400000001,0.052927397191524506,0.12926212799999998,377.28498331705725,5.0384174672881885,57.71846389294179,78.87686932736746,13.861069788660995,12.544276846505326,-0.1474685840366501,19.434500058492024,0.38025600000000004,7937.762890949724,0,3.1900006676247966e-4,0.00384,0.47159900267918903,0.025727999999999997,0.0020700300228782,0.0038880000000000004 +2179,1.8707481867142235,0,0,-0,1.8923855416002495,9.558299859364828,0.221804,0.21272310117880502,0.11648733333333335,137.92800013224283,1.5355738946666666,10.708606878916422,0,6.604480028152466,0,7.399679978688558,0.032457441260000004,11.173975706100464,0.5238379999999999,91.44648170471191,0.00568,5.140934944152832,53.80114933333333,0,434.62718454996747,2183.3534233333335,1348.7697143554685,204.01308982431678,638.8989919026693,298.4250470556045,0.27173706392447156,0.56816685,0.015494199702516198,0.009906690586666666,4.177925463106173e-4,0.00427397564,185.54999542236328,98.65599573333333,62.1270383199056,72.76212533333333,186.54401270548502,38.60677066666666,1.8981203734874725,1.1405134700000001,16.099199930826824,0,5.2204802831013994,15.208677593333338,0,0,0.5798860142628351,1.6750902200000002,0.05228479796399673,0.12746682066666665,377.2339833577473,5.0317567921025566,57.62037270024809,78.34069136404456,13.735523851177755,12.518694938822721,-0.1474685840366501,19.444000085194904,0.3749746666666667,7841.641397530578,0,2.9892906604800373e-4,0.0037866666666666665,0.4644559994339943,0.025370666666666666,0.0019924900261685252,0.0038340000000000006 +2180,1.844399620704164,0,0,-0,1.8827833770030784,9.566969792048136,0.21868,0.20422609522938728,0.11484666666666668,138.03000132242838,1.5139460933333333,10.582006772359213,0,6.566149950027466,0,7.384859999020894,0.0320002942,10.947476545969645,0.5164599999999999,90.45858192443848,0.0056,5.136664907137553,53.04338666666666,0,434.2381820678711,2152.6019666666666,1344.2897033691404,202.85942087766247,639.1919962565104,297.3301577288991,0.2681790664792061,0.5601645,0.015114899724721909,0.009767159733333333,3.7968640147785965e-4,0.0042137788,183.64999516805014,97.26647466666665,61.34684054056803,71.73730666666667,185.1600138346354,38.06301333333333,1.878440390030543,1.1244499000000001,16.018999973932903,0,5.150860230127971,14.99447086666667,0,0,0.5722250193357468,1.6514974000000002,0.05164349793146054,0.12567151333333332,377.1809819539387,5.0250961169169255,57.522281507554396,77.80451340072167,13.609977913694514,12.493113031140114,-0.1474685840366501,19.453300317128498,0.3696933333333334,7745.51990411143,0,2.8012106486130506e-4,0.0037333333333333333,0.4574200039108594,0.025013333333333332,0.0019178500030344974,0.0037800000000000004 +2181,1.8180510546941044,0,0,-0,1.8731812124059073,9.575509866078695,0.21555600000000003,0.196068091938893,0.11320600000000001,138.130002339681,1.492318292,10.456806898117065,0,6.528049985567729,0,7.37008003393809,0.031543147140000005,10.725476741790771,0.5090819999999999,89.48138173421223,0.00552,5.132394949595134,52.285624,0,433.84918212890625,2121.8505099999998,1339.8197123209634,201.70575193100817,639.4750010172526,296.2352684021937,0.26462506502866745,0.5521621499999999,0.014748899654174844,0.00962762888,3.4503527664734673e-4,0.00415358196,181.7469940185547,95.8769536,60.567541440327965,70.71248800000001,183.76601282755533,37.519256,1.8587903678417206,1.10838633,15.939200003941854,0,5.08132020632426,14.780264140000003,0,0,0.5645750214656194,1.6279045800000003,0.05100179774065813,0.12387620599999999,377.12798055013013,5.018435441731294,57.4241903148607,77.26833543739879,13.484431976211274,12.467531123457507,-0.1474685840366501,19.46240011850993,0.36441200000000007,7649.3984106922835,0,2.624950575409457e-4,0.00368,0.45049099375804263,0.024655999999999997,0.001845999979802097,0.003726 +2182,1.791702488684045,0,0,-0,1.8635790478087362,9.583919843037924,0.212432,0.18823608880241713,0.11156533333333335,138.22900263468424,1.4706904906666667,10.33320665359497,0,6.49015998840332,0,7.355319976806641,0.031086000080000002,10.507877190907797,0.5017039999999999,88.51458231608073,0.0054399999999999995,5.1281247933705645,51.527861333333334,0,433.4601821899414,2091.0990533333334,1335.3497111002603,200.55208298435386,639.7499949137369,295.1403790754883,0.26107706626256305,0.5441598,0.014397899620234966,0.009488098026666666,3.1352916509301093e-4,0.00409338512,179.84199396769205,94.48743253333332,59.78914260864258,69.68766933333333,182.36301549275717,36.97549866666667,1.8391603827476501,1.09232276,15.859699885050455,0,5.011870265007019,14.566057413333338,0,0,0.5569340238968531,1.6043117600000003,0.05036139798661073,0.12208089866666666,377.07298024495435,5.0117747665456625,57.326099122167,76.73215747407589,13.358886038728034,12.4419492157749,-0.1474685840366501,19.47130012512207,0.3591306666666667,7553.276917273136,0,2.4597905333697173e-4,0.003626666666666667,0.4436669995387395,0.024298666666666666,0.001776839984813705,0.0036720000000000004 +2183,1.7653539226739854,0,0,-0,1.853976883211565,9.592179854710897,0.209308,0.180717084556818,0.10992466666666667,138.3270034790039,1.4490626893333334,10.211006800333658,0,6.452499985694885,0,7.34059997399648,0.030628853020000003,10.294677495956421,0.49432599999999993,87.55828221638997,0.00536,5.123854796091716,50.77009866666666,0,433.07118733723956,2060.3475966666665,1330.88969930013,199.39841403769955,640.0149943033854,294.0454897487829,0.25753306597471237,0.5361574499999999,0.014060899692897996,0.009348567173333332,2.848840522347018e-4,0.00403318828,177.93399302164713,93.09791146666666,59.01154327392578,68.66285066666667,180.95001347859701,36.43174133333333,1.8195603589216869,1.07625919,15.780599991480509,0,4.942500154177348,14.35185068666667,0,0,0.5493020216623942,1.5807189400000001,0.04972209750364224,0.12028559133333332,377.01797993977857,5.005114091360031,57.22800792947331,76.195979510753,13.233340101244796,12.416367308092294,-0.1474685840366501,19.4799002011617,0.35384933333333335,7457.155423853988,0,2.3050105179815242e-4,0.0035733333333333333,0.43694600214560825,0.023941333333333332,0.0017102599861876417,0.003618 +2184,1.7390053566639259,0,0,-0,1.844374718614394,9.600319862365723,0.206184,0.1734980804224809,0.108284,138.42200088500977,1.427434888,10.090206623077393,0,6.415040016174316,0,7.3258999188741045,0.030171705960000003,10.085578203201294,0.48694799999999994,86.61218070983887,0.00528,5.119594732920329,50.012336,0,432.6821797688802,2029.5961399999999,1326.429728190104,198.24474509104525,640.2699991861979,292.9506004220775,0.25399206082026166,0.5281551,0.013734699692577124,0.009209036319999999,2.5884096006241936e-4,0.00397299144,176.02399444580078,91.70839039999998,58.23484420776367,67.638032,179.5270118713379,35.887983999999996,1.7999803523222606,1.06019562,15.701800028483072,0,4.87323013941447,14.137643960000005,0,0,0.5416790147622427,1.5571261200000002,0.04908389753351609,0.11849028399999999,376.96098327636713,4.998453416174399,57.12991673677961,75.6598015474301,13.107794163761556,12.390785400409687,-0.1474685840366501,19.488300164540608,0.34856800000000004,7361.033930434842,0,2.1599704632535577e-4,0.00352,0.4303259973724683,0.023584,0.0016461800162990887,0.0035640000000000003 +2185,1.7126567906538663,0,0,-0,1.8347725540172228,9.608309904734293,0.20306000000000002,0.16656707848111788,0.10664333333333334,138.5170021057129,1.4058070866666665,9.970866362253824,0,6.377810041109721,0,7.311230023701985,0.029714558900000004,9.880738735198975,0.47956999999999994,85.67628288269043,0.0052,5.115324695905049,49.25457333333333,0,432.29417673746747,1998.8446833333333,1321.9697163899737,197.0910761443909,640.5169932047526,291.8557110953721,0.2504550615946452,0.5201527499999999,0.013420999671022097,0.009069505466666666,2.3516487150724666e-4,0.0039127946,174.11199569702148,90.31886933333332,57.45914649963379,66.61321333333333,178.09601465861002,35.344226666666664,1.7804303467273712,1.04413205,15.62340005238851,0,4.804040193557739,13.923437233333338,0,0,0.5340650280316671,1.5335333000000002,0.048446797455350556,0.11669497666666666,376.90398152669263,4.991792740988768,57.03182554408592,75.12362358410722,12.982248226278315,12.36520349272708,-0.1474685840366501,19.49660015106201,0.34328666666666674,7264.912437015695,0,2.0240504575970894e-4,0.003466666666666667,0.42380600174268085,0.023226666666666666,0.0015845000064776589,0.00351 +2186,1.686308224643807,0,0,-0,1.8251703894200515,9.616179863611857,0.199936,0.15991207336386046,0.10500266666666667,138.61000315348306,1.3841792853333332,9.852916320164999,0,6.340789953867595,0,7.296590010325114,0.029257411840000004,9.679959058761597,0.47219199999999995,84.75038401285808,0.0051199999999999996,5.111064592997233,48.49681066666667,0,431.9061787923177,1968.0932266666666,1317.5097147623696,195.9374071977366,640.7539927164713,290.7608217686667,0.24692405884464583,0.5121503999999999,0.013119199701274434,0.008929974613333334,2.136427901859861e-4,0.00385259776,172.19799677530924,88.92934826666666,56.68424701690674,65.58839466666667,176.65601348876953,34.80046933333333,1.7609003484249115,1.0280684800000002,15.545300006866455,0,4.734930237134297,13.709230506666671,0,0,0.5264610250790914,1.5099404800000003,0.0478094977637132,0.11489966933333333,376.8449834187825,4.985132065803137,56.93373435139222,74.58744562078434,12.856702288795075,12.339621585044473,-0.1474685840366501,19.504600048065186,0.3380053333333334,7168.790943596548,0,1.8966804054798558e-4,0.0034133333333333338,0.41738400359948474,0.022869333333333332,0.0015251299870821338,0.003456 +2187,1.6599596586337475,0,0,-0,1.8155682248228804,9.623899857203165,0.196812,0.15352307260036469,0.10336200000000001,138.70200220743814,1.362551484,9.736366351445517,0,6.303980032602946,0,7.281979997952779,0.028800264780000005,9.483189423878988,0.46481399999999995,83.83448282877605,0.005039999999999999,5.106804609298706,47.739048000000004,0,431.51818084716797,1937.34177,1313.0597127278643,194.7837382510823,640.9819895426432,289.6659324419613,0.24339705953995386,0.50414805,0.012826099681357542,0.00879044376,1.9407871877774596e-4,0.0037924009200000003,170.2819964090983,87.53982719999999,55.91024875640869,64.563576,175.20701471964517,34.256712,1.7413903375466664,1.0120049100000001,15.46750013033549,0,4.665910204251607,13.495023780000006,0,0,0.5188660174608231,1.4863476600000003,0.04717319800208012,0.113104362,376.7859853108723,4.978471390617505,56.835643158698524,74.05126765746144,12.731156351311835,12.314039677361865,-0.1474685840366501,19.51229985555013,0.332724,7072.6694501774,0,1.7773203702139048e-4,0.0033600000000000006,0.41106000045935315,0.022512,0.001467980007873848,0.003402 +2188,1.633611092623688,0,0,-0,1.8059660602257093,9.631489912668863,0.193688,0.1473900725444158,0.10172133333333333,138.7920010884603,1.3409236826666666,9.621186256408691,0,6.267379999160767,0,7.267390012741089,0.028343117720000005,9.290339787801107,0.45743599999999995,82.92848269144694,0.004959999999999999,5.102554559707642,46.98128533333333,0,431.1311747233073,1906.5903133333331,1308.609700520833,193.630069304428,641.1999867757162,288.5710431152559,0.2398740549882253,0.4961456999999999,0.012543499702587724,0.008650912906666667,1.76296655505818e-4,0.00373220408,168.36499532063803,86.15030613333333,55.13724994659424,63.538757333333336,173.7500114440918,33.71295466666666,1.7219103475411732,0.9959413400000001,15.390099922815958,0,4.596980174382527,13.280817053333339,0,0,0.5112800200780233,1.4627548400000001,0.04653809778392315,0.11130905466666666,376.724978129069,4.971810715431874,56.73755196600483,73.51508969413855,12.605610413828597,12.28845776967926,-0.1474685840366501,19.51990016301473,0.3274426666666667,6976.547956758253,0,1.6654803766869009e-4,0.003306666666666667,0.4048309996724129,0.022154666666666666,0.0014129700139164925,0.003348 +2189,1.6072625266136285,0,0,-0,1.7963638956285382,9.638949871063232,0.190564,0.1415010653436184,0.10008066666666666,138.87999979654947,1.3192958813333333,9.507366418838501,0,6.230999946594238,0,7.252840002377828,0.027885970660000006,9.101340134938559,0.45005799999999996,82.03218332926433,0.00488,5.098294496536255,46.22352266666667,0,430.7441813151042,1875.8388566666665,1304.15971883138,192.47640035777368,641.4100036621094,287.4761537885505,0.2363570568462213,0.4881433499999999,0.012270899799962839,0.008511382053333334,1.6013459511062442e-4,0.00367200724,166.44599533081055,84.76078506666666,54.3651507695516,62.51393866666667,172.28501256306967,33.16919733333333,1.7024503350257874,0.9798777700000001,15.31309994061788,0,4.5281301736831665,13.066610326666673,0,0,0.5037030229965845,1.4391620200000002,0.045902698300778866,0.10951374733333333,376.6639836629231,4.965150040246242,56.63946077331113,72.97891173081565,12.480064476345357,12.262875861996653,-0.1474685840366501,19.527199904123943,0.3221613333333334,6880.426463339107,0,1.5606703163939528e-4,0.0032533333333333338,0.39869600037733716,0.021797333333333335,0.0013600199890788645,0.003294 +2190,1.580913960603569,0,0,-0,1.786761731031367,9.646269877751669,0.18744,0.1358470618724823,0.09844,138.96700159708658,1.29766808,9.394885937372843,0,6.194819966952006,0,7.238309939702352,0.027428823600000006,8.916120608647665,0.44267999999999996,81.14558347066243,0.0048,5.094044486681621,45.46576,0,430.3561833699544,1845.0874,1299.709726969401,191.32273141111938,641.6099904378256,286.3812644618451,0.23284305507938066,0.48014099999999993,0.01200529964019855,0.0083718512,1.4544553899516663e-4,0.0036118104,164.52499389648438,83.371264,53.59395249684652,61.48912,170.8120142618815,32.62544,1.683020333449046,0.9638142000000001,15.23639996846517,0,4.4593701759974165,12.852403600000006,0,0,0.49613501876592636,1.4155692000000002,0.04526849867155155,0.10771844,376.6009852091471,4.958489365060611,56.541369580617435,72.44273376749277,12.354518538862116,12.237293954314046,-0.1474685840366501,19.53440014521281,0.31688000000000005,6784.304969919959,0,1.4624503213174952e-4,0.0032000000000000006,0.39265400171279907,0.02144,0.0013090499948399763,0.00324 +2191,1.5545653945935094,0,0,-0,1.777159566434196,9.653449853261312,0.184316,0.13041905810435614,0.09679933333333333,139.0529988606771,1.2760402786666667,9.28372589747111,0,6.158860007921855,0,7.223819971084595,0.026971676540000007,8.73461103439331,0.43530199999999997,80.26848411560059,0.004719999999999999,5.089784383773804,44.70799733333334,0,429.96917215983075,1814.3359433333333,1295.2697245279946,190.16906246446507,641.8009897867838,285.2863751351397,0.22933205341299376,0.47213864999999994,0.011746299608300129,0.008232320346666667,1.3209648993021497e-4,0.0035516135600000003,162.6039950052897,81.98174293333334,52.82365290323893,60.46430133333333,169.33201217651367,32.081682666666666,1.6636103093624115,0.94775063,15.160000085830688,0,4.390690247217814,12.638196873333339,0,0,0.4885770231485367,1.3919763800000002,0.04463539831340313,0.10592313266666667,376.53798166910804,4.951828689874979,56.44327838792374,71.90655580416988,12.228972601378876,12.211712046631439,-0.1474685840366501,19.541300296783447,0.3115986666666667,6688.183476500812,0,1.3704103063597964e-4,0.0031466666666666674,0.3867029969890912,0.021082666666666666,0.0012600000094001491,0.003186 +2192,1.5282168285834499,0,0,-0,1.7675574018370248,9.660499890645346,0.181192,0.12520805870493254,0.09515866666666667,139.13700103759766,1.2544124773333334,9.173885901769003,0,6.12309996287028,0,7.209350069363912,0.026514529480000007,8.556721369425455,0.42792399999999997,79.40078417460124,0.00464,5.085534373919169,43.95023466666667,0,429.5821787516276,1783.5844866666666,1290.8297017415362,189.01539351781076,641.9819895426432,284.1914858084343,0.2258260523279508,0.46413629999999995,0.01149579967993001,0.008092789493333334,1.1996544526482467e-4,0.0034914167200000004,160.6809933980306,80.59222186666666,52.05425516764323,59.43948266666666,167.84401194254556,31.53792533333333,1.6442303160826366,0.93168706,15.083899974822998,0,4.322100241978963,12.423990146666672,0,0,0.4810280129313469,1.3683835600000003,0.04400339815765619,0.10412782533333333,376.4739837646484,4.945168014689348,56.34518719523004,71.37037784084698,12.103426663895636,12.186130138948833,-0.1474685840366501,19.54800017674764,0.3063173333333334,6592.061983081665,0,1.284170284634456e-4,0.003093333333333334,0.3808419977625211,0.02072533333333333,0.0012127800049105038,0.003132 +2193,1.5018682625733906,0,0,-0,1.7579552372398535,9.667419910430908,0.178068,0.12020505716403325,0.093518,139.2200024922689,1.232784676,9.065335909525553,0,6.087540030479431,0,7.194909969965617,0.026057382420000004,8.38241179784139,0.420546,78.54248364766438,0.00456,5.081284364064534,43.192472,0,429.1961720784505,1752.8330299999998,1286.38969930013,187.86172457115646,642.1549936930338,283.0965964817289,0.22232405096292496,0.4561339499999999,0.011253399852042397,0.00795325864,1.0894240464646525e-4,0.00343121988,158.7569948832194,79.2027008,51.28585624694824,58.414664,166.34801483154297,30.994168,1.6248702903588612,0.9156234900000001,15.0082000096639,0,4.253590186436971,12.209783420000006,0,0,0.4734880179166794,1.34479074,0.04337249820431074,0.102332518,376.40898386637366,4.938507339503717,56.247096002536345,70.8341998775241,11.977880726412396,12.160548231266226,-0.1474685840366501,19.554500261942547,0.301036,6495.940489662517,0,1.2033502631917752e-4,0.0030400000000000006,0.3750699982047081,0.020368,0.0011673200157626222,0.003078 +2194,1.475519696563331,0,0,-0,1.7483530726426824,9.674199978510538,0.174944,0.11540205404162407,0.09187733333333334,139.3009999593099,1.2111568746666668,8.9580659866333,0,6.052199999491374,0,7.180500070254008,0.025600235360000004,8.211602210998535,0.413168,77.69348335266113,0.00448,5.077044328053792,42.43470933333333,0,428.8091761271159,1722.0815733333332,1281.9597066243487,186.70805562450215,642.3179931640625,282.0017071550235,0.2188260518014431,0.4481315999999999,0.011016099713742733,0.007813727786666667,4.2343278740493893e-5,0.00337102304,156.8329938252767,77.81317973333333,50.518357276916504,57.389845333333334,164.84601211547852,30.450410666666663,1.6055403053760529,0.8995599200000001,14.932799895604452,0,4.185160199801127,11.995576693333339,0,0,0.46595601737499237,1.3211979200000001,0.04274119840313991,0.10053721066666665,376.3429819742838,4.931846664318085,56.149004809842644,70.2980219142012,11.852334788929156,12.134966323583619,-0.1474685840366501,19.560700098673504,0.2957546666666667,6399.818996243371,0,1.1276202470374604e-4,0.002986666666666667,0.3693850040435791,0.020010666666666666,0.001123570012471949,0.0030239999999999998 +2195,1.4491711305532715,0,0,-0,1.7387509080455112,9.680840015411377,0.17182,0.11079105051855247,0.09023666666666667,139.3810017903646,1.1895290733333335,8.852065801620483,0,6.01705002784729,0,7.166109919548035,0.025143088300000005,8.04420248667399,0.40579,76.85358428955078,0.004399999999999999,5.072794278462728,41.676946666666666,0,428.4231694539388,1691.3301166666665,1277.5297139485674,185.55438667784784,642.4720001220703,280.90681782831814,0.21533305322130522,0.4401292499999999,0.010786099592223763,0.007674196933333334,0,0.0033108262000000003,154.90799458821616,76.42365866666667,49.75185934702555,56.365026666666665,163.3370132446289,29.90665333333333,1.5862302978833516,0.88349635,14.857800006866455,0,4.116820216178894,11.781369966666672,0,0,0.45843301713466644,1.2976051000000002,0.042111098455886044,0.09874190333333333,376.2759806315104,4.925185989132453,56.05091361714895,69.76184395087832,11.726788851445917,12.109384415901012,-0.1474685840366501,19.566800435384113,0.29047333333333336,6303.697502824223,0,1.0566502290506226e-4,0.002933333333333334,0.3637859995166461,0.01965333333333333,0.0010814599906249593,0.00297 +2196,1.422822564543212,0,0,-0,1.7291487434483401,9.687339941660563,0.168696,0.1063640508800745,0.08859600000000001,139.46000162760416,1.167901272,8.747315724690756,0,5.982109904289246,0,7.1517600218455,0.024685941240000005,7.880162874857585,0.398412,76.02268473307292,0.00432,5.068544228871663,40.919184,0,428.0371780395508,1660.57866,1273.0997009277341,184.40071773119354,642.6169993082682,279.8119285016127,0.2118450477719307,0.4321268999999999,0.01056299963966012,0.00753466608,0,0.0032506293600000004,152.98199590047201,75.03413760000001,48.986159324645996,55.340208,161.8210105895996,29.362896,1.5669403076171875,0.86743278,14.783100128173828,0,4.0485702355702715,11.567163240000005,0,0,0.4509210189183553,1.2740122800000002,0.04148209809015194,0.096946596,376.2079823811848,4.918525313946822,55.952822424455256,69.22566598755543,11.601242913962677,12.083802508218406,-0.1474685840366501,19.572600205739338,0.285192,6207.576009405076,0,3.372199777610755e-5,0.0028800000000000006,0.3582720011472702,0.019295999999999997,0.001040929996330912,0.002916 +2197,1.3964739985331525,0,0,-0,1.719546578851169,9.69372002283732,0.165572,0.10211304699381192,0.08695533333333334,139.53700002034506,1.1462734706666666,8.643795649210611,0,5.947369972864787,0,7.13742999235789,0.024228794180000006,7.719433228174846,0.391034,75.20078659057617,0.00424,5.064304232597351,40.16142133333333,0,427.6511713663737,1629.8272033333333,1268.669708251953,183.24704878453923,642.7519989013672,278.7170391749073,0.2083600473900636,0.42412454999999993,0.01034389971755445,0.007395135226666667,0,0.0031904325200000005,151.05499521891275,73.64461653333333,48.2214609781901,54.31538933333333,160.2980105082194,28.819138666666664,1.5476803084214528,0.8513692100000001,14.708700021107992,0,3.9804001450538635,11.35295651333334,0,0,0.4434170151750247,1.2504194600000003,0.040852698497474194,0.09515128866666665,376.1389795939127,4.911864638761191,55.854731231761555,68.68948802423253,11.475696976479437,12.0582206005358,-0.1474685840366501,19.578200181325276,0.2799106666666667,6111.454515985929,0,0,0.002826666666666667,0.3528409997622172,0.018938666666666666,0.0010019099960724513,0.002862 +2198,1.3701254325230932,0,0,-0,1.7099444142539977,9.699949900309244,0.162448,0.09803264650205772,0.08531466666666668,139.61200205485025,1.1246456693333333,8.541505575180054,0,5.912829955418904,0,7.123140017191569,0.023771647120000003,7.561923623085022,0.383656,74.38778432210286,0.00416,5.060054183006287,39.403658666666665,0,427.2651774088542,1599.0757466666664,1264.2397155761716,182.09337983788492,642.8789927164713,277.6221498482019,0.20487804959217706,0.4161221999999999,0.010128599824383855,0.0072556043733333336,0,0.00313023568,149.12799453735352,72.25509546666667,47.45776240030924,53.29057066666667,158.7700080871582,28.275381333333332,1.5284402867158253,0.8353056400000001,14.634600003560385,0,3.9123101234436035,11.138749786666672,0,0,0.435922014216582,1.22682664,0.04022449813783169,0.09335598133333332,376.0689849853515,4.905203963575559,55.75664003906786,68.15331006090965,11.350151038996197,12.032638692853192,-0.1474685840366501,19.58360004425049,0.27462933333333334,6015.333022566781,0,0,0.002773333333333334,0.3474930003285408,0.01858133333333333,9.643569937907159e-4,0.002808 +2199,1.3437768665130336,0,0,-0,1.7003422496568266,9.706049839655558,0.159324,0.09411514364182949,0.08367400000000001,139.68600209554037,1.103017868,8.440425475438436,0,5.8784999052683515,0,7.108869989713033,0.023314500060000003,7.407573898633321,0.376278,73.58348592122395,0.00408,5.055814107259114,38.64589599999999,0,426.87917073567706,1568.3242899999998,1259.8197021484373,180.93971089123062,642.9959920247396,276.52726052149654,0.2014000490307808,0.4081198499999999,0.009919239828983942,0.00711607352,0,0.0030700388400000003,147.20099639892578,70.8655744,46.69496377309164,52.265752,157.23501205444336,27.731623999999996,1.5092202723026276,0.81924207,14.56090005238851,0,3.8443001906077066,10.924543060000005,0,0,0.42843501766522724,1.2032338200000001,0.039597497942547,0.09156067399999998,375.9989852905273,4.898543288389927,55.65854884637416,67.61713209758675,11.224605101512957,12.007056785170587,-0.1474685840366501,19.58880027135213,0.26934800000000003,5919.211529147635,0,0,0.00272,0.34222499281167984,0.018223999999999997,9.282109967898577e-4,0.002754 +2200,1.317428300502974,0,0,-0,1.6907400850596555,9.712019920349121,0.1562,0.09035404274861018,0.08203333333333335,139.75900395711264,1.0813900666666667,8.340535402297974,0,5.844359954198201,0,7.094619989395142,0.022857353000000004,7.2563241720199585,0.3689,72.78788503011067,0.004,5.051574071248372,37.88813333333333,0,426.49317677815753,1537.5728333333332,1255.399709065755,179.7860419445763,643.103993733724,275.43237119479113,0.19792604570587477,0.4001174999999999,0.00971550983376801,0.006976542666666667,0,0.0030098420000000004,145.27399444580078,69.47605333333334,45.93306509653727,51.24093333333333,155.69401041666666,27.187866666666665,1.4900302787621815,0.8031785,14.487499952316284,0,3.776380161444346,10.710336333333338,0,0,0.4209570164481799,1.1796410000000002,0.03897149860858917,0.08976536666666665,375.9279861450195,4.891882613204296,55.560457653680466,67.08095413426386,11.099059164029716,11.98147487748798,-0.1474685840366501,19.59369993209839,0.26406666666666667,5823.090035728487,0,0,0.002666666666666667,0.3370369995633761,0.017866666666666663,8.934179980618259e-4,0.0027 +2201,1.2910797344929146,0,0,-0,1.6811379204624843,9.71785012880961,0.15307600000000002,0.08674324055512746,0.08039266666666668,139.83000055948892,1.0597622653333334,8.241825262705484,0,5.810409982999166,0,7.0804100433985395,0.022400205940000004,7.108124494552612,0.361522,72.00088564554851,0.00392,5.047324061393738,37.130370666666664,0,426.107172648112,1506.8213766666665,1250.9897054036455,178.632372997922,643.2029927571615,274.3374818680857,0.1944570429623127,0.3921151499999999,0.009514689911156893,0.0068370118133333335,0,0.0029496451600000005,143.34699630737305,68.08653226666667,45.17206637064616,50.21611466666666,154.14801025390625,26.644109333333333,1.4708602527777355,0.78711493,14.414400021235148,0,3.708540201187134,10.49612960666667,0,0,0.4134890139102936,1.1560481800000002,0.038346498583753906,0.08797005933333332,375.85498555501295,4.885221938018665,55.46236646098677,66.54477617094098,10.973513226546476,11.955892969805372,-0.1474685840366501,19.5985000928243,0.25878533333333337,5726.96854230934,0,0,0.002613333333333334,0.33192799985408783,0.017509333333333328,8.599290013080463e-4,0.0026460000000000003 +2202,1.2647311684828553,0,0,-0,1.6715357558653132,9.723549763361612,0.149952,0.08327674058576424,0.07875200000000002,139.89900080362955,1.038134464,8.144275188446045,0,5.776670058568318,0,7.0662299791971845,0.021943058880000005,6.9629048109054565,0.354144,71.22238540649414,0.00384,5.043083945910136,36.372608,0,425.72118123372394,1476.06992,1246.5697021484373,177.4787040512677,643.2919972737631,273.2425925413803,0.19099204490582147,0.3841127999999999,0.009318969600523511,0.00669748096,0,0.00288944832,141.41899236043295,66.6970112,44.41206709543864,49.191295999999994,152.59500885009766,26.100351999999997,1.4517202476660411,0.7710513600000001,14.341700156529745,0,3.6407801508903503,10.281922880000003,0,0,0.4060300141572952,1.1324553600000002,0.03772119805216789,0.086174752,375.7819798787434,4.878561262833033,55.36427526829307,66.00859820761808,10.847967289063236,11.930311062122765,-0.1474685840366501,19.603000164031982,0.253504,5630.847048890193,0,0,0.00256,0.3268959994117419,0.017151999999999997,8.276950005286684e-4,0.002592 +2203,1.2383826024727957,0,0,-0,1.6619335912681419,9.729109843571981,0.14682800000000001,0.07994863701363404,0.07711133333333334,139.96700286865234,1.0165066626666666,8.047885338465372,0,5.743120034535726,0,7.0520700216293335,0.021485911820000002,6.820605158805847,0.34676599999999996,70.45228513081868,0.00376,5.038843949635823,35.61484533333333,0,425.33516693115234,1445.3184633333333,1242.15971883138,176.3250351046134,643.3729909261068,272.14770321467495,0.1875320424636205,0.3761104499999999,0.0091280498697112,0.006557950106666667,0,0.0028292514800000003,139.49199676513672,65.30749013333333,43.65296904246012,48.16647733333333,151.0380096435547,25.556594666666665,1.432600239912669,0.75498779,14.269299983978271,0,3.57310018936793,10.067716153333338,0,0,0.39857901136080426,1.10886254,0.037096998964746795,0.08437944466666665,375.70798492431635,4.871900587647402,55.26618407559938,65.4724202442952,10.722421351579998,11.90472915444016,-0.1474685840366501,19.607300122578938,0.2482226666666667,5534.7255554710455,0,0,0.002506666666666667,0.32193999985853833,0.016794666666666663,7.96668988186866e-4,0.0025380000000000003 +2204,1.2120340364627362,0,0,-0,1.6523314266709708,9.734530051549276,0.143704,0.07675353437662125,0.07547066666666667,140.03400039672852,0.9948788613333333,7.952635169029236,0,5.7097599903742475,0,7.03793998559316,0.021028764760000002,6.681165456771851,0.33938799999999997,69.6904862721761,0.00368,5.034603953361511,34.85708266666666,0,424.9501775105794,1414.5670066666667,1237.7496846516924,175.17136615795908,643.4439951578776,271.05281388796953,0.18407504136363664,0.3681080999999999,0.008939289798339209,0.006418419253333333,0,0.00276905464,137.56499735514322,63.917969066666664,42.894869804382324,47.141658666666665,149.4750099182129,25.01283733333333,1.4135002593199413,0.7389242200000001,14.197199980417887,0,3.505510151386261,9.85350942666667,0,0,0.3911370113492012,1.08526972,0.03647389790664116,0.08258413733333332,375.6329778035481,4.86523991246177,55.16809288290568,64.9362422809723,10.596875414096758,11.879147246757553,-0.1474685840366501,19.61139980951945,0.24294133333333337,5438.604062051899,0,0,0.0024533333333333334,0.3170590003331502,0.01643733333333333,7.668059988645837e-4,0.002484 +2205,1.1856854704526767,0,0,-0,1.6427292620737997,9.739820003509521,0.14058,0.07368613531192143,0.07383,140.099001566569,0.97325106,7.858505169550578,0,5.676600019137065,0,7.023839990297954,0.020571617700000003,6.544555743535359,0.33200999999999997,68.93698565165202,0.0036,5.030363917350769,34.09932,0,424.56416575113934,1383.81555,1233.3397115071612,174.01769721130478,643.5059916178385,269.9579245612641,0.1806210403641065,0.3601057499999999,0.008754919826363524,0.0062788884,0,0.0027088578,135.63799540201822,62.528448,42.137670834859215,46.116839999999996,147.90700912475586,24.469079999999998,1.3944302399953206,0.7228606500000001,14.125399827957153,0,3.4380001227060952,9.639302700000004,0,0,0.3837030157446861,1.0616769000000001,0.03585189829270045,0.08078882999999999,375.557985941569,4.858579237276139,55.07000169021198,64.40006431764941,10.471329476613517,11.853565339074946,-0.1474685840366501,19.615300337473553,0.23766000000000004,5342.482568632751,0,0,0.0024000000000000002,0.3122519999742508,0.016079999999999997,7.380620033169786e-4,0.0024300000000000003 +2206,1.1593369044426174,0,0,-0,1.6331270974766285,9.744979937871298,0.13745600000000002,0.07074133430918057,0.07218933333333334,140.16299947102866,0.9516232586666666,7.76549506187439,0,5.643629988034566,0,7.0097700754801435,0.020114470640000003,6.410695989926656,0.324632,68.19148699442546,0.0035199999999999997,5.026123881340027,33.341557333333334,0,424.1791814168294,1353.0640933333334,1228.9396972656248,172.86402826465047,643.5589955647787,268.8630352345587,0.17717003946503004,0.3521033999999999,0.008574679726734757,0.006139357546666667,0,0.0026486609600000002,133.71099599202475,61.13892693333333,41.381372133890785,45.09202133333333,146.3340072631836,23.925322666666666,1.375380237897237,0.7067970800000001,14.053900082906088,0,3.3705701430638633,9.425095973333336,0,0,0.3762790138522784,1.0380840800000002,0.03523089891920487,0.07899352266666666,375.48098246256507,4.851918562090508,54.97191049751829,63.86388635432652,10.345783539130277,11.827983431392338,-0.1474685840366501,19.618899822235107,0.2323786666666667,5246.361075213604,0,0,0.002346666666666667,0.30751799295345944,0.015722666666666663,7.103950047167018e-4,0.0023760000000000005 +2207,1.1329883384325579,0,0,-0,1.6235249328794574,9.75,0.134332,0.06791413202881813,0.07054866666666668,140.22499974568686,0.9299954573333332,7.673575043678284,0,5.610850016276042,0,6.995730042457581,0.019657323580000004,6.279556234677632,0.317254,67.45418612162273,0.00344,5.021873752276103,32.58379466666667,0,423.79316965738934,1322.3126366666668,1224.5397033691404,171.71035931799616,643.6029917399088,267.7681459078533,0.17372404038906097,0.3441010499999999,0.008395969790096084,0.005999826693333333,0,0.00258846412,131.78399531046549,59.74940586666666,40.62597370147705,44.06720266666666,144.75601196289062,23.38156533333333,1.3563602368036907,0.6907335100000002,13.982800086339315,0,3.3032201528549194,9.210889246666671,0,0,0.3688640172282855,1.0144912600000002,0.034609499077002205,0.07719821533333333,375.40398406982416,4.845257886904876,54.87381930482459,63.327708391003625,10.220237601647037,11.802401523709731,-0.1474685840366501,19.622400124867756,0.22709733333333337,5150.239581794457,0,0,0.0022933333333333334,0.3028559982776642,0.015365333333333332,6.837649998487905e-4,0.0023220000000000003 +2208,1.1066397724224983,0,0,-0,1.613922768282286,9.754879792531332,0.13120800000000002,0.06519993022084236,0.068908,140.2860018412272,0.9083676559999999,7.582754929860433,0,5.578260103861491,0,6.981709957122803,0.01920017652,6.15105660756429,0.30987599999999993,66.72478675842285,0.0033599999999999997,5.01763379573822,31.826032,0,423.4081751505534,1291.5611800000001,1220.139709472656,170.55669037134186,643.6379903157552,266.67325658114794,0.17028303816914558,0.33609869999999986,0.008218729790921012,0.00586029584,0,0.00252826728,129.8579978942871,58.35988479999999,39.87157471974691,43.042384,143.1730079650879,22.837808,1.3373602330684662,0.6746699400000001,13.911900202433268,0,3.2359601259231567,8.996682520000004,0,0,0.36145701507727307,0.9908984400000002,0.03398919912676016,0.07540290799999999,375.32597859700513,4.838597211719245,54.7757281121309,62.79153042768074,10.094691664163799,11.776819616027126,-0.1474685840366501,19.625600179036457,0.22181600000000007,5054.1180883753095,0,0,0.0022400000000000002,0.298265000184377,0.015007999999999997,6.581330041323478e-4,0.0022680000000000005 +2209,1.080291206412439,0,0,-0,1.604320603685115,9.759630044301352,0.128084,0.06259422997633617,0.06726733333333333,140.3450024922689,0.8867398546666665,7.493004997571309,0,5.545859972635905,0,6.967720031738281,0.01874302946,6.025156855583191,0.30249799999999993,66.00318654378255,0.00328,5.013393759727478,31.068269333333333,0,423.0221684773763,1260.8097233333335,1215.7396748860674,169.40302142468755,643.6630045572916,265.5783672544425,0.1668450372914473,0.32809634999999987,0.0080451995600014925,0.0057207649866666665,0,0.0024680704399999997,127.93299738566081,56.97036373333332,39.11807632446289,42.01756533333333,141.58600743611655,22.294050666666664,1.3183802167574565,0.6586063700000002,13.841399987538656,0,3.1687801678975425,8.782475793333337,0,0,0.35406101246674854,0.9673056200000001,0.03336989879608154,0.07360760066666666,375.2469863891601,4.831936536533613,54.6776369194372,62.25535246435785,9.969145726680559,11.751237708344519,-0.1474685840366501,19.628600120544434,0.21653466666666674,4957.996594956163,0,0,0.0021866666666666666,0.29374299943447113,0.014650666666666664,6.334619926443944e-4,0.0022140000000000003 +2210,1.0539426404023795,0,0,-0,1.5947184390879439,9.764249960581461,0.12496000000000002,0.06009262831260761,0.06562666666666667,140.40300114949545,0.8651120533333332,7.404314835866292,0,5.513650019963582,0,6.953759948412578,0.0182858824,5.901787042617798,0.29511999999999994,65.28948656717937,0.0031999999999999997,5.009153763453166,30.31050666666667,0,422.63717397054035,1230.058266666667,1211.3396911621091,168.24935247803325,643.6799875895182,264.4834779277371,0.16341203699509302,0.3200939999999999,0.007875179794306556,0.005581234133333333,0,0.0024078736,126.00799496968587,55.580842666666655,38.36557801564535,40.99274666666666,139.99500783284506,21.75029333333333,1.299430211385091,0.6425428000000002,13.77120010058085,0,3.1016701261202493,8.56826906666667,0,0,0.34667301177978516,0.9437128000000001,0.03275029888997475,0.07181229333333333,375.1669794718424,4.825275861347982,54.579545726743504,61.719174501034956,9.843599789197318,11.725655800661912,-0.1474685840366501,19.631400267283123,0.2112533333333334,4861.875101537015,0,0,0.0021333333333333334,0.28928900013367337,0.014293333333333332,6.097149986696119e-4,0.0021600000000000005 +2211,1.02759407439232,0,0,-0,1.5851162744907727,9.7687300046285,0.12183600000000001,0.057691026479005814,0.063986,140.46000289916992,0.8434842519999999,7.3166747490564985,0,5.481629967689514,0,6.9398299853007,0.017828735340000002,5.780917326609294,0.28774199999999994,64.58348655700684,0.0031199999999999995,5.004913687705994,29.552744,0,422.2511749267578,1199.3068100000003,1206.9496968587237,167.09568353137894,643.6869964599609,263.3885886010317,0.15998303517699242,0.3120916499999999,0.007706109783612192,0.00544170328,0,0.00234767676,124.0839958190918,54.19132159999999,37.61397933959961,39.96792799999999,138.39900970458984,21.206536,1.2805002232392628,0.6264792300000002,13.701299985249838,0,3.034650127092997,8.354062340000002,0,0,0.3392930080493291,0.9201199800000002,0.032131798565387726,0.070016986,375.08698527018225,4.818615186162351,54.48145453404981,61.182996537712064,9.718053851714078,11.700073892979304,-0.1474685840366501,19.633999983469646,0.20597200000000007,4765.753608117868,0,0,0.0020800000000000003,0.2849030022819837,0.013935999999999999,5.86859003912347e-4,0.0021060000000000002 +2212,1.0012455083822605,0,0,-0,1.5755141098936016,9.773070017496744,0.11871200000000001,0.05538532634576162,0.06234533333333333,140.5150006612142,0.8218564506666665,7.230064749717712,0,5.449790000915527,0,6.9259300629297895,0.017371588280000003,5.662497639656067,0.28036399999999995,63.88508733113607,0.0030399999999999997,5.000673611958821,28.794981333333332,0,421.86517333984375,1168.5553533333336,1202.5596822102862,165.94201458472463,643.6859944661459,262.2936992743263,0.15655503422021866,0.3040892999999999,0.007540289817067484,0.005302172426666666,0,0.00228747992,122.1599973042806,52.80180053333332,36.86327997843424,38.943109333333325,136.79900741577148,20.662778666666664,1.2615902225176494,0.6104156600000001,13.631800174713135,0,2.9677101174990335,8.139855613333335,0,0,0.3319210112094879,0.8965271600000001,0.03151429879168669,0.06822167866666666,375.005983988444,4.811954510976719,54.38336334135611,60.64681857438917,9.592507914230838,11.674491985296699,-0.1474685840366501,19.63629976908366,0.20069066666666674,4669.632114698721,0,0,0.0020266666666666666,0.2805839975674947,0.013578666666666666,5.648600053973496e-4,0.0020520000000000004 +2213,0.974896942372201,0,0,-0,1.5659119452964303,9.777279933293661,0.11558800000000002,0.0531718252847592,0.060704666666666664,140.56799952189127,0.8002286493333332,7.144494652748108,0,5.418130040168762,0,6.912049969037374,0.016914441220000003,5.5464978615442915,0.27298599999999995,63.19428730010986,0.0029599999999999995,4.99643353621165,28.037218666666668,0,421.4801762898763,1137.8038966666668,1198.169708251953,164.7883456380703,643.67498779296875,261.19880994762093,0.15313203384478888,0.2960869499999999,0.007377529866062105,0.005162641573333334,0,0.0022272830799999997,120.23799641927083,51.41227946666666,36.11348088582357,37.918290666666664,135.19500605265299,20.119021333333333,1.2427101929982503,0.5943520900000002,13.5625,0,2.9008501370747886,7.925648886666669,0,0,0.3245580121874809,0.8729343400000001,0.03089789890994628,0.06642637133333333,374.92398071289057,4.805293835791087,54.285272148662415,60.11064061106628,9.4669619767476,11.648910077614092,-0.1474685840366501,19.638500054677326,0.19540933333333338,4573.5106212795745,0,0,0.0019733333333333334,0.27633000165224075,0.013221333333333331,5.436849896796048e-4,0.001998 +2214,0.9485483763621415,0,0,-0,1.5563097806992592,9.781349897384644,0.11246400000000002,0.051046823461850487,0.05906399999999999,140.62000020345053,0.7786008479999997,7.059924562772115,0,5.386660019556682,0,6.898199995358785,0.016457294160000004,5.4328181346257525,0.26560799999999996,62.510987281799316,0.0028799999999999997,4.992183526357015,27.279456,0,421.09417724609375,1107.0524400000002,1193.7797037760415,163.634676691416,643.6549936930338,260.1039206209155,0.1497140328089396,0.2880845999999999,0.0072152997987965746,0.0050231107200000005,0,0.00216708624,118.3159974416097,50.022758399999994,35.364682833353676,36.893471999999996,133.58700815836588,19.575263999999997,1.2238401969273884,0.5782885200000002,13.493599971135458,0,2.834080139795939,7.7114421600000025,0,0,0.3172050093611081,0.8493415200000001,0.030282598920166492,0.06463106399999999,374.84099070231116,4.798633160605456,54.187180955968714,59.57446264774339,9.34141603926436,11.623328169931485,-0.1474685840366501,19.640399932861328,0.19012800000000005,4477.389127860427,0,0,0.00192,0.2721400037407875,0.012863999999999999,5.233039943656573e-4,0.0019440000000000002 +2215,0.922199810352082,0,0,-0,1.546707616102088,9.785289923350016,0.10934000000000002,0.04900672317792972,0.057423333333333326,140.67100143432617,0.7569730466666664,6.976364533106486,0,5.355379978815715,0,6.884379982948303,0.016000147100000004,5.321458339691162,0.25822999999999996,61.8349879582723,0.0027999999999999995,4.98793351650238,26.52169333333333,0,420.70817311604816,1076.3009833333335,1189.399709065755,162.48100774476168,643.6260019938151,259.0090312942101,0.14629903311530748,0.2800822499999999,0.00705358983638386,0.004883579866666667,0,0.0021068894,116.3939978281657,48.63323733333333,34.61678377787272,35.86865333333333,131.97600936889648,19.031506666666665,1.2050102055072784,0.5622249500000002,13.42489997545878,0,2.767380118370056,7.497235433333335,0,0,0.3098600059747696,0.8257487000000001,0.02966679896538456,0.06283575666666666,374.75698089599604,4.791972485419825,54.08908976327502,59.0382846844205,9.21587010178112,11.59774626224888,-0.1474685840366501,19.642100016276043,0.18484666666666671,4381.267634441279,0,0,0.0018666666666666666,0.26801399638255435,0.012506666666666666,5.036879932352653e-4,0.0018900000000000002 +2216,0.8958512443420225,0,0,-0,1.537105451504917,9.789089838663736,0.10621600000000002,0.04704822227358818,0.05578266666666666,140.72000376383463,0.7353452453333331,6.893794496854146,0,5.324270049730937,0,6.870589971542358,0.015543000040000005,5.212348580360413,0.25085199999999996,61.16638787587484,0.0027199999999999993,4.983693520228068,25.763930666666663,0,420.3221740722656,1045.549526666667,1185.0196940104165,161.32733879810738,643.5879923502604,257.9141419675047,0.1428890290359656,0.27207989999999993,0.006894709814029436,0.004744049013333334,0,0.00204669256,114.47399711608887,47.24371626666666,33.86978499094645,34.84383466666666,130.36100641886392,18.487749333333333,1.1861901879310608,0.5461613800000001,13.356600046157837,0,2.700770099957784,7.283028706666668,0,0,0.30252300947904587,0.8021558800000002,0.029052098902563255,0.06104044933333332,374.6729838053385,4.785311810234193,53.990998570581326,58.50210672109761,9.09032416429788,11.572164354566272,-0.1474685840366501,19.64359982808431,0.17956533333333338,4285.146141022133,0,0,0.0018133333333333332,0.26395099610090256,0.012149333333333333,4.848060004102687e-4,0.0018360000000000002 +2217,0.869502678331963,0,0,-0,1.5275032869077458,9.792760054270426,0.10309200000000002,0.04516792111098766,0.05414199999999999,140.7669995625814,0.7137174439999997,6.812194466590881,0,5.293350060780843,0,6.8568300406138105,0.015085852980000005,5.105458776156108,0.24347399999999997,60.504987716674805,0.0026399999999999996,4.979443430900574,25.006167999999995,0,419.93617248535156,1014.7980700000002,1180.639689127604,160.17366985145307,643.5399881998698,256.8192526407993,0.13948002954324087,0.26407754999999994,0.006738499893496434,0.004604518160000001,0,0.00198649572,112.55499649047852,45.85419519999999,33.12378660837809,33.81901599999999,128.74200630187988,17.943991999999998,1.1674001812934875,0.5300978100000002,13.28849999109904,0,2.634230117003123,7.068821980000002,0,0,0.29519500583410263,0.7785630600000001,0.028438498886922996,0.05924514199999999,374.58798472086585,4.778651135048561,53.892907377887624,57.96592875777472,8.964778226814639,11.546582446883665,-0.1474685840366501,19.64490000406901,0.17428400000000005,4189.024647602986,0,0,0.0017599999999999998,0.2599490011731784,0.011792,4.666330011483903e-4,0.0017820000000000002 +2218,0.8431541123219035,0,0,-0,1.5179011223105745,9.796290000279745,0.09996800000000003,0.04336281990011533,0.052501333333333323,140.8140017191569,0.6920896426666664,6.731564283370972,0,5.262609998385112,0,6.8430899779001875,0.014628705920000006,5.000729044278462,0.23609599999999997,59.850687980651855,0.0025599999999999993,4.975203434626262,24.24840533333333,0,419.55017344156903,984.0466133333335,1176.2596842447915,159.02000090479874,643.4839986165365,255.7243633140939,0.1360760306318601,0.25607519999999995,0.006582459822917978,0.004464987306666668,0,0.00192629888,110.63699658711751,44.46467413333333,32.37868690490723,32.79419733333333,127.1200065612793,17.400234666666666,1.1486301918824513,0.5140342400000002,13.220800081888834,0,2.5677801171938577,6.854615253333335,0,0,0.2878750090797742,0.7549702400000001,0.027824499023457367,0.05744983466666666,374.50198364257807,4.77199045986293,53.79481618519393,57.42975079445183,8.8392322893314,11.521000539201058,-0.1474685840366501,19.645999749501545,0.1690026666666667,4092.9031541838385,0,0,0.0017066666666666667,0.25600800414880115,0.011434666666666666,4.4914099999004975e-4,0.001728 +2219,0.816805546311844,0,0,-0,1.5082989577134034,9.799690008163452,0.09684400000000003,0.04162981982032458,0.05086066666666665,140.8580004374186,0.670461841333333,6.6518943309783936,0,5.232040007909139,0,6.829380035400391,0.014171558860000006,4.898129304250081,0.22871799999999998,59.2035878499349,0.0024799999999999996,4.970953305562337,23.490642666666663,0,419.16417185465497,953.2951566666668,1171.879689534505,157.86633195814443,643.41900634765625,254.6294739873885,0.1326760289569696,0.24807284999999996,0.006428939872421324,0.0043254564533333345,0,0.00186610204,108.71999677022298,43.075153066666665,31.634488423665363,31.76937866666666,125.49500592549641,16.85647733333333,1.129890153805415,0.49797067000000017,13.15339994430542,0,2.501410106817881,6.640408526666668,0,0,0.2805650110046069,0.7313774200000001,0.027211598896731932,0.055654527333333315,374.4149805704752,4.765329784677299,53.69672499250023,56.893572831128935,8.71368635184816,11.495418631518453,-0.1474685840366501,19.64680004119873,0.16372133333333336,3996.7816607646914,0,0,0.0016533333333333333,0.2521269967158635,0.011077333333333333,4.3230500402084243e-4,0.001674 +2220,0.7904569803017845,0,0,-0,1.4986967931162323,9.802949905395508,0.09372000000000003,0.03996611883242925,0.049219999999999986,140.9020004272461,0.6488340399999997,6.573164264361064,0,5.201649983723958,0,6.815700054168701,0.013714411800000006,4.797629475593567,0.22133999999999998,58.563387870788574,0.0023999999999999994,4.966703295707703,22.732879999999994,0,418.7781804402669,922.5437000000002,1167.5096944173174,156.71266301149012,643.3449910481771,253.5345846606831,0.12928002700209618,0.24007049999999996,0.006277779815718532,0.004185925600000001,0,0.0018059052,106.80399703979492,41.685632,30.891290028889973,30.744559999999993,123.86600748697917,16.31272,1.1111701826254528,0.48190710000000014,13.086199839909872,0,2.435120105743408,6.426201800000001,0,0,0.27326400578022003,0.7077846000000001,0.026599798972407978,0.053859219999999985,374.3279825846354,4.758669109491667,53.598633799806535,56.35739486780604,8.58814041436492,11.469836723835845,-0.1474685840366501,19.647499879201252,0.15844000000000003,3900.6601673455443,0,0,0.0015999999999999999,0.24830499912301698,0.01072,4.160999984984907e-4,0.00162 +2221,0.7641084142917249,0,0,-0,1.4890946285190612,9.806079864501953,0.09059600000000002,0.03836901827404896,0.04757933333333332,140.94300079345703,0.6272062386666664,6.495374282201131,0,5.171440045038859,0,6.802039980888367,0.013257264740000007,4.699159701665242,0.21396199999999999,57.93018786112467,0.002319999999999999,4.962453285853068,21.97511733333333,0,418.39117431640625,891.7922433333335,1163.13969930013,155.55899406483582,643.2609914143881,252.43969533397768,0.1258890274912119,0.23206814999999995,0.006126509901757042,0.004046394746666668,0,0.00174570836,104.88899739583333,40.29611093333333,30.14889129002889,29.719741333333328,122.23500696818034,15.768962666666665,1.0924801627794902,0.4658435300000001,13.019399960835775,0,2.3689001003901162,6.211995073333334,0,0,0.26597000658512115,0.6841917800000001,0.0259889989780883,0.052063912666666656,374.23999023437494,4.752008434306036,53.50054260711284,55.82121690448315,8.46259447688168,11.444254816153238,-0.1474685840366501,19.647899786631267,0.1531586666666667,3804.538673926397,0,0,0.0015466666666666667,0.24453999971350035,0.010362666666666666,4.005030035235298e-4,0.001566 +2222,0.7377598482816654,0,0,-0,1.47949246392189,9.809069951375326,0.08747200000000002,0.03683561738580465,0.045938666666666655,140.9839998881022,0.605578437333333,6.41849418481191,0,5.141409993171692,0,6.788419922192891,0.012800117680000006,4.60267988840739,0.206584,57.30388832092285,0.0022399999999999994,4.958203196525574,21.21735466666666,0,418.0051752726237,861.0407866666668,1158.7696940104165,154.4053251181815,643.1689961751302,251.3448060072723,0.12250102559725444,0.22406579999999993,0.005975149843531351,0.003906863893333334,0,0.0016855115199999999,102.97499783833821,38.906589866666664,29.407492478688557,28.694922666666663,120.60000483194987,15.225205333333331,1.0738001664479573,0.44977996000000015,12.952900012334188,0,2.3027800917625427,5.997788346666668,0,0,0.25868501017491025,0.6605989600000001,0.025379298875729244,0.05026860533333332,374.15098317464185,4.745347759120404,53.40245141441914,55.28503894116026,8.337048539398442,11.418672908470633,-0.1474685840366501,19.648100058237713,0.14787733333333336,3708.41718050725,0,0,0.0014933333333333333,0.240832998106877,0.010005333333333333,3.854899963092369e-4,0.0015119999999999999 +2223,0.7114112822716059,0,0,-0,1.469890299324719,9.811929941177368,0.08434800000000003,0.03536361642181873,0.04429799999999999,141.02300008138022,0.5839506359999997,6.342534144719441,0,5.111549973487854,0,6.7748200098673506,0.012342970620000006,4.508170127868652,0.199206,56.6842877070109,0.002159999999999999,4.953943133354187,20.459591999999997,0,417.6181818644206,830.2893300000002,1154.399709065755,153.2516561715272,643.0669911702474,250.24991668056688,0.11911802428464095,0.21606344999999993,0.0058260498335585,0.003767333040000001,0,0.00162531468,101.06299654642741,37.517068800000004,28.667093912760418,27.670103999999995,118.96300633748372,14.681448,1.055150141318639,0.4337163900000001,12.886699914932251,0,2.2367300987243652,5.7835816200000005,0,0,0.25140900909900665,0.6370061400000001,0.024769199080765247,0.04847329799999999,374.0619812011718,4.738687083934773,53.304360221725446,54.748860977837374,8.211502601915202,11.393091000788026,-0.1474685840366501,19.648099899291992,0.142596,3612.2956870881026,0,0,0.00144,0.2371820012728373,0.009647999999999999,3.7104100435196113e-4,0.0014579999999999997 +2224,0.6850627162615464,0,0,-0,1.4602881347275478,9.8146599928538,0.08122400000000003,0.033950415439903736,0.042657333333333325,141.06000010172525,0.5623228346666664,6.267474134763082,0,5.081870079040527,0,6.761249979337056,0.011885823560000005,4.415600339571635,0.191828,56.071388244628906,0.0020799999999999994,4.94968314965566,19.70182933333333,0,417.2311757405599,799.5378733333334,1150.0297037760415,152.0979872248729,642.9570007324219,249.1550273538615,0.11573602445423603,0.20806109999999992,0.00567907983592401,0.0036278021866666676,0,0.0015651178399999999,99.15149752298991,36.12754773333334,27.927495002746582,26.64528533333333,117.32300504048665,14.137690666666666,1.0365201433499653,0.41765282000000015,12.8207000096639,0,2.1707600951194763,5.569374893333334,0,0,0.24414200832446417,0.61341332,0.0241600990605851,0.046677990666666655,373.9719797770182,4.732026408749141,53.206269029031745,54.21268301451448,8.085956664431961,11.367509093105419,-0.1474685840366501,19.647900104522705,0.13731466666666667,3516.1741936689555,0,0,0.0013866666666666667,0.23358700051903725,0.009290666666666666,3.5713299924585346e-4,0.0014039999999999996 +2225,0.6587141502514868,0,0,-0,1.4506859701303765,9.817239999771118,0.07810000000000003,0.03259371562550465,0.04101666666666666,141.09600067138672,0.5406950333333331,6.193304061889648,0,5.052349964777629,0,6.747699936230977,0.011428676500000005,4.324910521507263,0.18445,55.46518898010254,0.001999999999999999,4.945433100064595,18.944066666666664,0,416.8441747029622,768.7864166666668,1145.6696980794268,150.9443182782186,642.8379872639974,248.06013802715609,0.11235902334252994,0.2000587499999999,0.005531779839657247,0.0034882713333333343,0,0.0015049209999999998,97.24169794718425,34.73802666666667,27.18889617919922,25.620466666666665,115.68000602722168,13.593933333333332,1.017910122871399,0.4015892500000001,12.755100011825562,0,2.104870080947876,5.355168166666667,0,0,0.23688400660951933,0.5898205000000001,0.023552099087586004,0.044882683333333326,373.88098144531244,4.7253657335635095,53.10817783633805,53.67650505119159,7.960410726948721,11.341927185422811,-0.1474685840366501,19.64739974339803,0.13203333333333334,3420.0527002498084,0,0,0.0013333333333333335,0.2300459990898768,0.008933333333333331,3.4374700286813703e-4,0.0013499999999999996 +2226,0.6323655842414274,0,0,-0,1.4410838055332054,9.819689909617106,0.07497600000000003,0.03129121412833532,0.039375999999999994,141.13000106811523,0.5190672319999998,6.120014071464539,0,5.023010015487671,0,6.734180013338725,0.010971529440000006,4.236080646514893,0.177072,54.8655891418457,0.0019199999999999992,4.9411730368932085,18.186304,0,416.4571762084961,738.0349600000002,1141.3096923828123,149.79064933156428,642.7089996337891,246.96524870045067,0.10898602132995923,0.19205639999999988,0.005386529839597642,0.003348740480000001,0,0.0014447241599999997,95.3331979115804,33.3485056,26.451197783152264,24.595648,114.03500429789226,13.050175999999999,0.999331126610438,0.3855256800000001,12.689800182978312,0,2.039070109526316,5.14096144,0,0,0.2296340068181356,0.5662276800000001,0.02294369926676154,0.043087376,373.7889785766601,4.7187050583778785,53.01008664364436,53.1403270878687,7.834864789465482,11.316345277740206,-0.1474685840366501,19.646800359090168,0.126752,3323.9312068306613,0,0,0.0012800000000000003,0.2265590007106463,0.008575999999999997,3.308630039100535e-4,0.0012959999999999996 +2227,0.6060170182313679,0,0,-0,1.4314816409360342,9.822010040283203,0.07185200000000003,0.030040814075618982,0.03773533333333333,141.16300201416016,0.4974394306666665,6.047593990961711,0,4.993849992752075,0,6.7206999858220415,0.010514382380000005,4.149060885111491,0.169694,54.27238845825195,0.0018399999999999992,4.9369131326675415,17.42854133333333,0,416.0691782633464,707.2835033333334,1136.9496866861978,148.63698038490998,642.5719960530599,245.8703593737453,0.1056170209000508,0.18405404999999986,0.005243199838635822,0.0032092096266666675,0,0.0013845273199999996,93.42609850565593,31.95898453333334,25.7144988377889,23.570829333333336,112.3880049387614,12.506418666666665,0.9807701210180918,0.3694621100000001,12.624699910481771,0,1.9733500878016155,4.926754713333334,0,0,0.22239300732811293,0.54263486,0.0223363993378977,0.04129206866666666,373.6969833374023,4.7120443831922465,52.911995450950656,52.604149124545806,7.709318851982243,11.290763370057599,-0.1474685840366501,19.64590009053548,0.12147066666666667,3227.809713411514,0,0,0.001226666666666667,0.22312499831120172,0.008218666666666664,3.1846199757031474e-4,0.0012419999999999996 +2228,0.5796684522213084,0,0,-0,1.4218794763388631,9.82420007387797,0.06872800000000004,0.028840413472304743,0.036094666666666664,141.19499969482422,0.4758116293333332,5.976033926010132,0,4.964850028355916,0,6.707230011622111,0.010057235320000005,4.0638110637664795,0.16231600000000002,53.685688972473145,0.001759999999999999,4.932643016179402,16.670778666666667,0,415.6821746826172,676.5320466666668,1132.5896911621091,147.48331143825567,642.4249979654948,244.77547004703987,0.10225302105148633,0.17605169999999987,0.005099339837518831,0.003069678773333334,0,0.0013243304799999997,91.52039845784505,30.569463466666672,24.978600184122723,22.546010666666668,110.73800404866536,11.962661333333333,0.9622321228186289,0.3533985400000001,12.560000022252401,0,1.9077100654443104,4.712547986666666,0,0,0.21516000603636107,0.5190420400000001,0.021730199300994475,0.03949676133333333,373.60398610432935,4.705383708006615,52.81390425825696,52.06797116122292,7.5837729144990025,11.265181462374992,-0.1474685840366501,19.644800027211506,0.11618933333333331,3131.6882199923666,0,0,0.0011733333333333337,0.21974300096432367,0.00786133333333333,3.0652600010701764e-4,0.0011879999999999994 +2229,0.5533198862112488,0,0,-0,1.412277311741692,9.826249996821085,0.06560400000000004,0.027688013079265755,0.034454,141.2250010172526,0.4541838279999999,5.905313849449158,0,4.936019976933797,0,6.693800052007039,0.009600088260000004,3.9803112546602883,0.15493800000000002,53.10538864135742,0.001679999999999999,4.928382992744446,15.913015999999999,0,415.29417673746747,645.7805900000001,1128.2297159830728,146.32964249160136,642.2699940999349,243.6805807203345,0.09889202006161213,0.16804934999999982,0.0049573399204139905,0.002930147920000001,0,0.0012641336399999994,89.61609840393066,29.17994240000001,24.243701140085857,21.521192000000003,109.08600362141927,11.418903999999998,0.9437161187330881,0.3373349700000001,12.495499849319458,0,1.8421500722567241,4.49834126,0,0,0.20793700590729713,0.49544922,0.02112499950453639,0.037701453999999995,373.5109837849934,4.6987230328209835,52.71581306556326,51.53179319790003,7.458226977015762,11.239599554692386,-0.1474685840366501,19.643500010172527,0.11090799999999998,3035.5667265732195,0,0,0.0011200000000000003,0.2164119966328144,0.007503999999999996,2.9503699867442873e-4,0.0011339999999999994 +2230,0.5269713202011893,0,0,-0,1.402675147144521,9.828160047531128,0.062480000000000036,0.026581712532788515,0.03281333333333333,141.25400161743164,0.4325560266666666,5.83544385433197,0,4.907360037167867,0,6.680390000343323,0.009142941200000004,3.898501435915629,0.14756000000000002,52.531289418538414,0.001599999999999999,4.924112836519877,15.155253333333334,0,414.9061813354492,615.0291333333334,1123.879699707031,145.17597354494706,642.1059977213541,242.58569139362908,0.09553551860153675,0.16004699999999983,0.004817089919621746,0.0027906170666666674,0,0.0012039367999999995,87.71339797973633,27.79042133333334,23.50980234146118,20.496373333333338,107.43100357055664,10.875146666666666,0.9252231121063232,0.3212714000000001,12.431300004323324,0,1.7766700784365337,4.284134533333333,0,0,0.200722003976504,0.47185640000000006,0.020520899444818497,0.035906146666666666,373.41698710123694,4.692062357635352,52.617721872869566,50.99561523457714,7.332681039532523,11.21401764700978,-0.1474685840366501,19.642000198364258,0.10562666666666665,2939.4452331540724,0,0,0.0010666666666666672,0.2131320002178351,0.007146666666666662,2.839800023745435e-4,0.0010799999999999994 +2231,0.5006227541911299,0,0,-0,1.3930729825473498,9.829939921696981,0.059356000000000034,0.02551951181764404,0.031172666666666664,141.28100204467773,0.41092822533333323,5.766393740971883,0,4.878870010375977,0,6.6670100291570025,0.008685794140000005,3.8183616598447165,0.14018200000000003,51.9634895324707,0.001519999999999999,4.919842878977458,14.397490666666666,0,414.51817830403644,584.2776766666668,1119.5196940104165,144.02230459829275,641.9329935709635,241.49080206692366,0.09218091703951359,0.15204464999999984,0.0046761499252170324,0.002651086213333334,0,0.0011437399599999996,85.81209818522136,26.400900266666675,22.77670383453369,19.47155466666667,105.77500470479329,10.331389333333332,0.9067551046609879,0.3052078300000001,12.367400089899698,0,1.7112700641155243,4.069927806666666,0,0,0.1935160073141257,0.44826358000000005,0.019916299420098465,0.03411083933333334,373.3219833374023,4.68540168244972,52.51963068017587,50.459437271254245,7.207135102049283,11.188435739327172,-0.1474685840366501,19.640299797058105,0.10034533333333331,2843.3237397349253,0,0,0.0010133333333333338,0.20990200092395148,0.0067893333333333295,2.733370007869477e-4,0.0010259999999999994 +2232,0.47427418818107037,0,0,-0,1.3834708179501787,9.83157992362976,0.056232000000000025,0.024499911194046337,0.029531999999999996,141.3059984842936,0.38930042399999987,5.698173721631368,0,4.850540002187093,0,6.65366001923879,0.008228647080000004,3.739851792653402,0.132804,51.40178934733073,0.001439999999999999,4.915562868118286,13.639728,0,414.12918345133465,553.5262200000001,1115.169687906901,142.86863565163844,641.7499949137369,240.39591274021828,0.08883061632514,0.14404229999999987,0.004534569879372914,0.0025115553600000007,0,0.0010835431199999995,83.91239738464355,25.011379200000004,22.044605096181233,18.446736000000005,104.11700503031413,9.787631999999999,0.8883110880851746,0.28914426000000015,12.303900003433228,0,1.6459500590960185,3.8557210799999995,0,0,0.18631800760825476,0.42467076000000004,0.01931279944255948,0.032315532,373.2259852091471,4.678741007264089,52.42153948748217,49.92325930793135,7.081589164566044,11.162853831644565,-0.1474685840366501,19.638399918874104,0.095064,2747.202246315778,0,0,9.600000000000005e-4,0.20672100161512694,0.006431999999999996,2.630930005883177e-4,9.719999999999994e-4 +2233,0.4479256221710109,0,0,-0,1.3738686533530073,9.83309006690979,0.05310800000000002,0.023521010763943195,0.02789133333333333,141.33100001017252,0.36767262266666656,5.6307536363601685,0,4.822379986445109,0,6.640329996744792,0.007771500020000004,3.6629419724146524,0.125426,50.846190452575684,0.0013599999999999988,4.911292791366577,12.881965333333332,0,413.7401809692383,522.7747633333335,1110.8196919759112,141.71496670498414,641.5590057373047,239.30102341351287,0.08548451587557793,0.13603994999999988,0.004394739866256714,0.0023720245066666673,0,0.0010233462799999996,82.01429812113444,23.621858133333337,21.313406626383465,17.421917333333337,102.45600446065266,9.243874666666667,0.8698890954256058,0.2730806900000001,12.24049997329712,0,1.580720047156016,3.6415143533333323,0,0,0.17912800734241804,0.4010779400000001,0.018710399356981117,0.030520224666666672,373.1299794514973,4.672080332078458,52.32344829478848,49.38708134460847,6.956043227082803,11.13727192396196,-0.1474685840366501,19.636200110117596,0.08978266666666666,2651.080752896631,0,0,9.066666666666671e-4,0.2035880001882712,0.006074666666666663,2.532340004108846e-4,9.179999999999994e-4 +2234,0.4215770561609514,0,0,-0,1.3642664887558362,9.83446995417277,0.049984000000000015,0.022581210515151422,0.026250666666666662,141.35300064086914,0.3460448213333332,5.564143657684326,0,4.794379949569702,0,6.62703005472819,0.007314352960000004,3.587602138519287,0.118048,50.296689669291176,0.0012799999999999988,4.9070128202438354,12.124202666666665,0,413.35118865966797,492.02330666666677,1106.4797058105466,140.56129775832983,641.3589986165365,238.20613408680748,0.08214261382818222,0.12803759999999992,0.004256579947347443,0.002232493653333334,0,9.631494399999996e-4,80.11779912312825,22.232337066666666,20.583207607269287,16.397098666666672,100.79400380452473,8.700117333333333,0.8514900902907053,0.25701712000000015,12.177499930063883,0,1.5155600607395172,3.4273076266666656,0,0,0.1719490041335424,0.37748512000000006,0.018108999356627464,0.02872491733333334,373.03298187255854,4.665419656892826,52.22535710209478,48.850903381285576,6.830497289599563,11.111690016279352,-0.1474685840366501,19.63380002975464,0.08450133333333334,2554.9592594774836,0,0,8.533333333333338e-4,0.20050299912691116,0.0057173333333333295,2.4374400042385483e-4,8.639999999999995e-4 +2235,0.395228490150892,0,0,-0,1.3546643241586651,9.835699955622355,0.04686000000000001,0.021679010552664597,0.024609999999999993,141.37500127156576,0.32441701999999983,5.498323639233907,0,4.766550024350484,0,6.613759994506836,0.006857205900000003,3.5137823025385537,0.11066999999999999,49.753089904785156,0.0011999999999999988,4.902732729911804,11.366439999999997,0,412.9621887207031,461.2718500000001,1102.129679361979,139.40762881167552,641.1500040690104,237.11124476010207,0.07880481394628684,0.12003524999999993,0.004117629995259146,0.0020929628000000006,0,9.029525999999996e-4,78.22289911905925,20.842816,19.853909174601238,15.372280000000003,99.13070297241211,8.15636,0.8331140826145808,0.24095355000000018,12.114799896876017,0,1.4504900475343068,3.213100899999999,0,0,0.16477800657351813,0.35389230000000005,0.01750869955867529,0.026929610000000007,372.9359868367512,4.658758981707194,52.12726590940109,48.314725417962684,6.704951352116323,11.086108108596745,-0.1474685840366501,19.63129981358846,0.07922000000000001,2458.8377660583365,0,0,8.000000000000004e-4,0.19746500005324683,0.005359999999999997,2.3460999970363142e-4,8.099999999999995e-4 +2236,0.3688799241408325,0,0,-0,1.345062159561494,9.836810111999512,0.04373600000000001,0.020812909739712875,0.022969333333333328,141.39500045776367,0.3027892186666665,5.4332735141118365,0,4.738879998524983,0,6.600519975026448,0.006400058840000004,3.4414923985799155,0.103292,49.21538988749186,0.0011199999999999988,4.898452639579773,10.608677333333329,0,412.57218678792316,430.52039333333346,1097.7896931966143,138.25395986502122,640.9319966634115,236.01635543339665,0.07547121184567611,0.11203289999999995,0.003980309915884088,0.001953431946666667,0,8.427557599999997e-4,76.32969792683919,19.453294933333332,19.125510056813557,14.347461333333337,97.46530278523763,7.612602666666666,0.8147600740194321,0.2248899800000002,12.052300135294596,0,1.3855000535647075,2.998894173333332,0,0,0.1576160043478012,0.3302994800000001,0.016907899640500546,0.025134302666666677,372.8369776407877,4.652098306521563,52.02917471670739,47.77854745463979,6.579405414633084,11.060526200914138,-0.1474685840366501,19.62849982579549,0.07393866666666668,2362.7162726391894,0,0,7.46666666666667e-4,0.19447200000286102,0.005002666666666664,2.2581899975193664e-4,7.559999999999995e-4 +2237,0.34253135813077307,0,0,-0,1.3354599949643229,9.837779998779297,0.04061200000000001,0.019981408957391977,0.021328666666666656,141.41299947102866,0.2811614173333331,5.3690034945805865,0,4.71136999130249,0,6.587300022443135,0.0059429117800000025,3.3706925908724465,0.09591399999999997,48.68349011739095,0.0010399999999999988,4.894162654876709,9.850914666666663,0,412.1821823120117,399.7689366666667,1093.4496866861978,137.1002909183669,640.7060089111328,234.92146610669127,0.07214171253144741,0.10403054999999997,0.003844509929573784,0.0018139010933333338,0,7.825589199999996e-4,74.43819936116536,18.063773866666665,18.398011207580566,13.32264266666667,95.79840278625488,7.068845333333333,0.7964280744393667,0.20882641000000024,11.990100065867106,0,1.3206000328063965,2.7846874466666653,0,0,0.1504640057682991,0.30670666,0.01630809949710965,0.02333899533333334,372.7389831542968,4.645437631335932,51.931083524013694,47.2423694913169,6.453859477149844,11.034944293231531,-0.1474685840366501,19.625400225321453,0.06865733333333336,2266.5947792200423,0,0,6.933333333333337e-4,0.19152599945664406,0.004645333333333331,2.173569967756824e-4,7.019999999999996e-4 +2238,0.31618279212071354,0,0,-0,1.3258578303671515,9.838610092798868,0.037487999999999994,0.019183209010710318,0.01968799999999999,141.42999903361002,0.2595336159999998,5.305503447850545,0,4.6840200026830034,0,6.57411007086436,0.005485764720000003,3.3013227581977844,0.08853599999999998,48.1574904123942,9.599999999999986e-4,4.889872590700786,9.093151999999995,0,411.7921854654948,369.0174800000001,1089.1096903483071,135.9466219717126,640.4699961344401,233.82657677998586,0.06881411125262578,0.09602819999999998,0.003707819909323007,0.0016743702400000005,0,7.223620799999997e-4,72.54829915364583,16.67425279999999,17.671512921651203,12.297824000000002,94.13000170389812,6.525087999999999,0.7781190623839697,0.19276284000000024,11.928200006484985,0,1.2557800312836964,2.570480719999998,0,0,0.14332000414530435,0.28311384000000006,0.015709399633730452,0.021543688000000012,372.6389846801757,4.6387769561503,51.83299233132,46.706191527994015,6.3283135396666035,11.009362385548926,-0.1474685840366501,19.622199694315594,0.06337600000000003,2170.473285800895,0,0,6.400000000000003e-4,0.18862399831414223,0.004287999999999997,2.0921300044089244e-4,6.479999999999996e-4 +2239,0.2898342261106541,0,0,-0,1.3162556657699804,9.839310010274252,0.03436399999999999,0.01841680845245719,0.018047333333333318,141.44500096638998,0.2379058146666664,5.242753426233928,0,4.656839966773987,0,6.560949921607971,0.0050286176600000025,3.233362893263499,0.08115799999999997,47.63709100087484,8.799999999999986e-4,4.885582605997722,8.335389333333328,0,411.4011866251628,338.2660233333334,1084.7696838378904,134.7929530250583,640.2259979248047,232.73168745328047,0.06549081020057201,0.08802585,0.0035702899525252483,0.001534839386666667,0,6.621652399999997e-4,70.6601988474528,15.284731733333325,16.946014086405437,11.273005333333336,92.46020253499348,5.981330666666666,0.7598320692777634,0.17669927000000024,11.866599877675375,0,1.1910400291283925,2.3562739933333314,0,0,0.13618400444587073,0.25952102,0.015110399651651582,0.01974838066666668,372.53898111979163,4.632116280964668,51.7349011386263,46.17001356467112,6.202767602183364,10.983780477866318,-0.1474685840366501,19.618799845377605,0.058094666666666704,2074.351792381748,0,0,5.86666666666667e-4,0.18576599781711897,0.003930666666666664,2.0137399891003346e-4,5.939999999999997e-4 +2240,0.26348566010059465,0,0,-0,1.3066535011728093,9.839879910151163,0.03123999999999999,0.017681108477214973,0.016406666666666653,141.45900090535483,0.21627801333333307,5.180743416150411,0,4.629810015360515,0,6.547809958457947,0.004571470600000002,3.166803022225698,0.07377999999999996,47.12239042917887,7.999999999999986e-4,4.881282528241475,7.57762666666666,0,411.0101903279622,307.5145666666667,1080.4296874999998,133.639284078404,639.9729970296224,231.63679812657506,0.06217170848200718,0.08002350000000003,0.0034343399262676635,0.0013953085333333337,0,6.019683999999997e-4,68.77389844258626,13.895210666666657,16.221315304438274,10.248186666666669,90.7891019185384,5.437573333333333,0.741568053762118,0.16063570000000027,11.805300076802572,0,1.1263800263404846,2.1420672666666647,0,0,0.12905700380603471,0.23592820000000003,0.014512399677187204,0.017953073333333347,372.43898264567054,4.625455605779037,51.636809945932605,45.63383560134823,6.077221664700124,10.958198570183711,-0.1474685840366501,19.615099906921387,0.05281333333333338,1978.2302989626007,0,0,5.333333333333336e-4,0.18295200044910112,0.003573333333333331,1.9382900184912918e-4,5.399999999999997e-4 +2241,0.23713709409053518,0,0,-0,1.2970513365756382,9.840310017267862,0.02811599999999999,0.016974907834082842,0.014765999999999987,141.47199885050455,0.19465021199999977,5.119473377863566,0,4.602939963340759,0,6.534700036048889,0.004114323540000002,3.101613144079844,0.06640199999999996,46.61329046885172,7.199999999999987e-4,4.876982569694519,6.819863999999994,0,410.6191914876302,276.76311000000004,1076.099690755208,132.48561513174968,639.7110036214193,230.54190879986965,0.05885690823197365,0.07202115000000002,0.0032998699656066797,0.0012557776800000003,0,5.417715599999997e-4,66.88939984639485,12.505689599999991,15.497716585795084,9.223368000000002,89.11680221557617,4.893815999999999,0.7233260522286097,0.14457213000000024,11.744200150171915,0,1.0618000129858653,1.9278605399999982,0,0,0.12193900160491467,0.21233538000000002,0.013915499672293663,0.01615776600000001,372.3369878133137,4.618794930593406,51.53871875323891,45.09765763802534,5.951675727216884,10.932616662501104,-0.1474685840366501,19.611200014750164,0.04753200000000004,1882.1088055434536,0,0,4.8000000000000023e-4,0.18018000076214472,0.003215999999999998,1.8656699830899015e-4,4.859999999999997e-4 +2242,0.2107885280804757,0,0,-0,1.287449171978467,9.84060001373291,0.024991999999999993,0.016296807831774156,0.013125333333333322,141.4829978942871,0.17302241066666646,5.058933297793071,0,4.576230009396871,0,6.521619915962219,0.003657176480000002,3.0377333561579385,0.059023999999999965,46.109691301981606,6.399999999999989e-4,4.872672359148662,6.062101333333328,0,410.22718556722003,246.01165333333338,1071.7597147623696,131.33194618509538,639.4399973551432,229.44701947316426,0.055546307315429054,0.06401880000000001,0.0031644599706244967,0.001116246826666667,0,4.815747199999998e-4,65.00659942626953,11.116168533333326,14.774917682011923,8.198549333333336,87.44330088297527,4.3500586666666665,0.7051060448090235,0.12850856000000022,11.68340015411377,0,0.9973120242357254,1.7136538133333317,0,0,0.1148310024291277,0.18874256000000003,0.013319599830235044,0.014362458666666678,372.2359822591145,4.612134255407774,51.44062756054521,44.56147967470245,5.826129789733645,10.907034754818499,-0.1474685840366501,19.607199827829998,0.0422506666666667,1785.9873121243063,0,0,4.266666666666669e-4,0.1774509996175766,0.0028586666666666647,1.795780008251313e-4,4.3199999999999977e-4 +2243,0.18443996207041624,0,0,-0,1.2778470073812958,9.840760072072348,0.02186799999999999,0.01564590718286733,0.011484666666666657,141.49200185139975,0.15139460933333315,4.999113281567891,0,4.549670020739238,0,6.508560021718343,0.003200029420000002,2.9751834670702615,0.05164599999999997,45.61159070332845,5.599999999999991e-4,4.868372440338135,5.304338666666663,0,409.83519490559894,215.26019666666673,1067.4296874999998,130.17827723844107,639.1600036621094,228.35213014645888,0.052239906353255115,0.05601645000000002,0.0030305299636286995,9.767159733333336e-4,0,4.2137787999999986e-4,63.12569936116537,9.726647466666659,14.05311910311381,7.1737306666666685,85.76860173543294,3.806301333333333,0.686909039815267,0.11244499000000019,11.622900009155273,0,0.9329040249188741,1.4994470866666654,0,0,0.10773100269337495,0.16514974000000004,0.012724799802526832,0.012567151333333342,372.13298288981116,4.605473580222143,51.342536367851515,44.02530171137956,5.700583852250404,10.881452847135892,-0.1474685840366501,19.60290002822876,0.03696933333333337,1689.8658187051592,0,0,3.733333333333335e-4,0.1747630015015602,0.002501333333333332,1.7285000042951046e-4,3.7799999999999976e-4 +2244,0.15809139606035677,0,0,-0,1.2682448427841246,9.840789953867594,0.018743999999999993,0.01502090715803206,0.009843999999999992,141.5009994506836,0.12976680799999984,4.940003275871277,0,4.523270010948181,0,6.495529969533284,0.0027428823600000015,2.913903554280599,0.044267999999999974,45.11889108022054,4.7999999999999914e-4,4.864052375157674,4.546575999999996,0,409.4431788126628,184.50874000000005,1063.0997009277341,129.02460829178676,638.8719940185547,227.25724081975346,0.04893770565589269,0.04801410000000001,0.002897979982662946,8.371851200000002e-4,0,3.6118103999999986e-4,61.246599197387695,8.337126399999994,13.33232037226359,6.148912000000001,84.09290250142415,3.2625439999999997,0.6687350322802862,0.09638142000000016,11.562699953715006,0,0.8685800135135651,1.2852403599999986,0,0,0.10064000201721986,0.14155692000000003,0.01212949980981648,0.010771844000000008,372.0299860636393,4.598812905036511,51.244445175157814,43.48912374805667,5.575037914767164,10.855870939453284,-0.1474685840366501,19.59839979807536,0.03168800000000002,1593.744325286012,0,0,3.2000000000000013e-4,0.1721160002052784,0.0021439999999999983,1.6637500084470958e-4,3.239999999999998e-4 +2245,0.13174283005029733,0,0,-0,1.2586426781869535,9.84067996342977,0.015619999999999995,0.014421006742243966,0.008203333333333326,141.50699869791666,0.10813900666666654,4.881593227386475,0,4.497030019760132,0,6.482530037562053,0.002285735300000001,2.85389373699824,0.03688999999999998,44.631491343180336,3.999999999999993e-4,4.859742482503255,3.78881333333333,0,409.05022684733075,153.75728333333336,1058.7697041829424,127.87093934513246,638.5740051269531,226.16235149304805,0.045637404546141624,0.04001175000000001,0.0027643999783322215,6.976542666666669e-4,0,3.0098419999999987e-4,59.36939938863119,6.947605333333328,12.61242151260376,5.1240933333333345,82.41630109151204,2.7187866666666665,0.6505850305159887,0.08031785000000013,11.502700010935465,0,0.8043400098880132,1.0710336333333323,0,0,0.09355750183264415,0.11796410000000002,0.011535299786676964,0.008976536666666673,371.92697906494135,4.59215222985088,51.14635398246412,42.95294578473378,5.449491977283925,10.830289031770679,-0.1474685840366501,19.593600114186604,0.02640666666666669,1497.622831866865,0,0,2.666666666666668e-4,0.16950900107622147,0.0017866666666666656,1.60143001266988e-4,2.6999999999999984e-4 +2246,0.10539426404023786,0,0,-0,1.2490405135897824,9.840439875920614,0.012495999999999997,0.01384500654724737,0.006562666666666661,141.51199849446616,0.08651120533333323,4.8238831758499146,0,4.470930020014445,0,6.469549973805745,0.0018285882400000011,2.7951138615608215,0.029511999999999983,44.14949099222819,3.199999999999995e-4,4.8554917971293134,3.0310506666666646,0,408.66305287679035,123.0058266666667,1054.4497070312498,126.71727039847814,638.2679951985677,225.06746216634266,0.042341603276630245,0.032009400000000014,0.0026322199846617877,5.581234133333335e-4,0,2.4078735999999993e-4,57.494099934895836,5.558084266666663,11.89352305730184,4.099274666666668,80.738800048828125,2.1750293333333333,0.6324600179990133,0.06425428000000011,11.442999998728434,0,0.7401890108982722,0.8568269066666658,0,0,0.08648400008678436,0.09437128000000003,0.010942299927895268,0.007181229333333339,371.82198079427076,4.585491554665249,51.048262789770426,42.416767821410886,5.323946039800685,10.804707124088072,-0.1474685840366501,19.58869981765747,0.02112533333333335,1401.501338447718,0,0,2.1333333333333344e-4,0.16694199790557226,0.0014293333333333324,1.541439984672858e-4,2.1599999999999988e-4 +2247,0.07904569803017841,0,0,-0,1.2394383489926113,9.840059916178385,0.009371999999999998,0.013292106101289392,0.004921999999999996,141.51599884033203,0.06488340399999992,4.766853133837382,0,4.445000052452087,0,6.456599990526835,0.0013714411800000007,2.737543980280558,0.022133999999999987,43.67259089152018,2.3999999999999965e-4,4.852421124776204,2.273287999999998,0,408.3965428670247,92.25437000000002,1050.1996968587237,125.56360145182383,637.9539998372396,223.97257283963728,0.039053003303706646,0.02400705000000001,0.0025014499745642147,4.185925600000001e-4,0,1.8059051999999993e-4,55.62219969431559,4.168563199999998,11.176125605901083,3.0744560000000014,79.0616003672282,1.631272,0.6143710166215897,0.048190710000000095,11.383599996566772,0,0.6761860052744547,0.6426201799999995,0,0,0.07942790103455384,0.07077846000000002,0.010349299991503358,0.005385922000000005,371.7179819742838,4.578830879479617,50.950171597076725,41.880589858087994,5.198400102317445,10.779125216405465,-0.1474685840366501,19.583499908447266,0.015844000000000018,1305.3798450285708,0,0,1.600000000000001e-4,0.16441400100787482,0.0010719999999999996,1.4837000101882344e-4,1.6199999999999993e-4 +2248,0.052697132020118914,0,0,-0,1.22983618439544,9.839550018310547,0.006247999999999997,0.012761305940027038,0.0032813333333333305,141.51900100708008,0.043255602666666615,4.710503101348877,0,4.419210076332092,0,6.443679968516032,9.142941200000003e-4,2.6811540722846985,0.014755999999999991,43.200990994771324,1.5999999999999966e-4,4.850771069526672,1.5155253333333318,0,408.27827707926434,61.50291333333334,1046.0597127278643,124.40993250516952,637.6299947102865,222.87768351293187,0.03577340176949898,0.016004699999999997,0.002369759992385904,2.7906170666666674e-4,0,1.2039367999999994e-4,53.75479984283447,2.7790421333333306,10.460928281148275,2.049637333333333,77.38580067952473,1.0875146666666664,0.5963300168514252,0.032127140000000054,11.324600060780844,0,0.6123700092236201,0.4284134533333328,0,0,0.07239100026587646,0.04718564,0.009758219976599017,0.0035906146666666687,371.61198425292963,4.572170204293986,50.85208040438303,41.34441189476511,5.0728541648342045,10.753543308722858,-0.1474685840366501,19.578199863433838,0.010562666666666672,1209.2583516094235,0,0,1.066666666666667e-4,0.16192400207122168,7.14666666666666e-4,1.4281300173024647e-4,1.0799999999999991e-4 +2249,0.02634856601005947,0,0,-0,1.2202340197982688,9.838899850845337,0.0031239999999999983,0.012251705707361301,0.0016406666666666653,141.5189997355143,0.021627801333333307,4.654823025067647,0,4.393579999605815,0,6.430789987246196,4.571470600000004e-4,2.6259242494901023,0.007377999999999996,42.73449103037516,7.999999999999988e-5,4.8495010534922285,0.7577626666666655,0,408.20423634847003,30.751456666666684,1042.0397033691404,123.25626355851522,637.2979990641276,221.78279418622645,0.032501301262527704,0.008002350000000005,0.0022371899685822427,1.3953085333333337e-4,0,6.0196839999999995e-5,51.89169979095459,1.3895210666666653,9.747410933176676,1.0248186666666665,75.71120198567708,0.5437573333333328,0.5783330053091049,0.016063570000000027,11.265899976094564,0,0.5487030098835627,0.2142067266666665,0,0,0.06536990031599998,0.023592819999999987,0.009168889839202166,0.0017953073333333326,371.50698343912757,4.565509529108354,50.75398921168933,40.80823393144222,4.947308227350965,10.727961401040252,-0.1474685840366501,19.57259972890218,0.005281333333333339,1113.1368581902761,0,0,5.333333333333335e-5,0.15947199861208597,3.573333333333332e-4,1.3746400266730538e-4,5.399999999999996e-5 +2250,0,0,-0,-0,1.2106318552010977,9.838119983673096,0,0.011762405590464672,0,141.51900100708008,0,4.59980305035909,0,4.368090073267619,0,6.417920033137004,0,2.571824371814728,0,42.27309195200602,0,4.848321080207825,0,0,408.14221954345703,0,1038.109700520833,122.10259461186091,636.9570007324219,220.68790485952107,0.02923540010427435,0,0.0021061499525482454,0,0,0,50.03260040283203,0,9.035521348317465,0,74.03790028889973,0,0.5603790034850439,0,11.207500060399374,0,0.48515499631563824,0,0,0,0.058361599842707314,0,0.008581119822338223,0,371.3999811808268,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.566799958546955,0,1017.0153647711292,0,0,0,0.15705699970324835,0,1.323160007207965e-4,0 +2251,0,0,-0,-0,1.2106318552010977,9.837199926376343,0,0.011292805041496953,0,141.51700083414713,0,4.5454429388046265,0,4.342759966850281,0,6.405070066452026,0,2.5188344518343606,0,41.81659094492594,0,4.847180803616841,0,0,408.08617401123047,0,1034.2697448730466,122.10259461186091,636.6069997151693,220.68790485952107,0.0259744996825854,0,0.001976510015083477,0,0,0,48.17729981740316,0,8.325016339619955,0,72.3656997680664,0,0.542464996377627,0,11.149499893188477,0,0.4216970006624858,0,0,0,0.051363300221661724,0,0.007994769994790355,0,371.292978922526,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.560800234476726,0,1017.0153647711292,0,0,0,0.15468000123898187,0,1.2736100082596144e-4,0 +2252,0,0,-0,-0,1.2106318552010977,9.836219946543375,0,0.010841805022209883,0,141.5140012105306,0,4.491732915242513,0,4.317570010821025,0,6.392259955406189,0,2.4669245878855386,0,41.36519209543864,0,4.846540530522664,0,0,408.05806732177734,0,1030.6697896321612,122.10259461186091,636.2550048828125,220.68790485952107,0.022907300076136988,0,0.0018504900120509167,0,0,0,46.35880025227865,0,7.644263585408528,0,70.71320088704427,0,0.5248630146185557,0,11.09179981549581,0,0.3627149959405263,0,0,0,0.044816400234897934,0,0.0074291300649444265,0,371.1859817504882,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.554699738820393,0,1017.0153647711292,0,0,0,0.15233800063530603,0,1.2259200047992636e-4,0 +2253,0,0,-0,-0,1.2106318552010977,9.835229953130087,0,0.010409004831065735,0,141.51099904378256,0,4.438652873039246,0,4.292530020078023,0,6.3794699509938555,0,2.416094720363617,0,40.918691635131836,0,4.84652058283488,0,0,408.06300099690753,0,1027.4697977701821,122.10259461186091,635.9070027669271,220.68790485952107,0.020202499969551962,0,0.0017325200024060905,0,0,0,44.60920015970866,0,7.019244949022929,0,69.09849993387859,0,0.507832000652949,0,11.03439998626709,0,0.31198700517416,0,0,0,0.03910439989219109,0,0.006903540071410437,0,371.07998148600257,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.54859987894694,0,1017.0153647711292,0,0,0,0.15003200123707452,0,1.1800099976729446e-4,0 +2254,0,0,-0,-0,1.2106318552010977,9.83424997329712,0,0.009993414704998335,0,141.50800069173178,0,4.3862128257751465,0,4.267639994621277,0,6.3666999737421675,0,2.366294781366984,0,40.47699165344238,0,4.846660494804382,0,0,408.0799865722656,0,1024.6098124186196,122.10259461186091,635.5599873860677,220.68790485952107,0.017817200161516666,0,0.0016220799880102277,0,0,0,42.925700187683105,0,6.445369799931844,0,67.52090009053548,0,0.4913560003042221,0,10.977300008138021,0,0.26835600038369495,0,0,0,0.0341207996631662,0,0.00641518000823756,0,370.974983215332,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.542500019073486,0,1017.0153647711292,0,0,0,0.1477610021829605,0,1.1358300071151461e-4,0 +2255,0,0,-0,-0,1.2106318552010977,9.833269993464151,0,0.009594454507653912,0,141.50500106811523,0,4.3343929052352905,0,4.242899974187215,0,6.353969971338908,0,2.317514936129252,0,40.04009246826172,0,4.846860567728679,0,0,408.1009775797526,0,1022.0698191324868,122.10259461186091,635.2159983317057,220.68790485952107,0.01571369986049831,0,0.0015186899884914358,0,0,0,41.30589993794759,0,5.918463031450908,0,65.97939999898274,0,0.47541599969069165,0,10.920499960581461,0,0.230829997609059,0,0,0,0.029772700121005375,0,0.005961399991065264,0,370.87098948160804,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.53640015920003,0,1017.0153647711292,0,0,0,0.1455250009894371,0,1.0933099959705335e-4,0 +2256,0,0,-0,-0,1.2106318552010977,9.832280158996582,0,0.00921145430766046,0,141.5019989013672,0,4.2831928332646685,0,4.218299984931946,0,6.341260035832723,0,2.269765019416809,0,39.607991536458336,0,4.847070574760437,0,0,408.12298075358075,0,1019.809844970703,122.10259461186091,634.8730112711588,220.68790485952107,0.013858700015892586,0,0.0014218899984067928,0,0,0,39.74729983011881,0,5.434669653574626,0,64.47320016225179,0,0.45999400069316226,0,10.864000161488852,0,0.19855500012636185,0,0,0,0.025978900181750458,0,0.005539760032358269,0,370.7669830322265,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.530200004577637,0,1017.0153647711292,0,0,0,0.14332299927870432,0,1.0523799877167524e-4,0 +2257,0,0,-0,-0,1.2106318552010977,9.831299940745035,0,0.00884375418536365,0,141.49999872843424,0,4.232592821121216,0,4.193850000699361,0,6.328570008277893,0,2.2229851285616555,0,39.18059221903483,0,4.847290595372518,0,0,408.1459706624349,0,1017.789835611979,122.10259461186091,634.5320078531901,220.68790485952107,0.012222800015782317,0,0.0013312699932915468,0,0,0,38.24769973754883,0,4.9904621839523315,0,63.00150012969971,0,0.445073996980985,0,10.80779997507731,0,0.17079400271177292,0,0,0,0.022668899968266487,0,0.005147970048710704,0,370.6649805704752,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.524099508921307,0,1017.0153647711292,0,0,0,0.1411539986729622,0,8.46822519330696e-5,0 +2258,0,0,-0,-0,1.2106318552010977,9.830320040384928,0,0.008490753903364142,0,141.49699910481772,0,4.182602763175964,0,4.1695399681727094,0,6.315919955571492,0,2.17716521024704,0,38.75789260864258,0,4.847520510355632,0,0,408.1699727376302,0,1015.9898630777993,122.10259461186091,634.1929982503256,220.68790485952107,0.010780200051764647,0,0.0012464399818175782,0,0,0,36.80479939778646,0,4.582600275675456,0,61.56359990437826,0,0.43063900123039883,0,10.751799901326498,0,0.14691699668765068,0,0,0,0.019780800056954224,0,0.004783919973609348,0,370.5629781087239,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.51799996693929,0,1017.0153647711292,0,0,0,0.1390179991722107,0,0,0 +2259,0,0,-0,-0,1.2106318552010977,9.82932996749878,0,0.00815186370164156,0,141.49400075276694,0,4.133212725321452,0,4.145380020141602,0,6.303289930025737,0,2.132275342941284,0,38.33969211578369,0,4.847750544548035,0,0,408.19397735595703,0,1014.3998565673827,122.10259461186091,633.8550008138021,220.68790485952107,0.009507920049751798,0,0.0011670199940757204,0,0,0,35.41649977366129,0,4.208104411760966,0,60.158600171407066,0,0.41667299966017407,0,10.696199973424276,0,0.12637999964257082,0,0,0,0.017260999729235966,0,0.004445649993916352,0,370.4619827270507,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.51189947128296,0,1017.0153647711292,0,0,0,0.13691499829292297,0,0,0 +2260,0,0,-0,-0,1.2106318552010977,9.828349987665812,0,0.007826513766000668,0,141.4910011291504,0,4.0844026406606035,0,4.121350010236104,0,6.290679971377055,0,2.0883053739865622,0,37.926093101501465,0,4.847980499267578,0,0,408.2179768880208,0,1012.9698689778645,122.10259461186091,633.5179951985677,220.68790485952107,0.008385900097588697,0,0.0010926599982970704,0,0,0,34.080600102742515,0,3.8642449378967285,0,58.78569984436035,0,0.4031620000799497,0,10.640900055567423,0,0.10871500025192897,0,0,0,0.015062299945081273,0,0.004131320010249813,0,370.36197916666663,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.505900065104168,0,1017.0153647711292,0,0,0,0.13484399765729904,0,0,0 +2261,0,0,-0,-0,1.2106318552010977,9.827370007832846,0,0.007514153451969226,0,141.4880002339681,0,4.036182641983032,0,4.0974700053532915,0,6.27810005346934,0,2.045255502065023,0,37.51699288686117,0,4.848200559616089,0,0,408.24197642008465,0,1011.6998799641926,122.10259461186091,633.1829935709635,220.68790485952107,0.007396379990192751,0,0.0010230499901808798,0,0,0,32.79529984792074,0,3.5485122203826904,0,57.4443998336792,0,0.3900900011261304,0,10.58589998881022,0,0.09352009991804759,0,0,0,0.013143799966201186,0,0.003839250033100446,0,370.26298522949213,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.499799887339275,0,1017.0153647711292,0,0,0,0.1328039988875389,0,0,0 +2262,0,0,-0,-0,1.2106318552010977,9.826390027999878,0,0.00721428341542681,0,141.48600133260092,0,3.9885226090749106,0,4.073730031649272,0,6.265549977620442,0,2.0030855933825173,0,37.11239242553711,0,4.8484305540720625,0,0,408.2649739583333,0,1010.5698750813801,122.10259461186091,632.8489939371744,220.68790485952107,0.006523689992415409,0,9.57883006776683e-4,0,0,0,31.558599789937336,0,3.2586063543955484,0,56.13369941711426,0,0.3774430031577746,0,10.531099875768026,0,0.08045040008922417,0,0,0,0.01146979994761447,0,0.0035678400114799538,0,370.1639836629231,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.4936998685201,0,1017.0153647711292,0,0,0,0.13079500074187914,0,0,0 +2263,0,0,-0,-0,1.2106318552010977,9.82539987564087,0,0.006926393252797425,0,141.48299916585287,0,3.9414325952529907,0,4.050120035807292,0,6.25301996866862,0,1.9617757002512615,0,36.71209176381429,0,4.8486606280008955,0,0,408.28897349039715,0,1009.5698801676431,122.10259461186091,632.5169982910156,220.68790485952107,0.005754039972089231,0,8.968690041607866e-4,0,0,0,30.36860005060832,0,2.992407739162445,0,54.85309982299805,0,0.3652070015668869,0,10.476699908574423,0,0.06920820040007432,0,0,0,0.01000920000175635,0,0.003315649984870106,0,370.0659840901692,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.48760000864665,0,1017.0153647711292,0,0,0,0.12881699949502945,0,0,0 +2264,0,0,-0,-0,1.2106318552010977,9.824419975280762,0,0.006650013111842175,0,141.4800008138021,0,3.894912540912628,0,4.026660044987996,0,6.240520000457764,0,1.9213257730007172,0,36.316192944844566,0,4.848890542984009,0,0,408.31297302246094,0,1008.6698913574218,122.10259461186091,632.1859944661459,220.68790485952107,0.005075239964450399,0,8.397469985842084e-4,0,0,0,29.223600069681805,0,2.747976541519165,0,53.601800282796226,0,0.35336799671252567,0,10.422499895095825,0,0.05953779971847931,0,0,0,0.00873465013379852,0,0.003081300004851073,0,369.9689865112304,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.481499671936035,0,1017.0153647711292,0,0,0,0.1268689992527167,0,0,0 +2265,0,0,-0,-0,1.2106318552010977,9.823439995447794,0,0.006384663050994277,0,141.4770024617513,0,3.8489325046539307,0,4.0033299922943115,0,6.228039940198262,0,1.8817158639431,0,35.92459265391032,0,4.849110563596089,0,0,408.33697509765625,0,1007.879887898763,122.10259461186091,631.8569997151693,220.68790485952107,0.004476569981003801,0,7.862680067773908e-4,0,0,0,28.12179978688558,0,2.52353298664093,0,52.37909984588623,0,0.3419149989883105,0,10.368600050608316,0,0.051219300366938114,0,0,0,0.007622510039558013,0,0.002863530011381954,0,369.8729858398437,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.47539981206258,0,1017.0153647711292,0,0,0,0.12495000039537747,0,0,0 +2266,0,0,-0,-0,1.2106318552010977,9.822460095087687,0,0.006129912915639579,0,141.473996480306,0,3.8035024801890054,0,3.9801400105158486,0,6.215590039889018,0,1.8429159422715504,0,35.53719266255697,0,4.849330544471741,0,0,408.35997772216797,0,1007.1698964436848,122.10259461186091,631.52899169921875,220.68790485952107,0.003948569996282458,0,7.361989943698669e-4,0,0,0,27.061700185139973,0,2.3174372712771096,0,51.184399922688804,0,0.33083399881919223,0,10.314999977747599,0,0.04406370005259911,0,0,0,0.006652049953117967,0,0.002661170030478388,0,369.77797953287757,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.469299793243408,0,1017.0153647711292,0,0,0,0.12306100067993005,0,0,0 +2267,0,0,-0,-0,1.2106318552010977,9.82146986325582,0,0.005885332667579253,0,141.47100067138672,0,3.7586124539375305,0,3.9570900003115335,0,6.20317006111145,0,1.8049060205618541,0,35.15409278869629,0,4.849560538927714,0,0,408.38297271728516,0,1006.5299021402993,122.10259461186091,631.2029978434244,220.68790485952107,0.0034828700008802116,0,6.893230020068586e-4,0,0,0,26.04170020421346,0,2.1281895637512207,0,50.017099698384605,0,0.3201120023926099,0,10.261699914932251,0,0.03790829982608557,0,0,0,0.005805209977552295,0,0.002473130007274449,0,369.68297831217444,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.463199933369953,0,1017.0153647711292,0,0,0,0.12119999900460243,0,0,0 +2268,0,0,-0,-0,1.2106318552010977,9.820489962895712,0,0.005650532664731145,0,141.46900049845377,0,3.7142624258995056,0,3.9341700275739035,0,6.1907700300216675,0,1.767696092526118,0,34.77509276072184,0,4.849770545959473,0,0,408.40597279866535,0,1005.9698994954426,122.10259461186091,630.8790028889974,220.68790485952107,0.0030721400010709963,0,6.454350029040749e-4,0,0,0,25.060200055440266,0,1.9544100364049275,0,48.87650044759115,0,0.30973999947309494,0,10.208700021107992,0,0.03261319982508818,0,0,0,0.00506624998524785,0,0.002298390007733057,0,369.58898417154944,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.457100073496502,0,1017.0153647711292,0,0,0,0.1193680011977752,0,0,0 +2269,0,0,-0,-0,1.2106318552010977,9.819509983062744,0,0.005425102581890921,0,141.46600087483725,0,3.670432388782501,0,3.9113800128300986,0,6.178399999936421,0,1.7312361896038055,0,34.400193214416504,0,4.849990566571553,0,0,408.42897542317706,0,1005.4699045817056,122.10259461186091,630.5559997558594,220.68790485952107,0.002709869993850589,0,6.043439983235052e-4,0,0,0,24.115700085957844,0,1.7948388357957203,0,47.76200008392334,0,0.2997040053208669,0,10.155900001525879,0,0.028058099870880444,0,0,0,0.004421399945082764,0,0.00213600997813046,0,369.495984395345,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.45109987258911,0,1017.0153647711292,0,0,0,0.11756300056974094,0,0,0 +2270,0,0,-0,-0,1.2106318552010977,9.818530003229776,0,0.005208672412360708,0,141.4630012512207,0,3.627122402191162,0,3.888729989528656,0,6.16605003674825,0,1.6955062647660573,0,34.02939319610596,0,4.850210547447205,0,0,408.4519780476888,0,1005.0199127197264,122.10259461186091,630.2339935302734,220.68790485952107,0.002390350001708915,0,5.658730030215035e-4,0,0,0,23.20699993769328,0,1.6483060816923778,0,46.67299938201904,0,0.2899939964214961,0,10.103399833043417,0,0.02413949991265933,0,0,0,0.003858670029633989,0,0.001985110002957905,0,369.40398406982416,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.44499969482422,0,1017.0153647711292,0,0,0,0.11578599984447162,0,0,0 +2271,0,0,-0,-0,1.2106318552010977,9.81754994392395,0,0.005000892366903524,0,141.46000035603842,0,3.5843223333358765,0,3.8662100036938987,0,6.153730034828186,0,1.6605363587538402,0,33.66259320576986,0,4.850420554478963,0,0,408.4739812215169,0,1004.6199086507161,122.10259461186091,629.9149983723959,220.68790485952107,0.002108530005595336,0,5.298540005848432e-4,0,0,0,22.332499821980793,0,1.5137519439061482,0,45.60889975229899,0,0.2805989980697632,0,10.051199992497763,0,0.020768399971226852,0,0,0,0.0033676000117945173,0,0.0018448899985135843,0,369.3119786580403,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.438899834950764,0,1017.0153647711292,0,0,0,0.11403600002328555,0,0,0 +2272,0,0,-0,-0,1.2106318552010977,9.81656018892924,0,0.004801402256513636,0,141.45699818929037,0,3.5420323411623635,0,3.8438300093015036,0,6.141429980595906,0,1.6262864271799724,0,33.29979260762533,0,4.850630521774292,0,0,408.49597930908203,0,1004.2699178059895,122.10259461186091,629.5969950358073,220.68790485952107,0.001859949998712788,0,4.961300001014024e-4,0,0,0,21.491100311279297,0,1.390186458826065,0,44.569199879964195,0,0.27151000251372653,0,9.999300003051758,0,0.01786839993049701,0,0,0,0.0029390700122651956,0,0.0017145800035602103,0,369.22098286946607,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.432799975077312,0,1017.0153647711292,0,0,0,0.1123120008657376,0,0,0 +2273,0,0,-0,-0,1.2106318552010977,9.815580050150553,0,0.00460988221069177,0,141.45400110880533,0,3.5002523263295493,0,3.8215699791908264,0,6.129159967104594,0,1.5927564998467763,0,32.94089412689209,0,4.85084052880605,0,0,408.51798248291016,0,1003.9499155680337,122.10259461186091,629.2799987792969,220.68790485952107,0.0016406899958383292,0,4.645559990118879e-4,0,0,0,20.681399981180828,0,1.2767198185125987,0,43.55320008595785,0,0.26271600276231766,0,9.947640101114908,0,0.01537349990879496,0,0,0,0.0025650900012503066,0,0.0015934800127676378,0,369.13098653157545,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.426799933115642,0,1017.0153647711292,0,0,0,0.11061500012874603,0,0,0 +2274,0,0,-0,-0,1.2106318552010977,9.814599990844727,0,0.0044260020755852265,0,141.4520009358724,0,3.4589622616767883,0,3.7994500199953714,0,6.116910020510356,0,1.559896558523178,0,32.585893630981445,0,4.851050496101379,0,0,408.53998311360675,0,1003.6699117024739,122.10259461186091,628.9660085042318,220.68790485952107,0.0014472999998057883,0,4.3499299984735745e-4,0,0,0,19.902399857838947,0,1.1725221276283264,0,42.560499827067055,0,0.2542070001363754,0,9.896249930063883,0,0.013227100018411875,0,0,0,0.0022387199957544603,0,0.0014809500038002927,0,369.0419820149739,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.420699914296467,0,1017.0153647711292,0,0,0,0.10894299981494744,0,0,0 +2275,0,0,-0,-0,1.2106318552010977,9.813620011011759,0,0.0042494719770426554,0,141.44899876912436,0,3.418162206808726,0,3.777449985345205,0,6.104689995447795,0,1.5277066330115001,0,32.23479334513346,0,4.851250529289246,0,0,408.5619812011719,0,1003.4199218749999,122.10259461186091,628.6530049641927,220.68790485952107,0.0012767100027607132,0,4.0731400076765567e-4,0,0,0,19.152699788411457,0,1.0768333772818248,0,41.590499560038246,0,0.24597500016291937,0,9.84512988726298,0,0.011380599966893593,0,0,0,0.0019539099982163557,0,0.0013763699971605092,0,368.95298004150385,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.414599895477295,0,1017.0153647711292,0,0,0,0.10729700016478698,0,0,0 +2276,0,0,-0,-0,1.2106318552010977,9.812639951705933,0,0.004079981939867139,0,141.4460016886393,0,3.3778421878814697,0,3.755580027898153,0,6.092489918073018,0,1.4961866935094197,0,31.8874937693278,0,4.851460576057434,0,0,408.5829823811849,0,1003.1999206542968,122.10259461186091,628.3410085042318,220.68790485952107,0.0011262400075793266,0,3.813980025976586e-4,0,0,0,18.431300004323322,0,0.9889627148707708,0,40.64269987742106,0,0.23800900081793466,0,9.794280052185059,0,0.00979189993813634,0,0,0,0.0017053400030514847,0,0.0012791800157477458,0,368.86498514811194,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.408599694569904,0,1017.0153647711292,0,0,0,0.10567500007649262,0,0,0 +2277,0,0,-0,-0,1.2106318552010977,9.811659971872965,0,0.003917251810586701,0,141.4430020650228,0,3.3380021452903748,0,3.733840028444926,0,6.080320080121358,0,1.465326766173045,0,31.543893814086914,0,4.85166056950887,0,0,408.6039810180664,0,1002.9999237060546,122.10259461186091,628.031005859375,220.68790485952107,9.935199923347682e-4,0,3.5713200001434114e-4,0,0,0,17.737200260162354,0,0.908269206682841,0,39.71649996439616,0,0.23030299817522368,0,9.743690013885498,0,0.008425109942133227,0,0,0,0.001488409994635731,0,0.0011888700149332483,0,368.77798461914057,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.40249999364217,0,1017.0153647711292,0,0,0,0.10407799979050954,0,0,0 +2278,0,0,-0,-0,1.2106318552010977,9.810679912567139,0,0.003761031742518147,0,141.44000116984049,0,3.2986321250597634,0,3.7122300267219543,0,6.068170030911763,0,1.4351068437099457,0,31.20399347941081,0,4.851860523223877,0,0,408.62497965494794,0,1002.8199157714843,122.10259461186091,627.7229970296224,220.68790485952107,8.764450079373395e-4,0,3.3441299698703614e-4,0,0,0,17.069200197855633,0,0.8341659406820933,0,38.81159973144531,0,0.2228459989031156,0,9.69336994489034,0,0.007249190006405115,0,0,0,0.0012991000063872586,0,0.0011049299985946466,0,368.6909815470377,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.39640013376872,0,1017.0153647711292,0,0,0,0.10250600054860115,0,0,0 +2279,0,0,-0,-0,1.2106318552010977,9.809689998626709,0,0.003611041698604822,0,141.43699900309244,0,3.2597321271896362,0,3.6907400091489158,0,6.056049982706706,0,1.405496895313263,0,30.86789385477702,0,4.852050542831421,0,0,408.64598337809247,0,1002.6599222819009,122.10259461186091,627.417002360026,220.68790485952107,7.731739945787316e-4,0,3.131399959481011e-4,0,0,0,16.426499843597412,0,0.7661139418681463,0,37.92729981740316,0,0.21563199907541275,0,9.643320083618164,0,0.006237479974515736,0,0,0,0.0011338700035897393,0,0.0010269300061433266,0,368.60498046874994,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.39040009180705,0,1017.0153647711292,0,0,0,0.10095700000723203,0,0,0 +2280,0,0,-0,-0,1.2106318552010977,9.808710098266602,0,0.0034670316187354424,0,141.43500137329102,0,3.221302111943563,0,3.6693799694379172,0,6.043960054715474,0,1.3764869670073192,0,30.535393873850506,0,4.852250417073567,0,0,408.66697947184247,0,1002.5099232991536,122.10259461186091,627.11199951171875,220.68790485952107,6.820770019354919e-4,0,2.9322199649565545e-4,0,0,0,15.807999928792318,0,0.7036182979742686,0,37.06319999694824,0,0.20865100001295409,0,9.59353001912435,0,0.0053670199898382025,0,0,0,9.89668013062328e-4,0,9.544410034626102e-4,0,368.5199839274088,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.384299914042156,0,1017.0153647711292,0,0,0,0.0994316004216671,0,0,0 +2281,0,0,-0,-0,1.2106318552010977,9.807729959487915,0,0.0033287715826494,0,141.4319979349772,0,3.1833121180534363,0,3.648150006930033,0,6.031880021095276,0,1.3480770389238994,0,30.206393877665203,0,4.852440516153972,0,0,408.6869888305664,0,1002.389923095703,122.10259461186091,626.8079986572266,220.68790485952107,6.017199921188876e-4,0,2.745730016613379e-4,0,0,0,15.212800105412802,0,0.6462250451246897,0,36.218899726867676,0,0.20189700027306876,0,9.54399005572001,0,0.004618099968259533,0,0,0,8.638150029582903e-4,0,8.870729992243772e-4,0,368.43498229980463,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.378300031026203,0,1017.0153647711292,0,0,0,0.09792950004339218,0,0,0 +2282,0,0,-0,-0,1.2106318552010977,9.806750059127808,0,0.003196041468375673,0,141.42899958292642,0,3.1457820534706116,0,3.6270400285720825,0,6.019829988479614,0,1.3202671110630035,0,29.881094137827557,0,4.852630535761516,0,0,408.70698801676434,0,1002.2699228922525,122.10259461186091,626.5060068766276,220.68790485952107,5.3083499854741e-4,0,2.5711100170155987e-4,0,0,0,14.640100002288818,0,0.5935172438621521,0,35.39380041758219,0,0.19536200041572252,0,9.494720141092936,0,0.0039737199937614305,0,0,0,7.539739987502495e-4,0,8.244640048360452e-4,0,368.35098012288404,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.372199694315594,0,1017.0153647711292,0,0,0,0.09645009972155094,0,0,0 +2283,0,0,-0,-0,1.2106318552010977,9.805769999821981,0,0.0030685914292310676,0,141.4259999593099,0,3.1086920301119485,0,3.6060499946276345,0,6.007809956868489,0,1.293027142683665,0,29.559193929036457,0,4.852820475896199,0,0,408.7269922892253,0,1002.1699218749999,122.10259461186091,626.2059987386068,220.68790485952107,4.6830400242470205e-4,0,2.4076000045170076e-4,0,0,0,14.08900006612142,0,0.5451129426558813,0,34.58760007222494,0,0.18904000024000803,0,9.445709864298502,0,0.0034192999786076448,0,0,0,6.581070047104731e-4,0,7.662789964039499e-4,0,368.26797993977857,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.36619997024536,0,1017.0153647711292,0,0,0,0.09499319891134898,0,0,0 +2284,0,0,-0,-0,1.2106318552010977,9.804790019989014,0,0.0029462413707127175,0,141.42299779256186,0,3.0720419883728027,0,3.5851799845695496,0,5.99580995241801,0,1.2663572132587433,0,29.240894317626953,0,4.853010535240173,0,0,408.74698130289715,0,1002.0799407958983,122.10259461186091,625.9070027669271,220.68790485952107,4.131440073251724e-4,0,2.254510012183649e-4,0,0,0,13.55869992574056,0,0.5006581693887711,0,33.799899419148765,0,0.1829219994445642,0,9.396950006484985,0,0.0029422700172290206,0,0,0,5.744350055465475e-4,0,7.122030025736118e-4,0,368.1859766642252,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.36009995142619,0,1017.0153647711292,0,0,0,0.09355829966564973,0,0,0 +2285,0,0,-0,-0,1.2106318552010977,9.803809960683187,0,0.0028287613531574607,0,141.4200007120768,0,3.0358219742774963,0,3.5644400119781494,0,5.983839988708496,0,1.2402172684669495,0,28.925994237263996,0,4.853200554847717,0,0,408.7669855753581,0,1001.9899241129556,122.10259461186091,625.6099955240885,220.68790485952107,3.644839962362312e-4,0,2.1111600047637089e-4,0,0,0,13.048399925231934,0,0.4598329762617747,0,33.03010050455729,0,0.17700299993157387,0,9.348449865976969,0,0.002531820035073906,0,0,0,5.014069975004531e-4,0,6.619479972869158e-4,0,368.10398610432935,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.354100068410236,0,1017.0153647711292,0,0,0,0.09214520019789536,0,0,0 +2286,0,0,-0,-0,1.2106318552010977,9.80282998085022,0,0.0027159812937801084,0,141.41799926757812,0,3.000041981538137,0,3.543809990088145,0,5.971889972686768,0,1.2146073182423909,0,28.614494164784748,0,4.853390534718831,0,0,408.7859878540039,0,1001.9199218749999,122.10259461186091,625.3139953613281,220.68790485952107,3.2155799999600276e-4,0,1.976930010035479e-4,0,0,0,12.557300011316935,0,0.42233938227097195,0,32.27789990107218,0,0.17127499853571257,0,9.30020006497701,0,0.0021786500001326203,0,0,0,4.3766699915674206e-4,0,6.152420003976052e-4,0,368.0219802856445,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.347999890645344,0,1017.0153647711292,0,0,0,0.09075350066026051,0,0,0 +2287,0,0,-0,-0,1.2106318552010977,9.801850001017252,0,0.0026076912375477455,0,141.41500091552734,0,2.9646719098091125,0,3.5233099857966104,0,5.959960023562114,0,1.18953737616539,0,28.30639425913493,0,4.853570540746053,0,0,408.80498758951825,0,1001.8499348958333,122.10259461186091,625.0200042724609,220.68790485952107,2.8368999968127656e-4,0,1.8512500052262718e-4,0,0,0,12.084700107574463,0,0.38790542632341385,0,31.542899926503498,0,0.16573399926225343,0,9.25220012664795,0,0.0018747599873070915,0,0,0,3.820330020971596e-4,0,5.71834005919906e-4,0,367.9419835408528,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.341999848683674,0,1017.0153647711292,0,0,0,0.08938289992511272,0,0,0 +2288,0,0,-0,-0,1.2106318552010977,9.800869941711426,0,0.0025037312104056277,0,141.41199747721353,0,2.9297319253285727,0,3.5029300252596536,0,5.948059995969136,0,1.1649774213631947,0,28.00159438451131,0,4.853750507036845,0,0,408.8249867757161,0,1001.7899169921874,122.10259461186091,624.7269948323568,220.68790485952107,2.502840009886616e-4,0,1.7335700007000318e-4,0,0,0,11.630000034968058,0,0.3562801480293274,0,30.824699878692627,0,0.16037200142939886,0,9.204460064570108,0,0.001613280027716731,0,0,0,3.3347499993396923e-4,0,5.314919981174171e-4,0,367.86198425292963,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.335899988810223,0,1017.0153647711292,0,0,0,0.08803299938639005,0,0,0 +2289,0,0,-0,-0,1.2106318552010977,9.799889961878458,0,0.00240391114493832,0,141.40900039672852,0,2.8952019214630127,0,3.4826600551605225,0,5.9361900091171265,0,1.1409375071525574,0,27.7000945409139,0,4.853930513064067,0,0,408.843989054362,0,1001.7299296061196,122.10259461186091,624.4359995524088,220.68790485952107,2.2081400068903653e-4,0,1.623370020145861e-4,0,0,0,11.192400058110556,0,0.32723656793435413,0,30.122899850209553,0,0.15518400197227797,0,9.156959931055704,0,0.0013882900044942896,0,0,0,2.910919987092105e-4,0,4.939980014266135e-4,0,367.78298187255854,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.32989962895711,0,1017.0153647711292,0,0,0,0.08670360036194324,0,0,0 +2290,0,0,-0,-0,1.2106318552010977,9.79891006151835,0,0.002308071047688524,0,141.40600077311197,0,2.861081858476003,0,3.4625199834505715,0,5.924329956372579,0,1.1173875232537587,0,27.401894410451252,0,4.8541105190912885,0,0,408.8629887898763,0,1001.6799265543618,122.10259461186091,624.1460011800131,220.68790485952107,1.9481499960723644e-4,0,1.5201900168904103e-4,0,0,0,10.771299997965494,0,0.30056169132391614,0,29.437099933624268,0,0.15016399944821993,0,9.109710057576498,0,0.0011946799932047725,0,0,0,2.540970029561625e-4,0,4.5915200219800073e-4,0,367.703987121582,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.323800086975098,0,1017.0153647711292,0,0,0,0.08539440048237641,0,0,0 +2291,0,0,-0,-0,1.2106318552010977,9.797930002212524,0,0.0022160610339293876,0,141.4029998779297,0,2.827361822128296,0,3.4424900015195212,0,5.912499984105428,0,1.0943376024564107,0,27.106794675191242,0,4.8542905648549395,0,0,408.88099161783856,0,1001.639923095703,122.10259461186091,623.85699462890625,220.68790485952107,1.7187900084536523e-4,0,1.4235699927667156e-4,0,0,0,10.366099913914999,0,0.27606358130772907,0,28.7669997215271,0,0.1453070007264614,0,9.062710046768188,0,0.0010280899975138407,0,0,0,2.2180699913102822e-4,0,4.267660018134241e-4,0,367.6259791056315,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.317799886067707,0,1017.0153647711292,0,0,0,0.0841049998998642,0,0,0 +2292,0,0,-0,-0,1.2106318552010977,9.796950022379557,0,0.002127720993788292,0,141.4010009765625,0,2.7940417925516763,0,3.4225799838701882,0,5.900699973106384,0,1.0717476308345795,0,26.81499433517456,0,4.854470570882161,0,0,408.8999888102214,0,1001.5999196370442,122.10259461186091,623.57000732421875,220.68790485952107,1.5164500049043758e-4,0,1.3330999960696013e-4,0,0,0,9.97613008817037,0,0.25356321906050044,0,28.11210012435913,0,0.1406070018808047,0,9.015959898630777,0,8.847390029889842e-4,0,0,0,1.9362199964234605e-4,0,3.966659981718597e-4,0,367.5479838053385,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.311799844106037,0,1017.0153647711292,0,0,0,0.08283509997030099,0,0,0 +2293,0,0,-0,-0,1.2106318552010977,9.79596996307373,0,0.0020429109766458473,0,141.39800135294595,0,2.7611217896143594,0,3.402780016263326,0,5.888919989267985,0,1.04959770043691,0,26.526394685109455,0,4.854640523592631,0,0,408.91798909505206,0,1001.5599263509114,122.10259461186091,623.2839914957682,220.68790485952107,1.3379399873277484e-4,0,1.248380000712738e-4,0,0,0,9.60086989402771,0,0.2328986550370852,0,27.472300211588543,0,0.1360590010881424,0,8.969450076421102,0,7.613829996747276e-4,0,0,0,1.690199993997036e-4,0,3.686919978160101e-4,0,367.4719874064127,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.305699984232586,0,1017.0153647711292,0,0,0,0.08158440018693607,0,0,0 +2294,0,0,-0,-0,1.2106318552010977,9.794989983240763,0,0.0019614709017332643,0,141.39500045776367,0,2.7285817861557007,0,3.3831000328063965,0,5.877159992853801,0,1.027917742729187,0,26.24079465866089,0,4.854820489883423,0,0,408.9369862874349,0,1001.5199279785155,122.10259461186091,622.9990030924479,220.68790485952107,1.1804500051463644e-4,0,1.1690599967550952e-4,0,0,0,9.239759922027588,0,0.21391988173127174,0,26.847000281016033,0,0.1316590023537477,0,8.923180023829142,0,6.552330111541474e-4,0,0,0,1.475449995875048e-4,0,3.426909994838449e-4,0,367.3949813842773,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.299699783325195,0,1017.0153647711292,0,0,0,0.08035269938409328,0,0,0 +2295,0,0,-0,-0,1.2106318552010977,9.794010003407797,0,0.0018832908632854621,0,141.3920021057129,0,2.6964317560195923,0,3.363540013631185,0,5.865429917971293,0,1.006687785188357,0,25.95839484532674,0,4.854990601539612,0,0,408.95499420166016,0,1001.4899241129556,122.10259461186091,622.71600341796875,220.68790485952107,8.768540222566419e-5,0,1.0947800061937112e-4,0,0,0,8.892249902089437,0,0.1964879296720028,0,26.236000061035156,0,0.12740199888745943,0,8.877159913380941,0,5.638879956677556e-4,0,0,0,1.2880000091778734e-4,0,3.185260041694467e-4,0,367.3199844360351,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.293699741363525,0,1017.0153647711292,0,0,0,0.07913969891766708,0,0,0 +2296,0,0,-0,-0,1.2106318552010977,9.793030023574829,0,0.0018082208504589896,0,141.3890012105306,0,2.664661725362142,0,3.344090004762014,0,5.85372006893158,0,0.9858968257904053,0,25.67899497350057,0,4.855160474777222,0,0,408.9729919433594,0,1001.4599253336587,122.10259461186091,622.4339904785156,220.68790485952107,0,0,8.590302483450311e-5,0,0,0,8.557830095291138,0,0.18047781164447466,0,25.63890027999878,0,0.12328299942115943,0,8.831369956334433,0,4.852820056839846e-4,0,0,0,1.1243699979483306e-4,0,2.9606699778620776e-4,0,367.2449798583984,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.287599722544353,0,1017.0153647711292,0,0,0,0.0779450008024772,0,0,0 +2297,0,0,-0,-0,1.2106318552010977,9.792050043741861,0,0.001736150811969613,0,141.3860003153483,0,2.6332716743151345,0,3.324750006198883,0,5.8420400222142534,0,0.9655408759911855,0,25.402595202128094,0,4.855330506960551,0,0,408.9909947713216,0,1001.4299265543618,122.10259461186091,622.1530100504557,220.68790485952107,0,0,0,0,0,0,8.236009995142618,0,0.1657735382517179,0,25.055500030517578,0,0.11929700026909511,0,8.78582994143168,0,4.176390017770852e-4,0,0,0,9.815449933133398e-5,0,2.751919989047262e-4,0,367.16998036702466,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.2815998395284,0,1017.0153647711292,0,0,0,0.07676839890579383,0,0,0 +2298,0,0,-0,-0,1.2106318552010977,9.791069984436035,0,0.0016669507798117895,0,141.38400268554688,0,2.602251708507538,0,3.305519998073578,0,5.830380002657573,0,0.9456079254547755,0,25.129295031229656,0,4.855500499407451,0,0,409.0089925130208,0,1001.399927775065,122.10259461186091,621.8730010986328,220.68790485952107,0,0,0,0,0,0,7.9263201157252,0,0.15226812536517778,0,24.4853998819987,0,0.1154399998486042,0,8.740520000457764,0,3.5942799877375364e-4,0,0,0,8.568679913878441e-5,0,2.5579099989651394e-4,0,367.0969848632812,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.27559979756673,0,1017.0153647711292,0,0,0,0.07560960079232852,0,0,0 +2299,0,0,-0,-0,1.2106318552010977,9.790090084075928,0,0.00160052075322407,0,141.38099924723306,0,2.5715916951497397,0,3.2864099939664206,0,5.818740010261536,0,0.9260899573564529,0,24.858794689178467,0,4.85567061106364,0,0,409.02699279785156,0,1001.379923502604,122.10259461186091,621.5950012207031,220.68790485952107,0,0,0,0,0,0,7.628290057182312,0,0.13986358170708021,0,23.92830006281535,0,0.11170799968143304,0,8.695450067520142,0,3.093330039215895e-4,0,0,0,7.48034005179458e-5,0,2.3775799733508998e-4,0,367.0229822794596,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.26959991455078,0,1017.0153647711292,0,0,0,0.07446840032935143,0,0,0 +2300,0,0,-0,-0,1.2106318552010977,9.789120038350424,0,0.0015367307253958036,0,141.37799962361655,0,2.541301707426707,0,3.2674099802970886,0,5.807129939397176,0,0.9069789995749792,0,24.591294765472412,0,4.855840524037679,0,0,409.0439961751302,0,1001.3499298095702,122.10259461186091,621.3179982503256,220.68790485952107,0,0,0,0,0,0,7.341489990552266,0,0.1284709187845389,0,23.38390000661214,0,0.10809699942668279,0,8.650620063145956,0,2.662230011386176e-4,0,0,0,6.530290071774895e-5,0,2.209979987431628e-4,0,366.9509836832682,4.558848853922723,50.655898018995636,40.272055968119325,4.821762289867725,10.702379493357645,-0.1474685840366501,19.26349989573161,0,1017.0153647711292,0,0,0,0.07334440015256405,0,0,0 diff --git a/inst/input/tables/ssp370_emiss-constraints_rf.csv b/inst/input/tables/ssp370_emiss-constraints_rf.csv new file mode 100644 index 000000000..96f6b51e6 --- /dev/null +++ b/inst/input/tables/ssp370_emiss-constraints_rf.csv @@ -0,0 +1,562 @@ +; ssp370 from rcmip +; hectordata 0.0.0.9000 +; commit dab9aad8750535b +; date Fri Nov 4 11:35:31 2022 +; UNITS:, PgC year-1, PgC year-1, PgC year-1, PgC year-1, Tg year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg CH4 year-1, ppm, Tg CO year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg N year-1, Tg year-1, Tg NMVOC year-1, Tg N year-1, Tg year-1, W m-2, ppt, ppt, Gg S year-1, W m-2, ppt, ppt, ppt, ppt, ppt, ppt +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_constrain,C2F6_emissions,CCl4_constrain,CCl4_emissions,CF4_constrain,CF4_emissions,CFC113_constrain,CFC113_emissions,CFC114_constrain,CFC114_emissions,CFC115_constrain,CFC115_emissions,CFC11_constrain,CFC11_emissions,CFC12_constrain,CFC12_emissions,CH3Br_constrain,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_constrain,CH3Cl_emissions,CH4_constrain,CH4_emissions,CO2_constrain,CO_emissions,HCFC141b_constrain,HCFC141b_emissions,HCFC142b_constrain,HCFC142b_emissions,HCFC22_constrain,HCFC22_emissions,HFC125_constrain,HFC125_emissions,HFC134a_constrain,HFC134a_emissions,HFC143a_constrain,HFC143a_emissions,HFC227ea_constrain,HFC227ea_emissions,HFC23_constrain,HFC23_emissions,HFC245_constrain,HFC245fa_emissions,HFC32_constrain,HFC32_emissions,HFC365_constrain,HFC365_emissions,HFC4310_constrain,HFC4310_emissions,N2O_constrain,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,RF_albedo,SF6_constrain,SF6_emissions,SO2_emissions,SV,halon1211_constrain,halon1211_emissions,halon1301_constrain,halon1301_emissions,halon2402_constrain,halon2402_emissions +1745,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,728.6180877685546,19.019783117809567,276.9859975179036,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7540486653645,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1746,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.704874674479,19.019783117809567,277.01399993896484,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7850443522135,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1747,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.8320821126301,19.019783117809567,277.0439987182617,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.80204772949213,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1748,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.2330983479817,19.019783117809567,277.07999928792316,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8170496622721,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1749,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.9769846598306,19.019783117809567,277.10900115966797,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8330459594726,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1750,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,731.4059956868489,19.019783117809567,277.1470031738281,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8650512695312,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1751,0.0025941063027029847,0.0826692695573487,0,0,2.0729259257736388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1072,0,457.00000254313153,4276.7685,731.838165283203,18.915108869931455,277.18800099690753,343.9263672486595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8940556844075,0.05578579647289745,6.860142184947855,59.08812628149409,3.8337729357251344,15.188716744277112,-0.00022945725475492763,0,0,1206.0681799841475,0.1857567460517512,0.004446572546536724,0.0077232726,0,0,0,0 +1752,0.0025952084646724115,0.0841901460141451,0,0,2.0643119329193533,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12502,0,457.00000254313153,4277.7049,732.8999735514321,18.889711811886766,277.22900136311847,341.8090339016869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.92705535888666,0.056839716429342754,6.819482036717451,58.63199702688318,3.8343718514044016,15.034475741403988,-4.5891450950985525e-4,0,0,1200.4278473396196,0.1857604715824308,0.004446572546536724,0.0077232726,0,0,0,0 +1753,0.0025953021590175993,0.08573900221733607,0,0,2.0719505635154682,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10373,0,457.00000254313153,4276.585999999999,733.634038289388,19.121377231171937,277.26300048828125,343.6754562091752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.9730555216471,0.057913547319122724,6.88143852899345,59.02634940020826,3.8177943228183677,15.18254515100842,-6.883717642647818e-4,0,0,1207.227098535096,0.1857617169069504,0.004446572546536724,0.0077232726,0,0,0,0 +1754,0.0025964043209870257,0.0873163529136683,0,0,2.09934978275426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07356,0,457.00000254313153,4274.9998,734.2020212809243,19.50906106501577,277.3040033976237,349.81562520064375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.01604461669916,0.059007665304832875,7.015189223980566,60.269945173845855,3.847331336983454,15.55877304959727,-9.178290190197105e-4,0,0,1232.9531143620388,0.18576213564093827,0.004446572546536724,0.0077232726,0,0,0,0 +1755,0.0025975064829564486,0.08892272231974611,0,0,2.099173164966012,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09182,0,457.00000254313153,4275.9598,734.7360788981118,19.500454933311694,277.3510030110677,348.144667955229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.05104319254554,0.06012245365563151,6.9439890428442705,59.824933724698546,3.8866528883154143,15.358182527090067,-0.0011472862737746368,0,0,1223.0826850431558,0.16149051004268924,0.004446572546536724,0.0077232726,0,0,0,0 +1756,0.002775090479167637,0.09055864429624946,0,0,2.0689154070023212,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08556000000002,0,457.00000254313153,4275.6306,735.4210001627603,19.46253659981589,277.38899993896484,343.32315167584505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.07905069986975,0.06125830288149874,6.92271155666652,58.94682931223554,3.780146274357017,15.195776625722106,-0.001376743528529566,0,0,1211.479201655296,-0.06413990375550595,0.004446572546536724,0.0077232726,0,0,0,0 +1757,0.0027761926411370656,0.09222466252535721,0,0,2.1479236761828795,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09137,0,457.00000254313153,4275.9361,735.8930308024087,20.023540664144175,277.4419987996419,355.9418922631908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.09605153401685,0.06241561087003213,7.047674128999731,61.263692996283645,3.9984362659957116,15.704819120374072,-0.0016062007832844925,0,0,1255.6882474413671,0.06548148963396255,0.004446572546536724,0.0077232726,0,0,0,0 +1758,0.002777294803106484,0.09392133069143445,0,0,2.120611409560707,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09662,0,457.00000254313153,4276.2118,736.2069956461587,19.93400532918585,277.48900095621747,351.839749049401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.12904612223304,0.06359478302582648,6.995459767973222,60.43461244378834,3.951609319926169,15.514611629339965,-0.0018356580380394208,0,0,1241.8061904390202,0.143706674085902,0.004446572546536724,0.0077232726,0,0,0,0 +1759,0.0027783969650759127,0.09564921266504378,0,0,2.1172674310973973,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08372,0,457.00000254313153,4275.5338,736.0988871256509,20.14146621388408,277.5399983723958,351.50776272566816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.1650466918945,0.06479623241248693,7.045958325346581,60.44526305257086,3.8825594605141793,15.574013491239148,-0.0020651152927943475,0,0,1238.6934463843995,0.17156026373747926,0.004446572546536724,0.0077232726,0,0,0,0 +1760,0.002778490659421102,0.09740888269034213,0,0,2.127804104941503,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04022,0,457.00000254313153,4273.2473,735.484171549479,20.416797144500503,277.6050033569336,354.41828530815224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.19305165608716,0.06602037989732504,7.1280482855702605,61.0517247888764,3.870426966375627,15.819063930323424,-0.002294572547549277,0,0,1250.820917255113,0.18098830087140405,0.004446572546536724,0.0077232726,0,0,0,0 +1761,0.0030417996868854222,0.09920092557592508,0,0,2.1377569894528237,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09143,0,457.00000254313153,4275.9395,735.7630208333333,20.45599016898809,277.6639989217122,354.70796791995804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.22205098470045,0.06726765429878842,7.080969808277224,60.98422720066375,3.9477855453840847,15.691915882574792,-0.0025240298023042032,0,0,1256.5481216489331,0.1841585443588585,0.004446572546536724,0.0077232726,0,0,0,0 +1762,0.0030429071320477096,0.10102593688918185,0,0,2.101748108909336,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08127,0,457.00000254313153,4275.4052,736.3031056722004,20.451687381976814,277.7320022583008,349.24969722773284,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3203315e-8,0,0,0,0,0,1.5142326e-6,0,0,0,0,274.25004831949866,0.06853849253667572,7.072547337152548,60.0270893345371,3.8056067222316985,15.52593530614623,-0.002753487057059132,0,0,1235.176016491452,-0.7198788864817063,0.004446572546536724,0.0077232726,0,0,0,0 +1763,0.003044014577209992,0.10288452315422644,0,0,2.1070297579949187,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09332,0,457.00000254313153,4276.0386,737.1810404459634,20.54517933681397,277.7959976196289,350.0593349220327,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6788058e-7,0,0,0,0,0,1.2367808e-5,0,0,0,0,274.30205535888666,0.06983333978518949,7.067982584358078,60.127066272688566,3.846149431214471,15.526762487788051,-0.0029829443118140585,0,0,1242.4313344000275,-0.4399601212913509,0.004446572546536724,0.0077232726,0,0,0,0 +1764,0.0030451220223722732,0.10477730205346951,0,0,2.0715492266986275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1104,0,457.00000254313153,4276.9364,738.1030629475911,20.26091721016315,277.8590037027995,342.04461065627544,0,0,0,0,0,0,0,0,0,0,0,0,5.745499576104152e-9,1.2683334e-6,0,0,0,0,3.1742572836890304e-7,2.4998684e-5,0,0,0,0,274.3400497436523,0.0711526496288805,6.89874574004507,58.43835716681741,3.8290033683946536,14.958698984764437,-0.003212401566568987,0,0,1212.8230980159792,-0.03904732457783037,0.004446572546536724,0.0077232726,0,0,0,0 +1765,0.0030462294675345533,0.10670490263289913,0,0,2.123600021913132,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07293,0,457.00000254313153,4274.9668,738.9860382080077,20.91915499807752,277.9129994710286,352.9327257663859,0,0,0,0,0,0,0,0,0,0,0,0,4.596399853321979e-8,1.3852706e-6,0,0,0,0,2.539405793792563e-6,3.0313258e-5,0,0,0,0,274.37204742431635,0.07249688422153833,7.112382325014417,60.629457859488916,3.8781552227346054,15.679924105503577,-0.0034418588213239137,0,0,1250.7252029507404,0.10958166609721692,0.004446572546536724,0.0077232726,0,0,0,0 +1766,0.0033962667106833934,0.10866796551113769,0,0,2.1104599771353545,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07758,0,457.00000254313153,4275.2111,739.831085205078,20.853591900632743,277.95800018310547,349.3806450006132,0,0,0,0,0,0,0,0,0,0,0,0,9.192799588220169e-8,1.4212948e-6,0,0,0,0,5.078811454950483e-6,3.4371719e-5,0,0,0,0,274.3920516967773,0.07386651444808362,7.0362965307494045,59.85878462626717,3.884852897551278,15.358830814708325,-0.00367131607607884,0,0,1244.142076911234,-0.17848752670419268,0.004446572546536724,0.0077232726,0,0,0,0 +1767,0.003397374155845676,0.11066714309234521,0,0,2.112460701438636,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08566,0,457.00000254313153,4275.6359,740.7289835611978,20.999179455660748,278.0169982910156,349.61609899642303,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199471148095e-7,1.4573362e-6,0,0,0,0,7.618217182425724e-6,3.8432158e-5,0,0,0,0,274.42605082194007,0.07526202008951893,7.045382426953697,59.89102690050866,3.880476348727496,15.400564496222026,-0.0039007733308337685,0,0,1243.3080558862168,-0.23003967707403605,0.004446572546536724,0.0077232726,0,0,0,0 +1768,0.003398481601007963,0.1127030997830392,0,0,2.183132040203538,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04673,0,457.00000254313153,4273.5893,741.2220560709634,21.659452113517297,278.07799530029297,362.65368482709385,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599176440337e-7,1.4932143e-6,0,0,0,0,1.0157622909900965e-5,4.247379e-5,0,0,0,0,274.44704691569007,0.07668388999099586,7.223617820830233,62.365825552982606,4.039005153575375,16.063730202230957,-0.004130230585588698,0,0,1294.7054231244865,0.0295441238874522,0.004446572546536724,0.0077232726,0,0,0,0 +1769,0.0033995890461702483,0.11477651221290339,0,0,2.1376337416440134,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0767,0,457.00000254313153,4275.165,741.7470499674478,21.496335350339965,278.135004679362,355.02541845168975,0,0,0,0,0,0,0,0,0,0,0,0,2.298199900015637e-7,1.5293427e-6,0,0,0,0,1.2697028751063044e-5,4.6544254e-5,0,0,0,0,274.4680506388346,0.07813262223305735,7.157863703024064,60.95040360500106,3.9146198633161595,15.735094791574257,-0.004359687840343624,0,0,1273.3622210005092,0.1325346158749756,0.004446572546536724,0.0077232726,0,0,0,0 +1770,0.003400696491332528,0.11688806945965896,0,0,2.1393647387522594,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04544,0,457.00000254313153,4273.5216,742.3010152180989,21.63439757224449,278.1939977010091,355.3605475565106,0,0,0,0,0,0,0,0,0,0,0,0,2.757839894229619e-7,1.5651961e-6,0,0,0,0,1.5236434516433897e-5,5.0583038e-5,0,0,0,0,274.49504852294916,0.0796087243061151,7.155978283657899,60.96602720867275,3.9271229910537153,15.742715085469241,-0.004589145095098551,0,0,1277.4922103572562,0.03636234846097209,0.004446572546536724,0.0077232726,0,0,0,0 +1771,0.0037688917930248853,0.11903847327807247,0,0,2.1009097006210053,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07227,0,457.00000254313153,4274.9318,742.8711649576821,21.428921101329358,278.2700017293294,347.8619882938519,0,0,0,0,0,0,0,0,0,0,0,0,3.2174798529164644e-7,1.6013494e-6,0,0,0,0,1.7775840206013527e-5,5.4656378000000014e-5,0,0,0,0,274.5130513509114,0.08111271328822328,7.069218405010363,59.42424032933085,3.843192572805414,15.321977391799376,-0.0048186023498534795,0,0,1230.1282386704063,0.08889303627750589,0.004446572546536724,0.0077232726,0,0,0,0 +1772,0.00377000487949438,0.12122843833317697,0,0,2.0870775413423877,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08887,0,457.00000254313153,4275.8046,744.0189666748046,21.39461571539237,278.33399963378906,344.613473832749,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198589728254e-7,1.6374741e-6,0,0,0,0,2.0315245971384382e-5,5.8726423e-5,0,0,0,0,274.5310490926106,0.08264511602621083,7.043230561502576,58.72495294608385,3.8129800371340568,15.114183286240658,-0.0050480596046084064,0,0,1217.8363475826973,0.15110052169091734,0.004446572546536724,0.0077232726,0,0,0,0 +1773,0.003771117965963877,0.12345869243778378,0,0,2.0927556031478227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.06952,0,457.00000254313153,4274.7874,744.6629842122395,21.59523139318095,278.41199493408203,345.7768090889352,0,0,0,0,0,0,0,0,0,0,0,0,4.136759793974913e-7,1.6733555e-6,0,0,0,0,2.2854651888337685e-5,6.276843000000001e-5,0,0,0,0,274.54705047607416,0.08420646932023572,7.104503735011084,58.916568849809806,3.795742518659598,15.204663791112324,-0.005277516859363335,0,0,1220.6866453772807,0.17402255695782867,0.004446572546536724,0.0077232726,0,0,0,0 +1774,0.0037722310524333762,0.12572997679436368,0,0,2.1549007405251683,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0265,0,457.00000254313153,4272.5262,744.8780721028645,22.25970772945681,278.49099985758465,358.1035850352457,0,0,0,0,0,0,0,0,0,0,0,0,4.5963998474007894e-7,1.709014e-6,0,0,0,0,2.539405750212609e-5,6.678474599999999e-5,0,0,0,0,274.56504567464185,0.08579732011182588,7.347701469094086,61.31335787055999,3.8921060554545215,15.87559317662792,-0.005506974114118261,0,0,1266.4286163930858,0.18181443567658306,0.004446572546536724,0.0077232726,0,0,0,0 +1775,0.0037733441389028706,0.12804304624137816,0,0,2.148996596875075,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05246,0,457.00000254313153,4273.8905,745.3670603434243,22.200963290559795,278.58600362141925,355.04717285558434,0,0,0,0,0,0,0,0,0,0,0,0,5.056039735033361e-7,1.7452255e-6,0,0,0,0,2.7933463115914492e-5,7.0864778e-5,0,0,0,0,274.5790456136067,0.08741822567547253,7.269644819584187,60.54083046418634,3.9181029245147934,15.589135703603631,-0.0057364313688731865,0,0,1250.604503536799,0.18443600769588672,0.004446572546536724,0.0077232726,0,0,0,0 +1776,0.004161708793079992,0.13039866950414225,0,0,2.1121431315177817,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03943999999998,0,457.00000254313153,4273.2061,746.0480702718098,22.141942125209106,278.68299865722656,348.8985525123486,0,0,0,0,0,0,0,0,0,0,0,0,5.515679741089722e-7,1.7810977e-6,0,0,0,0,3.0472869184450246e-5,7.490574e-5,0,0,0,0,274.59404754638666,0.08906975381384338,7.261469977422546,59.38114479685163,3.777483547468073,15.370077015958627,-0.005965888623628117,0,0,1235.2601205170242,0.1853168155815639,0.004446572546536724,0.0077232726,0,0,0,0 +1777,0.004162821879549489,0.13279762945030274,0,0,2.170244783620918,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05273,0,457.00000254313153,4273.9048,746.7369181315103,22.568710059808843,278.7739969889323,357.54536101292035,0,0,0,0,0,0,0,0,0,0,0,0,5.975319747146083e-7,1.8172253e-6,0,0,0,0,3.301227479823865e-5,7.8976112e-5,0,0,0,0,274.6060485839843,0.09075248305668364,7.355973763265293,60.89349007083899,3.9379814138510616,15.673457529791746,-0.0061953458783830465,0,0,1262.6435516726208,0.1856126856704365,0.004446572546536724,0.0077232726,0,0,0,0 +1778,0.004163934966018991,0.13524072335001636,0,0,2.19800140223097,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04465,0,457.00000254313153,4273.48,746.7510579427083,22.856080929571224,278.86599985758465,362.75541346308773,0,0,0,0,0,0,0,0,0,0,0,0,6.434959753202444e-7,1.8531337e-6,0,0,0,0,3.5551680412027054e-5,8.3021224e-5,0,0,0,0,274.61804707845045,0.09246700286347481,7.434606066614661,61.78348694597739,4.021077006745745,15.899456247670447,-0.006424803133137972,0,0,1282.2802932337786,0.18571207513321009,0.004446572546536724,0.0077232726,0,0,0,0 +1779,0.004165048052488488,0.1377287631409144,0,0,2.1596157774386384,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03691,0,457.00000254313153,4273.0734,746.907023111979,22.820635694370733,278.9590021769206,355.9261715181252,0,0,0,0,0,0,0,0,0,0,0,0,6.894599664519774e-7,1.889034e-6,0,0,0,0,3.809108632898036e-5,8.706542400000001e-5,0,0,0,0,274.6290486653645,0.09421391382992209,7.418773457145868,60.500814881249,3.8656452035830986,15.627457862925702,-0.006654260387892898,0,0,1253.8091981813902,0.18574546502203013,0.004446572546536724,0.0077232726,0,0,0,0 +1780,0.004167169606582223,0.14026257569794193,0,0,2.18926758767753,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98817,0,457.00000254313153,4270.5109999999995,747.2310638427733,23.24616665378551,279.0540033976237,361.61404216072185,0,0,0,0,0,0,0,0,0,0,0,0,7.354239623206619e-7,1.9244033000000003e-6,0,0,0,0,4.063049224593366e-5,9.1048394e-5,0,0,0,0,274.639050801595,0.09599382789834296,7.569429120654667,61.61859566014493,3.8711479642945226,16.01838080056119,-0.0068837176426478274,0,0,1274.797708672403,0.18575668147078706,0.004446572546536724,0.0077232726,0,0,0,0 +1781,0.004659412904951052,0.14284300310816161,0,0,2.189441199921453,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04236000000002,0,457.00000254313153,4273.3596,747.7660471598306,23.249655483903965,279.14499918619794,360.09005386289476,0,0,0,0,0,0,0,0,0,0,0,0,7.81387962926298e-7,1.9610810000000003e-6,0,0,0,0,4.316989755655717e-5,9.5182182e-5,0,0,0,0,274.6470464070637,0.09780736857203022,7.505783352638315,61.19330647262292,3.9207239231952387,15.80695226528239,-0.007113174897402756,0,0,1277.5362524488116,0.18576045057214427,0.004446572546536724,0.0077232726,0,0,0,0 +1782,0.00466053247031568,0.14547090295061266,0,0,2.160522701160256,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03125,0,457.00000254313153,4272.7759,748.2900187174478,23.341758118914438,279.2430013020833,356.04655462228243,0,0,0,0,0,0,0,0,0,0,0,0,8.273519635319341e-7,1.9969148e-6,0,0,0,0,4.570930377667537e-5,9.9218691e-5,0,0,0,0,274.65404764811194,0.09965517113366511,7.519625787694825,60.48572145305894,3.7938381853855025,15.712820826828775,-0.007342632152157681,0,0,1261.0508762359207,0.18576171303887845,0.004446572546536724,0.0077232726,0,0,0,0 +1783,0.004662660503304549,0.14814714858131856,0,0,2.150725589743228,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0436,0,457.00000254313153,4273.4248,748.6270294189452,23.379916787266467,279.33999888102215,354.28692425367274,0,0,0,0,0,0,0,0,0,0,0,0,8.733159641375702e-7,2.0330816e-6,0,0,0,0,4.824870908729887e-5,1.0329359e-4,0,0,0,0,274.6580505371093,0.1015378828678566,7.496232273464098,60.10171272373322,3.7887381780047664,15.607260472139073,-0.007572089406912609,0,0,1258.691215611721,-1.6071113091275233,0.004446572546536724,0.0077232726,0,0,0,0 +1784,0.004663780068669177,0.15087262942353824,0,0,2.140542212443426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05531,0,457.00000254313153,4274.0405,748.9340260823567,23.29404230240209,279.4340006510417,350.5694962640399,0,0,0,0,0,0,0,0,0,0,0,0,9.192799552693032e-7,2.0692567e-6,0,0,0,0,5.078811530741708e-5,1.0736946e-4,0,0,0,0,274.6640548706054,0.10345616328788484,7.381156400424443,59.21225989324307,3.835360348467436,15.228141255684468,-0.007801546661667537,0,0,1241.0913844308948,-3.4875496425880166,0.004446572546536724,0.0077232726,0,0,0,0 +1785,0.004666993144531652,0.1536482512633568,0,0,2.1658396912622853,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02817,0,457.00000254313153,4272.6136,749.2520395914712,23.80210553725873,279.53200276692706,356.805125351722,0,0,0,0,0,0,0,0,0,0,0,0,9.652439748227455e-7,2.1048124e-6,0,0,0,0,5.332752031487568e-5,1.113739e-4,0,0,0,0,274.66904958089185,0.1054106843667286,7.538152323485599,60.494479362546464,3.8216491921096964,15.732711479772949,-0.00803100391642247,0,0,1266.5681498543852,-1.3227211965923305,0.004446572546536724,0.0077232726,0,0,0,0 +1786,0.005295379572172684,0.15647493655071468,0,0,2.158683484868033,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02684000000001,0,457.00000254313153,4272.5442,749.563980102539,23.831994998220747,279.6290003458659,354.20587729579694,0,0,0,0,0,0,0,0,0,0,0,0,1.011207928058866e-6,2.14077e-6,0,0,0,0,5.586692683815878e-5,1.1542471e-4,0,0,0,0,274.67605336507154,0.10740213077245707,7.4910842541914535,59.91468240707549,3.8263162148060967,15.467157122376957,-0.008260461171177394,0,0,1263.905903422694,-0.4872575238005176,0.004446572546536724,0.0077232726,0,0,0,0 +1787,0.005297507605161552,0.15935362470597414,0,0,2.18517929356942,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03415,0,457.00000254313153,4272.9283,749.6690826416014,24.17652817967206,279.72900136311847,358.7933682521366,0,0,0,0,0,0,0,0,0,0,0,0,1.0571719712970662e-6,2.1768802999999995e-6,0,0,0,0,5.840633214878229e-5,1.1949308e-4,0,0,0,0,274.6780471801757,0.10943120010806894,7.555171969721947,60.75335707654267,3.8851079963013144,15.71033145518615,-0.00848991842593232,0,0,1281.3314192960927,-0.09613776148013498,0.004446572546536724,0.0077232726,0,0,0,0 +1788,0.005298627170526176,0.16228527243212662,0,0,2.255223483707013,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9922,0,457.00000254313153,4270.7227,750.1610209147134,24.855928924260272,279.83099873860675,371.3570923496072,0,0,0,0,0,0,0,0,0,0,0,0,1.1031359387440414e-6,2.2120831e-6,0,0,0,0,6.094573836890049e-5,1.2345688999999995e-4,0,0,0,0,274.67704772949213,0.11149860315586238,7.730934740743885,63.12433046674855,4.038519355079948,16.343354337191045,-0.008719375680687248,0,0,1326.080725437415,0.0885310651741068,0.004446572546536724,0.0077232726,0,0,0,0 +1789,0.005300755203515047,0.16527085403274291,0,0,2.2076646319075275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0242,0,457.00000254313153,4272.405,750.6470489501952,24.717072836600927,279.93299865722656,363.4416445787676,0,0,0,0,0,0,0,0,0,0,0,0,1.149099944086629e-6,2.2486571e-6,0,0,0,0,6.348514337635909e-5,1.2757871e-4,0,0,0,0,274.6780522664387,0.11360506412642196,7.663516243062957,61.632292379507476,3.911091424062233,16.00040861482673,-0.008948832935442175,0,0,1300.9350554928549,0.1529858926017705,0.004446572546536724,0.0077232726,0,0,0,0 +1790,0.005302883236503912,0.16831136173577357,0,0,2.2164369958956196,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99139,0,457.00000254313153,4270.6805,751.1640370686848,24.942208573783375,280.03700256347656,364.880216392627,0,0,0,0,0,0,0,0,0,0,0,0,1.195063968377023e-6,2.2839743e-6,0,0,0,0,6.60245495964773e-5,1.3155567e-4,0,0,0,0,274.67705281575513,0.11575132091230927,7.680254371033305,61.84599180813865,3.9372032070765473,16.056743908676,-0.009178290190197105,0,0,1304.8004807748046,0.1747471382296157,0.004446572546536724,0.0077232726,0,0,0,0 +1791,0.005920182770600551,0.1714078060233054,0,0,2.172583556470899,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02128,0,457.00000254313153,4272.2515,751.7080535888671,24.778432167331218,280.14099884033203,356.6583861664455,0,0,0,0,0,0,0,0,0,0,0,0,1.2410279168761917e-6,2.320551e-6,0,0,0,0,6.85639552102657e-5,1.3567783e-4,0,0,0,0,274.6740468343098,0.11793812534654649,7.556943543496139,60.21873920423577,3.848117366332663,15.616449876377857,-0.00940774744495203,0,0,1284.7688041559788,0.18206199111341248,0.004446572546536724,0.0077232726,0,0,0,0 +1792,0.006098811288557544,0.17456121596738536,0,0,2.1616507929601063,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04466,0,457.00000254313153,4273.4807,752.2780151367186,24.818892944319888,280.2409973144531,354.25153761087523,0,0,0,0,0,0,0,0,0,0,0,0,1.286991960114392e-6,2.3570319e-6,0,0,0,0,7.110336143038391e-5,1.3978892e-4,0,0,0,0,274.6740468343098,0.12016624346598324,7.499155044750518,59.70568574139235,3.8521685509833974,15.44666919254658,-0.009637204699706955,0,0,1279.936623401035,0.18451935326733201,0.004446572546536724,0.0077232726,0,0,0,0 +1793,0.00610508215549315,0.17777263957202216,0,0,2.1532738339280715,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02605,0,457.00000254313153,4272.5025,752.6820678710936,25.03153140920904,280.33199818929035,353.37230933667234,0,0,0,0,0,0,0,0,0,0,0,0,1.3329559275613672e-6,2.3926083e-6,0,0,0,0,7.364276643784251e-5,1.4379579e-4,0,0,0,0,274.65905253092444,0.12243645577963895,7.518120739119681,59.58493949599902,3.7981346475872892,15.477979537880952,-0.009866661954461885,0,0,1276.6758910223705,0.18534481647704806,0.004446572546536724,0.0077232726,0,0,0,0 +1794,0.006092419359098298,0.18104314412147968,0,0,2.2138431157688125,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98417,0,457.00000254313153,4270.3009999999995,753.2520446777343,25.76753777758947,280.41500091552734,365.72191403060503,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199329039548e-6,2.4276195000000003e-6,0,0,0,0,7.618217265796072e-5,1.4773748e-4,0,0,0,0,274.6480560302734,0.1247495575421151,7.731535991085819,62.03822453198564,3.901984420737959,16.16525997375536,-0.010096119209216816,0,0,1323.3915439011364,0.18562210038833984,0.004446572546536724,0.0077232726,0,0,0,0 +1795,0.006095932503617563,0.18437381653497847,0,0,2.2026922727614937,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01093,0,457.00000254313153,4271.7076,753.8410644531249,25.77334281488129,280.4919967651367,362.19212268926736,0,0,0,0,0,0,0,0,0,0,0,0,1.4248839571943488e-6,2.4642054e-6,0,0,0,0,7.872157827174912e-5,1.5186068000000002e-4,0,0,0,0,274.63105265299475,0.12710635903217238,7.626169221355247,61.24273214189555,3.9191066213899726,15.883131946283404,-0.01032557646397174,0,0,1307.1177907303108,0.18571524277301074,0.004446572546536724,0.0077232726,0,0,0,0 +1796,0.006396386441099536,0.18776576372792214,0,0,2.1531546155773227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99978,0,457.00000254313153,4271.1214,754.5180511474608,25.74058406529963,280.5549952189128,354.4783029356138,0,0,0,0,0,0,0,0,0,0,0,0,1.4708479056935175e-6,2.4998985e-6,0,0,0,0,8.126098449186732e-5,1.55881e-4,0,0,0,0,274.6150538126627,0.1295076858365712,7.5818630966127785,59.864242428463136,3.749609514115161,15.62836980130604,-0.010555033718726669,0,0,1286.4148371024328,0.056138903072538514,0.004446572546536724,0.0077232726,0,0,0,0 +1797,0.006712627262260326,0.19122011297976946,0,0,2.2134750361996645,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01623,0,457.00000254313153,4271.986,755.2560729980468,26.23006225836581,280.6230010986328,363.54823719907995,0,0,0,0,0,0,0,0,0,0,0,0,1.5168119489317178e-6,2.5362748e-6,0,0,0,0,8.380038949932593e-5,1.5998003e-4,0,0,0,0,274.6010538736979,0.1319543791392746,7.636302581611899,61.4713769474247,3.9409741021501565,15.938653048219956,-0.010784490973481595,0,0,1322.1792002170396,-0.04279485298025665,0.004446572546536724,0.0077232726,0,0,0,0 +1798,0.006990649026827593,0.19473801230867469,0,0,2.2340562829342026,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0081,0,457.00000254313153,4271.559,756.1130472819009,26.546440122432795,280.68200429280597,367.6501027985187,0,0,0,0,0,0,0,0,0,0,0,0,1.562775925852596e-6,2.5720343e-6,0,0,0,0,8.633979571944413e-5,1.6400798999999998e-4,0,0,0,0,274.5840530395507,0.1344472960161143,7.671017715782881,62.197639026391784,4.015700360730371,16.12667274116127,-0.011013948228236524,0,0,1344.4943107799907,0.057545267787991024,0.004446572546536724,0.0077232726,0,0,0,0 +1799,0.007363034100288113,0.19832063085301946,0,0,2.2072921648839388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99068,0,457.00000254313153,4270.6431,756.9420471191405,26.706488169365446,280.7529983520508,363.4860469038741,0,0,0,0,0,0,0,0,0,0,0,0,1.6087399217212806e-6,2.6075323e-6,0,0,0,0,8.887920133323253e-5,1.6800578999999998e-4,0,0,0,0,274.5700480143229,0.13698730973502452,7.674462849763394,61.49623019706863,3.882903388386678,16.03734278779562,-0.011243405482991452,0,0,1332.7327654492608,0.14035414546167346,0.004446572546536724,0.0077232726,0,0,0,0 +1800,0.007853247961014498,0.20196915925996428,0,0,2.2159740553936684,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95838,0,457.00000254313153,4268.9449,757.7620493570962,27.056343077702923,280.83399709065753,365.8466368441075,0,0,0,0,0,0,0,0,0,0,0,0,1.6547039554855776e-6,2.6425936e-6,0,0,0,0,9.141860694702093e-5,1.7195328999999998e-4,0,0,0,0,274.54705047607416,0.13957531006194712,7.7406453217716145,62.00320914073126,3.867691465248536,16.242141697691363,-0.011477676635976337,0,0,1351.4018850842497,0.17040288697636866,0.004446572546536724,0.0077232726,0,0,0,0 +1801,0.0077923631049037195,0.2056848100811483,0,0,2.219401689900871,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01099,0,457.00000254313153,4271.7107,758.5840606689452,27.12488718150826,280.9189987182617,364.91706838648093,0,0,0,0,0,0,0,0,0,0,0,0,1.7006678945108433e-6,2.6800125e-6,0,0,0,0,9.395801256080934e-5,1.7617249e-4,0,0,0,0,274.5320510864257,0.1422122035725165,7.701186978248275,61.665647788634544,3.9218437626561613,16.063733218320355,-0.011716461343221001,0,0,1346.3126694277855,0.1805980962819972,0.004446572546536724,0.0077232726,0,0,0,0 +1802,0.010116776318211833,0.20946881817566826,0,0,2.2026926609955066,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99468,0,457.00000254313153,4270.8532,759.5070699055989,27.339784315547476,280.9939956665039,362.96270750693964,0,0,0,0,0,0,0,0,0,0,0,0,1.7466319377490436e-6,2.7155059e-6,0,0,0,0,9.649741878092755e-5,1.8016977e-4,0,0,0,0,274.5230509440104,0.14489891396963264,7.763054085257172,61.32615659022455,3.814905719116379,16.0758236117733,-0.011955246050465669,0,0,1365.7924593201149,0.18402739824539616,0.004446572546536724,0.0077232726,0,0,0,0 +1803,0.008763957676258299,0.2133224411204717,0,0,2.1800158282432216,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0108,0,457.00000254313153,4271.7009,760.5080464680989,27.320499854247753,281.07299550374347,358.65077997506035,0,0,0,0,0,0,0,0,0,0,0,0,1.7925959146699217e-6,2.7519421e-6,0,0,0,0,9.903682439471595e-5,1.8427573e-4,0,0,0,0,274.50505065917963,0.1476363824070339,7.720863756565482,60.404341817460505,3.773697198795284,15.83103087932591,-0.01219403075771034,0,0,1340.0232615916289,0.18517955647392584,0.004446572546536724,0.0077232726,0,0,0,0 +1804,0.009565590378222546,0.2172469596283,0,0,2.197298086929074,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0121,0,457.00000254313153,4271.7691,761.5410817464192,27.46474997353236,281.15699768066406,359.52869597563125,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599105386063e-6,2.7879493e-6,0,0,0,0,1.0157623000850435e-4,1.8833223e-4,0,0,0,0,274.4860483805338,0.1504255678189829,7.687086730342071,60.36470274902327,3.8714733047891783,15.676248110600966,-0.012432815464955008,0,0,1347.9906823261654,0.1855665834344882,0.004446572546536724,0.0077232726,0,0,0,0 +1805,0.009351564248471856,0.2212436779733203,0,0,2.215042398148324,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98963,0,457.00000254313153,4270.588,762.6710561116536,27.95079819780367,281.23399607340497,364.30370432998336,0,0,0,0,0,0,0,0,0,0,0,0,1.8845239443029034e-6,2.8232141e-6,0,0,0,0,1.0411563562229276e-4,1.9230319e-4,0,0,0,0,274.46604665120435,0.15326744725618094,7.835162208853216,61.31991145746931,3.843518327224849,16.094154796194182,-0.012671600172199671,0,0,1367.0219318674867,0.18569659271698705,0.004446572546536724,0.0077232726,0,0,0,0 +1806,0.009786482457224585,0.22531392442458775,0,0,2.222822584756122,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98239,0,457.00000254313153,4270.2074,763.799077351888,28.134372446801326,281.32200113932294,364.34322933574117,0,0,0,0,0,0,0,0,0,0,0,0,1.930487997015007e-6,2.8589339e-6,0,0,0,0,1.0665504184241097e-4,1.9632654e-4,0,0,0,0,274.44705200195307,0.15616301622802836,7.843541453054056,61.22344968188294,3.8770122853259146,15.951443167692844,-0.01291038487944434,0,0,1370.2972329819197,0.18574025872045344,0.004446572546536724,0.0077232726,0,0,0,0 +1807,0.01047013855726404,0.22945905168748248,0,0,2.2398719818574606,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99423,0,457.00000254313153,4270.8298,765.0220794677733,28.45865602722048,281.40900166829425,367.234932813752,0,0,0,0,0,0,0,0,0,0,0,0,1.976451850775144e-6,2.8952686e-6,0,0,0,0,1.0919444745619937e-4,2.0042079e-4,0,0,0,0,274.4280471801757,0.15911328905135125,7.906227328891799,61.706469136452746,3.9067413834348796,16.117564084518662,-0.013149169586689009,0,0,1389.725529173022,0.1857549291426783,0.004446572546536724,0.0077232726,0,0,0,0 +1808,0.0097850874703066491,0.23368043735326766,0,0,2.311936484434354,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95199,0,457.00000254313153,4268.6094,766.3190816243489,29.185241168144344,281.4959996541341,380.03527200344246,0,0,0,0,0,0,0,0,0,0,0,0,2.022415856117732e-6,2.9298066e-6,0,0,0,0,1.1173385246365797e-4,2.0430798e-4,0,0,0,0,274.41105143229163,0.16211929920571624,8.095303457182244,64.08195973155631,4.0703582727403695,16.731546899631116,-0.013387954293933677,0,0,1425.5751228095764,0.1857598571570931,0.004446572546536724,0.0077232726,0,0,0,0 +1809,0.009793704265605399,0.23797948435691788,0,0,2.267442640293564,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.979,0,457.00000254313153,4270.0292,767.6550801595051,29.128658126909023,281.56599680582684,372.8486855412818,0,0,0,0,0,0,0,0,0,0,0,0,2.068379899355932e-6,2.9666566e-6,0,0,0,0,1.1427325929010597e-4,2.084616e-4,0,0,0,0,274.3830540974934,0.16518209969545813,8.062766978193096,62.71002212876877,3.9400684962479615,16.440165993612062,-0.013626739001178344,0,0,1403.1315870359595,-3.365688134186352,0.004446572546536724,0.0077232726,0,0,0,0 +1810,0.010412685282412803,0.24235762144337059,0,0,2.279523715758953,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93988,0,457.00000254313153,4267.9729,769.1471150716145,29.42453241885191,281.6480026245117,374.7180119050739,0,0,0,0,0,0,0,0,0,0,0,0,2.1143439425941324e-6,3.001229600000001e-6,0,0,0,0,1.1681266429756458e-4,2.1235282e-4,0,0,0,0,274.3600463867187,0.16830276341854683,8.107079152206923,62.97351665449524,3.9615915998724422,16.525388081401466,-0.013865523708423014,0,0,1414.1945614469914,-2.313830028435405,0.004446572546536724,0.0077232726,0,0,0,0 +1811,0.011014901476711613,0.24681630364235504,0,0,2.252530235973812,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96903,0,457.00000254313153,4269.505,770.71804300944,29.40578755819684,281.71799723307294,369.2694863079116,0,0,0,0,0,0,0,0,0,0,0,0,2.1603079858323326e-6,3.0381873e-6,0,0,0,0,1.1935207051768278e-4,2.1651886e-4,0,0,0,0,274.3340479532877,0.17148238354242323,8.026948341108737,61.82960599561912,3.9187456997844685,16.18886557071267,-0.014104308415667684,0,0,1403.686743399878,-0.7123016214302859,0.004446572546536724,0.0077232726,0,0,0,0 +1812,0.011395911929257216,0.2513570127519567,0,0,2.228006934512883,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99029,0,457.00000254313153,4270.6225,772.2101186116536,29.420298496849927,281.7899983723958,364.5806874718721,0,0,0,0,0,0,0,0,0,0,0,0,2.20627183959247e-6,3.0749001e-6,0,0,0,0,1.2189147552514139e-4,2.2065669e-4,0,0,0,0,274.3040517171223,0.17472207388693542,7.965169636083453,60.85746996681422,3.875988658118611,15.929050627989685,-0.014343093122912353,0,0,1394.884132023951,-0.11856299687933905,0.004446572546536724,0.0077232726,0,0,0,0 +1813,0.011449080560791872,0.25598125783107806,0,0,2.2319968590304815,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97005,0,457.00000254313153,4269.5589,773.7009938557942,29.7784760297943,281.8580017089844,365.91388742059627,0,0,0,0,0,0,0,0,0,0,0,0,2.2522358449350577e-6,3.110098e-6,0,0,0,0,1.244308817452596e-4,2.2461994e-4,0,0,0,0,274.2670516967773,0.17802296931450928,8.032995952278533,61.13613019851266,3.844088557026285,16.064915035546967,-0.014581877830157016,0,0,1400.3255529877902,0.08341540584179588,0.004446572546536724,0.0077232726,0,0,0,0 +1814,0.011703715690574799,0.26069057570095894,0,0,2.291579691300283,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93883999999998,0,457.00000254313153,4267.9182,774.8281351725259,30.547851858136706,281.9310048421224,377.9855416791419,0,0,0,0,0,0,0,0,0,0,0,0,2.298199888173258e-6,3.1448486e-6,0,0,0,0,1.269702879653778e-4,2.2853159e-4,0,0,0,0,274.2310485839843,0.18138622612769045,8.255365791822651,63.491928228846156,3.9468734522371403,16.719923485538892,-0.014820662537401687,0,0,1449.119879767822,0.1513774178324831,0.004446572546536724,0.0077232726,0,0,0,0 +1815,0.012094116593579975,0.2654865314559236,0,0,2.2873246936294374,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94955,0,457.00000254313153,4268.4808,776.1400197347004,30.644339540877155,281.9919967651367,375.58066479556715,0,0,0,0,0,0,0,0,0,0,0,0,2.344163931411458e-6,3.1811772e-6,0,0,0,0,1.295096929728364e-4,2.3262515e-4,0,0,0,0,274.1810506184895,0.18481302247419681,8.178894557702046,62.871575698722964,3.9779982661109097,16.487496881933723,-0.015059447244646357,0,0,1442.8346042595695,-3.3418049013197435,0.004446572546536724,0.0077232726,0,0,0,0 +1816,0.013382562792105972,0.27037071898352416,0,0,2.2610219999980314,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93504,0,457.00000254313153,4267.7184,777.380157470703,30.799856219058316,282.0590006510417,371.6298227687404,0,0,0,0,0,0,0,0,0,0,0,0,2.3901279746496584e-6,3.2165261e-6,0,0,0,0,1.320490991929546e-4,2.3660577e-4,0,0,0,0,274.1430511474609,0.1883045587596232,8.188247476569973,62.14643251873565,3.866008444908697,16.395033850520726,-0.01538342230023426,0,0,1449.5176305014372,-4.328813791919775,0.004446572546536724,0.0077232726,0,0,0,0 +1817,0.013970105691413876,0.2753447614942531,0,0,2.2961805691271597,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95336,0,457.00000254313153,4268.6815,778.9910329182942,31.198395410102997,282.1270014444987,376.4429441283954,0,0,0,0,0,0,0,0,0,0,0,0,2.4360918284097957e-6,3.2531745000000007e-6,0,0,0,0,1.345885054130728e-4,2.4073619e-4,0,0,0,0,274.10705566406244,0.1918620580679428,8.22082538393248,62.94153100870699,3.9812025759726706,16.517228645555626,-0.015754264592881567,0,0,1472.005826655642,-1.519519756284862,0.004446572546536724,0.0077232726,0,0,0,0 +1818,0.01405484729122227,0.2804103120610006,0,0,2.335490104759264,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94012,0,457.00000254313153,4267.9855,780.3030497233071,31.68760831940507,282.1999994913737,383.9142096017897,0,0,0,0,0,0,0,0,0,0,0,0,2.4820558337523835e-6,3.2885565000000008e-6,0,0,0,0,1.371279092078718e-4,2.4472062e-4,0,0,0,0,274.07105000813795,0.19548676658995365,8.306817108343136,64.26768048931984,4.1092958455936754,16.849648882949314,-0.01612510688552888,0,0,1503.3307533939446,-0.39544551956287705,0.004446572546536724,0.0077232726,0,0,0,0 +1819,0.01412101034059915,0.28556905416843703,0,0,2.304129482409452,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92235,0,457.00000254313153,4267.0511,781.42605082194,31.84544135012051,282.27200571695965,378.33258383444644,0,0,0,0,0,0,0,0,0,0,0,0,2.5280198769905837e-6,3.3237292e-6,0,0,0,0,1.396673166406496e-4,2.4868094e-4,0,0,0,0,274.05004882812494,0.19917995405981814,8.302878858634369,63.25758927353961,3.9635191901767652,16.665198211860137,-0.016495949178176192,0,0,1480.3972085438447,-0.009852951526022849,0.004446572546536724,0.0077232726,0,0,0,0 +1820,0.014336733148844732,0.29082270227250195,0,0,2.32104876587155,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88909,0,457.00000254313153,4265.3029,782.4270782470702,32.333394668843965,282.3460006713867,382.4197482792824,0,0,0,0,0,0,0,0,0,0,0,0,2.573983920228784e-6,3.3582175000000007e-6,0,0,0,0,1.4220672286076783e-4,2.5256240000000004e-4,0,0,0,0,274.0070495605468,0.20294291419985105,8.41607797478937,64.0766432984354,3.958562233257077,16.963564409475474,-0.0168667914708235,0,0,1500.1274234919138,0.12003571660703966,0.004446572546536724,0.0077232726,0,0,0,0 +1821,0.014562069432518771,0.2961730023701861,0,0,2.3334837772109833,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93899,0,457.00000254313153,4267.9261,783.568130493164,32.52138863261211,282.4150034586589,382.89753410088764,0,0,0,0,0,0,0,0,0,0,0,0,2.6199479634669842e-6,3.396252e-6,0,0,0,0,1.4474612665556683e-4,2.5685255e-4,0,0,0,0,273.9700495402018,0.20677696517370964,8.396299170642942,63.987449087582284,4.029731628274296,16.860100322541292,-0.01723763376347081,0,0,1506.0001599344928,0.06037517262922151,0.004446572546536724,0.0077232726,0,0,0,0 +1822,0.015133379255268703,0.30162173257979613,0,0,2.3025151175170526,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92104,0,457.00000254313153,4266.9822,784.9560546874999,32.73451051970765,282.4769999186198,378.6708004400731,0,0,0,0,0,0,0,0,0,0,0,0,2.665911836174928e-6,3.4313761e-6,0,0,0,0,1.4728553408834463e-4,2.6080728e-4,0,0,0,0,273.9330520629882,0.21068345004814615,8.447852069179593,63.22724653024458,3.871133523422822,16.796298079496715,-0.017608476056118122,0,0,1499.4772542487524,0.0654325060086605,0.004446572546536724,0.0077232726,0,0,0,0 +1823,0.01603814933316958,0.30717070373189426,0,0,2.2824717646567367,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94096,0,457.00000254313153,4268.0293,786.2210744222004,32.75571508609182,282.54000091552734,374.3931813157347,0,0,0,0,0,0,0,0,0,0,0,0,2.7118758225697093e-6,3.4681677e-6,0,0,0,0,1.4982493909580322e-4,2.6495418e-4,0,0,0,0,273.89505004882807,0.21466373726348362,8.395261063519708,62.26076437261461,3.846052063384317,16.532712282905738,-0.01797931834876543,0,0,1499.6047524729552,-0.2700677190301451,0.004446572546536724,0.0077232726,0,0,0,0 +1824,0.01650100893154855,0.31282175997110956,0,0,2.310947810882604,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93425,0,457.00000254313153,4267.6765,787.4750722249348,33.05197869569693,282.6179962158203,377.040711415511,0,0,0,0,0,0,0,0,0,0,0,0,2.7578398658079095e-6,3.5037779e-6,0,0,0,0,1.5236434531592144e-4,2.6896492e-4,0,0,0,0,273.847048441569,0.21871922111297978,8.395833943142073,62.56343379800663,3.956577312910641,16.47072525551795,-0.018354944497914732,0,0,1512.9125520641012,-0.02966138430388376,0.004446572546536724,0.0077232726,0,0,0,0 +1825,0.01722266283199113,0.3185767793690206,0,0,2.3227031118101618,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91652,0,457.00000254313153,4266.7449,788.7140604654946,33.52533881675272,282.6759999593099,380.31674976188685,0,0,0,0,0,0,0,0,0,0,0,0,2.8038039090461098e-6,3.5388691e-6,0,0,0,0,1.5490375032338002e-4,2.7291587000000003e-4,0,0,0,0,273.78604634602857,0.22285132223124796,8.516236488505783,63.185789553909586,3.9190680646113942,16.80867752489523,-0.0187628709494922,0,0,1538.203336309689,0.11056506113548577,0.004446572546536724,0.0077232726,0,0,0,0 +1826,0.017382230465949125,0.32443767454831385,0,0,2.320968833647435,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90841,0,457.00000254313153,4266.3186,789.8310445149739,33.74810290483613,282.6929982503255,378.82226551401243,0,0,0,0,0,0,0,0,0,0,0,0,2.84976795228431e-6,3.574385500000001e-6,0,0,0,0,1.5744315654349825e-4,2.7691579e-4,0,0,0,0,273.72805023193354,0.22706148809190466,8.523620414150141,62.815941509777446,3.9116044827887784,16.620779080998844,-0.01917079740106968,0,0,1531.9828127801402,0.16037395519074635,0.004446572546536724,0.0077232726,0,0,0,0 +1827,0.01863987745517804,0.3304063933184248,0,0,2.3463377823547544,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91515,0,457.00000254313153,4266.6729,790.8700917561848,34.15505001036133,282.69299570719403,382.4773392117438,0,0,0,0,0,0,0,0,0,0,0,0,2.8957318249922537e-6,3.6105981e-6,0,0,0,0,1.5998256276361644e-4,2.8099598e-4,0,0,0,0,273.67705535888666,0.23135119351461897,8.585850324307904,63.38999010724139,3.9627935910031815,16.799919229980286,-0.01957872385264715,0,0,1566.0922143761854,0.17722825483510965,0.004446572546536724,0.0077232726,0,0,0,0 +1828,0.01882474558367928,0.33648491932287206,0,0,2.420774152646399,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.87222,0,457.00000254313153,4264.4159,791.9830423990884,34.99912851284667,282.708002726237,395.9754324666183,0,0,0,0,0,0,0,0,0,0,0,0,2.941695811387035e-6,3.6444139e-6,0,0,0,0,1.6252196777107505e-4,2.847999e-4,0,0,0,0,273.6410522460937,0.23572194118174164,8.801495946618267,65.90535948629658,4.116354977084998,17.480564495882128,-0.019986650304224626,0,0,1618.0207226022496,0.18289538758840385,0.004446572546536724,0.0077232726,0,0,0,0 +1829,0.01866419595593191,0.34267527269850206,0,0,2.379376332459752,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90025,0,457.00000254313153,4265.8895,793.0000712076821,35.0164051294104,282.76099650065106,389.1746282041487,0,0,0,0,0,0,0,0,0,0,0,0,2.9876598546252353e-6,3.6816572e-6,0,0,0,0,1.6506137277853364e-4,2.8899889e-4,0,0,0,0,273.6020533243815,0.24017526216469398,8.767229394465893,64.57289823663554,4.000350816006103,17.19408165401919,-0.020394576755802103,0,0,1597.2383021208498,0.18479929364776207,0.004446572546536724,0.0077232726,0,0,0,0 +1830,0.024933734074320084,0.3489795107468605,0,0,2.4031598307534434,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8667,0,457.00000254313153,4264.1256,793.9600270589192,35.40215533786149,282.8249994913737,392.10653286413964,0,0,0,0,0,0,0,0,0,0,0,0,3.0336238978634356e-6,3.7158665e-6,0,0,0,0,1.6760078021131145e-4,2.9284816e-4,0,0,0,0,273.5640513102213,0.24471271646030182,8.81880644628117,64.94076179033591,4.038430290401805,17.314251572854413,-0.020802503207379586,0,0,1705.903253614498,0.1854388472573092,0.004446572546536724,0.0077232726,0,0,0,0 +1831,0.02366017773383691,0.3553997286179164,0,0,2.3613471253941487,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89173999999998,0,457.00000254313153,4265.442,794.810073852539,35.37418704933364,282.8909962972005,384.20125072452805,0,0,0,0,0,0,0,0,0,0,0,0,3.079587941101636e-6,3.7529959e-6,0,0,0,0,1.7014018521877006e-4,2.97034e-4,0,0,0,0,273.52005004882807,0.24933589353726177,8.731507391555889,63.33682174076503,3.9474094529519688,16.877728667025877,-0.02121042965895705,0,0,1661.033130299973,-2.2447406013527207,0.004446572546536724,0.0077232726,0,0,0,0 +1832,0.023685925177870507,0.3619380600063637,0,0,2.3538632990393804,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90924,0,457.00000254313153,4266.362,795.5789845784504,35.562723492003244,282.9219970703125,382.363398002473,0,0,0,0,0,0,0,0,0,0,0,0,3.1255518138095795e-6,3.7897747e-6,0,0,0,0,1.7267959022622867e-4,3.0117945e-4,0,0,0,0,273.4440485636393,0.25404641289293156,8.712430008651964,62.87089656141417,3.946175052921808,16.738986754109227,-0.021652683906249543,0,0,1660.6105827511283,-1.4987682109213591,0.004446572546536724,0.0077232726,0,0,0,0 +1833,0.024226693427449875,0.3685966778607331,0,0,2.356959381290607,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89175,0,457.00000254313153,4265.4426,796.1241149902343,35.98083111069253,282.96599833170575,383.4537927943128,0,0,0,0,0,0,0,0,0,0,0,0,3.171515800204361e-6,3.824754e-6,0,0,0,0,1.7521899765900648e-4,3.0511746e-4,0,0,0,0,273.3720499674479,0.2588459246206396,8.790922956695082,63.06958370159948,3.905335593523844,16.86449692010886,-0.02214928975776249,0,0,1673.8749364362222,-0.4194845439142279,0.004446572546536724,0.0077232726,0,0,0,0 +1834,0.02470258560682817,0.3753777951055501,0,0,2.4124454659285632,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.854,0,457.00000254313153,4263.4584,797.0440368652343,36.761060965311756,283.0279998779297,394.1429023376304,0,0,0,0,0,0,0,0,0,0,0,0,3.217479843442561e-6,3.8586347e-6,0,0,0,0,1.7775840266646506e-4,3.089289e-4,0,0,0,0,273.2140502929687,0.2637361099877118,9.001420472247489,65.10499264081507,3.9890612936666887,17.454285340709294,-0.02264589560927544,0,0,1721.2693465918007,-0.01933718178498213,0.004446572546536724,0.0077232726,0,0,0,0 +1835,0.025273637508183497,0.38228366537677744,0,0,2.4054563746496176,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8698,0,457.00000254313153,4264.2887,797.8309682210286,36.88278972577237,283.08599853515625,390.5551391819573,0,0,0,0,0,0,0,0,0,0,0,0,3.2634438866807614e-6,3.8953332e-6,0,0,0,0,1.8029780767392367e-4,3.1306506e-4,0,0,0,0,273.07905069986975,0.2687186820244191,8.925548285908778,64.23544316564437,3.998558037017324,17.170486789731093,-0.023142501460788386,0,0,1718.2221250231016,-1.6633625299236003,0.004446572546536724,0.0077232726,0,0,0,0 +1836,0.029221069497854205,0.389316583770789,0,0,2.4041879560344257,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84901,0,457.00000254313153,4263.1961,798.1060129801431,37.24729235142932,283.1489995320638,389.978664389183,0,0,0,0,0,0,0,0,0,0,0,0,3.3094079299189616e-6,3.9300644999999986e-6,0,0,0,0,1.8283721389404187e-4,3.1697451e-4,0,0,0,0,272.9540532430012,0.2737953861240514,8.99301508642379,64.08016333132153,3.917445996447821,17.23500428603742,-0.02363910731230133,0,0,1783.0834194781103,-1.0677252796589791,0.004446572546536724,0.0077232726,0,0,0,0 +1837,0.02926039926471735,0.39647888760712147,0,0,2.4402101737227215,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.86946,0,457.00000254313153,4264.2707,798.115982055664,37.699806775525964,283.19800059000653,394.75650376781886,0,0,0,0,0,0,0,0,0,0,0,0,3.3553718026269053e-6,3.9670389e-6,0,0,0,0,1.853766201141601e-4,3.2114251e-4,0,0,0,0,272.8730545043945,0.2789680006543284,9.027059824256213,64.82242714481194,4.040217213334495,17.353835237590644,-0.02413571316381428,0,0,1798.0881971564909,-0.2640591208376881,0.004446572546536724,0.0077232726,0,0,0,0 +1838,0.030288692886915835,0.4037729572052591,0,0,2.477311745666847,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85548,0,457.00000254313153,4263.5362,797.937016805013,38.242109615281024,283.2530034383138,401.2961870125921,0,0,0,0,0,0,0,0,0,0,0,0,3.4013357890216867e-6,4.0021199e-6,0,0,0,0,1.8791602512161867e-4,3.2509225e-4,0,0,0,0,272.8660507202148,0.28423833758036093,9.122535894908143,65.94724656685626,4.142172855024622,17.64153847089682,-0.024632319015327232,0,0,1841.5431392468436,0.03335501919910246,0.004446572546536724,0.0077232726,0,0,0,0 +1839,0.031310556578042714,0.4112012166757089,0,0,2.4526381380788647,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83788,0,457.00000254313153,4262.6108,797.9220987955728,38.51117555601762,283.3109995524089,396.9116368644367,0,0,0,0,0,0,0,0,0,0,0,0,3.447299832259887e-6,4.0369741e-6,0,0,0,0,1.904554313417369e-4,3.2901587999999995e-4,0,0,0,0,272.85805002848304,0.2896082430993816,9.139608329107503,65.11131218043978,4.015311872419976,17.505176328593002,-0.025128924866840176,0,0,1843.0808236850567,0.13450763436493787,0.004446572546536724,0.0077232726,0,0,0,0 +1840,0.03354297409334304,0.41876613472562935,0,0,2.4438775219719657,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.80755,0,457.00000254313153,4261.0163,798.3870493570962,38.88776194382017,283.38200124104816,395.88091618643386,0,0,0,0,0,0,0,0,0,0,0,0,3.493263875498087e-6,4.0710717e-6,0,0,0,0,1.9299483634919548e-4,3.3285227e-4,0,0,0,0,272.7990519205729,0.29507959828746777,9.211326298909695,64.92298176034035,3.924269140081404,17.575132478856116,-0.025625530718353124,0,0,1874.1418275066233,0.16854263071970732,0.004446572546536724,0.0077232726,0,0,0,0 +1841,0.03460122912653735,0.42647022547928015,0,0,2.490489852137439,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84789,0,457.00000254313153,4263.137,799.060084025065,39.38162316774325,283.46699778238934,402.37274181683716,0,0,0,0,0,0,0,0,0,0,0,0,3.5392279187362874e-6,4.1092335e-6,0,0,0,0,1.955342437819733e-4,3.3715711000000003e-4,0,0,0,0,272.6890487670898,0.3006543197584808,9.249453201790956,65.9454451837981,4.089445548039454,17.745543570932366,-0.026145023202402858,0,0,1916.2642072737253,0.17997793561545353,0.004446572546536724,0.0077232726,0,0,0,0 +1842,0.03663997981024372,0.4343160493135666,0,0,2.4491704689870333,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84034,0,457.00000254313153,4262.7403,800.0011189778645,39.618728876147166,283.5279998779297,396.99512213680947,0,0,0,0,0,0,0,0,0,0,0,0,3.585191791444231e-6,4.1446349e-6,0,0,0,0,1.980736475767723e-4,3.411438e-4,0,0,0,0,272.58205413818354,0.3063343603354562,9.261381852099804,64.92167359416241,3.9361680613715975,17.590961717477978,-0.026688925256719682,0,0,1931.46250751484,0.18381929631950947,0.004446572546536724,0.0077232726,0,0,0,0 +1843,0.037450386379355084,0.44230621370895423,0,0,2.4111362709735427,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85726,0,457.00000254313153,4263.6297,801.4921824137368,39.653263822240504,283.56600189208984,389.73678087183737,0,0,0,0,0,0,0,0,0,0,0,0,3.6311557778390124e-6,4.1814844e-6,0,0,0,0,2.006130537968905e-4,3.4529738e-4,0,0,0,0,272.6070480346679,0.3121217097346764,9.185852611691464,63.424060913522,3.8460662124532643,17.218218321973847,-0.027232827311036496,0,0,1929.66039784958,0.18510965928096967,0.004446572546536724,0.0077232726,0,0,0,0 +1844,0.03984697293733208,0.45044337411603935,0,0,2.4438258963267856,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85117,0,457.00000254313153,4263.3094,803.6190745035806,40.04426499219912,283.60899861653644,392.7074417140548,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198210772127e-6,4.2169694e-6,0,0,0,0,2.0315246122966832e-4,3.4929371e-4,0,0,0,0,272.64805348714185,0.3180183952626677,9.178913525794204,63.76245430030204,3.965309781326317,17.1801218980614,-0.027776729365353317,0,0,1991.4456467268888,0.1855430999305122,0.004446572546536724,0.0077232726,0,0,0,0 +1845,0.04379212851318448,0.4587302348380611,0,0,2.4713718751387326,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83257,0,457.00000254313153,4262.3319,805.665069580078,40.66967666700967,283.72499593098956,397.85005599568376,0,0,0,0,0,0,0,0,0,0,0,0,3.723083864315413e-6,4.2516813e-6,0,0,0,0,2.0569186502446732e-4,3.5320089999999995e-4,0,0,0,0,272.64005025227857,0.32402648252636523,9.30790591121511,64.68556723249593,3.957876345089828,17.599363300735142,-0.02832063141967013,0,0,2080.3810922503694,0.18568870533529727,0.004446572546536724,0.0077232726,0,0,0,0 +1846,0.04419737434029645,0.46716954992964915,0,0,2.4711987422790394,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82423,0,457.00000254313153,4261.8933,807.2559560139973,40.975199745155024,283.8470001220703,395.9082621735635,0,0,0,0,0,0,0,0,0,0,0,0,3.769047907553613e-6,4.2869996e-6,0,0,0,0,2.0823127124458551e-4,3.5717802e-4,0,0,0,0,272.7300465901692,0.3301480761566941,9.302498358152864,64.24405152639606,3.9495415402063423,17.39887856615626,-0.02886453347398695,0,0,2072.290434339566,0.003535562113167848,0.004446572546536724,0.0077232726,0,0,0,0 +1847,0.047464619118496226,0.4757641241121063,0,0,2.521115228079649,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82758,0,457.00000254313153,4262.0693,807.9369812011718,41.61647167525484,283.9359995524089,402.98515747487147,0,0,0,0,0,0,0,0,0,0,0,0,3.815011799209363e-6,4.3230378e-6,0,0,0,0,2.107706774647037e-4,3.6123808e-4,0,0,0,0,272.8130518595377,0.33638532054582115,9.401962018636505,65.44362075203811,4.040566100417133,17.760514190415755,-0.029408435528303762,0,0,2154.230603343035,0.05986150819062035,0.004446572546536724,0.0077232726,0,0,0,0 +1848,0.04711780719580413,0.484516813705529,0,0,2.5773717998210097,0,1.4945332000000003e-5,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.78829,0,457.00000254313153,4260.004,808.0920410156249,42.449470629613735,284.0679982503255,413.5582929452125,0,0,0,0,0,0,0,0,0,0,0,0,3.860975766656338e-6,4.3563791e-6,0,0,0,0,2.1331008247216232e-4,3.6498734e-4,0,0,0,0,272.8850479125976,0.3427404005983347,9.573238566746884,67.39824375327751,4.1550564996331225,18.30069373024327,-0.029952337582620583,0,0,2204.416735349108,0.14052998907092631,0.004446572546536724,0.0077232726,0,0,0,0 +1849,0.04885144245331925,0.49343052757807715,0,0,2.5523940889282035,0,1.1956415e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.81678,0,457.00000254313153,4261.5016,808.2150014241536,42.63396460567202,284.20699818929035,408.9399341234632,0,0,0,0,0,0,0,0,0,0,0,0,3.9069398098945385e-6,4.3940071e-6,0,0,0,0,2.1584948869228052e-4,3.6923065e-4,0,0,0,0,272.9540456136067,0.3492155424966158,9.543358834157274,66.42707154065786,4.087020956416189,18.074786269748145,-0.03055301159093652,0,0,2224.8957196823785,0.1704345774563485,0.004446572546536724,0.0077232726,0,0,0,0 +1850,0.051384895328128635,0.502508228112706,0,0,2.5711244787427185,1.2887821417469543e-6,2.2473666e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93295,0,457.00000254313153,4267.6083,808.249028523763,43.142363653343445,284.3169987996419,411.4628743194825,0,0,0,0,0,0,0,0,0,0,0,0,3.952903853132739e-6,4.4373643e-6,0,0,0,0,2.1838889491239874e-4,3.7413425e-4,0,0,0,0,273.02104695638013,0.35581301448066943,9.604162557026681,66.78304875030415,4.096904208036784,18.22682478664064,-0.03125687970329533,0,0,2275.7767113113205,0.18074597510251067,0.004446572546536724,0.0077232726,0,0,0,0 +1851,0.051562308443334225,0.4946563668475162,0,0,2.5266925893124657,1.031025730450589e-5,2.4082745e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96457,0,457.00000254313153,4269.2706,808.4141082763671,43.151913707774774,284.4510040283203,402.2448152541545,0,0,0,0,0,0,0,0,0,0,0,0,3.998867896370939e-6,4.475348e-6,0,0,0,0,2.2092829991985732e-4,3.7841858e-4,0,0,0,0,273.0940500895182,0.3637934413745739,9.478471328343609,64.9500465918497,4.010397677989623,17.726300494053056,-0.03196074781565415,0,0,2256.8151473435455,0.18431279870175096,0.004446572546536724,0.0077232726,0,0,0,0 +1852,0.05364238006818437,0.5506858688322854,0,0,2.5076341601822123,2.0667359725242324e-5,2.4179888e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98199,0,457.00000254313153,4270.1861,809.1631317138671,43.34412933408961,284.59800211588544,397.49851999155004,0,0,0,0,0,0,0,0,0,0,0,0,4.044831939609139e-6,4.5124367e-6,0,0,0,0,2.2346770613997555e-4,3.825997e-4,0,0,0,0,273.16805013020826,0.3724242241558459,9.424520247380277,63.95789986488204,3.9584516109367627,17.47926154999162,-0.03266461592801298,0,0,2277.6344054535484,0.17954033954307605,0.004446572546536724,0.0077232726,0,0,0,0 +1853,0.05595234905591053,0.5486310857453621,0,0,2.5278117426961444,3.10744549096853e-5,2.4277992e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9693,0,457.00000254313153,4269.5191,810.404057820638,43.88435962687079,284.7309977213542,400.33880414377563,0,0,0,0,0,0,0,0,0,0,0,0,4.0907959828473395e-6,4.5475315000000004e-06,0,0,0,0,2.2600711114743413e-4,3.8655105e-4,0,0,0,0,273.264050801595,0.38010970895337787,9.493187126119388,64.44555417814735,3.9683262348472685,17.65848987916477,-0.0333684840403718,0,0,2326.4206162177375,0.015887254241176648,0.004446572546536724,0.0077232726,0,0,0,0 +1854,0.06589565461208481,0.5467397743701289,0,0,2.6100485430157265,4.1513251138288375e-5,2.4405566e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9226,0,457.00000254313153,4267.0641,811.7321421305337,44.80907906406347,284.8459981282552,413.39913150953396,0,0,0,0,0,0,0,0,0,0,0,0,4.136759950294315e-6,4.5802995999999986e-6,0,0,0,0,2.2854651736755235e-4,3.9023425e-4,0,0,0,0,273.3630498250325,0.3881180379413641,9.708926054401639,66.794695219375825,4.086374133078645,18.340431326430615,-0.034072352152730634,0,0,2535.1581947111176,-0.014112611956298624,0.004446572546536724,0.0077232726,0,0,0,0 +1855,0.0665605946226626,0.543758286864958,0,0,2.593264313364505,5.2002859774802346e-5,2.4547759e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95064,0,457.00000254313153,4268.5385,813.332036336263,44.957053896332596,284.9409993489583,408.11045388038974,0,0,0,0,0,0,0,0,0,0,0,0,4.182723614576389e-6,4.6181251e-6,0,0,0,0,2.3108592358767055e-4,3.945003e-4,0,0,0,0,273.4700495402018,0.39515493127386314,9.608218449939441,65.65156397841133,4.071657215875477,17.99164859504197,-0.03477622026508945,0,0,2531.882070736542,0.11294859461260336,0.004446572546536724,0.0077232726,0,0,0,0 +1856,0.07119571676282484,0.5497252657327152,0,0,2.5734300072332923,6.254957406781614e-5,2.4704559e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92886,0,457.00000254313153,4267.3934,814.7961222330728,45.32147323346321,285.04899342854816,404.85491673017987,0,0,0,0,0,0,0,0,0,0,0,0,4.228687657814589e-6,4.652537400000002e-6,0,0,0,0,2.3362532859512916e-4,3.98373e-4,0,0,0,0,273.5780461629231,0.40121361649916243,9.648967407833753,65.04253470413643,3.941501863088442,17.954118052235966,-0.03548008837744827,0,0,2598.3233502208395,0.12225561148477546,0.004446572546536724,0.0077232726,0,0,0,0 +1857,0.0718939473501754,0.55506091263013,0,0,2.636452577483439,7.315969560295343e-5,2.487597e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94976,0,457.00000254313153,4268.4922,816.4521179199218,46.01300693840024,285.20399983723956,414.6731918454804,0,0,0,0,0,0,0,0,0,0,0,0,4.2746517010527896e-06,4.6899086e-6,0,0,0,0,2.3616473481524736e-4,4.025867e-4,0,0,0,0,273.67504882812494,0.4075261897409684,9.717987448936368,66.72779876959439,4.1591410074143615,18.291565645975457,-0.03618395648980709,0,0,2646.996287168382,-0.044823331390134384,0.004446572546536724,0.0077232726,0,0,0,0 +1858,0.0730281599923091,0.5597369099004649,0,0,2.660122641883427,8.383950868543859e-5,2.5062e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93987,0,457.00000254313153,4267.9722,818.3551279703775,46.54057728835799,285.3690007527669,419.01402360882946,0,0,0,0,0,0,0,0,0,0,0,0,4.32061574429099e-6,4.7251299e-6,0,0,0,0,2.3870414103536555e-4,4.0655264e-4,0,0,0,0,273.7560501098632,0.41251745553966174,9.773872716558104,67.47060376347301,4.240872484906792,18.47927629769415,-0.03688782460216592,0,0,2684.853418420537,0.08628782582640311,0.004446572546536724,0.0077232726,0,0,0,0 +1859,0.07785211331835136,0.5673853687525405,0,0,2.6482032498787995,9.459531490089527e-5,2.5262647e-4,0.025000428936133783,0.024856862,34.05000019073486,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91443,0,457.00000254313153,4266.635,820.3960774739583,46.94962615479032,285.5449956258138,416.29974849312515,0,0,0,0,0,0,0,0,0,0,0,0,4.36657978752919e-6,4.7592242000000015e-6,0,0,0,0,2.4124354483016455e-4,4.1038866e-4,0,0,0,0,273.89505004882807,0.41699740802681257,9.815633788495665,66.95694733909333,4.119710728903347,18.449505984059194,-0.03759169271452474,0,0,2765.3515040429447,0.1535034293269437,0.004446572546536724,0.0077232726,0,0,0,0 +1860,0.08580578973181537,0.57190571026195,0,0,2.6484047305257548,1.0543340310202136e-4,2.5477918999999995e-4,0.025000428936133783,0.024856862,34.04999955495199,0.010810676000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89112,0,457.00000254313153,4265.4096,822.3121185302733,47.37614022716783,285.73899332682294,416.0639965860974,0,0,0,0,0,0,0,0,0,0,0,0,4.41254383076739e-6,4.7934342e-6,0,0,0,0,2.4378295105028278e-4,4.1423802e-4,0,0,0,0,274.05604807535804,0.42075257795117216,9.868462594270229,66.84953492841794,4.0609762626653305,18.52046800322501,-0.03829556082688356,0,0,2898.3777844170777,0.17676937373971446,0.004446572546536724,0.0077232726,0,0,0,0 +1861,0.09043757175448788,0.5830953457170218,0,0,2.670268662609388,1.1636007608710013e-4,2.5707803e-4,0.025000428936133783,0.024856862,34.04999987284342,0.010810691,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94268,0,457.00000254313153,4268.1198,824.399190266927,48.23468669993056,285.9330012003581,417.24413721688705,0,0,0,0,0,0,0,0,0,0,0,0,4.4585078740055906e-6,4.8330788e-6,0,0,0,0,2.463223596957202e-4,4.1871377e-4,0,0,0,0,274.2400461832682,0.42335986018473476,9.85713564571437,66.88575551122409,4.161212988464047,18.437119828737263,-0.03899942893924239,0,0,2971.2788427875175,0.11623622338672868,0.004446572546536724,0.0077232726,0,0,0,0 +1862,0.09186559088261632,0.5229565631081879,0,0,2.648564983127743,1.2738162210249962e-4,2.5952295e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93302,0,457.00000254313153,4267.612,827.0292002360025,49.13056211810905,286.1000010172526,414.16280656087633,0,0,0,0,0,0,0,0,0,0,0,0,4.504471917243791e-6,4.8682827e-6,0,0,0,0,2.488617634905192e-4,4.2267767e-4,0,0,0,0,274.4160486857096,0.4259683950031353,9.918881972367876,66.358960161654025,4.0424493589722115,18.41589320519377,-0.0397032970516012,0,0,2976.388043494933,-0.6237998311805185,0.004446572546536724,0.0077232726,0,0,0,0 +1863,0.09748855439032131,0.523134296634959,0,0,2.6292695144324947,1.3850433606421575e-4,2.6211454e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9509,0,457.00000254313153,4268.552,830.1662139892577,49.710222528727996,286.271001180013,408.1224194075052,0,0,0,0,0,0,0,0,0,0,0,0,4.550435960481991e-6,4.9055252e-6,0,0,0,0,2.5140116971063736e-4,4.2687657e-4,0,0,0,0,274.57104492187494,0.4284326826015117,9.86866585386286,65.00963540040021,3.9715193557400945,18.09141100618794,-0.04040716516396003,0,0,3064.446906560989,-0.2585729087354761,0.004446572546536724,0.0077232726,0,0,0,0 +1864,0.10472513857630868,0.5234813827246285,0,0,2.667755633655596,1.4973450258063772e-4,2.6485186e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94467,0,457.00000254313153,4268.2247,833.6041412353514,50.66032472624755,286.44200134277344,411.3310642864957,0,0,0,0,0,0,0,0,0,0,0,0,4.5963999279289664e-6,4.9409793e-6,0,0,0,0,2.539405759307556e-4,4.308693e-4,0,0,0,0,274.72005208333326,0.431014195621195,9.887134077064891,65.39906664161046,4.087458726366705,18.093817300572518,-0.041111033276318855,0,0,3193.218258651068,0.037999846461008915,0.004446572546536724,0.0077232726,0,0,0,0 +1865,0.11093631924882667,0.5242503840770768,0,0,2.720201066299487,1.6107846022350714e-4,2.6773567000000004e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010810706000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93017,0,457.00000254313153,4267.4623,836.8942057291665,51.98007509857536,286.6139958699544,420.4890049801762,0,0,0,0,0,0,0,0,0,0,0,0,4.642363592211041e-6,4.9757947000000005e-6,0,0,0,0,2.564799797255546e-4,4.3478845e-4,0,0,0,0,274.8800430297851,0.43343877181201473,10.07353477775766,67.10347351160692,4.157661467348705,18.66656837953943,-0.04181490138867768,0,0,3327.080175680617,0.1429288681419851,0.004446572546536724,0.0077232726,0,0,0,0 +1866,0.11473850842802115,0.5243863634262115,0,0,2.7102983366424596,1.7254241417200925e-4,2.707659e-4,0.025000428936133783,0.024856862,34.050100008646645,0.01081072,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92398,0,457.00000254313153,4267.1368,840.3622080485025,52.74699292831513,286.78099822998047,417.1011849314015,0,0,0,0,0,0,0,0,0,0,0,0,4.688327635449241e-6,5.0112266e-6,0,0,0,0,2.590193835203536e-4,4.387786599999999e-4,0,0,0,0,275.0480473836262,0.4357447764915154,10.064549123367675,66.37528156013664,4.133671177718162,18.394680194366018,-0.042518769501036495,0,0,3388.2580778414886,0.1744104739671799,0.004446572546536724,0.0077232726,0,0,0,0 +1867,0.12258204012181728,0.5228764549771724,0,0,2.761022670595916,1.8413277454480217e-4,2.7394196e-4,0.025000428936133783,0.024856862,34.05020046234131,0.010070544,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93094,0,457.00000254313153,4267.5026,843.995122273763,53.9410217812425,286.9550018310547,424.2969752987472,0,0,0,0,0,0,0,0,0,0,0,0,4.734291678687441e-6,5.0476689e-6,0,0,0,0,2.615587945911102e-4,4.428853e-4,0,0,0,0,275.21304829915357,0.43821064879605803,10.189133101169272,67.66026448741948,4.231180960949066,18.768356166586962,-0.04322263761339532,0,0,3565.4355350198875,0.18466917521307166,0.004446572546536724,0.0077232726,0,0,0,0 +1868,0.12560944174010713,0.5214153984123745,0,0,2.825140562350265,1.9585573196915598e-4,2.7726501e-4,0.025000428936133783,0.024856862,34.05019982655843,0.010072023,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89186,0,457.00000254313153,4265.4483,847.2491251627603,55.287673564162375,287.10500081380206,434.93022825982507,0,0,0,0,0,0,0,0,0,0,0,0,4.780255721925641e-6,5.0805177e-6,0,0,0,0,2.640981983859092e-4,4.465778e-4,0,0,0,0,275.39104461669916,0.44143425556535276,10.372200923081559,69.64729381366908,4.3633047348631795,19.301247569591883,-0.043926505725754135,0,0,3668.308732016809,0.188148666241629,0.004446572546536724,0.0077232726,0,0,0,0 +1869,0.13329152205114916,0.5197708976584334,0,0,2.7850043169774756,2.0771763714340827e-4,2.8073396e-4,0.025000428936133783,0.024856862,34.05020014444987,0.010810735,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93014,0,457.00000254313153,4267.4609,850.1300862630208,55.83359728305401,287.2249984741211,426.4036167290826,0,0,0,0,0,0,0,0,0,0,0,0,4.826219765163842e-6,5.1194221e-6,0,0,0,0,2.666376021807082e-4,4.5096821e-4,0,0,0,0,275.5610478719075,0.44390826602791195,10.311061269202527,67.9294955911712,4.245329954023304,18.888825035193033,-0.04497175592064998,0,0,3791.4627445920805,0.1894123650346563,0.004446572546536724,0.0077232726,0,0,0,0 +1870,0.13667438365279438,0.5186718603074794,0,0,2.831200782445544,2.197247971101509e-4,2.8434934e-4,0.025000428936133783,0.024856862,34.05020014444987,0.01081075,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89317,0,457.00000254313153,4265.5174,852.4350077311196,56.996592307003596,287.3549982706706,433.2287624497814,0,0,0,0,0,0,0,0,0,0,0,0,4.872183808402042e-6,5.152380400000002e-6,0,0,0,0,2.691770132514648e-4,4.5467331e-4,0,0,0,0,275.7200444539387,0.4466399609979402,10.441023971231417,69.12187693609928,4.323468650206145,19.258120747383764,-0.046232618783436236,0,0,3887.5293351931314,0.189950840385198,0.004446572546536724,0.0077232726,0,0,0,0 +1871,0.1452491611173251,0.5388152153139819,0,0,2.7978303472693873,2.31883451003038e-4,2.8811122e-4,0.025000428936133783,0.024856862,34.050299326578774,0.010071314,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92871,0,457.00000254313153,4267.3856,853.9930725097655,57.57401422057298,287.4940007527669,425.1606513202936,0,0,0,0,0,0,0,0,0,0,0,0,4.918147851640242e-6,5.1911213e-6,0,0,0,0,2.717164146209446e-4,4.590449e-4,0,0,0,0,275.9030456542968,0.45433593382870696,10.369497697943174,67.42862357960736,4.269404036940666,18.76177376623424,-0.047493481646222496,0,0,4016.0322788183066,0.19025039687154105,0.004446572546536724,0.0077232726,0,0,0,0 +1872,0.16034651313527334,0.6242378015462033,0,0,2.771292693837977,2.4419995800902444e-4,2.9201899e-4,0.025000428936133783,0.024856862,34.050299962361656,0.010810765,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95075,0,457.00000254313153,4268.5441,855.2329915364583,58.18710545429253,287.66399637858075,417.7442733570141,0,0,0,0,0,0,0,0,0,0,0,0,4.964111894878442e-6,5.228817700000002e-6,0,0,0,0,2.742558184157436e-4,4.6329615e-4,0,0,0,0,276.07804361979163,0.4708626218532089,10.330384237922804,65.84553711122807,4.17870981733127,18.365341648996967,-0.048754344509008736,0,0,4250.256915543303,0.18883431574024787,0.004446572546536724,0.0077232726,0,0,0,0 +1873,0.17009548212988732,0.635197775727867,0,0,2.8416338477805057,2.566805657503816e-4,2.9607326e-4,0.025000428936133783,0.024856862,34.050299962361656,0.01081078,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93223,0,457.00000254313153,4267.5705,856.1681976318358,59.62016165313301,287.86000061035156,429.28028904113773,0,0,0,0,0,0,0,0,0,0,0,0,5.010075938116643e-6,5.2632224000000015e-6,0,0,0,0,2.7679522706118104e-4,4.6716788e-4,0,0,0,0,276.25004831949866,0.4938942498998885,10.56453511561426,67.99437045089431,4.309987323977962,18.937298904886617,-0.050015207371795004,0,0,4473.449627744114,-0.0158300305583035,0.004446572546536724,0.0077232726,0,0,0,0 +1874,0.16101264250188482,0.6424589219115043,0,0,2.8680589101535006,2.693315764190629e-4,3.0027407000000005e-4,0.025000428936133783,0.024856862,34.05039978027344,0.010810794,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88493,0,457.00000254313153,4265.0843,857.8200785319009,60.88850035180588,288.0609995524089,435.8041800080444,0,0,0,0,0,0,0,0,0,0,0,0,5.05603994345923e-6,5.295217800000002e-6,0,0,0,0,2.793346332812992e-4,4.7076201e-4,0,0,0,0,276.4160537719726,0.5217358117405276,10.751611012739497,69.34908007240699,4.369596917606238,19.304810723709583,-0.051276070234581236,0,0,4382.176552473297,0.10137566545666454,0.004446572546536724,0.0077232726,0,0,0,0 +1875,0.17325906778674766,0.6503215087418923,0,0,2.8334891051221005,2.821592812930855e-4,3.046214e-4,0.025000428936133783,0.024856862,34.05040009816488,0.010810809,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5065,859.4690653483071,61.447170295790954,288.29100290934247,426.89349545310597,0,0,0,0,0,0,0,0,0,0,0,0,5.102003569845692e-6,5.3349387000000006e-6,0,0,0,0,2.818740370760982e-4,4.7524653e-4,0,0,0,0,276.5850474039713,0.5521636138855727,10.663545228962466,67.4820885998621,4.311546235769538,18.753876090158617,-0.0525369330973675,0,0,4552.510356024947,0.11898633163405398,0.004446572546536724,0.0077232726,0,0,0,0 +1876,0.17593823238514505,0.6580403904252425,0,0,2.8431252665224327,2.9516999347833917e-4,3.0911468e-4,0.025000428936133783,0.024856862,34.05049991607666,0.010810823999999998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90175,0,457.00000254313153,4265.968,860.8591054280598,62.60294810766919,288.5199966430664,429.4805477313967,0,0,0,0,0,0,0,0,0,0,0,0,5.1479676130838925e-6,5.3683812e-6,0,0,0,0,2.8441344572153565e-4,4.790074400000001e-4,0,0,0,0,276.7350514729817,0.5828831599457934,10.831893028061607,68.07266489194261,4.273649915248981,19.002140660093694,-0.053797795960153764,0,0,4640.322706228576,0.13010732358702753,0.004446572546536724,0.0077232726,0,0,0,0 +1877,0.17982534828505667,0.6646940864903487,0,0,2.881579172917859,3.083699945515643e-4,3.1375456e-4,0.025000428936133783,0.024856862,34.050500551859535,0.010810839,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92824,0,457.00000254313153,4267.3608,862.3791147867837,63.64524258623489,288.7520014444987,434.0603459961696,0,0,0,0,0,0,0,0,0,0,0,0,5.193931656322093e-6,5.406519099999998e-6,0,0,0,0,2.869528519416538e-4,4.833095099999999e-4,0,0,0,0,276.86404927571607,0.6122267058453676,10.897021601068372,68.7783807279057,4.413505723589701,19.089059096309025,-0.05504429988349307,0,0,4762.60475525006,0.1696072468545434,0.004446572546536724,0.0077232726,0,0,0,0 +1878,0.18077698311132545,0.6715857617280921,0,0,2.905036494302108,3.2176555153758574e-4,3.1854156e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810853,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92472,0,457.00000254313153,4267.1759,864.1391499837239,64.71120382869425,288.9930013020833,437.9599497693981,0,0,0,0,0,0,0,0,0,0,0,0,5.239895699560293e-6,5.4421234e-6,0,0,0,0,2.8949225331113365e-4,4.8731959e-4,0,0,0,0,277.0020446777343,0.637718423578712,10.998945344161125,69.46979574102357,4.5031308409529425,19.22817130569276,-0.056156826594968116,0,0,4806.3164952803945,0.1844107426763875,0.004446572546536724,0.0077232726,0,0,0,0 +1879,0.1931754383145236,0.6786152944896107,0,0,2.9292586401809286,3.3536301149676245e-4,3.234746e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810868,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88028,0,457.00000254313153,4264.8396,866.2831624348958,65.90279841258594,289.2210006713867,440.8517590737373,0,0,0,0,0,0,0,0,0,0,0,0,5.285859742798493e-6,5.474183400000002e-6,0,0,0,0,2.920316595312518e-4,4.9092116e-4,0,0,0,0,277.1330490112304,0.6589267771109586,11.181505690638433,70.08572001647862,4.44715839638976,19.487315389320713,-0.05726935330644314,0,0,5054.634872921024,0.18865930412898813,0.004446572546536724,0.0077232726,0,0,0,0 +1880,0.2193400047887077,0.6848574235612915,0,0,2.921172062464678,3.4916867055774975e-4,3.2855365e-4,0.025000428936133783,0.024856862,34.05069955190023,0.010810144,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88174,0,457.00000254313153,4264.9162,868.6961059570311,66.66498430210106,289.4699986775716,437.365727538686,0,0,0,0,0,0,0,0,0,0,0,0,5.3318237860366935e-6,5.5101807e-6,0,0,0,0,2.9457106817668927e-4,4.9497652e-4,0,0,0,0,277.26505025227857,0.6727777764677255,11.210570347061365,69.18788119083449,4.386751757292326,19.32682128004249,-0.05838188001791818,0,0,5476.691840909654,0.15238702978073307,0.004446572546536724,0.0077232726,0,0,0,0 +1881,0.2252231799496281,0.7226262033549594,0,0,2.9628772256083247,3.6318877634281915e-4,3.3377873e-4,0.025000428936133783,0.024856862,34.05069955190023,0.011551088,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92914,0,457.00000254313153,4267.4079,870.9841257731118,67.70670094788971,289.7369969685872,440.9737248225101,0,0,0,0,0,0,0,0,0,0,0,0,5.377787829274894e-6,5.5502216e-6,0,0,0,0,2.9711047197148827e-4,4.9949792e-4,0,0,0,0,277.37404123942054,0.6806367037591056,11.274748464221961,69.70896888997471,4.531822010702024,19.327166243417963,-0.059494406729393226,0,0,5655.562652963553,0.14804251864424234,0.004446572546536724,0.0077232726,0,0,0,0 +1882,0.23694899687620047,0.6743786080130141,0,0,2.9443458510058322,3.774296346819028e-4,3.3915105e-4,0.025000428936133783,0.024856862,34.05080000559489,0.011550379,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92759,0,457.00000254313153,4267.3266,873.2501373291014,68.57787523920716,290.0190022786458,436.0786301154982,0,0,0,0,0,0,0,0,0,0,0,0,5.423751872513094e-6,5.585991e-6,0,0,0,0,2.9964987819160643e-4,5.035270200000001e-4,0,0,0,0,277.4860509236653,0.6892556813322581,11.343220962302505,68.75016748711803,4.409841205149023,19.158162285322444,-0.06060693344086825,0,0,5878.580768497191,0.1874362016564929,0.004446572546536724,0.0077232726,0,0,0,0 +1883,0.25089467695775003,0.6814540279475114,0,0,2.918084088079926,3.918974956225914e-4,3.4467464999999995e-4,0.025000428936133783,0.024856862,34.05090045928955,0.010810957,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95902,0,457.00000254313153,4268.979,875.6031494140624,69.18597910133236,290.26300048828125,428.22120343049505,0,0,0,0,0,0,0,0,0,0,0,0,5.469715915751294e-6,5.6247084000000005e-6,0,0,0,0,3.021892868370439e-4,5.0789587e-4,0,0,0,0,277.5910491943359,0.6958725524070566,11.301072778092927,67.06254475755776,4.3447075949809335,18.709361365312684,-0.06171946015234329,0,0,6136.7508152909495,-0.3245940535795368,0.004446572546536724,0.0077232726,0,0,0,0 +1884,0.2528499020827967,0.6846835417141454,0,0,2.9781587398376455,4.065987474556702e-4,3.503391000000001e-4,0.025000428936133783,0.024856862,34.05100059509277,0.010810972,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93535,0,457.00000254313153,4267.7345,878.1482035319009,70.48060514662333,290.5119984944661,436.5183491794865,0,0,0,0,0,0,0,0,0,0,0,0,5.515679921093882e-6,5.6585019e-6,0,0,0,0,3.047286906318429e-4,5.1169724e-4,0,0,0,0,277.69505055745435,0.7016904496772703,11.463778568830996,68.59402326244992,4.507763748192013,19.009889976177178,-0.06283198686381833,0,0,6243.347604744989,-1.8150618607595548,0.004446572546536724,0.0077232726,0,0,0,0 +1885,0.25444299147687327,0.6908637814371342,0,0,2.987658653242268,4.215400040266104e-4,3.5614909e-4,0.025000428936133783,0.024856862,34.05099964141846,0.011550438,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93798,0,457.00000254313153,4267.8727,881.0251312255858,71.60546241341835,290.7969970703125,438.1415385380004,0,0,0,0,0,0,0,0,0,0,0,0,5.561643547480344e-6,5.6946520999999985e-6,0,0,0,0,3.0726809200132266e-4,5.1577023e-4,0,0,0,0,277.79504903157545,0.7078908709316327,11.603153567015962,68.94977818435397,4.492846370676968,19.20686906057728,-0.06394451357529336,0,0,6294.938313202323,-0.6420197136906102,0.004446572546536724,0.0077232726,0,0,0,0 +1886,0.25832612706643443,0.6919349119161695,0,0,3.0001483762763606,4.3672676110873e-4,3.621046e-4,0.025000428936133783,0.024856862,34.05110009511312,0.011550467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9357,0,457.00000254313153,4267.7531,883.8392181396483,72.58254388217381,291.09999593098956,437.73332685492454,0,0,0,0,0,0,0,0,0,0,0,0,5.607607590718544e-6,5.7303567999999985e-6,0,0,0,0,3.0980750307207927e-4,5.1979186e-4,0,0,0,0,277.8850479125976,0.7126327786706089,11.675797474801131,68.86926284379062,4.534738954197774,19.067819582095456,-0.06519373004483152,0,0,6353.02729378205,-0.0852453820278208,0.004446572546536724,0.0077232726,0,0,0,0 +1887,0.27097332569304644,0.6918854634202647,0,0,3.0445900747103636,4.521660230238922e-4,3.6821147e-4,0.025000428936133783,0.024856862,34.05120054880778,0.011550497,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94903,0,457.00000254313153,4268.4538,886.933135986328,73.77743063310328,291.4139989217122,443.10773813765155,0,0,0,0,0,0,0,0,0,0,0,0,5.653571633956744e-6,5.7675003e-6,0,0,0,0,3.1234690686687827e-4,5.2397934e-4,0,0,0,0,277.99504597981763,0.7182166601192096,11.825655230740924,69.79403942185417,4.618994873829845,19.328453638145426,-0.06654164466411291,0,0,6605.766964967214,-0.025019474885791315,0.004446572546536724,0.0077232726,0,0,0,0 +1888,0.2990240690559838,0.6915397836551626,0,0,3.1234840519185503,4.6786327826945734e-4,3.7446389e-4,0.025000428936133783,0.024856862,34.051300366719566,0.011550526,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91459,0,457.00000254313153,4266.6433,889.9262135823567,75.11035553057255,291.76300048828125,452.50230797053916,0,0,0,0,0,0,0,0,0,0,0,0,5.699535677194945e-6,5.8002124e-6,0,0,0,0,3.1488631066167727e-4,5.2765607e-4,0,0,0,0,278.08005015055335,0.724224234516275,12.041623292379388,71.4272374400245,4.7418969174520385,19.785746426186453,-0.06788955928339427,0,0,7182.264808724919,0.13500730253153945,0.004446572546536724,0.0077232726,0,0,0,0 +1889,0.2993958898436063,0.6910492076322109,0,0,3.104668337723354,4.838260307830448e-4,3.8086186e-4,0.025000428936133783,0.024856862,34.05139986673991,0.011550556000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95877,0,457.00000254313153,4268.9657,893.1561584472655,75.9296001940716,292.1130015055339,448.69086963270234,0,0,0,0,0,0,0,0,0,0,0,0,5.745499720433145e-6,5.840258e-6,0,0,0,0,3.174257217324339e-4,5.3217801e-4,0,0,0,0,278.191047668457,0.730764111829077,12.075327913087893,70.65718771639492,4.727164288354711,19.55277705492912,-0.06923747390267565,0,0,7178.592239188243,0.1858189092422608,0.004446572546536724,0.0077232726,0,0,0,0 +1890,0.32528597028265194,0.6877629398180971,0,0,3.159194948993984,5.000592888488123e-4,3.8741134e-4,0.025000428936133783,0.024856862,34.05150000254313,0.011550586000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9317,0,457.00000254313153,4267.5425,896.3831837972004,77.07862319106741,292.45799763997394,453.89903232867,0,0,0,0,0,0,0,0,0,0,0,0,5.791463763671345e-6,5.8736235e-6,0,0,0,0,3.199651255272329e-4,5.359300400000001e-4,0,0,0,0,278.2730509440104,0.7556615541830685,12.221880708940976,71.47659716602703,4.8079166884923445,19.778064862780106,-0.07058538852195702,0,0,7728.431301023277,0.07030158718899164,0.004446572546536724,0.0077232726,0,0,0,0 +1891,0.34045390881796567,0.6844114067588241,0,0,3.125180696005549,5.165705564043795e-4,3.9410043e-4,0.025000428936133783,0.024856862,34.051600774129234,0.011550615,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97344,0,457.00000254313153,4269.7366,899.666264851888,77.68229292407419,292.8159993489583,444.382731801162,0,0,0,0,0,0,0,0,0,0,0,0,5.837427806909545e-6,5.9135147000000014e-06,0,0,0,0,3.225045293220319e-4,5.4043419e-4,0,0,0,0,278.34705098470045,0.7669960073050373,12.159640198474342,69.53172190504567,4.743306066350147,19.199673026982396,-0.0719333031412384,0,0,8025.900172756182,-0.1023137574833239,0.004446572546536724,0.0077232726,0,0,0,0 +1892,0.3429460922092071,0.698931319975308,0,0,3.1105283647598623,5.333653001192337e-4,4.0093536e-4,0.025000428936133783,0.024856862,34.05169995625814,0.011550645,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99082,0,457.00000254313153,4270.6504,903.534194946289,78.54558088981553,293.16699981689453,439.8086590465999,0,0,0,0,0,0,0,0,0,0,0,0,5.8833918501477456e-6,5.951126000000002e-6,0,0,0,0,3.250439355421501e-4,5.446755599999999e-4,0,0,0,0,278.44204457600904,0.77827246793364,12.199146519671457,68.66391958974123,4.69568230481039,18.949521757077395,-0.07328121776051978,0,0,8166.143155148587,0.07763085595364166,0.004446572546536724,0.0077232726,0,0,0,0 +1893,0.3378703897546753,0.6997131247828723,0,0,3.1254308946941567,5.504500586539507e-4,4.079215e-4,0.025000428936133783,0.024856862,34.05179977416992,0.012290126,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97993999999998,0,457.00000254313153,4270.0783,907.2741190592446,79.81501328862245,293.4769999186198,443.3506557921903,0,0,0,0,0,0,0,0,0,0,0,0,5.929355893385946e-6,5.986023799999998e-6,0,0,0,0,3.275833417622683e-4,5.4860421e-4,0,0,0,0,278.55404917399085,0.7897298228538592,12.379453862745622,69.48705801909811,4.715239732570137,19.178456201207396,-0.07462913237980115,0,0,8120.644734612286,0.1864156024276895,0.004446572546536724,0.0077232726,0,0,0,0 +1894,0.35112450392061667,0.7155813956083555,0,0,3.205110617860807,5.678308225469664e-4,4.1505353e-4,0.025000428936133783,0.024856862,34.051900227864586,0.01229017,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5063,910.4781341552733,81.38345626276687,293.7909978230794,456.69603250902094,0,0,0,0,0,0,0,0,0,0,0,0,5.975319936624146e-6,6.017190099999998e-6,0,0,0,0,3.301227455570673e-4,5.5210279e-4,0,0,0,0,278.6890487670898,0.8020046367832572,12.66238559332695,71.90804380664727,4.8889485381651845,19.8361284777738,-0.07597704699908253,0,0,8411.388473243653,0.19284299907478186,0.004446572546536724,0.0077232726,0,0,0,0 +1895,0.37171203675260484,0.7209450963563064,0,0,3.216163844950097,5.855145864188671e-4,4.2233098e-4,0.025000428936133783,0.024856862,34.05209986368815,0.011550763,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4251,913.2259826660155,82.23116014335764,294.0789972941081,453.5518850499526,0,0,0,0,0,0,0,0,0,0,0,0,6.0212835251149954e-6,6.056690099999998e-6,0,0,0,0,3.326621542025047e-4,5.5656184e-4,0,0,0,0,278.83104960123694,0.8128876331059834,12.672444225617587,71.15178658195539,4.91917125426521,19.522500482390267,-0.07728033747142447,0,0,8846.667009900264,0.1930910447676056,0.004446572546536724,0.0077232726,0,0,0,0 +1896,0.38367481768429307,0.7234407884813598,0,0,3.170768746502162,6.03506836341694e-4,4.2976003e-4,0.025000428936133783,0.024856862,34.05219968159994,0.012290244,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4252,914.7710927327473,83.00005426186281,294.36499786376953,444.0944277814877,0,0,0,0,0,0,0,0,0,0,0,0,6.067247568353196e-6,6.0926241e-6,0,0,0,0,3.352015604226229e-4,5.606100700000001e-4,0,0,0,0,278.9390513102213,0.824102858385605,12.720593693458584,69.42267705803128,4.733994615392683,19.177287716924887,-0.07856237646782513,0,0,9089.59843267371,0.19318346141929987,0.004446572546536724,0.0077232726,0,0,0,0 +1897,0.4019811637589425,0.725878270524141,0,0,3.2687021119074915,6.218145863385871e-4,4.373290900000001e-4,0.025000428936133783,0.024856862,34.052300453186035,0.012290288,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99693,0,457.00000254313153,4270.9718,916.2742818196614,84.39253635318506,294.64599863688153,456.4122054736632,0,0,0,0,0,0,0,0,0,0,0,0,6.113211611591396e-6,6.1314997000000015e-6,0,0,0,0,3.377409642174219e-4,5.6499701e-4,0,0,0,0,279.051045735677,0.8346371271895597,12.890217099416494,71.54673250412924,5.026760132357157,19.58218287923395,-0.07984441546422576,0,0,9520.393854224154,0.19322441190367687,0.004446572546536724,0.0077232726,0,0,0,0 +1898,0.4233042102069517,0.728376569617105,0,0,3.2968702587691077,6.404438560518125e-4,4.4504943e-4,0.025000428936133783,0.02485618,34.052499771118164,0.012290333,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01512,0,457.00000254313153,4271.9281,919.0172271728514,85.36127162189973,294.95399983723956,456.6037673563168,0,0,0,0,0,0,0,0,0,0,0,0,6.159175654829596e-6,6.1692876e-6,0,0,0,0,3.402803704375401e-4,5.692587400000001e-4,0,0,0,0,279.1630477905273,0.8443053161523663,12.959068227762758,71.45665951589594,5.0980295350528255,19.501681112942983,-0.0811264544606264,0,0,10010.09583228873,0.19324438193560026,0.004446572546536724,0.0077232356,0,0,0,0 +1899,0.46331719155147416,0.7285561578617307,0,0,3.35583134512378,6.594006069159756e-4,4.856732599999999e-4,0.025000428936133783,0.024857703,34.05260022481283,0.012290377,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97653,0,457.00000254313153,4269.8993,922.2811838785806,86.70543386559314,295.2999979654948,462.1035993919434,0,0,0,0,0,0,0,0,0,0,0,0,6.205139698067796e-6,6.2013454e-6,0,0,0,0,3.4281977665765834e-4,5.7286006e-4,0,0,0,0,279.3080469767252,0.8537833662798698,13.20706844128895,72.46072255843502,5.09497938372201,19.868709929010027,-0.08240849345702704,0,0,10838.113453916734,0.1932520396033143,0.004446572546536724,0.0077232334,0,0,0,0 +1900,0.4881558617748878,0.7305723603784592,0,0,3.3618210367956025,6.786918675061315e-4,0.0023926675,0.025000376626849174,0.024856437,34.052798906962074,0.028558348,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98481,0,457.00000254313153,4270.3344,925.5521138509114,87.61328845020651,295.6749954223633,459.5444668504325,0,0,0,0,0,0,0,0,0,0,0,0,6.251103741305997e-6,6.2381326e-6,0,0,0,0,3.4535918045245734e-4,5.770064599999999e-4,0,0,0,0,279.4540481567382,0.8631696543463733,13.276669554810011,71.90656631461616,5.089168388032589,19.750787925178965,-0.08385968995663869,0,0,11348.727499729994,0.19324967713848945,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1901,0.5044857194846931,0.7969063127701378,0,0,3.3829529353801377,7.011479125746215e-4,0.0048200969,0.025000494594375294,0.024857442,34.05289999643961,0.047784449000000014,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04131,0,457.00000254313153,4273.3046,928.800333658854,88.39116711070807,296.0069986979167,457.6168305058551,0,0,0,0,0,0,0,0,0,0,0,0,6.297067784544197e-6,6.2798935e-6,0,0,0,0,3.478985866725755e-4,5.817261e-4,0,0,0,0,279.613047281901,0.8714059588722426,13.301409901434221,71.63263161162581,5.20214413763188,19.48762216724768,-0.08579737819029178,0,0,11775.255202668699,0.1931616844954455,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1902,0.5193451170981727,0.800278636367018,0,0,3.3815414695884436,8.848810005777826e-4,0.0057781223,0.025000344030559063,0.024856062,34.055300076802574,0.050743008,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04898,0,457.00000254313153,4273.708,932.7311604817708,89.26282464192792,296.3249994913737,455.02617682462983,0,0,0,0,0,0,0,0,0,0,0,0,6.343031827782397e-6,6.316678900000002e-6,0,0,0,0,3.5043799531801295e-4,5.858722900000001e-4,0,0,0,0,279.8610509236653,0.8812154472523583,13.412488026584588,71.24149846316587,5.179688036784444,19.35806149893677,-0.08773506642394488,0,0,12100.548766402842,0.09059743996435048,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1903,0.5664546211178523,0.8295711459044773,0,0,3.389386332354358,0.001116641176243623,0.0069576127,0.025000539453079302,0.024857979,34.05799961090088,0.05591998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09555,0,457.00000254313153,4276.1561,936.7834269205728,89.89074056747505,296.65399678548175,449.9625304110428,0,0,0,0,0,0,0,0,0,0,0,0,6.388995871020597e-6,6.3575352999999986e-6,0,0,0,0,3.5297739911281195e-4,5.9048768e-4,0,0,0,0,280.15604146321607,0.890660734283567,13.437520518020643,70.25376393283156,5.1901034578968455,19.030597877588104,-0.08967275465759794,0,0,13044.158155518342,-0.7087274740337839,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1904,0.5751521325099065,0.856100074253587,0,0,3.4640582999698033,0.0013829462016777445,0.0094363385,0.02500028194238742,0.024855289,34.06080023447672,0.068491568,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07939,0,457.00000254313153,4275.3063,942.1142679850259,91.35674942842638,296.95399475097656,462.6217650299278,0,0,0,0,0,0,0,0,0,0,0,0,6.434959914258798e-6,6.3918668e-6,0,0,0,0,3.555168053329301e-4,5.9435105e-4,0,0,0,0,280.43204243977857,0.900998671506556,13.731471700844033,72.88437625246438,5.400226562773813,19.656119727265345,-0.09161044289125103,0,0,13274.437189098227,-0.26430883974577096,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1905,0.6122962467973883,0.8830904178747726,0,0,3.525334738078169,0.0017163676869434614,0.013412831000000002,0.02500062497953574,0.024859105,34.06420008341471,0.087718467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08907,0,457.00000254313153,4275.8152,947.4432729085286,92.40132432209919,297.28899637858075,467.44012883738543,0,0,0,0,0,0,0,0,0,0,0,0,6.480923502749647e-6,6.4289102e-6,0,0,0,0,3.5805621155304834e-4,5.985269799999999e-4,0,0,0,0,280.7050450642903,0.911796750677243,13.855105466247057,73.70973521692333,5.570897783797489,19.752967156958555,-0.09354813112490414,0,0,14100.978379035863,0.07758312468608113,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1906,0.6442763573284219,0.9139458953081726,0,0,3.549324480388693,0.0021963609227289758,0.018196454,0.02500016087045272,0.024853655,34.068699518839516,0.11138246,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10645,0,457.00000254313153,4276.7286,953.0924224853514,93.2499831638467,297.66199747721356,466.4356478967891,0,0,0,0,0,0,0,0,0,0,0,0,6.526887545987847e-6,6.466788299999998e-6,0,0,0,0,3.6059561534784734e-4,6.027991099999999e-4,0,0,0,0,280.9800465901692,0.9228643088832689,13.959645369835703,73.46173851221981,5.607842106776347,19.60693136091458,-0.09545551104287764,0,0,14766.450119103303,0.17494042863794804,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1907,0.726915977115476,0.9229970275040732,0,0,3.6744573684699935,0.002872606390155852,0.016966195,0.025000798360755045,0.025812945,34.074700037638344,0.10398923,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14627,0,457.00000254313153,4278.822,959.1561177571614,94.5608019449233,298.0979944864909,480.31745635776645,0,0,0,0,0,0,0,0,0,0,0,0,6.5728515892260475e-6,6.507102e-6,0,0,0,0,3.6313501914264634e-4,6.0735196e-4,0,0,0,0,281.2760442097981,0.9335570189055034,14.216774986296493,76.00444514305916,5.925751520425966,20.144490748304303,-0.09692403030316216,0,0,16264.987209463294,0.062031619541395626,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1908,0.7032325912946371,0.932378464388443,0,0,3.675876640379726,0.0037649905619521937,0.021404879,0.02499991360430916,0.029231937000000006,34.08239936828613,0.12765503,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12414,0,457.00000254313153,4277.6586,964.0852966308593,95.71237193404865,298.5179901123047,482.5826340091374,0,0,0,0,0,0,0,0,0,0,0,0,6.618815632464248e-6,6.5407783e-6,0,0,0,0,3.6567443021340296e-4,6.111398000000001e-4,0,0,0,0,281.61104329427076,0.9439781461374255,14.407422860628587,76.85623799627187,5.975251674338594,20.34218954572492,-0.09839254956344667,0,0,15590.713118515627,0.12577421060954422,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1909,0.7293531000033262,0.9394639872302616,0,0,3.6900486620571034,0.004334990129185219,0.036714367000000005,0.02507337733792762,0.7650859999999999,34.087400118509926,0.21121463,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.16533,0,457.00000254313153,4279.8240000000005,969.3983662923176,96.46669460330283,298.93599192301434,480.68946878632124,0,0,0,0,0,0,0,0,0,0,0,0,6.664779675702448e-6,6.5813135e-6,0,0,0,0,3.6821383400820196e-4,6.1571818e-4,0,0,0,0,281.95004526774085,0.9541466929230623,14.465734280062996,76.44087709943787,6.04171533179017,20.1096713132971,-0.0998610688237312,0,0,16371.00547137995,0.1917775514880681,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1910,0.765726394850593,0.9455920872078338,0,0,3.7676081069530625,0.005609989515505731,0.042342327,0.02532928188641866,1.0366888,34.098299980163574,0.24301505,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14442,0,457.00000254313153,4278.7248,974.7870890299478,97.77187102780431,299.37699635823566,491.4713622185322,0,0,0,0,0,0,0,0,0,0,0,0,6.710743718940648e-6,6.615104700000002e-6,0,0,0,0,3.7075323780300096e-4,6.1951928e-4,0,0,0,0,282.3140436808268,0.9648675091710838,14.7306044680131,78.48124342715315,6.22524154290356,20.602328395865626,-0.10126503542660648,0,0,17123.070519811292,0.19159019115572065,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1911,0.7810146544824405,0.8874036750204771,0,0,3.725917531952306,0.007499988889321685,0.047217079,0.0812472328543663,0.55672031,34.11459986368815,0.27037941,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.20214,0,457.00000254313153,4281.7592,979.4653218587239,98.4293811567004,299.82899220784503,482.3736483687901,0,0,0,0,0,0,0,0,0,0,0,0,6.7567077621788485e-6,6.6575406e-6,0,0,0,0,3.7329264887375757e-4,6.2431671e-4,0,0,0,0,282.72104136149085,0.9761720065989483,14.679374542895259,76.73370568501319,6.205453710840906,20.007607425742776,-0.10240012153911617,0,0,17244.1854917937,0.1913996219514424,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1912,0.8199661913672125,0.8508398703003752,0,0,3.7091004678175183,0.009259988398601612,0.055977137,0.10000008965531985,1.3372385,34.12980047861735,0.31844894,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.23472,0,457.00000254313153,4283.4718,983.6058603922525,99.26614632335712,300.3529917399089,477.9889214580395,0,0,0,0,0,0,0,0,0,0,0,0,6.802671805417049e-6,6.6972695e-6,0,0,0,0,3.7583205024323735e-4,6.288021400000001e-4,0,0,0,0,283.01904296874994,0.9924203303369911,14.713664798160675,75.8316081908469,6.21946391056852,19.680892428681513,-0.10353520765162587,0,0,17989.19691090075,-0.2483084466661772,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1913,0.889533970104308,0.8203484804069425,0,0,3.787939036045986,0.011569987594460448,0.05934571,0.11666701609889667,2.7874772,34.1497999827067,0.33694139,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.25437,0,457.00000254313153,4284.5046,986.2423197428384,100.61255837319116,300.9099934895833,488.2676034939648,0,0,0,0,0,0,0,0,0,0,0,0,6.848635848655249e-6,6.7356009000000015e-6,0,0,0,0,3.7837145403803635e-4,6.3312652e-4,0,0,0,0,283.3620402018229,1.0114400974128448,14.921807646192061,77.57996159883326,6.453879619764709,20.00732869050688,-0.10467029376413556,0,0,19072.753187289316,-0.30943169229472783,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1914,0.8114913689780275,0.8092045045442162,0,0,3.764418792127778,0.014084987109526992,0.064801984000000007,0.19333053504427275,4.5655912,34.17150020599365,0.36726542,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.19867,0,457.00000254313153,4281.5767,988.610880533854,102.28405865111169,301.4189910888672,494.4978826289548,0,0,0,0,0,0,0,0,0,0,0,0,6.894599891893449e-6,6.765480200000002e-6,0,0,0,0,3.809108626834738e-4,6.3647677e-4,0,0,0,0,283.71604156494135,1.0321295138459616,15.241497455163927,79.77807342879137,6.499176732511072,20.59248108677444,-0.10580537987664523,0,0,17594.434057832063,0.020398445252377703,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1915,0.8029916592535993,0.7974019582591167,0,0,3.7223377832742996,0.016684986495723326,0.08400062900000001,0.31655970215797424,6.2098372,34.193999926249184,0.47153519,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.2716,0,457.00000254313153,4285.4105,991.4610799153645,103.0579197466507,301.9369888305664,484.24768488469795,0,0,0,0,0,0,0,0,0,0,0,0,6.9405635182799115e-6,6.8098518e-6,0,0,0,0,3.8345026890359196e-4,6.4149729e-4,0,0,0,0,284.04704284667963,1.0546195831794383,15.232131029774814,78.35040062356745,6.4827720725927875,20.061424577974346,-0.10694046598915492,0,0,17573.116044207876,0.1641375391623491,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1916,0.8653307900276433,0.7997102256366486,0,0,3.744207068777381,0.019669986019531887,0.10465075,0.5206524853905042,5.9968917,34.21979999542236,0.58467971,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.29863,0,457.00000254313153,4286.831,998.4538218180337,104.08894352066241,302.48498789469403,482.95426600786,0,0,0,0,0,0,0,0,0,0,0,0,6.986527523622499e-6,6.8490958e-6,0,0,0,0,3.8598967269839096e-4,6.4592684e-4,0,0,0,0,284.31204223632807,1.077791381611315,15.342847178146304,78.27985154770643,6.60168085846147,19.908298607149394,-0.1080755521016646,0,0,19065.484279863696,0.18922175763831675,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1917,0.896621584801294,0.8027455741063269,0,0,3.8263968555995858,0.02392498527963956,0.11034348,0.7563406427701315,5.1585271,34.2564001083374,0.61870744,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.37275,0,457.00000254313153,4290.7275,1003.5705515543618,105.4397414501963,303.01098887125653,492.9600447524987,0,0,0,0,0,0,0,0,0,0,0,0,7.032491566860699e-6,6.8937875e-6,0,0,0,0,3.885290813438284e-4,6.509842700000001e-4,0,0,0,0,284.6150461832682,1.1002556131310455,15.500365004779491,80.4548180697849,7.003710361287698,20.17756104011222,-0.10921063821417433,0,0,19906.998931884555,0.19018318847478569,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1918,0.8873955587039598,0.8060358496732685,0,0,3.8305973797130326,0.02868998423218727,0.10461425,0.9276737372080485,4.2721672,34.29749997456869,0.58914082,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.37311,0,457.00000254313153,4290.7462,1010.1304473876952,106.74593160054405,303.44898732503253,496.242073076373,0,0,0,0,0,0,0,0,0,0,0,0,7.078455610098899e-6,6.9300659e-6,0,0,0,0,3.910684875639466e-4,6.550720200000001e-4,0,0,0,0,284.80504862467444,1.1212267086350811,15.704391027274072,81.61294813978053,7.118191256260811,20.368951576880015,-0.110345724326684,0,0,19743.244967391554,0.1899763122778872,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1919,0.7808604024397078,0.8111591475979437,0,0,3.7226411346821937,0.03343498365332683,0.10155164,1.0843643546104431,3.196035,34.338699658711754,0.57214502,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.33647,0,457.00000254313153,4288.8202,1017.6303660074868,108.09510704377881,303.8139877319336,490.9794171167238,0,0,0,0,0,0,0,0,0,0,0,0,7.1244196533371e-6,6.962042700000002e-6,0,0,0,0,3.936078889334264e-4,6.5866401e-4,0,0,0,0,284.85105133056635,1.1402334776582428,15.915652713498652,81.67724386438958,6.926922672741556,20.368638212598857,-0.1115197148188522,0,0,16994.786869895725,0.18976010178406924,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1920,0.9030601007400624,0.8135184546759534,0,0,3.8130101207834444,0.03770498279482126,0.071874804,1.176037738720576,4.0059497,34.375800132751465,0.41169313,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.40157,0,457.00000254313153,4292.2427,1025.0703277587888,109.13363853305731,304.24598693847656,498.87459987539705,0,0,0,0,0,0,0,0,0,0,0,0,7.1703836965753e-6,7.0058716e-6,0,0,0,0,3.961472951535446e-4,6.636221499999999e-4,0,0,0,0,284.9290440877278,1.157633764648187,16.036656139503478,82.96992111207,7.3188151464881575,20.402395098799328,-0.11278881532908334,0,0,18802.69892302283,0.18954070686553806,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1921,0.7938358638145999,0.8612993334837397,0,0,3.661222702405219,0.042184981517493725,0.05599481,1.241669515768687,6.3575754999999985,34.4146998723348,0.32444592,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.42979,0,457.00000254313153,4293.7261,1032.2003377278643,109.80934796264431,304.59998830159503,486.6136241874396,0,0,0,0,0,0,0,0,0,0,0,0,7.2163477398135e-6,7.045455500000001e-6,0,0,0,0,3.98686703798982e-4,6.6809072e-4,0,0,0,0,285.0390421549479,1.173417684573443,16.01016129774032,81.18725519244387,7.146950074087312,19.846108774902355,-0.11405791583931453,0,0,16049.705932221917,0.1893181118062252,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1922,0.8438966628298804,0.8533692042065284,0,0,3.6583337227642674,0.04389498041321834,0.10093674,1.3888855278491974,7.5196689,34.43010012308756,0.56921203,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.47367,0,457.00000254313153,4296.0327,1039.1002502441404,110.48581040150992,304.9449818929036,484.8273418444006,0,0,0,0,0,0,0,0,0,0,0,0,7.2623117830517e-6,7.0869364000000015e-6,0,0,0,0,4.01226107593781e-4,6.7277807e-4,0,0,0,0,285.17004903157545,1.188779371830489,16.07300912106922,80.53069430512947,7.252038815173717,19.474278395734512,-0.11532701634954567,0,0,16950.895997894484,0.0877045766097048,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1923,0.9595590008888546,0.8614844099618343,0,0,3.8812462099992877,0.04700497972468535,0.13753371,1.6249915957450867,8.1995609,34.45719941457113,0.77479139,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.54539,0,457.00000254313153,4299.8026,1045.1300659179685,112.25356413194692,305.27098337809247,514.2343951443905,0,0,0,0,0,0,0,0,0,0,0,0,7.308275826289901e-6,7.131803e-6,0,0,0,0,4.037655138138992e-4,6.7785565e-4,0,0,0,0,285.46704101562494,1.205120977529758,16.469305300306814,86.27583424473677,8.013836332456805,20.417825208931507,-0.11659611685977685,0,0,19723.672024100037,0.12093783396952988,0.004446569985399644,0.007723268,0,0,0,0 +1924,0.9703594405113312,0.8676633311171565,0,0,3.7748090158825875,0.052589978401859604,0.14595489,1.8459543486436207,10.064032,34.50569979349772,0.82730698,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.55899,0,457.00000254313153,4300.5175,1049.450032552083,112.63350596587964,305.62998453776044,499.0974143950571,0,0,0,0,0,0,0,0,0,0,0,0,7.354239869528101e-6,7.169801200000001e-6,0,0,0,0,4.0630492245933664e-4,6.8214162e-4,0,0,0,0,285.6050491333007,1.2222190421891945,16.415647771084632,83.21123114220697,7.790296571572385,19.77882376042076,-0.117865217370008,0,0,19521.89407498274,0.18863121099961191,0.004446569946594536,0.0077232683,0,0,0,0 +1925,0.9836991206856317,0.8708471713839661,0,0,3.7906069821644643,0.05885497791071733,0.15281139,2.1164215207099915,9.887985,34.5605993270874,0.86947278,0,0,0,0,0,0,0,0,0,0,5.299997687339783,105.60265,0,457.00000254313153,4302.8128,1052.159952799479,113.6704269189651,305.81298065185547,502.6957687586778,0,0,0,0,0,0,0,0,0,0,0,0,7.400203495914563e-6,7.2114506e-6,0,0,0,0,4.0884432625413564e-4,6.8684841e-4,0,0,0,0,285.6520512898762,1.2377911006225208,16.841681561106117,84.06174423454924,7.983263811925956,19.753454837168906,-0.11913431788023915,0,0,19738.889839322743,0.18839574168627352,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1926,0.9711936637110966,0.8752881607638067,0,0,3.724383638277895,0.06516497613241275,0.16877181,2.460367262363434,10.020584,34.616199811299644,0.96266008,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.65209,0,457.00000254313153,4305.4116,1053.600107828776,114.54563027246535,305.9539845784505,499.041820374083,0,0,0,0,0,0,0,0,0,0,0,0,7.4461675012571504e-6,7.2538666e-6,0,0,0,0,4.1138373004893464e-4,6.9164354e-4,0,0,0,0,285.69204711914057,1.2526121062865871,17.14732507530922,84.16877083488303,8.057166101708676,19.573020111236303,-0.12040341839047032,0,0,19808.91323463674,0.18815706175477445,0.0044465700242047506,0.0077232683,0,0,0,0 +1927,1.0719822978926645,0.9148152429216062,0,0,3.8503573823854342,0.0720199750115474,0.19366311,2.6942857106526694,13.691728,34.67679913838705,1.1076116000000005,0,0,0,0,0,0,0,0,0,0,5.299997607866923,105.65063,0,457.00000254313153,4305.3352,1055.770568847656,115.74747998347533,306.17698669433594,515.0910883833536,0,0,0,0,0,0,0,0,0,0,0,0,7.492131544495351e-6,7.290134400000002e-6,0,0.0049450274,0,0,4.1392313869437203e-4,6.9573008e-4,0,0,0,0,285.7400512695312,1.2667652835613548,17.432321744004053,86.52753524964037,8.499773806732605,19.875509864662817,-0.12167251890070148,0,0,21139.782286868525,0.187915087386083,0.004446569985399644,0.0077232677,0,0,0,0 +1928,1.0761742979146,0.9182619073884535,0,0,3.828134931557229,0.07970497260491054,0.21328049999999998,3.02649054924647,16.914307,34.74499924977621,1.2252077,0,0.020814729,0,0,0,0,0,0,0,0,5.2999982436498,105.59392,0,457.00000254313153,4302.3537,1060.6403605143228,116.7958666079441,306.3289794921875,515.8400889336957,0,0,0,0,0,0,0,0,0,0,0,0,7.538095587733551e-6,7.3196023e-6,0,0.030139896,0,0,4.1646254248917103e-4,6.990328999999999e-4,0,0,0,0,285.83304850260413,1.2797850846246124,17.62700284771002,87.11586336850812,8.569023694913732,19.91593076109437,-0.12294161941093265,0,0,21065.047460560574,0.16326849505962074,0.004446569985399644,0.007723269,0,0,0,0 +1929,1.1569513873862218,0.945536477224549,0,0,3.8902159937355303,0.08870497221748035,0.20802541,3.517713646094004,19.38339,34.825199127197266,1.2037865,0,0.33502494,0,0,0,0,0,0,0,0,5.299996972084045,105.60372,0,457.00000254313153,4297.9849,1066.6603291829424,118.01999771578741,306.49498748779297,527.0535755087527,0,0,0,0,0,0,0,0,0,0,0,0,7.584059630971751e-6,7.3457199e-6,8.387752144093005e-4,0.003329301,0,0,4.1900194628397003e-4,7.019496099999999e-4,0,0,0,0,285.8910522460937,1.290827581649255,17.867272783472913,89.37670246877072,8.894481947800461,20.274973944467554,-0.1242107199211638,0,0,22402.21951573089,0.008459436299327926,0.004446569946594536,0.007723266199999999,0,0,0,0 +1930,1.0728864782722383,1.0228008835417055,0,0,3.9076228058376485,0.0980799701064825,0.17035764,4.063463946183522,20.571834,34.909299532572426,0.99750344,0.001314997343191256,1.1701026,0,0,0,0,0,0,0,0,5.299998998641968,105.91828999999998,0,457,4287.8382,1072.6401163736978,119.67017881003574,306.6199773152669,535.0349028180784,0,0,0,0,0,0,0,0,0,0,0,0,7.630023560523114e-6,7.3580297999999985e-6,0.00510867650154978,-0.026051043,0,0,4.2154135735472664e-4,7.0327493e-4,0,0,0,0,285.9380518595377,1.3003703550961545,18.10997615018731,91.59573862667055,8.841770878325681,20.952388588675653,-0.12547982156900256,0,0,20792.33985686783,0.17991195822791398,0.004446570101814966,0.0077232725,0,0,0,0 +1931,0.9686717262631225,1.0331302905231323,0,0,3.699193086333459,0.10662497021257877,0.11326202,4.702978173891704,21.232329,34.9865992863973,0.6766021,0.021151568042114377,1.6600328999999998,0,0,0,0,0,0,0,0,5.3066509167353315,106.6887,0,457.000005086263,4282.6938,1077.4902242024737,119.90750782308882,306.82198333740234,504.89813450435264,0,0,0,0,0,0,0,0,0,0,0,0,7.675987490074476e-6,7.3819696e-6,0.0013775627594441175,-0.0038292076,0,0,4.2408076114952564e-4,7.059406299999999e-4,0,0,0,0,286.124043782552,1.3073181920546588,17.958294196248843,86.48531866506026,8.206316153499158,19.782983456664027,-0.12674892343562766,0,0,18348.14599749548,0.1869152841968948,0.0044465698301792145,0.0077232589,0,0,0,0 +1932,0.8802743934777767,0.934985060725432,0,0,3.701120518695932,0.11274996710320313,0.085847633,5.2942134141922,23.837144,35.04279931386312,0.51911084,0.07499745239814122,1.6167368,0,0,0,0,0,0,0,0,5.338305354118347,107.41813,0,457.00000254313153,4276.7559,1081.9602254231768,121.42198728704909,307.09297943115234,510.1823315036154,0,0,0,0,0,0.0057643486,0,0,0,0,0,0,7.721951533312676e-6,7.4038620000000015e-06,6.616643853097534e-4,7.431065e-4,0,0,4.2662016494432464e-4,7.083703599999999e-4,0,0,0,0,286.222048441569,1.3141063515038527,18.10001303714107,87.9072537284969,8.14248430159185,20.161815548303863,-0.12801802530225273,0,0,16151.105195411223,0.04254262073622287,0.004446570334645609,0.0077232888,0,0,0,0 +1933,0.9234526077537247,0.9318013427122356,0,0,3.6739916956408347,0.11636996641755104,0.10162739999999999,5.937420805295308,28.120028,35.076699574788414,0.61081444,0.12499795357386272,1.6336582,0,0,0,0,0,0,0,0,5.379978577295939,108.09758,0,456.99999745686847,4271.2585,1086.540334065755,122.34376589659303,307.40198008219403,508.11601205842635,0,0,0,0,0,0.14482802,0,0,0,0,0,0,7.767915576550877e-6,7.4266479000000016e-6,7.192010428601255e-4,8.0764091e-4,0,0,4.2915957358976203e-4,7.1090308e-4,0,0,0,0,286.3710505167643,1.3197777870137994,18.14058311592853,87.73926442282286,8.102332976784076,20.019613310457757,-0.1292871271688778,0,0,16995.040808999714,0.15037091489606738,0.004446569170492391,0.0077232216,0,0,0,0 +1934,1.000687973523085,0.9200297551297542,0,0,3.8176224066538618,0.120129964624842,0.15202423,6.679798523585002,34.519287,35.111599604288735,0.91252255,0.174997894714276,1.6505883,0,0,0,0,0,0,0,0,5.419978777567546,108.91202,0,456.99999745686847,4272.3774,1091.770294189453,123.95329985100088,307.7849833170573,528.0331660089164,0,0,0,0,7.617614949898174e-4,0.60639434,0,0,0,0,0,0,7.813879619789077e-6,7.4653224e-6,7.817409447549531e-4,8.7789025e-4,0,0,4.3169897738456103e-4,7.152669800000001e-4,0,0,0,0,286.4670486450195,1.326062978814577,18.32411358884008,91.49703968423377,8.603675585096985,20.702617836824825,-0.1305562290355029,0,0,18679.912767508573,0.18613128672545048,0.004446571848044793,0.007723374200000002,0,0,0,0 +1935,1.0505968685462075,0.9186843152571444,0,0,3.826763235457096,0.12510996125638485,0.22028466,7.595823089281718,40.132859,35.15789985656738,1.3303298,0.22499790415167809,1.6675173,0,0,0,0,0,0,0,0,5.459979295730591,109.70014,0,457,4272.1486,1097.08012898763,124.8946043872966,308.2269795735677,529.4409406291938,0,0,0,0,0.019080033137773473,0.97427321,0,0,0,0,0,0,7.859843663027277e-6,7.500741299999999e-6,8.497191738570109e-4,9.5422447e-4,0,0,4.3423838117936003e-4,7.192557e-4,0,0,0,0,286.58704884847,1.332452330452497,18.317319645408826,91.90214074154562,8.779424673428734,20.543197042155484,-0.13182533090212795,0,0,20077.943320367118,0.18586353451204687,0.004446565833253165,0.0077230226,0,0,0,0 +1936,1.1503667221829357,0.9270693885573005,0,0,3.9720080230657695,0.13321496173739433,0.28820401,8.761372248331705,42.33712,35.23359902699789,1.7570203000000002,0.27499790986378986,1.6844464,0,0,0,0,0,0,0,0,5.4999799728393555,110.56758,0,456.999994913737,4275.9063,1101.8303019205728,126.46470475438792,309.01197306315106,550.0398548533171,0,0,0,0,0.07932233065366745,1.0455299,0,0,0,0,0,0,7.905807706265477e-6,7.545934399999999e-6,9.236086334567517e-4,0.001037276,0,0,4.367777898247975e-4,7.243709e-4,0,0,0,0,286.7470448811848,1.3386899894061661,18.652869642211954,95.83484543323485,9.362043924590697,21.164186541248704,-0.13309443276875307,0,0,21597.571787769164,0.185592517547358,0.0044465794538458185,0.007723846199999999,0,0,0,0 +1937,1.231103104871657,0.9045164915618376,0,0,3.977215074471826,0.14407995715737343,0.34372195,10.024959723154703,44.188471,35.3363987604777,2.1186454,0.3249979118506114,1.7013755000000002,0,0.0063900215,0,0,0,0,0,0,5.539980530738831,111.3625,0,457.00000254313153,4275.9946,1106.3199869791665,127.18233706750797,309.7639745076497,550.6109419060176,0,0,0,0,0.1400045237193505,1.1131878000000002,0,0,0,0,0,0,7.951771749503678e-6,7.5821791e-6,0.0010039232001872733,0.0011274768,0,0,4.3931719604491565e-4,7.2845477e-4,0,0,0,0,286.95104471842444,1.3465253526433507,18.73588299543127,95.84567433043011,9.575630542004474,20.850604708617507,-0.13436353463537815,0,0,23231.712031323073,0.1853182578338796,0.004446548409759998,0.0077218498,0,0,0,0 +1938,1.1614219711074325,0.9073215418860066,0,0,3.8795464313880084,0.1580399548014005,0.39883954,11.266163110733032,49.06474,35.46979935963949,2.4891541,0.3749979188044866,1.7183046999999998,0,0.1328808,0,0,0,0,0,0,5.579981207847595,112.0603,0,456.99999745686847,4271.2734,1110.6307983398435,127.90539303616418,310.2939758300781,535.4268484555511,0,0,0,0,0.20000430569052696,1.185033,0,0,0,0,0,0,7.997735792741878e-6,7.6064912e-6,0.0010912219295278192,0.0012254241,0,0,4.4185659983971465e-4,7.3116337e-4,0,0,0,0,287.191042582194,1.3551266769032138,18.7206280051743,93.2370606174549,9.13361208452991,20.283818003860038,-0.13563263650200325,0,0,21542.975865724657,0.1850407365123296,0.004446620470844209,0.0077285525,0,0,0,0 +1939,1.2326137038964111,0.9058800276933815,0,0,4.010820601451636,0.1736899564663569,0.43390074,12.575761953989664,56.68305400000001,35.62149874369303,2.745053,0.4249979183077812,1.7352338,4.437717252585571e-4,0.68779311,0,0,0,0,0,0,5.61998176574707,112.8293,0,457.00002034505206,4270.1197,1116.909678141276,129.50135676592018,310.8509750366211,554.5379171230255,0,0,0,0,0.26000453531742096,1.2571398,0,0,0,0,0,0,8.043699835980078e-6,7.6395717e-6,0.0011861117285055418,0.0013320616,0,0,4.443960084851521e-4,7.3488257e-4,0,0,0,0,287.3870468139648,1.3668291715856424,18.987929691357078,97.34535423251211,9.632984018885308,21.020853325485078,-0.13690173836862835,0,0,23010.268809183824,0.1847599106254542,0.004446447691104065,0.11813875,0,0,0,0 +1940,1.332494477928578,0.8934636293441599,0,0,4.026253626433618,0.19239995131889978,0.50172554,14.090854724248251,67.98074100000001,35.804999033610024,3.2190952,0.4749979227781296,1.7521629,0.009225911945880702,1.4928916,0,0,0,0,0,0,5.6599823633829756,113.75015,0,456.9999643961589,4276.3916,1120.120178222656,130.13499426241637,311.35697682698566,550.4654056455058,0,0,0,0,0.3200042446454366,1.3304593999999998,0,0,0,0,0,0,8.089663500262153e-6,7.6912641e-6,0.0012892556163327147,0.0014481828,0,0,4.469354122799511e-4,7.4074684e-4,0,0,0,0,287.61904144287104,1.3795892066065865,18.93380647928792,96.49612886832482,9.961368880607099,20.566275747266797,-0.13793690008074544,0,0,25159.0741191676,0.1844758339571321,0.0044469935819506645,0.21814961,0,0,0,0 +1941,1.3573323902091925,0.87608140300394,0,0,4.050294266866393,0.21106995145479837,0.64957282,15.872149070103964,81.740279,35.991299311319985,4.2240743,0.5249979098637899,1.769092,0.04815833130851388,2.2339929,0,0,0,0,0,0,5.69998296101888,114.54353,0,457.0000813802083,4282.9257,1123.240509033203,132.2180939399341,311.81097412109375,552.9500650768001,0,0,0,0,0.3800046021739642,1.4028748,0,0,0,0,0,0,8.135627467709128e-6,7.727317500000001e-6,0.0014013840700499713,0.0015741503,0,0,4.494748160747501e-4,7.448086699999999e-4,0,0,0,0,287.8640467325846,1.42706317607174,19.034030783582587,97.09407345232208,10.193711740010501,20.462031367555745,-0.1386016615843945,0,0,26113.949704774812,0.1841885864846894,0.012151915968085328,0.1951164,0,0,0,0 +1942,1.3590493190022876,0.8973145216954003,0,0,4.1141932838166495,0.23562495286266008,0.84353078,18.12043031056722,95.021136,36.23889923095703,5.585489,0.5749979317188263,1.7860212,0.112600847457846,2.976471,0,0,0,0,0,0.19841173,5.739983518918355,115.26991,0,456.9997380574544,4303.7401,1128.1901550292966,134.70602408126945,312.17197672526044,560.1841861089208,0,0,0,0,0.4400041376550992,1.4745563999999998,0,0,0,0,0,0,8.181591510947328e-6,7.7551846e-6,0.0015232670799984287,0.0017109548,0,0,4.5201422229486826e-4,7.4792699e-4,0,0,0,0,288.1380538940429,1.5298185446895778,19.210183227285178,98.65719695401302,10.345483778655613,21.014193770024683,-0.13926642308804354,0,0,26702.042786503276,0.18389809416798145,0.018664849922060966,0.16898031,0,0,0,0 +1943,1.4029458246329907,0.8921248427380299,0,0,4.11408578168194,0.267039954662323,0.80476688,20.794118722279865,89.521615,36.56109873453776,5.4576739000000005,0.6249979237715403,1.8029502,0.20245546102523804,3.7199961,0,0,0,0.056451758,0,4.3053247,5.77998411655426,116.04761,0,457.93199666341144,4331.4951,1132.6601562499998,136.62968688428126,312.3899790445964,561.0185502959332,0,0,0,0,0.5000047385692596,1.5467027,0,0,0,0,0,0,8.227555554185528e-6,7.789335e-6,0.0016557506072179724,0.0018597366,0,0,4.545536309403057e-4,7.517695e-4,0,0,0,0,288.78102874755854,1.6777932069727464,19.226489945128584,99.48634644476039,10.644062862464148,20.76469900653816,-0.13993118459169265,0,0,27110.348585419746,0.1836043762155363,0.023900681796173256,0.14684461,0,0,0,0 +1944,1.3879131189978564,0.8983189521156985,0,0,4.111269896041665,0.30831495175759,0.41764093,23.86478344599406,72.69430200000002,36.99279912312826,2.9606569,0.6749979356924692,1.8198794,0.3176470845937729,4.4638059000000005,0,0,0,0.97266311,0.019433656940236688,16.545617,5.8199847141901655,116.85265,0,460.7425028483073,4354.745,1136.270060221354,138.93105622391963,312.41297149658203,569.4275578497453,0,0,0,0,0.5600039213895798,1.6191675,0,0,0,0,0,0,8.273519597423729e-6,7.8268219e-6,0.00179975672896641,0.0020215068,0,0,4.570930347351047e-4,7.559967e-4,0,0,0,0,289.00005086263013,1.8537439967013465,19.454671365649084,102.00830515112277,10.972149966258387,20.918122282494288,-0.14059594609534168,0,0,26578.15151015907,0.18330738198668892,0.027877628337591887,0.11439264,0,0,0,0 +1945,1.180916481863783,0.8988221719461101,0,0,3.970406317162407,0.33637995769580203,0.20111842,25.904248396555584,68.369262,37.297698974609375,1.5076942,0.7249979277451833,1.8368084,0.4580556924144427,5.2077233,0,0,0.004844144840414326,3.4593405,0.4215002196530501,24.846154,5.85998531182607,117.6118,0,463.24369557698566,4376.5008,1139.32036336263,141.02296395690516,312.38497670491535,562.3881403027648,0,0,0,0,0.6200050512949625,1.69101,0,0,0,0,0,0,8.319483640661929e-6,7.8587212e-6,0.0019562874901263663,0.0021972582,0,0,4.596324409552229e-4,7.595796e-4,0,0,0,0,289.2270406087239,2.0468366239992983,19.530998731486306,102.38686289278726,10.811058367654892,20.630415192374578,-0.14126070759899073,0,0,23414.92285804937,0.18300712894373766,0.03101034214099248,0.080798572,0,0,0,0 +1946,1.2942110656768657,0.9829470073282762,0,0,3.9716964354580995,0.3442649617791176,0.27970458,27.504756927490234,74.71723399999998,37.39169883728027,2.0726649,0.7749979496002197,1.8537378,0.6235543092091879,5.9856104000000006,0,0,0.08337228807310264,4.940467900000002,1.6357106665770214,24.839378,5.899985949198405,118.39896,0,465.7432912190755,4399.6117,1143.6604919433591,142.70640224525258,312.38997141520184,555.2899629515077,0,0,0,0,0.680003434419632,1.7631907999999998,0,0,0,0,0,0,8.365447683900129e-6,7.894034299999999e-6,0.002126432334383329,0.0023883489,0,0,4.621718496006603e-4,7.635561099999999e-4,0,0,0,0,289.4270451863606,2.2422352077889016,19.68948842063387,102.65818348678006,10.80993836386383,20.305933499558623,-0.14192546910263978,0,0,23137.2912384495,0.18270359473494088,0.03229169764866432,0.06430042700000001,0,0,0,0 +1947,1.4498949379331847,1.013635265025484,0,0,4.004289599390247,0.3536549558242162,0.34838359,29.078561464945476,84.081746,37.50009854634603,2.6369074,0.8249979366858801,1.8706665,0.8140119264523188,6.4443541,0,0,0.3000110412637393,4.8390374000000005,2.835014005502065,24.982371,5.93998658657074,119.2973,0,468.2434260050456,4428.0553,1149.6402994791665,144.7944964951042,312.48597208658856,563.4037753734774,0,0,0,0,0.7400057514508566,1.8372679,0,0,0,0,0,0,8.41141172713833e-6,7.9428476e-6,0.0023113751861577234,0.0025963146,0,0,4.647112509701401e-4,7.6908855e-4,0,0,0,0,289.51104482014966,2.4286545050325703,19.916095128874474,104.15736760766261,11.489678423181335,20.190999473703123,-0.14259023060628884,0,0.0033728385,25978.580134271393,0.18239681638037056,0.03281248671313127,0.046731228,0,0,0,0 +1948,1.541746757752381,1.0217889660432258,0,0,4.123520872976997,0.3683149615923564,0.33316898,31.041143258412678,90.670686,37.670498530069985,2.6243892000000004,0.8749979635079702,1.8875961,1.0316545367240906,6.6649072,0,0,0.5000130111972491,4.856366099999999,4.025014281272888,24.987103,5.979986985524495,120.08364,0,470.7433776855469,4451.0369,1155.630167643229,147.27202945137043,312.5209681193034,586.5360800457117,0,0,0,0,0.8000023066997528,1.966277,0,0,0,0,0,0,8.45737577037653e-6,7.9780491e-6,0.002512403065338731,0.0033276717,0,0,4.672506547649391e-4,7.7305219e-4,0,0,0,0,289.55605316162104,2.589644895931103,20.349060560415165,108.09641738801687,12.195764994941479,20.65035706357972,-0.14325499210993792,0,0.023611977000000003,27162.316753376424,0.1820867991187164,0.0328332781791687,0.020169381,0,0,0,0 +1949,1.5150340802151026,1.0322291088892992,0,0,4.0957465510773075,0.38362496097882587,0.31424196,33.192337354024254,91.962416,37.855198542277016,2.5926444,0.9249979307254156,1.8955033,1.2518172562122345,7.1640705,0,0,0.7000119686126709,5.561141,5.215012947718303,27.295461,6.019987901051839,120.70601,0,473.243403116862,4466.7618,1160.3499450683591,150.21571488778258,312.63197072347003,588.4410386834926,0,0,0,0,0.8600076138973236,1.6426278000000003,0,0,0,0,0,0,8.50333981361473e-6,7.993390500000001e-6,0.0027309151094717285,0.02463759,0,0,4.697900658356957e-4,7.747269e-4,0,0,0,0,289.59805043538404,2.7140139811269637,20.909195897992674,109.1544257771438,11.863971231370714,21.081179377216955,-0.14391975361358694,2.747740879082509e-4,0.063741035,26198.851367200677,0.18177350173895448,0.03209515412648519,-0.0015784357,0,0,0,0 +1950,1.6956807866542396,1.0454343901508287,0,0,4.3312607912797665,0.3969699591398239,0.32876887,35.499832471211754,78.580053,38.023898442586265,2.8441101000000004,0.9749979873498281,1.9897329,1.4824664394060771,7.4706053,0,0,0.8938818424940109,8.1460574,6.382257183392842,32.673745000000004,6.059987783432007,121.62274,0,475.7314631144206,4499.2896,1163.820566813151,152.20100844625213,312.8209762573242,619.9439709148871,0,0,0,0,0.9275005906820297,1.0661465,0,0,0,0,0,0,8.549303477896805e-6,8.0453408e-6,0.003054187574889511,0.10531435,0,0,4.723294696304947e-4,7.806208900000001e-4,0,0,0,0,289.73904164632154,2.7868238058947905,21.601404570641137,113.85984719531825,13.132141828954166,22.105810561368756,-0.14458451511723602,0.001923504489241168,0.16053368,29148.546819670417,0.1814569633566329,0.03030576727663477,2.432756e-4,0,0,0,0 +1951,1.8173567042308394,1.2637884621306537,0,0,4.212336067356143,0.41064496090014774,0.33222262,37.58082548777262,70.47669,38.204298655192055,3.0430784,1.0244279702504475,2.1685287,1.7349158823490143,7.5542237,0,0,1.1468555231889088,12.050138,7.775353193283081,36.815853,6.099990487098694,122.51807,0.014330518,478.3116455078125,4529.1876,1168.810119628906,155.27193516536855,313.01397196451825,593.1994505844021,0,0,0,0,0.9349976976712545,1.0527789,0,0,0,0,0,0,8.59526744534378e-6,8.0850349e-6,0.006885135274690886,0.2343219,0,0,4.748688734252937e-4,7.8510233e-4,0,0,0,0,289.8600540161132,2.8307926461022945,21.710967064016447,109.09095441872181,13.152193894404679,20.398188183698103,-0.14710768873059346,0.005466860408584277,0.23983988,30378.934969744696,0.18113711866275609,0.028203126974403858,0.0011664316,0,0,0,0 +1952,1.8518759304813062,1.2915086581093504,0,0,4.27824996657228,0.42523996035257977,0.32854487,38.706894874572754,76.508762,38.406997998555504,3.2228257,1.079317679007848,2.4120426,1.984303871790568,7.673401400000001,0,0,1.5540266533692677,16.078842,9.444400389989218,40.441283,6.139426151911418,123.26435,0.21725302,481.16064198811847,4558.7052,1174.3108825683591,160.57335760480584,313.3419774373372,606.9563399935745,0,0,0,0,0.9200002650419871,1.4414744,0,0,0,0,0,0,8.64123148858198e-6,8.100092099999999e-6,0.02087512387273212,0.36283509999999997,0,0,4.7740828449605033e-4,7.867442699999999e-4,0,0,0,0,290.02505238850904,2.873469224433514,22.393786048989185,112.61821090484105,13.48661503998857,20.95793435117974,-0.1497592068193485,0.01499934789414207,0.24565292,30772.879377004218,0.1808140109638238,0.026776751192907493,-0.0020300648,0,0,0,0 +1953,1.9058871956207555,1.288662579097105,0,0,4.400134890913105,0.4392099554340045,0.31999622,40.05176067352295,81.681224,38.61429913838705,3.3863087,1.1389276186625164,2.8478934,2.2399121522903442,7.7034458,0,0,2.129436651865641,20.201055,11.213325262069702,45.581432,6.184987505276998,124.06078,1.3575508,484.1764450073242,4600.7084,1183.360656738281,165.68183230817434,313.72996775309247,623.9750547982311,0,0,0,0,0.9262516697247823,2.1004080000000003,0,0,0,0,0,0,8.68719553182018e-6,8.1248995e-6,0.04651178978383541,0.48047903,0,0,4.7994768829084933e-4,7.8950997e-4,0,0,0,0,290.3340403238932,2.918473220829267,23.086276532048977,116.77653779023555,14.050620354457529,21.600939708208692,-0.15241072490810365,0.024999434128403664,0.24572915,31392.44295532122,0.18048767518443254,0.02495241429035862,-2.2819236e-4,0,0,0,0 +1954,1.9553258305658399,1.3426832443153052,0,0,4.475107773130416,0.4534849599003792,0.29457384,41.54246679941813,86.86346999999998,38.84129842122396,3.4048632000000003,1.2079770465691884,3.2763156,2.4949118296305337,7.760213,0,0,2.8635963996251426,25.212381,13.203928073247274,51.892411,6.22998833656311,124.75392,3.6198833,488.50885518391925,4629.2231,1194.4306030273435,170.37100791893153,314.09496815999347,628.9096635314064,0,0,0,0,0.9637557764848074,2.8888848,0,0,0,0,0,0,8.73315957505838e-6,8.1370738e-6,0.08213070034980774,0.59576061,0,0,4.824870896603291e-4,7.9081967e-4,0,0,0,0,290.54804992675776,2.9653052307782946,23.518269296485517,118.7896928573186,14.352627821692423,21.654738949016565,-0.15506224299685875,0.034999388890961804,0.24580572,31601.64061572461,0.1801580463648328,0.0234999794823428,-0.0040708208,0,0,0,0 +1955,2.1387868172549656,1.3878206830387967,0,0,4.585745111893209,0.46671496083339054,0.26311875,43.17295900980631,91.980019,39.07069810231527,3.3346824,1.2937463521957397,3.6788015,2.7499121824900308,7.6370702,0,0,3.7677908142407737,30.727319,15.439632256825766,59.87188100000001,6.274988849957784,125.74327,6.4848679,493.2549794514974,4666.3367,1206.65092976888,174.7404470567501,314.4149703979492,641.3267253315221,0,0,0,0,1.0538601179917653,3.5564777000000003,0,0,0,0,0,0,8.77912361829658e-6,8.184845900000001e-6,0.1274599153548479,0.70910415,0,0,4.8502649830576655e-4,7.9623211e-4,0,0,0,0,290.84404500325513,3.016004167545106,23.788691617349485,122.54258151361353,15.359884890806127,21.61194057224027,-0.15771376108561386,0.044999435233573117,0.24588273,34555.402722250226,0.17982516920850813,0.021999980478237074,0.0010493547,0,0,0,0 +1956,2.291039468224933,1.4462836425278403,0,0,4.8444014888868745,0.478794959684213,0.22075982,44.93925635019938,97.008491,39.3001979192098,3.0796375,1.3882061143716176,4.2759912,3.006162941455841,7.543031599999999,0,0,4.90076740582784,33.546756,18.00713857014974,66.950489,6.319989720980327,126.58168,9.1561662,496.95969645182294,4699.2729,1221.1007995605466,180.671117460758,314.6979675292969,673.8062290292883,0,0,0,0,1.1860103805859883,4.5322657999999985,0,0,0,0,0,0,8.82508766153478e-6,8.2145095e-6,0.1822890266776085,0.82044371,0,0,4.8756590210056555e-4,7.995574900000001e-4,0,0,0,0,291.1870447794596,3.067693130108469,24.39548109092037,129.82302004314178,16.407730767105924,22.724482756858983,-0.16036527917436896,0.05499937882026037,0.24595899,37118.77108719959,0.1794890063461402,0.020458318758755922,0.006640162099999999,0,0,0,0 +1957,2.384773000160331,1.4774945790842637,0,0,5.084522572350242,0.489309956630071,0.18587639,46.82995192209879,102.11597,39.52009836832682,2.8571248,1.4974753856658936,4.9612019,3.2499133944511414,7.3765313,0,0,6.239397327105205,32.871446,20.977540334065754,72.204141,6.364989757537842,127.41838,11.488509,500.6978174845378,4733.2024,1235.8001810709634,186.0555677386444,314.9919611612956,695.9496130566932,0,0,0,0,1.3464653591314952,5.9875108,0,0,0,0,0,0,8.871051704772981e-6,8.2451464e-6,0.2464121406277021,0.92977447,0,0,4.901053131713221e-4,8.029950599999999e-4,0,0,0,0,291.5120417277018,3.1227659361540883,25.10938270800668,135.59152056062854,17.202288510585237,23.82634944628376,-0.16301679726312407,0.06499945092946291,0.24603635,38873.754310972414,0.1791495207576567,0.019499980999777716,0.004342369,0,0,0,0 +1958,2.4670954688378814,1.5285973472099872,0,0,5.060488042524024,0.4977349440256755,0.17928487,48.83994928995768,107.206,39.715097745259605,2.9954591,1.6274844805399578,5.6330503,3.4969948132832847,6.9087313,0,0,7.567232608795166,34.746284,24.184339841206867,80.925329,6.409992456436157,128.42262,14.781202,504.5039291381836,4771.3965,1247.4204813639321,188.38553994967657,315.344965616862,661.285485841322,0,0,0,0,1.5845945576826732,7.120203999999998,0,0,0,0,0,0,8.917015748011181e-6,8.2860065e-6,0.3196182499329249,1.0371306,0,0,4.926447145408019e-4,8.0761087e-4,0,0,0,0,291.7720464070637,3.18418831910038,25.26871426472444,129.20858361180427,17.043104741234497,22.24665040214954,-0.16566831535187918,0.07499935726324718,0.24611309999999997,39341.991357154206,0.1788067540033275,0.018499995737026136,0.0026052944,0,1.5255345e-5,0,1.550744e-4 +1959,2.6036729140488357,1.4736682886389454,0,0,5.186762349282971,0.505239948630333,0.18081021,50.97114499409994,112.29185,39.90489800771078,3.2476716,1.777483691771825,6.388022599999998,3.7265921036402383,6.8760458,0,0,8.797123988469442,43.506257,27.60905106862386,93.983467,6.4542984167734785,129.47587,18.063698,508.3637110392253,4808.726,1257.320078531901,192.68675731110378,315.8069661458333,665.4367222123257,0,0,0,0,1.9060347974300385,8.0253807,0,0,0,0,0,0,8.962979791249381e-6,8.3259739e-6,0.40169936915238696,1.1424694,0,0,4.951841207609201e-4,8.121238e-4,0,0,0,0,291.98704274495435,3.250322629161094,25.784568318874836,131.21049744121555,17.515266326606977,22.136950451664426,-0.1683198334406343,0.08499948245783646,0.30755864,41319.47350993611,0.1784607567238176,0.017499990140398342,8.684612300000001e-4,0,1.2225318000000002e-4,0,0.0012460364 +1960,2.728446849074149,1.4615195318866923,0,0,5.288213084302709,0.5130949467420578,0.17259465,53.211243311564125,117.2597,40.118597666422524,3.3209398,1.9469429155190785,7.3201718,3.938670496145884,7.2392631,0,0,10.23712126413981,56.28148100000001,31.60536019007365,107.5417,6.504989147186279,130.53321,21.750437,512.2328440348307,4847.0424,1264.1198730468748,197.26110047577146,316.62496693929035,668.5656629833454,0,0,0,0,2.2494065960248313,9.5885732,0,0,0,0,0,0,9.008943455531456e-6,8.3712137e-6,0.49244747559229535,1.2458107,0,0,4.977235318316767e-4,8.1724438e-4,0,0,0,0,292.2830454508463,3.323928526213912,26.127946785499923,133.33681491027784,18.137986763264845,22.068663139398165,-0.16971698815179884,0.09499939220647018,0.43040209999999995,42970.73471143208,0.17811146430862335,0.016499992460012436,-8.684921e-4,1.2107990556842196e-6,2.3072394e-4,6.978449713794059e-6,0.0023750868 +1961,2.7521018504089363,1.531158201999545,0,0,5.280187774913458,0.5207299540440241,0.16861102,55.563539822896324,121.58986000000002,40.34249718983968,3.4304351000000004,2.141221841176351,8.4287849,4.1636671622594195,7.4514735,0,0.0018618006,12.167853911717733,70.618557,36.23666445414225,123.80387,6.554991841316223,131.26152,27.278298,516.0400848388672,4864.0212,1269.4615275065103,205.13834130452685,317.29896291097003,701.0053452576341,0,0,0,0,2.637653867403666,11.884386,0,0,0,0,0,0,9.054907422978431e-6,8.367736999999999e-6,0.5916525920232137,1.346892,0,0,5.002629332011566e-4,8.1675024e-4,0,0,0,0,292.60204569498694,3.545375735491367,26.889738501199272,143.56526348207862,18.738996990578176,23.373573142607228,-0.17042405828273247,0.10999903393288453,0.55328481,48370.747602751726,0.1748425912224242,0.015499991675217947,-0.0026053238,9.686392521264983e-6,2.4913556000000003e-4,5.5827597558770016e-5,0.003546415 +1962,2.868392578555052,1.520724683920321,0,0,5.268371108547883,0.5278749416271845,0.17112099,58.007436752319336,125.71015,40.56609694163004,3.6249821,2.365680515766144,9.612767800000002,4.398663679758708,7.580527900000001,0,0.045181371,14.639893293380737,86.214551,41.47677803039551,144.89716,6.604418396949768,132.4011,32.049021,519.7264709472656,4895.6486,1282.5712890624998,207.2122991826155,318.0439631144206,678.8492233714484,0,0,0,0,3.1291542649269104,14.500089,0,0,0,0,0,0,9.100871466216631e-6,8.405538e-6,0.699107696612676,1.4460951000000002,0,0,5.028023394212747e-4,8.2101348e-4,0,0,0,0,292.9450378417968,3.678783292234149,27.391344297603926,140.1058920148071,19.332929386112895,22.550094638193304,-0.1711311284136661,0.12999879072109857,0.61483924,49373.4626711147,0.018878477916170075,0.01449999026954174,-0.0043425207,1.9372784966738738e-5,2.5250226000000003e-4,1.1165519572386984e-4,0.0049206759 +1963,3.036186160713145,1.5272093107248352,0,0,5.437875742912039,0.535164937376976,0.18314033,60.507436434427895,128.88013,40.80479653676351,3.9881367,2.6255189975102744,10.949721,4.63597031434377,7.911085400000001,1.4331860863118587e-4,0.24720738,17.71703306833903,101.83231,47.60459232330322,167.67883,6.659987608591716,132.99126,37.52532,523.2439982096354,4904.2354,1300.79057820638,216.19226558975322,318.64996337890625,741.3196016175318,0,0,0,0,3.753723760445913,17.280228,0,0,0,0,0,0,9.146835509454831e-6,8.3926404e-6,0.814602812131246,1.5429261,0,0,5.053417504920313e-4,8.194336200000001e-4,0,0,0,0,293.32704925537104,3.8037763068903097,28.744647607968993,156.13095399196706,20.520847373631998,24.609210933874923,-0.1718381985445997,0.15499834592143694,0.55366285,50918.547922521546,-0.7158139715324602,0.013499994995072484,-0.0078699311,2.905917745010811e-5,3.5209498e-4,2.0954201075558862e-4,0.005972759100000001 +1964,3.1935857269729495,1.5182530872301747,0,0,5.25990946510033,0.5425249338150024,0.20130699,63.07753308614095,129.76928999999998,41.05469576517741,4.432625700000001,2.9195976853370667,12.657214,4.877436995506287,8.477894599999999,0.003477728799528753,0.46848862,21.421671549479168,116.30072,54.79980500539144,189.8766,6.715564290682475,134.07707,49.914046,526.5386403401693,4933.087,1317.3704528808591,216.5561629558192,319.3329620361328,689.1114600087734,0,0,0,0,4.5027817487716675,20.771971,0,0,0,0,0,0,9.192799552693032e-6,8.436046300000001e-6,0.9379299183686575,1.6379776,0,0,5.078811470108727e-4,8.243428e-4,0,0,0,0,293.6850484212239,3.94575429191722,28.607416327576342,146.45477556142896,21.250626659387255,22.37762398460907,-0.17254526867553333,0.17999867846568426,0.49245891,52831.63766662475,-0.6203003960549346,0.012499973177909851,-7.597085899999999e-4,3.8745569933477476e-5,0.0010303711,3.218187654662567e-4,0.033580017000000004 +1965,3.342046614628416,1.5494103546996891,0,0,5.2700102527121695,0.5508499294519424,0.22504179999999996,65.62683486938477,129.69213,41.342495918273926,4.9089192000000015,3.2579756379127502,14.528257,5.135173638661702,9.0358315,0.019166271900758147,0.58010695,25.709799925486248,130.83983999999998,63.0290142695109,213.3919,6.764422178268433,135.19804,70.507935,529.5773620605469,4953.0596,1331.0602823893228,222.666415702745,319.81596120198566,709.3122962703268,0,0,0,0,5.391107479731242,25.0603,0,0,0,0,0,0,9.238763595931232e-6,8.4640089e-6,1.0688820282618205,1.7308461,0,0,5.10420553230991e-4,8.274721400000001e-4,0,0,0,0,294.04503885904944,4.115195266374096,29.972153677829578,153.40539119426893,22.08301053841794,22.64997293102378,-0.17325233880646695,0.1999987723926703,0.4926084,54063.80178149757,-0.2927293197139612,0.01137502615650495,0.015948649,5.60693097213516e-5,0.0021406888,4.596758565943067e-4,0.11324642 +1966,3.501720550339981,1.5517652807392261,0,0,5.285174795936927,0.5597749253114065,0.26721734,68.0712407430013,129.70542,41.65249570210775,5.6248074,3.653163174788157,16.547774,5.413369536399841,9.5008952,0.039499382954090834,0.77191369,30.50373379389445,147.99606,72.2479305267334,240.15802,6.8193081219991045,136.46754,94.258765,532.3371022542318,4976.4474,1342.240509033203,226.31069580205852,320.8799565633138,710.941466458106,0,0,0,0,6.472539742787679,30.477075,0,0,0,0,0,0,9.284727639169432e-6,8.5066137e-6,1.2072421511014302,1.8217969,0,0,5.129599594511092e-4,8.322890299999999e-4,0,0,0,0,294.45304361979163,4.31119735595728,31.553067549575943,156.4949809106804,22.847791402233124,22.434297142441455,-0.17395940893740058,0.21999895945191383,0.61550021,55269.31676159744,0.11690965230767818,0.010999986358607808,0.069786165,1.1921713667106815e-4,0.0031030971,0.0018055206843807052,0.20275693 +1967,3.6259660139730605,1.595865385821404,0,0,5.390458849300692,0.5701449265082678,0.32052973,70.42624282836914,129.68847,42.00469557444254,6.3547572,4.101901113986969,18.918172,5.707025408744812,9.9208119,0.06371349437783162,1.0373000000000001,35.86647764841715,169.42177,82.6101468404134,269.58286,6.879989941914876,137.66763,116.32544,534.8238169352213,4995.4184,1354.2715555826821,232.33314648826578,321.4799575805664,746.2098208746951,0,0,0,0,7.774255792299907,36.036945,0,1.246032e-5,0,0,0,6.8991852e-5,9.330691682407632e-6,8.544612699999999e-6,1.352812260389328,1.9105949,0,0,5.154993656712273e-4,8.365750900000001e-4,0,0,0,0,294.8600463867187,4.481777634666587,33.1677760500894,164.77531621039864,24.19623737938871,23.585293537089132,-0.1746664790683342,0.23999873300393423,0.7384486,54762.89709618766,-0.07633744709933905,0.011131961752350131,0.24404072,2.235555645408264e-4,0.0037542491,0.005476358346641064,0.26151045 +1968,3.8345952658425997,1.5469930909111562,0,0,5.370373092170119,0.5827049265305201,0.40423022,72.69054730733235,129.73308,42.41149616241455,7.332441499999999,4.61564834912618,21.713594,6.014501253763835,10.295172,0.09872918141384919,1.3673824,41.93913205464681,195.13757,94.25966453552246,299.7143700000001,6.939991156260173,139.24379,133.08156,537.0335591634115,5029.5667,1371.6504618326821,235.33540266621623,322.3889567057292,740.4824182303034,0,0,0,0.0092379775,9.383843421936035,40.359034,0,8.8038453e-5,0,0,0,4.8559101e-4,9.376655725645833e-6,8.6257131e-6,1.505382388830185,1.9976935,0,0,5.180387718913456e-4,8.458288900000001e-4,0,0,0,0,295.2690455118815,4.618299686146145,34.3815728401946,165.09570877308497,25.41081254044139,22.825796914652,-0.1753735491992678,0.26999801645676297,0.67731523,56868.37887037226,0.0011209927611538926,0.014528773414591948,0.44305972,3.60778462588011e-4,0.0055431793,0.010674211041380962,0.29037411 +1969,4.0615677268044985,1.5437089021510264,0,0,5.404091612813001,0.5976699193318685,0.5206411,74.8699499766032,129.76058,42.862396240234375,8.483171800000001,5.203845143318176,24.938178,6.334147016207377,10.638634,0.143262746433417,1.7120901000000002,48.922607421875,220.72612,107.28918075561523,327.55328,6.999991575876872,140.05867,146.61896000000004,538.9712473551432,5026.2804,1389.3417561848955,239.18485161256538,323.25095621744794,747.0297315350706,0,0,0,0.18322115,11.191637754440308,44.144508,1.2165773692155806e-6,9.3679956e-5,0,0,9.679108093981389e-6,5.038868e-4,9.422619768884033e-6,0.0098248184,1.6647424797217052,2.0817369,0,0,5.205781781114638e-4,8.450532600000001e-4,0,0.0011288309,0,0,295.681042989095,4.732615322675832,34.96181250811188,169.68157132242786,26.065069005292788,22.100489511661433,-0.17608061933020144,0.29999837279319763,0.67751619,58467.81079627766,0.07485921849687786,0.02660746080800891,0.55613635,5.134661914780736e-4,0.03648951,0.016677813526863854,0.30862539 +1970,4.323514044182916,1.5319290688025449,0,0,5.549708797290366,0.61744491259257,0.6581691999999999,76.96995290120442,129.69302,43.40139643351237,9.5318801,5.882411241531372,28.576904,6.6643119653066,11.00827,0.2035404990116755,1.8909658,56.95325533548991,245.38621,121.64918899536133,354.60102,7.059993505477905,141.52757,173.56366,540.6648610432943,5048.3132,1411.1005147298174,244.41839554629246,324.78295644124347,781.037552297546,0,0,0.001065175359447797,0.60795801,13.09374705950419,49.037394,8.557121153292732e-6,2.4685116e-5,0,0,6.793739824691632e-5,1.0851205e-4,9.468583508957332e-6,0.036330653,1.830672601858775,2.1644992000000003,0,0,5.23117584331582e-4,8.520249e-4,0,0.0042255569,0,0,296.0980377197265,4.714190307707546,37.469578527471604,179.6859546683907,27.824084069544437,22.780224323226346,-0.17678768946113504,0.32499857246875763,0.80047128,61529.779790205444,0.07891007914399001,0.042955159209668636,0.64373178,7.886756357038394e-4,0.11813403,0.022781516425311565,0.34789664 +1971,4.510244869270977,1.4055542417708098,0,0,5.703748992338275,0.6424449036518732,0.82992065,78.98995844523112,129.60227,44.007896423339844,10.711494,6.6607770919799805,32.729139,7.00438114007314,11.452529,0.27441523348291713,2.1402118,65.84650834401448,276.44309,137.13820521036783,387.53989,7.119412302970886,143.1196,217.72405,542.1264394124349,5067.5026,1431.1209615071612,249.2895330837902,325.3999557495117,796.2029425301106,0,0,0.021073126544555027,0.8564575999999999,15.120055437088013,55.790888,1.0061302646136028e-5,1.3254363e-5,0,0,7.890220331319142e-5,4.2594654e-5,6.875001223913083e-4,0.064586906,2.0029827058315277,2.2451174,0,0,5.256569905517002e-4,8.5867175e-4,8.593750105016322e-5,0.00774384,0,0,296.52204386393225,4.663522046368115,38.13342515565109,183.53555789915328,28.617263975091056,23.195116011534044,-0.17749263314257094,0.3549981142083804,0.86210262,61716.79562857309,-0.03213341039414315,0.06120223210503658,0.78786166,0.003391635837033391,0.2232129,0.029181620261321466,0.40686343 +1972,4.706494311867816,1.3269371347118073,0,0,5.971153374722522,0.6740748832623163,1.0559028999999998,80.9293607076009,129.65777,44.68869590759277,12.24311,7.553642193476359,37.465523,7.356679677963257,11.97792,0.34821991870800656,2.5517628,75.6708869934082,314.22879,153.8562266031901,427.68026,7.184317310651143,144.52172,267.60333,543.3849334716797,5079.1924,1449.2900187174478,257.2102054265862,327.3489532470703,868.4735707547015,0,0,0.06999984166274469,0.87667663,17.352389971415203,61.456633,1.0390318796756523e-5,1.3479254e-5,0,0,8.037302359298337e-5,4.3040854e-5,0.0025000001187436283,0.082580189,2.181452830632528,2.3233295,0,0,5.281963967718184e-4,8.6363194e-4,3.124999990783787e-4,0.010359322,0,0,296.9550399780273,4.9307421199057115,39.56446297363227,196.66552470793948,30.236221506038817,25.52743453960084,-0.17813366446922693,0.3899978771805763,0.86237286,63465.10424037791,0.049119653936524114,0.08156623815496762,1.0951867,0.010107177193276584,0.31882408,0.0366138257086277,0.4721474 +1973,4.975651785811607,1.318385656312959,0,0,5.895831575895738,0.7138798783222834,1.3307870000000002,82.79306348164876,129.79157,45.45469538370768,14.085332,8.576456785202026,42.979262,7.723947962125142,12.585161,0.43801355610291165,2.92937,86.87261581420898,338.0693,172.25726318359375,454.71123,7.255663514137268,146.54158,301.85553,544.4634094238281,5118.3195,1462.860677083333,260.2947249743578,329.90895080566406,826.0293132269293,0,0,0.11499984314044316,0.82240702,19.92769479751587,65.420113,1.0719714812997458e-5,1.3772853e-5,0,0,8.184554402153783e-5,5.4973948e-5,0.005062500150719036,0.090214925,2.365882933139801,2.4006492,0,0,5.307358029919366e-4,8.768767699999999e-4,6.328129966277629e-4,0.011968111000000002,0,0,297.3990402221679,5.050826137007638,39.9571427129374,186.52593193281965,31.240096880428535,23.455648107310147,-0.17877469579588295,0.42499801019827527,0.92401065,66317.71188639547,0.15522883058251086,0.1075315357496341,1.5930673,0.02092159477372964,0.39726303,0.04518213029950857,0.54390644 +1974,4.948149198232062,1.2905489996591684,0,0,5.971643938399686,0.7649898727734884,1.4191691,84.59316635131836,129.76026000000002,46.34259541829427,14.311146,9.748060464859009,49.247959,8.108936508496603,13.447442,0.5431961392362913,3.5184015,99.53890228271484,340.6055,192.56424713134766,453.22872,7.319503704706828,147.80664,327.35544,545.3698170979818,5113.8208,1476.140909830729,261.8082770537653,330.7559534708659,824.6214022160059,0,0,0.16126984233657518,0.76119143,22.525582949320476,71.666995,1.1049491528562308e-5,1.3967525e-5,0,0,8.331976338619522e-5,0.052416219000000014,0.008000000069538752,0.08706316300000001,2.556043048699697,2.474116,0,0,5.332752092120548e-4,8.7789564e-4,9.999999989910673e-4,0.01237887,0,0,297.8550415039062,5.0344191249004195,40.69211663930812,183.60052508219061,31.077406046065626,23.599624622127063,-0.17941572712253898,0.45999792218208313,1.0394718,65371.62666713273,0.10279066121396813,0.14653477569421133,2.1806547000000003,0.034983893080304064,0.67241083,0.05499073459456364,0.65809554 +1975,4.928622399679322,1.303204963553737,0,0,5.9984313740411705,0.8284898797671,1.4004084,86.32876841227214,129.65616,47.35769589742025,14.321042000000002,11.09574286142985,57.565811,8.51440660158793,14.538442000000002,0.661696677406629,4.217686799999999,112.33176358540852,337.71465,213.23522440592447,440.16522,7.389227231343587,148.91662,384.99818,546.1371358235677,5104.4298,1491.7409667968748,263.05854864525753,330.8269551595052,816.9194858581777,0,0,0.19499984259406725,0.80304672,25.179124514261883,79.153904,1.1379648640286177e-5,1.4151174000000003e-5,0,0,8.637850078230258e-5,0.19213674,0.010937500201786557,0.07287558599999999,2.7517531315485635,2.545125,0,0,5.35814615432173e-4,8.7775104e-4,0.0013671900087501854,0.011478755,0,0,298.32604471842444,5.2068127673577305,41.476725896945794,177.51306730736252,30.76637271161256,23.129653790732366,-0.180056758449195,0.49999761829773587,1.1646458,64182.768823129416,-0.20496901654447228,0.20330782110492387,2.8018363,0.051680791191756725,1.2682709,0.06614344008266926,0.8287437 +1976,5.1946610219984874,1.3202053582443383,0,0,6.237496531818932,0.8872098724047343,1.5554771,87.99307123819987,129.63321000000002,48.276095390319824,16.011714,12.636435270309448,57.24638,8.955106973648071,15.386466,0.8118081788221995,4.743647,124.73074785868327,329.27602,232.99722162882486,426.10768,7.465574224789937,150.23158,475.43135,546.7914225260416,5104.2152,1509.1109517415362,269.9482096580869,331.5449498494466,856.063491529847,0,0,0.22999984274307886,0.82394648,28.196115493774414,92.664426,1.171018743661989e-5,1.4358855e-5,0,0,0.007432716122517983,0.33759564,0.01350000019495686,0.047412585,2.9527832667032876,2.614347,0,0,5.383540216522912e-4,8.8049315e-4,0.001687499995265777,0.0091593417,0,0,298.8140436808268,5.352361696512741,42.5213569666273,186.24742729810202,32.28663209283211,24.40571791742575,-0.18069778977585105,0.5443803270657858,1.4235416,67153.40876186565,0.042795931279707856,0.27751198535164195,3.4107057000000003,0.08715698743859927,1.8435573,0.08035514317452908,0.98712807 +1977,5.364428639868427,1.3520979710065895,0,0,6.353178768287844,0.9490798612435659,1.6923549999999998,89.59247398376465,129.63647,49.29249509175619,16.762577,14.47871708869934,55.875241,9.431879123051962,15.71703,0.9836416741212209,5.1782548,136.7956975301107,306.11158,251.99420674641928,404.2283,7.534413854281108,152.04263999999995,533.0325,547.3396860758463,5117.6518,1527.680948893229,274.03015240270713,333.3529459635417,868.4313096928761,0,0,0.2649998404085636,0.93269902,31.407798290252686,109.06413,1.2041107462816095e-5,2.1399971000000003e-6,0,0,0.026895795327921707,0.42456315,0.015312500220413009,0.022180513,3.1589433749516806,3.5323931000000006,0,0,5.408934278724095e-4,8.8740955e-4,0.0019140600246222068,-0.0065053902,0,0,299.3190358479817,5.499463794793741,43.27485687581617,189.22553225601726,33.05929028320198,24.38724427025082,-0.181338821102507,0.5945511807998022,2.1583469,67777.19082397268,0.12845401331973466,0.3696969747543335,3.8826089,0.1504269844541947,2.1420878,0.09829714894294739,1.0852977 +1978,5.581802902559232,1.2993019000302957,0,0,6.57904481781486,1.0211598575115204,1.7691766,91.13187662760417,130.48848999999998,50.43949508666992,16.898235,15.96304734547933,72.245349,9.926631212234497,15.529417,1.1736451586087544,5.5214165999999985,148.00458017985025,278.45958,270.00118255615234,383.9896,7.609319130579631,153.91731,529.79652,547.7978973388672,5132.0601,1546.890899658203,276.33335446294114,335.00994873046875,897.405148357044,0,0,0.29872983197371167,1.277913,35.72357686360677,112.78031,1.237240955257827e-5,-6.2543157e-5,0,0,0.054136695029834904,0.45249588,0.016000000139077503,-0.059867027,3.3700035015741983,4.661461,0,0,5.434328243912508e-4,8.9480636e-4,0.0019999999882808575,-0.021383103,0,0,299.8450393676757,5.625120895967197,44.240892074424366,192.93479554653743,34.269193302792054,25.019744191924026,-0.18197985242916306,0.6599957346916199,2.8286901,68023.041876235,0.1506635484397897,0.4763076677918434,4.2701212,0.23020097613334656,2.1599238,0.1185080527017514,1.1209156999999998 +1979,5.730732140077329,1.2523176484359615,0,0,6.677231649399466,1.094819853703181,1.9203395,92.61308097839355,128.37989,51.557394663492836,17.898313,17.68312692642212,94.634628,10.421233495076498,14.991238,1.3782646457354228,6.1020639,157.6384735107422,271.13342,286.4941584269206,394.80033,7.689991553624471,155.58903999999995,518.50501,548.1820729573568,5138.651,1566.1608581542966,281.6000656120118,336.60494740804035,900.4664227016348,0,0,0.34251976509888965,1.7595655,40.48909950256348,113.22088,1.1487397311308692e-5,-2.0391387e-6,0,0,0.0849026944488287,0.42017076,0.016000000139077503,-0.17766763,3.7300036549568176,5.0937882000000005,0,0,5.459722354620075e-4,9.0008302e-4,0.001000000006267025,-0.0099825707,0,0,300.39303843180335,5.807081798508845,45.13478108156769,196.0169028731842,35.013987182511805,25.212479862598272,-0.18262088375581906,0.7699926396210989,2.8296177000000005,69119.86371174049,0.1473114304822424,0.5893768072128296,4.6513697,0.31519197672605515,2.0579417,0.13952905808885893,1.1328091 +1980,5.650947966828631,1.2441357938650308,0,0,6.618387124854692,1.1735098262627919,1.9633226,94.1031723022461,125.08456,52.72269503275553,17.664267000000006,20.167388280232746,120.23426,10.897735516230265,14.760860999999998,1.5939541260401409,7.2362595,166.07752100626627,276.09356,302.1822509765625,398.43779,7.769993821779887,157.04196000000005,513.02719,548.5012359619141,5131.8984,1584.940734863281,283.34647023515436,338.70494588216144,890.5114951943987,0,0,0.41178564727306366,2.0330453,44.551489194234215,118.29604,5.5193815645300974e-6,7.9351775e-5,0,0,0.11494099286695321,0.35605477,0.011000000056810677,-0.12485274,4.130003849665324,5.1732709,0,0,5.485116416821256e-4,9.0155542e-4,5.107808434938003e-5,0.0031252635,0,8.167018e-5,300.9650395711262,5.872959052014542,45.97852705498147,194.39124204024887,34.76440146642314,25.232545658292864,-0.18326191508247508,0.8899930367867152,2.8304822999999995,68783.84556601176,0.109190156973947,0.7097166180610657,5.1129913,0.39410896847645444,2.1545661,0.15989606082439423,1.1562096000000002 +1981,5.539335981414791,1.2528135487313492,0,0,6.577782229862206,1.2601898312568665,1.7391266,95.31219546000163,126.52811,53.97579542795817,16.187192,23.256973266601562,128.45086,11.349838097890219,13.920115,1.8424933552742004,8.637244699999998,174.73850377400717,271.00597,319.4201304117839,403.07178,7.849401632944743,158.51506,516.86109,548.7653757731119,5123.4643,1602.6506245930987,279.78942071631377,340.05894978841144,875.7816094417443,0,0,0.5049996227025986,1.96562,48.66220633188883,122.37567,1.075440430516513e-5,1.7112573999999998e-5,0,0,0.1399999943872293,0.32601335,0.0030000001109632044,0.11779446,4.560003956158956,4.4274361,0,0,5.510510430516055e-4,9.0259513e-4,1.2761924275158285e-4,0.038309698,0,6.9675129e-4,301.56203460693354,5.805407445505892,46.37436562130664,189.16861385900194,34.11541673008395,24.873295971397052,-0.1839029464091311,0.999993642171224,2.9541119,66688.82721964004,0.0757372745424995,0.8352456837892532,6.0090214999999985,0.4687449559569359,2.4863888,0.1800000655154387,1.1742814 +1982,5.477249508472458,1.2581454775126868,0,0,6.915258577522967,1.3425698479016621,1.6205522,96.45029131571452,129.38621,55.10939598083496,15.97381,27.298911412556965,128.57689,11.805440743764242,13.885459000000001,2.144632577896118,9.2748324,183.27747344970703,277.72577,335.1432698567708,391.79861,7.934991518656413,159.18065000000001,532.93449,548.9834696451823,5083.3728,1618.7305399576821,287.6693153882337,340.64394124348956,967.4292982868147,0,0,0.5972496171792349,1.6573363999999997,52.764092127482094,125.26367,1.2755718368377226e-5,-8.228379000000001e-5,0,0,0.1600000001490116,0.33083911,0.0020000001228860733,0.22216908,4.970003763834636,3.5575865,0,0,5.535904541223621e-4,8.9426293e-4,2.6965544202539604e-4,0.066661524,3.741915871084226e-6,0.0015785006,302.18704223632807,6.043062727559764,47.66689067623099,206.8844647776702,34.15609140912993,28.272205714382924,-0.1845634619404803,1.1199926137924194,2.9550432,65532.301753925305,-0.15641584008740989,0.9728992034991583,6.4693449,0.5532129456599554,3.0131287,0.2000000737607479,1.352411 +1983,5.483062192797363,1.4330241763538591,0,0,6.625402213840496,1.4098998308181763,1.8456854,97.67579015096028,130.75988999999998,56.16269588470459,16.384525,30.830673376719158,150.74703,12.194235563278198,15.564841,2.4999918937683105,9.057039,191.16732279459634,353.29433,352.50609588623047,385.70972,8.019996364911398,160.09108999999995,547.19948,549.1685434977213,5047.3484,1632.620147705078,281.617658355317,342.26594797770184,862.0214943304857,0,0,0.672999694943428,1.3378778,56.786487897237144,129.4055,1.1691284877694367e-5,-2.7098867e-5,0,0,0.17999999349315962,0.33559498,0.011000000212031106,0.09748991,5.270004232724507,3.8040369,0,0,5.561298603424802e-4,8.871233e-4,0.0029999999581680945,0.024088349,3.1704332892938204e-5,0.0020178464,302.84204101562494,6.065834079500119,47.64540210423812,183.83582233478342,33.285128980692804,24.459513427275525,-0.18530513482030356,1.2399930556615193,3.2014371,64552.41617363238,-0.6775945263802521,1.144959529240926,6.0034055,0.651974951227506,3.8198142,0.21950007850925127,1.378774 +1984,5.619005090796103,1.4612248534423995,0,0,6.8150189551184415,1.4820398290952046,1.954181,98.93998591105144,134.9934,57.26739501953125,14.927399,34.79922644297282,167.86607,12.642924229303995,17.177695999999994,2.8499913215637207,10.537606,199.96714146931967,352.61795,366.79923248291016,438.30954,8.103740215301514,162.15076000000005,546.6524,549.3226318359375,5054.1956,1643.5008544921873,285.00304516787423,344.00794728597003,889.7020107049092,0,0,0.7217137465874354,1.2391705,60.742489178975426,137.14096999999998,3.96903745780719e-6,8.659051799999999e-5,0,0,0.19999999552965164,0.48356263,0.017000000225380063,0.027417786,5.530004461606343,4.8805394999999985,0,0,5.586692617119601e-4,8.9282411e-4,0.005000000004656613,-0.04014793,7.402270027038564e-5,0.0043071608,303.5280380249023,5.996375963335671,48.69349353439086,189.33352573144714,34.32486538148798,25.326276357675727,-0.1860468077001268,1.3599929014841716,3.5706830000000003,65309.89915296105,-0.2289078353791943,1.295939067999522,6.3412338,0.7757129470507304,4.798725900000001,0.24612508217493692,1.1329507 +1985,5.678895002751574,1.4997437788078463,0,0,6.922761988583978,1.5687698423862457,1.930951,100.18199602762859,138.44665,58.3761952718099,13.863624,39.652387619018555,191.20489,13.144109964370728,18.042992,3.187290926774343,12.093107,214.03345489501953,321.80334,383.26725006103516,487.46531,8.199989477793375,164.43684,559.24581,549.4526824951172,5072.7864,1655.9104715983071,285.6752697155976,345.4589538574219,906.9368199480392,0,0,0.7549997667471567,1.4290266,64.80020904541016,148.48134,8.568774148898228e-6,2.1606645e-4,0,0,0.21999999756614366,0.56320674,0.01700000014776985,0.085787554,5.8700045347213745,5.2553933,0,0,5.612086727827167e-4,9.0213205e-4,0.003999999995964269,-0.006224988000000001,1.1811007364788868e-4,0.012966035,304.2470397949218,5.996554239215087,49.41563613245486,190.4568856663394,34.861509200143864,25.83243997550224,-0.18678848057995007,1.4999912877877553,3.6945657,65474.087150351224,-0.011715700559269468,1.4159816404183705,7.686271400000001,0.9354569266239802,5.5359652000000015,0.26520808786153793,1.1864916 +1986,5.784334367519234,1.5301135694160417,0,0,7.0137036621234845,1.6502498388290405,2.0447892,101.67297554016113,134.66824,59.28379599253336,14.595216,44.608107248942055,226.48099,13.69979476928711,17.343175,3.6499905784924827,11.156209,222.3396848042806,363.19165,402.41221872965497,561.19711,8.294995307922363,166.53505,605.54478,549.5567423502604,5079.9439,1668.7911478678384,290.8084487539618,346.90294647216797,914.5218093193049,0,0,0.7879217316706976,2.1480617000000004,69.13964017232259,163.26271,1.2043192891534696e-5,2.1612991e-4,0,6.836250999999999e-4,0.2599999929467837,0.57273931,0.018000000156462193,0.044305139,6.3100047906239825,5.6896951,0,0,5.637480790028349e-4,9.0805661e-4,9.999999941404287e-4,0.03179967,2.603702887427062e-4,0.028102657000000003,305.0020370483398,6.123193922877899,50.21167873708514,195.66522346659664,35.24652923018162,25.9121168517712,-0.18753015345977328,1.6499911447366078,3.9411958,65479.271483930934,-1.4658150072006793e-4,1.5741113722324371,8.619926699999999,1.1329799195130665,5.6626388,0.2791670933365822,1.453026 +1987,5.942054872368608,1.51568933473453,0,0,7.200139154017295,1.7349598209063213,2.1868179,103.0739803314209,140.05915,60.248695373535156,15.122737,50.83082103729248,234.71551,14.25549602508545,15.986362,4.105550249417623,11.176584,233.33564122517905,377.17492,423.347417195638,543.59326,8.389330943425497,168.70781000000005,636.85035,549.6467793782552,5087.8651,1683.749786376953,295.0485146932872,348.77494557698566,952.061149189977,0,0.0011578226,0.8391895890235901,3.2631248,73.98439725240071,177.25124,2.903536521140874e-5,5.821475400000001e-5,0,0.0048785865000000005,0.28999998917182285,0.79616882,0.022000000191231567,-0.099665792,6.710005084673564,6.538606400000001,0,0,5.662874803723147e-4,9.1426979e-4,0.0030000000745834163,0.0083239765,6.904602487338707e-4,0.044783508,305.7930348714192,6.350228641755308,51.33101365968814,203.58517005144802,36.43815818195585,27.251867169865875,-0.18827182633959655,1.7999912301699321,4.3106697,66721.09399661662,0.062169756099630324,1.7711602052052815,9.1692428,1.346309910217921,5.241268700000001,0.29950010031461716,1.7364871 +1988,6.133362796862496,1.5150947746951446,0,0,7.39663506024057,1.8262398143609364,2.2384091,104.16901715596516,134.89421000000002,61.255194981892906,15.295333,57.8955987294515,225.34631,14.756715536117554,14.052169,4.49442990620931,12.063592,244.82575480143228,324.40759,449.32311248779297,433.01446,8.48999317487081,171.54521,645.54402,549.7208353678385,5119.7697,1693.940928141276,298.68549508376714,351.2759323120117,950.4151874289803,0,0.34924766,0.9504593312740326,5.2661192,79.53813616434734,185.3279,3.188543450960424e-5,0.021115007,7.708864601833436e-5,0.06849384,0.32999999324480694,0.88192316,0.02000000032906731,-0.07366243900000001,7.220005750656128,6.627813900000001,0,0,5.688268914430713e-4,9.2784993e-4,0.0030000005305434265,0.034690666,0.001493088435381651,0.060567348,306.624043782552,6.188309996026968,51.72677741877051,203.53222760721053,37.7977892884268,27.185066126098715,-0.18901349921941984,1.9699894785881042,4.6802608,67287.48390226346,0.1102479335964212,1.9729202787081401,10.094657000000002,1.548219899336497,4.7030971,0.32425010204315186,1.770198 +1989,6.211121149262674,1.53212989041127,0,0,7.320233667650651,1.9231797953446705,2.2075539,105.88293329874675,105.50252,62.29139518737793,15.212081,64.49583530426025,212.83728,15.212542057037354,10.119863,4.9499895970026655,11.292045,256.58931223551434,246.46809,468.0721740722656,357.7641,8.589393774668375,174.22363000000001,713.52261,549.7808532714844,5139.3872,1705.6304423014321,302.164174394028,352.89392344156903,930.8467754620427,1.1203966126534699e-4,0.72136249,1.1215790609518688,10.730464,85.39031410217285,189.56819,3.284409467596561e-5,0.31476996,5.449304395976166e-4,0.67304705,0.38999999314546585,0.82629641,0.014000000199303031,0.054397397,7.7600061893463135,6.6572182,0,0,5.713662976631895e-4,0.0060655338,0.0030000010544123747,0.077007399,0.002615397213958204,0.07614778700000001,307.8310241699218,6.264529714671574,52.06403696267891,200.31650520357337,38.13825088093059,26.33140676747172,-0.18975517209924306,2.149989446004232,5.0499664000000015,67312.93275191178,0.14261546154697627,2.1840911904970803,10.904862,1.7223599056402843,4.3864096,0.35575009882450104,1.6702493000000005 +1990,6.186811699323791,1.4450968870559717,0,0,7.508271531599201,2.018889824549357,2.1076967,106.4680290222168,86.426532,63.32119528452555,14.407865,70.81883303324382,176.8456,15.573984305063883,7.0905085,5.40554936726888,10.591201,263.08519744873047,208.25652,482.7560577392578,333.97703,8.694339831670126,176.36773,658.40311,549.8308563232422,5137.248,1717.400675455729,305.27255465213847,354.07293192545575,940.5626313485474,0.03376847004983574,1.5203264,1.4477779567241669,17.768055,90.98358980814616,192.30881,0.002091195086904918,0.96053501,0.0077552789346858235,1.7208698,0.43999998768170673,0.69729352,0.014000000121692816,0.18589003,8.280006090799967,6.6838429,0,0,5.739056990326693e-4,0.02696988,0.005000001498653243,0.018320285,0.004025665286462754,0.091767095,308.68303680419916,6.277152282827942,52.52170067846646,203.0212309920509,38.25721546450458,27.365368354710768,-0.19049684497906635,2.3499877055486045,5.1743108,67094.07179291768,0.14079531171550244,2.425140698750814,10.051338,1.8762499292691548,4.2741531,0.38000010202328366,1.7373255 +1991,6.190131151726644,1.6368601104218738,0,0,8.011536269395817,2.113149801890055,1.982897,105.85304832458496,85.14222600000002,64.34609444936116,12.924815,76.4864673614502,120.64491,15.752021392186483,6.9542228,5.799989104270935,10.775591,267.79015350341797,159.81288999999995,493.7842102050781,286.27307,8.804992516835531,177.30503000000004,474.47964,549.8710784912109,5089.9323,1729.3305562337237,318.7311920514537,355.35293833414715,1129.9838832525568,0.06648059604534258,6.9394223,2.221526563167572,22.06288,96.40249379475911,185.52075,0.03069222376992305,1.727734,0.07582558194796245,2.7251313,0.48999999711910885,0.70613627,0.017000000070159633,0.24819351,8.820006291071573,7.057256599999999,0,0,0.0016515196378653247,0.058141591,0.008000002048599223,-0.073018715,0.005709253367967904,0.10715402,309.23303731282545,6.34494559215869,54.26130892359681,244.42863411026067,39.69249193256378,34.394938327949504,-0.1909628409298788,2.5599875847498574,5.29866,66472.31501729792,-0.4148185776434353,2.665145973364512,9.6580528,2.020599921544393,4.1585749,0.40500009556611377,1.6735462 +1992,6.145912972932644,1.683057085276074,0,0,7.364888993342175,2.20022984345754,1.9500444,104.98307355244954,85.437279,65.2670955657959,11.907588,80.40375582377116,74.361852,15.899934848149618,5.3089984,6.199989080429077,10.120439,270.7759323120117,106.91739,505.86798095703125,227.43518,8.91499400138855,179.3441,361.04368,549.9049123128256,5056.1355,1740.1392618815103,299.4017954744593,356.22894795735675,913.3754185979066,0.1707762268682321,22.26499,3.3005158503850303,24.233416,101.49227841695149,194.06099999999998,0.09482813626527786,2.4767485,0.19600565483172736,4.0250116,0.5199999809265137,1.0018637,0.026000000691662233,0.18194194,9.340006430943808,7.910261500000002,0,0,0.005856849117359768,0.088755914,0.0050000026628064615,-0.030822369,0.007651571494837602,0.12273589,309.7250391642252,6.358476438557756,52.37759098866641,198.23847301394608,38.71717596139569,26.648976889112614,-0.19129755052506844,2.769987682501475,5.4230636,64223.92565128395,-1.6835767484157795,2.8172022501627603,10.784362,2.161349892616272,3.8127392,0.4305000975728035,1.4631107 +1993,6.193394814861415,1.5467274300386273,0,0,7.531122846620259,2.2837098240852356,1.9984803,104.32304191589355,84.458339,66.09139442443848,11.381334,82.41623814900716,50.567396,16.066639582316082,3.463778,6.607129295667012,8.677164900000001,271.1687749226888,84.3251,511.9880956013997,231.9618,9.027161439259848,179.76429,256.33383,549.941884358724,5078.4684,1743.1006876627603,299.4425140657421,356.92495981852215,941.8816353260038,0.7146161670486132,34.33223,4.47598530848821,22.551362,105.4173412322998,208.33854,0.19552044942975044,3.0949997,0.36491671949625015,11.967198,0.5699999282757441,1.5166355,0.0330000047882398,0.157163,9.94000768661499,8.353483800000001,0,0,0.01262219933172067,0.11880940000000001,0.0010666858239953096,0.042782191,0.009837979606042305,0.13825367,310.09905242919916,6.310752016783032,52.78275226171121,203.77578316226604,39.74372708975235,28.114996259780565,-0.19163226012025816,2.9899867177009583,5.424762,63195.55051984089,-0.8170844043492784,3.0058298110961914,11.612337,2.2925199468930564,3.3180441,0.4508330797155698,1.2514505 +1994,6.240067755470377,1.5037166846247065,0,0,7.8957327340876935,2.36793980995814,2.1430557,103.57006708780925,86.05046,66.87479654947917,11.006658,83.36027018229167,37.565451,16.09994300206502,4.6095776,6.955350279808044,8.163642999999999,269.62779235839844,85.893495,518.2140757242838,238.58315,9.131617546081543,178.03958,159.08791000000005,545.3847249348959,5003.2837,1748.620371500651,310.25183676250725,358.2539596557617,1060.282744333416,2.2383394837379456,45.287421,5.687364776929219,24.423112,110.94440905253093,237.88968,0.32772576560576755,3.5515517999999995,0.6123692641655604,24.558229,0.6399997919797897,2.3253155,0.03700000451256832,0.20390529,10.600008169809977,8.737967999999999,0,0,0.021451599275072415,0.14808425,0.002012556239302891,0.0083003343,0.012253877784435948,0.15358509,310.80802917480463,6.441827000222701,54.21042306521078,231.0503542937696,40.27137015559246,33.14335063351852,-0.1919669697154478,3.2099871834119162,5.549182599999999,61820.50123949212,-0.0813850082344821,3.2168917854626975,11.303115,2.4025299350420632,2.9604627,0.4654170672098796,1.1962062 +1995,6.3773864537253155,1.4860805049306975,0,0,7.813189501191085,2.4555798172950745,2.3880707,102.88904825846355,80.480245,67.62789662679036,10.682998,83.83788744608562,23.473127,16.137446244557697,5.7076242,7.249991933504741,7.674757700000002,268.1038513183594,86.264975,524.6570994059244,210.72453,9.13146940867106,180.13151000000005,95.783763,552.4202321370443,5016.3948,1755.2296244303384,305.40958889562864,360.2389551798503,955.0363061603086,3.747459292411804,51.095458,6.54466180006663,27.59918,116.0475304921468,230.3453,0.4816569561759631,3.8771223,1.649199257294337,36.211193,0.7599995483954748,3.4395305,0.04200000377992789,0.29614801,11.270008246103922,9.315257,0,0,0.031974499113857746,0.17780027,0.00400000410930564,0.0084622213,0.014884675852954388,0.16982122,311.2790552775065,6.504076135852905,53.416717880413046,206.47424846775004,40.45040793019892,29.71540753892105,-0.1923016793106375,3.429987053076426,5.6736625,60635.50706790533,0.08530772110638411,3.4390769600868225,11.011358,2.4911099076271057,2.8923304,0.475000041226546,1.0842597 +1996,6.511379278926775,1.470193984753465,0,0,7.686339550726493,2.5522598028182983,2.6638414,102.31104151407878,75.256035,68.36059633890788,10.505743,83.94530232747395,13.005309,16.249948978424072,4.6522227,7.557493487993876,5.5242189,266.7558415730794,85.278741,531.4079996744791,170.78176000000005,9.06367564201355,183.44400000000002,59.514335,537.3112080891927,5297.7083,1757.1905924479165,307.29120752307955,362.00496164957684,930.0218807197676,6.036929090817769,53.568363,7.866570234298706,26.00128,124.7284984588623,224.86947,0.6497871528069178,4.0579149,3.2318945129712424,48.538296,0.9399992177883784,4.501452099999999,0.04900001051525275,0.39044285,11.990008195241293,9.7707047,0,0,0.04382059909403324,0.20547879,0.002013620309298858,0.11353612,0.01771567389369011,0.23841137,312.29801940917963,6.542220103334365,53.42127728765462,200.87242078907184,40.45019229181408,28.71419152495162,-0.1926363889058272,3.6599862774213157,5.5527008,59650.01603284395,0.14569222560343534,3.602302074432373,10.510994,2.569999933242798,2.8654227000000003,0.48625003546476364,0.84755661 +1997,6.574573878777592,2.183313990263035,0,0,8.269788742717703,2.6610097885131836,2.8728436999999998,101.2420825958252,75.489912,69.06989606221516,10.417958,83.52113278706868,10.398164,16.362446784973145,3.7691062,7.813324570655823,3.4559389,265.2918523152669,86.34144599999998,534.9630432128906,160.63531,9.140432437260946,180.149,29.550907,542.7740173339844,5288.9251,1761.5010782877603,331.28891975653016,363.25195566813153,1204.992305406782,7.7147689660390215,55.76348100000001,8.959980805714926,29.370536,127.37702624003093,240.5221,0.8248193363348643,4.6266327,5.39930792649587,58.758537,1.2099987765153248,5.5717023,0.06000001293917497,0.427562,12.750008503595987,9.7952259,0,4.9588597e-5,0.05661919961373011,0.25820595,0.004000423466398691,0.1113431,0.02073227148503065,0.31501343,313.18303171793616,6.740456045264001,56.11803188775538,264.67515030448345,41.89315592193428,38.341382315947115,-0.19297109850101685,3.889986495176951,5.7834259,59868.27681505938,0.16690248873741567,3.780295729637146,9.824276800000002,2.650669972101847,2.8566852000000003,0.49000003685553867,0.76826308 +1998,6.590459870606787,1.5412452817195224,0,0,8.412226876444452,2.781449774901072,2.9899069,100.31604703267415,72.916263,69.77859687805176,10.335348,82.96492513020833,12.992477,16.399945735931396,3.9615346,7.95416518052419,2.9318362,263.8838653564453,86.348141,537.6670277913412,156.67666,9.254634141921997,176.1082,23.412636,570.7273610432943,5175.5355,1770.2906799316404,315.332621195414,365.9329554239909,1085.4305991966446,9.836338837941488,55.95678100000001,9.961479743321737,28.471196000000006,134.272824605306,234.46613,0.9994525363047918,6.9049469,8.110631505648294,70.04979200000001,1.5299981534481049,6.8917397,0.07300002624591191,0.54029666,13.540009021759033,10.02529,0,3.583493100000001e-4,0.06999999843537807,0.60512272,0.01000000579127421,0.06915097099999999,0.026339268311858177,0.38665542,313.90700531005854,6.446521520705138,56.589344323708055,232.31801820181306,42.33468433879227,37.81227830332195,-0.1933058080962065,4.1099876165390015,5.6031107,58604.367585517175,0.1710925825750941,3.8873608311017356,10.323837,2.724999964237213,2.701239,0.49000004182259244,0.76943857 +1999,6.661329053494626,1.3034304715400178,0,0,7.698162125432142,2.9081997672716775,2.9607505,99.330872853597,72.96355,70.47599538167317,10.216505,82.38263448079427,14.054175,16.44995387395223,3.9749853,8.04999581972758,3.1538842,262.5458628336589,82.703538,540.1430358886719,140.42543999999998,9.093777736028036,168.37661,18.420173,562.6231740315756,5112.4264,1778.199513753255,309.40837085260006,367.84497833251953,940.7006779859273,11.384798526763916,58.33870699999999,11.354286829630533,25.741051,138.68090184529623,252.31636,1.2204217116038005,8.6848445,11.121968984603882,91.978363,1.9399973253409069,7.9486502,0.08600003769000371,0.7424206999999999,14.300010919570923,10.07373,4.148790035666631e-6,0.0031081514,0.08999998929599921,1.0699013000000002,0.011000006149212519,0.13954925,0.03241546514133612,0.49435229,314.70898946126295,6.28115080714577,54.76937230485621,205.11187816433736,40.94720104039744,30.449171325383368,-0.1936405176913962,4.358643651008606,5.1676463,55523.54473764534,0.17324185027932018,3.9997291962305703,10.262658,2.8026700019836426,2.1509855,0.49000003188848495,0.7706312 +2000,6.893167303200749,1.2013380488633538,0,0,7.457347231717921,3.038709739844004,2.8153943,98.27196884155273,72.65140799999998,71.17349561055501,9.9231457,81.99841690063477,9.4043884,16.499963760375977,3.9867142,8.149996836980185,2.3476517999999995,261.1698455810547,76.330076,542.3829905192057,122.76605,8.829522927602133,165.25876,19.471227,552.0705413818359,5074.2696,1778.0101216634112,310.18680982649335,369.1249745686849,886.5647302341199,13.121398448944092,56.341686,12.102788925170898,25.730152,143.4614372253418,263.60627,1.603711913029353,10.640667,14.691894769668579,99.657424,2.429996371269226,8.598756300000002,0.10600005090236664,0.86319988,15.120010137557983,9.2978389,2.9456416086759418e-5,0.034006926,0.1699999620517095,1.411492,0.013000006632258495,0.2699959,0.040547359734773636,0.57423278,315.7589950561523,6.112229814393959,54.5095965154282,195.32415818527357,41.26362178323956,27.98197839802492,-0.19397522728658584,4.563808560371399,5.2735332,55661.00151337025,0.17458241694797966,4.127887845039368,9.480134800000002,2.8623799681663513,1.9694412,0.49000002940495807,0.77151922 +2001,6.95708692825445,0.961802096435875,0,0,7.591758768528899,3.162919799486796,3.0480682,97.35795720418294,70.65696899999998,71.8547960917155,10.593275,81.4894282023112,5.9590470999999985,16.54997984568278,3.2771364000000003,8.262498617172241,1.1600545,259.5498352050781,68.271466,543.1950124104818,111.64066,8.354893207550049,165.59900000000002,19.806901,542.7083333333334,5094.2258,1776.5307312011716,312.89637869980686,370.67298889160156,881.6703955806449,14.544998407363892,56.36878100000001,13.052591880162558,24.490463,149.25739415486655,261.60586,1.978332092364629,11.075295,19.702295621236164,96.243251,2.9699952602386475,9.8521252,0.132000050197045,0.94275566,15.880009412765503,8.984000300000002,2.597141228761757e-4,0.80619906,0.2699999349812667,1.6540308999999995,0.019000007305294275,0.6107305000000001,0.050659650626281895,0.63867332,316.4930165608723,6.188009183487292,54.709896387749005,196.1877828105409,41.3771755400566,27.8779984365221,-0.19430993688177556,4.776847044626872,5.3282102,56049.16642558323,0.17084303620462507,4.220908443133037,8.8337936,2.8942899902661643,2.3248261,0.49000003188848495,0.74608572 +2002,7.097947294929641,1.0706525114551886,0,0,8.046474186766174,3.2808697621027627,3.4534372,96.3429667154948,70.45667399999998,72.51259549458821,11.982167,80.81803385416667,3.1513602,16.5999755859375,2.420559,8.29999844233195,0.95011524,257.66879018147785,63.484809,543.6559855143229,101.90454,8.333909193674723,161.14055,12.302716,535.3501332600912,5096.5932,1778.960947672526,322.2788312475723,372.83499399820965,970.7244171943499,15.739598194758097,50.843174,13.693090518315634,25.156097,154.4252700805664,270.32175,2.527012268702189,12.214474,23.51545794804891,102.73275,3.5299941102663674,11.617585,0.15900006766120592,1.2107813,16.560010592142742,9.7208997,0.002832789449409271,2.9170651000000003,0.3899999012549718,2.8037817000000005,0.030000012057522934,1.313749,0.06128753939022621,0.73327062,317.1010182698567,6.359556247633107,57.07665954461615,218.4604141242816,41.898783266207694,33.80824328599571,-0.19464464647696525,4.990507483482361,5.4976481,55687.522360887495,0.17652225756277531,4.2806588013966875,8.3685909,2.9381799499193826,2.2797577,0.49000003188848495,0.67660085 +2003,7.424688347669062,0.9010419027374732,0,0,8.2416975979600835,3.4251197973887124,3.16329,95.34536170959473,69.839024,73.28449440002441,12.579882,80.10183588663737,5.7693016,16.59995237986247,1.7336337,8.320768594741821,0.74505988,255.41280873616537,62.27795500000001,543.3510030110677,97.844828,8.222527821858725,158.92828,10.122917,538.8634541829427,5113.7538,1783.5898132324216,328.12422419548386,375.41099802652997,944.7470786126371,16.890098412831623,44.441172,14.409090280532837,25.070909,158.99640528361002,287.30923,2.9139525095621743,15.640539000000002,27.517083009084065,117.40605,4.223822851975759,13.114832,0.1890000912050406,1.560512,17.260011196136475,11.005369,0.06715815638502438,5.226518,0.5027138615647951,4.785689700000002,0.060000043672819935,2.2356391,0.07306782963375251,0.85366012,317.73000590006507,6.4283053046514125,57.69037487838639,214.40339143057142,42.682165561174564,34.362181347359645,-0.19497935607215489,5.207866946856181,5.541719400000002,57641.72369815564,0.165150043379564,4.319008390108745,8.0831154,2.99712997674942,2.0262772,0.48882503310839337,0.60195554 +2004,7.812644316268693,1.0382131676166668,0,0,8.542465507294889,3.577999790509542,2.2029533,94.38845952351888,66.998563,74.13009516398112,12.194883,79.26674334208171,9.216749,16.590060075124104,1.4729968999999998,8.341978788375854,0.75667708,253.1937993367513,60.966802,542.8480021158854,87.654103,8.019330620765686,156.21655,9.7469995,537.7152353922526,5141.4447,1784.230285644531,338.9417722149104,376.9870020548503,945.5469500687323,17.334598859151203,49.135801,15.063492933909098,28.554887,164.7063954671224,307.5767600000001,3.5451226830482483,15.758879,31.54472287495931,125.65071,5.00792149702708,13.097501,0.23300011828541756,2.0510461,18.06001361211141,12.712613,0.23797391975919405,6.6512131,0.8247378170490265,5.4873038,0.12000008982916673,3.1186526000000003,0.08672221936285496,0.97410928,318.3570175170898,6.590470046881482,58.11358476694662,216.68728340618873,44.556855897235216,32.33033041098627,-0.19531406566734455,5.435196399688721,5.6480085,60340.85188935469,0.1719032893302405,4.3401593764623,7.526764599999999,3.035939951737722,2.1192661,0.4857220376531283,0.55294607 +2005,8.093491315549059,1.025657164253795,0,0,8.840128385718105,3.697199821472168,1.9480504,93.41565831502278,63.195607,74.98279317220052,11.060838,78.73161888122559,4.6297025000000005,16.54227288564046,1.8139658,8.346869071324667,0.58070615,250.9148038228353,60.33117900000001,542.1459757486979,71.956593,7.931297580401103,154.12291000000005,7.5405195,538.5567677815756,5209.9819,1783.360432942708,346.39555462360056,378.9070078531901,950.5924444363927,17.678198496500652,53.955471,15.682193517684937,33.447493,170.47949091593424,329.52471,4.231992959976196,16.143675000000002,36.60471884409586,126.49199,5.8813802401224775,12.434284,0.28500013550122577,2.365528,18.97001536687215,14.626529,0.46645688513914746,7.0791974,1.2757697900136311,6.3606922,0.21000011265277863,3.4180583,0.10239290756483872,1.0845927,319.1300023396809,6.6935794842136405,58.883410476258234,218.7880647839753,45.62238086061233,32.723990706702715,-0.19564877526253424,5.6560072501500445,6.2799143,62587.82671838024,0.14980785321635395,4.354827245076497,6.9433284,3.073349952697754,1.8947828,0.481325035293897,0.46971744 +2006,8.358134409609946,1.092642827822681,0,0,8.925648149522456,3.767239769299825,2.045423,92.3141638437907,60.048081,75.77629216512044,10.21735,78.12813186645508,0.6450640999999999,16.514484405517578,1.7510311,8.368909200032553,0.58710647,248.66479873657227,63.03720300000001,540.64996337890625,65.575271,7.679868618647258,152.41471,9.3190485,536.2959035237631,5272.2746,1783.421223958333,356.46968956461853,381.01000722249347,986.1510088892475,18.454998811086018,51.911598,16.647892634073894,36.489809,177.60554122924805,346.30497,4.8289631605148315,19.891066,40.86165841420492,133.41048,6.627838969230652,14.118518,0.3600001533826192,2.3531588,20.050018151601154,12.639849,0.7066208471854528,6.875404400000001,1.6065597534179688,8.3862482,0.32000014930963516,2.5592336,0.1196288987994194,1.1852524,319.9329986572265,6.875606952566932,60.37974252884005,229.89543951646962,46.63913373990392,34.3551466019379,-0.19598348485772396,5.891855637232463,6.9409178,63046.345147395674,0.12455411284421772,4.33484947681427,6.3118449,3.1184199452400208,1.5902358,0.47626903901497525,0.43579597 +2007,8.681148087085731,0.9662119668592635,0,0,9.284494092478702,3.864439765612284,1.7666157999999998,91.12946637471516,57.25715400000001,76.47559356689453,9.3272415,77.3146406809489,4.5089203,16.49068291982015,1.5545493,8.360188722610474,0.78280059,246.4138298034668,64.737513,538.4259847005209,61.623755,7.651655554771423,147.28895,9.6981304,544.8235321044922,5250.6823,1788.9513142903643,355.0225755363805,382.60301971435547,945.8695944358407,19.124198754628498,49.953532,17.730092525482178,37.109679,185.02057011922201,357.26506,5.509383638699849,26.595246000000003,45.3168420791626,127.25708,7.37440820535024,16.399738,0.4300001785159111,2.4154053,21.274523735046387,9.3262891,0.9124758193890253,6.6980995,2.1004197100798288,8.4029745,0.41000018020470935,2.7884,0.13823089003562927,1.2649376,320.64601389567054,6.596141361261144,60.965826091796124,219.70587066030026,48.13085999118788,33.27729799228883,-0.1963181944529136,6.164003173510234,6.9754073000000005,62641.35919619402,0.1214193886258194,4.309016704559326,5.7707437000000015,3.1368099649747214,1.7021554,0.46845003962516785,0.59162888 +2008,8.733139806444965,0.6683379874909382,0,0,9.091850913798911,3.9428598284721375,1.746034,89.87336858113606,56.837697,77.15499623616536,9.0353429,76.47364234924316,8.339533900000001,16.458677450815838,1.9164483,8.382678429285685,0.45696793,244.47682189941406,63.06087700000001,536.3339691162109,57.108479,7.470538298288981,144.47281,6.337644999999998,546.2872212727865,5191.6855,1798.4196472167966,360.4917104977002,384.739018758138,912.5104843071592,19.5464989344279,54.881457,18.928292592366535,33.091627,193.09755071004233,362.72449,6.4292839368184405,30.815622,49.719340324401855,138.28669,8.326615969340006,17.544095000000002,0.5000001961986223,2.6196596000000003,22.006818771362305,8.8123411,1.0804997682571411,7.076053,2.7087196509043374,10.669375,0.4322652171055476,2.7884,0.15781688069303831,1.3164863000000002,321.57499186197913,6.638276368451454,61.316441745117054,214.69549502704018,48.035076099905325,31.619011505170853,-0.1966529040481033,6.453542669614156,6.8835341,61275.77057569818,0.13327703444478306,4.247629324595134,5.5737514,3.1567599376042685,1.6171325,0.4623090426127116,0.63840472 +2009,8.584990106780188,0.7548632834009588,0,0,9.109514001671727,4.015999873479207,1.7995506999999995,88.57357406616211,55.35525300000001,77.73389498392741,9.6854874,75.92381922403972,5.7877004,16.42168601353963,1.6755174,8.389018853505453,0.38354940000000004,242.4608243306478,60.065148,533.7759806315104,54.788238,7.171112656593323,144.24254,3.7694324,539.8231658935547,5145.2658,1802.1011861165362,364.2003633816462,386.28002166748047,917.7292309352042,19.870198726654053,61.50634300000001,19.930792331695557,32.081369,200.3144874572754,366.5558,7.706023693084717,33.926872,52.765931129455566,160.10848,9.35536535580953,21.142804,0.5700002362330755,2.9666725,22.658213933308918,9.933600300000002,1.2225398023923237,7.852249400000002,3.002319614092509,16.223306,0.4763352448741595,2.9974,0.17747688045104346,1.4335011999999998,322.27500661214185,6.712782947167917,61.37795929686438,218.75811433708597,46.48309573333753,31.77247636618844,-0.19698761364329287,6.728324254353841,7.159861,58721.16171394653,0.1066842123978326,4.189547856648763,5.2570896,3.1835699876149497,1.7272846000000002,0.4620170295238495,0.47723148 +2010,8.97554368419623,0.8851100551119334,0,0,9.665129375647625,4.092629869778951,1.7742175999999998,87.3809585571289,56.090865,78.37379455566406,10.48947,75.33903121948242,4.4070317,16.415090084075928,1.4644148,8.386359055836996,0.65896445,240.45181020100912,58.86009,531.2819671630859,52.271203,7.125164190928142,142.6745,2.4614781000000003,535.3102569580078,5179.9719,1807.850667317708,370.8962527865861,388.71703084309894,953.2286302920015,20.67949867248535,65.20953100000001,20.536893049875896,29.851794,207.74554824829102,361.74691,8.963194449742636,35.069515,57.8515370686849,165.044,10.426983912785849,20.460881,0.650000254313151,3.1827017000000004,23.296514352162678,11.247607,1.3827498058478038,8.7778712,3.920989453792572,15.914528,0.5346282621224722,3.3098,0.19690187896291414,1.3375544,323.140993754069,6.708375367844256,62.4444721228101,224.60211210242653,47.318297037341715,34.61053251023121,-0.19732232323848264,7.010202924410502,7.2759031,58249.4552717192,0.1379875550624469,4.121598919232686,4.897554799999999,3.1960699955622354,1.8511656000000003,0.4581970274448395,0.39655186 +2011,9.255966259655072,0.9136545403955806,0,0,9.478876565579496,4.170369823773702,1.8467555,86.05878257751465,57.565927,79.04059473673503,11.056837,74.6382344563802,4.6237938,16.361384391784668,2.0468287,8.387009064356485,0.85601742,238.2458127339681,62.415615,528.532969156901,52.120722,7.106488426526387,140.42156,3.0036158,534.1656138102213,5252.9333,1813.0701904296873,372.6576831783338,390.9440205891927,906.7673675143252,21.561198711395264,67.69059200000001,21.354194005330402,28.645628,214.5593744913737,366.94427,10.464804887771606,43.330418,62.84794902801514,190.47655,11.92148502667745,22.158614,0.7400002578894297,3.410604,24.134215990702312,12.498165,1.555159757534663,9.4654578,5.171979467074077,20.415233,0.5557872851689657,3.5841,0.21967886885007223,1.1291345,324.15898386637366,6.648935415452754,62.39874927347722,218.62875398112044,48.492221562223264,32.518259270416976,-0.19765703283367228,7.307322184244792,7.4656928,58834.52201769484,0.1090569133516887,4.04886809984843,4.3361773,3.2309599916140237,2.096153,0.450772022207578,0.39105944 +2012,9.386649744945927,0.9706890780006704,0,0,9.705285171316014,4.244799852371216,1.794986,85.01424598693848,59.464919,79.78919410705566,9.6609456,73.97862943013509,5.4529267,16.34028704961141,2.0520518,8.405529419581095,0.7168607,236.20683797200522,70.235225,525.833974202474,53.35878,6.98785674571991,136.71475,3.0096674,537.6538136800131,5232.3317,1815.2612304687498,380.80976664436446,393.0159912109375,949.6022183538887,22.543598651885986,63.311547,21.61989386876424,25.468261,220.10840479532877,356.29002,11.74120569229126,45.81505,67.7508716583252,205.00564,12.84508458773295,21.423000000000002,0.8300002614657084,3.2771162000000005,24.988317330678303,12.591587,1.750789761543274,9.054248,5.6421693166097,24.0671,0.6353292663892111,3.9269,0.23203588897983232,0.98551995,325.0049921671549,6.7427966320324675,63.84845417053954,229.10693623998705,48.176745092515574,35.82690195539086,-0.197991742428862,7.598473310470581,7.7062836,57925.01408286904,0.13867518125293046,3.9642380078633628,3.8379813,3.252539952596029,1.7328717,0.44370101888974506,0.41594871 +2013,9.65939649634906,0.9186575700100624,0,0,9.560553735096205,4.328779697418213,1.6324652,83.89107831319173,62.512861,80.53269322713216,8.3027436,73.30493418375652,6.5167934,16.327280203501385,1.9408617,8.421289602915445,0.61330322,234.38086700439453,75.740842,523.1149698893229,54.819887,6.848844488461812,133.39273,1.8384424,539.620361328125,5231.2321,1822.580841064453,381.59439281758614,395.72497812906903,901.2387566412425,23.414698759714764,59.817791,22.207694212595623,19.467118,226.13036346435547,342.89828,13.946606318155924,38.8888,74.7700621287028,202.01825,14.522682428359985,23.8069,0.9300002753734589,2.9986006,26.02762222290039,11.604213,1.9295397400856018,9.7859,7.50248924891154,21.452891,0.6930242776870728,4.2254,0.2427388938764731,0.87225171,325.91899108886713,6.847910646098343,63.650976650406456,219.3811792508812,47.50620674450057,33.245565827085585,-0.19832645202405166,7.910870313644409,7.686158,57413.51786587013,0.15767154312883705,3.8617884318033853,3.5745493,3.305999994277954,0.96258078,0.43652602036794025,0.44442215 +2014,9.719224641485487,1.0957648183627096,0,0,9.744379658087517,4.398729681968689,1.6517,83.06993166605632,53.5475,81.09249051411946,9.8735,72.71072514851888,2.8024,16.306567827860516,1.6696,8.429009358088175,1.114899,233.07986958821616,54.9365,520.5809682210287,28.9612,6.6860902309417725,133.6791,1.2625,539.5420227050781,5358.4982,1831.470998128255,387.873539205888,397.5469792683919,964.047618150183,23.809098561604817,59.82,22.075694402058918,22.47,229.5420659383138,358.8813,15.355007727940878,57.1243,80.51572863260905,200.0249,15.25278091430664,25.2487,1.0056702643632889,3.5393,26.890435059865315,12.991,2.047369738419851,10.1025,8.336968978246054,30.4858,0.7650303095579147,4.4701,0.24726289386550585,1.1516,326.98799133300776,6.916164550612366,65.0368536583283,233.52551800560903,47.385237858595374,36.145821385036584,-0.19866116161924133,8.221433083216349,7.8784,57093.261416151574,0.13977836334337682,3.7536577781041465,3.4810000000000003,3.2976099848747253,1.2299,0.431062030295531,0.3854 +2015,9.724603236619341,0.9598830811179276,0,0,9.727423576882975,4.480093280474345,1.57,82.11866696675618,47.5476,81.83400344848633,10.8699,72.07452328999837,0.8742,16.297694365183514,1.6696,8.460016886393229,1.6714,231.45189793904623,43.5734,518.0192006429037,14.6096,6.666919310887654,133.82299999999998,0,549.8295237223307,5404.8069,1841.932698567708,388.0727956633219,399.9484380086263,934.3498846847751,24.225419680277508,59.82,22.050151189168293,22.47,233.6953557332357,358.8813,17.754984617233276,78.7906,84.76873016357422,201.9534,16.743229468663532,32.381,1.0911712447802226,3.6633,27.946349143981934,14.4857,2.2239372928937278,11.7285,9.834507067998251,38.5792,0.8708427498737971,4.6492000000000004,0.252859881768624,1.1516,328.1795221964518,6.937624392238832,65.2797031342445,227.24481931953318,47.34877178380204,34.746024228000806,-0.19899587121443105,8.56844687461853,8.02,50464.18814475436,0.12580052700903913,3.6527326901753745,3.2933,3.2844176292419434,1.3378,0.4261276225248973,0.3481 +2016,10.013741602251057,0.979403185055414,0,0,9.82751752222496,4.563908735911052,1.6596600000000001,80.86898740132649,45.017160000000004,82.689117431640625,11.2461766,71.41004117329915,0.78156,16.274217287699383,1.515231454,8.488823413848877,1.61422146,229.59260686238608,41.88082,514.5848337809244,12.88774,6.884193102518718,135.46401999999998,0,563.0184326171875,5443.890939999999,1851.5941670735674,394.14907892736056,403.1169662475586,941.1198962981038,24.5268071492513,60.8428786,22.259799003601074,21.990155599999998,237.72884623209634,351.625206,21.18809429804484,93.91969799999998,90.27674547831218,208.27624,19.401511351267498,37.15426,1.2003816664218903,3.92278474,28.906192779541016,12.0596,2.4407403667767844,13.1617472,12.709800879160563,32.11786,0.9575240612030029,4.79475966,0.26552996039390564,1.15000362,329.07597605387366,7.048999348611951,65.97180534645365,229.20016347636044,47.99024446123041,34.964871728904704,-0.19933058080962068,8.884455919265747,8.09776,50246.948865253005,0.11182269067470146,3.5471805731455484,3.07158,3.2989591360092163,1.29166,0.4188620373606682,0.33428 +2017,10.302879967882772,0.9989232889929004,0,0,9.927611467566948,4.607269128163655,1.74932,79.52149200439453,42.486720000000005,83.15111478169759,11.6224532,70.57024574279785,0.68892,16.217710336049397,1.360862908,8.531164328257242,1.55704292,226.3097178141276,40.18824,508.82093811035156,11.16588,6.612607518831889,137.10503999999997,0,558.953867594401,5482.97498,1874.5094502766924,400.2253621913992,405.8129628499349,947.8899079114324,24.882307052612305,61.8657572,22.128499031066895,21.5103112,240.96188100179037,344.369112,23.484392801920574,109.04879599999998,96.15281359354655,214.59908,20.73361603418986,41.92752,1.2800614635149639,4.18226948,29.84339475631714,9.6335,2.6266002853711448,14.594994400000001,13.159700552622477,25.65652,1.028480052947998,4.94031932,0.2750229810674985,1.14840724,329.79097493489576,7.16037430498507,66.66390755866279,231.15550763318768,48.63171713865878,35.18371922980861,-0.1996652904048104,9.182497024536133,8.175519999999999,50029.70958575165,0.09784485434036376,3.4357704718907676,2.8498599999999996,3.304409146308899,1.24552,0.4108490248521169,0.32046 +2018,10.592018333514488,1.0184433929303867,0,0,10.027705412908933,4.680299162864685,1.83898,78.11889394124348,39.95628000000001,83.9226131439209,11.9987298,69.81634140014648,0.59628,16.17810869216919,1.206494362,8.575854221979776,1.49986438,223.64271036783853,38.49566,504.26490783691406,9.44402,6.674074093500773,138.74606,0,563.0249328613281,5522.05902,1889.7912801106768,406.3016454554378,408.8319574991862,954.6599195247611,25.234007358551025,62.8886358,22.12489938735962,21.0304668,243.3929125467936,337.113018,27.654491901397705,124.17789399999997,101.12263425191243,220.92192,23.086318333943684,46.70078,1.3833015064398448,4.44175422,30.62699604034424,7.2074,2.8790802558263144,16.0282416,13.852500200271606,19.19518,1.0967500607172649,5.08587898,0.2840619782606761,1.14681086,330.56497192382807,7.271749261358189,67.35600977087194,233.11085179001495,49.27318981608714,35.40256673071251,-0.2,9.511056661605835,8.25328,49812.470306250296,0.08386701800602607,3.3270804484685264,2.62814,3.307799200216929,1.1993800000000001,0.40350202719370526,0.30663999999999997 +2019,10.881156699146203,1.037963496867873,0,0,10.12779935825092,4.757189035415649,1.9286400000000001,76.66949653625488,37.42584,84.71961339314778,12.3750064,69.06674067179362,0.50364,16.133007367451984,1.052125816,8.618204116821289,1.44268584,220.94971084594727,36.80308,499.65891520182294,7.722159999999999,6.745414813359578,140.38708,0,566.6924743652344,5561.14306,1905.4509480794268,412.3779287194764,411.94596099853516,961.4299311380897,25.59500741958618,63.9115144,22.090399265289307,20.5506224,245.07293574015299,329.856924,32.42229096094767,139.30699199999998,106.07874488830566,227.24475999999999,25.72521988550822,51.47404,1.4924715757369995,4.7012389599999995,31.20109748840332,4.7813,3.1593303084373474,17.4614888,13.745100259780884,12.73384,1.1626000603040059,5.23143864,0.29246698319911957,1.1452144800000001,331.35597483317054,7.383124217731308,68.04811198308107,235.06619594684219,49.91466249351551,35.62141423161641,-0.2013113569174612,9.842686812082926,8.33104,49595.23102674894,0.06988918167168841,3.216950456301371,2.40642,3.30922923485438,1.15324,0.3960900257031123,0.29281999999999997 +2020,11.17029506477792,1.0574836008053594,0,0,10.227893303592905,4.837939063707988,2.0183,75.1811974843343,34.8954,85.54191462198894,12.751283,68.32203992207845,0.41100000000000003,16.083006381988525,0.89775727,8.65830397605896,1.3855073,218.23470815022787,35.1105,495.01991017659503,6.0003,6.819554328918457,142.0281,0,570.2189381917318,5600.2271,1921.4410196940103,418.45421198351505,415.1549555460612,968.1999427514183,25.961607456207275,64.934393,22.030299186706543,20.070778,246.1749496459961,322.60083,37.76749038696289,154.43608999999995,111.01973342895508,233.5676,28.644521872202557,56.2473,1.6073916753133137,4.9607237,31.56669855117798,2.3552,3.46379025777181,18.894736,12.978800137837728,6.2725,1.2262900869051616,5.3769983,0.30027897904316586,1.1436181,332.16397603352857,7.494499174104427,68.74021419529022,237.02154010366945,50.556135170943875,35.84026173252031,-0.20243007209721306,10.177406787872314,8.4088,49377.991747247586,0.05591134533735071,3.106110473473867,2.1847,3.3087992866834006,1.1071,0.3886290242274602,0.27899999999999997 +2021,11.399425870554612,1.047739857794184,0,0,10.27385938903962,4.922539075215657,1.95221,73.66110038757324,33.28538,86.3897139231364,12.508895200000001,67.58244132995605,0.37899000000000005,16.028905550638836,0.833926213,8.696233908335367,1.342148655,215.4997075398763,33.879090000000005,490.3589045206706,5.50149,6.894375880559285,140.81847,0,573.7017059326172,5575.05016,1937.741027832031,423.7418701302643,418.4609603881836,969.9193312624566,26.330307165781658,63.8401921,21.948999404907227,19.2265454,246.83200709025064,304.67177,43.67028967539469,160.22836699999996,115.94567743937175,230.11956,31.838222980499268,58.23306,1.7279016772905986,4.97197436,31.724599202473957,2.17242,3.789330303668976,19.5283976,11.670699914296469,5.78571,1.2880400816599529,5.297624010000001,0.3075319801767667,1.101461536,332.9889704386393,7.5910451448815195,69.30189134162886,237.98645069295486,50.66649462784504,36.00451055061217,-0.2035384872214208,10.515106916427612,8.43464,49409.010014825646,0.041933509003013035,2.995190461476644,2.06237,3.306599259376526,1.07222,0.3811350191632907,0.26903 +2022,11.628556676331305,1.037996114783009,0,0,10.319825474486334,5.007649183273315,1.88612,72.11549949645996,31.67536,87.2420145670573,12.2665074,66.84813944498698,0.34698,15.971004883448282,0.770095156,8.732083717981974,1.29879001,212.74970245361328,32.64768,485.68591054280597,5.00268,6.9219997723897295,139.60884,0,575.2236633300781,5549.87322,1954.3710835774737,429.0295282770136,421.8429590861003,971.6387197734948,26.667807420094807,62.7459912,21.834698994954426,18.3823128,246.44208145141602,286.74271,49.88598918914795,166.02064399999995,120.59212239583333,226.67152,35.20372327168783,60.21882,1.8495916724205017,4.98322502,31.77099911371867,1.98964,4.117210328578949,20.1620592,10.231200059254965,5.29892,1.3439800540606182,5.21824972,0.3138199845949809,1.059304972,333.8299763997395,7.687591115658611,69.8635684879675,238.9513612822403,50.776854084746205,36.168759368704016,-0.20463660229008448,10.854906956354776,8.460479999999999,49440.02828240371,0.02795567266867536,2.884720424811045,1.9400399999999998,3.302719295024872,1.03734,0.3736230209469795,0.25905999999999996 +2023,11.857687482107998,1.0282523717718337,0,0,10.365791559933049,5.089899142583211,1.82003,70.55040168762207,30.065340000000003,88.07791264851888,12.0241196,66.11943944295247,0.31497000000000003,15.910004456837973,0.7062640990000001,8.765923500061035,1.255431365,209.98670450846353,31.41627,481.0109151204427,4.50387,6.889102458953857,138.39921,0,574.1700388590494,5524.69628,1971.4010823567705,434.3171864237628,425.28295644124347,973.3581082845329,26.94620720545451,61.6517903,21.677599271138508,17.5380802,244.59511057535806,268.81365,56.17848873138428,171.81292099999996,124.71738878885905,223.22348,38.640723864237465,62.20458,1.9682416915893555,4.99447568,31.80199893315633,1.80686,4.4311502774556475,20.7957208,8.997730096181234,4.81213,1.3906900684038799,5.138875430000001,0.31876497715711594,1.0171484080000002,334.683972676595,7.7841370864357025,70.42524563430614,239.9162718715257,50.88721354164737,36.333008186795865,-0.2057244173032041,11.19560702641805,8.48632,49471.04654998177,0.013977836334337678,2.7751904328664145,1.81771,3.297249356905619,1.00246,0.36610501756270725,0.24908999999999998 +2024,12.086818287884691,1.0185086287606584,0,0,10.411757645379764,5.169289151827495,1.75394,68.97130266825359,28.45532,88.89731407165527,11.781731800000001,65.3964392344157,0.28296,15.846204121907553,0.642433042,8.797823429107666,1.21207272,207.2137018839518,30.18486,476.3409144083659,4.00506,6.83940311272939,137.18958,0,572.2970733642578,5499.51934,1988.791097005208,439.60484457051206,428.7839533487956,975.0774967955712,27.173306941986084,60.5575894,21.48639949162801,16.693847599999998,241.73414103190103,250.88459,62.54588921864828,177.60519799999997,128.35975710550943,219.77544,42.14782555898031,64.19034,2.0839216709136963,5.00572634,31.81739902496338,1.62408,4.732960383097331,21.4293824,7.933380126953125,4.32534,1.429240067799886,5.05950114,0.322450985511144,0.974991844,335.5519714355468,7.880683057212795,70.98692278064478,240.88118246081115,50.997572998548534,36.49725700488772,-0.2068019322607796,11.537206808725992,8.51216,49502.06481755984,0,2.6669804056485495,1.6953799999999999,3.2902593413988748,0.96758,0.3585920160015424,0.23911999999999997 +2025,12.315949093661384,1.008764885749483,0,0,10.45772373082648,5.245819290479024,1.68785,67.38310432434082,26.8453,89.70041338602702,11.539344,64.67943890889485,0.25095,15.779903570810953,0.578601985,8.827853202819824,1.168714075,204.4337018330892,28.95345,471.680908203125,3.50625,6.784991939862569,135.97995,0,570.1644846598307,5474.3423999999995,2006.5111389160154,444.8925027172613,432.3469518025716,976.7968853066094,27.35590712229411,59.4633885,21.26819944381714,15.849615,238.19415028889975,232.95553,68.9858881632487,183.397475,131.5551643371582,216.3274,45.723825772603355,66.1761,2.196731686592102,5.016977,31.817299524943035,1.4413,5.024230360984802,22.063044,7.007880051930745,3.83855,1.4605600933233898,4.98012685,0.3249589850505193,0.93283528,336.4319763183593,7.977229027989887,71.5485999269834,241.84609305009656,51.1079324554497,36.66150582297958,-0.20786914716281107,11.879806915918985,8.538,49533.0830851379,0,2.5604504545529685,1.5730499999999998,3.2818293968836465,0.9327,0.3510950158039729,0.22914999999999996 +2026,12.545079899438075,0.9990211427383079,0,0,10.503689816273194,5.319489240646362,1.62176,65.79030545552571,25.235280000000003,90.48711268107097,11.2969562,63.96834023793539,0.21894,15.711603085199991,0.5147709280000001,8.856093088785807,1.12535543,201.6497014363607,27.72204,467.0369135538737,3.0074400000000003,6.729251305262248,134.77032,0,567.9466145833334,5449.16546,2024.5311584472654,450.1801608640106,435.9749501546224,978.5162738176476,27.500006993611652,58.369187600000004,21.029099305470783,15.0053824,234.2322006225586,215.02647000000002,75.4966869354248,189.18975199999997,134.33561197916666,212.87936,49.367326418558754,68.16186,2.306771695613861,5.02822766,31.80199925104777,1.25852,5.3063502709070844,22.6967056,6.196370085080464,3.35176,1.4854800601800282,4.900752560000001,0.3263629873593648,0.890678716,337.32697550455725,8.073774998766979,72.11027707332204,242.81100363938197,51.218291912350864,36.82575464107143,-0.2089260620092984,12.22340703010559,8.563839999999999,49564.10135271596,0,2.4558804035186768,1.45072,3.2720394134521484,0.89782,0.3436260173718135,0.21917999999999999 +2027,12.774210705214768,0.9892773997271327,0,0,10.549655901719909,5.39030925432841,1.55567,64.19690577189128,23.625260000000004,91.25731213887532,11.0545684,63.2634391784668,0.18693,15.641402880350748,0.45093987100000005,8.882613182067871,1.081996785,198.86370086669922,26.49063,462.4119110107422,2.50863,6.673080285390218,133.56069,0,565.69964599609375,5423.98852,2042.8211568196612,455.46781901075985,439.6699473063151,980.2356623286859,27.575006643931072,57.2749867,20.753599484761555,14.1611498,229.3392702738444,197.09741000000002,82.07608731587727,194.98202899999998,136.73210271199545,209.43132,53.07722695668539,70.14762,2.4141116937001548,5.03947832,31.771299521128338,1.0757400000000001,5.580510377883911,23.3303672,5.478399991989136,2.8649700000000005,1.5047200520833333,4.82137827,0.3267329881588618,0.848522152,338.23396809895826,8.17032096954407,72.67195421966068,243.7759142286674,51.32865136925203,36.990003459163276,-0.20997267680024168,12.567906856536865,8.58968,49595.11962029403,0,2.353520393371582,1.3283900000000002,3.2609594464302063,0.86294,0.3361920192837715,0.20921 +2028,13.003341510991461,0.9795336567159574,0,0,10.595621987166624,5.458269278208415,1.48958,62.60670598347982,22.01524,92.0112133026123,10.812180600000001,62.56473859151205,0.15492,15.569702386856079,0.38710881399999997,8.90746291478475,1.03863814,196.0787010192871,25.25922,457.81091054280597,2.00982,6.6167298555374146,132.35106000000002,0,563.438720703125,5398.81158,2061.3711344401036,460.75547715750906,443.43195088704425,981.955050839724,27.55570650100708,56.1807858,20.428899606068928,13.316917199999999,223.16629028320312,179.16835000000003,88.72248649597168,200.774306,138.7726287841797,205.98327999999998,56.85222816467285,72.13338,2.518841723601023,5.05072898,31.725399017333984,0.89296,5.847760399182637,23.9640288,4.837220112482707,2.37818,1.5189400613307953,4.742003980000001,0.32613198459148407,0.806365588,339.15397135416663,8.266866940321162,73.23363136599932,244.7408248179528,51.43901082615319,37.15425227725513,-0.21100899153564087,12.913306951522827,8.61552,49626.137887872086,0,2.253550370534261,1.20606,3.2486594518025718,0.82806,0.32880301773548126,0.19923999999999997 +2029,13.232472316768154,0.9697899137047821,0,0,10.641588072613338,5.523369391759236,1.42349,61.023006757100426,20.40522,92.74861081441243,10.5697928,61.872237841288246,0.12290999999999996,15.496702194213867,0.32327775700000005,8.930702765782675,0.995279495,193.29570134480795,24.02781,453.2349141438802,1.5110099999999997,6.56026828289032,131.14143,0,561.1686350504557,5373.63464,2080.151224772135,466.0431353042583,447.262944539388,983.6744393507622,27.456806182861328,55.0865849,20.06559944152832,12.4726846,216.1813112894694,161.23929000000004,95.43378575642903,206.56658299999998,140.48219680786133,202.53524,60.69112904866537,74.11914,2.6210416754086814,5.06197964,31.66439978281657,0.71018,6.109020312627156,24.5976904,4.259050011634827,1.8913900000000003,1.5286900500456493,4.66262969,0.3246229862173398,0.764209024,340.0879745483398,8.363412911098255,73.79530851233795,245.70573540723825,51.54937028305436,37.31850109534699,-0.21203500621549598,13.259706974029541,8.641359999999999,49657.15615545015,0,2.1561403473218284,1.08373,3.2352094451586404,0.79318,0.32146801551183063,0.18927 +2030,13.461603122544847,0.9600461706936069,0,0,10.687554158060053,5.585619290669759,1.3574,59.44890785217285,18.7952,93.46971257527669,10.327405,61.18603769938151,0.0909,15.422501802444458,0.25944670000000003,8.952402591705322,0.95192085,190.51670455932617,22.7964,448.6879196166992,1.0122,6.503699064254761,129.9318,0,558.889882405599,5348.4577,2099.14121500651,471.3307934510076,451.16395060221356,985.3938278618004,27.291006247202557,53.992384,19.672799428304035,11.628452,208.73430887858072,143.31023000000005,102.20798619588216,212.35886,141.88477579752603,199.0872,64.59282938639323,76.1049,2.720781703790029,5.0732303,31.588199774424236,0.5274,6.365070382754008,25.231352,3.732580045859019,1.4046,1.5344900786876678,4.5832554000000005,0.32225998491048813,0.72205246,341.0339686075846,8.459958881875346,74.35698565867659,246.67064599652366,51.65972973995552,37.48274991343884,-0.21305072083980706,13.607006947199503,8.6672,49688.17442302821,0,2.061410347620646,0.9614,3.2206694881121316,0.7583,0.3141920144359271,0.1793 +2031,13.625522589864483,0.9503276400600883,0,0,10.719437528236176,5.6450194120407104,1.3151,57.88690789540609,17.92802,94.17431131998698,10.17227643,60.50603771209717,0.08381999999999999,15.3474014600118,0.24100761240000002,8.972622712453207,0.9221711260000001,187.7457046508789,21.996879999999997,444.16991424560547,0.92805,6.447014331817627,129.1576,0,556.6004231770834,5332.34441,2118.321166992187,475.7522846061257,455.1359507242839,987.1278400645482,27.069705804189045,51.769800000000004,19.25809971491496,10.82562094,201.08934783935547,131.00808400000005,109.0439847310384,216.31717,143.00241216023764,198.40591,68.55612881978352,77.85739,2.81814173857371,5.074297789999999,31.49709955851237,0.50649,6.616610407829285,25.846339,3.248519996802012,1.34891,1.536780059337616,4.567564770000001,0.31909698992967606,0.707414934,341.9929758707682,8.538551672090783,74.73542397305498,247.09016698657928,51.69677482821016,37.56389760684812,-0.21405614599444814,13.955307006835938,8.67123,49705.669614555576,0,1.9694603284200032,0.90757,3.2051095366477966,0.7343999999999999,0.3069830189148585,0.1729 +2032,13.78944205718412,0.9406091094265697,0,0,10.7513208984123,5.702069401741028,1.2728,56.33960819244385,17.060840000000002,94.86551094055176,10.017147860000001,59.83243719736735,0.07673999999999999,15.271401405334473,0.22256852480000003,8.991402546564737,0.8924214020000001,184.98170598347983,21.19736,439.6839116414388,0.8439,6.398238182067871,128.3834,0,554.6528727213541,5316.23112,2137.5512084960933,480.17377576124386,459.1659469604492,988.861852267296,26.769505500793457,49.547216,18.80839951833089,10.02278988,192.78440602620444,118.70593800000003,115.89598655700684,220.27548,143.93621953328451,197.72462,72.5718313852946,79.60988,2.913021683692932,5.07536528,31.397799809773762,0.48558,6.863950332005818,26.461326,2.821810007095337,1.29322,1.537180056174596,4.551874140000001,0.31550098955631256,0.692777408,342.9629694620768,8.617144462306218,75.11386228743338,247.50968797663486,51.733819916464796,37.645045300257415,-0.21505128167941928,14.304006973902384,8.67526,49723.16480608294,0,1.880370318889618,0.85374,3.1885695258776345,0.7105,0.29984601338704425,0.16649999999999998 +2033,13.953361524503755,0.9308905787930511,0,0,10.783204268588424,5.757289449373881,1.2305,54.80900859832764,16.19366,95.54621124267578,9.862019290000001,59.165136655171715,0.06966,15.194801330566406,0.2041294372,9.008822361628214,0.862671678,182.22870635986328,20.39784,435.22991434733075,0.7597499999999999,6.359598795572917,127.60920000000002,0,553.1580963134766,5300.11783,2156.7011718749995,484.595266916362,463.24194590250653,990.5958644700436,26.371005376180012,47.324632,18.312899748484295,9.219958819999999,183.498415629069,106.40379200000004,122.71898587544759,224.23379,144.7761090596517,197.04333,76.63113149007161,81.36237,3.005341728528341,5.07643277,31.297399520874023,0.46467,7.107390443483989,27.076313000000003,2.4647600054740906,1.23753,1.5371300478776295,4.536183510000001,0.3118149861693382,0.678139882,343.94096883138013,8.695737252521655,75.49230060181176,247.92920896669045,51.770865004719425,37.7261929936667,-0.2160361278947205,14.652907053629557,8.67929,49740.6599976103,0,1.7941603064537048,0.79991,3.171119530995687,0.6866,0.2927880138158798,0.1601 +2034,14.11728099182339,0.9211720481595326,0,0,10.815087638764549,5.81067951520284,1.1882,53.297109285990395,15.32648,96.21641095479329,9.70689072,58.50403626759847,0.06258,15.117601156234741,0.18569034960000003,9.02490234375,0.832921954,179.48670959472656,19.598319999999998,430.80891672770184,0.6756,6.3236381610234575,126.83500000000001,0,551.7919972737631,5284.00454,2175.7611694335933,489.0167580714801,467.36494700113934,992.3298766727913,25.891504923502605,45.102047999999996,17.782899856567383,8.41712776,173.6694196065267,94.10164600000002,129.5139840443929,228.19209999999998,145.5299924214681,196.36204,80.7330322265625,83.11486000000001,3.0951716899871826,5.07750026,31.19589964548747,0.44376,7.347410400708516,27.691300000000002,2.1649800340334573,1.18184,1.536670058965683,4.520492880000001,0.3080429856975873,0.663502356,344.9279759724934,8.774330042737091,75.87073891619016,248.34872995674607,51.80791009297406,37.80734068707599,-0.2170106846403518,15.001707077026367,8.68332,49758.155189137666,0,1.7108702957630157,0.7460800000000001,3.1528095801671348,0.6627,0.2858130137125651,0.1537 +2035,14.281200459143026,0.9114535175260139,0,0,10.846971008940672,5.862239400545756,1.1459,51.80550893147787,14.4593,96.87610944112141,9.551762150000002,57.84923585255941,0.055499999999999994,15.040000995000204,0.167251262,9.03970217704773,0.80317223,176.7587102254232,18.7988,426.4229202270508,0.59145,6.288257638613383,126.0608,0,550.4519755045573,5267.891250000001,2194.7511800130205,493.43824922659826,471.53894297281903,994.0638888755391,25.346004962921143,42.879464,17.22749948501587,7.6142967,163.62241872151694,81.79950000000002,136.2829844156901,232.15041,146.2018814086914,195.68075,84.87693214416504,84.86735,3.1825817028681436,5.0785677499999995,31.09309959411621,0.42285,7.584450403849284,28.306287,1.912300020456314,1.12615,1.5358400642871857,4.504802250000001,0.30418798824151355,0.64886483,345.92397308349604,8.852922832952526,76.24917723056855,248.7682509468017,51.8449551812287,37.88848838048528,-0.2179749519163132,15.350707054138184,8.687349999999999,49775.65038066503,0,1.6305202941099803,0.69225,3.133689602216085,0.6388,0.2789250115553538,0.1473 +2036,14.445119926462663,0.9017349868924953,0,0,10.878854379116795,5.9119694630304975,1.1036,50.33590952555338,13.592120000000001,97.5252119700114,9.396633580000001,57.20073541005453,0.04842,14.962000687917074,0.1488121744,9.053272167841593,0.7734225060000001,174.0447120666504,17.99928,422.07191975911456,0.5073,6.252897183100383,125.2866,0,549.10601806640625,5251.77796,2213.661153157552,497.8597403817164,475.76494852701825,995.7979010782868,24.747604370117188,40.65688,16.654799620310467,6.81146564,153.59440739949545,69.49735400000002,143.02598571777344,236.10872,146.79878362019858,194.99946,89.06203397115071,86.61984,3.267631689707438,5.07963524,30.989199956258137,0.40194,7.8188804388046265,28.921274,1.6983500123023987,1.07046,1.5346600612004597,4.48911162,0.3002539922793706,0.634227304,346.92797342936194,8.931515623167963,76.62761554494693,249.18777193685727,51.882000269483335,37.96963607389456,-0.21892892972260455,15.69970711072286,8.691379999999999,49793.145572192385,0,1.5530802706877391,0.63842,3.113809605439504,0.6149,0.2721280058224996,0.1409 +2037,14.609039393782298,0.8920164562589767,0,0,10.91073774929292,5.959879517555237,1.0613000000000001,48.889309565226235,12.72494,98.16391054789226,9.241505010000001,56.5585355758667,0.041339999999999995,14.883700847625732,0.1303730868,9.065662066141764,0.7436727820000001,171.3467114766439,17.199759999999998,417.7559229532878,0.42315,6.217386643091838,124.51240000000001,0,547.7440643310547,5235.66467,2232.5011800130205,502.2812315368345,480.0449447631836,997.5319132810346,24.1078044573466,38.434296,16.07159972190857,6.00863458,143.75839487711588,57.19520800000002,149.74398549397787,240.06703,147.32468795776367,194.31817,93.28743362426758,88.37233,3.350401679674784,5.08070273,30.88409964243571,0.38103000000000004,8.051010449727377,29.536261,1.5162800053755443,1.01477,1.5331700642903645,4.47342099,0.2962459897001584,0.619589778,347.9409739176432,9.0101084133834,77.00605385932533,249.60729292691286,51.91904535773797,38.050783767303855,-0.2198726180592261,16.048707008361816,8.695409999999999,49810.64076371975,0,1.4785602589448292,0.58459,3.0932196180025735,0.591,0.26542600989341736,0.1345 +2038,14.772958861101934,0.8822979256254582,0,0,10.942621119469043,6.0059494972229,1.019,47.46710968017578,11.857759999999999,98.79210980733235,9.08637644,55.922435442606606,0.03425999999999999,14.80530071258545,0.1119339992,9.076922098795572,0.713923058,168.66571553548178,16.40024,413.47491963704425,0.33899999999999997,6.181706428527832,123.7382,0,546.3631439208984,5219.55138,2251.2711995442705,506.70272269195266,484.3799463907878,999.2659254837822,23.43620427449544,36.211712,15.483399868011475,5.20580352,134.2353744506836,44.893062,156.43998591105142,244.02534,147.78459803263345,193.63688000000002,97.55233573913574,90.12482,3.4309417406717935,5.08177022,30.777900060017902,0.36012,8.28113047281901,30.151248000000002,1.360430012146632,0.9590799999999999,1.5314000844955444,4.45773036,0.29216499129931134,0.604952252,348.96197255452466,9.088701203598836,77.38449217370372,250.02681391696848,51.9560904459926,38.13193146071314,-0.2208060169261776,16.397806962331135,8.69944,49828.13595524711,0,1.4069002668062847,0.53076,3.0719696283340454,0.5670999999999999,0.2588210105895996,0.1281 +2039,14.936878328421571,0.8725793949919396,0,0,10.974504489645168,6.050199508666992,0.9767,46.07011000315348,10.990580000000001,99.4097105662028,8.931247870000002,55.292535146077476,0.027179999999999996,14.726700703303019,0.09349491159999998,9.087071816126505,0.684173334,166.00371805826822,15.600719999999999,409.22991943359375,0.2548499999999999,6.145835479100545,122.964,0,544.963144938151,5203.438090000001,2269.9711710611973,511.1242138470708,488.7719421386719,1000.99993768653,22.741503715515137,33.989128,14.895099639892578,4.40297246,125.10435612996419,32.59091600000001,163.11198298136392,247.98365,148.181516011556,192.95559,101.85603586832683,91.87731000000001,3.509321709473928,5.08283771,30.67039982477824,0.33921,8.509470462799072,30.766235000000002,1.2261600097020466,0.90339,1.5293600658575695,4.44203973,0.2880159914493561,0.590314726,349.99097188313795,9.16729399381427,77.76293048808212,250.4463349070241,51.99313553424724,38.21307915412243,-0.2217291263234592,16.746906916300457,8.70347,49845.631146774474,0,1.338080237309138,0.47693,3.050089657306671,0.5432,0.2523170088728269,0.1217 +2040,15.100797795741206,0.862860864358421,0,0,11.006387859821292,6.09261957804362,0.9344,44.69920984903971,10.1234,100.0170103708903,8.776119300000001,54.66883405049642,0.0201,14.648000399271647,0.07505582400000001,9.096181790033976,0.65442361,163.36072158813477,14.8012,405.0219243367513,0.1707,6.109786033630371,122.1898,0,543.5433247884115,5187.3248,2288.5912068684893,515.5457050021889,493.220942179362,1002.7339498892777,22.03110345204671,31.766544,14.310499906539917,3.6001414,116.41933631896973,20.28877,169.7619832356771,251.94196,148.52043533325195,192.2743,106.19803682963054,93.6298,3.585601727167765,5.0839052,30.561800003051758,0.3183,8.736240466435751,31.381222,1.109660009543101,0.8477,1.527070055405299,4.4263491,0.28380099435647327,0.5756772,351.0289688110351,9.245886784029707,78.1413688024605,250.86585589707968,52.030180622501874,38.29422684753172,-0.2226419462510709,17.0962069829305,8.7075,49863.12633830184,0,1.2720402379830678,0.4231,3.02763960758845,0.5193,0.24591600894927979,0.1153 +2041,15.22848065522817,0.855416874269301,0,0,11.000320261307557,6.133209625879924,0.90733,43.35500971476237,9.656320000000001,100.61400985717773,8.676840210000002,54.05123360951742,0.01853,14.569300333658854,0.0697234998,9.10427188873291,0.633957487,160.73772303263345,14.28209,400.8489176432292,0.15650999999999998,6.0735528866449995,121.69434000000001,0,542.1050618489584,5177.01263,2307.1511637369786,519.8885619260432,497.73093668619794,1002.0641862513559,21.311103502909344,30.4061322,13.732799768447876,3.34120265,108.20831807454427,18.44822429,176.3919817606608,254.948019,148.80436833699545,193.15595000000002,110.57703717549641,94.95507,3.659831702709198,5.09883811,30.45199998219808,0.30250000000000005,8.961610476175943,31.9342087,1.007780020435651,0.80562,1.5245600541432698,4.4466453800000005,0.2795239935318629,0.571158232,352.07497406005854,9.31642787195176,78.39863212089928,251.38072108407172,51.9984915716961,38.30272663815095,-0.22354689028831795,17.445407072703045,8.68817,49873.489221387776,0,1.2087302207946777,0.39941,3.0046496589978537,0.5029399999999999,0.23962001005808511,0.11118 +2042,15.356163514715135,0.847972884180181,0,0,10.994252662793821,6.17229962348938,0.88026,42.03800996144613,9.18924,101.20201047261556,8.57756112,53.43973318735758,0.01696,14.490600347518921,0.0643911756,9.111371676127115,0.613491364,158.13572311401367,13.762979999999999,396.71192677815753,0.14232,6.042359193166097,121.19888,0,540.8810882568359,5166.70046,2325.651184082031,524.2314188498974,502.2919464111328,1001.3944226134339,20.58470328648885,29.0457204,13.163399934768677,3.0822639,100.43230438232422,16.607678579999998,182.97798538208008,257.954078,149.08238983154297,194.0376,114.97803688049316,96.28034,3.73233171304067,5.113771020000001,30.341199556986492,0.2867,9.184610605239868,32.4871954,0.9186840107043585,0.76354,1.5225400527318318,4.466941660000001,0.27530398964881897,0.566639264,353.12797546386713,9.38696895987381,78.65589543933805,251.8955862710638,51.96680252089033,38.311226428770176,-0.22444395843520032,17.794307072957356,8.66884,49883.852104473706,0,1.1480802297592163,0.37572,2.981149673461914,0.48658,0.23343100771307945,0.10706 +2043,15.483846374202098,0.840528894091061,0,0,10.988185064280087,6.210219542185466,0.85319,40.748809496561684,8.72216,101.78300921122234,8.47828203,52.83423296610514,0.015390000000000001,14.411900281906128,0.0590588514,9.117531617482504,0.5930252410000001,155.55572509765625,13.24387,392.6109263102214,0.12813,6.017689387003581,120.70342000000001,0,539.9485677083334,5156.38829,2344.101155598958,528.5742757737517,506.9009424845378,1000.7246589755121,19.85420306523641,27.6853086,12.60290002822876,2.82332515,93.05358568827312,14.767132870000001,189.49998092651367,260.960137,149.40045293172201,194.91925,119.38603846232097,97.60561,3.803391714890798,5.12870393,30.229700088500977,0.27090000000000003,9.404340585072836,33.0401821,0.8408420085906982,0.72146,1.521650065978368,4.48723794,0.2712549865245819,0.562120296,354.18697102864576,9.457510047795862,78.91315875777681,252.41045145805583,51.93511347008456,38.31972621938941,-0.2253331506917181,18.142206986745197,8.64951,49894.21498755964,0,1.0900401969750722,0.35202999999999995,2.957189679145813,0.47021999999999997,0.22735000774264336,0.10294 +2044,15.611529233689062,0.833084904001941,0,0,10.98211746576635,6.24696958065033,0.82612,39.48770968119303,8.25508,102.3580093383789,8.379002940000001,52.23473294576009,0.013819999999999999,14.333400328954061,0.0537265272,9.122791608174643,0.572559118,152.99973169962564,12.72476,388.5459264119466,0.11393999999999999,5.99475900332133,120.20796,0,539.1004943847656,5146.07612,2362.5112304687495,532.9171326976059,511.55694580078125,1000.0548953375901,19.124302864074707,26.324896799999998,12.053599993387857,2.5643864,86.09246762593587,12.92658716,195.95998255411783,263.96619599999997,149.75349553426108,195.8009,123.80003865559895,98.93088,3.873051722844442,5.14363684,30.11739985148112,0.2551,9.621220509211222,33.5931688,0.7722660054763159,0.67938,1.5217700600624084,4.50753422,0.2673649912079175,0.557601328,355.2529729207356,9.528051135717915,79.17042207621559,252.92531664504787,51.90342441927879,38.328226010008635,-0.2262144670578712,18.489306926727295,8.63018,49904.577870645575,0,1.0345301926136017,0.32833999999999997,2.9328096906344094,0.45386,0.2213790069023768,0.09881999999999999 +2045,15.739212093176025,0.8256409139128211,0,0,10.976049867252616,6.282549659411113,0.79905,38.25480969746908,7.788,102.92500877380371,8.27972385,51.64113203684489,0.01225,14.254900296529135,0.048394203000000004,9.127171595891317,0.552092995,150.46673329671225,12.205649999999999,384.5159225463867,0.09974999999999999,5.972218791643779,119.7125,0,538.2704823811849,5135.7639500000005,2380.871154785156,537.2599896214601,516.2639414469401,999.3851316996682,18.398902893066406,24.964485,11.517299969991049,2.30544765,79.55525016784668,11.08604145,202.3609822591146,266.972255,150.14053853352866,196.68255,128.22103945414224,100.25614999999999,3.9413517117500305,5.15856975,30.004499753316242,0.2393,9.835570573806763,34.1461555,0.7113160192966461,0.6373,1.5227700769901276,4.5278305,0.2636229892571767,0.55308236,356.324966430664,9.598592223639965,79.42768539465436,253.4401818320399,51.87173536847302,38.33672580062787,-0.22708790753365965,18.835407257080078,8.61085,49914.94075373151,0,0.9814761877059937,0.30465,2.9080296754837036,0.4375,0.21551900853713354,0.0947 +2046,15.86689495266299,0.8181969238237011,0,0,10.969982268738882,6.316959619522095,0.77198,37.05040963490804,7.320920000000001,103.48700841267903,8.18044476,51.05343246459961,0.01068,14.176600217819214,0.0430618788,9.130701382954916,0.531626872,147.95773442586264,11.686539999999999,380.5229263305664,0.08556,5.9496885140736895,119.21704000000001,0,537.4345194498698,5125.45178,2399.1911621093745,541.6028465453144,521.0209401448568,998.7153680617464,17.681302547454834,23.604073200000002,10.995300054550171,2.0465089,73.4390328725179,9.24549574,208.70398330688477,269.978314,150.55757776896158,197.5642,132.64904022216797,101.58142,4.008321781953176,5.1735026600000005,29.89079999923706,0.22350000000000003,10.047700564066568,34.6991422,0.656644011537234,0.5952200000000001,1.5245400667190552,4.5481267800000005,0.260019987821579,0.548563392,357.40297190348304,9.669133311562017,79.68494871309314,253.95504701903198,51.840046317667245,38.3452255912471,-0.22795347211908346,19.18070697784424,8.591520000000001,49925.30363681744,0,0.9308091749747595,0.28096,2.882889707883199,0.42114,0.20976800844073296,0.09058 +2047,15.994577812149954,0.8107529337345811,0,0,10.963914670225146,6.350189606348674,0.74491,35.874509493509926,6.85384,104.04100926717122,8.08116567,50.4717321395874,0.009110000000000002,14.098400274912516,0.037729554600000006,9.13344152768453,0.5111607490000001,145.47373580932617,11.16743,376.5639241536458,0.07137,5.927068114280701,118.72158,0,536.5885416666666,5115.13961,2417.4611612955723,545.9457034691686,525.8299357096354,998.0456044238244,16.97440258661906,22.2436614,10.488699913024902,1.7875701500000003,67.73441696166992,7.40495003,214.9899813334147,272.984373,151.00261942545572,198.44585,137.0820401509603,102.90669,4.07401172320048,5.18843557,29.776299953460693,0.2077,10.257900635401407,35.252128899999995,0.6071410129467646,0.55314,1.527000069618225,4.568423060000001,0.25654498984416324,0.544044424,358.48697408040357,9.73967439948407,79.94221203153191,254.46991220602402,51.80835726686148,38.353725381866326,-0.22881116081414266,19.525006771087646,8.57219,49935.666519903374,0,0.8824491699536642,0.25727,2.857419768969218,0.40478000000000003,0.20412900671362877,0.08646000000000001 +2048,16.12226067163692,0.8033089436454611,0,0,10.957847071711411,6.382259686787923,0.7178399999999999,34.727109591166176,6.386760000000001,104.58900896708171,7.98188658,49.89573129018148,0.00754,14.020500183105469,0.0323972304,9.135391314824423,0.490694626,143.01474126180014,10.648319999999998,372.6419270833333,0.05717999999999998,5.904317895571391,118.22612000000001,0,535.7286020914713,5104.82744,2435.6911621093745,550.2885603930229,530.6919352213541,997.3758407859026,16.28030260403951,20.8832496,9.998200019200643,1.5286314,62.42730172475179,5.5644043199999995,221.22298304239908,275.990432,151.47265116373697,199.32750000000001,141.52204004923502,104.23196,4.138441761334737,5.20336848,29.661100069681805,0.1919,10.46630048751831,35.8051156,0.561899001399676,0.51106,1.5300600628058116,4.58871934,0.25318998595078784,0.539525456,359.5769678751627,9.810215487406122,80.19947534997067,254.98477739301606,51.776668216055704,38.36222517248556,-0.2296609736188372,19.868506749471027,8.55286,49946.02940298931,0,0.8363231619199117,0.23357999999999998,2.8316497206687927,0.38842,0.19860200583934784,0.08234 +2049,16.249943531123883,0.7958649535563411,0,0,10.951779473197675,6.41314971446991,0.69077,33.60820960998535,5.9196800000000005,105.13000869750977,7.882607490000001,49.325531005859375,0.005970000000000001,13.942700147628784,0.027064906200000002,9.13659143447876,0.470228503,140.58174260457358,10.129209999999999,368.75392659505206,0.04299,5.881447434425354,117.73066,0,534.8546040852865,5094.51527,2453.871154785156,554.6314173168771,535.6089426676432,996.7060771479806,15.60100237528483,19.522837799999998,9.524319887161255,1.26969265,57.500386238098145,3.7238586100000006,227.40298461914062,278.996491,151.96568171183267,200.20915,145.96803919474283,105.55722999999999,4.2016518115997314,5.218301390000001,29.545199712117512,0.1761,10.673200686772665,36.3581023,0.5201659997304281,0.46898,1.533640056848526,4.60901562,0.24994699036081633,0.535006488,360.67397562662757,9.880756575328173,80.45673866840944,255.49964258000813,51.74497916524994,38.370724963104784,-0.2305029105331671,20.211106936136883,8.53353,49956.39228607525,0,0.792352149883906,0.20989,2.8055997490882874,0.37206,0.19318600619832674,0.07822 +2050,16.377626390610846,0.7884209634672211,0,0,10.94571187468394,6.442879676818848,0.6637,32.51750946044922,5.4526,105.66400973002116,7.7833284,48.76103083292643,0.0044,13.865200201670328,0.021732582,9.137071291605631,0.44976238,138.17574564615884,9.6101,364.9009272257487,0.0288,5.858447710673015,117.2352,0,533.96673583984375,5084.2031,2472.0011596679683,558.9742742407313,540.5809377034506,996.0363135100588,14.937902053197226,18.162426,9.067409912745157,1.0107539,52.93457190195719,1.8833129,233.5329818725586,282.00255,152.47970962524414,201.0908,150.42004267374674,106.8825,4.2636717557907104,5.2332343,29.428500016530354,0.1603,10.878600597381592,36.911089,0.4813140059510867,0.4269,1.5376800696055095,4.6293119,0.24680799121658006,0.53048752,361.7759704589843,9.951297663250225,80.71400198684822,256.01450776700017,51.71329011444416,38.37922475372402,-0.23133697155713234,20.552706559499104,8.5142,49966.75516916118,0,0.7504581461350123,0.1862,2.779299775759379,0.3557,0.18788200865189233,0.0741 +2051,16.470652409675818,0.7953911975406162,0,0,10.909302421825833,6.471439719200134,0.64638,31.455109119415283,5.20103,106.19200897216797,7.719788980000001,48.20223045349121,0.00406,13.787800073623657,0.02018665606,9.136861165364584,0.435696317,135.79574584960938,9.27305,361.08292897542316,0.02641,5.835315545399983,116.91820000000001,0,533.0635274251302,5077.60323,2490.081176757812,563.3086997430493,545.6099395751953,993.4146634558115,14.29220207532247,17.3846094,8.627609968185425,0.9380561430000001,48.709659258524574,1.712466056,239.61298116048178,283.785038,153.01373418172201,201.34217,154.87704213460287,107.62355,4.32453175385793,5.19588404,29.311100006103516,0.15272,11.082900524139404,37.3077316,0.44483400384585065,0.40671,1.542130062977473,4.63510038,0.24376599118113518,0.526054511,362.8839721679687,10.01513932442468,80.89995626209824,255.63092209386642,51.519470335900444,38.29553540025847,-0.23217841093537736,20.89350700378418,8.5147100000000009,49771.70361660161,0,0.7105641414721807,0.17577,2.752789795398712,0.34449,0.1826890061299006,0.07145 +2052,16.563678428740786,0.8023614316140111,0,0,10.872892968967726,6.499029715855916,0.62906,30.420508861541748,4.94946,106.71400833129883,7.65624956,47.64902973175049,0.0037200000000000002,13.710800170898438,0.01864073012,9.135981241861979,0.42163025400000004,133.44275283813477,8.936,357.29892985026044,0.02402,5.815802852312724,116.6012,0,532.3407084147135,5071.00336,2508.1811523437495,567.6431252453673,550.6909383138021,990.7930134015643,13.66530179977417,16.6067928,8.20505984624227,0.865358386,44.80604648590088,1.541619212,245.61798222859701,285.567526,153.5497283935547,201.59354,159.3210423787435,108.3646,4.383391817410787,5.15853378,29.193299929300945,0.14514,11.283100605010986,37.7043742,0.41147000590960187,0.38652,1.5467100540796916,4.6408888600000004,0.2408179926375548,0.521621502,363.99797312418616,10.078980985599136,81.08591053734827,255.24733642073267,51.325650557356724,38.211846046792935,-0.23302722866790215,21.233806769053142,8.515220000000001,49576.65206404204,0,0.6725951333840688,0.16534,2.726079781850179,0.33328,0.17760800446073213,0.0688 +2053,16.656704447805758,0.8093316656874061,0,0,10.836483516109618,6.525879740715027,0.61174,29.41360886891683,4.69789,107.23100852966309,7.59271014,47.10142993927002,0.00338,13.633900006612143,0.01709480418,9.134461164474487,0.407564191,131.11775588989258,8.59895,353.5499318440755,0.02163,5.800993005434672,116.2842,0,531.8652496337891,5064.40349,2526.341186523437,571.9775507476852,555.8219350179037,988.171363347317,13.05800175666809,15.8289762,7.799789945284526,0.7926606290000001,41.20403512318929,1.370772368,251.52198028564453,287.350014,154.07471338907877,201.84491,163.73104349772134,109.10565,4.439441680908203,5.121183520000001,29.075500011444092,0.13756000000000002,11.47700055440267,38.1010168,0.38183900713920593,0.36633,1.5511600573857625,4.64667734,0.23796499272187552,0.517188493,365.1159744262695,10.142822646773592,81.27186481259828,254.8637507475989,51.131830778813004,38.12815669332739,-0.2338834247547068,21.57400671641032,8.51573,49381.60051148247,0,0.6364741226037344,0.15491,2.6991997957229614,0.32207,0.17263600354393324,0.06615 +2054,16.74973046687073,0.8163018997608011,0,0,10.800074063251511,6.551979700724284,0.59442,28.434008757273357,4.44632,107.74500846862793,7.529170720000001,46.55942980448405,0.00304,13.557400147120157,0.01554887824,9.132320960362753,0.393498128,128.81975873311362,8.261899999999999,349.8339309692383,0.01924,5.787452737490336,115.9672,0,531.46319580078125,5057.80362,2544.551188151041,576.3119762500032,561.0039265950521,985.5497132930698,12.470801591873169,15.0511596,7.4115599393844604,0.719962872,37.883124669392906,1.199925524,257.3299814860026,289.132502,154.58769353230795,202.09628,168.1080436706543,109.8467,4.492761731147766,5.0838332600000005,28.95769993464152,0.12997999999999998,11.665300687154135,38.497659399999996,0.3552870030204455,0.34614,1.555510054032008,4.652465820000001,0.23519798989097276,0.512755484,366.2379709879557,10.206664307948047,81.4578190878483,254.48016507446516,50.938011000269285,38.04446733986185,-0.23474699919579115,21.914206663767498,8.51624,49186.548958922904,0,0.6021271099646887,0.14448,2.672169804573059,0.31086,0.16777500386039415,0.0635 +2055,16.842756485935702,0.8232721338341962,0,0,10.763664610393404,6.577319661776225,0.5771,27.48140811920166,4.19475,108.25400861104329,7.4656313,46.02282969156901,0.0027,13.481100082397461,0.0140029523,9.129591226577759,0.37943206500000004,126.54976081848145,7.924849999999999,346.1529286702474,0.01685,5.774202664693196,115.65020000000001,0,531.0791676839193,5051.20375,2562.821146647135,580.6464017523211,566.2389373779297,982.9280632388225,11.903801679611206,14.273343,7.040059924125671,0.6472651150000001,34.82351462046305,1.02907868,263.0439809163411,290.91499,155.08967971801758,202.34765,172.45404179890951,110.58775,4.543431679407756,5.046483,28.839999834696453,0.12240000000000001,11.848700761795044,38.894301999999996,0.33127200106779736,0.32595,1.559750070174535,4.6582543,0.23251298939188322,0.5083224749999999,367.36397298177076,10.270505969122503,81.64377336309833,254.09657940133138,50.74419122172556,37.96077798639631,-0.2356179519911553,22.254206657409668,8.51675,48991.49740636334,0,0.5694831162691116,0.13405,2.6449997822443643,0.29965,0.16302200655142465,0.06085 +2056,16.93578250500067,0.8302423679075911,0,0,10.727255157535296,6.601919571558635,0.5597799999999999,26.555508136749268,3.94318,108.75900840759277,7.40209188,45.491628646850586,0.00236,13.405100107192993,0.01245702636,9.126270850499472,0.365366002,124.30776405334473,7.5878,342.5039291381836,0.01446,5.760972420374553,115.3332,0,530.6941935221354,5044.60388,2581.131184895833,584.980827254639,571.52593994140625,980.3064131845751,11.357101519902548,13.4955264,6.684929966926575,0.5745673580000001,32.006405671437584,0.8582318360000001,268.66698201497394,292.697478,155.58166631062826,202.59902,176.76804224650064,111.32879999999999,4.591511607170105,5.00913274,28.72219975789388,0.11482,12.027800639470419,39.2909446,0.3093410034974416,0.30576000000000003,1.5639100670814514,4.66404278,0.22990199302633604,0.503889466,368.49497222900385,10.33434763029696,81.82972763834836,253.71299372819763,50.55037144318184,37.877088632930764,-0.2364962831407992,22.594106674194336,8.51726,48796.44585380377,0,0.5384710977474848,0.12362000000000001,2.6177298029263816,0.28844000000000003,0.1583770029246807,0.0582 +2057,17.028808524065642,0.8372126019809861,0,0,10.690845704677189,6.625769734382629,0.5424599999999999,25.655808130900066,3.6916100000000003,109.25900777180989,7.338552460000001,44.965928395589195,0.00202,13.329299926757812,0.01091110042,9.122411012649536,0.351299939,122.09376589457194,7.25075,338.88893127441406,0.012070000000000001,5.747682293256124,115.0162,0,530.3012135823568,5038.00401,2599.4811808268223,589.3152527569571,576.867919921875,977.684763130328,10.83060129483541,12.7177098,6.345750013987224,0.5018696010000001,29.413596947987873,0.6873849920000001,274.20298767089844,294.479966,156.06365331013998,202.85039,181.0520451863607,112.06984999999999,4.637081702550252,4.97178248,28.604399998982746,0.10724,12.203100601832071,39.6875872,0.2891260012984276,0.28557,1.567970057328542,4.6698312600000005,0.22736199075977007,0.499456457,369.6299718221028,10.398189291471416,82.01568191359839,253.32940805506388,50.35655166463812,37.79339927946523,-0.2373819926447229,22.93400700887044,8.51777,48601.3943012442,0,0.5090211058656374,0.11319000000000001,2.5903698007265725,0.27723000000000003,0.1538390045364698,0.05555 +2058,17.121834543130614,0.8441828360543812,0,0,10.654436251819082,6.648869752883911,0.5251399999999999,24.78190803527832,3.44004,109.75500806172688,7.275013040000001,44.445427894592285,0.00168,13.2538001537323,0.009365174479999998,9.118010997772217,0.337233876,119.90776952107747,6.9137,335.3069305419922,0.009680000000000001,5.734302123387654,114.6992,0,529.8992513020834,5031.40414,2617.861185709635,593.649678259275,582.2659403483073,975.0631130760806,10.32400131225586,11.9398932,6.022079944610596,0.42917184399999997,27.02838929494222,0.516538148,279.6539815266927,296.262454,156.53563944498697,203.10176,185.30504353841147,112.81089999999999,4.680211702982585,4.934432220000001,28.486699899037678,0.09966,12.375100692113241,40.0842298,0.270323005815347,0.26538,1.5719500581423442,4.67561974,0.22488799194494882,0.495023448,370.76997375488276,10.462030952645872,82.2016361888484,252.94582238193013,50.1627318860944,37.70970992599968,-0.2382750805029264,23.273806889851887,8.518279999999999,48406.342748684634,0,0.4810640960931778,0.10275999999999999,2.5629398226737976,0.26602000000000003,0.14940600345532098,0.0529 +2059,17.214860562195582,0.8511530701277761,0,0,10.618026798960974,6.6712197462717695,0.5078199999999999,23.9334077835083,3.18847,110.24700864156087,7.2114736200000005,43.930328051249184,0.00134,13.178700049718222,0.007819248539999999,9.113110939661661,0.32316781299999997,117.75077311197917,6.57665,331.7579345703125,0.007290000000000001,5.720831831296285,114.38220000000001,0,529.4882659912109,5024.80427,2636.2612101236973,597.984103761593,587.7189381917318,972.4414630218334,9.837271213531494,11.162076599999999,5.713430047035217,0.35647408700000005,24.834781964619953,0.34569130400000003,285.02298227945965,298.044942,156.99863052368164,203.35313,189.53004455566406,113.55194999999999,4.7209616502126055,4.89708196,28.368899822235107,0.09208000000000001,12.544200499852499,40.4808724,0.25268300498525303,0.24519,1.5758500695228577,4.681408220000001,0.22247299179434776,0.490590439,371.9129740397135,10.525872613820328,82.38759046409842,252.56223670879638,49.96891210755068,37.626020572534145,-0.2391755467154097,23.61350679397583,8.51879,48211.291196125065,0,0.4545350894331932,0.09233,2.535459836324056,0.25481,0.1450780046482881,0.05025 +2060,17.307886581260554,0.8581233042011711,0,0,10.581617346102867,6.692819714546204,0.4905,23.109907627105713,2.9369,110.7350082397461,7.147934200000001,43.42042795817057,0.001,13.103800058364868,0.0062733226,9.107710917790731,0.30910175,115.62277666727702,6.2396,328.2409311930339,0.0049,5.707271893819173,114.0652,0,529.0663299560547,5018.2044,2654.691182454427,602.3185292639109,593.2299397786459,969.8198129675861,9.369921207427979,10.38426,5.419290026028951,0.28377633,22.817875385284424,0.17484446,290.312983194987,299.82743,157.4536158243815,203.6045,193.72604624430338,114.29299999999999,4.759401559829712,4.8597317,28.251099745432537,0.0845,12.71060061454773,40.877515,0.23599700505534807,0.225,1.57968008518219,4.6871967,0.22011499106884003,0.48615743,373.06097157796216,10.589714274994783,82.57354473934845,252.17865103566263,49.77509232900696,37.5423312190686,-0.2400833912821727,23.953106721242268,8.5193,48016.239643565495,0,0.42937008539835614,0.0819,2.5079498489697776,0.2436,0.1408540035287539,0.0476 +2061,17.405299490923205,0.8555026407000277,0,0,10.543843147367387,6.713679750760396,0.47941,22.31080722808838,2.80139,111.21800740559895,7.107274580000001,42.91582775115967,9.2e-4,13.029200077056885,0.0058252281299999995,9.10184089342753,0.299431331,113.52277819315593,6.02076,324.7569351196289,0.00449,5.693620761235555,113.86222000000001,0,528.6342519124349,5013.98107,2673.131225585937,606.7996168875515,598.7979329427084,967.497079780608,8.921601215998331,9.939558329999999,5.139169971148173,0.2633617666,20.963969548543293,0.1589853287,295.5269826253255,301.735028,157.89960606892905,204.55202,197.89304478963217,115.22352,4.795591553052266,4.83178498,28.1332000096639,0.08044000000000001,12.874800682067871,41.29773,0.2200970028837522,0.21419,1.5834400554498036,4.70901076,0.21780899167060852,0.483983905,374.21196492513013,10.652493146106599,82.65804712596236,251.70060051334508,49.59075876986807,37.44419060836196,-0.2409884623499095,24.292606830596924,8.52632,47814.53893944325,0,0.4055080811182658,0.07732,2.480409840742747,0.23592000000000002,0.13673100372155508,0.0459 +2062,17.502712400585857,0.8528819771988844,0,0,10.506068948631906,6.7339097658793134,0.46832,21.535707155863445,2.66588,111.69800758361816,7.066614960000001,42.41632684071859,8.4e-4,12.95490018526713,0.00537713366,9.095520893732706,0.289760912,111.45078150431316,5.80192,321.304931640625,0.00408,5.681849400202434,113.65924,0,528.2699432373047,5009.75774,2691.611206054687,611.2807045111921,604.4239349365234,965.17434659363,8.491880973180136,9.49485666,4.872529943784078,0.24294720320000002,19.26016362508138,0.1431261974,300.66898345947266,303.642626,158.35763295491537,205.49954,202.04004669189453,116.15404,4.82975161075592,4.80383826,28.01549990971883,0.07638,13.037400643030802,41.71794500000001,0.20533200105031332,0.20338,1.5874300599098206,4.7308248200000005,0.21557699392239252,0.48181038,375.36797078450513,10.715272017218416,82.74254951257626,251.2225499910275,49.406425210729175,37.346049997655314,-0.2418907599186201,24.632206916809082,8.533339999999999,47612.838235321,0,0.38289107630650204,0.07274,2.4528698523839316,0.22824,0.13271000236272812,0.0442 +2063,17.600125310248504,0.8502613136977409,0,0,10.468294749896426,6.753669738769531,0.45722999999999997,20.784107208251953,2.53037,112.17500750223796,7.025955340000001,41.9219274520874,7.6e-4,12.88100004196167,0.00492903919,9.08876077334086,0.280090493,109.40878550211589,5.58308,317.8839365641276,0.00367,5.672529339790344,113.45626,0,527.9987589518229,5005.534409999999,2710.121215820312,615.7617921348326,610.1069386800131,962.851613406652,8.0802610317866,9.05015499,4.618849992752075,0.22253263980000001,17.694358507792156,0.1272670661,305.7439829508464,305.550224,158.84367497762045,206.44706,206.17204666137695,117.08456,4.862081567446391,4.77589154,27.898100058237713,0.07232000000000001,13.199000676472982,42.138160000000006,0.19199300309022269,0.19257000000000002,1.5919200778007507,4.75263888,0.2134389914572239,0.47963685500000003,376.5279744466145,10.778050888330231,82.82705189919017,250.74449946870996,49.222091651590276,37.24790938694867,-0.2427902839883043,24.971906820933025,8.54036,47411.13753119875,0,0.36145907392104465,0.06816,2.425339857737223,0.22056,0.12878800431887308,0.0425 +2064,17.697538219911156,0.8476406501965975,0,0,10.430520551160946,6.772949775060018,0.44614,20.055607000986736,2.39486,112.64900779724121,6.985295720000001,41.43252722422282,6.8e-4,12.807300090789795,0.0044809447199999995,9.081580638885498,0.270420074,107.39378801981609,5.36424,314.4949417114258,0.00326,5.663859248161316,113.25328,0,527.7527770996094,5001.3110799999995,2728.681233723958,620.2428797584731,615.846934000651,960.5288802196739,7.6862709522247314,8.605453319999999,4.3776200612386065,0.2021180764,16.255653699239094,0.1114079348,310.7549794514974,307.457822,159.35771306355795,207.39458,210.29104868570963,118.01508,4.892651597658793,4.74794482,27.7809001604716,0.06826,13.359700679779053,42.558375000000005,0.17983200152715048,0.18176,1.5968600610891979,4.774452940000001,0.21138999114433923,0.47746333,377.69097137451166,10.840829759442046,82.91155428580407,250.2664489463924,49.037758092451384,37.14976877624203,-0.2436870345589623,25.311906655629475,8.547379999999999,47209.436827076504,0,0.34115506956974667,0.06358,2.3978298703829446,0.21288,0.12496300352116425,0.0408 +2065,17.794951129573807,0.8450199866954542,0,0,10.392746352425466,6.791749795277913,0.43505,19.34950653711955,2.25935,113.12000719706218,6.944636100000001,40.94822629292806,6.000000000000001e-4,12.73389999071757,0.00403285025,9.073990742365519,0.260749655,105.40879122416179,5.1454,311.1369400024414,0.00285,5.655309160550435,113.0503,0,527.5087687174479,4997.08775,2747.2612304687495,624.7239673821136,621.6469319661459,958.2061470326958,7.3093909819920855,8.16075165,4.14831002553304,0.181703513,14.933749437332153,0.0955488035,315.7029800415039,309.36542,159.89574178059897,208.34210000000002,214.39604695638022,118.9456,4.9214915831883745,4.7199981,27.664000034332275,0.06420000000000001,13.519600550333658,42.97859000000001,0.16864300270875296,0.17095,1.6021800637245178,4.796267,0.20942198857665062,0.475289805,378.8579711914062,10.903608630553862,82.99605667241798,249.78839842407484,48.85342453331249,37.051628165535384,-0.2445810116305941,25.65200662612915,8.5544,47007.73612295426,0,0.32192806154489517,0.059,2.370369831720988,0.2052,0.12123400283356507,0.0391 +2066,17.89236403923646,0.8423993231943108,0,0,10.354972153689985,6.810069799423218,0.42396,18.665506680806477,2.12384,113.58900833129883,6.903976480000002,40.468926111857094,5.200000000000001e-4,12.660900115966797,0.00358475578,9.06601063410441,0.25107923600000004,103.45079358418782,4.92656,307.80993906656903,0.0024400000000000003,5.646729032198588,112.84732,0,527.258799235026,4992.86442,2765.871256510416,629.2050550057543,627.5049285888672,955.8834138457178,6.949110786120097,7.716049979999999,3.9304400086402893,0.1612889496,13.719345410664877,0.0796896722,320.59098052978516,311.273018,160.45677439371744,209.28962,218.4880485534668,119.87612,4.948641538619995,4.692051379999999,27.54730002085368,0.06014,13.678800662358602,43.39880500000001,0.1582570026318232,0.16014,1.6078400711218517,4.81808106,0.2075309914847215,0.47311628,380.0279744466145,10.966387501665679,83.08055905903187,249.3103479017573,48.6690909741736,36.95348755482874,-0.2454722152031996,25.99230686823527,8.56142,46806.03541883201,0,0.30372605969508487,0.054419999999999996,2.34294984738032,0.19752,0.11760000449915727,0.0374 +2067,17.98977694889911,0.8397786596931673,0,0,10.317197954954505,6.827899773915608,0.41287,18.002906322479248,1.9883300000000002,114.05500793457031,6.863316860000001,39.99452590942383,4.4000000000000007e-4,12.58810011545817,0.0031366613100000003,9.057660659154257,0.241408817,101.52279726664226,4.70772,304.5139389038086,0.0020300000000000006,5.638088941574097,112.64434,0,527.0008188883463,4988.64109,2784.501241048177,633.6861426293948,633.4229329427084,953.5606806587397,6.6048808097839355,7.27134831,3.723489999771118,0.1408743862,12.603741804758707,0.06383054090000001,325.4199803670247,313.180616,161.03880055745444,210.23714,222.5670483907064,120.80664,4.974161624908447,4.664104659999999,27.43080012003581,0.056080000000000005,13.837400515874227,43.81902000000001,0.14853300154209137,0.14933000000000002,1.6138100822766621,4.83989512,0.20571199183662733,0.470942755,381.2029673258463,11.029166372777494,83.16506144564578,248.83229737943972,48.48475741503471,36.8553469441221,-0.2463606452767788,26.332806905110676,8.568439999999999,46604.33471470977,0,0.2864980523784955,0.04984,2.3155899047851562,0.18984,0.11405900306999683,0.0357 +2068,18.087189858561757,0.8371579961920239,0,0,10.279423756219025,6.84525986512502,0.40177999999999997,17.361306190490723,1.8528200000000001,114.51800855000813,6.822657240000002,39.52502568562826,3.5999999999999997e-4,12.515600124994913,0.00268856684,9.048960447311401,0.231738398,99.62180074055989,4.48888,301.24893951416016,0.00162,5.629378795623779,112.44136,0,526.7338460286459,4984.417759999999,2803.1412556966143,638.1672302530353,639.4019317626953,951.2379474717616,6.276180823644002,6.82664664,3.5269999901453652,0.1204598228,11.578938404719034,0.04797140959999999,330.19197845458984,315.088214,161.64082717895508,211.18466,226.6320482889811,121.73716,4.9980915784835815,4.636157939999999,27.314600149790447,0.052020000000000004,13.99540082613627,44.23923500000001,0.1393550025920073,0.13852,1.6200400690237682,4.86170918,0.203959991534551,0.46876923000000004,382.3799743652343,11.09194524388931,83.24956383225968,248.35424685712218,48.30042385589581,36.75720633341545,-0.24724630185133176,26.67340660095215,8.57546,46402.63401058751,0,0.2701990579565366,0.04526,2.288309892018636,0.18216,0.11060900365312894,0.034 +2069,18.18460276822441,0.8345373326908806,0,0,10.241649557483544,6.862139741579692,0.39069,16.740205764770508,1.7173100000000001,114.97800827026367,6.781997620000001,39.06042607625326,2.8e-4,12.44349996248881,0.0022404723699999997,9.03990070025126,0.22206797900000003,97.74930381774902,4.27004,298.0139389038086,0.0012100000000000001,5.620598673820496,112.23837999999999,0,526.4588623046875,4980.19443,2821.8012084960933,642.648317876676,645.4419301350912,948.9152142847836,5.962440729141235,6.381944969999999,3.3404799501101174,0.1000452594,10.637535254160563,0.03211227829999999,334.9089762369792,316.995812,162.25984827677408,212.13218,230.68504842122397,122.66768,5.020461519559224,4.6082112199999985,27.198599974314373,0.04796,14.152800718943277,44.659450000000014,0.13062200074394545,0.12771,1.62649005651474,4.883523240000001,0.20226899161934853,0.466595705,383.5619735717773,11.154724115001127,83.33406621887359,247.8761963348046,48.116090296756916,36.65906572270881,-0.2481291849268585,27.014206886291504,8.582479999999999,46200.93330646527,0,0.25478005533417064,0.04068,2.2611098686854043,0.17448,0.10724900228281815,0.032299999999999995 +2070,18.28201567788706,0.8319166691897372,0,0,10.203875358748064,6.878539840380351,0.3796,16.139106035232544,1.5818,115.43600845336914,6.741338000000002,38.60052522023519,2e-4,12.371700048446655,0.0017923779,9.030520677566528,0.21239756,95.90490659077962,4.0512,294.8089370727539,8e-4,5.61172874768575,112.0354,0,526.1739095052084,4975.9711,2840.45127360026,647.1294055003165,651.5439300537109,946.5924810978055,5.663140734036763,5.9372433,3.163479963938395,0.079630696,9.772792100906372,0.016253147,339.5719807942708,318.90341,162.8948720296224,213.0797,234.72604751586914,123.5982,5.0413115819295244,4.580264499999998,27.082900047302246,0.0439,14.309700727462769,45.07966500000001,0.12225700169801712,0.1169,1.633150080839793,4.9053373,0.2006369928518931,0.46442218,384.74697113037104,11.217502986112942,83.4185686054875,247.39814581248706,47.931756737618024,36.56092511200217,-0.24900929450335896,27.355206807454426,8.5895,45999.23260234302,0,0.24019904807209969,0.0361,2.2340099016825357,0.1668,0.10397800306479137,0.0306 +2071,18.379396174768726,0.8263166783739219,0,0,10.15959502940813,6.894459843635559,0.37251,15.5575057665507,1.50882,115.89100774129231,6.7153082400000015,38.145425160725914,1.8e-4,12.300100008646647,0.001657949557,9.020810524622599,0.205751345,94.08840878804524,3.9091199999999997,291.63294728597003,7.300000000000001e-4,5.60277791817983,111.90563999999999,0,525.8798777262369,4973.26737,2859.111246744791,651.7547102530559,657.7079315185547,944.546511900178,5.37773060798645,5.6829841299999995,2.9955599904060364,0.0739077507,8.978439569473267,0.014775588179999999,344.18298085530597,321.079493,163.54389190673828,215.00581,238.75404739379883,124.58139,5.060691595077515,4.569037829999998,26.967300256093342,0.041780000000000005,14.466100772221884,45.54281750000001,0.1141990019629399,0.11126,1.6399900615215302,4.9496772,0.19905899340907732,0.46455725800000003,385.9349695841471,11.278401688951186,83.4438636786006,246.80051045944924,47.74289911571387,36.46048261754651,-0.2498834759903377,27.696407000223797,8.60361,45776.284748823295,0,0.22641304632027945,0.03408,2.2070098916689553,0.16155,0.10079300155242284,0.029509999999999998 +2072,18.47677667165039,0.8207166875581065,0,0,10.115314700068197,6.909979740778605,0.36541999999999997,14.994805574417114,1.43584,116.34400749206543,6.689278480000001,37.69512494405111,1.6e-4,12.22890011469523,0.001523521214,9.01080052057902,0.19910513000000002,92.29961268107097,3.7670399999999997,288.4879379272461,6.6e-4,5.595087091128032,111.77588,0,525.6326599121094,4970.563639999999,2877.7912190755205,656.3800150057955,663.9339294433594,942.5005427025504,5.105680545171102,5.428724959999999,2.8362900217374167,0.06818480539999999,8.248777190844217,0.01329802936,348.74997965494794,323.255576,164.23496627807617,216.93192,242.77205022176108,125.56458,5.078921556472778,4.557811159999998,26.852099895477295,0.03966,14.623000780741373,46.00597000000001,0.10666600055992603,0.10562,1.6474000811576843,4.9940171,0.19755799074967703,0.46469233600000004,387.126968383789,11.33930039178943,83.46915875171369,246.2028751064114,47.55404149380971,36.36004012309086,-0.2507517293877945,28.037906964619953,8.61772,45553.336895303575,0,0.21338304380575815,0.03206,2.1801199118296304,0.1563,0.09769440193970998,0.028419999999999997 +2073,18.574157168532054,0.8151166967422911,0,0,10.071034370728265,6.925199866294861,0.35833,14.450605312983194,1.36286,116.7950070699056,6.663248720000001,37.249424616495766,1.4000000000000001e-4,12.157999992370605,0.0013890928710000002,9.00049058596293,0.192458915,90.53831481933594,3.6249599999999997,285.3719431559245,5.9e-4,5.589017033576965,111.64612,0,525.451520284017,4967.85991,2896.521260579427,661.0053197585349,670.221923828125,940.4545735049229,4.846480488777161,5.17446579,2.6852500240008035,0.0624618601,7.578525026639302,0.01182047054,353.2809778849284,325.431659,164.9910570780436,218.85803,246.78205108642578,126.54777000000001,5.09632150332133,4.546584489999999,26.737199783325195,0.037540000000000004,14.781100670496622,46.46912250000001,0.0998350027948618,0.09998,1.6557600498199463,5.038357,0.1961549917856852,0.464827414,388.3219680786132,11.400199094627675,83.49445382482679,245.60523975337355,47.365183871905565,36.259597628635206,-0.2516140546957297,28.37990665435791,8.631829999999999,45330.38904178385,0,0.2010700429479281,0.03004,2.1533498962720237,0.15105000000000002,0.09467870183289051,0.02733 +2074,18.67153766541372,0.8095167059264757,0,0,10.026754041388331,6.940109809239705,0.35124,13.924305200576782,1.2898800000000001,117.24400838216145,6.637218960000001,36.8083241780599,1.2e-4,12.08740003903707,0.001254664528,8.989900588989258,0.1858127,88.80451838175456,3.4828799999999998,282.2849400838216,5.200000000000001e-4,5.583366950352986,111.51635999999999,0,525.2865422566732,4965.15618,2915.2912597656245,665.6306245112745,676.5719350179037,938.4086043072954,4.599600553512573,4.92020662,2.5420599778493247,0.0567389148,6.96284294128418,0.01034291172,357.77697499593097,327.60774200000003,165.80913798014322,220.78414,250.78404998779297,127.53096000000001,5.112911581993103,4.535357819999999,26.622700214385986,0.03542,14.940400838851929,46.93227500000001,0.0935839017232259,0.09434000000000001,1.6649500528971355,5.0826969,0.19484499469399452,0.464962492,389.5199712117512,11.46109779746592,83.51974889793989,245.00760440033574,47.17632625000141,36.15915513417956,-0.2524704519141431,28.72240702311198,8.64594,45107.44118826412,0,0.18943703919649124,0.02802,2.1267098983128867,0.14579999999999999,0.09174440056085587,0.02624 +2075,18.768918162295385,0.8039167151106604,0,0,9.982473712048398,6.9547098477681475,0.34414999999999996,13.415605147679647,1.2169,117.69100761413574,6.611189200000001,36.371923764546715,1e-4,12.017100016276041,0.001120236185,8.97903060913086,0.179166485,87.09782028198242,3.3407999999999998,279.22694142659503,4.5000000000000004e-4,5.577797015508016,111.38659999999999,0,525.1225331624349,4962.45245,2934.0812784830723,670.255929264014,682.9849446614584,936.362635109668,4.364550431569417,4.66594745,2.4063300093015036,0.0510159695,6.397281130154927,0.0088653529,362.2389729817708,329.783825,166.68221028645834,222.71025,254.77704874674478,128.51415,5.128701567649841,4.524131149999999,26.50860007603963,0.0333,15.100600798924765,47.39542750000001,0.08781270124018192,0.0887,1.6748800873756409,5.1270368,0.19362099220355353,0.46509757,390.72097015380854,11.521996500304164,83.54504397105299,244.40996904729792,46.987468628097254,36.0587126397239,-0.25332092104303466,29.065306822458904,8.66005,44884.4933347444,0,0.17844903593262038,0.026000000000000002,2.100209911664327,0.14055,0.08888990183671315,0.02515 +2076,18.86629865917705,0.7983167242948451,0,0,9.938193382708464,6.969009796778361,0.33705999999999997,12.923804918924967,1.14392,118.13700739542644,6.585159440000001,35.94002374013265,8e-5,11.947200059890747,9.85807842e-4,8.967900594075521,0.17252027,85.41822242736816,3.19872,276.1969451904297,3.800000000000001e-4,5.572196841239929,111.25684,0,524.9535598754883,4959.74872,2952.91123453776,674.8812340167534,689.460927327474,934.3166659120404,4.140830556551616,4.41168828,2.277679979801178,0.045293024200000004,5.87774936358134,0.007387794080000001,366.66697692871094,331.959908,167.60828272501627,224.63636,258.76305135091144,129.49734,5.143731514612834,4.512904479999999,26.39489984512329,0.03118,15.261600653330484,47.85858,0.08243880172570546,0.08306,1.685470054546992,5.1713767,0.19247699280579886,0.465232648,391.9239705403645,11.582895203142408,83.57033904416609,243.81233369426008,46.7986110061931,35.958270145268244,-0.2541654620824045,29.40870714187622,8.67416,44661.545481224675,0,0.16807303701837858,0.02398,2.073849896589915,0.1353,0.08611350071926911,0.024059999999999998 +2077,18.963679156058717,0.7927167334790297,0,0,9.89391305336853,6.982999841372172,0.32997,12.448604822158813,1.07094,118.5800069173177,6.559129680000001,35.51262346903483,6.000000000000002e-5,11.877499977747599,8.513794990000002e-4,8.956520398457846,0.165874055,83.76532554626465,3.05664,273.1969451904297,3.1000000000000005e-4,5.56654687722524,111.12707999999999,0,524.7775802612305,4957.044989999999,2971.751281738281,679.506538769493,696.0019276936849,932.2706967144129,3.9279504815737405,4.157429110000001,2.1557799776395163,0.03957007890000001,5.400487860043843,0.0059102352600000005,371.06297810872394,334.135991,168.5813420613607,226.56247,262.74105072021484,130.48053000000002,5.1580015023549395,4.501677809999999,26.28150002161662,0.029060000000000002,15.423300743103027,48.3217325,0.07739320149024327,0.07742,1.6966400841871898,5.2157165999999995,0.19140899057189623,0.46536772600000004,393.1309687296549,11.643793905980653,83.59563411727919,243.21469834122223,46.60975338428894,35.857827650812595,-0.2550040750322525,29.75250705083211,8.688270000000001,44438.59762770495,0,0.15827403217554092,0.02196,2.0476399064064026,0.13005,0.08341470112403233,0.022969999999999997 +2078,19.06105965294038,0.7871167426632144,0,0,9.849632724028599,6.996679862340291,0.32287999999999994,11.989504734675089,0.99796,119.02200762430827,6.533099920000001,35.08972358703613,3.9999999999999996e-05,11.80809998512268,7.16951156e-4,8.94489041964213,0.15922783999999998,82.13893000284831,2.91456,270.2239405314128,2.3999999999999998e-4,5.560836672782898,110.99731999999999,0,524.5935948689779,4954.34126,2990.6113077799473,684.1318435222324,702.6059265136719,930.2247275167854,3.725460429986318,3.90316994,2.040279984474182,0.033847133599999996,4.962046305338542,0.00443267644,375.4269841512044,336.312074,169.60040918986002,228.48858,266.71205139160156,131.46372000000002,5.171531518300374,4.490451139999999,26.168400128682453,0.026940000000000002,15.585500637690226,48.784885,0.07261940029760201,0.07178,1.7083200812339783,5.2600565,0.19041099026799202,0.465502804,394.34096781412757,11.704692608818897,83.62092919039229,242.61706298818441,46.420895762384795,35.75738515635694,-0.2558367598925788,30.09680716196696,8.70238,44215.64977418522,0,0.1490260325372219,0.01994,2.021589994430542,0.1248,0.08079190117617448,0.021879999999999997 +2079,19.158440149822045,0.781516751847399,0,0,9.805352394688665,7.010049859682719,0.31578999999999996,11.545904556910196,0.92498,119.46300760904948,6.5070701600000005,34.67122300465902,1.9999999999999998e-5,11.739099899927774,5.82522813e-4,8.933030287424723,0.152581625,80.53893216451009,2.77248,267.2799428304036,1.7e-4,5.555056691169739,110.86756,0,524.4026285807291,4951.63753,3009.481262207031,688.757148274972,709.2749277750651,928.1787583191579,3.5328903992970786,3.64891077,1.930860012769699,0.0281241883,4.559265057245891,0.0029551176199999994,379.760981241862,338.488157,170.66045888264975,230.41469,270.67405192057294,132.44691,5.184351483980815,4.479224469999999,26.055699825286865,0.024820000000000002,15.74820081392924,49.2480375,0.0680701012412707,0.06614,1.7204600671927135,5.3043964,0.18947899341583252,0.465637882,395.5529632568359,11.765591311657142,83.64622426350539,242.0194276351466,46.23203814048064,35.65694266190129,-0.2566635166633833,30.441606839497883,8.71649,43992.7019206655,0,0.14029802878697714,0.017920000000000002,1.995709906021754,0.11954999999999999,0.0782424012819926,0.020789999999999996 +2080,19.25582064670371,0.7759167610315837,0,0,9.761072065348731,7.023119846979777,0.3087,11.117504358291626,0.852,119.90100797017415,6.4810404,34.2571226755778,0,11.670300006866455,4.4809447e-4,8.920940478642782,0.14593541,78.96503448486328,2.6304,264.3629455566406,1e-4,5.549216349919637,110.7378,0,524.2036285400391,4948.9338,3028.3512573242183,693.3824530277114,716.0079294840494,926.1327891215303,3.3498103817303977,3.3946516000000004,1.8272099892298381,0.022401243,4.189233819643657,0.0014775588,384.0649770100911,340.66424,171.75851186116537,232.3408,274.6290537516276,133.4301,5.19646139939626,4.467997799999999,25.943399906158447,0.0227,15.911300738652548,49.71119,0.06370640111466248,0.0605,1.7329900761445363,5.3487363,0.18860899284482002,0.46577296,396.76896921793616,11.826490014495386,83.67151933661849,241.42179228210875,46.043180518576484,35.556500167445634,-0.257484345344666,30.7869070370992,8.7306,43769.754067145775,0,0.1320620266099771,0.0159,1.96998992562294,0.1143,0.07576480135321617,0.0197 +2081,19.383321284567835,0.7683202818473074,0,0,9.729928673352696,7.035879810651143,0.29607999999999995,10.703804095586142,0.81269,120.33800760904948,6.434770820000001,33.84742228190104,0,11.601900100708008,4.25689747e-4,8.908650477727255,0.141363939,77.41703796386719,2.53814,261.4739456176758,9e-5,5.543307344118754,110.50680999999999,0,523.9967575073242,4944.127759999999,3047.22129313151,697.5765269852654,722.8079325358073,925.4613132358086,3.175800323486328,3.2492708500000003,1.7290399968624115,0.020790642680000002,3.8492727080980935,0.0013462202399999999,388.33897908528644,342.465234,172.89255650838217,234.59449,278.5760548909505,134.12343,5.207881490389506,4.460753239999999,25.83140007654826,0.02159,16.07460101445516,50.1420424,0.05950140114873648,0.05754,1.7458800574143727,5.4006232,0.18779699256022772,0.466620266,397.98696899414057,11.893043580914707,83.89975243778554,240.80728335079982,45.946809182750265,35.47585854398692,-0.2582971393474719,31.132607142130535,8.76398,43580.112444216415,0,0.12429302682479222,0.01501,1.944449911514918,0.11069999999999999,0.07335770130157471,0.01899 +2082,19.510821922431955,0.7607238026630311,0,0,9.698785281356662,7.0482198397318525,0.28346,10.304404020309448,0.77338,120.77200698852539,6.38850124,33.44202168782552,0,11.533799966176352,4.03285024e-4,8.896140257517496,0.136792468,75.89463996887207,2.44588,258.61194610595703,8e-5,5.535168608029683,110.27582,0,523.6672999064127,4939.32172,3065.961242675781,701.7706009428196,729.6789296468099,924.7898373500868,3.0103803475697837,3.1038901000000005,1.636050005753835,0.01918004236,3.536881665388743,0.00121488168,392.57297770182294,344.266228,174.06561152140299,236.84818,282.5050532023112,134.81676000000002,5.2186814943949384,4.45350868,25.71969985961914,0.02048,16.23710076014201,50.5728948,0.05556150060147047,0.05458,1.759180059035619,5.4525101,0.18704399218161902,0.467467572,399.20796712239576,11.959597147334028,84.1279855389526,240.19277441949092,45.85043784692404,35.3952169205282,-0.259101898671801,31.479207356770832,8.797360000000001,43390.47082128706,0,0.1169650238007307,0.01412,1.919089913368225,0.1071,0.07101850087443988,0.018279999999999998 +2083,19.638322560296075,0.7531273234787548,0,0,9.667641889360626,7.059999863306682,0.27083999999999997,9.918873945871988,0.73407,121.20300801595052,6.34223166,33.04082171122233,0,11.46590002377828,3.80880301e-4,8.883440256118774,0.13222099699999998,74.39754295349121,2.35362,255.77794901529947,7.000000000000001e-5,5.524158438046773,110.04482999999999,0,523.1726633707682,4934.51568,3084.461242675781,705.9646749003736,736.6289215087891,924.1183614643651,2.8531203468640647,2.9585093500000004,1.5479599833488464,0.01756944204,3.249760707219442,0.00108354312,396.7549769083659,346.067222,175.28167215983072,239.10187,286.40405019124347,135.51009000000002,5.228891611099243,4.4462641199999995,25.608399868011475,0.019370000000000002,16.3978009223938,51.0037472,0.0519755007699132,0.05162,1.7729600667953491,5.504397,0.18635299305121103,0.468314878,400.433972676595,12.02615071375335,84.35621864011965,239.57826548818198,45.75406651109782,35.31457529706948,-0.25989862331765323,31.82700713475545,8.83074,43200.8291983577,0,0.11005402232209842,0.01323,1.8939099311828613,0.1035,0.068746001770099,0.01757 +2084,19.7658231981602,0.7455308442944785,0,0,9.636498497364592,7.071249882380168,0.25822,9.546733776728312,0.6947599999999999,121.63100687662761,6.29596208,32.64392217000326,0,11.398400068283081,3.58475578e-4,8.870550314585367,0.12764952599999999,72.92554601033528,2.26136,252.96994654337564,6e-5,5.512248277664185,109.81384,0,522.6137186686198,4929.70964,3102.731221516927,710.1587488579275,743.6569315592448,923.4468855786433,2.7036402821540833,2.8131286,1.4645199875036876,0.01595884172,2.9858698646227517,9.522045599999999e-4,400.88798268636066,347.868216,176.53672409057617,241.35556,290.2740529378255,136.20342000000002,5.238541444142659,4.439019559999999,25.49750010172526,0.01826,16.556700547536213,51.4345996,0.04868840084721645,0.048659999999999995,1.7871400614579518,5.5562838999999995,0.18572099258502325,0.469162184,401.662971496582,12.09270428017267,84.5844517412867,238.96375655687308,45.65769517527159,35.233933673610764,-0.2606873132850286,32.17610740661621,8.86412,43011.18757542835,0,0.10353902168571949,0.01234,1.8689199487368267,0.09989999999999999,0.06653900134066741,0.01686 +2085,19.893323836024322,0.7379343651102022,0,0,9.605355105368556,7.081949869791667,0.24559999999999998,9.187613725662231,0.65545,122.05600865681966,6.2496925,32.251221338907875,0,11.331199963887533,3.36070855e-4,8.857470512390137,0.12307805499999999,71.4783484141032,2.1691,250.18894704182944,5e-5,5.499988118807475,109.58285,0,522.0258153279623,4924.9036,3120.781168619791,714.3528228154817,750.7639312744141,922.7754096929216,2.561610301335653,2.6677478500000005,1.3854900101820629,0.0143482414,2.743329028288523,8.20866e-4,404.9719721476237,349.66921,177.82877604166666,243.60925,294.1140492757161,136.89675,5.247621496518453,4.431775,25.386899948120117,0.01715,16.713900566101074,51.865452000000005,0.04564910102635622,0.0457,1.8016800781091054,5.6081708,0.18514099096258482,0.47000949000000003,402.89697265624994,12.159257846591991,84.81268484245376,238.34924762556415,45.56132383944537,35.15329205015205,-0.2614679685739272,32.52640724182129,8.8975,42821.545952498986,0,0.09739561999837558,0.01145,1.8441199362277985,0.0963,0.06439630128443241,0.016149999999999998 +2086,20.020824473888442,0.7303378859259259,0,0,9.57421171337252,7.092099825541179,0.23298,8.841103474299112,0.61614,122.47800763448079,6.20342292,31.86272128423055,0,11.264300028483072,3.13666132e-4,8.844220399856567,0.118506584,70.05575116475423,2.07684,247.4349479675293,4e-5,5.48757799466451,109.35185999999999,0,521.4188435872396,4920.09756,3138.621154785156,718.5468967730357,757.9509226481119,922.1039338071998,2.42667027314504,2.5223671000000003,1.310640017191569,0.012737641079999999,2.5203983585039773,6.8952744e-4,409.00697326660156,351.47020399999997,179.15281422932944,245.86294,297.9260559082031,137.59008,5.256151556968689,4.42453044,25.276700178782146,0.01604,16.869700749715168,52.296304400000004,0.042815600211421646,0.04274,1.8165200650691986,5.6600577,0.18461199228962263,0.470856796,404.13396962483716,12.22581141301131,85.04091794362081,237.7347386942552,45.46495250361915,35.072650426693336,-0.2622405891843489,32.87800661722819,8.93088,42631.904329569625,0,0.09160471893846989,0.01056,1.819519927104314,0.0927,0.06231660054375728,0.015439999999999999 +2087,20.148325111752563,0.7227414067416496,0,0,9.543068321376486,7.101709882418315,0.22036,8.506823460261026,0.57683,122.89600626627605,6.15715334,31.478321075439453,0,11.197699944178263,2.91261409e-4,8.830800294876099,0.113935113,68.6574535369873,1.98458,244.70694732666016,3.000000000000001e-5,5.475037892659505,109.12087,0,520.7978846232096,4915.291520000001,3156.2512207031245,722.7409707305897,765.2159271240234,921.4324579214781,2.298520306746165,2.37698635,1.2397599915663402,0.01112704076,2.315507650375366,5.5818888e-4,412.9949773152669,353.27119799999997,180.5078582763672,248.11663000000001,301.7090555826823,138.28341,5.264151453971863,4.41728588,25.16689984003703,0.01493,17.02400080362956,52.7271568,0.04015280089030663,0.039779999999999996,1.8316300710042317,5.7119446,0.1841299906373024,0.471704102,405.3749643961588,12.292364979430632,85.26915104478786,237.1202297629463,45.368581167792925,34.99200880323462,-0.2630051751162938,33.230807304382324,8.96426,42442.26270664027,0,0.08614801863829295,0.00967,1.7951099475224812,0.0891,0.06029790143171946,0.01473 +2088,20.275825749616686,0.7151449275573732,0,0,9.51192492938045,7.110769947369893,0.20773999999999998,8.184373378753662,0.53752,123.31200790405273,6.11088376,31.098020712534588,0,11.13129997253418,2.68856686e-4,8.81721027692159,0.10936364199999998,67.28315607706706,1.8923199999999998,242.00494893391928,1.9999999999999998e-5,5.46240774790446,108.88987999999999,0,520.1659164428711,4910.48548,3173.7012125651036,726.9350446881436,772.5609334309896,920.7609820357563,2.176830232143402,2.2316056,1.1726399958133698,0.009516440439999998,2.1271770199139914,4.268503199999999e-4,416.9359766642253,355.072192,181.8898900349935,250.37032,305.4640528361003,138.97674,5.271611491839091,4.4100413199999995,25.057400067647297,0.013819999999999999,17.1769011815389,53.1580092,0.03763180070867141,0.03682,1.8469700813293457,5.7638315,0.1836909924944242,0.472551408,406.6199696858723,12.358918545849953,85.49738414595491,236.50572083163738,45.272209831966705,34.9113671797759,-0.26376172636976186,33.584906895955406,8.997639999999999,42252.62108371091,0,0.08100641705095768,0.00878,1.7709099352359772,0.08549999999999999,0.058337802067399025,0.01402 +2089,20.40332638748081,0.7075484483730969,0,0,9.480781537384416,7.119289954503377,0.19512,7.873393257459004,0.49821,123.72400728861491,6.0646141799999995,30.721720536549885,0,11.065300067265829,2.46451963e-4,8.803470452626547,0.10479217099999999,65.93265787760417,1.80006,239.32895151774088,9.999999999999999e-6,5.4496976137161255,108.65889,0,519.5219497680664,4905.67944,3190.9711914062495,731.1291186456978,779.9839223225912,920.0895061500346,2.061300218105316,2.0862248500000002,1.1090799967447917,0.007905840119999999,1.9540964563687642,2.955117599999998e-4,420.8319727579753,356.873186,183.29692586263022,252.62401,309.19105529785156,139.67007,5.278541485468547,4.40279676,24.948200066884358,0.012709999999999999,17.328500747680664,53.5888616,0.03522860072553158,0.03386,1.8625100751717885,5.8157184,0.18329298992951712,0.473398714,407.86796824137366,12.425472112269274,85.72561724712197,235.89121190032847,45.17583849614048,34.830725556317184,-0.26451024294475306,33.94030729929606,9.03102,42062.97946078156,0,0.07616191481550534,0.00789,1.7469099561373393,0.0819,0.05643540093054374,0.013309999999999999 +2090,20.53082702534493,0.6999519691888206,0,0,9.44963814538838,7.127259890238444,0.1825,7.573513150215149,0.4589,124.13300768534343,6.0183446,30.34942038853963,0,10.999599933624268,2.2404724e-4,8.789580345153809,0.1002207,64.605560302734375,1.7078,236.67895126342773,0,5.436897913614909,108.4279,0,518.86700439453125,4900.8734,3208.071166992187,735.3231926032518,787.4879201253256,919.4180302643128,1.9516402284304302,1.9408441000000003,1.0488999982674916,0.0062952398,1.795015941063563,1.641732e-4,424.6839777628581,358.67418,184.72595342000326,254.8777,312.8910547892253,140.3634,5.284971515337626,4.3955522,24.839399655659992,0.0116,17.47900104522705,54.019714,0.032923300129671894,0.0309,1.878200074036916,5.8676053,0.18293199439843497,0.47424602,409.11996714274085,12.492025678688595,85.95385034828902,235.27670296901954,45.07946716031426,34.750083932858466,-0.2652507248412675,34.296807289123535,9.0644,41873.337837852196,0,0.07159951453407605,0.006999999999999999,1.7231299380461376,0.0783,0.054589900809029736,0.0126 +2091,20.66278690716724,0.7024403314860258,0,0,9.415197623574198,7.134689927101135,0.1825,7.284373005231221,0.43762,124.53900655110677,6.0183446,29.981220245361328,0,10.934199968973795,2.01642516e-4,8.775550365447998,0.0970558359,63.30156326293945,1.6476899999999999,234.0539525349935,0.0012000000000000001,5.4240158796310425,108.4279,0,518.2028757731119,4900.8734,3225.0111694335933,739.5640925716732,795.0699157714844,919.0187296339985,1.8475902080535889,1.8667949400000003,0.9919329881668091,0.00775867862,1.6488054792086284,0.00105070848,428.49097951253253,360.87042299999996,186.17698542277017,257.46318,316.5630569458008,141.22240000000002,5.290891448656718,4.39604397,24.730900287628174,0.01044,17.62830098470052,54.4855851,0.03069940038646261,0.02781,1.894040087858836,5.92712293,0.18260599176088968,0.476014312,410.3759689331054,12.55741282040941,86.18930320922603,234.5409363007512,44.96932836121938,34.64991120989742,-0.26599384262044423,34.65470790863037,9.11009,41599.46870158409,0,0.06730351472894351,0.0070999999999999995,1.699549953142802,0.07583,0.05279910067717234,0.012150000000000001 +2092,20.794746788989556,0.704928693783231,0,0,9.380757101760013,7.141849915186564,0.1825,7.005632996559143,0.41634,124.9440066019694,6.0183446,29.616820017496746,0,10.869100014368692,1.7923779199999998e-4,8.761380354563395,0.0938909718,62.0205659866333,1.58758,231.45495223999023,0.0024000000000000002,5.415233294169108,108.4279,0,517.7050857543945,4900.8734,3241.801188151041,743.8049925400946,802.7359161376953,918.6194290036841,1.7488601903120677,1.7927457800000002,0.9380040069421133,0.00922211744,1.5144350131352742,0.0019372437600000002,432.2659734090169,363.066666,187.65602747599283,260.04866,320.2140579223633,142.0814,5.296451449394226,4.39653574,24.622700373331707,0.00928,17.777201016743977,54.9514562,0.028532900537053745,0.02472,1.910140077273051,5.98664056,0.18232399225234985,0.477782604,411.6359710693359,12.622799962130228,86.42475607016303,233.80516963248286,44.859189562124506,34.54973848693638,-0.2667395962822833,35.0140069325765,9.15578,41325.59956531598,0,0.06325721275061369,0.0072,1.6761899590492249,0.07336,0.05106230018039545,0.0117 +2093,20.926706670811868,0.7074170560804361,0,0,9.34631657994583,7.148999969164531,0.1825,6.7369528611501055,0.39505999999999997,125.34800656636556,6.0183446,29.25641965866089,0,10.80430006980896,1.56833068e-4,8.747090339660645,0.0907261077,60.762167612711586,1.5274699999999999,228.88095219930014,0.0036,5.411743243535359,108.4279,0,517.4326426188151,4900.8734,3258.4811401367183,748.045892508516,810.4889221191406,918.2201283733698,1.6552201906840007,1.7186966200000002,0.8869550029436747,0.01068555626,1.390954613685608,0.00282377904,436.0179748535156,365.262909,189.17007700602213,262.63414,323.8500569661458,142.9404,5.301801482836406,4.39702751,24.51480007171631,0.008119999999999999,17.92660093307495,55.4173273,0.02640920039266348,0.02163,1.926620066165924,6.04615819,0.1820929894844691,0.479550896,412.897969563802,12.688187103851044,86.66020893110003,233.06940296421453,44.74905076302963,34.44956576397533,-0.26748798582678485,35.37510744730631,9.201469999999999,41051.730429047864,0,0.05944671264539162,0.007299999999999999,1.653039942185084,0.07089,0.049378600902855396,0.01125 +2094,21.05866655263418,0.7099054183776413,0,0,9.311876058131645,7.156149943669637,0.1825,6.4779927333196,0.37378,125.7530066172282,6.0183446,28.899819215138752,0,10.739800055821737,1.34428344e-4,8.732670227686564,0.0875612436,59.52607091267904,1.4673599999999998,226.33095169067383,0.0048000000000000004,5.40972359975179,108.4279,0,517.2286376953125,4900.8734,3275.0411580403643,752.2867924769374,818.3279113769531,917.8208277430554,1.56642018755277,1.64464746,0.8386369943618774,0.012148995079999999,1.2774742345015209,0.0037103143200000006,439.7479756673177,367.459152,190.71711858113608,265.21962,327.47105407714844,143.7994,5.306941469510396,4.39751928,24.407300154368084,0.006959999999999999,18.076300779978435,55.8831984,0.024321300443261862,0.01854,1.9434300859769185,6.10567582,0.18190999204913774,0.481319188,414.16496531168616,12.75357424557186,86.89566179203703,232.33363629594618,44.63891196393475,34.34939304101428,-0.2682390112539487,35.73790772755941,9.24716,40777.86129277976,0,0.0558609114959836,0.0073999999999999995,1.6300999621550243,0.06842,0.04774610077341398,0.0108 +2095,21.19062643445649,0.7123937806748466,0,0,9.277435536317462,7.163309892018636,0.1825,6.228452603022258,0.35250000000000004,126.15700721740723,6.0183446,28.547119140625,0,10.675599972407023,1.1202362e-4,8.718130270640055,0.08439637950000001,58.31197261810303,1.40725,223.8059514363607,0.006,5.408063332239787,108.4279,0,517.0415623982748,4900.8734,3291.4811401367183,756.5276924453589,826.2539215087891,917.421527112741,1.48222017288208,1.5705983000000001,0.7929080029328665,0.013612433899999998,1.173193911711375,0.0045968496,443.45597585042316,369.655395,192.2941576639811,267.80510000000004,331.0770543416341,144.6584,5.311861435572307,4.39801105,24.30010000864665,0.0058,18.22620089848836,56.3490695,0.022263300449897844,0.01545,1.9605300923188527,6.16519345,0.18177098905046782,0.48308748,415.4339701334635,12.818961387292678,87.13111465297402,231.59786962767785,44.528773164839876,34.24922031805323,-0.2689926725637749,36.10250695546468,9.29285,40503.99215651165,0,0.05248561097929875,0.0075,1.6073899666468303,0.06595,0.04616300047685703,0.010350000000000002 +2096,21.322586316278805,0.7148821429720518,0,0,9.242995014503279,7.170459906260173,0.1825,5.9880024989446,0.33122,126.56100654602051,6.0183446,28.198219140370686,0,10.611599842707315,8.961889599999999e-5,8.703460137049357,0.08123151540000001,57.11957518259684,1.34714,221.30595270792642,0.0072,5.406463543574016,108.4279,0,516.8556162516276,4900.8734,3307.83115641276,760.7685924137803,834.2669169108073,917.0222264824267,1.40239014228185,1.4965491400000002,0.749627004067103,0.01507587272,1.0773735741774242,0.00548338488,447.14198048909503,371.851638,193.89919662475586,270.39058,334.66905466715497,145.5174,5.31658148765564,4.39850282,24.19319995244344,0.00464,18.376200993855793,56.8149406,0.020230400376021862,0.01236,1.9778700868288677,6.22471108,0.18167498956123987,0.48485577199999996,416.70696767171216,12.884348529013494,87.36656751391102,230.86210295940953,44.41863436574499,34.14904759509219,-0.26974896975626345,36.46880785624186,9.33854,40230.12302024354,0,0.049307710491120815,0.0076,1.5848899682362874,0.06348,0.044627600659926735,0.0099 +2097,21.454546198101117,0.7173705052692569,0,0,9.208554492689094,7.177609920501709,0.1825,5.75634245077769,0.30994,126.96600659688313,6.0183446,27.853018919626873,0,10.54800001780192,6.7214172e-5,8.688690106074015,0.07806665130000001,55.94867738087972,1.28703,218.8299560546875,0.0084,5.4048335154851275,108.4279,0,516.6636123657227,4900.8734,3324.061157226562,765.0094923822018,842.3669179280599,916.6229258521123,1.3267301519711812,1.42249998,0.7086680084466934,0.016539311539999997,0.9893252948919932,0.00636992016,450.80696868896484,374.047881,195.52822621663412,272.97606,338.2460581461589,146.3764,5.321091492970784,4.39899459,24.08660014470418,0.0034800000000000005,18.526100953420002,57.2808117,0.018223900347948074,0.00927,1.9954300820827484,6.28422871,0.18161699300011,0.48662406399999997,417.9819717407226,12.94973567073431,87.60202037484802,230.12633629114117,44.308495566650116,34.048874872131144,-0.27050790283141435,36.83680788675944,9.38423,39956.253883975434,0,0.04631840996444225,0.0077,1.562619944413503,0.06101,0.04313910069564978,0.00945 +2098,21.586506079923428,0.7198588675664621,0,0,9.174113970874911,7.184759895006816,0.1825,5.533182342847188,0.28866000000000003,127.37000783284505,6.0183446,27.511618773142498,0,10.484700043996176,4.480944799999998e-5,8.673810164133707,0.0749017872,54.79897944132487,1.2269199999999998,216.37795384724936,0.009600000000000001,5.4031535387039185,108.4279,0,516.46563720703125,4900.8734,3340.2011515299473,769.2503923506231,850.5539245605469,916.223625221798,1.2550301551818848,1.34845082,0.6699089954296747,0.01800275036,0.9084170162677765,0.007256455440000001,454.4499740600586,376.244124,197.18025588989258,275.56154000000004,341.80806223551434,147.2354,5.325401425361633,4.39948636,23.980300108591717,0.002319999999999999,18.67600107192993,57.746682799999995,0.01623969990760088,0.006179999999999998,2.013170083363851,6.34374634,0.18159599229693413,0.48839235599999997,419.2609736124674,13.015122812455125,87.83747323578503,229.39056962287285,44.19835676755524,33.948702149170096,-0.2712694717892277,37.2067076365153,9.42992,39682.38474770732,0,0.043505809580286346,0.0078,1.540559967358907,0.058539999999999995,0.04169720131903887,0.009000000000000001 +2099,21.718465961745743,0.7223472298636673,0,0,9.139673449060727,7.191909948984782,0.1825,5.318232258160909,0.26738000000000006,127.7750072479248,6.0183446,27.173818588256836,0,10.421599944432577,2.240472399999999e-5,8.658830165863037,0.0717369231,53.670081774393715,1.16681,213.94995625813803,0.0108,5.401423454284668,108.4279,0,516.2606531778971,4900.8734,3356.241129557291,773.4912923190445,858.8289133707682,915.8243245914836,1.1870901485284169,1.27440166,0.6332370042800903,0.01946618918,0.8340757787227631,0.00814299072,458.0719757080078,378.44036700000004,198.8532854715983,278.14702,345.35505930582684,148.09439999999998,5.329501549402873,4.39997813,23.874300003051758,0.0011599999999999996,18.825800736745197,58.212553899999996,0.014268999841685096,0.003089999999999999,2.0310600797335305,6.403263969999999,0.18160799145698547,0.490160648,420.54397074381507,13.080509954175943,88.07292609672203,228.6548029546045,44.08821796846036,33.848529426209055,-0.27203367662970324,37.578207651774086,9.47561,39408.515611439216,0,0.04085890855640173,0.0079,1.5187299748261769,0.05607,0.04029990080744028,0.008550000000000002 +2100,21.850425843568054,0.7248355921608725,0,0,9.105232927246544,7.199059923489888,0.1825,5.1112122138341265,0.24610000000000004,128.1790065765381,6.0183446,26.839818159739178,0,10.35890007019043,0,8.643750031789144,0.068572059,52.56178506215414,1.1066999999999998,211.54595565795898,0.012,5.399633606274922,108.4279,0,516.0486602783203,4900.8734,3372.1811523437495,777.732192287466,867.19091796875,915.4250239611692,1.1227201422055562,1.2003525,0.5985410014788309,0.020929628,0.7657735298077265,0.009029526,461.6729736328125,380.63661,200.54431788126627,280.7325,348.88805898030597,148.9534,5.333401481310527,4.4004699,23.76859998703003,0,18.975300788879395,58.678425,0.012310000058884421,0,2.0490800937016806,6.4627816,0.18165199334422746,0.49192894,421.8289667765299,13.145897095896759,88.30837895765903,227.91903628633617,43.978079169365486,33.74835670324801,-0.2728005173528413,37.951507568359375,9.5213,39134.6464751711,0,0.03836900802950064,0.008,1.4971199929714203,0.0536,0.03894589996586243,0.008100000000000001 +2101,21.704756337944268,0.710338880317655,0,0,9.055633151826077,7.206209897994995,0.18128333333333332,4.9071822961171465,0.24445933333333336,128.58300654093424,5.9782223026666665,26.509318033854168,0,10.29640007019043,0,8.627260049184164,0.06811491194000001,51.49499098459879,1.099322,209.16495641072592,0.01192,5.397793531417847,107.70504733333333,0,515.8297653198242,4868.200910666667,3388.0310058593745,775.2219547167276,875.6399129231771,911.5379640491448,1.0639301538467407,1.19235015,0.5662649969259897,0.020790097146666665,0.7033183177312216,0.00896932916,465.2529780069987,378.09903260000004,202.2523307800293,278.86095,352.4060567220052,147.96037733333333,5.337101459503174,4.371133434,23.663200219472248,0,19.12460120519002,58.287235499999994,0.01036110008135438,0,2.0672000845273337,6.419696389333333,0.1817259912689527,0.4886494137333333,423.11696879069007,13.13014298718696,88.15961770503921,226.75171028589546,43.72663359333863,33.6193790640291,-0.27355201914434163,38.3266077041626,9.457824666666667,38881.839297067236,0,0.0361134068419536,0.007946666666666666,1.474970002969106,0.05324266666666667,0.03754249991228183,0.008046000000000001 +2102,21.55908683232048,0.6958421684744376,0,0,9.006033376405613,7.213329911231995,0.18006666666666665,4.706332246462504,0.2428186666666667,128.98600641886392,5.938100005333333,26.18241786956787,0,10.23419984181722,0,8.609399954477945,0.06765776488,50.46839205423991,1.0919439999999998,206.80795669555664,0.01184,5.395863652229309,106.98219466666666,0,515.5003280639648,4835.528421333333,3402.680786132812,772.7117171459894,884.1099141438802,907.6509041371202,1.011610135436058,1.1843477999999998,0.5362870047489802,0.020650566293333332,0.6462221393982569,0.008909132319999999,468.69897715250653,375.5614552,203.85309219360352,276.9894,355.84605662027997,146.96735466666667,5.340131441752116,4.341796968,23.558099905649822,0,19.256200631459553,57.896046,0.008583449991419911,0,2.083510100841522,6.376611178666666,0.18176999191443124,0.48536988746666665,424.3999710083007,13.114388878477161,88.0108564524194,225.58438428545472,43.47518801731178,33.49040142481019,-0.2742881820042045,38.7011079788208,9.394349333333334,38629.03211896337,0,0.03406510688364506,0.007893333333333334,1.4523099760214488,0.05288533333333333,0.0360962999984622,0.007992 +2103,21.413417326696692,0.68134545663122,0,0,8.956433600985147,7.220399936040242,0.17885,4.513542175292969,0.24117800000000003,129.3870086669922,5.897977708,25.859217643737793,0,10.172300020853678,0,8.591559966405233,0.06720061782,49.45969422658285,1.0845659999999997,204.47495778401694,0.01176,5.393693844477336,106.25934199999999,0,515.0056508382162,4802.855932,3415.090677897135,770.201479575251,892.5329132080078,903.7638442250957,0.9642591377099355,1.17634545,0.5079390108585358,0.02051103544,0.5937019685904185,0.00884893548,471.9029719034831,373.02387780000004,205.23078028361002,275.11785000000003,359.14505767822266,145.97433199999998,5.341991464296977,4.312460502,23.453500270843506,0,19.354601224263508,57.504856499999995,0.007110189995728433,0,2.096280058224996,6.333525968,0.18173199271162352,0.4820903612,425.66897074381507,13.098634769767363,87.86209519979958,224.41705828501398,43.22374244128493,33.361423785591285,-0.2750090059324297,39.073007583618164,9.330874,38376.2249408595,0,0.03212910673270623,0.00784,1.4299599925676982,0.052528000000000005,0.03470440053691467,0.007938 +2104,21.267747821072906,0.6668487447880026,0,0,8.90683382556468,7.227419932683309,0.17763333333333334,4.328502019246419,0.23953733333333338,129.7840092976888,5.857855410666667,25.539417425791424,0,10.110799868901571,0,8.573729991912842,0.06674347076,48.468695958455406,1.0771879999999998,202.16395823160806,0.01168,5.391143957773845,105.53648933333332,0,514.4238586425781,4770.183442666667,3425.450602213541,767.6912420045128,900.9109191894531,899.8767843130711,0.9213581333557764,1.1683431,0.4811279997229576,0.020371504586666665,0.5453798025846481,0.00878873864,474.86897532145184,370.4863004,206.39650344848633,273.2463,362.30505625406903,144.98130933333331,5.3426915009816485,4.283124036,23.349299907684326,0,19.423300902048748,57.113667,0.005889130057767034,0,2.10586009422938,6.290440757333333,0.18161399041612944,0.4788108349333333,426.92497253417963,13.082880661057564,87.71333394717978,223.24973228457327,42.97229686525807,33.232446146372375,-0.2757144909290173,39.442108154296875,9.267398666666667,38123.417762755635,0,0.030298506220181782,0.0077866666666666666,1.40789998571078,0.05217066666666667,0.03336490038782358,0.007884 +2105,21.12207831544912,0.6523520329447852,0,0,8.857234050144214,7.234379927317302,0.17641666666666667,4.15089197953542,0.2378966666666667,130.1790033976237,5.8177331133333325,25.22311766942342,0,10.049500147501627,0,8.555920044581095,0.06628632370000001,47.49499797821045,1.06981,199.87595748901367,0.0116,5.388243993123372,104.81363666666667,0,513.7830022176107,4737.510953333334,3433.890482584635,765.1810044337744,909.2469126383463,895.9897244010466,0.8824381430943807,1.16034075,0.4557649989922841,0.020231973733333332,0.5009386613965034,0.0087285418,477.6029764811198,367.94872300000003,207.36423619588217,271.37475,365.3270568847656,143.98828666666665,5.3422614733378095,4.25378757,23.245500087738037,0,19.46570110321045,56.7224775,0.004877069965004921,0,2.1125600735346475,6.247355546666666,0.18141899133721986,0.47553130866666665,428.1659723917643,13.067126552347766,87.56457269455996,222.08240628413256,42.72085128923122,33.103468507153465,-0.27640463699396745,39.80860710144043,9.203923333333334,37870.610584651775,0,0.02856650622561574,0.007733333333333333,1.3861300150553386,0.051813333333333336,0.032075799691180386,0.00783 +2106,20.976408809825333,0.6378553211015677,0,0,8.80763427472375,7.241289933522542,0.1752,3.9804318944613137,0.23625600000000002,130.5710080464681,5.777610815999999,24.9104167620341,0,9.988450050354004,0,8.538129965464273,0.06582917664,46.53859996795654,1.0624319999999998,197.60995737711588,0.01152,5.385004083315532,104.090784,0,513.0971221923828,4704.838464,3440.580403645833,762.6707668630361,917.5409291585287,892.1026644890221,0.847083126505216,1.1523383999999999,0.4317700018485387,0.02009244288,0.46008452276388806,0.00866834496,480.1089782714844,365.41114560000005,208.14599100748697,269.5032,368.21405537923175,142.995264,5.3406914075215655,4.224451104,23.14199988047282,0,19.484501202901203,56.331287999999994,0.00403827001961569,0,2.1166900793711343,6.2042703359999996,0.1811509927113851,0.4722517824,429.39397176106763,13.051372443637968,87.41581144194014,220.91508028369182,42.46940571320437,32.974490867934556,-0.27707944412727986,40.172407468159996,9.140448000000001,37617.80340654791,0,0.026927005654821794,0.00768,1.3646500011285145,0.051456,0.030835400025049847,0.007776000000000001 +2107,20.830739304201547,0.6233586092583503,0,0,8.758034499303283,7.248139937718709,0.17398333333333332,3.8168318470319114,0.23461533333333337,130.96100616455078,5.737488518666666,24.601016998291016,0,9.927730083465576,0,8.520359992980957,0.06537202958,45.59920120239258,1.0550539999999997,195.36696116129556,0.01144,5.3814741770426435,103.36793133333333,0,512.3732172648112,4672.165974666667,3445.6503295898433,760.1605292922978,925.7929178873698,888.2156045769975,0.8149221291144689,1.14433605,0.4090690016746521,0.019952912026666665,0.42252740263938904,0.008608148119999999,482.39398193359375,362.8735682,208.75275421142578,267.63165,370.96605173746747,142.00224133333333,5.338001410166423,4.195114638,23.038899898529053,0,19.482401212056477,55.9400985,0.0033430999998624125,0,2.118480106194814,6.161185125333333,0.18081299091378847,0.4689722561333333,430.6079737345377,13.035618334928168,87.26705018932033,219.74775428325108,42.21796013717751,32.845513228715646,-0.2777389123289548,40.53340689341227,9.076972666666668,37364.99622844404,0,0.025374305279304583,0.007626666666666667,1.3434699773788452,0.05109866666666667,0.02964189974591136,0.0077220000000000006 +2108,20.685069798577757,0.6088618974151327,0,0,8.708434723882817,7.254949927330017,0.17276666666666668,3.6598417361577353,0.2329746666666667,131.34700647989908,5.697366221333333,24.295116901397705,0,9.867299874623617,0,8.502600193023682,0.06491488252000001,44.67660331726074,1.0476759999999998,193.1469586690267,0.01136,5.377694169680278,102.64507866666666,0,511.6183115641276,4639.493485333334,3449.2202555338536,757.6502917215595,934.0049235026041,884.328544664973,0.7856221298376719,1.1363337,0.38759200026591617,0.019813381173333332,0.38797029356161755,0.00854795128,484.46297454833984,360.33599080000005,209.19453557332358,265.7601,373.5870539347331,141.00921866666664,5.334211508433024,4.1657781720000004,22.93620014190674,0,19.46160093943278,55.548908999999995,0.0027670200021627047,0,2.118190069993337,6.118099914666667,0.18040899435679117,0.46569272986666665,431.8089701334635,13.01986422621837,87.11828893670051,218.58042828281037,41.96651456115066,32.71653558949674,-0.278383041598992,40.89180692036947,9.013497333333333,37112.189050340174,0,0.02392030491804083,0.007573333333333333,1.322579989830653,0.05074133333333334,0.028493499848991632,0.007668000000000001 +2109,20.53940029295397,0.5943651855719153,0,0,8.658834948462353,7.261699875195821,0.17155,3.5091916918754578,0.23133400000000004,131.73100789388022,5.657243923999999,23.992716630299885,0,9.807170073191324,0,8.484869956970215,0.06445773546,43.77060508728027,1.040298,190.9489606221517,0.01128,5.373684326807658,101.922226,0,510.8353754679362,4606.820996,3451.410176595052,755.1400541508212,942.1769104003906,880.4414847529484,0.7588861336310705,1.1283313499999998,0.36726799855629605,0.01967385032,0.35619719078143436,0.00848775444,486.3219757080078,357.7984134,209.48333104451498,263.88855,376.0770543416341,140.01619599999998,5.329351305961609,4.136441706,22.833800156911213,0,19.42430067062378,55.1577195,0.002289699992009749,0,2.116020083427429,6.075014704,0.17994199320673943,0.4624132036,432.9959691365559,13.00411011750857,86.9695276840807,217.41310228236966,41.71506898512381,32.587557950277834,-0.27901183193739176,41.247507095336914,8.950022,36859.38187223631,0,0.022541404701769352,0.00752,1.3019700050354004,0.050384000000000005,0.027388599856446188,0.007614000000000001 +2110,20.393730787330185,0.5798684737286979,0,0,8.609235173041887,7.268389860788981,0.17033333333333334,3.364621639251709,0.22969333333333336,132.11300786336264,5.617121626666666,23.69351641337077,0,9.747330029805502,0,8.46715005238851,0.0640005884,42.88080660502116,1.0329199999999998,188.7729581197103,0.0112,5.369474371274312,101.19937333333333,0,510.0284423828125,4574.148506666667,3452.340108235677,752.6298165800829,950.3079274495443,876.554424840924,0.7344481299320856,1.120329,0.3480389987428983,0.019534319466666665,0.32698308924833935,0.0084275576,487.9759826660156,355.26083600000004,209.62613677978516,262.017,378.43905385335285,139.02317333333332,5.323421359062195,4.10710524,22.73169994354248,0,19.372200806935627,54.766529999999996,0.0018942599805692832,0,2.11216006676356,6.031929493333333,0.17941499253114065,0.4591336773333333,434.16997019449866,12.988356008798773,86.82076643146088,216.24577628192893,41.463623409096954,32.458580311058924,-0.2796252833441539,41.60040728251139,8.886546666666668,36606.57469413244,0,0.021232804438720148,0.007466666666666667,1.2816200057665508,0.05002666666666667,0.026325700028489035,0.007560000000000001 +2111,20.2480612817064,0.5653717618854804,0,0,8.55963539762142,7.275039951006572,0.16911666666666667,3.225911537806193,0.22805266666666668,132.49100494384766,5.576999329333333,23.39781602223714,0,9.687780062357584,0,8.449450016021729,0.06354344134,42.00730927785238,1.0255419999999997,186.61896133422852,0.01112,5.365094383557637,100.47652066666666,0,509.2005030314128,4541.476017333334,3452.1000976562495,750.1195790093445,958.3969268798828,872.6673649288995,0.7120731274286906,1.11232665,0.329844002922376,0.01939478861333333,0.30011900266011554,0.00836736076,489.42997487386066,352.7232586,209.63395818074545,260.14545,380.67505137125653,138.03015066666666,5.31645139058431,4.077768774,22.62999979654948,0,19.307100931803387,54.37534049999999,0.001566720010790353,0,2.106800119082133,5.988844282666666,0.17883199080824852,0.45585415106666666,435.33097330729163,12.972601900088973,86.67200517884106,215.0784502814882,41.2121778330701,32.329602671840014,-0.28022339581927835,41.950706481933594,8.823071333333335,36353.76751602857,0,0.020007503995050985,0.007413333333333333,1.2615499993165333,0.049669333333333336,0.025303100235760212,0.0075060000000000005 +2112,20.102391776082612,0.550875050042263,0,0,8.510035622200956,7.281629920005798,0.1679,3.0928114851315818,0.22641200000000003,132.86700439453125,5.536877032,23.105315844217937,0,9.628519852956137,0,8.431770165761312,0.06308629428,41.149609883626304,1.0181639999999998,184.48596064249674,0.01104,5.360564390818278,99.75366799999999,0,508.3545557657878,4508.803528,3450.7899983723955,747.6093414386063,966.4449208577474,868.7803050168749,0.6915471206108729,1.1043242999999998,0.3126249959071477,0.01925525776,0.27541792144378024,0.00830716392,490.68997446695965,350.18568120000003,209.51578903198242,258.2739,382.7860565185547,137.037128,5.308451334635417,4.048432308,22.528500080108643,0,19.230300903320312,53.984151,0.0012954699923284352,0,2.100070079167684,5.9457590719999995,0.1781939926246802,0.4525746248,436.4789733886718,12.956847791379175,86.52324392622126,213.91112428104748,40.96073225704325,32.20062503262111,-0.2808061693627653,42.2983071009318,8.759596,36100.960337924706,0,0.01884300432478388,0.00736,1.2417799929777782,0.049312,0.024319299962371588,0.007452000000000001 +2113,19.956722270458823,0.5363783381990456,0,0,8.46043584678049,7.288159926732381,0.16668333333333335,2.9651214480400085,0.22477133333333338,133.24000549316406,5.496754734666666,22.816215833028156,0,9.569550037384033,0,8.414109945297241,0.06262914722,40.3077122370402,1.010786,182.37596003214517,0.01096,5.3559145132700605,99.03081533333332,0,507.4925944010417,4476.131038666667,3448.4999593098955,745.0991038678679,974.4519297281901,864.8932451048504,0.6726801246404648,1.0963219499999999,0.29633300254742306,0.019115726906666665,0.25270284960667294,0.00824696708,491.76197814941406,347.64810380000006,209.2776311238607,256.40235,384.7760543823242,136.0441053333333,5.299461364746094,4.0190958420000005,22.42739995320638,0,19.143300851186115,53.5929615,0.0010708900032720219,0,2.0921400785446167,5.902673861333334,0.1775059923529625,0.4492950985333333,437.61397298177076,12.941093682669376,86.37448267360143,212.74379828060677,40.709286681016394,32.0716473934022,-0.2813736039746146,42.64320659637451,8.696120666666667,35848.15315982084,0,0.017735303690036137,0.007306666666666666,1.2222799956798553,0.04895466666666667,0.023373099820067484,0.007398000000000001 +2114,19.811052764835036,0.5218816263558281,0,0,8.410836071360023,7.2946499188741045,0.16546666666666668,2.8426013588905334,0.2231306666666667,133.61000696818033,5.456632437333333,22.530315399169922,0,9.51087999343872,0,8.396459976832071,0.062172000160000004,39.481213887532554,1.0034079999999999,180.2869618733724,0.010879999999999999,5.3511544068654375,98.30796266666665,0,506.6186294555664,4443.458549333333,3445.31992594401,742.5888662971297,982.4159240722656,861.0061851928259,0.655300130446752,1.0883196,0.2809169987837474,0.01897619605333333,0.23184177527825037,0.00818677024,492.6499760945638,345.1105264,208.92948277791342,254.5308,386.64505259195965,135.05108266666664,5.289491335550944,3.9897593760000003,22.326599915822346,0,19.047200520833332,53.201772,8.849949954310432e-4,0,2.083120067914327,5.859588650666667,0.17677099133531252,0.44601557226666666,438.7359720865885,12.925339573959578,86.22572142098161,211.57647228016603,40.45784110498954,31.942669754183296,-0.28192569965482633,42.98540655771891,8.632645333333334,35595.34598171697,0,0.016698303477217753,0.007253333333333333,1.2030500173568726,0.04859733333333333,0.022462899951885145,0.007344000000000001 +2115,19.66538325921125,0.5073849145126106,0,0,8.361236295939559,7.301079948743184,0.16425,2.7250713308652244,0.22149000000000002,133.9780044555664,5.41651014,22.247715791066486,0,9.452509959538778,0,8.37883989016215,0.0617148531,38.67001438140869,0.9960299999999999,178.21896362304688,0.0108,5.346284548441569,97.58510999999999,0,505.732660929362,4410.78606,3441.299886067708,740.0786287263913,990.3369293212891,857.1191252808014,0.6392561246951421,1.0803172499999998,0.26632799456516904,0.018836665199999998,0.21268571416536966,0.0081265734,493.36098225911456,342.572949,208.4783452351888,252.65925000000001,388.3960494995117,134.05805999999998,5.278571367263794,3.96042291,22.226200262705486,0,18.94300079345703,52.810582499999995,7.311539908793444e-4,0,2.0731201171875,5.81650344,0.17598899205525717,0.442736046,439.84597015380854,12.909585465249778,86.07696016836181,210.4091462797253,40.20639552896269,31.81369211496439,-0.2824624564034005,43.32490666707357,8.56917,35342.538803613104,0,0.015727603031943243,0.0072,1.184089998404185,0.048240000000000005,0.021587399921069544,0.007290000000000001 +2116,19.519713753587464,0.4928882026693932,0,0,8.311636520519093,7.307459870974223,0.16303333333333334,2.6123212973276773,0.21984933333333337,134.3430061340332,5.3763878426666665,21.96831512451172,0,9.394420146942139,0,8.361239830652872,0.06125770604,37.87391630808512,0.9886519999999999,176.17296091715494,0.01072,5.341344515482585,96.86225733333333,0,504.8376871744792,4378.113570666667,3436.529866536458,737.568391155653,998.2139231363932,853.2320653687768,0.6244091192881266,1.0723148999999998,0.2525230000416438,0.018697134346666665,0.19506865863998732,0.00806637656,493.8989741007487,340.0353716,207.93021774291992,250.78770000000003,390.0300547281901,133.06503733333332,5.266721328099568,3.931086444,22.125999927520752,0,18.831700960795086,52.419393,6.03875999028484e-4,0,2.062260111172994,5.773418229333333,0.17516499136885008,0.43945651973333333,440.9419682820637,12.893831356539978,85.92819891574199,209.24182027928458,39.95494995293583,31.68471447574548,-0.2829838742203371,43.661706606547035,8.505694666666667,35089.731625509245,0,0.014818902981157104,0.007146666666666667,1.16539000471433,0.04788266666666667,0.02074540002892415,0.007236000000000001 +2117,19.374044247963678,0.47839149082617577,0,0,8.262036745098627,7.313789923985799,0.16181666666666666,2.504161218802134,0.21820866666666672,134.70500564575195,5.336265545333333,21.69211546579997,0,9.33663010597229,0,8.34365995724996,0.06080055898,37.092617988586426,0.9812739999999999,174.14696248372397,0.01064,5.336334506670634,96.13940466666666,0,503.9346974690755,4345.441081333333,3431.079854329427,735.0581535849147,1006.0499267578125,849.3450054567523,0.6106361250082651,1.06431255,0.23946099976698557,0.01855760349333333,0.17886660248041153,0.00800617972,494.2689793904622,337.49779420000004,207.29209645589194,248.91615000000002,391.5510533650716,132.07201466666666,5.25395127137502,3.9017499780000002,22.026099999745686,0,18.71410083770752,52.028203500000004,4.986029938057376e-4,0,2.050640066464742,5.730333018666666,0.17429999262094498,0.43617699346666666,442.0269699096679,12.87807724783018,85.77943766312217,208.07449427884387,39.703504376908974,31.555736836526574,-0.28348995310563613,43.9958070119222,8.442219333333334,34836.92444740538,0,0.013950803006688753,0.0070933333333333334,1.1469700038433075,0.047525333333333336,0.01993569980065028,0.007182000000000001 +2118,19.228374742339888,0.4638947789829583,0,0,8.21243696967816,7.320059895515442,0.16060000000000002,2.4004011154174805,0.21656800000000004,135.06500625610352,5.296143248,21.419014930725098,0,9.279129902521769,0,8.326099952061972,0.06034341192,36.32591978708903,0.9738959999999999,172.14296213785806,0.01056,5.331264495849609,95.416552,0,503.0257161458333,4312.768592,3424.9897867838536,732.5479160141764,1013.8399302164713,845.4579455447279,0.5978301217158636,1.0563102,0.22710400074720383,0.018418072639999998,0.1639935535689195,0.00794598288,494.4769770304362,334.9602168,206.56998570760092,247.04460000000003,392.96004994710285,131.07899199999997,5.24031130472819,3.872413512,21.92650016148885,0,18.591100533803303,51.637014,4.1155600047204643e-4,0,2.038320084412893,5.687247808,0.17339899390935898,0.4328974672,443.09897104899085,12.862323139120381,85.63067641050235,206.90716827840313,39.45205880088212,31.426759197307668,-0.28398069305929746,44.3272066116333,8.378744000000001,34584.11726930151,0,0.013120902779822549,0.007039999999999999,1.1288000047206879,0.047168,0.019156899768859148,0.007128000000000001 +2119,19.0827052367161,0.44939806713974084,0,0,8.162837194257696,7.326269904772441,0.15938333333333335,2.3008811275164285,0.21492733333333336,135.4220059712728,5.256020950666667,21.14911460876465,0,9.221930027008057,0,8.308560053507486,0.05988626486,35.573621114095054,0.9665179999999999,170.15996424357095,0.01048,5.326154430707295,94.69369933333333,0,502.1117350260417,4280.096102666666,3418.3297932942705,730.0376784434382,1021.5799357096354,841.5708856327033,0.5858911176522573,1.0483078499999998,0.21540999909241995,0.018278541786666665,0.15034150953094164,0.00788578604,494.5279769897461,332.4226394,205.7698834737142,245.17305000000002,394.258051554362,130.0859693333333,5.225791295369466,3.8430770460000003,21.827199935913086,0,18.463200569152832,51.2458245,3.395989988348447e-4,0,2.0254001021385193,5.644162597333334,0.1724619915088018,0.42961794093333333,444.157974243164,12.846569030410583,85.48191515788254,205.7398422779624,39.20061322485527,31.297781558088758,-0.2844560940813213,44.65590604146322,8.315268666666666,34331.31009119764,0,0.012344202802826961,0.006986666666666666,1.110889991124471,0.04681066666666667,0.018407899886369705,0.007074000000000001 +2120,18.937035731092315,0.4349013552965234,0,0,8.11323741883723,7.33243993918101,0.15816666666666668,2.20543106396993,0.2132866666666667,135.77600479125977,5.215898653333333,20.882314523061115,0,9.165020068486532,0,8.291040023167929,0.0594291178,34.83542251586914,0.9591399999999999,168.19696299235025,0.0104,5.321004430452983,93.97084666666666,0,501.19373830159503,4247.423613333333,3411.139770507812,727.5274408726998,1029.2699279785156,837.6838257206788,0.574730118115743,1.0403054999999999,0.20434699952602386,0.01813901093333333,0.13781146705150604,0.0078255892,494.4259796142578,329.885062,204.89778518676758,243.30150000000003,395.44905344645184,129.09294666666665,5.21044127146403,3.81374058,21.72820011774699,0,18.331100940704346,50.854635,2.80134995894817e-4,0,2.011940062046051,5.601077386666667,0.1714919942120711,0.42633841466666667,445.2059758504231,12.830814921700783,85.33315390526272,204.5725162775217,38.949167648828414,31.168803918869852,-0.2849161561717075,44.98200670878092,8.251793333333334,34078.50291309378,0,0.0116171024274081,0.006933333333333333,1.093249996503194,0.04645333333333333,0.017687800029913586,0.007020000000000001 +2121,18.79136622546853,0.42040464345330597,0,0,8.063637643416763,7.338549892107646,0.15695,2.113870998223623,0.21164600000000003,136.12700525919595,5.175776356,20.61851437886556,0,9.108400106430054,0,8.273550033569336,0.058971970740000004,34.11122417449951,0.9517619999999999,166.25496419270834,0.01032,5.315824429194133,93.24799399999999,0,500.27274322509766,4214.751124,3403.4797159830723,725.0172033019614,1036.9199320475261,833.7967658086543,0.5642691204945246,1.03230315,0.19388199970126152,0.017999480079999998,0.12631242784361044,0.00776539236,494.1759770711263,327.34748460000003,203.95869827270508,241.42995000000002,396.53404998779297,128.099924,5.194281299908956,3.784404114,21.629499912261963,0,18.195400555928547,50.4634455,2.3101000018262616e-4,0,1.9980000654856365,5.557992176,0.17049199094374975,0.4230588884,446.24097188313795,12.815060812990986,85.1843926526429,203.40519027708098,38.69772207280156,31.039826279650946,-0.2853608899163303,45.30530611673991,8.188318,33825.69573498991,0,0.01093670236878097,0.00688,1.0758499801158905,0.046096,0.016995299917956192,0.006966000000000001 +2122,18.64569671984474,0.40590793161008853,0,0,8.014037867996299,7.3446199496587115,0.15573333333333333,2.026061018308004,0.21000533333333338,136.47500610351562,5.135654058666667,20.357914129892986,0,9.052070140838623,0,8.256070057551065,0.05851482368,33.40082613627116,0.9443839999999999,164.3329645792643,0.010239999999999999,5.310624440511067,92.52514133333332,0,499.35075124104816,4182.078634666666,3395.3896891276036,722.5069657312232,1044.5199076334636,829.9097058966297,0.5544371157884598,1.0243007999999998,0.18397999927401543,0.017859949226666665,0.11576239267985027,0.00770519552,493.78397878011066,324.8099072,202.95661417643228,239.55840000000003,397.51404571533203,127.10690133333331,5.177321195602417,3.7550676480000003,21.531099637349445,0,18.05650043487549,50.072256,1.9043800178527212e-4,0,1.983640064795812,5.514906965333333,0.16946199287970862,0.41977936213333333,447.2649714152018,12.799306704281186,85.03563140002309,202.23786427664024,38.44627649677471,30.910848640432036,-0.2857902953151896,45.626006762186684,8.124842666666666,33572.88855688604,0,0.01029990209887425,0.006826666666666667,1.0586999853452046,0.045738666666666664,0.0163294003965954,0.0069120000000000015 +2123,18.500027214220953,0.39141121976687104,0,0,7.964438092575833,7.350619951883952,0.15451666666666666,1.9418509403864543,0.2083646666666667,136.82100550333658,5.0955317613333335,20.100214163462322,0,8.996039946873983,0,8.238619963328043,0.05805767662,32.70392640431722,0.9370059999999999,162.43096542358398,0.01016,5.305414438247681,91.80228866666666,0,498.42775472005206,4149.406145333333,3386.899678548177,719.9967281604848,1052.0799458821614,826.0226459846052,0.5451671133438746,1.0162984499999999,0.1746109997232755,0.01772041837333333,0.10608336329460144,0.00764499868,493.2539774576823,322.2723298,201.89653778076172,237.68685000000002,398.39305369059247,126.11387866666665,5.159601251284282,3.725731182,21.432999928792317,0,17.91480080286662,49.6810665,1.5694100026545735e-4,0,1.9689100682735443,5.471821754666666,0.16840399305025736,0.41649983586666667,448.27597300211585,12.783552595571388,84.88687014740327,201.0705382761995,38.194830920747854,30.78187100121313,-0.2862043723682855,45.94400596618652,8.061367333333333,33320.081378782175,0,0.009703991934657097,0.0067733333333333335,1.0418099959691365,0.045381333333333336,0.015689099750791986,0.006858000000000001 +2124,18.354357708597167,0.3769145079236536,0,0,7.9148383171553665,7.356569886207581,0.1533,1.8610909084479015,0.20672400000000005,137.16500600179037,5.055409464,19.845614115397137,0,8.940299908320108,0,8.221189975738525,0.05760052956,32.02042849858602,0.9296279999999999,160.5489641825358,0.01008,5.300204396247864,91.07943599999999,0,497.5037536621094,4116.733656,3378.059692382812,717.4864905897466,1059.5799255371094,822.1355860725807,0.5364061146974564,1.0082961,0.16574900100628534,0.017580887519999998,0.09717683307826519,0.00758480184,492.58997599283856,319.7347524,200.78346506754556,235.81530000000004,399.1710484822591,125.12085599999999,5.141131281852722,3.6963947160000004,21.335100015004475,0,17.770700613657635,49.289877000000004,1.2929500007885508e-4,0,1.9538600941499074,5.4287365439999995,0.16732199117541313,0.4132203096,449.27597300211585,12.767798486861588,84.73810889478347,199.9032122757588,37.943385344721,30.652893361994224,-0.286603121075618,46.25930658976237,7.997892,33067.274200678316,0,0.009128892018149296,0.00672,1.0251700083414714,0.045024,0.015073600069930157,0.006804000000000001 +2125,18.208688202973377,0.36241779608043617,0,0,7.865238541734901,7.362469871838887,0.15208333333333335,1.7836408813794453,0.20508333333333337,137.50500615437826,5.015287166666667,19.5939138730367,0,8.884850104649862,0,8.203789949417114,0.057143382500000006,31.350029786427815,0.9222499999999998,158.6869659423828,0.01,5.294984340667725,90.35658333333333,0,496.5807418823242,4084.061166666667,3368.909688313802,714.9762530190083,1067.0299173990886,818.2485261605561,0.5281011164188385,1.00029375,0.15736699973543486,0.017441356666666664,0.08898130680123965,0.007524605,491.79698181152344,317.197175,199.62039947509766,233.94375000000002,399.85204823811847,124.12783333333331,5.1219412088394165,3.66705825,21.237600167592365,0,17.624601046244305,48.8986875,1.0648400105613594e-4,0,1.9385300874710083,5.385651333333334,0.1662169930835565,0.40994078333333334,450.2639719645182,12.75204437815179,84.589347642163645,198.73588627531808,37.69193976869415,30.523915722775314,-0.2869865414371869,46.571906089782715,7.934416666666667,32814.46702257445,0,0.008573321780810753,0.006666666666666666,1.0087699989477794,0.04466666666666667,0.014481800065065423,0.006750000000000001 +2126,18.06301869734959,0.34792108423721874,0,0,7.815638766314436,7.368319908777873,0.15086666666666668,1.7093708217144012,0.2034426666666667,137.8430061340332,4.975164869333333,19.34511359532674,0,8.829689979553223,0,8.186400016148886,0.05668623544,30.6925311088562,0.9148719999999998,156.84496434529623,0.00992,5.289764404296875,89.63373066666666,0,495.6597391764323,4051.3886773333334,3359.459594726562,712.4660154482699,1074.4399312337239,814.3614662485317,0.5202081203460693,0.9922913999999999,0.14943699911236763,0.01730182581333333,0.08146557956933975,0.00746440816,490.8789800008138,314.65959760000004,198.41234079996744,232.0722,400.43605041503906,123.13481066666665,5.102041244506836,3.637721784,21.14040009180705,0,17.47680075963338,48.507498,8.766920048704681e-5,0,1.9229500691095989,5.342566122666667,0.16508999218543371,0.40666125706666667,451.2399749755859,12.736290269441993,84.44058638954382,197.56856027487734,37.440494192667295,30.394938083556408,-0.2873546334529925,46.88190619150797,7.870941333333334,32561.65984447058,0,0.008053461710611979,0.006613333333333333,0.9925920019547144,0.04430933333333333,0.013912800000980496,0.006696000000000001 +2127,17.917349191725805,0.3334243723940013,0,0,7.7660389908939695,7.374119877815247,0.14965,1.6381507913271587,0.20180200000000004,138.17800521850586,4.9350425719999995,19.099313418070476,0,8.774829943974813,0,8.169039805730185,0.05622908838,30.047632535298664,0.9074939999999998,155.02296574910483,0.00984,5.28456433614095,88.910878,0,494.73973592122394,4018.7161880000003,3349.74961344401,709.9557778775317,1081.7899271647136,810.4744063365072,0.512684111793836,0.98428905,0.14193599919478098,0.017162294959999998,0.07457425693670909,0.0074042113199999995,489.8409779866536,312.1220202,197.16228739420572,230.20065000000002,400.9270528157552,122.14178799999999,5.081461191177368,3.6083853180000003,21.043400287628174,0,17.327600479125977,48.1163085,7.21555000685233e-5,0,1.9071700771649678,5.299480912,0.16394399354855219,0.4033817308,452.2049713134765,12.720536160732193,84.29182513692402,196.4012342744366,37.18904861664044,30.2659604443375,-0.28770739712303456,47.18910598754883,7.807466000000001,32308.852666366714,0,0.007567021568926672,0.00656,0.9766659835974375,0.043952,0.013365799949193994,0.006642000000000001 +2128,17.77167968610202,0.3189276605507838,0,0,7.716439215473504,7.379859924316406,0.14843333333333333,1.5698507726192474,0.20016133333333336,138.51000467936197,4.894920274666666,18.85641320546468,0,8.720249970753988,0,8.151710033416748,0.055771941320000004,29.41533374786377,0.9001159999999998,153.21996434529623,0.009760000000000001,5.279364228248596,88.18802533333333,0,493.8217290242513,3986.043698666667,3339.809590657552,707.4455403067933,1089.0899454752605,806.5873464244827,0.505494107802709,0.9762867,0.13484299927949905,0.017022764106666664,0.06825643529494603,0.007344014479999999,488.68697865804035,309.58444280000003,195.87423451741537,228.3291,401.3250452677409,121.14876533333333,5.0602312088012695,3.579048852,20.946699778238933,0,17.177100499471027,47.725119,5.936780022845293e-5,0,1.8912000755469005,5.256395701333333,0.16277999058365822,0.40010220453333334,453.1579717000325,12.704782052022395,84.1430638843042,195.2339082739959,36.93760304061359,30.136982805118596,-0.2880448324473133,47.493707021077476,7.743990666666667,32056.045488262847,0,0.007111891522072256,0.006506666666666667,0.9609839916229248,0.04359466666666667,0.012840000058834752,0.006588000000000001 +2129,17.62601018047823,0.3044309487075664,0,0,7.666839440053038,7.385549942652385,0.14721666666666666,1.504370739062627,0.1985206666666667,138.84000523885092,4.854797977333333,18.616313139597576,0,8.665969928105673,0,8.134389956792196,0.05531479426000001,28.795335292816162,0.8927379999999998,151.43596649169922,0.009680000000000001,5.274194320042928,87.46517266666666,0,492.9067204793294,3953.371209333334,3329.669596354166,704.9353027360551,1096.3299255371094,802.7002865124581,0.4986051047841708,0.96828435,0.12813199932376543,0.01688323325333333,0.0624652144809564,0.00728381764,487.4209849039714,307.0468654,194.55018742879233,226.45755000000003,401.63204701741535,120.15574266666665,5.038361191749573,3.5497123860000004,20.85039981206258,0,17.025700728098553,47.333929500000004,4.883059985634949e-5,0,1.8750800589720409,5.213310490666666,0.1615969923635324,0.3968226782666667,454.10096995035804,12.689027943312595,83.99430263168439,194.06658227355518,36.686157464586735,30.008005165899686,-0.2883669394258285,47.79560565948486,7.680515333333334,31803.238310158984,0,0.00668604140325139,0.0064533333333333335,0.9455420027176539,0.043237333333333336,0.012334499973803759,0.006534000000000002 +2130,17.480340674854443,0.28993423686434894,0,0,7.617239664632573,7.391179958979289,0.146,1.4415907164414723,0.19688000000000003,139.16600545247397,4.81467568,18.37911319732666,0,8.611969947814941,0,8.11709992090861,0.054857647200000005,28.1874361038208,0.8853599999999998,149.67096837361655,0.009600000000000001,5.269034266471863,86.74231999999999,0,491.99471282958984,3920.6987200000003,3319.3295898437495,702.4250651653167,1103.5299275716145,798.8132266004336,0.4919831107060115,0.960282,0.12178600020706654,0.016743702399999998,0.057157497542599835,0.0072236207999999994,486.0459849039714,304.509288,193.19314448038736,224.586,401.852045694987,119.16272,5.015881220499675,3.52037592,20.754299958546955,0,16.87350066502889,46.94274,4.015079988069677e-5,0,1.858830064535141,5.1702252799999995,0.1603999932607015,0.393543152,455.0309753417968,12.673273834602798,83.84554137906457,192.89925627311445,36.43471188855988,29.87902752668078,-0.2886737180585803,48.09480635325114,7.61704,31550.431132055117,0,0.006287621334195137,0.0064,0.9303169995546341,0.04288,0.011848699999973178,0.006480000000000001 +2131,17.334671169230656,0.2754375250211315,0,0,7.567639889212107,7.396769920984904,0.14478333333333332,1.3813906610012054,0.19523933333333338,139.49100621541342,4.774553382666666,18.144712607065838,0,8.55826989809672,0,8.09984008471171,0.05440050014,27.591437657674152,0.8779819999999998,147.92496871948242,0.00952,5.263904293378194,86.01946733333332,0,491.08670806884766,3888.026230666667,3308.8395996093745,699.9148275945784,1110.669942220052,794.9261666884091,0.4856061140696208,0.9522796499999999,0.11578499960402648,0.016604171546666664,0.052293480994800724,0.007163423959999999,484.5669809977214,301.97171060000005,191.80710474650064,222.71445,401.98404184977215,118.16969733333333,4.992801149686177,3.491039454,20.658499876658123,0,16.72070089975993,46.5515505,3.300320016326926e-5,0,1.842480073372523,5.127140069333333,0.15918899327516556,0.39026362573333334,455.95097351074213,12.657519725893,83.69678012644475,191.7319302726737,36.18326631253303,29.750049887461874,-0.28896515775969445,48.391306241353355,7.5535646666666665,31297.62395395125,0,0.005914861219935119,0.006346666666666667,0.9153069953123728,0.04252266666666667,0.011381700014074644,0.006426000000000001 +2132,17.18900166360687,0.260940813177914,0,0,7.518040113791641,7.402289907137553,0.14356666666666665,1.3236706455548604,0.1935986666666667,139.81200663248697,4.734431085333333,17.913012345631916,0,8.504850228627523,0,8.082599957784018,0.053943353080000006,27.00713872909546,0.8706039999999998,146.19796752929688,0.00944,5.258794228235881,85.29661466666666,0,490.1816864013672,3855.353741333334,3298.199584960937,697.4045900238401,1117.7499389648438,791.0391067763845,0.47945010910431546,0.9442773,0.11010699967543285,0.01646464069333333,0.04783696557084719,0.00710322712,482.9879786173503,299.4341332,190.39306767781576,220.84290000000001,402.03204345703125,117.17667466666666,4.969151139259338,3.4617029880000003,20.563000202178955,0,16.56740077336629,46.160361,2.7119400177374093e-5,0,1.8260400692621868,5.084054858666666,0.15796499078472456,0.3869840994666667,456.8599777221679,12.6417656171832,83.54801887382494,190.564604272233,35.931820736506175,29.621072248242964,-0.2892412585291711,48.6852060953776,7.490089333333334,31044.816775847383,0,0.005566121079027653,0.006293333333333334,0.9005290071169535,0.04216533333333333,0.010932800049583117,0.006372000000000001 +2133,17.04333215798308,0.24644410133469657,0,0,7.468440338371176,7.4077699184417725,0.14235,1.2683406074841816,0.19195800000000002,140.1310043334961,4.694308788,17.684112707773846,0,8.451719999313354,0,8.065380096435547,0.05348620602,26.434340000152588,0.8632259999999998,144.4899673461914,0.00936,5.2537141640981035,84.57376199999999,0,489.2816747029622,3822.6812520000003,3287.429565429687,694.8943524531018,1124.7799479166667,787.15204686436,0.47349410752455395,0.9362749499999999,0.10473699929813544,0.016325109839999997,0.04375415233274301,0.007043030279999999,481.31298065185547,296.8965558,188.95503616333008,218.97135000000003,401.9970448811849,116.183652,4.944951176643372,3.432366522,20.46779998143514,0,16.41390069325765,45.7691715,2.227749973826576e-5,0,1.8095300495624542,5.040969648,0.15672699362039566,0.3837045732,457.7579727172851,12.6260115084734,83.39925762120512,189.3972782717923,35.68037516047932,29.492094609024058,-0.2895020203670101,48.97640609741211,7.426614000000001,30792.009597743516,0,0.005239871175338824,0.00624,0.8859779983758926,0.041808000000000005,0.010501299984753132,0.0063180000000000016 +2134,16.897662652359294,0.2319473894914791,0,0,7.4188405629507095,7.413199941317241,0.14113333333333333,1.2152905861536663,0.19031733333333337,140.44700495402017,4.654186490666667,17.458012262980144,0,8.398890018463135,0,8.048189957936605,0.05302905896000001,25.872841517130535,0.8558479999999998,142.79996744791666,0.00928,5.248664180437724,83.85090933333332,0,488.38466389973956,3790.008762666667,3276.5495605468745,692.3841148823635,1131.7599385579426,783.2649869523354,0.46771810948848724,0.9282726,0.09965770008663337,0.016185578986666664,0.04001443926244974,0.00698283344,479.54397837320965,294.3589784,187.4950065612793,217.09980000000002,401.88004302978516,115.19062933333332,4.92021111647288,3.4030300560000004,20.372899850209553,0,16.260101000467937,45.377982,1.829429993449594e-5,0,1.7929700712362926,4.997884437333333,0.1554789940516154,0.38042504693333334,458.64497375488276,12.610257399763602,83.25049636858532,188.22995227135155,35.42892958445247,29.363116969805148,-0.2897474432732116,49.264905293782554,7.363138666666667,30539.20241963965,0,0.004934670946871241,0.006186666666666667,0.8716529955466589,0.04145066666666667,0.010086699932192763,0.006264000000000001 +2135,16.751993146735508,0.21745067764826165,0,0,7.369240787530244,7.418569962183635,0.13991666666666666,1.1644405821959178,0.18867666666666671,140.76000467936197,4.614064193333332,17.234512329101562,0,8.346330006917318,0,8.031020005544027,0.052571911900000004,25.32254234949748,0.8484699999999998,141.1279665629069,0.0092,5.243644118309021,83.12805666666665,0,487.49364980061847,3757.3362733333333,3265.5695597330723,689.8738773116252,1138.669942220052,779.377927040311,0.4621051028370857,0.92027025,0.09485529859860738,0.01604604813333333,0.03658952719221512,0.0069226366,477.6849848429362,291.82140100000004,186.01397959391275,215.22825,401.68404388427734,114.19760666666666,4.894951105117798,3.3736935900000002,20.278300126393635,0,16.106200695037842,44.9867925,1.5018599924587761e-5,0,1.7763600647449493,4.954799226666666,0.15422199293971062,0.3771455206666667,459.52097320556635,12.594503291053805,83.1017351159655,187.0626262709108,35.177484008425616,29.234139330586242,-0.28997752724777537,49.550705909729004,7.299663333333333,30286.395241535785,0,0.004649150961389144,0.0061333333333333335,0.8575500001509985,0.041093333333333336,0.009688139970724782,0.006210000000000001 +2136,16.60632364111172,0.2029539658050442,0,0,7.319641012109779,7.4238799413045244,0.1387,1.115690549214681,0.18703600000000004,141.07000478108725,4.573941895999999,17.01371208826701,0,8.29406992594401,0,8.013880014419556,0.05211476484,24.78304322560628,0.8410919999999998,139.47497177124023,0.009120000000000001,5.238654096921285,82.405204,0,486.6066385904948,3724.6637840000003,3254.5095621744786,687.3636397408868,1145.5299173990886,775.4908671282865,0.4566401019692421,0.9122678999999999,0.09031179919838905,0.015906517279999997,0.03345321615537008,0.006862439759999999,475.7409845987956,289.2838236,184.51495488484701,213.35670000000002,401.41104380289715,113.204584,4.869201103846232,3.344357124,20.18399985631307,0,15.952300707499186,44.595603,1.2325499938015128e-5,0,1.7597400744756062,4.9117140159999995,0.15295599400997162,0.3738659944,460.386973063151,12.578749182344005,82.95297386334568,185.8953002704701,34.92603843239876,29.105161691367336,-0.2901922722907017,49.83380540211996,7.236188,30033.58806343192,0,0.00438207093005379,0.00608,0.8436459948619207,0.040736,0.009305139848341545,0.006156000000000001 +2137,16.460654135487935,0.18845725396182678,0,0,7.270041236689313,7.429149905840556,0.13748333333333332,1.0689505239327748,0.18539533333333336,141.37800470987955,4.533819598666666,16.795612176259358,0,8.242089986801147,0,7.996759970982869,0.051657617780000005,24.254344781239826,0.8337139999999998,137.83897145589194,0.009040000000000001,5.233704129854838,81.68235133333333,0,485.72462209065753,3691.991294666667,3243.3795776367183,684.8534021701486,1152.3399454752605,771.6038072162619,0.45130710552136105,0.90426555,0.08601570005218188,0.015766986426666664,0.030581706824402016,0.00680224292,473.7129847208659,286.7462462,182.99993515014648,211.48515000000003,401.06104278564453,112.21156133333332,4.842971086502075,3.3150206580000003,20.08999999364217,0,15.798500776290894,44.2044135,1.0112299984636289e-5,0,1.7430900832017262,4.868628805333333,0.15168199315667152,0.37058646813333335,461.2409744262695,12.562995073634207,82.80421261072587,184.7279742700294,34.67459285637191,28.976184052148426,-0.2903916784019903,50.11430517832438,7.172712666666667,29780.78088532805,0,0.004132230766117573,0.006026666666666667,0.8299379994471868,0.04037866666666667,0.00893708000270029,0.006102000000000001 +2138,16.314984629864146,0.17396054211860928,0,0,7.220441461268847,7.434359947840373,0.13626666666666667,1.0241505205631256,0.1837546666666667,141.68300247192383,4.493697301333333,16.580111980438232,0,8.19038995107015,0,7.97966996828715,0.05120047072,23.73624610900879,0.8263359999999998,136.22197087605795,0.008960000000000001,5.228794137636821,80.95949866666666,0,484.8466084798177,3659.3188053333333,3232.179545084635,682.3431645994102,1159.0799357096355,767.7167473042374,0.44609710574150085,0.8962631999999999,0.08195329954226811,0.01562745557333333,0.02795289767285188,0.0067420460799999995,471.6059850056966,284.2086688,181.46991348266602,209.61360000000002,400.6370442708333,111.21853866666666,4.816281080245972,3.285684192,19.996299902598064,0,15.644800662994385,43.813224,8.293899971552795e-6,0,1.7264400521914165,4.825543594666667,0.15040099248290062,0.3673069418666667,462.0859756469726,12.547240964924407,82.65545135810605,183.56064826958865,34.423147280345056,28.84720641292952,-0.2905757455816413,50.39210573832194,7.109237333333334,29527.973707224184,0,0.0038985408027656376,0.005973333333333333,0.8164439996083578,0.04002133333333334,0.00858336997528871,0.006048000000000001 +2139,16.16931512424036,0.15946383027539185,0,0,7.170841685848381,7.439519921938579,0.13505,0.9812124818563461,0.18211400000000005,141.9860051472982,4.453575003999999,16.367111682891846,0,8.138980070749918,0,7.962599953015645,0.050743323660000006,23.22844711939494,0.8189579999999999,134.62196985880533,0.00888,5.22391406695048,80.236646,0,483.97458902994794,3626.6463160000003,3220.93955485026,679.832927028672,1165.7699279785156,763.8296873922128,0.44099710136651993,0.88826085,0.07810959902902444,0.015487924719999999,0.025546889286488295,0.00668184924,469.42298126220703,281.6710914,179.92589569091797,207.74205,400.1410420735677,110.22551599999998,4.789151032765706,3.2563477260000004,19.902899901072185,0,15.491400559743246,43.4220345,6.800430014664016e-6,0,1.7097900807857513,4.782458384,0.14911399284998575,0.3640274156,462.9199778238932,12.53148685621461,82.50669010548624,182.39332226914792,34.1717017043182,28.71822877371061,-0.2907444738296548,50.66730499267578,7.045762,29275.166529120317,0,0.0036625308566726744,0.00592,0.8031609952449799,0.039664000000000005,0.008243479998782277,0.005994000000000001 +2140,16.023645618616573,0.14496711843217439,0,0,7.121241910427916,7.444629907608032,0.13383333333333333,0.9400524546702703,0.18047333333333337,142.28500493367514,4.413452706666666,16.156811396280926,0,8.087860027949015,0,7.945559978485107,0.0502861766,22.730947812398274,0.8115799999999999,133.03897094726562,0.0088,5.219074010848999,79.51379333333333,0,483.1085789998372,3593.973826666667,3209.659586588541,677.3226894579336,1172.3999430338542,759.9426274801883,0.4359991004069646,0.8802584999999999,0.07447259997328122,0.015348393866666666,0.02334488198782007,0.0066216524,467.16598256429035,279.133514,178.3708839416504,205.87050000000002,399.5730438232422,109.23249333333332,4.761601010958354,3.2270112600000003,19.809800306955974,0,15.338200569152832,43.030845,5.574199993437408e-6,0,1.6931500534216564,4.739373173333333,0.1478199933966001,0.36074788933333335,463.74397786458326,12.51573274750481,82.35792885286642,181.2259962687072,33.92025612829135,28.589251134491704,-0.2908978631460307,50.93970584869385,6.982286666666667,29022.35935101645,0,0.0034243907624234757,0.005866666666666667,0.7900849878787994,0.03930666666666667,0.007916869944892824,0.005940000000000001 +2141,15.877976112992787,0.13047040658895695,0,0,7.071642135007449,7.449679931004842,0.13261666666666666,0.9005994449059168,0.1788326666666667,142.58200454711914,4.373330409333333,15.948911428451538,0,8.037009954452515,0,7.928540070851644,0.04982902954,22.243349075317383,0.8042019999999999,131.47397232055664,0.00872,5.214284022649129,78.79094066666666,0,482.2465591430664,3561.3013373333333,3198.3495483398433,674.8124518871953,1178.959940592448,756.0555675681638,0.43109409759442013,0.8722561499999999,0.07103339893122514,0.015208863013333332,0.021329874948908884,0.006561455559999999,464.83797963460285,276.5959366,176.80587005615234,203.99895000000004,398.936040242513,108.23947066666666,4.733631094296773,3.197674794,19.716999848683674,0,15.185400565465292,42.639655499999996,4.567709993352764e-6,0,1.6765300631523132,4.696287962666666,0.14652199298143387,0.3574683630666667,464.5569814046223,12.499978638795012,82.2091676002466,180.0586702682665,33.668810552264496,28.460273495272798,-0.29103591353076896,51.2095053990682,6.918811333333334,28769.552172912583,0,0.0032016607195449374,0.0058133333333333335,0.7772130022446314,0.038949333333333336,0.007603029953315854,0.005886000000000001 +2142,15.732306607368999,0.11597369474573951,0,0,7.022042359586984,7.4546800057093305,0.1314,0.8627854337294897,0.17719200000000004,142.87700525919595,4.3332081119999994,15.743611176808676,0,7.986450115839641,0,7.911550045013428,0.049371882480000004,21.765550295511883,0.7968239999999999,129.92597325642905,0.00864,5.209523955980937,78.06808799999999,0,481.3905436197917,3528.6288480000003,3187.0095621744786,672.302214316457,1185.4699401855469,752.1685076561392,0.42627110083897907,0.8642538,0.06778109880785148,0.015069332159999999,0.01948636832336585,0.00650125872,462.44298299153644,274.0583592,175.23185857137045,202.12740000000002,398.23104095458984,107.24644799999999,4.705281019210815,3.1683383280000004,19.624500115712483,0,15.03290065129598,42.248466,3.74184999903567e-6,0,1.6599400540192921,4.6532027519999994,0.14521999408801398,0.3541888368,465.3599751790364,12.484224530085212,82.0604063476268,178.89134426782576,33.41736497623764,28.331295856053888,-0.2911586249838697,51.47660541534424,6.855336,28516.744994808716,0,0.002993350673932582,0.00576,0.7645440051952997,0.038592,0.007301470031961799,0.005832 +2143,15.586637101745213,0.10147698290252208,0,0,6.972442584166519,7.459619959195455,0.13018333333333332,0.8265424072742462,0.17555133333333336,143.16800689697266,4.293085814666666,15.540811141331991,0,7.936170021692912,0,7.8945900201797485,0.04891473542000001,21.29745101928711,0.7894459999999999,128.39496930440268,0.00856,5.204803903897603,77.34523533333333,0,480.54052480061847,3495.956358666667,3175.659545898437,669.7919767457187,1191.9199625651042,748.2814477441148,0.42152510086695355,0.8562514499999999,0.06470309942960739,0.014929801306666666,0.017799962777644396,0.00644106188,459.9839833577474,271.5207818,173.64984766642252,200.25585,397.4600423177083,106.25342533333333,4.6765410502751665,3.139001862,19.532299995422363,0,14.880800565083822,41.8572765,3.064399985911829e-6,0,1.6433700720469158,4.610117541333333,0.14391499385237694,0.35090931053333335,466.1529744466145,12.468470421375415,81.91164509500697,177.72401826738502,33.16591940021079,28.202318216834982,-0.29126599750533283,51.74110476175944,6.7918606666666665,28263.937816704853,0,0.0027985306029828885,0.005706666666666667,0.7520729899406433,0.03823466666666667,0.007011729991063476,0.005778000000000001 +2144,15.440967596121425,0.08698027105930463,0,0,6.9228428087460525,7.46451993783315,0.12896666666666667,0.7918053865432739,0.1739106666666667,143.45700454711914,4.252963517333333,15.340511083602905,0,7.886169950167338,0,7.877650022506714,0.048457588360000005,20.838852246602375,0.7820679999999999,126.88097254435222,0.00848,5.200123866399129,76.62238266666667,0,479.6955159505208,3463.2838693333333,3164.2895507812495,667.2817391749804,1198.3099365234375,744.3943878320902,0.4168501024444898,0.8482491,0.06179209922750791,0.014790270453333332,0.01625745720230043,0.00638086504,457.4619827270508,268.9832044,172.06083806355795,198.38430000000002,396.62504323323566,105.26040266666665,4.647441069285075,3.109665396,19.44039996465047,0,14.729200681050619,41.466087,2.5088699923495974e-6,0,1.6268300414085388,4.567032330666666,0.14260699724157652,0.3476297842666667,466.9369735717773,12.452716312665615,81.76288384238717,176.5566922669443,32.914473824183936,28.073340577616072,-0.29135803109515845,52.00290552775065,6.728385333333334,28011.130638600986,0,0.0026163405661160746,0.005653333333333334,0.7397980044285456,0.03787733333333333,0.006733339939576884,0.005724000000000001 +2145,15.295298090497639,0.07248355921608719,0,0,6.873243033325586,7.469359914461772,0.12775,0.7585143744945526,0.17227000000000003,143.74300384521484,4.21284122,15.142510811487833,0,7.836460034052531,0,7.860740025838216,0.0480004413,20.38955307006836,0.7746899999999999,125.38397153218587,0.008400000000000001,5.195493896802266,75.89953,0,478.8554941813151,3430.6113800000003,3152.919555664062,664.7715016042421,1204.6299540201824,740.5073279200657,0.41224109133084613,0.8402467499999999,0.059038899218042694,0.0146507396,0.014846852282062173,0.0063206682,454.8799819946289,266.445627,170.46682993570963,196.51275000000004,395.7260386149089,104.26737999999999,4.618001023928325,3.0803289300000003,19.34879986445109,0,14.578000545501709,41.0748975,2.053460017729473e-6,0,1.6103400687376659,4.523947119999999,0.1412969926993052,0.34435025799999996,467.7099736531575,12.436962203955817,81.61412258976735,175.3893662665036,32.66302824815708,27.944362938397166,-0.29143472575334634,52.26200517018636,6.664910000000001,27758.32346049712,0,0.0024459605532077453,0.005600000000000001,0.727715993920962,0.03752,0.006465870072133839,0.0056700000000000006 +2146,15.149628584873852,0.05798684737286976,0,0,6.823643257905121,7.474149902661641,0.12653333333333333,0.7266093591849009,0.17062933333333336,144.02600479125977,4.172718922666666,14.94701067606608,0,7.787019968032837,0,7.843850016593933,0.047543294240000006,19.94935417175293,0.7673119999999999,123.90297317504883,0.008320000000000001,5.190893888473511,75.17667733333333,0,478.02247619628906,3397.938890666667,3141.5495402018223,662.2612640335037,1210.8899536132812,736.6202680080412,0.4076920946439107,0.8322443999999999,0.05643249892940124,0.014511208746666667,0.013556947776426872,0.0062604713599999995,452.24198150634766,263.9080496,168.86782455444336,194.64120000000003,394.7650400797526,103.27435733333333,4.588231086730957,3.050992464,19.257500171661377,0,14.427300612131754,40.683707999999996,1.6807399939959093e-6,0,1.5938800573349,4.480861909333333,0.1399849938849608,0.3410707317333333,468.47297668457026,12.421208095246019,81.46536133714753,174.22204026606286,32.41158267213023,27.81538529917826,-0.2914960814798967,52.518405278523765,6.601434666666667,27505.51628239325,0,0.0022866305274267993,0.005546666666666667,0.7158049990733465,0.03716266666666667,0.006208900013007224,0.005616 +2147,15.003959079250064,0.04349013552965232,0,0,6.774043482484656,7.478879928588867,0.12531666666666666,0.6960333536068598,0.1689886666666667,144.30700174967447,4.132596625333333,14.753910541534424,0,7.737860043843587,0,7.826990048090617,0.04708614718000001,19.518255074818928,0.7599339999999999,122.43897310892741,0.00824,5.186343749364217,74.45382466666666,0,477.1934636433919,3365.2664013333333,3130.189575195312,659.7510264627655,1217.0899556477864,732.7332080960166,0.40319809317588806,0.82424205,0.05396469961851835,0.014371677893333334,0.012377543762947122,0.00620027452,449.5489781697591,261.3704722,167.26482137044272,192.76965,393.74403889973956,102.28133466666665,4.558140993118286,3.021655998,19.166600068410236,0,14.277000665664673,40.2925185,1.3757899921529315e-6,0,1.5774700542291005,4.437776698666666,0.13866999372839928,0.33779120546666663,469.2269719441731,12.40545398653622,81.31660008452772,173.05471426562212,32.16013709610338,27.68640765995935,-0.2915420982748095,52.77220503489176,6.537959333333334,27252.709104289384,0,0.002137630460007737,0.005493333333333334,0.7040629982948303,0.036805333333333336,0.005962010007351637,0.005562 +2148,14.858289573626278,0.02899342368643487,0,0,6.724443707064189,7.483559966087341,0.12409999999999999,0.6667313277721405,0.16734800000000002,144.58500544230142,4.092474328,14.563210487365723,0,7.688970009485881,0,7.810160001118978,0.04662900012000001,19.095855871836346,0.7525559999999999,120.99097379048665,0.00816,5.181833783785502,73.73097200000001,0,476.3704477945964,3332.593912,3118.8394978841143,657.2407888920271,1223.2299499511719,728.8461481839921,0.39875609427690506,0.8162396999999999,0.0516301995764176,0.01423214704,0.011299440171569586,0.00614007768,446.80398813883465,258.8328948,165.65881474812826,190.89810000000003,392.66503651936847,101.28831199999999,4.527741074562073,2.992319532,19.075900236765545,0,14.127300500869751,39.901329,1.1258599859805447e-6,0,1.5611100594202678,4.394691487999999,0.1373549960553646,0.33451167919999997,469.97097778320307,12.389699877826422,81.1678388319079,171.88738826518141,31.90869152007652,27.557430020740444,-0.29157277613808463,53.02330493927002,6.474484,26999.90192618552,0,0.00199830046040006,0.00544,0.6925050020217896,0.036448,0.005724839904966454,0.005508000000000001 +2149,14.71262006800249,0.014496711843217436,0,0,6.674843931643723,7.4881900151570635,0.12288333333333333,0.6386513213316599,0.16570733333333337,144.86000315348306,4.0523520306666665,14.374710241953531,0,7.640370051066081,0,7.793359994888306,0.046171853060000004,18.682156880696613,0.7451779999999999,119.55897394816081,0.00808,5.177363753318787,73.00811933333334,0,475.5534261067708,3299.921422666667,3107.4995524088536,654.7305513212889,1229.2999267578125,724.9590882719675,0.3943590944012006,0.80823735,0.04942169971764088,0.014092616186666667,0.010314036548758546,0.00607988084,444.0089848836263,256.2953174,164.05081431070963,189.02655000000004,391.52803802490234,100.29528933333332,4.497060934702556,2.962983066,18.985599835713703,0,13.978200515111288,39.5101395,9.210840090645434e-7,0,1.544800062974294,4.351606277333333,0.13603999217351279,0.3312321529333333,470.70597330729163,12.373945769116622,81.0190775792881,170.7200622647407,31.657245944049667,27.428452381521534,-0.29158811506972226,53.271805127461754,6.4110086666666675,26747.094748081654,0,0.0018680204132882257,0.005386666666666667,0.6811310003201166,0.03609066666666667,0.005496989974441628,0.0054540000000000005 +2150,14.566950562378704,0,0,-0,6.625244156223258,7.492769956588745,0.12166666666666666,0.6117422978083292,0.1640666666666667,145.1320037841797,4.012229733333333,14.188610076904297,0,7.5920400222142534,0,7.776579976081848,0.04571470600000001,18.276957511901855,0.7377999999999999,118.14297294616699,0.008,5.17293377717336,72.28526666666667,0,474.7424138387044,3267.2489333333333,3096.169555664062,652.2203137505505,1235.3199666341145,721.072028359943,0.39000709106524784,0.8002349999999999,0.04732959934820732,0.013953085333333334,0.009413473308086395,0.006019684,441.16598256429035,253.75774,162.44081115722656,187.15500000000003,390.3350346883138,99.30226666666665,4.46609099706014,2.9336466,18.895500024159748,0,13.829500675201416,39.11895,7.5334700966323e-7,0,1.5285300612449646,4.308521066666666,0.13472499325871468,0.32795262666666664,471.4309768676757,12.358191660406824,80.87031632666827,169.55273626429997,31.405800368022813,27.29947474230263,-0.29158811506972226,53.51760482788086,6.347533333333334,26494.287569977787,0,0.0017462004034314305,0.005333333333333334,0.6699369996786118,0.03573333333333333,0.005278099949161212,0.0054 +2151,14.421281056754918,0,0,-0,6.5756443808027925,7.497289975484212,0.12044999999999999,0.5859572937091192,0.16242600000000001,145.4020029703776,3.972107436,14.004810333251953,0,7.543980002403259,0,7.759829958279927,0.045257558940000005,17.88005828857422,0.7304219999999999,116.74297459920247,0.00792,5.168553630510966,71.562414,0,473.9363962809245,3234.576444,3084.8695882161455,649.7100761798122,1241.2599487304688,717.1849684479185,0.3856960932413737,0.7922326499999999,0.04534999933093786,0.01381355448,0.008590530526513854,0.00595948716,438.2779820760091,251.2201626,160.8298110961914,185.28345000000002,389.0870361328125,98.30924399999999,4.434860944747925,2.9043101339999997,18.80580012003581,0,13.681400616963705,38.727760499999995,6.15990998653615e-7,0,1.512320061524709,4.265435855999999,0.13340999558568,0.32467310039999997,472.14597829182935,12.342437551697024,80.72155507404845,168.38541026385923,31.15435479199596,27.170497103083722,-0.29158811506972226,53.760704358418785,6.284058,26241.48039187392,0,0.0016322903781353186,0.005280000000000001,0.6589209934075674,0.035376,0.005067839946908255,0.005346 +2152,14.27561155113113,0,0,-0,6.526044605382326,7.501759966214498,0.11923333333333333,0.5612492760022482,0.16078533333333336,145.66900507609049,3.9319851386666667,13.823210000991821,0,7.49620000521342,0,7.743099967638652,0.04480041188000001,17.49135939280192,0.7230439999999999,115.35797500610352,0.00784,5.16421365737915,70.83956133333334,0,473.13538360595703,3201.903954666667,3073.5895385742183,647.1998386090739,1247.1499430338542,713.297908535894,0.38142309089501697,0.7842302999999999,0.04347639996558428,0.013674023626666667,0.007838627827974657,0.00589929032,435.3459828694661,248.6825852,159.21881103515625,183.41190000000003,387.7860336303711,97.31622133333332,4.403380990028381,2.874973668,18.716400146484375,0,13.533800601959229,38.336571,5.035449935538357e-7,0,1.4961600601673126,4.222350645333332,0.13209599504868189,0.3213935741333333,472.85197448730463,12.326683442987227,80.57279382142865,167.21808426341852,30.902909215969107,27.041519463864812,-0.29158811506972226,54.001104990641274,6.220582666666667,25988.673213770056,0,0.00152578034127752,0.005226666666666668,0.6480790028969446,0.03501866666666666,0.0048658600232253475,0.005292000000000001 +2153,14.129942045507342,0,0,-0,6.476444829961861,7.50616991519928,0.11801666666666666,0.5375742564598719,0.15914466666666668,145.93400446573892,3.891862841333333,13.643909692764282,0,7.448690017064412,0,7.726400017738342,0.044343264820000006,17.110660076141357,0.7156659999999999,113.9889742533366,0.00776,5.159913579622905,70.11670866666667,0,472.3403600056966,3169.2314653333333,3062.3295288085933,644.6896010383357,1252.9699300130208,709.4108486238695,0.3771870930989583,0.77622795,0.04170079932858547,0.013534492773333334,0.007151725352741778,0.00583909348,432.37398529052734,246.14500780000003,157.6078109741211,181.54035000000002,386.4330342610677,96.32319866666666,4.371660947799683,2.845637202,18.62730010350545,0,13.386800607045492,37.945381499999996,4.1151700950573894e-7,0,1.4800600409507751,4.179265434666666,0.1307819957534472,0.31811404786666664,473.54897308349604,12.310929334277429,80.42403256880883,166.0507582629778,30.651463639942254,26.912541824645906,-0.29158811506972226,54.239004135131836,6.157107333333334,25735.86603566619,0,0.001426190302784865,0.005173333333333334,0.6374100049336752,0.034661333333333336,0.004671839997172356,0.0052380000000000005 +2154,13.984272539883555,0,0,-0,6.426845054541395,7.5105399290720625,0.1168,0.5148882518212,0.15750400000000003,146.19500478108725,3.8517405439999997,13.466809749603271,0,7.401449958483378,0,7.70973002910614,0.04388611776000001,16.737860838572185,0.7082879999999999,112.6359748840332,0.00768,5.155653635660808,69.393856,0,471.55134836832684,3136.5589760000003,3051.099527994791,642.1793634675973,1258.7399597167969,705.5237887118449,0.3729840914408366,0.7682256,0.040019799334307514,0.01339496192,0.006524293256613116,0.0057788966399999996,429.36098225911456,243.60743040000003,155.9978116353353,179.66880000000003,385.02903238932294,95.330176,4.33971095085144,2.816300736,18.53849983215332,0,13.240400632222494,37.554192,3.362220037198919e-7,0,1.4640100697676341,4.136180223999999,0.12946999569733939,0.3148345216,474.2369766235351,12.295175225567629,80.27527131618902,164.88343226253707,30.4000180639154,26.783564185426997,-0.29158811506972226,54.47410456339518,6.093632,25483.058857562322,0,0.0013330902923674632,0.00512,0.6269109894831976,0.034304,0.004485480021685362,0.005184 +2155,13.83860303425977,0,0,-0,6.377245279120929,7.514849940935771,0.11558333333333333,0.4931522433956464,0.15586333333333335,146.45400365193686,3.8116182466666664,13.29190969467163,0,7.354489962259929,0,7.693090001742045,0.04342897070000001,16.372761726379395,0.7009099999999999,111.29797554016113,0.0076,5.151443600654602,68.67100333333333,0,470.7663345336914,3103.8864866666668,3039.89951578776,639.669125896859,1264.449951171875,701.6367287998204,0.3688130850593249,0.7602232499999999,0.03842819947749376,0.013255431066666667,0.00595124124083668,0.005718699799999999,426.3109817504883,241.06985300000002,154.38781356811523,177.79725000000002,383.57603454589844,94.33715333333333,4.307540973027547,2.78696427,18.45010010401408,0,13.094500462214151,37.1630025,2.7463198648547404e-7,0,1.4480200409889221,4.093095013333333,0.12815999488035837,0.3115549953333333,474.9159723917643,12.27942111685783,80.1265100635692,163.71610626209633,30.14857248788855,26.65458654620809,-0.29158811506972226,54.70660432179769,6.030156666666667,25230.25167945846,0,0.001246030277494962,0.005066666666666667,0.6165799995263418,0.03394666666666667,0.0043064800556749105,0.005130000000000001 +2156,13.692933528635981,0,0,-0,6.327645503700464,7.519109924634297,0.11436666666666666,0.47232523560523987,0.15422266666666667,146.71000544230142,3.771495949333333,13.119109392166138,0,7.3077900012334185,0,7.6764800151189165,0.042971823640000004,16.015262524286907,0.6935319999999998,109.97397549947102,0.00752,5.1472634474436445,67.94815066666666,0,469.9883092244466,3071.2139973333333,3028.729573567708,637.1588883261207,1270.0999450683594,697.7496688877959,0.36467008541027707,0.7522209,0.036918699741363525,0.013115900213333333,0.005427929378735523,0.00565850296,423.22498575846356,238.53227560000002,152.77981440226236,175.9257,382.0750376383464,93.34413066666666,4.275160908699036,2.7576278039999997,18.361900329589844,0,12.949200550715128,36.771812999999995,2.242680020951108e-7,0,1.432090034087499,4.050009802666667,0.12685099616646767,0.30827546906666664,475.5849736531575,12.263667008148031,79.97774881094938,162.54878026165562,29.897126911861697,26.525608906989184,-0.29158811506972226,54.936405181884766,5.966681333333334,24977.444501354592,0,0.0011646402708720416,0.005013333333333334,0.6064129968484243,0.03358933333333333,0.004134539980441332,0.005076000000000001 +2157,13.547264023012193,0,0,-0,6.278045728279998,7.5233099063237505,0.11315,0.45237122227748233,0.15258200000000002,146.96400451660156,3.731373652,12.948509454727173,0,7.261369943618774,0,7.659890015920003,0.04251467658000001,15.665263414382935,0.6861539999999998,108.66597429911296,0.0074400000000000004,5.143133521080017,67.225298,0,469.2153040568034,3038.5415080000002,3017.5895792643223,634.6486507553825,1275.699951171875,693.8626089757713,0.36055508504311246,0.74421855,0.035486599430441856,0.01297636936,0.004950107734960814,0.0055983061199999995,420.104985555013,235.99469820000002,151.17381795247397,174.05415000000002,380.52603403727215,92.351108,4.24259090423584,2.728291338,18.274099985758465,0,12.80440060297648,36.3806235,1.830939950764332e-7,0,1.4162100553512573,4.006924592,0.1255429939677318,0.3049959428,476.245974222819,12.247912899438234,79.82898755832957,161.3814542612149,29.645681335834844,26.396631267770275,-0.29158811506972226,55.163604418436684,5.903206000000001,24724.637323250725,0,0.001088550256099552,0.004960000000000001,0.59640900293986,0.033232,0.003969400015193969,0.005022 +2158,13.401594517388407,0,0,-0,6.228445952859532,7.527469952901204,0.11193333333333333,0.4332532087961833,0.15094133333333334,147.21400578816733,3.691251354666666,12.780009269714355,0,7.21520992120107,0,7.643330017725627,0.042057529520000005,15.322564204533895,0.6787759999999998,107.37197748819987,0.00736,5.1390334367752075,66.50244533333333,0,468.44628651936847,3005.8690186666668,3006.4795328776036,632.1384131846442,1281.2299702962239,689.9755490637468,0.3564670855800311,0.7362162,0.03412979965408643,0.012836838506666667,0.004513856101160248,0.005538109279999999,416.9529851277669,233.45712080000004,149.56982040405273,172.1826,378.93203989664715,91.35808533333334,4.2098308801651,2.698954872,18.18660020828247,0,12.660200595855713,35.989433999999996,1.4944300611811437e-7,0,1.4003900587558746,3.963839381333333,0.12423699473341306,0.3017164165333333,476.89797210693354,12.232158790728434,79.68022630570975,160.21412826077417,29.39423575980799,26.26765362855137,-0.29158811506972226,55.3881041208903,5.839730666666667,24471.830145146858,0,0.0010174202325288206,0.004906666666666667,0.5865650027990341,0.03287466666666667,0.003810800010493646,0.004968 +2159,13.25592501176462,0,0,-0,6.178846177439066,7.531569957733154,0.11071666666666667,0.41493620723485947,0.1493006666666667,147.46200561523438,3.651129057333333,12.613609075546265,0,7.169319987297058,0,7.626799980799357,0.04160038246000001,14.98696494102478,0.6713979999999998,106.09297561645508,0.00728,5.134983420372009,65.77959266666666,0,467.68427022298175,2973.1965293333337,2995.409545898437,629.6281756139058,1286.6999613444011,686.0884891517222,0.3524050811926524,0.7282138499999999,0.03284429976095756,0.012697307653333333,0.004115614768428107,0.00547791244,413.76898701985675,230.91954340000004,147.96882502237955,170.31105000000002,377.2930374145508,90.36506266666666,4.176890850067139,2.669618406,18.09939972559611,0,12.516500473022461,35.5982445,1.2194601180700224e-7,0,1.3846300542354584,3.920754170666666,0.1229339949786663,0.29843689026666664,477.54097493489576,12.216404682018634,79.53146505308995,159.04680226033344,29.142790183781138,26.13867598933246,-0.29158811506972226,55.61000378926595,5.776255333333333,24219.022967042994,0,9.509112181452414e-4,0.004853333333333334,0.5768789996703466,0.032517333333333336,0.0036584599680888155,0.004914000000000001 +2160,13.110255506140833,0,0,-0,6.129246402018601,7.5356099208196,0.1095,0.39738719910383224,0.14766,147.70800399780273,3.6110067599999995,12.449209054311117,0,7.123699943224589,0,7.610300064086914,0.041143235400000006,14.658365726470947,0.6640199999999998,104.82897567749023,0.0072,5.13097341855367,65.05673999999999,0,466.92625935872394,2940.5240400000002,2984.369547526041,627.1179380431676,1292.1099548339844,682.2014292396977,0.348366084198157,0.7202115,0.03162349946796894,0.0125577768,0.0037521234480664134,0.005417715599999999,410.5569839477539,228.38196600000003,146.36982854207358,168.4395,375.6100387573242,89.37204,4.14379088083903,2.64028194,18.012500286102295,0,12.373300552368164,35.207055,5.227322930068112e-8,0,1.3689200381437938,3.87766896,0.12163299508392811,0.295157364,478.17497507731116,12.200650573308836,79.38270380047013,157.87947625989273,28.891344607754284,26.009698350113553,-0.29158811506972226,55.82920424143473,5.71278,23966.215788939127,0,8.887391983686636e-4,0.0048000000000000004,0.5673479984203974,0.03216,0.0035121600182416537,0.004860000000000001 +2161,12.964586000517047,0,0,-0,6.0796466265981355,7.539609909057617,0.10828333333333333,0.38057518750429153,0.14601933333333333,147.95000457763672,3.5708844626666663,12.286909023920694,0,7.07833997408549,0,7.5938200155893965,0.04068608834,14.336766481399536,0.6566419999999998,103.57897694905598,0.00712,5.126993378003438,64.33388733333332,0,466.1732432047526,2907.8515506666668,2973.3695271809893,624.6077004724292,1297.4699300130208,678.3143693276733,0.3443510855237643,0.71220915,0.03046619954208533,0.012418245946666667,0.0034203822530495622,0.005357518759999999,407.31697845458984,225.84438860000003,144.77483367919922,166.56795,373.8850351969401,88.37901733333334,4.1105209191640215,2.6109454739999998,17.925900141398113,0,12.230700492858887,34.815865499999994,0,0,1.3532700439294179,3.834583749333333,0.12033399567008018,0.2918778377333333,478.79997253417963,12.184896464599039,79.2339425478503,156.71215025945202,28.63989903172743,25.880720710894646,-0.29158811506972226,56.04570325215658,5.6493046666666675,23713.40861083526,0,8.306181892597427e-4,0.004746666666666667,0.557969997326533,0.03180266666666667,0.0033716500426332154,0.004806 +2162,12.818916494893259,0,0,-0,6.030046851177669,7.54354993502299,0.10706666666666667,0.364469180504481,0.14437866666666668,148.19000498453775,3.530762165333333,12.12670866648356,0,7.033250013987224,0,7.577370047569275,0.040228941280000007,14.021867036819458,0.6492639999999998,102.34297752380371,0.007039999999999999,5.123063325881958,63.61103466666666,0,465.4262237548828,2875.1790613333337,2962.4095662434893,622.097462901691,1302.7599487304688,674.4273094156487,0.34035708010196686,0.7042068,0.02936869968349735,0.012278715093333333,0.003117651193557928,0.00529732192,404.04998779296875,223.30681120000003,143.18183390299478,164.6964,372.11903381347656,87.38599466666666,4.077110926310222,2.581609008,17.83970006306966,0,12.088700453440348,34.424676,0,0,1.337680051724116,3.7914985386666666,0.11903899535536766,0.28859831146666665,479.4169718424479,12.169142355889239,79.0851812952305,155.54482425901128,28.388453455700578,25.751743071675737,-0.29158811506972226,56.25960445404053,5.585829333333334,23460.601432731393,0,7.762851746520028e-4,0.004693333333333334,0.5487429946660995,0.03144533333333333,0.0032367199892178178,0.004752000000000001 +2163,12.673246989269472,0,0,-0,5.980447075757204,7.547440012296041,0.10585,0.3490391746163368,0.142738,148.4270044962565,3.4906398679999997,11.968408584594727,0,6.988419969876607,0,7.560950001080831,0.039771794220000004,13.713567813237509,0.6418859999999998,101.12097676595052,0.00696,5.119163274765015,62.88818199999999,0,464.68321482340497,2842.5065720000002,2951.4795328776036,619.5872253309526,1307.9899597167969,670.5402495036242,0.3363830844561259,0.69620445,0.028325399694343407,0.01213918424,0.002841430250555277,0.005237125079999999,400.7589874267578,220.76923380000002,141.59284337361655,162.82485000000003,370.31203206380206,86.392972,4.043550888697307,2.552272542,17.75379991531372,0,11.947100480397543,34.033486499999995,0,0,1.3221400678157806,3.748413328,0.11774599490066369,0.2853187852,480.0259806315104,12.153388247179441,78.93642004261068,154.37749825857054,28.137007879673725,25.62276543245683,-0.29158811506972226,56.47090435028076,5.522354,23207.794254627526,0,7.254951633512974e-4,0.00464,0.5396639953056971,0.031088,0.003107129984224836,0.004698000000000001 +2164,12.527577483645684,0,0,-0,5.930847300336739,7.55127998193105,0.10463333333333333,0.33425716559092206,0.14109733333333335,148.66200383504233,3.4505175706666664,11.812108516693115,0,6.943849960962932,0,7.544560035069783,0.03931464716000001,13.411768356959024,0.6345079999999998,99.91307703653972,0.00688,5.1153033177057905,62.165329333333325,0,463.94519805908203,2809.8340826666667,2940.5895385742183,617.0769877602144,1313.1599527994792,666.6531895915996,0.3324280728896459,0.6882021,0.027333099395036697,0.011999653386666666,0.002589419348320613,0.00517692824,397.44398498535156,218.23165640000002,140.0068448384603,160.9533,368.4660339355469,85.39994933333332,4.009860833485921,2.522936076,17.668199857076008,0,11.806100606918335,33.642297,0,0,1.306650052467982,3.705328117333333,0.11645499492685,0.2820392589333333,480.62597656249994,12.137634138469641,78.78765878999087,153.21017225812983,27.88556230364687,25.49378779323792,-0.29158811506972226,56.67940425872803,5.458878666666667,22954.98707652366,0,6.780181574868038e-4,0.004586666666666667,0.530730997522672,0.030730666666666667,0.0029826899990439415,0.0046440000000000006 +2165,12.381907978021898,0,0,-0,5.881247524916272,7.555059949556987,0.10341666666666666,0.3200971608360608,0.13945666666666667,148.89300155639648,3.410395273333333,11.657808542251587,0,6.899539987246196,0,7.528199990590413,0.038857500100000004,13.116369167963663,0.6271299999999999,98.71887715657552,0.0068,5.111483295758565,61.442476666666664,0,463.2121861775716,2777.1615933333333,2929.729553222656,614.566750189476,1318.2599589029949,662.7661296795751,0.32849307854970294,0.68019975,0.026391299751897652,0.011860122533333333,0.002359538533103963,0.0051167313999999995,394.1069869995117,215.69407900000004,138.42485173543295,159.08175,366.58203125,84.40692666666666,3.976050853729248,2.49359961,17.582899888356526,0,11.665600538253784,33.251107499999996,0,0,1.291220058997472,3.662242906666666,0.11516699567437172,0.27875973266666665,481.21697743733716,12.121880029759843,78.63889753737105,152.04284625768912,27.634116727620018,25.364810154019015,-0.29158811506972226,56.88540426890055,5.395403333333334,22702.179898419796,0,6.33637139496083e-4,0.004533333333333334,0.5219430029392242,0.030373333333333336,0.0028631800087168813,0.00459 +2166,12.236238472398112,0,0,-0,5.831647749495807,7.558789968490601,0.1022,0.3065321519970894,0.137816,149.12200291951498,3.3702729759999994,11.50540828704834,0,6.855499943097432,0,7.5118699471155805,0.03840035304,12.827169815699259,0.6197519999999999,97.53827794392903,0.006719999999999999,5.10770324865977,60.719623999999996,0,462.48417409261066,2744.489104,2918.919555664062,612.0565126187377,1323.3099466959636,658.8790697675506,0.3245760773619016,0.6721974,0.02549719934662183,0.01172059168,0.0021498477435670793,0.005056534559999999,390.74798583984375,213.15650160000004,136.84685643513998,157.21020000000001,364.66103108723956,83.413904,3.942120830217997,2.464263144,17.497999986012776,0,11.525600671768188,32.859918,0,0,1.2758500377337139,3.619157696,0.11388399451971054,0.2754802064,481.80097961425776,12.106125921050046,78.49013628475123,150.87552025724838,27.38267115159316,25.23583251480011,-0.29158811506972226,57.088704109191895,5.3319280000000004,22449.37272031593,0,5.921531410422176e-4,0.0044800000000000005,0.5132959932088852,0.030016,0.0027484200157535574,0.004536000000000001 +2167,12.090568966774324,0,0,-0,5.782047974075342,7.562459905942281,0.10098333333333333,0.2935381457209587,0.13617533333333334,149.34900538126627,3.330150678666666,11.354908148447672,0,6.811710000038147,0,7.495560050010681,0.037943205980000005,12.544170300165812,0.6123739999999999,96.37127876281738,0.00664,5.1039531628290815,59.99677133333333,0,461.76115163167316,2711.8166146666667,2908.1395874023433,609.5462750479994,1328.2899475097656,654.992009855526,0.3206780751546224,0.66419505,0.024645599847038586,0.011581060826666666,0.0019586071042188755,0.00499633772,387.36998494466144,210.61892420000004,135.2728614807129,155.33865000000003,362.70304107666016,82.42088133333333,3.9080708424250283,2.434926678,17.413300037384033,0,11.38610045115153,32.4687285,0,0,1.2605300446351368,3.576072485333333,0.11260199422637622,0.2722006801333333,482.3759791056315,12.090371812340246,78.34137503213142,149.70819425680764,27.131225575566308,25.1068548755812,-0.29158811506972226,57.28930409749349,5.268452666666668,22196.56554221206,0,5.533761286642402e-4,0.004426666666666667,0.5047889898220698,0.029658666666666667,0.002638220030348748,0.004482000000000001 +2168,11.944899461150538,0,0,-0,5.732448198654876,7.566089868545532,0.09976666666666666,0.2810911387205124,0.13453466666666666,149.57200495402017,3.290028381333333,11.206308046976725,0,6.768180052439372,0,7.4792799949646,0.03748605892,12.267071088155111,0.6049959999999999,95.21757888793945,0.00656,5.100243171056111,59.27391866666666,0,461.0431416829427,2679.1441253333332,2897.3995564778643,607.0360374772611,1333.2099507649739,651.1049499435015,0.31679607679446536,0.6561927,0.02383649970094363,0.011441529973333333,0.0017842064359380554,0.004936140879999999,383.97298940022785,208.08134680000003,133.7028694152832,153.46710000000002,360.7100321451823,81.42785866666667,3.873930811882019,2.405590212,17.328999837239582,0,11.247100512186686,32.077539,0,0,1.245260049899419,3.532987274666666,0.11132399551570415,0.26892115386666665,482.94197591145826,12.074617703630448,78.1926137795116,148.54086825636693,26.879779999539455,24.977877236362293,-0.29158811506972226,57.487303733825684,5.204977333333334,21943.758364108195,0,5.171311252828067e-4,0.004373333333333333,0.49640000114838284,0.029301333333333332,0.002532409989119818,0.0044280000000000005 +2169,11.79922995552675,0,0,-0,5.68284842323441,7.569659908612569,0.09855,0.2691691319147746,0.132894,149.79300181070963,3.2499060839999996,11.059608141581217,0,6.724910060564677,0,7.463030020395915,0.037028911860000006,11.995871623357138,0.5976179999999999,94.077178955078125,0.00648,5.0965730746587115,58.551066,0,460.3291320800781,2646.471636,2886.6996053059893,604.5257999065228,1338.0699462890625,647.2178900314769,0.3129320740699768,0.64819035,0.023067399859428406,0.01130199912,0.0016251858808876325,0.00487594404,380.5589879353841,205.54376940000003,132.13687388102213,151.59555,358.68302663167316,80.43483599999999,3.839680810769399,2.376253746,17.245000044504803,0,11.108500639597574,31.6863495,0,0,1.230040043592453,3.489902064,0.11004999590416749,0.2656416276,483.5009740193684,12.058863594920648,78.0438525268918,147.37354225592622,26.6283344235126,24.848899597143383,-0.29158811506972226,57.68270365397135,5.141502000000001,21690.951186004328,0,4.8325310975390795e-4,0.00432,0.4881269956628482,0.028944,0.0024307999992743134,0.004374000000000001 +2170,11.653560449902963,0,0,-0,5.633248647813945,7.5731799602508545,0.09733333333333333,0.25774812946716946,0.13125333333333333,150.01100413004556,3.2097837866666663,10.914707899093628,0,6.681899984677632,0,7.4468099276224775,0.0365717648,11.730472167332968,0.5902399999999999,92.94977887471516,0.0063999999999999994,5.092933098475139,57.82821333333333,0,459.6191151936849,2613.7991466666667,2876.0295410156245,602.0155623357845,1342.8699544270833,643.3308301194525,0.3090810750921567,0.640188,0.022333699588974316,0.011162468266666666,0.0014801953511778265,0.0048157472,377.1269887288411,203.00619200000003,130.57487996419272,149.72400000000002,356.62303415934247,79.44181333333333,3.8053508003552756,2.34691728,17.161399841308594,0,10.970500389734903,31.29516,0,0,1.2148800492286682,3.446816853333333,0.10877799615263939,0.2623621013333333,484.05197906494135,12.04310948621085,77.89509127427198,146.2062162554855,26.37688884748575,24.719921957924477,-0.29158811506972226,57.875404040018715,5.078026666666667,21438.14400790046,0,4.51588098561236e-4,0.004266666666666667,0.4799869979421298,0.028586666666666666,0.002333229989744723,0.004320000000000001 +2171,11.507890944279175,0,0,-0,5.583648872393479,7.5766399304072065,0.09611666666666666,0.2468091237048308,0.12961266666666665,150.22600682576498,3.169661489333333,10.771707773208618,0,6.6391399304072065,0,7.430620034535726,0.03611461774,11.470772902170816,0.5828619999999999,91.83537928263347,0.006319999999999999,5.089333136876424,57.10536066666666,0,458.9141031901042,2581.1266573333332,2865.3995564778643,599.5053247650461,1347.5999654134114,639.443770207428,0.3052450666824977,0.6321856499999999,0.021635799513508875,0.011022937413333333,0.0013480248744599521,0.004755550359999999,373.68098704020184,200.46861460000002,129.01788520812988,147.85245000000003,354.53003184000653,78.44879066666667,3.7709407409032187,2.317580814,17.077999750773113,0,10.832900444666544,30.9039705,0,0,1.1997600495815277,3.403731642666666,0.1075099961211284,0.25908257506666665,484.59497578938795,12.02735537750105,77.74633002165216,145.03889025504475,26.125443271458895,24.59094431870557,-0.29158811506972226,58.06540393829346,5.014551333333333,21185.336829796594,0,4.219910964214553e-4,0.004213333333333334,0.4719800030191739,0.028229333333333332,0.0022395499981939793,0.004266000000000001 +2172,11.36222143865539,0,0,-0,5.534049096973013,7.580049912134807,0.0949,0.23633112013339996,0.127972,150.4390017191569,3.1295391919999997,10.630507548650106,0,6.596629977226257,0,7.4144599835077925,0.035657470680000004,11.216573397318522,0.5754839999999999,90.73377990722656,0.00624,5.085763057072957,56.382508,0,458.2140833536784,2548.454168,2854.8095296223955,596.9950871943079,1352.2699584960938,635.5567102954034,0.30142507205406827,0.6241833,0.020971599655846756,0.01088340656,0.0012275444557114195,0.00469535352,370.218989054362,197.93103720000002,127.46489143371582,145.98090000000002,352.405029296875,77.45576799999999,3.7364407777786255,2.288244348,16.995000044504803,0,10.695800383885702,30.512781,0,0,1.1847000618775685,3.360646432,0.10624599518875281,0.2558030488,485.12897745768225,12.011601268791253,77.59756876903235,143.87156425460404,25.873997695432042,24.46196667948666,-0.29158811506972226,58.25280316670736,4.9510760000000005,20932.52965169273,0,3.943290891281019e-4,0.0041600000000000005,0.46410299837589264,0.027872,0.0021496100234799087,0.0042120000000000005 +2173,11.216551933031603,0,0,-0,5.484449321552548,7.583409945170085,0.09368333333333333,0.2262951135635376,0.12633133333333335,150.64900334676108,3.0894168946666665,10.491007645924887,0,6.5543800592422485,0,7.398329933484395,0.03520032362,10.967773993810018,0.5681059999999999,89.64497884114583,0.00616,5.082233031590779,55.65965533333333,0,457.51807403564453,2515.7816786666667,2844.2495524088536,594.4848496235695,1356.8799540201824,631.6696503833789,0.297619067132473,0.61618095,0.020336799478779238,0.010743875706666666,0.0011177340444798272,0.0046351566799999995,366.7439905802409,195.39345980000002,125.91589609781902,144.10935,350.249028523763,76.46274533333333,3.7018807331720986,2.258907882,16.912299791971844,0,10.55910038948059,30.1215915,0,0,1.1696800390879314,3.317561221333333,0.10498499435683091,0.2525235225333333,485.6559727986653,11.995847160081453,77.44880751641253,142.70423825416333,25.62255211940519,24.332989040267755,-0.29158811506972226,58.43760395050049,4.887600666666668,20679.722473588863,0,3.6847608134848997e-4,0.0041066666666666665,0.45635399719079334,0.027514666666666666,0.002063240002219876,0.004158000000000001 +2174,11.070882427407815,0,0,-0,5.434849546132082,7.5867200295130415,0.09246666666666667,0.21668210749824843,0.12469066666666667,150.85600153605142,3.049294597333333,10.353307406107584,0,6.512380003929138,0,7.382220029830933,0.034743176560000005,10.724274555842081,0.5607279999999999,88.56857999165852,0.0060799999999999995,5.078733007113139,54.936802666666665,0,456.82606506347656,2483.1091893333332,2833.7295328776036,591.9746120528313,1361.4199625651042,627.7825904713543,0.2938280676801999,0.6081786,0.019729599667092163,0.010604344853333333,0.0010176537034567446,0.00457495984,363.25699106852215,192.8558824,124.37090174357097,142.23780000000002,348.0640284220378,75.46972266666666,3.6672407587369285,2.229571416,16.830000082651775,0,10.422900517781576,29.730402,0,0,1.1547200282414753,3.2744760106666666,0.10372599586844444,0.24924399626666666,486.17597452799475,11.980093051371655,77.30004626379272,141.5369122537226,25.371106543378335,24.204011401048845,-0.29158811506972226,58.61970361073812,4.824125333333334,20426.915295484996,0,3.4431207556432736e-4,0.004053333333333333,0.4487309977412224,0.027157333333333332,0.0019803200072298446,0.004104000000000001 +2175,10.925212921784027,0,0,-0,5.385249770711616,7.589979966481526,0.09125,0.2074761042992274,0.12305,151.06100463867188,3.0091722999999995,10.217407464981079,0,6.470630009969075,0,7.3661500215530396,0.0342860295,10.486075162887573,0.5533499999999999,87.5046812693278,0.006,5.075262983640035,54.21395,0,456.13805135091144,2450.4367,2823.24961344401,589.4643744820929,1365.8999532063801,623.8955305593298,0.29005106290181476,0.60017625,0.019150999529908102,0.010464814,9.264513694991668e-4,0.004514763,359.75699106852215,190.318305,122.8309097290039,140.36625000000004,345.8490295410156,74.4767,3.6325507164001465,2.20023495,16.74790032704671,0,10.287200450897217,29.339212500000002,0,0,1.1398000419139862,3.2313908,0.10247099585831165,0.24596447,486.6869735717773,11.964338942661856,77.1512850111729,140.36958625328185,25.11966096735148,24.07503376182994,-0.29158811506972226,58.799203872680664,4.76065,20174.108117381133,0,3.2172907231142744e-4,0.004,0.44123200327157974,0.026799999999999997,0.0019007099908776581,0.004050000000000001 +2176,10.77954341616024,0,0,-0,5.335649995291151,7.593179941177368,0.09003333333333333,0.19865810126066208,0.12140933333333334,151.26300303141275,2.969050002666666,10.083207289377848,0,6.429129997889201,0,7.350100000699361,0.03382888244,10.252975622812906,0.5459719999999999,86.45308113098145,0.00592,5.071832935015361,53.491097333333336,0,455.4550374348958,2417.7642106666667,2812.7995605468745,586.9541369113546,1370.3199564615886,620.0084706473053,0.2862870668371518,0.5921738999999999,0.01859919959679246,0.010325283146666666,8.433530601905659e-4,0.0044545661599999994,356.24698638916016,187.78072760000003,121.29491424560547,138.49470000000002,343.6070251464844,73.48367733333333,3.5978007117907205,2.170898484,16.666199843088787,0,10.151800314585367,28.948023,0,0,1.1249300340811412,3.188305589333333,0.10121999494731426,0.24268494373333332,487.1909790039062,11.948584833952056,77.00252375855308,139.20226025284114,24.868215391324625,23.946056122611033,-0.29158811506972226,58.976003646850586,4.697174666666667,19921.300939277266,0,3.006240658578463e-4,0.003946666666666667,0.43385499715805054,0.026442666666666666,0.0018242699831413727,0.003996 +2177,10.633873910536455,0,0,-0,5.286050219870685,7.596329927444458,0.08881666666666667,0.1902120957771937,0.11976866666666668,151.46200307210287,2.928927705333333,9.950677315394083,0,6.387880007425944,0,7.334090034166972,0.03337173538,10.02487619717916,0.5385939999999999,85.41368103027344,0.00584,5.068433006604512,52.76824466666667,0,454.7760264078776,2385.091721333333,2802.389567057291,584.4438993406163,1374.6699625651042,616.1214107352807,0.28253306945164997,0.58417155,0.01807029964402318,0.010185752293333333,7.676427873472372e-4,0.00439436932,352.72598520914715,185.24315020000003,119.7639217376709,136.62315,341.3360290527344,72.49065466666666,3.5630006988843284,2.141562018,16.584800084431965,0,10.016900539398193,28.5568335,0,0,1.1101000408331554,3.1452203786666666,0.09997149556875229,0.23940541746666666,487.6869761149088,11.932830725242258,76.85376250593328,138.03493425240043,24.616769815297772,23.817078483392123,-0.29158811506972226,59.150203704833984,4.633699333333334,19668.4937611734,0,2.8089906360643607e-4,0.0038933333333333333,0.42659800002972287,0.026085333333333332,0.0017508900006456922,0.003942 +2178,10.488204404912667,0,0,-0,5.236450444450219,7.599419991175334,0.0876,0.18212409069140753,0.11812800000000001,151.65800348917642,2.8888054079999996,9.819857041041056,0,6.3468799988428755,0,7.318099935849507,0.03291458832,9.801626523335775,0.5312159999999999,84.3862813313802,0.0057599999999999995,5.065062920252482,52.045392,0,454.1010157267253,2352.4192319999997,2792.0095621744786,581.933661769878,1378.9599609375,612.2343508232562,0.278793066740036,0.5761691999999999,0.01756539971878131,0.01004622144,6.986715355499958e-4,0.00433417248,349.1949869791667,182.70557280000003,118.23692639668782,134.75160000000002,339.0390319824219,71.497632,3.528160730997721,2.112225552,16.50369993845622,0,9.882410367329916,28.165644,0,0,1.095320055882136,3.1021351679999998,0.09872699591020744,0.2361258912,488.1759770711262,11.917076616532459,76.70500125331345,136.8676082519597,24.36532423927092,23.688100844173217,-0.29158811506972226,59.32180372873942,4.5702240000000005,19415.68658306953,0,2.6246505876770243e-4,0.00384,0.4194600035746892,0.025727999999999997,0.0016804300054597359,0.0038880000000000004 +2179,10.342534899288879,0,0,-0,5.186850669029753,7.602459987004598,0.08638333333333334,0.17437708750367165,0.11648733333333335,151.85200373331705,2.8486831106666664,9.690697113672892,0,6.306120038032532,0,7.3021399974823,0.032457441260000004,9.583227157592773,0.5238379999999999,83.37078094482422,0.00568,5.061732888221741,51.32253933333334,0,453.4300003051758,2319.7467426666667,2781.6695760091143,579.4234241991397,1383.1799621582031,608.3472909112317,0.2750650644302368,0.56816685,0.017083099422355492,0.009906690586666666,6.358433165587485e-4,0.00427397564,345.6559880574544,180.16799540000002,116.71493339538574,132.88005000000004,336.7160237630208,70.50460933333332,3.493270695209503,2.0828890860000002,16.4229998588562,0,9.748320500055948,27.7744545,0,0,1.080580045779546,3.0590499573333334,0.09748649659256141,0.23284636493333333,488.657979329427,11.90132250782266,76.55624000069365,135.70028225151896,24.113878663244066,23.559123204954307,-0.29158811506972226,59.49070326487223,4.506748666666667,19162.879404965668,0,2.4523805526162806e-4,0.0037866666666666665,0.4124390011032422,0.025370666666666666,0.001612790006523331,0.0038340000000000006 +2180,10.196865393665092,0,0,-0,5.137250893609288,7.605449954668681,0.08516666666666667,0.16695808246731758,0.11484666666666668,152.0430030822754,2.808560813333333,9.563177108764648,0,6.2656099398930865,0,7.286210020383199,0.0320002942,9.369537671407064,0.5164599999999999,82.36718050638835,0.0056,5.058422843615214,50.59968666666667,0,452.76299540201825,2287.074253333333,2771.3595987955723,576.9131866284014,1387.3399658203125,604.4602309992072,0.27134906500577927,0.5601645,0.01661979981387655,0.009767159733333333,5.786191128815213e-4,0.0042137788,342.1079915364583,177.63041800000002,115.19593620300293,131.00850000000003,334.36802927652997,69.51158666666666,3.4583506981531777,2.05355262,16.342600345611572,0,9.614630381266275,27.383265,0,0,1.0658900539080303,3.0159647466666666,0.09624849694470565,0.22956683866666666,489.13097635904944,11.885568399112861,76.40747874807383,134.53295625107825,23.862433087217212,23.4301455657354,-0.29158811506972226,59.6570037206014,4.443273333333334,18910.0722268618,0,2.2913905316575742e-4,0.0037333333333333333,0.40553199996550876,0.025013333333333332,0.001547860010759905,0.0037800000000000004 +2181,10.051195888041306,0,0,-0,5.0876511181888215,7.608389933904012,0.08395,0.15985308090845743,0.11320600000000001,152.23100407918295,2.768438516,9.437286853790283,0,6.225340008735657,0,7.270309964815776,0.031543147140000005,9.160458246866861,0.5090819999999999,81.37518056233723,0.00552,5.055152813593547,49.876834,0,452.0989812215169,2254.4017639999997,2761.0895589192705,574.4029490576631,1391.4399515787761,600.5731710871827,0.26764506101608276,0.5521621499999999,0.016174299487223227,0.00962762888,5.265019232562432e-4,0.00415358196,338.55298614501953,175.09284060000002,113.68294715881348,129.13695,331.9950230916341,68.518564,3.4233906666437783,2.024216154,16.262499809265137,0,9.481340328852335,26.992075500000002,0,0,1.051240046819051,2.9728795359999998,0.09501299634575844,0.2262873124,489.59797668457026,11.869814290403063,76.25871749545401,133.36563025063754,23.61098751119036,23.301167926516495,-0.29158811506972226,59.82060305277506,4.379798000000001,18657.265048757934,0,2.1409404992785616e-4,0.00368,0.398738997677962,0.024655999999999997,0.0014855199939726542,0.003726 +2182,9.905526382417518,0,0,-0,5.038051342768356,7.611280043919881,0.08273333333333334,0.1530490778386593,0.11156533333333335,152.41600290934244,2.7283162186666665,9.313006718953451,0,6.185320019721985,0,7.254440069198608,0.031086000080000002,8.955888668696085,0.5017039999999999,80.39468193054199,0.0054399999999999995,5.051902850468953,49.153981333333334,0,451.4399693806966,2221.7292746666667,2750.8395792643223,571.8927114869248,1395.4699605305989,596.6861111751581,0.2639520640174548,0.5441598,0.01574789957764248,0.009488098026666666,4.7904075230083737e-4,0.00409338512,334.9919891357422,172.5552632,112.17294692993164,127.26540000000003,329.5980275472005,67.52554133333332,3.3884106874465942,1.994879688,16.182699998219807,0,9.348440567652384,26.600886000000003,0,0,1.0366300543149312,2.9297943253333334,0.09378149546682835,0.22300778613333333,490.0569814046223,11.854060181693264,76.1099562428342,132.1983042501968,23.359541935163506,23.172190287297585,-0.29158811506972226,59.98160330454508,4.316322666666667,18404.457870654067,0,2.0003504444806217e-4,0.003626666666666667,0.39205600321292877,0.024298666666666666,0.00142567998652036,0.0036720000000000004 +2183,9.759856876793732,0,0,-0,4.988451567347891,7.614109953244527,0.08151666666666667,0.14653207237521806,0.10992466666666667,152.59900410970053,2.6881939213333332,9.190306663513184,0,6.145539959271749,0,7.238599975903829,0.030628853020000003,8.755759159723917,0.49432599999999993,79.4255822499593,0.00536,5.04869278271993,48.43112866666667,0,450.7849578857422,2189.056785333333,2740.6295776367183,569.3824739161864,1399.429951985677,592.7990512631336,0.260271059970061,0.5361574499999999,0.015339699573814869,0.009348567173333332,4.35823591639443e-4,0.00403318828,331.42398834228516,170.0176858,110.66795794169109,125.39385000000001,327.1780293782552,66.53251866666666,3.353400707244873,1.965543222,16.10330041249593,0,9.215920448303223,26.2096965,0,0,1.0220700403054555,2.8867091146666666,0.09255389558772247,0.21972825986666666,490.5099767049153,11.838306072983466,75.96119499021438,131.03097824975606,23.108096359136653,23.04321264807868,-0.29158811506972226,60.140003522237144,4.252847333333333,18151.6506925502,0,1.8689604257815517e-4,0.0035733333333333333,0.3854829967021942,0.023941333333333332,0.0013682300050277263,0.003618 +2184,9.614187371169944,0,0,-0,4.938851791927425,7.616889993349711,0.0803,0.1402920683224996,0.108284,152.77900314331055,2.648071624,9.069186687469482,0,6.105990052223206,0,7.222789963086446,0.030171705960000003,8.559969584147135,0.48694799999999994,78.46788152058919,0.00528,5.045502742131551,47.708276000000005,0,450.13294728597003,2156.384296,2730.449564615885,566.8722363454482,1403.3299662272136,588.911991351109,0.2565980652968089,0.5281551,0.014945999641592303,0.009209036319999999,3.9647444888638955e-4,0.00397299144,327.84999084472656,167.4801084,109.16695976257324,123.52230000000002,324.7350209554036,65.53949599999999,3.3183706601460776,1.9362067559999998,16.024200042088825,0,9.083770275115967,25.818507,0,0,1.0075400273005168,2.8436239039999998,0.09132879662017028,0.2164487336,490.95498148600257,11.822551964273666,75.81243373759457,129.86365224931535,22.8566507831098,22.91423500885977,-0.29158811506972226,60.29570325215658,4.1893720000000005,17898.843514446333,0,1.7461903917137533e-4,0.00352,0.37901799629131955,0.023584,0.0013130799925420433,0.0035640000000000003 +2185,9.468517865546158,0,0,-0,4.889252016506958,7.619610031445821,0.07908333333333334,0.13431606690088907,0.10664333333333334,152.95700454711914,2.6079493266666667,8.94960649808248,0,6.066689968109131,0,7.20700991153717,0.029714558900000004,8.368419885635376,0.47956999999999994,77.5212828318278,0.0052,5.042352755864461,46.98542333333334,0,449.4849370320638,2123.7118066666667,2720.3095703124995,564.36199877471,1407.1599731445312,585.0249314390845,0.2529360627134641,0.5201527499999999,0.01456859971707066,0.009069505466666666,3.606513176540223e-4,0.0039127946,324.27198537190753,164.94253100000003,107.66996828715007,121.65075000000002,322.2710240681966,64.54647333333332,3.283320645491282,1.9068702899999999,15.94539999961853,0,8.951990365982056,25.4273175,0,0,0.993058035771052,2.8005386933333334,0.09010749558607738,0.21316920733333333,491.39297993977857,11.806797855563868,75.66367248497475,128.69632624887464,22.605205207082946,22.785257369640863,-0.29158811506972226,60.44880294799805,4.125896666666668,17646.03633634247,0,1.6314603756958e-4,0.003466666666666667,0.37265899777412415,0.023226666666666666,0.0012601399697208155,0.00351 +2186,9.322848359922371,0,0,-0,4.839652241086493,7.622289856274922,0.07786666666666667,0.12859306360284486,0.10500266666666667,153.1310017903646,2.567827029333333,8.831566333770752,0,6.027630011240642,0,7.191260019938151,0.029257411840000004,8.181040366490683,0.47219199999999995,76.58578300476074,0.0051199999999999996,5.039222677548726,46.26257066666667,0,448.8399251302083,2091.039317333333,2710.18955485026,561.8517612039716,1410.9299825032551,581.13787152706,0.24928505470355353,0.5121503999999999,0.014206399753068885,0.008929974613333334,3.2803919990935054e-4,0.00385259776,320.68799082438153,162.40495360000003,106.17797533671062,119.77920000000002,319.78502655029297,63.553450666666656,3.2482606371243796,1.877533824,15.866899967193604,0,8.820560455322266,25.036128,0,0,0.978612040479978,2.7574534826666666,0.08889009679357211,0.20988968106666667,491.8229853312174,11.79104374685407,75.51491123235493,127.5290002484339,22.353759631056096,22.656279730421957,-0.29158811506972226,60.599303245544434,4.062421333333334,17393.229158238602,0,1.524260345225533e-4,0.0034133333333333338,0.3664050002892812,0.022869333333333332,0.0012093200057279319,0.003456 +2187,9.177178854298583,0,0,-0,4.790052465666028,7.62490991751353,0.07665,0.12311306223273277,0.10336200000000001,153.30300267537436,2.5277047319999997,8.715036392211914,0,5.988809943199158,0,7.175540010134379,0.028800264780000005,7.997740864753723,0.46481399999999995,75.66128158569336,0.005039999999999999,5.036132613817851,45.53971800000001,0,448.19891357421875,2058.366828,2700.1095581054683,559.3415236332332,1414.6399637858074,577.2508116150354,0.24564405779043832,0.50414805,0.0138561997252206,0.00879044376,2.983540956241389e-4,0.0037924009200000003,317.1009928385417,159.86737620000002,104.68897819519043,117.90765000000002,317.2790222167969,62.56042799999999,3.2131906350453696,1.8481973579999997,15.788799921671549,0,8.68949023882548,24.644938500000002,0,0,0.9642050315936407,2.7143682719999997,0.08767489716410637,0.2066101548,492.24697621663404,11.77528963814427,75.36614997973513,126.36167424799318,22.102314055029243,22.527302091203047,-0.29158811506972226,60.7471030553182,3.9989460000000006,17140.421980134735,0,1.4240803405603705e-4,0.0033600000000000006,0.3602530012528102,0.022512,0.0011605399971206982,0.003402 +2188,9.031509348674797,0,0,-0,4.7404526902455615,7.627479990323384,0.07543333333333332,0.11786505952477455,0.10172133333333333,153.47200139363608,2.4875824346666664,8.599996169408163,0,5.950219949086507,0,7.159850041071574,0.028343117720000005,7.818421284357707,0.45743599999999995,74.74748357137044,0.004959999999999999,5.033062696456909,44.81686533333334,0,447.56190490722656,2025.6943386666667,2690.0495198567705,556.831286062495,1418.2699584960938,573.363751703011,0.24201305955648422,0.4961456999999999,0.013519599723319212,0.008650912906666667,2.713349992215323e-4,0.00373220408,313.50999450683594,157.32979880000002,103.20498593648274,116.0361,314.7520243326823,61.567405333333326,3.178110639254252,1.8188608919999998,15.710899909337362,0,8.558760404586792,24.253749,0,0,0.9498360256354014,2.671283061333333,0.08646359605093797,0.20333062853333334,492.6639785766601,11.759535529434473,75.2173887271153,125.19434824755245,21.85086847900239,22.39832445198414,-0.29158811506972226,60.892302831014,3.9354706666666672,16887.61480203087,0,1.3304803239104027e-4,0.003306666666666667,0.354203000664711,0.022154666666666666,0.0011137100130630035,0.003348 +2189,8.88583984305101,0,0,-0,4.690852914825095,7.629999915758769,0.07421666666666667,0.11284005704025428,0.10008066666666666,153.6390012105306,2.447460137333333,8.486436208089193,0,5.911870002746582,0,7.144179979960124,0.027885970660000006,7.643011728922526,0.45005799999999996,73.84448305765788,0.00488,5.030022660891215,44.09401266666667,0,446.9278971354167,1993.0218493333334,2680.029602050781,554.3210484917568,1421.8499755859375,569.4766917909864,0.23839205503463745,0.4881433499999999,0.013195899703229466,0.008511382053333334,2.4674490608352545e-4,0.00367200724,309.9159876505534,154.79222140000002,101.72498766581218,114.16455,312.20602162679035,60.57438266666666,3.1430306235949197,1.7895244259999996,15.633400122324625,0,8.428370396296183,23.8625595,0,0,0.9355050375064214,2.6281978506666666,0.0852559966345628,0.20005110226666667,493.07497914632154,11.743781420724673,75.0686274744955,124.02702224711173,21.599422902975537,22.26934681276523,-0.29158811506972226,61.034902572631836,3.871995333333334,16634.807623927,0,1.2430102712338945e-4,0.0032533333333333338,0.34825199842453003,0.021797333333333335,0.0010687700026513387,0.003294 +2190,8.740170337427223,0,0,-0,4.64125313940463,7.632459918657939,0.073,0.10802805485824744,0.09844,153.8030039469401,2.40733784,8.374346176783243,0,5.8737499713897705,0,7.128549973169963,0.027428823600000006,7.471432050069173,0.44267999999999996,72.9519837697347,0.0048,5.027002612749736,43.37116,0,446.29688771565753,1960.3493600000002,2670.0295817057286,551.8108109210184,1425.3499654134114,565.5896318789619,0.2347810554007689,0.48014099999999993,0.012881999757761756,0.0083718512,2.2436682411353104e-4,0.0036118104,306.3189875284831,152.254644,100.24899673461914,112.293,309.6420211791992,59.58135999999999,3.1079405744870505,1.7601879599999997,15.556300004323324,0,8.298310279846191,23.47137,0,0,0.9212080339590708,2.5851126399999997,0.08405049641927083,0.196771576,493.47797648111975,11.728027312014875,74.91986622187568,122.859696246671,21.347977326948683,22.140369173546325,-0.29158811506972226,61.17490291595459,3.8085200000000006,16382.000445823134,0,1.1612802578990038e-4,0.0032000000000000006,0.3423989986379941,0.02144,0.0010256199942280848,0.00324 +2191,8.594500831803437,0,0,-0,4.591653363984165,7.634869972864787,0.07178333333333332,0.10342105167607467,0.09679933333333333,153.9640032450358,2.3672155426666666,8.263686021169027,0,5.835869948069255,0,7.1129500071207685,0.026971676540000007,7.303612510363261,0.43530199999999997,72.07008361816406,0.004719999999999999,5.024012645085652,42.648307333333335,0,445.6698760986328,1927.676870666667,2660.0695597330723,549.30057335028,1428.7999674479167,561.7025719669374,0.23117605596780777,0.47213864999999994,0.012577299727126956,0.008232320346666667,2.0400474750204012e-4,0.0035516135600000003,302.7199935913086,149.7170666,98.7765998840332,110.42145000000001,307.0590235392253,58.58833733333332,3.072860598564148,1.7308514939999997,15.479400078455607,0,8.168580373128256,23.0801805,0,0,0.9069480250279108,2.542027429333333,0.0828473965326945,0.19349204973333334,493.87497711181635,11.712273203305077,74.77110496925586,121.69237024623028,21.09653175092183,22.01139153432742,-0.29158811506972226,61.31220277150472,3.7450446666666672,16129.193267719267,0,1.0849202408280689e-4,0.0031466666666666674,0.3366429979602496,0.021082666666666666,9.84208988181005e-4,0.003186 +2192,8.448831326179649,0,0,-0,4.542053588563698,7.637229959170024,0.07056666666666667,0.09900854962567489,0.09515866666666667,154.12200419108072,2.3270932453333333,8.154455979665121,0,5.798210024833679,0,7.097379962603251,0.026514529480000007,7.139452934265137,0.42792399999999997,71.19848442077637,0.00464,5.021052598953247,41.92545466666667,0,445.0458679199219,1895.0043813333334,2650.1295979817705,546.7903357795418,1432.1699625651042,557.8155120549128,0.22758105273048082,0.46413629999999995,0.012283599625031153,0.008092789493333334,1.8547668150858954e-4,0.0034914167200000004,299.11999257405597,147.1794892,97.30820528666179,108.54990000000001,304.4580256144206,57.59531466666665,3.0377805829048157,1.7015150279999998,15.402900060017904,0,8.039170225461325,22.688991,0,0,0.8927230288585027,2.4989422186666665,0.0816478965183099,0.19021252346666667,494.2649790445963,11.696519094595278,74.62234371663605,120.52504424578956,20.845086174894977,21.88241389510851,-0.29158811506972226,61.446902910868324,3.681569333333334,15876.386089615402,0,6.832991311966907e-5,0.003093333333333334,0.33098100622495014,0.02072533333333333,9.444600000279024e-4,0.003132 +2193,8.30316182055586,0,0,-0,4.492453813143233,7.639529903729756,0.06935,0.09478384753068288,0.093518,154.27800369262695,2.286970948,8.04663602511088,0,5.76078999042511,0,7.081829984982808,0.026057382420000004,6.97890321413676,0.420546,70.33708318074544,0.00456,5.018122553825378,41.202602000000006,0,444.4248580932617,1862.3318920000002,2640.219543457031,544.2800982088035,1435.4799702962239,553.9284521428883,0.2239950547615687,0.4561339499999999,0.012000399641692638,0.00795325864,1.6861961921676993e-4,0.00343121988,295.5169957478841,144.6419118,95.84381103515625,106.67835000000001,301.84002176920575,56.60229199999999,3.0027005672454834,1.6721785619999996,15.32669997215271,0,7.910070379575093,22.2978015,0,0,0.8785340289274851,2.4558570079999997,0.08045199699699879,0.18693299719999998,494.64797719319654,11.680764985885478,74.47358246401623,119.35771824534883,20.593640598868124,21.753436255889604,-0.29158811506972226,61.578902880350746,3.6180940000000006,15623.578911511535,0,0,0.0030400000000000006,0.3254129985968272,0.020368,9.063080118115371e-4,0.003078 +2194,8.157492314932075,0,0,-0,4.442854037722767,7.64178999265035,0.06813333333333332,0.09073864544431369,0.09187733333333334,154.43100357055664,2.2468486506666667,7.940205812454224,0,5.723599990208943,0,7.066319982210795,0.025600235360000004,6.82188359896342,0.413168,69.48588562011719,0.00448,5.0152125755945844,40.47974933333334,0,443.8078435262044,1829.6594026666667,2630.3295898437495,541.7698606380652,1438.719970703125,550.0413922308638,0.2204180508852005,0.4481315999999999,0.011724499752745032,0.007813727786666667,1.5328456477921767e-4,0.00337102304,291.9139912923177,142.1043344,94.38321685791016,104.80680000000001,299.2050196329753,55.60926933333332,2.9676305651664734,1.6428420959999996,15.250799973805746,0,7.781290372212728,21.906612,0,0,0.8643780301014582,2.412771797333333,0.07925819667677085,0.1836534709333333,495.02497863769526,11.66501087717568,74.32482121139643,118.19039224490811,20.34219502284127,21.624458616670694,-0.29158811506972226,61.70830217997233,3.5546186666666673,15370.77173340767,0,0,0.002986666666666667,0.31993699570496875,0.020010666666666666,8.696879958733916e-4,0.0030239999999999998 +2195,8.011822809308288,0,0,-0,4.393254262302301,7.643979986508687,0.06691666666666665,0.08686534191171329,0.09023666666666667,154.58100001017252,2.206726353333333,7.835155765215556,0,5.6866399844487505,0,7.0508400201797485,0.025143088300000005,6.6682939529418945,0.40579,68.64478365580241,0.004399999999999999,5.012322465578715,39.75689666666667,0,443.1928405761719,1796.9869133333334,2620.479573567708,539.2596230673269,1441.8999735514324,546.1543323188394,0.2168500485519568,0.4401292499999999,0.011457999780153235,0.007674196933333334,1.3933451312671727e-4,0.0033108262000000003,288.3089904785156,139.566757,92.9263203938802,102.93525000000001,296.5550231933594,54.616246666666655,2.932570517063141,1.6135056299999997,15.17520006497701,0,7.652800401051839,21.5154225,0,0,0.8502530256907145,2.369686586666666,0.07806799684961636,0.18037394466666665,495.39497884114576,11.649256768465882,74.1760599587766,117.02306624446739,20.090749446814414,21.495480977451788,-0.29158811506972226,61.8351027170817,3.491143333333334,15117.964555303803,0,0,0.002933333333333334,0.3145519991715749,0.01965333333333333,8.345410072555145e-4,0.00297 +2196,7.8661533036845,0,0,-0,4.343654486881836,7.646129926045735,0.0657,0.08315674153467019,0.08859600000000001,154.72800318400064,2.1666040559999997,7.731455683708191,0,5.649910012880961,0,7.035380005836487,0.024685941240000005,6.5180743137995405,0.398412,67.81348419189453,0.00432,5.009462475776672,39.034044,0,442.58182525634766,1764.3144240000001,2610.639567057291,536.7493854965885,1445.0099690755208,542.2672724068148,0.2132900506258011,0.4321268999999999,0.011200399758915106,0.00753466608,1.266454679959376e-4,0.0032506293600000004,284.70399220784503,137.02917960000002,91.47312482198079,101.06370000000001,293.88801829020184,53.623223999999986,2.897530515988668,1.5841691639999997,15.099999984105429,0,7.524610320727031,21.124233,0,0,0.8361620257298151,2.3266013759999997,0.07688119697074096,0.17709441839999998,495.7589747111002,11.633502659756083,74.02729870615678,115.85574024402666,19.83930387078756,21.36650333823288,-0.29158811506972226,61.95930194854736,3.4276680000000006,14865.157377199936,0,0,0.0028800000000000006,0.30925599733988446,0.019295999999999997,8.008070047556733e-4,0.002916 +2197,7.720483798060713,0,0,-0,4.29405471146137,7.648219982783,0.06448333333333332,0.07960573956370354,0.08695533333333334,154.87300237019858,2.1264817586666664,7.629095673561096,0,5.613400022188823,0,7.019960006078084,0.024228794180000006,6.371174693107605,0.391034,66.99208450317383,0.00424,5.006632447242737,38.31119133333334,0,441.9738184611003,1731.6419346666667,2600.8395589192705,534.2391479258503,1448.0499776204426,538.3802124947903,0.20973904927571616,0.42412454999999993,0.010948699666187167,0.007395135226666667,1.1510442527651321e-4,0.0031904325200000005,281.09898630777997,134.49160220000002,90.02353032430013,99.19215000000001,291.20601654052734,52.63020133333332,2.862500548362732,1.5548326979999998,15.025000095367432,0,7.396710316340129,20.7330435,0,0,0.8221030284961065,2.283516165333333,0.07569629574815433,0.17381489213333332,496.1159744262695,11.617748551046285,73.87853745353698,114.68841424358594,19.587858294760707,21.237525699013972,-0.29158811506972226,62.08090305328369,3.3641926666666673,14612.35019909607,0,0,0.002826666666666667,0.30404700835545856,0.018938666666666666,7.684289982231954e-4,0.002862 +2198,7.574814292436926,0,0,-0,4.2444549360409045,7.650270064671834,0.06326666666666665,0.07620573788881302,0.08531466666666668,155.0150006612142,2.086359461333333,7.5280655225118,0,5.577119946479797,0,7.004570086797078,0.023771647120000003,6.227494955062866,0.383656,66.18028450012207,0.00416,5.003822485605876,37.58833866666667,0,441.3688100179036,1698.9694453333334,2591.0595499674473,531.7289103551119,1451.0299784342449,534.4931525827658,0.20619304850697517,0.4161221999999999,0.010702599848931035,0.0072556043733333336,1.0460838590612791e-4,0.00313023568,277.49398549397785,131.9540248,88.57763608296712,97.32060000000001,288.51001993815106,51.63717866666666,2.8274805148442588,1.5254962319999996,14.95039987564087,0,7.269100308418274,20.341853999999998,0,0,0.8080760290225347,2.240430954666666,0.07451349621017773,0.17053536586666662,496.4679819742838,11.601994442336485,73.72977620091716,113.52108824314521,19.336412718733854,21.108548059795066,-0.29158811506972226,62.19980239868164,3.300717333333334,14359.543020992203,0,0,0.002773333333333334,0.2989250024159749,0.01858133333333333,7.373539895828193e-4,0.002808 +2199,7.429144786813139,0,0,-0,4.194855160620438,7.652259945869446,0.06204999999999999,0.07295043642322223,0.08367400000000001,155.15400187174478,2.046237164,7.428345441818237,0,5.541060050328572,0,6.989200035730998,0.023314500060000003,6.086975375811259,0.376278,65.3781852722168,0.00408,5.001032431920369,36.865486000000004,0,440.76680755615234,1666.296956,2581.2995605468745,529.2186727843737,1453.939961751302,530.6060926707412,0.20265504717826843,0.4081198499999999,0.010464099701493979,0.00711607352,0,0.0030700388400000003,273.88999430338544,129.4164474,87.13524119059245,95.44905000000001,285.79901631673175,50.64415599999999,2.7924905021985373,1.4961597659999997,14.876199881235758,0,7.1417603095372515,19.9506645,0,0,0.7940790404876074,2.1973457439999997,0.07333409786224365,0.16725583959999996,496.8119735717773,11.586240333626687,73.58101494829735,112.35376224270449,19.084967142707,20.979570420576156,-0.29158811506972226,62.316102027893066,3.2372420000000006,14106.735842888338,0,0,0.00272,0.29388799766699475,0.018223999999999997,7.075299993933489e-4,0.002754 +2200,7.283475281189352,0,0,-0,4.145255385199973,7.654189984003703,0.06083333333333332,0.06983363504211108,0.08203333333333335,155.29100036621094,2.0061148666666666,7.329905430475871,0,5.505220095316569,0,6.973869959513347,0.022857353000000004,5.949555675188701,0.3689,64.58548482259114,0.004,4.9982722997665405,36.142633333333336,0,440.1667887369792,1633.6244666666666,2571.5695393880205,526.7084352136353,1456.7899780273438,526.7190327587167,0.19912604739268622,0.4001174999999999,0.010232899881278476,0.006976542666666667,0,0.0030098420000000004,270.2859929402669,126.87887,85.69624519348145,93.57750000000001,283.0740203857422,49.65113333333332,2.757510503133138,1.4668232999999997,14.802200078964233,0,7.014700333277385,19.559475,0,0,0.7801110247770945,2.154260533333333,0.07215799763798714,0.1639763133333333,497.15098317464185,11.570486224916888,73.43225369567753,111.18643624226377,18.833521566680147,20.85059278135725,-0.29158811506972226,62.42980225880941,3.1737666666666673,13853.928664784471,0,0,0.002666666666666667,0.28893399735291797,0.017866666666666663,6.789069933195909e-4,0.0027 +2201,7.137805775565565,0,0,-0,4.095655609779508,7.656069874763489,0.05961666666666666,0.06684943412741025,0.08039266666666668,155.4250030517578,1.9659925693333333,7.2327553033828735,0,5.4696100155512495,0,6.958570043245952,0.022400205940000004,5.815175970395406,0.361522,63.80228487650553,0.00392,4.995532353719075,35.41978066666667,0,439.57078552246094,1600.9519773333334,2561.8595784505205,524.198197642897,1459.5699768066406,522.8319728466922,0.19560404370228449,0.3921151499999999,0.010006099784125885,0.0068370118133333335,0,0.0029496451600000005,266.68299102783203,124.3412926,84.26075045267741,91.70595000000002,280.33602142333984,48.65811066666665,2.722560485204061,1.4374868339999998,14.72849996884664,0,6.887900312741597,19.1682855,0,0,0.7661730299393336,2.111175322666666,0.07098379731178284,0.16069678706666662,497.48298136393225,11.55473211620709,73.28349244305771,110.01911024182304,18.582075990653294,20.721615142138344,-0.29158811506972226,62.54090245564779,3.110291333333334,13601.121486680604,0,0,0.002613333333333334,0.2840620030959447,0.017509333333333328,6.514359993161634e-4,0.0026460000000000003 +2202,6.992136269941778,0,0,-0,4.046055834359041,7.6579000155131025,0.058399999999999994,0.06399233266711235,0.07875200000000002,155.55600102742514,1.9258702719999998,7.136865297953288,0,5.43422003587087,0,6.943299969037374,0.021943058880000005,5.683756232261658,0.354144,63.02828598022461,0.00384,4.992812275886536,34.696928,0,438.9767761230469,1568.279488,2552.169596354166,521.6879600721587,1462.2799682617188,518.9449129346676,0.19208904604117075,0.3841127999999999,0.009785779829447469,0.00669748096,0,0.00288944832,263.08098856608075,121.80371520000001,82.82855542500813,89.83440000000002,277.58502197265625,47.66508799999999,2.6876304745674133,1.4081503679999998,14.655199925104776,0,6.761370301246643,18.777096,0,0,0.7522640327612559,2.0680901119999997,0.06981279700994492,0.15741726079999996,497.80997721354163,11.53897800749729,73.1347311904379,108.85178424138232,18.33063041462644,20.592637502919434,-0.29158811506972226,62.649301846822105,3.0468160000000006,13348.314308576739,0,0,0.00256,0.2792709991335869,0.017151999999999997,6.250719986079881e-4,0.002592 +2203,6.8464667643179915,0,0,-0,3.996456058938576,7.6596799691518145,0.05718333333333332,0.061256930542488895,0.07711133333333334,155.68500264485678,1.8857479746666665,7.042215188344319,0,5.399049957593282,0,6.9280500411987305,0.021485911820000002,5.555236577987671,0.34676599999999996,62.2634859085083,0.00376,4.990122278531392,33.97407533333334,0,438.3857727050781,1535.6069986666666,2542.5095621744786,519.1777225014204,1464.9199625651042,515.0578530226431,0.1885820428530375,0.3761104499999999,0.009571649599820375,0.006557950106666667,0,0.0028292514800000003,259.4799982706706,119.26613780000001,81.39975929260254,87.96285000000002,274.8210194905599,46.67206533333332,2.6527204314867654,1.3788139019999996,14.582200050354004,0,6.635100285212199,18.385906499999997,0,0,0.7383810331424078,2.025004901333333,0.0686449973533551,0.1541377345333333,498.12997690836585,11.523223898787492,72.98596993781808,107.6844582409416,18.079184838599588,20.463659863700528,-0.29158811506972226,62.75510215759277,2.9833406666666673,13095.507130472874,0,0,0.002506666666666667,0.27455999950567883,0.016794666666666663,5.997700015238175e-4,0.0025380000000000003 +2204,6.700797258694204,0,0,-0,3.9468562835181102,7.661410013834636,0.05596666666666666,0.05863792976985375,0.07547066666666667,155.81000264485678,1.845625677333333,6.948805093765259,0,5.364100019137065,0,6.912839929262797,0.021028764760000002,5.429556926091512,0.33938799999999997,61.50778611501058,0.00368,4.987442175547282,33.25122266666667,0,437.7977600097656,1502.9345093333332,2532.8695678710933,516.6674849306821,1467.499979654948,511.1707931106186,0.1850830428302288,0.3681080999999999,0.009360979699219266,0.006418419253333333,0,0.00276905464,255.8809954325358,116.72856040000002,79.9741636912028,86.09130000000002,272.0450134277344,45.67904266666666,2.6178404688835144,1.3494774359999997,14.50950002670288,0,6.509080211321513,17.994716999999998,0,0,0.724528024593989,1.9819196906666663,0.06747889829178651,0.15085820826666663,498.443977355957,11.507469790077693,72.83720868519828,106.51713224050087,17.827739262572734,20.33468222448162,-0.29158811506972226,62.858302434285484,2.919865333333334,12842.699952369006,0,0,0.0024533333333333334,0.2699270000060399,0.01643733333333333,5.754880063856641e-4,0.002484 +2205,6.555127753070417,0,0,-0,3.8972565080976445,7.663079937299092,0.05474999999999999,0.05613062810152769,0.07383,155.93300247192383,1.8055033799999998,6.856605013211568,0,5.329360008239746,0,6.897660096486409,0.020571617700000003,5.30666712919871,0.33200999999999997,60.760985692342125,0.0036,4.984792311986287,32.52837,0,437.2127507527669,1470.26202,2523.249532063802,514.1572473599438,1470.0099690755208,507.28373319859406,0.18158804376920065,0.3601057499999999,0.009155899751931429,0.0062788884,0,0.0027088578,252.28399276733398,114.19098300000002,78.55176798502605,84.21975000000002,269.25801849365234,44.68601999999999,2.582980453968048,1.3201409699999997,14.437100092569986,0,6.383300185203552,17.6035275,0,0,0.7107010285059611,1.9388344799999997,0.06631589742998283,0.14757868199999996,498.75198109944654,11.491715681367895,72.68844743257846,105.34980624006015,17.57629368654588,20.205704585262716,-0.29158811506972226,62.95890235900879,2.8563900000000007,12589.89277426514,0,0,0.0024000000000000002,0.26537200063467026,0.016079999999999997,5.521849961951375e-4,0.0024300000000000003 +2206,6.40945824744663,0,0,-0,3.8476567326771787,7.66470996538798,0.05353333333333333,0.05373012709120909,0.07218933333333334,156.0540033976237,1.7653810826666665,6.765605012575786,0,5.29485007127126,0,6.8825100262959795,0.020114470640000003,5.18650750319163,0.324632,60.02318572998047,0.0035199999999999997,4.982162197430928,31.805517333333334,0,436.62975311279297,1437.5895306666666,2513.6495564778643,511.64700978920547,1472.459981282552,503.3966732865696,0.17810004328687987,0.3521033999999999,0.008956109639257193,0.006139357546666667,0,0.0026486609600000002,248.68799209594727,111.65340560000001,77.13257217407227,82.34820000000002,266.45801544189453,43.692997333333324,2.548160433769226,1.2908045039999998,14.365099986394247,0,6.25777022043864,17.212338,0,0,0.6969020316998163,1.895749269333333,0.06515599663058917,0.1442991557333333,499.05397796630854,11.475961572658097,72.53968617995864,104.18248023961942,17.324848110519024,20.076726946043806,-0.29158811506972226,63.05690256754557,2.7929146666666673,12337.085596161274,0,0,0.002346666666666667,0.26089199632406235,0.015722666666666663,5.29820991990467e-4,0.0023760000000000005 +2207,6.263788741822843,0,0,-0,3.798056957256713,7.666269977887471,0.052316666666666664,0.05143192627777656,0.07054866666666668,156.17100143432617,1.725258785333333,6.675784945487976,0,5.260539968808492,0,6.867389996846517,0.019657323580000004,5.069017648696899,0.317254,59.29408645629883,0.00344,4.9795522292455034,31.08266466666667,0,436.0497283935547,1404.9170413333331,2504.0795694986973,509.1367722184672,1474.8299865722656,499.50961337454504,0.174619040141503,0.3441010499999999,0.008758939880256852,0.005999826693333333,0,0.00258846412,245.0949935913086,109.11582820000002,75.71647707621257,80.47665000000002,263.6480127970378,42.69997466666666,2.5133604208628335,1.2614680379999998,14.29330007235209,0,6.132480223973592,16.8211485,0,0,0.6831300208965937,1.8526640586666665,0.0639975977440675,0.14101962946666663,499.35097757975257,11.460207463948297,72.39092492733883,103.0151542391787,17.07340253449217,19.9477493068249,-0.29158811506972226,63.15230147043864,2.729439333333334,12084.278418057409,0,0,0.0022933333333333334,0.2564860035975774,0.015365333333333332,5.083599971840158e-4,0.0023220000000000003 +2208,6.118119236199057,0,0,-0,3.7484571818362475,7.667790015538533,0.05109999999999999,0.04923172481358051,0.068908,156.2860018412272,1.6851364879999997,6.58714485168457,0,5.226449966430664,0,6.852300047874451,0.01920017652,4.954148014386495,0.30987599999999993,58.573686599731445,0.0033599999999999997,4.976972182591756,30.359812,0,435.4727325439453,1372.2445519999999,2494.5195719401036,506.6265346477288,1477.1399637858074,495.6225534625205,0.171144038438797,0.33609869999999986,0.008564249922831854,0.00586029584,0,0.00252826728,241.5039939880371,106.57825080000002,74.30338096618652,78.60510000000002,260.82801818847656,41.706951999999994,2.478590428829193,1.2321315719999997,14.22189998626709,0,6.0074102481206255,16.429958999999997,0,0,0.6693820208311081,1.8095788479999997,0.06284079793840647,0.13774010319999996,499.6409784952799,11.4444533552385,72.24216367471901,101.84782823873797,16.821956958465318,19.818771667605994,-0.29158811506972226,63.24500242869059,2.6659640000000007,11831.471239953542,0,0,0.0022400000000000002,0.25215499848127365,0.015007999999999997,4.8776499897940084e-4,0.0022680000000000005 +2209,5.97244973057527,0,0,-0,3.6988574064157818,7.669250011444092,0.04988333333333333,0.04712532367557287,0.06726733333333333,156.39800008138022,1.6450141906666662,6.499654769897461,0,5.1925801038742065,0,6.837240020434062,0.01874302946,4.84181825319926,0.30249799999999993,57.861887296040855,0.00328,4.974402189254761,29.636959333333337,0,434.89672088623047,1339.5720626666664,2484.989562988281,504.1162970769905,1479.3899637858074,491.735493550496,0.1676770361761252,0.32809634999999987,0.008374249873061975,0.0057207649866666665,0,0.0024680704399999997,237.91499201456705,104.04067340000003,72.89318339029948,76.73355000000002,257.9960199991862,40.713929333333326,2.443860431512197,1.2027951059999997,14.150800069173178,0,5.882580280303955,16.038769499999997,0,0,0.6556590348482132,1.766493637333333,0.06168699792275826,0.1344605769333333,499.9259770711262,11.4286992465287,72.0934024220992,100.68050223829725,16.570511382438465,19.689794028387084,-0.29158811506972226,63.33510080973307,2.6024886666666673,11578.664061849675,0,0,0.0021866666666666666,0.24789499988158545,0.014650666666666664,4.6799999836366624e-4,0.0022140000000000003 +2210,5.826780224951483,0,0,-0,3.649257630995316,7.670659939448039,0.048666666666666664,0.04510882248481115,0.06562666666666667,156.50799942016602,1.604891893333333,6.413314779599507,0,5.158920009930928,0,6.822210033734639,0.0182858824,4.731978456179301,0.29511999999999994,57.15848731994629,0.0031999999999999997,4.971852103869121,28.91410666666667,0,434.32471720377606,1306.8995733333331,2475.469604492187,501.6060595062522,1481.5599772135417,487.8484336384715,0.16421503573656082,0.3200939999999999,0.0081886798919489,0.005581234133333333,0,0.0024078736,234.32899602254233,101.50309600000003,71.48608716328938,74.86200000000002,255.1550153096517,39.720906666666664,2.4091503818829856,1.1734586399999998,14.080000003178915,0,5.757980267206828,15.647579999999998,0,0,0.6419610331455866,1.7234084266666665,0.06053609742472569,0.13118105066666663,500.2049763997395,11.412945137818902,71.94464116947938,99.51317623785653,16.31906580641161,19.560816389168178,-0.29158811506972226,63.42260265350342,2.539013333333334,11325.85688374581,0,0,0.0021333333333333334,0.24370599910616875,0.014293333333333332,4.4903399975737557e-4,0.0021600000000000005 +2211,5.6811107193276955,0,0,-0,3.59965785557485,7.672019958496094,0.04745,0.04317832148323456,0.063986,156.61500295003256,1.5647695959999997,6.328104615211487,0,5.125470042228699,0,6.807210048039754,0.017828735340000002,4.624578833580017,0.28774199999999994,56.46358744303385,0.0031199999999999995,4.969332059224446,28.191254,0,433.7547124226888,1274.2270839999999,2465.979573567708,499.0958219355139,1483.6699829101562,483.96137372644694,0.1607600376009941,0.3120916499999999,0.008004919781039158,0.00544170328,0,0.00234767676,230.7449951171875,98.96551860000002,70.08179219563802,72.99045000000002,252.30501429239908,38.727883999999996,2.374480366706848,1.1441221739999998,14.00950002670288,0,5.6335902611414594,15.256390499999998,0,0,0.6282880157232285,1.680323216,0.0593865979462862,0.12790152439999997,500.47898101806635,11.397191029109104,71.79587991685956,98.3458502374158,16.067620230384758,19.43183874994927,-0.29158811506972226,63.507500648498535,2.4755380000000007,11073.049705641943,0,0,0.0020800000000000003,0.23958799863855043,0.013935999999999999,4.308339994167909e-4,0.0021060000000000002 +2212,5.535441213703908,0,0,-0,3.5500580801543844,7.673319896062215,0.046233333333333335,0.04133022017776966,0.06234533333333333,156.71900049845377,1.5246472986666662,6.2439945936203,0,5.092230041821797,0,6.792239983876546,0.017371588280000003,4.519589106241862,0.28036399999999995,55.776987393697105,0.0030399999999999997,4.966822028160095,27.468401333333336,0,433.1866989135742,1241.5545946666664,2456.499572753906,496.5855843647756,1485.719991048177,480.0743138144224,0.1573090354601542,0.3040892999999999,0.007825229743806025,0.005302172426666666,0,0.00228747992,227.16399256388345,96.42794120000003,68.6802978515625,71.11890000000002,249.4440129597982,37.73486133333333,2.3398403922716775,1.1147857079999999,13.939299980799357,0,5.509420235951741,14.865200999999999,0,0,0.6146400173505148,1.6372380053333333,0.058239997985462345,0.1246219981333333,500.7459818522135,11.381436920399304,71.64711866423976,97.17852423697508,15.816174654357905,19.302861110730362,-0.29158811506972226,63.58980178833008,2.4120626666666674,10820.242527538077,0,0,0.0020266666666666666,0.23553799962004027,0.013578666666666666,4.1336800253096345e-4,0.0020520000000000004 +2213,5.389771708080121,0,0,-0,3.500458304733919,7.674570004145305,0.04501666666666666,0.03956092055886984,0.060704666666666664,156.82000223795572,1.4845250013333329,6.160994529724121,0,5.059190034866333,0,6.777300000190735,0.016914441220000003,4.416939377784729,0.27298599999999995,55.09848817189535,0.0029599999999999995,4.964332024256389,26.745548666666668,0,432.62169138590497,1208.8821053333331,2447.039571126302,494.0753467940373,1487.6899922688801,476.1872539023979,0.15386503438154855,0.2960869499999999,0.007649369809466104,0.005162641573333334,0,0.0022272830799999997,223.58599344889322,93.89036380000003,67.28160031636556,69.24735000000001,246.57501220703125,36.741838666666666,2.3052403926849365,1.0854492419999997,13.869499921798706,0,5.385470191637675,14.4740115,0,0,0.6010120163361231,1.5941527946666665,0.057096097618341446,0.12134247186666663,501.00798034667963,11.365682811689506,71.49835741161993,96.01119823653436,15.564729078331052,19.173883471511456,-0.29158811506972226,63.669500986735024,2.348587333333334,10567.43534943421,0,0,0.0019733333333333334,0.23155500118931135,0.013221333333333331,3.9660899589459103e-4,0.001998 +2214,5.244102202456334,0,0,-0,3.4508585293134533,7.675769925117493,0.0438,0.03786721918731928,0.05906399999999999,156.91899998982748,1.4444027039999994,6.079084515571594,0,5.02636996905009,0,6.762390057245891,0.016457294160000004,4.316569526990254,0.26560799999999996,54.42818737030029,0.0028799999999999997,4.961861968040466,26.022696000000003,0,432.0586929321289,1176.2096159999996,2437.5995483398433,491.565109223299,1489.5999959309895,472.3001939903734,0.15042603264252344,0.2880845999999999,0.0074747698769594235,0.0050231107200000005,0,0.00216708624,220.0119972229004,91.35278640000004,65.88570404052734,67.37580000000001,243.6980120340983,35.748816,2.2706703543663025,1.0561127759999998,13.79990005493164,0,5.261720220247905,14.082822,0,0,0.5874080260594686,1.5510675839999999,0.05595359827081362,0.11806294559999997,501.2649790445963,11.349928702979707,71.34959615900013,94.84387223609363,15.313283502304198,19.044905832292546,-0.29158811506972226,63.7466017405192,2.2851120000000007,10314.628171330343,0,0,0.00192,0.22763999799887338,0.012863999999999999,3.8052600090547156e-4,0.0019440000000000002 +2215,5.098432696832547,0,0,-0,3.4012587538929875,7.6769200166066485,0.042583333333333334,0.03624581762899955,0.057423333333333326,157.0140012105306,1.404280406666666,5.998244404792786,0,4.993750015894572,0,6.747510035832723,0.016000147100000004,4.218449751536052,0.25822999999999996,53.76588789621989,0.0027999999999999995,4.959412058194478,25.299843333333335,0,431.49767812093097,1143.5371266666664,2428.1795857747393,489.0548716525607,1491.4399820963542,468.41313407834883,0.14699303234616914,0.2800822499999999,0.007301379887697597,0.004883579866666667,0,0.0021068894,216.43999481201172,88.81520900000004,64.49240716298421,65.50425000000001,240.8110148111979,34.75579333333333,2.2361403107643127,1.0267763099999998,13.730699936548868,0,5.138180216153462,13.6916325,0,0,0.5738270084063212,1.5079823733333333,0.05481239749739567,0.1147834193333333,501.5159810384114,11.334174594269909,71.20083490638031,93.6765462356529,15.061837926277345,18.91592819307364,-0.29158811506972226,63.82100137074789,2.2216366666666674,10061.820993226476,0,0,0.0018666666666666666,0.22378999988238016,0.012506666666666666,3.650940003960083e-4,0.0018900000000000002 +2216,4.95276319120876,0,0,-0,3.3516589784725217,7.6780199607213335,0.04136666666666667,0.034693717335661255,0.05578266666666666,157.10799916585287,1.3641581093333328,5.91845428943634,0,4.961340030034383,0,6.732660015424092,0.015543000040000005,4.122520009676616,0.25085199999999996,53.11158720652262,0.0027199999999999993,4.9569820165634155,24.576990666666667,0,430.93968200683594,1110.8646373333331,2418.779561360677,486.5446340818224,1493.219970703125,464.5260741663243,0.14356603100895882,0.27207989999999993,0.0071314698628460365,0.004744049013333334,0,0.00204669256,212.87099583943686,86.27763160000003,63.10181109110514,63.632700000000014,237.91701126098633,33.76277066666666,2.201650341351827,0.9974398439999999,13.661799907684326,0,5.014830231666565,13.300443000000001,0,0,0.5602670212586721,1.4648971626666667,0.05367389755944411,0.11150389306666664,501.761983235677,11.318420485560111,71.05207365376049,92.50922023521218,14.810392350250494,18.786950553854734,-0.29158811506972226,63.89290110270182,2.158161333333334,9809.013815122611,0,0,0.0018133333333333332,0.22000399976968765,0.012149333333333333,3.502850037572595e-4,0.0018360000000000002 +2217,4.807093685584973,0,0,-0,3.302059203052056,7.679060022036235,0.040150000000000005,0.03320781669269005,0.05414199999999999,157.1980005900065,1.3240358119999993,5.8397243420283,0,4.929129958152771,0,6.717840035756429,0.015085852980000005,4.02873017390569,0.24347399999999997,52.46498807271322,0.0026399999999999996,4.954572081565857,23.854138000000003,0,430.3826675415039,1078.1921479999996,2409.389567057291,484.0343965110841,1494.9199930826824,460.63901425429975,0.14014202977220216,0.26407754999999994,0.006964849929014842,0.004604518160000001,0,0.00198649572,209.30599466959634,83.74005420000005,61.71381409962972,61.76115000000001,235.015012105306,32.76974799999999,2.1671902934710183,0.9681033779999998,13.593200047810873,0,4.891680200894673,12.909253500000002,0,0,0.5467280149459839,1.421811952,0.05253799818456173,0.10822436679999997,502.00198364257807,11.302666376850311,70.90331240114068,91.34189423477146,14.55894677422364,18.657972914635824,-0.29158811506972226,63.96210257212321,2.0946860000000007,9556.206637018744,0,0,0.0017599999999999998,0.21628200138608614,0.011792,3.360760019859299e-4,0.0017820000000000002 +2218,4.661424179961186,0,0,-0,3.2524594276315906,7.680050015449524,0.038933333333333334,0.03178541595116258,0.052501333333333323,157.28600438435873,1.283913514666666,5.7620242436726885,0,4.897129972775777,0,6.703060030937195,0.014628705920000006,3.9370404283205667,0.23609599999999997,51.8262882232666,0.0025599999999999993,4.9521719217300415,23.131285333333334,0,429.8286641438802,1045.5196586666664,2400.019551595052,481.52415894034573,1496.5599873860676,456.75195434227527,0.13672402873635292,0.25607519999999995,0.006798979826271534,0.004464987306666668,0,0.00192629888,205.74399439493814,81.20247680000004,60.32831732432047,59.88960000000001,232.1050148010254,31.776725333333328,2.1327703396479287,0.9387669119999998,13.524800062179565,0,4.768730203310649,12.518064000000003,0,0,0.5332110126813253,1.3787267413333333,0.051403398315111794,0.1049448405333333,502.2369817097981,11.286912268140513,70.75455114852086,90.17456823433074,14.307501198196787,18.528995275416918,-0.29158811506972226,64.02869987487793,2.0312106666666674,9303.399458914877,0,0,0.0017066666666666667,0.21262199928363165,0.011434666666666666,3.2244099808546406e-4,0.001728 +2219,4.515754674337399,0,0,-0,3.202859652211125,7.68098000685374,0.03771666666666667,0.03042381505171458,0.05086066666666665,157.37100092569986,1.2437912173333325,5.685334165891011,0,4.86532998085022,0,6.688299973805745,0.014171558860000006,3.847400665283203,0.22871799999999998,51.195188204447426,0.0024799999999999996,4.94979194800059,22.40843266666667,0,429.27665456136066,1012.8471693333329,2390.6595662434893,479.01392136960743,1498.1399943033855,452.86489443025073,0.13331202790141106,0.24807284999999996,0.006636169855482876,0.0043254564533333345,0,0.00186610204,202.18499628702799,78.66489940000005,58.94532044728597,58.01805,229.1880111694336,30.783702666666663,2.098390301068624,0.9094304459999998,13.456799983978271,0,4.645960211753845,12.126874500000003,0,0,0.5197150111198425,1.3356415306666667,0.050271298425892987,0.10166531426666664,502.46697743733716,11.271158159430714,70.60578989590105,89.00724223389001,14.056055622169934,18.400017636198008,-0.29158811506972226,64.09280204772949,1.967735333333334,9050.592280811012,0,0,0.0016533333333333333,0.2090230012933413,0.011077333333333333,3.093570000298011e-4,0.001674 +2220,4.3700851687136115,0,0,-0,3.153259876790659,7.681869983673096,0.036500000000000005,0.02912041467304031,0.049219999999999986,157.45299784342447,1.2036689199999993,5.60966416200002,0,4.8337299426396685,0,6.673569957415263,0.013714411800000006,3.7597808639208474,0.22133999999999998,50.57158883412679,0.0023999999999999994,4.947431882222493,21.68558,0,428.72764587402344,980.1746799999996,2381.3195800781245,476.50368379886913,1499.6399841308594,448.9778345182262,0.12990502764781317,0.24007049999999996,0.006476239805730681,0.004185925600000001,0,0.0018059052,198.6309954325358,76.12732200000005,57.564724604288735,56.1465,226.26401011149088,29.790679999999995,2.064050257205963,0.8800939799999998,13.389100074768066,0,4.523380080858867,11.735685000000004,0,0,0.5062400251626968,1.29255632,0.04914179816842079,0.09838578799999997,502.69097646077466,11.255404050720916,70.45702864328123,87.83991623344929,13.80461004614308,18.271039996979102,-0.29158811506972226,64.15420055389404,1.9042600000000007,8797.785102707145,0,0,0.0015999999999999999,0.20548399910330772,0.01072,2.968029972786705e-4,0.00162 +2221,4.224415663089824,0,0,-0,3.103660101370193,7.682699998219808,0.03528333333333333,0.027872714214026928,0.04757933333333332,157.5330022176107,1.163546622666666,5.5349840720494585,0,4.802330056826274,0,6.658879995346069,0.013257264740000007,3.6741210420926413,0.21396199999999999,49.95558834075928,0.002319999999999999,4.945091923077901,20.962727333333333,0,428.17964426676434,947.5021906666663,2371.999532063802,473.99344622813084,1501.0799763997395,445.09077460620165,0.12650302611291409,0.23206814999999995,0.0063166798402865725,0.004046394746666668,0,0.00174570836,195.0789934794108,73.58974460000005,56.18652820587158,54.274950000000004,223.33301289876303,28.79765733333333,2.029740273952484,0.8507575139999999,13.321700096130371,0,4.400980154673259,11.344495500000004,0,0,0.4927830174565315,1.2494711093333333,0.048013298151393734,0.09510626173333331,502.9099782307942,11.239649942011116,70.30826739066141,86.67259023300856,13.553164470116227,18.142062357760196,-0.29158811506972226,64.21300061543782,1.8407846666666674,8544.977924603278,0,0,0.0015466666666666667,0.20200500016411146,0.010362666666666666,2.8475699946284294e-4,0.001566 +2222,4.078746157466037,0,0,-0,3.0540603259497274,7.6834800243377686,0.03406666666666667,0.026678313345958788,0.045938666666666655,157.61000188191733,1.1234243253333327,5.461284001668294,0,4.771130005518596,0,6.644210020701091,0.012800117680000006,3.5903712709744773,0.206584,49.34688822428385,0.0022399999999999994,4.942761937777202,20.23987466666667,0,427.6336390177409,914.8297013333329,2362.689575195312,471.48320865739254,1502.4499816894531,441.2037146941771,0.12310702602068584,0.22406579999999993,0.006157489842735231,0.003906863893333334,0,0.0016855115199999999,191.53099568684897,71.05216720000004,54.810730934143066,52.403400000000005,220.3960100809733,27.804634666666665,1.9954702655474346,0.8214210479999998,13.254700104395548,0,4.27875022093455,10.953306000000003,0,0,0.4793470154205958,1.2063858986666667,0.046885898957649864,0.09182673546666664,503.12397766113276,11.223895833301318,70.1595061380416,85.50526423256784,13.301718894089374,18.013084718541286,-0.29158811506972226,64.26920064290364,1.7773093333333343,8292.170746499412,0,0,0.0014933333333333333,0.19858500237266222,0.010005333333333333,2.731990025495179e-4,0.0015119999999999999 +2223,3.9330766518422506,0,0,-0,3.004460550529262,7.684199968973796,0.03285,0.025535112867752712,0.04429799999999999,157.68400192260742,1.0833020279999994,5.388553977012634,0,4.740119973818461,0,6.629579981168111,0.012342970620000006,3.508511463801066,0.199206,48.74558893839518,0.002159999999999999,4.940451820691426,19.517022,0,427.0896301269531,882.1572119999996,2353.389567057291,468.97297108665424,1503.7599792480469,437.3166547821526,0.11971502440671127,0.21606344999999993,0.006000989815220237,0.003767333040000001,0,0.00162531468,187.98699569702148,68.51458980000004,53.43723392486572,50.531850000000006,217.4520123799642,26.811611999999997,1.961250255505244,0.7920845819999999,13.187899986902872,0,4.156700174013774,10.562116500000004,0,0,0.46592901398738223,1.1633006879999999,0.0457608982299765,0.08854720919999998,503.33297983805335,11.20814172459152,70.01074488542179,84.33793823212712,13.050273318062521,17.88410707932238,-0.29158811506972226,64.32280095418294,1.713834000000001,8039.363568395546,0,0,0.00144,0.19522200028101602,0.009647999999999999,2.621080032743824e-4,0.0014579999999999997 +2224,3.787407146218464,0,0,-0,2.9548607751087963,7.684879978497823,0.03163333333333333,0.02444071260591348,0.042657333333333325,157.75500106811523,1.0431797306666661,5.316783905029297,0,4.709320028622945,0,6.614969968795776,0.011885823560000005,3.4285016457239785,0.191828,48.15148893992106,0.0020799999999999994,4.938151876131694,18.794169333333336,0,426.5486246744792,849.4847226666662,2344.1095581054683,466.46273351591594,1504.9900004069011,433.4295948701281,0.11632602413495381,0.20806109999999992,0.005847039865329862,0.0036278021866666676,0,0.0015651178399999999,184.4469960530599,65.97701240000004,52.06603686014811,48.66030000000001,214.5030059814453,25.818589333333332,1.9270602564016979,0.7627481159999998,13.121400038401285,0,4.034820159276326,10.170927000000002,0,0,0.45253101736307144,1.1202154773333333,0.04463839841385683,0.08526768293333331,503.5369847615559,11.19238761588172,69.86198363280197,83.17061223168639,12.798827742035668,17.75512944010347,-0.29158811506972226,64.37380027770996,1.6503586666666679,7786.55639029168,0,0,0.0013866666666666667,0.19191499799489975,0.009290666666666666,2.514670001498113e-4,0.0014039999999999996 +2225,3.641737640594677,0,0,-0,2.9052609996883305,7.685499906539917,0.03041666666666666,0.023393111769109964,0.04101666666666666,157.8240000406901,1.0030574333333329,5.245963891347249,0,4.678709983825684,0,6.600399931271871,0.011428676500000005,3.3502918680508933,0.18445,47.564589500427246,0.001999999999999999,4.935871839523315,18.071316666666668,0,426.0086212158203,816.8122333333329,2334.8495890299473,463.9524959451776,1506.1599934895833,429.54253495810354,0.11294202382365863,0.2000587499999999,0.005693129884699981,0.0034882713333333343,0,0.0015049209999999998,180.90999348958334,63.43943500000003,50.69704023996989,46.78875000000001,211.5470085144043,24.825566666666667,1.8929102619489033,0.7334116499999999,13.055200020472208,0,3.9131001830101013,9.779737500000003,0,0,0.4391520122687022,1.0771302666666664,0.04351679918666681,0.08198815666666665,503.7359822591145,11.176633507171921,69.71322238018215,82.00328623124567,12.547382166008813,17.626151800884564,-0.29158811506972226,64.42220052083333,1.5868833333333345,7533.749212187813,0,0,0.0013333333333333335,0.18866400172313055,0.008933333333333331,2.412570005011124e-4,0.0013499999999999996 +2226,3.4960681349708898,0,0,-0,2.8556612242678647,7.686069965362549,0.029199999999999993,0.022390311118215322,0.039375999999999994,157.88999938964844,0.9629351359999996,5.176073789596558,0,4.648290038108826,0,6.585850079854329,0.010971529440000006,3.273852050304413,0.177072,46.98478921254476,0.0019199999999999992,4.933611869812012,17.348464,0,425.47061920166016,784.1397439999995,2325.5895792643223,461.4422583744393,1507.259989420573,425.655475046079,0.10956302161018054,0.19205639999999988,0.005541619883539776,0.003348740480000001,0,0.0014447241599999997,177.37699762980142,60.90185760000003,49.3302427927653,44.91720000000001,208.58600997924805,23.832544000000002,1.858800232410431,0.7040751839999999,12.989300012588501,0,3.791560153166453,9.388548000000004,0,0,0.4257890159885089,1.0340450559999996,0.04239759842554728,0.07870863039999998,503.92998504638666,11.160879398462123,69.56446112756234,80.83596023080494,12.29593658998196,17.497174161665658,-0.29158811506972226,64.46800104777019,1.5234080000000012,7280.942034083948,0,0,0.0012800000000000003,0.18546700105071068,0.008575999999999997,2.3146000118382895e-4,0.0012959999999999996 +2227,3.350398629347103,0,0,-0,2.806061448847399,7.686590035756429,0.027983333333333325,0.02143051087235411,0.03773533333333333,157.953000386556,0.9228128386666663,5.107103784879048,0,4.618070085843404,0,6.571340004603068,0.010514382380000005,3.199132223924001,0.169694,46.41189002990723,0.0018399999999999992,4.931361754735311,16.625611333333335,0,424.93460845947266,751.4672546666661,2316.3595784505205,458.932020803701,1508.2999979654949,421.76841513405446,0.10618902121980985,0.18405404999999986,0.005392379903544982,0.0032092096266666675,0,0.0013845273199999996,173.84799448649088,58.364280200000024,47.965545972188316,43.04565000000001,205.62001037597656,22.839521333333337,1.8247302174568176,0.6747387179999998,12.923799991607666,0,3.6701701283454895,8.997358500000002,0,0,0.4124450162053108,0.990959845333333,0.04128069834162792,0.07542910413333331,504.1179835001627,11.145125289752325,69.41569987494252,79.66863423036422,12.044491013955106,17.36819652244675,-0.29158811506972226,64.51120122273763,1.459932666666668,7028.134855980081,0,0,0.001226666666666667,0.1823250005642573,0.008218666666666664,2.220599963038694e-4,0.0012419999999999996 +2228,3.204729123723316,0,0,-0,2.7564616734269336,7.687049984931946,0.026766666666666654,0.020511710395415623,0.036094666666666664,158.0140012105306,0.882690541333333,5.039043704668681,0,4.588039954503377,0,6.556859970092773,0.010057235320000005,3.126102387905121,0.16231600000000002,45.845889727274574,0.001759999999999999,4.929121772448222,15.902758666666667,0,424.40060170491535,718.7947653333329,2307.129557291666,456.4217832329627,1509.269999186198,417.88135522203,0.1028200201690197,0.17605169999999987,0.005242919937397043,0.003069678773333334,0,0.0013243304799999997,170.32199478149414,55.82670280000002,46.60294882456461,41.17410000000001,202.64800771077475,21.84649866666667,1.7907002369562786,0.6454022519999999,12.858499924341837,0,3.548940141995748,8.606169000000003,0,0,0.3991180161635081,0.9478746346666662,0.04016459888468186,0.07214957786666665,504.3019816080729,11.129371181042526,69.2669386223227,78.5013082299235,11.793045437928253,17.239218883227842,-0.29158811506972226,64.5518004099528,1.3964573333333348,6775.327677876215,0,0,0.0011733333333333337,0.17923500016331673,0.00786133333333333,2.1304199981386773e-4,0.0011879999999999994 +2229,3.0590596180995293,0,0,-0,2.706861898006468,7.68746002515157,0.025549999999999986,0.019632209713260334,0.034454,158.07199986775717,0.8425682439999997,4.971883654594421,0,4.558209975560506,0,6.542399962743123,0.009600088260000004,3.0547125736872354,0.15493800000000002,45.28678957621256,0.001679999999999999,4.926901698112488,15.179906,0,423.8676020304362,686.1222759999994,2297.91953531901,453.9115456622244,1510.1699727376301,413.99429531000544,0.09945451902846496,0.16804934999999982,0.005095619902325173,0.002930147920000001,0,0.0012641336399999994,166.80099614461264,53.28912540000002,45.24245103200277,39.30255000000001,199.67100779215494,20.853476000000004,1.756720205148061,0.6160657859999998,12.793499946594238,0,3.4278701146443686,8.214979500000002,0,0,0.38580701251824695,0.9047894239999995,0.03905079855273167,0.06887005159999998,504.48098500569654,11.113617072332726,69.11817736970289,77.33398222948277,11.5415998619014,17.110241244008932,-0.29158811506972226,64.58980051676433,1.3329820000000017,6522.520499772349,0,0,0.0011200000000000003,0.1761969986061255,0.007503999999999996,2.0438800129340962e-4,0.0011339999999999994 +2230,2.913390112475742,0,0,-0,2.657262122586002,7.687829971313477,0.024333333333333318,0.018790409434586763,0.03281333333333333,158.1270014444987,0.8024459466666665,4.905603567759196,0,4.528560042381287,0,6.527980009714763,0.009142941200000004,2.9849327206611633,0.14756000000000002,44.734389305114746,0.001599999999999999,4.924701730410258,14.457053333333334,0,423.3365936279297,653.4497866666661,2288.719563802083,451.4013080914861,1510.9999898274739,410.1072353979809,0.09609381854534149,0.16004699999999983,0.004950349917635322,0.0027906170666666674,0,0.0012039367999999995,163.28299713134766,50.751548000000014,43.88395436604818,37.43100000000001,196.69000879923502,19.86045333333334,1.7227701842784882,0.5867293199999999,12.72890011469523,0,3.3069501320521035,7.8237900000000025,0,0,0.37251301606496173,0.8617042133333328,0.037939099284509815,0.06559052533333332,504.6559804280598,11.097862963622928,68.96941611708307,76.16665622904205,11.290154285874547,16.981263604790026,-0.29158811506972226,64.62520027160645,1.2695066666666683,6269.713321668482,0,0,0.0010666666666666672,0.17320999999841055,0.007146666666666662,1.9608600026307008e-4,0.0010799999999999994 +2231,2.767720606851955,0,0,-0,2.6076623471655362,7.688129981358846,0.023116666666666653,0.017984609274814527,0.031172666666666664,158.1790008544922,0.7623236493333331,4.840213576952617,0,4.499110062917073,0,6.5135899384816485,0.008685794140000005,2.916722893714905,0.14018200000000003,44.188689867655434,0.001519999999999999,4.922511736551921,13.734200666666668,0,422.8075892130534,620.7772973333329,2279.5395507812495,448.8910705207478,1511.7699890136719,406.22017548595636,0.09273521726330121,0.15204464999999984,0.004804659828854104,0.002651086213333334,0,0.0011437399599999996,159.76899592081705,48.21397060000002,42.52755641937256,35.55945000000001,193.70300674438477,18.86743066666667,1.6888601779937744,0.5573928539999999,12.664499759674072,0,3.1861801544825235,7.432600500000002,0,0,0.3592350135246913,0.8186190026666662,0.03682809881865978,0.06231099906666665,504.82497914632154,11.082108854913129,68.82065486446325,74.99933022860132,11.038708709847693,16.85228596557112,-0.29158811506972226,64.65810139973958,1.206031333333335,6016.906143564616,0,0,0.0010133333333333338,0.17027399813135466,0.0067893333333333295,1.881199981047151e-4,0.0010259999999999994 +2232,2.6220511012281684,0,0,-0,2.5580625717450705,7.688389976819356,0.021899999999999985,0.017213408835232258,0.029531999999999996,158.2290013631185,0.7222013519999997,4.775673548380534,0,4.469840010007222,0,6.4992300271987915,0.008228647080000004,2.8500430385271707,0.132804,43.649590492248535,0.001439999999999999,4.920341690381368,13.011348000000002,0,422.28057861328125,588.1048079999995,2270.3595581054683,446.3808329500095,1512.4700012207031,402.3331155739319,0.08938091682891051,0.14404229999999987,0.0046585598805298405,0.0025115553600000007,0,0.0010835431199999995,156.2599957784017,45.67639320000002,41.172959645589195,33.68790000000001,190.71300633748373,17.874408000000006,1.6549901763598125,0.5280563879999999,12.60039989153544,0,3.0655500888824463,7.041411000000002,0,0,0.34597500910361606,0.7755337919999995,0.03571789960066477,0.059031472799999984,504.9899826049804,11.06635474620333,68.67189361184344,73.8320042281606,10.78726313382084,16.72330832635221,-0.29158811506972226,64.68830172220866,1.1425560000000015,5764.098965460749,0,0,9.600000000000005e-4,0.16738699997464815,0.006431999999999996,1.8047699995804578e-4,9.719999999999994e-4 +2233,2.4763815956043813,0,0,-0,2.508462796324605,7.688589930534363,0.02068333333333332,0.016475108296920855,0.02789133333333333,158.2760009765625,0.6820790546666664,4.712003509203593,0,4.440760016441345,0,6.4848999579747515,0.007771500020000004,2.7848732074101767,0.125426,43.11708958943685,0.0013599999999999988,4.918171644210815,12.288495333333334,0,421.7555796305339,555.4323186666662,2261.199544270833,443.87059537927115,1513.0999959309895,398.44605566190734,0.08603101658324401,0.13603994999999988,0.004514459947434564,0.0023720245066666673,0,0.0010233462799999996,152.75399907430014,43.13881580000002,39.82036209106445,31.816350000000014,187.7180061340332,16.881385333333338,1.6211601595083873,0.4987199219999999,12.53659995396932,0,2.9450801412264505,6.6502215000000025,0,0,0.33273101101318997,0.7324485813333329,0.03460979927331209,0.05575194653333332,505.14998372395826,11.050600637493531,68.52313235922362,72.66467822771988,10.535817557793987,16.594330687133304,-0.29158811506972226,64.71590042114258,1.0790806666666681,5511.291787356882,0,0,9.066666666666671e-4,0.16454900056123734,0.006074666666666663,1.7314400126148635e-4,9.179999999999994e-4 +2234,2.3307120899805946,0,0,-0,2.4588630209041393,7.688740015029907,0.019466666666666653,0.015768507961183786,0.026250666666666662,158.31999969482422,0.641956757333333,4.649163405100505,0,4.41186002890269,0,6.470599929491679,0.007314352960000004,2.721173365910848,0.118048,42.5908899307251,0.0012799999999999988,4.91603155930837,11.565642666666667,0,421.23156992594403,522.7598293333328,2252.049580891927,441.36035780853285,1513.6699930826824,394.55899574988285,0.08268531411886215,0.12803759999999992,0.004372219981936117,0.002232493653333334,0,9.631494399999996e-4,149.2509969075521,40.60123840000002,38.46956411997477,29.944800000000015,184.71900685628256,15.888362666666671,1.5873801708221436,0.4693834559999999,12.473100105921427,0,2.8247401316960654,6.259032000000002,0,0,0.31950000921885174,0.6893633706666662,0.03350389904032151,0.05247242026666665,505.30498250325513,11.034846528783733,68.37437110660382,71.49735222727915,10.284371981767134,16.465353047914395,-0.29158811506972226,64.74089940388997,1.0156053333333346,5258.484609253016,0,0,8.533333333333338e-4,0.16175800065199533,0.0057173333333333295,1.6610900032295225e-4,8.639999999999995e-4 +2235,2.1850425843568075,0,0,-0,2.4092632454836735,7.688829978307088,0.01824999999999999,0.015092207584530115,0.024609999999999993,158.36199951171875,0.6018344599999996,4.58716340859731,0,4.383150100708008,0,6.456329941749573,0.006857205900000003,2.6588935256004333,0.11066999999999999,42.07119051615397,0.0011999999999999988,4.913891553878784,10.84279,0,420.7095692952474,490.0873399999996,2242.909545898437,438.85012023779456,1514.1700032552083,390.6719358378583,0.07934361385802428,0.12003524999999993,0.004229399880083899,0.0020929628000000006,0,9.029525999999996e-4,145.75299708048502,38.063661000000025,37.120667139689125,28.073250000000016,181.71600468953451,14.895340000000004,1.553630143404007,0.4400469899999999,12.409900108973185,0,2.7045401136080423,5.867842500000002,0,0,0.30628500630458194,0.6462781599999996,0.0323984989275535,0.04919289399999999,505.45598093668616,11.019092420073934,68.225609853984,70.33002622683843,10.03292640574028,16.33637540869549,-0.29158811506972226,64.76340103149414,0.9521300000000013,5005.67743114915,0,0,8.000000000000004e-4,0.1590149998664856,0.005359999999999997,1.593589986441657e-4,8.099999999999995e-4 +2236,2.039373078733021,0,0,-0,2.3596634700632078,7.68887996673584,0.017033333333333324,0.014444807389130196,0.022969333333333328,158.40100224812826,0.5617121626666662,4.525973359743754,0,4.354630033175151,0,6.442090034484863,0.006400058840000004,2.59804368019104,0.103292,41.55769062042236,0.0011199999999999988,4.911771655082703,10.119937333333334,0,420.1885681152344,457.4148506666663,2233.789571126302,436.33988266705626,1514.6000061035156,386.7848759258338,0.07600591331720352,0.11203289999999995,0.004088399892983337,0.001953431946666667,0,8.427557599999997e-4,142.25899505615234,35.52608360000003,35.77366924285889,26.201700000000017,178.7100067138672,13.902317333333338,1.519920140504837,0.41071052399999997,12.346999883651733,0,2.5844800670941672,5.476653000000002,0,0,0.2930860072374344,0.603192949333333,0.031295199412852526,0.04591336773333332,505.60198211669916,11.003338311364134,68.07684860136418,69.1627002263977,9.781480829713425,16.207397769476582,-0.29158811506972226,64.78320058186848,0.8886546666666679,4752.870253045283,0,0,7.46666666666667e-4,0.15631799896558127,0.005002666666666664,1.5288299740253328e-4,7.559999999999995e-4 +2237,1.893703573109234,0,0,-0,2.310063694642742,7.688869953155518,0.01581666666666666,0.013825106900185347,0.021328666666666656,158.4370002746582,0.5215898653333328,4.465603311856587,0,4.326289971669515,0,6.427879969278972,0.0059429117800000025,2.538583815097809,0.09591399999999997,41.050390561421715,0.0010399999999999988,4.909661650657654,9.397084666666668,0,419.6695607503255,424.74236133333295,2224.6696166992183,433.82964509631796,1514.9700012207031,382.8978160138093,0.07267201195160548,0.10403054999999997,0.00394908986830463,0.0018139010933333338,0,7.825589199999996e-4,138.76899846394858,32.98850620000003,34.42827129364014,24.330150000000017,175.70000330607095,12.909294666666671,1.4862601359685261,0.3813740579999999,12.28440006573995,0,2.4645500977834067,5.085463500000001,0,0,0.27990201115608215,0.5601077386666664,0.030193899447719257,0.042633841466666655,505.7429809570312,10.987584202654336,67.92808734874437,67.99537422595698,9.530035253686572,16.078420130257673,-0.29158811506972226,64.80040168762207,0.8251793333333344,4500.063074941416,0,0,6.933333333333337e-4,0.15366699919104576,0.004645333333333331,1.4667000020078072e-4,7.019999999999996e-4 +2238,1.7480340674854469,0,0,-0,2.2604639192222766,7.688809951146443,0.01459999999999999,0.013232006691396236,0.01968799999999999,158.47100067138672,0.4814675679999995,4.406033317248027,0,4.298129955927531,0,6.413699984550476,0.005485764720000003,2.4804539481798806,0.08853599999999998,40.54929065704346,9.599999999999986e-4,4.907561580340068,8.674232,0,419.1525522867839,392.06987199999963,2215.5695597330723,431.3194075255796,1515.2699890136719,379.01075610178475,0.06933960939447086,0.09602819999999998,0.003809039966048052,0.0016743702400000005,0,7.223620799999997e-4,135.28199768066406,30.450928800000028,33.084774335225426,22.45860000000002,172.68600463867188,11.916272000000003,1.4526301225026448,0.35203759199999995,12.222100098927816,0,2.344750086466471,4.694274000000002,0,0,0.26673200726509094,0.5170225279999996,0.02909319909910361,0.03935431519999999,505.88098144531244,10.971830093944536,67.77932609612455,66.82804822551626,9.278589677659719,15.949442491038766,-0.29158811506972226,64.81509971618652,0.7617040000000009,4247.25589683755,0,0,6.400000000000003e-4,0.15106000130375227,0.004287999999999997,1.4070899972769743e-4,6.479999999999996e-4 +2239,1.60236456186166,0,0,-0,2.210864143801811,7.688690026601155,0.013383333333333325,0.012664406405140957,0.018047333333333318,158.5009994506836,0.4413452706666661,4.347253163655599,0,4.2701499462127686,0,6.399550000826518,0.0050286176600000025,2.423634111881256,0.08115799999999997,40.054291089375816,8.799999999999986e-4,4.9054815371831255,7.951379333333334,0,418.63655344645184,359.3973826666664,2206.469563802083,428.8091699548413,1515.4999898274739,375.12369618976027,0.06601121090352535,0.08802585,0.003668309946078807,0.001534839386666667,0,6.621652399999997e-4,131.7989985148112,27.913351400000032,31.742876211802166,20.58705000000002,169.66900507609049,10.923249333333336,1.4190401136875153,0.32270112599999995,12.160099903742472,0,2.225080053011576,4.303084500000001,0,0,0.25357500712076825,0.47393731733333305,0.02799289921919505,0.036074788933333324,506.01298014322913,10.956075985234738,67.63056484350474,65.66072222507553,9.027144101632866,15.820464851819859,-0.29158811506972226,64.82719993591309,0.6982286666666676,3994.448718733683,0,0,5.86666666666667e-4,0.14849700033664703,0.003930666666666664,1.349889971606899e-4,5.939999999999997e-4 +2240,1.456695056237873,0,0,-0,2.161264368381345,7.688530087471008,0.012166666666666659,0.012121006147935987,0.016406666666666653,158.52900187174478,0.4012229733333328,4.289253155390422,0,4.24235999584198,0,6.385430018107097,0.004571470600000002,2.368114193280538,0.07377999999999996,39.565290451049805,7.999999999999986e-4,4.903411507606506,7.228526666666667,0,418.12154897054035,326.72489333333306,2197.389526367187,426.298932384103,1515.6600036621094,371.2366362777357,0.0626866091042757,0.08002350000000003,0.003529289950771878,0.0013953085333333337,0,6.019683999999997e-4,128.32099787394205,25.375774000000035,30.40267848968506,18.71550000000002,166.6490046183268,9.93022666666667,1.3854901095231373,0.29336465999999994,12.098300059636435,0,2.1055400570233664,3.9118950000000012,0,0,0.2404320053756237,0.4308521066666664,0.026894699316471815,0.03279526266666666,506.1409810384114,10.940321876524939,67.48180359088492,64.49339622463481,8.775698525606012,15.69148721260095,-0.29158811506972226,64.83669853210449,0.6347533333333342,3741.6415406298165,0,0,5.333333333333336e-4,0.14597800249854723,0.003573333333333331,1.295020010729786e-4,5.399999999999997e-4 +2241,1.3110255506140858,0,0,-0,2.1116645929608793,7.688309987386067,0.010949999999999993,0.011601005913689733,0.014765999999999987,158.55500030517578,0.3611006759999995,4.232023239135742,0,4.214740037918091,0,6.371349930763245,0.004114323540000002,2.3138543168703714,0.06640199999999996,39.082191467285156,7.199999999999987e-4,4.901351571083069,6.505674000000001,0,417.6085459391276,294.05240399999974,2188.3195597330723,423.7886948133647,1515.7599995930989,367.3495763657112,0.05936560779809952,0.07202115000000002,0.0033918899522783854,0.0012557776800000003,0,5.417715599999997e-4,124.84599685668945,22.838196600000032,29.064181009928387,16.843950000000017,163.62700271606445,8.937204000000003,1.3519800901412964,0.26402819399999994,12.03689988454183,0,1.9861200451850891,3.520705500000001,0,0,0.2273040053745111,0.38776689599999975,0.025798399622241657,0.029515736399999992,506.2649815877278,10.924567767815141,67.3330423382651,63.32607022419408,8.524252949579159,15.562509573382043,-0.29158811506972226,64.8435001373291,0.5712780000000007,3488.83436252595,0,0,4.8000000000000023e-4,0.143500999857982,0.003215999999999998,1.242379997468864e-4,4.859999999999997e-4 +2242,1.1653560449902984,0,0,-0,2.0620648175404135,7.688040018081665,0.009733333333333326,0.011103205615654588,0.013125333333333322,158.57699966430664,0.32097837866666623,4.175543109575908,0,4.187299927075704,0,6.357289989789327,0.003657176480000002,2.2608144680658975,0.059023999999999965,38.60499127705892,6.399999999999989e-4,4.899301489194234,5.782821333333334,0,417.0965398152669,261.3799146666664,2179.249572753906,421.2784572426264,1515.7899983723958,363.46251645368665,0.056048307878275715,0.06401880000000001,0.003253649939627697,0.001116246826666667,0,4.815747199999998e-4,121.37499936421712,20.30061920000003,27.727283000946045,14.972400000000016,160.60100428263345,7.9441813333333355,1.3185100952784221,0.23469172799999996,11.97570006052653,0,1.866830050945282,3.129516000000001,0,0,0.21418900539477667,0.3446816853333331,0.024702499620616436,0.026236210133333326,506.3849792480468,10.908813659105341,67.1842810856453,62.15874422375336,8.272807373552306,15.433531934163137,-0.29158811506972226,64.84779993693034,0.5078026666666673,3236.0271844220833,0,0,4.266666666666669e-4,0.14106599862376848,0.0028586666666666647,1.1918800009880215e-4,4.3199999999999977e-4 +2243,1.019686539366511,0,0,-0,2.012465042119948,7.687720020612081,0.008516666666666662,0.010626805402959386,0.011484666666666657,158.59700139363608,0.28085608133333295,4.119823098182678,0,4.160039981206258,0,6.343259970347087,0.003200029420000002,2.208984593550364,0.05164599999999997,38.13359133402506,5.599999999999991e-4,4.897271354993184,5.059968666666667,0,416.58653513590497,228.70742533333316,2170.199523925781,418.76821967188806,1515.760009765625,359.57545654166216,0.052734406354526676,0.05601645000000002,0.003116999966247628,9.767159733333336e-4,0,4.2137787999999986e-4,117.9069995880127,17.763041800000025,26.39188512166341,13.100850000000015,157.57200368245444,6.951158666666669,1.2850800553957622,0.20535526199999998,11.91480008761088,0,1.7476400434970856,2.738326500000001,0,0,0.20108700171113014,0.3015964746666665,0.0236085996342202,0.02295668386666666,506.49998219807935,10.893059550395543,67.03551983302548,60.991418223312635,8.021361797525453,15.304554294944229,-0.29158811506972226,64.84960047403972,0.44432733333333396,2983.2200063182167,0,0,3.733333333333335e-4,0.1386719991763433,0.002501333333333332,1.1434299995016772e-4,3.7799999999999976e-4 +2244,0.8740170337427239,0,0,-0,1.9628652666994824,7.687339981396993,0.007299999999999995,0.01017080519037942,0.009843999999999992,158.61400095621744,0.24073378399999967,4.064842939376831,0,4.132949988047282,0,6.329270005226135,0.0027428823600000015,2.158334712187449,0.044267999999999974,37.66789150238037,4.7999999999999914e-4,4.895241379737854,4.337116,0,416.07752482096356,196.03493599999982,2161.159545898437,416.25798210114976,1515.6600036621094,355.6883966296376,0.04942390539993843,0.04801410000000001,0.002981829942048838,8.371851200000002e-4,0,3.6118103999999986e-4,114.44399897257487,15.225464400000021,25.05818732579549,11.229300000000013,154.54100545247397,5.958136000000001,1.2516900499661763,0.17601879599999998,11.854300022125244,0,1.6285800337791443,2.347137000000001,0,0,0.18799700339635214,0.2585112639999998,0.02251639977718393,0.019677157599999995,506.61098480224604,10.877305441685744,66.88675858040567,59.82409222287191,7.7699162214986,15.175576655725322,-0.29158811506972226,64.84869893391927,0.38085200000000047,2730.41282821435,0,0,3.2000000000000013e-4,0.13631900027394295,0.0021439999999999983,1.0969400015407398e-4,3.239999999999998e-4 +2245,0.7283475281189365,0,0,-0,1.9132654912790166,7.686920007069905,0.0060833333333333295,0.009734384870777527,0.008203333333333326,158.62900034586588,0.2006114866666664,4.010602970918019,0,4.106039961179097,0,6.315299987792969,0.002285735300000001,2.1088348428408303,0.03688999999999998,37.2078914642334,3.999999999999993e-4,4.893231471379598,3.6142633333333336,0,415.5705286661784,163.36244666666653,2152.1195678710933,413.74774453041147,1515.489990234375,351.8013367176131,0.046114504958192505,0.04001175000000001,0.0028457099882264933,6.976542666666669e-4,0,3.0098419999999987e-4,110.98399988810222,12.687887000000018,23.725889046986897,9.35775000000001,151.50700251261392,4.965113333333335,1.2183400392532349,0.14668232999999997,11.79390001296997,0,1.5096400380134583,1.9559475000000006,0,0,0.17492000137766203,0.2154260533333332,0.021424599767973024,0.01639763133333333,506.7169799804687,10.861551332975946,66.73799732778585,58.65676622243119,7.518470645471747,15.046599016506415,-0.29158811506972226,64.84520022074382,0.3173766666666671,2477.605650110484,0,0,2.666666666666668e-4,0.1340059998134772,0.0017866666666666656,1.052350004708084e-4,2.6999999999999984e-4 +2246,0.5826780224951492,0,0,-0,1.8636657158585508,7.686440070470174,0.004866666666666664,0.009316664654761553,0.006562666666666661,158.6410001118978,0.16048918933333312,3.957072913646698,0,4.079300006230672,0,6.301360011100769,0.0018285882400000011,2.060474952061971,0.029511999999999983,36.753491719563804,3.199999999999995e-4,4.891221324602763,2.8914106666666672,0,415.0635248819987,130.68995733333324,2143.0895792643223,411.23750695967317,1515.2500101725261,347.91427680558854,0.04280860380580028,0.032009400000000014,0.0027110699641828737,5.581234133333335e-4,0,2.4078735999999993e-4,107.5279992421468,10.150309600000014,22.395191351572674,7.486200000000009,148.47100194295248,3.972090666666668,1.1850200394789379,0.117345864,11.73390007019043,0,1.390800009171168,1.5647580000000008,0,0,0.16185600434740385,0.17234084266666655,0.020334600005298853,0.013118105066666663,506.8199844360351,10.845797224266148,66.58923607516603,57.48944022199047,7.267025069444894,14.917621377287507,-0.29158811506972226,64.83920097351074,0.2539013333333337,2224.798472006617,0,0,2.1333333333333344e-4,0.13173200065890947,0.0014293333333333324,7.610849267318069e-5,2.1599999999999988e-4 +2247,0.437008516871362,0,0,-0,1.8140659404380852,7.685900052388509,0.0036499999999999987,0.008916864637285471,0.004921999999999996,158.64999771118164,0.12036689199999984,3.904252906640371,0,4.052740057309468,0,6.287459969520569,0.0013714411800000007,2.013215104738871,0.022133999999999987,36.30459181467692,2.3999999999999965e-4,4.889231324195862,2.168558000000001,0,414.55851491292316,98.01746799999992,2134.0795491536455,408.72726938893487,1514.9499918619792,344.027216893564,0.0395061019808054,0.02400705000000001,0.0025778000126592815,4.185925600000001e-4,0,1.8059051999999993e-4,104.07599957784016,7.612732200000011,21.06589349110921,5.614650000000006,145.43300120035806,2.9790680000000016,1.1517500380674999,0.08800939799999999,11.674200057983398,0,1.272080014149348,1.1735685000000005,0,0,0.14880200227101645,0.12925563199999995,0.019246299906323355,0.009838578799999997,506.917978922526,10.830043115556348,66.44047482254622,56.32211422154975,7.015579493418041,14.7886437380686,-0.29158811506972226,64.83059946695964,0.19042600000000026,1971.9912939027508,0,0,1.600000000000001e-4,0.12949599822362265,0.0010719999999999996,0,1.6199999999999993e-4 +2248,0.29133901124757466,0,0,-0,1.7644661650176194,7.685319979985555,0.0024333333333333308,0.00853420429242154,0.0032813333333333305,158.65599950154623,0.08024459466666656,3.852142850557963,0,4.026350061098735,0,6.273579994837443,9.142941200000003e-4,1.9670251806577046,0.014755999999999991,35.861191749572754,1.5999999999999966e-4,4.887251377105713,1.4457053333333327,0,414.0555165608724,65.34497866666658,2125.0695597330723,406.2170318181965,1514.5799967447917,340.1401569815395,0.036206901694337525,0.016004699999999997,0.002443499998965611,2.7906170666666674e-4,0,1.2039367999999994e-4,100.62800025939941,5.075154800000007,19.738094965616863,3.7431000000000036,142.39299901326498,1.9860453333333332,1.118510017792384,0.05867293199999998,11.614700078964233,0,1.1534700095653534,0.7823790000000002,0,0,0.13576100145777067,0.08617042133333325,0.01815830000365774,0.006559052533333332,507.01198069254554,10.81428900684655,66.2917135699264,55.15478822110902,6.764133917391188,14.659666098849693,-0.29158811506972226,64.81939951578777,0.12695066666666677,1719.184115798884,0,0,1.066666666666667e-4,0.12729799871643385,7.14666666666666e-4,0,1.0799999999999991e-4 +2249,0.14566950562378733,0,0,-0,1.7148663895971539,7.684679985046387,0.0012166666666666662,0.008167964173480868,0.0016406666666666653,158.65999857584634,0.04012229733333328,3.8007328510284424,0,4.0001200040181475,0,6.259739955266316,4.571470600000004e-4,1.921895295381546,0.007377999999999996,35.42319202423096,7.999999999999988e-5,4.885271350542705,0.7228526666666664,0,413.55250295003253,32.67248933333332,2116.0695597330723,403.7067942474582,1514.1499837239583,336.253097069515,0.03291080115983883,0.008002350000000005,0.002308219962287694,1.3953085333333337e-4,0,6.0196839999999995e-5,97.18289947509766,2.5375774000000035,18.41169786453247,1.8715500000000027,139.34999974568686,0.9930226666666666,1.0853000084559123,0.029336466000000005,11.55560008684794,0,1.034969985485077,0.39118949999999986,0,0,0.12273199980457623,0.04308521066666665,0.01707059998686115,0.003279526266666666,507.10198211669916,10.79853489813675,66.1429523173066,53.9874622206683,6.512688341364335,14.530688459630786,-0.29158811506972226,64.80559984842937,0.06347533333333344,1466.3769376950177,0,0,5.333333333333335e-5,0.12513799779117107,3.573333333333332e-4,0,5.399999999999996e-5 +2250,0,0,-0,-0,1.665266614176688,7.683990001678467,0,0.007817433952974776,0,158.65999857584634,0,3.749992827574412,0,3.9740699927012124,0,6.245929996172587,0,1.8777853945891063,0,34.99059200286865,0,4.8833112716674805,0,0,413.05153401692706,0,2107.0695393880205,401.1965566767199,1513.6499938964844,332.36603715749044,0.029617799911648035,0,0.0021743900142610073,0,0,0,93.74179967244466,0,17.086796760559082,0,136.30599975585938,0,1.0521399974822998,0,11.496699968973795,0,0.9165730029344559,0,0,0,0.10971499979496002,0,0.01598469998377065,0,507.18798319498694,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.78919982910156,0,1213.569759591151,0,0,0,0.1230139999339978,0,0,0 +2251,0,0,-0,-0,1.665266614176688,7.683250069618225,0,0.007481953827664256,0,158.65900039672852,0,3.699942727883657,0,3.948189993699392,0,6.232139945030212,0,1.834685504436493,0,34.56319204966227,0,4.881381352742513,0,0,412.55342356363934,0,2098.0896402994786,401.1965566767199,1513.0799967447917,332.36603715749044,0.026327800160894792,0,0.0020419099795011184,0,0,0,90.30439949035645,0,15.763204654057821,0,133.2599983215332,0,1.0190099974473317,0,11.437999884287516,0,0.7982819924751917,0,0,0,0.09670990022520225,0,0.014900399915253123,0,507.2699813842773,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.77029927571614,0,1213.569759591151,0,0,0,0.12092599955697854,0,0,0 +2252,0,0,-0,-0,1.665266614176688,7.682479937871297,0,0.007160863645064334,0,158.65500132242838,0,3.6505526900291443,0,3.9224800268809,0,6.218390027681987,0,1.7925655841827393,0,34.140992164611816,0,4.8792615334192915,0,0,412.13805135091144,0,2089.4796752929683,401.1965566767199,1512.4799906412761,332.36603715749044,0.023230400246878464,0,0.0019130199992408354,0,0,0,86.93129984537761,0,14.49300773938497,0,130.24599965413412,0,0.9864170004924139,0,11.37970002492269,0,0.6881480018297831,0,0,0,0.08452329970896244,0,0.013853900056953231,0,507.349983215332,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.75000063578288,0,1213.569759591151,0,0,0,0.1188730001449585,0,0,0 +2253,0,0,-0,-0,1.665266614176688,7.681709965070088,0,0.006853563478216529,0,158.65200169881186,0,3.6018226544062295,0,3.896939992904663,0,6.204660018285115,0,1.751405696074168,0,33.723992665608726,0,4.876951336860657,0,0,411.8378143310547,0,2081.589701334635,401.1965566767199,1511.8899943033855,332.36603715749044,0.02049509979163607,0,0.0017921599986342092,0,0,0,83.68120002746582,0,13.324155807495117,0,127.29799969991048,0,0.9548349976539612,0,11.321599960327148,0,0.5931220004955927,0,0,0,0.07386290033658345,0,0.012880000052973628,0,507.42898050944007,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.72979927062988,0,1213.569759591151,0,0,0,0.11685600007573764,0,0,0 +2254,0,0,-0,-0,1.665266614176688,7.680950005849202,0,0.0065594533225521445,0,158.6489995320638,0,3.553752621014913,0,3.871559997399648,0,6.1909700234731035,0,1.7111858030160267,0,33.312092781066895,0,4.874761303265889,0,0,411.58573659261066,0,2074.339701334635,401.1965566767199,1511.2899983723958,332.36603715749044,0.01808010010669629,0,0.0016788399952929467,0,0,0,80.54980087280273,0,12.248574256896973,0,124.414000193278,0,0.924235999584198,0,11.263699928919474,0,0.5111509958902994,0,0,0,0.06453949989130099,0,0.011973900021985173,0,507.5069783528645,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.70959981282552,0,1213.569759591151,0,0,0,0.1148720004906257,0,0,0 +2255,0,0,-0,-0,1.665266614176688,7.680180033047994,0,0.006277963208655517,0,158.64600118001303,0,3.5063226024309793,0,3.8463499943415322,0,6.177310029665629,0,1.6718758940696716,0,32.90529251098633,0,4.872721234957377,0,0,411.36266072591144,0,2067.6997070312495,401.1965566767199,1510.6900024414062,332.36603715749044,0.015948099782690406,0,0.0015725999934754025,0,0,0,77.53319994608562,0,11.259090503056845,0,121.5930004119873,0,0.894595002134641,0,11.20610006650289,0,0.44045399874448776,0,0,0,0.05638690044482549,0,0.011130900122225285,0,507.584976196289,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.68929862976074,0,1213.569759591151,0,0,0,0.11292299938698609,0,0,0 +2256,0,0,-0,-0,1.665266614176688,7.679409980773926,0,0.0060085729928687215,0,158.64299901326498,0,3.4595225850741067,0,3.821299970149994,0,6.1636799573898315,0,1.6334859828154247,0,32.5033925374349,0,4.870851238568624,0,0,411.1606089274089,0,2061.5997924804683,401.1965566767199,1510.1000061035156,332.36603715749044,0.014066300044457117,0,0.001473020005505532,0,0,0,74.62750053405762,0,10.34879438082377,0,118.8350003560384,0,0.8658840010563532,0,11.14869999885559,0,0.37949400146802265,0,0,0,0.04925930003325144,0,0.01034669989409546,0,507.66198221842444,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.66909853617351,0,1213.569759591151,0,0,0,0.11100599976877372,0,0,0 +2257,0,0,-0,-0,1.665266614176688,7.678640007972717,0,0.005750732923236986,0,158.63999938964844,0,3.4133525292078652,0,3.7964199781417847,0,6.15008004506429,0,1.5959660808245342,0,32.10649220148722,0,4.869131167729695,0,0,410.9755630493164,0,2055.9897867838536,401.1965566767199,1509.5,332.36603715749044,0.012405699972684184,0,0.0013796899972173076,0,0,0,71.82880020141602,0,9.511601686477661,0,116.1369997660319,0,0.838074987133344,0,11.091599941253662,0,0.3269369999567668,0,0,0,0.04302879981696606,0,0.009617289993911982,0,507.7389831542968,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.64889971415202,0,1213.569759591151,0,0,0,0.10912299963335197,0,0,0 +2258,0,0,-0,-0,1.665266614176688,7.677869995435079,0,0.005503972798275451,0,158.6360003153483,0,3.3678024808565774,0,3.7717000246047974,0,6.136509935061137,0,1.5593061745166779,0,31.71439282099406,0,4.8675611813863116,0,0,410.8055140177409,0,2050.8498128255205,401.1965566767199,1508.8899943033855,332.36603715749044,0.010940299990276495,0,0.0012922100043700386,0,0,0,69.13339869181316,0,8.74163031578064,0,113.49899991353352,0,0.8111430009206136,0,11.034800052642822,0,0.2816319987177849,0,0,0,0.03758319995055596,0,0.008938940164322654,0,507.8149795532226,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.62870025634766,0,1213.569759591151,0,0,0,0.10727100012203057,0,0,0 +2259,0,0,-0,-0,1.665266614176688,7.677109917004903,0,0.005267802703504761,0,158.63299942016602,0,3.322862446308136,0,3.7471399704615274,0,6.12296998500824,0,1.5234762728214264,0,31.32709280649821,0,4.866111119588216,0,0,410.6504720052083,0,2046.1198527018228,401.1965566767199,1508.2899983723958,332.36603715749044,0.009647310012951493,0,0.0012102400069124997,0,0,0,66.53769938151042,0,8.033592621485392,0,110.91899998982747,0,0.7850610017776489,0,10.97819995880127,0,0.24258400003115335,0,0,0,0.03282430053999027,0,0.008308109904949864,0,507.8899815877278,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.60850016276042,0,1213.569759591151,0,0,0,0.10544999813040097,0,0,0 +2260,0,0,-0,-0,1.665266614176688,7.6763399839401245,0,0.005041762565573056,0,158.62999979654947,0,3.278512418270111,0,3.7227500279744468,0,6.109460075696309,0,1.4884563783804576,0,30.94459279378255,0,4.864781101544698,0,0,410.50744374593097,0,2041.779866536458,401.1965566767199,1507.6800231933594,332.36603715749044,0.008506650027508536,0,0.0011334300118808944,0,0,0,64.03820006052653,0,7.382558027903239,0,108.39699935913086,0,0.7598049988349279,0,10.921799898147583,0,0.2089339978992939,0,0,0,0.02866600003714363,0,0.0077215200290083885,0,507.96497853597,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.58830006917317,0,1213.569759591151,0,0,0,0.10366100072860718,0,0,0 +2261,0,0,-0,-0,1.665266614176688,7.675570050875346,0,0.004825432396804293,0,158.62700017293295,0,3.2347623705863953,0,3.698510011037191,0,6.095980008443196,0,1.4542464415232341,0,30.5666929880778,0,4.863561034202576,0,0,410.37640889485675,0,2037.7798767089841,401.1965566767199,1507.0799967447917,332.36603715749044,0.007500449971606334,0,0.0010614600032567978,0,0,0,61.63139979044596,0,6.783997615178426,0,105.93099975585938,0,0.7353499929110209,0,10.865800142288208,0,0.17993799845377603,0,0,0,0.02503289996335904,0,0.007176110055297613,0,508.0389785766601,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.56819979349773,0,1213.569759591151,0,0,0,0.10190199998517831,0,0,0 +2262,0,0,-0,-0,1.665266614176688,7.674799958864848,0,0.004618392325937748,0,158.62400182088217,0,3.191602369149526,0,3.674430012702942,0,6.08252998193105,0,1.420826494693756,0,30.193492889404297,0,4.862441062927246,0,0,410.25538635253906,0,2034.1098836263018,401.1965566767199,1506.469991048177,332.36603715749044,0.006612920008289318,0,0.00099403900094330311,0,0,0,59.31409994761149,0,6.233731587727864,0,103.52099990844727,0,0.7116720030705134,0,10.81000010172526,0,0.15495600178837776,0,0,0,0.021858999816079933,0,0.006669019969801108,0,508.1129811604817,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.54799906412761,0,1213.569759591151,0,0,0,0.10017300024628639,0,0,0 +2263,0,0,-0,-0,1.665266614176688,7.674040079116821,0,0.004420232182989518,0,158.62099965413412,0,3.149012327194214,0,3.65050999323527,0,6.069109996159871,0,1.3881465792655945,0,29.824793338775635,0,4.861400882403056,0,0,410.14435323079425,0,2030.7198994954424,401.1965566767199,1505.8600056966145,332.36603715749044,0.005830139969475567,0,9.308709947314734e-4,0,0,0,57.08300050099691,0,5.727890412012736,0,101.16399955749512,0,0.6887470036745071,0,10.7543998559316,0,0.1334339982519547,0,0,0,0.019086400046944618,0,0.006197590031661093,0,508.18598429361975,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.52779960632324,0,1213.569759591151,0,0,0,0.09847320057451725,0,0,0 +2264,0,0,-0,-0,1.665266614176688,7.673269987106323,0,0.004230572143569589,0,158.61700057983398,0,3.1069923043251038,0,3.6267399986584983,0,6.055719931920369,0,1.3562366863091786,0,29.460593223571777,0,4.860450903574626,0,0,410.04232533772785,0,2027.609903971354,401.1965566767199,1505.239990234375,332.36603715749044,0.0051398000214248896,0,8.71696999335351e-4,0,0,0,54.9350004196167,0,5.262914419174194,0,98.85989952087402,0,0.6665520121653875,0,10.699099858601889,0,0.1148950004329284,0,0,0,0.016664700272182625,0,0.005759329961923261,0,508.2579778035481,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.50769933064778,0,1213.569759591151,0,0,0,0.09680239980419476,0,0,0 +2265,0,0,-0,-0,1.665266614176688,7.672500054041545,0,0.004049062030389905,0,158.61400095621744,0,3.0655322670936584,0,3.6031299829483032,0,6.042360027631124,0,1.3250767687956493,0,29.10089349746704,0,4.859570860862732,0,0,409.9483057657878,0,2024.7299296061196,401.1965566767199,1504.6299947102864,332.36603715749044,0.004531020065769553,0,8.162669885981207e-4,0,0,0,52.86710007985433,0,4.835544308026631,0,96.60779889424641,0,0.6450649996598562,0,10.644100030263266,0,0.09892630018293858,0,0,0,0.014549499998490015,0,0.005351940014710029,0,508.32997894287104,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.4875005086263,0,1213.569759591151,0,0,0,0.09515989944338799,0,0,0 +2266,0,0,-0,-0,1.665266614176688,7.671729922294617,0,0.0038753319531679153,0,158.61100133260092,0,3.024632235368093,0,3.579670011997223,0,6.029030044873555,0,1.2946068147818248,0,28.745593229929607,0,4.858770887056987,0,0,409.8612823486328,0,2022.0799255371091,401.1965566767199,1504.010009765625,332.36603715749044,0.003994199990605314,0,7.643450080649927e-4,0,0,0,50.87650012969971,0,4.442749977111816,0,94.4063008626302,0,0.6242639968792597,0,10.589399894078573,0,0.08517289968828361,0,0,0,0.012702300058056911,0,0.004973259987309575,0,508.401980082194,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.46740023295085,0,1213.569759591151,0,0,0,0.0935454008479913,0,0,0 +2267,0,0,-0,-0,1.665266614176688,7.6709699630737305,0,0.0037090618667813637,0,158.6079978942871,0,2.984272221724192,0,3.556369960308075,0,6.015730023384094,0,1.264836887518565,0,28.394593556722004,0,4.858020901679993,0,0,409.78127034505206,0,2019.62993367513,401.1965566767199,1503.3899841308594,332.36603715749044,0.0035208499951598546,0,7.1571299728627e-4,0,0,0,48.9603001276652,0,4.081762154897054,0,92.25429979960124,0,0.6041280080874761,0,10.534899870554606,0,0.07332830006877582,0,0,0,0.011089199998726448,0,0.004621280007995665,0,508.47197723388666,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.44719950358073,0,1213.569759591151,0,0,0,0.09195820055902004,0,0,0 +2268,0,0,-0,-0,1.665266614176688,7.670199990272522,0,0.0035499317843156555,0,158.6050008138021,0,2.9444621801376343,0,3.5332199732462564,0,6.00246000289917,0,1.2357569634914398,0,28.047993501027424,0,4.857330799102783,0,0,409.7072575887044,0,2017.3699442545571,401.1965566767199,1502.769999186198,332.36603715749044,0.0031035099915849664,0,6.701629948414242e-4,0,0,0,47.115699768066406,0,3.750010848045349,0,90.15089988708496,0,0.584636002779007,0,10.480699936548868,0,0.06312830032159884,0,0,0,0.009680569870397449,0,0.004294120046931009,0,508.542984008789,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.42709922790527,0,1213.569759591151,0,0,0,0.09039809989432494,0,0,0 +2269,0,0,-0,-0,1.665266614176688,7.669429937998454,0,0.0033976317111713192,0,158.6010004679362,0,2.905172129472097,0,3.5102199713389077,0,5.98920996983846,0,1.2073270281155903,0,27.705493450164795,0,4.8567008177439375,0,0,409.6392364501953,0,2015.2799580891924,401.1965566767199,1502.1500040690105,332.36603715749044,0.0027355599837998548,0,6.275029930596551e-4,0,0,0,45.340200424194336,0,3.4451564947764077,0,88.09499994913737,0,0.5657690018415451,0,10.42679993311564,0,0.05434509987632433,0,0,0,0.00845060000816981,0,0.003990060048333059,0,508.6119817097981,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.40689913431804,0,1213.569759591151,0,0,0,0.08886439974109332,0,0,0 +2270,0,0,-0,-0,1.665266614176688,7.668670018513997,0,0.003251861645064006,0,158.5980021158854,0,2.8664121627807617,0,3.4873699943224588,0,5.976000070571899,0,1.179547091325124,0,27.36729367574056,0,4.85611077149709,0,0,409.5762227376302,0,2013.3399861653643,401.1965566767199,1501.5299886067708,332.36603715749044,0.0024111599777825177,0,5.875490023754537e-4,0,0,0,43.631199518839516,0,3.1650091807047525,0,86.08550135294597,0,0.5475059996048609,0,10.373100121816,0,0.04678219991425673,0,0,0,0.007376679956602554,0,0.0037074700036707022,0,508.68197886149085,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.38679885864258,0,1213.569759591151,0,0,0,0.08735670025149982,0,0,0 +2271,0,0,-0,-0,1.665266614176688,7.667899966239929,0,0.00311234158774217,0,158.59499867757162,0,2.8281721075375876,0,3.464670022328695,0,5.962820053100586,0,1.1524071594079335,0,27.033193747202557,0,4.855570832888286,0,0,409.51820882161456,0,2011.5399576822915,401.1965566767199,1500.8999837239583,332.36603715749044,0.002125189988873899,0,5.501309933606535e-4,0,0,0,41.986300468444824,0,2.907589296499888,0,84.12149874369304,0,0.5298289954662323,0,10.319700082143148,0,0.040270499574641384,0,0,0,0.006439039949327707,0,0.003444840006219844,0,508.7499796549479,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.36669921875,0,1213.569759591151,0,0,0,0.08587469967703025,0,0,0 +2272,0,0,-0,-0,1.665266614176688,7.667129993438721,0,0.0029788215178996325,0,158.59199905395508,0,2.790442089239756,0,3.442109982172648,0,5.949659983317058,0,1.125897228717804,0,26.703193823496502,0,4.855060736338298,0,0,409.46420033772785,0,2009.8799743652341,401.1965566767199,1500.280029296875,332.36603715749044,0.001873079997797807,0,5.150899960426614e-4,0,0,0,40.40300019582113,0,2.67106693983078,0,82.20190111796062,0,0.5127190003792444,0,10.266500075658163,0,0.03466410003602505,0,0,0,0.005620440041335921,0,0.003200779998830209,0,508.8179855346679,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.3466002146403,0,1213.569759591151,0,0,0,0.08441779948771,0,0,0 +2273,0,0,-0,-0,1.665266614176688,7.666369915008545,0,0.0028510214760899544,0,158.5890007019043,0,2.7532120744387307,0,3.419710020224253,0,5.936540007591248,0,1.100007305542628,0,26.377193609873455,0,4.854590733846028,0,0,409.41318766276044,0,2008.3299967447915,401.1965566767199,1499.6599833170574,332.36603715749044,0.0016508500072328995,0,4.8227500277183327e-4,0,0,0,38.87920061747233,0,2.453742345174154,0,80.3257999420166,0,0.49615900218486786,0,10.213599999745687,0,0.0298373995659252,0,0,0,0.004905789974145591,0,0.0029739600140601397,0,508.8859786987304,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.32649993896484,0,1213.569759591151,0,0,0,0.08298559921483199,0,0,0 +2274,0,0,-0,-0,1.665266614176688,7.665599981943767,0,0.002728701375114421,0,158.58599853515625,0,2.7164820233980813,0,3.397450029850006,0,5.923439979553223,0,1.0746973653634389,0,26.05509392420451,0,4.854160825411479,0,0,409.3671696980794,0,2006.8799947102862,401.1965566767199,1499.0299987792969,332.36603715749044,0.0014549600115666788,0,4.51545000638968e-4,0,0,0,37.4127000172933,0,2.254055678844452,0,78.49219957987468,0,0.48013099531332654,0,10.1610000928243,0,0.02568210009485483,0,0,0,0.00428190000820905,0,0.002763189976879706,0,508.9529825846354,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.30639966328938,0,1213.569759591151,0,0,0,0.08157780021429062,0,0,0 +2275,0,0,-0,-0,1.665266614176688,7.664829969406128,0,0.0026116413064301014,0,158.5819994608561,0,2.6802420218785605,0,3.3753300110499063,0,5.910380005836487,0,1.049957424402237,0,25.737094084421795,0,4.853760719299316,0,0,409.3241704305013,0,2005.5399881998696,401.1965566767199,1498.3999837239583,332.36603715749044,0.0012822799908462912,0,4.227699998106497e-4,0,0,0,36.001200358072914,0,2.0705971916516623,0,76.70029894510905,0,0.4646179974079132,0,10.10859990119934,0,0.02210490017508467,0,0,0,0.003737280028872192,0,0.002567319975545009,0,509.01897939046216,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.28629938761394,0,1213.569759591151,0,0,0,0.08019380023082097,0,0,0 +2276,0,0,-0,-0,1.665266614176688,7.664070010185242,0,0.0024996012604484954,0,158.57900110880533,0,2.644481976826986,0,3.3533599972724915,0,5.8973400592803955,0,1.025787482659022,0,25.4228941599528,0,4.853380759557088,0,0,409.2831548055013,0,2004.2900187174478,401.1965566767199,1497.7799886067708,332.36603715749044,0.0011300799960736185,0,3.958240001035544e-4,0,0,0,34.64280001322428,0,1.9020468990008037,0,74.94890022277832,0,0.44960400213797885,0,10.05649995803833,0,0.01902559989442428,0,0,0,0.0032618599749791124,0,0.002385320006093631,0,509.084981282552,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.26619974772136,0,1213.569759591151,0,0,0,0.07883339934051037,0,0,0 +2277,0,0,-0,-0,1.665266614176688,7.663300037384033,0,0.0023923612122113505,0,158.5760014851888,0,2.609201947848002,0,3.3315399885177612,0,5.884329994519551,0,1.0021875351667404,0,25.112494150797527,0,4.853030721346538,0,0,409.2461446126302,0,2003.1199849446612,401.1965566767199,1497.1499938964844,332.36603715749044,9.959330006192129e-4,0,3.7059199773163226e-4,0,0,0,33.335400899251304,0,1.7471950352191925,0,73.23740005493164,0,0.43507400155067444,0,10.004699945449829,0,0.01637490000575781,0,0,0,0.002846869989298284,0,0.002216199995018542,0,509.15097808837885,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.24610010782878,0,1213.569759591151,0,0,0,0.07749599901338418,0,0,0 +2278,0,0,-0,-0,1.665266614176688,7.662529985109965,0,0.002289731152510891,0,158.5730005900065,0,2.5743918816248574,0,3.309849997361501,0,5.871350010236104,0,0.9791275958220164,0,24.805994351704914,0,4.852700710296631,0,0,409.2111409505208,0,2002.0199991861978,401.1965566767199,1496.519999186198,332.36603715749044,8.776939988213902e-4,0,3.469660005066544e-4,0,0,0,32.07719977696737,0,1.6049317121505737,0,71.56470108032227,0,0.4210110033551852,0,9.953119993209839,0,0.014093200055261454,0,0,0,0.002484639970740924,0,0.0020590399702390036,0,509.2159856160481,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.22609965006511,0,1213.569759591151,0,0,0,0.07618139994641145,0,0,0 +2279,0,0,-0,-0,1.665266614176688,7.661770025889079,0,0.0021915010875090957,0,158.56999969482422,0,2.5400518774986267,0,3.2883099714914956,0,5.858399987220764,0,0.9565886457761129,0,24.50309419631958,0,4.852400779724121,0,0,409.1781361897786,0,2000.990020751953,401.1965566767199,1495.8900044759114,332.36603715749044,7.734819907151783e-4,0,3.2484399950286996e-4,0,0,0,30.866400082906086,0,1.4742370148499806,0,69.93010012308757,0,0.4074010004599889,0,9.90179991722107,0,0.012129199923947453,0,0,0,0.0021684500000750027,0,0.0019130200089421123,0,509.2799860636393,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.20600001017253,0,1213.569759591151,0,0,0,0.07488899988432725,0,0,0 +2280,0,0,-0,-0,1.665266614176688,7.660999933878581,0,0.0020974810662058494,0,158.56699879964194,0,2.5061618288358054,0,3.2668999830881753,0,5.845470031102498,0,0.9345517009496689,0,24.203994433085125,0,4.852110664049785,0,0,409.14713287353516,0,2000.0300089518228,401.1965566767199,1495.2699890136719,332.36603715749044,6.8163401253211e-4,0,3.041299933101982e-4,0,0,0,29.701199690500896,0,1.354171097278595,0,68.33260091145833,0,0.3942290047804515,0,9.85074003537496,0,0.010438699973747134,0,0,0,0.001892479999999826,0,0.0017773400080235053,0,509.3439839680989,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.18589973449707,0,1213.569759591151,0,0,0,0.07361859952410062,0,0,0 +2281,0,0,-0,-0,1.665266614176688,7.660239974657695,0,0.002007501005815963,0,158.5629997253418,0,2.47273180882136,0,3.24563999970754,0,5.832580010096232,0,0.9130277633666992,0,23.908594449361164,0,4.851840694745381,0,0,409.11812591552734,0,1999.1200256347654,401.1965566767199,1494.6400146484375,332.36603715749044,6.006859960810592e-4,0,2.8473400258614373e-4,0,0,0,28.579799969991047,0,1.2438740034898121,0,66.77150026957194,0,0.38148200015227,0,9.79994010925293,0,0.00898374003979067,0,0,0,0.0016515999935412158,0,0.0016512700046102207,0,509.407979329427,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.16589991251628,0,1213.569759591151,0,0,0,0.07236979963878791,0,0,0 +2282,0,0,-0,-0,1.665266614176688,7.659470001856486,0,0.0019213809670569997,0,158.56000010172525,0,2.439741830031077,0,3.2245100339253745,0,5.81970997651418,0,0.8920048127571741,0,23.616694768269856,0,4.851590633392334,0,0,409.09112040201825,0,1998.2600097656248,401.1965566767199,1494.0099995930989,332.36603715749044,5.293439947611963e-4,0,2.6657399818456423e-4,0,0,0,27.50060002009074,0,1.1425458788871765,0,65.2459004720052,0,0.3691460018356641,0,9.749399979909262,0,0.0077314199491714435,0,0,0,0.001441370016740014,0,0.0015341299974049132,0,509.469980875651,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.14579995473225,0,1213.569759591151,0,0,0,0.0711421010394891,0,0,0 +2283,0,0,-0,-0,1.665266614176688,7.658699989318848,0,0.001838950925351431,0,158.55699920654297,0,2.407191753387451,0,3.203530013561249,0,5.806879917780559,0,0.8714708636204401,0,23.328394571940105,0,4.851350744565328,0,0,409.0661163330078,0,1997.450032552083,401.1965566767199,1493.3799947102864,332.36603715749044,4.6647100437742967e-4,0,2.4957099958555773e-4,0,0,0,26.46209987004598,0,1.0494667887687683,0,63.75500075022379,0,0.3572079986333847,0,9.69911003112793,0,0.006653569949169953,0,0,0,0.0012578799990781893,0,0.0014252900242960702,0,509.53298187255854,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.12579981486003,0,1213.569759591151,0,0,0,0.06993530007700126,0,0,0 +2284,0,0,-0,-0,1.665266614176688,7.657940030097961,0,0.0017600608892583598,0,158.55399958292642,0,2.3750817577044168,0,3.182679990927378,0,5.794069925944011,0,0.8514149039983749,0,23.043594519297283,0,4.851120670636495,0,0,409.04211171468097,0,1996.6900126139321,401.1965566767199,1492.75,332.36603715749044,4.110610000983191e-4,0,2.33650998173592e-4,0,0,0,25.462800184885662,0,0.9639598280191422,0,62.2980006535848,0,0.34565500169992447,0,9.649080117543539,0,0.005725910033409794,0,0,0,0.0010977300019779552,0,0.0013241700071375817,0,509.594985961914,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.10569953918457,0,1213.569759591151,0,0,0,0.0687489000459512,0,0,0 +2285,0,0,-0,-0,1.665266614176688,7.6571699778238935,0,0.0016845608479343355,0,158.55100123087564,0,2.3434017499287925,0,3.161960005760193,0,5.781290014584859,0,0.831803947687149,0,22.762394587198894,0,4.850910743077596,0,0,409.0191065470378,0,1995.960021972656,401.1965566767199,1492.1199951171875,332.36603715749044,3.6222899992329377e-4,0,2.187449984679309e-4,0,0,0,24.500999927520752,0,0.885415052374204,0,60.87429968516032,0,0.3344749982158343,0,9.599299987157186,0,0.004927519980507593,0,0,0,9.579639930355673e-4,0,0.0012302099882314603,0,509.65598297119135,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.08569876352946,0,1213.569759591151,0,0,0,0.06758270102242629,0,0,0 +2286,0,0,-0,-0,1.665266614176688,7.656409939130147,0,0.0016122908370258908,0,158.5479990641276,0,2.3121416767438254,0,3.14137997229894,0,5.768539945284526,0,0.8126279960076014,0,22.48449484507243,0,4.85071074962616,0,0,408.99710337320965,0,1995.2700093587237,401.1965566767199,1491.5,332.36603715749044,3.1919499694292125e-4,0,2.047889999327405e-4,0,0,0,23.575599988301594,0,0.8132635056972504,0,59.48289998372396,0,0.32365499436855316,0,9.549779971440634,0,0.004240409975561003,0,0,0,8.359839994227514e-4,0,0.0011429099928742896,0,509.7169850667317,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.06569925944011,0,1213.569759591151,0,0,0,0.06643630005419254,0,0,0 +2287,0,0,-0,-0,1.665266614176688,7.6556399663289385,0,0.001543120772112161,0,158.54400126139322,0,2.2812917033831277,0,3.120930016040802,0,5.755809982617696,0,0.7938980460166931,0,22.209994633992512,0,4.850520690282186,0,0,408.9771016438802,0,1994.6200154622393,401.1965566767199,1490.8699951171875,332.36603715749044,2.8127200494054705e-4,0,1.9172300138355544e-4,0,0,0,22.68499994277954,0,0.7469872832298279,0,58.12329991658529,0,0.3131839980681737,0,9.500500043233236,0,0.0036490599741227925,0,0,0,7.295280035274724e-4,0,0.0010618000039054702,0,509.77798207600904,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.0456994374593,0,1213.569759591151,0,0,0,0.06530929977695148,0,0,0 +2288,0,0,-0,-0,1.665266614176688,7.654869953791301,0,0.0014769307454116642,0,158.54099909464517,0,2.250861644744873,0,3.1006200512250266,0,5.743120034535726,0,0.7756040891011556,0,21.938895225524902,0,4.850340684254964,0,0,408.9571024576823,0,1993.990000406901,401.1965566767199,1490.2399800618489,332.36603715749044,2.4785200124218437e-4,0,1.7948899888627542e-4,0,0,0,21.82800006866455,0,0.6861074268817902,0,56.79469966888428,0,0.3030519982179006,0,9.451480070749918,0,0.0031401499873027205,0,0,0,6.366220040945336e-4,0,9.864479895137872e-4,0,509.8379796346028,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.02569897969563,0,1213.569759591151,0,0,0,0.06420150026679039,0,0,0 +2289,0,0,-0,-0,1.665266614176688,7.6541099945704145,0,0.0014135707072758426,0,158.5380007425944,0,2.220841646194458,0,3.0804399847984314,0,5.73044999440511,0,0.7577351282040278,0,21.671095371246338,0,4.850170572598775,0,0,408.9390920003255,0,1993.3900146484373,401.1965566767199,1489.6199747721355,332.36603715749044,2.1840100089320913e-4,0,1.6803500087310871e-4,0,0,0,21.00339984893799,0,0.6301859964927038,0,55.49630037943522,0,0.2932470018664996,0,9.40271004041036,0,0.0027021799663392207,0,0,0,5.555430010038739e-4,0,9.16433995977665e-4,0,509.89697774251295,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,64.00569947560628,0,1213.569759591151,0,0,0,0.06311240047216415,0,0,0 +2290,0,0,-0,-0,1.665266614176688,7.653340021769206,0,0.001352930684030677,0,158.5349998474121,0,2.1912116408348083,0,3.0603900154431662,0,5.717810074488322,0,0.7402821779251099,0,21.4065949122111,0,4.850000699361165,0,0,408.9210968017578,0,1992.8200276692705,401.1965566767199,1488.990010579427,332.36603715749044,1.9244799962810552e-4,0,1.5731200134420456e-4,0,0,0,20.209800084431965,0,0.578819011648496,0,54.22760009765625,0,0.2837580020229022,0,9.354180097579956,0,0.0023252800068197152,0,0,0,4.8478599880278733e-4,0,8.513870028158029e-4,0,509.95597839355463,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.98569901784261,0,1213.569759591151,0,0,0,0.0620418998102347,0,0,0 +2291,0,0,-0,-0,1.665266614176688,7.65258002281189,0,0.0012948906611806403,0,158.53200149536133,0,2.1619815826416016,0,3.040470004081726,0,5.705199956893921,0,0.7232352197170258,0,21.14529514312744,0,4.849840680758159,0,0,408.90509033203125,0,1992.270029703776,401.1965566767199,1488.3600056966145,332.36603715749044,1.6957799986509295e-4,0,1.4727200080718225e-4,0,0,0,19.446199893951416,0,0.5316355476776758,0,52.98780028025309,0,0.27457599838574726,0,9.305909951527914,0,0.0020009300011831024,0,0,0,4.230369983512598e-4,0,7.90952006354928e-4,0,510.0149815877278,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.96569983164469,0,1213.569759591151,0,0,0,0.060989500023424625,0,0,0 +2292,0,0,-0,-0,1.665266614176688,7.651810010274251,0,0.0012393406068440527,0,158.52900060017905,0,2.133141577243805,0,3.020680010318756,0,5.692610025405884,0,0.7065632541974386,0,20.887195428212483,0,4.8496906359990435,0,0,408.8880971272786,0,1991.740030924479,401.1965566767199,1487.739990234375,332.36603715749044,1.4942399987679286e-4,0,1.378720007778611e-4,0,0,0,18.711300055185955,0,0.48829563707113266,0,51.776299476623535,0,0.26568999886512756,0,9.257870038350424,0,0.0017217999945084255,0,0,0,3.691500047959077e-4,0,7.348050033518424e-4,0,510.0729827880859,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.94569969177246,0,1213.569759591151,0,0,0,0.0599548996736606,0,0,0 +2293,0,0,-0,-0,1.665266614176688,7.6510500113169355,0,0.001186170595853279,0,158.52499771118164,0,2.1046915650367737,0,3.001019994417826,0,5.680059989293416,0,0.6902583042780558,0,20.632195313771565,0,4.849550644556682,0,0,408.8730824788411,0,1991.23003133138,401.1965566767199,1487.1099955240886,332.36603715749044,1.3166500017784225e-4,0,1.2907200046659759e-4,0,0,0,18.004200140635174,0,0.4484873165686925,0,50.59239991505941,0,0.2570920040210088,0,9.210089921951294,0,0.0014815999893471599,0,0,0,3.2212500082096085e-4,0,6.826400058344007e-4,0,510.12998199462885,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.92569955190023,0,1213.569759591151,0,0,0,0.05893789945791165,0,0,0 +2294,0,0,-0,-0,1.665266614176688,7.650279998779297,0,0.0011352905809568863,0,158.52200063069662,0,2.0766115387280784,0,2.9814900159835815,0,5.667529980341594,0,0.6743323355913162,0,20.380395253499348,0,4.849410732587178,0,0,408.8580856323242,0,1990.740051269531,401.1965566767199,1486.4900004069011,332.36603715749044,1.1601599908317439e-4,0,1.2083399875943239e-4,0,0,0,17.32380024592082,0,0.4119216079513232,0,49.43550046284994,0,0.24877099692821503,0,9.16254989306132,0,0.0012749000064407785,0,0,0,2.8108800082312274e-4,0,6.341770009991402e-4,0,510.18798319498694,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.90569909413656,0,1213.569759591151,0,0,0,0.05793819949030876,0,0,0 +2295,0,0,-0,-0,1.665266614176688,7.6495199998219805,0,0.0010865905399744709,0,158.5189997355143,0,2.048911472161611,0,2.962090015411377,0,5.655030012130737,0,0.6587763826052347,0,20.131595452626545,0,4.849280595779419,0,0,408.84407806396484,0,1990.2600301106768,401.1965566767199,1485.8599955240886,332.36603715749044,6.957744578054796e-5,0,1.1311999999937446e-4,0,0,0,16.669099807739258,0,0.37833554297685623,0,48.30500030517578,0,0.24071899925669035,0,9.115249872207642,0,0.0010970199946314096,0,0,0,2.4527800148158957e-4,0,5.891509984697526e-4,0,510.2439804077148,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.88580004374186,0,1213.569759591151,0,0,0,0.056955400543908276,0,0,0 +2296,0,0,-0,-0,1.665266614176688,7.648749987284343,0,0.001039980532368645,0,158.51599884033203,0,2.021581490834554,0,2.9428100188573203,0,5.642549991607666,0,0.6435834219058355,0,19.885895252227783,0,4.8491506179173784,0,0,408.830083211263,0,1989.8000284830728,401.1965566767199,1485.240010579427,332.36603715749044,0,0,1.0589899951204036e-4,0,0,0,16.039100011189777,0,0.3474871714909871,0,47.200300216674805,0,0.23292700201272964,0,9.068190018335978,0,9.43960995452168e-4,0,0,0,2.140279987846346e-4,0,5.473210039781407e-4,0,510.3009821573893,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.86579958597819,0,1213.569759591151,0,0,0,0.05598930021127065,0,0,0 +2297,0,0,-0,-0,1.665266614176688,7.647989948590596,0,9.953634968648355e-4,0,158.51300175984701,0,1.994611491759618,0,2.9236600200335183,0,5.630110025405884,0,0.6287434548139572,0,19.643195788065594,0,4.849020640055339,0,0,408.81707763671875,0,1989.3500569661455,401.1965566767199,1484.6100056966145,332.36603715749044,0,0,3.377092131510532e-5,0,0,0,15.432799895604452,0,0.31915150086085003,0,46.12080001831055,0,0.22538800040880838,0,9.021369934082031,0,8.122469977630923e-4,0,0,0,1.867580006849797e-4,0,5.084589987139528e-4,0,510.35698191324866,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.84579944610596,0,1213.569759591151,0,0,0,0.05503959984829029,0,0,0 +2298,0,0,-0,-0,1.665266614176688,7.647220055262248,0,9.526644765477007e-4,0,158.5099983215332,0,1.9680114388465881,0,2.9046299854914346,0,5.617690046628316,0,0.6142484843730927,0,19.403395493825276,0,4.8489006360371905,0,0,408.80408477783203,0,1988.9200337727862,401.1965566767199,1483.990010579427,332.36603715749044,0,0,0,0,0,0,14.849499940872192,0,0.29312555988629657,0,45.06600030263265,0,0.21809099987149239,0,8.974799950917562,0,6.989060057094321e-4,0,0,0,1.6296200071034642e-4,0,4.7235399930893135e-4,0,510.4119771321614,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.82589975992838,0,1213.569759591151,0,0,0,0.05410599956909815,0,0,0 +2299,0,0,-0,-0,1.665266614176688,7.646459937095642,0,9.117974647476027e-4,0,158.50600306193033,0,1.941761424144109,0,2.8857200145721436,0,5.6053000291188555,0,0.6000905185937881,0,19.166595617930096,0,4.848790645599365,0,0,408.79108174641925,0,1988.490041097005,401.1965566767199,1483.3700052897136,332.36603715749044,0,0,0,0,0,0,14.28820006052653,0,0.26922136048475903,0,44.035200119018555,0,0.21103099981943765,0,8.928460041681925,0,6.013769937756782e-4,0,0,0,1.4219700096873567e-4,0,4.3881199720393244e-4,0,510.46697743733716,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.806000073750816,0,1213.569759591151,0,0,0,0.05318820010870695,0,0,0 +2300,0,0,-0,-0,1.665266614176688,7.645689964294434,0,8.72684443796364e-4,0,158.50300089518228,0,1.915851394335429,0,2.866939961910248,0,5.59293003877004,0,0.5862615605195364,0,18.93259557088216,0,4.848670641581218,0,0,408.7790807088216,0,1988.0800374348955,401.1965566767199,1482.75,332.36603715749044,0,0,0,0,0,0,13.747999986012777,0,0.2472649378081163,0,43.02800019582113,0,0.20419899995128313,0,8.882359902064005,0,5.174539910512976e-4,0,0,0,1.2407699978211895e-4,0,4.0765100372179103e-4,0,510.5209808349609,10.782780789426953,65.99419106468677,52.820136220227575,6.261242765337482,14.401710820411878,-0.29158811506972226,63.78599993387858,0,1213.569759591151,0,0,0,0.0522859999909997,0,0,0 diff --git a/inst/input/tables/ssp434_emiss-constraints_rf.csv b/inst/input/tables/ssp434_emiss-constraints_rf.csv new file mode 100644 index 000000000..0280840d8 --- /dev/null +++ b/inst/input/tables/ssp434_emiss-constraints_rf.csv @@ -0,0 +1,562 @@ +; ssp434 from rcmip +; hectordata 0.0.0.9000 +; commit dab9aad8750535b +; date Fri Nov 4 11:35:31 2022 +; UNITS:, PgC year-1, PgC year-1, PgC year-1, PgC year-1, Tg year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg CH4 year-1, ppm, Tg CO year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg N year-1, Tg year-1, Tg NMVOC year-1, Tg N year-1, Tg year-1, W m-2, ppt, ppt, Gg S year-1, W m-2, ppt, ppt, ppt, ppt, ppt, ppt +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_constrain,C2F6_emissions,CCl4_constrain,CCl4_emissions,CF4_constrain,CF4_emissions,CFC113_constrain,CFC113_emissions,CFC114_constrain,CFC114_emissions,CFC115_constrain,CFC115_emissions,CFC11_constrain,CFC11_emissions,CFC12_constrain,CFC12_emissions,CH3Br_constrain,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_constrain,CH3Cl_emissions,CH4_constrain,CH4_emissions,CO2_constrain,CO_emissions,HCFC141b_constrain,HCFC141b_emissions,HCFC142b_constrain,HCFC142b_emissions,HCFC22_constrain,HCFC22_emissions,HFC125_constrain,HFC125_emissions,HFC134a_constrain,HFC134a_emissions,HFC143a_constrain,HFC143a_emissions,HFC227ea_constrain,HFC227ea_emissions,HFC23_constrain,HFC23_emissions,HFC245_constrain,HFC245fa_emissions,HFC32_constrain,HFC32_emissions,HFC365_constrain,HFC365_emissions,HFC4310_constrain,HFC4310_emissions,N2O_constrain,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,RF_albedo,SF6_constrain,SF6_emissions,SO2_emissions,SV,halon1211_constrain,halon1211_emissions,halon1301_constrain,halon1301_emissions,halon2402_constrain,halon2402_emissions +1745,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,728.6180877685546,19.019783117809567,276.9859975179036,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7540486653645,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1746,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.704874674479,19.019783117809567,277.01399993896484,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7850443522135,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1747,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.8320821126301,19.019783117809567,277.0439987182617,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.80204772949213,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1748,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.2330983479817,19.019783117809567,277.07999928792316,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8170496622721,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1749,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.9769846598306,19.019783117809567,277.10900115966797,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8330459594726,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1750,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,731.4059956868489,19.019783117809567,277.1470031738281,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8650512695312,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1751,0.0025941063027029847,0.0826692695573487,0,0,2.0729259257736388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1072,0,457.00000254313153,4276.7685,731.838165283203,18.915108869931455,277.18800099690753,343.9263672486595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8940556844075,0.05578579647289745,6.860142184947855,59.08812628149409,3.8337729357251344,15.188716744277112,-0.00022945725475492763,0,0,1206.0681799841475,0.1857567460517512,0.004446572546536724,0.0077232726,0,0,0,0 +1752,0.0025952084646724115,0.0841901460141451,0,0,2.0643119329193533,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12502,0,457.00000254313153,4277.7049,732.8999735514321,18.889711811886766,277.22900136311847,341.8090339016869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.92705535888666,0.056839716429342754,6.819482036717451,58.63199702688318,3.8343718514044016,15.034475741403988,-4.5891450950985525e-4,0,0,1200.4278473396196,0.1857604715824308,0.004446572546536724,0.0077232726,0,0,0,0 +1753,0.0025953021590175993,0.08573900221733607,0,0,2.0719505635154682,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10373,0,457.00000254313153,4276.585999999999,733.634038289388,19.121377231171937,277.26300048828125,343.6754562091752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.9730555216471,0.057913547319122724,6.88143852899345,59.02634940020826,3.8177943228183677,15.18254515100842,-6.883717642647818e-4,0,0,1207.227098535096,0.1857617169069504,0.004446572546536724,0.0077232726,0,0,0,0 +1754,0.0025964043209870257,0.0873163529136683,0,0,2.09934978275426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07356,0,457.00000254313153,4274.9998,734.2020212809243,19.50906106501577,277.3040033976237,349.81562520064375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.01604461669916,0.059007665304832875,7.015189223980566,60.269945173845855,3.847331336983454,15.55877304959727,-9.178290190197105e-4,0,0,1232.9531143620388,0.18576213564093827,0.004446572546536724,0.0077232726,0,0,0,0 +1755,0.0025975064829564486,0.08892272231974611,0,0,2.099173164966012,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09182,0,457.00000254313153,4275.9598,734.7360788981118,19.500454933311694,277.3510030110677,348.144667955229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.05104319254554,0.06012245365563151,6.9439890428442705,59.824933724698546,3.8866528883154143,15.358182527090067,-0.0011472862737746368,0,0,1223.0826850431558,0.16149051004268924,0.004446572546536724,0.0077232726,0,0,0,0 +1756,0.002775090479167637,0.09055864429624946,0,0,2.0689154070023212,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08556000000002,0,457.00000254313153,4275.6306,735.4210001627603,19.46253659981589,277.38899993896484,343.32315167584505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.07905069986975,0.06125830288149874,6.92271155666652,58.94682931223554,3.780146274357017,15.195776625722106,-0.001376743528529566,0,0,1211.479201655296,-0.06413990375550595,0.004446572546536724,0.0077232726,0,0,0,0 +1757,0.0027761926411370656,0.09222466252535721,0,0,2.1479236761828795,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09137,0,457.00000254313153,4275.9361,735.8930308024087,20.023540664144175,277.4419987996419,355.9418922631908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.09605153401685,0.06241561087003213,7.047674128999731,61.263692996283645,3.9984362659957116,15.704819120374072,-0.0016062007832844925,0,0,1255.6882474413671,0.06548148963396255,0.004446572546536724,0.0077232726,0,0,0,0 +1758,0.002777294803106484,0.09392133069143445,0,0,2.120611409560707,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09662,0,457.00000254313153,4276.2118,736.2069956461587,19.93400532918585,277.48900095621747,351.839749049401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.12904612223304,0.06359478302582648,6.995459767973222,60.43461244378834,3.951609319926169,15.514611629339965,-0.0018356580380394208,0,0,1241.8061904390202,0.143706674085902,0.004446572546536724,0.0077232726,0,0,0,0 +1759,0.0027783969650759127,0.09564921266504378,0,0,2.1172674310973973,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08372,0,457.00000254313153,4275.5338,736.0988871256509,20.14146621388408,277.5399983723958,351.50776272566816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.1650466918945,0.06479623241248693,7.045958325346581,60.44526305257086,3.8825594605141793,15.574013491239148,-0.0020651152927943475,0,0,1238.6934463843995,0.17156026373747926,0.004446572546536724,0.0077232726,0,0,0,0 +1760,0.002778490659421102,0.09740888269034213,0,0,2.127804104941503,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04022,0,457.00000254313153,4273.2473,735.484171549479,20.416797144500503,277.6050033569336,354.41828530815224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.19305165608716,0.06602037989732504,7.1280482855702605,61.0517247888764,3.870426966375627,15.819063930323424,-0.002294572547549277,0,0,1250.820917255113,0.18098830087140405,0.004446572546536724,0.0077232726,0,0,0,0 +1761,0.0030417996868854222,0.09920092557592508,0,0,2.1377569894528237,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09143,0,457.00000254313153,4275.9395,735.7630208333333,20.45599016898809,277.6639989217122,354.70796791995804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.22205098470045,0.06726765429878842,7.080969808277224,60.98422720066375,3.9477855453840847,15.691915882574792,-0.0025240298023042032,0,0,1256.5481216489331,0.1841585443588585,0.004446572546536724,0.0077232726,0,0,0,0 +1762,0.0030429071320477096,0.10102593688918185,0,0,2.101748108909336,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08127,0,457.00000254313153,4275.4052,736.3031056722004,20.451687381976814,277.7320022583008,349.24969722773284,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3203315e-8,0,0,0,0,0,1.5142326e-6,0,0,0,0,274.25004831949866,0.06853849253667572,7.072547337152548,60.0270893345371,3.8056067222316985,15.52593530614623,-0.002753487057059132,0,0,1235.176016491452,-0.7198788864817063,0.004446572546536724,0.0077232726,0,0,0,0 +1763,0.003044014577209992,0.10288452315422644,0,0,2.1070297579949187,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09332,0,457.00000254313153,4276.0386,737.1810404459634,20.54517933681397,277.7959976196289,350.0593349220327,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6788058e-7,0,0,0,0,0,1.2367808e-5,0,0,0,0,274.30205535888666,0.06983333978518949,7.067982584358078,60.127066272688566,3.846149431214471,15.526762487788051,-0.0029829443118140585,0,0,1242.4313344000275,-0.4399601212913509,0.004446572546536724,0.0077232726,0,0,0,0 +1764,0.0030451220223722732,0.10477730205346951,0,0,2.0715492266986275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1104,0,457.00000254313153,4276.9364,738.1030629475911,20.26091721016315,277.8590037027995,342.04461065627544,0,0,0,0,0,0,0,0,0,0,0,0,5.745499576104152e-9,1.2683334e-6,0,0,0,0,3.1742572836890304e-7,2.4998684e-5,0,0,0,0,274.3400497436523,0.0711526496288805,6.89874574004507,58.43835716681741,3.8290033683946536,14.958698984764437,-0.003212401566568987,0,0,1212.8230980159792,-0.03904732457783037,0.004446572546536724,0.0077232726,0,0,0,0 +1765,0.0030462294675345533,0.10670490263289913,0,0,2.123600021913132,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07293,0,457.00000254313153,4274.9668,738.9860382080077,20.91915499807752,277.9129994710286,352.9327257663859,0,0,0,0,0,0,0,0,0,0,0,0,4.596399853321979e-8,1.3852706e-6,0,0,0,0,2.539405793792563e-6,3.0313258e-5,0,0,0,0,274.37204742431635,0.07249688422153833,7.112382325014417,60.629457859488916,3.8781552227346054,15.679924105503577,-0.0034418588213239137,0,0,1250.7252029507404,0.10958166609721692,0.004446572546536724,0.0077232726,0,0,0,0 +1766,0.0033962667106833934,0.10866796551113769,0,0,2.1104599771353545,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07758,0,457.00000254313153,4275.2111,739.831085205078,20.853591900632743,277.95800018310547,349.3806450006132,0,0,0,0,0,0,0,0,0,0,0,0,9.192799588220169e-8,1.4212948e-6,0,0,0,0,5.078811454950483e-6,3.4371719e-5,0,0,0,0,274.3920516967773,0.07386651444808362,7.0362965307494045,59.85878462626717,3.884852897551278,15.358830814708325,-0.00367131607607884,0,0,1244.142076911234,-0.17848752670419268,0.004446572546536724,0.0077232726,0,0,0,0 +1767,0.003397374155845676,0.11066714309234521,0,0,2.112460701438636,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08566,0,457.00000254313153,4275.6359,740.7289835611978,20.999179455660748,278.0169982910156,349.61609899642303,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199471148095e-7,1.4573362e-6,0,0,0,0,7.618217182425724e-6,3.8432158e-5,0,0,0,0,274.42605082194007,0.07526202008951893,7.045382426953697,59.89102690050866,3.880476348727496,15.400564496222026,-0.0039007733308337685,0,0,1243.3080558862168,-0.23003967707403605,0.004446572546536724,0.0077232726,0,0,0,0 +1768,0.003398481601007963,0.1127030997830392,0,0,2.183132040203538,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04673,0,457.00000254313153,4273.5893,741.2220560709634,21.659452113517297,278.07799530029297,362.65368482709385,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599176440337e-7,1.4932143e-6,0,0,0,0,1.0157622909900965e-5,4.247379e-5,0,0,0,0,274.44704691569007,0.07668388999099586,7.223617820830233,62.365825552982606,4.039005153575375,16.063730202230957,-0.004130230585588698,0,0,1294.7054231244865,0.0295441238874522,0.004446572546536724,0.0077232726,0,0,0,0 +1769,0.0033995890461702483,0.11477651221290339,0,0,2.1376337416440134,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0767,0,457.00000254313153,4275.165,741.7470499674478,21.496335350339965,278.135004679362,355.02541845168975,0,0,0,0,0,0,0,0,0,0,0,0,2.298199900015637e-7,1.5293427e-6,0,0,0,0,1.2697028751063044e-5,4.6544254e-5,0,0,0,0,274.4680506388346,0.07813262223305735,7.157863703024064,60.95040360500106,3.9146198633161595,15.735094791574257,-0.004359687840343624,0,0,1273.3622210005092,0.1325346158749756,0.004446572546536724,0.0077232726,0,0,0,0 +1770,0.003400696491332528,0.11688806945965896,0,0,2.1393647387522594,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04544,0,457.00000254313153,4273.5216,742.3010152180989,21.63439757224449,278.1939977010091,355.3605475565106,0,0,0,0,0,0,0,0,0,0,0,0,2.757839894229619e-7,1.5651961e-6,0,0,0,0,1.5236434516433897e-5,5.0583038e-5,0,0,0,0,274.49504852294916,0.0796087243061151,7.155978283657899,60.96602720867275,3.9271229910537153,15.742715085469241,-0.004589145095098551,0,0,1277.4922103572562,0.03636234846097209,0.004446572546536724,0.0077232726,0,0,0,0 +1771,0.0037688917930248853,0.11903847327807247,0,0,2.1009097006210053,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07227,0,457.00000254313153,4274.9318,742.8711649576821,21.428921101329358,278.2700017293294,347.8619882938519,0,0,0,0,0,0,0,0,0,0,0,0,3.2174798529164644e-7,1.6013494e-6,0,0,0,0,1.7775840206013527e-5,5.4656378000000014e-5,0,0,0,0,274.5130513509114,0.08111271328822328,7.069218405010363,59.42424032933085,3.843192572805414,15.321977391799376,-0.0048186023498534795,0,0,1230.1282386704063,0.08889303627750589,0.004446572546536724,0.0077232726,0,0,0,0 +1772,0.00377000487949438,0.12122843833317697,0,0,2.0870775413423877,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08887,0,457.00000254313153,4275.8046,744.0189666748046,21.39461571539237,278.33399963378906,344.613473832749,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198589728254e-7,1.6374741e-6,0,0,0,0,2.0315245971384382e-5,5.8726423e-5,0,0,0,0,274.5310490926106,0.08264511602621083,7.043230561502576,58.72495294608385,3.8129800371340568,15.114183286240658,-0.0050480596046084064,0,0,1217.8363475826973,0.15110052169091734,0.004446572546536724,0.0077232726,0,0,0,0 +1773,0.003771117965963877,0.12345869243778378,0,0,2.0927556031478227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.06952,0,457.00000254313153,4274.7874,744.6629842122395,21.59523139318095,278.41199493408203,345.7768090889352,0,0,0,0,0,0,0,0,0,0,0,0,4.136759793974913e-7,1.6733555e-6,0,0,0,0,2.2854651888337685e-5,6.276843000000001e-5,0,0,0,0,274.54705047607416,0.08420646932023572,7.104503735011084,58.916568849809806,3.795742518659598,15.204663791112324,-0.005277516859363335,0,0,1220.6866453772807,0.17402255695782867,0.004446572546536724,0.0077232726,0,0,0,0 +1774,0.0037722310524333762,0.12572997679436368,0,0,2.1549007405251683,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0265,0,457.00000254313153,4272.5262,744.8780721028645,22.25970772945681,278.49099985758465,358.1035850352457,0,0,0,0,0,0,0,0,0,0,0,0,4.5963998474007894e-7,1.709014e-6,0,0,0,0,2.539405750212609e-5,6.678474599999999e-5,0,0,0,0,274.56504567464185,0.08579732011182588,7.347701469094086,61.31335787055999,3.8921060554545215,15.87559317662792,-0.005506974114118261,0,0,1266.4286163930858,0.18181443567658306,0.004446572546536724,0.0077232726,0,0,0,0 +1775,0.0037733441389028706,0.12804304624137816,0,0,2.148996596875075,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05246,0,457.00000254313153,4273.8905,745.3670603434243,22.200963290559795,278.58600362141925,355.04717285558434,0,0,0,0,0,0,0,0,0,0,0,0,5.056039735033361e-7,1.7452255e-6,0,0,0,0,2.7933463115914492e-5,7.0864778e-5,0,0,0,0,274.5790456136067,0.08741822567547253,7.269644819584187,60.54083046418634,3.9181029245147934,15.589135703603631,-0.0057364313688731865,0,0,1250.604503536799,0.18443600769588672,0.004446572546536724,0.0077232726,0,0,0,0 +1776,0.004161708793079992,0.13039866950414225,0,0,2.1121431315177817,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03943999999998,0,457.00000254313153,4273.2061,746.0480702718098,22.141942125209106,278.68299865722656,348.8985525123486,0,0,0,0,0,0,0,0,0,0,0,0,5.515679741089722e-7,1.7810977e-6,0,0,0,0,3.0472869184450246e-5,7.490574e-5,0,0,0,0,274.59404754638666,0.08906975381384338,7.261469977422546,59.38114479685163,3.777483547468073,15.370077015958627,-0.005965888623628117,0,0,1235.2601205170242,0.1853168155815639,0.004446572546536724,0.0077232726,0,0,0,0 +1777,0.004162821879549489,0.13279762945030274,0,0,2.170244783620918,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05273,0,457.00000254313153,4273.9048,746.7369181315103,22.568710059808843,278.7739969889323,357.54536101292035,0,0,0,0,0,0,0,0,0,0,0,0,5.975319747146083e-7,1.8172253e-6,0,0,0,0,3.301227479823865e-5,7.8976112e-5,0,0,0,0,274.6060485839843,0.09075248305668364,7.355973763265293,60.89349007083899,3.9379814138510616,15.673457529791746,-0.0061953458783830465,0,0,1262.6435516726208,0.1856126856704365,0.004446572546536724,0.0077232726,0,0,0,0 +1778,0.004163934966018991,0.13524072335001636,0,0,2.19800140223097,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04465,0,457.00000254313153,4273.48,746.7510579427083,22.856080929571224,278.86599985758465,362.75541346308773,0,0,0,0,0,0,0,0,0,0,0,0,6.434959753202444e-7,1.8531337e-6,0,0,0,0,3.5551680412027054e-5,8.3021224e-5,0,0,0,0,274.61804707845045,0.09246700286347481,7.434606066614661,61.78348694597739,4.021077006745745,15.899456247670447,-0.006424803133137972,0,0,1282.2802932337786,0.18571207513321009,0.004446572546536724,0.0077232726,0,0,0,0 +1779,0.004165048052488488,0.1377287631409144,0,0,2.1596157774386384,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03691,0,457.00000254313153,4273.0734,746.907023111979,22.820635694370733,278.9590021769206,355.9261715181252,0,0,0,0,0,0,0,0,0,0,0,0,6.894599664519774e-7,1.889034e-6,0,0,0,0,3.809108632898036e-5,8.706542400000001e-5,0,0,0,0,274.6290486653645,0.09421391382992209,7.418773457145868,60.500814881249,3.8656452035830986,15.627457862925702,-0.006654260387892898,0,0,1253.8091981813902,0.18574546502203013,0.004446572546536724,0.0077232726,0,0,0,0 +1780,0.004167169606582223,0.14026257569794193,0,0,2.18926758767753,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98817,0,457.00000254313153,4270.5109999999995,747.2310638427733,23.24616665378551,279.0540033976237,361.61404216072185,0,0,0,0,0,0,0,0,0,0,0,0,7.354239623206619e-7,1.9244033000000003e-6,0,0,0,0,4.063049224593366e-5,9.1048394e-5,0,0,0,0,274.639050801595,0.09599382789834296,7.569429120654667,61.61859566014493,3.8711479642945226,16.01838080056119,-0.0068837176426478274,0,0,1274.797708672403,0.18575668147078706,0.004446572546536724,0.0077232726,0,0,0,0 +1781,0.004659412904951052,0.14284300310816161,0,0,2.189441199921453,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04236000000002,0,457.00000254313153,4273.3596,747.7660471598306,23.249655483903965,279.14499918619794,360.09005386289476,0,0,0,0,0,0,0,0,0,0,0,0,7.81387962926298e-7,1.9610810000000003e-6,0,0,0,0,4.316989755655717e-5,9.5182182e-5,0,0,0,0,274.6470464070637,0.09780736857203022,7.505783352638315,61.19330647262292,3.9207239231952387,15.80695226528239,-0.007113174897402756,0,0,1277.5362524488116,0.18576045057214427,0.004446572546536724,0.0077232726,0,0,0,0 +1782,0.00466053247031568,0.14547090295061266,0,0,2.160522701160256,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03125,0,457.00000254313153,4272.7759,748.2900187174478,23.341758118914438,279.2430013020833,356.04655462228243,0,0,0,0,0,0,0,0,0,0,0,0,8.273519635319341e-7,1.9969148e-6,0,0,0,0,4.570930377667537e-5,9.9218691e-5,0,0,0,0,274.65404764811194,0.09965517113366511,7.519625787694825,60.48572145305894,3.7938381853855025,15.712820826828775,-0.007342632152157681,0,0,1261.0508762359207,0.18576171303887845,0.004446572546536724,0.0077232726,0,0,0,0 +1783,0.004662660503304549,0.14814714858131856,0,0,2.150725589743228,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0436,0,457.00000254313153,4273.4248,748.6270294189452,23.379916787266467,279.33999888102215,354.28692425367274,0,0,0,0,0,0,0,0,0,0,0,0,8.733159641375702e-7,2.0330816e-6,0,0,0,0,4.824870908729887e-5,1.0329359e-4,0,0,0,0,274.6580505371093,0.1015378828678566,7.496232273464098,60.10171272373322,3.7887381780047664,15.607260472139073,-0.007572089406912609,0,0,1258.691215611721,-1.6071113091275233,0.004446572546536724,0.0077232726,0,0,0,0 +1784,0.004663780068669177,0.15087262942353824,0,0,2.140542212443426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05531,0,457.00000254313153,4274.0405,748.9340260823567,23.29404230240209,279.4340006510417,350.5694962640399,0,0,0,0,0,0,0,0,0,0,0,0,9.192799552693032e-7,2.0692567e-6,0,0,0,0,5.078811530741708e-5,1.0736946e-4,0,0,0,0,274.6640548706054,0.10345616328788484,7.381156400424443,59.21225989324307,3.835360348467436,15.228141255684468,-0.007801546661667537,0,0,1241.0913844308948,-3.4875496425880166,0.004446572546536724,0.0077232726,0,0,0,0 +1785,0.004666993144531652,0.1536482512633568,0,0,2.1658396912622853,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02817,0,457.00000254313153,4272.6136,749.2520395914712,23.80210553725873,279.53200276692706,356.805125351722,0,0,0,0,0,0,0,0,0,0,0,0,9.652439748227455e-7,2.1048124e-6,0,0,0,0,5.332752031487568e-5,1.113739e-4,0,0,0,0,274.66904958089185,0.1054106843667286,7.538152323485599,60.494479362546464,3.8216491921096964,15.732711479772949,-0.00803100391642247,0,0,1266.5681498543852,-1.3227211965923305,0.004446572546536724,0.0077232726,0,0,0,0 +1786,0.005295379572172684,0.15647493655071468,0,0,2.158683484868033,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02684000000001,0,457.00000254313153,4272.5442,749.563980102539,23.831994998220747,279.6290003458659,354.20587729579694,0,0,0,0,0,0,0,0,0,0,0,0,1.011207928058866e-6,2.14077e-6,0,0,0,0,5.586692683815878e-5,1.1542471e-4,0,0,0,0,274.67605336507154,0.10740213077245707,7.4910842541914535,59.91468240707549,3.8263162148060967,15.467157122376957,-0.008260461171177394,0,0,1263.905903422694,-0.4872575238005176,0.004446572546536724,0.0077232726,0,0,0,0 +1787,0.005297507605161552,0.15935362470597414,0,0,2.18517929356942,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03415,0,457.00000254313153,4272.9283,749.6690826416014,24.17652817967206,279.72900136311847,358.7933682521366,0,0,0,0,0,0,0,0,0,0,0,0,1.0571719712970662e-6,2.1768802999999995e-6,0,0,0,0,5.840633214878229e-5,1.1949308e-4,0,0,0,0,274.6780471801757,0.10943120010806894,7.555171969721947,60.75335707654267,3.8851079963013144,15.71033145518615,-0.00848991842593232,0,0,1281.3314192960927,-0.09613776148013498,0.004446572546536724,0.0077232726,0,0,0,0 +1788,0.005298627170526176,0.16228527243212662,0,0,2.255223483707013,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9922,0,457.00000254313153,4270.7227,750.1610209147134,24.855928924260272,279.83099873860675,371.3570923496072,0,0,0,0,0,0,0,0,0,0,0,0,1.1031359387440414e-6,2.2120831e-6,0,0,0,0,6.094573836890049e-5,1.2345688999999995e-4,0,0,0,0,274.67704772949213,0.11149860315586238,7.730934740743885,63.12433046674855,4.038519355079948,16.343354337191045,-0.008719375680687248,0,0,1326.080725437415,0.0885310651741068,0.004446572546536724,0.0077232726,0,0,0,0 +1789,0.005300755203515047,0.16527085403274291,0,0,2.2076646319075275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0242,0,457.00000254313153,4272.405,750.6470489501952,24.717072836600927,279.93299865722656,363.4416445787676,0,0,0,0,0,0,0,0,0,0,0,0,1.149099944086629e-6,2.2486571e-6,0,0,0,0,6.348514337635909e-5,1.2757871e-4,0,0,0,0,274.6780522664387,0.11360506412642196,7.663516243062957,61.632292379507476,3.911091424062233,16.00040861482673,-0.008948832935442175,0,0,1300.9350554928549,0.1529858926017705,0.004446572546536724,0.0077232726,0,0,0,0 +1790,0.005302883236503912,0.16831136173577357,0,0,2.2164369958956196,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99139,0,457.00000254313153,4270.6805,751.1640370686848,24.942208573783375,280.03700256347656,364.880216392627,0,0,0,0,0,0,0,0,0,0,0,0,1.195063968377023e-6,2.2839743e-6,0,0,0,0,6.60245495964773e-5,1.3155567e-4,0,0,0,0,274.67705281575513,0.11575132091230927,7.680254371033305,61.84599180813865,3.9372032070765473,16.056743908676,-0.009178290190197105,0,0,1304.8004807748046,0.1747471382296157,0.004446572546536724,0.0077232726,0,0,0,0 +1791,0.005920182770600551,0.1714078060233054,0,0,2.172583556470899,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02128,0,457.00000254313153,4272.2515,751.7080535888671,24.778432167331218,280.14099884033203,356.6583861664455,0,0,0,0,0,0,0,0,0,0,0,0,1.2410279168761917e-6,2.320551e-6,0,0,0,0,6.85639552102657e-5,1.3567783e-4,0,0,0,0,274.6740468343098,0.11793812534654649,7.556943543496139,60.21873920423577,3.848117366332663,15.616449876377857,-0.00940774744495203,0,0,1284.7688041559788,0.18206199111341248,0.004446572546536724,0.0077232726,0,0,0,0 +1792,0.006098811288557544,0.17456121596738536,0,0,2.1616507929601063,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04466,0,457.00000254313153,4273.4807,752.2780151367186,24.818892944319888,280.2409973144531,354.25153761087523,0,0,0,0,0,0,0,0,0,0,0,0,1.286991960114392e-6,2.3570319e-6,0,0,0,0,7.110336143038391e-5,1.3978892e-4,0,0,0,0,274.6740468343098,0.12016624346598324,7.499155044750518,59.70568574139235,3.8521685509833974,15.44666919254658,-0.009637204699706955,0,0,1279.936623401035,0.18451935326733201,0.004446572546536724,0.0077232726,0,0,0,0 +1793,0.00610508215549315,0.17777263957202216,0,0,2.1532738339280715,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02605,0,457.00000254313153,4272.5025,752.6820678710936,25.03153140920904,280.33199818929035,353.37230933667234,0,0,0,0,0,0,0,0,0,0,0,0,1.3329559275613672e-6,2.3926083e-6,0,0,0,0,7.364276643784251e-5,1.4379579e-4,0,0,0,0,274.65905253092444,0.12243645577963895,7.518120739119681,59.58493949599902,3.7981346475872892,15.477979537880952,-0.009866661954461885,0,0,1276.6758910223705,0.18534481647704806,0.004446572546536724,0.0077232726,0,0,0,0 +1794,0.006092419359098298,0.18104314412147968,0,0,2.2138431157688125,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98417,0,457.00000254313153,4270.3009999999995,753.2520446777343,25.76753777758947,280.41500091552734,365.72191403060503,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199329039548e-6,2.4276195000000003e-6,0,0,0,0,7.618217265796072e-5,1.4773748e-4,0,0,0,0,274.6480560302734,0.1247495575421151,7.731535991085819,62.03822453198564,3.901984420737959,16.16525997375536,-0.010096119209216816,0,0,1323.3915439011364,0.18562210038833984,0.004446572546536724,0.0077232726,0,0,0,0 +1795,0.006095932503617563,0.18437381653497847,0,0,2.2026922727614937,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01093,0,457.00000254313153,4271.7076,753.8410644531249,25.77334281488129,280.4919967651367,362.19212268926736,0,0,0,0,0,0,0,0,0,0,0,0,1.4248839571943488e-6,2.4642054e-6,0,0,0,0,7.872157827174912e-5,1.5186068000000002e-4,0,0,0,0,274.63105265299475,0.12710635903217238,7.626169221355247,61.24273214189555,3.9191066213899726,15.883131946283404,-0.01032557646397174,0,0,1307.1177907303108,0.18571524277301074,0.004446572546536724,0.0077232726,0,0,0,0 +1796,0.006396386441099536,0.18776576372792214,0,0,2.1531546155773227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99978,0,457.00000254313153,4271.1214,754.5180511474608,25.74058406529963,280.5549952189128,354.4783029356138,0,0,0,0,0,0,0,0,0,0,0,0,1.4708479056935175e-6,2.4998985e-6,0,0,0,0,8.126098449186732e-5,1.55881e-4,0,0,0,0,274.6150538126627,0.1295076858365712,7.5818630966127785,59.864242428463136,3.749609514115161,15.62836980130604,-0.010555033718726669,0,0,1286.4148371024328,0.056138903072538514,0.004446572546536724,0.0077232726,0,0,0,0 +1797,0.006712627262260326,0.19122011297976946,0,0,2.2134750361996645,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01623,0,457.00000254313153,4271.986,755.2560729980468,26.23006225836581,280.6230010986328,363.54823719907995,0,0,0,0,0,0,0,0,0,0,0,0,1.5168119489317178e-6,2.5362748e-6,0,0,0,0,8.380038949932593e-5,1.5998003e-4,0,0,0,0,274.6010538736979,0.1319543791392746,7.636302581611899,61.4713769474247,3.9409741021501565,15.938653048219956,-0.010784490973481595,0,0,1322.1792002170396,-0.04279485298025665,0.004446572546536724,0.0077232726,0,0,0,0 +1798,0.006990649026827593,0.19473801230867469,0,0,2.2340562829342026,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0081,0,457.00000254313153,4271.559,756.1130472819009,26.546440122432795,280.68200429280597,367.6501027985187,0,0,0,0,0,0,0,0,0,0,0,0,1.562775925852596e-6,2.5720343e-6,0,0,0,0,8.633979571944413e-5,1.6400798999999998e-4,0,0,0,0,274.5840530395507,0.1344472960161143,7.671017715782881,62.197639026391784,4.015700360730371,16.12667274116127,-0.011013948228236524,0,0,1344.4943107799907,0.057545267787991024,0.004446572546536724,0.0077232726,0,0,0,0 +1799,0.007363034100288113,0.19832063085301946,0,0,2.2072921648839388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99068,0,457.00000254313153,4270.6431,756.9420471191405,26.706488169365446,280.7529983520508,363.4860469038741,0,0,0,0,0,0,0,0,0,0,0,0,1.6087399217212806e-6,2.6075323e-6,0,0,0,0,8.887920133323253e-5,1.6800578999999998e-4,0,0,0,0,274.5700480143229,0.13698730973502452,7.674462849763394,61.49623019706863,3.882903388386678,16.03734278779562,-0.011243405482991452,0,0,1332.7327654492608,0.14035414546167346,0.004446572546536724,0.0077232726,0,0,0,0 +1800,0.007853247961014498,0.20196915925996428,0,0,2.2159740553936684,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95838,0,457.00000254313153,4268.9449,757.7620493570962,27.056343077702923,280.83399709065753,365.8466368441075,0,0,0,0,0,0,0,0,0,0,0,0,1.6547039554855776e-6,2.6425936e-6,0,0,0,0,9.141860694702093e-5,1.7195328999999998e-4,0,0,0,0,274.54705047607416,0.13957531006194712,7.7406453217716145,62.00320914073126,3.867691465248536,16.242141697691363,-0.011477676635976337,0,0,1351.4018850842497,0.17040288697636866,0.004446572546536724,0.0077232726,0,0,0,0 +1801,0.0077923631049037195,0.2056848100811483,0,0,2.219401689900871,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01099,0,457.00000254313153,4271.7107,758.5840606689452,27.12488718150826,280.9189987182617,364.91706838648093,0,0,0,0,0,0,0,0,0,0,0,0,1.7006678945108433e-6,2.6800125e-6,0,0,0,0,9.395801256080934e-5,1.7617249e-4,0,0,0,0,274.5320510864257,0.1422122035725165,7.701186978248275,61.665647788634544,3.9218437626561613,16.063733218320355,-0.011716461343221001,0,0,1346.3126694277855,0.1805980962819972,0.004446572546536724,0.0077232726,0,0,0,0 +1802,0.010116776318211833,0.20946881817566826,0,0,2.2026926609955066,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99468,0,457.00000254313153,4270.8532,759.5070699055989,27.339784315547476,280.9939956665039,362.96270750693964,0,0,0,0,0,0,0,0,0,0,0,0,1.7466319377490436e-6,2.7155059e-6,0,0,0,0,9.649741878092755e-5,1.8016977e-4,0,0,0,0,274.5230509440104,0.14489891396963264,7.763054085257172,61.32615659022455,3.814905719116379,16.0758236117733,-0.011955246050465669,0,0,1365.7924593201149,0.18402739824539616,0.004446572546536724,0.0077232726,0,0,0,0 +1803,0.008763957676258299,0.2133224411204717,0,0,2.1800158282432216,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0108,0,457.00000254313153,4271.7009,760.5080464680989,27.320499854247753,281.07299550374347,358.65077997506035,0,0,0,0,0,0,0,0,0,0,0,0,1.7925959146699217e-6,2.7519421e-6,0,0,0,0,9.903682439471595e-5,1.8427573e-4,0,0,0,0,274.50505065917963,0.1476363824070339,7.720863756565482,60.404341817460505,3.773697198795284,15.83103087932591,-0.01219403075771034,0,0,1340.0232615916289,0.18517955647392584,0.004446572546536724,0.0077232726,0,0,0,0 +1804,0.009565590378222546,0.2172469596283,0,0,2.197298086929074,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0121,0,457.00000254313153,4271.7691,761.5410817464192,27.46474997353236,281.15699768066406,359.52869597563125,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599105386063e-6,2.7879493e-6,0,0,0,0,1.0157623000850435e-4,1.8833223e-4,0,0,0,0,274.4860483805338,0.1504255678189829,7.687086730342071,60.36470274902327,3.8714733047891783,15.676248110600966,-0.012432815464955008,0,0,1347.9906823261654,0.1855665834344882,0.004446572546536724,0.0077232726,0,0,0,0 +1805,0.009351564248471856,0.2212436779733203,0,0,2.215042398148324,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98963,0,457.00000254313153,4270.588,762.6710561116536,27.95079819780367,281.23399607340497,364.30370432998336,0,0,0,0,0,0,0,0,0,0,0,0,1.8845239443029034e-6,2.8232141e-6,0,0,0,0,1.0411563562229276e-4,1.9230319e-4,0,0,0,0,274.46604665120435,0.15326744725618094,7.835162208853216,61.31991145746931,3.843518327224849,16.094154796194182,-0.012671600172199671,0,0,1367.0219318674867,0.18569659271698705,0.004446572546536724,0.0077232726,0,0,0,0 +1806,0.009786482457224585,0.22531392442458775,0,0,2.222822584756122,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98239,0,457.00000254313153,4270.2074,763.799077351888,28.134372446801326,281.32200113932294,364.34322933574117,0,0,0,0,0,0,0,0,0,0,0,0,1.930487997015007e-6,2.8589339e-6,0,0,0,0,1.0665504184241097e-4,1.9632654e-4,0,0,0,0,274.44705200195307,0.15616301622802836,7.843541453054056,61.22344968188294,3.8770122853259146,15.951443167692844,-0.01291038487944434,0,0,1370.2972329819197,0.18574025872045344,0.004446572546536724,0.0077232726,0,0,0,0 +1807,0.01047013855726404,0.22945905168748248,0,0,2.2398719818574606,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99423,0,457.00000254313153,4270.8298,765.0220794677733,28.45865602722048,281.40900166829425,367.234932813752,0,0,0,0,0,0,0,0,0,0,0,0,1.976451850775144e-6,2.8952686e-6,0,0,0,0,1.0919444745619937e-4,2.0042079e-4,0,0,0,0,274.4280471801757,0.15911328905135125,7.906227328891799,61.706469136452746,3.9067413834348796,16.117564084518662,-0.013149169586689009,0,0,1389.725529173022,0.1857549291426783,0.004446572546536724,0.0077232726,0,0,0,0 +1808,0.0097850874703066491,0.23368043735326766,0,0,2.311936484434354,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95199,0,457.00000254313153,4268.6094,766.3190816243489,29.185241168144344,281.4959996541341,380.03527200344246,0,0,0,0,0,0,0,0,0,0,0,0,2.022415856117732e-6,2.9298066e-6,0,0,0,0,1.1173385246365797e-4,2.0430798e-4,0,0,0,0,274.41105143229163,0.16211929920571624,8.095303457182244,64.08195973155631,4.0703582727403695,16.731546899631116,-0.013387954293933677,0,0,1425.5751228095764,0.1857598571570931,0.004446572546536724,0.0077232726,0,0,0,0 +1809,0.009793704265605399,0.23797948435691788,0,0,2.267442640293564,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.979,0,457.00000254313153,4270.0292,767.6550801595051,29.128658126909023,281.56599680582684,372.8486855412818,0,0,0,0,0,0,0,0,0,0,0,0,2.068379899355932e-6,2.9666566e-6,0,0,0,0,1.1427325929010597e-4,2.084616e-4,0,0,0,0,274.3830540974934,0.16518209969545813,8.062766978193096,62.71002212876877,3.9400684962479615,16.440165993612062,-0.013626739001178344,0,0,1403.1315870359595,-3.365688134186352,0.004446572546536724,0.0077232726,0,0,0,0 +1810,0.010412685282412803,0.24235762144337059,0,0,2.279523715758953,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93988,0,457.00000254313153,4267.9729,769.1471150716145,29.42453241885191,281.6480026245117,374.7180119050739,0,0,0,0,0,0,0,0,0,0,0,0,2.1143439425941324e-6,3.001229600000001e-6,0,0,0,0,1.1681266429756458e-4,2.1235282e-4,0,0,0,0,274.3600463867187,0.16830276341854683,8.107079152206923,62.97351665449524,3.9615915998724422,16.525388081401466,-0.013865523708423014,0,0,1414.1945614469914,-2.313830028435405,0.004446572546536724,0.0077232726,0,0,0,0 +1811,0.011014901476711613,0.24681630364235504,0,0,2.252530235973812,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96903,0,457.00000254313153,4269.505,770.71804300944,29.40578755819684,281.71799723307294,369.2694863079116,0,0,0,0,0,0,0,0,0,0,0,0,2.1603079858323326e-6,3.0381873e-6,0,0,0,0,1.1935207051768278e-4,2.1651886e-4,0,0,0,0,274.3340479532877,0.17148238354242323,8.026948341108737,61.82960599561912,3.9187456997844685,16.18886557071267,-0.014104308415667684,0,0,1403.686743399878,-0.7123016214302859,0.004446572546536724,0.0077232726,0,0,0,0 +1812,0.011395911929257216,0.2513570127519567,0,0,2.228006934512883,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99029,0,457.00000254313153,4270.6225,772.2101186116536,29.420298496849927,281.7899983723958,364.5806874718721,0,0,0,0,0,0,0,0,0,0,0,0,2.20627183959247e-6,3.0749001e-6,0,0,0,0,1.2189147552514139e-4,2.2065669e-4,0,0,0,0,274.3040517171223,0.17472207388693542,7.965169636083453,60.85746996681422,3.875988658118611,15.929050627989685,-0.014343093122912353,0,0,1394.884132023951,-0.11856299687933905,0.004446572546536724,0.0077232726,0,0,0,0 +1813,0.011449080560791872,0.25598125783107806,0,0,2.2319968590304815,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97005,0,457.00000254313153,4269.5589,773.7009938557942,29.7784760297943,281.8580017089844,365.91388742059627,0,0,0,0,0,0,0,0,0,0,0,0,2.2522358449350577e-6,3.110098e-6,0,0,0,0,1.244308817452596e-4,2.2461994e-4,0,0,0,0,274.2670516967773,0.17802296931450928,8.032995952278533,61.13613019851266,3.844088557026285,16.064915035546967,-0.014581877830157016,0,0,1400.3255529877902,0.08341540584179588,0.004446572546536724,0.0077232726,0,0,0,0 +1814,0.011703715690574799,0.26069057570095894,0,0,2.291579691300283,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93883999999998,0,457.00000254313153,4267.9182,774.8281351725259,30.547851858136706,281.9310048421224,377.9855416791419,0,0,0,0,0,0,0,0,0,0,0,0,2.298199888173258e-6,3.1448486e-6,0,0,0,0,1.269702879653778e-4,2.2853159e-4,0,0,0,0,274.2310485839843,0.18138622612769045,8.255365791822651,63.491928228846156,3.9468734522371403,16.719923485538892,-0.014820662537401687,0,0,1449.119879767822,0.1513774178324831,0.004446572546536724,0.0077232726,0,0,0,0 +1815,0.012094116593579975,0.2654865314559236,0,0,2.2873246936294374,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94955,0,457.00000254313153,4268.4808,776.1400197347004,30.644339540877155,281.9919967651367,375.58066479556715,0,0,0,0,0,0,0,0,0,0,0,0,2.344163931411458e-6,3.1811772e-6,0,0,0,0,1.295096929728364e-4,2.3262515e-4,0,0,0,0,274.1810506184895,0.18481302247419681,8.178894557702046,62.871575698722964,3.9779982661109097,16.487496881933723,-0.015059447244646357,0,0,1442.8346042595695,-3.3418049013197435,0.004446572546536724,0.0077232726,0,0,0,0 +1816,0.013382562792105972,0.27037071898352416,0,0,2.2610219999980314,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93504,0,457.00000254313153,4267.7184,777.380157470703,30.799856219058316,282.0590006510417,371.6298227687404,0,0,0,0,0,0,0,0,0,0,0,0,2.3901279746496584e-6,3.2165261e-6,0,0,0,0,1.320490991929546e-4,2.3660577e-4,0,0,0,0,274.1430511474609,0.1883045587596232,8.188247476569973,62.14643251873565,3.866008444908697,16.395033850520726,-0.01538342230023426,0,0,1449.5176305014372,-4.328813791919775,0.004446572546536724,0.0077232726,0,0,0,0 +1817,0.013970105691413876,0.2753447614942531,0,0,2.2961805691271597,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95336,0,457.00000254313153,4268.6815,778.9910329182942,31.198395410102997,282.1270014444987,376.4429441283954,0,0,0,0,0,0,0,0,0,0,0,0,2.4360918284097957e-6,3.2531745000000007e-6,0,0,0,0,1.345885054130728e-4,2.4073619e-4,0,0,0,0,274.10705566406244,0.1918620580679428,8.22082538393248,62.94153100870699,3.9812025759726706,16.517228645555626,-0.015754264592881567,0,0,1472.005826655642,-1.519519756284862,0.004446572546536724,0.0077232726,0,0,0,0 +1818,0.01405484729122227,0.2804103120610006,0,0,2.335490104759264,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94012,0,457.00000254313153,4267.9855,780.3030497233071,31.68760831940507,282.1999994913737,383.9142096017897,0,0,0,0,0,0,0,0,0,0,0,0,2.4820558337523835e-6,3.2885565000000008e-6,0,0,0,0,1.371279092078718e-4,2.4472062e-4,0,0,0,0,274.07105000813795,0.19548676658995365,8.306817108343136,64.26768048931984,4.1092958455936754,16.849648882949314,-0.01612510688552888,0,0,1503.3307533939446,-0.39544551956287705,0.004446572546536724,0.0077232726,0,0,0,0 +1819,0.01412101034059915,0.28556905416843703,0,0,2.304129482409452,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92235,0,457.00000254313153,4267.0511,781.42605082194,31.84544135012051,282.27200571695965,378.33258383444644,0,0,0,0,0,0,0,0,0,0,0,0,2.5280198769905837e-6,3.3237292e-6,0,0,0,0,1.396673166406496e-4,2.4868094e-4,0,0,0,0,274.05004882812494,0.19917995405981814,8.302878858634369,63.25758927353961,3.9635191901767652,16.665198211860137,-0.016495949178176192,0,0,1480.3972085438447,-0.009852951526022849,0.004446572546536724,0.0077232726,0,0,0,0 +1820,0.014336733148844732,0.29082270227250195,0,0,2.32104876587155,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88909,0,457.00000254313153,4265.3029,782.4270782470702,32.333394668843965,282.3460006713867,382.4197482792824,0,0,0,0,0,0,0,0,0,0,0,0,2.573983920228784e-6,3.3582175000000007e-6,0,0,0,0,1.4220672286076783e-4,2.5256240000000004e-4,0,0,0,0,274.0070495605468,0.20294291419985105,8.41607797478937,64.0766432984354,3.958562233257077,16.963564409475474,-0.0168667914708235,0,0,1500.1274234919138,0.12003571660703966,0.004446572546536724,0.0077232726,0,0,0,0 +1821,0.014562069432518771,0.2961730023701861,0,0,2.3334837772109833,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93899,0,457.00000254313153,4267.9261,783.568130493164,32.52138863261211,282.4150034586589,382.89753410088764,0,0,0,0,0,0,0,0,0,0,0,0,2.6199479634669842e-6,3.396252e-6,0,0,0,0,1.4474612665556683e-4,2.5685255e-4,0,0,0,0,273.9700495402018,0.20677696517370964,8.396299170642942,63.987449087582284,4.029731628274296,16.860100322541292,-0.01723763376347081,0,0,1506.0001599344928,0.06037517262922151,0.004446572546536724,0.0077232726,0,0,0,0 +1822,0.015133379255268703,0.30162173257979613,0,0,2.3025151175170526,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92104,0,457.00000254313153,4266.9822,784.9560546874999,32.73451051970765,282.4769999186198,378.6708004400731,0,0,0,0,0,0,0,0,0,0,0,0,2.665911836174928e-6,3.4313761e-6,0,0,0,0,1.4728553408834463e-4,2.6080728e-4,0,0,0,0,273.9330520629882,0.21068345004814615,8.447852069179593,63.22724653024458,3.871133523422822,16.796298079496715,-0.017608476056118122,0,0,1499.4772542487524,0.0654325060086605,0.004446572546536724,0.0077232726,0,0,0,0 +1823,0.01603814933316958,0.30717070373189426,0,0,2.2824717646567367,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94096,0,457.00000254313153,4268.0293,786.2210744222004,32.75571508609182,282.54000091552734,374.3931813157347,0,0,0,0,0,0,0,0,0,0,0,0,2.7118758225697093e-6,3.4681677e-6,0,0,0,0,1.4982493909580322e-4,2.6495418e-4,0,0,0,0,273.89505004882807,0.21466373726348362,8.395261063519708,62.26076437261461,3.846052063384317,16.532712282905738,-0.01797931834876543,0,0,1499.6047524729552,-0.2700677190301451,0.004446572546536724,0.0077232726,0,0,0,0 +1824,0.01650100893154855,0.31282175997110956,0,0,2.310947810882604,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93425,0,457.00000254313153,4267.6765,787.4750722249348,33.05197869569693,282.6179962158203,377.040711415511,0,0,0,0,0,0,0,0,0,0,0,0,2.7578398658079095e-6,3.5037779e-6,0,0,0,0,1.5236434531592144e-4,2.6896492e-4,0,0,0,0,273.847048441569,0.21871922111297978,8.395833943142073,62.56343379800663,3.956577312910641,16.47072525551795,-0.018354944497914732,0,0,1512.9125520641012,-0.02966138430388376,0.004446572546536724,0.0077232726,0,0,0,0 +1825,0.01722266283199113,0.3185767793690206,0,0,2.3227031118101618,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91652,0,457.00000254313153,4266.7449,788.7140604654946,33.52533881675272,282.6759999593099,380.31674976188685,0,0,0,0,0,0,0,0,0,0,0,0,2.8038039090461098e-6,3.5388691e-6,0,0,0,0,1.5490375032338002e-4,2.7291587000000003e-4,0,0,0,0,273.78604634602857,0.22285132223124796,8.516236488505783,63.185789553909586,3.9190680646113942,16.80867752489523,-0.0187628709494922,0,0,1538.203336309689,0.11056506113548577,0.004446572546536724,0.0077232726,0,0,0,0 +1826,0.017382230465949125,0.32443767454831385,0,0,2.320968833647435,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90841,0,457.00000254313153,4266.3186,789.8310445149739,33.74810290483613,282.6929982503255,378.82226551401243,0,0,0,0,0,0,0,0,0,0,0,0,2.84976795228431e-6,3.574385500000001e-6,0,0,0,0,1.5744315654349825e-4,2.7691579e-4,0,0,0,0,273.72805023193354,0.22706148809190466,8.523620414150141,62.815941509777446,3.9116044827887784,16.620779080998844,-0.01917079740106968,0,0,1531.9828127801402,0.16037395519074635,0.004446572546536724,0.0077232726,0,0,0,0 +1827,0.01863987745517804,0.3304063933184248,0,0,2.3463377823547544,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91515,0,457.00000254313153,4266.6729,790.8700917561848,34.15505001036133,282.69299570719403,382.4773392117438,0,0,0,0,0,0,0,0,0,0,0,0,2.8957318249922537e-6,3.6105981e-6,0,0,0,0,1.5998256276361644e-4,2.8099598e-4,0,0,0,0,273.67705535888666,0.23135119351461897,8.585850324307904,63.38999010724139,3.9627935910031815,16.799919229980286,-0.01957872385264715,0,0,1566.0922143761854,0.17722825483510965,0.004446572546536724,0.0077232726,0,0,0,0 +1828,0.01882474558367928,0.33648491932287206,0,0,2.420774152646399,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.87222,0,457.00000254313153,4264.4159,791.9830423990884,34.99912851284667,282.708002726237,395.9754324666183,0,0,0,0,0,0,0,0,0,0,0,0,2.941695811387035e-6,3.6444139e-6,0,0,0,0,1.6252196777107505e-4,2.847999e-4,0,0,0,0,273.6410522460937,0.23572194118174164,8.801495946618267,65.90535948629658,4.116354977084998,17.480564495882128,-0.019986650304224626,0,0,1618.0207226022496,0.18289538758840385,0.004446572546536724,0.0077232726,0,0,0,0 +1829,0.01866419595593191,0.34267527269850206,0,0,2.379376332459752,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90025,0,457.00000254313153,4265.8895,793.0000712076821,35.0164051294104,282.76099650065106,389.1746282041487,0,0,0,0,0,0,0,0,0,0,0,0,2.9876598546252353e-6,3.6816572e-6,0,0,0,0,1.6506137277853364e-4,2.8899889e-4,0,0,0,0,273.6020533243815,0.24017526216469398,8.767229394465893,64.57289823663554,4.000350816006103,17.19408165401919,-0.020394576755802103,0,0,1597.2383021208498,0.18479929364776207,0.004446572546536724,0.0077232726,0,0,0,0 +1830,0.024933734074320084,0.3489795107468605,0,0,2.4031598307534434,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8667,0,457.00000254313153,4264.1256,793.9600270589192,35.40215533786149,282.8249994913737,392.10653286413964,0,0,0,0,0,0,0,0,0,0,0,0,3.0336238978634356e-6,3.7158665e-6,0,0,0,0,1.6760078021131145e-4,2.9284816e-4,0,0,0,0,273.5640513102213,0.24471271646030182,8.81880644628117,64.94076179033591,4.038430290401805,17.314251572854413,-0.020802503207379586,0,0,1705.903253614498,0.1854388472573092,0.004446572546536724,0.0077232726,0,0,0,0 +1831,0.02366017773383691,0.3553997286179164,0,0,2.3613471253941487,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89173999999998,0,457.00000254313153,4265.442,794.810073852539,35.37418704933364,282.8909962972005,384.20125072452805,0,0,0,0,0,0,0,0,0,0,0,0,3.079587941101636e-6,3.7529959e-6,0,0,0,0,1.7014018521877006e-4,2.97034e-4,0,0,0,0,273.52005004882807,0.24933589353726177,8.731507391555889,63.33682174076503,3.9474094529519688,16.877728667025877,-0.02121042965895705,0,0,1661.033130299973,-2.2447406013527207,0.004446572546536724,0.0077232726,0,0,0,0 +1832,0.023685925177870507,0.3619380600063637,0,0,2.3538632990393804,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90924,0,457.00000254313153,4266.362,795.5789845784504,35.562723492003244,282.9219970703125,382.363398002473,0,0,0,0,0,0,0,0,0,0,0,0,3.1255518138095795e-6,3.7897747e-6,0,0,0,0,1.7267959022622867e-4,3.0117945e-4,0,0,0,0,273.4440485636393,0.25404641289293156,8.712430008651964,62.87089656141417,3.946175052921808,16.738986754109227,-0.021652683906249543,0,0,1660.6105827511283,-1.4987682109213591,0.004446572546536724,0.0077232726,0,0,0,0 +1833,0.024226693427449875,0.3685966778607331,0,0,2.356959381290607,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89175,0,457.00000254313153,4265.4426,796.1241149902343,35.98083111069253,282.96599833170575,383.4537927943128,0,0,0,0,0,0,0,0,0,0,0,0,3.171515800204361e-6,3.824754e-6,0,0,0,0,1.7521899765900648e-4,3.0511746e-4,0,0,0,0,273.3720499674479,0.2588459246206396,8.790922956695082,63.06958370159948,3.905335593523844,16.86449692010886,-0.02214928975776249,0,0,1673.8749364362222,-0.4194845439142279,0.004446572546536724,0.0077232726,0,0,0,0 +1834,0.02470258560682817,0.3753777951055501,0,0,2.4124454659285632,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.854,0,457.00000254313153,4263.4584,797.0440368652343,36.761060965311756,283.0279998779297,394.1429023376304,0,0,0,0,0,0,0,0,0,0,0,0,3.217479843442561e-6,3.8586347e-6,0,0,0,0,1.7775840266646506e-4,3.089289e-4,0,0,0,0,273.2140502929687,0.2637361099877118,9.001420472247489,65.10499264081507,3.9890612936666887,17.454285340709294,-0.02264589560927544,0,0,1721.2693465918007,-0.01933718178498213,0.004446572546536724,0.0077232726,0,0,0,0 +1835,0.025273637508183497,0.38228366537677744,0,0,2.4054563746496176,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8698,0,457.00000254313153,4264.2887,797.8309682210286,36.88278972577237,283.08599853515625,390.5551391819573,0,0,0,0,0,0,0,0,0,0,0,0,3.2634438866807614e-6,3.8953332e-6,0,0,0,0,1.8029780767392367e-4,3.1306506e-4,0,0,0,0,273.07905069986975,0.2687186820244191,8.925548285908778,64.23544316564437,3.998558037017324,17.170486789731093,-0.023142501460788386,0,0,1718.2221250231016,-1.6633625299236003,0.004446572546536724,0.0077232726,0,0,0,0 +1836,0.029221069497854205,0.389316583770789,0,0,2.4041879560344257,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84901,0,457.00000254313153,4263.1961,798.1060129801431,37.24729235142932,283.1489995320638,389.978664389183,0,0,0,0,0,0,0,0,0,0,0,0,3.3094079299189616e-6,3.9300644999999986e-6,0,0,0,0,1.8283721389404187e-4,3.1697451e-4,0,0,0,0,272.9540532430012,0.2737953861240514,8.99301508642379,64.08016333132153,3.917445996447821,17.23500428603742,-0.02363910731230133,0,0,1783.0834194781103,-1.0677252796589791,0.004446572546536724,0.0077232726,0,0,0,0 +1837,0.02926039926471735,0.39647888760712147,0,0,2.4402101737227215,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.86946,0,457.00000254313153,4264.2707,798.115982055664,37.699806775525964,283.19800059000653,394.75650376781886,0,0,0,0,0,0,0,0,0,0,0,0,3.3553718026269053e-6,3.9670389e-6,0,0,0,0,1.853766201141601e-4,3.2114251e-4,0,0,0,0,272.8730545043945,0.2789680006543284,9.027059824256213,64.82242714481194,4.040217213334495,17.353835237590644,-0.02413571316381428,0,0,1798.0881971564909,-0.2640591208376881,0.004446572546536724,0.0077232726,0,0,0,0 +1838,0.030288692886915835,0.4037729572052591,0,0,2.477311745666847,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85548,0,457.00000254313153,4263.5362,797.937016805013,38.242109615281024,283.2530034383138,401.2961870125921,0,0,0,0,0,0,0,0,0,0,0,0,3.4013357890216867e-6,4.0021199e-6,0,0,0,0,1.8791602512161867e-4,3.2509225e-4,0,0,0,0,272.8660507202148,0.28423833758036093,9.122535894908143,65.94724656685626,4.142172855024622,17.64153847089682,-0.024632319015327232,0,0,1841.5431392468436,0.03335501919910246,0.004446572546536724,0.0077232726,0,0,0,0 +1839,0.031310556578042714,0.4112012166757089,0,0,2.4526381380788647,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83788,0,457.00000254313153,4262.6108,797.9220987955728,38.51117555601762,283.3109995524089,396.9116368644367,0,0,0,0,0,0,0,0,0,0,0,0,3.447299832259887e-6,4.0369741e-6,0,0,0,0,1.904554313417369e-4,3.2901587999999995e-4,0,0,0,0,272.85805002848304,0.2896082430993816,9.139608329107503,65.11131218043978,4.015311872419976,17.505176328593002,-0.025128924866840176,0,0,1843.0808236850567,0.13450763436493787,0.004446572546536724,0.0077232726,0,0,0,0 +1840,0.03354297409334304,0.41876613472562935,0,0,2.4438775219719657,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.80755,0,457.00000254313153,4261.0163,798.3870493570962,38.88776194382017,283.38200124104816,395.88091618643386,0,0,0,0,0,0,0,0,0,0,0,0,3.493263875498087e-6,4.0710717e-6,0,0,0,0,1.9299483634919548e-4,3.3285227e-4,0,0,0,0,272.7990519205729,0.29507959828746777,9.211326298909695,64.92298176034035,3.924269140081404,17.575132478856116,-0.025625530718353124,0,0,1874.1418275066233,0.16854263071970732,0.004446572546536724,0.0077232726,0,0,0,0 +1841,0.03460122912653735,0.42647022547928015,0,0,2.490489852137439,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84789,0,457.00000254313153,4263.137,799.060084025065,39.38162316774325,283.46699778238934,402.37274181683716,0,0,0,0,0,0,0,0,0,0,0,0,3.5392279187362874e-6,4.1092335e-6,0,0,0,0,1.955342437819733e-4,3.3715711000000003e-4,0,0,0,0,272.6890487670898,0.3006543197584808,9.249453201790956,65.9454451837981,4.089445548039454,17.745543570932366,-0.026145023202402858,0,0,1916.2642072737253,0.17997793561545353,0.004446572546536724,0.0077232726,0,0,0,0 +1842,0.03663997981024372,0.4343160493135666,0,0,2.4491704689870333,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84034,0,457.00000254313153,4262.7403,800.0011189778645,39.618728876147166,283.5279998779297,396.99512213680947,0,0,0,0,0,0,0,0,0,0,0,0,3.585191791444231e-6,4.1446349e-6,0,0,0,0,1.980736475767723e-4,3.411438e-4,0,0,0,0,272.58205413818354,0.3063343603354562,9.261381852099804,64.92167359416241,3.9361680613715975,17.590961717477978,-0.026688925256719682,0,0,1931.46250751484,0.18381929631950947,0.004446572546536724,0.0077232726,0,0,0,0 +1843,0.037450386379355084,0.44230621370895423,0,0,2.4111362709735427,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85726,0,457.00000254313153,4263.6297,801.4921824137368,39.653263822240504,283.56600189208984,389.73678087183737,0,0,0,0,0,0,0,0,0,0,0,0,3.6311557778390124e-6,4.1814844e-6,0,0,0,0,2.006130537968905e-4,3.4529738e-4,0,0,0,0,272.6070480346679,0.3121217097346764,9.185852611691464,63.424060913522,3.8460662124532643,17.218218321973847,-0.027232827311036496,0,0,1929.66039784958,0.18510965928096967,0.004446572546536724,0.0077232726,0,0,0,0 +1844,0.03984697293733208,0.45044337411603935,0,0,2.4438258963267856,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85117,0,457.00000254313153,4263.3094,803.6190745035806,40.04426499219912,283.60899861653644,392.7074417140548,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198210772127e-6,4.2169694e-6,0,0,0,0,2.0315246122966832e-4,3.4929371e-4,0,0,0,0,272.64805348714185,0.3180183952626677,9.178913525794204,63.76245430030204,3.965309781326317,17.1801218980614,-0.027776729365353317,0,0,1991.4456467268888,0.1855430999305122,0.004446572546536724,0.0077232726,0,0,0,0 +1845,0.04379212851318448,0.4587302348380611,0,0,2.4713718751387326,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83257,0,457.00000254313153,4262.3319,805.665069580078,40.66967666700967,283.72499593098956,397.85005599568376,0,0,0,0,0,0,0,0,0,0,0,0,3.723083864315413e-6,4.2516813e-6,0,0,0,0,2.0569186502446732e-4,3.5320089999999995e-4,0,0,0,0,272.64005025227857,0.32402648252636523,9.30790591121511,64.68556723249593,3.957876345089828,17.599363300735142,-0.02832063141967013,0,0,2080.3810922503694,0.18568870533529727,0.004446572546536724,0.0077232726,0,0,0,0 +1846,0.04419737434029645,0.46716954992964915,0,0,2.4711987422790394,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82423,0,457.00000254313153,4261.8933,807.2559560139973,40.975199745155024,283.8470001220703,395.9082621735635,0,0,0,0,0,0,0,0,0,0,0,0,3.769047907553613e-6,4.2869996e-6,0,0,0,0,2.0823127124458551e-4,3.5717802e-4,0,0,0,0,272.7300465901692,0.3301480761566941,9.302498358152864,64.24405152639606,3.9495415402063423,17.39887856615626,-0.02886453347398695,0,0,2072.290434339566,0.003535562113167848,0.004446572546536724,0.0077232726,0,0,0,0 +1847,0.047464619118496226,0.4757641241121063,0,0,2.521115228079649,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82758,0,457.00000254313153,4262.0693,807.9369812011718,41.61647167525484,283.9359995524089,402.98515747487147,0,0,0,0,0,0,0,0,0,0,0,0,3.815011799209363e-6,4.3230378e-6,0,0,0,0,2.107706774647037e-4,3.6123808e-4,0,0,0,0,272.8130518595377,0.33638532054582115,9.401962018636505,65.44362075203811,4.040566100417133,17.760514190415755,-0.029408435528303762,0,0,2154.230603343035,0.05986150819062035,0.004446572546536724,0.0077232726,0,0,0,0 +1848,0.04711780719580413,0.484516813705529,0,0,2.5773717998210097,0,1.4945332000000003e-5,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.78829,0,457.00000254313153,4260.004,808.0920410156249,42.449470629613735,284.0679982503255,413.5582929452125,0,0,0,0,0,0,0,0,0,0,0,0,3.860975766656338e-6,4.3563791e-6,0,0,0,0,2.1331008247216232e-4,3.6498734e-4,0,0,0,0,272.8850479125976,0.3427404005983347,9.573238566746884,67.39824375327751,4.1550564996331225,18.30069373024327,-0.029952337582620583,0,0,2204.416735349108,0.14052998907092631,0.004446572546536724,0.0077232726,0,0,0,0 +1849,0.04885144245331925,0.49343052757807715,0,0,2.5523940889282035,0,1.1956415e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.81678,0,457.00000254313153,4261.5016,808.2150014241536,42.63396460567202,284.20699818929035,408.9399341234632,0,0,0,0,0,0,0,0,0,0,0,0,3.9069398098945385e-6,4.3940071e-6,0,0,0,0,2.1584948869228052e-4,3.6923065e-4,0,0,0,0,272.9540456136067,0.3492155424966158,9.543358834157274,66.42707154065786,4.087020956416189,18.074786269748145,-0.03055301159093652,0,0,2224.8957196823785,0.1704345774563485,0.004446572546536724,0.0077232726,0,0,0,0 +1850,0.051384895328128635,0.502508228112706,0,0,2.5711244787427185,1.2887821417469543e-6,2.2473666e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93295,0,457.00000254313153,4267.6083,808.249028523763,43.142363653343445,284.3169987996419,411.4628743194825,0,0,0,0,0,0,0,0,0,0,0,0,3.952903853132739e-6,4.4373643e-6,0,0,0,0,2.1838889491239874e-4,3.7413425e-4,0,0,0,0,273.02104695638013,0.35581301448066943,9.604162557026681,66.78304875030415,4.096904208036784,18.22682478664064,-0.03125687970329533,0,0,2275.7767113113205,0.18074597510251067,0.004446572546536724,0.0077232726,0,0,0,0 +1851,0.051562308443334225,0.4946563668475162,0,0,2.5266925893124657,1.031025730450589e-5,2.4082745e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96457,0,457.00000254313153,4269.2706,808.4141082763671,43.151913707774774,284.4510040283203,402.2448152541545,0,0,0,0,0,0,0,0,0,0,0,0,3.998867896370939e-6,4.475348e-6,0,0,0,0,2.2092829991985732e-4,3.7841858e-4,0,0,0,0,273.0940500895182,0.3637934413745739,9.478471328343609,64.9500465918497,4.010397677989623,17.726300494053056,-0.03196074781565415,0,0,2256.8151473435455,0.18431279870175096,0.004446572546536724,0.0077232726,0,0,0,0 +1852,0.05364238006818437,0.5506858688322854,0,0,2.5076341601822123,2.0667359725242324e-5,2.4179888e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98199,0,457.00000254313153,4270.1861,809.1631317138671,43.34412933408961,284.59800211588544,397.49851999155004,0,0,0,0,0,0,0,0,0,0,0,0,4.044831939609139e-6,4.5124367e-6,0,0,0,0,2.2346770613997555e-4,3.825997e-4,0,0,0,0,273.16805013020826,0.3724242241558459,9.424520247380277,63.95789986488204,3.9584516109367627,17.47926154999162,-0.03266461592801298,0,0,2277.6344054535484,0.17954033954307605,0.004446572546536724,0.0077232726,0,0,0,0 +1853,0.05595234905591053,0.5486310857453621,0,0,2.5278117426961444,3.10744549096853e-5,2.4277992e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9693,0,457.00000254313153,4269.5191,810.404057820638,43.88435962687079,284.7309977213542,400.33880414377563,0,0,0,0,0,0,0,0,0,0,0,0,4.0907959828473395e-6,4.5475315000000004e-06,0,0,0,0,2.2600711114743413e-4,3.8655105e-4,0,0,0,0,273.264050801595,0.38010970895337787,9.493187126119388,64.44555417814735,3.9683262348472685,17.65848987916477,-0.0333684840403718,0,0,2326.4206162177375,0.015887254241176648,0.004446572546536724,0.0077232726,0,0,0,0 +1854,0.06589565461208481,0.5467397743701289,0,0,2.6100485430157265,4.1513251138288375e-5,2.4405566e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9226,0,457.00000254313153,4267.0641,811.7321421305337,44.80907906406347,284.8459981282552,413.39913150953396,0,0,0,0,0,0,0,0,0,0,0,0,4.136759950294315e-6,4.5802995999999986e-6,0,0,0,0,2.2854651736755235e-4,3.9023425e-4,0,0,0,0,273.3630498250325,0.3881180379413641,9.708926054401639,66.794695219375825,4.086374133078645,18.340431326430615,-0.034072352152730634,0,0,2535.1581947111176,-0.014112611956298624,0.004446572546536724,0.0077232726,0,0,0,0 +1855,0.0665605946226626,0.543758286864958,0,0,2.593264313364505,5.2002859774802346e-5,2.4547759e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95064,0,457.00000254313153,4268.5385,813.332036336263,44.957053896332596,284.9409993489583,408.11045388038974,0,0,0,0,0,0,0,0,0,0,0,0,4.182723614576389e-6,4.6181251e-6,0,0,0,0,2.3108592358767055e-4,3.945003e-4,0,0,0,0,273.4700495402018,0.39515493127386314,9.608218449939441,65.65156397841133,4.071657215875477,17.99164859504197,-0.03477622026508945,0,0,2531.882070736542,0.11294859461260336,0.004446572546536724,0.0077232726,0,0,0,0 +1856,0.07119571676282484,0.5497252657327152,0,0,2.5734300072332923,6.254957406781614e-5,2.4704559e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92886,0,457.00000254313153,4267.3934,814.7961222330728,45.32147323346321,285.04899342854816,404.85491673017987,0,0,0,0,0,0,0,0,0,0,0,0,4.228687657814589e-6,4.652537400000002e-6,0,0,0,0,2.3362532859512916e-4,3.98373e-4,0,0,0,0,273.5780461629231,0.40121361649916243,9.648967407833753,65.04253470413643,3.941501863088442,17.954118052235966,-0.03548008837744827,0,0,2598.3233502208395,0.12225561148477546,0.004446572546536724,0.0077232726,0,0,0,0 +1857,0.0718939473501754,0.55506091263013,0,0,2.636452577483439,7.315969560295343e-5,2.487597e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94976,0,457.00000254313153,4268.4922,816.4521179199218,46.01300693840024,285.20399983723956,414.6731918454804,0,0,0,0,0,0,0,0,0,0,0,0,4.2746517010527896e-06,4.6899086e-6,0,0,0,0,2.3616473481524736e-4,4.025867e-4,0,0,0,0,273.67504882812494,0.4075261897409684,9.717987448936368,66.72779876959439,4.1591410074143615,18.291565645975457,-0.03618395648980709,0,0,2646.996287168382,-0.044823331390134384,0.004446572546536724,0.0077232726,0,0,0,0 +1858,0.0730281599923091,0.5597369099004649,0,0,2.660122641883427,8.383950868543859e-5,2.5062e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93987,0,457.00000254313153,4267.9722,818.3551279703775,46.54057728835799,285.3690007527669,419.01402360882946,0,0,0,0,0,0,0,0,0,0,0,0,4.32061574429099e-6,4.7251299e-6,0,0,0,0,2.3870414103536555e-4,4.0655264e-4,0,0,0,0,273.7560501098632,0.41251745553966174,9.773872716558104,67.47060376347301,4.240872484906792,18.47927629769415,-0.03688782460216592,0,0,2684.853418420537,0.08628782582640311,0.004446572546536724,0.0077232726,0,0,0,0 +1859,0.07785211331835136,0.5673853687525405,0,0,2.6482032498787995,9.459531490089527e-5,2.5262647e-4,0.025000428936133783,0.024856862,34.05000019073486,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91443,0,457.00000254313153,4266.635,820.3960774739583,46.94962615479032,285.5449956258138,416.29974849312515,0,0,0,0,0,0,0,0,0,0,0,0,4.36657978752919e-6,4.7592242000000015e-6,0,0,0,0,2.4124354483016455e-4,4.1038866e-4,0,0,0,0,273.89505004882807,0.41699740802681257,9.815633788495665,66.95694733909333,4.119710728903347,18.449505984059194,-0.03759169271452474,0,0,2765.3515040429447,0.1535034293269437,0.004446572546536724,0.0077232726,0,0,0,0 +1860,0.08580578973181537,0.57190571026195,0,0,2.6484047305257548,1.0543340310202136e-4,2.5477918999999995e-4,0.025000428936133783,0.024856862,34.04999955495199,0.010810676000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89112,0,457.00000254313153,4265.4096,822.3121185302733,47.37614022716783,285.73899332682294,416.0639965860974,0,0,0,0,0,0,0,0,0,0,0,0,4.41254383076739e-6,4.7934342e-6,0,0,0,0,2.4378295105028278e-4,4.1423802e-4,0,0,0,0,274.05604807535804,0.42075257795117216,9.868462594270229,66.84953492841794,4.0609762626653305,18.52046800322501,-0.03829556082688356,0,0,2898.3777844170777,0.17676937373971446,0.004446572546536724,0.0077232726,0,0,0,0 +1861,0.09043757175448788,0.5830953457170218,0,0,2.670268662609388,1.1636007608710013e-4,2.5707803e-4,0.025000428936133783,0.024856862,34.04999987284342,0.010810691,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94268,0,457.00000254313153,4268.1198,824.399190266927,48.23468669993056,285.9330012003581,417.24413721688705,0,0,0,0,0,0,0,0,0,0,0,0,4.4585078740055906e-6,4.8330788e-6,0,0,0,0,2.463223596957202e-4,4.1871377e-4,0,0,0,0,274.2400461832682,0.42335986018473476,9.85713564571437,66.88575551122409,4.161212988464047,18.437119828737263,-0.03899942893924239,0,0,2971.2788427875175,0.11623622338672868,0.004446572546536724,0.0077232726,0,0,0,0 +1862,0.09186559088261632,0.5229565631081879,0,0,2.648564983127743,1.2738162210249962e-4,2.5952295e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93302,0,457.00000254313153,4267.612,827.0292002360025,49.13056211810905,286.1000010172526,414.16280656087633,0,0,0,0,0,0,0,0,0,0,0,0,4.504471917243791e-6,4.8682827e-6,0,0,0,0,2.488617634905192e-4,4.2267767e-4,0,0,0,0,274.4160486857096,0.4259683950031353,9.918881972367876,66.358960161654025,4.0424493589722115,18.41589320519377,-0.0397032970516012,0,0,2976.388043494933,-0.6237998311805185,0.004446572546536724,0.0077232726,0,0,0,0 +1863,0.09748855439032131,0.523134296634959,0,0,2.6292695144324947,1.3850433606421575e-4,2.6211454e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9509,0,457.00000254313153,4268.552,830.1662139892577,49.710222528727996,286.271001180013,408.1224194075052,0,0,0,0,0,0,0,0,0,0,0,0,4.550435960481991e-6,4.9055252e-6,0,0,0,0,2.5140116971063736e-4,4.2687657e-4,0,0,0,0,274.57104492187494,0.4284326826015117,9.86866585386286,65.00963540040021,3.9715193557400945,18.09141100618794,-0.04040716516396003,0,0,3064.446906560989,-0.2585729087354761,0.004446572546536724,0.0077232726,0,0,0,0 +1864,0.10472513857630868,0.5234813827246285,0,0,2.667755633655596,1.4973450258063772e-4,2.6485186e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94467,0,457.00000254313153,4268.2247,833.6041412353514,50.66032472624755,286.44200134277344,411.3310642864957,0,0,0,0,0,0,0,0,0,0,0,0,4.5963999279289664e-6,4.9409793e-6,0,0,0,0,2.539405759307556e-4,4.308693e-4,0,0,0,0,274.72005208333326,0.431014195621195,9.887134077064891,65.39906664161046,4.087458726366705,18.093817300572518,-0.041111033276318855,0,0,3193.218258651068,0.037999846461008915,0.004446572546536724,0.0077232726,0,0,0,0 +1865,0.11093631924882667,0.5242503840770768,0,0,2.720201066299487,1.6107846022350714e-4,2.6773567000000004e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010810706000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93017,0,457.00000254313153,4267.4623,836.8942057291665,51.98007509857536,286.6139958699544,420.4890049801762,0,0,0,0,0,0,0,0,0,0,0,0,4.642363592211041e-6,4.9757947000000005e-6,0,0,0,0,2.564799797255546e-4,4.3478845e-4,0,0,0,0,274.8800430297851,0.43343877181201473,10.07353477775766,67.10347351160692,4.157661467348705,18.66656837953943,-0.04181490138867768,0,0,3327.080175680617,0.1429288681419851,0.004446572546536724,0.0077232726,0,0,0,0 +1866,0.11473850842802115,0.5243863634262115,0,0,2.7102983366424596,1.7254241417200925e-4,2.707659e-4,0.025000428936133783,0.024856862,34.050100008646645,0.01081072,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92398,0,457.00000254313153,4267.1368,840.3622080485025,52.74699292831513,286.78099822998047,417.1011849314015,0,0,0,0,0,0,0,0,0,0,0,0,4.688327635449241e-6,5.0112266e-6,0,0,0,0,2.590193835203536e-4,4.387786599999999e-4,0,0,0,0,275.0480473836262,0.4357447764915154,10.064549123367675,66.37528156013664,4.133671177718162,18.394680194366018,-0.042518769501036495,0,0,3388.2580778414886,0.1744104739671799,0.004446572546536724,0.0077232726,0,0,0,0 +1867,0.12258204012181728,0.5228764549771724,0,0,2.761022670595916,1.8413277454480217e-4,2.7394196e-4,0.025000428936133783,0.024856862,34.05020046234131,0.010070544,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93094,0,457.00000254313153,4267.5026,843.995122273763,53.9410217812425,286.9550018310547,424.2969752987472,0,0,0,0,0,0,0,0,0,0,0,0,4.734291678687441e-6,5.0476689e-6,0,0,0,0,2.615587945911102e-4,4.428853e-4,0,0,0,0,275.21304829915357,0.43821064879605803,10.189133101169272,67.66026448741948,4.231180960949066,18.768356166586962,-0.04322263761339532,0,0,3565.4355350198875,0.18466917521307166,0.004446572546536724,0.0077232726,0,0,0,0 +1868,0.12560944174010713,0.5214153984123745,0,0,2.825140562350265,1.9585573196915598e-4,2.7726501e-4,0.025000428936133783,0.024856862,34.05019982655843,0.010072023,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89186,0,457.00000254313153,4265.4483,847.2491251627603,55.287673564162375,287.10500081380206,434.93022825982507,0,0,0,0,0,0,0,0,0,0,0,0,4.780255721925641e-6,5.0805177e-6,0,0,0,0,2.640981983859092e-4,4.465778e-4,0,0,0,0,275.39104461669916,0.44143425556535276,10.372200923081559,69.64729381366908,4.3633047348631795,19.301247569591883,-0.043926505725754135,0,0,3668.308732016809,0.188148666241629,0.004446572546536724,0.0077232726,0,0,0,0 +1869,0.13329152205114916,0.5197708976584334,0,0,2.7850043169774756,2.0771763714340827e-4,2.8073396e-4,0.025000428936133783,0.024856862,34.05020014444987,0.010810735,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93014,0,457.00000254313153,4267.4609,850.1300862630208,55.83359728305401,287.2249984741211,426.4036167290826,0,0,0,0,0,0,0,0,0,0,0,0,4.826219765163842e-6,5.1194221e-6,0,0,0,0,2.666376021807082e-4,4.5096821e-4,0,0,0,0,275.5610478719075,0.44390826602791195,10.311061269202527,67.9294955911712,4.245329954023304,18.888825035193033,-0.04497175592064998,0,0,3791.4627445920805,0.1894123650346563,0.004446572546536724,0.0077232726,0,0,0,0 +1870,0.13667438365279438,0.5186718603074794,0,0,2.831200782445544,2.197247971101509e-4,2.8434934e-4,0.025000428936133783,0.024856862,34.05020014444987,0.01081075,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89317,0,457.00000254313153,4265.5174,852.4350077311196,56.996592307003596,287.3549982706706,433.2287624497814,0,0,0,0,0,0,0,0,0,0,0,0,4.872183808402042e-6,5.152380400000002e-6,0,0,0,0,2.691770132514648e-4,4.5467331e-4,0,0,0,0,275.7200444539387,0.4466399609979402,10.441023971231417,69.12187693609928,4.323468650206145,19.258120747383764,-0.046232618783436236,0,0,3887.5293351931314,0.189950840385198,0.004446572546536724,0.0077232726,0,0,0,0 +1871,0.1452491611173251,0.5388152153139819,0,0,2.7978303472693873,2.31883451003038e-4,2.8811122e-4,0.025000428936133783,0.024856862,34.050299326578774,0.010071314,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92871,0,457.00000254313153,4267.3856,853.9930725097655,57.57401422057298,287.4940007527669,425.1606513202936,0,0,0,0,0,0,0,0,0,0,0,0,4.918147851640242e-6,5.1911213e-6,0,0,0,0,2.717164146209446e-4,4.590449e-4,0,0,0,0,275.9030456542968,0.45433593382870696,10.369497697943174,67.42862357960736,4.269404036940666,18.76177376623424,-0.047493481646222496,0,0,4016.0322788183066,0.19025039687154105,0.004446572546536724,0.0077232726,0,0,0,0 +1872,0.16034651313527334,0.6242378015462033,0,0,2.771292693837977,2.4419995800902444e-4,2.9201899e-4,0.025000428936133783,0.024856862,34.050299962361656,0.010810765,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95075,0,457.00000254313153,4268.5441,855.2329915364583,58.18710545429253,287.66399637858075,417.7442733570141,0,0,0,0,0,0,0,0,0,0,0,0,4.964111894878442e-6,5.228817700000002e-6,0,0,0,0,2.742558184157436e-4,4.6329615e-4,0,0,0,0,276.07804361979163,0.4708626218532089,10.330384237922804,65.84553711122807,4.17870981733127,18.365341648996967,-0.048754344509008736,0,0,4250.256915543303,0.18883431574024787,0.004446572546536724,0.0077232726,0,0,0,0 +1873,0.17009548212988732,0.635197775727867,0,0,2.8416338477805057,2.566805657503816e-4,2.9607326e-4,0.025000428936133783,0.024856862,34.050299962361656,0.01081078,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93223,0,457.00000254313153,4267.5705,856.1681976318358,59.62016165313301,287.86000061035156,429.28028904113773,0,0,0,0,0,0,0,0,0,0,0,0,5.010075938116643e-6,5.2632224000000015e-6,0,0,0,0,2.7679522706118104e-4,4.6716788e-4,0,0,0,0,276.25004831949866,0.4938942498998885,10.56453511561426,67.99437045089431,4.309987323977962,18.937298904886617,-0.050015207371795004,0,0,4473.449627744114,-0.0158300305583035,0.004446572546536724,0.0077232726,0,0,0,0 +1874,0.16101264250188482,0.6424589219115043,0,0,2.8680589101535006,2.693315764190629e-4,3.0027407000000005e-4,0.025000428936133783,0.024856862,34.05039978027344,0.010810794,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88493,0,457.00000254313153,4265.0843,857.8200785319009,60.88850035180588,288.0609995524089,435.8041800080444,0,0,0,0,0,0,0,0,0,0,0,0,5.05603994345923e-6,5.295217800000002e-6,0,0,0,0,2.793346332812992e-4,4.7076201e-4,0,0,0,0,276.4160537719726,0.5217358117405276,10.751611012739497,69.34908007240699,4.369596917606238,19.304810723709583,-0.051276070234581236,0,0,4382.176552473297,0.10137566545666454,0.004446572546536724,0.0077232726,0,0,0,0 +1875,0.17325906778674766,0.6503215087418923,0,0,2.8334891051221005,2.821592812930855e-4,3.046214e-4,0.025000428936133783,0.024856862,34.05040009816488,0.010810809,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5065,859.4690653483071,61.447170295790954,288.29100290934247,426.89349545310597,0,0,0,0,0,0,0,0,0,0,0,0,5.102003569845692e-6,5.3349387000000006e-6,0,0,0,0,2.818740370760982e-4,4.7524653e-4,0,0,0,0,276.5850474039713,0.5521636138855727,10.663545228962466,67.4820885998621,4.311546235769538,18.753876090158617,-0.0525369330973675,0,0,4552.510356024947,0.11898633163405398,0.004446572546536724,0.0077232726,0,0,0,0 +1876,0.17593823238514505,0.6580403904252425,0,0,2.8431252665224327,2.9516999347833917e-4,3.0911468e-4,0.025000428936133783,0.024856862,34.05049991607666,0.010810823999999998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90175,0,457.00000254313153,4265.968,860.8591054280598,62.60294810766919,288.5199966430664,429.4805477313967,0,0,0,0,0,0,0,0,0,0,0,0,5.1479676130838925e-6,5.3683812e-6,0,0,0,0,2.8441344572153565e-4,4.790074400000001e-4,0,0,0,0,276.7350514729817,0.5828831599457934,10.831893028061607,68.07266489194261,4.273649915248981,19.002140660093694,-0.053797795960153764,0,0,4640.322706228576,0.13010732358702753,0.004446572546536724,0.0077232726,0,0,0,0 +1877,0.17982534828505667,0.6646940864903487,0,0,2.881579172917859,3.083699945515643e-4,3.1375456e-4,0.025000428936133783,0.024856862,34.050500551859535,0.010810839,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92824,0,457.00000254313153,4267.3608,862.3791147867837,63.64524258623489,288.7520014444987,434.0603459961696,0,0,0,0,0,0,0,0,0,0,0,0,5.193931656322093e-6,5.406519099999998e-6,0,0,0,0,2.869528519416538e-4,4.833095099999999e-4,0,0,0,0,276.86404927571607,0.6122267058453676,10.897021601068372,68.7783807279057,4.413505723589701,19.089059096309025,-0.05504429988349307,0,0,4762.60475525006,0.1696072468545434,0.004446572546536724,0.0077232726,0,0,0,0 +1878,0.18077698311132545,0.6715857617280921,0,0,2.905036494302108,3.2176555153758574e-4,3.1854156e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810853,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92472,0,457.00000254313153,4267.1759,864.1391499837239,64.71120382869425,288.9930013020833,437.9599497693981,0,0,0,0,0,0,0,0,0,0,0,0,5.239895699560293e-6,5.4421234e-6,0,0,0,0,2.8949225331113365e-4,4.8731959e-4,0,0,0,0,277.0020446777343,0.637718423578712,10.998945344161125,69.46979574102357,4.5031308409529425,19.22817130569276,-0.056156826594968116,0,0,4806.3164952803945,0.1844107426763875,0.004446572546536724,0.0077232726,0,0,0,0 +1879,0.1931754383145236,0.6786152944896107,0,0,2.9292586401809286,3.3536301149676245e-4,3.234746e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810868,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88028,0,457.00000254313153,4264.8396,866.2831624348958,65.90279841258594,289.2210006713867,440.8517590737373,0,0,0,0,0,0,0,0,0,0,0,0,5.285859742798493e-6,5.474183400000002e-6,0,0,0,0,2.920316595312518e-4,4.9092116e-4,0,0,0,0,277.1330490112304,0.6589267771109586,11.181505690638433,70.08572001647862,4.44715839638976,19.487315389320713,-0.05726935330644314,0,0,5054.634872921024,0.18865930412898813,0.004446572546536724,0.0077232726,0,0,0,0 +1880,0.2193400047887077,0.6848574235612915,0,0,2.921172062464678,3.4916867055774975e-4,3.2855365e-4,0.025000428936133783,0.024856862,34.05069955190023,0.010810144,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88174,0,457.00000254313153,4264.9162,868.6961059570311,66.66498430210106,289.4699986775716,437.365727538686,0,0,0,0,0,0,0,0,0,0,0,0,5.3318237860366935e-6,5.5101807e-6,0,0,0,0,2.9457106817668927e-4,4.9497652e-4,0,0,0,0,277.26505025227857,0.6727777764677255,11.210570347061365,69.18788119083449,4.386751757292326,19.32682128004249,-0.05838188001791818,0,0,5476.691840909654,0.15238702978073307,0.004446572546536724,0.0077232726,0,0,0,0 +1881,0.2252231799496281,0.7226262033549594,0,0,2.9628772256083247,3.6318877634281915e-4,3.3377873e-4,0.025000428936133783,0.024856862,34.05069955190023,0.011551088,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92914,0,457.00000254313153,4267.4079,870.9841257731118,67.70670094788971,289.7369969685872,440.9737248225101,0,0,0,0,0,0,0,0,0,0,0,0,5.377787829274894e-6,5.5502216e-6,0,0,0,0,2.9711047197148827e-4,4.9949792e-4,0,0,0,0,277.37404123942054,0.6806367037591056,11.274748464221961,69.70896888997471,4.531822010702024,19.327166243417963,-0.059494406729393226,0,0,5655.562652963553,0.14804251864424234,0.004446572546536724,0.0077232726,0,0,0,0 +1882,0.23694899687620047,0.6743786080130141,0,0,2.9443458510058322,3.774296346819028e-4,3.3915105e-4,0.025000428936133783,0.024856862,34.05080000559489,0.011550379,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92759,0,457.00000254313153,4267.3266,873.2501373291014,68.57787523920716,290.0190022786458,436.0786301154982,0,0,0,0,0,0,0,0,0,0,0,0,5.423751872513094e-6,5.585991e-6,0,0,0,0,2.9964987819160643e-4,5.035270200000001e-4,0,0,0,0,277.4860509236653,0.6892556813322581,11.343220962302505,68.75016748711803,4.409841205149023,19.158162285322444,-0.06060693344086825,0,0,5878.580768497191,0.1874362016564929,0.004446572546536724,0.0077232726,0,0,0,0 +1883,0.25089467695775003,0.6814540279475114,0,0,2.918084088079926,3.918974956225914e-4,3.4467464999999995e-4,0.025000428936133783,0.024856862,34.05090045928955,0.010810957,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95902,0,457.00000254313153,4268.979,875.6031494140624,69.18597910133236,290.26300048828125,428.22120343049505,0,0,0,0,0,0,0,0,0,0,0,0,5.469715915751294e-6,5.6247084000000005e-6,0,0,0,0,3.021892868370439e-4,5.0789587e-4,0,0,0,0,277.5910491943359,0.6958725524070566,11.301072778092927,67.06254475755776,4.3447075949809335,18.709361365312684,-0.06171946015234329,0,0,6136.7508152909495,-0.3245940535795368,0.004446572546536724,0.0077232726,0,0,0,0 +1884,0.2528499020827967,0.6846835417141454,0,0,2.9781587398376455,4.065987474556702e-4,3.503391000000001e-4,0.025000428936133783,0.024856862,34.05100059509277,0.010810972,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93535,0,457.00000254313153,4267.7345,878.1482035319009,70.48060514662333,290.5119984944661,436.5183491794865,0,0,0,0,0,0,0,0,0,0,0,0,5.515679921093882e-6,5.6585019e-6,0,0,0,0,3.047286906318429e-4,5.1169724e-4,0,0,0,0,277.69505055745435,0.7016904496772703,11.463778568830996,68.59402326244992,4.507763748192013,19.009889976177178,-0.06283198686381833,0,0,6243.347604744989,-1.8150618607595548,0.004446572546536724,0.0077232726,0,0,0,0 +1885,0.25444299147687327,0.6908637814371342,0,0,2.987658653242268,4.215400040266104e-4,3.5614909e-4,0.025000428936133783,0.024856862,34.05099964141846,0.011550438,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93798,0,457.00000254313153,4267.8727,881.0251312255858,71.60546241341835,290.7969970703125,438.1415385380004,0,0,0,0,0,0,0,0,0,0,0,0,5.561643547480344e-6,5.6946520999999985e-6,0,0,0,0,3.0726809200132266e-4,5.1577023e-4,0,0,0,0,277.79504903157545,0.7078908709316327,11.603153567015962,68.94977818435397,4.492846370676968,19.20686906057728,-0.06394451357529336,0,0,6294.938313202323,-0.6420197136906102,0.004446572546536724,0.0077232726,0,0,0,0 +1886,0.25832612706643443,0.6919349119161695,0,0,3.0001483762763606,4.3672676110873e-4,3.621046e-4,0.025000428936133783,0.024856862,34.05110009511312,0.011550467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9357,0,457.00000254313153,4267.7531,883.8392181396483,72.58254388217381,291.09999593098956,437.73332685492454,0,0,0,0,0,0,0,0,0,0,0,0,5.607607590718544e-6,5.7303567999999985e-6,0,0,0,0,3.0980750307207927e-4,5.1979186e-4,0,0,0,0,277.8850479125976,0.7126327786706089,11.675797474801131,68.86926284379062,4.534738954197774,19.067819582095456,-0.06519373004483152,0,0,6353.02729378205,-0.0852453820278208,0.004446572546536724,0.0077232726,0,0,0,0 +1887,0.27097332569304644,0.6918854634202647,0,0,3.0445900747103636,4.521660230238922e-4,3.6821147e-4,0.025000428936133783,0.024856862,34.05120054880778,0.011550497,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94903,0,457.00000254313153,4268.4538,886.933135986328,73.77743063310328,291.4139989217122,443.10773813765155,0,0,0,0,0,0,0,0,0,0,0,0,5.653571633956744e-6,5.7675003e-6,0,0,0,0,3.1234690686687827e-4,5.2397934e-4,0,0,0,0,277.99504597981763,0.7182166601192096,11.825655230740924,69.79403942185417,4.618994873829845,19.328453638145426,-0.06654164466411291,0,0,6605.766964967214,-0.025019474885791315,0.004446572546536724,0.0077232726,0,0,0,0 +1888,0.2990240690559838,0.6915397836551626,0,0,3.1234840519185503,4.6786327826945734e-4,3.7446389e-4,0.025000428936133783,0.024856862,34.051300366719566,0.011550526,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91459,0,457.00000254313153,4266.6433,889.9262135823567,75.11035553057255,291.76300048828125,452.50230797053916,0,0,0,0,0,0,0,0,0,0,0,0,5.699535677194945e-6,5.8002124e-6,0,0,0,0,3.1488631066167727e-4,5.2765607e-4,0,0,0,0,278.08005015055335,0.724224234516275,12.041623292379388,71.4272374400245,4.7418969174520385,19.785746426186453,-0.06788955928339427,0,0,7182.264808724919,0.13500730253153945,0.004446572546536724,0.0077232726,0,0,0,0 +1889,0.2993958898436063,0.6910492076322109,0,0,3.104668337723354,4.838260307830448e-4,3.8086186e-4,0.025000428936133783,0.024856862,34.05139986673991,0.011550556000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95877,0,457.00000254313153,4268.9657,893.1561584472655,75.9296001940716,292.1130015055339,448.69086963270234,0,0,0,0,0,0,0,0,0,0,0,0,5.745499720433145e-6,5.840258e-6,0,0,0,0,3.174257217324339e-4,5.3217801e-4,0,0,0,0,278.191047668457,0.730764111829077,12.075327913087893,70.65718771639492,4.727164288354711,19.55277705492912,-0.06923747390267565,0,0,7178.592239188243,0.1858189092422608,0.004446572546536724,0.0077232726,0,0,0,0 +1890,0.32528597028265194,0.6877629398180971,0,0,3.159194948993984,5.000592888488123e-4,3.8741134e-4,0.025000428936133783,0.024856862,34.05150000254313,0.011550586000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9317,0,457.00000254313153,4267.5425,896.3831837972004,77.07862319106741,292.45799763997394,453.89903232867,0,0,0,0,0,0,0,0,0,0,0,0,5.791463763671345e-6,5.8736235e-6,0,0,0,0,3.199651255272329e-4,5.359300400000001e-4,0,0,0,0,278.2730509440104,0.7556615541830685,12.221880708940976,71.47659716602703,4.8079166884923445,19.778064862780106,-0.07058538852195702,0,0,7728.431301023277,0.07030158718899164,0.004446572546536724,0.0077232726,0,0,0,0 +1891,0.34045390881796567,0.6844114067588241,0,0,3.125180696005549,5.165705564043795e-4,3.9410043e-4,0.025000428936133783,0.024856862,34.051600774129234,0.011550615,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97344,0,457.00000254313153,4269.7366,899.666264851888,77.68229292407419,292.8159993489583,444.382731801162,0,0,0,0,0,0,0,0,0,0,0,0,5.837427806909545e-6,5.9135147000000014e-06,0,0,0,0,3.225045293220319e-4,5.4043419e-4,0,0,0,0,278.34705098470045,0.7669960073050373,12.159640198474342,69.53172190504567,4.743306066350147,19.199673026982396,-0.0719333031412384,0,0,8025.900172756182,-0.1023137574833239,0.004446572546536724,0.0077232726,0,0,0,0 +1892,0.3429460922092071,0.698931319975308,0,0,3.1105283647598623,5.333653001192337e-4,4.0093536e-4,0.025000428936133783,0.024856862,34.05169995625814,0.011550645,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99082,0,457.00000254313153,4270.6504,903.534194946289,78.54558088981553,293.16699981689453,439.8086590465999,0,0,0,0,0,0,0,0,0,0,0,0,5.8833918501477456e-6,5.951126000000002e-6,0,0,0,0,3.250439355421501e-4,5.446755599999999e-4,0,0,0,0,278.44204457600904,0.77827246793364,12.199146519671457,68.66391958974123,4.69568230481039,18.949521757077395,-0.07328121776051978,0,0,8166.143155148587,0.07763085595364166,0.004446572546536724,0.0077232726,0,0,0,0 +1893,0.3378703897546753,0.6997131247828723,0,0,3.1254308946941567,5.504500586539507e-4,4.079215e-4,0.025000428936133783,0.024856862,34.05179977416992,0.012290126,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97993999999998,0,457.00000254313153,4270.0783,907.2741190592446,79.81501328862245,293.4769999186198,443.3506557921903,0,0,0,0,0,0,0,0,0,0,0,0,5.929355893385946e-6,5.986023799999998e-6,0,0,0,0,3.275833417622683e-4,5.4860421e-4,0,0,0,0,278.55404917399085,0.7897298228538592,12.379453862745622,69.48705801909811,4.715239732570137,19.178456201207396,-0.07462913237980115,0,0,8120.644734612286,0.1864156024276895,0.004446572546536724,0.0077232726,0,0,0,0 +1894,0.35112450392061667,0.7155813956083555,0,0,3.205110617860807,5.678308225469664e-4,4.1505353e-4,0.025000428936133783,0.024856862,34.051900227864586,0.01229017,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5063,910.4781341552733,81.38345626276687,293.7909978230794,456.69603250902094,0,0,0,0,0,0,0,0,0,0,0,0,5.975319936624146e-6,6.017190099999998e-6,0,0,0,0,3.301227455570673e-4,5.5210279e-4,0,0,0,0,278.6890487670898,0.8020046367832572,12.66238559332695,71.90804380664727,4.8889485381651845,19.8361284777738,-0.07597704699908253,0,0,8411.388473243653,0.19284299907478186,0.004446572546536724,0.0077232726,0,0,0,0 +1895,0.37171203675260484,0.7209450963563064,0,0,3.216163844950097,5.855145864188671e-4,4.2233098e-4,0.025000428936133783,0.024856862,34.05209986368815,0.011550763,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4251,913.2259826660155,82.23116014335764,294.0789972941081,453.5518850499526,0,0,0,0,0,0,0,0,0,0,0,0,6.0212835251149954e-6,6.056690099999998e-6,0,0,0,0,3.326621542025047e-4,5.5656184e-4,0,0,0,0,278.83104960123694,0.8128876331059834,12.672444225617587,71.15178658195539,4.91917125426521,19.522500482390267,-0.07728033747142447,0,0,8846.667009900264,0.1930910447676056,0.004446572546536724,0.0077232726,0,0,0,0 +1896,0.38367481768429307,0.7234407884813598,0,0,3.170768746502162,6.03506836341694e-4,4.2976003e-4,0.025000428936133783,0.024856862,34.05219968159994,0.012290244,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4252,914.7710927327473,83.00005426186281,294.36499786376953,444.0944277814877,0,0,0,0,0,0,0,0,0,0,0,0,6.067247568353196e-6,6.0926241e-6,0,0,0,0,3.352015604226229e-4,5.606100700000001e-4,0,0,0,0,278.9390513102213,0.824102858385605,12.720593693458584,69.42267705803128,4.733994615392683,19.177287716924887,-0.07856237646782513,0,0,9089.59843267371,0.19318346141929987,0.004446572546536724,0.0077232726,0,0,0,0 +1897,0.4019811637589425,0.725878270524141,0,0,3.2687021119074915,6.218145863385871e-4,4.373290900000001e-4,0.025000428936133783,0.024856862,34.052300453186035,0.012290288,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99693,0,457.00000254313153,4270.9718,916.2742818196614,84.39253635318506,294.64599863688153,456.4122054736632,0,0,0,0,0,0,0,0,0,0,0,0,6.113211611591396e-6,6.1314997000000015e-6,0,0,0,0,3.377409642174219e-4,5.6499701e-4,0,0,0,0,279.051045735677,0.8346371271895597,12.890217099416494,71.54673250412924,5.026760132357157,19.58218287923395,-0.07984441546422576,0,0,9520.393854224154,0.19322441190367687,0.004446572546536724,0.0077232726,0,0,0,0 +1898,0.4233042102069517,0.728376569617105,0,0,3.2968702587691077,6.404438560518125e-4,4.4504943e-4,0.025000428936133783,0.02485618,34.052499771118164,0.012290333,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01512,0,457.00000254313153,4271.9281,919.0172271728514,85.36127162189973,294.95399983723956,456.6037673563168,0,0,0,0,0,0,0,0,0,0,0,0,6.159175654829596e-6,6.1692876e-6,0,0,0,0,3.402803704375401e-4,5.692587400000001e-4,0,0,0,0,279.1630477905273,0.8443053161523663,12.959068227762758,71.45665951589594,5.0980295350528255,19.501681112942983,-0.0811264544606264,0,0,10010.09583228873,0.19324438193560026,0.004446572546536724,0.0077232356,0,0,0,0 +1899,0.46331719155147416,0.7285561578617307,0,0,3.35583134512378,6.594006069159756e-4,4.856732599999999e-4,0.025000428936133783,0.024857703,34.05260022481283,0.012290377,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97653,0,457.00000254313153,4269.8993,922.2811838785806,86.70543386559314,295.2999979654948,462.1035993919434,0,0,0,0,0,0,0,0,0,0,0,0,6.205139698067796e-6,6.2013454e-6,0,0,0,0,3.4281977665765834e-4,5.7286006e-4,0,0,0,0,279.3080469767252,0.8537833662798698,13.20706844128895,72.46072255843502,5.09497938372201,19.868709929010027,-0.08240849345702704,0,0,10838.113453916734,0.1932520396033143,0.004446572546536724,0.0077232334,0,0,0,0 +1900,0.4881558617748878,0.7305723603784592,0,0,3.3618210367956025,6.786918675061315e-4,0.0023926675,0.025000376626849174,0.024856437,34.052798906962074,0.028558348,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98481,0,457.00000254313153,4270.3344,925.5521138509114,87.61328845020651,295.6749954223633,459.5444668504325,0,0,0,0,0,0,0,0,0,0,0,0,6.251103741305997e-6,6.2381326e-6,0,0,0,0,3.4535918045245734e-4,5.770064599999999e-4,0,0,0,0,279.4540481567382,0.8631696543463733,13.276669554810011,71.90656631461616,5.089168388032589,19.750787925178965,-0.08385968995663869,0,0,11348.727499729994,0.19324967713848945,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1901,0.5044857194846931,0.7969063127701378,0,0,3.3829529353801377,7.011479125746215e-4,0.0048200969,0.025000494594375294,0.024857442,34.05289999643961,0.047784449000000014,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04131,0,457.00000254313153,4273.3046,928.800333658854,88.39116711070807,296.0069986979167,457.6168305058551,0,0,0,0,0,0,0,0,0,0,0,0,6.297067784544197e-6,6.2798935e-6,0,0,0,0,3.478985866725755e-4,5.817261e-4,0,0,0,0,279.613047281901,0.8714059588722426,13.301409901434221,71.63263161162581,5.20214413763188,19.48762216724768,-0.08579737819029178,0,0,11775.255202668699,0.1931616844954455,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1902,0.5193451170981727,0.800278636367018,0,0,3.3815414695884436,8.848810005777826e-4,0.0057781223,0.025000344030559063,0.024856062,34.055300076802574,0.050743008,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04898,0,457.00000254313153,4273.708,932.7311604817708,89.26282464192792,296.3249994913737,455.02617682462983,0,0,0,0,0,0,0,0,0,0,0,0,6.343031827782397e-6,6.316678900000002e-6,0,0,0,0,3.5043799531801295e-4,5.858722900000001e-4,0,0,0,0,279.8610509236653,0.8812154472523583,13.412488026584588,71.24149846316587,5.179688036784444,19.35806149893677,-0.08773506642394488,0,0,12100.548766402842,0.09059743996435048,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1903,0.5664546211178523,0.8295711459044773,0,0,3.389386332354358,0.001116641176243623,0.0069576127,0.025000539453079302,0.024857979,34.05799961090088,0.05591998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09555,0,457.00000254313153,4276.1561,936.7834269205728,89.89074056747505,296.65399678548175,449.9625304110428,0,0,0,0,0,0,0,0,0,0,0,0,6.388995871020597e-6,6.3575352999999986e-6,0,0,0,0,3.5297739911281195e-4,5.9048768e-4,0,0,0,0,280.15604146321607,0.890660734283567,13.437520518020643,70.25376393283156,5.1901034578968455,19.030597877588104,-0.08967275465759794,0,0,13044.158155518342,-0.7087274740337839,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1904,0.5751521325099065,0.856100074253587,0,0,3.4640582999698033,0.0013829462016777445,0.0094363385,0.02500028194238742,0.024855289,34.06080023447672,0.068491568,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07939,0,457.00000254313153,4275.3063,942.1142679850259,91.35674942842638,296.95399475097656,462.6217650299278,0,0,0,0,0,0,0,0,0,0,0,0,6.434959914258798e-6,6.3918668e-6,0,0,0,0,3.555168053329301e-4,5.9435105e-4,0,0,0,0,280.43204243977857,0.900998671506556,13.731471700844033,72.88437625246438,5.400226562773813,19.656119727265345,-0.09161044289125103,0,0,13274.437189098227,-0.26430883974577096,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1905,0.6122962467973883,0.8830904178747726,0,0,3.525334738078169,0.0017163676869434614,0.013412831000000002,0.02500062497953574,0.024859105,34.06420008341471,0.087718467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08907,0,457.00000254313153,4275.8152,947.4432729085286,92.40132432209919,297.28899637858075,467.44012883738543,0,0,0,0,0,0,0,0,0,0,0,0,6.480923502749647e-6,6.4289102e-6,0,0,0,0,3.5805621155304834e-4,5.985269799999999e-4,0,0,0,0,280.7050450642903,0.911796750677243,13.855105466247057,73.70973521692333,5.570897783797489,19.752967156958555,-0.09354813112490414,0,0,14100.978379035863,0.07758312468608113,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1906,0.6442763573284219,0.9139458953081726,0,0,3.549324480388693,0.0021963609227289758,0.018196454,0.02500016087045272,0.024853655,34.068699518839516,0.11138246,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10645,0,457.00000254313153,4276.7286,953.0924224853514,93.2499831638467,297.66199747721356,466.4356478967891,0,0,0,0,0,0,0,0,0,0,0,0,6.526887545987847e-6,6.466788299999998e-6,0,0,0,0,3.6059561534784734e-4,6.027991099999999e-4,0,0,0,0,280.9800465901692,0.9228643088832689,13.959645369835703,73.46173851221981,5.607842106776347,19.60693136091458,-0.09545551104287764,0,0,14766.450119103303,0.17494042863794804,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1907,0.726915977115476,0.9229970275040732,0,0,3.6744573684699935,0.002872606390155852,0.016966195,0.025000798360755045,0.025812945,34.074700037638344,0.10398923,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14627,0,457.00000254313153,4278.822,959.1561177571614,94.5608019449233,298.0979944864909,480.31745635776645,0,0,0,0,0,0,0,0,0,0,0,0,6.5728515892260475e-6,6.507102e-6,0,0,0,0,3.6313501914264634e-4,6.0735196e-4,0,0,0,0,281.2760442097981,0.9335570189055034,14.216774986296493,76.00444514305916,5.925751520425966,20.144490748304303,-0.09692403030316216,0,0,16264.987209463294,0.062031619541395626,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1908,0.7032325912946371,0.932378464388443,0,0,3.675876640379726,0.0037649905619521937,0.021404879,0.02499991360430916,0.029231937000000006,34.08239936828613,0.12765503,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12414,0,457.00000254313153,4277.6586,964.0852966308593,95.71237193404865,298.5179901123047,482.5826340091374,0,0,0,0,0,0,0,0,0,0,0,0,6.618815632464248e-6,6.5407783e-6,0,0,0,0,3.6567443021340296e-4,6.111398000000001e-4,0,0,0,0,281.61104329427076,0.9439781461374255,14.407422860628587,76.85623799627187,5.975251674338594,20.34218954572492,-0.09839254956344667,0,0,15590.713118515627,0.12577421060954422,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1909,0.7293531000033262,0.9394639872302616,0,0,3.6900486620571034,0.004334990129185219,0.036714367000000005,0.02507337733792762,0.7650859999999999,34.087400118509926,0.21121463,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.16533,0,457.00000254313153,4279.8240000000005,969.3983662923176,96.46669460330283,298.93599192301434,480.68946878632124,0,0,0,0,0,0,0,0,0,0,0,0,6.664779675702448e-6,6.5813135e-6,0,0,0,0,3.6821383400820196e-4,6.1571818e-4,0,0,0,0,281.95004526774085,0.9541466929230623,14.465734280062996,76.44087709943787,6.04171533179017,20.1096713132971,-0.0998610688237312,0,0,16371.00547137995,0.1917775514880681,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1910,0.765726394850593,0.9455920872078338,0,0,3.7676081069530625,0.005609989515505731,0.042342327,0.02532928188641866,1.0366888,34.098299980163574,0.24301505,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14442,0,457.00000254313153,4278.7248,974.7870890299478,97.77187102780431,299.37699635823566,491.4713622185322,0,0,0,0,0,0,0,0,0,0,0,0,6.710743718940648e-6,6.615104700000002e-6,0,0,0,0,3.7075323780300096e-4,6.1951928e-4,0,0,0,0,282.3140436808268,0.9648675091710838,14.7306044680131,78.48124342715315,6.22524154290356,20.602328395865626,-0.10126503542660648,0,0,17123.070519811292,0.19159019115572065,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1911,0.7810146544824405,0.8874036750204771,0,0,3.725917531952306,0.007499988889321685,0.047217079,0.0812472328543663,0.55672031,34.11459986368815,0.27037941,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.20214,0,457.00000254313153,4281.7592,979.4653218587239,98.4293811567004,299.82899220784503,482.3736483687901,0,0,0,0,0,0,0,0,0,0,0,0,6.7567077621788485e-6,6.6575406e-6,0,0,0,0,3.7329264887375757e-4,6.2431671e-4,0,0,0,0,282.72104136149085,0.9761720065989483,14.679374542895259,76.73370568501319,6.205453710840906,20.007607425742776,-0.10240012153911617,0,0,17244.1854917937,0.1913996219514424,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1912,0.8199661913672125,0.8508398703003752,0,0,3.7091004678175183,0.009259988398601612,0.055977137,0.10000008965531985,1.3372385,34.12980047861735,0.31844894,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.23472,0,457.00000254313153,4283.4718,983.6058603922525,99.26614632335712,300.3529917399089,477.9889214580395,0,0,0,0,0,0,0,0,0,0,0,0,6.802671805417049e-6,6.6972695e-6,0,0,0,0,3.7583205024323735e-4,6.288021400000001e-4,0,0,0,0,283.01904296874994,0.9924203303369911,14.713664798160675,75.8316081908469,6.21946391056852,19.680892428681513,-0.10353520765162587,0,0,17989.19691090075,-0.2483084466661772,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1913,0.889533970104308,0.8203484804069425,0,0,3.787939036045986,0.011569987594460448,0.05934571,0.11666701609889667,2.7874772,34.1497999827067,0.33694139,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.25437,0,457.00000254313153,4284.5046,986.2423197428384,100.61255837319116,300.9099934895833,488.2676034939648,0,0,0,0,0,0,0,0,0,0,0,0,6.848635848655249e-6,6.7356009000000015e-6,0,0,0,0,3.7837145403803635e-4,6.3312652e-4,0,0,0,0,283.3620402018229,1.0114400974128448,14.921807646192061,77.57996159883326,6.453879619764709,20.00732869050688,-0.10467029376413556,0,0,19072.753187289316,-0.30943169229472783,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1914,0.8114913689780275,0.8092045045442162,0,0,3.764418792127778,0.014084987109526992,0.064801984000000007,0.19333053504427275,4.5655912,34.17150020599365,0.36726542,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.19867,0,457.00000254313153,4281.5767,988.610880533854,102.28405865111169,301.4189910888672,494.4978826289548,0,0,0,0,0,0,0,0,0,0,0,0,6.894599891893449e-6,6.765480200000002e-6,0,0,0,0,3.809108626834738e-4,6.3647677e-4,0,0,0,0,283.71604156494135,1.0321295138459616,15.241497455163927,79.77807342879137,6.499176732511072,20.59248108677444,-0.10580537987664523,0,0,17594.434057832063,0.020398445252377703,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1915,0.8029916592535993,0.7974019582591167,0,0,3.7223377832742996,0.016684986495723326,0.08400062900000001,0.31655970215797424,6.2098372,34.193999926249184,0.47153519,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.2716,0,457.00000254313153,4285.4105,991.4610799153645,103.0579197466507,301.9369888305664,484.24768488469795,0,0,0,0,0,0,0,0,0,0,0,0,6.9405635182799115e-6,6.8098518e-6,0,0,0,0,3.8345026890359196e-4,6.4149729e-4,0,0,0,0,284.04704284667963,1.0546195831794383,15.232131029774814,78.35040062356745,6.4827720725927875,20.061424577974346,-0.10694046598915492,0,0,17573.116044207876,0.1641375391623491,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1916,0.8653307900276433,0.7997102256366486,0,0,3.744207068777381,0.019669986019531887,0.10465075,0.5206524853905042,5.9968917,34.21979999542236,0.58467971,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.29863,0,457.00000254313153,4286.831,998.4538218180337,104.08894352066241,302.48498789469403,482.95426600786,0,0,0,0,0,0,0,0,0,0,0,0,6.986527523622499e-6,6.8490958e-6,0,0,0,0,3.8598967269839096e-4,6.4592684e-4,0,0,0,0,284.31204223632807,1.077791381611315,15.342847178146304,78.27985154770643,6.60168085846147,19.908298607149394,-0.1080755521016646,0,0,19065.484279863696,0.18922175763831675,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1917,0.896621584801294,0.8027455741063269,0,0,3.8263968555995858,0.02392498527963956,0.11034348,0.7563406427701315,5.1585271,34.2564001083374,0.61870744,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.37275,0,457.00000254313153,4290.7275,1003.5705515543618,105.4397414501963,303.01098887125653,492.9600447524987,0,0,0,0,0,0,0,0,0,0,0,0,7.032491566860699e-6,6.8937875e-6,0,0,0,0,3.885290813438284e-4,6.509842700000001e-4,0,0,0,0,284.6150461832682,1.1002556131310455,15.500365004779491,80.4548180697849,7.003710361287698,20.17756104011222,-0.10921063821417433,0,0,19906.998931884555,0.19018318847478569,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1918,0.8873955587039598,0.8060358496732685,0,0,3.8305973797130326,0.02868998423218727,0.10461425,0.9276737372080485,4.2721672,34.29749997456869,0.58914082,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.37311,0,457.00000254313153,4290.7462,1010.1304473876952,106.74593160054405,303.44898732503253,496.242073076373,0,0,0,0,0,0,0,0,0,0,0,0,7.078455610098899e-6,6.9300659e-6,0,0,0,0,3.910684875639466e-4,6.550720200000001e-4,0,0,0,0,284.80504862467444,1.1212267086350811,15.704391027274072,81.61294813978053,7.118191256260811,20.368951576880015,-0.110345724326684,0,0,19743.244967391554,0.1899763122778872,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1919,0.7808604024397078,0.8111591475979437,0,0,3.7226411346821937,0.03343498365332683,0.10155164,1.0843643546104431,3.196035,34.338699658711754,0.57214502,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.33647,0,457.00000254313153,4288.8202,1017.6303660074868,108.09510704377881,303.8139877319336,490.9794171167238,0,0,0,0,0,0,0,0,0,0,0,0,7.1244196533371e-6,6.962042700000002e-6,0,0,0,0,3.936078889334264e-4,6.5866401e-4,0,0,0,0,284.85105133056635,1.1402334776582428,15.915652713498652,81.67724386438958,6.926922672741556,20.368638212598857,-0.1115197148188522,0,0,16994.786869895725,0.18976010178406924,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1920,0.9030601007400624,0.8135184546759534,0,0,3.8130101207834444,0.03770498279482126,0.071874804,1.176037738720576,4.0059497,34.375800132751465,0.41169313,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.40157,0,457.00000254313153,4292.2427,1025.0703277587888,109.13363853305731,304.24598693847656,498.87459987539705,0,0,0,0,0,0,0,0,0,0,0,0,7.1703836965753e-6,7.0058716e-6,0,0,0,0,3.961472951535446e-4,6.636221499999999e-4,0,0,0,0,284.9290440877278,1.157633764648187,16.036656139503478,82.96992111207,7.3188151464881575,20.402395098799328,-0.11278881532908334,0,0,18802.69892302283,0.18954070686553806,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1921,0.7938358638145999,0.8612993334837397,0,0,3.661222702405219,0.042184981517493725,0.05599481,1.241669515768687,6.3575754999999985,34.4146998723348,0.32444592,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.42979,0,457.00000254313153,4293.7261,1032.2003377278643,109.80934796264431,304.59998830159503,486.6136241874396,0,0,0,0,0,0,0,0,0,0,0,0,7.2163477398135e-6,7.045455500000001e-6,0,0,0,0,3.98686703798982e-4,6.6809072e-4,0,0,0,0,285.0390421549479,1.173417684573443,16.01016129774032,81.18725519244387,7.146950074087312,19.846108774902355,-0.11405791583931453,0,0,16049.705932221917,0.1893181118062252,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1922,0.8438966628298804,0.8533692042065284,0,0,3.6583337227642674,0.04389498041321834,0.10093674,1.3888855278491974,7.5196689,34.43010012308756,0.56921203,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.47367,0,457.00000254313153,4296.0327,1039.1002502441404,110.48581040150992,304.9449818929036,484.8273418444006,0,0,0,0,0,0,0,0,0,0,0,0,7.2623117830517e-6,7.0869364000000015e-6,0,0,0,0,4.01226107593781e-4,6.7277807e-4,0,0,0,0,285.17004903157545,1.188779371830489,16.07300912106922,80.53069430512947,7.252038815173717,19.474278395734512,-0.11532701634954567,0,0,16950.895997894484,0.0877045766097048,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1923,0.9595590008888546,0.8614844099618343,0,0,3.8812462099992877,0.04700497972468535,0.13753371,1.6249915957450867,8.1995609,34.45719941457113,0.77479139,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.54539,0,457.00000254313153,4299.8026,1045.1300659179685,112.25356413194692,305.27098337809247,514.2343951443905,0,0,0,0,0,0,0,0,0,0,0,0,7.308275826289901e-6,7.131803e-6,0,0,0,0,4.037655138138992e-4,6.7785565e-4,0,0,0,0,285.46704101562494,1.205120977529758,16.469305300306814,86.27583424473677,8.013836332456805,20.417825208931507,-0.11659611685977685,0,0,19723.672024100037,0.12093783396952988,0.004446569985399644,0.007723268,0,0,0,0 +1924,0.9703594405113312,0.8676633311171565,0,0,3.7748090158825875,0.052589978401859604,0.14595489,1.8459543486436207,10.064032,34.50569979349772,0.82730698,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.55899,0,457.00000254313153,4300.5175,1049.450032552083,112.63350596587964,305.62998453776044,499.0974143950571,0,0,0,0,0,0,0,0,0,0,0,0,7.354239869528101e-6,7.169801200000001e-6,0,0,0,0,4.0630492245933664e-4,6.8214162e-4,0,0,0,0,285.6050491333007,1.2222190421891945,16.415647771084632,83.21123114220697,7.790296571572385,19.77882376042076,-0.117865217370008,0,0,19521.89407498274,0.18863121099961191,0.004446569946594536,0.0077232683,0,0,0,0 +1925,0.9836991206856317,0.8708471713839661,0,0,3.7906069821644643,0.05885497791071733,0.15281139,2.1164215207099915,9.887985,34.5605993270874,0.86947278,0,0,0,0,0,0,0,0,0,0,5.299997687339783,105.60265,0,457.00000254313153,4302.8128,1052.159952799479,113.6704269189651,305.81298065185547,502.6957687586778,0,0,0,0,0,0,0,0,0,0,0,0,7.400203495914563e-6,7.2114506e-6,0,0,0,0,4.0884432625413564e-4,6.8684841e-4,0,0,0,0,285.6520512898762,1.2377911006225208,16.841681561106117,84.06174423454924,7.983263811925956,19.753454837168906,-0.11913431788023915,0,0,19738.889839322743,0.18839574168627352,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1926,0.9711936637110966,0.8752881607638067,0,0,3.724383638277895,0.06516497613241275,0.16877181,2.460367262363434,10.020584,34.616199811299644,0.96266008,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.65209,0,457.00000254313153,4305.4116,1053.600107828776,114.54563027246535,305.9539845784505,499.041820374083,0,0,0,0,0,0,0,0,0,0,0,0,7.4461675012571504e-6,7.2538666e-6,0,0,0,0,4.1138373004893464e-4,6.9164354e-4,0,0,0,0,285.69204711914057,1.2526121062865871,17.14732507530922,84.16877083488303,8.057166101708676,19.573020111236303,-0.12040341839047032,0,0,19808.91323463674,0.18815706175477445,0.0044465700242047506,0.0077232683,0,0,0,0 +1927,1.0719822978926645,0.9148152429216062,0,0,3.8503573823854342,0.0720199750115474,0.19366311,2.6942857106526694,13.691728,34.67679913838705,1.1076116000000005,0,0,0,0,0,0,0,0,0,0,5.299997607866923,105.65063,0,457.00000254313153,4305.3352,1055.770568847656,115.74747998347533,306.17698669433594,515.0910883833536,0,0,0,0,0,0,0,0,0,0,0,0,7.492131544495351e-6,7.290134400000002e-6,0,0.0049450274,0,0,4.1392313869437203e-4,6.9573008e-4,0,0,0,0,285.7400512695312,1.2667652835613548,17.432321744004053,86.52753524964037,8.499773806732605,19.875509864662817,-0.12167251890070148,0,0,21139.782286868525,0.187915087386083,0.004446569985399644,0.0077232677,0,0,0,0 +1928,1.0761742979146,0.9182619073884535,0,0,3.828134931557229,0.07970497260491054,0.21328049999999998,3.02649054924647,16.914307,34.74499924977621,1.2252077,0,0.020814729,0,0,0,0,0,0,0,0,5.2999982436498,105.59392,0,457.00000254313153,4302.3537,1060.6403605143228,116.7958666079441,306.3289794921875,515.8400889336957,0,0,0,0,0,0,0,0,0,0,0,0,7.538095587733551e-6,7.3196023e-6,0,0.030139896,0,0,4.1646254248917103e-4,6.990328999999999e-4,0,0,0,0,285.83304850260413,1.2797850846246124,17.62700284771002,87.11586336850812,8.569023694913732,19.91593076109437,-0.12294161941093265,0,0,21065.047460560574,0.16326849505962074,0.004446569985399644,0.007723269,0,0,0,0 +1929,1.1569513873862218,0.945536477224549,0,0,3.8902159937355303,0.08870497221748035,0.20802541,3.517713646094004,19.38339,34.825199127197266,1.2037865,0,0.33502494,0,0,0,0,0,0,0,0,5.299996972084045,105.60372,0,457.00000254313153,4297.9849,1066.6603291829424,118.01999771578741,306.49498748779297,527.0535755087527,0,0,0,0,0,0,0,0,0,0,0,0,7.584059630971751e-6,7.3457199e-6,8.387752144093005e-4,0.003329301,0,0,4.1900194628397003e-4,7.019496099999999e-4,0,0,0,0,285.8910522460937,1.290827581649255,17.867272783472913,89.37670246877072,8.894481947800461,20.274973944467554,-0.1242107199211638,0,0,22402.21951573089,0.008459436299327926,0.004446569946594536,0.007723266199999999,0,0,0,0 +1930,1.0728864782722383,1.0228008835417055,0,0,3.9076228058376485,0.0980799701064825,0.17035764,4.063463946183522,20.571834,34.909299532572426,0.99750344,0.001314997343191256,1.1701026,0,0,0,0,0,0,0,0,5.299998998641968,105.91828999999998,0,457,4287.8382,1072.6401163736978,119.67017881003574,306.6199773152669,535.0349028180784,0,0,0,0,0,0,0,0,0,0,0,0,7.630023560523114e-6,7.3580297999999985e-6,0.00510867650154978,-0.026051043,0,0,4.2154135735472664e-4,7.0327493e-4,0,0,0,0,285.9380518595377,1.3003703550961545,18.10997615018731,91.59573862667055,8.841770878325681,20.952388588675653,-0.12547982156900256,0,0,20792.33985686783,0.17991195822791398,0.004446570101814966,0.0077232725,0,0,0,0 +1931,0.9686717262631225,1.0331302905231323,0,0,3.699193086333459,0.10662497021257877,0.11326202,4.702978173891704,21.232329,34.9865992863973,0.6766021,0.021151568042114377,1.6600328999999998,0,0,0,0,0,0,0,0,5.3066509167353315,106.6887,0,457.000005086263,4282.6938,1077.4902242024737,119.90750782308882,306.82198333740234,504.89813450435264,0,0,0,0,0,0,0,0,0,0,0,0,7.675987490074476e-6,7.3819696e-6,0.0013775627594441175,-0.0038292076,0,0,4.2408076114952564e-4,7.059406299999999e-4,0,0,0,0,286.124043782552,1.3073181920546588,17.958294196248843,86.48531866506026,8.206316153499158,19.782983456664027,-0.12674892343562766,0,0,18348.14599749548,0.1869152841968948,0.0044465698301792145,0.0077232589,0,0,0,0 +1932,0.8802743934777767,0.934985060725432,0,0,3.701120518695932,0.11274996710320313,0.085847633,5.2942134141922,23.837144,35.04279931386312,0.51911084,0.07499745239814122,1.6167368,0,0,0,0,0,0,0,0,5.338305354118347,107.41813,0,457.00000254313153,4276.7559,1081.9602254231768,121.42198728704909,307.09297943115234,510.1823315036154,0,0,0,0,0,0.0057643486,0,0,0,0,0,0,7.721951533312676e-6,7.4038620000000015e-06,6.616643853097534e-4,7.431065e-4,0,0,4.2662016494432464e-4,7.083703599999999e-4,0,0,0,0,286.222048441569,1.3141063515038527,18.10001303714107,87.9072537284969,8.14248430159185,20.161815548303863,-0.12801802530225273,0,0,16151.105195411223,0.04254262073622287,0.004446570334645609,0.0077232888,0,0,0,0 +1933,0.9234526077537247,0.9318013427122356,0,0,3.6739916956408347,0.11636996641755104,0.10162739999999999,5.937420805295308,28.120028,35.076699574788414,0.61081444,0.12499795357386272,1.6336582,0,0,0,0,0,0,0,0,5.379978577295939,108.09758,0,456.99999745686847,4271.2585,1086.540334065755,122.34376589659303,307.40198008219403,508.11601205842635,0,0,0,0,0,0.14482802,0,0,0,0,0,0,7.767915576550877e-6,7.4266479000000016e-6,7.192010428601255e-4,8.0764091e-4,0,0,4.2915957358976203e-4,7.1090308e-4,0,0,0,0,286.3710505167643,1.3197777870137994,18.14058311592853,87.73926442282286,8.102332976784076,20.019613310457757,-0.1292871271688778,0,0,16995.040808999714,0.15037091489606738,0.004446569170492391,0.0077232216,0,0,0,0 +1934,1.000687973523085,0.9200297551297542,0,0,3.8176224066538618,0.120129964624842,0.15202423,6.679798523585002,34.519287,35.111599604288735,0.91252255,0.174997894714276,1.6505883,0,0,0,0,0,0,0,0,5.419978777567546,108.91202,0,456.99999745686847,4272.3774,1091.770294189453,123.95329985100088,307.7849833170573,528.0331660089164,0,0,0,0,7.617614949898174e-4,0.60639434,0,0,0,0,0,0,7.813879619789077e-6,7.4653224e-6,7.817409447549531e-4,8.7789025e-4,0,0,4.3169897738456103e-4,7.152669800000001e-4,0,0,0,0,286.4670486450195,1.326062978814577,18.32411358884008,91.49703968423377,8.603675585096985,20.702617836824825,-0.1305562290355029,0,0,18679.912767508573,0.18613128672545048,0.004446571848044793,0.007723374200000002,0,0,0,0 +1935,1.0505968685462075,0.9186843152571444,0,0,3.826763235457096,0.12510996125638485,0.22028466,7.595823089281718,40.132859,35.15789985656738,1.3303298,0.22499790415167809,1.6675173,0,0,0,0,0,0,0,0,5.459979295730591,109.70014,0,457,4272.1486,1097.08012898763,124.8946043872966,308.2269795735677,529.4409406291938,0,0,0,0,0.019080033137773473,0.97427321,0,0,0,0,0,0,7.859843663027277e-6,7.500741299999999e-6,8.497191738570109e-4,9.5422447e-4,0,0,4.3423838117936003e-4,7.192557e-4,0,0,0,0,286.58704884847,1.332452330452497,18.317319645408826,91.90214074154562,8.779424673428734,20.543197042155484,-0.13182533090212795,0,0,20077.943320367118,0.18586353451204687,0.004446565833253165,0.0077230226,0,0,0,0 +1936,1.1503667221829357,0.9270693885573005,0,0,3.9720080230657695,0.13321496173739433,0.28820401,8.761372248331705,42.33712,35.23359902699789,1.7570203000000002,0.27499790986378986,1.6844464,0,0,0,0,0,0,0,0,5.4999799728393555,110.56758,0,456.999994913737,4275.9063,1101.8303019205728,126.46470475438792,309.01197306315106,550.0398548533171,0,0,0,0,0.07932233065366745,1.0455299,0,0,0,0,0,0,7.905807706265477e-6,7.545934399999999e-6,9.236086334567517e-4,0.001037276,0,0,4.367777898247975e-4,7.243709e-4,0,0,0,0,286.7470448811848,1.3386899894061661,18.652869642211954,95.83484543323485,9.362043924590697,21.164186541248704,-0.13309443276875307,0,0,21597.571787769164,0.185592517547358,0.0044465794538458185,0.007723846199999999,0,0,0,0 +1937,1.231103104871657,0.9045164915618376,0,0,3.977215074471826,0.14407995715737343,0.34372195,10.024959723154703,44.188471,35.3363987604777,2.1186454,0.3249979118506114,1.7013755000000002,0,0.0063900215,0,0,0,0,0,0,5.539980530738831,111.3625,0,457.00000254313153,4275.9946,1106.3199869791665,127.18233706750797,309.7639745076497,550.6109419060176,0,0,0,0,0.1400045237193505,1.1131878000000002,0,0,0,0,0,0,7.951771749503678e-6,7.5821791e-6,0.0010039232001872733,0.0011274768,0,0,4.3931719604491565e-4,7.2845477e-4,0,0,0,0,286.95104471842444,1.3465253526433507,18.73588299543127,95.84567433043011,9.575630542004474,20.850604708617507,-0.13436353463537815,0,0,23231.712031323073,0.1853182578338796,0.004446548409759998,0.0077218498,0,0,0,0 +1938,1.1614219711074325,0.9073215418860066,0,0,3.8795464313880084,0.1580399548014005,0.39883954,11.266163110733032,49.06474,35.46979935963949,2.4891541,0.3749979188044866,1.7183046999999998,0,0.1328808,0,0,0,0,0,0,5.579981207847595,112.0603,0,456.99999745686847,4271.2734,1110.6307983398435,127.90539303616418,310.2939758300781,535.4268484555511,0,0,0,0,0.20000430569052696,1.185033,0,0,0,0,0,0,7.997735792741878e-6,7.6064912e-6,0.0010912219295278192,0.0012254241,0,0,4.4185659983971465e-4,7.3116337e-4,0,0,0,0,287.191042582194,1.3551266769032138,18.7206280051743,93.2370606174549,9.13361208452991,20.283818003860038,-0.13563263650200325,0,0,21542.975865724657,0.1850407365123296,0.004446620470844209,0.0077285525,0,0,0,0 +1939,1.2326137038964111,0.9058800276933815,0,0,4.010820601451636,0.1736899564663569,0.43390074,12.575761953989664,56.68305400000001,35.62149874369303,2.745053,0.4249979183077812,1.7352338,4.437717252585571e-4,0.68779311,0,0,0,0,0,0,5.61998176574707,112.8293,0,457.00002034505206,4270.1197,1116.909678141276,129.50135676592018,310.8509750366211,554.5379171230255,0,0,0,0,0.26000453531742096,1.2571398,0,0,0,0,0,0,8.043699835980078e-6,7.6395717e-6,0.0011861117285055418,0.0013320616,0,0,4.443960084851521e-4,7.3488257e-4,0,0,0,0,287.3870468139648,1.3668291715856424,18.987929691357078,97.34535423251211,9.632984018885308,21.020853325485078,-0.13690173836862835,0,0,23010.268809183824,0.1847599106254542,0.004446447691104065,0.11813875,0,0,0,0 +1940,1.332494477928578,0.8934636293441599,0,0,4.026253626433618,0.19239995131889978,0.50172554,14.090854724248251,67.98074100000001,35.804999033610024,3.2190952,0.4749979227781296,1.7521629,0.009225911945880702,1.4928916,0,0,0,0,0,0,5.6599823633829756,113.75015,0,456.9999643961589,4276.3916,1120.120178222656,130.13499426241637,311.35697682698566,550.4654056455058,0,0,0,0,0.3200042446454366,1.3304593999999998,0,0,0,0,0,0,8.089663500262153e-6,7.6912641e-6,0.0012892556163327147,0.0014481828,0,0,4.469354122799511e-4,7.4074684e-4,0,0,0,0,287.61904144287104,1.3795892066065865,18.93380647928792,96.49612886832482,9.961368880607099,20.566275747266797,-0.13793690008074544,0,0,25159.0741191676,0.1844758339571321,0.0044469935819506645,0.21814961,0,0,0,0 +1941,1.3573323902091925,0.87608140300394,0,0,4.050294266866393,0.21106995145479837,0.64957282,15.872149070103964,81.740279,35.991299311319985,4.2240743,0.5249979098637899,1.769092,0.04815833130851388,2.2339929,0,0,0,0,0,0,5.69998296101888,114.54353,0,457.0000813802083,4282.9257,1123.240509033203,132.2180939399341,311.81097412109375,552.9500650768001,0,0,0,0,0.3800046021739642,1.4028748,0,0,0,0,0,0,8.135627467709128e-6,7.727317500000001e-6,0.0014013840700499713,0.0015741503,0,0,4.494748160747501e-4,7.448086699999999e-4,0,0,0,0,287.8640467325846,1.42706317607174,19.034030783582587,97.09407345232208,10.193711740010501,20.462031367555745,-0.1386016615843945,0,0,26113.949704774812,0.1841885864846894,0.012151915968085328,0.1951164,0,0,0,0 +1942,1.3590493190022876,0.8973145216954003,0,0,4.1141932838166495,0.23562495286266008,0.84353078,18.12043031056722,95.021136,36.23889923095703,5.585489,0.5749979317188263,1.7860212,0.112600847457846,2.976471,0,0,0,0,0,0.19841173,5.739983518918355,115.26991,0,456.9997380574544,4303.7401,1128.1901550292966,134.70602408126945,312.17197672526044,560.1841861089208,0,0,0,0,0.4400041376550992,1.4745563999999998,0,0,0,0,0,0,8.181591510947328e-6,7.7551846e-6,0.0015232670799984287,0.0017109548,0,0,4.5201422229486826e-4,7.4792699e-4,0,0,0,0,288.1380538940429,1.5298185446895778,19.210183227285178,98.65719695401302,10.345483778655613,21.014193770024683,-0.13926642308804354,0,0,26702.042786503276,0.18389809416798145,0.018664849922060966,0.16898031,0,0,0,0 +1943,1.4029458246329907,0.8921248427380299,0,0,4.11408578168194,0.267039954662323,0.80476688,20.794118722279865,89.521615,36.56109873453776,5.4576739000000005,0.6249979237715403,1.8029502,0.20245546102523804,3.7199961,0,0,0,0.056451758,0,4.3053247,5.77998411655426,116.04761,0,457.93199666341144,4331.4951,1132.6601562499998,136.62968688428126,312.3899790445964,561.0185502959332,0,0,0,0,0.5000047385692596,1.5467027,0,0,0,0,0,0,8.227555554185528e-6,7.789335e-6,0.0016557506072179724,0.0018597366,0,0,4.545536309403057e-4,7.517695e-4,0,0,0,0,288.78102874755854,1.6777932069727464,19.226489945128584,99.48634644476039,10.644062862464148,20.76469900653816,-0.13993118459169265,0,0,27110.348585419746,0.1836043762155363,0.023900681796173256,0.14684461,0,0,0,0 +1944,1.3879131189978564,0.8983189521156985,0,0,4.111269896041665,0.30831495175759,0.41764093,23.86478344599406,72.69430200000002,36.99279912312826,2.9606569,0.6749979356924692,1.8198794,0.3176470845937729,4.4638059000000005,0,0,0,0.97266311,0.019433656940236688,16.545617,5.8199847141901655,116.85265,0,460.7425028483073,4354.745,1136.270060221354,138.93105622391963,312.41297149658203,569.4275578497453,0,0,0,0,0.5600039213895798,1.6191675,0,0,0,0,0,0,8.273519597423729e-6,7.8268219e-6,0.00179975672896641,0.0020215068,0,0,4.570930347351047e-4,7.559967e-4,0,0,0,0,289.00005086263013,1.8537439967013465,19.454671365649084,102.00830515112277,10.972149966258387,20.918122282494288,-0.14059594609534168,0,0,26578.15151015907,0.18330738198668892,0.027877628337591887,0.11439264,0,0,0,0 +1945,1.180916481863783,0.8988221719461101,0,0,3.970406317162407,0.33637995769580203,0.20111842,25.904248396555584,68.369262,37.297698974609375,1.5076942,0.7249979277451833,1.8368084,0.4580556924144427,5.2077233,0,0,0.004844144840414326,3.4593405,0.4215002196530501,24.846154,5.85998531182607,117.6118,0,463.24369557698566,4376.5008,1139.32036336263,141.02296395690516,312.38497670491535,562.3881403027648,0,0,0,0,0.6200050512949625,1.69101,0,0,0,0,0,0,8.319483640661929e-6,7.8587212e-6,0.0019562874901263663,0.0021972582,0,0,4.596324409552229e-4,7.595796e-4,0,0,0,0,289.2270406087239,2.0468366239992983,19.530998731486306,102.38686289278726,10.811058367654892,20.630415192374578,-0.14126070759899073,0,0,23414.92285804937,0.18300712894373766,0.03101034214099248,0.080798572,0,0,0,0 +1946,1.2942110656768657,0.9829470073282762,0,0,3.9716964354580995,0.3442649617791176,0.27970458,27.504756927490234,74.71723399999998,37.39169883728027,2.0726649,0.7749979496002197,1.8537378,0.6235543092091879,5.9856104000000006,0,0,0.08337228807310264,4.940467900000002,1.6357106665770214,24.839378,5.899985949198405,118.39896,0,465.7432912190755,4399.6117,1143.6604919433591,142.70640224525258,312.38997141520184,555.2899629515077,0,0,0,0,0.680003434419632,1.7631907999999998,0,0,0,0,0,0,8.365447683900129e-6,7.894034299999999e-6,0.002126432334383329,0.0023883489,0,0,4.621718496006603e-4,7.635561099999999e-4,0,0,0,0,289.4270451863606,2.2422352077889016,19.68948842063387,102.65818348678006,10.80993836386383,20.305933499558623,-0.14192546910263978,0,0,23137.2912384495,0.18270359473494088,0.03229169764866432,0.06430042700000001,0,0,0,0 +1947,1.4498949379331847,1.013635265025484,0,0,4.004289599390247,0.3536549558242162,0.34838359,29.078561464945476,84.081746,37.50009854634603,2.6369074,0.8249979366858801,1.8706665,0.8140119264523188,6.4443541,0,0,0.3000110412637393,4.8390374000000005,2.835014005502065,24.982371,5.93998658657074,119.2973,0,468.2434260050456,4428.0553,1149.6402994791665,144.7944964951042,312.48597208658856,563.4037753734774,0,0,0,0,0.7400057514508566,1.8372679,0,0,0,0,0,0,8.41141172713833e-6,7.9428476e-6,0.0023113751861577234,0.0025963146,0,0,4.647112509701401e-4,7.6908855e-4,0,0,0,0,289.51104482014966,2.4286545050325703,19.916095128874474,104.15736760766261,11.489678423181335,20.190999473703123,-0.14259023060628884,0,0.0033728385,25978.580134271393,0.18239681638037056,0.03281248671313127,0.046731228,0,0,0,0 +1948,1.541746757752381,1.0217889660432258,0,0,4.123520872976997,0.3683149615923564,0.33316898,31.041143258412678,90.670686,37.670498530069985,2.6243892000000004,0.8749979635079702,1.8875961,1.0316545367240906,6.6649072,0,0,0.5000130111972491,4.856366099999999,4.025014281272888,24.987103,5.979986985524495,120.08364,0,470.7433776855469,4451.0369,1155.630167643229,147.27202945137043,312.5209681193034,586.5360800457117,0,0,0,0,0.8000023066997528,1.966277,0,0,0,0,0,0,8.45737577037653e-6,7.9780491e-6,0.002512403065338731,0.0033276717,0,0,4.672506547649391e-4,7.7305219e-4,0,0,0,0,289.55605316162104,2.589644895931103,20.349060560415165,108.09641738801687,12.195764994941479,20.65035706357972,-0.14325499210993792,0,0.023611977000000003,27162.316753376424,0.1820867991187164,0.0328332781791687,0.020169381,0,0,0,0 +1949,1.5150340802151026,1.0322291088892992,0,0,4.0957465510773075,0.38362496097882587,0.31424196,33.192337354024254,91.962416,37.855198542277016,2.5926444,0.9249979307254156,1.8955033,1.2518172562122345,7.1640705,0,0,0.7000119686126709,5.561141,5.215012947718303,27.295461,6.019987901051839,120.70601,0,473.243403116862,4466.7618,1160.3499450683591,150.21571488778258,312.63197072347003,588.4410386834926,0,0,0,0,0.8600076138973236,1.6426278000000003,0,0,0,0,0,0,8.50333981361473e-6,7.993390500000001e-6,0.0027309151094717285,0.02463759,0,0,4.697900658356957e-4,7.747269e-4,0,0,0,0,289.59805043538404,2.7140139811269637,20.909195897992674,109.1544257771438,11.863971231370714,21.081179377216955,-0.14391975361358694,2.747740879082509e-4,0.063741035,26198.851367200677,0.18177350173895448,0.03209515412648519,-0.0015784357,0,0,0,0 +1950,1.6956807866542396,1.0454343901508287,0,0,4.3312607912797665,0.3969699591398239,0.32876887,35.499832471211754,78.580053,38.023898442586265,2.8441101000000004,0.9749979873498281,1.9897329,1.4824664394060771,7.4706053,0,0,0.8938818424940109,8.1460574,6.382257183392842,32.673745000000004,6.059987783432007,121.62274,0,475.7314631144206,4499.2896,1163.820566813151,152.20100844625213,312.8209762573242,619.9439709148871,0,0,0,0,0.9275005906820297,1.0661465,0,0,0,0,0,0,8.549303477896805e-6,8.0453408e-6,0.003054187574889511,0.10531435,0,0,4.723294696304947e-4,7.806208900000001e-4,0,0,0,0,289.73904164632154,2.7868238058947905,21.601404570641137,113.85984719531825,13.132141828954166,22.105810561368756,-0.14458451511723602,0.001923504489241168,0.16053368,29148.546819670417,0.1814569633566329,0.03030576727663477,2.432756e-4,0,0,0,0 +1951,1.8173567042308394,1.2637884621306537,0,0,4.212336067356143,0.41064496090014774,0.33222262,37.58082548777262,70.47669,38.204298655192055,3.0430784,1.0244279702504475,2.1685287,1.7349158823490143,7.5542237,0,0,1.1468555231889088,12.050138,7.775353193283081,36.815853,6.099990487098694,122.51807,0.014330518,478.3116455078125,4529.1876,1168.810119628906,155.27193516536855,313.01397196451825,593.1994505844021,0,0,0,0,0.9349976976712545,1.0527789,0,0,0,0,0,0,8.59526744534378e-6,8.0850349e-6,0.006885135274690886,0.2343219,0,0,4.748688734252937e-4,7.8510233e-4,0,0,0,0,289.8600540161132,2.8307926461022945,21.710967064016447,109.09095441872181,13.152193894404679,20.398188183698103,-0.14710768873059346,0.005466860408584277,0.23983988,30378.934969744696,0.18113711866275609,0.028203126974403858,0.0011664316,0,0,0,0 +1952,1.8518759304813062,1.2915086581093504,0,0,4.27824996657228,0.42523996035257977,0.32854487,38.706894874572754,76.508762,38.406997998555504,3.2228257,1.079317679007848,2.4120426,1.984303871790568,7.673401400000001,0,0,1.5540266533692677,16.078842,9.444400389989218,40.441283,6.139426151911418,123.26435,0.21725302,481.16064198811847,4558.7052,1174.3108825683591,160.57335760480584,313.3419774373372,606.9563399935745,0,0,0,0,0.9200002650419871,1.4414744,0,0,0,0,0,0,8.64123148858198e-6,8.100092099999999e-6,0.02087512387273212,0.36283509999999997,0,0,4.7740828449605033e-4,7.867442699999999e-4,0,0,0,0,290.02505238850904,2.873469224433514,22.393786048989185,112.61821090484105,13.48661503998857,20.95793435117974,-0.1497592068193485,0.01499934789414207,0.24565292,30772.879377004218,0.1808140109638238,0.026776751192907493,-0.0020300648,0,0,0,0 +1953,1.9058871956207555,1.288662579097105,0,0,4.400134890913105,0.4392099554340045,0.31999622,40.05176067352295,81.681224,38.61429913838705,3.3863087,1.1389276186625164,2.8478934,2.2399121522903442,7.7034458,0,0,2.129436651865641,20.201055,11.213325262069702,45.581432,6.184987505276998,124.06078,1.3575508,484.1764450073242,4600.7084,1183.360656738281,165.68183230817434,313.72996775309247,623.9750547982311,0,0,0,0,0.9262516697247823,2.1004080000000003,0,0,0,0,0,0,8.68719553182018e-6,8.1248995e-6,0.04651178978383541,0.48047903,0,0,4.7994768829084933e-4,7.8950997e-4,0,0,0,0,290.3340403238932,2.918473220829267,23.086276532048977,116.77653779023555,14.050620354457529,21.600939708208692,-0.15241072490810365,0.024999434128403664,0.24572915,31392.44295532122,0.18048767518443254,0.02495241429035862,-2.2819236e-4,0,0,0,0 +1954,1.9553258305658399,1.3426832443153052,0,0,4.475107773130416,0.4534849599003792,0.29457384,41.54246679941813,86.86346999999998,38.84129842122396,3.4048632000000003,1.2079770465691884,3.2763156,2.4949118296305337,7.760213,0,0,2.8635963996251426,25.212381,13.203928073247274,51.892411,6.22998833656311,124.75392,3.6198833,488.50885518391925,4629.2231,1194.4306030273435,170.37100791893153,314.09496815999347,628.9096635314064,0,0,0,0,0.9637557764848074,2.8888848,0,0,0,0,0,0,8.73315957505838e-6,8.1370738e-6,0.08213070034980774,0.59576061,0,0,4.824870896603291e-4,7.9081967e-4,0,0,0,0,290.54804992675776,2.9653052307782946,23.518269296485517,118.7896928573186,14.352627821692423,21.654738949016565,-0.15506224299685875,0.034999388890961804,0.24580572,31601.64061572461,0.1801580463648328,0.0234999794823428,-0.0040708208,0,0,0,0 +1955,2.1387868172549656,1.3878206830387967,0,0,4.585745111893209,0.46671496083339054,0.26311875,43.17295900980631,91.980019,39.07069810231527,3.3346824,1.2937463521957397,3.6788015,2.7499121824900308,7.6370702,0,0,3.7677908142407737,30.727319,15.439632256825766,59.87188100000001,6.274988849957784,125.74327,6.4848679,493.2549794514974,4666.3367,1206.65092976888,174.7404470567501,314.4149703979492,641.3267253315221,0,0,0,0,1.0538601179917653,3.5564777000000003,0,0,0,0,0,0,8.77912361829658e-6,8.184845900000001e-6,0.1274599153548479,0.70910415,0,0,4.8502649830576655e-4,7.9623211e-4,0,0,0,0,290.84404500325513,3.016004167545106,23.788691617349485,122.54258151361353,15.359884890806127,21.61194057224027,-0.15771376108561386,0.044999435233573117,0.24588273,34555.402722250226,0.17982516920850813,0.021999980478237074,0.0010493547,0,0,0,0 +1956,2.291039468224933,1.4462836425278403,0,0,4.8444014888868745,0.478794959684213,0.22075982,44.93925635019938,97.008491,39.3001979192098,3.0796375,1.3882061143716176,4.2759912,3.006162941455841,7.543031599999999,0,0,4.90076740582784,33.546756,18.00713857014974,66.950489,6.319989720980327,126.58168,9.1561662,496.95969645182294,4699.2729,1221.1007995605466,180.671117460758,314.6979675292969,673.8062290292883,0,0,0,0,1.1860103805859883,4.5322657999999985,0,0,0,0,0,0,8.82508766153478e-6,8.2145095e-6,0.1822890266776085,0.82044371,0,0,4.8756590210056555e-4,7.995574900000001e-4,0,0,0,0,291.1870447794596,3.067693130108469,24.39548109092037,129.82302004314178,16.407730767105924,22.724482756858983,-0.16036527917436896,0.05499937882026037,0.24595899,37118.77108719959,0.1794890063461402,0.020458318758755922,0.006640162099999999,0,0,0,0 +1957,2.384773000160331,1.4774945790842637,0,0,5.084522572350242,0.489309956630071,0.18587639,46.82995192209879,102.11597,39.52009836832682,2.8571248,1.4974753856658936,4.9612019,3.2499133944511414,7.3765313,0,0,6.239397327105205,32.871446,20.977540334065754,72.204141,6.364989757537842,127.41838,11.488509,500.6978174845378,4733.2024,1235.8001810709634,186.0555677386444,314.9919611612956,695.9496130566932,0,0,0,0,1.3464653591314952,5.9875108,0,0,0,0,0,0,8.871051704772981e-6,8.2451464e-6,0.2464121406277021,0.92977447,0,0,4.901053131713221e-4,8.029950599999999e-4,0,0,0,0,291.5120417277018,3.1227659361540883,25.10938270800668,135.59152056062854,17.202288510585237,23.82634944628376,-0.16301679726312407,0.06499945092946291,0.24603635,38873.754310972414,0.1791495207576567,0.019499980999777716,0.004342369,0,0,0,0 +1958,2.4670954688378814,1.5285973472099872,0,0,5.060488042524024,0.4977349440256755,0.17928487,48.83994928995768,107.206,39.715097745259605,2.9954591,1.6274844805399578,5.6330503,3.4969948132832847,6.9087313,0,0,7.567232608795166,34.746284,24.184339841206867,80.925329,6.409992456436157,128.42262,14.781202,504.5039291381836,4771.3965,1247.4204813639321,188.38553994967657,315.344965616862,661.285485841322,0,0,0,0,1.5845945576826732,7.120203999999998,0,0,0,0,0,0,8.917015748011181e-6,8.2860065e-6,0.3196182499329249,1.0371306,0,0,4.926447145408019e-4,8.0761087e-4,0,0,0,0,291.7720464070637,3.18418831910038,25.26871426472444,129.20858361180427,17.043104741234497,22.24665040214954,-0.16566831535187918,0.07499935726324718,0.24611309999999997,39341.991357154206,0.1788067540033275,0.018499995737026136,0.0026052944,0,1.5255345e-5,0,1.550744e-4 +1959,2.6036729140488357,1.4736682886389454,0,0,5.186762349282971,0.505239948630333,0.18081021,50.97114499409994,112.29185,39.90489800771078,3.2476716,1.777483691771825,6.388022599999998,3.7265921036402383,6.8760458,0,0,8.797123988469442,43.506257,27.60905106862386,93.983467,6.4542984167734785,129.47587,18.063698,508.3637110392253,4808.726,1257.320078531901,192.68675731110378,315.8069661458333,665.4367222123257,0,0,0,0,1.9060347974300385,8.0253807,0,0,0,0,0,0,8.962979791249381e-6,8.3259739e-6,0.40169936915238696,1.1424694,0,0,4.951841207609201e-4,8.121238e-4,0,0,0,0,291.98704274495435,3.250322629161094,25.784568318874836,131.21049744121555,17.515266326606977,22.136950451664426,-0.1683198334406343,0.08499948245783646,0.30755864,41319.47350993611,0.1784607567238176,0.017499990140398342,8.684612300000001e-4,0,1.2225318000000002e-4,0,0.0012460364 +1960,2.728446849074149,1.4615195318866923,0,0,5.288213084302709,0.5130949467420578,0.17259465,53.211243311564125,117.2597,40.118597666422524,3.3209398,1.9469429155190785,7.3201718,3.938670496145884,7.2392631,0,0,10.23712126413981,56.28148100000001,31.60536019007365,107.5417,6.504989147186279,130.53321,21.750437,512.2328440348307,4847.0424,1264.1198730468748,197.26110047577146,316.62496693929035,668.5656629833454,0,0,0,0,2.2494065960248313,9.5885732,0,0,0,0,0,0,9.008943455531456e-6,8.3712137e-6,0.49244747559229535,1.2458107,0,0,4.977235318316767e-4,8.1724438e-4,0,0,0,0,292.2830454508463,3.323928526213912,26.127946785499923,133.33681491027784,18.137986763264845,22.068663139398165,-0.16971698815179884,0.09499939220647018,0.43040209999999995,42970.73471143208,0.17811146430862335,0.016499992460012436,-8.684921e-4,1.2107990556842196e-6,2.3072394e-4,6.978449713794059e-6,0.0023750868 +1961,2.7521018504089363,1.531158201999545,0,0,5.280187774913458,0.5207299540440241,0.16861102,55.563539822896324,121.58986000000002,40.34249718983968,3.4304351000000004,2.141221841176351,8.4287849,4.1636671622594195,7.4514735,0,0.0018618006,12.167853911717733,70.618557,36.23666445414225,123.80387,6.554991841316223,131.26152,27.278298,516.0400848388672,4864.0212,1269.4615275065103,205.13834130452685,317.29896291097003,701.0053452576341,0,0,0,0,2.637653867403666,11.884386,0,0,0,0,0,0,9.054907422978431e-6,8.367736999999999e-6,0.5916525920232137,1.346892,0,0,5.002629332011566e-4,8.1675024e-4,0,0,0,0,292.60204569498694,3.545375735491367,26.889738501199272,143.56526348207862,18.738996990578176,23.373573142607228,-0.17042405828273247,0.10999903393288453,0.55328481,48370.747602751726,0.1748425912224242,0.015499991675217947,-0.0026053238,9.686392521264983e-6,2.4913556000000003e-4,5.5827597558770016e-5,0.003546415 +1962,2.868392578555052,1.520724683920321,0,0,5.268371108547883,0.5278749416271845,0.17112099,58.007436752319336,125.71015,40.56609694163004,3.6249821,2.365680515766144,9.612767800000002,4.398663679758708,7.580527900000001,0,0.045181371,14.639893293380737,86.214551,41.47677803039551,144.89716,6.604418396949768,132.4011,32.049021,519.7264709472656,4895.6486,1282.5712890624998,207.2122991826155,318.0439631144206,678.8492233714484,0,0,0,0,3.1291542649269104,14.500089,0,0,0,0,0,0,9.100871466216631e-6,8.405538e-6,0.699107696612676,1.4460951000000002,0,0,5.028023394212747e-4,8.2101348e-4,0,0,0,0,292.9450378417968,3.678783292234149,27.391344297603926,140.1058920148071,19.332929386112895,22.550094638193304,-0.1711311284136661,0.12999879072109857,0.61483924,49373.4626711147,0.018878477916170075,0.01449999026954174,-0.0043425207,1.9372784966738738e-5,2.5250226000000003e-4,1.1165519572386984e-4,0.0049206759 +1963,3.036186160713145,1.5272093107248352,0,0,5.437875742912039,0.535164937376976,0.18314033,60.507436434427895,128.88013,40.80479653676351,3.9881367,2.6255189975102744,10.949721,4.63597031434377,7.911085400000001,1.4331860863118587e-4,0.24720738,17.71703306833903,101.83231,47.60459232330322,167.67883,6.659987608591716,132.99126,37.52532,523.2439982096354,4904.2354,1300.79057820638,216.19226558975322,318.64996337890625,741.3196016175318,0,0,0,0,3.753723760445913,17.280228,0,0,0,0,0,0,9.146835509454831e-6,8.3926404e-6,0.814602812131246,1.5429261,0,0,5.053417504920313e-4,8.194336200000001e-4,0,0,0,0,293.32704925537104,3.8037763068903097,28.744647607968993,156.13095399196706,20.520847373631998,24.609210933874923,-0.1718381985445997,0.15499834592143694,0.55366285,50918.547922521546,-0.7158139715324602,0.013499994995072484,-0.0078699311,2.905917745010811e-5,3.5209498e-4,2.0954201075558862e-4,0.005972759100000001 +1964,3.1935857269729495,1.5182530872301747,0,0,5.25990946510033,0.5425249338150024,0.20130699,63.07753308614095,129.76928999999998,41.05469576517741,4.432625700000001,2.9195976853370667,12.657214,4.877436995506287,8.477894599999999,0.003477728799528753,0.46848862,21.421671549479168,116.30072,54.79980500539144,189.8766,6.715564290682475,134.07707,49.914046,526.5386403401693,4933.087,1317.3704528808591,216.5561629558192,319.3329620361328,689.1114600087734,0,0,0,0,4.5027817487716675,20.771971,0,0,0,0,0,0,9.192799552693032e-6,8.436046300000001e-6,0.9379299183686575,1.6379776,0,0,5.078811470108727e-4,8.243428e-4,0,0,0,0,293.6850484212239,3.94575429191722,28.607416327576342,146.45477556142896,21.250626659387255,22.37762398460907,-0.17254526867553333,0.17999867846568426,0.49245891,52831.63766662475,-0.6203003960549346,0.012499973177909851,-7.597085899999999e-4,3.8745569933477476e-5,0.0010303711,3.218187654662567e-4,0.033580017000000004 +1965,3.342046614628416,1.5494103546996891,0,0,5.2700102527121695,0.5508499294519424,0.22504179999999996,65.62683486938477,129.69213,41.342495918273926,4.9089192000000015,3.2579756379127502,14.528257,5.135173638661702,9.0358315,0.019166271900758147,0.58010695,25.709799925486248,130.83983999999998,63.0290142695109,213.3919,6.764422178268433,135.19804,70.507935,529.5773620605469,4953.0596,1331.0602823893228,222.666415702745,319.81596120198566,709.3122962703268,0,0,0,0,5.391107479731242,25.0603,0,0,0,0,0,0,9.238763595931232e-6,8.4640089e-6,1.0688820282618205,1.7308461,0,0,5.10420553230991e-4,8.274721400000001e-4,0,0,0,0,294.04503885904944,4.115195266374096,29.972153677829578,153.40539119426893,22.08301053841794,22.64997293102378,-0.17325233880646695,0.1999987723926703,0.4926084,54063.80178149757,-0.2927293197139612,0.01137502615650495,0.015948649,5.60693097213516e-5,0.0021406888,4.596758565943067e-4,0.11324642 +1966,3.501720550339981,1.5517652807392261,0,0,5.285174795936927,0.5597749253114065,0.26721734,68.0712407430013,129.70542,41.65249570210775,5.6248074,3.653163174788157,16.547774,5.413369536399841,9.5008952,0.039499382954090834,0.77191369,30.50373379389445,147.99606,72.2479305267334,240.15802,6.8193081219991045,136.46754,94.258765,532.3371022542318,4976.4474,1342.240509033203,226.31069580205852,320.8799565633138,710.941466458106,0,0,0,0,6.472539742787679,30.477075,0,0,0,0,0,0,9.284727639169432e-6,8.5066137e-6,1.2072421511014302,1.8217969,0,0,5.129599594511092e-4,8.322890299999999e-4,0,0,0,0,294.45304361979163,4.31119735595728,31.553067549575943,156.4949809106804,22.847791402233124,22.434297142441455,-0.17395940893740058,0.21999895945191383,0.61550021,55269.31676159744,0.11690965230767818,0.010999986358607808,0.069786165,1.1921713667106815e-4,0.0031030971,0.0018055206843807052,0.20275693 +1967,3.6259660139730605,1.595865385821404,0,0,5.390458849300692,0.5701449265082678,0.32052973,70.42624282836914,129.68847,42.00469557444254,6.3547572,4.101901113986969,18.918172,5.707025408744812,9.9208119,0.06371349437783162,1.0373000000000001,35.86647764841715,169.42177,82.6101468404134,269.58286,6.879989941914876,137.66763,116.32544,534.8238169352213,4995.4184,1354.2715555826821,232.33314648826578,321.4799575805664,746.2098208746951,0,0,0,0,7.774255792299907,36.036945,0,1.246032e-5,0,0,0,6.8991852e-5,9.330691682407632e-6,8.544612699999999e-6,1.352812260389328,1.9105949,0,0,5.154993656712273e-4,8.365750900000001e-4,0,0,0,0,294.8600463867187,4.481777634666587,33.1677760500894,164.77531621039864,24.19623737938871,23.585293537089132,-0.1746664790683342,0.23999873300393423,0.7384486,54762.89709618766,-0.07633744709933905,0.011131961752350131,0.24404072,2.235555645408264e-4,0.0037542491,0.005476358346641064,0.26151045 +1968,3.8345952658425997,1.5469930909111562,0,0,5.370373092170119,0.5827049265305201,0.40423022,72.69054730733235,129.73308,42.41149616241455,7.332441499999999,4.61564834912618,21.713594,6.014501253763835,10.295172,0.09872918141384919,1.3673824,41.93913205464681,195.13757,94.25966453552246,299.7143700000001,6.939991156260173,139.24379,133.08156,537.0335591634115,5029.5667,1371.6504618326821,235.33540266621623,322.3889567057292,740.4824182303034,0,0,0,0.0092379775,9.383843421936035,40.359034,0,8.8038453e-5,0,0,0,4.8559101e-4,9.376655725645833e-6,8.6257131e-6,1.505382388830185,1.9976935,0,0,5.180387718913456e-4,8.458288900000001e-4,0,0,0,0,295.2690455118815,4.618299686146145,34.3815728401946,165.09570877308497,25.41081254044139,22.825796914652,-0.1753735491992678,0.26999801645676297,0.67731523,56868.37887037226,0.0011209927611538926,0.014528773414591948,0.44305972,3.60778462588011e-4,0.0055431793,0.010674211041380962,0.29037411 +1969,4.0615677268044985,1.5437089021510264,0,0,5.404091612813001,0.5976699193318685,0.5206411,74.8699499766032,129.76058,42.862396240234375,8.483171800000001,5.203845143318176,24.938178,6.334147016207377,10.638634,0.143262746433417,1.7120901000000002,48.922607421875,220.72612,107.28918075561523,327.55328,6.999991575876872,140.05867,146.61896000000004,538.9712473551432,5026.2804,1389.3417561848955,239.18485161256538,323.25095621744794,747.0297315350706,0,0,0,0.18322115,11.191637754440308,44.144508,1.2165773692155806e-6,9.3679956e-5,0,0,9.679108093981389e-6,5.038868e-4,9.422619768884033e-6,0.0098248184,1.6647424797217052,2.0817369,0,0,5.205781781114638e-4,8.450532600000001e-4,0,0.0011288309,0,0,295.681042989095,4.732615322675832,34.96181250811188,169.68157132242786,26.065069005292788,22.100489511661433,-0.17608061933020144,0.29999837279319763,0.67751619,58467.81079627766,0.07485921849687786,0.02660746080800891,0.55613635,5.134661914780736e-4,0.03648951,0.016677813526863854,0.30862539 +1970,4.323514044182916,1.5319290688025449,0,0,5.549708797290366,0.61744491259257,0.6581691999999999,76.96995290120442,129.69302,43.40139643351237,9.5318801,5.882411241531372,28.576904,6.6643119653066,11.00827,0.2035404990116755,1.8909658,56.95325533548991,245.38621,121.64918899536133,354.60102,7.059993505477905,141.52757,173.56366,540.6648610432943,5048.3132,1411.1005147298174,244.41839554629246,324.78295644124347,781.037552297546,0,0,0.001065175359447797,0.60795801,13.09374705950419,49.037394,8.557121153292732e-6,2.4685116e-5,0,0,6.793739824691632e-5,1.0851205e-4,9.468583508957332e-6,0.036330653,1.830672601858775,2.1644992000000003,0,0,5.23117584331582e-4,8.520249e-4,0,0.0042255569,0,0,296.0980377197265,4.714190307707546,37.469578527471604,179.6859546683907,27.824084069544437,22.780224323226346,-0.17678768946113504,0.32499857246875763,0.80047128,61529.779790205444,0.07891007914399001,0.042955159209668636,0.64373178,7.886756357038394e-4,0.11813403,0.022781516425311565,0.34789664 +1971,4.510244869270977,1.4055542417708098,0,0,5.703748992338275,0.6424449036518732,0.82992065,78.98995844523112,129.60227,44.007896423339844,10.711494,6.6607770919799805,32.729139,7.00438114007314,11.452529,0.27441523348291713,2.1402118,65.84650834401448,276.44309,137.13820521036783,387.53989,7.119412302970886,143.1196,217.72405,542.1264394124349,5067.5026,1431.1209615071612,249.2895330837902,325.3999557495117,796.2029425301106,0,0,0.021073126544555027,0.8564575999999999,15.120055437088013,55.790888,1.0061302646136028e-5,1.3254363e-5,0,0,7.890220331319142e-5,4.2594654e-5,6.875001223913083e-4,0.064586906,2.0029827058315277,2.2451174,0,0,5.256569905517002e-4,8.5867175e-4,8.593750105016322e-5,0.00774384,0,0,296.52204386393225,4.663522046368115,38.13342515565109,183.53555789915328,28.617263975091056,23.195116011534044,-0.17749263314257094,0.3549981142083804,0.86210262,61716.79562857309,-0.03213341039414315,0.06120223210503658,0.78786166,0.003391635837033391,0.2232129,0.029181620261321466,0.40686343 +1972,4.706494311867816,1.3269371347118073,0,0,5.971153374722522,0.6740748832623163,1.0559028999999998,80.9293607076009,129.65777,44.68869590759277,12.24311,7.553642193476359,37.465523,7.356679677963257,11.97792,0.34821991870800656,2.5517628,75.6708869934082,314.22879,153.8562266031901,427.68026,7.184317310651143,144.52172,267.60333,543.3849334716797,5079.1924,1449.2900187174478,257.2102054265862,327.3489532470703,868.4735707547015,0,0,0.06999984166274469,0.87667663,17.352389971415203,61.456633,1.0390318796756523e-5,1.3479254e-5,0,0,8.037302359298337e-5,4.3040854e-5,0.0025000001187436283,0.082580189,2.181452830632528,2.3233295,0,0,5.281963967718184e-4,8.6363194e-4,3.124999990783787e-4,0.010359322,0,0,296.9550399780273,4.9307421199057115,39.56446297363227,196.66552470793948,30.236221506038817,25.52743453960084,-0.17813366446922693,0.3899978771805763,0.86237286,63465.10424037791,0.049119653936524114,0.08156623815496762,1.0951867,0.010107177193276584,0.31882408,0.0366138257086277,0.4721474 +1973,4.975651785811607,1.318385656312959,0,0,5.895831575895738,0.7138798783222834,1.3307870000000002,82.79306348164876,129.79157,45.45469538370768,14.085332,8.576456785202026,42.979262,7.723947962125142,12.585161,0.43801355610291165,2.92937,86.87261581420898,338.0693,172.25726318359375,454.71123,7.255663514137268,146.54158,301.85553,544.4634094238281,5118.3195,1462.860677083333,260.2947249743578,329.90895080566406,826.0293132269293,0,0,0.11499984314044316,0.82240702,19.92769479751587,65.420113,1.0719714812997458e-5,1.3772853e-5,0,0,8.184554402153783e-5,5.4973948e-5,0.005062500150719036,0.090214925,2.365882933139801,2.4006492,0,0,5.307358029919366e-4,8.768767699999999e-4,6.328129966277629e-4,0.011968111000000002,0,0,297.3990402221679,5.050826137007638,39.9571427129374,186.52593193281965,31.240096880428535,23.455648107310147,-0.17877469579588295,0.42499801019827527,0.92401065,66317.71188639547,0.15522883058251086,0.1075315357496341,1.5930673,0.02092159477372964,0.39726303,0.04518213029950857,0.54390644 +1974,4.948149198232062,1.2905489996591684,0,0,5.971643938399686,0.7649898727734884,1.4191691,84.59316635131836,129.76026000000002,46.34259541829427,14.311146,9.748060464859009,49.247959,8.108936508496603,13.447442,0.5431961392362913,3.5184015,99.53890228271484,340.6055,192.56424713134766,453.22872,7.319503704706828,147.80664,327.35544,545.3698170979818,5113.8208,1476.140909830729,261.8082770537653,330.7559534708659,824.6214022160059,0,0,0.16126984233657518,0.76119143,22.525582949320476,71.666995,1.1049491528562308e-5,1.3967525e-5,0,0,8.331976338619522e-5,0.052416219000000014,0.008000000069538752,0.08706316300000001,2.556043048699697,2.474116,0,0,5.332752092120548e-4,8.7789564e-4,9.999999989910673e-4,0.01237887,0,0,297.8550415039062,5.0344191249004195,40.69211663930812,183.60052508219061,31.077406046065626,23.599624622127063,-0.17941572712253898,0.45999792218208313,1.0394718,65371.62666713273,0.10279066121396813,0.14653477569421133,2.1806547000000003,0.034983893080304064,0.67241083,0.05499073459456364,0.65809554 +1975,4.928622399679322,1.303204963553737,0,0,5.9984313740411705,0.8284898797671,1.4004084,86.32876841227214,129.65616,47.35769589742025,14.321042000000002,11.09574286142985,57.565811,8.51440660158793,14.538442000000002,0.661696677406629,4.217686799999999,112.33176358540852,337.71465,213.23522440592447,440.16522,7.389227231343587,148.91662,384.99818,546.1371358235677,5104.4298,1491.7409667968748,263.05854864525753,330.8269551595052,816.9194858581777,0,0,0.19499984259406725,0.80304672,25.179124514261883,79.153904,1.1379648640286177e-5,1.4151174000000003e-5,0,0,8.637850078230258e-5,0.19213674,0.010937500201786557,0.07287558599999999,2.7517531315485635,2.545125,0,0,5.35814615432173e-4,8.7775104e-4,0.0013671900087501854,0.011478755,0,0,298.32604471842444,5.2068127673577305,41.476725896945794,177.51306730736252,30.76637271161256,23.129653790732366,-0.180056758449195,0.49999761829773587,1.1646458,64182.768823129416,-0.20496901654447228,0.20330782110492387,2.8018363,0.051680791191756725,1.2682709,0.06614344008266926,0.8287437 +1976,5.1946610219984874,1.3202053582443383,0,0,6.237496531818932,0.8872098724047343,1.5554771,87.99307123819987,129.63321000000002,48.276095390319824,16.011714,12.636435270309448,57.24638,8.955106973648071,15.386466,0.8118081788221995,4.743647,124.73074785868327,329.27602,232.99722162882486,426.10768,7.465574224789937,150.23158,475.43135,546.7914225260416,5104.2152,1509.1109517415362,269.9482096580869,331.5449498494466,856.063491529847,0,0,0.22999984274307886,0.82394648,28.196115493774414,92.664426,1.171018743661989e-5,1.4358855e-5,0,0,0.007432716122517983,0.33759564,0.01350000019495686,0.047412585,2.9527832667032876,2.614347,0,0,5.383540216522912e-4,8.8049315e-4,0.001687499995265777,0.0091593417,0,0,298.8140436808268,5.352361696512741,42.5213569666273,186.24742729810202,32.28663209283211,24.40571791742575,-0.18069778977585105,0.5443803270657858,1.4235416,67153.40876186565,0.042795931279707856,0.27751198535164195,3.4107057000000003,0.08715698743859927,1.8435573,0.08035514317452908,0.98712807 +1977,5.364428639868427,1.3520979710065895,0,0,6.353178768287844,0.9490798612435659,1.6923549999999998,89.59247398376465,129.63647,49.29249509175619,16.762577,14.47871708869934,55.875241,9.431879123051962,15.71703,0.9836416741212209,5.1782548,136.7956975301107,306.11158,251.99420674641928,404.2283,7.534413854281108,152.04263999999995,533.0325,547.3396860758463,5117.6518,1527.680948893229,274.03015240270713,333.3529459635417,868.4313096928761,0,0,0.2649998404085636,0.93269902,31.407798290252686,109.06413,1.2041107462816095e-5,2.1399971000000003e-6,0,0,0.026895795327921707,0.42456315,0.015312500220413009,0.022180513,3.1589433749516806,3.5323931000000006,0,0,5.408934278724095e-4,8.8740955e-4,0.0019140600246222068,-0.0065053902,0,0,299.3190358479817,5.499463794793741,43.27485687581617,189.22553225601726,33.05929028320198,24.38724427025082,-0.181338821102507,0.5945511807998022,2.1583469,67777.19082397268,0.12845401331973466,0.3696969747543335,3.8826089,0.1504269844541947,2.1420878,0.09829714894294739,1.0852977 +1978,5.581802902559232,1.2993019000302957,0,0,6.57904481781486,1.0211598575115204,1.7691766,91.13187662760417,130.48848999999998,50.43949508666992,16.898235,15.96304734547933,72.245349,9.926631212234497,15.529417,1.1736451586087544,5.5214165999999985,148.00458017985025,278.45958,270.00118255615234,383.9896,7.609319130579631,153.91731,529.79652,547.7978973388672,5132.0601,1546.890899658203,276.33335446294114,335.00994873046875,897.405148357044,0,0,0.29872983197371167,1.277913,35.72357686360677,112.78031,1.237240955257827e-5,-6.2543157e-5,0,0,0.054136695029834904,0.45249588,0.016000000139077503,-0.059867027,3.3700035015741983,4.661461,0,0,5.434328243912508e-4,8.9480636e-4,0.0019999999882808575,-0.021383103,0,0,299.8450393676757,5.625120895967197,44.240892074424366,192.93479554653743,34.269193302792054,25.019744191924026,-0.18197985242916306,0.6599957346916199,2.8286901,68023.041876235,0.1506635484397897,0.4763076677918434,4.2701212,0.23020097613334656,2.1599238,0.1185080527017514,1.1209156999999998 +1979,5.730732140077329,1.2523176484359615,0,0,6.677231649399466,1.094819853703181,1.9203395,92.61308097839355,128.37989,51.557394663492836,17.898313,17.68312692642212,94.634628,10.421233495076498,14.991238,1.3782646457354228,6.1020639,157.6384735107422,271.13342,286.4941584269206,394.80033,7.689991553624471,155.58903999999995,518.50501,548.1820729573568,5138.651,1566.1608581542966,281.6000656120118,336.60494740804035,900.4664227016348,0,0,0.34251976509888965,1.7595655,40.48909950256348,113.22088,1.1487397311308692e-5,-2.0391387e-6,0,0,0.0849026944488287,0.42017076,0.016000000139077503,-0.17766763,3.7300036549568176,5.0937882000000005,0,0,5.459722354620075e-4,9.0008302e-4,0.001000000006267025,-0.0099825707,0,0,300.39303843180335,5.807081798508845,45.13478108156769,196.0169028731842,35.013987182511805,25.212479862598272,-0.18262088375581906,0.7699926396210989,2.8296177000000005,69119.86371174049,0.1473114304822424,0.5893768072128296,4.6513697,0.31519197672605515,2.0579417,0.13952905808885893,1.1328091 +1980,5.650947966828631,1.2441357938650308,0,0,6.618387124854692,1.1735098262627919,1.9633226,94.1031723022461,125.08456,52.72269503275553,17.664267000000006,20.167388280232746,120.23426,10.897735516230265,14.760860999999998,1.5939541260401409,7.2362595,166.07752100626627,276.09356,302.1822509765625,398.43779,7.769993821779887,157.04196000000005,513.02719,548.5012359619141,5131.8984,1584.940734863281,283.34647023515436,338.70494588216144,890.5114951943987,0,0,0.41178564727306366,2.0330453,44.551489194234215,118.29604,5.5193815645300974e-6,7.9351775e-5,0,0,0.11494099286695321,0.35605477,0.011000000056810677,-0.12485274,4.130003849665324,5.1732709,0,0,5.485116416821256e-4,9.0155542e-4,5.107808434938003e-5,0.0031252635,0,8.167018e-5,300.9650395711262,5.872959052014542,45.97852705498147,194.39124204024887,34.76440146642314,25.232545658292864,-0.18326191508247508,0.8899930367867152,2.8304822999999995,68783.84556601176,0.109190156973947,0.7097166180610657,5.1129913,0.39410896847645444,2.1545661,0.15989606082439423,1.1562096000000002 +1981,5.539335981414791,1.2528135487313492,0,0,6.577782229862206,1.2601898312568665,1.7391266,95.31219546000163,126.52811,53.97579542795817,16.187192,23.256973266601562,128.45086,11.349838097890219,13.920115,1.8424933552742004,8.637244699999998,174.73850377400717,271.00597,319.4201304117839,403.07178,7.849401632944743,158.51506,516.86109,548.7653757731119,5123.4643,1602.6506245930987,279.78942071631377,340.05894978841144,875.7816094417443,0,0,0.5049996227025986,1.96562,48.66220633188883,122.37567,1.075440430516513e-5,1.7112573999999998e-5,0,0,0.1399999943872293,0.32601335,0.0030000001109632044,0.11779446,4.560003956158956,4.4274361,0,0,5.510510430516055e-4,9.0259513e-4,1.2761924275158285e-4,0.038309698,0,6.9675129e-4,301.56203460693354,5.805407445505892,46.37436562130664,189.16861385900194,34.11541673008395,24.873295971397052,-0.1839029464091311,0.999993642171224,2.9541119,66688.82721964004,0.0757372745424995,0.8352456837892532,6.0090214999999985,0.4687449559569359,2.4863888,0.1800000655154387,1.1742814 +1982,5.477249508472458,1.2581454775126868,0,0,6.915258577522967,1.3425698479016621,1.6205522,96.45029131571452,129.38621,55.10939598083496,15.97381,27.298911412556965,128.57689,11.805440743764242,13.885459000000001,2.144632577896118,9.2748324,183.27747344970703,277.72577,335.1432698567708,391.79861,7.934991518656413,159.18065000000001,532.93449,548.9834696451823,5083.3728,1618.7305399576821,287.6693153882337,340.64394124348956,967.4292982868147,0,0,0.5972496171792349,1.6573363999999997,52.764092127482094,125.26367,1.2755718368377226e-5,-8.228379000000001e-5,0,0,0.1600000001490116,0.33083911,0.0020000001228860733,0.22216908,4.970003763834636,3.5575865,0,0,5.535904541223621e-4,8.9426293e-4,2.6965544202539604e-4,0.066661524,3.741915871084226e-6,0.0015785006,302.18704223632807,6.043062727559764,47.66689067623099,206.8844647776702,34.15609140912993,28.272205714382924,-0.1845634619404803,1.1199926137924194,2.9550432,65532.301753925305,-0.15641584008740989,0.9728992034991583,6.4693449,0.5532129456599554,3.0131287,0.2000000737607479,1.352411 +1983,5.483062192797363,1.4330241763538591,0,0,6.625402213840496,1.4098998308181763,1.8456854,97.67579015096028,130.75988999999998,56.16269588470459,16.384525,30.830673376719158,150.74703,12.194235563278198,15.564841,2.4999918937683105,9.057039,191.16732279459634,353.29433,352.50609588623047,385.70972,8.019996364911398,160.09108999999995,547.19948,549.1685434977213,5047.3484,1632.620147705078,281.617658355317,342.26594797770184,862.0214943304857,0,0,0.672999694943428,1.3378778,56.786487897237144,129.4055,1.1691284877694367e-5,-2.7098867e-5,0,0,0.17999999349315962,0.33559498,0.011000000212031106,0.09748991,5.270004232724507,3.8040369,0,0,5.561298603424802e-4,8.871233e-4,0.0029999999581680945,0.024088349,3.1704332892938204e-5,0.0020178464,302.84204101562494,6.065834079500119,47.64540210423812,183.83582233478342,33.285128980692804,24.459513427275525,-0.18530513482030356,1.2399930556615193,3.2014371,64552.41617363238,-0.6775945263802521,1.144959529240926,6.0034055,0.651974951227506,3.8198142,0.21950007850925127,1.378774 +1984,5.619005090796103,1.4612248534423995,0,0,6.8150189551184415,1.4820398290952046,1.954181,98.93998591105144,134.9934,57.26739501953125,14.927399,34.79922644297282,167.86607,12.642924229303995,17.177695999999994,2.8499913215637207,10.537606,199.96714146931967,352.61795,366.79923248291016,438.30954,8.103740215301514,162.15076000000005,546.6524,549.3226318359375,5054.1956,1643.5008544921873,285.00304516787423,344.00794728597003,889.7020107049092,0,0,0.7217137465874354,1.2391705,60.742489178975426,137.14096999999998,3.96903745780719e-6,8.659051799999999e-5,0,0,0.19999999552965164,0.48356263,0.017000000225380063,0.027417786,5.530004461606343,4.8805394999999985,0,0,5.586692617119601e-4,8.9282411e-4,0.005000000004656613,-0.04014793,7.402270027038564e-5,0.0043071608,303.5280380249023,5.996375963335671,48.69349353439086,189.33352573144714,34.32486538148798,25.326276357675727,-0.1860468077001268,1.3599929014841716,3.5706830000000003,65309.89915296105,-0.2289078353791943,1.295939067999522,6.3412338,0.7757129470507304,4.798725900000001,0.24612508217493692,1.1329507 +1985,5.678895002751574,1.4997437788078463,0,0,6.922761988583978,1.5687698423862457,1.930951,100.18199602762859,138.44665,58.3761952718099,13.863624,39.652387619018555,191.20489,13.144109964370728,18.042992,3.187290926774343,12.093107,214.03345489501953,321.80334,383.26725006103516,487.46531,8.199989477793375,164.43684,559.24581,549.4526824951172,5072.7864,1655.9104715983071,285.6752697155976,345.4589538574219,906.9368199480392,0,0,0.7549997667471567,1.4290266,64.80020904541016,148.48134,8.568774148898228e-6,2.1606645e-4,0,0,0.21999999756614366,0.56320674,0.01700000014776985,0.085787554,5.8700045347213745,5.2553933,0,0,5.612086727827167e-4,9.0213205e-4,0.003999999995964269,-0.006224988000000001,1.1811007364788868e-4,0.012966035,304.2470397949218,5.996554239215087,49.41563613245486,190.4568856663394,34.861509200143864,25.83243997550224,-0.18678848057995007,1.4999912877877553,3.6945657,65474.087150351224,-0.011715700559269468,1.4159816404183705,7.686271400000001,0.9354569266239802,5.5359652000000015,0.26520808786153793,1.1864916 +1986,5.784334367519234,1.5301135694160417,0,0,7.0137036621234845,1.6502498388290405,2.0447892,101.67297554016113,134.66824,59.28379599253336,14.595216,44.608107248942055,226.48099,13.69979476928711,17.343175,3.6499905784924827,11.156209,222.3396848042806,363.19165,402.41221872965497,561.19711,8.294995307922363,166.53505,605.54478,549.5567423502604,5079.9439,1668.7911478678384,290.8084487539618,346.90294647216797,914.5218093193049,0,0,0.7879217316706976,2.1480617000000004,69.13964017232259,163.26271,1.2043192891534696e-5,2.1612991e-4,0,6.836250999999999e-4,0.2599999929467837,0.57273931,0.018000000156462193,0.044305139,6.3100047906239825,5.6896951,0,0,5.637480790028349e-4,9.0805661e-4,9.999999941404287e-4,0.03179967,2.603702887427062e-4,0.028102657000000003,305.0020370483398,6.123193922877899,50.21167873708514,195.66522346659664,35.24652923018162,25.9121168517712,-0.18753015345977328,1.6499911447366078,3.9411958,65479.271483930934,-1.4658150072006793e-4,1.5741113722324371,8.619926699999999,1.1329799195130665,5.6626388,0.2791670933365822,1.453026 +1987,5.942054872368608,1.51568933473453,0,0,7.200139154017295,1.7349598209063213,2.1868179,103.0739803314209,140.05915,60.248695373535156,15.122737,50.83082103729248,234.71551,14.25549602508545,15.986362,4.105550249417623,11.176584,233.33564122517905,377.17492,423.347417195638,543.59326,8.389330943425497,168.70781000000005,636.85035,549.6467793782552,5087.8651,1683.749786376953,295.0485146932872,348.77494557698566,952.061149189977,0,0.0011578226,0.8391895890235901,3.2631248,73.98439725240071,177.25124,2.903536521140874e-5,5.821475400000001e-5,0,0.0048785865000000005,0.28999998917182285,0.79616882,0.022000000191231567,-0.099665792,6.710005084673564,6.538606400000001,0,0,5.662874803723147e-4,9.1426979e-4,0.0030000000745834163,0.0083239765,6.904602487338707e-4,0.044783508,305.7930348714192,6.350228641755308,51.33101365968814,203.58517005144802,36.43815818195585,27.251867169865875,-0.18827182633959655,1.7999912301699321,4.3106697,66721.09399661662,0.062169756099630324,1.7711602052052815,9.1692428,1.346309910217921,5.241268700000001,0.29950010031461716,1.7364871 +1988,6.133362796862496,1.5150947746951446,0,0,7.39663506024057,1.8262398143609364,2.2384091,104.16901715596516,134.89421000000002,61.255194981892906,15.295333,57.8955987294515,225.34631,14.756715536117554,14.052169,4.49442990620931,12.063592,244.82575480143228,324.40759,449.32311248779297,433.01446,8.48999317487081,171.54521,645.54402,549.7208353678385,5119.7697,1693.940928141276,298.68549508376714,351.2759323120117,950.4151874289803,0,0.34924766,0.9504593312740326,5.2661192,79.53813616434734,185.3279,3.188543450960424e-5,0.021115007,7.708864601833436e-5,0.06849384,0.32999999324480694,0.88192316,0.02000000032906731,-0.07366243900000001,7.220005750656128,6.627813900000001,0,0,5.688268914430713e-4,9.2784993e-4,0.0030000005305434265,0.034690666,0.001493088435381651,0.060567348,306.624043782552,6.188309996026968,51.72677741877051,203.53222760721053,37.7977892884268,27.185066126098715,-0.18901349921941984,1.9699894785881042,4.6802608,67287.48390226346,0.1102479335964212,1.9729202787081401,10.094657000000002,1.548219899336497,4.7030971,0.32425010204315186,1.770198 +1989,6.211121149262674,1.53212989041127,0,0,7.320233667650651,1.9231797953446705,2.2075539,105.88293329874675,105.50252,62.29139518737793,15.212081,64.49583530426025,212.83728,15.212542057037354,10.119863,4.9499895970026655,11.292045,256.58931223551434,246.46809,468.0721740722656,357.7641,8.589393774668375,174.22363000000001,713.52261,549.7808532714844,5139.3872,1705.6304423014321,302.164174394028,352.89392344156903,930.8467754620427,1.1203966126534699e-4,0.72136249,1.1215790609518688,10.730464,85.39031410217285,189.56819,3.284409467596561e-5,0.31476996,5.449304395976166e-4,0.67304705,0.38999999314546585,0.82629641,0.014000000199303031,0.054397397,7.7600061893463135,6.6572182,0,0,5.713662976631895e-4,0.0060655338,0.0030000010544123747,0.077007399,0.002615397213958204,0.07614778700000001,307.8310241699218,6.264529714671574,52.06403696267891,200.31650520357337,38.13825088093059,26.33140676747172,-0.18975517209924306,2.149989446004232,5.0499664000000015,67312.93275191178,0.14261546154697627,2.1840911904970803,10.904862,1.7223599056402843,4.3864096,0.35575009882450104,1.6702493000000005 +1990,6.186811699323791,1.4450968870559717,0,0,7.508271531599201,2.018889824549357,2.1076967,106.4680290222168,86.426532,63.32119528452555,14.407865,70.81883303324382,176.8456,15.573984305063883,7.0905085,5.40554936726888,10.591201,263.08519744873047,208.25652,482.7560577392578,333.97703,8.694339831670126,176.36773,658.40311,549.8308563232422,5137.248,1717.400675455729,305.27255465213847,354.07293192545575,940.5626313485474,0.03376847004983574,1.5203264,1.4477779567241669,17.768055,90.98358980814616,192.30881,0.002091195086904918,0.96053501,0.0077552789346858235,1.7208698,0.43999998768170673,0.69729352,0.014000000121692816,0.18589003,8.280006090799967,6.6838429,0,0,5.739056990326693e-4,0.02696988,0.005000001498653243,0.018320285,0.004025665286462754,0.091767095,308.68303680419916,6.277152282827942,52.52170067846646,203.0212309920509,38.25721546450458,27.365368354710768,-0.19049684497906635,2.3499877055486045,5.1743108,67094.07179291768,0.14079531171550244,2.425140698750814,10.051338,1.8762499292691548,4.2741531,0.38000010202328366,1.7373255 +1991,6.190131151726644,1.6368601104218738,0,0,8.011536269395817,2.113149801890055,1.982897,105.85304832458496,85.14222600000002,64.34609444936116,12.924815,76.4864673614502,120.64491,15.752021392186483,6.9542228,5.799989104270935,10.775591,267.79015350341797,159.81288999999995,493.7842102050781,286.27307,8.804992516835531,177.30503000000004,474.47964,549.8710784912109,5089.9323,1729.3305562337237,318.7311920514537,355.35293833414715,1129.9838832525568,0.06648059604534258,6.9394223,2.221526563167572,22.06288,96.40249379475911,185.52075,0.03069222376992305,1.727734,0.07582558194796245,2.7251313,0.48999999711910885,0.70613627,0.017000000070159633,0.24819351,8.820006291071573,7.057256599999999,0,0,0.0016515196378653247,0.058141591,0.008000002048599223,-0.073018715,0.005709253367967904,0.10715402,309.23303731282545,6.34494559215869,54.26130892359681,244.42863411026067,39.69249193256378,34.394938327949504,-0.1909628409298788,2.5599875847498574,5.29866,66472.31501729792,-0.4148185776434353,2.665145973364512,9.6580528,2.020599921544393,4.1585749,0.40500009556611377,1.6735462 +1992,6.145912972932644,1.683057085276074,0,0,7.364888993342175,2.20022984345754,1.9500444,104.98307355244954,85.437279,65.2670955657959,11.907588,80.40375582377116,74.361852,15.899934848149618,5.3089984,6.199989080429077,10.120439,270.7759323120117,106.91739,505.86798095703125,227.43518,8.91499400138855,179.3441,361.04368,549.9049123128256,5056.1355,1740.1392618815103,299.4017954744593,356.22894795735675,913.3754185979066,0.1707762268682321,22.26499,3.3005158503850303,24.233416,101.49227841695149,194.06099999999998,0.09482813626527786,2.4767485,0.19600565483172736,4.0250116,0.5199999809265137,1.0018637,0.026000000691662233,0.18194194,9.340006430943808,7.910261500000002,0,0,0.005856849117359768,0.088755914,0.0050000026628064615,-0.030822369,0.007651571494837602,0.12273589,309.7250391642252,6.358476438557756,52.37759098866641,198.23847301394608,38.71717596139569,26.648976889112614,-0.19129755052506844,2.769987682501475,5.4230636,64223.92565128395,-1.6835767484157795,2.8172022501627603,10.784362,2.161349892616272,3.8127392,0.4305000975728035,1.4631107 +1993,6.193394814861415,1.5467274300386273,0,0,7.531122846620259,2.2837098240852356,1.9984803,104.32304191589355,84.458339,66.09139442443848,11.381334,82.41623814900716,50.567396,16.066639582316082,3.463778,6.607129295667012,8.677164900000001,271.1687749226888,84.3251,511.9880956013997,231.9618,9.027161439259848,179.76429,256.33383,549.941884358724,5078.4684,1743.1006876627603,299.4425140657421,356.92495981852215,941.8816353260038,0.7146161670486132,34.33223,4.47598530848821,22.551362,105.4173412322998,208.33854,0.19552044942975044,3.0949997,0.36491671949625015,11.967198,0.5699999282757441,1.5166355,0.0330000047882398,0.157163,9.94000768661499,8.353483800000001,0,0,0.01262219933172067,0.11880940000000001,0.0010666858239953096,0.042782191,0.009837979606042305,0.13825367,310.09905242919916,6.310752016783032,52.78275226171121,203.77578316226604,39.74372708975235,28.114996259780565,-0.19163226012025816,2.9899867177009583,5.424762,63195.55051984089,-0.8170844043492784,3.0058298110961914,11.612337,2.2925199468930564,3.3180441,0.4508330797155698,1.2514505 +1994,6.240067755470377,1.5037166846247065,0,0,7.8957327340876935,2.36793980995814,2.1430557,103.57006708780925,86.05046,66.87479654947917,11.006658,83.36027018229167,37.565451,16.09994300206502,4.6095776,6.955350279808044,8.163642999999999,269.62779235839844,85.893495,518.2140757242838,238.58315,9.131617546081543,178.03958,159.08791000000005,545.3847249348959,5003.2837,1748.620371500651,310.25183676250725,358.2539596557617,1060.282744333416,2.2383394837379456,45.287421,5.687364776929219,24.423112,110.94440905253093,237.88968,0.32772576560576755,3.5515517999999995,0.6123692641655604,24.558229,0.6399997919797897,2.3253155,0.03700000451256832,0.20390529,10.600008169809977,8.737967999999999,0,0,0.021451599275072415,0.14808425,0.002012556239302891,0.0083003343,0.012253877784435948,0.15358509,310.80802917480463,6.441827000222701,54.21042306521078,231.0503542937696,40.27137015559246,33.14335063351852,-0.1919669697154478,3.2099871834119162,5.549182599999999,61820.50123949212,-0.0813850082344821,3.2168917854626975,11.303115,2.4025299350420632,2.9604627,0.4654170672098796,1.1962062 +1995,6.3773864537253155,1.4860805049306975,0,0,7.813189501191085,2.4555798172950745,2.3880707,102.88904825846355,80.480245,67.62789662679036,10.682998,83.83788744608562,23.473127,16.137446244557697,5.7076242,7.249991933504741,7.674757700000002,268.1038513183594,86.264975,524.6570994059244,210.72453,9.13146940867106,180.13151000000005,95.783763,552.4202321370443,5016.3948,1755.2296244303384,305.40958889562864,360.2389551798503,955.0363061603086,3.747459292411804,51.095458,6.54466180006663,27.59918,116.0475304921468,230.3453,0.4816569561759631,3.8771223,1.649199257294337,36.211193,0.7599995483954748,3.4395305,0.04200000377992789,0.29614801,11.270008246103922,9.315257,0,0,0.031974499113857746,0.17780027,0.00400000410930564,0.0084622213,0.014884675852954388,0.16982122,311.2790552775065,6.504076135852905,53.416717880413046,206.47424846775004,40.45040793019892,29.71540753892105,-0.1923016793106375,3.429987053076426,5.6736625,60635.50706790533,0.08530772110638411,3.4390769600868225,11.011358,2.4911099076271057,2.8923304,0.475000041226546,1.0842597 +1996,6.511379278926775,1.470193984753465,0,0,7.686339550726493,2.5522598028182983,2.6638414,102.31104151407878,75.256035,68.36059633890788,10.505743,83.94530232747395,13.005309,16.249948978424072,4.6522227,7.557493487993876,5.5242189,266.7558415730794,85.278741,531.4079996744791,170.78176000000005,9.06367564201355,183.44400000000002,59.514335,537.3112080891927,5297.7083,1757.1905924479165,307.29120752307955,362.00496164957684,930.0218807197676,6.036929090817769,53.568363,7.866570234298706,26.00128,124.7284984588623,224.86947,0.6497871528069178,4.0579149,3.2318945129712424,48.538296,0.9399992177883784,4.501452099999999,0.04900001051525275,0.39044285,11.990008195241293,9.7707047,0,0,0.04382059909403324,0.20547879,0.002013620309298858,0.11353612,0.01771567389369011,0.23841137,312.29801940917963,6.542220103334365,53.42127728765462,200.87242078907184,40.45019229181408,28.71419152495162,-0.1926363889058272,3.6599862774213157,5.5527008,59650.01603284395,0.14569222560343534,3.602302074432373,10.510994,2.569999933242798,2.8654227000000003,0.48625003546476364,0.84755661 +1997,6.574573878777592,2.183313990263035,0,0,8.269788742717703,2.6610097885131836,2.8728436999999998,101.2420825958252,75.489912,69.06989606221516,10.417958,83.52113278706868,10.398164,16.362446784973145,3.7691062,7.813324570655823,3.4559389,265.2918523152669,86.34144599999998,534.9630432128906,160.63531,9.140432437260946,180.149,29.550907,542.7740173339844,5288.9251,1761.5010782877603,331.28891975653016,363.25195566813153,1204.992305406782,7.7147689660390215,55.76348100000001,8.959980805714926,29.370536,127.37702624003093,240.5221,0.8248193363348643,4.6266327,5.39930792649587,58.758537,1.2099987765153248,5.5717023,0.06000001293917497,0.427562,12.750008503595987,9.7952259,0,4.9588597e-5,0.05661919961373011,0.25820595,0.004000423466398691,0.1113431,0.02073227148503065,0.31501343,313.18303171793616,6.740456045264001,56.11803188775538,264.67515030448345,41.89315592193428,38.341382315947115,-0.19297109850101685,3.889986495176951,5.7834259,59868.27681505938,0.16690248873741567,3.780295729637146,9.824276800000002,2.650669972101847,2.8566852000000003,0.49000003685553867,0.76826308 +1998,6.590459870606787,1.5412452817195224,0,0,8.412226876444452,2.781449774901072,2.9899069,100.31604703267415,72.916263,69.77859687805176,10.335348,82.96492513020833,12.992477,16.399945735931396,3.9615346,7.95416518052419,2.9318362,263.8838653564453,86.348141,537.6670277913412,156.67666,9.254634141921997,176.1082,23.412636,570.7273610432943,5175.5355,1770.2906799316404,315.332621195414,365.9329554239909,1085.4305991966446,9.836338837941488,55.95678100000001,9.961479743321737,28.471196000000006,134.272824605306,234.46613,0.9994525363047918,6.9049469,8.110631505648294,70.04979200000001,1.5299981534481049,6.8917397,0.07300002624591191,0.54029666,13.540009021759033,10.02529,0,3.583493100000001e-4,0.06999999843537807,0.60512272,0.01000000579127421,0.06915097099999999,0.026339268311858177,0.38665542,313.90700531005854,6.446521520705138,56.589344323708055,232.31801820181306,42.33468433879227,37.81227830332195,-0.1933058080962065,4.1099876165390015,5.6031107,58604.367585517175,0.1710925825750941,3.8873608311017356,10.323837,2.724999964237213,2.701239,0.49000004182259244,0.76943857 +1999,6.661329053494626,1.3034304715400178,0,0,7.698162125432142,2.9081997672716775,2.9607505,99.330872853597,72.96355,70.47599538167317,10.216505,82.38263448079427,14.054175,16.44995387395223,3.9749853,8.04999581972758,3.1538842,262.5458628336589,82.703538,540.1430358886719,140.42543999999998,9.093777736028036,168.37661,18.420173,562.6231740315756,5112.4264,1778.199513753255,309.40837085260006,367.84497833251953,940.7006779859273,11.384798526763916,58.33870699999999,11.354286829630533,25.741051,138.68090184529623,252.31636,1.2204217116038005,8.6848445,11.121968984603882,91.978363,1.9399973253409069,7.9486502,0.08600003769000371,0.7424206999999999,14.300010919570923,10.07373,4.148790035666631e-6,0.0031081514,0.08999998929599921,1.0699013000000002,0.011000006149212519,0.13954925,0.03241546514133612,0.49435229,314.70898946126295,6.28115080714577,54.76937230485621,205.11187816433736,40.94720104039744,30.449171325383368,-0.1936405176913962,4.358643651008606,5.1676463,55523.54473764534,0.17324185027932018,3.9997291962305703,10.262658,2.8026700019836426,2.1509855,0.49000003188848495,0.7706312 +2000,6.893167303200749,1.2013380488633538,0,0,7.457347231717921,3.038709739844004,2.8153943,98.27196884155273,72.65140799999998,71.17349561055501,9.9231457,81.99841690063477,9.4043884,16.499963760375977,3.9867142,8.149996836980185,2.3476517999999995,261.1698455810547,76.330076,542.3829905192057,122.76605,8.829522927602133,165.25876,19.471227,552.0705413818359,5074.2696,1778.0101216634112,310.18680982649335,369.1249745686849,886.5647302341199,13.121398448944092,56.341686,12.102788925170898,25.730152,143.4614372253418,263.60627,1.603711913029353,10.640667,14.691894769668579,99.657424,2.429996371269226,8.598756300000002,0.10600005090236664,0.86319988,15.120010137557983,9.2978389,2.9456416086759418e-5,0.034006926,0.1699999620517095,1.411492,0.013000006632258495,0.2699959,0.040547359734773636,0.57423278,315.7589950561523,6.112229814393959,54.5095965154282,195.32415818527357,41.26362178323956,27.98197839802492,-0.19397522728658584,4.563808560371399,5.2735332,55661.00151337025,0.17458241694797966,4.127887845039368,9.480134800000002,2.8623799681663513,1.9694412,0.49000002940495807,0.77151922 +2001,6.95708692825445,0.961802096435875,0,0,7.591758768528899,3.162919799486796,3.0480682,97.35795720418294,70.65696899999998,71.8547960917155,10.593275,81.4894282023112,5.9590470999999985,16.54997984568278,3.2771364000000003,8.262498617172241,1.1600545,259.5498352050781,68.271466,543.1950124104818,111.64066,8.354893207550049,165.59900000000002,19.806901,542.7083333333334,5094.2258,1776.5307312011716,312.89637869980686,370.67298889160156,881.6703955806449,14.544998407363892,56.36878100000001,13.052591880162558,24.490463,149.25739415486655,261.60586,1.978332092364629,11.075295,19.702295621236164,96.243251,2.9699952602386475,9.8521252,0.132000050197045,0.94275566,15.880009412765503,8.984000300000002,2.597141228761757e-4,0.80619906,0.2699999349812667,1.6540308999999995,0.019000007305294275,0.6107305000000001,0.050659650626281895,0.63867332,316.4930165608723,6.188009183487292,54.709896387749005,196.1877828105409,41.3771755400566,27.8779984365221,-0.19430993688177556,4.776847044626872,5.3282102,56049.16642558323,0.17084303620462507,4.220908443133037,8.8337936,2.8942899902661643,2.3248261,0.49000003188848495,0.74608572 +2002,7.097947294929641,1.0706525114551886,0,0,8.046474186766174,3.2808697621027627,3.4534372,96.3429667154948,70.45667399999998,72.51259549458821,11.982167,80.81803385416667,3.1513602,16.5999755859375,2.420559,8.29999844233195,0.95011524,257.66879018147785,63.484809,543.6559855143229,101.90454,8.333909193674723,161.14055,12.302716,535.3501332600912,5096.5932,1778.960947672526,322.2788312475723,372.83499399820965,970.7244171943499,15.739598194758097,50.843174,13.693090518315634,25.156097,154.4252700805664,270.32175,2.527012268702189,12.214474,23.51545794804891,102.73275,3.5299941102663674,11.617585,0.15900006766120592,1.2107813,16.560010592142742,9.7208997,0.002832789449409271,2.9170651000000003,0.3899999012549718,2.8037817000000005,0.030000012057522934,1.313749,0.06128753939022621,0.73327062,317.1010182698567,6.359556247633107,57.07665954461615,218.4604141242816,41.898783266207694,33.80824328599571,-0.19464464647696525,4.990507483482361,5.4976481,55687.522360887495,0.17652225756277531,4.2806588013966875,8.3685909,2.9381799499193826,2.2797577,0.49000003188848495,0.67660085 +2003,7.424688347669062,0.9010419027374732,0,0,8.2416975979600835,3.4251197973887124,3.16329,95.34536170959473,69.839024,73.28449440002441,12.579882,80.10183588663737,5.7693016,16.59995237986247,1.7336337,8.320768594741821,0.74505988,255.41280873616537,62.27795500000001,543.3510030110677,97.844828,8.222527821858725,158.92828,10.122917,538.8634541829427,5113.7538,1783.5898132324216,328.12422419548386,375.41099802652997,944.7470786126371,16.890098412831623,44.441172,14.409090280532837,25.070909,158.99640528361002,287.30923,2.9139525095621743,15.640539000000002,27.517083009084065,117.40605,4.223822851975759,13.114832,0.1890000912050406,1.560512,17.260011196136475,11.005369,0.06715815638502438,5.226518,0.5027138615647951,4.785689700000002,0.060000043672819935,2.2356391,0.07306782963375251,0.85366012,317.73000590006507,6.4283053046514125,57.69037487838639,214.40339143057142,42.682165561174564,34.362181347359645,-0.19497935607215489,5.207866946856181,5.541719400000002,57641.72369815564,0.165150043379564,4.319008390108745,8.0831154,2.99712997674942,2.0262772,0.48882503310839337,0.60195554 +2004,7.812644316268693,1.0382131676166668,0,0,8.542465507294889,3.577999790509542,2.2029533,94.38845952351888,66.998563,74.13009516398112,12.194883,79.26674334208171,9.216749,16.590060075124104,1.4729968999999998,8.341978788375854,0.75667708,253.1937993367513,60.966802,542.8480021158854,87.654103,8.019330620765686,156.21655,9.7469995,537.7152353922526,5141.4447,1784.230285644531,338.9417722149104,376.9870020548503,945.5469500687323,17.334598859151203,49.135801,15.063492933909098,28.554887,164.7063954671224,307.5767600000001,3.5451226830482483,15.758879,31.54472287495931,125.65071,5.00792149702708,13.097501,0.23300011828541756,2.0510461,18.06001361211141,12.712613,0.23797391975919405,6.6512131,0.8247378170490265,5.4873038,0.12000008982916673,3.1186526000000003,0.08672221936285496,0.97410928,318.3570175170898,6.590470046881482,58.11358476694662,216.68728340618873,44.556855897235216,32.33033041098627,-0.19531406566734455,5.435196399688721,5.6480085,60340.85188935469,0.1719032893302405,4.3401593764623,7.526764599999999,3.035939951737722,2.1192661,0.4857220376531283,0.55294607 +2005,8.093491315549059,1.025657164253795,0,0,8.840128385718105,3.697199821472168,1.9480504,93.41565831502278,63.195607,74.98279317220052,11.060838,78.73161888122559,4.6297025000000005,16.54227288564046,1.8139658,8.346869071324667,0.58070615,250.9148038228353,60.33117900000001,542.1459757486979,71.956593,7.931297580401103,154.12291000000005,7.5405195,538.5567677815756,5209.9819,1783.360432942708,346.39555462360056,378.9070078531901,950.5924444363927,17.678198496500652,53.955471,15.682193517684937,33.447493,170.47949091593424,329.52471,4.231992959976196,16.143675000000002,36.60471884409586,126.49199,5.8813802401224775,12.434284,0.28500013550122577,2.365528,18.97001536687215,14.626529,0.46645688513914746,7.0791974,1.2757697900136311,6.3606922,0.21000011265277863,3.4180583,0.10239290756483872,1.0845927,319.1300023396809,6.6935794842136405,58.883410476258234,218.7880647839753,45.62238086061233,32.723990706702715,-0.19564877526253424,5.6560072501500445,6.2799143,62587.82671838024,0.14980785321635395,4.354827245076497,6.9433284,3.073349952697754,1.8947828,0.481325035293897,0.46971744 +2006,8.358134409609946,1.092642827822681,0,0,8.925648149522456,3.767239769299825,2.045423,92.3141638437907,60.048081,75.77629216512044,10.21735,78.12813186645508,0.6450640999999999,16.514484405517578,1.7510311,8.368909200032553,0.58710647,248.66479873657227,63.03720300000001,540.64996337890625,65.575271,7.679868618647258,152.41471,9.3190485,536.2959035237631,5272.2746,1783.421223958333,356.46968956461853,381.01000722249347,986.1510088892475,18.454998811086018,51.911598,16.647892634073894,36.489809,177.60554122924805,346.30497,4.8289631605148315,19.891066,40.86165841420492,133.41048,6.627838969230652,14.118518,0.3600001533826192,2.3531588,20.050018151601154,12.639849,0.7066208471854528,6.875404400000001,1.6065597534179688,8.3862482,0.32000014930963516,2.5592336,0.1196288987994194,1.1852524,319.9329986572265,6.875606952566932,60.37974252884005,229.89543951646962,46.63913373990392,34.3551466019379,-0.19598348485772396,5.891855637232463,6.9409178,63046.345147395674,0.12455411284421772,4.33484947681427,6.3118449,3.1184199452400208,1.5902358,0.47626903901497525,0.43579597 +2007,8.681148087085731,0.9662119668592635,0,0,9.284494092478702,3.864439765612284,1.7666157999999998,91.12946637471516,57.25715400000001,76.47559356689453,9.3272415,77.3146406809489,4.5089203,16.49068291982015,1.5545493,8.360188722610474,0.78280059,246.4138298034668,64.737513,538.4259847005209,61.623755,7.651655554771423,147.28895,9.6981304,544.8235321044922,5250.6823,1788.9513142903643,355.0225755363805,382.60301971435547,945.8695944358407,19.124198754628498,49.953532,17.730092525482178,37.109679,185.02057011922201,357.26506,5.509383638699849,26.595246000000003,45.3168420791626,127.25708,7.37440820535024,16.399738,0.4300001785159111,2.4154053,21.274523735046387,9.3262891,0.9124758193890253,6.6980995,2.1004197100798288,8.4029745,0.41000018020470935,2.7884,0.13823089003562927,1.2649376,320.64601389567054,6.596141361261144,60.965826091796124,219.70587066030026,48.13085999118788,33.27729799228883,-0.1963181944529136,6.164003173510234,6.9754073000000005,62641.35919619402,0.1214193886258194,4.309016704559326,5.7707437000000015,3.1368099649747214,1.7021554,0.46845003962516785,0.59162888 +2008,8.733139806444965,0.6683379874909382,0,0,9.091850913798911,3.9428598284721375,1.746034,89.87336858113606,56.837697,77.15499623616536,9.0353429,76.47364234924316,8.339533900000001,16.458677450815838,1.9164483,8.382678429285685,0.45696793,244.47682189941406,63.06087700000001,536.3339691162109,57.108479,7.470538298288981,144.47281,6.337644999999998,546.2872212727865,5191.6855,1798.4196472167966,360.4917104977002,384.739018758138,912.5104843071592,19.5464989344279,54.881457,18.928292592366535,33.091627,193.09755071004233,362.72449,6.4292839368184405,30.815622,49.719340324401855,138.28669,8.326615969340006,17.544095000000002,0.5000001961986223,2.6196596000000003,22.006818771362305,8.8123411,1.0804997682571411,7.076053,2.7087196509043374,10.669375,0.4322652171055476,2.7884,0.15781688069303831,1.3164863000000002,321.57499186197913,6.638276368451454,61.316441745117054,214.69549502704018,48.035076099905325,31.619011505170853,-0.1966529040481033,6.453542669614156,6.8835341,61275.77057569818,0.13327703444478306,4.247629324595134,5.5737514,3.1567599376042685,1.6171325,0.4623090426127116,0.63840472 +2009,8.584990106780188,0.7548632834009588,0,0,9.109514001671727,4.015999873479207,1.7995506999999995,88.57357406616211,55.35525300000001,77.73389498392741,9.6854874,75.92381922403972,5.7877004,16.42168601353963,1.6755174,8.389018853505453,0.38354940000000004,242.4608243306478,60.065148,533.7759806315104,54.788238,7.171112656593323,144.24254,3.7694324,539.8231658935547,5145.2658,1802.1011861165362,364.2003633816462,386.28002166748047,917.7292309352042,19.870198726654053,61.50634300000001,19.930792331695557,32.081369,200.3144874572754,366.5558,7.706023693084717,33.926872,52.765931129455566,160.10848,9.35536535580953,21.142804,0.5700002362330755,2.9666725,22.658213933308918,9.933600300000002,1.2225398023923237,7.852249400000002,3.002319614092509,16.223306,0.4763352448741595,2.9974,0.17747688045104346,1.4335011999999998,322.27500661214185,6.712782947167917,61.37795929686438,218.75811433708597,46.48309573333753,31.77247636618844,-0.19698761364329287,6.728324254353841,7.159861,58721.16171394653,0.1066842123978326,4.189547856648763,5.2570896,3.1835699876149497,1.7272846000000002,0.4620170295238495,0.47723148 +2010,8.97554368419623,0.8851100551119334,0,0,9.665129375647625,4.092629869778951,1.7742175999999998,87.3809585571289,56.090865,78.37379455566406,10.48947,75.33903121948242,4.4070317,16.415090084075928,1.4644148,8.386359055836996,0.65896445,240.45181020100912,58.86009,531.2819671630859,52.271203,7.125164190928142,142.6745,2.4614781000000003,535.3102569580078,5179.9719,1807.850667317708,370.8962527865861,388.71703084309894,953.2286302920015,20.67949867248535,65.20953100000001,20.536893049875896,29.851794,207.74554824829102,361.74691,8.963194449742636,35.069515,57.8515370686849,165.044,10.426983912785849,20.460881,0.650000254313151,3.1827017000000004,23.296514352162678,11.247607,1.3827498058478038,8.7778712,3.920989453792572,15.914528,0.5346282621224722,3.3098,0.19690187896291414,1.3375544,323.140993754069,6.708375367844256,62.4444721228101,224.60211210242653,47.318297037341715,34.61053251023121,-0.19732232323848264,7.010202924410502,7.2759031,58249.4552717192,0.1379875550624469,4.121598919232686,4.897554799999999,3.1960699955622354,1.8511656000000003,0.4581970274448395,0.39655186 +2011,9.255966259655072,0.9136545403955806,0,0,9.478876565579496,4.170369823773702,1.8467555,86.05878257751465,57.565927,79.04059473673503,11.056837,74.6382344563802,4.6237938,16.361384391784668,2.0468287,8.387009064356485,0.85601742,238.2458127339681,62.415615,528.532969156901,52.120722,7.106488426526387,140.42156,3.0036158,534.1656138102213,5252.9333,1813.0701904296873,372.6576831783338,390.9440205891927,906.7673675143252,21.561198711395264,67.69059200000001,21.354194005330402,28.645628,214.5593744913737,366.94427,10.464804887771606,43.330418,62.84794902801514,190.47655,11.92148502667745,22.158614,0.7400002578894297,3.410604,24.134215990702312,12.498165,1.555159757534663,9.4654578,5.171979467074077,20.415233,0.5557872851689657,3.5841,0.21967886885007223,1.1291345,324.15898386637366,6.648935415452754,62.39874927347722,218.62875398112044,48.492221562223264,32.518259270416976,-0.19765703283367228,7.307322184244792,7.4656928,58834.52201769484,0.1090569133516887,4.04886809984843,4.3361773,3.2309599916140237,2.096153,0.450772022207578,0.39105944 +2012,9.386649744945927,0.9706890780006704,0,0,9.705285171316014,4.244799852371216,1.794986,85.01424598693848,59.464919,79.78919410705566,9.6609456,73.97862943013509,5.4529267,16.34028704961141,2.0520518,8.405529419581095,0.7168607,236.20683797200522,70.235225,525.833974202474,53.35878,6.98785674571991,136.71475,3.0096674,537.6538136800131,5232.3317,1815.2612304687498,380.80976664436446,393.0159912109375,949.6022183538887,22.543598651885986,63.311547,21.61989386876424,25.468261,220.10840479532877,356.29002,11.74120569229126,45.81505,67.7508716583252,205.00564,12.84508458773295,21.423000000000002,0.8300002614657084,3.2771162000000005,24.988317330678303,12.591587,1.750789761543274,9.054248,5.6421693166097,24.0671,0.6353292663892111,3.9269,0.23203588897983232,0.98551995,325.0049921671549,6.7427966320324675,63.84845417053954,229.10693623998705,48.176745092515574,35.82690195539086,-0.197991742428862,7.598473310470581,7.7062836,57925.01408286904,0.13867518125293046,3.9642380078633628,3.8379813,3.252539952596029,1.7328717,0.44370101888974506,0.41594871 +2013,9.65939649634906,0.9186575700100624,0,0,9.560553735096205,4.328779697418213,1.6324652,83.89107831319173,62.512861,80.53269322713216,8.3027436,73.30493418375652,6.5167934,16.327280203501385,1.9408617,8.421289602915445,0.61330322,234.38086700439453,75.740842,523.1149698893229,54.819887,6.848844488461812,133.39273,1.8384424,539.620361328125,5231.2321,1822.580841064453,381.59439281758614,395.72497812906903,901.2387566412425,23.414698759714764,59.817791,22.207694212595623,19.467118,226.13036346435547,342.89828,13.946606318155924,38.8888,74.7700621287028,202.01825,14.522682428359985,23.8069,0.9300002753734589,2.9986006,26.02762222290039,11.604213,1.9295397400856018,9.7859,7.50248924891154,21.452891,0.6930242776870728,4.2254,0.2427388938764731,0.87225171,325.91899108886713,6.847910646098343,63.650976650406456,219.3811792508812,47.50620674450057,33.245565827085585,-0.19832645202405166,7.910870313644409,7.686158,57413.51786587013,0.15767154312883705,3.8617884318033853,3.5745493,3.305999994277954,0.96258078,0.43652602036794025,0.44442215 +2014,9.719224641485487,1.0957648183627096,0,0,9.744379658087517,4.398729681968689,1.6517,83.06993166605632,53.5475,81.09249051411946,9.8735,72.71072514851888,2.8024,16.306567827860516,1.6696,8.429009358088175,1.114899,233.07986958821616,54.9365,520.5809682210287,28.9612,6.6860902309417725,133.6791,1.2625,539.5420227050781,5358.4982,1831.470998128255,387.873539205888,397.5469792683919,964.047618150183,23.809098561604817,59.82,22.075694402058918,22.47,229.5420659383138,358.8813,15.355007727940878,57.1243,80.51572863260905,200.0249,15.25278091430664,25.2487,1.0056702643632889,3.5393,26.890435059865315,12.991,2.047369738419851,10.1025,8.336968978246054,30.4858,0.7650303095579147,4.4701,0.24726289386550585,1.1516,326.98799133300776,6.916164550612366,65.0368536583283,233.52551800560903,47.385237858595374,36.145821385036584,-0.19866116161924133,8.221433083216349,7.8784,57093.261416151574,0.13977836334337682,3.7536577781041465,3.4810000000000003,3.2976099848747253,1.2299,0.431062030295531,0.3854 +2015,9.724603236619341,0.9598830811179276,0,0,9.727423576882975,4.480124394098918,1.57,82.11866760253906,47.5476,81.83428891499837,10.8699,72.07452011108398,0.8742,16.297698338826496,1.6696,8.46001680692037,1.6714,231.45183436075845,43.5734,518.0192413330078,14.6096,6.6675059000651045,133.82299999999998,0,549.8628336588541,5404.8069,1841.9212646484373,388.0727956633219,399.9493179321289,934.3498846847756,24.225375016530354,59.82,22.050127506256104,22.47,233.69500478108725,358.8813,17.757368167241413,78.7906,84.77318127950032,201.9534,16.744486888249714,32.381,1.0912282864252727,3.6633,27.94642210006714,14.4857,2.2241610487302146,11.7285,9.83471910158793,38.5792,0.8709112852811813,4.6492000000000004,0.2528686498602231,1.1516,328.17959594726557,6.937624392238832,65.27970313424451,227.24481931953318,47.348771783802036,34.74602422800083,-0.19899587121443105,8.568467537562052,8.02,50464.18814475436,0.12580052700903913,3.652732769648234,3.2933,3.2844180266062417,1.3378,0.4261275604367256,0.3481 +2016,9.835464874818355,0.844851276544465,0,0,9.782158760368375,4.563908735911052,1.54872,80.868988037109375,45.017160000000004,82.68911616007487,10.607422419999999,71.4100399017334,0.78156,16.274217287699383,1.515231454,8.488823413848877,1.61422146,229.59260686238608,41.88082,514.5848337809244,12.88774,6.884205182393392,133.43352,0,563.0202382405599,5377.54322,1851.5942382812498,396.977744048929,403.11696370442706,938.7207093417517,24.52680730819702,60.8428786,22.259799321492512,21.990155599999998,237.72884623209634,351.625206,21.18809429804484,85.38394,90.2767276763916,195.36684,19.401511351267498,34.04544,1.2003816366195679,3.64859498,28.906192461649578,11.92944,2.4407403071721396,12.1174182,12.709800799687704,31.77122,0.9575190643469492,4.497569260000001,0.26552995791037876,1.086787196,329.07597351074213,6.963399306934171,66.0504184973316,227.88365487356862,47.18627692929528,35.02706044940206,-0.19933058080962068,8.884455839792887,8.00504,49204.22589302376,0.11182269067470146,3.5471805334091187,3.07158,3.2989591161410012,1.29166,0.4188620348771413,0.33428 +2017,9.94632651301737,0.7298194719710025,0,0,9.836893943853775,4.604879220326741,1.5274400000000001,79.52129300435384,42.486720000000005,83.12951151529948,10.34494484,70.57014846801758,0.68892,16.21771017710368,1.360862908,8.531164328257242,1.55704292,226.30971908569336,40.18824,508.8199412027995,11.16588,6.581218163172404,133.04404,0,557.0959116617838,5350.2795399999995,1875.3197021484373,405.8826924345361,405.7429707845052,943.0915339987279,24.887107213338215,61.8657572,22.13089927037557,21.5103112,240.99987157185873,344.369112,23.277894179026287,91.97728000000001,95.80338541666667,188.78028,20.625413576761883,35.70988,1.2754012942314148,3.63388996,29.83809487024943,9.37318,2.6055001815160117,12.5063364,13.146400451660156,24.96324,1.0230700771013896,4.345938520000001,0.2743329852819443,1.021974392,329.78197733561194,6.989174221629511,66.8211338604187,228.52249042760405,47.023782074788535,35.30809667080329,-0.1996652904048104,9.180607000986734,7.99008,47944.26364129315,0.09784485434036376,3.4357604583104453,2.8498599999999996,3.3043991724650064,1.24552,0.4108480264743169,0.32046 +2018,10.057188151216383,0.6147876673975399,0,0,9.891629127339174,4.670729319254558,1.50616,78.11829503377278,39.95628000000001,83.83631134033203,10.08246726,69.81604131062825,0.59628,16.17810821533203,1.206494362,8.575854063034058,1.49986438,223.6417096455892,38.49566,504.2629089355469,9.44402,6.571951707204183,132.65455999999998,0,556.9292805989584,5323.01586,1893.0016276041665,414.7876408201433,408.5569661458333,947.462358655704,25.253907044728596,62.8886358,22.1349991162618,21.0304668,243.5529022216797,337.113018,26.835993607838947,98.57061999999999,99.75606791178386,182.19371999999998,22.65611473719279,37.374320000000004,1.3648312191168468,3.6191849400000002,30.606096267700195,6.81692,2.797560195128123,12.8952546,13.803100188573202,18.15526,1.0758000512917836,4.19430778,0.2813509851694107,0.957161588,330.52897135416663,7.014949136324851,67.59184922350578,229.1613259816395,46.86128722028178,35.58913289220452,-0.2,9.503506422042847,7.9751199999999995,46684.301389562555,0.08386701800602607,3.327050526936849,2.62814,3.3077791929244995,1.1993800000000001,0.4034980237483978,0.30663999999999997 +2019,10.168049789415399,0.4997558628240773,0,0,9.946364310824574,4.735669294993083,1.48488,76.6684964497884,37.42584,84.52521133422852,9.81998968,69.0663407643636,0.50364,16.132907390594482,1.052125816,8.61820419629415,1.44268584,220.94771194458008,36.80308,499.6559143066406,7.722159999999999,6.562196334203084,132.26507999999998,0,555.6558278401693,5295.75218,1912.561309814453,423.6925892057504,411.33996327718097,951.8331833126801,25.64010747273763,63.9115144,22.1134991645813,20.5506224,245.43892288208008,329.856924,30.601293404897053,105.16396,103.07928085327148,175.60716,24.764015197753906,39.03876,1.4513312081495922,3.60447992,31.154297828674316,4.26066,2.9832401871681213,13.2841728,13.641600131988525,11.347279999999998,1.1172100603580475,4.04267704,0.2864999820788701,0.892348784,331.2759704589843,7.040724051020191,68.36256458659287,229.80016153567493,46.698792365775034,35.87016911360575,-0.19988798027978674,9.825696388880411,7.96016,45424.33913783195,0.06988918167168841,3.2169004678726196,2.40642,3.3091992338498435,1.15324,0.3960840255022049,0.29281999999999997 +2020,10.278911427614412,0.38472405825061473,0,0,10.001099494309974,4.799679358800252,1.4636,75.1794974009196,34.8954,85.19641176859538,9.5575121,68.32124137878418,0.41100000000000003,16.08290672302246,0.89775727,8.658293883005777,1.3855073,218.22970708211264,35.1105,495.013910929362,6.0003,6.552963574727376,131.8756,0,554.0758005777994,5268.4885,1933.8615417480466,432.5975375913575,414.10095977783203,956.2040079696562,26.04190731048584,64.934393,22.071499506632488,20.070778,246.82693099975586,322.60083,34.56809266408285,111.7573,105.8205025990804,169.0206,26.94791555404663,40.7032,1.5350211958090465,3.5897749,31.483599026997883,1.7044,3.163590212663015,13.673091,12.805300076802572,4.5393,1.1486300627390544,3.8910463,0.2898989866177241,0.82753598,332.02097320556635,7.06649896571553,69.13327994967996,230.43899708971037,46.53629751126828,36.15120533500698,-0.2002950071407014,10.147206544876099,7.9452,44164.37688610135,0.05591134533735071,3.1060304641723633,2.1847,3.3087492187817893,1.1071,0.3886190156141917,0.27899999999999997 +2021,10.218798693711575,0.3188417653076053,0,0,9.948060417900935,4.862759351730347,1.446,73.658599853515625,33.28538,85.8498109181722,9.28702459,67.58124097188313,0.37899000000000005,16.028705596923828,0.833926213,8.696213801701864,1.342148655,215.49370702107748,33.879090000000005,490.35090891520184,5.50149,6.54433027903239,131.55347,0,552.4436899820963,5240.392830000001,1956.7713521321612,428.7454136116183,416.8429641723633,954.4336677357799,26.455807209014893,63.8401921,22.013498942057293,19.2265454,247.8499870300293,304.67177,38.73089345296224,104.8391004,108.02476946512859,156.10999,29.20671510696411,38.15869,1.616001119216283,3.3325091000000002,31.5951992670695,1.54453,3.339480181535085,12.811634479999999,11.41130018234253,4.11352,1.1712300578753154,3.5938245,0.2916639844576518,0.7592602709999999,332.76597340901685,7.074240540354256,69.87493936951932,231.15771723953281,46.076028491953664,36.24536023210203,-0.20063233660623855,10.46790631612142,7.75999,43331.482500350205,0.041933509003013035,2.9950804313023887,2.06237,3.3065293033917746,1.07222,0.38112201790014905,0.26903 +2022,10.158685959808738,0.2529594723645958,0,0,9.895021341491898,4.924999356269836,1.4284000000000001,72.11220105489095,31.67536,86.48521105448405,9.01653708,66.84654108683269,0.34698,15.970905065536499,0.770095156,8.73206361134847,1.29879001,212.74170430501303,32.64768,485.67591094970703,5.00268,6.5389485359191895,131.23134,0,550.9550832112631,5212.29716,1979.1009623209634,424.8932896318791,419.54396565755206,952.6633275019036,26.84650754928589,62.7459912,21.926599343617756,18.3823128,247.88906224568686,286.74271,42.75589370727539,97.9209008,109.55875714619954,143.19938,31.39221413930257,35.614180000000005,1.6902110477288563,3.0752433,31.591698964436848,1.3846599999999998,3.485910177230835,11.95017796,9.889789978663126,3.68774,1.183350036541621,3.2966027,0.29187098642190296,0.6909845619999999,333.5089721679687,7.081982114992983,70.61659878935868,231.87643738935523,45.61575947263905,36.33951512919709,-0.2008999686763984,10.784506241480509,7.57478,42498.58811459906,0.02795567266867536,2.884580433368683,1.9400399999999998,3.302629311879476,1.03734,0.37360502282778424,0.25905999999999996 +2023,10.098573225905902,0.18707717942158644,0,0,9.841982265082859,4.986469268798828,1.4108,70.54630025227864,30.065340000000003,87.10231018066406,8.74604957,66.11744054158528,0.31497000000000003,15.909804582595825,0.7062640990000001,8.765883525212606,1.255431365,209.97670110066733,31.41627,480.99790954589844,4.50387,6.53671932220459,130.90921,0,549.5851287841797,5184.20149,1998.7708841959634,421.0411656521399,422.18196360270184,950.8929872680272,27.183507283528645,61.6517903,21.80009921391805,17.5380802,246.51109059651694,268.81365,46.31979433695475,91.0027012,110.2976754506429,130.28877,33.35881265004476,33.06967,1.7537009418010712,2.8179775,31.57539939880371,1.22479,3.580720146497091,11.08872144,8.595030069351196,3.26196,1.1834700306256611,2.9993809000000002,0.29058398803075153,0.622708853,334.24697621663404,7.089723689631709,71.35825820919803,232.59515753917768,45.15549045332444,36.43367002629214,-0.2010979033511808,11.09350593884786,7.38957,41665.69372884792,0.013977836334337678,2.775020440419515,1.81771,3.2971293528874717,1.00246,0.36608202507098514,0.24908999999999998 +2024,10.038460492003065,0.12119488647857696,0,0,9.78894318867382,5.047179341316223,1.3932,68.96630223592122,28.45532,87.701109568278,8.47556206,65.39403978983562,0.28296,15.845904032389322,0.642433042,8.797773281733194,1.21207272,207.20170211791992,30.18486,476.32391357421875,4.00506,6.534229516983032,130.58708,0,548.1325124104818,5156.10582,2015.9907430013018,417.1890416724007,424.7629623413086,949.1226470341509,27.47270743052165,60.5575894,21.64129940668742,16.693847599999998,244.13911946614584,250.88459,49.43779436747233,84.0845016,110.29369036356609,117.37816000000001,35.11101245880127,30.52516,1.8067708611488342,2.5607116999999997,31.546199639638264,1.0649199999999999,3.630070149898529,10.22726492,7.484940052032471,2.8361799999999997,1.1728500227133434,2.7021591000000003,0.28788499037424725,0.5544331439999999,334.98097483317054,7.097465264270436,72.09991762903739,233.3138776890001,44.695221434009824,36.5278249233872,-0.2012261406305857,11.394805749257406,7.204359999999999,40832.79934309677,0,2.666780412197113,1.6953799999999999,3.2901093562444053,0.96758,0.3585640216867129,0.23911999999999997 +2025,9.978347758100227,0.055312593535567556,0,0,9.73590411226478,5.107129295667012,1.3756,67.37740262349446,26.8453,88.28161112467448,8.205074549999999,64.67653910319011,0.25095,15.779603481292725,0.578601985,8.827803293863932,1.168714075,204.41970189412436,28.95345,471.6609115600586,3.50625,6.530659635861714,130.26495,0,546.5458984375,5128.01015,2030.9206542968748,413.3369176926615,427.29095967610675,947.3523068002746,27.719307104746502,59.4633885,21.456799666086834,15.849615,241.09712727864584,232.95553,52.12449518839518,77.166302,109.59376398722331,104.46755,36.6528107325236,27.98065,1.8496807714303334,2.3034459,31.504099527994793,0.9050499999999999,3.639260152975718,9.365808399999999,6.525549968083699,2.4104,1.1526000301043193,2.4049373000000003,0.2838519910971324,0.48615743499999997,335.7099736531575,7.1052068389091625,72.84157704887676,234.03259783882254,44.23495241469521,36.62197982048225,-0.2012846805146132,11.68850572903951,7.01915,39999.90495734562,0,2.5602304339408875,1.5730499999999998,3.2816593845685325,0.9327,0.3510630155603091,0.22914999999999996 +2026,9.91823502419739,0,0,0.010569699407441846,9.682865035855743,5.166309356689453,1.358,65.78390439351399,25.235280000000003,88.84380849202473,7.93458704,63.96513875325521,0.21894,15.71120309829712,0.5147709280000001,8.8560333251953125,1.12535543,201.6337038675944,27.72204,467.01491292317706,3.0074400000000003,6.525879939397176,129.94282,0,544.8193359375,5099.91448,2043.7305603027341,409.4847937129223,429.7689615885417,945.5819665663983,27.928006807963055,58.369187600000004,21.251999219258625,15.0053824,237.62818145751953,215.02647000000002,54.39349555969238,70.2481024,108.243896484375,91.55694000000001,37.988509813944496,25.43614,1.8827206989129384,2.0461801,31.449099858601887,0.74518,3.61296010017395,8.50435188,5.689320087432861,1.98462,1.123710036277771,2.1077155000000003,0.27855699012676877,0.417881726,336.4349746704101,7.112948413547889,73.58323646871611,234.75131798864498,43.77468339538059,36.716134717577305,-0.2012735230032633,11.974505503972372,6.83394,39167.010571594474,0,2.455640355745951,1.45072,3.271849433581034,0.89782,0.34359001864989597,0.21917999999999999 +2027,9.858122290294553,0,0,0.0764519923504513,9.629825959446704,5.224719405174255,1.3404,64.19020557403564,23.625260000000004,89.38770993550618,7.66409953,63.259939193725586,0.18693,15.641002734502157,0.45093987100000005,8.882543166478476,1.081996785,198.8467025756836,26.49063,462.3879114786784,2.50863,6.5199499527613325,129.62069,0,542.9626261393229,5071.81881,2054.580403645833,405.6326697331831,432.19896697998047,943.8116263325219,28.06740665435791,57.2749867,21.010799566904705,14.1611498,233.21624883015951,197.09741000000002,56.25829601287842,63.329902800000006,106.28609275817871,78.64633,39.121809323628746,22.891630000000003,1.906130611896515,1.7889143,31.381199836730957,0.58531,3.5552401145299277,7.64289536,4.9538900057474775,1.5588400000000004,1.0870500306288402,1.8104937000000003,0.2720699931184451,0.349606017,337.1559753417968,7.120689988186616,74.32489588855546,235.4700381384674,43.314414376065976,36.810289614672364,-0.201192668096536,12.252905368804932,6.64873,38334.11618584333,0,2.353260358174642,1.3283900000000002,3.2607494393984475,0.86294,0.3361540138721466,0.20921 +2028,9.798009556391717,0,0,0.14233428529346082,9.576786883037665,5.282369335492452,1.3228,62.599806467692055,22.01524,89.9132080078125,7.393612019999999,62.56093819936117,0.15492,15.569302399953207,0.38710881399999997,8.907392899195353,1.03863814,196.05970255533853,25.25922,457.7859115600586,2.00982,6.51300032933553,129.29856,0,540.9891001383463,5043.72314,2063.590352376302,401.7805457534439,434.584966023763,942.0412860986455,28.111006418863933,56.1807858,20.720099449157715,13.316917199999999,227.50027211507162,179.16835000000003,57.73139572143555,56.4117032,103.75832239786784,65.73572,40.056708335876465,20.347119999999997,1.9201705157756805,1.5316484999999997,31.300499598185223,0.4254399999999998,3.4696501096089682,6.78143884,4.301040053367615,1.13306,1.0434300204118092,1.5132719000000003,0.26445399473110837,0.2813303079999999,337.87297312418616,7.128431562825342,75.06655530839483,236.18875828828985,42.85414535675137,36.904444511767416,-0.2010421157944312,12.523705323537191,6.46352,37501.221800092186,0,2.2532903949419656,1.20606,3.2484394709269204,0.82806,0.32876401394605637,0.19923999999999997 +2029,9.73789682248888,0,0,0.20821657823647022,9.523747806628627,5.339259425799052,1.3052000000000001,61.01620674133301,20.40522,90.42050870259602,7.12312451,61.868438720703125,0.12290999999999996,15.496202150980631,0.32327775700000005,8.930632829666138,0.995279495,193.27670288085938,24.02781,453.2089157104492,1.5110099999999997,6.505109906196594,128.97643,0,538.9081013997396,5015.627469999999,2070.920267740885,397.9284217737047,436.9269663492839,940.2709458647693,28.0727063814799,55.0865849,20.389899730682373,12.4726846,220.94129435221353,161.23929000000004,58.82489617665609,49.493503600000004,100.69663174947102,52.825109999999995,40.79690647125244,17.802609999999998,1.9250804384549458,1.2743826999999999,31.206899801890057,0.26556999999999986,3.359350085258484,5.91998232,3.715940018494924,0.7072800000000004,0.9935210247834524,1.2160501000000004,0.255771999557813,0.213054599,338.584971110026,7.136173137464069,75.80821472823419,236.90747843811226,42.39387633743675,36.998599408862475,-0.20082186609694905,12.786805152893066,6.278309999999999,36668.32741434104,0,2.1558903654416404,1.08373,3.2349894841512046,0.79318,0.3214290166894595,0.18927 +2030,9.677784088586042,0,0,0.2740988711794796,9.470708730219588,5.395379424095154,1.2876,59.44240792592367,18.7952,90.90950838724773,6.852637,61.18233776092529,0.0909,15.422101815541586,0.25944670000000003,8.952332814534506,0.95192085,190.49970372517905,22.7964,448.6629155476888,1.0122,6.49639093875885,128.6543,0,536.7339528401693,4987.5318,2076.670186360677,394.0762977939655,439.22596740722656,938.5006056308929,27.964606444040935,53.992384,20.02899996439616,11.628452,213.88629277547201,143.31023000000005,59.550697008768715,42.575304,97.13432502746582,39.9145,41.346006075541176,15.2581,1.921110341946284,1.0171169,31.100499947865803,0.1057,3.2270800868670144,5.0585258,3.186450024445852,0.2815,0.9379680156707764,0.9188283000000002,0.24608199670910835,0.14477889,339.29397583007807,7.143914712102795,76.54987414807354,237.6261985879347,41.933607318122135,37.09275430595753,-0.20053191900408945,13.042304913202921,6.0931,35835.43302858989,0,2.061180373032888,0.9614,3.220459500948588,0.7583,0.31415501485268277,0.1793 +2031,9.496475500513935,0,0,0.27617924645546055,9.395457430014146,5.45073934396108,1.28508,57.88110828399658,17.92802,91.38020833333333,6.82924721,60.502637227376304,0.08381999999999999,15.347001632054647,0.24100761240000002,8.97255253791809,0.9221711260000001,187.7297045389811,21.996879999999997,444.14691162109375,0.92805,6.486928264300029,128.60818,0,534.4728698730469,4985.10229,2080.9602457682286,395.7516507408055,441.4839604695638,938.2507577012979,27.7974058787028,51.769800000000004,19.644800027211506,10.82562094,206.59233601888022,131.00808400000005,59.91999753316244,40.5667476,93.10384941101074,37.639399999999995,41.70770581563314,14.56808,1.9084703226884205,0.9607916519999999,30.981200218200684,0.09797,3.075290103753408,4.83280221,2.7026399970054626,0.26091,0.8773260166247686,0.8664599020000001,0.23543799916903177,0.135433959,339.99797312418616,7.18589413570843,77.24198085523102,238.27597448505512,41.392442878545275,37.08198566087857,-0.20023977004940746,13.290204922358194,6.13589,35028.27331770794,0,1.9692703386147816,0.90757,3.20490954319636,0.7343999999999999,0.30695001035928726,0.1729 +2032,9.315166912441827,0,0,0.27825962173144153,9.320206129808705,5.505649407704671,1.2825600000000001,56.33490816752116,17.060840000000002,91.84090677897136,6.80585742,59.82953707377116,0.07673999999999999,15.271101554234823,0.22256852480000003,8.991352637608847,0.8924214020000001,184.9687042236328,21.19736,439.6639175415039,0.8439,6.482374350229899,128.56206,0,533.1106313069662,4982.67278,2084.9003499348955,397.4270036876454,443.6879653930664,938.0009097717028,27.547805468241375,49.547216,19.22399965922038,10.02278988,198.59939575195312,118.70593800000003,60.06399726867676,38.5581912,88.93626340230306,35.3643,41.950605392456055,13.878060000000001,1.8908803164958954,0.904466404,30.855699857076008,0.09024,2.919510066509247,4.60707862,2.2777299880981445,0.24031999999999998,0.8167810142040253,0.8140915040000001,0.22457099705934525,0.126089028,340.7019729614257,7.227873559314063,77.93408756238848,238.92575038217552,40.851278438968414,37.071217015799625,-0.19994541923290307,13.535104910532633,6.17868,34221.113606825995,0,1.8802103499571483,0.85374,3.1884095072746277,0.7105,0.299820010860761,0.16649999999999998 +2033,9.133858324369719,0,0,0.2803399970074225,9.244954829603262,5.56045933564504,1.28004,54.80580870310465,16.19366,92.30010795593262,6.782467629999999,59.162936528523765,0.06966,15.194501399993896,0.2041294372,9.008782545725504,0.862671678,182.21871058146158,20.39784,435.2149175008138,0.7597499999999999,6.4847447872161865,128.51594,0,533.0212758382162,4980.24327,2089.540405273437,399.10235663448543,445.8269627888997,937.7510618421078,27.19670534133911,47.324632,18.75599988301595,9.219958819999999,189.5874048868815,106.40379200000004,60.110297520955406,36.5496348,84.94064966837566,33.0892,42.14230537414551,13.18804,1.8719502985477448,0.848141156,30.730399926503498,0.08251,2.7735100984573364,4.38135503,1.9228399991989136,0.21972999999999998,0.7609730164210001,0.7617231060000001,0.21416999772191048,0.11674409699999999,341.407979329427,7.269852982919698,78.62619426954595,239.57552627929593,40.310113999391554,37.06044837072068,-0.19964886655457634,13.781704902648926,6.22147,33413.95389594405,0,1.7940603097279866,0.79991,3.170999546845754,0.6866,0.29277001072963077,0.1601 +2034,8.95254973629761,0,0,0.28242037228340344,9.169703529397822,5.61514941851298,1.27752,53.29580879211426,15.32648,92.75770696004231,6.75907784,58.502936363220215,0.06258,15.117501179377237,0.18569034960000003,9.024882316589355,0.832921954,179.4827092488607,19.598319999999998,430.80191802978516,0.6756,6.489404479662578,128.46982,0,533.3826700846354,4977.81376,2094.8204549153643,400.7777095813254,447.90296681722003,937.5012139125128,26.761704921722412,45.102047999999996,18.251999696095783,8.41712776,179.99441274007162,94.10164600000002,60.061997731526695,34.5410784,81.10414568583171,30.814099999999996,42.283904711405434,12.49802,1.8517202734947205,0.791815908,30.605299949645996,0.07478,2.6360900600751243,4.15563144,1.6260000069936116,0.19913999999999998,0.709373007218043,0.7093547080000001,0.20420599728822708,0.10739916599999999,342.11897277832026,7.311832406525332,79.31830097670343,240.22530217641633,39.76894955981469,37.049679725641724,-0.1993501120144273,14.029905001322428,6.26426,32606.794185062103,0,1.7108403245608013,0.7460800000000001,3.152759552001953,0.6627,0.28580601265033084,0.1537 +2035,8.771241148225503,0,0,0.28450074755938437,9.09445222919238,5.669719378153483,1.275,51.80660915374756,14.4593,93.21360842386882,6.73568805,57.849435806274414,0.055499999999999994,15.040001074473063,0.167251262,9.03971234957377,0.80317223,176.76071166992188,18.7988,426.42391713460285,0.59145,6.49498434861501,128.4237,0,533.9193115234375,4975.38425,2100.710469563802,402.45306252816533,449.9169616699219,937.2513659829178,26.258004665374756,42.879464,17.721499919891357,7.6142967,170.14741007486978,81.79950000000002,59.922498067220054,32.532522,77.41554641723633,28.538999999999998,42.37650489807129,11.808,1.8302302559216816,0.73549066,30.48050006230672,0.06705,2.506200095017751,3.92990785,1.3772600293159485,0.17855,0.6615100055932999,0.6569863100000001,0.19465099647641182,0.09805423499999999,342.8319727579752,7.353811830130967,80.0104076838609,240.8750780735367,39.227785120237826,37.03891108056277,-0.19904915561245576,14.279805024464926,6.30705,31799.634474180155,0,1.6305602888266246,0.69225,3.133719563484192,0.6388,0.27893101175626117,0.1473 +2036,8.589932560153393,0,0,0.28658112283536535,9.019200928986937,5.72417938709259,1.27248,50.339708964029946,13.592120000000001,93.6680081685384,6.71229826,57.20253531138102,0.04842,14.96220095952352,0.1488121744,9.053312063217163,0.7734225060000001,174.05471420288086,17.99928,422.08391825358075,0.5073,6.50106422106425,128.37758,0,534.53814697265625,4972.95474,2107.170532226562,404.1284154750053,451.8709716796875,937.0015180533228,25.699004650115967,40.65688,17.172499815622967,6.81146564,160.2864023844401,69.49735400000002,59.694698333740234,30.523965600000004,73.86362648010254,26.2639,42.4211041132609,11.117980000000001,1.807510217030843,0.6791654119999999,30.355900128682453,0.05932,2.3829000989596048,3.70418426,1.168410023053487,0.15796,0.6169660141070684,0.6046179120000001,0.18547899648547173,0.08870930399999999,343.5479710896809,7.395791253736601,80.70251439101837,241.52485397065712,38.686620680660965,37.02814243548382,-0.19874599734866194,14.531405051549276,6.3498399999999995,30992.474763298207,0,1.5532202621301014,0.63842,3.1139396031697593,0.6149,0.27215001235405606,0.1409 +2037,8.408623972081285,0,0,0.2886614981113463,8.943949628781496,5.778529365857442,1.26996,48.89630953470866,12.72494,94.12080764770508,6.688908469999999,56.562034924825035,0.041339999999999995,14.884200890858969,0.1303730868,9.065742015838623,0.7436727820000001,171.3647143046061,17.199759999999998,417.77991739908856,0.42315,6.507504105567932,128.33146,0,535.2060292561849,4970.52523,2114.170491536458,405.80376842184523,453.7659734090169,936.7516701237278,25.09620412190755,38.434296,16.611799875895183,6.00863458,150.5863889058431,57.19520800000002,59.38149897257487,28.5154092,70.43839581807454,23.988799999999998,42.41870371500651,10.427960000000002,1.7836102346579235,0.622840164,30.231499989827473,0.05159,2.2653600573539734,3.47846067,0.9926339983940125,0.13737,0.5753630052010218,0.5522495140000001,0.17666599775354067,0.079364373,344.2669779459635,7.437770677342235,81.39462109817583,242.17462986777753,38.145456241084105,37.017373790404875,-0.19844063722304567,14.78470516204834,6.39263,30185.315052416263,0,1.4787902534008026,0.58459,3.093469580014547,0.591,0.26546601206064224,0.1345 +2038,8.227315384009177,0,0,0.29074187338732727,8.868698328576054,5.832759380340576,1.26744,47.47750981648763,11.857759999999999,94.57200813293457,6.66551868,55.92813491821289,0.03425999999999999,14.806000630060831,0.1119339992,9.07704210281372,0.713923058,168.69471740722656,16.40024,413.51392364501953,0.33899999999999997,6.514244000116984,128.28534,0,535.9099426269531,4968.09572,2121.670572916666,407.47912136868524,455.6029764811198,936.5018221941327,24.459603945414226,36.211712,16.044999837875366,5.20580352,141.16837056477866,44.893062,58.985597928365074,26.5068528,67.13025029500325,21.7137,42.37020460764567,9.73794,1.7585402031739552,0.5665149159999999,30.107499917348225,0.043859999999999996,2.152850031852722,3.25273708,0.844277004400889,0.11678,0.5363680024941763,0.499881116,0.16818799823522568,0.070019442,344.9899749755859,7.47975010094787,82.08672780533331,242.82440576489793,37.604291801507244,37.00660514532592,-0.1981330752356072,15.039605299631754,6.43542,29378.155341534315,0,1.407240241765976,0.53076,3.0723596612612405,0.5670999999999999,0.2588820084929466,0.1281 +2039,8.04600679593707,0,0,0.2928222486633082,8.793447028370613,5.886879404385884,1.26492,46.08421007792155,10.990580000000001,95.02160771687825,6.64212889,55.300734202067055,0.027179999999999996,14.727700471878052,0.09349491159999998,9.08726191520691,0.684173334,166.04372024536133,15.600719999999999,409.2859242757161,0.2548499999999999,6.521243890126546,128.23922,0,536.64385986328125,4965.66621,2129.6505330403643,409.1544743155252,457.3829650878906,936.2519742645377,23.797904014587402,33.989128,15.476999759674072,4.40297246,132.11635398864746,32.59091600000001,58.50979868570963,24.4982964,63.930294036865234,19.438599999999997,42.27660338083903,9.047920000000001,1.7323501706123352,0.5101896679999999,29.983700116475422,0.036129999999999995,2.0447300374507904,3.02701349,0.718670000632604,0.09619,0.49968500683705014,0.447512718,0.16002400095264116,0.060674511,345.7159754435221,7.521729524553503,82.77883451249079,243.47418166201834,37.063127361930384,36.995836500246966,-0.19782331138634615,15.296105146408081,6.47821,28570.995630652367,0,1.3385202487309773,0.47693,3.050649642944336,0.5432,0.2523990087211132,0.1217 +2040,7.864698207864961,0,0,0.2949026239392892,8.71819572816517,5.940889398256938,1.2624,44.71740976969401,10.1234,95.46960703531902,6.6187391,54.67973391215006,0.0201,14.649300654729208,0.07505582400000001,9.096421798070272,0.65442361,163.412722269694,14.8012,405.0959192911784,0.1707,6.528473734855652,128.1931,0,537.4037933349609,4963.2367,2138.060628255208,410.82982726236514,459.1069742838542,936.0021263349427,23.118403752644856,31.766544,14.911700010299683,3.6001414,123.48533503214519,20.28877,57.95639864603678,22.48974,60.83012326558431,17.1635,42.138803482055664,8.3579,1.7050601541996002,0.45386442,29.86019976933797,0.0284,1.940420041481654,2.8012899,0.6119399865468343,0.0756,0.4650480051835378,0.39514432,0.1521519993742307,0.05132958,346.44397481282545,7.563708948159138,83.47094121964825,244.12395755913874,36.521962922353524,36.98506785516802,-0.19751134567526285,15.554405132929483,6.521,27763.83591977042,0,1.2726002434889476,0.4231,3.0283696254094443,0.5193,0.24602300922075906,0.1153 +2041,7.635545623718676,0,0,0.28134444318981144,8.597430638218786,5.994779348373413,1.25874,43.377509435017906,9.656320000000001,95.91600672403972,6.59531932,54.06513373057047,0.01853,14.571000576019287,0.0697234998,9.104581753412882,0.633957487,160.8037223815918,14.28209,400.9439214070638,0.15650999999999998,6.535923798878987,128.12610999999998,0,538.1877288818359,4960.80407,2146.8905639648433,411.00599383986264,460.77696990966797,933.7792965530009,22.42750358581543,30.4061322,14.3522998491923,3.34120265,115.30531883239746,18.44822429,57.32789866129557,21.120542490000002,57.82184982299805,16.07451,41.9576031366984,7.8555600000000005,1.6766901512940724,0.424802224,29.736899852752686,0.02606,1.839430034160614,2.63631522,0.5208759978413582,0.06937,0.4322200044989586,0.370074899,0.1445540003478527,0.0478543955,347.17597452799475,7.603471020815077,84.04522449598375,243.73419231677417,35.92994189965808,36.77659869542752,-0.19721372382364735,15.814205328623453,6.57945,26960.116794772206,0,1.209400236606598,0.39941,3.005579670270284,0.5029399999999999,0.23975300788879395,0.11118 +2042,7.406393039572391,0,0,0.2677862624403337,8.4766655482724,6.048529386520386,1.25508,42.06520970662435,9.18924,96.3609078725179,6.57189954,53.456933657328285,0.01696,14.492700417836508,0.0643911756,9.111761649449667,0.613491364,158.2177276611328,13.762979999999999,396.8299280802409,0.14232,6.543163975079854,128.05911999999998,0,538.9906870524088,4958.37144,2155.8505452473955,411.1821604173601,462.38597106933594,931.5564667710593,21.72800334294637,29.0457204,13.799999872843424,3.0822639,107.53830337524414,16.607678579999998,56.64209874471029,19.75134498,54.93182786305746,14.98552,41.74040253957113,7.35322,1.6477501193682353,0.39574002799999997,29.614199956258137,0.02372,1.7425600290298462,2.47134054,0.4435740013917287,0.06314,0.40151100357373554,0.345005478,0.13727799927194914,0.044379211,347.9099731445312,7.643233093471014,84.61950777231922,243.3444270744096,35.33792087696264,36.56812953568703,-0.1969304458314998,16.076105038324993,6.6379,26156.397669773993,0,1.1488802134990692,0.37572,2.9823096990585327,0.48658,0.23359200979272524,0.10706 +2043,7.177240455426106,0,0,0.254228081690856,8.355900458326015,6.102119406064351,1.25142,40.78080972035726,8.72216,96.80410703023274,6.54847976,52.855133056640625,0.015390000000000001,14.414600451787313,0.0590588514,9.118011713027954,0.5930252410000001,155.65473047892252,13.24387,392.75392659505206,0.12813,6.54996399084727,127.99212999999999,0,539.7996826171875,4955.938810000001,2164.6605428059893,411.3583269948576,463.9269714355469,929.3336369891175,21.02190287907918,27.6853086,13.255400021870932,2.82332515,100.14628601074219,14.767132870000001,55.916199366251625,18.38214747,52.18412431081136,13.896529999999998,41.49450270334879,6.850880000000001,1.6187101205190022,0.36667783200000004,29.492200056711834,0.021380000000000003,1.6505400240421295,2.30636586,0.37845700482527417,0.05691,0.3731980050603549,0.319936057,0.13036999851465225,0.040904026499999996,348.64697265624994,7.682995166126953,85.19379104865472,242.95466183204502,34.7458998542672,36.359660375946525,-0.19666151169882004,16.34030564626058,6.69635,25352.67854477578,0,1.0909502009550731,0.35202999999999995,2.9585896929105124,0.47021999999999997,0.22754100834329924,0.10294 +2044,6.948087871279821,0,0,0.24066990094137827,8.23513536837963,6.155539433161418,1.24776,39.52480983734131,8.25508,97.24580764770508,6.52505998,52.2595329284668,0.013819999999999999,14.336500406265259,0.0537265272,9.123361587524414,0.572559118,153.11573282877603,12.72476,388.7169189453125,0.11393999999999999,6.556613922119141,127.92514,0,540.6096852620443,4953.50618,2173.3405761718745,411.5344935723551,465.4019724527995,927.1108072071759,20.31390317281087,26.324896799999998,12.720799843470255,2.5643864,93.15207036336263,12.92658716,55.15129884084066,17.01294996,49.56809647878011,12.80754,41.22040208180746,6.34854,1.589570124944051,0.337615636,29.37089999516805,0.01904,1.5627400477727253,2.14139118,0.32346299787362415,0.05068,0.3470110048850377,0.29486663599999996,0.1238060003767411,0.037428842,349.3869756062825,7.722757238782891,85.76807432499021,242.56489658968044,34.15387883157177,36.15119121620603,-0.19640692142560812,16.606805483500164,6.7548,24548.959419777566,0,1.0355602006117504,0.32833999999999997,2.934469699859619,0.45386,0.22160100688536963,0.09881999999999999 +2045,6.718935287133535,0,0,0.22711172019190054,8.114370278433245,6.208809455235799,1.2441,38.29720973968506,7.788,97.68580691019694,6.501640200000001,51.67023245493571,0.01225,14.25860039393107,0.048394203000000004,9.127851565678915,0.552092995,150.6007334391276,12.205649999999999,384.7169240315755,0.09974999999999999,6.5631738503774,127.85815,0,541.4166920979818,4951.07355,2181.910522460937,411.7106601498525,466.81297302246094,924.8879774252341,19.60790268580119,24.964485,12.19789981842041,2.30544765,86.56255276997884,11.08604145,54.3482993443807,15.643752450000001,47.07375876108805,11.71855,40.91850217183431,5.8462000000000005,1.560330092906952,0.30855344,29.250399748484295,0.0167,1.478620042403539,1.9764165,0.27689000219106674,0.04445,0.32270800322294235,0.269797215,0.1175639983266592,0.0339536575,350.12897745768225,7.76251931143883,86.34235760132569,242.17513134731587,33.561857808876326,35.942722056465534,-0.19616667501186413,16.875505447387695,6.81325,23745.240294779353,0,0.9826311816771826,0.30465,2.909969707330068,0.4375,0.21577301000555357,0.0947 +2046,6.489782702987251,0,0,0.21355353944242284,7.993605188486861,6.261909405390422,1.24044,37.098209381103516,7.320920000000001,98.12430763244629,6.47822042,51.08713181813558,0.01068,14.18090025583903,0.0430618788,9.13150151570638,0.531626872,148.11273574829102,11.686539999999999,380.7549285888672,0.08556,6.569693843523662,127.79115999999999,0,542.220703125,4948.64092,2190.370524088541,411.88682672735,468.15897878011066,922.6651476432924,18.90720256169637,23.604073200000002,11.687999804814657,2.0465089,80.37673695882161,9.24549574,53.50829887390137,14.274554940000002,44.69180711110433,10.62956,40.58930238087972,5.343860000000001,1.5309800903002422,0.279491244,29.130499839782715,0.014360000000000001,1.3976800441741943,1.8114418200000002,0.23732900122801462,0.038220000000000004,0.30007799963156384,0.24472779399999997,0.11162299911181132,0.030478473,350.87297566731763,7.802281384094768,86.91664087766118,241.7853661049513,32.969836786180885,35.73425289672504,-0.195940772457588,17.146605491638184,6.8717,22941.52116978114,0,0.9320831795533498,0.28096,2.885129690170288,0.42114,0.2100560056666533,0.09058 +2047,6.2606301188409645,0,0,0.1999953586929451,7.872840098540476,6.314839482307434,1.23678,35.927809715270996,6.85384,98.56120681762695,6.45480064,50.51013215382894,0.009110000000000002,14.103400230407715,0.037729554600000006,9.134361664454142,0.5111607490000001,145.64974085489908,11.16743,376.8299280802409,0.07137,6.576173822085063,127.72417,0,543.0227101643881,4946.20829,2198.740559895833,412.0629933048475,469.4419759114583,920.4423178613507,18.21460262934367,22.2436614,11.192300001780191,1.7875701500000003,74.58692169189453,7.40495003,52.631998697916664,12.905357430000002,42.41394551595052,9.54057,40.23320198059082,4.841520000000001,1.501520077387492,0.25042904800000004,29.01130024592082,0.012020000000000003,1.3195000092188518,1.6464671400000002,0.20360099772612253,0.031990000000000005,0.27893200268348056,0.219658373,0.10596299916505814,0.0270032885,351.6199798583984,7.842043456750706,87.49092415399667,241.39560086258672,32.377815763485444,35.52578373698454,-0.19572921376277969,17.41990566253662,6.93015,22137.802044782926,0,0.8838401635487875,0.25727,2.859979728857676,0.40478000000000003,0.2044520042836666,0.08646000000000001 +2048,6.031477534694679,0,0,0.18643717794346737,7.752075008594091,6.36760938167572,1.23312,34.78620910644531,6.386760000000001,98.99640782674153,6.43138086,49.93933137257894,0.00754,14.026200215021769,0.0323972304,9.136451482772827,0.490694626,143.2127431233724,10.648319999999998,372.9429244995117,0.05717999999999998,6.582623680432637,127.65718,0,543.8217112223307,4943.77566,2207.0205078124995,412.239159882345,470.66197967529297,918.219488079409,17.532502333323162,20.8832496,10.711400032043457,1.5286314,69.1805051167806,5.5644043199999995,51.720499992370605,11.53615992,40.23217328389486,8.45158,39.85080178578695,4.33918,1.471950074036916,0.221366852,28.892799854278564,0.009680000000000001,1.2437000373999278,1.48149246,0.17473100001613298,0.025759999999999998,0.259101003408432,0.19458895199999995,0.10056599974632263,0.023528103999999994,352.3689753214518,7.881805529406645,88.06520743033217,241.00583562022214,31.785794740790003,35.31731457724404,-0.19553199892743928,17.695605436960857,6.9886,21334.08291978471,0,0.8378281543652216,0.23357999999999998,2.8345497449239097,0.38842,0.19896100709835687,0.08234 +2049,5.802324950548394,0,0,0.17287899719398964,7.631309918647706,6.420219381650289,1.22946,33.67300923665365,5.9196800000000005,99.43010838826497,6.407961080000001,49.37463092803955,0.005970000000000001,13.949100097020468,0.027064906200000002,9.137791474660238,0.470228503,140.80274709065756,10.129209999999999,369.09393310546875,0.04299,6.5890538692474365,127.59019,0,544.6197408040365,4941.34303,2215.220520019531,412.41532645984245,471.8199768066406,915.9966582974673,16.862802346547443,19.522837799999998,10.246000051498413,1.26969265,64.14209175109863,3.7238586100000006,50.7744992574056,10.16696241,38.13939126332601,7.362589999999999,39.44240156809489,3.8368400000000005,1.442260056734085,0.19230465600000002,28.775000254313152,0.007339999999999999,1.1699700057506561,1.31651778,0.14991599942247072,0.01953,0.24043800433476767,0.16951953099999997,0.0954155009239912,0.020052919499999995,353.120974222819,7.9215676020625825,88.63949070666764,240.61607037785757,31.193773718094565,35.108845417503545,-0.19534912795156667,17.973505814870197,7.0470500000000005,20530.363794786495,0,0.7939691593249639,0.20989,2.808869779109955,0.37206,0.19358200579881668,0.07822 +2050,5.573172366402109,0,0,0.1593208164445119,7.510544828701321,6.472669402758281,1.2258,32.58830897013346,5.4526,99.86220741271973,6.3845413,48.81583054860433,0.0044,13.872400204340616,0.021732582,9.138431390126547,0.44976238,138.42074712117514,9.6101,365.2809244791667,0.0288,6.595463395118713,127.5232,0,545.4156646728516,4938.9104,2223.3505452473955,412.59149303733994,472.91698455810547,913.7738285155256,16.20700216293335,18.162426,9.796299854914347,1.0107539,59.45387840270996,1.8833129,49.79499912261963,8.7977649,36.128698666890465,6.2736,39.0084015528361,3.3345,1.4124600489934285,0.16324246,28.657900015513103,0.005,1.0980000098546345,1.1515431,0.12847499921917915,0.0133,0.2228080021838347,0.14445011,0.09049479911724727,0.016577735,353.87497202555335,7.961329674718521,89.21377398300314,240.226305135493,30.601752695399124,34.90037625776305,-0.195180600835162,18.25380579630534,7.1055,19726.644669788282,0,0.752184142669042,0.1862,2.782959759235382,0.3557,0.1883150041103363,0.0741 +2051,5.370517506682445,0,0,0.08718894644897034,7.424306512496742,6.524959405263265,1.219,31.531809012095135,5.20103,100.2930081685384,6.3515116,48.26313018798828,0.00406,13.795900185902914,0.02018665606,9.138381322224935,0.435696317,136.0667495727539,9.27305,361.5049311319987,0.02641,6.601864616076152,127.39874,0,546.2128702799479,4935.47959,2231.420471191406,412.81481802434837,473.9519780476888,910.8375609488481,15.566401958465576,17.3846094,9.362610022226969,0.9380561430000001,55.097365061442055,1.712466056,48.78249931335449,8.7959191,34.19390296936035,6.24242,38.54930146535238,3.3357099999999997,1.3825300534566243,0.16114345700000002,28.54139995574951,0.00475,1.0275500118732452,1.15608497,0.10984999996920426,0.012639999999999998,0.20609500259160995,0.14372785899999999,0.08578929988046487,0.0163444187,354.6319783528645,8.004659826632302,89.56742939200048,239.37127481912944,30.21392939300718,34.71437036597867,-0.19508838728547595,18.536305745442707,7.14306,19306.211274618785,0,0.712395136555036,0.17577,2.756849765777588,0.34449,0.1831610066195329,0.07145 +2052,5.1678626469627815,0,0,0.01505707645342877,7.338068196292161,6.577009439468384,1.2122,30.50330877304077,4.94946,100.72100766499837,6.3184819,47.7163298924764,0.0037200000000000002,13.71970017751058,0.01864073012,9.137681325276693,0.42163025400000004,133.7397549947103,8.936,357.7659327189128,0.02402,6.605916062990825,127.27428,0,546.8436177571615,4932.04878,2239.340454101562,413.03814301135674,474.94597880045575,907.9012933821707,14.94120192527771,16.6067928,8.944680054982504,0.865358386,51.05095386505127,1.541619212,47.770599365234375,8.7940733,32.35795132319132,6.21124,38.082801818847656,3.3369199999999997,1.352930059035619,0.159044454,28.425599892934162,0.0045000000000000005,0.9618890186150869,1.16062684,0.09386240070064862,0.01198,0.1906480019291242,0.143005608,0.08131980026761691,0.0161111024,355.39097340901685,8.047989978546083,89.92108480099782,238.51624450276591,29.82610609061524,34.52836447419429,-0.19507248730250865,18.820705890655518,7.18062,18885.777879449288,0,0.674526130159696,0.16534,2.7305598060290017,0.33328,0.17811900501449904,0.0688 +2053,4.965207787243117,0.057074793542112784,0,0,7.2518298800875804,6.628759463628133,1.2054,29.502408504486084,4.69789,101.1480058034261,6.2854522,47.17542966206869,0.00338,13.643800179163614,0.01709480418,9.136351188023886,0.407564191,131.44175974527994,8.59895,354.0639343261719,0.02163,6.60688583056132,127.14982,0,547.247080485026,4928.617969999999,2247.0304768880205,413.2614679983651,475.91697947184247,904.9650258154932,14.331601858139038,15.8289762,8.542189995447794,0.7926606290000001,47.2935422261556,1.370772368,46.79130013783773,8.792227500000001,30.64211829503377,6.18006,37.62610117594401,3.33813,1.3240800499916077,0.156945451,28.310499986012776,0.00425,0.9039210180441538,1.16516871,0.0803624006609122,0.01132,0.17678100367387137,0.142283357,0.07710609957575798,0.0158777861,356.1539738972981,8.091320130459863,90.27474020999514,237.66121418640236,29.438282788223297,34.342358582409915,-0.19513290088626,19.106606006622314,7.21818,18465.344484279794,0,0.6385021259387335,0.15491,2.7041297952334085,0.32207,0.17318800588448843,0.06615 +2054,4.762552927523454,0.12920666353765436,0,0,7.165591563883001,6.680219451586406,1.1985999999999999,28.529008388519287,4.44632,101.57200813293457,6.2524225,46.640329360961914,0.00304,13.568300167719523,0.01554887824,9.134411017100016,0.393498128,129.17176055908203,8.261899999999999,350.39692942301434,0.01924,6.60688579082489,127.02536,0,547.5661773681641,4925.1871599999995,2254.5004679361973,413.48479298537353,476.8629837036133,902.0287582488157,13.738301515579224,15.0511596,8.155050039291382,0.719962872,43.807332038879395,1.199925524,45.84369945526123,8.790381700000001,29.038264592488606,6.14888,37.17910130818685,3.33934,1.2959600587685902,0.154846448,28.196099917093914,0.004,0.8527660171190897,1.16971058,0.06894260148207347,0.01066,0.16432599971691766,0.141561106,0.07313260063529015,0.0156444698,356.91897583007807,8.134650282373645,90.62839561899249,236.8061838700388,29.050459485831354,34.15635269062553,-0.19526962803673006,19.393905639648438,7.25574,18044.911089110297,0,0.604247123003006,0.14448,2.677559792995453,0.31086,0.16836600502332053,0.0635 +2055,4.55989806780379,0.20133853353319592,0,0,7.079353247678421,6.731379469235738,1.1918,27.58250840504964,4.19475,101.99400774637859,6.2193928,46.11102867126465,0.0027,13.493000189463297,0.0140029523,9.131881157557169,0.37943206500000004,126.93176396687825,7.924849999999999,346.76693471272785,0.01685,6.606555779774983,126.90090000000001,0,547.853261311849,4921.75635,2261.7604777018223,413.70811797238196,477.78397878011066,899.0924906821383,13.161901712417603,14.273343,7.783100008964539,0.6472651150000001,40.5746218363444,1.02907868,44.92659982045492,8.7885359,27.53870439529419,6.1177,36.74150149027506,3.34055,1.2685400446256,0.152747445,28.08240032196045,0.00375,0.8076460162798563,1.17425245,0.059272799330453076,0.01,0.15313700089852014,0.14083885499999999,0.06938500019411246,0.0154111535,357.6879781087239,8.177980434287425,90.98205102798983,235.95115355367528,28.66263618343941,33.97034679884115,-0.1954826687539188,19.68260622024536,7.2933,17624.4776939408,0,0.571691115697225,0.13405,2.650889794031779,0.29965,0.16365500539541245,0.06085 +2056,4.357243208084126,0.27347040352873747,0,0,6.9931149314738406,6.7822394371032715,1.185,26.662708282470703,3.94318,102.41300710042317,6.1863631,45.58752886454264,0.00236,13.418100198109945,0.01245702636,9.128801107406616,0.365366002,124.71976661682129,7.5878,343.1729329427083,0.01446,6.606075684229533,126.77644,0,548.1232757568359,4918.32554,2268.850463867187,413.9314429593903,478.67698669433594,896.1562231154609,12.602901458740234,13.4955264,7.426090041796367,0.5745673580000001,37.57861296335856,0.8582318360000001,44.0389986038208,8.7866901,26.13653326034546,6.08652,36.31310176849365,3.34176,1.2418200472990673,0.15064844200000002,27.969300111134846,0.0035,0.76787302394708,1.17879432,0.05107160067806641,0.009340000000000001,0.1430790014564991,0.140116604,0.06584969970087211,0.0151778372,358.4599736531575,8.221310586201206,91.33570643698717,235.09612323731173,28.27481288104747,33.78434090705677,-0.19577202303782626,19.972805976867676,7.3308599999999995,17204.044298771303,0,0.5407611032327017,0.12362000000000001,2.624129831790924,0.28844000000000003,0.15905100479722023,0.0582 +2057,4.154588348364462,0.34560227352427897,0,0,6.90687661526926,6.832799394925435,1.1782,25.769108136494953,3.6916100000000003,102.8310063680013,6.1533334,45.069728215535484,0.00202,13.343500216801962,0.01091110042,9.125170946121216,0.351299939,122.53676986694336,7.25075,339.6129379272461,0.012070000000000001,6.605515638987224,126.65198,0,548.3852945963541,4914.89473,2275.7604370117183,414.1547679463987,479.54398345947266,893.2199555487834,12.061501423517862,12.7177098,7.083740035692851,0.5018696010000001,34.80300490061442,0.6873849920000001,43.17989953358968,8.7848443,24.82495403289795,6.05534,35.893801053365074,3.3429699999999998,1.2157500783602397,0.148549439,27.856799920399983,0.0032500000000000003,0.7328380147616068,1.18333619,0.04409770015627146,0.00868,0.13403700043757757,0.139394353,0.06251399995138247,0.014944520900000001,359.2349751790364,8.264640738114986,91.68936184598451,234.24109292094818,27.886989578655527,33.5983350152724,-0.19613769088845232,20.264405727386475,7.3684199999999995,16783.61090360181,0,0.5113870973388354,0.11319000000000001,2.597299794356028,0.27723000000000003,0.15455400322874388,0.05555 +2058,3.9519334886447983,0.41773414351982063,0,0,6.82063829906468,6.88305942217509,1.1714,24.901307900746662,3.44004,103.2460085550944,6.1203037,44.55742804209391,0.00168,13.26930014292399,0.009365174479999998,9.121031125386557,0.337233876,120.38277371724446,6.9137,336.0889383951823,0.009680000000000001,6.604885578155518,126.52752,0,548.6413116455078,4911.463919999999,2282.5104573567705,414.3780929334071,480.3819859822591,890.2836879821059,11.538001298904419,11.9398932,6.755710005760193,0.42917184399999997,32.23239707946777,0.516538148,42.34829966227213,8.7829985,23.59786621729533,6.02416,35.483201026916504,3.34418,1.1903400619824727,0.14645043600000002,27.745099862416584,0.003,0.702003022034963,1.18787806,0.03815990034490824,0.00802,0.12590500277777514,0.138672102,0.05936589961250623,0.0147112046,360.0129725138346,8.307970890028766,92.04301725498183,233.38606260458462,27.499166276263583,33.412329123488014,-0.19657967230579712,20.557406266530354,7.40598,16363.17750843231,0,0.4835020949443181,0.10275999999999999,2.5704198082288108,0.26602000000000003,0.15016300479571024,0.0529 +2059,3.7492786289251345,0.4898660135153622,0,0,6.734399982860101,6.9330293734868365,1.1645999999999999,24.058807690938313,3.18847,103.6590067545573,6.087274,44.05082734425863,0.00134,13.19539999961853,0.007819248539999999,9.11638100941976,0.32316781299999997,118.25877634684245,6.57665,332.59993743896484,0.007290000000000001,6.604215502738953,126.40306,0,548.8923288981119,4908.033109999999,2289.120422363281,414.60141792041554,481.19098409016925,887.3474204154285,11.032401323318481,11.162076599999999,6.441629926363627,0.35647408700000005,29.852389653523762,0.34569130400000003,41.543399492899574,8.7811527,22.449671268463135,5.99298,35.08130137125651,3.34539,1.165550063053767,0.144351433,27.63390016555786,0.00275,0.6748920232057571,1.19241993,0.03309220060085257,0.00736,0.11858600067595641,0.137949851,0.05639429918179909,0.0144778883,360.79297383626295,8.351301041942548,92.39667266397917,232.5310322882211,27.111342973871643,33.22632323170363,-0.19709796728986065,20.851905981699627,7.44354,15942.744113262816,0,0.45703908801078796,0.09233,2.5434998075167337,0.25481,0.1458770049115022,0.05025 +2060,3.5466237692054707,0.5619978835109037,0,0,6.64816166665552,6.982689380645752,1.1578,23.241207281748455,2.9369,104.06900787353516,6.0542443,43.54972775777181,0.001,13.12180002530416,0.0062733226,9.111260890960693,0.30910175,116.162779490153,6.2396,329.1459376017253,0.0049,6.603495438893636,126.2786,0,549.1383412679037,4904.6023,2295.59043375651,414.8247429074239,481.97198486328125,884.411152848751,10.544601202011108,10.38426,6.141109983126323,0.28377633,27.649283091227215,0.17484446,40.76419925689697,8.7793069,21.37506914138794,5.9618,34.68790086110433,3.3466,1.1413600345452626,0.14225243,27.52340014775594,0.0025,0.6510860224564871,1.1969618,0.028750500020881493,0.0067,0.11199500163396199,0.1372276,0.053588700480759144,0.014244572,361.5769704182942,8.394631193856329,92.75032807297652,231.67600197185754,26.7235196714797,33.040317339919255,-0.1976925758406428,21.14780616760254,7.4811,15522.310718093318,0,0.43193408101797104,0.0819,2.5165698329607644,0.2436,0.14169400309522948,0.0476 +2061,3.3452376307638647,0.6487667908477796,0,0,6.602461245626373,7.03205935160319,1.1522,22.448007265726726,2.80139,104.47800763448079,6.0321745,43.054127057393394,9.2e-4,13.048600196838379,0.0058252281299999995,9.105690797170004,0.299431331,114.09678204854329,6.02076,325.72593688964844,0.00449,6.602765242258708,126.17611,0,549.38330078125,4902.309899999999,2301.9503987630205,414.70388314206247,482.7219823201497,886.0396274246546,10.074401140213013,9.939558329999999,5.853729963302612,0.2633617666,25.610076904296875,0.1589853287,40.00999959309896,8.7568954,20.3690603574117,5.937250000000001,34.302601178487144,3.34352,1.1177700559298198,0.14030935300000003,27.413599967956543,0.00237,0.6302110155423483,1.19820246,0.02502429997548461,0.00635,0.1060570018986861,0.136662361,0.05093929978708426,0.014060375,362.3639780680338,8.440614853328219,93.10187025039903,231.4865694795643,26.439124055468234,33.083764503438395,-0.1983789745061452,21.44520616531372,7.524419999999999,15266.212516530479,0,0.4081270818909009,0.07732,2.4896398385365806,0.23592000000000002,0.13761300469438234,0.0459 +2062,3.1438514923222582,0.7355356981846554,0,0,6.556760824597227,7.081159432729085,1.1465999999999998,21.67860730489095,2.66588,104.88400650024414,6.010104699999999,42.563926696777344,8.4e-4,12.975800037384033,0.00537713366,9.099670807520548,0.289760912,112.05978457132976,5.80192,322.33993275960285,0.00408,6.602304935455322,126.07361999999999,0,549.6571858723959,4900.0175,2308.120381673177,414.583023376701,483.4469858805339,887.668102000558,9.621791044871012,9.49485666,5.579049984614055,0.24294720320000002,23.722771326700848,0.1431261974,39.27919960021973,8.7344839,19.42724593480428,5.9127,33.92530155181885,3.34044,1.094750036795934,0.138366276,27.3042999903361,0.00224,0.6118660221497217,1.19944312,0.02183120030288895,0.006,0.10070700198411942,0.13609712200000001,0.04843729982773463,0.013876178000000001,363.1539688110351,8.486598512800107,93.45341242782156,231.29713698727107,26.15472843945677,33.127211666957535,-0.19915716328636773,21.74410597483317,7.56774,15010.114314967637,0,0.3855590770641963,0.07274,2.4627198378245034,0.22824,0.1336320030192534,0.0442 +2063,2.9424653538806522,0.8223046055215311,0,0,6.51106040356808,7.130009412765503,1.141,20.9327073097229,2.53037,105.28900655110677,5.9880349,42.0791269938151,7.6e-4,12.903300126393637,0.00492903919,9.093220869700113,0.280090493,110.05179023742676,5.58308,318.9879328409831,0.00367,6.602184891700745,125.97113,0,549.9691111246744,4897.7251,2314.060384114583,414.4621636113396,484.1469904581706,889.2965765764615,9.18631100654602,9.05015499,5.316629966100057,0.22253263980000001,21.976165771484375,0.1272670661,38.5705992380778,8.7120724,18.54542589187622,5.88815,33.55550161997477,3.33736,1.072280039389928,0.136423199,27.19569985071818,0.00211,0.5956940253575643,1.2006837799999999,0.01910229989637931,0.0056500000000000005,0.09588740207254887,0.135531883,0.046074300073087215,0.013691981,363.9479726155598,8.532582172271997,93.80495460524409,231.1077044949778,25.8703328234453,33.17065883047668,-0.20002714218131049,22.044706026713055,7.61106,14754.016113404798,0,0.36417107035716373,0.06816,2.4358298579851785,0.22056,0.12975100303689638,0.0425 +2064,2.741079215439046,0.909073512858407,0,0,6.465359982538933,7.178609490394592,1.1354,20.209606806437176,2.39486,105.69300651550293,5.965965099999999,41.59972635904948,6.8e-4,12.831200122833252,0.0044809447199999995,9.086370706558228,0.270420074,108.07379213968913,5.36424,315.66894276936847,0.00326,6.6021348635355634,125.86864,0,550.2901153564453,4895.432699999999,2319.790405273437,414.34130384597813,484.82398986816406,890.9250511523649,8.767680883407593,8.605453319999999,5.066029946009318,0.2021180764,20.359760761260986,0.1114079348,37.883499463399254,8.6896609,17.719600359598797,5.8636,33.193100929260254,3.33428,1.0503600339094799,0.134480122,27.08769941329956,0.00198,0.5814510136842728,1.20192444,0.016763900096217792,0.0053,0.09154210115472476,0.134966644,0.04384229922046264,0.013507784,364.74497731526685,8.578565831743887,94.15649678266661,230.91827200268457,25.585937207433833,33.21410599399582,-0.2009889111909733,22.346906185150146,7.65438,14497.917911841958,0,0.3439060648282369,0.06358,2.408979833126068,0.21288,0.12596600378553072,0.0408 +2065,2.53969307699744,0.9958424201952827,0,0,6.419659561509786,7.226969480514526,1.1298,19.50900681813558,2.25935,106.09500503540039,5.943895299999999,41.125526110331215,6.000000000000001e-4,12.759399970372518,0.00403285025,9.07913080851237,0.260749655,106.12379519144694,5.1454,312.3839365641276,0.00285,6.602064808209737,125.76615,0,550.6121114095052,4893.140299999999,2325.3103434244786,414.2204440806167,485.47499084472656,892.5535257282684,8.365570942560831,8.16075165,4.826810002326965,0.181703513,18.863756497701008,0.0955488035,37.21709950764974,8.6672494,16.946069558461506,5.83905,32.83790111541748,3.3312,1.0289700428644817,0.13253704500000002,26.980300108591717,0.00185,0.5689200162887573,1.2031651,0.01475439996769031,0.00495,0.08762460139890511,0.134401405,0.04173350054770708,0.013323587000000001,365.54497528076166,8.624549491215777,94.50803896008912,230.72883951039134,25.301541591422367,33.25755315751496,-0.2020424703153564,22.650806268056233,7.697699999999999,14241.819710279116,0,0.3247120628754298,0.059,2.3821898897488913,0.2052,0.1222780030220747,0.0391 +2066,2.338306938555834,1.0826113275321585,0,0,6.373959140480639,7.2750794887542725,1.1241999999999999,18.830206712086994,2.12384,106.49500719706218,5.9218255,40.65662542978922,5.200000000000001e-4,12.687999963760376,0.00358475578,9.071510712305704,0.25107923600000004,104.20379892985027,4.92656,309.1319402058919,0.0024400000000000003,6.601974805196126,125.66366,0,550.9321339925131,4890.8479,2330.6503702799473,414.09958431525524,486.09998830159503,894.1820003041719,7.979610761006673,7.716049979999999,4.598530054092407,0.1612889496,17.479352474212646,0.0796896722,36.5707000096639,8.6448379,16.221434831619263,5.814500000000001,32.48980108896891,3.3281199999999997,1.0080800453821819,0.130593968,26.873600006103516,0.00172,0.5579100201527277,1.20440576,0.013021800123775998,0.0046,0.08408890167872111,0.133836166,0.03974069965382417,0.01313939,366.3489735921223,8.670533150687666,94.85958113751165,230.5394070180981,25.0171459754109,33.3010003210341,-0.20318781955445964,22.956406434377033,7.74102,13985.721508716277,0,0.30653706441322964,0.054419999999999996,2.355469842751821,0.19752,0.11868300288915634,0.0374 +2067,2.136920800114228,1.1693802348690343,0,0,6.328258719451492,7.322949449221293,1.1185999999999998,18.17280626296997,1.9883300000000002,106.89400672912598,5.899755699999999,40.192925453186035,4.4000000000000007e-4,12.616999944051107,0.0031366613100000003,9.06354053815206,0.241408817,102.31180063883464,4.70772,305.9119415283203,0.0020300000000000006,6.601834694544475,125.56116999999999,0,551.2491251627604,4888.5554999999995,2335.820373535156,413.9787245498938,486.69899495442706,895.8104748800753,7.609390775362651,7.27134831,4.380770007769267,0.1408743862,16.198148250579834,0.06383054090000001,35.94379870096842,8.6224264,15.54239551226298,5.78995,32.148601373036705,3.32504,0.9876900513966879,0.128650891,26.76740010579427,0.00159,0.5482520163059235,1.2056464199999999,0.011522499999652306,0.00425,0.08089600255091985,0.133270927,0.03785699916382631,0.012955193,367.15597788492835,8.716516810159556,95.21112331493418,230.34997452580487,24.732750359399436,33.34444748455324,-0.20442495890828305,23.26370636622111,7.78434,13729.623307153437,0,0.2893330579002698,0.04984,2.3288198908170066,0.18984,0.11518100276589394,0.0357 +2068,1.9355346616726217,1.2561491422059103,0,0,6.282558298422345,7.370569467544556,1.113,17.536206086476643,1.8528200000000001,107.29200744628906,5.8776858999999995,39.73432572682699,3.5999999999999997e-4,12.546300093332926,0.00268856684,9.055230617523193,0.231738398,100.44880358378093,4.48888,302.7249399820964,0.00162,6.601674675941467,125.45868,0,551.5631256103516,4886.263099999999,2340.8303019205723,413.85786478453235,487.2719904581706,897.4389494559788,7.25450074672699,6.82664664,4.173089981079102,0.1204598228,15.01234475771586,0.04797140959999999,35.33559926350912,8.6000149,14.905952215194702,5.7654000000000005,31.814101219177246,3.32196,0.9677810370922089,0.126707814,26.661799907684326,0.00146,0.5397950261831284,1.20688708,0.010219700013597807,0.0039,0.0780106025437514,0.132705688,0.036076199263334274,0.012770996,367.9669799804687,8.762500469631446,95.5626654923567,230.1605420335116,24.448354743387966,33.38789464807239,-0.20575388837682665,23.572606404622395,7.82766,13473.525105590597,0,0.27305105328559875,0.04526,2.302259862422943,0.18216,0.11177000279227893,0.034 +2069,1.7341485232310156,1.342918049542786,0,0,6.236857877393199,7.417939464251201,1.1074,16.91990582148234,1.7173100000000001,107.68800608317058,5.855616099999999,39.28082466125488,2.8e-4,12.47599999109904,0.0022404723699999997,9.04658063252767,0.22206797900000003,98.6138064066569,4.27004,299.5699412027995,0.0012100000000000001,6.601484576861064,125.35619,0,551.8741404215494,4883.9707,2345.700317382812,413.7370050191709,487.8169937133789,899.0674240318822,6.9144907395044966,6.381944969999999,3.975089967250824,0.1000452594,13.914741357167562,0.03211227829999999,34.74549929300944,8.577603400000001,14.30930503209432,5.74085,31.48630126317342,3.31888,0.9483390400807062,0.124764737,26.55679988861084,0.0013299999999999998,0.5324060171842575,1.2081277400000001,0.009082520147785544,0.00355,0.07540140238900979,0.132140449,0.034392199789484344,0.012586799000000001,368.7809727986653,8.808484129103334,95.91420766977922,229.97110954121837,24.1639591273765,33.43134181159153,-0.20717460796009046,23.883206685384113,7.870979999999999,13217.426904027756,0,0.2576460540294647,0.04068,2.275799890359243,0.17448,0.1084470022469759,0.032299999999999995 +2070,1.5327623847894096,1.4296869568796617,0,0,6.191157456364052,7.465059399604797,1.1018,16.323405742645264,1.5818,108.08300654093425,5.833546299999999,38.832424799601235,2e-4,12.405999819437662,0.0017923779,9.037610610326132,0.21239756,96.80751037597656,4.0512,296.44793701171875,8e-4,6.601274490356445,125.2537,0,552.18414306640625,4881.6783,2350.440307617187,413.61614525380946,488.33399200439453,900.6958986077857,6.588930646578471,5.9372433,3.7863600055376687,0.079630696,12.89883828163147,0.016253147,34.1729990641276,8.5551919,13.749754587809244,5.7163,31.16490125656128,3.3158,0.9293510367472967,0.12282166,26.45240004857381,0.0012,0.5259670168161392,1.2093684,0.008084949959690372,0.0032,0.07304220149914424,0.13157521,0.0327994991093874,0.012402602,369.5979741414387,8.854467788575224,96.26574984720175,229.78167704892513,23.879563511365035,33.47478897511067,-0.2086871176580744,24.195506413777668,7.9143,12961.328702464916,0,0.24307304869095483,0.0361,2.249449888865153,0.1668,0.10521300323307514,0.0306 +2071,1.3210456688390586,1.4465295867919583,0,0,6.134752920085342,7.511939366658528,1.0966,15.746205647786459,1.50882,108.47600682576497,5.825166379999999,38.38902441660563,1.8e-4,12.336399873097738,0.001657949557,9.028340498606363,0.205751345,95.02931340535481,3.9091199999999997,293.35694122314453,7.300000000000001e-4,6.6010446945826216,125.15852,0,552.4921569824219,4880.80787,2355.0602823893223,412.8135951016803,488.8240000406901,895.1034337962622,6.277360717455546,5.6829841299999995,3.6064900159835815,0.0739077507,11.95843537648519,0.014775588179999999,33.617499351501465,8.51588246,13.225101073582968,5.70134,30.84990119934082,3.3039099999999997,0.9108030448357264,0.121238412,26.348600069681805,0.00113,0.5203730165958405,1.20753439,0.007205070035221676,0.00301,0.07090550226469834,0.131229786,0.03129259978110591,0.0122798039,370.41897583007807,8.899211828272351,96.55284901716716,228.54031146759277,23.568271747799905,33.37335302456285,-0.2102174433822461,24.509406248728435,7.95795,12763.734462489756,0,0.2292920450369517,0.03408,2.2232098976771035,0.16155,0.10206400230526924,0.029509999999999998 +2072,1.1093289528887076,1.4633722167042547,0,0,6.078348383806632,7.558589537938436,1.0914,15.18780549367269,1.43584,108.86800638834636,5.816786459999999,37.95052401224772,1.6e-4,12.267199993133545,0.001523521214,9.01878046989441,0.19910513000000002,93.27911631266277,3.7670399999999997,290.2969436645508,6.6e-4,6.60039484500885,125.06334,0,552.7971649169922,4879.93744,2359.400248209635,412.0110449495511,489.2669982910156,889.5109689847386,5.979190627733867,5.428724959999999,3.435069998105367,0.06818480539999999,11.087632894515991,0.01329802936,33.07779916127523,8.47657302,12.732944250106812,5.686380000000001,30.540601412455242,3.29202,0.8926840474208196,0.119655164,26.24530013402303,0.00106,0.5154510090748469,1.2057003800000001,0.006434700063740213,0.00282,0.06897090251247089,0.130884362,0.029866999791314203,0.0121570058,371.24297332763666,8.94395586796948,96.83994818713258,227.29894588626044,23.25697998423477,33.27191707401503,-0.2117655851326056,24.82500648498535,8.0016,12566.140222514596,0,0.21626104538639387,0.03206,2.1970999042193093,0.1563,0.09900040179491043,0.028419999999999997 +2073,0.8976122369383565,1.4802148466165512,0,0,6.021943847527922,7.604999423027039,1.0861999999999998,14.64770539601644,1.36286,109.25900650024414,5.80840654,37.51692422231039,1.4000000000000001e-4,12.198400020599365,0.0013890928710000002,9.008940617243448,0.192458915,91.55661964416504,3.6249599999999997,287.2679392496745,5.9e-4,6.599174737930298,124.96816,0,553.0931955973307,4879.06701,2363.3202514648433,411.20849479742196,489.64599863688153,883.9185041732151,5.693840543429057,5.17446579,3.2716899712880454,0.0624618601,10.281030495961508,0.01182047054,32.55269972483317,8.43726358,12.27118468284607,5.67142,30.23660151163737,3.2801299999999998,0.8749810407559077,0.118071916,26.142599900563557,9.9e-4,0.5110470155874888,1.20386637,0.005761780038786431,0.00263,0.06722210099299748,0.130538938,0.02851819961021344,0.0120342077,372.06997172037757,8.988699907666607,97.127047357098,226.05758030492808,22.945688220669638,33.17048112346721,-0.2133315429091528,25.142306645711262,8.04525,12368.545982539435,0,0.203943041463693,0.03004,2.171129882335663,0.15105000000000002,0.09601870241264503,0.02733 +2074,0.6858955209880053,1.4970574765288476,0,0,5.965539311249212,7.651189525922139,1.081,14.125405152638754,1.2898800000000001,109.6500072479248,5.80002662,37.088123639424644,1.2e-4,12.129899978637695,0.001254664528,8.998830556869507,0.1858127,89.86172231038411,3.4828799999999998,284.2699483235677,5.200000000000001e-4,6.597714742024739,124.87298,0,553.3812154134115,4878.19658,2366.860209147135,410.4059446452928,489.96300252278644,878.3260393616915,5.420900543530782,4.92020662,3.1159799893697104,0.0567389148,9.533838113149008,0.01034291172,32.041699727376304,8.39795414,11.838022708892822,5.65646,29.93760124842326,3.26824,0.8576830377181371,0.116488668,26.040300051371258,9.199999999999999e-4,0.5071030209461848,1.20203236,0.005171170070146521,0.00244,0.06563840247690678,0.130193514,0.027241899942358334,0.0119114096,372.89897155761713,9.033443947363736,97.41414652706341,224.81621472359575,22.634396457104508,33.06904517291939,-0.21491531671188774,25.46130673090617,8.088899999999999,12170.951742564275,0,0.1923020395139853,0.02802,2.145289897918701,0.14579999999999999,0.09311760154863198,0.02624 +2075,0.4741788050376543,1.5139001064411441,0,0,5.909134774970502,7.697139541308085,1.0758,13.620405038197836,1.2169,110.04000663757324,5.791646699999999,36.6642230351766,1e-4,12.061700026194254,0.001120236185,8.988460381825766,0.179166485,88.19402567545573,3.3407999999999998,281.3029479980469,4.5000000000000004e-4,6.596124728520711,124.7778,0,553.6592559814453,4877.32615,2370.0302327473955,409.6033944931636,490.21799723307294,872.733574550168,5.15993054707845,4.66594745,2.9676100413004556,0.0510159695,8.841586192448935,0.0088653529,31.544299761454266,8.3586447,11.431458075841268,5.641500000000001,29.643601258595783,3.25635,0.840778037905693,0.11490542000000001,25.938599904378254,8.5e-4,0.5035670250654221,1.20019835,0.004655420042884846,0.0022500000000000003,0.06420290097594261,0.12984809,0.026033799940099318,0.0117886115,373.7319717407226,9.078187987060863,97.70124569702881,223.5748491422634,22.323104693539378,32.96760922237157,-0.2165169065408105,25.781906445821125,8.13255,11973.357502589115,0,0.18130203584829965,0.026000000000000002,2.1196099321047464,0.14055,0.09029530175030231,0.02515 +2076,0.2624620890873033,1.5307427363534407,0,0,5.852730238691793,7.74286949634552,1.0706,13.13220485051473,1.14392,110.43000729878743,5.78326678,36.245022455851235,8e-5,11.99399995803833,9.85807842e-4,8.977850437164307,0.17252027,86.55342801411946,3.19872,278.3659439086914,3.800000000000001e-4,6.594444712003072,124.68262,0,553.9292653401693,4876.45572,2372.870178222656,408.8008443410344,490.41299692789715,867.1411097386444,4.910520434379578,4.41168828,2.8262400031089783,0.045293024200000004,8.200204253196716,0.007387794080000001,31.060199578603108,8.31933526,11.049891630808512,5.62654,29.35440142949422,3.2444599999999997,0.8242540409167608,0.113322172,25.83740011850993,7.8e-4,0.5003940165042877,1.1983643400000001,0.0042029300626988215,0.00206,0.06290280011792977,0.129502666,0.024890199924508732,0.011665813399999999,374.5679728190104,9.12293202675799,97.98834486699423,222.33348356093103,22.011812929974244,32.866173271823754,-0.21813631239592102,26.10430637995402,8.1762,11775.763262613953,0,0.17091003308693567,0.02398,2.094079911708832,0.1353,0.08755000246067841,0.024059999999999998 +2077,0.050745373136952265,1.547585366265737,0,0,5.796325702413083,7.788369536399841,1.0654,12.660404761632284,1.07094,110.8190066019694,5.7748868600000005,35.830522219340004,6.000000000000002e-5,11.926600058873495,8.513794990000002e-4,8.967000563939413,0.165874055,84.93973096211751,3.05664,275.45995076497394,3.1000000000000005e-4,6.592694640159607,124.58744,0,554.1932830810547,4875.58529,2375.4001464843745,407.9982941889052,490.54600016276044,861.5486449271209,4.672260483105977,4.157429110000001,2.691569983959198,0.03957007890000001,7.605912486712138,0.0059102352600000005,30.588799476623535,8.28002582,10.691622495651245,5.61158,29.070001284281414,3.23257,0.8081020365158716,0.111738924,25.7367000579834,7.1e-4,0.49754202117522556,1.19653033,0.003798660026707997,0.0018700000000000001,0.06172240152955055,0.129157242,0.023807399906218052,0.011543015299999999,375.4069747924804,9.167676066455119,98.27544403695964,221.0921179795987,21.70052116640911,32.76473732127593,-0.21977353427721924,26.42820692062378,8.21985,11578.169022638793,0,0.16109303509195647,0.02196,2.068709909915924,0.13005,0.08488140193124612,0.022969999999999997 +2078,0,1.5644279961780336,0.16097134281339898,0,5.739921166134373,7.83363954226176,1.0602,12.204404592514038,0.99796,111.20700772603352,5.76650694,35.42062218983968,3.9999999999999996e-05,11.859600146611532,7.16951156e-4,8.955910444259644,0.15922783999999998,83.3525333404541,2.91456,272.5829442342122,2.3999999999999998e-4,6.59089457988739,124.49226,0,554.4522959391276,4874.71486,2377.6501871744786,407.1957440367761,490.62000274658203,855.9561801155974,4.444730440775554,3.90316994,2.5633000135421753,0.033847133599999996,7.055210789044698,0.00443267644,30.129899501800537,8.24071638,10.355251789093018,5.59662,28.79030132293701,3.2206799999999998,0.7923110375801722,0.11015567600000001,25.636499722798664,6.399999999999999e-4,0.49497701972723007,1.19469632,0.0034351300176543496,0.0016799999999999999,0.060649702015022434,0.128811818,0.022781799857815106,0.011420217199999999,376.24797566731763,9.212420106152246,98.56254320692506,219.85075239826634,21.38922940284398,32.663301370728114,-0.2214285721847053,26.75390640894572,8.2635,11380.574782663633,0,0.151822030544281,0.01994,2.043509920438131,0.1248,0.08228760212659836,0.021879999999999997 +2079,0,1.58127062609033,0.37268805876375,0,5.683516629855663,7.878679553667705,1.0550000000000002,11.76380451520284,0.92498,111.59500630696614,5.75812702,35.015421867370605,1.9999999999999998e-5,11.792900085449219,5.82522813e-4,8.944610436757406,0.152581625,81.79163614908855,2.77248,269.7349497477214,1.7e-4,6.589054505030314,124.39708,0,554.7073109944662,4873.84443,2379.630147298177,406.3931938846469,490.63499959309894,850.3637153040738,4.227540413538615,3.64891077,2.441119968891144,0.0281241883,6.544869303703308,0.0029551176199999994,29.682899634043377,8.20140694,10.039278666178385,5.58166,28.515101114908855,3.20879,0.7768720388412476,0.108572428,25.53670008977254,5.7e-4,0.49266501764456433,1.1928623100000002,0.003106050018686801,0.00149,0.05967580216626326,0.128466394,0.02181029987211029,0.011297419099999999,377.0929743448893,9.257164145849375,98.84964237689047,218.609386816934,21.07793763927885,32.56186542018029,-0.22310142611837908,27.08130677541097,8.30715,11182.980542688472,0,0.14306902885437012,0.017920000000000002,2.0184799234072366,0.11954999999999999,0.0797661015142997,0.020789999999999996 +2080,0,1.5981132560026265,0.5844047747141011,0,5.627112093576953,7.923489491144816,1.0498,11.338204304377237,0.852,111.98300679524739,5.7497471000000004,34.61482175191244,0,11.726600090662638,4.4809447e-4,8.933110475540161,0.14593541,80.25673866271973,2.6304,266.91695404052734,1e-4,6.587184508641561,124.3019,0,554.95831298828125,4872.974,2381.370137532552,405.5906437325177,490.59100341796875,844.7712504925503,4.020280381043752,3.3946516000000004,2.3247599999109902,0.022401243,6.071897904078166,0.0014775588,29.247599442799885,8.1620975,9.742494265238443,5.5667,28.244301319122314,3.1969,0.7617730349302292,0.10698918,25.437500317891438,5e-4,0.4905810207128525,1.1910283000000002,0.0028060800201880434,0.0013,0.05879100194821755,0.12812097,0.020889900003870327,0.011174621,377.9399744669596,9.301908185546502,99.13674154685589,217.36802123560165,20.766645875713717,32.46042946963247,-0.22479209607824066,27.410306930541992,8.3508,10985.386302713312,0,0.13480502739548683,0.0159,1.993629922469457,0.1143,0.07731540190676849,0.0197 +2081,0,1.5388692202762448,0.7891585198226514,0,5.526632366440436,7.968069513638814,1.0503500000000001,10.927104234695435,0.81269,112.37000528971355,5.750377090000001,34.21872170766195,0,11.660600026448568,4.25689747e-4,8.921410401662191,0.141363939,78.74774169921875,2.53814,264.1279525756836,9e-5,6.5852740208307905,124.31197,0,555.2063852945963,4873.0394400000005,2382.8800862630205,404.0591186229159,490.48800404866535,827.249239010799,3.822580357392629,3.2492708500000003,2.213949998219808,0.020790642680000002,5.633516589800517,0.0013462202399999999,28.82349952061971,8.16403856,9.463648160298666,5.59142,27.97800127665202,3.19739,0.7470070372025172,0.10631749900000001,25.338799794514973,4.8e-4,0.48869702219963074,1.19514943,0.0025307300578181944,0.00125,0.05798430213083824,0.128696676,0.020017599842200678,0.011137781599999999,378.7899780273437,9.331011725384746,99.11150114853214,214.1385084430401,20.413301434573544,31.892543053788597,-0.2264200976631577,27.74100653330485,8.38727,10860.805137430922,0,0.12700602660576502,0.01501,1.9689599176247914,0.11069999999999999,0.07493400014936924,0.01899 +2082,0,1.4796251845498631,0.9939122649312018,0,5.42615263930392,8.01254959901174,1.0509,10.530104080835978,0.77338,112.75600687662761,5.75100708,33.8271214167277,0,11.59499994913737,4.03285024e-4,8.909520308176676,0.136792468,77.26414426167806,2.44588,261.36795298258465,8e-5,6.58431347211202,124.32204,0,555.3876800537109,4873.10488,2383.980061848958,402.5275935133141,490.3100001017253,809.7272275290477,3.6339003642400107,3.1038901000000005,2.1083799799283347,0.01918004236,5.227005362510681,0.00121488168,28.4108993212382,8.16597962,9.202442328135172,5.61614,27.716101328531902,3.19788,0.7325720340013504,0.105645818,25.24050013224284,4.6e-4,0.4870930189887683,1.1992705600000002,0.0022865900148948035,0.0012,0.057263302306334175,0.129272382,0.019191199603180092,0.0111009422,379.641975402832,9.360115265222989,99.0862607502084,210.9089956504786,20.05995699343337,31.324656637944717,-0.22798543087313036,28.073206742604572,8.42374,10736.223972148531,0,0.11964502433935802,0.01412,1.9444899260997772,0.1071,0.07261940153936546,0.018279999999999998 +2083,0,1.4203811488234817,1.198666010039752,0,5.325672912167404,8.05704951286316,1.05145,10.146803855895996,0.73407,113.14300600687663,5.75163707,33.43992074330648,0,11.529799858729044,3.80880301e-4,8.89745044708252,0.13222099699999998,75.80574607849121,2.35362,258.63595326741535,7.000000000000001e-5,6.584573586781819,124.33211,0,555.4768778483073,4873.17032,2384.4900309244786,400.99606840371234,490.0450032552083,792.2052160472965,3.453760345776876,2.9585093500000004,2.00776998202006,0.01756944204,4.849844336509705,0.00108354312,28.010099411010742,8.16792068,8.958605686823526,5.64086,27.458901246388752,3.1983699999999997,0.7184650301933289,0.104974137,25.142500082651775,4.4e-4,0.48583701997995377,1.2033916900000001,0.002074009991095712,0.00115,0.05663480175038179,0.129848088,0.01840879985441764,0.0110641028,380.4929758707682,9.389218805061233,99.06102035188465,207.67948285791707,19.7066125522932,30.75677022210084,-0.2294880957081585,28.406906763712566,8.46021,10611.642806866143,0,0.11270002275705338,0.01323,1.9201999406019847,0.1035,0.07037040156622727,0.01757 +2084,0,1.3611371130971,1.4034197551483023,0,5.2251931850308875,8.101569414138794,1.052,9.77665376663208,0.6947599999999999,113.52900632222493,5.75226706,33.05712095896403,0,11.464999993642172,3.58475578e-4,8.885200182596842,0.12764952599999999,74.37214914957683,2.26136,255.93295033772787,6e-5,6.585113684336345,124.34218,0,555.52294921875,4873.23576,2384.440002441406,399.4645432941105,489.69200388590497,774.6832045655452,3.281820317109426,2.8131286,1.9118800063927968,0.01595884172,4.499903241793315,9.522045599999999e-4,27.620799382527668,8.16986174,8.7310471534729,5.66558,27.206201394399006,3.19886,0.704678033788999,0.104302456,25.044999917348225,4.2e-4,0.4848890155553818,1.20751282,0.0018882100121118128,0.0010999999999999998,0.05608960178991159,0.130423794,0.01766789983958006,0.011027263399999999,381.34397125244135,9.418322344899476,99.0357799535609,204.44997006535556,19.353268111153028,30.18888380625696,-0.2309280921682421,28.741806825002033,8.49668,10487.061641583752,0,0.10614702229698499,0.01234,1.8960999250411987,0.09989999999999999,0.06818560076256593,0.01686 +2085,0,1.3018930773707182,1.6081735002568527,0,5.124713457894371,8.14609956741333,1.05255,9.419373591740927,0.65545,113.91600735982259,5.75289705,32.67872015635172,0,11.400400082270304,3.36070855e-4,8.872790495554606,0.12307805499999999,72.96325174967448,2.1691,253.2569465637207,5e-5,6.58565366268158,124.35225,0,555.5450185139974,4873.3012,2383.889973958333,397.9330181845087,489.2550099690755,757.1611930837939,3.1177902817726135,2.6677478500000005,1.8205099900563557,0.0143482414,4.175202290217082,8.20866e-4,27.242499510447185,8.171802799999998,8.518757740656534,5.690300000000001,26.95790147781372,3.19935,0.6912020345528921,0.10363077500000001,24.947800318400066,3.9999999999999996e-4,0.48421502113342285,1.21163395,0.0017251400277018547,0.00105,0.05561940185725689,0.1309995,0.016966199812789757,0.010990423999999999,382.19397481282545,9.44742588473772,99.01053955523716,201.22045727279402,18.999923670012855,29.620997390413084,-0.23230542025338136,29.07820685704549,8.53315,10362.480476301362,0,0.09996512035528819,0.01145,1.8722099363803864,0.0963,0.06606400075058143,0.016149999999999998 +2086,0,1.2426490416443365,1.8129272453654028,0,5.024233730757855,8.190659602483114,1.0531,9.07451351483663,0.61614,114.30300712585449,5.75352704,32.30452028910319,0,11.336299975713095,3.13666132e-4,8.860220432281494,0.118506584,71.57875569661458,2.07684,250.60894902547201,4e-5,6.586113731066386,124.36232000000001,0,555.550059000651,4873.36664,2382.849934895833,396.4014930749069,488.7330067952474,739.6391816020426,2.9613502621650696,2.5223671000000003,1.7334499955177307,0.012737641079999999,3.8739213744799295,6.8952744e-4,26.874899705251057,8.173743859999998,8.320786635080973,5.71502,26.713900725046795,3.19984,0.6780290355285009,0.102959094,24.851000150044758,3.8e-4,0.4837840224305789,1.21575508,0.0015813599942096819,0.001,0.05521470153083404,0.131575206,0.01630159995208184,0.0109535846,383.04297383626295,9.476529424575965,98.9852991569134,197.99094448023249,18.64657922887268,29.053110974569208,-0.2336200799635761,29.416006724039715,8.56962,10237.899311018971,0,0.09413401906689008,0.01056,1.8485199411710103,0.0927,0.06400430016219616,0.015439999999999999 +2087,0,1.183405005917955,2.017680990473953,0,4.9237540036213385,8.235239505767822,1.05365,8.741693576176962,0.57683,114.6900068918864,5.75415703,31.934619903564453,0,11.272500276565552,2.91261409e-4,8.847500324249268,0.113935113,70.21815745035808,1.98458,247.98895136515299,3.000000000000001e-5,6.586493690808614,124.37239000000001,0,555.5440826416016,4873.43208,2381.3798828124995,394.86996796530514,488.1280059814453,722.1171701202913,2.8122002681096396,2.37698635,1.6504800021648407,0.01112704076,3.594350596268972,5.5818888e-4,26.517699241638184,8.175684919999998,8.136234641075134,5.73974,26.474201520284016,3.20033,0.6651520232359568,0.102287413,24.754599889119465,3.5999999999999997e-4,0.48356902102629346,1.21987621,0.0014539599942509085,9.500000000000001e-4,0.05487090162932873,0.132150912,0.015671999504168827,0.0109167452,383.89296976725257,9.505632964414207,98.96005875858965,194.76143168767098,18.29323478773251,28.485224558725328,-0.23487207129882645,29.755107084910076,8.60609,10113.31814573658,0,0.08863551976780097,0.00967,1.8250299592812855,0.0891,0.06200430107613405,0.01473 +2088,0,1.1241609701915731,2.2224347355825036,0,4.823274276484822,8.279829422632853,1.0542,8.420543432235718,0.53752,115.07600657145183,5.75478702,31.56902011235555,0,11.209099928538004,2.68856686e-4,8.834630250930786,0.10936364199999998,68.8813591003418,1.8923199999999998,245.39595158894858,1.9999999999999998e-5,6.5868037939071655,124.38246000000001,0,555.5281016031901,4873.49752,2379.4998982747393,393.3384428557033,487.4410095214844,704.5951586385402,2.6700602372487388,2.2316056,1.5714399913946788,0.009516440439999998,3.3349398374557495,4.268503199999999e-4,26.17049964269002,8.177625979999998,7.964291493097941,5.764460000000001,26.23870086669922,3.2008199999999998,0.6525620420773824,0.101615732,24.658599853515625,3.3999999999999997e-4,0.483545017739137,1.22399734,0.0013404600225233783,9e-4,0.05458220156530539,0.13272661800000002,0.015075600007548928,0.010879905799999999,384.740976969401,9.534736504252452,98.93481836026591,191.53191889510944,17.939890346592335,27.91733814288145,-0.2360613942591323,30.095606962839764,8.64256,9988.736980454192,0,0.08345071723063786,0.00878,1.8017499446868896,0.08549999999999999,0.060061801224946976,0.01402 +2089,0,1.0649169344651916,2.4271884806910538,0,4.722794549348306,8.324439446131388,1.0547499999999999,8.11068324247996,0.49821,115.46300633748372,5.7554170099999995,31.207519849141438,0,11.146000067392984,2.46451963e-4,8.821620305379232,0.10479217099999999,67.56806246439616,1.80006,242.82995223999023,9.999999999999999e-6,6.587043801943461,124.39253000000001,0,555.5051320393881,4873.562959999999,2377.239868164062,391.8069177461015,486.67200724283856,687.0731471567889,2.5346402525901794,2.0862248500000002,1.4961300094922383,0.007905840119999999,3.094219128290812,2.955117599999998e-4,25.833199501037598,8.179567039999998,7.804157177607219,5.78918,26.007201194763184,3.20131,0.6402530272801717,0.100944051,24.562899907430012,3.1999999999999997e-4,0.4836920176943143,1.22811847,0.0012387700068453948,8.500000000000001e-4,0.054342801993091903,0.133302324,0.014510499701524774,0.0108430664,385.5899759928385,9.563840044090695,98.90957796194216,188.30240610254793,17.586545905452166,27.34945172703757,-0.23718804884449365,30.437506993611652,8.679030000000001,9864.155815171802,0,0.07856211625039577,0.00789,1.7786799371242523,0.0819,0.058176000602543354,0.013309999999999999 +2090,0,1.00567289873881,2.631942225799604,0,4.62231482221179,8.36907951037089,1.0553,7.8117430210113525,0.4589,115.85000673929851,5.756047,30.850119431813557,0,11.083199818929037,2.2404724e-4,8.80849027633667,0.1002207,66.27786509195964,1.7078,240.29095458984375,0,6.587233901023865,124.4026,0,555.47515869140625,4873.6284,2374.6398722330723,390.2753926364997,485.82301076253253,669.5511356750376,2.4056702057520547,1.9408441000000003,1.42439000805219,0.0062952398,2.870838443438212,1.641732e-4,25.50539954503377,8.181508099999999,7.655131975809733,5.8139,25.779701391855877,3.2018,0.6282170315583547,0.10027237,24.467499891916912,3e-4,0.4839890201886495,1.2322396,0.0011471000034362078,8e-4,0.05414820152024428,0.13387803,0.013975000008940697,0.010806227,386.4379755655924,9.592943583928939,98.88433756361842,185.0728933099864,17.233201464311993,26.781565311193695,-0.2382520350549105,30.78080685933431,8.7155,9739.574649889411,0,0.07395461512108643,0.006999999999999999,1.755819946527481,0.0783,0.05634580117960771,0.0126 +2091,0,0.945420941453906,2.813406699633083,0,4.534801113060198,8.413729508717855,1.0591899999999999,7.523392995198567,0.43762,116.2370065053304,5.76682691,30.49691931406657,0,11.020900090535482,2.01642516e-4,8.795230388641357,0.0970558359,65.01046689351399,1.6476899999999999,237.77895228068033,0.0012000000000000001,6.5873933633168535,124.47380000000001,0,555.4411163330078,4874.7481099999995,2371.709838867187,388.8187898822631,484.8930130004883,654.8674382211752,2.282880187034607,1.8667949400000003,1.3560499946276348,0.00775867862,2.6635678807894387,0.00105070848,25.18679936726888,8.18497343,7.516505837440491,5.838480000000001,25.556201140085857,3.20314,0.6164480348428091,0.0997446209,24.37250010172526,2.6999999999999995e-4,0.4844210197528203,1.23567028,0.0010639500008740772,7.2e-4,0.05399370131393274,0.13444327,0.013467499675850073,0.0107816674,387.2859751383463,9.595424789847291,98.62288081454275,182.4608495668367,16.90987294384705,26.316667158016138,-0.2392522731312201,31.125407059987385,8.75989,9660.133478666654,0,0.06961251422762871,0.0070999999999999995,1.7331699430942535,0.07583,0.054569300885001816,0.012150000000000001 +2092,0,0.885168984169002,2.994871173466562,0,4.447287403908608,8.458469470342001,1.06308,7.245272954305013,0.41634,116.6240062713623,5.77760682,30.14771906534831,0,10.958799997965494,1.7923779199999998e-4,8.781850258509317,0.0938909718,63.76566950480143,1.58758,235.29195276896158,0.0024000000000000002,6.588802615801494,124.545,0,555.4588623046875,4875.8678199999995,2368.509847005208,387.3621871280265,483.89001210530597,640.1837407673129,2.1660202145576477,1.7927457800000002,1.2909499804178874,0.00922211744,2.4712473154067993,0.0019372437600000002,24.877299308776855,8.188438759999999,7.387709021568298,5.86306,25.33660125732422,3.2044799999999998,0.6049430320660273,0.0992168718,24.277900060017902,2.3999999999999998e-4,0.4849620188275973,1.23910096,9.82750013160209e-4,6.4e-4,0.05387590235720078,0.13500851,0.01298679985726873,0.0107571078,388.1299743652343,9.597905995765643,98.36142406546709,179.848805823687,16.586544423382108,25.85176900483858,-0.2401887630734223,31.471607208251953,8.80428,9580.692307443895,0,0.06551951356232166,0.0072,1.7107499539852142,0.07336,0.05284560068200032,0.0117 +2093,0,0.824917026884098,3.176335647300041,0,4.359773694757017,8.503379503885904,1.06697,6.977052768071492,0.39505999999999997,117.01200739542644,5.78838673,29.802519003550213,0,10.897200028101603,1.56833068e-4,8.768370230992636,0.0907261077,62.54307238260905,1.5274699999999999,232.83295567830405,0.0036,6.59185266494751,124.6162,0,555.5477142333984,4876.987529999999,2365.0898437499995,385.9055843737899,482.81701405843097,625.5000433134506,2.054850220680237,1.7186966200000002,1.228959987560908,0.01068555626,2.2928067445755005,0.00282377904,24.57659975687663,8.19190409,7.268141269683838,5.88764,25.120901107788086,3.20582,0.5936990330616633,0.0986891227,24.18369992574056,2.0999999999999998e-4,0.48559101670980453,1.24253164,9.032280164926002e-4,5.600000000000001e-4,0.05378960197170576,0.13557375000000002,0.012531499766434232,0.010732548199999999,388.9689737955729,9.600387201683994,98.09996731639143,177.23676208053732,16.263215902917164,25.386870851661023,-0.24106150488151715,31.819506804148357,8.84867,9501.251136221137,0,0.06166191337009271,0.007299999999999999,1.6885399520397186,0.07089,0.05117400145779053,0.01125 +2094,0,0.764665069599194,3.3578001211335202,0,4.272259985605427,8.548449516296387,1.07086,6.718422691027324,0.37378,117.40100733439128,5.79916664,29.461318651835125,0,10.835899909337362,1.34428344e-4,8.754780133565268,0.0875612436,61.342474619547524,1.4673599999999998,230.3979517618815,0.0048000000000000004,6.595422665278117,124.6874,0,555.6627095540365,4878.107239999999,2361.469848632812,384.4489816195533,481.67501576741535,610.8163458595883,1.9491301874319713,1.64464746,1.169919987519582,0.012148995079999999,2.1272462606430054,0.0037103143200000006,24.28459930419922,8.195369419999999,7.157262921333313,5.9122200000000005,24.909101168314617,3.20716,0.5827100376288096,0.0981613736,24.089800039927166,1.7999999999999998e-4,0.4862970213095347,1.24596232,8.304160098001981e-4,4.8e-4,0.053733802400529385,0.13613899000000002,0.012100199780737361,0.0107079886,389.8009719848632,9.602868407602346,97.83851056731577,174.6247183373876,15.939887382452222,24.921972698483465,-0.24187049855550455,32.16910648345947,8.89306,9421.80996499838,0,0.05802841205149889,0.0073999999999999995,1.6665499607721965,0.06842,0.04955250055839618,0.0108 +2095,0,0.70441311231429,3.5392645949669994,0,4.1847462764538355,8.593679507573446,1.0747499999999999,6.469042619069417,0.35250000000000004,117.79000790913899,5.809946549999999,29.124018510182697,0,10.774899880091349,1.1202362e-4,8.741080204645792,0.08439637950000001,60.16347694396973,1.40725,227.98995463053384,0.006,6.599152723948161,124.7586,0,555.7876739501953,4879.22695,2357.659830729166,382.9923788653167,480.4640121459961,596.132648405726,1.8486001789569855,1.5705983000000001,1.113699992497762,0.013612433899999998,1.9736558397610982,0.0045968496,24.000999609629314,8.19883475,7.054533680280049,5.9368,24.701001167297363,3.2085,0.5719690322875977,0.0976336245,23.99619992574056,1.5e-4,0.4870740200082461,1.249393,7.63302004391638e-4,4e-4,0.0537054023394982,0.13670423,0.011691799852997065,0.010683429,390.6279729207356,9.605349613520698,97.5770538182401,172.01267459423792,15.61655886198728,24.457074545305908,-0.2426157440953847,32.520407358805336,8.93745,9342.368793775622,0,0.05460511179020008,0.0075,1.6447799603144329,0.06595,0.04797940142452717,0.010350000000000002 +2096,0,0.6441611550293861,3.720729068800478,0,4.097232567302245,8.639079491297403,1.07864,6.228622515996297,0.33122,118.18000729878743,5.8207264599999995,28.79071839650472,0,10.71429999669393,8.961889599999999e-5,8.727280298868815,0.08123151540000001,59.0058790842692,1.34714,225.60695521036783,0.0072,6.6029428243637085,124.8298,0,555.9176686604818,4880.34666,2353.67978922526,381.53577611108017,479.18401590983075,581.4489509518636,1.7530501584211986,1.4965491400000002,1.0601599911848705,0.01507587272,1.8311553994814556,0.00548338488,23.72559928894043,8.20230008,6.959473967552185,5.96138,24.49670139948527,3.20984,0.5614710400501887,0.0971058754,23.90310001373291,1.1999999999999999e-4,0.48791301995515823,1.2528236799999999,6.957389996387064e-4,3.2e-4,0.05370190180838108,0.13726947,0.01130489989494284,0.0106588694,391.44897460937494,9.60783081943905,97.31559706916444,169.40063085108824,15.293230341522335,23.992176392128346,-0.24329724150115745,32.87340704600016,8.98184,9262.927622552863,0,0.05137911066412926,0.0076,1.6232299506664276,0.06348,0.0464528010537227,0.0099 +2097,0,0.5839091977444821,3.902193542633957,0,4.009718858150654,8.684639612833658,1.08253,5.996842384338379,0.30994,118.57100741068523,5.83150637,28.46121819814046,0,10.653999964396158,6.7214172e-5,8.713390191396078,0.07806665130000001,57.869181315104164,1.28703,223.24995803833008,0.0084,6.606782793998718,124.901,0,556.0516560872396,4881.46637,2349.5397745768223,380.07917335684357,477.8350092569987,566.7652534980014,1.6622401475906372,1.42249998,1.0091900030771892,0.016539311539999997,1.6989350219567616,0.00636992016,23.458099683125813,8.20576541,6.871603488922119,5.98596,24.296000957489014,3.2111799999999997,0.551210030913353,0.0965781263,23.81030019124349,8.999999999999999e-5,0.4888090218106906,1.25625436,6.277950014919043e-4,2.400000000000001e-4,0.05372090203066667,0.13783471,0.010938399859393636,0.0106343098,392.2639719645182,9.610312025357402,97.05414032008878,166.78858710793853,14.969901821057393,23.52727823895079,-0.24391499077282286,33.22810713450114,9.02623,9183.486451330105,0,0.04834150988608599,0.0077,1.6019099553426106,0.06101,0.044972301150361695,0.00945 +2098,0,0.5236572404595781,4.083658016467437,0,3.9222051489990633,8.730359554290771,1.08642,5.773442347844441,0.28866000000000003,118.9630069732666,5.84228628,28.135517915089924,0,10.594000021616617,4.480944799999998e-5,8.69942021369934,0.0749017872,56.75338331858317,1.2269199999999998,220.9169553120931,0.009600000000000001,6.610642949740092,124.9722,0,556.1886444091797,4882.58608,2345.269795735677,378.62257060260697,476.4180145263672,552.081556044139,1.5759701530138652,1.34845082,0.9606499920288721,0.01800275036,1.5762746433417003,0.007256455440000001,23.198399384816486,8.20923074,6.790502667427063,6.010540000000001,24.09890127182007,3.21252,0.5411800295114517,0.09605037720000001,23.71779998143514,5.9999999999999995e-5,0.489756020406882,1.25968504,5.595280090346932e-4,1.5999999999999999e-4,0.05376030163218578,0.13839995000000002,0.010591199699168405,0.010609750199999999,393.0739771525065,9.612793231275752,96.79268357101311,164.17654336478884,14.64657330059245,23.06238008577323,-0.2444689919103809,33.58450730641683,9.07062,9104.045280107348,0,0.045480609561006226,0.0078,1.5808099607626598,0.058539999999999995,0.04353720135986805,0.009000000000000001 +2099,0,0.4634052831746741,4.265122490300915,0,3.8346914398474725,8.776249329249064,1.0903100000000001,5.558112263679504,0.26738000000000006,119.35500653584798,5.85306619,27.81361786524455,0,10.534499963124594,2.240472399999999e-5,8.685370206832886,0.0717369231,55.65788491566976,1.16681,218.60895665486655,0.0108,6.614542841911316,125.04339999999999,0,556.3286336263021,4883.70579,2340.8598225911455,377.16596784837037,474.9330139160156,537.3978585902767,1.494020124276479,1.27440166,0.9144410043954849,0.01946618918,1.4624643127123516,0.00814299072,22.94619957605998,8.21269607,6.715751012166341,6.03512,23.905401070912678,3.21386,0.5313760389884313,0.0955226281,23.625699996948242,2.999999999999997e-5,0.4907490188876788,1.26311572,4.962740034291832e-4,7.999999999999999e-5,0.05381810199469328,0.13896519000000002,0.010262199755137166,0.010585190599999999,393.87797546386713,9.615274437194104,96.53122682193745,161.56449962163913,14.323244780127506,22.597481932595674,-0.24495924491383156,33.94250742594401,9.11501,9024.604108884589,0,0.04278550886859497,0.0079,1.5599299569924672,0.05607,0.04214590104917685,0.008550000000000002 +2100,0,0.40315332588977015,4.4465869641343945,0,3.747177730695882,8.82228946685791,1.0942,5.350582242012024,0.24610000000000004,119.74800682067871,5.8638461,27.49551757176717,0,10.475200017293295,0,8.67123007774353,0.068572059,54.58258819580078,1.1066999999999998,216.32595698038736,0.012,6.618472615877788,125.1146,0,556.4725494384766,4884.8255,2336.3297729492183,375.7093650941338,473.3810119628906,522.7141611364143,1.4162001311779022,1.2003525,0.8704500049352646,0.020929628,1.3568839728832245,0.009029526,22.7012996673584,8.2161614,6.646969199180603,6.0597,23.715301513671875,3.2152,0.5217930277188619,0.094994879,23.534000078837078,0,0.4917840212583542,1.2665464,4.372789990156889e-4,0,0.053890702004233994,0.13953043,0.00995051977224648,0.010560631,394.67597452799475,9.617755643112456,96.26977007286179,158.95245587848945,13.999916259662564,22.132583779418116,-0.2453857497831749,34.30230712890625,9.1594,8945.162937661831,0,0.04024760890752077,0.008,1.5392699937025707,0.0536,0.04079689954717954,0.008100000000000001 +2101,0,0.39509025937197473,4.4465869641343945,0,3.731596014380136,8.868509531021118,1.0869053333333334,5.145912210146586,0.24445933333333336,120.14200592041016,5.824753792666667,27.181017239888508,0,10.416299819946289,0,8.655700127283732,0.06811491194000001,53.54819424947103,1.099322,214.06695683797201,0.01192,6.6224541664123535,124.28050266666666,0,556.6217702229818,4852.259996666667,2331.709798177083,375.0229526648609,471.7610143025716,520.971386342428,1.3445101181666057,1.19235015,0.829123005270958,0.020790097146666665,1.2592336932818096,0.00896932916,22.463499704996746,8.161386990666667,6.58380647500356,6.019302000000001,23.528701146443684,3.1937653333333333,0.5124250402053198,0.094361579806666665,23.44260009129842,0,0.49285801748434704,1.2581027573333332,3.7661099728817743e-4,0,0.05397860147058964,0.13860022713333334,0.009655159820492068,0.010490226793333333,395.46897633870435,9.606229676733703,96.18402693993977,158.15497968140434,13.942896030024775,22.077847860631344,-0.24580372243795645,34.663807233174644,9.098337333333333,8890.584057774258,0,0.037944307550787926,0.007946666666666666,1.518069972594579,0.05324266666666667,0.03939740018298229,0.008046000000000001 +2102,0,0.38702719285417936,4.4465869641343945,0,3.7160142980643895,8.914639552434286,1.0796106666666667,4.944302320480347,0.2428186666666667,120.53500747680664,5.785661485333334,26.870316823323567,0,10.357800006866455,0,8.638830025990805,0.06765776488,52.55369599660238,1.0919439999999998,211.8329594930013,0.01184,6.622497161229451,123.44640533333333,0,556.5627950032552,4819.694493333333,2327.0998128255205,374.3365402355881,470.12801361083984,519.2286115484417,1.2798201441764832,1.1843477999999998,0.7903299927711487,0.020650566293333332,1.1689034303029378,0.008909132319999999,22.231099446614582,8.106612581333334,6.524029533068339,5.978904,23.344601313273113,3.1723306666666664,0.5032640397548676,0.09372828061333334,23.351600170135498,0,0.49371302376190823,1.2496591146666667,3.198039945952284e-4,0,0.05405190152426561,0.1376700242666667,0.0093740897718817,0.010419822586666665,396.2549718221028,9.594703710354947,96.09828380701774,157.35750348431927,13.885875800386987,22.023111941844572,-0.2462131628781764,35.02480697631836,9.037274666666667,8836.005177886685,0,0.03584870727111896,0.007893333333333334,1.496369997660319,0.05288533333333333,0.03795389955242475,0.007992 +2103,0,0.37896412633638393,4.4465869641343945,0,3.700432581748643,8.960459391276041,1.072316,4.750622232755025,0.24117800000000003,120.9250062306722,5.746569178,26.563116709391277,0,10.299599885940552,0,8.621990044911703,0.06720061782,51.576596895853676,1.0845659999999997,209.62196095784506,0.01176,6.617376685142517,122.612308,0,556.2202606201172,4787.12899,2322.629801432291,373.6501278063152,468.53101348876953,517.4858367544554,1.2206401228904724,1.17634545,0.7533979962269465,0.02051103544,1.0850031872590382,0.00884893548,22.002599398295086,8.051838172,6.4655611117680865,5.938506,23.162200927734375,3.150896,0.4943010285496712,0.09309498142,23.26100031534831,0,0.49411402146021527,1.241215472,2.715600033601125e-4,0,0.05408150174965461,0.13673982140000002,0.009106769924983382,0.01034941838,397.0319747924804,9.583177743976194,96.0125406740957,156.56002728723416,13.828855570749198,21.9683760230578,-0.2466140711038346,35.38320700327555,8.976212,8781.42629799911,0,0.03386610591163238,0.00784,1.4749599893887837,0.052528000000000005,0.036563500141104065,0.007938 +2104,0,0.37090105981858856,4.4465869641343945,0,3.6848508654328973,9.005949338277182,1.0650213333333334,4.564552108446757,0.23953733333333338,121.3120059967041,5.7074768706666665,26.25961669286092,0,10.241700013478598,0,8.60518995920817,0.06674347076,50.61669890085856,1.0771879999999998,207.43496068318686,0.01168,6.610726634661357,121.77821066666667,0,555.7803904215494,4754.563486666667,2318.279846191406,372.9637153770423,466.9640172322591,515.743061960469,1.1664801438649495,1.1683431,0.7182369927565256,0.020371504586666665,1.0070729553699493,0.00878873864,21.77779944737752,7.997063762666667,6.408342679341634,5.898108000000001,22.981401284535725,3.129461333333333,0.4855320329467456,0.09246168222666667,23.170600096384685,0,0.4941120172540347,1.2327718293333334,2.3059100082415776e-4,0,0.05407170175264279,0.13580961853333334,0.008852459800740084,0.010279014173333332,397.80097452799475,9.571651777597438,95.92679754117368,155.76255109014906,13.77183534111141,21.91364010427103,-0.24700644711493114,35.739006996154785,8.915149333333334,8726.847418111538,0,0.03198950660104553,0.0077866666666666666,1.4538599848747253,0.05217066666666667,0.035224199605484806,0.007884 +2105,0,0.36283799330079314,4.4465869641343945,0,3.6692691491171514,9.051129579544067,1.0577266666666667,4.385801990826924,0.2378966666666667,121.69700558980306,5.668384563333333,25.959616502126057,0,10.184199889500936,0,8.588429848353067,0.06628632370000001,49.67370065053304,1.06981,205.27196248372397,0.0116,6.603656490643819,120.94411333333332,0,555.3124287923177,4721.997983333333,2314.0497843424473,372.2773029477695,465.42601013183594,514.0002871664827,1.1168701549371083,1.16034075,0.6847619861364365,0.020231973733333332,0.9347127427657446,0.0087285418,21.556499640146892,7.942289353333334,6.352294246355693,5.857710000000001,22.80220127105713,3.1080266666666665,0.4769550288716952,0.09182838303333334,23.080699761708576,0,0.49375302096207935,1.2243281866666667,1.957989964769998e-4,0,0.05402650156368812,0.13487941566666667,0.0086104697547853,0.010208609966666666,398.5619761149088,9.560125811218684,95.84105440825167,154.96507489306396,13.714815111473621,21.858904185484256,-0.24739029091146594,36.09230772654215,8.854086666666667,8672.268538223965,0,0.030212105717509985,0.007733333333333333,1.4330299993356068,0.051813333333333336,0.03393430014451345,0.00783 +2106,0,0.3547749267829977,4.4465869641343945,0,3.653687432801405,9.095979452133179,1.050432,4.214071949323018,0.23625600000000002,122.07900746663411,5.629292256,25.663116455078125,0,10.126999934514364,0,8.571699937184652,0.06582917664,48.74740250905355,1.0624319999999998,203.1309611002604,0.01152,6.596506436665853,120.11001599999999,0,554.8384297688802,4689.4324799999995,2309.939819335937,371.5908905184966,463.9130147298177,512.2575123724964,1.071400135755539,1.1523383999999999,0.6528909901777903,0.02009244288,0.867545540134112,0.00866834496,21.33889929453532,7.887514944,6.297355731328328,5.817312,22.624701182047527,3.086592,0.46856402854124707,0.09119508384,22.991000175476074,0,0.49307502061128616,1.215884544,1.662559989199508e-4,0,0.05395150215675434,0.13394921280000002,0.00838015996851027,0.01013820576,399.31497192382807,9.54859984483993,95.75531127532963,154.16759869597888,13.657794881835832,21.804168266697488,-0.2477656024934391,36.44290701548258,8.793023999999999,8617.689658336392,0,0.028527905698865652,0.00768,1.4124899804592133,0.051456,0.03269180003553629,0.007776000000000001 +2107,0,0.34671186026520234,4.4465869641343945,0,3.6381057164856587,9.140519539515177,1.0431373333333334,4.049101809660594,0.23461533333333337,122.45900535583496,5.590199948666667,25.370116074879963,0,10.070199886957804,0,8.555010080337524,0.06537202958,47.8375047047933,1.0550539999999997,201.01396052042642,0.01144,6.58936619758606,119.27591866666666,0,554.3664347330729,4656.866976666666,2305.929809570312,370.90447808922374,462.42201741536456,510.5147375785101,1.0296901265780132,1.14433605,0.6225509941577911,0.019952912026666665,0.8051993697881699,0.008608148119999999,21.12459961573283,7.832740534666667,6.24347722530365,5.7769140000000005,22.448701063791912,3.065157333333333,0.4603540276487668,0.09056178464666667,22.901699701944988,0,0.49211202065149945,1.2074409013333334,1.4116999955149367e-4,0,0.05384970176964998,0.13301900993333335,0.00816088984720409,0.010067801553333332,400.0589752197265,9.537073878461175,95.6695681424076,153.37012249889378,13.600774652198044,21.749432347910716,-0.2481323818608505,36.79090722401937,8.731961333333333,8563.11077844882,0,0.026931005530059338,0.007626666666666667,1.3922399878501892,0.05109866666666667,0.03149499992529551,0.0077220000000000006 +2108,0,0.3386487937474069,4.4465869641343945,0,3.622524000169913,9.184739351272583,1.0358426666666667,3.8906017740567527,0.2329746666666667,122.83600680033366,5.551107641333333,25.08051586151123,0,10.013699928919474,0,8.538349946339926,0.06491488252000001,46.94380601247152,1.0476759999999998,198.91896184285483,0.01136,6.582266092300415,118.44182133333332,0,553.8974202473959,4624.301473333333,2302.019836425781,370.21806565995087,460.95201619466144,508.7719627845238,0.991407131155332,1.1363337,0.5936679939428965,0.019813381173333332,0.7473011960585912,0.00854795128,20.91369930903117,7.777966125333334,6.190598527590434,5.736516000000001,22.27420123418172,3.0437226666666666,0.45232002933820087,0.08992848545333333,22.81280008951823,0,0.4908950130144755,1.1989972586666666,1.1986899941499966e-4,0,0.05372170234719912,0.13208880706666667,0.007952079875394702,0.009997397346666666,400.79597473144526,9.525547912082422,95.58382500948558,152.57264630180867,13.543754422560255,21.694696429123944,-0.24849062901370034,37.13630739847819,8.670898666666666,8508.531898561245,0,0.025433405147244532,0.007573333333333333,1.37226997812589,0.05074133333333334,0.030342199839651585,0.007668000000000001 +2109,0,0.33058572722961155,4.4465869641343945,0,3.606942283854167,9.228639523188273,1.028548,3.7383417089780173,0.23133400000000004,123.21000544230144,5.512015334,24.79421583811442,0,9.957469940185547,0,8.521730105082193,0.06445773546,46.065908432006836,1.040298,196.8469607035319,0.01128,6.575216015179952,117.60772399999999,0,553.4343973795573,4591.73597,2298.19980875651,369.53165323067805,459.50001525878906,507.0291879905375,0.9562341322501501,1.1283313499999998,0.5661689986785253,0.01967385032,0.6935580422480901,0.00848775444,20.70609966913859,7.7231917160000005,6.138649821281433,5.696118,22.101301352183025,3.0222879999999996,0.44446102778116864,0.08929518626,22.724199930826824,0,0.4894530177116394,1.190553616,1.0178099910262972e-4,0,0.05357020224134127,0.13115860420000003,0.0077517598401755095,0.009926993139999998,401.52397155761713,9.514021945703666,95.49808187656356,151.7751701047236,13.486734192922468,21.639960510337172,-0.2488403439519884,37.479207038879395,8.609836,8453.953018673672,0,0.024011604953557253,0.00752,1.3525800009568532,0.050384000000000005,0.029231900194038946,0.007614000000000001 +2110,0,0.3225226607118161,4.4465869641343945,0,3.5913605675384206,9.27221941947937,1.0212533333333333,3.5920616587003074,0.22969333333333336,123.5810063680013,5.472923026666667,24.511415481567383,0,9.901620070139566,0,8.505150000254313,0.0640005884,45.2037099202474,1.0329199999999998,194.79596074422201,0.0112,6.568195899327596,116.77362666666666,0,552.9753875732422,4559.1704666666665,2294.4698689778643,368.84524080140517,458.0650177001953,505.28641319655117,0.9238881270090739,1.120329,0.5399920096000036,0.019534319466666665,0.6436688899993896,0.0084275576,20.501699447631836,7.668417306666667,6.087600946426392,5.6557200000000005,21.929901123046875,3.000853333333333,0.4367690285046895,0.08866188706666667,22.635900020599365,0,0.48781101405620575,1.1821099733333333,8.642370024366149e-5,0,0.053397501508394875,0.13022840133333335,0.007560869834075372,0.009856588933333332,402.24497222900385,9.502495979324912,95.41233874364153,150.9776939076385,13.429713963284678,21.5852245915504,-0.2491815266757148,37.81940746307373,8.548773333333333,8399.3741387861,0,0.0226607044848303,0.007466666666666667,1.3331500093142192,0.05002666666666667,0.028162299655377865,0.007560000000000001 +2111,0,0.3144595941940207,4.4465869641343945,0,3.5757788512226742,9.315479675928751,1.0139586666666667,3.4515215357144675,0.22805266666666668,123.95000584920247,5.433830719333334,24.231815179189045,0,9.846100012461344,0,8.488599936167398,0.06354344134,44.356911977132164,1.0255419999999997,192.76796086629233,0.01112,6.5612157980601,115.93952933333333,0,552.5203704833984,4526.604963333333,2290.8198649088536,368.1588283721323,456.64601643880206,503.54363840256485,0.8941131432851156,1.11232665,0.5150709996620814,0.01939478861333333,0.5973567515611649,0.00836736076,20.300399621327717,7.613642897333333,6.037392059961955,5.615322000000001,21.760001182556152,2.9794186666666667,0.42924302568038303,0.08802858787333334,22.54800017674764,0,0.4859890167911847,1.1736663306666666,7.33837005100213e-5,0,0.05320580179492632,0.12929819846666668,0.007378929799112181,0.009786184726666666,402.95698038736975,9.490970012946157,95.32659561071951,150.1802177105534,13.37269373364689,21.530488672763628,-0.24951417718487945,38.15710703531901,8.487710666666667,8344.795258898526,0,0.021393804345279932,0.007413333333333333,1.3139799932638805,0.049669333333333336,0.02713210027044018,0.0075060000000000005 +2112,0,0.3063965276762253,4.4465869641343945,0,3.5601971349069284,9.358429431915283,1.006664,3.3165115118026733,0.22641200000000003,124.31700579325359,5.394738412000001,23.95551522572835,0,9.790899912516275,0,8.472089926401773,0.06308629428,43.52521260579427,1.0181639999999998,190.7609634399414,0.01104,6.55426565806071,115.105432,0,552.0693664550781,4494.03946,2287.239868164062,367.4724159428594,455.2420171101888,501.80086360857854,0.8666741251945496,1.1043242999999998,0.4913440023859342,0.01925525776,0.5543626298507055,0.00830716392,20.102099577585857,7.558868488000001,5.987973213195801,5.574924,21.59160089492798,2.9579839999999997,0.42187802990277606,0.08739528868,22.460500081380207,0,0.48400601496299106,1.165222688,6.231160053478864e-5,0,0.05299690179526806,0.1283679956,0.007205439847894013,0.009715780519999998,403.66198221842444,9.479444046567403,95.24085247779747,149.38274151346832,13.315673504009101,21.475752753976856,-0.2498382954794824,38.492106119791664,8.426648,8290.216379010952,0,0.020188303974767525,0.00736,1.2950999935468037,0.049312,0.02613979981591304,0.007452000000000001 +2113,0,0.2983334611584299,4.4465869641343945,0,3.5446154185911825,9.401049455006918,0.9993693333333333,3.18679145971934,0.22477133333333338,124.68000666300456,5.355646104666667,23.682415008544922,0,9.73602000872294,0,8.455609957377115,0.06262914722,42.70851389567057,1.010786,188.77596155802408,0.01096,6.547355651855469,114.27133466666666,0,551.6213582356771,4461.473956666667,2283.729858398437,366.7860035135866,453.85101826985675,500.0580888145922,0.8413581202427546,1.0963219499999999,0.4687570035457611,0.019115726906666665,0.5144485086202621,0.00824696708,19.90679947535197,7.504094078666667,5.939304192860921,5.5345260000000005,21.424601395924885,2.9365493333333332,0.4146720344821612,0.08676198948666666,22.373299916585285,0,0.4818830192089081,1.1567790453333333,5.2910600061295554e-5,0,0.052772601755956806,0.12743779273333336,0.007039949763566256,0.009645376313333332,404.3589757283528,9.46791808018865,95.15510934487546,148.58526531638321,13.258653274371314,21.421016835190084,-0.2501538815595237,38.8246062596639,8.365585333333334,8235.637499123379,0,0.019040203808496397,0.007306666666666666,1.2764799892902374,0.04895466666666667,0.025183900104214747,0.007398000000000001 +2114,0,0.29027039464063453,4.4465869641343945,0,3.529033702275436,9.443359533945719,0.9920746666666667,3.0621713995933533,0.2231306666666667,125.04100608825684,5.3165537973333334,23.412614822387695,0,9.681469996770224,0,8.439169963200888,0.062172000160000004,41.90641562143961,1.0034079999999999,186.81196467081705,0.010879999999999999,6.540465474128723,113.43723733333333,0,551.1773427327474,4428.9084533333335,2280.289855957031,366.0995910843137,452.4720153808594,498.3153140206059,0.8179721236228943,1.0883196,0.4472539921601613,0.01897619605333333,0.4774194036920865,0.00818677024,19.714299201965332,7.449319669333334,5.891345103581746,5.494128,21.259000937143963,2.9151146666666663,0.40761902928352356,0.08612869029333334,22.286400000254314,0,0.47963402171929675,1.1483354026666668,4.4928300364214614e-5,0,0.05253450137873491,0.1265075898666667,0.0068820298959811526,0.009574972106666666,405.047976175944,9.456392113809894,95.06936621195342,147.7877891192981,13.201633044733526,21.366280916403312,-0.2504609354250033,39.15450668334961,8.304522666666667,8181.058619235806,0,0.017963503797849018,0.007253333333333333,1.2581200003623962,0.04859733333333333,0.024263099922488134,0.007344000000000001 +2115,0,0.2822073281228391,4.4465869641343945,0,3.5134519859596898,9.485349575678507,0.98478,2.942451318105062,0.22149000000000002,125.39900652567546,5.27746149,23.145814259847004,0,9.62723994255066,0,8.422769943873087,0.0617148531,41.11881732940674,0.9960299999999999,184.86896514892578,0.0108,6.533615469932556,112.60314,0,550.7363332112631,4396.34295,2276.9098714192705,365.41317865504084,451.1050109863281,496.5725392266196,0.7963401228189468,1.0803172499999998,0.42678099622329074,0.018836665199999998,0.44306430717309314,0.0081265734,19.52459955215454,7.394545260000001,5.844056089719136,5.45373,21.094901084899902,2.89368,0.40071503072977066,0.08549539110000001,22.199899832407635,0,0.47727101296186447,1.13989176,3.815080041628486e-5,0,0.052285801619291306,0.125577387,0.006731269803519051,0.0095045679,405.72997538248694,9.444866147431139,94.9836230790314,146.99031292221304,13.144612815095737,21.311544997616544,-0.2507594570759212,39.48170693715414,8.243459999999999,8126.479739348232,0,0.016953803443660338,0.0072,1.240009993314743,0.048240000000000005,0.02337620019291838,0.007290000000000001 +2116,0,0.2741442616050437,4.4465869641343945,0,3.497870269643944,9.527019580205282,0.9774853333333334,2.827421267827352,0.21984933333333337,125.7550048828125,5.238369182666667,22.882214387257893,0,9.573320070902506,0,8.406400044759115,0.06125770604,40.34541893005371,0.9886519999999999,182.94696553548178,0.01072,6.526775320370992,111.76904266666665,0,550.298329671224,4363.777446666666,2273.5898844401036,364.72676622576796,449.74901326497394,494.82976443263334,0.7763001173734665,1.0723148999999998,0.40728699912627536,0.018697134346666665,0.4111662084857623,0.00806637656,19.33759943644206,7.3397708506666675,5.797386844952901,5.4133320000000005,20.932101249694824,2.8722453333333333,0.39395802716414136,0.08486209190666667,22.113699913024902,0,0.4748060156901677,1.1314481173333333,3.2396100020074904e-5,0,0.05202780136217674,0.12464718413333334,0.006585879911047717,0.009434163693333332,406.4039738972981,9.433340181052385,94.89787994610938,146.19283672512793,13.08759258545795,21.25680907882977,-0.2510494465122774,39.806406021118164,8.182397333333332,8071.9008594606585,0,0.016006803062434,0.007146666666666667,1.2221499979496002,0.04788266666666667,0.02252189985786875,0.007236000000000001 +2117,0,0.2660811950872483,4.4465869641343945,0,3.482288553328198,9.568369468053183,0.9701906666666668,2.7169112165768943,0.21820866666666672,126.10800615946452,5.199276875333334,22.6217139561971,0,9.51973001162211,0,8.390070041020712,0.06080055898,39.58602046966553,0.9812739999999999,181.0449651082357,0.01064,6.519975185394287,110.93494533333332,0,549.8623199462891,4331.211943333333,2270.329854329427,364.0403537964951,448.4040171305339,493.086989638647,0.7577091157436371,1.06431255,0.3887290010849635,0.01855760349333333,0.381545123954614,0.00800617972,19.15329949061076,7.284996441333334,5.751317620277405,5.372934,20.77070140838623,2.8508106666666664,0.3873460267980893,0.08422879271333333,22.027799606323242,0,0.47225401798884076,1.1230044746666668,2.7509800171780323e-5,0,0.051759202033281326,0.12371698126666668,0.006446979862327377,0.009363759486666666,407.07097625732416,9.421814214673631,94.81213681318735,145.39536052804283,13.030572355820162,21.202073160043,-0.2513309037340719,40.128506342569985,8.121334666666666,8017.321979573086,0,0.015101203229278326,0.0070933333333333334,1.20456001162529,0.047525333333333336,0.021698900188008945,0.007182000000000001 +2118,0,0.2580181285694529,4.4465869641343945,0,3.4667068370124516,9.609399716059366,0.9628960000000001,2.6107312043507895,0.21656800000000004,126.45800526936848,5.160184568,22.364214102427166,0,9.466439962387085,0,8.373770078023275,0.06034341192,38.84032154083252,0.9738959999999999,179.16296768188477,0.01056,6.513185103734334,110.10084799999998,0,549.4293060302734,4298.6464399999995,2267.1098632812495,363.35394136722226,447.06701914469403,491.3442148446607,0.7404351284106573,1.0563102,0.37106100221474964,0.018418072639999998,0.35406503826379776,0.00794598288,18.971599578857422,7.230222032,5.705808401107788,5.332536,20.61060110727946,2.829376,0.3808720310529073,0.08359549352000001,21.942300001780193,0,0.469621017575264,1.114560832,2.3360999724294135e-5,0,0.05148130189627409,0.1227867784,0.006314219829315941,0.00929335528,407.72997538248694,9.410288248294876,94.72639368026533,144.59788433095773,12.973552126182375,21.147337241256228,-0.2516038287413047,40.44800694783529,8.060272,7962.743099685512,0,0.014234402837852636,0.007039999999999999,1.1872100035349529,0.047168,0.020906200011571247,0.007128000000000001 +2119,0,0.2499550620516575,4.4465869641343945,0,3.4511251206967053,9.650119622548422,0.9556013333333334,2.508721133073171,0.21492733333333336,126.80600547790527,5.121092260666667,22.109713872273762,0,9.413469950358072,0,8.357510169347128,0.05988626486,38.108123461405434,0.9665179999999999,177.3019650777181,0.01048,6.5064250230789185,109.26675066666665,0,548.9982961018881,4266.080936666666,2263.939860026041,362.6675289379494,445.7400131225586,489.6014400506744,0.7243571182092031,1.0483078499999998,0.35423700014750165,0.018278541786666665,0.32857096443573636,0.00788578604,18.792299270629883,7.175447622666668,5.660819013913472,5.292138,20.451801141103108,2.807941333333333,0.3745340307553609,0.08296219432666668,21.857199827829998,0,0.4669160147507985,1.1061171893333335,1.9838200235729648e-5,0,0.051194801616171993,0.12185657553333334,0.006187259801663458,0.009222951073333333,408.3809789021809,9.39876228191612,94.6406505473433,143.80040813387265,12.916531896544585,21.092601322469456,-0.2518682215339758,40.76500574747721,7.999209333333333,7908.164219797939,0,0.01342150274043282,0.006986666666666666,1.1700999935468037,0.04681066666666667,0.020142499978343647,0.007074000000000001 +2120,0,0.2418919955338621,4.4465869641343945,0,3.4355434043809594,9.690509557723999,0.9483066666666667,2.4107110699017844,0.2132866666666667,127.15100542704265,5.081999953333334,21.858213583628338,0,9.360809961954752,0,8.341279904047648,0.0594291178,37.389225006103516,0.9591399999999999,175.45996602376303,0.0104,6.499684890111287,108.43265333333332,0,548.5702972412109,4233.515433333333,2260.8198649088536,361.9811165086765,444.4210154215495,487.8586652566881,0.709366112947464,1.0403054999999999,0.33821899940570194,0.01813901093333333,0.30491789678732556,0.0078255892,18.61549965540568,7.120673213333334,5.616329709688823,5.25174,20.294401168823242,2.7865066666666665,0.3683290282885234,0.08232889513333334,21.772300084431965,0,0.46415001650651294,1.0976735466666667,1.6846900052769342e-5,0,0.050900801395376526,0.12092637266666667,0.006065799815890689,0.009152546866666667,409.02597808837885,9.387236315537367,94.55490741442128,143.00293193678755,12.859511666906798,21.037865403682684,-0.2521240821120853,41.07930596669515,7.9381466666666665,7853.585339910365,0,0.012659102600688735,0.006933333333333333,1.1532399952411652,0.04645333333333333,0.01940689980983734,0.007020000000000001 +2121,0,0.2338289290160667,4.4465869641343945,0,3.4199616880652135,9.730589628219604,0.9410120000000001,2.3165510296821594,0.21164600000000003,127.49400520324707,5.042907646000001,21.60961373647054,0,9.308459917704264,0,8.325090090433756,0.058971970740000004,36.68342590332031,0.9517619999999999,173.63796361287436,0.01032,6.492954810460408,107.59855599999999,0,548.144287109375,4200.94993,2257.7298787434893,361.29470407940363,443.1100158691406,486.11589046270177,0.6953641126553217,1.03230315,0.3229690020283063,0.017999480079999998,0.28297583013772964,0.00776539236,18.441099484761555,7.065898804000001,5.572310447692871,5.211342,20.138201077779133,2.765072,0.3622530276576678,0.08169559594,21.687900225321453,0,0.46132901559273404,1.089229904,1.430689993261088e-5,0,0.05059990162650744,0.11999616980000001,0.00594952985799561,0.00908214266,409.662976582845,9.375710349158613,94.46916428149926,142.20545573970244,12.802491437269008,20.983129484895912,-0.2523714210615071,41.391106287638344,7.877084,7799.0064600227915,0,0.011944002471864223,0.00688,1.1366199950377147,0.046096,0.018698299614091713,0.006966000000000001 +2122,0,0.2257658624982713,4.4465869641343945,0,3.404379971749467,9.770349502563477,0.9337173333333334,2.2260810335477195,0.21000533333333338,127.83300526936848,5.003815338666667,21.363913377126057,0,9.256420135498047,0,8.308929999669393,0.05851482368,35.99042797088623,0.9443839999999999,171.83596674601236,0.010239999999999999,6.4862446784973145,106.76445866666666,0,547.7192891438802,4168.3844266666665,2254.6798299153643,360.6082916501308,441.80601755777997,484.37311566871546,0.6822601109743118,1.0243007999999998,0.3084460000197093,0.017859949226666665,0.2626177668571472,0.00770519552,18.268999576568604,7.011124394666667,5.528741041819255,5.1709439999999995,19.983201026916504,2.743637333333333,0.35630302627881366,0.08106229674666668,21.603700160980225,0,0.45845601459344226,1.0807862613333334,1.2150199988051705e-5,0,0.05029280173281828,0.11906596693333334,0.0058381798056264715,0.009011738453333333,410.29297383626295,9.364184382779857,94.38342114857723,141.40797954261737,12.74547120763122,20.92839356610914,-0.2526102383822414,41.7002067565918,7.8160213333333335,7744.427580135219,0,0.011273402099808058,0.006826666666666667,1.12021999557813,0.045738666666666664,0.018015699926763773,0.0069120000000000015 +2123,0,0.21770279598047587,4.4465869641343945,0,3.388798255433721,9.80977956453959,0.9264226666666667,2.139160990715027,0.2083646666666667,128.1710065205892,4.9647230313333335,21.121013323465984,0,9.2046799659729,0,8.292809963226318,0.05805767662,35.31012852986654,0.9370059999999999,170.05296579996744,0.01016,6.479554573694865,105.93036133333332,0,547.2962799072266,4135.818923333333,2251.6698811848955,359.92187922085793,440.50901794433594,482.63034087472914,0.6699701150258383,1.0162984499999999,0.294615996380647,0.01772041837333333,0.24373171602686247,0.00764499868,18.09909947713216,6.956349985333334,5.485571543375651,5.130546,19.829501152038574,2.7222026666666665,0.35047802577416104,0.08042899755333334,21.51989984512329,0,0.45553801705439884,1.0723426186666667,1.0318799922970356e-5,0,0.04998010117560625,0.11813576406666668,0.005730079836212099,0.008941334246666667,410.91497548421216,9.352658416401102,94.29767801565521,140.61050334553227,12.688450977993433,20.873657647322368,-0.2528405340742881,42.00680637359619,7.754958666666666,7689.848700247645,0,0.010644402044514814,0.0067733333333333335,1.1040599942207336,0.045381333333333336,0.017358200003703434,0.006858000000000001 +2124,0,0.20963972946268047,4.4465869641343945,0,3.373216539117975,9.848899602890015,0.9191280000000001,2.055640935897827,0.20672400000000005,128.50500615437826,4.925630724,20.881013075510662,0,9.153249979019165,0,8.27671996752421,0.05760052956,34.64223003387451,0.9296279999999999,168.28896967569986,0.01008,6.472874482472737,105.09626399999999,0,546.8752797444662,4103.25342,2248.689860026041,359.23546679158505,439.2200113932292,480.88756608074283,0.6584211190541586,1.0082961,0.2814469983180364,0.017580887519999998,0.22618166853984198,0.00758480184,17.931299368540447,6.901575576000001,5.442801992098491,5.090148,19.677000999450684,2.7007679999999996,0.344774030148983,0.07979569836000001,21.436400095621746,0,0.45258201907078427,1.063898976,8.763630072886977e-6,0,0.04966450141121944,0.1172055612,0.005626439854192237,0.008870930039999999,411.53097788492835,9.341132450022348,94.21193488273317,139.81302714844716,12.631430748355644,20.818921728535596,-0.2530623081376473,42.31080627441406,7.693896,7635.269820360072,0,0.01003700215369463,0.00672,1.0881499946117401,0.045024,0.01672470010817051,0.006804000000000001 +2125,0,0.20157666294488508,4.4465869641343945,0,3.357634822802229,9.887699683507284,0.9118333333333334,1.9754008849461873,0.20508333333333337,128.83700561523438,4.886538416666667,20.643813133239746,0,9.102109988530477,0,8.260669946670532,0.057143382500000006,33.986531257629395,0.9222499999999998,166.54297002156576,0.01,6.466204404830933,104.26216666666666,0,546.4552866617838,4070.6879166666668,2245.739908854166,358.5490543623122,437.9360173543294,479.1447912867566,0.647547110915184,1.00029375,0.26890799899895984,0.017441356666666664,0.2098736179371675,0.007524605,17.765699863433838,6.846801166666667,5.400402506192525,5.0497499999999995,19.52570120493571,2.679333333333333,0.33918702850739163,0.07916239916666667,21.353299776713055,0,0.44959201912085217,1.0554553333333332,7.443029934014096e-6,0,0.04934610209117333,0.11627535833333334,0.0055270498075212044,0.008800525833333333,412.13897450764966,9.329606483643595,94.12619174981116,139.01555095136206,12.574410518717855,20.764185809748824,-0.253275560572319,42.61220614115397,7.632833333333333,7580.690940472498,0,0.009449912002310157,0.006666666666666666,1.0724499921003978,0.04466666666666667,0.016114500040809315,0.006750000000000001 +2126,0,0.19351359642708968,4.4465869641343945,0,3.3420531064864827,9.926189502080282,0.9045386666666667,1.8983008762200673,0.2034426666666667,129.16600290934244,4.847446109333333,20.40941270192464,0,9.05128026008606,0,8.24465004603068,0.05668623544,33.3429323832194,0.9148719999999998,164.81596883138022,0.00992,6.459554354349772,103.42806933333333,0,546.0372670491537,4038.122413333333,2242.819885253906,357.86264193303936,436.65901438395184,477.40201649277026,0.637285108367602,0.9922913999999999,0.2569650014241536,0.01730182581333333,0.19474257280429205,0.00746440816,17.60219939549764,6.792026757333334,5.358353018760681,5.009352,19.375600973765057,2.6578986666666666,0.3337140257159869,0.07852909997333334,21.270500024159748,0,0.4465700164437294,1.0470116906666667,6.321589997545137e-6,0,0.04902340192347765,0.11534515546666668,0.005431649857200682,0.008730121626666667,412.740976969401,9.318080517264839,94.04044861688914,138.21807475427698,12.517390289080067,20.709449890962055,-0.2534802913783031,42.9111057917277,7.571770666666667,7526.112060584925,0,0.008899251775195202,0.006613333333333333,1.0569700002670288,0.04430933333333333,0.015526700066402555,0.006696000000000001 +2127,0,0.18545052990929428,4.4465869641343945,0,3.3264713901707363,9.964349667231241,0.897244,1.824230819940567,0.20180200000000004,129.49200312296549,4.808353802,20.17771275838216,0,9.000740051269531,0,8.228669961293539,0.05622908838,32.71103382110596,0.9074939999999998,163.10796991984049,0.00984,6.452914198239644,102.593972,0,545.6202697753906,4005.55691,2239.9298706054683,357.1762295037665,435.3870162963867,475.65924169878394,0.6275811195373535,0.98428905,0.2455929989616076,0.017162294959999998,0.18070553118983904,0.0074042113199999995,17.440699418385822,6.737252348,5.316633462905884,4.968954,19.226600964864094,2.6364639999999997,0.3283540258804957,0.07789580078000001,21.187999884287517,0,0.4435180127620697,1.038568048,5.369250023553225e-6,0,0.048696701104442276,0.11441495260000001,0.005340039885292451,0.008659717419999999,413.33497873942054,9.306554550886084,93.9547054839671,137.42059855719188,12.46037005944228,20.654713972175283,-0.2536765005555997,43.207305908203125,7.510708,7471.533180697352,0,0.008382781641557813,0.00656,1.0417100091775258,0.043952,0.014960400061681867,0.006642000000000001 +2128,0,0.17738746339149886,4.4465869641343945,0,3.3108896738549904,10.002199490865072,0.8899493333333334,1.753060797850291,0.20016133333333336,129.81600697835287,4.769261494666667,19.94871250788371,0,8.950499931971232,0,8.212719917297363,0.055771941320000004,32.09083557128906,0.9001159999999998,161.41796747843424,0.009760000000000001,6.446284135182698,101.75987466666666,0,545.20526123046875,3972.9914066666665,2237.059895833333,356.4898170744936,434.12101491292316,473.91646690479763,0.6183821161588033,0.9762867,0.23476299891869226,0.017022764106666664,0.16768149410684904,0.007344014479999999,17.281099796295166,6.6824779386666675,5.275223811467488,4.928556,19.078801155090332,2.615029333333333,0.32310202221075696,0.07726250158666667,21.105899969736736,0,0.4404430165886879,1.0301244053333332,4.560499974104459e-6,0,0.04836630138258139,0.11348474973333335,0.0052520198514685035,0.008589313213333333,413.92297363281244,9.29502858450733,93.86896235104508,136.62312236010678,12.40334982980449,20.59997805338851,-0.2538641881042087,43.50100517272949,7.449645333333333,7416.954300809778,0,0.007898361616147062,0.006506666666666667,1.0266900062561035,0.04359466666666667,0.014414899904901782,0.006588000000000001 +2129,0,0.16932439687370346,4.4465869641343945,0,3.2953079575392445,10.03969963391622,0.8826546666666667,1.6846707959969838,0.1985206666666667,130.13800430297852,4.730169187333333,19.722312450408936,0,8.900559981664022,0,8.196810086568197,0.05531479426000001,31.48193597793579,0.8927379999999998,159.74596786499023,0.009680000000000001,6.439674139022827,100.92577733333333,0,544.7912546793619,3940.4259033333333,2234.2198689778643,355.8034046452208,432.86001841227215,472.1736921108113,0.6096431016921997,0.96828435,0.2244469995299975,0.01688323325333333,0.15559745828310648,0.00728381764,17.12339973449707,6.627703529333334,5.234094262123108,4.888158,18.932101090749104,2.5935946666666663,0.31795602788527805,0.07662920239333335,21.024100303649902,0,0.43734701971213025,1.0216807626666666,3.87367005790414e-6,0,0.04803280159831047,0.11255454686666667,0.005167389831816156,0.008518909006666665,414.5039749145507,9.283502618128576,93.78321921812305,135.8256461630217,12.346329600166701,20.54524213460174,-0.2540433540241301,43.79210599263509,7.388582666666666,7362.375420922205,0,0.007444001540231208,0.0064533333333333335,1.0118800004323323,0.043237333333333336,0.013889400055631995,0.006534000000000002 +2130,0,0.16126133035590806,4.4465869641343945,0,3.279726241223498,10.076899687449137,0.87536,1.6189707418282826,0.19688000000000003,130.45600763956705,4.69107688,19.49861224492391,0,8.850909948348999,0,8.180929978688559,0.054857647200000005,30.884336948394775,0.8853599999999998,158.09096908569336,0.009600000000000001,6.433063983917236,100.09168,0,544.3782501220703,3907.8604,2231.3898925781245,355.1169922159479,431.60501352945965,470.430917316825,0.6013191143671671,0.960282,0.21462199836969376,0.016743702399999998,0.14438742523392042,0.0072236207999999994,16.96749973297119,6.57292912,5.193244695663452,4.84776,18.78640127182007,2.57216,0.31291502714157104,0.0759959032,20.942599773406982,0,0.4342300146818161,1.0132371199999999,3.290359984475799e-6,0,0.0476964016755422,0.11162434400000001,0.005084549814152221,0.0084485048,415.07797495524085,9.27197665174982,93.69747608520103,135.0281699659366,12.289309370528914,20.490506215814968,-0.2542139983153641,44.08070627848307,7.32752,7307.796541034631,0,0.007017841407408317,0.0064,0.9972789982954661,0.04288,0.013383100042119622,0.006480000000000001 +2131,0,0.15319826383811266,4.4465869641343945,0,3.264144524907752,10.113799571990967,0.8680653333333334,1.5558306972185771,0.19523933333333338,130.7720044453939,4.651984572666667,19.277511755625408,0,8.80154005686442,0,8.165079911549887,0.05440050014,30.297738552093506,0.8779819999999998,156.45496877034506,0.00952,6.426463882128398,99.25758266666666,0,543.9662526448568,3875.2948966666668,2228.5898844401036,354.430579786675,430.35401153564453,468.6881425228387,0.5933751165866852,0.9522796499999999,0.20526500170429549,0.016604171546666664,0.1339853915075461,0.007163423959999999,16.813499291737873,6.518154710666667,5.152644872665405,4.807362,18.64190101623535,2.5507253333333333,0.30797702570756275,0.07536260400666667,20.861499945322674,0,0.43109401563803357,1.0047934773333331,2.7949800103973152e-6,0,0.047357301227748394,0.11069414113333334,0.005004819870615999,0.008378100593333333,415.64497884114576,9.260450685371065,93.611732952279,134.2306937688515,12.232289140891126,20.435770297028196,-0.2543761103920363,44.36660607655843,7.266457333333333,7253.217661147059,0,0.00661812136725833,0.006346666666666667,0.9828719943761826,0.04252266666666667,0.01289540009262661,0.006426000000000001 +2132,0,0.14513519732031727,4.4465869641343945,0,3.248562808592006,10.150399684906006,0.8607706666666667,1.495170682668686,0.1935986666666667,131.08500544230142,4.6128922653333335,19.059011777242024,0,8.752469857533773,0,8.149270057678223,0.053943353080000006,29.722039699554443,0.8706039999999998,154.8349698384603,0.00944,6.419873833656311,98.42348533333333,0,543.5552469889323,3842.7293933333335,2225.7998453776036,353.74416735740215,429.10801696777344,466.9453677288524,0.5857771088679632,0.9442773,0.19635099917650223,0.01646464069333333,0.12433536412815253,0.00710322712,16.661099433898926,6.463380301333334,5.112285256385803,4.766964,18.498401006062824,2.5292906666666664,0.30313702672719955,0.07472930481333334,20.780699888865154,0,0.42794401198625565,0.9963498346666666,2.3742399927565807e-6,0,0.047017901514967285,0.10976393826666668,0.004928029840812087,0.008307696386666666,416.2059758504231,9.248924718992312,93.52598981935698,133.4332175717664,12.175268911253337,20.381034378241424,-0.25452969025414685,44.65000534057617,7.205394666666667,7198.638781259485,0,0.006243201321922243,0.006293333333333334,0.9686790059010187,0.04216533333333333,0.012425500123451153,0.006372000000000001 +2133,0,0.13707213080252184,4.4465869641343945,0,3.23298109227626,10.186699628829956,0.853476,1.4368906418482463,0.19195800000000002,131.3960049947103,4.5737999579999995,18.843012015024822,0,8.70368997255961,0,8.133500019709269,0.05348620602,29.156940778096516,0.8632259999999998,153.23296991984049,0.00936,6.413293679555257,97.589388,0,543.146250406901,3810.16389,2223.02988688151,353.0577549281293,427.8660176595052,465.20259293486606,0.5784921099742254,0.9362749499999999,0.1878580003976822,0.016325109839999997,0.11538133832315604,0.007043030279999999,16.510499636332195,6.408605892000001,5.0721555550893145,4.726566,18.35590108235677,2.507856,0.29839302351077396,0.07409600562,20.700200080871582,0,0.4247790103157361,0.9879061919999998,2.0168999981251545e-6,0,0.04667820160587629,0.10883373540000002,0.00485401984769851,0.00823729218,416.7589797973632,9.237398752613556,93.44024668643496,132.63574137468132,12.11824868161555,20.32629845945465,-0.25467473790169565,44.93080552419027,7.1443319999999995,7144.059901371912,0,0.005891531123779714,0.00624,0.9546960045893987,0.041808000000000005,0.01197290001437068,0.0063180000000000016 +2134,0,0.12900906428472644,4.4465869641343945,0,3.2173993759605137,10.222599585851034,0.8461813333333333,1.3808806538581848,0.19031733333333337,131.70400746663412,4.534707650666666,18.62951135635376,0,8.655189832051596,0,8.117760022481283,0.05302905896000001,28.60234196980794,0.8558479999999998,151.64797083536783,0.00928,6.406723578770955,96.75529066666667,0,542.73724365234375,3777.5983866666666,2220.279866536458,352.37134249885645,426.62901814778644,463.45981814087975,0.5714921106894811,0.9282726,0.17976799855629602,0.016185578986666664,0.10707331386705239,0.00698283344,16.361499468485516,6.353831482666667,5.032245834668477,4.686168,18.21450122197469,2.4864213333333334,0.2937430242697398,0.07346270642666668,20.619999885559082,0,0.4216010148326556,0.9794625493333332,1.7133900106121776e-6,0,0.04633620164046685,0.10790353253333335,0.004782639793120325,0.008166887973333332,417.30698394775385,9.225872786234802,93.35450355351293,131.8382651775962,12.061228451977762,20.27156254066788,-0.2548112533346828,45.2090056737264,7.083269333333333,7089.481021484338,0,0.005561681037458281,0.006186666666666667,0.9409200002749761,0.04145066666666667,0.011536799914514026,0.006264000000000001 +2135,0,0.12094599776693105,4.4465869641343945,0,3.2018176596447674,10.258199691772461,0.8388866666666668,1.3270706037680309,0.18867666666666671,132.00900395711264,4.495615343333333,18.418511549631756,0,8.606969992319742,0,8.102050145467123,0.052571911900000004,28.05794318517049,0.8484699999999998,150.07997131347656,0.0092,6.400163610776265,95.92119333333332,0,542.3292490641276,3745.0328833333333,2217.539855957031,351.6849300695836,425.39601643880206,461.71704334689343,0.5647501051425934,0.92027025,0.17206200088063875,0.01604604813333333,0.09936559262375037,0.0069226366,16.214099884033203,6.2990570733333335,4.992526133855184,4.645770000000001,18.0740008354187,2.4649866666666664,0.2891850272814433,0.07282940723333334,20.540200074513752,0,0.41841301570336026,0.9710189066666666,1.4555999901707157e-6,0,0.04599210216353337,0.10697332966666667,0.0047137398505583405,0.008096483766666666,417.84697723388666,9.214346819856047,93.2687604205909,131.0407889805111,12.004208222339972,20.21682662188111,-0.25493923655310824,45.48460578918457,7.0222066666666665,7034.902141596765,0,0.00525229109916836,0.0061333333333333335,0.9273490111033121,0.041093333333333336,0.011116700091709694,0.006210000000000001 +2136,0,0.11288293124913563,4.4465869641343945,0,3.1862359433290215,10.29349970817566,0.8315920000000001,1.275370568037033,0.18703600000000004,132.3120028177897,4.456523036,18.209911346435547,0,8.559039990107218,0,8.086380084355673,0.05211476484,27.523743788401287,0.8410919999999998,148.52897008260092,0.009120000000000001,6.393603404362996,95.08709599999999,0,541.9222361246744,3712.46738,2214.819885253906,350.9985176403107,424.1670150756836,459.9742685529071,0.5582451075315475,0.9122678999999999,0.1647179995973905,0.015906517279999997,0.0922136710335811,0.006862439759999999,16.068299452463787,6.244282664000001,4.952996373176575,4.605372,17.934601147969563,2.443552,0.2847160225113233,0.07219610804,20.460699717203777,0,0.41521601130565006,0.9625752639999999,1.2366299889284467e-6,0,0.04564610216766596,0.10604312680000001,0.004647199879400432,0.00802607956,418.38197580973304,9.202820853477292,93.18301728766887,130.243312783426,11.947187992702185,20.16209070309434,-0.255058687556972,45.75770568847656,6.961144,6980.323261709193,0,0.004962090984918177,0.00608,0.9139599998792013,0.040736,0.010711999920507273,0.006156000000000001 +2137,0,0.10481986473134024,4.4465869641343945,0,3.1706542270132756,10.328499635060629,0.8242973333333334,1.225680559873581,0.18539533333333336,132.61200714111328,4.417430728666667,18.003811200459797,0,8.511380036671957,0,8.07074006398519,0.051657617780000005,26.999445120493572,0.8337139999999998,146.99397150675455,0.009040000000000001,6.387063304583232,94.25299866666666,0,541.5162353515625,3679.901876666667,2212.1099039713536,350.3121052110378,422.9430185953776,458.2314937589208,0.5519501020510992,0.90426555,0.1577219987908999,0.015766986426666664,0.08557765123744805,0.00680224292,15.92389965057373,6.189508254666667,4.9136466185251875,4.564974,17.7961007754008,2.4221173333333335,0.28033602486054104,0.07156280884666667,20.381500244140625,0,0.4120090107123057,0.9541316213333333,1.0506300232767292e-6,0,0.045298501228292785,0.10511292393333335,0.004581479821354151,0.007955675353333332,418.9099782307942,9.191294887098538,93.09727415474686,129.4458365863409,11.890167763064397,20.107354784307567,-0.255169606346274,46.02820555369059,6.9000813333333335,6925.744381821619,0,0.004689880918400983,0.006026666666666667,0.9007489929596583,0.04037866666666667,0.01032200005526344,0.006102000000000001 +2138,0,0.09675679821354483,4.4465869641343945,0,3.1550725106975293,10.363199710845947,0.8170026666666668,1.1779405375321705,0.1837546666666667,132.90900548299155,4.378338421333333,17.800111293792725,0,8.464010000228882,0,8.0551300048828125,0.05120047072,26.484846274058025,0.8263359999999998,145.4749755859375,0.008960000000000001,6.380523204803467,93.41890133333332,0,541.1102396647135,3647.336373333333,2209.4099121093745,349.625692781765,421.7210108439128,456.4887189649345,0.5458501031001409,0.8962631999999999,0.1510569987197717,0.01562745557333333,0.07942033434907596,0.0067420460799999995,15.780999501546225,6.134733845333334,4.8744568427403765,4.524576000000001,17.65860080718994,2.400682666666667,0.27604201932748157,0.07092950965333333,20.302599906921387,0,0.40879301478465396,0.9456879786666665,8.926409928259696e-7,0,0.044949400859574475,0.10418272106666668,0.00451792993893226,0.007885271146666666,419.4309717814127,9.179768920719782,93.01153102182482,128.64836038925583,11.83314753342661,20.052618865520795,-0.2552719929210144,46.29610506693522,6.839018666666666,6871.165501934046,0,0.004434550879523158,0.005973333333333333,0.8877339959144592,0.04002133333333334,0.009946389977509776,0.006048000000000001 +2139,0,0.08869373169574941,4.4465869641343945,0,3.139490794381783,10.397499481836954,0.8097080000000001,1.132070501645406,0.18211400000000005,133.20400365193686,4.339246114,17.598711172739666,0,8.41691001256307,0,8.039559920628866,0.050743323660000006,25.979947090148926,0.8189579999999999,143.97297032674155,0.00888,6.373983184496562,92.58480399999999,0,540.7052256266276,3614.77087,2206.7198689778643,348.9392803524921,420.50401814778644,454.7459441709482,0.5399271051088969,0.88826085,0.14470499753952026,0.015487924719999999,0.07370711552600066,0.00668184924,15.639599561691284,6.079959436000001,4.835417032241821,4.484178,17.52200110753377,2.379248,0.2718300273021062,0.07029621046000001,20.224000136057537,0,0.405571016172568,0.9372443359999999,7.584320040147455e-7,0,0.0445988013719519,0.1032525182,0.004456449882127345,0.007814866939999998,419.9459788004557,9.168242954341029,92.92578788890279,127.85088419217072,11.77612730378882,19.997882946734023,-0.255365847281193,46.56150499979655,6.777956,6816.586622046472,0,0.004177620944877465,0.00592,0.8749109953641891,0.039664000000000005,0.009584479965269566,0.005994000000000001 +2140,0,0.08063066517795402,4.4465869641343945,0,3.123909078066037,10.431499560674032,0.8024133333333334,1.088000496228536,0.18047333333333337,133.49600728352866,4.300153806666667,17.39971113204956,0,8.370090087254843,0,8.024019956588745,0.0502861766,25.48434813817342,0.8115799999999999,142.48597208658853,0.0088,6.36745301882426,91.75070666666666,0,540.3022308349609,3582.2053666666666,2204.049865722656,348.25286792321924,419.29001871744794,453.00316937696186,0.5341640909512838,0.8802584999999999,0.13864900171756744,0.015348393866666666,0.06840580080946286,0.0066216524,15.499499718348185,6.0251850266666676,4.796537280082703,4.44378,17.386301040649414,2.3578133333333335,0.26769902805487317,0.06966291126666667,20.145799954732258,0,0.4023440132538478,0.9288006933333333,6.444220067199543e-7,0,0.04424710168192784,0.10232231533333334,0.004396919859573245,0.007744462733333332,420.45498148600257,9.156716987962273,92.84004475598077,127.05340799508562,11.719107074151033,19.94314702794725,-0.25545116942681,46.82420508066813,6.716893333333333,6762.007742158899,0,0.003919170839556803,0.005866666666666667,0.8622790028651556,0.03930666666666667,0.00923581002280116,0.005940000000000001 +2141,0,0.07256759866015862,4.357655224851706,0,3.108327361750291,10.465299526850382,0.7951186666666668,1.045640488465627,0.1788326666666667,133.78500493367514,4.261061499333334,17.20301087697347,0,8.32355006535848,0,8.008520046869913,0.04982902954,24.998048941294353,0.8042019999999999,141.01597340901694,0.00872,6.360932985941569,90.91660933333333,0,539.8982238769531,3549.6398633333333,2201.3798828124995,347.56645549394636,418.0800145467122,451.26039458297555,0.5285471081733704,0.8722561499999999,0.1328789989153544,0.015208863013333332,0.06348678718010585,0.006561455559999999,15.360799551010132,5.970410617333334,4.757787386576335,4.403382000000001,17.251601219177246,2.336378666666667,0.26364802569150925,0.06902961207333333,20.06790018081665,0,0.399110014239947,0.9203570506666666,5.475680069366717e-7,0,0.04389620137711366,0.10139211246666668,0.0043392298587908345,0.007674058526666665,420.95797983805335,9.145191021583518,92.75430162305875,126.25593179800053,11.662086844513244,19.88841110916048,-0.2555279593578652,47.08450508117676,6.655830666666667,6707.428862271326,0,0.0036767507748057446,0.0058133333333333335,0.8498340000708898,0.038949333333333336,0.008899899975707134,0.005886000000000001 +2142,0,0.06450453214236321,4.268723485569018,0,3.0927456454345448,10.49869974454244,0.7878240000000001,1.004940465092659,0.17719200000000004,134.07200495402017,4.221969192,17.00851074854533,0,8.277270078659058,0,7.99305001894633,0.049371882480000004,24.520849863688152,0.7968239999999999,139.5599733988444,0.00864,6.354412794113159,90.082512,0,539.4962259928385,3517.07436,2198.7198689778643,346.8800430646735,416.8930130004883,449.51761978898924,0.5230610917011896,0.8642538,0.1273800004273653,0.015069332159999999,0.05892237306882938,0.00650125872,15.223399718602499,5.9156362080000005,4.7191576560338335,4.362984,17.117700735727947,2.314944,0.2596750234564145,0.06839631288,19.990299860636394,0,0.39587001502513885,0.911913408,4.652869970792987e-7,0,0.043546101388831936,0.10046190960000001,0.004281879829553266,0.007603654319999999,421.45397949218744,9.133665055204764,92.66855849013672,125.45845560091543,11.605066614875456,19.833675190373707,-0.2555962170743588,47.3421049118042,6.594768,6652.849982383753,0,0.003449340738976995,0.00576,0.8375730067491531,0.038592,0.008576260103533665,0.005832 +2143,0,0.05644146562456781,4.179791746286331,0,3.0771639291187984,10.531699657440186,0.7805293333333334,0.9658354371786118,0.17555133333333336,134.35600662231445,4.182876884666666,16.81641085942586,0,8.23127007484436,0,7.977609952290853,0.04891473542000001,24.052550951639812,0.7894459999999999,138.12097295125326,0.00856,6.347892721494039,89.24841466666666,0,539.0932210286459,3484.508856666667,2196.0698649088536,346.19363063540067,415.749018351237,447.7748449950029,0.5176941007375717,0.8562514499999999,0.12213699954251449,0.014929801306666666,0.0546868604918321,0.00644106188,15.087199846903482,5.860861798666668,4.680657744407654,4.322586,16.984700838724773,2.2935093333333336,0.2557770237326622,0.06776301368666668,19.912999788920086,0,0.39262601484855014,0.9034697653333332,3.953830021904044e-7,0,0.043194701274236046,0.09953170673333334,0.004226249875500798,0.007533250113333332,421.9439798990885,9.12213908882601,92.5828153572147,124.66097940383034,11.548046385237669,19.778939271586935,-0.2556559425762907,47.59720516204834,6.533705333333333,6598.271102496179,0,0.0032360306746947267,0.005706666666666667,0.8254940013090769,0.03823466666666667,0.008264450045923391,0.005778000000000001 +2144,0,0.048378399106772406,4.090860007003643,0,3.0615822128030525,10.564499696095785,0.7732346666666667,0.9282564173142115,0.1739106666666667,134.63800430297852,4.143784577333333,16.626410643259685,0,8.185530026753744,0,7.962209979693095,0.048457588360000005,23.59305206934611,0.7820679999999999,136.69697443644205,0.00848,6.341362635294597,88.41431733333333,0,538.6892293294271,3451.9433533333336,2193.4198811848955,345.5072182061278,414.6430180867513,446.0320702010166,0.5124370902776718,0.8482491,0.11714000068604946,0.014790270453333332,0.05075664880375067,0.00638086504,14.95229975382487,5.806087389333334,4.642257849375407,4.282188,16.852500756581623,2.2720746666666667,0.25195202479759854,0.06712971449333334,19.835999806722004,0,0.38937901457150775,0.8950261226666666,3.3599199866785057e-7,0,0.042842001343766846,0.09860150386666668,0.004172249891174336,0.007462845906666666,422.42897796630854,9.110613122447255,92.49707222429267,123.86350320674524,11.49102615559988,19.724203352800163,-0.2557071358636609,47.84970474243164,6.472642666666666,6543.692222608606,0,0.0030359206333135567,0.005653333333333334,0.8135930001735687,0.03787733333333333,0.007964039997508129,0.005724000000000001 +2145,0,0.04031533258897701,4.001928267720955,0,3.0460004964873066,10.59689966837565,0.7659400000000001,0.8921454052130381,0.17227000000000003,134.91700490315756,4.10469227,16.43871021270752,0,8.14006002744039,0,7.946840008099874,0.0480004413,23.14205265045166,0.7746899999999999,135.2869758605957,0.008400000000000001,6.334812521934509,87.58022,0,538.2842305501302,3419.37785,2190.779907226562,344.8208057768549,413.57501220703125,444.2892954070303,0.507278099656105,0.8402467499999999,0.11237699848910172,0.0146507396,0.047109438106417656,0.0063206682,14.818499644597372,5.751312980000001,4.603968024253845,4.24179,16.721200784047443,2.25064,0.24819902330636978,0.0664964153,19.759400208791096,0,0.38612601161003113,0.88658248,2.855309991408224e-7,0,0.04248830148329338,0.09767130100000002,0.004119789887530108,0.007392441699999999,422.90697733561194,9.0990871560685,92.41132909137065,123.06602700966015,11.43400592596209,19.66946743401339,-0.2557497969364693,48.09960524241129,6.41158,6489.1133427210325,0,0.00284822063986212,0.005600000000000001,0.8018680115540823,0.03752,0.00767460997061183,0.0056700000000000006 +2146,0,0.03225226607118161,3.912996528438267,0,3.0304187801715603,10.628999710083008,0.7586453333333334,0.8574443906545639,0.17062933333333336,135.1930046081543,4.065599962666667,16.25311024983724,0,8.094860076904297,0,7.9315100113550825,0.047543294240000006,22.69955348968506,0.7673119999999999,133.89297358194986,0.008320000000000001,6.328242460886638,86.74612266666665,0,537.8752492268881,3386.8123466666666,2188.1498819986973,344.13439334758203,412.5430145263672,442.54652061304404,0.5022071003913879,0.8322443999999999,0.1078339982777834,0.014511208746666667,0.04372492774079243,0.0062604713599999995,14.68589965502421,5.696538570666667,4.565758069356282,4.201392,16.59070078531901,2.2292053333333337,0.24451502288381258,0.06586311610666667,19.683000246683758,0,0.3828670134147008,0.8781388373333333,2.4265600255072667e-7,0,0.04213340114802122,0.09674109813333334,0.004068779875524342,0.0073220374933333325,423.3789723714192,9.087561189689746,92.32558595844863,122.26855081257506,11.376985696324303,19.614731515226623,-0.2557839257947161,48.347004890441895,6.350517333333333,6434.534462833459,0,0.002672140544746071,0.005546666666666667,0.7902970016002655,0.03716266666666667,0.007395749950471024,0.005616 +2147,0,0.024189199553386206,3.8240647891555795,0,3.014837063855814,10.660799741744995,0.7513506666666667,0.8240993718306223,0.1689886666666667,135.46600468953451,4.026507655333334,16.06971017519633,0,8.049920082092285,0,7.916200002034505,0.04708614718000001,22.26535479227702,0.7599339999999999,132.51397196451822,0.00824,6.321642438570659,85.91202533333332,0,537.4642537434896,3354.2468433333333,2185.509887695312,343.44798091830916,411.54601287841797,440.8037458190577,0.49721809724966687,0.82424205,0.1034999992698431,0.014371677893333334,0.04058411903679371,0.00620027452,14.554399569829306,5.641764161333334,4.527638236681621,4.160994,16.46100091934204,2.2077706666666668,0.24089902266860008,0.06522981691333335,19.60699987411499,0,0.3796050151189168,0.8696951946666667,2.0622400024687218e-7,0,0.04177750057230393,0.09581089526666667,0.004019149928353727,0.0072516332866666665,423.844980875651,9.076035223310992,92.2398428255266,121.47107461548995,11.319965466686515,19.55999559643985,-0.2558095224384012,48.59180514017741,6.289454666666667,6379.955582945886,0,0.0025069605326279998,0.005493333333333334,0.7788769950469335,0.036805333333333336,0.007127070023367803,0.005562 +2148,0,0.016126133035590795,3.7351330498728914,0,2.999255347540068,10.692299604415894,0.744056,0.7920553535223007,0.16734800000000002,135.73700332641602,3.9874153480000003,15.888409932454428,0,8.005239963531494,0,7.900930047035217,0.04662900012000001,21.83935562769572,0.7525559999999999,131.1489741007487,0.00816,6.3150023221969604,85.07792799999999,0,537.0492706298828,3321.68134,2182.869893391927,342.76156848903634,410.58301544189453,439.0609710250714,0.4923000931739807,0.8162396999999999,0.09936799978216489,0.01423214704,0.037669310656686626,0.00614007768,14.423999547958374,5.586989752000001,4.489588300387065,4.120596,16.332100868225098,2.1863360000000003,0.23735002304116884,0.06459651772000001,19.53130006790161,0,0.3763370141386986,0.8612515519999999,1.7526699972828888e-7,0,0.041420601618786655,0.09488069240000001,0.003970809862948954,0.00718122908,424.30497996012366,9.064509256932237,92.15409969260458,120.67359841840486,11.262945237048726,19.50525967765308,-0.25582658686752463,48.83410517374674,6.2283919999999995,6325.376703058312,0,0.0023520104975129166,0.00544,0.7676249941190084,0.036448,0.006868199910968542,0.005508000000000001 +2149,0,0.008063066517795398,3.646201310590204,0,2.983673631224322,10.723499695460001,0.7367613333333334,0.761263350645701,0.16570733333333337,136.0050048828125,3.9483230406666667,15.70920991897583,0,7.960819999376933,0,7.885689973831177,0.046171853060000004,21.421356519063313,0.7451779999999999,129.79797490437826,0.00808,6.308342297871907,84.24383066666665,0,536.6312713623047,3289.115836666667,2180.229899088541,342.07515605976346,409.6530125935872,437.3181962310851,0.4874450961748759,0.80823735,0.09542799989382426,0.014092616186666667,0.03496430224428574,0.00607988084,14.294699589411417,5.532215342666667,4.451598326365153,4.080197999999999,16.203900973002117,2.1649013333333333,0.2338660197953383,0.06396321852666667,19.455799738566082,0,0.3730630154410998,0.8528079093333333,1.4896099879517047e-7,0,0.04106280083457629,0.09395048953333335,0.003922279827141513,0.0071108248733333336,424.7599767049153,9.052983290553481,92.06835655968254,119.87612222131976,11.205925007410936,19.450523758866307,-0.25583511908208634,49.07380485534668,6.167329333333333,6270.797823170739,0,0.002206650465571632,0.005386666666666667,0.7565399954716364,0.03609066666666667,0.00661878000634412,0.0054540000000000005 +2150,0,0,3.5572695713075158,-0,2.968091914908576,10.75439969698588,0.7294666666666667,0.7316723316907883,0.1640666666666667,136.2710049947103,3.9092307333333336,15.53210973739624,0,7.916660030682881,0,7.870489994684855,0.04571470600000001,21.011157194773357,0.7377999999999999,128.46197636922201,0.008,6.301642139752706,83.40973333333332,0,536.20928955078125,3256.5503333333336,2177.579854329427,341.3887436304906,408.75301361083984,435.5754214370988,0.4826490953564644,0.8002349999999999,0.0916681991269191,0.013953085333333334,0.03245379480843743,0.006019684,14.166299740473429,5.477440933333334,4.413658459981282,4.0398,16.07650105158488,2.143466666666667,0.23044502238432565,0.06332991933333335,19.38070011138916,0,0.36978501081466675,0.8443642666666666,1.266049996691739e-7,0,0.04070610087364912,0.09302028666666667,0.003874979893832157,0.007040420666666667,425.2079772949218,9.041457324174727,91.98261342676052,119.07864602423467,11.148904777773149,19.395787840079535,-0.25583511908208634,49.31090513865153,6.1062666666666665,6216.218943283166,0,0.0020702804322354496,0.005333333333333334,0.7456180055936178,0.03573333333333333,0.006378460015791158,0.0054 +2151,0,0,3.4683378320248277,-0,2.9525101985928295,10.784899711608887,0.722172,0.7032353182633718,0.16242600000000001,136.53400548299155,3.8701384260000005,15.357009569803873,0,7.872749964396159,0,7.85532009601593,0.045257558940000005,20.6086581548055,0.7304219999999999,127.13997459411621,0.00792,6.294912099838257,82.57563599999999,0,535.7843068440756,3223.9848300000003,2174.9298706054683,340.7023312012177,407.885014851888,433.83264664311247,0.4779060905178388,0.7922326499999999,0.08808219991624355,0.01381355448,0.030123788087318342,0.00595948716,14.038899580637613,5.422666524,4.3757684628168745,3.999402,15.94990070660909,2.1220320000000004,0.22708402077356973,0.06269662014,19.30590009689331,0,0.3665040135383606,0.835920624,9.92927340348615e-8,0,0.0403502012292544,0.09209008380000001,0.0038288398645818233,0.00697001646,425.65097300211585,9.029931357795974,91.8968702938385,118.28116982714958,11.091884548135361,19.341051921292763,-0.25583511908208634,49.545504570007324,6.045204,6161.640063395593,0,0.001942360414735352,0.005280000000000001,0.7348559945821762,0.035376,0.0061469000453750295,0.005346 +2152,0,0,3.37940609274214,-0,2.9369284822770836,10.815099716186523,0.7148773333333334,0.6759082973003387,0.16078533333333336,136.79400507609049,3.831046118666667,15.18390949567159,0,7.829100012779236,0,7.840179999669393,0.04480041188000001,20.21375910441081,0.7230439999999999,125.83197593688965,0.00784,6.288142005602519,81.74153866666666,0,535.35430908203125,3191.419326666667,2172.269877115885,340.0159187719449,407.04801686604816,432.08987184912615,0.47321109225352603,0.7842302999999999,0.08466149866580963,0.013674023626666667,0.0279613818662862,0.00589929032,13.912399689356485,5.367892114666667,4.337928533554077,3.9590039999999997,15.823900779088339,2.1005973333333334,0.22378402079145113,0.06206332094666668,19.231300195058186,0,0.3632170135776202,0.8274769813333334,0,0,0.03999320138245821,0.09115988093333334,0.0037837898901974163,0.006899612253333333,426.0879770914713,9.018405391417218,91.81112716091647,117.48369363006448,11.034864318497572,19.28631600250599,-0.25583511908208634,49.77750460306803,5.9841413333333335,6107.061183508019,0,0.0018223603838123381,0.005226666666666668,0.7242529988288879,0.03501866666666666,0.005923790042288601,0.005292000000000001 +2153,0,0,3.290474353459452,-0,2.9213467659613377,10.84499971071879,0.7075826666666667,0.6496462970972061,0.15914466666666668,137.0520044962565,3.7919538113333333,15.01280943552653,0,7.785699923833211,0,7.825069944063823,0.044343264820000006,19.82625945409139,0.7156659999999999,124.53797658284505,0.00776,6.281341989835103,80.90744133333332,0,534.9213205973307,3158.8538233333334,2169.5998942057286,339.329506342672,406.24401092529297,430.34709705513984,0.46855709205071133,0.77622795,0.08139579991499583,0.013534492773333334,0.025954275857657194,0.00583909348,13.78689972559611,5.313117705333334,4.300118605295817,3.9186059999999996,15.698700666427612,2.079162666666667,0.22054201985398927,0.06143002175333334,19.157100041707356,0,0.35992301255464554,0.8190333386666666,0,0,0.03963500137130419,0.09022967806666668,0.0037397799120905497,0.006829208046666667,426.51997375488276,9.006879425038465,91.72538402799444,116.68621743297939,10.977844088859785,19.23158008371922,-0.25583511908208634,50.00690460205078,5.923078666666666,6052.482303620445,0,0.0017097703724478681,0.005173333333333334,0.713807001709938,0.034661333333333336,0.005708810019617279,0.0052380000000000005 +2154,0,0,3.201542614176764,-0,2.9057650496455913,10.87459953625997,0.700288,0.6244082848230997,0.15750400000000003,137.307004292806,3.752861504,14.843709309895834,0,7.742550094922383,0,7.809989968935649,0.04388611776000001,19.446060021718342,0.7082879999999999,123.25697580973308,0.00768,6.2745018402735395,80.07334399999999,0,534.48333740234375,3126.28832,2166.9198608398433,338.6430939133991,405.47200775146484,428.6043222611535,0.4639420881867409,0.7682256,0.07827999939521153,0.01339496192,0.02409147083138426,0.0057788966399999996,13.66219965616862,5.2583432960000005,4.262328664461772,3.878208,15.574100812276205,2.057728,0.2173550215860208,0.06079672256000001,19.083100001017254,0,0.3566260089476903,0.810589696,0,0,0.03927570146818956,0.0892994752,0.0036967398482374847,0.00675880384,426.94498189290357,8.995353458659709,91.63964089507242,115.88874123589429,10.920823859221997,19.176844164932447,-0.25583511908208634,50.23380470275879,5.862016,5997.903423732872,0,0.0016041603618456672,0.00512,0.7035130063692728,0.034304,0.005501660013881822,0.005184 +2155,0,0,3.1126108748940764,-0,2.890183333329845,10.903899590174357,0.69299333333333335,0.6001542707284292,0.15586333333333335,137.55900446573892,3.713769196666667,14.676509300867716,0,7.699649969736735,0,7.794950008392334,0.04342897070000001,19.073060830434162,0.7009099999999999,121.98997624715169,0.0076,6.267621874809265,79.23924666666666,0,534.0423431396484,3093.722816666667,2164.229858398437,337.9566814841263,404.73101298014325,426.86154746716727,0.45936008791128796,0.7602232499999999,0.07530679926276207,0.013255431066666667,0.022362465659777325,0.005718699799999999,13.538299640019735,5.203568886666667,4.224568645159404,3.83781,15.450200716654459,2.0362933333333335,0.21422502025961876,0.06016342336666668,19.009499708811443,0,0.3533250118295352,0.8021460533333333,0,0,0.03891530136267344,0.08836927233333335,0.003654619892283032,0.006688399633333333,427.3649749755859,8.983827492280955,91.5538977621504,115.0912650388092,10.863803629584208,19.12210824614568,-0.25583511908208634,50.4581044514974,5.800953333333333,5943.3245438453,0,0.0015050703174589823,0.005066666666666667,0.6933709929386774,0.03394666666666667,0.005302070019145806,0.005130000000000001 +2156,0,0,3.0236791356113883,-0,2.874601617014099,10.932799736658732,0.6856986666666667,0.5768452535072962,0.15422266666666667,137.8090031941732,3.6746768893333335,14.511308987935385,0,7.656999985376994,0,7.7799400091171265,0.042971823640000004,18.707061767578125,0.6935319999999998,120.73597653706868,0.00752,6.260701696077983,78.40514933333333,0,533.5963541666666,3061.1573133333336,2161.519897460937,337.27026905485343,404.02101135253906,425.11877267318096,0.454807090262572,0.7522209,0.07246679874757926,0.013115900213333333,0.020757660424957674,0.00565850296,13.41529949506124,5.148794477333333,4.186828692754109,3.797412,15.326900800069174,2.0148586666666666,0.21114902198314667,0.059530124173333344,18.936100165049236,0,0.3500170061985652,0.7937024106666667,0,0,0.03855390070627133,0.08743906946666669,0.003611949873932948,0.006617995426666666,427.7799809773762,8.972301525902202,91.46815462922837,114.29378884172411,10.80678339994642,19.067372327358907,-0.25583511908208634,50.679903984069824,5.739890666666667,5888.745663957726,0,0.0014121202887812008,0.005013333333333334,0.683378001054128,0.03358933333333333,0.005109740033124884,0.005076000000000001 +2157,0,0,2.9347473963287003,-0,2.859019900698353,10.961399793624878,0.678404,0.5544442484776179,0.15258200000000002,138.05600611368814,3.635584582,14.347908973693848,0,7.614590009053548,0,7.764959971110026,0.04251467658000001,18.347962379455566,0.6861539999999998,119.49497604370117,0.0074400000000000004,6.2537415822347,77.571052,0,533.1453704833984,3028.5918100000004,2158.799926757812,336.58385662558055,403.3400115966797,423.37599787919464,0.4502800901730855,0.74421855,0.06975369962553184,0.01297636936,0.019268056377768517,0.0055983061199999995,13.292999664942423,5.094020068,4.149098714192708,3.757014,15.204300800959269,1.993424,0.20812601720293364,0.05889682498000001,18.86300007502238,0,0.34670300781726837,0.785258768,0,0,0.038191501051187515,0.08650886660000001,0.003570169870120784,0.006547591219999999,428.188980102539,8.960775559523446,91.38241149630633,113.496312644639,10.749763170308633,19.012636408572135,-0.25583511908208634,50.89910475413004,5.678828,5834.166784070152,0,0.0013249102824678023,0.004960000000000001,0.6735319991906484,0.033232,0.0049244100227952,0.005022 +2158,0,0,2.8458156570460122,-0,2.843438184382607,10.989699602127075,0.6711093333333333,0.5329162379105886,0.15094133333333334,138.3000030517578,3.5964922746666668,14.186408758163452,0,7.572429935137431,0,7.750010013580322,0.042057529520000005,17.995663166046143,0.6787759999999998,118.26697667439778,0.00736,6.246751507123311,76.73695466666666,0,532.6903788248698,2996.0263066666666,2156.0698649088536,335.8974441963077,402.6880060831706,421.63322308520833,0.44577808678150177,0.7362162,0.06716370023787022,0.012836838506666667,0.01788545244683822,0.005538109279999999,13.171499649683634,5.039245658666667,4.111368656158447,3.716616,15.082300821940104,1.9719893333333334,0.2051520198583603,0.05826352578666667,18.790200074513752,0,0.3433850134412448,0.7768151253333333,0,0,0.03782820080717405,0.08557866373333335,0.003529239872780939,0.006477187013333333,428.5919799804687,8.949249593144692,91.29666836338431,112.69883644755392,10.692742940670845,18.957900489785363,-0.25583511908208634,51.11580435434977,5.617765333333333,5779.587904182579,0,0.0012430902764511604,0.004906666666666667,0.6638300021489462,0.03287466666666667,0.004745840094983578,0.004968 +2159,0,0,2.7568839177633246,-0,2.8278564680668605,11.017699797948202,0.6638146666666667,0.5122262289126714,0.1493006666666667,138.54200490315756,3.5573999673333336,14.026808897654215,0,7.530509988466899,0,7.735089977582295,0.04160038246000001,17.649963855743408,0.6713979999999998,117.05197715759277,0.00728,6.239711403846741,75.90285733333333,0,532.2313995361328,2963.4608033333334,2153.309895833333,335.21103176703485,402.0650100708008,419.890448291222,0.4412960857152939,0.7282138499999999,0.06469080038368702,0.012697307653333333,0.016601948533207178,0.00547791244,13.05079960823059,4.984471249333334,4.073648691177368,3.6762180000000004,14.960900863011679,1.9505546666666667,0.20223002011577287,0.05763022659333334,18.717700004577637,0,0.34006301065286,0.7683714826666667,0,0,0.03746600076556206,0.08464846086666668,0.003489099869815012,0.006406782806666666,428.9899775187174,8.937723626765937,91.2109252304623,111.90136025046881,10.635722711033056,18.90316457099859,-0.25583511908208634,51.329904556274414,5.556702666666666,5725.009024295006,0,0.001166340245011573,0.004853333333333334,0.6542699982722601,0.032517333333333336,0.004573759972117841,0.004914000000000001 +2160,0,0,2.6679521784806366,-0,2.8122747517511146,11.04539966583252,0.65652,0.49234222372372943,0.14766,138.7810033162435,3.51830766,13.869008700052897,0,7.48881995677948,0,7.720200061798096,0.041143235400000006,17.31076415379842,0.6640199999999998,115.84997812906902,0.0072,6.2326314051946,75.06876,0,531.7674153645834,2930.8953,2150.549886067708,334.524619337762,401.47001393636066,418.1476734972357,0.43683307866255444,0.7202115,0.062326998760302864,0.0125577768,0.015410645244022211,0.005417715599999999,12.930699666341146,4.92969684,4.035918712615967,3.6358200000000003,14.840100765228271,1.92912,0.1993550198773543,0.05699692740000001,18.64549970626831,0,0.3367350126306216,0.75992784,0,0,0.0371048009643952,0.08371825800000002,0.0034497099307676158,0.0063363785999999995,429.3829778035481,8.926197660387183,91.12518209754026,111.10388405338372,10.578702481395268,18.84842865221182,-0.25583511908208634,51.54140377044678,5.49564,5670.430144407433,0,0.0010943202457080285,0.0048000000000000004,0.6448509991168976,0.03216,0.004407940005573134,0.004860000000000001 +2161,0,0,2.5790204391979485,-0,2.7966930354353687,11.072799603144327,0.6492253333333333,0.4732312162717183,0.14601933333333333,139.01800409952799,3.4792153526666665,13.713008562723795,0,7.447379986445109,0,7.705339948336284,0.04068608834,16.978065331776936,0.6566419999999998,114.66097768147786,0.00712,6.225511391957601,74.23466266666667,0,531.2994181315104,2898.329796666667,2147.759887695312,333.8382069084891,400.9030075073242,416.4048987032494,0.4323870862523715,0.71220915,0.0600693995753924,0.012418245946666667,0.014304741829012832,0.005357518759999999,12.811299562454224,4.8749224306666665,3.998188773790995,3.595422,14.719900767008463,1.9076853333333332,0.196527020384868,0.056363628206666676,18.57349983851115,0,0.3334000160296758,0.7514841973333334,0,0,0.03674230072647333,0.08278805513333334,0.0034110199000375965,0.006265974393333333,429.7699762980143,8.91467169400843,91.03943896461824,110.30640785629863,10.521682251757479,18.793692733425047,-0.25583511908208634,51.750404040018715,5.434577333333333,5615.851264519859,0,0.0010267602240977187,0.004746666666666667,0.6355690012375513,0.03180266666666667,0.004248159937560558,0.004806 +2162,0,0,2.490088699915261,-0,2.7811113191196224,11.099799712498983,0.6419306666666666,0.4548652072747548,0.14437866666666668,139.25100326538086,3.4401230453333334,13.55880848566691,0,7.406170010566711,0,7.690520008405049,0.040228941280000007,16.65156586964925,0.6492639999999998,113.48397763570149,0.007039999999999999,6.21834123134613,73.40056533333333,0,530.8264465332031,2865.7642933333336,2144.9499104817705,333.1517944792162,400.3630091349284,414.6621239092631,0.42795507858196896,0.7042068,0.05791279921929041,0.012278715093333333,0.013278238863373796,0.00529732192,12.692599693934122,4.820148021333334,3.9604587157567344,3.5550240000000004,14.600300709406534,1.8862506666666665,0.19374601915478706,0.05573032901333334,18.501799901326496,0,0.33006101349989575,0.7430405546666667,0,0,0.03637870090703169,0.08185785226666668,0.0033729999170949063,0.006195570186666667,430.151980082194,8.903145727629674,90.95369583169621,109.50893165921353,10.464662022119692,18.738956814638275,-0.25583511908208634,51.95690409342448,5.373514666666667,5561.272384632286,0,9.63378207719264e-4,0.004693333333333334,0.6264230012893677,0.03144533333333333,0.004094189964234829,0.004752000000000001 +2163,0,0,2.401156960632573,-0,2.765529602803876,11.126499652862549,0.634636,0.4372131998340289,0.142738,139.48200225830078,3.401030738,13.406408230463663,0,7.365200002988179,0,7.675720016161601,0.039771794220000004,16.331266562143963,0.6418859999999998,112.31897926330566,0.00696,6.211141188939412,72.566468,0,530.3484547932943,2833.19879,2142.1298828124995,332.4653820499434,399.8500111897786,412.91934911527676,0.4235330770413081,0.69620445,0.05585009977221489,0.01213918424,0.012325336147720614,0.005237125079999999,12.574399709701538,4.765373612,3.9227087100346885,3.5146260000000002,14.48120085398356,1.864816,0.19101102029283842,0.055097029820000004,18.430399894714355,0,0.32671601325273514,0.734596912,0,0,0.03601400088518858,0.08092764940000002,0.0033341898621680834,0.00612516598,430.52797953287757,8.891619761250919,90.86795269877419,108.71145546212844,10.407641792481902,18.684220895851503,-0.25583511908208634,52.160804430643715,5.3124519999999995,5506.693504744713,0,9.039101957265908e-4,0.00464,0.6174110074838003,0.031088,0.003945810002430032,0.004698000000000001 +2164,0,0,2.312225221349885,-0,2.74994788648813,11.152899742126465,0.6273413333333333,0.42024819552898407,0.14109733333333335,139.71100616455078,3.3619384306666666,13.25570821762085,0,7.324459989865621,0,7.660959959030151,0.03931464716000001,16.017067193984985,0.6345079999999998,111.1659787495931,0.00688,6.203901092211406,71.73237066666667,0,529.8664499918619,2800.6332866666667,2139.279846191406,331.7789696206705,399.3630116780599,411.17657432129045,0.41912208249171573,0.6882021,0.05387659960736831,0.011999653386666666,0.011440733525281152,0.00517692824,12.456899563471476,4.710599202666667,3.884938657283783,3.474228,14.362600723902384,1.8433813333333333,0.1883190174897512,0.05446373062666667,18.359299818674724,0,0.3233650078376134,0.7261532693333334,0,0,0.035648301554222904,0.07999744653333335,0.003296049874431143,0.006054761773333333,430.89997863769526,8.880093794872165,90.78220956585216,107.91397926504334,10.350621562844115,18.62948497706473,-0.25583511908208634,52.362104415893555,5.251389333333333,5452.1146248571395,0,8.481161882324765e-4,0.004586666666666667,0.6085299998521805,0.030730666666666667,0.003802830004133284,0.0046440000000000006 +2165,0,0,2.2232934820671972,-0,2.7343661701723843,11.17899982134501,0.6200466666666666,0.40394218266010284,0.13945666666666667,139.93700536092123,3.322846123333333,13.10670804977417,0,7.283960024515788,0,7.6462299426396685,0.038857500100000004,15.708767731984457,0.6271299999999999,110.02597745259602,0.0068,6.1966110070546465,70.89827333333332,0,529.3794708251953,2768.0677833333334,2136.4099121093745,331.09255719139765,398.9020029703776,409.43379952730413,0.41472108165423077,0.68019975,0.05199049940953652,0.011860122533333333,0.01061963119233648,0.0051167313999999995,12.339999596277872,4.655824793333334,3.8471586306889853,3.4338300000000004,14.244600613911947,1.8219466666666666,0.1856690173347791,0.05383043143333334,18.288400332132976,0,0.3200110122561455,0.7177096266666667,0,0,0.03528160136193037,0.07906724366666668,0.003258529856490592,0.005984357566666666,431.2659784952799,8.868567828493411,90.69646643293014,107.11650306795825,10.293601333206325,18.57474905827796,-0.25583511908208634,52.560903549194336,5.1903266666666665,5397.535744969566,0,7.95770164889594e-4,0.004533333333333334,0.599779004851977,0.030373333333333336,0.0036650500066267946,0.00459 +2166,0,0,2.1343617427845096,-0,2.718784453856638,11.20479973157247,0.6127520000000001,0.3882711778084437,0.137816,140.16000366210938,3.283753816,12.959408044815063,0,7.243679960568746,0,7.631519913673401,0.03840035304,15.40626851717631,0.6197519999999999,108.89697901407878,0.006719999999999999,6.1892809470494585,70.06417599999999,0,528.8884938557943,2735.50228,2133.519856770833,330.40614476212477,398.4670054117839,407.6910247333178,0.41032807528972626,0.6721974,0.050187499883274235,0.01172059168,0.009857358876615763,0.005056534559999999,12.223599751790365,4.6010503840000005,3.8093586365381875,3.3934320000000002,14.127000649770102,1.800512,0.18306201820572218,0.05319713224000001,18.21780014038086,0,0.3166520098845164,0.7092659840000001,0,0,0.034914001201589905,0.07813704080000002,0.0032216098625212908,0.00591395336,431.62697855631507,8.857041862114656,90.61072330000812,106.31902687087316,10.236581103568536,18.52001313949119,-0.25583511908208634,52.75710391998291,5.129264,5342.956865081993,0,7.466571599555513e-4,0.0044800000000000005,0.5911560008923212,0.030016,0.0035322699889851115,0.004536000000000001 +2167,0,0,2.0454300035018216,-0,2.7032027375408916,11.230299711227417,0.6054573333333334,0.3732091685136159,0.13617533333333334,140.3810043334961,3.244661508666667,12.813808043797811,0,7.2036300500233965,0,7.616849978764852,0.037943205980000005,15.10956883430481,0.6123739999999999,107.77997970581055,0.00664,6.181920846303304,69.23007866666666,0,528.3925120035807,2702.936776666667,2130.6098632812495,329.7197323328519,398.0570068359375,405.9482499393315,0.40594207495450974,0.66419505,0.04846119942764441,0.011581060826666666,0.009149726790686449,0.00499633772,12.107799768447876,4.546275974666667,3.771538575490316,3.353034,14.010000705718994,1.7790773333333334,0.18049601713816324,0.052563833046666675,18.14740006128947,0,0.31328800817330676,0.7008223413333334,0,0,0.0345455010732015,0.07720683793333336,0.0031852499038601914,0.005843549153333333,431.9819768269856,8.8455158957359,90.52498016708608,105.52155067378806,10.179560873930749,18.46527722070442,-0.25583511908208634,52.95080439249674,5.068201333333334,5288.37798519442,0,7.0057814688577e-4,0.004426666666666667,0.582658996184667,0.029658666666666667,0.0034043200042409203,0.004482000000000001 +2168,0,0,1.9564982642191335,-0,2.6876210212251457,11.255399703979492,0.5981626666666667,0.3587331647674243,0.13453466666666666,140.59900410970053,3.2055692013333332,12.66980791091919,0,7.163809935251872,0,7.602199951807658,0.03748605892,14.818469524383545,0.6049959999999999,106.67498016357422,0.00656,6.174510836601257,68.39598133333332,0,527.8915201822916,2670.371273333333,2127.6698608398433,329.03331990357907,397.67201232910156,404.2054751453452,0.40156207730372745,0.6561927,0.04681039943049351,0.011441529973333333,0.008492824776719013,0.004936140879999999,11.992499669392904,4.4915015653333334,3.733688533306122,3.312636,13.893500725428263,1.7576426666666665,0.17796801775693893,0.051930533853333335,18.077399730682373,0,0.3099170078833898,0.6923786986666667,0,0,0.0341782004882892,0.07627663506666668,0.003149409875428925,0.005773144946666666,432.3329772949218,8.833989929357147,90.43923703416407,104.72407447670297,10.12254064429296,18.410541301917647,-0.25583511908208634,53.14200369517008,5.007138666666666,5233.799105306846,0,6.573461384202043e-4,0.004373333333333333,0.5742660065491995,0.029301333333333332,0.0032810100043813386,0.0044280000000000005 +2169,0,0,1.8675665249364457,-0,2.6720393049094,11.280199527740479,0.5908680000000001,0.34481915334860486,0.132894,140.81400426228842,3.1664768939999997,12.527507861455282,0,7.124219973882039,0,7.587590018908183,0.037028911860000006,14.532870133717855,0.5976179999999999,105.58097902933757,0.00648,6.167060732841492,67.56188399999999,0,527.3865305582682,2637.80577,2124.729838053385,328.3469074743062,397.3130060831706,402.4627003513589,0.3971860781311989,0.64819035,0.04523139943679174,0.01130199912,0.007883003175569078,0.00487594404,11.877699613571167,4.436727156000001,3.695818523565928,3.272238,13.777400493621826,1.736208,0.17547901843984923,0.05129723466,18.007500012715656,0,0.306543009976546,0.683935056,0,0,0.033811901385585465,0.07534643220000001,0.0031140598972948887,0.00570274074,432.6779810587565,8.822463962978393,90.35349390124203,103.92659827961786,10.065520414655172,18.355805383130875,-0.25583511908208634,53.33060359954834,4.946076,5179.2202254192725,0,6.16783140382419e-4,0.00432,0.5659750004609426,0.028944,0.0031621799959490695,0.004374000000000001 +2170,0,0,1.7786347856537579,-0,2.6564575885936534,11.304699818293253,0.5835733333333334,0.331446148455143,0.13125333333333333,141.026003519694,3.1273845866666665,12.386807759602865,0,7.084850072860718,0,7.573010007540385,0.0365717648,14.252670605977377,0.5902399999999999,104.49798075358073,0.0063999999999999994,6.159570654233296,66.72778666666666,0,526.8765462239584,2605.2402666666667,2121.759847005208,327.6604950450333,396.9780095418294,400.71992555737256,0.3928120732307434,0.640188,0.04371829982846975,0.011162468266666666,0.007316881480316321,0.0048157472,11.763399839401245,4.381952746666667,3.6579285065333047,3.23184,13.661900599797567,1.7147733333333333,0.1730280158420404,0.05066393546666667,17.937999884287517,0,0.3031660094857216,0.6754914133333334,0,0,0.03344440087676048,0.07441622933333335,0.003077769884839654,0.005632336533333333,433.0189819335937,8.8109379965996375,90.26775076832001,103.12912208253277,10.008500185017382,18.301069464344103,-0.25583511908208634,53.51660346984863,4.885013333333333,5124.6413455317,0,5.78726117964834e-4,0.004266666666666667,0.557805006702741,0.028586666666666666,0.003047659993171692,0.004320000000000001 +2171,0,0,1.68970304637107,-0,2.640875872277907,11.32889986038208,0.5762786666666667,0.3185931493838628,0.12961266666666665,141.23600133260092,3.0882922793333334,12.247707684834799,0,7.045700033505757,0,7.558450023333232,0.03611461774,13.977771202723185,0.5828619999999999,103.4269790649414,0.006319999999999999,6.152040521303813,65.89368933333333,0,526.3625539143881,2572.6747633333334,2118.779866536458,326.97408261576044,396.6690088907878,398.97715076338625,0.3884420692920685,0.6321856499999999,0.04227039994051059,0.011022937413333333,0.006791339915556212,0.004755550359999999,11.649499734242758,4.327178337333334,3.6199983954429626,3.191442,13.546700636545816,1.6933386666666665,0.1706120160718759,0.05003063627333334,17.86870002746582,0,0.29978301127751666,0.6670477706666668,0,0,0.03307590074837208,0.07348602646666669,0.003041999957834681,0.005561932326666666,433.3539784749348,8.799412030220882,90.18200763539798,102.33164588544767,9.951479955379595,18.24633354555733,-0.25583511908208634,53.700103759765625,4.823950666666667,5070.062465644127,0,5.43018114209796e-4,0.004213333333333334,0.549754003683726,0.028229333333333332,0.002937300014309585,0.004266000000000001 +2172,0,0,1.600771307088382,-0,2.625294155962161,11.352799733479818,0.568984,0.30623913804690045,0.127972,141.44400278727213,3.049199972,12.110207557678223,0,7.006770014762878,0,7.543930013974507,0.035657470680000004,13.70807178815206,0.5754839999999999,102.36697959899902,0.00624,6.1444705327351885,65.059592,0,525.8445688883463,2540.10926,2115.779866536458,326.28767018648756,396.3830057779948,397.23437596939993,0.38407406707604724,0.6241833,0.040884499438107014,0.01088340656,0.006303468563904365,0.00469535352,11.536099751790365,4.272403928,3.5820484161376953,3.151044,13.432100693384806,1.671904,0.16823201502362886,0.049397337080000006,17.79959996541341,0,0.29639500627915066,0.658604128,0,0,0.03270640131086111,0.07255582360000001,0.003006709875383725,0.005491528119999999,433.6849797566731,8.787886063842128,90.09626450247596,101.53416968836258,9.894459725741806,18.19159762677056,-0.25583511908208634,53.88110319773356,4.762888,5015.483585756553,0,5.095151136629283e-4,0.0041600000000000005,0.5418199946482977,0.027872,0.002830950000012914,0.0042120000000000005 +2173,0,0,1.5118395678056942,-0,2.6097124396464153,11.376399834950766,0.5616893333333334,0.29436412702004117,0.12633133333333335,141.64800516764322,3.0101076646666667,11.974307457605997,0,6.96805997689565,0,7.529429992039998,0.03520032362,13.443572282791138,0.5681059999999999,101.31798108418782,0.00616,6.1368604103724165,64.22549466666666,0,525.3215840657552,2507.5437566666665,2112.75986735026,325.60125775721474,396.1220016479492,395.4916011754136,0.37970906992753345,0.61618095,0.03955529940625032,0.010743875706666666,0.005850557199058433,0.0046351566799999995,11.423199733098349,4.2176295186666675,3.5440683563550315,3.110646,13.317800680796305,1.6504693333333333,0.1658870168030262,0.048764037886666674,17.73080015182495,0,0.29300400863091153,0.6501604853333334,0,0,0.032336000353097916,0.07162562073333334,0.002971879885687182,0.005421123913333333,434.0099792480468,8.776360097463375,90.01052136955394,100.73669349127749,9.837439496104018,18.136861707983787,-0.25583511908208634,54.05950355529785,4.701825333333333,4960.904705868979,0,4.780811019979107e-4,0.0041066666666666665,0.5340010027090708,0.027514666666666666,0.0027284499956294894,0.004158000000000001 +2174,0,0,1.4229078285230061,-0,2.594130723330669,11.39959979057312,0.5543946666666667,0.28295112897952396,0.12469066666666667,141.85000356038412,2.971015357333333,11.83990732828776,0,6.929569999376933,0,7.514960010846456,0.034743176560000005,13.183972915013632,0.5607279999999999,100.2799809773763,0.0060799999999999995,6.129220366477966,63.39139733333332,0,524.7945988972982,2474.978253333333,2109.729838053385,324.91484532794186,395.88500722249347,393.7488263814273,0.37534507115681964,0.6081786,0.038279999047517776,0.010604344853333333,0.005430095984290044,0.00457495984,11.31059980392456,4.162855109333334,3.5060583353042603,3.0702480000000003,13.204000552495321,1.6290346666666666,0.16357701644301414,0.04813073869333334,17.66230010986328,0,0.2896090125044187,0.6417168426666667,0,0,0.031964700358609356,0.07069541786666668,0.0029374899071020386,0.0053507197066666665,434.33098093668616,8.76483413108462,89.92477823663191,99.93921729419239,9.78041926646623,18.082125789197015,-0.25583511908208634,54.23540369669596,4.640762666666666,4906.3258259814065,0,4.485870958887972e-4,0.004053333333333333,0.526296004652977,0.027157333333333332,0.0026296799769625068,0.004104000000000001 +2175,0,0,1.3339760892403183,-0,2.5785490070149226,11.422499736150106,0.5471,0.2719811250766118,0.12305,142.05000432332358,2.93192305,11.70700732866923,0,6.891300002733867,0,7.500530004501343,0.0342860295,12.929373423258463,0.5533499999999999,99.25228055318196,0.006,6.121530254681905,62.55729999999999,0,524.2636082967123,2442.41275,2106.6798706054683,324.228432898669,395.67200469970703,392.006051587441,0.370983066658179,0.60017625,0.03705849995215734,0.010464814,0.005039784824475646,0.004514763,11.19849975903829,4.1080807,3.4680182735125222,3.02985,13.090600570042929,1.6076000000000001,0.16130001718799272,0.0474974395,17.59400002161662,0,0.28621000548203784,0.6332732000000001,0,0,0.03159260035802921,0.06976521500000002,0.002903499931562692,0.0052803155,434.6469802856445,8.753308164705864,89.83903510370988,99.14174109710729,9.723399036828443,18.027389870410246,-0.25583511908208634,54.40870316823324,4.5797,4851.746946093834,0,4.209140897728503e-4,0.004,0.5187030037244161,0.026799999999999997,0.002534479989359776,0.004050000000000001 +2176,0,0,1.2450443499576305,-0,2.5629672906991767,11.445099751154581,0.5398053333333334,0.2614371180534363,0.12140933333333334,142.2460034688314,2.892830742666667,11.575607140858969,0,6.853240052858989,0,7.486119985580444,0.03382888244,12.679673910140991,0.5459719999999999,98.23548189798991,0.00592,6.113810102144877,61.72320266666666,0,523.7276153564453,2409.8472466666667,2103.6098225911455,323.5420204693961,395.4830067952474,390.2632767934547,0.366621067126592,0.5921738999999999,0.03588819938401381,0.010325283146666666,0.004677433675775926,0.0044545661599999994,11.086699644724527,4.053306290666667,3.4299482504526773,2.989452,12.977600495020548,1.5861653333333334,0.15905301521221796,0.04686414030666667,17.526000022888184,0,0.2828060140212377,0.6248295573333333,0,0,0.031221801104644935,0.06883501213333335,0.0028698898774261274,0.005209911293333333,434.9579747517903,8.74178219832711,89.75329197078786,98.3442649000222,9.666378807190654,17.972653951623474,-0.25583511908208634,54.57950369517008,4.518637333333333,4797.16806620626,0,3.949480887968093e-4,0.003946666666666667,0.5112210065126419,0.026442666666666666,0.0024427400009396174,0.003996 +2177,0,0,1.1561126106749424,-0,2.547385574383431,11.467399915059408,0.5325106666666667,0.2513031139969826,0.11976866666666668,142.4410031636556,2.8537384353333333,11.445707162221273,0,6.8153899510701494,0,7.471740047136943,0.03337173538,12.434574365615845,0.5385939999999999,97.2290808359782,0.00584,6.10605001449585,60.889105333333326,0,523.1876373291016,2377.2817433333335,2100.50986735026,322.85560804012323,395.31700388590497,388.52050199946837,0.3622570683558782,0.58417155,0.03476410017659267,0.010185752293333333,0.004341062740422785,0.00439436932,10.975299835205078,3.9985318813333337,3.391848166783651,2.9490540000000003,12.86500064531962,1.5647306666666667,0.15684001644452414,0.04623084111333334,17.458099842071533,0,0.2793990100423495,0.6163859146666667,0,0,0.030852001005162794,0.06790480926666667,0.0028352399240247905,0.005139507086666666,435.2639795939127,8.730256231948356,89.66754883786584,97.5467887029371,9.609358577552866,17.917918032836702,-0.25583511908208634,54.747703552246094,4.457574666666667,4742.589186318686,0,3.705860775274535e-4,0.0038933333333333333,0.5038460046052933,0.026085333333333332,0.002354319983472427,0.003942 +2178,0,0,1.0671808713922544,-0,2.5318038580676845,11.489399751027426,0.525216,0.24156110982100168,0.11812800000000001,142.63200505574545,2.814646128,11.317207018534342,0,6.777760028839111,0,7.457389950752258,0.03291458832,12.19427482287089,0.5312159999999999,96.23318099975586,0.0057599999999999995,6.098250031471252,60.05500799999999,0,522.6436462402344,2344.7162399999997,2097.399820963541,322.1691956108504,395.1740086873372,386.77772720548205,0.35789306710163754,0.5761691999999999,0.03368659938375155,0.01004622144,0.004028801806271076,0.00433417248,10.864299774169922,3.943757472,3.353728195031484,2.908656,12.752800544102987,1.543296,0.15465601409475008,0.045597541920000005,17.390600045522053,0,0.27598700920740765,0.6079422720000001,0,0,0.03048120082045595,0.06697460640000001,0.002800999927179267,0.00506910288,435.5649795532226,8.7187302655696,89.5818057049438,96.749312505852,9.552338347915079,17.86318211404993,-0.25583511908208634,54.91350301106771,4.3965119999999995,4688.010306431113,0,3.477270753743748e-4,0.00384,0.49657899886369705,0.025727999999999997,0.002269109982686738,0.0038880000000000004 +2179,0,0,0.9782491321095667,-0,2.516222141751938,11.51099967956543,0.5179213333333333,0.23219810674587885,0.11648733333333335,142.82100423177084,2.7755538206666666,11.190306901931763,0,6.740339994430542,0,7.443060040473938,0.032457441260000004,11.958475351333618,0.5238379999999999,95.2474816640218,0.00568,6.090409954388936,59.220910666666654,0,522.0946578979492,2312.1507366666665,2094.269836425781,321.48278318157753,395.0540059407552,385.03495241149574,0.35353006422519684,0.56816685,0.0326532997811834,0.009906690586666666,0.0037389209804435572,0.00427397564,10.753599882125854,3.888983062666667,3.3155681093533835,2.8682580000000004,12.641000588734945,1.5218613333333335,0.15250001475214958,0.04496424272666667,17.323299725850422,0,0.27257100741068524,0.5994986293333333,0,0,0.030109400860965252,0.06604440353333335,0.0027671598751718798,0.004998698673333333,435.86197916666663,8.707204299190845,89.49606257202177,95.9518363087669,9.49531811827729,17.80844619526316,-0.25583511908208634,55.07660357157389,4.335449333333333,4633.4314265435405,0,3.262790705775842e-4,0.0037866666666666665,0.48941700408856076,0.025370666666666666,0.002186989993788302,0.0038340000000000006 +2180,0,0,0.8893173928268787,-0,2.5006404254361922,11.532399733861288,0.5106266666666667,0.22319810216625532,0.11484666666666668,143.0070037841797,2.7364615133333334,11.064706802368164,0,6.703130046526591,0,7.428769946098328,0.0320002942,11.727175871531168,0.5164599999999999,94.27198092142741,0.0056,6.082529902458191,58.38681333333332,0,521.5416768391927,2279.5852333333332,2091.1198323567705,320.79637075230465,394.9570058186849,383.2921776175094,0.34916606545448303,0.5601645,0.03165969951078296,0.009767159733333333,0.0034698201925493777,0.0042137788,10.64329981803894,3.8342086533333335,3.2773780822753906,2.8278600000000003,12.529500563939413,1.5004266666666668,0.150375014791886,0.04433094353333334,17.256199677785236,0,0.26915401220321655,0.5910549866666667,0,0,0.02973670093342662,0.06511420066666668,0.0027336799345600107,0.004928294466666666,436.15398152669263,8.695678332812092,89.41031943909975,95.15436011168181,9.438297888639502,17.753710276476387,-0.25583511908208634,55.237304051717125,4.2743866666666666,4578.852546655967,0,3.061540677056958e-4,0.0037333333333333333,0.48235899955034256,0.025013333333333332,0.0021078400313854218,0.0037800000000000004 +2181,0,0,0.8003856535441909,-0,2.4850587091204464,11.553399880727133,0.503332,0.21454709892471632,0.11320600000000001,143.19000371297201,2.6973692060000003,10.940606753031412,0,6.666119972864787,0,7.4145000378290815,0.031543147140000005,11.500176270802816,0.5090819999999999,93.30658276875813,0.00552,6.074609796206157,57.55271599999999,0,520.9836883544922,2247.01973,2087.949869791666,320.1099583230318,394.8820063273112,381.5494028235231,0.3448010633389155,0.5521621499999999,0.03070399972299735,0.00962762888,0.003220019474004706,0.00415358196,10.533199707667032,3.7794342440000004,3.239158034324646,2.787462,12.418400526046753,1.478992,0.14828001707792282,0.04369764434000001,17.18940003712972,0,0.2657340044776599,0.582611344,0,0,0.02936320099979639,0.0641839978,0.0027005599113181233,0.004857890259999999,436.4409815470377,8.684152366433336,89.32457630617773,94.35688391459672,9.381277659001714,17.698974357689615,-0.25583511908208634,55.395402908325195,4.213324,4524.273666768393,0,2.8727106594791013e-4,0.00368,0.47540299842755,0.024655999999999997,0.002031560017106434,0.003726 +2182,0,0,0.711453914261503,-0,2.4694769928047,11.574099779129028,0.49603733333333333,0.2062320920328299,0.11156533333333335,143.3710034688314,2.6582768986666667,10.817906697591146,0,6.629319985707601,0,7.400259931882222,0.031086000080000002,11.277576764424643,0.5017039999999999,92.35108184814453,0.0054399999999999995,6.066649675369263,56.71861866666666,0,520.4216868082682,2214.4542266666667,2084.75986735026,319.42354589375896,394.8310038248698,379.8066280295368,0.34043606370687485,0.5441598,0.029786699606726568,0.009488098026666666,0.0029881287870618203,0.00409338512,10.423499902089437,3.724659834666667,3.2009080052375793,2.7470640000000004,12.307700475056967,1.4575573333333334,0.1462110144396623,0.043064345146666676,17.12280003229777,0,0.2623100106914838,0.5741677013333334,0,0,0.028988900904854138,0.06325379493333334,0.0026677699061110616,0.004787486053333333,436.7239786783854,8.672626400054583,89.2388331732557,93.55940771751162,9.324257429363925,17.644238438902843,-0.25583511908208634,55.55090300242106,4.152261333333334,4469.69478688082,0,2.6955305656883866e-4,0.003626666666666667,0.4685479998588562,0.024298666666666666,0.001958049979293719,0.0036720000000000004 +2183,0,0,0.6225221749788151,-0,2.4538952764889537,11.594499826431274,0.4887426666666667,0.19823909054199854,0.10992466666666667,143.54900232950845,2.619184591333333,10.696506579717001,0,6.592730005582173,0,7.38604998588562,0.030628853020000003,11.059277216593424,0.49432599999999993,91.40538279215495,0.00536,6.058659593264262,55.884521333333325,0,519.855712890625,2181.8887233333335,2081.549865722656,318.7371334644861,394.8009999593099,378.06385323555054,0.3360700656970342,0.5361574499999999,0.028905999691536028,0.009348567173333332,0.0027728681452572346,0.00403318828,10.314099709192911,3.6698854253333337,3.1626279751459756,2.7066660000000002,12.197300354639689,1.4361226666666669,0.14416801432768503,0.042431045953333336,17.056399822235107,0,0.2588820109764735,0.5657240586666666,0,0,0.028613900610556204,0.062323592066666676,0.002635279903188348,0.004717081846666666,437.00198109944654,8.661100433675827,89.15309004033368,92.76193152042651,9.267237199726138,17.58950252011607,-0.25583511908208634,55.703902880350746,4.091198666666666,4415.115906993246,0,2.529280536691658e-4,0.0035733333333333333,0.4617920021216075,0.023941333333333332,0.0018871899810619652,0.003618 +2184,0,0,0.5335904356961272,-0,2.4383135601732078,11.614499727884928,0.48144800000000004,0.19055608784159025,0.108284,143.72500228881836,2.580092284,10.576506535212198,0,6.556340018908183,0,7.3718700011571245,0.030171705960000003,10.845077594121298,0.48694799999999994,90.46948305765788,0.00528,6.050629576047261,55.05042399999999,0,519.28472900390625,2149.32322,2078.3098551432286,318.0507210352132,394.7940038045247,376.3210784415642,0.33170006175835925,0.5281551,0.02805769971261422,0.009209036319999999,0.0025730375782586634,0.00397299144,10.204999685287476,3.615111016,3.1243178844451904,2.666268,12.08720072110494,1.4146880000000002,0.14215301225582758,0.041797746760000004,16.990299542744953,0,0.2554520045717557,0.557280416,0,0,0.028238301165401936,0.06139338920000001,0.002601679899574568,0.004646677639999999,437.2759806315104,8.649574467297073,89.06734690741165,91.96445532334143,9.210216970088348,17.5347666013293,-0.25583511908208634,55.8544028600057,4.030136,4360.537027105674,0,2.3732905174256302e-4,0.00352,0.45513400187095004,0.023584,0.0018189099985950936,0.0035640000000000003 +2185,0,0,0.44465869641343936,-0,2.422731843857462,11.634299675623575,0.47415333333333337,0.18317108352979025,0.10664333333333334,143.89800516764322,2.540999976666667,10.457906405131022,0,6.520150025685628,0,7.357709964116414,0.029714558900000004,10.634877999623617,0.47956999999999994,89.54318173726399,0.0052,6.042559464772542,54.21632666666666,0,518.7097345987955,2116.757716666667,2075.0598144531245,317.3643086059403,394.8090006510417,374.5783036475779,0.3273300627867381,0.5201527499999999,0.02724259967605273,0.009069505466666666,0.0023875570429178574,0.0039127946,10.096199830373129,3.560336606666667,3.0859779119491577,2.62587,11.977500518163046,1.3932533333333335,0.1401630106071631,0.04116444756666667,16.924400011698406,0,0.25202200561761856,0.5488367733333334,0,0,0.027864000915239256,0.06046318633333334,0.0025684399297460914,0.004576273433333333,437.5449778238932,8.638048500918318,88.98160377448963,91.16697912625634,9.15319674045056,17.480030682542527,-0.25583511908208634,56.002403259277344,3.9690733333333332,4305.9581472181,0,2.226920466152175e-4,0.003466666666666667,0.4485719973842303,0.023226666666666666,0.0017530899979950239,0.00351 +2186,0,0,0.35572695713075153,-0,2.4071501275417155,11.65369979540507,0.4668586666666667,0.17607307930787405,0.10500266666666667,144.0680046081543,2.5019076693333333,10.340606530507406,0,6.4841599861780805,0,7.343590100606282,0.029257411840000004,10.428778489430746,0.47219199999999995,88.62638282775879,0.0051199999999999996,6.034449418385823,53.38222933333333,0,518.1307500203451,2084.1922133333333,2071.779866536458,316.6778961766675,394.84700266520184,372.8355288535916,0.3229590604702632,0.5121503999999999,0.026459299648801487,0.008929974613333334,0.002215376511837045,0.00385259776,9.987579663594564,3.505562197333334,3.0476078391075134,2.585472,11.86810048421224,1.3718186666666667,0.13819601510961851,0.04053114837333334,16.858699957529705,0,0.2485870085656643,0.5403931306666667,0,0,0.027491000791390736,0.059532983466666675,0.00253551994683221,0.004505869226666666,437.80898284912104,8.626522534539562,88.89586064156761,90.36950292917123,9.096176510812773,17.42529476375576,-0.25583511908208634,56.14780298868815,3.9080106666666667,4251.379267330526,0,2.0895804482279345e-4,0.0034133333333333338,0.4421039968729019,0.022869333333333332,0.001689660013653338,0.003456 +2187,0,0,0.2667952178480637,-0,2.391568411225969,11.672899881998697,0.4595640000000001,0.16924907639622688,0.10336200000000001,144.23600387573242,2.4628153619999997,10.22460643450419,0,6.448370059331258,0,7.329490025838216,0.028800264780000005,10.226578871409098,0.46481399999999995,87.7189826965332,0.005039999999999999,6.026309331258138,52.548131999999995,0,517.5477574666342,2051.62671,2068.48984781901,315.9914837473946,394.906000773112,371.0927540596053,0.3185870597759883,0.50414805,0.025703699483225744,0.00879044376,0.002055546035990119,0.0037924009200000003,9.879259665807089,3.4507877880000004,3.0092177987098694,2.545074,11.759000619252523,1.350384,0.1362550122042497,0.03989784918000001,16.79330015182495,0,0.24515000730752945,0.5319494880000001,0,0,0.02711710085471471,0.05860278060000001,0.0025029198926252625,0.0044354650199999995,438.06898244222,8.614996568160809,88.81011750864558,89.57202673208613,9.039156281174984,17.370558844968986,-0.25583511908208634,56.29070281982422,3.846948,4196.800387442953,0,1.9607104089421531e-4,0.0033600000000000006,0.4357310011982918,0.022512,0.0016285299983186026,0.003402 +2188,0,0,0.17786347856537565,-0,2.3759866949102233,11.691699743270874,0.4522693333333334,0.1626910741130511,0.10172133333333333,144.40100479125977,2.4237230546666666,10.110006332397461,0,6.4127800067265825,0,7.315410017967224,0.028343117720000005,10.028279383977255,0.45743599999999995,86.82088279724121,0.004959999999999999,6.018119255701701,51.71403466666666,0,516.9597803751627,2019.0612066666667,2065.1698201497393,315.30507131812175,394.9869969685872,369.349979265619,0.3142140557368596,0.4961456999999999,0.02497689953694741,0.008650912906666667,0.0019071956436770658,0.00373220408,9.771179914474487,3.3960133786666673,2.9707977970441184,2.504676,11.650200446446737,1.3289493333333335,0.1343390109638373,0.03926454998666667,16.728000005086262,0,0.24171100681026778,0.5235058453333333,0,0,0.02674230079477032,0.05767257773333334,0.0024706199183128774,0.004365060813333333,438.3249842325846,8.603470601782053,88.72437437572356,88.77455053500104,8.982136051537196,17.315822926182214,-0.25583511908208634,56.431002616882324,3.7858853333333333,4142.2215075553795,0,1.839790384110529e-4,0.003306666666666667,0.42944899946451187,0.022154666666666666,0.001569599990034476,0.003348 +2189,0,0,0.08893173928268783,-0,2.3604049785944774,11.710099617640177,0.44497466666666674,0.15638607243696848,0.10008066666666666,144.56300354003906,2.3846307473333335,9.996576229731241,0,6.377390027046204,0,7.301369984944661,0.027885970660000006,9.833709637324015,0.45005799999999996,85.93208440144856,0.00488,6.009899179140727,50.87993733333333,0,516.3677851359049,1986.4957033333335,2061.8298136393223,314.6186588888489,395.08899688720703,367.6072044716327,0.30984005828698474,0.4881433499999999,0.024277599683652323,0.008511382053333334,0.001769495216043045,0.00367200724,9.663349707921347,3.3412389693333338,2.9323477347691855,2.464278,11.54170044263204,1.3075146666666668,0.13244501128792763,0.038631250793333335,16.663000106811523,0,0.23827100793520611,0.5150622026666667,0,0,0.02636690080786745,0.056742374866666674,0.0024385999616545937,0.0042946566066666665,438.57597859700513,8.5919446354033,88.63863124280152,87.97707433791595,8.925115821899407,17.261087007395442,-0.25583511908208634,56.568902333577476,3.7248226666666664,4087.642627667806,0,1.7263303501143432e-4,0.0032533333333333338,0.4232580016056697,0.021797333333333335,0.0015128100058063865,0.003294 +2190,0,0,-0,-0,2.344823262278731,11.728299856185913,0.43768000000000007,0.1503260682026545,0.09844,144.72300338745117,2.34553844,9.884466250737509,0,6.342200001080831,0,7.287350058555603,0.027428823600000006,9.64286994934082,0.44267999999999996,85.05228360493977,0.0048,6.001639048258464,50.04584,0,515.7718022664388,1953.9302000000002,2058.459798177083,313.93224645957605,395.21299997965497,365.8644296776464,0.3054650550087293,0.48014099999999993,0.02360199981679519,0.0083718512,0.0016416848423735548,0.0036118104,9.55575974782308,3.2864645600000006,2.8938777248064675,2.42388,11.433600425720215,1.2860800000000001,0.1305730106929938,0.0379979516,16.598299980163574,0,0.2348290098210176,0.50661856,0,0,0.02599070081487298,0.05581217200000001,0.0024068399410073957,0.0042242524,438.8229827880859,8.580418669024544,88.5528881098795,87.17959814083085,8.86809559226162,17.20635108860867,-0.25583511908208634,56.70410283406576,3.66376,4033.063747780233,0,1.6198603528512953e-4,0.0032000000000000006,0.4171560009320577,0.02144,0.0014580800003993015,0.00324 +2191,0,0,-0,-0,2.3292415459629847,11.7461998462677,0.4303853333333334,0.144501065214475,0.09679933333333333,144.8800048828125,2.3064461326666668,9.773616075515747,0,6.30718998114268,0,7.273360013961792,0.026971676540000007,9.455670436223349,0.43530199999999997,84.1815840403239,0.004719999999999999,5.993349075317383,49.211742666666666,0,515.1708119710287,1921.364696666667,2055.0798034667964,313.2458340303032,395.35900115966797,364.1216548836601,0.30108705163002014,0.47213864999999994,0.022949099851151306,0.008232320346666667,0.001523054486218219,0.0035516135600000003,9.448379755020142,3.231690150666667,2.855377654234568,2.383482,11.325700521469116,1.2646453333333334,0.12872501338521639,0.03736465240666667,16.53370014826457,0,0.23138400663932165,0.4981749173333334,0,0,0.025613900739699602,0.05488196913333334,0.0023739199386909604,0.004153848193333333,439.06498209635413,8.56889270264579,88.46714497695748,86.38212194374576,8.811075362623832,17.1516151698219,-0.25583511908208634,56.83690230051676,3.6026973333333334,3978.4848678926596,0,1.5199703314768462e-4,0.0031466666666666674,0.411141999065876,0.021082666666666666,0.0014053199944707255,0.003186 +2192,0,0,-0,-0,2.313659829647239,11.763699690500895,0.4230906666666667,0.13890106230974197,0.09515866666666667,145.03400293986002,2.267353825333333,9.664005915323893,0,6.272379954655965,0,7.259390076001485,0.026514529480000007,9.272040764490763,0.42792399999999997,83.31978352864583,0.00464,5.985008875528972,48.377645333333334,0,514.5658264160156,1888.7991933333335,2051.67984008789,312.5594216010303,395.5059992472331,362.37888008967377,0.29670805235703784,0.46413629999999995,0.022320099951078493,0.008092789493333334,0.0014129441794163238,0.0034914167200000004,9.341229915618896,3.176915741333334,2.816857635974884,2.343084,11.218100468317667,1.2432106666666667,0.1268980155388514,0.03673135321333334,16.46940024693807,0,0.22793800756335258,0.4897312746666667,0,0,0.025236600854744513,0.05395176626666667,0.00234131992328912,0.004083443986666667,439.303975423177,8.557366736267035,88.38140184403545,85.58464574666066,8.754055132986043,17.096879251035126,-0.25583511908208634,56.967102686564125,3.5416346666666665,3923.9059880050863,0,1.4262303132757856e-4,0.003093333333333334,0.4052150025963783,0.02072533333333333,0.0013544799973412107,0.003132 +2193,0,0,-0,-0,2.298078113331493,11.78089968363444,0.41579600000000005,0.13351806129018465,0.093518,145.18600209554037,2.228261518,9.555615981419882,0,6.237770040829976,0,7.245459953943889,0.026057382420000004,9.091931263605753,0.420546,82.46678479512532,0.00456,5.976648807525635,47.543547999999994,0,513.9578297932943,1856.2336900000003,2048.2498270670567,311.8730091717575,395.63600158691406,360.63610529568746,0.2923280547062556,0.4561339499999999,0.0217137997969985,0.00795325864,0.0013107438668763887,0.00343121988,9.23427971204122,3.1221413320000004,2.7783175905545554,2.302686,11.110700527826944,1.2217760000000002,0.1250920140494903,0.036098054020000006,16.4052996635437,0,0.22449000800649324,0.4812876320000001,0,0,0.024858700732390087,0.053021563400000006,0.002308999925541381,0.00401303978,439.5369847615559,8.54584076988828,88.29565871111342,84.78716954957557,8.697034903348255,17.042143332248354,-0.25583511908208634,57.094902674357094,3.480572,3869.327108117513,0,1.3382702794236442e-4,0.0030400000000000006,0.39937300235033035,0.020368,0.0013054699811618775,0.003078 +2194,0,0,-0,-0,2.2824963970157466,11.797899723052979,0.4085013333333334,0.12834405899047852,0.09187733333333334,145.33500289916992,2.1891692106666665,9.448455890019735,0,6.20333993434906,0,7.2315400044123335,0.025600235360000004,8.915271441141764,0.413168,81.6224848429362,0.00448,5.968258738517761,46.70945066666666,0,513.3478317260742,1823.6681866666668,2044.79985555013,311.1865967424846,395.75099690755206,358.89333050170114,0.2879480520884196,0.4481315999999999,0.021126899868249893,0.007813727786666667,0.001215893590900426,0.00337102304,9.127539793650309,3.0673669226666673,2.7397575974464417,2.262288,11.003700415293375,1.2003413333333335,0.12330601178109646,0.035464754826666674,16.341400146484375,0,0.2210400067269802,0.4728439893333334,0,0,0.024482500584175188,0.05209136053333334,0.0022769699377628663,0.003942635573333333,439.7669779459635,8.534314803509526,88.2099155781914,83.98969335249046,8.640014673710466,16.987407413461582,-0.25583511908208634,57.22000281016032,3.419509333333333,3814.7482282299397,0,1.2557402806123719e-4,0.002986666666666667,0.3936159983277321,0.020010666666666666,0.001258240023162216,0.0030239999999999998 +2195,0,0,-0,-0,2.2669146807000002,11.814399719238281,0.4012066666666667,0.1233710553497076,0.09023666666666667,145.48100153605142,2.1500769033333333,9.342485825220743,0,6.1690999666849775,0,7.217659989992778,0.025143088300000005,8.741971890131632,0.40579,80.7867857615153,0.004399999999999999,5.959858655929565,45.87535333333333,0,512.7348454793295,1791.1026833333335,2041.3398234049478,310.5001843132117,395.8529968261719,357.15055570771483,0.2835680494705836,0.4401292499999999,0.02056079947700103,0.007674196933333334,0.0011278633319307119,0.0033108262000000003,9.020999749501547,3.0125925133333338,2.7011875907580056,2.22189,10.896900335947672,1.1789066666666668,0.12154001121719678,0.03483145563333334,16.2777001063029,0,0.21759100879232088,0.46440034666666674,0,0,0.024107600872715313,0.05116115766666667,0.002245209936518222,0.0038722313666666665,439.99297841389966,8.522788837130772,88.12417244526938,83.19221715540537,8.582994444072678,16.932671494674814,-0.25583511908208634,57.342702547709145,3.3584466666666666,3760.1693483423664,0,1.1782902523312562e-4,0.002933333333333334,0.38794099539518356,0.01965333333333333,0.0012127099810944249,0.00297 +2196,0,0,-0,-0,2.2513329643842543,11.830699920654297,0.39391200000000004,0.11859005379180114,0.08859600000000001,145.6250025431315,2.110984596,9.23770578702291,0,6.135059952735901,0,7.203800042470296,0.024685941240000005,8.571982304255167,0.398412,79.95968437194824,0.00432,5.95145857334137,45.041256,0,512.1218414306641,1758.5371800000003,2037.8498229980466,309.81377188393884,395.9440002441406,355.4077809137285,0.27918804933627445,0.4321268999999999,0.02001449962457021,0.00753466608,0.0010461731095953535,0.0032506293600000004,8.91465973854065,2.9578181040000002,2.6625975569089255,2.181492,10.790300448735556,1.157472,0.11979401111602783,0.03419815644,16.21430015563965,0,0.2141420083741347,0.4559567040000001,0,0,0.02373210045819481,0.050230954800000005,0.0022136999565797546,0.00380182716,440.2139816284179,8.511262870752017,88.03842931234735,82.39474095832028,8.525974214434891,16.877935575888042,-0.25583511908208634,57.462801933288574,3.297384,3705.590468454793,0,1.105630235542776e-4,0.0028800000000000006,0.38234799603621167,0.019295999999999997,0.0011688400021133323,0.002916 +2197,0,0,-0,-0,2.2357512480685084,11.846699794133505,0.38661733333333337,0.11399405201276143,0.08695533333333334,145.7660026550293,2.0718922886666666,9.134105602900187,0,6.101200024286906,0,7.189970016479492,0.024228794180000006,8.405272483825684,0.391034,79.14108467102051,0.00424,5.943048437436421,44.207158666666665,0,511.5078430175781,1725.9716766666668,2034.3498128255205,309.12735945466596,396.0250015258789,353.6650061197422,0.2748090500632922,0.42412454999999993,0.019484699703752995,0.007395135226666667,9.703588730189949e-4,0.0031904325200000005,8.808509906133017,2.903043694666667,2.6239975094795227,2.141094,10.68410054842631,1.1360373333333333,0.11806501137713592,0.03356485724666667,16.150999863942463,0,0.2106930067141851,0.4475130613333334,0,0,0.023356000892817974,0.04930075193333334,0.0021824299668272338,0.003731422953333333,440.4309768676757,8.499736904373261,87.95268617942531,81.59726476123518,8.468953984797102,16.82319965710127,-0.25583511908208634,57.58040269215902,3.236321333333333,3651.01158856722,0,1.0374402336310595e-4,0.002826666666666667,0.37683599690596264,0.018938666666666666,0.0011265499827762444,0.002862 +2198,0,0,-0,-0,2.220169531752762,11.8622997601827,0.3793226666666667,0.10957604895035426,0.08531466666666668,145.90500259399414,2.0327999813333335,9.031655550003052,0,6.0675199429194135,0,7.176170110702515,0.023771647120000003,8.241742928822836,0.383656,78.33078511555989,0.00416,5.9346383810043335,43.373061333333325,0,510.89284261067706,1693.4061733333335,2030.8398132324216,308.44094702539314,396.0959981282552,351.9222313257559,0.27042805403470993,0.4161221999999999,0.018970600018898647,0.0072556043733333336,9.000066638691351e-4,0.00313023568,8.702549854914347,2.8482692853333336,2.5853874882062278,2.1006959999999997,10.578100363413492,1.1146026666666669,0.11635701109965642,0.03293155805333334,16.088000138600666,0,0.20724300667643547,0.43906941866666677,0,0,0.02297940058633685,0.04837054906666667,0.002149969902044783,0.0036610187466666667,440.6439819335937,8.488210937994507,87.8669430465033,80.79978856415009,8.411933755159314,16.768463738314498,-0.25583511908208634,57.695501963297524,3.1752586666666667,3596.4327086796466,0,8.343504305230454e-6,0.002773333333333334,0.3714029962817828,0.01858133333333333,0.0010857899906113744,0.002808 +2199,0,0,-0,-0,2.2045878154370158,11.877599557240805,0.372028,0.1053300475080808,0.08367400000000001,146.0410016377767,1.9937076740000002,8.930365403493246,0,6.034030079841614,0,7.1623899936676025,0.023314500060000003,8.08133316040039,0.376278,77.5288855234782,0.00408,5.926218350728353,42.53896399999999,0,510.27784729003906,1660.84067,2027.3098042805987,307.75453459612027,396.1579945882161,350.1794565317696,0.26604804893334705,0.4081198499999999,0.01847389992326498,0.00711607352,8.347224647877738e-4,0.0030700388400000003,8.596789836883545,2.7934948760000005,2.546777526537577,2.060298,10.47230052947998,1.0931680000000001,0.11466801042358081,0.032298258860000005,16.025200446446735,0,0.20379500711957613,0.43062577600000007,0,0,0.02260250101486842,0.047440346200000004,0.0021178199482771256,0.00359061454,440.85298156738276,8.476684971615754,87.78119991358128,80.00231236706499,8.354913525521525,16.713727819527726,-0.25583511908208634,57.808101971944176,3.1141959999999997,3541.8538287920733,0,0,0.00272,0.36604899913072586,0.018223999999999997,0.0010464999941177666,0.002754 +2200,0,0,-0,-0,2.18900609912127,11.892599821090698,0.36473333333333335,0.10124804638326168,0.08203333333333335,146.17400232950845,1.9546153666666668,8.8302055199941,0,6.000729997952779,0,7.148639996846517,0.022857353000000004,7.924003521601359,0.3689,76.73508580525716,0.004,5.917798201243083,41.70486666666666,0,509.662846883138,1628.2751666666668,2023.769836425781,307.0681221668474,396.21300252278644,348.43668173778326,0.2616700480381648,0.4001174999999999,0.017993699448804062,0.006976542666666667,7.741452912644794e-4,0.0030098420000000004,8.491209904352823,2.738720466666667,2.5081575314203897,2.0199,10.366800467173258,1.0717333333333334,0.11299601135154565,0.03166495966666667,15.962599992752075,0,0.20034900680184364,0.42218213333333343,0,0,0.02222510054707527,0.04651014333333334,0.002085939961640785,0.0035202103333333333,441.0579808553059,8.465159005236998,87.69545678065924,79.2048361699799,8.297893295883737,16.658991900740954,-0.25583511908208634,57.918101946512856,3.0531333333333333,3487.2749489045,0,0,0.002666666666666667,0.3607710028688113,0.017866666666666663,0.0010086400046323736,0.0027 +2201,0,0,-0,-0,2.173424382805524,11.907299836476644,0.3574386666666667,0.09732454394300778,0.08039266666666668,146.30500284830728,1.9155230593333334,8.731165409088135,0,5.967609961827596,0,7.134910027186076,0.022400205940000004,7.769693891207377,0.361522,75.94948450724284,0.00392,5.909388105074565,40.87076933333333,0,509.047846476237,1595.7096633333335,2020.2198181152341,306.3817097375745,396.26099650065106,346.69390694379695,0.25729304552078247,0.3921151499999999,0.017526899774869282,0.0068370118133333335,7.17936132180815e-4,0.0029496451600000005,8.385809898376465,2.683946057333334,2.4695474902788797,1.9795019999999999,10.261600335439047,1.0502986666666667,0.11134001053869724,0.03103166047333334,15.900199890136719,0,0.19690400486191115,0.41373849066666674,0,0,0.02184760058298707,0.04557994046666667,0.002054329942135761,0.0034498061266666664,441.2589797973632,8.453633038858245,87.60971364773722,78.40735997289481,8.24087306624595,16.604255981954182,-0.25583511908208634,58.02560170491537,2.9920706666666668,3432.6960690169267,0,0,0.002613333333333334,0.3555700009067853,0.017509333333333328,9.721410024212673e-4,0.0026460000000000003 +2202,0,0,-0,-0,2.1578426664897776,11.92169984181722,0.350144,0.09355294145643711,0.07875200000000002,146.43200174967447,1.876430752,8.63324530919393,0,5.9346699714660645,0,7.121209979057312,0.021943058880000005,7.618344187736511,0.354144,75.17188707987468,0.00384,5.900967995325725,40.036671999999996,0,508.43284861246747,1563.14416,2016.6498006184893,305.69529730830163,396.3029963175456,344.95113214981063,0.2529190431038539,0.3841127999999999,0.017075299906233948,0.00669748096,6.657839743032431e-4,0.00288944832,8.28059991200765,2.6291716480000002,2.4309375286102295,1.939104,10.15660031636556,1.028864,0.10970301118989785,0.030398361280000005,15.837999979654947,0,0.19345800330241522,0.4052948480000001,0,0,0.021469800888250273,0.0446497376,0.002022969943936914,0.00337940192,441.45598093668616,8.442107072479489,87.52397051481519,77.6098837758097,8.18385283660816,16.54952006316741,-0.25583511908208634,58.13060220082601,2.931008,3378.1171891293534,0,0,0.00256,0.350443996489048,0.017151999999999997,9.369669908968111e-4,0.002592 +2203,0,0,-0,-0,2.1422609501740313,11.935799916585287,0.34284933333333334,0.08992754233380158,0.07711133333333334,146.55800247192383,1.8373384446666667,8.536415497461954,0,5.9019200801849365,0,7.107539971669515,0.021485911820000002,7.469894448916118,0.34676599999999996,74.40228525797527,0.00376,5.892547965049744,39.202574666666656,0,507.8178405761719,1530.5786566666668,2013.0797932942705,305.0088848790288,396.33799997965497,343.2083573558243,0.24854604030648866,0.3761104499999999,0.016637999874850113,0.006557950106666667,6.173958342211942e-4,0.0028292514800000003,8.175559838612875,2.574397238666667,2.3923275073369346,1.8987059999999998,10.05180033047994,1.0074293333333335,0.10808100985984008,0.029765062086666672,15.776099920272827,0,0.19001600642999014,0.3968512053333334,0,0,0.02109380081916849,0.04371953473333334,0.001991849955326567,0.003308997713333333,441.6489817301432,8.430581106100735,87.43822738189317,76.81240757872462,8.126832606970373,16.494784144380638,-0.25583511908208634,58.2331018447876,2.8699453333333333,3323.53830924178,0,0,0.002506666666666667,0.34539199620485306,0.016794666666666663,9.030650010875737e-4,0.0025380000000000003 +2204,0,0,-0,-0,2.1266792338582854,11.9494997660319,0.33555466666666667,0.08644253884752591,0.07547066666666667,146.68000030517578,1.7982461373333334,8.440675258636475,0,5.869350035985311,0,7.093889951705933,0.021028764760000002,7.324284752209981,0.33938799999999997,73.6404857635498,0.00368,5.884137868881226,38.368477333333324,0,507.20284779866535,1498.0131533333333,2009.499816894531,304.32247244975594,396.36899820963544,341.465582561838,0.24417604257663092,0.3681080999999999,0.016212199659397204,0.006418419253333333,5.725026906778415e-4,0.00276905464,8.070709784825643,2.5196228293333336,2.353727559248606,1.8583079999999998,9.947320302327475,0.9859946666666668,0.10647500927249591,0.029131762893333336,15.71429999669393,0,0.18657700469096503,0.38840756266666676,0,0,0.02071960037574172,0.042789331866666676,0.001960969918097059,0.0032385935066666666,441.8379821777343,8.41905513972198,87.35248424897114,76.01493138163951,8.069812377332584,16.440048225593866,-0.25583511908208634,58.3330020904541,2.8088826666666664,3268.959429354207,0,0,0.0024533333333333334,0.3404119983315468,0.01643733333333333,8.703899948159233e-4,0.002484 +2205,0,0,-0,-0,2.1110975175425395,11.962999820709229,0.32826,0.08309263673921426,0.07383,146.80000178019205,1.75915383,8.346005042394003,0,5.836949984232585,0,7.080270012219747,0.020571617700000003,7.181485056877136,0.33200999999999997,72.88648732503255,0.0036,5.875727732976277,37.53437999999999,0,506.5878372192383,1465.44765,2005.9098103841143,303.63606002048306,396.3939971923828,339.7228077678517,0.2398060423632463,0.3601057499999999,0.015799499737719696,0.0062788884,5.308535813431566e-4,0.0027088578,7.96602996190389,2.4648484200000005,2.3151475389798484,1.81791,9.843050479888916,0.9645600000000001,0.10488600966831048,0.028498463700000004,15.65280000368754,0,0.18313800419370332,0.37996392000000007,0,0,0.02034490027775367,0.04185912900000001,0.0019288899396390964,0.0031681892999999997,442.02297719319654,8.407529173343226,87.26674111604912,75.21745518455442,8.012792147694796,16.385312306807094,-0.25583511908208634,58.43040180206299,2.74782,3214.380549466634,0,0,0.0024000000000000002,0.3355040003856023,0.016079999999999997,8.388980058953166e-4,0.0024300000000000003 +2206,0,0,-0,-0,2.095515801226793,11.976099888483683,0.3209653333333333,0.07987253554165363,0.07218933333333334,146.9180005391439,1.7200615226666667,8.252404928207397,0,5.804740071296692,0,7.0666699806849165,0.020114470640000003,7.0414453347524,0.324632,72.14028549194336,0.0035199999999999997,5.8673176765441895,36.70028266666666,0,505.97284444173175,1432.8821466666668,2002.3098347981768,302.9496475912102,396.4149983723958,337.9800329738654,0.23543904100855192,0.3521033999999999,0.015399399834374586,0.006139357546666667,4.922154621453956e-4,0.0026486609600000002,7.861519813537598,2.4100740106666674,2.276567538579305,1.777512,9.739020347595215,0.9431253333333334,0.10331400918463866,0.02786516450666667,15.591399828592936,0,0.17970100417733192,0.37152027733333337,0,0,0.019969900604337454,0.04092892613333334,0.001897099942046528,0.003097785093333333,442.203982035319,8.396003206964473,87.1809979831271,74.41997898746934,7.955771918057008,16.330576388020326,-0.25583511908208634,58.52540143330892,2.6867573333333334,3159.8016695790607,0,0,0.002346666666666667,0.33066699902216595,0.015722666666666663,8.085450002302726e-4,0.0023760000000000005 +2207,0,0,-0,-0,2.079934084911047,11.988899866739908,0.31367066666666665,0.07677723467350006,0.07054866666666668,147.0320027669271,1.6809692153333333,8.159845113754272,0,5.772700031598409,0,7.053110043207805,0.019657323580000004,6.904095609982808,0.317254,71.40168571472168,0.00344,5.858907580375671,35.86618533333333,0,505.35784912109375,1400.3166433333333,1998.709798177083,302.2632351619373,396.43099721272785,336.23725817987906,0.23107404013474783,0.3441010499999999,0.015008999810864529,0.005999826693333333,4.5637235840937745e-4,0.00258846412,7.757189830144246,2.355299601333334,2.237997551759084,1.737114,9.635220289230347,0.9216906666666668,0.10175600958367188,0.027231865313333336,15.530300060907999,0,0.1762670042614142,0.36307663466666673,0,0,0.019594700696567696,0.039998723266666675,0.0018655799503903836,0.0030273808866666664,442.3819783528645,8.384477240585717,87.09525485020507,73.62250279038423,7.898751688419219,16.275840469233554,-0.25583511908208634,58.61780198415121,2.6256946666666665,3105.2227896914874,0,0,0.0022933333333333334,0.32589999834696454,0.015365333333333332,7.792899996275082e-4,0.0023220000000000003 +2208,0,0,-0,-0,2.064352368595301,12.001399914423624,0.306376,0.07380193347732227,0.068908,147.14400227864584,1.641876908,8.068324963251749,0,5.740839958190918,0,7.039560039838155,0.01920017652,6.76939590771993,0.30987599999999993,70.67068672180176,0.0033599999999999997,5.850497444470723,35.03208799999999,0,504.7428436279297,1367.75114,1995.0998128255205,301.5768227326645,396.4439977010091,334.49448338589275,0.22671303898096085,0.33609869999999986,0.014627699817841252,0.00586029584,4.2312325482877594e-4,0.00252826728,7.653029839197795,2.3005251920000007,2.1994476119677224,1.696716,9.531650384267172,0.9002560000000001,0.10021300924321015,0.026598566120000004,15.46940016746521,0,0.1728350023428599,0.35463299200000004,0,0,0.019219200282047193,0.039068520400000015,0.0018343099606378626,0.0029569766799999995,442.55498250325513,8.372951274206963,87.00951171728305,72.82502659329914,7.841731458781431,16.221104550446782,-0.25583511908208634,58.70760154724121,2.564632,3050.643909803914,0,0,0.0022400000000000002,0.32120200246572495,0.015007999999999997,7.51094000103573e-4,0.0022680000000000005 +2209,0,0,-0,-0,2.048770652279555,12.013499895731607,0.2990813333333333,0.070941931878527,0.06726733333333333,147.2540028889974,1.6027846006666666,7.977835059165955,0,5.709149996439616,0,7.026049971580505,0.01874302946,6.637286146481832,0.30249799999999993,69.9471861521403,0.00328,5.842097361882527,34.197990666666655,0,504.12884012858075,1335.1856366666666,1991.489807128906,300.8904103033916,396.45300038655597,332.75170859190644,0.222355039169391,0.32809634999999987,0.014257599599659443,0.0057207649866666665,3.9228116899418336e-4,0.0024680704399999997,7.549039880434672,2.245750782666667,2.160917659600576,1.656318,9.42831047375997,0.8788213333333335,0.09868490944306056,0.025965266926666668,15.408699989318848,0,0.16940400625268617,0.34618934933333334,0,0,0.01884350071971615,0.03813831753333335,0.0018032999651040882,0.002886572473333333,442.724983215332,8.361425307828208,86.92376858436101,72.02755039621404,7.784711229143642,16.16636863166001,-0.25583511908208634,58.79500261942545,2.503569333333333,2996.065029916341,0,0,0.0021866666666666666,0.31657099972168606,0.014650666666666664,7.239179976750165e-4,0.0022140000000000003 +2210,0,0,-0,-0,2.0331889359638087,12.025399923324585,0.29178666666666664,0.0681927315890789,0.06562666666666667,147.36100387573242,1.5636922933333333,7.888364950815837,0,5.677639961242676,0,7.01256004969279,0.0182858824,6.507716417312622,0.29511999999999994,69.23098627726237,0.0031999999999999997,5.833687265714009,33.36389333333332,0,503.5148417154948,1302.6201333333333,1987.8698018391924,300.2039978741187,396.45799509684247,331.0089337979201,0.21800003697474798,0.3200939999999999,0.01389799996589621,0.005581234133333333,3.6367308590949204e-4,0.0024078736,7.445209860801697,2.190976373333334,2.1223976413408914,1.61592,9.325200319290161,0.8573866666666667,0.09717040881514549,0.025331967733333335,15.348099946975708,0,0.16597800453503928,0.3377457066666667,0,0,0.018467800691723824,0.03720811466666668,0.0017725099654247363,0.002816168266666666,442.8909784952799,8.349899341449454,86.838025451439,71.23007419912895,7.727690999505854,16.111632712873238,-0.25583511908208634,58.87990093231201,2.4425066666666666,2941.4861500287675,0,0,0.0021333333333333334,0.31200699508190155,0.014293333333333332,6.977249965226898e-4,0.0021600000000000005 +2211,0,0,-0,-0,2.0176072196480623,12.03689980506897,0.28449199999999997,0.06555012986063957,0.063986,147.46500142415366,1.524599986,7.7998948097229,0,5.646310011545817,0,6.9990899960199995,0.017828735340000002,6.380646626154582,0.28774199999999994,68.52218691507976,0.0031199999999999995,5.825287143389384,32.52979599999999,0,502.90084584554035,1270.05463,1984.249806722005,299.51758544484585,396.4600016276042,329.2661590039338,0.21364803363879523,0.3120916499999999,0.013546199925864736,0.00544170328,3.3713800318461534e-4,0.00234767676,7.341549873352051,2.1362019640000005,2.083897670110067,1.575522,9.222310304641724,0.835952,0.09566900817056496,0.024698668540000003,15.287799914677938,0,0.1625550054013729,0.32930206400000006,0,0,0.018092000701775152,0.036277911800000014,0.0017419499442136537,0.0027457640599999997,443.05398305257154,8.338373375070699,86.75228231851698,70.43259800204386,7.670670769868066,16.056896794086466,-0.25583511908208634,58.96220270792643,2.381444,2886.907270141194,0,0,0.0020800000000000003,0.30750899761915207,0.013935999999999999,6.724799944398304e-4,0.0021060000000000002 +2212,0,0,-0,-0,2.0020255033323164,12.048099915186564,0.2771973333333333,0.06300982863952716,0.06234533333333333,147.56600189208984,1.4855076786666666,7.712414781252543,0,5.615140000979106,0,6.985650022824605,0.017371588280000003,6.256026983261108,0.28036399999999995,67.82068761189778,0.0030399999999999997,5.816887140274048,31.695698666666658,0,502.2868398030599,1237.4891266666666,1980.6298116048174,298.83117301557303,396.4600016276042,327.5233842099475,0.20929803450902304,0.3040892999999999,0.013204099843278527,0.005302172426666666,3.125269310354876e-4,0.00228747992,7.238049864768982,2.0814275546666674,2.0454277197519937,1.5351240000000002,9.119650284449259,0.8145173333333334,0.09418250682453315,0.02406536934666667,15.227800051371256,0,0.15913400426506996,0.32085842133333337,0,0,0.01771820041661461,0.03534770893333335,0.0017101999352841328,0.002675359853333333,443.2119827270507,8.326847408691945,86.66653918559494,69.63512180495876,7.613650540230277,16.002160875299694,-0.25583511908208634,59.04200077056885,2.320381333333333,2832.328390253621,0,0,0.0020266666666666666,0.30307599902153015,0.013578666666666666,6.481489981524646e-4,0.0020520000000000004 +2213,0,0,-0,-0,1.9864437870165703,12.05899985631307,0.2699026666666667,0.06056812716027101,0.060704666666666664,147.66499964396158,1.4464153713333334,7.625924706459045,0,5.584150075912476,0,6.972239971160889,0.016914441220000003,6.133827209472656,0.27298599999999995,67.12638727823894,0.0029599999999999995,5.808497031529744,30.861601333333326,0,501.67284393310547,1204.9236233333334,1976.999816894531,298.14476058630015,396.4560012817383,325.7806094159612,0.20495103299617767,0.2960869499999999,0.012871299870312214,0.005162641573333334,2.8970186637404066e-4,0.0022272830799999997,7.13470987478892,2.026653145333334,2.006967693567276,1.494726,9.017210324605307,0.7930826666666667,0.09271060799558957,0.02343207015333334,15.167900005976358,0,0.15571600571274757,0.3124147786666667,0,0,0.01734620053321123,0.03441750606666668,0.0016787199419923127,0.0026049556466666663,443.3669764200846,8.315321442313191,86.58079605267292,68.83764560787367,7.55663031059249,15.947424956512924,-0.25583511908208634,59.11930179595947,2.2593186666666667,2777.7495103660476,0,0,0.0019733333333333334,0.2987060025334358,0.013221333333333331,6.246980046853423e-4,0.001998 +2214,0,0,-0,-0,1.9708620707008242,12.069599787394205,0.262608,0.05822102694461743,0.05906399999999999,147.76100158691406,1.407323064,7.54039470354716,0,5.553329984347026,0,6.958859999974568,0.016457294160000004,6.013967474301656,0.26560799999999996,66.43908818562825,0.0028799999999999997,5.800096909205119,30.027503999999993,0,501.0598424275716,1172.3581199999999,1973.3698018391924,297.4583481570273,396.4499994913737,324.03783462197487,0.2006070353090763,0.2880845999999999,0.012544899868468443,0.0050231107200000005,2.685328048149434e-4,0.00216708624,7.031529863675435,1.9718787360000005,1.9685377776622772,1.454328,8.914990425109863,0.7716480000000001,0.09125090762972832,0.022798770960000006,15.108199993769327,0,0.152301004777352,0.30397113600000003,0,0,0.016973900298277538,0.03348730320000001,0.001647499962321793,0.0025345514399999994,443.51897939046216,8.303795475934436,86.49505291975089,68.04016941078856,7.499610080954701,15.892689037726152,-0.25583511908208634,59.19410101572672,2.1982559999999998,2723.1706304784743,0,0,0.00192,0.29439999908208847,0.012863999999999999,6.020960039071118e-4,0.0019440000000000002 +2215,0,0,-0,-0,1.955280354385078,12.079899867375692,0.25531333333333334,0.05596482505400976,0.057423333333333326,147.8550008138021,1.3682307566666667,7.455824653307597,0,5.522689978281657,0,6.945499936739604,0.016000147100000004,5.896427710851033,0.25822999999999996,65.75898742675781,0.0027999999999999995,5.791706879933675,29.19340666666666,0,500.4458414713542,1139.7926166666666,1969.739807128906,296.77193572775445,396.44200134277344,322.29505982798855,0.19626803199450174,0.2800822499999999,0.012224699836224318,0.004883579866666667,2.489017436649495e-4,0.0021068894,6.928509910901387,1.9171043266666672,1.9301377932230632,1.4139300000000001,8.81298025449117,0.7502133333333334,0.08980300836265087,0.022165471766666674,15.048700014750162,0,0.14889100442330042,0.2955274933333334,0,0,0.016601400449872017,0.032557100333333346,0.0016165499497825901,0.002464147233333333,443.6669794718424,8.29226950955568,86.40930978682887,67.24269321370348,7.442589851316913,15.83795311893938,-0.25583511908208634,59.266401290893555,2.1371933333333333,2668.591750590901,0,0,0.0018666666666666666,0.2901559993624687,0.012506666666666666,5.803120099396134e-4,0.0018900000000000002 +2216,0,0,-0,-0,1.939698638069332,12.089899937311808,0.24801866666666667,0.05379612402369579,0.05578266666666666,147.94600041707358,1.3291384493333334,7.3722145557403564,0,5.492209951082866,0,6.932160019874573,0.015543000040000005,5.781157970428467,0.25085199999999996,65.08568827311198,0.0027199999999999993,5.783316691716512,28.35930933333333,0,499.8328348795573,1107.2271133333334,1966.1098022460935,296.0855232984816,396.4310048421224,320.5522850340023,0.19193203002214432,0.27207989999999993,0.011912799905985594,0.004744049013333334,2.3069568851497024e-4,0.00204669256,6.825649817784627,1.8623299173333339,1.8917478223641713,1.3735320000000002,8.711180369059244,0.7287786666666667,0.08836890694995721,0.02153217257333334,14.989399909973145,0,0.1454820049305757,0.28708385066666675,0,0,0.016228700522333384,0.03162689746666668,0.0015858299448154867,0.0023937430266666665,443.8109792073567,8.280743543176927,86.32356665390685,66.44521701661837,7.3855696216791245,15.783217200152608,-0.25583511908208634,59.336201667785645,2.076130666666667,2614.0128707033277,0,0,0.0018133333333333332,0.28597300002972287,0.012149333333333333,5.593159973310927e-4,0.0018360000000000002 +2217,0,0,-0,-0,1.9241169217535858,12.099499861399332,0.24072400000000002,0.051711423632999264,0.05414199999999999,148.03400166829428,1.290046142,7.289534489313762,0,5.461899995803833,0,6.9188499848047895,0.015085852980000005,5.6681281725565595,0.24347399999999997,64.41938654581706,0.0026399999999999996,5.7749366362889605,27.525211999999996,0,499.2208429972331,1074.6616099999999,1962.4698181152341,295.3991108692087,396.41800181070965,318.809510240016,0.18759802977244058,0.26407754999999994,0.01160879984187583,0.004604518160000001,2.1381363815938434e-4,0.00198649572,6.722949941953023,1.8075555080000005,1.8533978859583538,1.3331340000000003,8.609600305557251,0.7073440000000001,0.08694810730715592,0.02089887338000001,14.93030015627543,0,0.14207600305477777,0.27864020800000006,0,0,0.015855800205220778,0.03069669460000001,0.0015539299638476223,0.0023233388199999996,443.95198059082026,8.269217576798173,86.23782352098482,65.64774081953328,7.328549392041336,15.728481281365836,-0.25583511908208634,59.403501192728676,2.015068,2559.4339908157544,0,0,0.0017599999999999998,0.281850000222524,0.011792,5.39079987599204e-4,0.0017820000000000002 +2218,0,0,-0,-0,1.9085352054378397,12.108799854914347,0.23342933333333335,0.04970762226730585,0.052501333333333323,148.1190045674642,1.2509538346666669,7.207784493764241,0,5.4317500193913775,0,6.905569990475972,0.014628705920000006,5.557268381118774,0.23609599999999997,63.75998751322428,0.0025599999999999993,5.766556580861409,26.691114666666664,0,498.6078364054362,1042.0961066666666,1958.8398030598955,294.7126984399358,396.4029998779297,317.06673544602967,0.18326803048451742,0.25607519999999995,0.011309899855405092,0.004464987306666668,1.9815959240077063e-4,0.00192629888,6.620389898618062,1.752781098666667,1.8150678873062134,1.292736,8.508230209350586,0.6859093333333334,0.08553850650787354,0.020265574186666677,14.871499935785929,0,0.13867500548561415,0.2701965653333334,0,0,0.01548290035376946,0.029766491733333345,0.0015223199540438752,0.002252934613333333,444.0889816284179,8.257691610419418,86.1520803880628,64.85026462244818,7.2715291624035485,15.673745362579066,-0.25583511908208634,59.46820259094238,1.9540053333333334,2504.855110928181,0,0,0.0017066666666666667,0.2777870024243991,0.011434666666666666,5.195760022616014e-4,0.001728 +2219,0,0,-0,-0,1.8929534891220936,12.117799997329712,0.2261346666666667,0.047781421492497124,0.05086066666666665,148.20199839274088,1.2118615273333335,7.126954396565755,0,5.401779969533284,0,6.8923100233078,0.014171558860000006,5.448558608690898,0.22871799999999998,63.10718790690104,0.0024799999999999996,5.758166511853536,25.85701733333333,0,497.99583435058594,1009.5306033333331,1955.1998087565103,294.026286010663,396.38600158691406,315.32396065204335,0.17894202967484793,0.24807284999999996,0.011018199923758706,0.0043254564533333345,1.8364454930027327e-4,0.00186610204,6.517989873886108,1.6980066893333337,1.7767679591973622,1.2523380000000002,8.407060305277506,0.6644746666666668,0.08413960660497348,0.019632274993333344,14.81279993057251,0,0.13527800142765045,0.2617529226666667,0,0,0.015110000502318144,0.028836288866666678,0.0014909999736119062,0.0021825304066666663,444.2219797770182,8.246165644040662,86.06633725514077,64.05278842536309,7.21450893276576,15.619009443792294,-0.25583511908208634,59.530500729878746,1.8929426666666664,2450.276231040608,0,0,0.0016533333333333333,0.27378299832344055,0.011077333333333333,5.007779933900262e-4,0.001674 +2220,0,0,-0,-0,1.8773717728063475,12.126499891281128,0.21884000000000003,0.04592982058723768,0.049219999999999986,148.2830022176107,1.1727692200000002,7.047034382820129,0,5.371969978014628,0,6.8790799379348755,0.013714411800000006,5.341958840688069,0.22133999999999998,62.46118768056234,0.0023999999999999994,5.749796350797017,25.02292,0,497.3828379313151,976.9650999999999,1951.5598144531248,293.3398735813901,396.3670018513997,313.58118585805704,0.1746200273434321,0.24007049999999996,0.010733499890193343,0.004185925600000001,1.701855107967276e-4,0.0018059052,6.4157399733861284,1.6432322800000003,1.738508015871048,1.2119400000000002,8.30611022313436,0.6430400000000001,0.08275340559581916,0.018998975800000012,14.754299958546957,0,0.13188200443983078,0.2533092800000001,0,0,0.014737000378469626,0.02790608600000001,0.0014599499603112538,0.0021121262,444.35298156738276,8.234639677661908,85.98059412221875,63.255312228277994,7.157488703127972,15.564273525005522,-0.25583511908208634,59.59020137786865,1.83188,2395.6973511530346,0,0,0.0015999999999999999,0.269836001098156,0.01072,4.82660000367711e-4,0.00162 +2221,0,0,-0,-0,1.8617900564906014,12.134899854660034,0.21154533333333336,0.04415002092719078,0.04757933333333332,148.36000315348306,1.1336769126666668,6.96800430615743,0,5.342320005098979,0,6.865870038668315,0.013257264740000007,5.237419048945109,0.21396199999999999,61.82178815205892,0.002319999999999999,5.741416255633037,24.188822666666667,0,496.7708282470703,944.3995966666666,1947.9197896321612,292.65346115211725,396.3459981282552,311.8384110640707,0.17030202597379684,0.23206814999999995,0.010452999888608852,0.004046394746666668,1.5770647223689593e-4,0.00174570836,6.313649972279866,1.588457870666667,1.7002680401007335,1.171542,8.205360253651937,0.6216053333333333,0.0813776074598233,0.01836567660666668,14.69599994023641,0,0.1284900059302648,0.2448656373333334,0,0,0.014366100309416652,0.026975883133333343,0.0014291499683167785,0.002041721993333333,444.4799830118815,8.223113711283155,85.89485098929671,62.4578360311929,7.100468473490183,15.50953760621875,-0.25583511908208634,59.64750099182129,1.7708173333333332,2341.1184712654613,0,0,0.0015466666666666667,0.265945998330911,0.010362666666666666,4.6519799798261374e-4,0.001566 +2222,0,0,-0,-0,1.8462083401748552,12.142999728520712,0.2042506666666667,0.04243921892096599,0.045938666666666655,148.43500137329102,1.0945846053333335,6.889864285786946,0,5.312839984893799,0,6.852689941724141,0.012800117680000006,5.134899258613586,0.206584,61.18888759613037,0.0022399999999999994,5.733046134312947,23.35472533333333,0,496.1598358154297,911.8340933333333,1944.279795328776,291.96704872284437,396.3240025838216,310.0956362700844,0.16598802556594214,0.22406579999999993,0.010176499839872122,0.003906863893333334,1.4613743769587018e-4,0.0016855115199999999,6.211699883143107,1.5336834613333337,1.662058065334956,1.1311440000000001,8.1048002243042,0.6001706666666667,0.08001180551946163,0.017732377413333344,14.638000090916952,0,0.12510200341542563,0.23642199466666675,0,0,0.013997100216026107,0.026045680266666676,0.0013985899665082495,0.0019713177866666665,444.60297648111975,8.2115877449044,85.8091078563747,61.6603598341078,7.043448243852395,15.454801687431978,-0.25583511908208634,59.70220057169596,1.7097546666666665,2286.539591377888,0,0,0.0014933333333333333,0.2621129999558131,0.010005333333333333,4.483679998277997e-4,0.0015119999999999999 +2223,0,0,-0,-0,1.8306266238591091,12.150699774424234,0.19695600000000002,0.04079471807926893,0.04429799999999999,148.50800196329752,1.0554922980000003,6.812604188919067,0,5.283520023028056,0,6.8395300308863325,0.012342970620000006,5.034369468688965,0.199206,60.562588691711426,0.002159999999999999,5.724676092465718,22.520628,0,495.54783121744794,879.26859,1940.6497904459634,291.28063629357155,396.2999954223633,308.3528614760981,0.16167802487810454,0.21606344999999993,0.009906229718277851,0.003767333040000001,1.3541140530530052e-4,0.00162531468,6.109899878501892,1.4789090520000001,1.6238781213760376,1.090746,8.00445012251536,0.578736,0.07865800646444161,0.01709907822000001,14.580100059509277,0,0.12171600386500359,0.2279783520000001,0,0,0.013627800314376751,0.02511547740000001,0.0013682599625705432,0.0019009135799999996,444.72297668457026,8.200061778525644,85.72336472345268,60.862883637022705,6.9864280142146065,15.400065768645208,-0.25583511908208634,59.754501024881996,1.648692,2231.9607114903147,0,0,0.00144,0.2583340009053548,0.009647999999999999,4.3214600009378046e-4,0.0014579999999999997 +2224,0,0,-0,-0,1.815044907543363,12.158199946085611,0.18966133333333335,0.03921401811142763,0.042657333333333325,148.57699966430664,1.016399990666667,6.73621420065562,0,5.254370013872783,0,6.82640000184377,0.011885823560000005,4.935799678166707,0.191828,59.942588806152344,0.0020799999999999994,5.716306090354919,21.686530666666663,0,494.93683369954425,846.7030866666666,1937.0097859700518,290.59422386429867,396.2739969889323,306.6100866821118,0.15737002342939377,0.20806109999999992,0.009641899882505337,0.0036278021866666676,1.2546837691237064e-4,0.0015651178399999999,6.008239944775899,1.4241346426666668,1.5857381423314412,1.050348,7.904300212860107,0.5573013333333334,0.07731580485900243,0.016465779026666676,14.522400061289469,0,0.11833200417459011,0.21953470933333344,0,0,0.013258400450771054,0.024185274533333342,0.0013367399709143986,0.001830509373333333,444.83997853597,8.18853581214689,85.63762159053064,60.06540743993761,6.929407784576818,15.345329849858436,-0.25583511908208634,59.80420080820719,1.5876293333333333,2177.3818316027414,0,0,0.0013866666666666667,0.254611000418663,0.009290666666666666,4.1651199959839386e-4,0.0014039999999999996 +2225,0,0,-0,-0,1.7994631912276169,12.165299812952677,0.18236666666666668,0.037694516902168594,0.04101666666666666,148.64400100708008,0.9773076833333336,6.660674134890239,0,5.225370009740193,0,6.813299973805745,0.011428676500000005,4.839139938354492,0.18445,59.32898871103922,0.001999999999999999,5.707935810089111,20.85243333333333,0,494.3258336385091,814.1375833333334,1933.3698120117185,289.9078114350258,396.2479960123698,304.8673118881255,0.15306602170070013,0.2000587499999999,0.009380859943727652,0.0034882713333333343,1.1625034979563982e-4,0.0015049209999999998,5.906729896863301,1.3693602333333335,1.5476182003815968,1.00995,7.804350217183431,0.5358666666666667,0.07598300588627656,0.015832479833333343,14.464900016784668,0,0.11495400406420231,0.21109106666666677,0,0,0.01288870039085547,0.023255071666666675,0.0013055099504223715,0.0017601051666666662,444.95298004150385,8.177009845768136,85.55187845760861,59.26793124285251,6.87238755493903,15.290593931071664,-0.25583511908208634,59.851401011149086,1.5265666666666666,2122.802951715168,0,0,0.0013333333333333335,0.2509410021205743,0.008933333333333331,4.0144399827113375e-4,0.0013499999999999996 +2226,0,0,-0,-0,1.7838814749118708,12.172099908192953,0.175072,0.03623391594737768,0.039375999999999994,148.70900217692056,0.9382153760000003,6.5859940846761065,0,5.1965400377909345,0,6.800220012664795,0.010971529440000006,4.744370102882385,0.177072,58.72168890635172,0.0019199999999999992,5.699575821558635,20.018335999999998,0,493.71483357747394,781.5720800000001,1929.7298075358071,289.2213990057529,396.21899668375653,303.1245370941392,0.1487670230368773,0.19205639999999988,0.00912531977519393,0.003348740480000001,1.0770532329236933e-4,0.0014447241599999997,5.805369933446248,1.3145858240000001,1.5095382432142894,0.9695519999999999,7.704590201377869,0.514432,0.07465940527617931,0.01519918064000001,14.407700061798096,0,0.11158000181118648,0.2026474240000001,0,0,0.012519000330939889,0.02232486880000001,0.0012745499746718754,0.0016897009599999996,445.06298319498694,8.165483879389381,85.46613532468659,58.470455045767416,6.815367325301242,15.235858012284892,-0.25583511908208634,59.89610036214193,1.465504,2068.224071827595,0,0,0.0012800000000000003,0.24732299894094467,0.008575999999999997,3.869210001236449e-4,0.0012959999999999996 +2227,0,0,-0,-0,1.7682997585961246,12.178599993387857,0.16777733333333333,0.03482991550117731,0.03773533333333333,148.77100118001303,0.899123068666667,6.512144088745117,0,5.16786003112793,0,6.787159999211629,0.010514382380000005,4.6514302889506025,0.169694,58.12068843841553,0.0018399999999999992,5.691215634346008,19.184238666666662,0,493.1038335164388,749.0065766666668,1926.0898132324216,288.53498657648004,396.1900049845378,301.3817623001529,0.1444710207482179,0.18405404999999986,0.008875019925956925,0.0032092096266666675,5.0820006435969844e-5,0.0013845273199999996,5.704149961471558,1.2598114146666668,1.4714982906977336,0.9291539999999998,7.6050202051798506,0.4929973333333334,0.07334690416852634,0.014565881446666675,14.350600004196167,0,0.10820800438523293,0.19420378133333344,0,0,0.01214920023145775,0.02139466593333334,0.0012438499640362959,0.0016192967533333329,445.1699829101562,8.153957913010625,85.38039219176457,57.67297884868232,6.758347095663454,15.18112209349812,-0.25583511908208634,59.93840058644613,1.4044413333333332,2013.6451919400215,0,0,0.001226666666666667,0.2437590000530084,0.008218666666666664,3.729229986978074e-4,0.0012419999999999996 +2228,0,0,-0,-0,1.7527180422803785,12.184699932734171,0.16048266666666666,0.03348031515876452,0.036094666666666664,148.8300018310547,0.8600307613333337,6.43912402788798,0,5.139349977175395,0,6.77412994702657,0.010057235320000005,4.560310443242391,0.16231600000000002,57.52578926086426,0.001759999999999999,5.682855645815532,18.35014133333333,0,492.4938329060872,716.4410733333334,1922.459798177083,287.8485741472072,396.1589991251628,299.6389875061666,0.14018002152442932,0.17605169999999987,0.008627359755337238,0.003069678773333334,0,0.0013243304799999997,5.603069980939229,1.2050370053333332,1.433498352766037,0.8887559999999997,7.505650122960408,0.4715626666666667,0.07204300599793594,0.013932582253333343,14.293699979782104,0,0.10483900209267934,0.1857601386666668,0,0,0.011779500249152383,0.020464463066666674,0.0012133899726904929,0.001548892546666666,445.2729822794596,8.142431946631872,85.29464905884254,56.87550265159722,6.701326866025665,15.12638617471135,-0.25583511908208634,59.97810077667236,1.3433786666666667,1959.0663120524482,0,0,0.0011733333333333337,0.24024500201145807,0.00786133333333333,3.5943200297576067e-4,0.0011879999999999994 +2229,0,0,-0,-0,1.7371363259646324,12.190599918365479,0.153188,0.0321831147496899,0.034454,148.8860003153483,0.8209384540000004,6.366923967997233,0,5.110989967981975,0,6.761130054791768,0.009600088260000004,4.470950643221538,0.15493800000000002,56.93698914845785,0.001679999999999999,5.674505511919658,17.516043999999994,0,491.8838297526042,683.8755700000002,1918.8197937011716,287.16216171793434,396.12699635823566,297.8962127121803,0.13589402164022127,0.16804934999999982,0.008384570013731718,0.002930147920000001,0,0.0012641336399999994,5.502129952112834,1.150262596,1.3955283959706624,0.8483579999999996,7.406460126241048,0.45012800000000003,0.0707478045175473,0.013299283060000007,14.236999909083048,0,0.1014750028649966,0.1773164960000001,0,0,0.011411700320119659,0.019534260200000007,0.001183169981231913,0.0014784883399999993,445.37398274739576,8.130905980253118,85.2089059259205,56.07802645451213,6.644306636387877,15.071650255924578,-0.25583511908208634,60.01530075073242,1.2823159999999998,1904.487432164875,0,0,0.0011200000000000003,0.2367819994688034,0.007503999999999996,3.464300001117711e-4,0.0011339999999999994 +2230,0,0,-0,-0,1.7215546096488863,12.196099996566772,0.14589333333333332,0.03093611417959134,0.03281333333333333,148.93999862670898,0.7818461466666671,6.295533895492554,0,5.082789977391561,0,6.748149871826172,0.009142941200000004,4.383320848147075,0.14756000000000002,56.35418891906738,0.001599999999999999,5.666155457496643,16.68194666666666,0,491.2738291422526,651.3100666666669,1915.1797993977862,286.47574928866146,396.093999226888,296.15343791819396,0.13161101564764977,0.16004699999999983,0.008146439989407858,0.0027906170666666674,0,0.0012039367999999995,5.401339888572693,1.0954881866666666,1.3575884501139324,0.8079599999999996,7.307470162709554,0.42869333333333337,0.06946290408571561,0.012665983866666675,14.180500030517578,0,0.09811530262231827,0.16887285333333346,0,0,0.011045900328705708,0.01860405733333334,0.001153179977942879,0.0014080841333333326,445.47098286946607,8.119380013874363,85.12316279299849,55.28055025742703,6.5872864067500885,15.016914337137806,-0.25583511908208634,60.05000082651774,1.2212533333333333,1849.9085522773016,0,0,0.0010666666666666672,0.23336999863386154,0.007146666666666662,3.338970006249535e-4,0.0010799999999999994 +2231,0,0,-0,-0,1.7059728933331402,12.201399803161621,0.13859866666666665,0.02973741355041663,0.031172666666666664,148.9910011291504,0.7427538393333337,6.224943836530049,0,5.054740031560262,0,6.7351999680201216,0.008685794140000005,4.297401070594788,0.14018200000000003,55.77738952636719,0.001519999999999999,5.657805363337199,15.847849333333327,0,490.66383361816406,618.7445633333335,1911.5498046874998,285.7893368593886,396.05899810791016,294.41066312420764,0.12733101720611253,0.15204464999999984,0.007910379907116294,0.002651086213333334,0,0.0011437399599999996,5.300679922103882,1.0407137773333333,1.319688489039739,0.7675619999999996,7.208660085995992,0.4072586666666667,0.06818830346067746,0.01203268467333334,14.124199946721395,0,0.09475800395011902,0.1604292106666668,0,0,0.01067970033424596,0.017673854466666673,0.0011219899752177298,0.0013376799266666662,445.56497701009107,8.107854047495607,85.03741966007647,54.483074060341934,6.5302661771123,14.962178418351034,-0.25583511908208634,60.08230050404867,1.1601906666666666,1795.3296723897283,0,0,0.0010133333333333338,0.23000600064794222,0.0067893333333333295,3.2181899587158114e-4,0.0010259999999999994 +2232,0,0,-0,-0,1.690391177017394,12.206299861272177,0.131304,0.028585213081290323,0.029531999999999996,149.04000091552734,0.7036615320000003,6.155153870582581,0,5.02685006459554,0,6.722270051638286,0.008228647080000004,4.213141202926636,0.132804,55.206488927205406,0.001439999999999999,5.649455308914185,15.013751999999993,0,490.05383046468097,586.1790600000002,1907.9197998046873,285.10292443011576,396.0239995320638,292.66788833022133,0.12305501662194729,0.14404229999999987,0.007676299894228578,0.0025115553600000007,0,0.0010835431199999995,5.200159947077434,0.985939368,1.2818185289700825,0.7271639999999996,7.110030134518941,0.38582400000000006,0.06692160417636235,0.011399385480000006,14.068100055058798,0,0.09140320246418317,0.15198556800000013,0,0,0.010313400144999227,0.01674365160000001,0.0010910699881302814,0.0012672757199999995,445.65498352050776,8.096328081116853,84.95167652715443,53.68559786325684,6.473245947474512,14.907442499564262,-0.25583511908208634,60.112000465393066,1.0991279999999999,1740.750792502155,0,0,9.600000000000005e-4,0.2266909976800283,0.006431999999999996,3.1017700045291957e-4,9.719999999999994e-4 +2233,0,0,-0,-0,1.674809460701648,12.21089998881022,0.12400933333333333,0.027477712525675695,0.02789133333333333,149.08600234985352,0.6645692246666669,6.086143811543782,0,4.999120036760966,0,6.709369977315267,0.007771500020000004,4.130521337191264,0.125426,54.64148966471354,0.0013599999999999988,5.6411051750183105,14.17965466666666,0,489.44482167561847,553.6135566666669,1904.2798055013018,284.4165120008429,395.9880015055339,290.925113536235,0.11878301637868087,0.13603994999999988,0.007446479983627796,0.0023720245066666673,0,0.0010233462799999996,5.099779884020488,0.9311649586666667,1.2439985970656078,0.6867659999999997,7.011590123176575,0.36438933333333334,0.06566270378728707,0.010766086286666674,14.012199958165487,0,0.08805330221851666,0.1435419253333335,0,0,0.009946890020122131,0.015813448733333343,0.0010604299992943804,0.001196871513333333,445.7429835001627,8.084802114738098,84.8659333942324,52.88812166617175,6.416225717836724,14.852706580777491,-0.25583511908208634,60.13920052846273,1.0380653333333334,1686.1719126145817,0,0,9.066666666666671e-4,0.22342399880290031,0.006074666666666663,2.989570057252422e-4,9.179999999999994e-4 +2234,0,0,-0,-0,1.6592277443859018,12.215200026830038,0.11671466666666667,0.026413112102697294,0.026250666666666662,149.12900161743164,0.6254769173333334,6.017903685569763,0,4.971530040105184,0,6.6964900096257525,0.007314352960000004,4.04949152469635,0.118048,54.08229001363119,0.0012799999999999988,5.632765054702759,13.345557333333327,0,488.83582814534503,521.0480533333335,1900.6498006184893,283.73009957157,395.9500020345052,289.1823387422487,0.11451601485411327,0.12803759999999992,0.0072207199021553,0.002232493653333334,0,9.631494399999996e-4,4.999539891878764,0.8763905493333335,1.2061986327171326,0.6463679999999996,6.913330078125,0.3429546666666667,0.06441350343326728,0.01013278709333334,13.956400076548258,0,0.08470810080567996,0.13509828266666682,0,0,0.009580290177837014,0.014883245866666677,0.0010300299812418718,0.0011264673066666664,445.8279774983723,8.073276148359344,84.78019026131038,52.09064546908665,6.359205488198936,14.79797066199072,-0.25583511908208634,60.164000511169434,0.9770026666666667,1631.5930327270084,0,0,8.533333333333338e-4,0.22020399942994118,0.0057173333333333295,2.881419980743279e-4,8.639999999999995e-4 +2235,0,0,-0,-0,1.6436460280701557,12.219100077946981,0.10942000000000002,0.02538971183821559,0.024609999999999993,149.1700007120768,0.5863846100000001,5.950443665186564,0,4.944100022315979,0,6.683630029360454,0.006857205900000003,3.970041731993357,0.11066999999999999,53.52878952026367,0.0011999999999999988,5.624425013860066,12.511459999999992,0,488.22682189941406,488.4825500000002,1897.019805908203,283.04368714229713,395.91200002034503,287.4395639482624,0.11025301367044449,0.12003524999999993,0.006996479894345005,0.0020929628000000006,0,9.029525999999996e-4,4.89942987759908,0.8216161400000002,1.1684487064679463,0.6059699999999997,6.815250118573506,0.32152000000000003,0.06317160402735074,0.009499487900000006,13.900899966557821,0,0.0813652016222477,0.12665464000000015,0,0,0.009213630187635621,0.013953043000000012,9.99881992659842e-4,0.0010560631,445.90898132324213,8.061750181980589,84.69444712838836,51.293169272001556,6.302185258561147,14.743234743203947,-0.25583511908208634,60.18620045979818,0.91594,1577.0141528394352,0,0,8.000000000000004e-4,0.21702999994158745,0.005359999999999997,2.777190044677506e-4,8.099999999999995e-4 +2236,0,0,-0,-0,1.6280643117544096,12.222800016403198,0.10212533333333336,0.02440601106112202,0.022969333333333328,149.2079989115397,0.5472923026666667,5.883733590443929,0,4.916830023129781,0,6.6708000500996905,0.006400058840000004,3.892141858736674,0.103292,52.98099009195963,0.0011199999999999988,5.616084853808085,11.67736266666666,0,487.6178283691406,455.9170466666668,1893.3898010253904,282.3572747130243,395.8719991048177,285.6967891542761,0.10599401282767455,0.11203289999999995,0.0067760398766646785,0.001953431946666667,0,8.427557599999997e-4,4.799459973971049,0.7668417306666668,1.1307287414868672,0.5655719999999997,6.717350045839946,0.30008533333333337,0.06193700339645147,0.008866188706666672,13.84559996922811,0,0.0780248021086057,0.11821099733333348,0,0,0.008846970275044441,0.013022840133333347,9.699599856200317e-4,9.856588933333335e-4,445.9879837036132,8.050224215601833,84.60870399546633,50.49569307491646,6.245165028923359,14.688498824417175,-0.25583511908208634,60.206000645955406,0.8548773333333333,1522.4352729518619,0,0,7.46666666666667e-4,0.21390299871563911,0.005002666666666664,2.676739968592301e-4,7.559999999999995e-4 +2237,0,0,-0,-0,1.6124825954386635,12.226099809010824,0.0948306666666667,0.023460410845776398,0.021328666666666656,149.24300257364908,0.5081999953333334,5.817763606707255,0,4.889699935913086,0,6.6579999923706055,0.0059429117800000025,3.81577201684316,0.09591399999999997,52.43879000345866,0.0010399999999999988,5.607754786809285,10.843265333333324,0,487.0088297526042,423.3515433333335,1889.759806315104,281.67086228375143,395.8320007324219,283.95401436028976,0.10173901170492172,0.10403054999999997,0.006559229999159773,0.0018139010933333338,0,7.825589199999996e-4,4.699619968732198,0.7120673213333336,1.0930487910906475,0.5251739999999998,6.619630018870036,0.2786506666666667,0.06071160268038511,0.008232889513333338,13.7903999487559,0,0.07468920076886813,0.10976735466666683,0,0,0.008480340164775649,0.012092637266666682,9.402559808222577e-4,9.152546866666669e-4,446.0629781087239,8.03869824922308,84.5229608625443,49.69821687783137,6.1881447992855705,14.633762905630403,-0.25583511908208634,60.22319984436035,0.7938146666666667,1467.8563930642886,0,0,6.933333333333337e-4,0.2108200006186962,0.004645333333333331,2.579909972458457e-4,7.019999999999996e-4 +2238,0,0,-0,-0,1.5969008791229173,12.22920004526774,0.08753600000000003,0.022551510172585647,0.01968799999999999,149.27600224812826,0.46910768799999986,5.752543568611145,0,4.862730026245117,0,6.645220041275024,0.005485764720000003,3.740882178147634,0.08853599999999998,51.90209039052328,9.599999999999986e-4,5.599414785703023,10.009167999999992,0,486.40081787109375,390.7860400000001,1886.1297912597654,280.98444985447856,395.79100036621094,282.21123956630345,0.09748711188634236,0.09602819999999998,0.00634351985839506,0.0016743702400000005,0,7.223620799999997e-4,4.59991995493571,0.6572929120000003,1.0554088254769642,0.4847759999999997,6.522080103556315,0.257216,0.05949510292460521,0.007599590320000005,13.735499858856201,0,0.07135610158244769,0.10132371200000016,0,0,0.008115770140041908,0.011162434400000015,9.093509725062177e-4,8.448504800000002e-4,446.13498179117835,8.027172282844324,84.43721772962228,48.90074068074627,6.131124569647783,14.579026986843633,-0.25583511908208634,60.23799991607666,0.732752,1413.2775131767153,0,0,6.400000000000003e-4,0.20778200030326843,0.004287999999999997,2.486589995290463e-4,6.479999999999996e-4 +2239,0,0,-0,-0,1.5813191628071712,12.231899897257486,0.08024133333333337,0.02167780976742506,0.018047333333333318,149.30600102742514,0.4300153806666665,5.688063542048137,0,4.835899988810222,0,6.632470051447551,0.0050286176600000025,3.6674323280652366,0.08115799999999997,51.37099011739095,8.799999999999986e-4,5.591084559758504,9.175070666666656,0,485.7928237915039,358.22053666666676,1882.509806315104,280.29803742520573,395.7489980061849,280.46846477231713,0.09323920930425326,0.08802585,0.0061288800012941165,0.001534839386666667,0,6.621652399999997e-4,4.500359932581584,0.6025185026666671,1.0177988857030869,0.4443779999999998,6.4247099955876665,0.23578133333333334,0.05828540244450172,0.0069662911266666705,13.680699904759726,0,0.06802560140689214,0.0928800693333335,0,0,0.007753100052165489,0.01023223153333335,8.787219946195061e-4,7.744462733333338e-4,446.20498148600257,8.01564631646557,84.35147459670026,48.10326448366118,6.0741043400099946,14.524291068056861,-0.25583511908208634,60.250200271606445,0.6716893333333332,1358.698633289142,0,0,5.86666666666667e-4,0.20478799939155579,0.003930666666666664,2.3966499914725622e-4,5.939999999999997e-4 +2240,0,0,-0,-0,1.565737446491425,12.23419992129008,0.07294666666666672,0.02083800934876005,0.016406666666666653,149.3329989115397,0.3909230733333331,5.624293526013692,0,4.80922003587087,0,6.619739969571431,0.004571470600000002,3.59543244043986,0.07377999999999996,50.845290184020996,7.999999999999986e-4,5.582754492759705,8.340973333333324,0,485.18482208251953,325.65503333333345,1878.8798014322915,279.61162499593286,395.7059961954753,278.7256899783308,0.08899580873548985,0.08002350000000003,0.005917609902098775,0.0013953085333333337,0,6.019683999999997e-4,4.400919953982036,0.5477440933333337,0.9802349458138148,0.4039799999999998,6.327510118484497,0.21434666666666669,0.05708220197508732,0.006332991933333337,13.626099983851114,0,0.0647000012298425,0.08443642666666684,0,0,0.007390170164095859,0.009302028666666684,8.48354985161374e-4,7.040420666666672e-4,446.2709808349609,8.004120350086815,84.26573146377822,47.30578828657608,6.017084110372206,14.46955514927009,-0.25583511908208634,60.260000228881836,0.6106266666666667,1304.1197534015687,0,0,5.333333333333336e-4,0.20183699702223143,0.003573333333333331,2.3099600002751686e-4,5.399999999999997e-4 +2241,0,0,-0,-0,1.550155730175679,12.236299991607666,0.06565200000000004,0.020030709138760965,0.014765999999999987,149.3580004374186,0.3518307659999998,5.561253468195598,0,4.782690008481343,0,6.607029994328816,0.004114323540000002,3.524832626183828,0.06640199999999996,50.32499027252197,7.199999999999987e-4,5.5744344393412275,7.506875999999991,0,484.57682545979816,293.0895300000001,1875.259796142578,278.92521256666,395.66300201416016,276.9829151843445,0.08475680835545063,0.07202115000000002,0.005709559967120488,0.0012557776800000003,0,5.417715599999997e-4,4.301620006561279,0.49296968400000035,0.9427069872617722,0.3635819999999998,6.230480035146077,0.19291200000000003,0.05588750199725231,0.005699692740000003,13.57170001665751,0,0.061379301672180496,0.07599278400000016,0,0,0.007027050131000578,0.008371825800000015,8.182389962409312e-4,6.336378600000005e-4,446.334981282552,7.99259438370806,84.1799883308562,46.508312089490985,5.960063880734418,14.414819230483317,-0.25583511908208634,60.26729996999105,0.5495639999999999,1249.5408735139954,0,0,4.8000000000000023e-4,0.1989280010263125,0.003215999999999998,2.22640999709256e-4,4.859999999999997e-4 +2242,0,0,-0,-0,1.5345740138599329,12.238100051879883,0.05835733333333337,0.019254708817849558,0.013125333333333322,149.38000106811523,0.3127384586666665,5.498913407325745,0,4.756309946378072,0,6.594350020090739,0.003657176480000002,3.455592771371206,0.059023999999999965,49.81009070078532,6.399999999999989e-4,5.566104332605998,6.672778666666659,0,483.9688262939453,260.52402666666677,1871.6397908528643,278.2388001373871,395.6179936726888,275.2401403903582,0.0805222075432539,0.06401880000000001,0.00550222994449238,0.001116246826666667,0,4.815747199999998e-4,4.202439943949382,0.43819527466666697,0.9052170465389887,0.3231839999999998,6.133620063463847,0.17147733333333334,0.05470120161771774,0.00506639354666667,13.517500003178915,0,0.05806090123951435,0.06754914133333348,0,0,0.006663810112513602,0.007441622933333347,7.883589860284701e-4,5.632336533333337e-4,446.3949839274088,7.981068417329306,84.09424519793417,45.71083589240589,5.903043651096629,14.360083311696545,-0.25583511908208634,60.27209981282552,0.48850133333333334,1194.9619936264219,0,0,4.266666666666669e-4,0.1960619998474916,0.0028586666666666647,2.145890005825398e-4,4.3199999999999977e-4 +2243,0,0,-0,-0,1.5189922975441867,12.239499886830648,0.0510626666666667,0.01850870841493209,0.011484666666666657,149.3999989827474,0.27364615133333314,5.437273343404134,0,4.7300699551900225,0,6.581699967384338,0.003200029420000002,3.387722909450531,0.05164599999999997,49.30039087931315,5.599999999999991e-4,5.557784199714661,5.8386813333333265,0,483.36082458496094,227.9585233333334,1868.009775797526,277.5523877081143,395.572998046875,273.4973655963719,0.07629200629889965,0.05601645000000002,0.0052979399139682455,9.767159733333336e-4,0,4.2137787999999986e-4,4.103399991989136,0.38342086533333364,0.8677671005328497,0.28278599999999987,6.036930004755656,0.15004266666666669,0.05352100140104691,0.004433094353333336,13.463499863942465,0,0.05474510074903568,0.05910549866666679,0,0,0.0063004700156549616,0.0065114200666666795,7.587059953948483e-4,4.92829446666667e-4,446.4529825846354,7.969542450950551,84.00850206501215,44.91335969532079,5.846023421458841,14.305347392909775,-0.25583511908208634,60.274399757385254,0.42743866666666663,1140.3831137388486,0,0,3.733333333333335e-4,0.1932359995941321,0.002501333333333332,2.068270005111117e-4,3.7799999999999976e-4 +2244,0,0,-0,-0,1.5034105812284406,12.240699847539267,0.04376800000000003,0.017791708155224722,0.009843999999999992,149.41599909464517,0.23455384399999984,5.376333276430766,0,4.703979969024658,0,6.569060047467549,0.0027428823600000015,3.3211630384127298,0.044267999999999974,48.79599062601725,4.7999999999999914e-4,5.549464066823323,5.004583999999994,0,482.75381724039715,195.39302000000006,1864.3897806803384,276.8659752788414,395.5269953409831,271.75459080238556,0.07206610403954983,0.04801410000000001,0.005096559956048925,8.371851200000002e-4,0,3.6118103999999986e-4,4.004479964574178,0.3286464560000002,0.8303551524877548,0.24238799999999985,5.940400044123332,0.128608,0.05234670080244541,0.0037997951600000023,13.40969999631246,0,0.05143430083990097,0.0506618560000001,0,0,0.005937110011776288,0.005581217200000011,7.292679899061719e-4,4.224252400000003e-4,446.50798288981116,7.958016484571797,83.92275893209012,44.115883498235696,5.7890031918210525,14.250611474123003,-0.25583511908208634,60.274200439453125,0.366376,1085.804233851275,0,0,3.2000000000000013e-4,0.19045199950536093,0.0021439999999999983,1.993469995795749e-4,3.239999999999998e-4 +2245,0,0,-0,-0,1.4878288649126945,12.24150005976359,0.03647333333333336,0.01710250771914919,0.008203333333333326,149.43099975585938,0.19546153666666655,5.316063284873962,0,4.6780299345652265,0,6.556460022926331,0.002285735300000001,3.2559231519699097,0.03688999999999998,48.29669062296549,3.999999999999993e-4,5.541144092877706,4.170486666666662,0,482.1468149820964,162.82751666666672,1860.7697957356768,276.1795628495685,395.48099517822266,270.01181600839925,0.06784220474461715,0.04001175000000001,0.004895600024610758,6.976542666666669e-4,0,3.0098419999999987e-4,3.9057000080744424,0.27387204666666687,0.7929832140604655,0.2019899999999999,5.844039996465047,0.10717333333333334,0.05118030061324438,0.0031664959666666687,13.35599978764852,0,0.04812820069491863,0.04221821333333342,0,0,0.005573750124312937,0.004651014333333342,6.986249888238186e-4,3.520210333333336e-4,446.5599797566731,7.946490518193043,83.8370157991681,43.3184073011506,5.731982962183264,14.195875555336231,-0.25583511908208634,60.271599451700844,0.3053133333333333,1031.2253539637018,0,0,2.666666666666668e-4,0.18770800034205118,0.0017866666666666656,1.9213700094648326e-4,2.6999999999999984e-4 +2246,0,0,-0,-0,1.4722471485969484,12.242000023523966,0.029178666666666686,0.016440007214744885,0.006562666666666661,149.44200007120767,0.15636922933333325,5.256483276685079,0,4.652229984601338,0,6.543869972229004,0.0018285882400000011,3.1919433077176413,0.029511999999999983,47.80249055226644,3.199999999999995e-4,5.532823920249939,3.3363893333333294,0,481.5398203531901,130.26201333333339,1857.1597900390623,275.49315042029565,395.4330012003581,268.269041214413,0.06362290401011705,0.032009400000000014,0.004697399990012248,5.581234133333335e-4,0,2.4078735999999993e-4,3.807040015856425,0.21909763733333348,0.7556512504816055,0.16159199999999993,5.747850060462952,0.08573866666666669,0.05001960135996342,0.002533196773333335,13.302599986394247,0,0.04482450056821108,0.03377457066666674,0,0,0.005210430050889651,0.003720811466666674,6.682549962230647e-4,2.8161682666666686e-4,446.60898081461585,7.934964551814288,83.75127266624608,42.520931104065504,5.674962732545476,14.14113963654946,-0.25583511908208634,60.26640033721924,0.24425066666666667,976.6464740761285,0,0,2.1333333333333344e-4,0.18500300124287605,0.0014293333333333324,1.851880018269488e-4,2.1599999999999988e-4 +2247,0,0,-0,-0,1.4566654322812023,12.242200056711832,0.021884000000000015,0.015803107448543113,0.004921999999999996,149.45100021362305,0.11727692199999995,5.197573145230611,0,4.626569946606954,0,6.5313200155893965,0.0013714411800000007,3.1292234659194946,0.022133999999999987,47.313490867614746,2.3999999999999965e-4,5.524513840675354,2.502291999999997,0,480.93281809488934,97.69651000000005,1853.539805094401,274.80673799102277,395.38500213623047,266.5262664204267,0.05940810280541579,0.02400705000000001,0.004501829971559346,4.185925600000001e-4,0,1.8059051999999993e-4,3.7085099617640176,0.16432322800000015,0.7183583229780197,0.12119399999999997,5.651820023854573,0.06430400000000003,0.048864501218001045,0.0018998975800000014,13.249300003051758,0,0.04152330011129379,0.025330928000000058,0,0,0.004849190047631661,0.0027906086000000054,6.381460019232085e-4,2.1121262000000013e-4,446.6549809773762,7.923438585435534,83.66552953332405,41.72345490698041,5.617942502907687,14.086403717762687,-0.25583511908208634,60.25879923502604,0.18318800000000002,922.0675941885552,0,0,1.600000000000001e-4,0.1823380005856355,0.0010719999999999996,1.784900002045712e-4,1.6199999999999993e-4 +2248,0,0,-0,-0,1.4410837159654561,12.24209992090861,0.014589333333333343,0.015190906977901856,0.0032813333333333305,149.4569994608561,0.0781846146666666,5.139313181241353,0,4.601050019264221,0,6.518779993057251,9.142941200000003e-4,3.067733565966288,0.014755999999999991,46.82939084370931,1.5999999999999966e-4,5.516203800837199,1.6681946666666647,0,480.32582092285156,65.13100666666668,1849.9197998046873,274.12032556174995,395.3370005289714,264.78349162644037,0.055197701789438725,0.016004699999999997,0.004306420062979062,2.7906170666666674e-4,0,1.2039367999999994e-4,3.6100999315579734,0.10954881866666671,0.681104357043902,0.08079599999999992,5.555950045585632,0.042869333333333315,0.047716900085409485,0.0012665983866666673,13.196199893951416,0,0.03822699996332327,0.016887285333333363,0,0,0.004489850058841209,0.0018604057333333366,6.08282988347734e-4,1.4080841333333346e-4,446.6989822387695,7.911912619056779,83.57978640040203,40.92597870989531,5.560922273269899,14.031667798975917,-0.25583511908208634,60.24869950612386,0.12212533333333331,867.4887143009817,0,0,1.066666666666667e-4,0.17971100037296614,7.14666666666666e-4,1.7203499858927293e-4,1.0799999999999991e-4 +2249,0,0,-0,-0,1.42550199964971,12.241599957148233,0.0072946666666666715,0.014602506533265114,0.0016406666666666653,149.46100107828775,0.0390923073333333,5.081713120142619,0,4.575670043627421,0,6.506269931793213,4.571470600000004e-4,3.0074337124824524,0.007377999999999996,46.35029125213623,7.999999999999988e-5,5.5078935623168945,0.8340973333333324,0,479.7198028564453,32.56550333333331,1846.3097839355466,273.4339131324771,395.28700256347656,263.04071683245405,0.050991700651745,0.008002350000000005,0.00411116995383054,1.3953085333333337e-4,0,6.0196839999999995e-5,3.5118199984232583,0.054774409333333385,0.6438914388418198,0.04039799999999999,5.460240006446838,0.021434666666666657,0.04657670048375925,6.332991933333332e-4,13.14329997698466,0,0.03493549985190233,0.008443642666666681,0,0,0.004130280110985041,9.302028666666688e-4,5.786560068372637e-4,7.040420666666668e-5,446.7399826049804,7.900386652678025,83.49404326748,40.128502512810215,5.50390204363211,13.976931880189145,-0.25583511908208634,60.236099561055504,0.0610626666666666,812.9098344134084,0,0,5.333333333333335e-5,0.1771219993631045,3.573333333333332e-4,1.65814000259464e-4,5.399999999999996e-5 +2250,0,0,-0,-0,1.409920283333964,12.240900039672852,0,0.014036806377892693,0,149.46200052897134,0,5.024763107299805,0,4.5504400332768755,0,6.493789951006572,0,2.948323825995127,0,45.87609100341797,0,5.499583880106608,0,0,479.1128616333008,0,1842.6897989908853,272.7475007032042,395.2369969685872,261.29794203846774,0.04679010032365719,0,0.00391843996476382,0,0,0,3.413659989833832,0,0.6067174126704534,0,5.364699999491374,0,0.045441699835161366,0,13.09060001373291,0,0.03164640022441745,0,0,0,0.0037705200375057757,0,5.492520043238377e-4,0,446.7779871622721,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.22099908192953,0,758.330954525835,0,0,0,0.17457000042001405,0,1.5981700319874412e-4,0 +2251,0,0,-0,-0,1.409920283333964,12.239799976348877,0,0.013493106079598268,0,149.45999908447266,0,4.968453129132588,0,4.5253400405248,0,6.481330037117004,0,2.890363931655884,0,45.40679136912028,0,5.49128258228302,0,0,478.50767771402997,0,1839.0797932942705,272.7475007032042,395.18700408935547,261.29794203846774,0.04259289956341187,0,0.0037281199862870076,0,0,0,3.31563001871109,0,0.5695846130450567,0,5.269310037295024,0,0.0443116994574666,0,13.038100083669027,0,0.02835980011150241,0,0,0,0.0034106300057222447,0,5.200610030442476e-4,0,446.81298319498694,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.20339902242025,0,758.330954525835,0,0,0,0.17205500106016794,0,1.5403700065993084e-4,0 +2252,0,0,-0,-0,1.409920283333964,12.238600095113119,0,0.012970505903164545,0,149.4569994608561,0,4.912773052851359,0,4.500379999478658,0,6.468889991442363,0,2.833534061908722,0,44.9422918955485,0,5.485401034355164,0,0,478.0470377604167,0,1835.5898335774737,272.7475007032042,395.13499959309894,261.29794203846774,0.038592799877127014,0,0.003542450004412482,0,0,0,3.219060023625692,0,0.5336348911126455,0,5.174829959869385,0,0.04319899994879961,0,12.985700050989786,0,0.025254599905262392,0,0,0,0.0030686500249430537,0,4.910719968999425e-4,0,446.84697723388666,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.18459955851237,0,758.330954525835,0,0,0,0.16957600166400275,0,1.4846700044775693e-4,0 +2253,0,0,-0,-0,1.409920283333964,12.23740005493164,0,0.012468105647712946,0,149.45400110880533,0,4.857723077138265,0,4.47557000319163,0,6.456480026245117,0,2.777804176012675,0,44.48259162902832,0,5.482681155204773,0,0,477.78562418619794,0,1832.3198445638018,272.7475007032042,395.08299509684247,261.29794203846774,0.03496660012751818,0,0.00336593003400291,0,0,0,3.1252599954605103,0,0.49993619571129483,0,5.081990043322246,0,0.042113700260718666,0,12.933600028355917,0,0.022487900064637262,0,0,0,0.0027608100014428296,0,4.636860006333639e-4,0,446.88098144531244,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.16580009460449,0,758.330954525835,0,0,0,0.1671340006093184,0,1.4309800220265365e-4,0 +2254,0,0,-0,-0,1.409920283333964,12.236200094223022,0,0.011985105384762088,0,149.45100021362305,0,4.803292989730835,0,4.45087997118632,0,6.444090008735657,0,2.7231743137041726,0,44.02759106953939,0,5.48098103205363,0,0,477.6015218098958,0,1829.269856770833,272.7475007032042,395.02999623616535,261.29794203846774,0.031679599856336914,0,0.0031981299980543554,0,0,0,3.034130016962687,0,0.468348890542984,0,4.990779995918274,0,0.04105510003864765,0,12.881600062052408,0,0.020023200040062267,0,0,0,0.0024837099869425097,0,4.378139977537406e-4,0,446.9139836629231,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.146999994913735,0,758.330954525835,0,0,0,0.1647260015209516,0,1.3792399840895087e-4,0 +2255,0,0,-0,-0,1.409920283333964,12.234899838765463,0,0.011520905264963707,0,149.44799931844076,0,4.749473015467326,0,4.4263399839401245,0,6.431729992230733,0,2.6696044206619263,0,43.57719135284424,0,5.479661027590434,0,0,477.45044962565106,0,1826.4198303222654,272.7475007032042,394.97599538167316,261.29794203846774,0.02870039998864134,0,0.003038619994185865,0,0,0,2.9456299940745034,0,0.43874257057905197,0,4.901170015335083,0,0.04002269978324572,0,12.829799969991049,0,0.01782749981308977,0,0,0,0.00223430998933812,0,4.1337600123370066e-4,0,446.9469858805338,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.12819957733154,0,758.330954525835,0,0,0,0.16235300029317537,0,1.329360020463355e-4,0 +2256,0,0,-0,-0,1.409920283333964,12.233700195948282,0,0.011074705049395561,0,149.44499969482422,0,4.696252822875977,0,4.401930014292399,0,6.419389963150024,0,2.6171045303344727,0,43.1314910252889,0,5.478501081466675,0,0,477.3174133300781,0,1823.7498779296873,272.7475007032042,394.9220021565755,261.29794203846774,0.026000399918605883,0,0.002887000019351641,0,0,0,2.859659989674886,0,0.4109960347414017,0,4.813129981358846,0,0.03901570041974386,0,12.778199990590414,0,0.015871800094222028,0,0,0,0.0020098600070923567,0,3.9029199979268014e-4,0,446.97998046874994,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.10939979553223,0,758.330954525835,0,0,0,0.16001500189304352,0,1.2813000163684288e-4,0 +2257,0,0,-0,-0,1.409920283333964,12.232500076293945,0,0.010645804926753044,0,149.44200007120767,0,4.643642783164978,0,4.377660036087036,0,6.40707000096639,0,2.5656246145566306,0,42.69039217631022,0,5.477450966835022,0,0,477.19637807210285,0,1821.2598876953123,272.7475007032042,394.86600494384766,261.29794203846774,0.023553500107179087,0,0.0027428899969284735,0,0,0,2.7761699557304382,0,0.38499236355225247,0,4.726639986038208,0,0.03803369992723068,0,12.726699908574423,0,0.014129899985467395,0,0,0,0.0018078899981143575,0,3.684900002554059e-4,0,447.01298522949213,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.09059969584147,0,758.330954525835,0,0,0,0.15771000335613886,0,1.2349700106521291e-4,0 +2258,0,0,-0,-0,1.409920283333964,12.231299956639608,0,0.010233504620070258,0,149.4389991760254,0,4.591612855593364,0,4.353530049324036,0,6.394779960314433,0,2.5151547392209372,0,42.25379180908203,0,5.476480960845947,0,0,477.0853551228841,0,1818.9299011230466,272.7475007032042,394.80999755859375,261.29794203846774,0.021336100064218044,0,0.002605919997828702,0,0,0,2.6950900157292685,0,0.360624539355437,0,4.641669988632202,0,0.037076100086172424,0,12.67550015449524,0,0.012578699893007675,0,0,0,0.0016261399917614956,0,3.4789799732000876e-4,0,447.0449778238932,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.07179927825928,0,758.330954525835,0,0,0,0.1554389993349711,0,1.1903200053590506e-4,0 +2259,0,0,-0,-0,1.409920283333964,12.229999939600626,0,0.0098371545318514109,0,149.4360008239746,0,4.540172815322876,0,4.329519947369893,0,6.38250998655955,0,2.4656648437182107,0,41.821691830952965,0,5.475590904553731,0,0,476.9823303222656,0,1816.7498881022134,272.7475007032042,394.7519989013672,261.29794203846774,0.019326899976780016,0,0.002475749992299825,0,0,0,2.616349975268046,0,0.3377915844321251,0,4.558200041453044,0,0.03614219961067041,0,12.624399979909262,0,0.01119719996737937,0,0,0,0.0014626099922073383,0,3.284499980509281e-4,0,447.07698567708326,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.053099632263184,0,758.330954525835,0,0,0,0.15320000052452087,0,1.1472799997136462e-4,0 +2260,0,0,-0,-0,1.409920283333964,12.228800137837728,0,0.009456194238737226,0,149.43299992879233,0,4.489312807718913,0,4.305649995803833,0,6.370270053545634,0,2.417134920756022,0,41.393991788228355,0,5.474760890007019,0,0,476.8873112996419,0,1814.7099202473955,272.7475007032042,394.6939977010091,261.29794203846774,0.017506299850841362,0,0.002352050020514677,0,0,0,2.5398799777030945,0,0.31639650215705234,0,4.476209998130798,0,0.03523150024314722,0,12.573599974314371,0,0.00996713999969264,0,0,0,0.0013154800108168274,0,3.1008400158801425e-4,0,447.1089833577473,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.03430016835531,0,758.330954525835,0,0,0,0.15099400157729784,0,1.105800001823809e-4,0 +2261,0,0,-0,-0,1.409920283333964,12.227599859237671,0,0.0090899842325598,0,149.43000030517578,0,4.439022699991862,0,4.2819199959437055,0,6.358050028483073,0,2.369565010070801,0,40.970691998799644,0,5.4739909172058105,0,0,476.7982915242513,0,1812.8099060058591,272.7475007032042,394.63600158691406,261.29794203846774,0.015856800057614844,0,0.0022344900256333253,0,0,0,2.465629994869232,0,0.29635129620631534,0,4.395670056343079,0,0.03434359965225061,0,12.522900104522705,0,0.008871849936743578,0,0,0,0.0011831200002537419,0,2.927409999150162e-4,0,447.1409810384114,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,60.01559925079346,0,758.330954525835,0,0,0,0.1488189995288849,0,1.0658199971658178e-4,0 +2262,0,0,-0,-0,1.409920283333964,12.226400136947632,0,0.008737963857129216,0,149.42700068155924,0,4.389302770296733,0,4.258310039838155,0,6.345850030581157,0,2.32292511065801,0,40.55179214477539,0,5.473270813624064,0,0,476.7162780761719,0,1811.0299275716143,272.7475007032042,394.5760014851888,261.29794203846774,0.014362400009607276,0,0.0021227799588814378,0,0,0,2.393520017464956,0,0.277569979429245,0,4.316560069719951,0,0.03347770031541586,0,12.472399950027466,0,0.007896660012193024,0,0,0,0.0010640399996191263,0,2.7636299637379125e-4,0,447.1729838053385,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.99679978688558,0,758.330954525835,0,0,0,0.14667600020766258,0,1.027289993847565e-4,0 +2263,0,0,-0,-0,1.409920283333964,12.22509996096293,0,0.008399593799064556,0,149.42399978637695,0,4.340132673581441,0,4.2348399957021075,0,6.333679993947347,0,2.2771951953570047,0,40.13709259033203,0,5.472610870997111,0,0,476.64026133219403,0,1809.359924316406,272.7475007032042,394.51599884033203,261.29794203846774,0.013008500061308345,0,0.002016620012000203,0,0,0,2.323509991168976,0,0.25997356325387955,0,4.238859971364339,0,0.032633500484128795,0,12.422099987665812,0,0.007028439974722763,0,0,0,9.569190006004646e-4,0,2.6089799697122845e-4,0,447.203987121582,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.978099505106606,0,758.330954525835,0,0,0,0.14456399778525034,0,2.5096619841254626e-5,0 +2264,0,0,-0,-0,1.409920283333964,12.223900000254313,0,0.008074323646724224,0,149.4210001627604,0,4.291522701581319,0,4.211489915847778,0,6.321529984474182,0,2.232365349928538,0,39.726792335510254,0,5.47200075785319,0,0,476.5702387491862,0,1807.7999165852862,272.7475007032042,394.4559961954753,261.29794203846774,0.011781999996552864,0,0.001915749996745338,0,0,0,2.255529999732971,0,0.24349004526933035,0,4.162530024846395,0,0.031810300114254154,0,12.371999979019165,0,0.006255499979791542,0,0,0,8.605609958370527e-4,0,2.4629499966977164e-4,0,447.2349777221679,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.95929972330729,0,758.330954525835,0,0,0,0.14248299847046533,0,0,0 +2265,0,0,-0,-0,1.409920283333964,12.222699960072836,0,0.007761653512716293,0,149.41799926757812,0,4.243452628453572,0,4.188280026117961,0,6.309410015741984,0,2.18843537569046,0,39.32059224446615,0,5.471430778503418,0,0,476.50522867838544,0,1806.3499247233071,272.7475007032042,394.39600372314453,261.29794203846774,0.010670900034407774,0,0.0018199099965083103,0,0,0,2.1895199616750083,0,0.22804742927352586,0,4.087570110956828,0,0.03100780009602507,0,12.322100003560385,0,0.005567419963578383,0,0,0,7.73888998082839e-4,0,2.3250600012640157e-4,0,447.2659810384114,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.94059944152832,0,758.330954525835,0,0,0,0.140430998057127,0,0,0 +2266,0,0,-0,-0,1.409920283333964,12.221499999364218,0,0.007461103416668872,0,149.41499964396158,0,4.195922573407491,0,4.165189981460571,0,6.297310034434001,0,2.145355482896169,0,38.91859277089437,0,5.470910747845967,0,0,476.4452133178711,0,1804.9999287923174,272.7475007032042,394.33499908447266,261.29794203846774,0.009664400092636546,0,0.0017288399879665424,0,0,0,2.1254300276438394,0,0.21358073378602663,0,4.0139400362968445,0,0.03022530007486542,0,12.272400061289469,0,0.004954899932878713,0,0,0,6.959300032273555e-4,0,2.1948699941276573e-4,0,447.2959823608398,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.921799977620445,0,758.330954525835,0,0,0,0.13840899740656218,0,0,0 +2267,0,0,-0,-0,1.409920283333964,12.22029995918274,0,0.007172193222989638,0,149.4119987487793,0,4.148932576179504,0,4.142229994138082,0,6.2852299610773725,0,2.103105584780375,0,38.52069250742594,0,5.4704307317733765,0,0,476.38920338948566,0,1803.7399495442705,272.7475007032042,394.2740020751953,261.29794203846774,0.008752690007289251,0,0.0016423099829504888,0,0,0,2.063199977080027,0,0.20002995183070502,0,3.9416199922561646,0,0.029462400047729414,0,12.22290007273356,0,0.004409670014865696,0,0,0,6.258130063846087e-4,0,2.0719500025734305e-4,0,447.3269780476887,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.90310001373291,0,758.330954525835,0,0,0,0.13641600062449774,0,0,0 +2268,0,0,-0,-0,1.409920283333964,12.218999942143759,0,0.0068944831533978386,0,149.40899912516275,0,4.1024625698725385,0,4.119400064150493,0,6.27318000793457,0,2.061705688635508,0,38.12689208984375,0,5.4699907302856445,0,0,476.3381856282552,0,1802.5699361165362,272.7475007032042,394.21399943033856,261.29794203846774,0.00792687013745308,0,0.001560109987622127,0,0,0,2.002789984146754,0,0.18733609095215797,0,3.8705999851226807,0,0.028718700011571247,0,12.173499981562296,0,0.003924349982601901,0,0,0,5.627489978602777e-4,0,1.955899982325112e-4,0,447.35698445638013,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.88439909617106,0,758.330954525835,0,0,0,0.13445200150211653,0,0,0 +2269,0,0,-0,-0,1.409920283333964,12.21779990196228,0,0.006627522991038859,0,149.40599950154623,0,4.056522409121196,0,4.0966999133427935,0,6.261149962743123,0,2.0210957527160645,0,37.73709265391032,0,5.469580769538879,0,0,476.29117584228516,0,1801.4699401855466,272.7475007032042,394.15299733479816,261.29794203846774,0.0071788599792247014,0,0.0014820000117955108,0,0,0,1.9441400070985158,0,0.17544616386294365,0,3.8008500138918557,0,0.027993600349873304,0,12.12440005938212,0,0.003492380007325361,0,0,0,5.060330028451668e-4,0,1.846330002687561e-4,0,447.38698069254554,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.865699768066406,0,758.330954525835,0,0,0,0.13251599917809168,0,0,0 +2270,0,0,-0,-0,1.409920283333964,12.216600100199381,0,0.006370912888087332,0,149.40399932861328,0,4.01109250386556,0,4.0741199652353925,0,6.249140063921611,0,1.9812858402729034,0,37.35129356384277,0,5.469200770060222,0,0,476.24816131591797,0,1800.4499409993487,272.7475007032042,394.0929997762044,261.29794203846774,0.006501350008572142,0,0.0014077899977564812,0,0,0,1.8871899942557018,0,0.16430816302696863,0,3.7323400179545083,0,0.02728669981782635,0,12.075400114059448,0,0.003107910005686184,0,0,0,4.5502499900370214e-4,0,1.742880000771644e-4,0,447.41698710123694,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.84700012207031,0,758.330954525835,0,0,0,0.13060900072256723,0,0,0 +2271,0,0,-0,-0,1.409920283333964,12.215400060017904,0,0.006124232740451892,0,149.400998433431,0,3.96618245045344,0,4.051669994990031,0,6.237149953842163,0,1.9422559241453807,0,36.96949291229248,0,5.468860745429993,0,0,476.2091573079427,0,1799.4999491373696,272.7475007032042,394.0320002237956,261.29794203846774,0.005887710023671389,0,0.001337299996521324,0,0,0,1.8319099843502045,0,0.15387710804740587,0,3.665059983730316,0,0.02659759996458888,0,12.026700019836426,0,0.0027657099805461862,0,0,0,4.0915300147995975e-4,0,1.645219987646366e-4,0,447.44597625732416,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.82830015818278,0,758.330954525835,0,0,0,0.12872799982627234,0,0,0 +2272,0,0,-0,-0,1.409920283333964,12.214099963506063,0,0.00588711261904488,0,149.39799880981445,0,3.9217624266942344,0,4.029340028762817,0,6.225190083185832,0,1.9040060142676036,0,36.591593424479164,0,5.4685507615407305,0,0,476.1731440226237,0,1798.6199442545571,272.7475007032042,393.9720001220703,261.29794203846774,0.005331939978835483,0,0.0012703200045507401,0,0,0,1.7782300114631653,0,0.14410698786377907,0,3.5989799896876016,0,0.02592580004905661,0,11.978100061416626,0,0.0024611600286637745,0,0,0,3.679009969346225e-4,0,1.5530199986339235e-4,0,447.4759852091471,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.80959924062093,0,758.330954525835,0,0,0,0.1268749994536241,0,0,0 +2273,0,0,-0,-0,1.409920283333964,12.212900082270304,0,0.005659172544255853,0,149.39500045776367,0,3.8778523802757263,0,4.007130066553752,0,6.213250041007996,0,1.86651607354482,0,36.2175931930542,0,5.468260685602824,0,0,476.1391372680664,0,1797.7899373372393,272.7475007032042,393.91099548339844,261.29794203846774,0.0048285699837530656,0,0.0012066900089848787,0,0,0,1.7261299987634022,0,0.13495581348737082,0,3.5340900222460427,0,0.02527090006818374,0,11.929700056711832,0,0.002190110021426032,0,0,0,3.308039958938025e-4,0,1.4659799974954998e-4,0,447.50498199462885,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.79089959462484,0,758.330954525835,0,0,0,0.12504899936417738,0,0,0 +2274,0,0,-0,-0,1.409920283333964,12.211699962615967,0,0.005440072505734861,0,149.39199701944986,0,3.8344323436419168,0,3.9850500226020813,0,6.201339999834697,0,1.8297461370627086,0,35.84739303588867,0,5.468000650405884,0,0,476.10913340250653,0,1797.0299682617185,272.7475007032042,393.8510004679362,261.29794203846774,0.004372689950590332,0,0.0011462399949474882,0,0,0,1.6755500038464863,0,0.12638458299140135,0,3.4703699747721353,0,0.024632399901747704,0,11.881500164667765,0,0.0019488899949161957,0,0,0,2.974439994432032e-4,0,1.3838100373201692e-4,0,447.53298187255854,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.77219899495443,0,758.330954525835,0,0,0,0.12324899931748708,0,0,0 +2275,0,0,-0,-0,1.409920283333964,12.210500001907349,0,0.005229452353281279,0,149.38900248209634,0,3.7914923230806985,0,3.9630899826685586,0,6.1894499858220415,0,1.7936862309773762,0,35.48099327087402,0,5.467760642369588,0,0,476.0811233520508,0,1796.3099670410154,272.7475007032042,393.7909978230794,261.29794203846774,0.003959810012020171,0,0.001088819990400225,0,0,0,1.6264399985472362,0,0.11835731007158756,0,3.407790025075277,0,0.024010100091497105,0,11.833499987920126,0,0.0017342200056494523,0,0,0,2.6744600230207044e-4,0,1.3062399981815057e-4,0,447.5619761149088,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.753600120544434,0,758.330954525835,0,0,0,0.12147500055531661,0,0,0 +2276,0,0,-0,-0,1.409920283333964,12.20930012067159,0,0.005026982243483265,0,149.3860003153483,0,3.7490423123041787,0,3.9412500262260437,0,6.177579959233602,0,1.7583463092645009,0,35.118393898010254,0,5.467540701230367,0,0,476.0561116536458,0,1795.64995320638,272.7475007032042,393.73100026448566,261.29794203846774,0.0035858899742985764,0,0.0010342599901681144,0,0,0,1.5787700017293294,0,0.11083898569146793,0,3.346330006917318,0,0.023403399779150885,0,11.785699923833212,0,0.0015431799984071404,0,0,0,2.4047199864677774e-4,0,1.2330100192533186e-4,0,447.59097798665357,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.734899838765465,0,758.330954525835,0,0,0,0.11972600035369396,0,0,0 +2277,0,0,-0,-0,1.409920283333964,12.20799994468689,0,0.004832362290471792,0,149.38299942016602,0,3.707072297732035,0,3.919539988040924,0,6.165740092595418,0,1.7237063745657604,0,34.759393056233726,0,5.467340707778931,0,0,476.03311411539715,0,1795.0299682617185,272.7475007032042,393.6709976196289,261.29794203846774,0.0032472600190279386,0,9.824410032403346e-4,0,0,0,1.5324900150299072,0,0.10379762264589469,0,3.2859700123469033,0,0.022812000010162592,0,11.738099972407023,0,0.0013731699824954073,0,0,0,2.162160017178394e-4,0,1.1638799999976375e-4,0,447.6189829508463,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.71619955698649,0,758.330954525835,0,0,0,0.118002999573946,0,0,0 +2278,0,0,-0,-0,1.409920283333964,12.206800063451132,0,0.004645282169803977,0,149.38000106811523,0,3.6655622919400535,0,3.8979400197664895,0,6.153909921646118,0,1.689756453037262,0,34.40419356028239,0,5.467160662015279,0,0,476.0131022135417,0,1794.449961344401,272.7475007032042,393.61100006103516,261.29794203846774,0.002940589969512075,0,9.332120049900065e-4,0,0,0,1.4875699877738953,0,0.09720321682592233,0,3.226700007915497,0,0.022235399888207514,0,11.690700054168701,0,0.001221879996592179,0,0,0,1.944049993956772e-4,0,1.0986200019639607e-4,0,447.6469802856445,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.69760004679362,0,758.330954525835,0,0,0,0.1163039995978276,0,0,0 +2279,0,0,-0,-0,1.409920283333964,12.205599943796793,0,0.004465442034415901,0,149.3769989013672,0,3.62452224890391,0,3.876460015773773,0,6.142109910647075,0,1.6564565201600392,0,34.05259354909261,0,5.467000643412272,0,0,475.9940948486328,0,1793.909973144531,272.7475007032042,393.552001953125,261.29794203846774,0.002662869985215366,0,8.864459960022941e-4,0,0,0,1.4439599911371868,0,0.09102737531065941,0,3.1685000459353128,0,0.021673500072211027,0,11.643399874369303,0,0.0010872499939675133,0,0,0,1.7479300004197285e-4,0,1.0370199925091583e-4,0,447.6749827067057,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.67889976501465,0,758.330954525835,0,0,0,0.11463000004490216,0,0,0 +2280,0,0,-0,-0,1.409920283333964,12.204399983088175,0,0.004292571955981354,0,149.3740005493164,0,3.583942234516144,0,3.8550999959309897,0,6.130340019861857,0,1.6237965822219849,0,33.70459397633871,0,5.4668506781260175,0,0,475.97708892822266,0,1793.41997273763,272.7475007032042,393.49300384521484,261.29794203846774,0.00241135999870797,0,8.420219916539887e-4,0,0,0,1.4016200105349224,0,0.08524369696776073,0,3.1113399863243103,0,0.02112570001433293,0,11.596400022506714,0,9.674530010670424e-4,0,0,0,1.5715899765685512e-4,0,9.788699996230814e-5,0,447.70198567708326,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.6602996190389,0,758.330954525835,0,0,0,0.11298000005384286,0,0,0 +2281,0,0,-0,-0,1.409920283333964,12.203200022379557,0,0.004126391878041129,0,149.37099965413412,0,3.543822169303894,0,3.833859999974569,0,6.118580102920532,0,1.5917866627375286,0,33.36009375254313,0,5.4667205810546875,0,0,475.9620895385742,0,1792.949991861979,272.7475007032042,393.4340006510417,261.29794203846774,0.0021836000184218087,0,7.998220098670572e-4,0,0,0,1.36053000887235,0,0.07982708637913068,0,3.055209994316101,0,0.020591699983924627,0,11.549499988555908,0,8.60846004798077e-4,0,0,0,1.4130300041870214e-4,0,9.239779986576953e-5,0,447.72998046874994,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.64159965515137,0,758.330954525835,0,0,0,0.11135400086641312,0,0,0 +2282,0,0,-0,-0,1.409920283333964,12.201900084813436,0,0.003966651837496708,0,149.36800003051758,0,3.5041521787643433,0,3.8127400080362954,0,6.1068499485651655,0,1.560416728258133,0,33.01919364929199,0,5.4666106303532915,0,0,475.94808197021484,0,1792.5199686686196,272.7475007032042,393.37500254313153,261.29794203846774,0.0019773399884191654,0,7.597350049763918e-4,0,0,0,1.3206399977207184,0,0.07475444426139195,0,3.000090003013611,0,0.020071200095117092,0,11.502800067265829,0,7.65981991814139e-4,0,0,0,1.2704699899283392e-4,0,8.721609932157055e-5,0,447.75698343912757,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.622999827067055,0,758.330954525835,0,0,0,0.10975200061996777,0,0,0 +2283,0,0,-0,-0,1.409920283333964,12.200700044631958,0,0.0038130917431165776,0,149.36500040690103,0,3.4649221698443093,0,3.791730006535848,0,6.095139980316162,0,1.5296667913595836,0,32.681793530782066,0,5.4665006796518965,0,0,475.9360758463542,0,1792.1199747721353,272.7475007032042,393.31599680582684,261.29794203846774,0.0017905599961522967,0,7.216560043161735e-4,0,0,0,1.2819200058778126,0,0.0700039720783631,0,2.945959985256195,0,0.019563800034423668,0,11.456299861272177,0,6.815690042761465e-4,0,0,0,1.1422800101475634e-4,0,8.232500052448206e-5,0,447.78398386637366,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.60439936319987,0,758.330954525835,0,0,0,0.10817200007538001,0,0,0 +2284,0,0,-0,-0,1.409920283333964,12.19950000445048,0,0.0036654816358350217,0,149.36199951171875,0,3.4261321425437927,0,3.7708400090535483,0,6.083459973335266,0,1.4995268285274506,0,32.34779357910156,0,5.4664106369018555,0,0,475.9250742594401,0,1791.7399902343748,272.7475007032042,393.2579981486003,261.29794203846774,0.0016214199907456834,0,6.854839981921638e-4,0,0,0,1.244329998890559,0,0.06555527510742347,0,2.8928099870681763,0,0.019069300188372534,0,11.410000006357828,0,6.06456000241451e-4,0,0,0,1.0270199951870988e-4,0,7.77079009518881e-5,0,447.81098429361975,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.585699717203774,0,758.330954525835,0,0,0,0.10661500133574009,0,0,0 +2285,0,0,-0,-0,1.409920283333964,12.198300043741861,0,0.003523581583673755,0,149.3589998881022,0,3.387782096862793,0,3.7500699957211814,0,6.071789979934692,0,1.4699669082959492,0,32.01729393005371,0,5.466330607732137,0,0,475.9160690307617,0,1791.399983723958,272.7475007032042,393.1990025838216,261.29794203846774,0.0014682499944077183,0,6.511250054851795e-4,0,0,0,1.2078400055567424,0,0.061389051377773285,0,2.840620001157125,0,0.018587199815859396,0,11.363900105158487,0,5.396190002405395e-4,0,0,0,9.233879973180592e-5,0,7.334970056642003e-5,0,447.8369801839192,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.56709988911947,0,758.330954525835,0,0,0,0.10508100067575772,0,0,0 +2286,0,0,-0,-0,1.409920283333964,12.197099924087524,0,0.003387181553989649,0,149.3560002644857,0,3.3498620986938477,0,3.7294099728266397,0,6.060149987538655,0,1.440966973702113,0,31.690094153086346,0,5.466260671615601,0,0,475.90806833902997,0,1791.0699869791665,272.7475007032042,393.14100392659503,261.29794203846774,0.001329550005417938,0,6.184860055024425e-4,0,0,0,1.1724199950695038,0,0.05748760451873144,0,2.7893699606259665,0,0.018117299769073725,0,11.317999998728434,0,4.801459969409431e-4,0,0,0,8.302109987804822e-5,0,6.923580015912496e-5,0,447.8639806111653,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.548499743143715,0,758.330954525835,0,0,0,0.10356900095939636,0,0,0 +2287,0,0,-0,-0,1.409920283333964,12.195800065994263,0,0.0032560714753344655,0,149.35299936930338,0,3.3123620748519897,0,3.708859999974569,0,6.048539956410726,0,1.4125470320383708,0,31.366294225056965,0,5.466200590133667,0,0,475.9010645548503,0,1790.7699686686196,272.7475007032042,393.08399963378906,261.29794203846774,0.001203949999762699,0,5.874829997386163e-4,0,0,0,1.1380399962266285,0,0.05383393416802088,0,2.7390399972597756,0,0.01765920004496972,0,11.272199948628744,0,4.2722699921190116e-4,0,0,0,7.46434998291079e-5,0,6.535259975256243e-5,0,447.8899841308593,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.52989991505941,0,758.330954525835,0,0,0,0.10207800008356571,0,0,0 +2288,0,0,-0,-0,1.409920283333964,12.194599946339926,0,0.003130021427447597,0,149.34999974568686,0,3.2752820452054343,0,3.6884300311406455,0,6.036940058072408,0,1.3846970697244008,0,31.045794010162354,0,5.466140627861023,0,0,475.8940658569336,0,1790.4899902343748,272.7475007032042,393.0260009765625,261.29794203846774,0.0010902099990441154,0,5.580339978526657e-4,0,0,0,1.1046599944432576,0,0.05041244377692541,0,2.689610004425049,0,0.017212800060709316,0,11.226600170135498,0,3.8013899999593076e-4,0,0,0,6.711110048248277e-5,0,6.168709963579506e-5,0,447.9159825642903,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.51129945119222,0,758.330954525835,0,0,0,0.10060900015135606,0,0,0 +2289,0,0,-0,-0,1.409920283333964,12.193400224049887,0,0.0030088613469464085,0,149.3470001220703,0,3.238621989885966,0,3.6681100130081177,0,6.025369962056478,0,1.3573871453603108,0,30.728594144185383,0,5.466100613276164,0,0,475.88905080159503,0,1790.240000406901,272.7475007032042,392.968999226888,261.29794203846774,9.872129933986191e-4,0,5.300600023474544e-4,0,0,0,1.072270005941391,0,0.04720833276708921,0,2.6410799622535706,0,0.016777599851290386,0,11.18119994799296,0,3.382400027476251e-4,0,0,0,6.033869976818096e-5,0,5.82270998468933e-5,0,447.9419860839843,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.49269994099935,0,758.330954525835,0,0,0,0.09916149949034055,0,0,0 +2290,0,0,-0,-0,1.409920283333964,12.192200104395548,0,0.0028923912905156612,0,149.34399922688803,0,3.2023719946543374,0,3.647899945576986,0,6.013820052146912,0,1.3306271930535634,0,30.41469446818034,0,5.466060598691304,0,0,475.88505299886066,0,1789.990000406901,272.7475007032042,392.91099802652997,261.29794203846774,8.93948003067635e-4,0,5.034889982198365e-4,0,0,0,1.0408200025558472,0,0.04420780390501022,0,2.5934200088183084,0,0.016353399958461523,0,11.135999917984009,0,3.009590024400192e-4,0,0,0,5.4249700042419136e-5,0,5.49612001729353e-5,0,447.9679845174153,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.474099477132164,0,758.330954525835,0,0,0,0.09773460030555725,0,0,0 +2291,0,0,-0,-0,1.409920283333964,12.19099990526835,0,0.0027804312218601504,0,149.34100087483725,0,3.166531980037689,0,3.6278100411097207,0,6.0022900104522705,0,1.304407258828481,0,30.103894233703613,0,5.466030677159627,0,0,475.8810526529948,0,1789.7699890136716,272.7475007032042,392.85500081380206,261.29794203846774,8.094930041503782e-4,0,4.782490019958156e-4,0,0,0,1.0103000104427338,0,0.04139805802454551,0,2.5466299851735434,0,0.01593999983742833,0,11.090999921162924,0,2.677870021822552e-4,0,0,0,4.877510006432809e-5,0,5.187840027550313e-5,0,447.9929860432942,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.45549933115641,0,758.330954525835,0,0,0,0.09632819953064124,0,0,0 +2292,0,0,-0,-0,1.409920283333964,12.18969996770223,0,0.002672811213415116,0,149.33799997965494,0,3.1310919721921286,0,3.607829988002777,0,5.990779956181844,0,1.2786773045857747,0,29.79629421234131,0,5.466010610262553,0,0,475.8780568440755,0,1789.5599873860674,272.7475007032042,392.7980016072591,261.29794203846774,7.330169998264561e-4,0,0.00045427399648663897,0,0,0,0.9806700100501379,0,0.03876679545889298,0,2.5006799896558127,0,0.015536899911239743,0,11.046199957529703,0,2.382709972152952e-4,0,0,0,4.385290018641778e-5,0,4.89685001715164e-5,0,448.01798502604163,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.436999003092446,0,758.330954525835,0,0,0,0.09494209910432498,0,0,0 +2293,0,0,-0,-0,1.409920283333964,12.188499927520752,0,0.0025693511318725846,0,149.33500035603842,0,3.0960418979326882,0,3.5879500110944114,0,5.979300022125244,0,1.2534373700618744,0,29.491893927256267,0,5.465990503629048,0,0,475.87604268391925,0,1789.3699849446612,272.7475007032042,392.74099985758465,261.29794203846774,6.637649979287138e-4,0,4.315009985778791e-4,0,0,0,0.9519099990526835,0,0.036302718333899975,0,2.4555499951044717,0,0.015144099947065115,0,11.001499970753988,0,2.120080013507201e-4,0,0,0,3.9427399921502605e-5,0,4.622179979681581e-5,0,448.04398600260413,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.418399492899574,0,758.330954525835,0,0,0,0.09357599914073944,0,0,0 +2294,0,0,-0,-0,1.409920283333964,12.187299966812134,0,0.0024699010925057032,0,149.33200073242188,0,3.0613918900489807,0,3.568190018335978,0,5.967840035756429,0,1.2286974092324574,0,29.19059403737386,0,5.465980569521586,0,0,475.8750483194987,0,1789.189982096354,272.7475007032042,392.6850001017253,261.29794203846774,6.01055997928294e-4,0,4.098699985964534e-4,0,0,0,0.9239929914474487,0,0.03399532660841942,0,2.4112400015195212,0,0.014761200019468864,0,10.957099994023642,0,1.8863999866880476e-4,0,0,0,3.544850005710032e-5,0,4.362920026323991e-5,0,448.0679804484049,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.39979934692383,0,758.330954525835,0,0,0,0.09222950041294098,0,0,0 +2295,0,0,-0,-0,1.409920283333964,12.186100006103516,0,0.002374301082454622,0,149.3289998372396,0,3.0271318554878235,0,3.548530022303263,0,5.956400076548259,0,1.2044474482536316,0,28.89239438374837,0,5.465980648994446,0,0,475.8740488688151,0,1789.0199890136716,272.7475007032042,392.6290028889974,261.29794203846774,5.442710050071279e-4,0,3.893229998842192e-4,0,0,0,0.8968949963649114,0,0.031834521951774754,0,2.3677300214767456,0,0.014388000049317876,0,10.912799994150797,0,1.6784699982963502e-4,0,0,0,3.1871100418356946e-5,0,4.118199952548215e-5,0,448.0929794311523,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.381299336751304,0,758.330954525835,0,0,0,0.09090249985456467,0,0,0 +2296,0,0,-0,-0,1.409920283333964,12.184900124867758,0,0.002282401042369505,0,149.32600021362305,0,2.993251840273539,0,3.528990010420481,0,5.944980065027873,0,1.1806775331497192,0,28.59719451268514,0,5.465970595677693,0,0,475.8740412394206,0,1788.8699849446612,272.7475007032042,392.573003133138,261.29794203846774,4.928510049163984e-4,0,3.6980599543312564e-4,0,0,0,0.8705909997224808,0,0.02981110553567608,0,2.325010041395823,0,0.014024199917912483,0,10.868599891662598,0,1.493460003985092e-4,0,0,0,2.8654800189542584e-5,0,3.887210065537753e-5,0,448.1179809570312,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.36269919077555,0,758.330954525835,0,0,0,0.08959449951847394,0,0,0 +2297,0,0,-0,-0,1.409920283333964,12.183600107828775,0,0.002194060963423302,0,149.32299931844076,0,2.959751844406128,0,3.5095499753952026,0,5.933579961458842,0,1.1573875645796459,0,28.305094401041668,0,5.465980569521586,0,0,475.8740463256836,0,1788.729990641276,272.7475007032042,392.51800537109375,261.29794203846774,4.46289004078911e-4,0,3.5126700095133856e-4,0,0,0,0.8450590074062347,0,0.02791627651701371,0,2.2830499609311423,0,0.01366959985656043,0,10.824700117111206,0,1.3288500122143887e-4,0,0,0,2.5763000242780738e-5,0,3.6691699885219954e-5,0,448.141975402832,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.344200134277344,0,758.330954525835,0,0,0,0.08830539944271247,0,0,0 +2298,0,0,-0,-0,1.409920283333964,12.182399908701578,0,0.0021091309608891606,0,149.31999969482422,0,2.92663182814916,0,3.4902199705441794,0,5.9222099383672075,0,1.1345576047897339,0,28.015894730885822,0,5.465980569521586,0,0,475.8750406901042,0,1788.5900065104165,272.7475007032042,392.4620005289714,261.29794203846774,4.041260011338939e-4,0,3.3365799754392356e-4,0,0,0,0.8202760020891825,0,0.026141937046001356,0,2.2418499986330667,0,0.013324000096569458,0,10.780900001525879,0,1.1823800074732087e-4,0,0,0,2.316309989206881e-5,0,3.463370073101638e-5,0,448.1659825642903,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.325599670410156,0,758.330954525835,0,0,0,0.08703490036229293,0,0,0 +2299,0,0,-0,-0,1.409920283333964,12.18119994799296,0,0.0020275009252751866,0,149.31700007120767,0,2.8938817977905273,0,3.471000015735626,0,5.910860021909078,0,1.1121776700019836,0,27.7296945254008,0,5.4659905433654785,0,0,475.87604268391925,0,1788.4699910481768,272.7475007032042,392.4070002237956,261.29794203846774,3.659469972869071e-4,0,3.1693199950192746e-4,0,0,0,0.7962200045585632,0,0.024480387413253386,0,2.2014000018437705,0,0.012987099898358187,0,10.73739997545878,0,1.0520499987857572e-4,0,0,0,2.0825600131502142e-5,0,3.2691100083563164e-5,0,448.1899795532226,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.30709934234619,0,758.330954525835,0,0,0,0.08578270114958286,0,0,0 +2300,0,0,-0,-0,1.409920283333964,12.179999987284342,0,0.00194903087685816,0,149.3139991760254,0,2.8614917596181235,0,3.4518799980481467,0,5.899530092875163,0,1.090237706899643,0,27.446494579315186,0,5.466010570526123,0,0,475.87703704833984,0,1788.3599853515623,272.7475007032042,392.3519973754883,261.29794203846774,3.313750009207676e-4,0,3.010439977515489e-4,0,0,0,0.7728690008322397,0,0.022924428184827168,0,2.161679963270823,0,0.0126587999984622,0,10.694000005722046,0,9.360939960364097e-5,0,0,0,1.872389975687838e-5,0,3.0857400361128384e-5,0,448.21398417154944,7.88886068629927,83.40830013455798,39.33102631572512,5.446881813994322,13.922195961402373,-0.25583511908208634,59.28859933217367,0,758.330954525835,0,0,0,0.08454850005606811,0,0,0 diff --git a/inst/input/tables/ssp460_emiss-constraints_rf.csv b/inst/input/tables/ssp460_emiss-constraints_rf.csv new file mode 100644 index 000000000..c713c7318 --- /dev/null +++ b/inst/input/tables/ssp460_emiss-constraints_rf.csv @@ -0,0 +1,562 @@ +; ssp460 from rcmip +; hectordata 0.0.0.9000 +; commit dab9aad8750535b +; date Fri Nov 4 11:35:31 2022 +; UNITS:, PgC year-1, PgC year-1, PgC year-1, PgC year-1, Tg year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg CH4 year-1, ppm, Tg CO year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg N year-1, Tg year-1, Tg NMVOC year-1, Tg N year-1, Tg year-1, W m-2, ppt, ppt, Gg S year-1, W m-2, ppt, ppt, ppt, ppt, ppt, ppt +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_constrain,C2F6_emissions,CCl4_constrain,CCl4_emissions,CF4_constrain,CF4_emissions,CFC113_constrain,CFC113_emissions,CFC114_constrain,CFC114_emissions,CFC115_constrain,CFC115_emissions,CFC11_constrain,CFC11_emissions,CFC12_constrain,CFC12_emissions,CH3Br_constrain,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_constrain,CH3Cl_emissions,CH4_constrain,CH4_emissions,CO2_constrain,CO_emissions,HCFC141b_constrain,HCFC141b_emissions,HCFC142b_constrain,HCFC142b_emissions,HCFC22_constrain,HCFC22_emissions,HFC125_constrain,HFC125_emissions,HFC134a_constrain,HFC134a_emissions,HFC143a_constrain,HFC143a_emissions,HFC227ea_constrain,HFC227ea_emissions,HFC23_constrain,HFC23_emissions,HFC245_constrain,HFC245fa_emissions,HFC32_constrain,HFC32_emissions,HFC365_constrain,HFC365_emissions,HFC4310_constrain,HFC4310_emissions,N2O_constrain,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,RF_albedo,SF6_constrain,SF6_emissions,SO2_emissions,SV,halon1211_constrain,halon1211_emissions,halon1301_constrain,halon1301_emissions,halon2402_constrain,halon2402_emissions +1745,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,728.6180877685546,19.019783117809567,276.9859975179036,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7540486653645,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1746,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.704874674479,19.019783117809567,277.01399993896484,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7850443522135,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1747,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.8320821126301,19.019783117809567,277.0439987182617,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.80204772949213,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1748,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.2330983479817,19.019783117809567,277.07999928792316,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8170496622721,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1749,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.9769846598306,19.019783117809567,277.10900115966797,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8330459594726,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1750,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,731.4059956868489,19.019783117809567,277.1470031738281,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8650512695312,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1751,0.0025941063027029847,0.0826692695573487,0,0,2.0729259257736388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1072,0,457.00000254313153,4276.7685,731.838165283203,18.915108869931455,277.18800099690753,343.9263672486595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8940556844075,0.05578579647289745,6.860142184947855,59.08812628149409,3.8337729357251344,15.188716744277112,-0.00022945725475492763,0,0,1206.0681799841475,0.1857567460517512,0.004446572546536724,0.0077232726,0,0,0,0 +1752,0.0025952084646724115,0.0841901460141451,0,0,2.0643119329193533,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12502,0,457.00000254313153,4277.7049,732.8999735514321,18.889711811886766,277.22900136311847,341.8090339016869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.92705535888666,0.056839716429342754,6.819482036717451,58.63199702688318,3.8343718514044016,15.034475741403988,-4.5891450950985525e-4,0,0,1200.4278473396196,0.1857604715824308,0.004446572546536724,0.0077232726,0,0,0,0 +1753,0.0025953021590175993,0.08573900221733607,0,0,2.0719505635154682,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10373,0,457.00000254313153,4276.585999999999,733.634038289388,19.121377231171937,277.26300048828125,343.6754562091752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.9730555216471,0.057913547319122724,6.88143852899345,59.02634940020826,3.8177943228183677,15.18254515100842,-6.883717642647818e-4,0,0,1207.227098535096,0.1857617169069504,0.004446572546536724,0.0077232726,0,0,0,0 +1754,0.0025964043209870257,0.0873163529136683,0,0,2.09934978275426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07356,0,457.00000254313153,4274.9998,734.2020212809243,19.50906106501577,277.3040033976237,349.81562520064375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.01604461669916,0.059007665304832875,7.015189223980566,60.269945173845855,3.847331336983454,15.55877304959727,-9.178290190197105e-4,0,0,1232.9531143620388,0.18576213564093827,0.004446572546536724,0.0077232726,0,0,0,0 +1755,0.0025975064829564486,0.08892272231974611,0,0,2.099173164966012,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09182,0,457.00000254313153,4275.9598,734.7360788981118,19.500454933311694,277.3510030110677,348.144667955229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.05104319254554,0.06012245365563151,6.9439890428442705,59.824933724698546,3.8866528883154143,15.358182527090067,-0.0011472862737746368,0,0,1223.0826850431558,0.16149051004268924,0.004446572546536724,0.0077232726,0,0,0,0 +1756,0.002775090479167637,0.09055864429624946,0,0,2.0689154070023212,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08556000000002,0,457.00000254313153,4275.6306,735.4210001627603,19.46253659981589,277.38899993896484,343.32315167584505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.07905069986975,0.06125830288149874,6.92271155666652,58.94682931223554,3.780146274357017,15.195776625722106,-0.001376743528529566,0,0,1211.479201655296,-0.06413990375550595,0.004446572546536724,0.0077232726,0,0,0,0 +1757,0.0027761926411370656,0.09222466252535721,0,0,2.1479236761828795,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09137,0,457.00000254313153,4275.9361,735.8930308024087,20.023540664144175,277.4419987996419,355.9418922631908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.09605153401685,0.06241561087003213,7.047674128999731,61.263692996283645,3.9984362659957116,15.704819120374072,-0.0016062007832844925,0,0,1255.6882474413671,0.06548148963396255,0.004446572546536724,0.0077232726,0,0,0,0 +1758,0.002777294803106484,0.09392133069143445,0,0,2.120611409560707,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09662,0,457.00000254313153,4276.2118,736.2069956461587,19.93400532918585,277.48900095621747,351.839749049401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.12904612223304,0.06359478302582648,6.995459767973222,60.43461244378834,3.951609319926169,15.514611629339965,-0.0018356580380394208,0,0,1241.8061904390202,0.143706674085902,0.004446572546536724,0.0077232726,0,0,0,0 +1759,0.0027783969650759127,0.09564921266504378,0,0,2.1172674310973973,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08372,0,457.00000254313153,4275.5338,736.0988871256509,20.14146621388408,277.5399983723958,351.50776272566816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.1650466918945,0.06479623241248693,7.045958325346581,60.44526305257086,3.8825594605141793,15.574013491239148,-0.0020651152927943475,0,0,1238.6934463843995,0.17156026373747926,0.004446572546536724,0.0077232726,0,0,0,0 +1760,0.002778490659421102,0.09740888269034213,0,0,2.127804104941503,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04022,0,457.00000254313153,4273.2473,735.484171549479,20.416797144500503,277.6050033569336,354.41828530815224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.19305165608716,0.06602037989732504,7.1280482855702605,61.0517247888764,3.870426966375627,15.819063930323424,-0.002294572547549277,0,0,1250.820917255113,0.18098830087140405,0.004446572546536724,0.0077232726,0,0,0,0 +1761,0.0030417996868854222,0.09920092557592508,0,0,2.1377569894528237,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09143,0,457.00000254313153,4275.9395,735.7630208333333,20.45599016898809,277.6639989217122,354.70796791995804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.22205098470045,0.06726765429878842,7.080969808277224,60.98422720066375,3.9477855453840847,15.691915882574792,-0.0025240298023042032,0,0,1256.5481216489331,0.1841585443588585,0.004446572546536724,0.0077232726,0,0,0,0 +1762,0.0030429071320477096,0.10102593688918185,0,0,2.101748108909336,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08127,0,457.00000254313153,4275.4052,736.3031056722004,20.451687381976814,277.7320022583008,349.24969722773284,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3203315e-8,0,0,0,0,0,1.5142326e-6,0,0,0,0,274.25004831949866,0.06853849253667572,7.072547337152548,60.0270893345371,3.8056067222316985,15.52593530614623,-0.002753487057059132,0,0,1235.176016491452,-0.7198788864817063,0.004446572546536724,0.0077232726,0,0,0,0 +1763,0.003044014577209992,0.10288452315422644,0,0,2.1070297579949187,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09332,0,457.00000254313153,4276.0386,737.1810404459634,20.54517933681397,277.7959976196289,350.0593349220327,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6788058e-7,0,0,0,0,0,1.2367808e-5,0,0,0,0,274.30205535888666,0.06983333978518949,7.067982584358078,60.127066272688566,3.846149431214471,15.526762487788051,-0.0029829443118140585,0,0,1242.4313344000275,-0.4399601212913509,0.004446572546536724,0.0077232726,0,0,0,0 +1764,0.0030451220223722732,0.10477730205346951,0,0,2.0715492266986275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1104,0,457.00000254313153,4276.9364,738.1030629475911,20.26091721016315,277.8590037027995,342.04461065627544,0,0,0,0,0,0,0,0,0,0,0,0,5.745499576104152e-9,1.2683334e-6,0,0,0,0,3.1742572836890304e-7,2.4998684e-5,0,0,0,0,274.3400497436523,0.0711526496288805,6.89874574004507,58.43835716681741,3.8290033683946536,14.958698984764437,-0.003212401566568987,0,0,1212.8230980159792,-0.03904732457783037,0.004446572546536724,0.0077232726,0,0,0,0 +1765,0.0030462294675345533,0.10670490263289913,0,0,2.123600021913132,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07293,0,457.00000254313153,4274.9668,738.9860382080077,20.91915499807752,277.9129994710286,352.9327257663859,0,0,0,0,0,0,0,0,0,0,0,0,4.596399853321979e-8,1.3852706e-6,0,0,0,0,2.539405793792563e-6,3.0313258e-5,0,0,0,0,274.37204742431635,0.07249688422153833,7.112382325014417,60.629457859488916,3.8781552227346054,15.679924105503577,-0.0034418588213239137,0,0,1250.7252029507404,0.10958166609721692,0.004446572546536724,0.0077232726,0,0,0,0 +1766,0.0033962667106833934,0.10866796551113769,0,0,2.1104599771353545,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07758,0,457.00000254313153,4275.2111,739.831085205078,20.853591900632743,277.95800018310547,349.3806450006132,0,0,0,0,0,0,0,0,0,0,0,0,9.192799588220169e-8,1.4212948e-6,0,0,0,0,5.078811454950483e-6,3.4371719e-5,0,0,0,0,274.3920516967773,0.07386651444808362,7.0362965307494045,59.85878462626717,3.884852897551278,15.358830814708325,-0.00367131607607884,0,0,1244.142076911234,-0.17848752670419268,0.004446572546536724,0.0077232726,0,0,0,0 +1767,0.003397374155845676,0.11066714309234521,0,0,2.112460701438636,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08566,0,457.00000254313153,4275.6359,740.7289835611978,20.999179455660748,278.0169982910156,349.61609899642303,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199471148095e-7,1.4573362e-6,0,0,0,0,7.618217182425724e-6,3.8432158e-5,0,0,0,0,274.42605082194007,0.07526202008951893,7.045382426953697,59.89102690050866,3.880476348727496,15.400564496222026,-0.0039007733308337685,0,0,1243.3080558862168,-0.23003967707403605,0.004446572546536724,0.0077232726,0,0,0,0 +1768,0.003398481601007963,0.1127030997830392,0,0,2.183132040203538,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04673,0,457.00000254313153,4273.5893,741.2220560709634,21.659452113517297,278.07799530029297,362.65368482709385,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599176440337e-7,1.4932143e-6,0,0,0,0,1.0157622909900965e-5,4.247379e-5,0,0,0,0,274.44704691569007,0.07668388999099586,7.223617820830233,62.365825552982606,4.039005153575375,16.063730202230957,-0.004130230585588698,0,0,1294.7054231244865,0.0295441238874522,0.004446572546536724,0.0077232726,0,0,0,0 +1769,0.0033995890461702483,0.11477651221290339,0,0,2.1376337416440134,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0767,0,457.00000254313153,4275.165,741.7470499674478,21.496335350339965,278.135004679362,355.02541845168975,0,0,0,0,0,0,0,0,0,0,0,0,2.298199900015637e-7,1.5293427e-6,0,0,0,0,1.2697028751063044e-5,4.6544254e-5,0,0,0,0,274.4680506388346,0.07813262223305735,7.157863703024064,60.95040360500106,3.9146198633161595,15.735094791574257,-0.004359687840343624,0,0,1273.3622210005092,0.1325346158749756,0.004446572546536724,0.0077232726,0,0,0,0 +1770,0.003400696491332528,0.11688806945965896,0,0,2.1393647387522594,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04544,0,457.00000254313153,4273.5216,742.3010152180989,21.63439757224449,278.1939977010091,355.3605475565106,0,0,0,0,0,0,0,0,0,0,0,0,2.757839894229619e-7,1.5651961e-6,0,0,0,0,1.5236434516433897e-5,5.0583038e-5,0,0,0,0,274.49504852294916,0.0796087243061151,7.155978283657899,60.96602720867275,3.9271229910537153,15.742715085469241,-0.004589145095098551,0,0,1277.4922103572562,0.03636234846097209,0.004446572546536724,0.0077232726,0,0,0,0 +1771,0.0037688917930248853,0.11903847327807247,0,0,2.1009097006210053,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07227,0,457.00000254313153,4274.9318,742.8711649576821,21.428921101329358,278.2700017293294,347.8619882938519,0,0,0,0,0,0,0,0,0,0,0,0,3.2174798529164644e-7,1.6013494e-6,0,0,0,0,1.7775840206013527e-5,5.4656378000000014e-5,0,0,0,0,274.5130513509114,0.08111271328822328,7.069218405010363,59.42424032933085,3.843192572805414,15.321977391799376,-0.0048186023498534795,0,0,1230.1282386704063,0.08889303627750589,0.004446572546536724,0.0077232726,0,0,0,0 +1772,0.00377000487949438,0.12122843833317697,0,0,2.0870775413423877,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08887,0,457.00000254313153,4275.8046,744.0189666748046,21.39461571539237,278.33399963378906,344.613473832749,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198589728254e-7,1.6374741e-6,0,0,0,0,2.0315245971384382e-5,5.8726423e-5,0,0,0,0,274.5310490926106,0.08264511602621083,7.043230561502576,58.72495294608385,3.8129800371340568,15.114183286240658,-0.0050480596046084064,0,0,1217.8363475826973,0.15110052169091734,0.004446572546536724,0.0077232726,0,0,0,0 +1773,0.003771117965963877,0.12345869243778378,0,0,2.0927556031478227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.06952,0,457.00000254313153,4274.7874,744.6629842122395,21.59523139318095,278.41199493408203,345.7768090889352,0,0,0,0,0,0,0,0,0,0,0,0,4.136759793974913e-7,1.6733555e-6,0,0,0,0,2.2854651888337685e-5,6.276843000000001e-5,0,0,0,0,274.54705047607416,0.08420646932023572,7.104503735011084,58.916568849809806,3.795742518659598,15.204663791112324,-0.005277516859363335,0,0,1220.6866453772807,0.17402255695782867,0.004446572546536724,0.0077232726,0,0,0,0 +1774,0.0037722310524333762,0.12572997679436368,0,0,2.1549007405251683,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0265,0,457.00000254313153,4272.5262,744.8780721028645,22.25970772945681,278.49099985758465,358.1035850352457,0,0,0,0,0,0,0,0,0,0,0,0,4.5963998474007894e-7,1.709014e-6,0,0,0,0,2.539405750212609e-5,6.678474599999999e-5,0,0,0,0,274.56504567464185,0.08579732011182588,7.347701469094086,61.31335787055999,3.8921060554545215,15.87559317662792,-0.005506974114118261,0,0,1266.4286163930858,0.18181443567658306,0.004446572546536724,0.0077232726,0,0,0,0 +1775,0.0037733441389028706,0.12804304624137816,0,0,2.148996596875075,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05246,0,457.00000254313153,4273.8905,745.3670603434243,22.200963290559795,278.58600362141925,355.04717285558434,0,0,0,0,0,0,0,0,0,0,0,0,5.056039735033361e-7,1.7452255e-6,0,0,0,0,2.7933463115914492e-5,7.0864778e-5,0,0,0,0,274.5790456136067,0.08741822567547253,7.269644819584187,60.54083046418634,3.9181029245147934,15.589135703603631,-0.0057364313688731865,0,0,1250.604503536799,0.18443600769588672,0.004446572546536724,0.0077232726,0,0,0,0 +1776,0.004161708793079992,0.13039866950414225,0,0,2.1121431315177817,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03943999999998,0,457.00000254313153,4273.2061,746.0480702718098,22.141942125209106,278.68299865722656,348.8985525123486,0,0,0,0,0,0,0,0,0,0,0,0,5.515679741089722e-7,1.7810977e-6,0,0,0,0,3.0472869184450246e-5,7.490574e-5,0,0,0,0,274.59404754638666,0.08906975381384338,7.261469977422546,59.38114479685163,3.777483547468073,15.370077015958627,-0.005965888623628117,0,0,1235.2601205170242,0.1853168155815639,0.004446572546536724,0.0077232726,0,0,0,0 +1777,0.004162821879549489,0.13279762945030274,0,0,2.170244783620918,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05273,0,457.00000254313153,4273.9048,746.7369181315103,22.568710059808843,278.7739969889323,357.54536101292035,0,0,0,0,0,0,0,0,0,0,0,0,5.975319747146083e-7,1.8172253e-6,0,0,0,0,3.301227479823865e-5,7.8976112e-5,0,0,0,0,274.6060485839843,0.09075248305668364,7.355973763265293,60.89349007083899,3.9379814138510616,15.673457529791746,-0.0061953458783830465,0,0,1262.6435516726208,0.1856126856704365,0.004446572546536724,0.0077232726,0,0,0,0 +1778,0.004163934966018991,0.13524072335001636,0,0,2.19800140223097,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04465,0,457.00000254313153,4273.48,746.7510579427083,22.856080929571224,278.86599985758465,362.75541346308773,0,0,0,0,0,0,0,0,0,0,0,0,6.434959753202444e-7,1.8531337e-6,0,0,0,0,3.5551680412027054e-5,8.3021224e-5,0,0,0,0,274.61804707845045,0.09246700286347481,7.434606066614661,61.78348694597739,4.021077006745745,15.899456247670447,-0.006424803133137972,0,0,1282.2802932337786,0.18571207513321009,0.004446572546536724,0.0077232726,0,0,0,0 +1779,0.004165048052488488,0.1377287631409144,0,0,2.1596157774386384,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03691,0,457.00000254313153,4273.0734,746.907023111979,22.820635694370733,278.9590021769206,355.9261715181252,0,0,0,0,0,0,0,0,0,0,0,0,6.894599664519774e-7,1.889034e-6,0,0,0,0,3.809108632898036e-5,8.706542400000001e-5,0,0,0,0,274.6290486653645,0.09421391382992209,7.418773457145868,60.500814881249,3.8656452035830986,15.627457862925702,-0.006654260387892898,0,0,1253.8091981813902,0.18574546502203013,0.004446572546536724,0.0077232726,0,0,0,0 +1780,0.004167169606582223,0.14026257569794193,0,0,2.18926758767753,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98817,0,457.00000254313153,4270.5109999999995,747.2310638427733,23.24616665378551,279.0540033976237,361.61404216072185,0,0,0,0,0,0,0,0,0,0,0,0,7.354239623206619e-7,1.9244033000000003e-6,0,0,0,0,4.063049224593366e-5,9.1048394e-5,0,0,0,0,274.639050801595,0.09599382789834296,7.569429120654667,61.61859566014493,3.8711479642945226,16.01838080056119,-0.0068837176426478274,0,0,1274.797708672403,0.18575668147078706,0.004446572546536724,0.0077232726,0,0,0,0 +1781,0.004659412904951052,0.14284300310816161,0,0,2.189441199921453,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04236000000002,0,457.00000254313153,4273.3596,747.7660471598306,23.249655483903965,279.14499918619794,360.09005386289476,0,0,0,0,0,0,0,0,0,0,0,0,7.81387962926298e-7,1.9610810000000003e-6,0,0,0,0,4.316989755655717e-5,9.5182182e-5,0,0,0,0,274.6470464070637,0.09780736857203022,7.505783352638315,61.19330647262292,3.9207239231952387,15.80695226528239,-0.007113174897402756,0,0,1277.5362524488116,0.18576045057214427,0.004446572546536724,0.0077232726,0,0,0,0 +1782,0.00466053247031568,0.14547090295061266,0,0,2.160522701160256,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03125,0,457.00000254313153,4272.7759,748.2900187174478,23.341758118914438,279.2430013020833,356.04655462228243,0,0,0,0,0,0,0,0,0,0,0,0,8.273519635319341e-7,1.9969148e-6,0,0,0,0,4.570930377667537e-5,9.9218691e-5,0,0,0,0,274.65404764811194,0.09965517113366511,7.519625787694825,60.48572145305894,3.7938381853855025,15.712820826828775,-0.007342632152157681,0,0,1261.0508762359207,0.18576171303887845,0.004446572546536724,0.0077232726,0,0,0,0 +1783,0.004662660503304549,0.14814714858131856,0,0,2.150725589743228,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0436,0,457.00000254313153,4273.4248,748.6270294189452,23.379916787266467,279.33999888102215,354.28692425367274,0,0,0,0,0,0,0,0,0,0,0,0,8.733159641375702e-7,2.0330816e-6,0,0,0,0,4.824870908729887e-5,1.0329359e-4,0,0,0,0,274.6580505371093,0.1015378828678566,7.496232273464098,60.10171272373322,3.7887381780047664,15.607260472139073,-0.007572089406912609,0,0,1258.691215611721,-1.6071113091275233,0.004446572546536724,0.0077232726,0,0,0,0 +1784,0.004663780068669177,0.15087262942353824,0,0,2.140542212443426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05531,0,457.00000254313153,4274.0405,748.9340260823567,23.29404230240209,279.4340006510417,350.5694962640399,0,0,0,0,0,0,0,0,0,0,0,0,9.192799552693032e-7,2.0692567e-6,0,0,0,0,5.078811530741708e-5,1.0736946e-4,0,0,0,0,274.6640548706054,0.10345616328788484,7.381156400424443,59.21225989324307,3.835360348467436,15.228141255684468,-0.007801546661667537,0,0,1241.0913844308948,-3.4875496425880166,0.004446572546536724,0.0077232726,0,0,0,0 +1785,0.004666993144531652,0.1536482512633568,0,0,2.1658396912622853,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02817,0,457.00000254313153,4272.6136,749.2520395914712,23.80210553725873,279.53200276692706,356.805125351722,0,0,0,0,0,0,0,0,0,0,0,0,9.652439748227455e-7,2.1048124e-6,0,0,0,0,5.332752031487568e-5,1.113739e-4,0,0,0,0,274.66904958089185,0.1054106843667286,7.538152323485599,60.494479362546464,3.8216491921096964,15.732711479772949,-0.00803100391642247,0,0,1266.5681498543852,-1.3227211965923305,0.004446572546536724,0.0077232726,0,0,0,0 +1786,0.005295379572172684,0.15647493655071468,0,0,2.158683484868033,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02684000000001,0,457.00000254313153,4272.5442,749.563980102539,23.831994998220747,279.6290003458659,354.20587729579694,0,0,0,0,0,0,0,0,0,0,0,0,1.011207928058866e-6,2.14077e-6,0,0,0,0,5.586692683815878e-5,1.1542471e-4,0,0,0,0,274.67605336507154,0.10740213077245707,7.4910842541914535,59.91468240707549,3.8263162148060967,15.467157122376957,-0.008260461171177394,0,0,1263.905903422694,-0.4872575238005176,0.004446572546536724,0.0077232726,0,0,0,0 +1787,0.005297507605161552,0.15935362470597414,0,0,2.18517929356942,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03415,0,457.00000254313153,4272.9283,749.6690826416014,24.17652817967206,279.72900136311847,358.7933682521366,0,0,0,0,0,0,0,0,0,0,0,0,1.0571719712970662e-6,2.1768802999999995e-6,0,0,0,0,5.840633214878229e-5,1.1949308e-4,0,0,0,0,274.6780471801757,0.10943120010806894,7.555171969721947,60.75335707654267,3.8851079963013144,15.71033145518615,-0.00848991842593232,0,0,1281.3314192960927,-0.09613776148013498,0.004446572546536724,0.0077232726,0,0,0,0 +1788,0.005298627170526176,0.16228527243212662,0,0,2.255223483707013,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9922,0,457.00000254313153,4270.7227,750.1610209147134,24.855928924260272,279.83099873860675,371.3570923496072,0,0,0,0,0,0,0,0,0,0,0,0,1.1031359387440414e-6,2.2120831e-6,0,0,0,0,6.094573836890049e-5,1.2345688999999995e-4,0,0,0,0,274.67704772949213,0.11149860315586238,7.730934740743885,63.12433046674855,4.038519355079948,16.343354337191045,-0.008719375680687248,0,0,1326.080725437415,0.0885310651741068,0.004446572546536724,0.0077232726,0,0,0,0 +1789,0.005300755203515047,0.16527085403274291,0,0,2.2076646319075275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0242,0,457.00000254313153,4272.405,750.6470489501952,24.717072836600927,279.93299865722656,363.4416445787676,0,0,0,0,0,0,0,0,0,0,0,0,1.149099944086629e-6,2.2486571e-6,0,0,0,0,6.348514337635909e-5,1.2757871e-4,0,0,0,0,274.6780522664387,0.11360506412642196,7.663516243062957,61.632292379507476,3.911091424062233,16.00040861482673,-0.008948832935442175,0,0,1300.9350554928549,0.1529858926017705,0.004446572546536724,0.0077232726,0,0,0,0 +1790,0.005302883236503912,0.16831136173577357,0,0,2.2164369958956196,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99139,0,457.00000254313153,4270.6805,751.1640370686848,24.942208573783375,280.03700256347656,364.880216392627,0,0,0,0,0,0,0,0,0,0,0,0,1.195063968377023e-6,2.2839743e-6,0,0,0,0,6.60245495964773e-5,1.3155567e-4,0,0,0,0,274.67705281575513,0.11575132091230927,7.680254371033305,61.84599180813865,3.9372032070765473,16.056743908676,-0.009178290190197105,0,0,1304.8004807748046,0.1747471382296157,0.004446572546536724,0.0077232726,0,0,0,0 +1791,0.005920182770600551,0.1714078060233054,0,0,2.172583556470899,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02128,0,457.00000254313153,4272.2515,751.7080535888671,24.778432167331218,280.14099884033203,356.6583861664455,0,0,0,0,0,0,0,0,0,0,0,0,1.2410279168761917e-6,2.320551e-6,0,0,0,0,6.85639552102657e-5,1.3567783e-4,0,0,0,0,274.6740468343098,0.11793812534654649,7.556943543496139,60.21873920423577,3.848117366332663,15.616449876377857,-0.00940774744495203,0,0,1284.7688041559788,0.18206199111341248,0.004446572546536724,0.0077232726,0,0,0,0 +1792,0.006098811288557544,0.17456121596738536,0,0,2.1616507929601063,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04466,0,457.00000254313153,4273.4807,752.2780151367186,24.818892944319888,280.2409973144531,354.25153761087523,0,0,0,0,0,0,0,0,0,0,0,0,1.286991960114392e-6,2.3570319e-6,0,0,0,0,7.110336143038391e-5,1.3978892e-4,0,0,0,0,274.6740468343098,0.12016624346598324,7.499155044750518,59.70568574139235,3.8521685509833974,15.44666919254658,-0.009637204699706955,0,0,1279.936623401035,0.18451935326733201,0.004446572546536724,0.0077232726,0,0,0,0 +1793,0.00610508215549315,0.17777263957202216,0,0,2.1532738339280715,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02605,0,457.00000254313153,4272.5025,752.6820678710936,25.03153140920904,280.33199818929035,353.37230933667234,0,0,0,0,0,0,0,0,0,0,0,0,1.3329559275613672e-6,2.3926083e-6,0,0,0,0,7.364276643784251e-5,1.4379579e-4,0,0,0,0,274.65905253092444,0.12243645577963895,7.518120739119681,59.58493949599902,3.7981346475872892,15.477979537880952,-0.009866661954461885,0,0,1276.6758910223705,0.18534481647704806,0.004446572546536724,0.0077232726,0,0,0,0 +1794,0.006092419359098298,0.18104314412147968,0,0,2.2138431157688125,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98417,0,457.00000254313153,4270.3009999999995,753.2520446777343,25.76753777758947,280.41500091552734,365.72191403060503,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199329039548e-6,2.4276195000000003e-6,0,0,0,0,7.618217265796072e-5,1.4773748e-4,0,0,0,0,274.6480560302734,0.1247495575421151,7.731535991085819,62.03822453198564,3.901984420737959,16.16525997375536,-0.010096119209216816,0,0,1323.3915439011364,0.18562210038833984,0.004446572546536724,0.0077232726,0,0,0,0 +1795,0.006095932503617563,0.18437381653497847,0,0,2.2026922727614937,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01093,0,457.00000254313153,4271.7076,753.8410644531249,25.77334281488129,280.4919967651367,362.19212268926736,0,0,0,0,0,0,0,0,0,0,0,0,1.4248839571943488e-6,2.4642054e-6,0,0,0,0,7.872157827174912e-5,1.5186068000000002e-4,0,0,0,0,274.63105265299475,0.12710635903217238,7.626169221355247,61.24273214189555,3.9191066213899726,15.883131946283404,-0.01032557646397174,0,0,1307.1177907303108,0.18571524277301074,0.004446572546536724,0.0077232726,0,0,0,0 +1796,0.006396386441099536,0.18776576372792214,0,0,2.1531546155773227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99978,0,457.00000254313153,4271.1214,754.5180511474608,25.74058406529963,280.5549952189128,354.4783029356138,0,0,0,0,0,0,0,0,0,0,0,0,1.4708479056935175e-6,2.4998985e-6,0,0,0,0,8.126098449186732e-5,1.55881e-4,0,0,0,0,274.6150538126627,0.1295076858365712,7.5818630966127785,59.864242428463136,3.749609514115161,15.62836980130604,-0.010555033718726669,0,0,1286.4148371024328,0.056138903072538514,0.004446572546536724,0.0077232726,0,0,0,0 +1797,0.006712627262260326,0.19122011297976946,0,0,2.2134750361996645,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01623,0,457.00000254313153,4271.986,755.2560729980468,26.23006225836581,280.6230010986328,363.54823719907995,0,0,0,0,0,0,0,0,0,0,0,0,1.5168119489317178e-6,2.5362748e-6,0,0,0,0,8.380038949932593e-5,1.5998003e-4,0,0,0,0,274.6010538736979,0.1319543791392746,7.636302581611899,61.4713769474247,3.9409741021501565,15.938653048219956,-0.010784490973481595,0,0,1322.1792002170396,-0.04279485298025665,0.004446572546536724,0.0077232726,0,0,0,0 +1798,0.006990649026827593,0.19473801230867469,0,0,2.2340562829342026,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0081,0,457.00000254313153,4271.559,756.1130472819009,26.546440122432795,280.68200429280597,367.6501027985187,0,0,0,0,0,0,0,0,0,0,0,0,1.562775925852596e-6,2.5720343e-6,0,0,0,0,8.633979571944413e-5,1.6400798999999998e-4,0,0,0,0,274.5840530395507,0.1344472960161143,7.671017715782881,62.197639026391784,4.015700360730371,16.12667274116127,-0.011013948228236524,0,0,1344.4943107799907,0.057545267787991024,0.004446572546536724,0.0077232726,0,0,0,0 +1799,0.007363034100288113,0.19832063085301946,0,0,2.2072921648839388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99068,0,457.00000254313153,4270.6431,756.9420471191405,26.706488169365446,280.7529983520508,363.4860469038741,0,0,0,0,0,0,0,0,0,0,0,0,1.6087399217212806e-6,2.6075323e-6,0,0,0,0,8.887920133323253e-5,1.6800578999999998e-4,0,0,0,0,274.5700480143229,0.13698730973502452,7.674462849763394,61.49623019706863,3.882903388386678,16.03734278779562,-0.011243405482991452,0,0,1332.7327654492608,0.14035414546167346,0.004446572546536724,0.0077232726,0,0,0,0 +1800,0.007853247961014498,0.20196915925996428,0,0,2.2159740553936684,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95838,0,457.00000254313153,4268.9449,757.7620493570962,27.056343077702923,280.83399709065753,365.8466368441075,0,0,0,0,0,0,0,0,0,0,0,0,1.6547039554855776e-6,2.6425936e-6,0,0,0,0,9.141860694702093e-5,1.7195328999999998e-4,0,0,0,0,274.54705047607416,0.13957531006194712,7.7406453217716145,62.00320914073126,3.867691465248536,16.242141697691363,-0.011477676635976337,0,0,1351.4018850842497,0.17040288697636866,0.004446572546536724,0.0077232726,0,0,0,0 +1801,0.0077923631049037195,0.2056848100811483,0,0,2.219401689900871,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01099,0,457.00000254313153,4271.7107,758.5840606689452,27.12488718150826,280.9189987182617,364.91706838648093,0,0,0,0,0,0,0,0,0,0,0,0,1.7006678945108433e-6,2.6800125e-6,0,0,0,0,9.395801256080934e-5,1.7617249e-4,0,0,0,0,274.5320510864257,0.1422122035725165,7.701186978248275,61.665647788634544,3.9218437626561613,16.063733218320355,-0.011716461343221001,0,0,1346.3126694277855,0.1805980962819972,0.004446572546536724,0.0077232726,0,0,0,0 +1802,0.010116776318211833,0.20946881817566826,0,0,2.2026926609955066,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99468,0,457.00000254313153,4270.8532,759.5070699055989,27.339784315547476,280.9939956665039,362.96270750693964,0,0,0,0,0,0,0,0,0,0,0,0,1.7466319377490436e-6,2.7155059e-6,0,0,0,0,9.649741878092755e-5,1.8016977e-4,0,0,0,0,274.5230509440104,0.14489891396963264,7.763054085257172,61.32615659022455,3.814905719116379,16.0758236117733,-0.011955246050465669,0,0,1365.7924593201149,0.18402739824539616,0.004446572546536724,0.0077232726,0,0,0,0 +1803,0.008763957676258299,0.2133224411204717,0,0,2.1800158282432216,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0108,0,457.00000254313153,4271.7009,760.5080464680989,27.320499854247753,281.07299550374347,358.65077997506035,0,0,0,0,0,0,0,0,0,0,0,0,1.7925959146699217e-6,2.7519421e-6,0,0,0,0,9.903682439471595e-5,1.8427573e-4,0,0,0,0,274.50505065917963,0.1476363824070339,7.720863756565482,60.404341817460505,3.773697198795284,15.83103087932591,-0.01219403075771034,0,0,1340.0232615916289,0.18517955647392584,0.004446572546536724,0.0077232726,0,0,0,0 +1804,0.009565590378222546,0.2172469596283,0,0,2.197298086929074,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0121,0,457.00000254313153,4271.7691,761.5410817464192,27.46474997353236,281.15699768066406,359.52869597563125,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599105386063e-6,2.7879493e-6,0,0,0,0,1.0157623000850435e-4,1.8833223e-4,0,0,0,0,274.4860483805338,0.1504255678189829,7.687086730342071,60.36470274902327,3.8714733047891783,15.676248110600966,-0.012432815464955008,0,0,1347.9906823261654,0.1855665834344882,0.004446572546536724,0.0077232726,0,0,0,0 +1805,0.009351564248471856,0.2212436779733203,0,0,2.215042398148324,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98963,0,457.00000254313153,4270.588,762.6710561116536,27.95079819780367,281.23399607340497,364.30370432998336,0,0,0,0,0,0,0,0,0,0,0,0,1.8845239443029034e-6,2.8232141e-6,0,0,0,0,1.0411563562229276e-4,1.9230319e-4,0,0,0,0,274.46604665120435,0.15326744725618094,7.835162208853216,61.31991145746931,3.843518327224849,16.094154796194182,-0.012671600172199671,0,0,1367.0219318674867,0.18569659271698705,0.004446572546536724,0.0077232726,0,0,0,0 +1806,0.009786482457224585,0.22531392442458775,0,0,2.222822584756122,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98239,0,457.00000254313153,4270.2074,763.799077351888,28.134372446801326,281.32200113932294,364.34322933574117,0,0,0,0,0,0,0,0,0,0,0,0,1.930487997015007e-6,2.8589339e-6,0,0,0,0,1.0665504184241097e-4,1.9632654e-4,0,0,0,0,274.44705200195307,0.15616301622802836,7.843541453054056,61.22344968188294,3.8770122853259146,15.951443167692844,-0.01291038487944434,0,0,1370.2972329819197,0.18574025872045344,0.004446572546536724,0.0077232726,0,0,0,0 +1807,0.01047013855726404,0.22945905168748248,0,0,2.2398719818574606,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99423,0,457.00000254313153,4270.8298,765.0220794677733,28.45865602722048,281.40900166829425,367.234932813752,0,0,0,0,0,0,0,0,0,0,0,0,1.976451850775144e-6,2.8952686e-6,0,0,0,0,1.0919444745619937e-4,2.0042079e-4,0,0,0,0,274.4280471801757,0.15911328905135125,7.906227328891799,61.706469136452746,3.9067413834348796,16.117564084518662,-0.013149169586689009,0,0,1389.725529173022,0.1857549291426783,0.004446572546536724,0.0077232726,0,0,0,0 +1808,0.0097850874703066491,0.23368043735326766,0,0,2.311936484434354,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95199,0,457.00000254313153,4268.6094,766.3190816243489,29.185241168144344,281.4959996541341,380.03527200344246,0,0,0,0,0,0,0,0,0,0,0,0,2.022415856117732e-6,2.9298066e-6,0,0,0,0,1.1173385246365797e-4,2.0430798e-4,0,0,0,0,274.41105143229163,0.16211929920571624,8.095303457182244,64.08195973155631,4.0703582727403695,16.731546899631116,-0.013387954293933677,0,0,1425.5751228095764,0.1857598571570931,0.004446572546536724,0.0077232726,0,0,0,0 +1809,0.009793704265605399,0.23797948435691788,0,0,2.267442640293564,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.979,0,457.00000254313153,4270.0292,767.6550801595051,29.128658126909023,281.56599680582684,372.8486855412818,0,0,0,0,0,0,0,0,0,0,0,0,2.068379899355932e-6,2.9666566e-6,0,0,0,0,1.1427325929010597e-4,2.084616e-4,0,0,0,0,274.3830540974934,0.16518209969545813,8.062766978193096,62.71002212876877,3.9400684962479615,16.440165993612062,-0.013626739001178344,0,0,1403.1315870359595,-3.365688134186352,0.004446572546536724,0.0077232726,0,0,0,0 +1810,0.010412685282412803,0.24235762144337059,0,0,2.279523715758953,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93988,0,457.00000254313153,4267.9729,769.1471150716145,29.42453241885191,281.6480026245117,374.7180119050739,0,0,0,0,0,0,0,0,0,0,0,0,2.1143439425941324e-6,3.001229600000001e-6,0,0,0,0,1.1681266429756458e-4,2.1235282e-4,0,0,0,0,274.3600463867187,0.16830276341854683,8.107079152206923,62.97351665449524,3.9615915998724422,16.525388081401466,-0.013865523708423014,0,0,1414.1945614469914,-2.313830028435405,0.004446572546536724,0.0077232726,0,0,0,0 +1811,0.011014901476711613,0.24681630364235504,0,0,2.252530235973812,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96903,0,457.00000254313153,4269.505,770.71804300944,29.40578755819684,281.71799723307294,369.2694863079116,0,0,0,0,0,0,0,0,0,0,0,0,2.1603079858323326e-6,3.0381873e-6,0,0,0,0,1.1935207051768278e-4,2.1651886e-4,0,0,0,0,274.3340479532877,0.17148238354242323,8.026948341108737,61.82960599561912,3.9187456997844685,16.18886557071267,-0.014104308415667684,0,0,1403.686743399878,-0.7123016214302859,0.004446572546536724,0.0077232726,0,0,0,0 +1812,0.011395911929257216,0.2513570127519567,0,0,2.228006934512883,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99029,0,457.00000254313153,4270.6225,772.2101186116536,29.420298496849927,281.7899983723958,364.5806874718721,0,0,0,0,0,0,0,0,0,0,0,0,2.20627183959247e-6,3.0749001e-6,0,0,0,0,1.2189147552514139e-4,2.2065669e-4,0,0,0,0,274.3040517171223,0.17472207388693542,7.965169636083453,60.85746996681422,3.875988658118611,15.929050627989685,-0.014343093122912353,0,0,1394.884132023951,-0.11856299687933905,0.004446572546536724,0.0077232726,0,0,0,0 +1813,0.011449080560791872,0.25598125783107806,0,0,2.2319968590304815,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97005,0,457.00000254313153,4269.5589,773.7009938557942,29.7784760297943,281.8580017089844,365.91388742059627,0,0,0,0,0,0,0,0,0,0,0,0,2.2522358449350577e-6,3.110098e-6,0,0,0,0,1.244308817452596e-4,2.2461994e-4,0,0,0,0,274.2670516967773,0.17802296931450928,8.032995952278533,61.13613019851266,3.844088557026285,16.064915035546967,-0.014581877830157016,0,0,1400.3255529877902,0.08341540584179588,0.004446572546536724,0.0077232726,0,0,0,0 +1814,0.011703715690574799,0.26069057570095894,0,0,2.291579691300283,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93883999999998,0,457.00000254313153,4267.9182,774.8281351725259,30.547851858136706,281.9310048421224,377.9855416791419,0,0,0,0,0,0,0,0,0,0,0,0,2.298199888173258e-6,3.1448486e-6,0,0,0,0,1.269702879653778e-4,2.2853159e-4,0,0,0,0,274.2310485839843,0.18138622612769045,8.255365791822651,63.491928228846156,3.9468734522371403,16.719923485538892,-0.014820662537401687,0,0,1449.119879767822,0.1513774178324831,0.004446572546536724,0.0077232726,0,0,0,0 +1815,0.012094116593579975,0.2654865314559236,0,0,2.2873246936294374,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94955,0,457.00000254313153,4268.4808,776.1400197347004,30.644339540877155,281.9919967651367,375.58066479556715,0,0,0,0,0,0,0,0,0,0,0,0,2.344163931411458e-6,3.1811772e-6,0,0,0,0,1.295096929728364e-4,2.3262515e-4,0,0,0,0,274.1810506184895,0.18481302247419681,8.178894557702046,62.871575698722964,3.9779982661109097,16.487496881933723,-0.015059447244646357,0,0,1442.8346042595695,-3.3418049013197435,0.004446572546536724,0.0077232726,0,0,0,0 +1816,0.013382562792105972,0.27037071898352416,0,0,2.2610219999980314,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93504,0,457.00000254313153,4267.7184,777.380157470703,30.799856219058316,282.0590006510417,371.6298227687404,0,0,0,0,0,0,0,0,0,0,0,0,2.3901279746496584e-6,3.2165261e-6,0,0,0,0,1.320490991929546e-4,2.3660577e-4,0,0,0,0,274.1430511474609,0.1883045587596232,8.188247476569973,62.14643251873565,3.866008444908697,16.395033850520726,-0.01538342230023426,0,0,1449.5176305014372,-4.328813791919775,0.004446572546536724,0.0077232726,0,0,0,0 +1817,0.013970105691413876,0.2753447614942531,0,0,2.2961805691271597,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95336,0,457.00000254313153,4268.6815,778.9910329182942,31.198395410102997,282.1270014444987,376.4429441283954,0,0,0,0,0,0,0,0,0,0,0,0,2.4360918284097957e-6,3.2531745000000007e-6,0,0,0,0,1.345885054130728e-4,2.4073619e-4,0,0,0,0,274.10705566406244,0.1918620580679428,8.22082538393248,62.94153100870699,3.9812025759726706,16.517228645555626,-0.015754264592881567,0,0,1472.005826655642,-1.519519756284862,0.004446572546536724,0.0077232726,0,0,0,0 +1818,0.01405484729122227,0.2804103120610006,0,0,2.335490104759264,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94012,0,457.00000254313153,4267.9855,780.3030497233071,31.68760831940507,282.1999994913737,383.9142096017897,0,0,0,0,0,0,0,0,0,0,0,0,2.4820558337523835e-6,3.2885565000000008e-6,0,0,0,0,1.371279092078718e-4,2.4472062e-4,0,0,0,0,274.07105000813795,0.19548676658995365,8.306817108343136,64.26768048931984,4.1092958455936754,16.849648882949314,-0.01612510688552888,0,0,1503.3307533939446,-0.39544551956287705,0.004446572546536724,0.0077232726,0,0,0,0 +1819,0.01412101034059915,0.28556905416843703,0,0,2.304129482409452,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92235,0,457.00000254313153,4267.0511,781.42605082194,31.84544135012051,282.27200571695965,378.33258383444644,0,0,0,0,0,0,0,0,0,0,0,0,2.5280198769905837e-6,3.3237292e-6,0,0,0,0,1.396673166406496e-4,2.4868094e-4,0,0,0,0,274.05004882812494,0.19917995405981814,8.302878858634369,63.25758927353961,3.9635191901767652,16.665198211860137,-0.016495949178176192,0,0,1480.3972085438447,-0.009852951526022849,0.004446572546536724,0.0077232726,0,0,0,0 +1820,0.014336733148844732,0.29082270227250195,0,0,2.32104876587155,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88909,0,457.00000254313153,4265.3029,782.4270782470702,32.333394668843965,282.3460006713867,382.4197482792824,0,0,0,0,0,0,0,0,0,0,0,0,2.573983920228784e-6,3.3582175000000007e-6,0,0,0,0,1.4220672286076783e-4,2.5256240000000004e-4,0,0,0,0,274.0070495605468,0.20294291419985105,8.41607797478937,64.0766432984354,3.958562233257077,16.963564409475474,-0.0168667914708235,0,0,1500.1274234919138,0.12003571660703966,0.004446572546536724,0.0077232726,0,0,0,0 +1821,0.014562069432518771,0.2961730023701861,0,0,2.3334837772109833,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93899,0,457.00000254313153,4267.9261,783.568130493164,32.52138863261211,282.4150034586589,382.89753410088764,0,0,0,0,0,0,0,0,0,0,0,0,2.6199479634669842e-6,3.396252e-6,0,0,0,0,1.4474612665556683e-4,2.5685255e-4,0,0,0,0,273.9700495402018,0.20677696517370964,8.396299170642942,63.987449087582284,4.029731628274296,16.860100322541292,-0.01723763376347081,0,0,1506.0001599344928,0.06037517262922151,0.004446572546536724,0.0077232726,0,0,0,0 +1822,0.015133379255268703,0.30162173257979613,0,0,2.3025151175170526,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92104,0,457.00000254313153,4266.9822,784.9560546874999,32.73451051970765,282.4769999186198,378.6708004400731,0,0,0,0,0,0,0,0,0,0,0,0,2.665911836174928e-6,3.4313761e-6,0,0,0,0,1.4728553408834463e-4,2.6080728e-4,0,0,0,0,273.9330520629882,0.21068345004814615,8.447852069179593,63.22724653024458,3.871133523422822,16.796298079496715,-0.017608476056118122,0,0,1499.4772542487524,0.0654325060086605,0.004446572546536724,0.0077232726,0,0,0,0 +1823,0.01603814933316958,0.30717070373189426,0,0,2.2824717646567367,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94096,0,457.00000254313153,4268.0293,786.2210744222004,32.75571508609182,282.54000091552734,374.3931813157347,0,0,0,0,0,0,0,0,0,0,0,0,2.7118758225697093e-6,3.4681677e-6,0,0,0,0,1.4982493909580322e-4,2.6495418e-4,0,0,0,0,273.89505004882807,0.21466373726348362,8.395261063519708,62.26076437261461,3.846052063384317,16.532712282905738,-0.01797931834876543,0,0,1499.6047524729552,-0.2700677190301451,0.004446572546536724,0.0077232726,0,0,0,0 +1824,0.01650100893154855,0.31282175997110956,0,0,2.310947810882604,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93425,0,457.00000254313153,4267.6765,787.4750722249348,33.05197869569693,282.6179962158203,377.040711415511,0,0,0,0,0,0,0,0,0,0,0,0,2.7578398658079095e-6,3.5037779e-6,0,0,0,0,1.5236434531592144e-4,2.6896492e-4,0,0,0,0,273.847048441569,0.21871922111297978,8.395833943142073,62.56343379800663,3.956577312910641,16.47072525551795,-0.018354944497914732,0,0,1512.9125520641012,-0.02966138430388376,0.004446572546536724,0.0077232726,0,0,0,0 +1825,0.01722266283199113,0.3185767793690206,0,0,2.3227031118101618,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91652,0,457.00000254313153,4266.7449,788.7140604654946,33.52533881675272,282.6759999593099,380.31674976188685,0,0,0,0,0,0,0,0,0,0,0,0,2.8038039090461098e-6,3.5388691e-6,0,0,0,0,1.5490375032338002e-4,2.7291587000000003e-4,0,0,0,0,273.78604634602857,0.22285132223124796,8.516236488505783,63.185789553909586,3.9190680646113942,16.80867752489523,-0.0187628709494922,0,0,1538.203336309689,0.11056506113548577,0.004446572546536724,0.0077232726,0,0,0,0 +1826,0.017382230465949125,0.32443767454831385,0,0,2.320968833647435,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90841,0,457.00000254313153,4266.3186,789.8310445149739,33.74810290483613,282.6929982503255,378.82226551401243,0,0,0,0,0,0,0,0,0,0,0,0,2.84976795228431e-6,3.574385500000001e-6,0,0,0,0,1.5744315654349825e-4,2.7691579e-4,0,0,0,0,273.72805023193354,0.22706148809190466,8.523620414150141,62.815941509777446,3.9116044827887784,16.620779080998844,-0.01917079740106968,0,0,1531.9828127801402,0.16037395519074635,0.004446572546536724,0.0077232726,0,0,0,0 +1827,0.01863987745517804,0.3304063933184248,0,0,2.3463377823547544,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91515,0,457.00000254313153,4266.6729,790.8700917561848,34.15505001036133,282.69299570719403,382.4773392117438,0,0,0,0,0,0,0,0,0,0,0,0,2.8957318249922537e-6,3.6105981e-6,0,0,0,0,1.5998256276361644e-4,2.8099598e-4,0,0,0,0,273.67705535888666,0.23135119351461897,8.585850324307904,63.38999010724139,3.9627935910031815,16.799919229980286,-0.01957872385264715,0,0,1566.0922143761854,0.17722825483510965,0.004446572546536724,0.0077232726,0,0,0,0 +1828,0.01882474558367928,0.33648491932287206,0,0,2.420774152646399,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.87222,0,457.00000254313153,4264.4159,791.9830423990884,34.99912851284667,282.708002726237,395.9754324666183,0,0,0,0,0,0,0,0,0,0,0,0,2.941695811387035e-6,3.6444139e-6,0,0,0,0,1.6252196777107505e-4,2.847999e-4,0,0,0,0,273.6410522460937,0.23572194118174164,8.801495946618267,65.90535948629658,4.116354977084998,17.480564495882128,-0.019986650304224626,0,0,1618.0207226022496,0.18289538758840385,0.004446572546536724,0.0077232726,0,0,0,0 +1829,0.01866419595593191,0.34267527269850206,0,0,2.379376332459752,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90025,0,457.00000254313153,4265.8895,793.0000712076821,35.0164051294104,282.76099650065106,389.1746282041487,0,0,0,0,0,0,0,0,0,0,0,0,2.9876598546252353e-6,3.6816572e-6,0,0,0,0,1.6506137277853364e-4,2.8899889e-4,0,0,0,0,273.6020533243815,0.24017526216469398,8.767229394465893,64.57289823663554,4.000350816006103,17.19408165401919,-0.020394576755802103,0,0,1597.2383021208498,0.18479929364776207,0.004446572546536724,0.0077232726,0,0,0,0 +1830,0.024933734074320084,0.3489795107468605,0,0,2.4031598307534434,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8667,0,457.00000254313153,4264.1256,793.9600270589192,35.40215533786149,282.8249994913737,392.10653286413964,0,0,0,0,0,0,0,0,0,0,0,0,3.0336238978634356e-6,3.7158665e-6,0,0,0,0,1.6760078021131145e-4,2.9284816e-4,0,0,0,0,273.5640513102213,0.24471271646030182,8.81880644628117,64.94076179033591,4.038430290401805,17.314251572854413,-0.020802503207379586,0,0,1705.903253614498,0.1854388472573092,0.004446572546536724,0.0077232726,0,0,0,0 +1831,0.02366017773383691,0.3553997286179164,0,0,2.3613471253941487,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89173999999998,0,457.00000254313153,4265.442,794.810073852539,35.37418704933364,282.8909962972005,384.20125072452805,0,0,0,0,0,0,0,0,0,0,0,0,3.079587941101636e-6,3.7529959e-6,0,0,0,0,1.7014018521877006e-4,2.97034e-4,0,0,0,0,273.52005004882807,0.24933589353726177,8.731507391555889,63.33682174076503,3.9474094529519688,16.877728667025877,-0.02121042965895705,0,0,1661.033130299973,-2.2447406013527207,0.004446572546536724,0.0077232726,0,0,0,0 +1832,0.023685925177870507,0.3619380600063637,0,0,2.3538632990393804,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90924,0,457.00000254313153,4266.362,795.5789845784504,35.562723492003244,282.9219970703125,382.363398002473,0,0,0,0,0,0,0,0,0,0,0,0,3.1255518138095795e-6,3.7897747e-6,0,0,0,0,1.7267959022622867e-4,3.0117945e-4,0,0,0,0,273.4440485636393,0.25404641289293156,8.712430008651964,62.87089656141417,3.946175052921808,16.738986754109227,-0.021652683906249543,0,0,1660.6105827511283,-1.4987682109213591,0.004446572546536724,0.0077232726,0,0,0,0 +1833,0.024226693427449875,0.3685966778607331,0,0,2.356959381290607,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89175,0,457.00000254313153,4265.4426,796.1241149902343,35.98083111069253,282.96599833170575,383.4537927943128,0,0,0,0,0,0,0,0,0,0,0,0,3.171515800204361e-6,3.824754e-6,0,0,0,0,1.7521899765900648e-4,3.0511746e-4,0,0,0,0,273.3720499674479,0.2588459246206396,8.790922956695082,63.06958370159948,3.905335593523844,16.86449692010886,-0.02214928975776249,0,0,1673.8749364362222,-0.4194845439142279,0.004446572546536724,0.0077232726,0,0,0,0 +1834,0.02470258560682817,0.3753777951055501,0,0,2.4124454659285632,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.854,0,457.00000254313153,4263.4584,797.0440368652343,36.761060965311756,283.0279998779297,394.1429023376304,0,0,0,0,0,0,0,0,0,0,0,0,3.217479843442561e-6,3.8586347e-6,0,0,0,0,1.7775840266646506e-4,3.089289e-4,0,0,0,0,273.2140502929687,0.2637361099877118,9.001420472247489,65.10499264081507,3.9890612936666887,17.454285340709294,-0.02264589560927544,0,0,1721.2693465918007,-0.01933718178498213,0.004446572546536724,0.0077232726,0,0,0,0 +1835,0.025273637508183497,0.38228366537677744,0,0,2.4054563746496176,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8698,0,457.00000254313153,4264.2887,797.8309682210286,36.88278972577237,283.08599853515625,390.5551391819573,0,0,0,0,0,0,0,0,0,0,0,0,3.2634438866807614e-6,3.8953332e-6,0,0,0,0,1.8029780767392367e-4,3.1306506e-4,0,0,0,0,273.07905069986975,0.2687186820244191,8.925548285908778,64.23544316564437,3.998558037017324,17.170486789731093,-0.023142501460788386,0,0,1718.2221250231016,-1.6633625299236003,0.004446572546536724,0.0077232726,0,0,0,0 +1836,0.029221069497854205,0.389316583770789,0,0,2.4041879560344257,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84901,0,457.00000254313153,4263.1961,798.1060129801431,37.24729235142932,283.1489995320638,389.978664389183,0,0,0,0,0,0,0,0,0,0,0,0,3.3094079299189616e-6,3.9300644999999986e-6,0,0,0,0,1.8283721389404187e-4,3.1697451e-4,0,0,0,0,272.9540532430012,0.2737953861240514,8.99301508642379,64.08016333132153,3.917445996447821,17.23500428603742,-0.02363910731230133,0,0,1783.0834194781103,-1.0677252796589791,0.004446572546536724,0.0077232726,0,0,0,0 +1837,0.02926039926471735,0.39647888760712147,0,0,2.4402101737227215,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.86946,0,457.00000254313153,4264.2707,798.115982055664,37.699806775525964,283.19800059000653,394.75650376781886,0,0,0,0,0,0,0,0,0,0,0,0,3.3553718026269053e-6,3.9670389e-6,0,0,0,0,1.853766201141601e-4,3.2114251e-4,0,0,0,0,272.8730545043945,0.2789680006543284,9.027059824256213,64.82242714481194,4.040217213334495,17.353835237590644,-0.02413571316381428,0,0,1798.0881971564909,-0.2640591208376881,0.004446572546536724,0.0077232726,0,0,0,0 +1838,0.030288692886915835,0.4037729572052591,0,0,2.477311745666847,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85548,0,457.00000254313153,4263.5362,797.937016805013,38.242109615281024,283.2530034383138,401.2961870125921,0,0,0,0,0,0,0,0,0,0,0,0,3.4013357890216867e-6,4.0021199e-6,0,0,0,0,1.8791602512161867e-4,3.2509225e-4,0,0,0,0,272.8660507202148,0.28423833758036093,9.122535894908143,65.94724656685626,4.142172855024622,17.64153847089682,-0.024632319015327232,0,0,1841.5431392468436,0.03335501919910246,0.004446572546536724,0.0077232726,0,0,0,0 +1839,0.031310556578042714,0.4112012166757089,0,0,2.4526381380788647,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83788,0,457.00000254313153,4262.6108,797.9220987955728,38.51117555601762,283.3109995524089,396.9116368644367,0,0,0,0,0,0,0,0,0,0,0,0,3.447299832259887e-6,4.0369741e-6,0,0,0,0,1.904554313417369e-4,3.2901587999999995e-4,0,0,0,0,272.85805002848304,0.2896082430993816,9.139608329107503,65.11131218043978,4.015311872419976,17.505176328593002,-0.025128924866840176,0,0,1843.0808236850567,0.13450763436493787,0.004446572546536724,0.0077232726,0,0,0,0 +1840,0.03354297409334304,0.41876613472562935,0,0,2.4438775219719657,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.80755,0,457.00000254313153,4261.0163,798.3870493570962,38.88776194382017,283.38200124104816,395.88091618643386,0,0,0,0,0,0,0,0,0,0,0,0,3.493263875498087e-6,4.0710717e-6,0,0,0,0,1.9299483634919548e-4,3.3285227e-4,0,0,0,0,272.7990519205729,0.29507959828746777,9.211326298909695,64.92298176034035,3.924269140081404,17.575132478856116,-0.025625530718353124,0,0,1874.1418275066233,0.16854263071970732,0.004446572546536724,0.0077232726,0,0,0,0 +1841,0.03460122912653735,0.42647022547928015,0,0,2.490489852137439,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84789,0,457.00000254313153,4263.137,799.060084025065,39.38162316774325,283.46699778238934,402.37274181683716,0,0,0,0,0,0,0,0,0,0,0,0,3.5392279187362874e-6,4.1092335e-6,0,0,0,0,1.955342437819733e-4,3.3715711000000003e-4,0,0,0,0,272.6890487670898,0.3006543197584808,9.249453201790956,65.9454451837981,4.089445548039454,17.745543570932366,-0.026145023202402858,0,0,1916.2642072737253,0.17997793561545353,0.004446572546536724,0.0077232726,0,0,0,0 +1842,0.03663997981024372,0.4343160493135666,0,0,2.4491704689870333,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84034,0,457.00000254313153,4262.7403,800.0011189778645,39.618728876147166,283.5279998779297,396.99512213680947,0,0,0,0,0,0,0,0,0,0,0,0,3.585191791444231e-6,4.1446349e-6,0,0,0,0,1.980736475767723e-4,3.411438e-4,0,0,0,0,272.58205413818354,0.3063343603354562,9.261381852099804,64.92167359416241,3.9361680613715975,17.590961717477978,-0.026688925256719682,0,0,1931.46250751484,0.18381929631950947,0.004446572546536724,0.0077232726,0,0,0,0 +1843,0.037450386379355084,0.44230621370895423,0,0,2.4111362709735427,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85726,0,457.00000254313153,4263.6297,801.4921824137368,39.653263822240504,283.56600189208984,389.73678087183737,0,0,0,0,0,0,0,0,0,0,0,0,3.6311557778390124e-6,4.1814844e-6,0,0,0,0,2.006130537968905e-4,3.4529738e-4,0,0,0,0,272.6070480346679,0.3121217097346764,9.185852611691464,63.424060913522,3.8460662124532643,17.218218321973847,-0.027232827311036496,0,0,1929.66039784958,0.18510965928096967,0.004446572546536724,0.0077232726,0,0,0,0 +1844,0.03984697293733208,0.45044337411603935,0,0,2.4438258963267856,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85117,0,457.00000254313153,4263.3094,803.6190745035806,40.04426499219912,283.60899861653644,392.7074417140548,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198210772127e-6,4.2169694e-6,0,0,0,0,2.0315246122966832e-4,3.4929371e-4,0,0,0,0,272.64805348714185,0.3180183952626677,9.178913525794204,63.76245430030204,3.965309781326317,17.1801218980614,-0.027776729365353317,0,0,1991.4456467268888,0.1855430999305122,0.004446572546536724,0.0077232726,0,0,0,0 +1845,0.04379212851318448,0.4587302348380611,0,0,2.4713718751387326,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83257,0,457.00000254313153,4262.3319,805.665069580078,40.66967666700967,283.72499593098956,397.85005599568376,0,0,0,0,0,0,0,0,0,0,0,0,3.723083864315413e-6,4.2516813e-6,0,0,0,0,2.0569186502446732e-4,3.5320089999999995e-4,0,0,0,0,272.64005025227857,0.32402648252636523,9.30790591121511,64.68556723249593,3.957876345089828,17.599363300735142,-0.02832063141967013,0,0,2080.3810922503694,0.18568870533529727,0.004446572546536724,0.0077232726,0,0,0,0 +1846,0.04419737434029645,0.46716954992964915,0,0,2.4711987422790394,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82423,0,457.00000254313153,4261.8933,807.2559560139973,40.975199745155024,283.8470001220703,395.9082621735635,0,0,0,0,0,0,0,0,0,0,0,0,3.769047907553613e-6,4.2869996e-6,0,0,0,0,2.0823127124458551e-4,3.5717802e-4,0,0,0,0,272.7300465901692,0.3301480761566941,9.302498358152864,64.24405152639606,3.9495415402063423,17.39887856615626,-0.02886453347398695,0,0,2072.290434339566,0.003535562113167848,0.004446572546536724,0.0077232726,0,0,0,0 +1847,0.047464619118496226,0.4757641241121063,0,0,2.521115228079649,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82758,0,457.00000254313153,4262.0693,807.9369812011718,41.61647167525484,283.9359995524089,402.98515747487147,0,0,0,0,0,0,0,0,0,0,0,0,3.815011799209363e-6,4.3230378e-6,0,0,0,0,2.107706774647037e-4,3.6123808e-4,0,0,0,0,272.8130518595377,0.33638532054582115,9.401962018636505,65.44362075203811,4.040566100417133,17.760514190415755,-0.029408435528303762,0,0,2154.230603343035,0.05986150819062035,0.004446572546536724,0.0077232726,0,0,0,0 +1848,0.04711780719580413,0.484516813705529,0,0,2.5773717998210097,0,1.4945332000000003e-5,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.78829,0,457.00000254313153,4260.004,808.0920410156249,42.449470629613735,284.0679982503255,413.5582929452125,0,0,0,0,0,0,0,0,0,0,0,0,3.860975766656338e-6,4.3563791e-6,0,0,0,0,2.1331008247216232e-4,3.6498734e-4,0,0,0,0,272.8850479125976,0.3427404005983347,9.573238566746884,67.39824375327751,4.1550564996331225,18.30069373024327,-0.029952337582620583,0,0,2204.416735349108,0.14052998907092631,0.004446572546536724,0.0077232726,0,0,0,0 +1849,0.04885144245331925,0.49343052757807715,0,0,2.5523940889282035,0,1.1956415e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.81678,0,457.00000254313153,4261.5016,808.2150014241536,42.63396460567202,284.20699818929035,408.9399341234632,0,0,0,0,0,0,0,0,0,0,0,0,3.9069398098945385e-6,4.3940071e-6,0,0,0,0,2.1584948869228052e-4,3.6923065e-4,0,0,0,0,272.9540456136067,0.3492155424966158,9.543358834157274,66.42707154065786,4.087020956416189,18.074786269748145,-0.03055301159093652,0,0,2224.8957196823785,0.1704345774563485,0.004446572546536724,0.0077232726,0,0,0,0 +1850,0.051384895328128635,0.502508228112706,0,0,2.5711244787427185,1.2887821417469543e-6,2.2473666e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93295,0,457.00000254313153,4267.6083,808.249028523763,43.142363653343445,284.3169987996419,411.4628743194825,0,0,0,0,0,0,0,0,0,0,0,0,3.952903853132739e-6,4.4373643e-6,0,0,0,0,2.1838889491239874e-4,3.7413425e-4,0,0,0,0,273.02104695638013,0.35581301448066943,9.604162557026681,66.78304875030415,4.096904208036784,18.22682478664064,-0.03125687970329533,0,0,2275.7767113113205,0.18074597510251067,0.004446572546536724,0.0077232726,0,0,0,0 +1851,0.051562308443334225,0.4946563668475162,0,0,2.5266925893124657,1.031025730450589e-5,2.4082745e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96457,0,457.00000254313153,4269.2706,808.4141082763671,43.151913707774774,284.4510040283203,402.2448152541545,0,0,0,0,0,0,0,0,0,0,0,0,3.998867896370939e-6,4.475348e-6,0,0,0,0,2.2092829991985732e-4,3.7841858e-4,0,0,0,0,273.0940500895182,0.3637934413745739,9.478471328343609,64.9500465918497,4.010397677989623,17.726300494053056,-0.03196074781565415,0,0,2256.8151473435455,0.18431279870175096,0.004446572546536724,0.0077232726,0,0,0,0 +1852,0.05364238006818437,0.5506858688322854,0,0,2.5076341601822123,2.0667359725242324e-5,2.4179888e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98199,0,457.00000254313153,4270.1861,809.1631317138671,43.34412933408961,284.59800211588544,397.49851999155004,0,0,0,0,0,0,0,0,0,0,0,0,4.044831939609139e-6,4.5124367e-6,0,0,0,0,2.2346770613997555e-4,3.825997e-4,0,0,0,0,273.16805013020826,0.3724242241558459,9.424520247380277,63.95789986488204,3.9584516109367627,17.47926154999162,-0.03266461592801298,0,0,2277.6344054535484,0.17954033954307605,0.004446572546536724,0.0077232726,0,0,0,0 +1853,0.05595234905591053,0.5486310857453621,0,0,2.5278117426961444,3.10744549096853e-5,2.4277992e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9693,0,457.00000254313153,4269.5191,810.404057820638,43.88435962687079,284.7309977213542,400.33880414377563,0,0,0,0,0,0,0,0,0,0,0,0,4.0907959828473395e-6,4.5475315000000004e-06,0,0,0,0,2.2600711114743413e-4,3.8655105e-4,0,0,0,0,273.264050801595,0.38010970895337787,9.493187126119388,64.44555417814735,3.9683262348472685,17.65848987916477,-0.0333684840403718,0,0,2326.4206162177375,0.015887254241176648,0.004446572546536724,0.0077232726,0,0,0,0 +1854,0.06589565461208481,0.5467397743701289,0,0,2.6100485430157265,4.1513251138288375e-5,2.4405566e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9226,0,457.00000254313153,4267.0641,811.7321421305337,44.80907906406347,284.8459981282552,413.39913150953396,0,0,0,0,0,0,0,0,0,0,0,0,4.136759950294315e-6,4.5802995999999986e-6,0,0,0,0,2.2854651736755235e-4,3.9023425e-4,0,0,0,0,273.3630498250325,0.3881180379413641,9.708926054401639,66.794695219375825,4.086374133078645,18.340431326430615,-0.034072352152730634,0,0,2535.1581947111176,-0.014112611956298624,0.004446572546536724,0.0077232726,0,0,0,0 +1855,0.0665605946226626,0.543758286864958,0,0,2.593264313364505,5.2002859774802346e-5,2.4547759e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95064,0,457.00000254313153,4268.5385,813.332036336263,44.957053896332596,284.9409993489583,408.11045388038974,0,0,0,0,0,0,0,0,0,0,0,0,4.182723614576389e-6,4.6181251e-6,0,0,0,0,2.3108592358767055e-4,3.945003e-4,0,0,0,0,273.4700495402018,0.39515493127386314,9.608218449939441,65.65156397841133,4.071657215875477,17.99164859504197,-0.03477622026508945,0,0,2531.882070736542,0.11294859461260336,0.004446572546536724,0.0077232726,0,0,0,0 +1856,0.07119571676282484,0.5497252657327152,0,0,2.5734300072332923,6.254957406781614e-5,2.4704559e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92886,0,457.00000254313153,4267.3934,814.7961222330728,45.32147323346321,285.04899342854816,404.85491673017987,0,0,0,0,0,0,0,0,0,0,0,0,4.228687657814589e-6,4.652537400000002e-6,0,0,0,0,2.3362532859512916e-4,3.98373e-4,0,0,0,0,273.5780461629231,0.40121361649916243,9.648967407833753,65.04253470413643,3.941501863088442,17.954118052235966,-0.03548008837744827,0,0,2598.3233502208395,0.12225561148477546,0.004446572546536724,0.0077232726,0,0,0,0 +1857,0.0718939473501754,0.55506091263013,0,0,2.636452577483439,7.315969560295343e-5,2.487597e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94976,0,457.00000254313153,4268.4922,816.4521179199218,46.01300693840024,285.20399983723956,414.6731918454804,0,0,0,0,0,0,0,0,0,0,0,0,4.2746517010527896e-06,4.6899086e-6,0,0,0,0,2.3616473481524736e-4,4.025867e-4,0,0,0,0,273.67504882812494,0.4075261897409684,9.717987448936368,66.72779876959439,4.1591410074143615,18.291565645975457,-0.03618395648980709,0,0,2646.996287168382,-0.044823331390134384,0.004446572546536724,0.0077232726,0,0,0,0 +1858,0.0730281599923091,0.5597369099004649,0,0,2.660122641883427,8.383950868543859e-5,2.5062e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93987,0,457.00000254313153,4267.9722,818.3551279703775,46.54057728835799,285.3690007527669,419.01402360882946,0,0,0,0,0,0,0,0,0,0,0,0,4.32061574429099e-6,4.7251299e-6,0,0,0,0,2.3870414103536555e-4,4.0655264e-4,0,0,0,0,273.7560501098632,0.41251745553966174,9.773872716558104,67.47060376347301,4.240872484906792,18.47927629769415,-0.03688782460216592,0,0,2684.853418420537,0.08628782582640311,0.004446572546536724,0.0077232726,0,0,0,0 +1859,0.07785211331835136,0.5673853687525405,0,0,2.6482032498787995,9.459531490089527e-5,2.5262647e-4,0.025000428936133783,0.024856862,34.05000019073486,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91443,0,457.00000254313153,4266.635,820.3960774739583,46.94962615479032,285.5449956258138,416.29974849312515,0,0,0,0,0,0,0,0,0,0,0,0,4.36657978752919e-6,4.7592242000000015e-6,0,0,0,0,2.4124354483016455e-4,4.1038866e-4,0,0,0,0,273.89505004882807,0.41699740802681257,9.815633788495665,66.95694733909333,4.119710728903347,18.449505984059194,-0.03759169271452474,0,0,2765.3515040429447,0.1535034293269437,0.004446572546536724,0.0077232726,0,0,0,0 +1860,0.08580578973181537,0.57190571026195,0,0,2.6484047305257548,1.0543340310202136e-4,2.5477918999999995e-4,0.025000428936133783,0.024856862,34.04999955495199,0.010810676000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89112,0,457.00000254313153,4265.4096,822.3121185302733,47.37614022716783,285.73899332682294,416.0639965860974,0,0,0,0,0,0,0,0,0,0,0,0,4.41254383076739e-6,4.7934342e-6,0,0,0,0,2.4378295105028278e-4,4.1423802e-4,0,0,0,0,274.05604807535804,0.42075257795117216,9.868462594270229,66.84953492841794,4.0609762626653305,18.52046800322501,-0.03829556082688356,0,0,2898.3777844170777,0.17676937373971446,0.004446572546536724,0.0077232726,0,0,0,0 +1861,0.09043757175448788,0.5830953457170218,0,0,2.670268662609388,1.1636007608710013e-4,2.5707803e-4,0.025000428936133783,0.024856862,34.04999987284342,0.010810691,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94268,0,457.00000254313153,4268.1198,824.399190266927,48.23468669993056,285.9330012003581,417.24413721688705,0,0,0,0,0,0,0,0,0,0,0,0,4.4585078740055906e-6,4.8330788e-6,0,0,0,0,2.463223596957202e-4,4.1871377e-4,0,0,0,0,274.2400461832682,0.42335986018473476,9.85713564571437,66.88575551122409,4.161212988464047,18.437119828737263,-0.03899942893924239,0,0,2971.2788427875175,0.11623622338672868,0.004446572546536724,0.0077232726,0,0,0,0 +1862,0.09186559088261632,0.5229565631081879,0,0,2.648564983127743,1.2738162210249962e-4,2.5952295e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93302,0,457.00000254313153,4267.612,827.0292002360025,49.13056211810905,286.1000010172526,414.16280656087633,0,0,0,0,0,0,0,0,0,0,0,0,4.504471917243791e-6,4.8682827e-6,0,0,0,0,2.488617634905192e-4,4.2267767e-4,0,0,0,0,274.4160486857096,0.4259683950031353,9.918881972367876,66.358960161654025,4.0424493589722115,18.41589320519377,-0.0397032970516012,0,0,2976.388043494933,-0.6237998311805185,0.004446572546536724,0.0077232726,0,0,0,0 +1863,0.09748855439032131,0.523134296634959,0,0,2.6292695144324947,1.3850433606421575e-4,2.6211454e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9509,0,457.00000254313153,4268.552,830.1662139892577,49.710222528727996,286.271001180013,408.1224194075052,0,0,0,0,0,0,0,0,0,0,0,0,4.550435960481991e-6,4.9055252e-6,0,0,0,0,2.5140116971063736e-4,4.2687657e-4,0,0,0,0,274.57104492187494,0.4284326826015117,9.86866585386286,65.00963540040021,3.9715193557400945,18.09141100618794,-0.04040716516396003,0,0,3064.446906560989,-0.2585729087354761,0.004446572546536724,0.0077232726,0,0,0,0 +1864,0.10472513857630868,0.5234813827246285,0,0,2.667755633655596,1.4973450258063772e-4,2.6485186e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94467,0,457.00000254313153,4268.2247,833.6041412353514,50.66032472624755,286.44200134277344,411.3310642864957,0,0,0,0,0,0,0,0,0,0,0,0,4.5963999279289664e-6,4.9409793e-6,0,0,0,0,2.539405759307556e-4,4.308693e-4,0,0,0,0,274.72005208333326,0.431014195621195,9.887134077064891,65.39906664161046,4.087458726366705,18.093817300572518,-0.041111033276318855,0,0,3193.218258651068,0.037999846461008915,0.004446572546536724,0.0077232726,0,0,0,0 +1865,0.11093631924882667,0.5242503840770768,0,0,2.720201066299487,1.6107846022350714e-4,2.6773567000000004e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010810706000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93017,0,457.00000254313153,4267.4623,836.8942057291665,51.98007509857536,286.6139958699544,420.4890049801762,0,0,0,0,0,0,0,0,0,0,0,0,4.642363592211041e-6,4.9757947000000005e-6,0,0,0,0,2.564799797255546e-4,4.3478845e-4,0,0,0,0,274.8800430297851,0.43343877181201473,10.07353477775766,67.10347351160692,4.157661467348705,18.66656837953943,-0.04181490138867768,0,0,3327.080175680617,0.1429288681419851,0.004446572546536724,0.0077232726,0,0,0,0 +1866,0.11473850842802115,0.5243863634262115,0,0,2.7102983366424596,1.7254241417200925e-4,2.707659e-4,0.025000428936133783,0.024856862,34.050100008646645,0.01081072,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92398,0,457.00000254313153,4267.1368,840.3622080485025,52.74699292831513,286.78099822998047,417.1011849314015,0,0,0,0,0,0,0,0,0,0,0,0,4.688327635449241e-6,5.0112266e-6,0,0,0,0,2.590193835203536e-4,4.387786599999999e-4,0,0,0,0,275.0480473836262,0.4357447764915154,10.064549123367675,66.37528156013664,4.133671177718162,18.394680194366018,-0.042518769501036495,0,0,3388.2580778414886,0.1744104739671799,0.004446572546536724,0.0077232726,0,0,0,0 +1867,0.12258204012181728,0.5228764549771724,0,0,2.761022670595916,1.8413277454480217e-4,2.7394196e-4,0.025000428936133783,0.024856862,34.05020046234131,0.010070544,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93094,0,457.00000254313153,4267.5026,843.995122273763,53.9410217812425,286.9550018310547,424.2969752987472,0,0,0,0,0,0,0,0,0,0,0,0,4.734291678687441e-6,5.0476689e-6,0,0,0,0,2.615587945911102e-4,4.428853e-4,0,0,0,0,275.21304829915357,0.43821064879605803,10.189133101169272,67.66026448741948,4.231180960949066,18.768356166586962,-0.04322263761339532,0,0,3565.4355350198875,0.18466917521307166,0.004446572546536724,0.0077232726,0,0,0,0 +1868,0.12560944174010713,0.5214153984123745,0,0,2.825140562350265,1.9585573196915598e-4,2.7726501e-4,0.025000428936133783,0.024856862,34.05019982655843,0.010072023,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89186,0,457.00000254313153,4265.4483,847.2491251627603,55.287673564162375,287.10500081380206,434.93022825982507,0,0,0,0,0,0,0,0,0,0,0,0,4.780255721925641e-6,5.0805177e-6,0,0,0,0,2.640981983859092e-4,4.465778e-4,0,0,0,0,275.39104461669916,0.44143425556535276,10.372200923081559,69.64729381366908,4.3633047348631795,19.301247569591883,-0.043926505725754135,0,0,3668.308732016809,0.188148666241629,0.004446572546536724,0.0077232726,0,0,0,0 +1869,0.13329152205114916,0.5197708976584334,0,0,2.7850043169774756,2.0771763714340827e-4,2.8073396e-4,0.025000428936133783,0.024856862,34.05020014444987,0.010810735,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93014,0,457.00000254313153,4267.4609,850.1300862630208,55.83359728305401,287.2249984741211,426.4036167290826,0,0,0,0,0,0,0,0,0,0,0,0,4.826219765163842e-6,5.1194221e-6,0,0,0,0,2.666376021807082e-4,4.5096821e-4,0,0,0,0,275.5610478719075,0.44390826602791195,10.311061269202527,67.9294955911712,4.245329954023304,18.888825035193033,-0.04497175592064998,0,0,3791.4627445920805,0.1894123650346563,0.004446572546536724,0.0077232726,0,0,0,0 +1870,0.13667438365279438,0.5186718603074794,0,0,2.831200782445544,2.197247971101509e-4,2.8434934e-4,0.025000428936133783,0.024856862,34.05020014444987,0.01081075,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89317,0,457.00000254313153,4265.5174,852.4350077311196,56.996592307003596,287.3549982706706,433.2287624497814,0,0,0,0,0,0,0,0,0,0,0,0,4.872183808402042e-6,5.152380400000002e-6,0,0,0,0,2.691770132514648e-4,4.5467331e-4,0,0,0,0,275.7200444539387,0.4466399609979402,10.441023971231417,69.12187693609928,4.323468650206145,19.258120747383764,-0.046232618783436236,0,0,3887.5293351931314,0.189950840385198,0.004446572546536724,0.0077232726,0,0,0,0 +1871,0.1452491611173251,0.5388152153139819,0,0,2.7978303472693873,2.31883451003038e-4,2.8811122e-4,0.025000428936133783,0.024856862,34.050299326578774,0.010071314,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92871,0,457.00000254313153,4267.3856,853.9930725097655,57.57401422057298,287.4940007527669,425.1606513202936,0,0,0,0,0,0,0,0,0,0,0,0,4.918147851640242e-6,5.1911213e-6,0,0,0,0,2.717164146209446e-4,4.590449e-4,0,0,0,0,275.9030456542968,0.45433593382870696,10.369497697943174,67.42862357960736,4.269404036940666,18.76177376623424,-0.047493481646222496,0,0,4016.0322788183066,0.19025039687154105,0.004446572546536724,0.0077232726,0,0,0,0 +1872,0.16034651313527334,0.6242378015462033,0,0,2.771292693837977,2.4419995800902444e-4,2.9201899e-4,0.025000428936133783,0.024856862,34.050299962361656,0.010810765,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95075,0,457.00000254313153,4268.5441,855.2329915364583,58.18710545429253,287.66399637858075,417.7442733570141,0,0,0,0,0,0,0,0,0,0,0,0,4.964111894878442e-6,5.228817700000002e-6,0,0,0,0,2.742558184157436e-4,4.6329615e-4,0,0,0,0,276.07804361979163,0.4708626218532089,10.330384237922804,65.84553711122807,4.17870981733127,18.365341648996967,-0.048754344509008736,0,0,4250.256915543303,0.18883431574024787,0.004446572546536724,0.0077232726,0,0,0,0 +1873,0.17009548212988732,0.635197775727867,0,0,2.8416338477805057,2.566805657503816e-4,2.9607326e-4,0.025000428936133783,0.024856862,34.050299962361656,0.01081078,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93223,0,457.00000254313153,4267.5705,856.1681976318358,59.62016165313301,287.86000061035156,429.28028904113773,0,0,0,0,0,0,0,0,0,0,0,0,5.010075938116643e-6,5.2632224000000015e-6,0,0,0,0,2.7679522706118104e-4,4.6716788e-4,0,0,0,0,276.25004831949866,0.4938942498998885,10.56453511561426,67.99437045089431,4.309987323977962,18.937298904886617,-0.050015207371795004,0,0,4473.449627744114,-0.0158300305583035,0.004446572546536724,0.0077232726,0,0,0,0 +1874,0.16101264250188482,0.6424589219115043,0,0,2.8680589101535006,2.693315764190629e-4,3.0027407000000005e-4,0.025000428936133783,0.024856862,34.05039978027344,0.010810794,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88493,0,457.00000254313153,4265.0843,857.8200785319009,60.88850035180588,288.0609995524089,435.8041800080444,0,0,0,0,0,0,0,0,0,0,0,0,5.05603994345923e-6,5.295217800000002e-6,0,0,0,0,2.793346332812992e-4,4.7076201e-4,0,0,0,0,276.4160537719726,0.5217358117405276,10.751611012739497,69.34908007240699,4.369596917606238,19.304810723709583,-0.051276070234581236,0,0,4382.176552473297,0.10137566545666454,0.004446572546536724,0.0077232726,0,0,0,0 +1875,0.17325906778674766,0.6503215087418923,0,0,2.8334891051221005,2.821592812930855e-4,3.046214e-4,0.025000428936133783,0.024856862,34.05040009816488,0.010810809,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5065,859.4690653483071,61.447170295790954,288.29100290934247,426.89349545310597,0,0,0,0,0,0,0,0,0,0,0,0,5.102003569845692e-6,5.3349387000000006e-6,0,0,0,0,2.818740370760982e-4,4.7524653e-4,0,0,0,0,276.5850474039713,0.5521636138855727,10.663545228962466,67.4820885998621,4.311546235769538,18.753876090158617,-0.0525369330973675,0,0,4552.510356024947,0.11898633163405398,0.004446572546536724,0.0077232726,0,0,0,0 +1876,0.17593823238514505,0.6580403904252425,0,0,2.8431252665224327,2.9516999347833917e-4,3.0911468e-4,0.025000428936133783,0.024856862,34.05049991607666,0.010810823999999998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90175,0,457.00000254313153,4265.968,860.8591054280598,62.60294810766919,288.5199966430664,429.4805477313967,0,0,0,0,0,0,0,0,0,0,0,0,5.1479676130838925e-6,5.3683812e-6,0,0,0,0,2.8441344572153565e-4,4.790074400000001e-4,0,0,0,0,276.7350514729817,0.5828831599457934,10.831893028061607,68.07266489194261,4.273649915248981,19.002140660093694,-0.053797795960153764,0,0,4640.322706228576,0.13010732358702753,0.004446572546536724,0.0077232726,0,0,0,0 +1877,0.17982534828505667,0.6646940864903487,0,0,2.881579172917859,3.083699945515643e-4,3.1375456e-4,0.025000428936133783,0.024856862,34.050500551859535,0.010810839,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92824,0,457.00000254313153,4267.3608,862.3791147867837,63.64524258623489,288.7520014444987,434.0603459961696,0,0,0,0,0,0,0,0,0,0,0,0,5.193931656322093e-6,5.406519099999998e-6,0,0,0,0,2.869528519416538e-4,4.833095099999999e-4,0,0,0,0,276.86404927571607,0.6122267058453676,10.897021601068372,68.7783807279057,4.413505723589701,19.089059096309025,-0.05504429988349307,0,0,4762.60475525006,0.1696072468545434,0.004446572546536724,0.0077232726,0,0,0,0 +1878,0.18077698311132545,0.6715857617280921,0,0,2.905036494302108,3.2176555153758574e-4,3.1854156e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810853,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92472,0,457.00000254313153,4267.1759,864.1391499837239,64.71120382869425,288.9930013020833,437.9599497693981,0,0,0,0,0,0,0,0,0,0,0,0,5.239895699560293e-6,5.4421234e-6,0,0,0,0,2.8949225331113365e-4,4.8731959e-4,0,0,0,0,277.0020446777343,0.637718423578712,10.998945344161125,69.46979574102357,4.5031308409529425,19.22817130569276,-0.056156826594968116,0,0,4806.3164952803945,0.1844107426763875,0.004446572546536724,0.0077232726,0,0,0,0 +1879,0.1931754383145236,0.6786152944896107,0,0,2.9292586401809286,3.3536301149676245e-4,3.234746e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810868,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88028,0,457.00000254313153,4264.8396,866.2831624348958,65.90279841258594,289.2210006713867,440.8517590737373,0,0,0,0,0,0,0,0,0,0,0,0,5.285859742798493e-6,5.474183400000002e-6,0,0,0,0,2.920316595312518e-4,4.9092116e-4,0,0,0,0,277.1330490112304,0.6589267771109586,11.181505690638433,70.08572001647862,4.44715839638976,19.487315389320713,-0.05726935330644314,0,0,5054.634872921024,0.18865930412898813,0.004446572546536724,0.0077232726,0,0,0,0 +1880,0.2193400047887077,0.6848574235612915,0,0,2.921172062464678,3.4916867055774975e-4,3.2855365e-4,0.025000428936133783,0.024856862,34.05069955190023,0.010810144,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88174,0,457.00000254313153,4264.9162,868.6961059570311,66.66498430210106,289.4699986775716,437.365727538686,0,0,0,0,0,0,0,0,0,0,0,0,5.3318237860366935e-6,5.5101807e-6,0,0,0,0,2.9457106817668927e-4,4.9497652e-4,0,0,0,0,277.26505025227857,0.6727777764677255,11.210570347061365,69.18788119083449,4.386751757292326,19.32682128004249,-0.05838188001791818,0,0,5476.691840909654,0.15238702978073307,0.004446572546536724,0.0077232726,0,0,0,0 +1881,0.2252231799496281,0.7226262033549594,0,0,2.9628772256083247,3.6318877634281915e-4,3.3377873e-4,0.025000428936133783,0.024856862,34.05069955190023,0.011551088,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92914,0,457.00000254313153,4267.4079,870.9841257731118,67.70670094788971,289.7369969685872,440.9737248225101,0,0,0,0,0,0,0,0,0,0,0,0,5.377787829274894e-6,5.5502216e-6,0,0,0,0,2.9711047197148827e-4,4.9949792e-4,0,0,0,0,277.37404123942054,0.6806367037591056,11.274748464221961,69.70896888997471,4.531822010702024,19.327166243417963,-0.059494406729393226,0,0,5655.562652963553,0.14804251864424234,0.004446572546536724,0.0077232726,0,0,0,0 +1882,0.23694899687620047,0.6743786080130141,0,0,2.9443458510058322,3.774296346819028e-4,3.3915105e-4,0.025000428936133783,0.024856862,34.05080000559489,0.011550379,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92759,0,457.00000254313153,4267.3266,873.2501373291014,68.57787523920716,290.0190022786458,436.0786301154982,0,0,0,0,0,0,0,0,0,0,0,0,5.423751872513094e-6,5.585991e-6,0,0,0,0,2.9964987819160643e-4,5.035270200000001e-4,0,0,0,0,277.4860509236653,0.6892556813322581,11.343220962302505,68.75016748711803,4.409841205149023,19.158162285322444,-0.06060693344086825,0,0,5878.580768497191,0.1874362016564929,0.004446572546536724,0.0077232726,0,0,0,0 +1883,0.25089467695775003,0.6814540279475114,0,0,2.918084088079926,3.918974956225914e-4,3.4467464999999995e-4,0.025000428936133783,0.024856862,34.05090045928955,0.010810957,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95902,0,457.00000254313153,4268.979,875.6031494140624,69.18597910133236,290.26300048828125,428.22120343049505,0,0,0,0,0,0,0,0,0,0,0,0,5.469715915751294e-6,5.6247084000000005e-6,0,0,0,0,3.021892868370439e-4,5.0789587e-4,0,0,0,0,277.5910491943359,0.6958725524070566,11.301072778092927,67.06254475755776,4.3447075949809335,18.709361365312684,-0.06171946015234329,0,0,6136.7508152909495,-0.3245940535795368,0.004446572546536724,0.0077232726,0,0,0,0 +1884,0.2528499020827967,0.6846835417141454,0,0,2.9781587398376455,4.065987474556702e-4,3.503391000000001e-4,0.025000428936133783,0.024856862,34.05100059509277,0.010810972,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93535,0,457.00000254313153,4267.7345,878.1482035319009,70.48060514662333,290.5119984944661,436.5183491794865,0,0,0,0,0,0,0,0,0,0,0,0,5.515679921093882e-6,5.6585019e-6,0,0,0,0,3.047286906318429e-4,5.1169724e-4,0,0,0,0,277.69505055745435,0.7016904496772703,11.463778568830996,68.59402326244992,4.507763748192013,19.009889976177178,-0.06283198686381833,0,0,6243.347604744989,-1.8150618607595548,0.004446572546536724,0.0077232726,0,0,0,0 +1885,0.25444299147687327,0.6908637814371342,0,0,2.987658653242268,4.215400040266104e-4,3.5614909e-4,0.025000428936133783,0.024856862,34.05099964141846,0.011550438,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93798,0,457.00000254313153,4267.8727,881.0251312255858,71.60546241341835,290.7969970703125,438.1415385380004,0,0,0,0,0,0,0,0,0,0,0,0,5.561643547480344e-6,5.6946520999999985e-6,0,0,0,0,3.0726809200132266e-4,5.1577023e-4,0,0,0,0,277.79504903157545,0.7078908709316327,11.603153567015962,68.94977818435397,4.492846370676968,19.20686906057728,-0.06394451357529336,0,0,6294.938313202323,-0.6420197136906102,0.004446572546536724,0.0077232726,0,0,0,0 +1886,0.25832612706643443,0.6919349119161695,0,0,3.0001483762763606,4.3672676110873e-4,3.621046e-4,0.025000428936133783,0.024856862,34.05110009511312,0.011550467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9357,0,457.00000254313153,4267.7531,883.8392181396483,72.58254388217381,291.09999593098956,437.73332685492454,0,0,0,0,0,0,0,0,0,0,0,0,5.607607590718544e-6,5.7303567999999985e-6,0,0,0,0,3.0980750307207927e-4,5.1979186e-4,0,0,0,0,277.8850479125976,0.7126327786706089,11.675797474801131,68.86926284379062,4.534738954197774,19.067819582095456,-0.06519373004483152,0,0,6353.02729378205,-0.0852453820278208,0.004446572546536724,0.0077232726,0,0,0,0 +1887,0.27097332569304644,0.6918854634202647,0,0,3.0445900747103636,4.521660230238922e-4,3.6821147e-4,0.025000428936133783,0.024856862,34.05120054880778,0.011550497,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94903,0,457.00000254313153,4268.4538,886.933135986328,73.77743063310328,291.4139989217122,443.10773813765155,0,0,0,0,0,0,0,0,0,0,0,0,5.653571633956744e-6,5.7675003e-6,0,0,0,0,3.1234690686687827e-4,5.2397934e-4,0,0,0,0,277.99504597981763,0.7182166601192096,11.825655230740924,69.79403942185417,4.618994873829845,19.328453638145426,-0.06654164466411291,0,0,6605.766964967214,-0.025019474885791315,0.004446572546536724,0.0077232726,0,0,0,0 +1888,0.2990240690559838,0.6915397836551626,0,0,3.1234840519185503,4.6786327826945734e-4,3.7446389e-4,0.025000428936133783,0.024856862,34.051300366719566,0.011550526,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91459,0,457.00000254313153,4266.6433,889.9262135823567,75.11035553057255,291.76300048828125,452.50230797053916,0,0,0,0,0,0,0,0,0,0,0,0,5.699535677194945e-6,5.8002124e-6,0,0,0,0,3.1488631066167727e-4,5.2765607e-4,0,0,0,0,278.08005015055335,0.724224234516275,12.041623292379388,71.4272374400245,4.7418969174520385,19.785746426186453,-0.06788955928339427,0,0,7182.264808724919,0.13500730253153945,0.004446572546536724,0.0077232726,0,0,0,0 +1889,0.2993958898436063,0.6910492076322109,0,0,3.104668337723354,4.838260307830448e-4,3.8086186e-4,0.025000428936133783,0.024856862,34.05139986673991,0.011550556000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95877,0,457.00000254313153,4268.9657,893.1561584472655,75.9296001940716,292.1130015055339,448.69086963270234,0,0,0,0,0,0,0,0,0,0,0,0,5.745499720433145e-6,5.840258e-6,0,0,0,0,3.174257217324339e-4,5.3217801e-4,0,0,0,0,278.191047668457,0.730764111829077,12.075327913087893,70.65718771639492,4.727164288354711,19.55277705492912,-0.06923747390267565,0,0,7178.592239188243,0.1858189092422608,0.004446572546536724,0.0077232726,0,0,0,0 +1890,0.32528597028265194,0.6877629398180971,0,0,3.159194948993984,5.000592888488123e-4,3.8741134e-4,0.025000428936133783,0.024856862,34.05150000254313,0.011550586000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9317,0,457.00000254313153,4267.5425,896.3831837972004,77.07862319106741,292.45799763997394,453.89903232867,0,0,0,0,0,0,0,0,0,0,0,0,5.791463763671345e-6,5.8736235e-6,0,0,0,0,3.199651255272329e-4,5.359300400000001e-4,0,0,0,0,278.2730509440104,0.7556615541830685,12.221880708940976,71.47659716602703,4.8079166884923445,19.778064862780106,-0.07058538852195702,0,0,7728.431301023277,0.07030158718899164,0.004446572546536724,0.0077232726,0,0,0,0 +1891,0.34045390881796567,0.6844114067588241,0,0,3.125180696005549,5.165705564043795e-4,3.9410043e-4,0.025000428936133783,0.024856862,34.051600774129234,0.011550615,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97344,0,457.00000254313153,4269.7366,899.666264851888,77.68229292407419,292.8159993489583,444.382731801162,0,0,0,0,0,0,0,0,0,0,0,0,5.837427806909545e-6,5.9135147000000014e-06,0,0,0,0,3.225045293220319e-4,5.4043419e-4,0,0,0,0,278.34705098470045,0.7669960073050373,12.159640198474342,69.53172190504567,4.743306066350147,19.199673026982396,-0.0719333031412384,0,0,8025.900172756182,-0.1023137574833239,0.004446572546536724,0.0077232726,0,0,0,0 +1892,0.3429460922092071,0.698931319975308,0,0,3.1105283647598623,5.333653001192337e-4,4.0093536e-4,0.025000428936133783,0.024856862,34.05169995625814,0.011550645,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99082,0,457.00000254313153,4270.6504,903.534194946289,78.54558088981553,293.16699981689453,439.8086590465999,0,0,0,0,0,0,0,0,0,0,0,0,5.8833918501477456e-6,5.951126000000002e-6,0,0,0,0,3.250439355421501e-4,5.446755599999999e-4,0,0,0,0,278.44204457600904,0.77827246793364,12.199146519671457,68.66391958974123,4.69568230481039,18.949521757077395,-0.07328121776051978,0,0,8166.143155148587,0.07763085595364166,0.004446572546536724,0.0077232726,0,0,0,0 +1893,0.3378703897546753,0.6997131247828723,0,0,3.1254308946941567,5.504500586539507e-4,4.079215e-4,0.025000428936133783,0.024856862,34.05179977416992,0.012290126,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97993999999998,0,457.00000254313153,4270.0783,907.2741190592446,79.81501328862245,293.4769999186198,443.3506557921903,0,0,0,0,0,0,0,0,0,0,0,0,5.929355893385946e-6,5.986023799999998e-6,0,0,0,0,3.275833417622683e-4,5.4860421e-4,0,0,0,0,278.55404917399085,0.7897298228538592,12.379453862745622,69.48705801909811,4.715239732570137,19.178456201207396,-0.07462913237980115,0,0,8120.644734612286,0.1864156024276895,0.004446572546536724,0.0077232726,0,0,0,0 +1894,0.35112450392061667,0.7155813956083555,0,0,3.205110617860807,5.678308225469664e-4,4.1505353e-4,0.025000428936133783,0.024856862,34.051900227864586,0.01229017,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5063,910.4781341552733,81.38345626276687,293.7909978230794,456.69603250902094,0,0,0,0,0,0,0,0,0,0,0,0,5.975319936624146e-6,6.017190099999998e-6,0,0,0,0,3.301227455570673e-4,5.5210279e-4,0,0,0,0,278.6890487670898,0.8020046367832572,12.66238559332695,71.90804380664727,4.8889485381651845,19.8361284777738,-0.07597704699908253,0,0,8411.388473243653,0.19284299907478186,0.004446572546536724,0.0077232726,0,0,0,0 +1895,0.37171203675260484,0.7209450963563064,0,0,3.216163844950097,5.855145864188671e-4,4.2233098e-4,0.025000428936133783,0.024856862,34.05209986368815,0.011550763,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4251,913.2259826660155,82.23116014335764,294.0789972941081,453.5518850499526,0,0,0,0,0,0,0,0,0,0,0,0,6.0212835251149954e-6,6.056690099999998e-6,0,0,0,0,3.326621542025047e-4,5.5656184e-4,0,0,0,0,278.83104960123694,0.8128876331059834,12.672444225617587,71.15178658195539,4.91917125426521,19.522500482390267,-0.07728033747142447,0,0,8846.667009900264,0.1930910447676056,0.004446572546536724,0.0077232726,0,0,0,0 +1896,0.38367481768429307,0.7234407884813598,0,0,3.170768746502162,6.03506836341694e-4,4.2976003e-4,0.025000428936133783,0.024856862,34.05219968159994,0.012290244,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4252,914.7710927327473,83.00005426186281,294.36499786376953,444.0944277814877,0,0,0,0,0,0,0,0,0,0,0,0,6.067247568353196e-6,6.0926241e-6,0,0,0,0,3.352015604226229e-4,5.606100700000001e-4,0,0,0,0,278.9390513102213,0.824102858385605,12.720593693458584,69.42267705803128,4.733994615392683,19.177287716924887,-0.07856237646782513,0,0,9089.59843267371,0.19318346141929987,0.004446572546536724,0.0077232726,0,0,0,0 +1897,0.4019811637589425,0.725878270524141,0,0,3.2687021119074915,6.218145863385871e-4,4.373290900000001e-4,0.025000428936133783,0.024856862,34.052300453186035,0.012290288,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99693,0,457.00000254313153,4270.9718,916.2742818196614,84.39253635318506,294.64599863688153,456.4122054736632,0,0,0,0,0,0,0,0,0,0,0,0,6.113211611591396e-6,6.1314997000000015e-6,0,0,0,0,3.377409642174219e-4,5.6499701e-4,0,0,0,0,279.051045735677,0.8346371271895597,12.890217099416494,71.54673250412924,5.026760132357157,19.58218287923395,-0.07984441546422576,0,0,9520.393854224154,0.19322441190367687,0.004446572546536724,0.0077232726,0,0,0,0 +1898,0.4233042102069517,0.728376569617105,0,0,3.2968702587691077,6.404438560518125e-4,4.4504943e-4,0.025000428936133783,0.02485618,34.052499771118164,0.012290333,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01512,0,457.00000254313153,4271.9281,919.0172271728514,85.36127162189973,294.95399983723956,456.6037673563168,0,0,0,0,0,0,0,0,0,0,0,0,6.159175654829596e-6,6.1692876e-6,0,0,0,0,3.402803704375401e-4,5.692587400000001e-4,0,0,0,0,279.1630477905273,0.8443053161523663,12.959068227762758,71.45665951589594,5.0980295350528255,19.501681112942983,-0.0811264544606264,0,0,10010.09583228873,0.19324438193560026,0.004446572546536724,0.0077232356,0,0,0,0 +1899,0.46331719155147416,0.7285561578617307,0,0,3.35583134512378,6.594006069159756e-4,4.856732599999999e-4,0.025000428936133783,0.024857703,34.05260022481283,0.012290377,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97653,0,457.00000254313153,4269.8993,922.2811838785806,86.70543386559314,295.2999979654948,462.1035993919434,0,0,0,0,0,0,0,0,0,0,0,0,6.205139698067796e-6,6.2013454e-6,0,0,0,0,3.4281977665765834e-4,5.7286006e-4,0,0,0,0,279.3080469767252,0.8537833662798698,13.20706844128895,72.46072255843502,5.09497938372201,19.868709929010027,-0.08240849345702704,0,0,10838.113453916734,0.1932520396033143,0.004446572546536724,0.0077232334,0,0,0,0 +1900,0.4881558617748878,0.7305723603784592,0,0,3.3618210367956025,6.786918675061315e-4,0.0023926675,0.025000376626849174,0.024856437,34.052798906962074,0.028558348,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98481,0,457.00000254313153,4270.3344,925.5521138509114,87.61328845020651,295.6749954223633,459.5444668504325,0,0,0,0,0,0,0,0,0,0,0,0,6.251103741305997e-6,6.2381326e-6,0,0,0,0,3.4535918045245734e-4,5.770064599999999e-4,0,0,0,0,279.4540481567382,0.8631696543463733,13.276669554810011,71.90656631461616,5.089168388032589,19.750787925178965,-0.08385968995663869,0,0,11348.727499729994,0.19324967713848945,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1901,0.5044857194846931,0.7969063127701378,0,0,3.3829529353801377,7.011479125746215e-4,0.0048200969,0.025000494594375294,0.024857442,34.05289999643961,0.047784449000000014,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04131,0,457.00000254313153,4273.3046,928.800333658854,88.39116711070807,296.0069986979167,457.6168305058551,0,0,0,0,0,0,0,0,0,0,0,0,6.297067784544197e-6,6.2798935e-6,0,0,0,0,3.478985866725755e-4,5.817261e-4,0,0,0,0,279.613047281901,0.8714059588722426,13.301409901434221,71.63263161162581,5.20214413763188,19.48762216724768,-0.08579737819029178,0,0,11775.255202668699,0.1931616844954455,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1902,0.5193451170981727,0.800278636367018,0,0,3.3815414695884436,8.848810005777826e-4,0.0057781223,0.025000344030559063,0.024856062,34.055300076802574,0.050743008,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04898,0,457.00000254313153,4273.708,932.7311604817708,89.26282464192792,296.3249994913737,455.02617682462983,0,0,0,0,0,0,0,0,0,0,0,0,6.343031827782397e-6,6.316678900000002e-6,0,0,0,0,3.5043799531801295e-4,5.858722900000001e-4,0,0,0,0,279.8610509236653,0.8812154472523583,13.412488026584588,71.24149846316587,5.179688036784444,19.35806149893677,-0.08773506642394488,0,0,12100.548766402842,0.09059743996435048,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1903,0.5664546211178523,0.8295711459044773,0,0,3.389386332354358,0.001116641176243623,0.0069576127,0.025000539453079302,0.024857979,34.05799961090088,0.05591998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09555,0,457.00000254313153,4276.1561,936.7834269205728,89.89074056747505,296.65399678548175,449.9625304110428,0,0,0,0,0,0,0,0,0,0,0,0,6.388995871020597e-6,6.3575352999999986e-6,0,0,0,0,3.5297739911281195e-4,5.9048768e-4,0,0,0,0,280.15604146321607,0.890660734283567,13.437520518020643,70.25376393283156,5.1901034578968455,19.030597877588104,-0.08967275465759794,0,0,13044.158155518342,-0.7087274740337839,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1904,0.5751521325099065,0.856100074253587,0,0,3.4640582999698033,0.0013829462016777445,0.0094363385,0.02500028194238742,0.024855289,34.06080023447672,0.068491568,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07939,0,457.00000254313153,4275.3063,942.1142679850259,91.35674942842638,296.95399475097656,462.6217650299278,0,0,0,0,0,0,0,0,0,0,0,0,6.434959914258798e-6,6.3918668e-6,0,0,0,0,3.555168053329301e-4,5.9435105e-4,0,0,0,0,280.43204243977857,0.900998671506556,13.731471700844033,72.88437625246438,5.400226562773813,19.656119727265345,-0.09161044289125103,0,0,13274.437189098227,-0.26430883974577096,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1905,0.6122962467973883,0.8830904178747726,0,0,3.525334738078169,0.0017163676869434614,0.013412831000000002,0.02500062497953574,0.024859105,34.06420008341471,0.087718467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08907,0,457.00000254313153,4275.8152,947.4432729085286,92.40132432209919,297.28899637858075,467.44012883738543,0,0,0,0,0,0,0,0,0,0,0,0,6.480923502749647e-6,6.4289102e-6,0,0,0,0,3.5805621155304834e-4,5.985269799999999e-4,0,0,0,0,280.7050450642903,0.911796750677243,13.855105466247057,73.70973521692333,5.570897783797489,19.752967156958555,-0.09354813112490414,0,0,14100.978379035863,0.07758312468608113,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1906,0.6442763573284219,0.9139458953081726,0,0,3.549324480388693,0.0021963609227289758,0.018196454,0.02500016087045272,0.024853655,34.068699518839516,0.11138246,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10645,0,457.00000254313153,4276.7286,953.0924224853514,93.2499831638467,297.66199747721356,466.4356478967891,0,0,0,0,0,0,0,0,0,0,0,0,6.526887545987847e-6,6.466788299999998e-6,0,0,0,0,3.6059561534784734e-4,6.027991099999999e-4,0,0,0,0,280.9800465901692,0.9228643088832689,13.959645369835703,73.46173851221981,5.607842106776347,19.60693136091458,-0.09545551104287764,0,0,14766.450119103303,0.17494042863794804,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1907,0.726915977115476,0.9229970275040732,0,0,3.6744573684699935,0.002872606390155852,0.016966195,0.025000798360755045,0.025812945,34.074700037638344,0.10398923,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14627,0,457.00000254313153,4278.822,959.1561177571614,94.5608019449233,298.0979944864909,480.31745635776645,0,0,0,0,0,0,0,0,0,0,0,0,6.5728515892260475e-6,6.507102e-6,0,0,0,0,3.6313501914264634e-4,6.0735196e-4,0,0,0,0,281.2760442097981,0.9335570189055034,14.216774986296493,76.00444514305916,5.925751520425966,20.144490748304303,-0.09692403030316216,0,0,16264.987209463294,0.062031619541395626,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1908,0.7032325912946371,0.932378464388443,0,0,3.675876640379726,0.0037649905619521937,0.021404879,0.02499991360430916,0.029231937000000006,34.08239936828613,0.12765503,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12414,0,457.00000254313153,4277.6586,964.0852966308593,95.71237193404865,298.5179901123047,482.5826340091374,0,0,0,0,0,0,0,0,0,0,0,0,6.618815632464248e-6,6.5407783e-6,0,0,0,0,3.6567443021340296e-4,6.111398000000001e-4,0,0,0,0,281.61104329427076,0.9439781461374255,14.407422860628587,76.85623799627187,5.975251674338594,20.34218954572492,-0.09839254956344667,0,0,15590.713118515627,0.12577421060954422,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1909,0.7293531000033262,0.9394639872302616,0,0,3.6900486620571034,0.004334990129185219,0.036714367000000005,0.02507337733792762,0.7650859999999999,34.087400118509926,0.21121463,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.16533,0,457.00000254313153,4279.8240000000005,969.3983662923176,96.46669460330283,298.93599192301434,480.68946878632124,0,0,0,0,0,0,0,0,0,0,0,0,6.664779675702448e-6,6.5813135e-6,0,0,0,0,3.6821383400820196e-4,6.1571818e-4,0,0,0,0,281.95004526774085,0.9541466929230623,14.465734280062996,76.44087709943787,6.04171533179017,20.1096713132971,-0.0998610688237312,0,0,16371.00547137995,0.1917775514880681,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1910,0.765726394850593,0.9455920872078338,0,0,3.7676081069530625,0.005609989515505731,0.042342327,0.02532928188641866,1.0366888,34.098299980163574,0.24301505,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14442,0,457.00000254313153,4278.7248,974.7870890299478,97.77187102780431,299.37699635823566,491.4713622185322,0,0,0,0,0,0,0,0,0,0,0,0,6.710743718940648e-6,6.615104700000002e-6,0,0,0,0,3.7075323780300096e-4,6.1951928e-4,0,0,0,0,282.3140436808268,0.9648675091710838,14.7306044680131,78.48124342715315,6.22524154290356,20.602328395865626,-0.10126503542660648,0,0,17123.070519811292,0.19159019115572065,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1911,0.7810146544824405,0.8874036750204771,0,0,3.725917531952306,0.007499988889321685,0.047217079,0.0812472328543663,0.55672031,34.11459986368815,0.27037941,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.20214,0,457.00000254313153,4281.7592,979.4653218587239,98.4293811567004,299.82899220784503,482.3736483687901,0,0,0,0,0,0,0,0,0,0,0,0,6.7567077621788485e-6,6.6575406e-6,0,0,0,0,3.7329264887375757e-4,6.2431671e-4,0,0,0,0,282.72104136149085,0.9761720065989483,14.679374542895259,76.73370568501319,6.205453710840906,20.007607425742776,-0.10240012153911617,0,0,17244.1854917937,0.1913996219514424,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1912,0.8199661913672125,0.8508398703003752,0,0,3.7091004678175183,0.009259988398601612,0.055977137,0.10000008965531985,1.3372385,34.12980047861735,0.31844894,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.23472,0,457.00000254313153,4283.4718,983.6058603922525,99.26614632335712,300.3529917399089,477.9889214580395,0,0,0,0,0,0,0,0,0,0,0,0,6.802671805417049e-6,6.6972695e-6,0,0,0,0,3.7583205024323735e-4,6.288021400000001e-4,0,0,0,0,283.01904296874994,0.9924203303369911,14.713664798160675,75.8316081908469,6.21946391056852,19.680892428681513,-0.10353520765162587,0,0,17989.19691090075,-0.2483084466661772,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1913,0.889533970104308,0.8203484804069425,0,0,3.787939036045986,0.011569987594460448,0.05934571,0.11666701609889667,2.7874772,34.1497999827067,0.33694139,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.25437,0,457.00000254313153,4284.5046,986.2423197428384,100.61255837319116,300.9099934895833,488.2676034939648,0,0,0,0,0,0,0,0,0,0,0,0,6.848635848655249e-6,6.7356009000000015e-6,0,0,0,0,3.7837145403803635e-4,6.3312652e-4,0,0,0,0,283.3620402018229,1.0114400974128448,14.921807646192061,77.57996159883326,6.453879619764709,20.00732869050688,-0.10467029376413556,0,0,19072.753187289316,-0.30943169229472783,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1914,0.8114913689780275,0.8092045045442162,0,0,3.764418792127778,0.014084987109526992,0.064801984000000007,0.19333053504427275,4.5655912,34.17150020599365,0.36726542,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.19867,0,457.00000254313153,4281.5767,988.610880533854,102.28405865111169,301.4189910888672,494.4978826289548,0,0,0,0,0,0,0,0,0,0,0,0,6.894599891893449e-6,6.765480200000002e-6,0,0,0,0,3.809108626834738e-4,6.3647677e-4,0,0,0,0,283.71604156494135,1.0321295138459616,15.241497455163927,79.77807342879137,6.499176732511072,20.59248108677444,-0.10580537987664523,0,0,17594.434057832063,0.020398445252377703,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1915,0.8029916592535993,0.7974019582591167,0,0,3.7223377832742996,0.016684986495723326,0.08400062900000001,0.31655970215797424,6.2098372,34.193999926249184,0.47153519,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.2716,0,457.00000254313153,4285.4105,991.4610799153645,103.0579197466507,301.9369888305664,484.24768488469795,0,0,0,0,0,0,0,0,0,0,0,0,6.9405635182799115e-6,6.8098518e-6,0,0,0,0,3.8345026890359196e-4,6.4149729e-4,0,0,0,0,284.04704284667963,1.0546195831794383,15.232131029774814,78.35040062356745,6.4827720725927875,20.061424577974346,-0.10694046598915492,0,0,17573.116044207876,0.1641375391623491,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1916,0.8653307900276433,0.7997102256366486,0,0,3.744207068777381,0.019669986019531887,0.10465075,0.5206524853905042,5.9968917,34.21979999542236,0.58467971,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.29863,0,457.00000254313153,4286.831,998.4538218180337,104.08894352066241,302.48498789469403,482.95426600786,0,0,0,0,0,0,0,0,0,0,0,0,6.986527523622499e-6,6.8490958e-6,0,0,0,0,3.8598967269839096e-4,6.4592684e-4,0,0,0,0,284.31204223632807,1.077791381611315,15.342847178146304,78.27985154770643,6.60168085846147,19.908298607149394,-0.1080755521016646,0,0,19065.484279863696,0.18922175763831675,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1917,0.896621584801294,0.8027455741063269,0,0,3.8263968555995858,0.02392498527963956,0.11034348,0.7563406427701315,5.1585271,34.2564001083374,0.61870744,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.37275,0,457.00000254313153,4290.7275,1003.5705515543618,105.4397414501963,303.01098887125653,492.9600447524987,0,0,0,0,0,0,0,0,0,0,0,0,7.032491566860699e-6,6.8937875e-6,0,0,0,0,3.885290813438284e-4,6.509842700000001e-4,0,0,0,0,284.6150461832682,1.1002556131310455,15.500365004779491,80.4548180697849,7.003710361287698,20.17756104011222,-0.10921063821417433,0,0,19906.998931884555,0.19018318847478569,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1918,0.8873955587039598,0.8060358496732685,0,0,3.8305973797130326,0.02868998423218727,0.10461425,0.9276737372080485,4.2721672,34.29749997456869,0.58914082,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.37311,0,457.00000254313153,4290.7462,1010.1304473876952,106.74593160054405,303.44898732503253,496.242073076373,0,0,0,0,0,0,0,0,0,0,0,0,7.078455610098899e-6,6.9300659e-6,0,0,0,0,3.910684875639466e-4,6.550720200000001e-4,0,0,0,0,284.80504862467444,1.1212267086350811,15.704391027274072,81.61294813978053,7.118191256260811,20.368951576880015,-0.110345724326684,0,0,19743.244967391554,0.1899763122778872,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1919,0.7808604024397078,0.8111591475979437,0,0,3.7226411346821937,0.03343498365332683,0.10155164,1.0843643546104431,3.196035,34.338699658711754,0.57214502,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.33647,0,457.00000254313153,4288.8202,1017.6303660074868,108.09510704377881,303.8139877319336,490.9794171167238,0,0,0,0,0,0,0,0,0,0,0,0,7.1244196533371e-6,6.962042700000002e-6,0,0,0,0,3.936078889334264e-4,6.5866401e-4,0,0,0,0,284.85105133056635,1.1402334776582428,15.915652713498652,81.67724386438958,6.926922672741556,20.368638212598857,-0.1115197148188522,0,0,16994.786869895725,0.18976010178406924,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1920,0.9030601007400624,0.8135184546759534,0,0,3.8130101207834444,0.03770498279482126,0.071874804,1.176037738720576,4.0059497,34.375800132751465,0.41169313,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.40157,0,457.00000254313153,4292.2427,1025.0703277587888,109.13363853305731,304.24598693847656,498.87459987539705,0,0,0,0,0,0,0,0,0,0,0,0,7.1703836965753e-6,7.0058716e-6,0,0,0,0,3.961472951535446e-4,6.636221499999999e-4,0,0,0,0,284.9290440877278,1.157633764648187,16.036656139503478,82.96992111207,7.3188151464881575,20.402395098799328,-0.11278881532908334,0,0,18802.69892302283,0.18954070686553806,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1921,0.7938358638145999,0.8612993334837397,0,0,3.661222702405219,0.042184981517493725,0.05599481,1.241669515768687,6.3575754999999985,34.4146998723348,0.32444592,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.42979,0,457.00000254313153,4293.7261,1032.2003377278643,109.80934796264431,304.59998830159503,486.6136241874396,0,0,0,0,0,0,0,0,0,0,0,0,7.2163477398135e-6,7.045455500000001e-6,0,0,0,0,3.98686703798982e-4,6.6809072e-4,0,0,0,0,285.0390421549479,1.173417684573443,16.01016129774032,81.18725519244387,7.146950074087312,19.846108774902355,-0.11405791583931453,0,0,16049.705932221917,0.1893181118062252,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1922,0.8438966628298804,0.8533692042065284,0,0,3.6583337227642674,0.04389498041321834,0.10093674,1.3888855278491974,7.5196689,34.43010012308756,0.56921203,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.47367,0,457.00000254313153,4296.0327,1039.1002502441404,110.48581040150992,304.9449818929036,484.8273418444006,0,0,0,0,0,0,0,0,0,0,0,0,7.2623117830517e-6,7.0869364000000015e-6,0,0,0,0,4.01226107593781e-4,6.7277807e-4,0,0,0,0,285.17004903157545,1.188779371830489,16.07300912106922,80.53069430512947,7.252038815173717,19.474278395734512,-0.11532701634954567,0,0,16950.895997894484,0.0877045766097048,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1923,0.9595590008888546,0.8614844099618343,0,0,3.8812462099992877,0.04700497972468535,0.13753371,1.6249915957450867,8.1995609,34.45719941457113,0.77479139,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.54539,0,457.00000254313153,4299.8026,1045.1300659179685,112.25356413194692,305.27098337809247,514.2343951443905,0,0,0,0,0,0,0,0,0,0,0,0,7.308275826289901e-6,7.131803e-6,0,0,0,0,4.037655138138992e-4,6.7785565e-4,0,0,0,0,285.46704101562494,1.205120977529758,16.469305300306814,86.27583424473677,8.013836332456805,20.417825208931507,-0.11659611685977685,0,0,19723.672024100037,0.12093783396952988,0.004446569985399644,0.007723268,0,0,0,0 +1924,0.9703594405113312,0.8676633311171565,0,0,3.7748090158825875,0.052589978401859604,0.14595489,1.8459543486436207,10.064032,34.50569979349772,0.82730698,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.55899,0,457.00000254313153,4300.5175,1049.450032552083,112.63350596587964,305.62998453776044,499.0974143950571,0,0,0,0,0,0,0,0,0,0,0,0,7.354239869528101e-6,7.169801200000001e-6,0,0,0,0,4.0630492245933664e-4,6.8214162e-4,0,0,0,0,285.6050491333007,1.2222190421891945,16.415647771084632,83.21123114220697,7.790296571572385,19.77882376042076,-0.117865217370008,0,0,19521.89407498274,0.18863121099961191,0.004446569946594536,0.0077232683,0,0,0,0 +1925,0.9836991206856317,0.8708471713839661,0,0,3.7906069821644643,0.05885497791071733,0.15281139,2.1164215207099915,9.887985,34.5605993270874,0.86947278,0,0,0,0,0,0,0,0,0,0,5.299997687339783,105.60265,0,457.00000254313153,4302.8128,1052.159952799479,113.6704269189651,305.81298065185547,502.6957687586778,0,0,0,0,0,0,0,0,0,0,0,0,7.400203495914563e-6,7.2114506e-6,0,0,0,0,4.0884432625413564e-4,6.8684841e-4,0,0,0,0,285.6520512898762,1.2377911006225208,16.841681561106117,84.06174423454924,7.983263811925956,19.753454837168906,-0.11913431788023915,0,0,19738.889839322743,0.18839574168627352,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1926,0.9711936637110966,0.8752881607638067,0,0,3.724383638277895,0.06516497613241275,0.16877181,2.460367262363434,10.020584,34.616199811299644,0.96266008,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.65209,0,457.00000254313153,4305.4116,1053.600107828776,114.54563027246535,305.9539845784505,499.041820374083,0,0,0,0,0,0,0,0,0,0,0,0,7.4461675012571504e-6,7.2538666e-6,0,0,0,0,4.1138373004893464e-4,6.9164354e-4,0,0,0,0,285.69204711914057,1.2526121062865871,17.14732507530922,84.16877083488303,8.057166101708676,19.573020111236303,-0.12040341839047032,0,0,19808.91323463674,0.18815706175477445,0.0044465700242047506,0.0077232683,0,0,0,0 +1927,1.0719822978926645,0.9148152429216062,0,0,3.8503573823854342,0.0720199750115474,0.19366311,2.6942857106526694,13.691728,34.67679913838705,1.1076116000000005,0,0,0,0,0,0,0,0,0,0,5.299997607866923,105.65063,0,457.00000254313153,4305.3352,1055.770568847656,115.74747998347533,306.17698669433594,515.0910883833536,0,0,0,0,0,0,0,0,0,0,0,0,7.492131544495351e-6,7.290134400000002e-6,0,0.0049450274,0,0,4.1392313869437203e-4,6.9573008e-4,0,0,0,0,285.7400512695312,1.2667652835613548,17.432321744004053,86.52753524964037,8.499773806732605,19.875509864662817,-0.12167251890070148,0,0,21139.782286868525,0.187915087386083,0.004446569985399644,0.0077232677,0,0,0,0 +1928,1.0761742979146,0.9182619073884535,0,0,3.828134931557229,0.07970497260491054,0.21328049999999998,3.02649054924647,16.914307,34.74499924977621,1.2252077,0,0.020814729,0,0,0,0,0,0,0,0,5.2999982436498,105.59392,0,457.00000254313153,4302.3537,1060.6403605143228,116.7958666079441,306.3289794921875,515.8400889336957,0,0,0,0,0,0,0,0,0,0,0,0,7.538095587733551e-6,7.3196023e-6,0,0.030139896,0,0,4.1646254248917103e-4,6.990328999999999e-4,0,0,0,0,285.83304850260413,1.2797850846246124,17.62700284771002,87.11586336850812,8.569023694913732,19.91593076109437,-0.12294161941093265,0,0,21065.047460560574,0.16326849505962074,0.004446569985399644,0.007723269,0,0,0,0 +1929,1.1569513873862218,0.945536477224549,0,0,3.8902159937355303,0.08870497221748035,0.20802541,3.517713646094004,19.38339,34.825199127197266,1.2037865,0,0.33502494,0,0,0,0,0,0,0,0,5.299996972084045,105.60372,0,457.00000254313153,4297.9849,1066.6603291829424,118.01999771578741,306.49498748779297,527.0535755087527,0,0,0,0,0,0,0,0,0,0,0,0,7.584059630971751e-6,7.3457199e-6,8.387752144093005e-4,0.003329301,0,0,4.1900194628397003e-4,7.019496099999999e-4,0,0,0,0,285.8910522460937,1.290827581649255,17.867272783472913,89.37670246877072,8.894481947800461,20.274973944467554,-0.1242107199211638,0,0,22402.21951573089,0.008459436299327926,0.004446569946594536,0.007723266199999999,0,0,0,0 +1930,1.0728864782722383,1.0228008835417055,0,0,3.9076228058376485,0.0980799701064825,0.17035764,4.063463946183522,20.571834,34.909299532572426,0.99750344,0.001314997343191256,1.1701026,0,0,0,0,0,0,0,0,5.299998998641968,105.91828999999998,0,457,4287.8382,1072.6401163736978,119.67017881003574,306.6199773152669,535.0349028180784,0,0,0,0,0,0,0,0,0,0,0,0,7.630023560523114e-6,7.3580297999999985e-6,0.00510867650154978,-0.026051043,0,0,4.2154135735472664e-4,7.0327493e-4,0,0,0,0,285.9380518595377,1.3003703550961545,18.10997615018731,91.59573862667055,8.841770878325681,20.952388588675653,-0.12547982156900256,0,0,20792.33985686783,0.17991195822791398,0.004446570101814966,0.0077232725,0,0,0,0 +1931,0.9686717262631225,1.0331302905231323,0,0,3.699193086333459,0.10662497021257877,0.11326202,4.702978173891704,21.232329,34.9865992863973,0.6766021,0.021151568042114377,1.6600328999999998,0,0,0,0,0,0,0,0,5.3066509167353315,106.6887,0,457.000005086263,4282.6938,1077.4902242024737,119.90750782308882,306.82198333740234,504.89813450435264,0,0,0,0,0,0,0,0,0,0,0,0,7.675987490074476e-6,7.3819696e-6,0.0013775627594441175,-0.0038292076,0,0,4.2408076114952564e-4,7.059406299999999e-4,0,0,0,0,286.124043782552,1.3073181920546588,17.958294196248843,86.48531866506026,8.206316153499158,19.782983456664027,-0.12674892343562766,0,0,18348.14599749548,0.1869152841968948,0.0044465698301792145,0.0077232589,0,0,0,0 +1932,0.8802743934777767,0.934985060725432,0,0,3.701120518695932,0.11274996710320313,0.085847633,5.2942134141922,23.837144,35.04279931386312,0.51911084,0.07499745239814122,1.6167368,0,0,0,0,0,0,0,0,5.338305354118347,107.41813,0,457.00000254313153,4276.7559,1081.9602254231768,121.42198728704909,307.09297943115234,510.1823315036154,0,0,0,0,0,0.0057643486,0,0,0,0,0,0,7.721951533312676e-6,7.4038620000000015e-06,6.616643853097534e-4,7.431065e-4,0,0,4.2662016494432464e-4,7.083703599999999e-4,0,0,0,0,286.222048441569,1.3141063515038527,18.10001303714107,87.9072537284969,8.14248430159185,20.161815548303863,-0.12801802530225273,0,0,16151.105195411223,0.04254262073622287,0.004446570334645609,0.0077232888,0,0,0,0 +1933,0.9234526077537247,0.9318013427122356,0,0,3.6739916956408347,0.11636996641755104,0.10162739999999999,5.937420805295308,28.120028,35.076699574788414,0.61081444,0.12499795357386272,1.6336582,0,0,0,0,0,0,0,0,5.379978577295939,108.09758,0,456.99999745686847,4271.2585,1086.540334065755,122.34376589659303,307.40198008219403,508.11601205842635,0,0,0,0,0,0.14482802,0,0,0,0,0,0,7.767915576550877e-6,7.4266479000000016e-6,7.192010428601255e-4,8.0764091e-4,0,0,4.2915957358976203e-4,7.1090308e-4,0,0,0,0,286.3710505167643,1.3197777870137994,18.14058311592853,87.73926442282286,8.102332976784076,20.019613310457757,-0.1292871271688778,0,0,16995.040808999714,0.15037091489606738,0.004446569170492391,0.0077232216,0,0,0,0 +1934,1.000687973523085,0.9200297551297542,0,0,3.8176224066538618,0.120129964624842,0.15202423,6.679798523585002,34.519287,35.111599604288735,0.91252255,0.174997894714276,1.6505883,0,0,0,0,0,0,0,0,5.419978777567546,108.91202,0,456.99999745686847,4272.3774,1091.770294189453,123.95329985100088,307.7849833170573,528.0331660089164,0,0,0,0,7.617614949898174e-4,0.60639434,0,0,0,0,0,0,7.813879619789077e-6,7.4653224e-6,7.817409447549531e-4,8.7789025e-4,0,0,4.3169897738456103e-4,7.152669800000001e-4,0,0,0,0,286.4670486450195,1.326062978814577,18.32411358884008,91.49703968423377,8.603675585096985,20.702617836824825,-0.1305562290355029,0,0,18679.912767508573,0.18613128672545048,0.004446571848044793,0.007723374200000002,0,0,0,0 +1935,1.0505968685462075,0.9186843152571444,0,0,3.826763235457096,0.12510996125638485,0.22028466,7.595823089281718,40.132859,35.15789985656738,1.3303298,0.22499790415167809,1.6675173,0,0,0,0,0,0,0,0,5.459979295730591,109.70014,0,457,4272.1486,1097.08012898763,124.8946043872966,308.2269795735677,529.4409406291938,0,0,0,0,0.019080033137773473,0.97427321,0,0,0,0,0,0,7.859843663027277e-6,7.500741299999999e-6,8.497191738570109e-4,9.5422447e-4,0,0,4.3423838117936003e-4,7.192557e-4,0,0,0,0,286.58704884847,1.332452330452497,18.317319645408826,91.90214074154562,8.779424673428734,20.543197042155484,-0.13182533090212795,0,0,20077.943320367118,0.18586353451204687,0.004446565833253165,0.0077230226,0,0,0,0 +1936,1.1503667221829357,0.9270693885573005,0,0,3.9720080230657695,0.13321496173739433,0.28820401,8.761372248331705,42.33712,35.23359902699789,1.7570203000000002,0.27499790986378986,1.6844464,0,0,0,0,0,0,0,0,5.4999799728393555,110.56758,0,456.999994913737,4275.9063,1101.8303019205728,126.46470475438792,309.01197306315106,550.0398548533171,0,0,0,0,0.07932233065366745,1.0455299,0,0,0,0,0,0,7.905807706265477e-6,7.545934399999999e-6,9.236086334567517e-4,0.001037276,0,0,4.367777898247975e-4,7.243709e-4,0,0,0,0,286.7470448811848,1.3386899894061661,18.652869642211954,95.83484543323485,9.362043924590697,21.164186541248704,-0.13309443276875307,0,0,21597.571787769164,0.185592517547358,0.0044465794538458185,0.007723846199999999,0,0,0,0 +1937,1.231103104871657,0.9045164915618376,0,0,3.977215074471826,0.14407995715737343,0.34372195,10.024959723154703,44.188471,35.3363987604777,2.1186454,0.3249979118506114,1.7013755000000002,0,0.0063900215,0,0,0,0,0,0,5.539980530738831,111.3625,0,457.00000254313153,4275.9946,1106.3199869791665,127.18233706750797,309.7639745076497,550.6109419060176,0,0,0,0,0.1400045237193505,1.1131878000000002,0,0,0,0,0,0,7.951771749503678e-6,7.5821791e-6,0.0010039232001872733,0.0011274768,0,0,4.3931719604491565e-4,7.2845477e-4,0,0,0,0,286.95104471842444,1.3465253526433507,18.73588299543127,95.84567433043011,9.575630542004474,20.850604708617507,-0.13436353463537815,0,0,23231.712031323073,0.1853182578338796,0.004446548409759998,0.0077218498,0,0,0,0 +1938,1.1614219711074325,0.9073215418860066,0,0,3.8795464313880084,0.1580399548014005,0.39883954,11.266163110733032,49.06474,35.46979935963949,2.4891541,0.3749979188044866,1.7183046999999998,0,0.1328808,0,0,0,0,0,0,5.579981207847595,112.0603,0,456.99999745686847,4271.2734,1110.6307983398435,127.90539303616418,310.2939758300781,535.4268484555511,0,0,0,0,0.20000430569052696,1.185033,0,0,0,0,0,0,7.997735792741878e-6,7.6064912e-6,0.0010912219295278192,0.0012254241,0,0,4.4185659983971465e-4,7.3116337e-4,0,0,0,0,287.191042582194,1.3551266769032138,18.7206280051743,93.2370606174549,9.13361208452991,20.283818003860038,-0.13563263650200325,0,0,21542.975865724657,0.1850407365123296,0.004446620470844209,0.0077285525,0,0,0,0 +1939,1.2326137038964111,0.9058800276933815,0,0,4.010820601451636,0.1736899564663569,0.43390074,12.575761953989664,56.68305400000001,35.62149874369303,2.745053,0.4249979183077812,1.7352338,4.437717252585571e-4,0.68779311,0,0,0,0,0,0,5.61998176574707,112.8293,0,457.00002034505206,4270.1197,1116.909678141276,129.50135676592018,310.8509750366211,554.5379171230255,0,0,0,0,0.26000453531742096,1.2571398,0,0,0,0,0,0,8.043699835980078e-6,7.6395717e-6,0.0011861117285055418,0.0013320616,0,0,4.443960084851521e-4,7.3488257e-4,0,0,0,0,287.3870468139648,1.3668291715856424,18.987929691357078,97.34535423251211,9.632984018885308,21.020853325485078,-0.13690173836862835,0,0,23010.268809183824,0.1847599106254542,0.004446447691104065,0.11813875,0,0,0,0 +1940,1.332494477928578,0.8934636293441599,0,0,4.026253626433618,0.19239995131889978,0.50172554,14.090854724248251,67.98074100000001,35.804999033610024,3.2190952,0.4749979227781296,1.7521629,0.009225911945880702,1.4928916,0,0,0,0,0,0,5.6599823633829756,113.75015,0,456.9999643961589,4276.3916,1120.120178222656,130.13499426241637,311.35697682698566,550.4654056455058,0,0,0,0,0.3200042446454366,1.3304593999999998,0,0,0,0,0,0,8.089663500262153e-6,7.6912641e-6,0.0012892556163327147,0.0014481828,0,0,4.469354122799511e-4,7.4074684e-4,0,0,0,0,287.61904144287104,1.3795892066065865,18.93380647928792,96.49612886832482,9.961368880607099,20.566275747266797,-0.13793690008074544,0,0,25159.0741191676,0.1844758339571321,0.0044469935819506645,0.21814961,0,0,0,0 +1941,1.3573323902091925,0.87608140300394,0,0,4.050294266866393,0.21106995145479837,0.64957282,15.872149070103964,81.740279,35.991299311319985,4.2240743,0.5249979098637899,1.769092,0.04815833130851388,2.2339929,0,0,0,0,0,0,5.69998296101888,114.54353,0,457.0000813802083,4282.9257,1123.240509033203,132.2180939399341,311.81097412109375,552.9500650768001,0,0,0,0,0.3800046021739642,1.4028748,0,0,0,0,0,0,8.135627467709128e-6,7.727317500000001e-6,0.0014013840700499713,0.0015741503,0,0,4.494748160747501e-4,7.448086699999999e-4,0,0,0,0,287.8640467325846,1.42706317607174,19.034030783582587,97.09407345232208,10.193711740010501,20.462031367555745,-0.1386016615843945,0,0,26113.949704774812,0.1841885864846894,0.012151915968085328,0.1951164,0,0,0,0 +1942,1.3590493190022876,0.8973145216954003,0,0,4.1141932838166495,0.23562495286266008,0.84353078,18.12043031056722,95.021136,36.23889923095703,5.585489,0.5749979317188263,1.7860212,0.112600847457846,2.976471,0,0,0,0,0,0.19841173,5.739983518918355,115.26991,0,456.9997380574544,4303.7401,1128.1901550292966,134.70602408126945,312.17197672526044,560.1841861089208,0,0,0,0,0.4400041376550992,1.4745563999999998,0,0,0,0,0,0,8.181591510947328e-6,7.7551846e-6,0.0015232670799984287,0.0017109548,0,0,4.5201422229486826e-4,7.4792699e-4,0,0,0,0,288.1380538940429,1.5298185446895778,19.210183227285178,98.65719695401302,10.345483778655613,21.014193770024683,-0.13926642308804354,0,0,26702.042786503276,0.18389809416798145,0.018664849922060966,0.16898031,0,0,0,0 +1943,1.4029458246329907,0.8921248427380299,0,0,4.11408578168194,0.267039954662323,0.80476688,20.794118722279865,89.521615,36.56109873453776,5.4576739000000005,0.6249979237715403,1.8029502,0.20245546102523804,3.7199961,0,0,0,0.056451758,0,4.3053247,5.77998411655426,116.04761,0,457.93199666341144,4331.4951,1132.6601562499998,136.62968688428126,312.3899790445964,561.0185502959332,0,0,0,0,0.5000047385692596,1.5467027,0,0,0,0,0,0,8.227555554185528e-6,7.789335e-6,0.0016557506072179724,0.0018597366,0,0,4.545536309403057e-4,7.517695e-4,0,0,0,0,288.78102874755854,1.6777932069727464,19.226489945128584,99.48634644476039,10.644062862464148,20.76469900653816,-0.13993118459169265,0,0,27110.348585419746,0.1836043762155363,0.023900681796173256,0.14684461,0,0,0,0 +1944,1.3879131189978564,0.8983189521156985,0,0,4.111269896041665,0.30831495175759,0.41764093,23.86478344599406,72.69430200000002,36.99279912312826,2.9606569,0.6749979356924692,1.8198794,0.3176470845937729,4.4638059000000005,0,0,0,0.97266311,0.019433656940236688,16.545617,5.8199847141901655,116.85265,0,460.7425028483073,4354.745,1136.270060221354,138.93105622391963,312.41297149658203,569.4275578497453,0,0,0,0,0.5600039213895798,1.6191675,0,0,0,0,0,0,8.273519597423729e-6,7.8268219e-6,0.00179975672896641,0.0020215068,0,0,4.570930347351047e-4,7.559967e-4,0,0,0,0,289.00005086263013,1.8537439967013465,19.454671365649084,102.00830515112277,10.972149966258387,20.918122282494288,-0.14059594609534168,0,0,26578.15151015907,0.18330738198668892,0.027877628337591887,0.11439264,0,0,0,0 +1945,1.180916481863783,0.8988221719461101,0,0,3.970406317162407,0.33637995769580203,0.20111842,25.904248396555584,68.369262,37.297698974609375,1.5076942,0.7249979277451833,1.8368084,0.4580556924144427,5.2077233,0,0,0.004844144840414326,3.4593405,0.4215002196530501,24.846154,5.85998531182607,117.6118,0,463.24369557698566,4376.5008,1139.32036336263,141.02296395690516,312.38497670491535,562.3881403027648,0,0,0,0,0.6200050512949625,1.69101,0,0,0,0,0,0,8.319483640661929e-6,7.8587212e-6,0.0019562874901263663,0.0021972582,0,0,4.596324409552229e-4,7.595796e-4,0,0,0,0,289.2270406087239,2.0468366239992983,19.530998731486306,102.38686289278726,10.811058367654892,20.630415192374578,-0.14126070759899073,0,0,23414.92285804937,0.18300712894373766,0.03101034214099248,0.080798572,0,0,0,0 +1946,1.2942110656768657,0.9829470073282762,0,0,3.9716964354580995,0.3442649617791176,0.27970458,27.504756927490234,74.71723399999998,37.39169883728027,2.0726649,0.7749979496002197,1.8537378,0.6235543092091879,5.9856104000000006,0,0,0.08337228807310264,4.940467900000002,1.6357106665770214,24.839378,5.899985949198405,118.39896,0,465.7432912190755,4399.6117,1143.6604919433591,142.70640224525258,312.38997141520184,555.2899629515077,0,0,0,0,0.680003434419632,1.7631907999999998,0,0,0,0,0,0,8.365447683900129e-6,7.894034299999999e-6,0.002126432334383329,0.0023883489,0,0,4.621718496006603e-4,7.635561099999999e-4,0,0,0,0,289.4270451863606,2.2422352077889016,19.68948842063387,102.65818348678006,10.80993836386383,20.305933499558623,-0.14192546910263978,0,0,23137.2912384495,0.18270359473494088,0.03229169764866432,0.06430042700000001,0,0,0,0 +1947,1.4498949379331847,1.013635265025484,0,0,4.004289599390247,0.3536549558242162,0.34838359,29.078561464945476,84.081746,37.50009854634603,2.6369074,0.8249979366858801,1.8706665,0.8140119264523188,6.4443541,0,0,0.3000110412637393,4.8390374000000005,2.835014005502065,24.982371,5.93998658657074,119.2973,0,468.2434260050456,4428.0553,1149.6402994791665,144.7944964951042,312.48597208658856,563.4037753734774,0,0,0,0,0.7400057514508566,1.8372679,0,0,0,0,0,0,8.41141172713833e-6,7.9428476e-6,0.0023113751861577234,0.0025963146,0,0,4.647112509701401e-4,7.6908855e-4,0,0,0,0,289.51104482014966,2.4286545050325703,19.916095128874474,104.15736760766261,11.489678423181335,20.190999473703123,-0.14259023060628884,0,0.0033728385,25978.580134271393,0.18239681638037056,0.03281248671313127,0.046731228,0,0,0,0 +1948,1.541746757752381,1.0217889660432258,0,0,4.123520872976997,0.3683149615923564,0.33316898,31.041143258412678,90.670686,37.670498530069985,2.6243892000000004,0.8749979635079702,1.8875961,1.0316545367240906,6.6649072,0,0,0.5000130111972491,4.856366099999999,4.025014281272888,24.987103,5.979986985524495,120.08364,0,470.7433776855469,4451.0369,1155.630167643229,147.27202945137043,312.5209681193034,586.5360800457117,0,0,0,0,0.8000023066997528,1.966277,0,0,0,0,0,0,8.45737577037653e-6,7.9780491e-6,0.002512403065338731,0.0033276717,0,0,4.672506547649391e-4,7.7305219e-4,0,0,0,0,289.55605316162104,2.589644895931103,20.349060560415165,108.09641738801687,12.195764994941479,20.65035706357972,-0.14325499210993792,0,0.023611977000000003,27162.316753376424,0.1820867991187164,0.0328332781791687,0.020169381,0,0,0,0 +1949,1.5150340802151026,1.0322291088892992,0,0,4.0957465510773075,0.38362496097882587,0.31424196,33.192337354024254,91.962416,37.855198542277016,2.5926444,0.9249979307254156,1.8955033,1.2518172562122345,7.1640705,0,0,0.7000119686126709,5.561141,5.215012947718303,27.295461,6.019987901051839,120.70601,0,473.243403116862,4466.7618,1160.3499450683591,150.21571488778258,312.63197072347003,588.4410386834926,0,0,0,0,0.8600076138973236,1.6426278000000003,0,0,0,0,0,0,8.50333981361473e-6,7.993390500000001e-6,0.0027309151094717285,0.02463759,0,0,4.697900658356957e-4,7.747269e-4,0,0,0,0,289.59805043538404,2.7140139811269637,20.909195897992674,109.1544257771438,11.863971231370714,21.081179377216955,-0.14391975361358694,2.747740879082509e-4,0.063741035,26198.851367200677,0.18177350173895448,0.03209515412648519,-0.0015784357,0,0,0,0 +1950,1.6956807866542396,1.0454343901508287,0,0,4.3312607912797665,0.3969699591398239,0.32876887,35.499832471211754,78.580053,38.023898442586265,2.8441101000000004,0.9749979873498281,1.9897329,1.4824664394060771,7.4706053,0,0,0.8938818424940109,8.1460574,6.382257183392842,32.673745000000004,6.059987783432007,121.62274,0,475.7314631144206,4499.2896,1163.820566813151,152.20100844625213,312.8209762573242,619.9439709148871,0,0,0,0,0.9275005906820297,1.0661465,0,0,0,0,0,0,8.549303477896805e-6,8.0453408e-6,0.003054187574889511,0.10531435,0,0,4.723294696304947e-4,7.806208900000001e-4,0,0,0,0,289.73904164632154,2.7868238058947905,21.601404570641137,113.85984719531825,13.132141828954166,22.105810561368756,-0.14458451511723602,0.001923504489241168,0.16053368,29148.546819670417,0.1814569633566329,0.03030576727663477,2.432756e-4,0,0,0,0 +1951,1.8173567042308394,1.2637884621306537,0,0,4.212336067356143,0.41064496090014774,0.33222262,37.58082548777262,70.47669,38.204298655192055,3.0430784,1.0244279702504475,2.1685287,1.7349158823490143,7.5542237,0,0,1.1468555231889088,12.050138,7.775353193283081,36.815853,6.099990487098694,122.51807,0.014330518,478.3116455078125,4529.1876,1168.810119628906,155.27193516536855,313.01397196451825,593.1994505844021,0,0,0,0,0.9349976976712545,1.0527789,0,0,0,0,0,0,8.59526744534378e-6,8.0850349e-6,0.006885135274690886,0.2343219,0,0,4.748688734252937e-4,7.8510233e-4,0,0,0,0,289.8600540161132,2.8307926461022945,21.710967064016447,109.09095441872181,13.152193894404679,20.398188183698103,-0.14710768873059346,0.005466860408584277,0.23983988,30378.934969744696,0.18113711866275609,0.028203126974403858,0.0011664316,0,0,0,0 +1952,1.8518759304813062,1.2915086581093504,0,0,4.27824996657228,0.42523996035257977,0.32854487,38.706894874572754,76.508762,38.406997998555504,3.2228257,1.079317679007848,2.4120426,1.984303871790568,7.673401400000001,0,0,1.5540266533692677,16.078842,9.444400389989218,40.441283,6.139426151911418,123.26435,0.21725302,481.16064198811847,4558.7052,1174.3108825683591,160.57335760480584,313.3419774373372,606.9563399935745,0,0,0,0,0.9200002650419871,1.4414744,0,0,0,0,0,0,8.64123148858198e-6,8.100092099999999e-6,0.02087512387273212,0.36283509999999997,0,0,4.7740828449605033e-4,7.867442699999999e-4,0,0,0,0,290.02505238850904,2.873469224433514,22.393786048989185,112.61821090484105,13.48661503998857,20.95793435117974,-0.1497592068193485,0.01499934789414207,0.24565292,30772.879377004218,0.1808140109638238,0.026776751192907493,-0.0020300648,0,0,0,0 +1953,1.9058871956207555,1.288662579097105,0,0,4.400134890913105,0.4392099554340045,0.31999622,40.05176067352295,81.681224,38.61429913838705,3.3863087,1.1389276186625164,2.8478934,2.2399121522903442,7.7034458,0,0,2.129436651865641,20.201055,11.213325262069702,45.581432,6.184987505276998,124.06078,1.3575508,484.1764450073242,4600.7084,1183.360656738281,165.68183230817434,313.72996775309247,623.9750547982311,0,0,0,0,0.9262516697247823,2.1004080000000003,0,0,0,0,0,0,8.68719553182018e-6,8.1248995e-6,0.04651178978383541,0.48047903,0,0,4.7994768829084933e-4,7.8950997e-4,0,0,0,0,290.3340403238932,2.918473220829267,23.086276532048977,116.77653779023555,14.050620354457529,21.600939708208692,-0.15241072490810365,0.024999434128403664,0.24572915,31392.44295532122,0.18048767518443254,0.02495241429035862,-2.2819236e-4,0,0,0,0 +1954,1.9553258305658399,1.3426832443153052,0,0,4.475107773130416,0.4534849599003792,0.29457384,41.54246679941813,86.86346999999998,38.84129842122396,3.4048632000000003,1.2079770465691884,3.2763156,2.4949118296305337,7.760213,0,0,2.8635963996251426,25.212381,13.203928073247274,51.892411,6.22998833656311,124.75392,3.6198833,488.50885518391925,4629.2231,1194.4306030273435,170.37100791893153,314.09496815999347,628.9096635314064,0,0,0,0,0.9637557764848074,2.8888848,0,0,0,0,0,0,8.73315957505838e-6,8.1370738e-6,0.08213070034980774,0.59576061,0,0,4.824870896603291e-4,7.9081967e-4,0,0,0,0,290.54804992675776,2.9653052307782946,23.518269296485517,118.7896928573186,14.352627821692423,21.654738949016565,-0.15506224299685875,0.034999388890961804,0.24580572,31601.64061572461,0.1801580463648328,0.0234999794823428,-0.0040708208,0,0,0,0 +1955,2.1387868172549656,1.3878206830387967,0,0,4.585745111893209,0.46671496083339054,0.26311875,43.17295900980631,91.980019,39.07069810231527,3.3346824,1.2937463521957397,3.6788015,2.7499121824900308,7.6370702,0,0,3.7677908142407737,30.727319,15.439632256825766,59.87188100000001,6.274988849957784,125.74327,6.4848679,493.2549794514974,4666.3367,1206.65092976888,174.7404470567501,314.4149703979492,641.3267253315221,0,0,0,0,1.0538601179917653,3.5564777000000003,0,0,0,0,0,0,8.77912361829658e-6,8.184845900000001e-6,0.1274599153548479,0.70910415,0,0,4.8502649830576655e-4,7.9623211e-4,0,0,0,0,290.84404500325513,3.016004167545106,23.788691617349485,122.54258151361353,15.359884890806127,21.61194057224027,-0.15771376108561386,0.044999435233573117,0.24588273,34555.402722250226,0.17982516920850813,0.021999980478237074,0.0010493547,0,0,0,0 +1956,2.291039468224933,1.4462836425278403,0,0,4.8444014888868745,0.478794959684213,0.22075982,44.93925635019938,97.008491,39.3001979192098,3.0796375,1.3882061143716176,4.2759912,3.006162941455841,7.543031599999999,0,0,4.90076740582784,33.546756,18.00713857014974,66.950489,6.319989720980327,126.58168,9.1561662,496.95969645182294,4699.2729,1221.1007995605466,180.671117460758,314.6979675292969,673.8062290292883,0,0,0,0,1.1860103805859883,4.5322657999999985,0,0,0,0,0,0,8.82508766153478e-6,8.2145095e-6,0.1822890266776085,0.82044371,0,0,4.8756590210056555e-4,7.995574900000001e-4,0,0,0,0,291.1870447794596,3.067693130108469,24.39548109092037,129.82302004314178,16.407730767105924,22.724482756858983,-0.16036527917436896,0.05499937882026037,0.24595899,37118.77108719959,0.1794890063461402,0.020458318758755922,0.006640162099999999,0,0,0,0 +1957,2.384773000160331,1.4774945790842637,0,0,5.084522572350242,0.489309956630071,0.18587639,46.82995192209879,102.11597,39.52009836832682,2.8571248,1.4974753856658936,4.9612019,3.2499133944511414,7.3765313,0,0,6.239397327105205,32.871446,20.977540334065754,72.204141,6.364989757537842,127.41838,11.488509,500.6978174845378,4733.2024,1235.8001810709634,186.0555677386444,314.9919611612956,695.9496130566932,0,0,0,0,1.3464653591314952,5.9875108,0,0,0,0,0,0,8.871051704772981e-6,8.2451464e-6,0.2464121406277021,0.92977447,0,0,4.901053131713221e-4,8.029950599999999e-4,0,0,0,0,291.5120417277018,3.1227659361540883,25.10938270800668,135.59152056062854,17.202288510585237,23.82634944628376,-0.16301679726312407,0.06499945092946291,0.24603635,38873.754310972414,0.1791495207576567,0.019499980999777716,0.004342369,0,0,0,0 +1958,2.4670954688378814,1.5285973472099872,0,0,5.060488042524024,0.4977349440256755,0.17928487,48.83994928995768,107.206,39.715097745259605,2.9954591,1.6274844805399578,5.6330503,3.4969948132832847,6.9087313,0,0,7.567232608795166,34.746284,24.184339841206867,80.925329,6.409992456436157,128.42262,14.781202,504.5039291381836,4771.3965,1247.4204813639321,188.38553994967657,315.344965616862,661.285485841322,0,0,0,0,1.5845945576826732,7.120203999999998,0,0,0,0,0,0,8.917015748011181e-6,8.2860065e-6,0.3196182499329249,1.0371306,0,0,4.926447145408019e-4,8.0761087e-4,0,0,0,0,291.7720464070637,3.18418831910038,25.26871426472444,129.20858361180427,17.043104741234497,22.24665040214954,-0.16566831535187918,0.07499935726324718,0.24611309999999997,39341.991357154206,0.1788067540033275,0.018499995737026136,0.0026052944,0,1.5255345e-5,0,1.550744e-4 +1959,2.6036729140488357,1.4736682886389454,0,0,5.186762349282971,0.505239948630333,0.18081021,50.97114499409994,112.29185,39.90489800771078,3.2476716,1.777483691771825,6.388022599999998,3.7265921036402383,6.8760458,0,0,8.797123988469442,43.506257,27.60905106862386,93.983467,6.4542984167734785,129.47587,18.063698,508.3637110392253,4808.726,1257.320078531901,192.68675731110378,315.8069661458333,665.4367222123257,0,0,0,0,1.9060347974300385,8.0253807,0,0,0,0,0,0,8.962979791249381e-6,8.3259739e-6,0.40169936915238696,1.1424694,0,0,4.951841207609201e-4,8.121238e-4,0,0,0,0,291.98704274495435,3.250322629161094,25.784568318874836,131.21049744121555,17.515266326606977,22.136950451664426,-0.1683198334406343,0.08499948245783646,0.30755864,41319.47350993611,0.1784607567238176,0.017499990140398342,8.684612300000001e-4,0,1.2225318000000002e-4,0,0.0012460364 +1960,2.728446849074149,1.4615195318866923,0,0,5.288213084302709,0.5130949467420578,0.17259465,53.211243311564125,117.2597,40.118597666422524,3.3209398,1.9469429155190785,7.3201718,3.938670496145884,7.2392631,0,0,10.23712126413981,56.28148100000001,31.60536019007365,107.5417,6.504989147186279,130.53321,21.750437,512.2328440348307,4847.0424,1264.1198730468748,197.26110047577146,316.62496693929035,668.5656629833454,0,0,0,0,2.2494065960248313,9.5885732,0,0,0,0,0,0,9.008943455531456e-6,8.3712137e-6,0.49244747559229535,1.2458107,0,0,4.977235318316767e-4,8.1724438e-4,0,0,0,0,292.2830454508463,3.323928526213912,26.127946785499923,133.33681491027784,18.137986763264845,22.068663139398165,-0.16971698815179884,0.09499939220647018,0.43040209999999995,42970.73471143208,0.17811146430862335,0.016499992460012436,-8.684921e-4,1.2107990556842196e-6,2.3072394e-4,6.978449713794059e-6,0.0023750868 +1961,2.7521018504089363,1.531158201999545,0,0,5.280187774913458,0.5207299540440241,0.16861102,55.563539822896324,121.58986000000002,40.34249718983968,3.4304351000000004,2.141221841176351,8.4287849,4.1636671622594195,7.4514735,0,0.0018618006,12.167853911717733,70.618557,36.23666445414225,123.80387,6.554991841316223,131.26152,27.278298,516.0400848388672,4864.0212,1269.4615275065103,205.13834130452685,317.29896291097003,701.0053452576341,0,0,0,0,2.637653867403666,11.884386,0,0,0,0,0,0,9.054907422978431e-6,8.367736999999999e-6,0.5916525920232137,1.346892,0,0,5.002629332011566e-4,8.1675024e-4,0,0,0,0,292.60204569498694,3.545375735491367,26.889738501199272,143.56526348207862,18.738996990578176,23.373573142607228,-0.17042405828273247,0.10999903393288453,0.55328481,48370.747602751726,0.1748425912224242,0.015499991675217947,-0.0026053238,9.686392521264983e-6,2.4913556000000003e-4,5.5827597558770016e-5,0.003546415 +1962,2.868392578555052,1.520724683920321,0,0,5.268371108547883,0.5278749416271845,0.17112099,58.007436752319336,125.71015,40.56609694163004,3.6249821,2.365680515766144,9.612767800000002,4.398663679758708,7.580527900000001,0,0.045181371,14.639893293380737,86.214551,41.47677803039551,144.89716,6.604418396949768,132.4011,32.049021,519.7264709472656,4895.6486,1282.5712890624998,207.2122991826155,318.0439631144206,678.8492233714484,0,0,0,0,3.1291542649269104,14.500089,0,0,0,0,0,0,9.100871466216631e-6,8.405538e-6,0.699107696612676,1.4460951000000002,0,0,5.028023394212747e-4,8.2101348e-4,0,0,0,0,292.9450378417968,3.678783292234149,27.391344297603926,140.1058920148071,19.332929386112895,22.550094638193304,-0.1711311284136661,0.12999879072109857,0.61483924,49373.4626711147,0.018878477916170075,0.01449999026954174,-0.0043425207,1.9372784966738738e-5,2.5250226000000003e-4,1.1165519572386984e-4,0.0049206759 +1963,3.036186160713145,1.5272093107248352,0,0,5.437875742912039,0.535164937376976,0.18314033,60.507436434427895,128.88013,40.80479653676351,3.9881367,2.6255189975102744,10.949721,4.63597031434377,7.911085400000001,1.4331860863118587e-4,0.24720738,17.71703306833903,101.83231,47.60459232330322,167.67883,6.659987608591716,132.99126,37.52532,523.2439982096354,4904.2354,1300.79057820638,216.19226558975322,318.64996337890625,741.3196016175318,0,0,0,0,3.753723760445913,17.280228,0,0,0,0,0,0,9.146835509454831e-6,8.3926404e-6,0.814602812131246,1.5429261,0,0,5.053417504920313e-4,8.194336200000001e-4,0,0,0,0,293.32704925537104,3.8037763068903097,28.744647607968993,156.13095399196706,20.520847373631998,24.609210933874923,-0.1718381985445997,0.15499834592143694,0.55366285,50918.547922521546,-0.7158139715324602,0.013499994995072484,-0.0078699311,2.905917745010811e-5,3.5209498e-4,2.0954201075558862e-4,0.005972759100000001 +1964,3.1935857269729495,1.5182530872301747,0,0,5.25990946510033,0.5425249338150024,0.20130699,63.07753308614095,129.76928999999998,41.05469576517741,4.432625700000001,2.9195976853370667,12.657214,4.877436995506287,8.477894599999999,0.003477728799528753,0.46848862,21.421671549479168,116.30072,54.79980500539144,189.8766,6.715564290682475,134.07707,49.914046,526.5386403401693,4933.087,1317.3704528808591,216.5561629558192,319.3329620361328,689.1114600087734,0,0,0,0,4.5027817487716675,20.771971,0,0,0,0,0,0,9.192799552693032e-6,8.436046300000001e-6,0.9379299183686575,1.6379776,0,0,5.078811470108727e-4,8.243428e-4,0,0,0,0,293.6850484212239,3.94575429191722,28.607416327576342,146.45477556142896,21.250626659387255,22.37762398460907,-0.17254526867553333,0.17999867846568426,0.49245891,52831.63766662475,-0.6203003960549346,0.012499973177909851,-7.597085899999999e-4,3.8745569933477476e-5,0.0010303711,3.218187654662567e-4,0.033580017000000004 +1965,3.342046614628416,1.5494103546996891,0,0,5.2700102527121695,0.5508499294519424,0.22504179999999996,65.62683486938477,129.69213,41.342495918273926,4.9089192000000015,3.2579756379127502,14.528257,5.135173638661702,9.0358315,0.019166271900758147,0.58010695,25.709799925486248,130.83983999999998,63.0290142695109,213.3919,6.764422178268433,135.19804,70.507935,529.5773620605469,4953.0596,1331.0602823893228,222.666415702745,319.81596120198566,709.3122962703268,0,0,0,0,5.391107479731242,25.0603,0,0,0,0,0,0,9.238763595931232e-6,8.4640089e-6,1.0688820282618205,1.7308461,0,0,5.10420553230991e-4,8.274721400000001e-4,0,0,0,0,294.04503885904944,4.115195266374096,29.972153677829578,153.40539119426893,22.08301053841794,22.64997293102378,-0.17325233880646695,0.1999987723926703,0.4926084,54063.80178149757,-0.2927293197139612,0.01137502615650495,0.015948649,5.60693097213516e-5,0.0021406888,4.596758565943067e-4,0.11324642 +1966,3.501720550339981,1.5517652807392261,0,0,5.285174795936927,0.5597749253114065,0.26721734,68.0712407430013,129.70542,41.65249570210775,5.6248074,3.653163174788157,16.547774,5.413369536399841,9.5008952,0.039499382954090834,0.77191369,30.50373379389445,147.99606,72.2479305267334,240.15802,6.8193081219991045,136.46754,94.258765,532.3371022542318,4976.4474,1342.240509033203,226.31069580205852,320.8799565633138,710.941466458106,0,0,0,0,6.472539742787679,30.477075,0,0,0,0,0,0,9.284727639169432e-6,8.5066137e-6,1.2072421511014302,1.8217969,0,0,5.129599594511092e-4,8.322890299999999e-4,0,0,0,0,294.45304361979163,4.31119735595728,31.553067549575943,156.4949809106804,22.847791402233124,22.434297142441455,-0.17395940893740058,0.21999895945191383,0.61550021,55269.31676159744,0.11690965230767818,0.010999986358607808,0.069786165,1.1921713667106815e-4,0.0031030971,0.0018055206843807052,0.20275693 +1967,3.6259660139730605,1.595865385821404,0,0,5.390458849300692,0.5701449265082678,0.32052973,70.42624282836914,129.68847,42.00469557444254,6.3547572,4.101901113986969,18.918172,5.707025408744812,9.9208119,0.06371349437783162,1.0373000000000001,35.86647764841715,169.42177,82.6101468404134,269.58286,6.879989941914876,137.66763,116.32544,534.8238169352213,4995.4184,1354.2715555826821,232.33314648826578,321.4799575805664,746.2098208746951,0,0,0,0,7.774255792299907,36.036945,0,1.246032e-5,0,0,0,6.8991852e-5,9.330691682407632e-6,8.544612699999999e-6,1.352812260389328,1.9105949,0,0,5.154993656712273e-4,8.365750900000001e-4,0,0,0,0,294.8600463867187,4.481777634666587,33.1677760500894,164.77531621039864,24.19623737938871,23.585293537089132,-0.1746664790683342,0.23999873300393423,0.7384486,54762.89709618766,-0.07633744709933905,0.011131961752350131,0.24404072,2.235555645408264e-4,0.0037542491,0.005476358346641064,0.26151045 +1968,3.8345952658425997,1.5469930909111562,0,0,5.370373092170119,0.5827049265305201,0.40423022,72.69054730733235,129.73308,42.41149616241455,7.332441499999999,4.61564834912618,21.713594,6.014501253763835,10.295172,0.09872918141384919,1.3673824,41.93913205464681,195.13757,94.25966453552246,299.7143700000001,6.939991156260173,139.24379,133.08156,537.0335591634115,5029.5667,1371.6504618326821,235.33540266621623,322.3889567057292,740.4824182303034,0,0,0,0.0092379775,9.383843421936035,40.359034,0,8.8038453e-5,0,0,0,4.8559101e-4,9.376655725645833e-6,8.6257131e-6,1.505382388830185,1.9976935,0,0,5.180387718913456e-4,8.458288900000001e-4,0,0,0,0,295.2690455118815,4.618299686146145,34.3815728401946,165.09570877308497,25.41081254044139,22.825796914652,-0.1753735491992678,0.26999801645676297,0.67731523,56868.37887037226,0.0011209927611538926,0.014528773414591948,0.44305972,3.60778462588011e-4,0.0055431793,0.010674211041380962,0.29037411 +1969,4.0615677268044985,1.5437089021510264,0,0,5.404091612813001,0.5976699193318685,0.5206411,74.8699499766032,129.76058,42.862396240234375,8.483171800000001,5.203845143318176,24.938178,6.334147016207377,10.638634,0.143262746433417,1.7120901000000002,48.922607421875,220.72612,107.28918075561523,327.55328,6.999991575876872,140.05867,146.61896000000004,538.9712473551432,5026.2804,1389.3417561848955,239.18485161256538,323.25095621744794,747.0297315350706,0,0,0,0.18322115,11.191637754440308,44.144508,1.2165773692155806e-6,9.3679956e-5,0,0,9.679108093981389e-6,5.038868e-4,9.422619768884033e-6,0.0098248184,1.6647424797217052,2.0817369,0,0,5.205781781114638e-4,8.450532600000001e-4,0,0.0011288309,0,0,295.681042989095,4.732615322675832,34.96181250811188,169.68157132242786,26.065069005292788,22.100489511661433,-0.17608061933020144,0.29999837279319763,0.67751619,58467.81079627766,0.07485921849687786,0.02660746080800891,0.55613635,5.134661914780736e-4,0.03648951,0.016677813526863854,0.30862539 +1970,4.323514044182916,1.5319290688025449,0,0,5.549708797290366,0.61744491259257,0.6581691999999999,76.96995290120442,129.69302,43.40139643351237,9.5318801,5.882411241531372,28.576904,6.6643119653066,11.00827,0.2035404990116755,1.8909658,56.95325533548991,245.38621,121.64918899536133,354.60102,7.059993505477905,141.52757,173.56366,540.6648610432943,5048.3132,1411.1005147298174,244.41839554629246,324.78295644124347,781.037552297546,0,0,0.001065175359447797,0.60795801,13.09374705950419,49.037394,8.557121153292732e-6,2.4685116e-5,0,0,6.793739824691632e-5,1.0851205e-4,9.468583508957332e-6,0.036330653,1.830672601858775,2.1644992000000003,0,0,5.23117584331582e-4,8.520249e-4,0,0.0042255569,0,0,296.0980377197265,4.714190307707546,37.469578527471604,179.6859546683907,27.824084069544437,22.780224323226346,-0.17678768946113504,0.32499857246875763,0.80047128,61529.779790205444,0.07891007914399001,0.042955159209668636,0.64373178,7.886756357038394e-4,0.11813403,0.022781516425311565,0.34789664 +1971,4.510244869270977,1.4055542417708098,0,0,5.703748992338275,0.6424449036518732,0.82992065,78.98995844523112,129.60227,44.007896423339844,10.711494,6.6607770919799805,32.729139,7.00438114007314,11.452529,0.27441523348291713,2.1402118,65.84650834401448,276.44309,137.13820521036783,387.53989,7.119412302970886,143.1196,217.72405,542.1264394124349,5067.5026,1431.1209615071612,249.2895330837902,325.3999557495117,796.2029425301106,0,0,0.021073126544555027,0.8564575999999999,15.120055437088013,55.790888,1.0061302646136028e-5,1.3254363e-5,0,0,7.890220331319142e-5,4.2594654e-5,6.875001223913083e-4,0.064586906,2.0029827058315277,2.2451174,0,0,5.256569905517002e-4,8.5867175e-4,8.593750105016322e-5,0.00774384,0,0,296.52204386393225,4.663522046368115,38.13342515565109,183.53555789915328,28.617263975091056,23.195116011534044,-0.17749263314257094,0.3549981142083804,0.86210262,61716.79562857309,-0.03213341039414315,0.06120223210503658,0.78786166,0.003391635837033391,0.2232129,0.029181620261321466,0.40686343 +1972,4.706494311867816,1.3269371347118073,0,0,5.971153374722522,0.6740748832623163,1.0559028999999998,80.9293607076009,129.65777,44.68869590759277,12.24311,7.553642193476359,37.465523,7.356679677963257,11.97792,0.34821991870800656,2.5517628,75.6708869934082,314.22879,153.8562266031901,427.68026,7.184317310651143,144.52172,267.60333,543.3849334716797,5079.1924,1449.2900187174478,257.2102054265862,327.3489532470703,868.4735707547015,0,0,0.06999984166274469,0.87667663,17.352389971415203,61.456633,1.0390318796756523e-5,1.3479254e-5,0,0,8.037302359298337e-5,4.3040854e-5,0.0025000001187436283,0.082580189,2.181452830632528,2.3233295,0,0,5.281963967718184e-4,8.6363194e-4,3.124999990783787e-4,0.010359322,0,0,296.9550399780273,4.9307421199057115,39.56446297363227,196.66552470793948,30.236221506038817,25.52743453960084,-0.17813366446922693,0.3899978771805763,0.86237286,63465.10424037791,0.049119653936524114,0.08156623815496762,1.0951867,0.010107177193276584,0.31882408,0.0366138257086277,0.4721474 +1973,4.975651785811607,1.318385656312959,0,0,5.895831575895738,0.7138798783222834,1.3307870000000002,82.79306348164876,129.79157,45.45469538370768,14.085332,8.576456785202026,42.979262,7.723947962125142,12.585161,0.43801355610291165,2.92937,86.87261581420898,338.0693,172.25726318359375,454.71123,7.255663514137268,146.54158,301.85553,544.4634094238281,5118.3195,1462.860677083333,260.2947249743578,329.90895080566406,826.0293132269293,0,0,0.11499984314044316,0.82240702,19.92769479751587,65.420113,1.0719714812997458e-5,1.3772853e-5,0,0,8.184554402153783e-5,5.4973948e-5,0.005062500150719036,0.090214925,2.365882933139801,2.4006492,0,0,5.307358029919366e-4,8.768767699999999e-4,6.328129966277629e-4,0.011968111000000002,0,0,297.3990402221679,5.050826137007638,39.9571427129374,186.52593193281965,31.240096880428535,23.455648107310147,-0.17877469579588295,0.42499801019827527,0.92401065,66317.71188639547,0.15522883058251086,0.1075315357496341,1.5930673,0.02092159477372964,0.39726303,0.04518213029950857,0.54390644 +1974,4.948149198232062,1.2905489996591684,0,0,5.971643938399686,0.7649898727734884,1.4191691,84.59316635131836,129.76026000000002,46.34259541829427,14.311146,9.748060464859009,49.247959,8.108936508496603,13.447442,0.5431961392362913,3.5184015,99.53890228271484,340.6055,192.56424713134766,453.22872,7.319503704706828,147.80664,327.35544,545.3698170979818,5113.8208,1476.140909830729,261.8082770537653,330.7559534708659,824.6214022160059,0,0,0.16126984233657518,0.76119143,22.525582949320476,71.666995,1.1049491528562308e-5,1.3967525e-5,0,0,8.331976338619522e-5,0.052416219000000014,0.008000000069538752,0.08706316300000001,2.556043048699697,2.474116,0,0,5.332752092120548e-4,8.7789564e-4,9.999999989910673e-4,0.01237887,0,0,297.8550415039062,5.0344191249004195,40.69211663930812,183.60052508219061,31.077406046065626,23.599624622127063,-0.17941572712253898,0.45999792218208313,1.0394718,65371.62666713273,0.10279066121396813,0.14653477569421133,2.1806547000000003,0.034983893080304064,0.67241083,0.05499073459456364,0.65809554 +1975,4.928622399679322,1.303204963553737,0,0,5.9984313740411705,0.8284898797671,1.4004084,86.32876841227214,129.65616,47.35769589742025,14.321042000000002,11.09574286142985,57.565811,8.51440660158793,14.538442000000002,0.661696677406629,4.217686799999999,112.33176358540852,337.71465,213.23522440592447,440.16522,7.389227231343587,148.91662,384.99818,546.1371358235677,5104.4298,1491.7409667968748,263.05854864525753,330.8269551595052,816.9194858581777,0,0,0.19499984259406725,0.80304672,25.179124514261883,79.153904,1.1379648640286177e-5,1.4151174000000003e-5,0,0,8.637850078230258e-5,0.19213674,0.010937500201786557,0.07287558599999999,2.7517531315485635,2.545125,0,0,5.35814615432173e-4,8.7775104e-4,0.0013671900087501854,0.011478755,0,0,298.32604471842444,5.2068127673577305,41.476725896945794,177.51306730736252,30.76637271161256,23.129653790732366,-0.180056758449195,0.49999761829773587,1.1646458,64182.768823129416,-0.20496901654447228,0.20330782110492387,2.8018363,0.051680791191756725,1.2682709,0.06614344008266926,0.8287437 +1976,5.1946610219984874,1.3202053582443383,0,0,6.237496531818932,0.8872098724047343,1.5554771,87.99307123819987,129.63321000000002,48.276095390319824,16.011714,12.636435270309448,57.24638,8.955106973648071,15.386466,0.8118081788221995,4.743647,124.73074785868327,329.27602,232.99722162882486,426.10768,7.465574224789937,150.23158,475.43135,546.7914225260416,5104.2152,1509.1109517415362,269.9482096580869,331.5449498494466,856.063491529847,0,0,0.22999984274307886,0.82394648,28.196115493774414,92.664426,1.171018743661989e-5,1.4358855e-5,0,0,0.007432716122517983,0.33759564,0.01350000019495686,0.047412585,2.9527832667032876,2.614347,0,0,5.383540216522912e-4,8.8049315e-4,0.001687499995265777,0.0091593417,0,0,298.8140436808268,5.352361696512741,42.5213569666273,186.24742729810202,32.28663209283211,24.40571791742575,-0.18069778977585105,0.5443803270657858,1.4235416,67153.40876186565,0.042795931279707856,0.27751198535164195,3.4107057000000003,0.08715698743859927,1.8435573,0.08035514317452908,0.98712807 +1977,5.364428639868427,1.3520979710065895,0,0,6.353178768287844,0.9490798612435659,1.6923549999999998,89.59247398376465,129.63647,49.29249509175619,16.762577,14.47871708869934,55.875241,9.431879123051962,15.71703,0.9836416741212209,5.1782548,136.7956975301107,306.11158,251.99420674641928,404.2283,7.534413854281108,152.04263999999995,533.0325,547.3396860758463,5117.6518,1527.680948893229,274.03015240270713,333.3529459635417,868.4313096928761,0,0,0.2649998404085636,0.93269902,31.407798290252686,109.06413,1.2041107462816095e-5,2.1399971000000003e-6,0,0,0.026895795327921707,0.42456315,0.015312500220413009,0.022180513,3.1589433749516806,3.5323931000000006,0,0,5.408934278724095e-4,8.8740955e-4,0.0019140600246222068,-0.0065053902,0,0,299.3190358479817,5.499463794793741,43.27485687581617,189.22553225601726,33.05929028320198,24.38724427025082,-0.181338821102507,0.5945511807998022,2.1583469,67777.19082397268,0.12845401331973466,0.3696969747543335,3.8826089,0.1504269844541947,2.1420878,0.09829714894294739,1.0852977 +1978,5.581802902559232,1.2993019000302957,0,0,6.57904481781486,1.0211598575115204,1.7691766,91.13187662760417,130.48848999999998,50.43949508666992,16.898235,15.96304734547933,72.245349,9.926631212234497,15.529417,1.1736451586087544,5.5214165999999985,148.00458017985025,278.45958,270.00118255615234,383.9896,7.609319130579631,153.91731,529.79652,547.7978973388672,5132.0601,1546.890899658203,276.33335446294114,335.00994873046875,897.405148357044,0,0,0.29872983197371167,1.277913,35.72357686360677,112.78031,1.237240955257827e-5,-6.2543157e-5,0,0,0.054136695029834904,0.45249588,0.016000000139077503,-0.059867027,3.3700035015741983,4.661461,0,0,5.434328243912508e-4,8.9480636e-4,0.0019999999882808575,-0.021383103,0,0,299.8450393676757,5.625120895967197,44.240892074424366,192.93479554653743,34.269193302792054,25.019744191924026,-0.18197985242916306,0.6599957346916199,2.8286901,68023.041876235,0.1506635484397897,0.4763076677918434,4.2701212,0.23020097613334656,2.1599238,0.1185080527017514,1.1209156999999998 +1979,5.730732140077329,1.2523176484359615,0,0,6.677231649399466,1.094819853703181,1.9203395,92.61308097839355,128.37989,51.557394663492836,17.898313,17.68312692642212,94.634628,10.421233495076498,14.991238,1.3782646457354228,6.1020639,157.6384735107422,271.13342,286.4941584269206,394.80033,7.689991553624471,155.58903999999995,518.50501,548.1820729573568,5138.651,1566.1608581542966,281.6000656120118,336.60494740804035,900.4664227016348,0,0,0.34251976509888965,1.7595655,40.48909950256348,113.22088,1.1487397311308692e-5,-2.0391387e-6,0,0,0.0849026944488287,0.42017076,0.016000000139077503,-0.17766763,3.7300036549568176,5.0937882000000005,0,0,5.459722354620075e-4,9.0008302e-4,0.001000000006267025,-0.0099825707,0,0,300.39303843180335,5.807081798508845,45.13478108156769,196.0169028731842,35.013987182511805,25.212479862598272,-0.18262088375581906,0.7699926396210989,2.8296177000000005,69119.86371174049,0.1473114304822424,0.5893768072128296,4.6513697,0.31519197672605515,2.0579417,0.13952905808885893,1.1328091 +1980,5.650947966828631,1.2441357938650308,0,0,6.618387124854692,1.1735098262627919,1.9633226,94.1031723022461,125.08456,52.72269503275553,17.664267000000006,20.167388280232746,120.23426,10.897735516230265,14.760860999999998,1.5939541260401409,7.2362595,166.07752100626627,276.09356,302.1822509765625,398.43779,7.769993821779887,157.04196000000005,513.02719,548.5012359619141,5131.8984,1584.940734863281,283.34647023515436,338.70494588216144,890.5114951943987,0,0,0.41178564727306366,2.0330453,44.551489194234215,118.29604,5.5193815645300974e-6,7.9351775e-5,0,0,0.11494099286695321,0.35605477,0.011000000056810677,-0.12485274,4.130003849665324,5.1732709,0,0,5.485116416821256e-4,9.0155542e-4,5.107808434938003e-5,0.0031252635,0,8.167018e-5,300.9650395711262,5.872959052014542,45.97852705498147,194.39124204024887,34.76440146642314,25.232545658292864,-0.18326191508247508,0.8899930367867152,2.8304822999999995,68783.84556601176,0.109190156973947,0.7097166180610657,5.1129913,0.39410896847645444,2.1545661,0.15989606082439423,1.1562096000000002 +1981,5.539335981414791,1.2528135487313492,0,0,6.577782229862206,1.2601898312568665,1.7391266,95.31219546000163,126.52811,53.97579542795817,16.187192,23.256973266601562,128.45086,11.349838097890219,13.920115,1.8424933552742004,8.637244699999998,174.73850377400717,271.00597,319.4201304117839,403.07178,7.849401632944743,158.51506,516.86109,548.7653757731119,5123.4643,1602.6506245930987,279.78942071631377,340.05894978841144,875.7816094417443,0,0,0.5049996227025986,1.96562,48.66220633188883,122.37567,1.075440430516513e-5,1.7112573999999998e-5,0,0,0.1399999943872293,0.32601335,0.0030000001109632044,0.11779446,4.560003956158956,4.4274361,0,0,5.510510430516055e-4,9.0259513e-4,1.2761924275158285e-4,0.038309698,0,6.9675129e-4,301.56203460693354,5.805407445505892,46.37436562130664,189.16861385900194,34.11541673008395,24.873295971397052,-0.1839029464091311,0.999993642171224,2.9541119,66688.82721964004,0.0757372745424995,0.8352456837892532,6.0090214999999985,0.4687449559569359,2.4863888,0.1800000655154387,1.1742814 +1982,5.477249508472458,1.2581454775126868,0,0,6.915258577522967,1.3425698479016621,1.6205522,96.45029131571452,129.38621,55.10939598083496,15.97381,27.298911412556965,128.57689,11.805440743764242,13.885459000000001,2.144632577896118,9.2748324,183.27747344970703,277.72577,335.1432698567708,391.79861,7.934991518656413,159.18065000000001,532.93449,548.9834696451823,5083.3728,1618.7305399576821,287.6693153882337,340.64394124348956,967.4292982868147,0,0,0.5972496171792349,1.6573363999999997,52.764092127482094,125.26367,1.2755718368377226e-5,-8.228379000000001e-5,0,0,0.1600000001490116,0.33083911,0.0020000001228860733,0.22216908,4.970003763834636,3.5575865,0,0,5.535904541223621e-4,8.9426293e-4,2.6965544202539604e-4,0.066661524,3.741915871084226e-6,0.0015785006,302.18704223632807,6.043062727559764,47.66689067623099,206.8844647776702,34.15609140912993,28.272205714382924,-0.1845634619404803,1.1199926137924194,2.9550432,65532.301753925305,-0.15641584008740989,0.9728992034991583,6.4693449,0.5532129456599554,3.0131287,0.2000000737607479,1.352411 +1983,5.483062192797363,1.4330241763538591,0,0,6.625402213840496,1.4098998308181763,1.8456854,97.67579015096028,130.75988999999998,56.16269588470459,16.384525,30.830673376719158,150.74703,12.194235563278198,15.564841,2.4999918937683105,9.057039,191.16732279459634,353.29433,352.50609588623047,385.70972,8.019996364911398,160.09108999999995,547.19948,549.1685434977213,5047.3484,1632.620147705078,281.617658355317,342.26594797770184,862.0214943304857,0,0,0.672999694943428,1.3378778,56.786487897237144,129.4055,1.1691284877694367e-5,-2.7098867e-5,0,0,0.17999999349315962,0.33559498,0.011000000212031106,0.09748991,5.270004232724507,3.8040369,0,0,5.561298603424802e-4,8.871233e-4,0.0029999999581680945,0.024088349,3.1704332892938204e-5,0.0020178464,302.84204101562494,6.065834079500119,47.64540210423812,183.83582233478342,33.285128980692804,24.459513427275525,-0.18530513482030356,1.2399930556615193,3.2014371,64552.41617363238,-0.6775945263802521,1.144959529240926,6.0034055,0.651974951227506,3.8198142,0.21950007850925127,1.378774 +1984,5.619005090796103,1.4612248534423995,0,0,6.8150189551184415,1.4820398290952046,1.954181,98.93998591105144,134.9934,57.26739501953125,14.927399,34.79922644297282,167.86607,12.642924229303995,17.177695999999994,2.8499913215637207,10.537606,199.96714146931967,352.61795,366.79923248291016,438.30954,8.103740215301514,162.15076000000005,546.6524,549.3226318359375,5054.1956,1643.5008544921873,285.00304516787423,344.00794728597003,889.7020107049092,0,0,0.7217137465874354,1.2391705,60.742489178975426,137.14096999999998,3.96903745780719e-6,8.659051799999999e-5,0,0,0.19999999552965164,0.48356263,0.017000000225380063,0.027417786,5.530004461606343,4.8805394999999985,0,0,5.586692617119601e-4,8.9282411e-4,0.005000000004656613,-0.04014793,7.402270027038564e-5,0.0043071608,303.5280380249023,5.996375963335671,48.69349353439086,189.33352573144714,34.32486538148798,25.326276357675727,-0.1860468077001268,1.3599929014841716,3.5706830000000003,65309.89915296105,-0.2289078353791943,1.295939067999522,6.3412338,0.7757129470507304,4.798725900000001,0.24612508217493692,1.1329507 +1985,5.678895002751574,1.4997437788078463,0,0,6.922761988583978,1.5687698423862457,1.930951,100.18199602762859,138.44665,58.3761952718099,13.863624,39.652387619018555,191.20489,13.144109964370728,18.042992,3.187290926774343,12.093107,214.03345489501953,321.80334,383.26725006103516,487.46531,8.199989477793375,164.43684,559.24581,549.4526824951172,5072.7864,1655.9104715983071,285.6752697155976,345.4589538574219,906.9368199480392,0,0,0.7549997667471567,1.4290266,64.80020904541016,148.48134,8.568774148898228e-6,2.1606645e-4,0,0,0.21999999756614366,0.56320674,0.01700000014776985,0.085787554,5.8700045347213745,5.2553933,0,0,5.612086727827167e-4,9.0213205e-4,0.003999999995964269,-0.006224988000000001,1.1811007364788868e-4,0.012966035,304.2470397949218,5.996554239215087,49.41563613245486,190.4568856663394,34.861509200143864,25.83243997550224,-0.18678848057995007,1.4999912877877553,3.6945657,65474.087150351224,-0.011715700559269468,1.4159816404183705,7.686271400000001,0.9354569266239802,5.5359652000000015,0.26520808786153793,1.1864916 +1986,5.784334367519234,1.5301135694160417,0,0,7.0137036621234845,1.6502498388290405,2.0447892,101.67297554016113,134.66824,59.28379599253336,14.595216,44.608107248942055,226.48099,13.69979476928711,17.343175,3.6499905784924827,11.156209,222.3396848042806,363.19165,402.41221872965497,561.19711,8.294995307922363,166.53505,605.54478,549.5567423502604,5079.9439,1668.7911478678384,290.8084487539618,346.90294647216797,914.5218093193049,0,0,0.7879217316706976,2.1480617000000004,69.13964017232259,163.26271,1.2043192891534696e-5,2.1612991e-4,0,6.836250999999999e-4,0.2599999929467837,0.57273931,0.018000000156462193,0.044305139,6.3100047906239825,5.6896951,0,0,5.637480790028349e-4,9.0805661e-4,9.999999941404287e-4,0.03179967,2.603702887427062e-4,0.028102657000000003,305.0020370483398,6.123193922877899,50.21167873708514,195.66522346659664,35.24652923018162,25.9121168517712,-0.18753015345977328,1.6499911447366078,3.9411958,65479.271483930934,-1.4658150072006793e-4,1.5741113722324371,8.619926699999999,1.1329799195130665,5.6626388,0.2791670933365822,1.453026 +1987,5.942054872368608,1.51568933473453,0,0,7.200139154017295,1.7349598209063213,2.1868179,103.0739803314209,140.05915,60.248695373535156,15.122737,50.83082103729248,234.71551,14.25549602508545,15.986362,4.105550249417623,11.176584,233.33564122517905,377.17492,423.347417195638,543.59326,8.389330943425497,168.70781000000005,636.85035,549.6467793782552,5087.8651,1683.749786376953,295.0485146932872,348.77494557698566,952.061149189977,0,0.0011578226,0.8391895890235901,3.2631248,73.98439725240071,177.25124,2.903536521140874e-5,5.821475400000001e-5,0,0.0048785865000000005,0.28999998917182285,0.79616882,0.022000000191231567,-0.099665792,6.710005084673564,6.538606400000001,0,0,5.662874803723147e-4,9.1426979e-4,0.0030000000745834163,0.0083239765,6.904602487338707e-4,0.044783508,305.7930348714192,6.350228641755308,51.33101365968814,203.58517005144802,36.43815818195585,27.251867169865875,-0.18827182633959655,1.7999912301699321,4.3106697,66721.09399661662,0.062169756099630324,1.7711602052052815,9.1692428,1.346309910217921,5.241268700000001,0.29950010031461716,1.7364871 +1988,6.133362796862496,1.5150947746951446,0,0,7.39663506024057,1.8262398143609364,2.2384091,104.16901715596516,134.89421000000002,61.255194981892906,15.295333,57.8955987294515,225.34631,14.756715536117554,14.052169,4.49442990620931,12.063592,244.82575480143228,324.40759,449.32311248779297,433.01446,8.48999317487081,171.54521,645.54402,549.7208353678385,5119.7697,1693.940928141276,298.68549508376714,351.2759323120117,950.4151874289803,0,0.34924766,0.9504593312740326,5.2661192,79.53813616434734,185.3279,3.188543450960424e-5,0.021115007,7.708864601833436e-5,0.06849384,0.32999999324480694,0.88192316,0.02000000032906731,-0.07366243900000001,7.220005750656128,6.627813900000001,0,0,5.688268914430713e-4,9.2784993e-4,0.0030000005305434265,0.034690666,0.001493088435381651,0.060567348,306.624043782552,6.188309996026968,51.72677741877051,203.53222760721053,37.7977892884268,27.185066126098715,-0.18901349921941984,1.9699894785881042,4.6802608,67287.48390226346,0.1102479335964212,1.9729202787081401,10.094657000000002,1.548219899336497,4.7030971,0.32425010204315186,1.770198 +1989,6.211121149262674,1.53212989041127,0,0,7.320233667650651,1.9231797953446705,2.2075539,105.88293329874675,105.50252,62.29139518737793,15.212081,64.49583530426025,212.83728,15.212542057037354,10.119863,4.9499895970026655,11.292045,256.58931223551434,246.46809,468.0721740722656,357.7641,8.589393774668375,174.22363000000001,713.52261,549.7808532714844,5139.3872,1705.6304423014321,302.164174394028,352.89392344156903,930.8467754620427,1.1203966126534699e-4,0.72136249,1.1215790609518688,10.730464,85.39031410217285,189.56819,3.284409467596561e-5,0.31476996,5.449304395976166e-4,0.67304705,0.38999999314546585,0.82629641,0.014000000199303031,0.054397397,7.7600061893463135,6.6572182,0,0,5.713662976631895e-4,0.0060655338,0.0030000010544123747,0.077007399,0.002615397213958204,0.07614778700000001,307.8310241699218,6.264529714671574,52.06403696267891,200.31650520357337,38.13825088093059,26.33140676747172,-0.18975517209924306,2.149989446004232,5.0499664000000015,67312.93275191178,0.14261546154697627,2.1840911904970803,10.904862,1.7223599056402843,4.3864096,0.35575009882450104,1.6702493000000005 +1990,6.186811699323791,1.4450968870559717,0,0,7.508271531599201,2.018889824549357,2.1076967,106.4680290222168,86.426532,63.32119528452555,14.407865,70.81883303324382,176.8456,15.573984305063883,7.0905085,5.40554936726888,10.591201,263.08519744873047,208.25652,482.7560577392578,333.97703,8.694339831670126,176.36773,658.40311,549.8308563232422,5137.248,1717.400675455729,305.27255465213847,354.07293192545575,940.5626313485474,0.03376847004983574,1.5203264,1.4477779567241669,17.768055,90.98358980814616,192.30881,0.002091195086904918,0.96053501,0.0077552789346858235,1.7208698,0.43999998768170673,0.69729352,0.014000000121692816,0.18589003,8.280006090799967,6.6838429,0,0,5.739056990326693e-4,0.02696988,0.005000001498653243,0.018320285,0.004025665286462754,0.091767095,308.68303680419916,6.277152282827942,52.52170067846646,203.0212309920509,38.25721546450458,27.365368354710768,-0.19049684497906635,2.3499877055486045,5.1743108,67094.07179291768,0.14079531171550244,2.425140698750814,10.051338,1.8762499292691548,4.2741531,0.38000010202328366,1.7373255 +1991,6.190131151726644,1.6368601104218738,0,0,8.011536269395817,2.113149801890055,1.982897,105.85304832458496,85.14222600000002,64.34609444936116,12.924815,76.4864673614502,120.64491,15.752021392186483,6.9542228,5.799989104270935,10.775591,267.79015350341797,159.81288999999995,493.7842102050781,286.27307,8.804992516835531,177.30503000000004,474.47964,549.8710784912109,5089.9323,1729.3305562337237,318.7311920514537,355.35293833414715,1129.9838832525568,0.06648059604534258,6.9394223,2.221526563167572,22.06288,96.40249379475911,185.52075,0.03069222376992305,1.727734,0.07582558194796245,2.7251313,0.48999999711910885,0.70613627,0.017000000070159633,0.24819351,8.820006291071573,7.057256599999999,0,0,0.0016515196378653247,0.058141591,0.008000002048599223,-0.073018715,0.005709253367967904,0.10715402,309.23303731282545,6.34494559215869,54.26130892359681,244.42863411026067,39.69249193256378,34.394938327949504,-0.1909628409298788,2.5599875847498574,5.29866,66472.31501729792,-0.4148185776434353,2.665145973364512,9.6580528,2.020599921544393,4.1585749,0.40500009556611377,1.6735462 +1992,6.145912972932644,1.683057085276074,0,0,7.364888993342175,2.20022984345754,1.9500444,104.98307355244954,85.437279,65.2670955657959,11.907588,80.40375582377116,74.361852,15.899934848149618,5.3089984,6.199989080429077,10.120439,270.7759323120117,106.91739,505.86798095703125,227.43518,8.91499400138855,179.3441,361.04368,549.9049123128256,5056.1355,1740.1392618815103,299.4017954744593,356.22894795735675,913.3754185979066,0.1707762268682321,22.26499,3.3005158503850303,24.233416,101.49227841695149,194.06099999999998,0.09482813626527786,2.4767485,0.19600565483172736,4.0250116,0.5199999809265137,1.0018637,0.026000000691662233,0.18194194,9.340006430943808,7.910261500000002,0,0,0.005856849117359768,0.088755914,0.0050000026628064615,-0.030822369,0.007651571494837602,0.12273589,309.7250391642252,6.358476438557756,52.37759098866641,198.23847301394608,38.71717596139569,26.648976889112614,-0.19129755052506844,2.769987682501475,5.4230636,64223.92565128395,-1.6835767484157795,2.8172022501627603,10.784362,2.161349892616272,3.8127392,0.4305000975728035,1.4631107 +1993,6.193394814861415,1.5467274300386273,0,0,7.531122846620259,2.2837098240852356,1.9984803,104.32304191589355,84.458339,66.09139442443848,11.381334,82.41623814900716,50.567396,16.066639582316082,3.463778,6.607129295667012,8.677164900000001,271.1687749226888,84.3251,511.9880956013997,231.9618,9.027161439259848,179.76429,256.33383,549.941884358724,5078.4684,1743.1006876627603,299.4425140657421,356.92495981852215,941.8816353260038,0.7146161670486132,34.33223,4.47598530848821,22.551362,105.4173412322998,208.33854,0.19552044942975044,3.0949997,0.36491671949625015,11.967198,0.5699999282757441,1.5166355,0.0330000047882398,0.157163,9.94000768661499,8.353483800000001,0,0,0.01262219933172067,0.11880940000000001,0.0010666858239953096,0.042782191,0.009837979606042305,0.13825367,310.09905242919916,6.310752016783032,52.78275226171121,203.77578316226604,39.74372708975235,28.114996259780565,-0.19163226012025816,2.9899867177009583,5.424762,63195.55051984089,-0.8170844043492784,3.0058298110961914,11.612337,2.2925199468930564,3.3180441,0.4508330797155698,1.2514505 +1994,6.240067755470377,1.5037166846247065,0,0,7.8957327340876935,2.36793980995814,2.1430557,103.57006708780925,86.05046,66.87479654947917,11.006658,83.36027018229167,37.565451,16.09994300206502,4.6095776,6.955350279808044,8.163642999999999,269.62779235839844,85.893495,518.2140757242838,238.58315,9.131617546081543,178.03958,159.08791000000005,545.3847249348959,5003.2837,1748.620371500651,310.25183676250725,358.2539596557617,1060.282744333416,2.2383394837379456,45.287421,5.687364776929219,24.423112,110.94440905253093,237.88968,0.32772576560576755,3.5515517999999995,0.6123692641655604,24.558229,0.6399997919797897,2.3253155,0.03700000451256832,0.20390529,10.600008169809977,8.737967999999999,0,0,0.021451599275072415,0.14808425,0.002012556239302891,0.0083003343,0.012253877784435948,0.15358509,310.80802917480463,6.441827000222701,54.21042306521078,231.0503542937696,40.27137015559246,33.14335063351852,-0.1919669697154478,3.2099871834119162,5.549182599999999,61820.50123949212,-0.0813850082344821,3.2168917854626975,11.303115,2.4025299350420632,2.9604627,0.4654170672098796,1.1962062 +1995,6.3773864537253155,1.4860805049306975,0,0,7.813189501191085,2.4555798172950745,2.3880707,102.88904825846355,80.480245,67.62789662679036,10.682998,83.83788744608562,23.473127,16.137446244557697,5.7076242,7.249991933504741,7.674757700000002,268.1038513183594,86.264975,524.6570994059244,210.72453,9.13146940867106,180.13151000000005,95.783763,552.4202321370443,5016.3948,1755.2296244303384,305.40958889562864,360.2389551798503,955.0363061603086,3.747459292411804,51.095458,6.54466180006663,27.59918,116.0475304921468,230.3453,0.4816569561759631,3.8771223,1.649199257294337,36.211193,0.7599995483954748,3.4395305,0.04200000377992789,0.29614801,11.270008246103922,9.315257,0,0,0.031974499113857746,0.17780027,0.00400000410930564,0.0084622213,0.014884675852954388,0.16982122,311.2790552775065,6.504076135852905,53.416717880413046,206.47424846775004,40.45040793019892,29.71540753892105,-0.1923016793106375,3.429987053076426,5.6736625,60635.50706790533,0.08530772110638411,3.4390769600868225,11.011358,2.4911099076271057,2.8923304,0.475000041226546,1.0842597 +1996,6.511379278926775,1.470193984753465,0,0,7.686339550726493,2.5522598028182983,2.6638414,102.31104151407878,75.256035,68.36059633890788,10.505743,83.94530232747395,13.005309,16.249948978424072,4.6522227,7.557493487993876,5.5242189,266.7558415730794,85.278741,531.4079996744791,170.78176000000005,9.06367564201355,183.44400000000002,59.514335,537.3112080891927,5297.7083,1757.1905924479165,307.29120752307955,362.00496164957684,930.0218807197676,6.036929090817769,53.568363,7.866570234298706,26.00128,124.7284984588623,224.86947,0.6497871528069178,4.0579149,3.2318945129712424,48.538296,0.9399992177883784,4.501452099999999,0.04900001051525275,0.39044285,11.990008195241293,9.7707047,0,0,0.04382059909403324,0.20547879,0.002013620309298858,0.11353612,0.01771567389369011,0.23841137,312.29801940917963,6.542220103334365,53.42127728765462,200.87242078907184,40.45019229181408,28.71419152495162,-0.1926363889058272,3.6599862774213157,5.5527008,59650.01603284395,0.14569222560343534,3.602302074432373,10.510994,2.569999933242798,2.8654227000000003,0.48625003546476364,0.84755661 +1997,6.574573878777592,2.183313990263035,0,0,8.269788742717703,2.6610097885131836,2.8728436999999998,101.2420825958252,75.489912,69.06989606221516,10.417958,83.52113278706868,10.398164,16.362446784973145,3.7691062,7.813324570655823,3.4559389,265.2918523152669,86.34144599999998,534.9630432128906,160.63531,9.140432437260946,180.149,29.550907,542.7740173339844,5288.9251,1761.5010782877603,331.28891975653016,363.25195566813153,1204.992305406782,7.7147689660390215,55.76348100000001,8.959980805714926,29.370536,127.37702624003093,240.5221,0.8248193363348643,4.6266327,5.39930792649587,58.758537,1.2099987765153248,5.5717023,0.06000001293917497,0.427562,12.750008503595987,9.7952259,0,4.9588597e-5,0.05661919961373011,0.25820595,0.004000423466398691,0.1113431,0.02073227148503065,0.31501343,313.18303171793616,6.740456045264001,56.11803188775538,264.67515030448345,41.89315592193428,38.341382315947115,-0.19297109850101685,3.889986495176951,5.7834259,59868.27681505938,0.16690248873741567,3.780295729637146,9.824276800000002,2.650669972101847,2.8566852000000003,0.49000003685553867,0.76826308 +1998,6.590459870606787,1.5412452817195224,0,0,8.412226876444452,2.781449774901072,2.9899069,100.31604703267415,72.916263,69.77859687805176,10.335348,82.96492513020833,12.992477,16.399945735931396,3.9615346,7.95416518052419,2.9318362,263.8838653564453,86.348141,537.6670277913412,156.67666,9.254634141921997,176.1082,23.412636,570.7273610432943,5175.5355,1770.2906799316404,315.332621195414,365.9329554239909,1085.4305991966446,9.836338837941488,55.95678100000001,9.961479743321737,28.471196000000006,134.272824605306,234.46613,0.9994525363047918,6.9049469,8.110631505648294,70.04979200000001,1.5299981534481049,6.8917397,0.07300002624591191,0.54029666,13.540009021759033,10.02529,0,3.583493100000001e-4,0.06999999843537807,0.60512272,0.01000000579127421,0.06915097099999999,0.026339268311858177,0.38665542,313.90700531005854,6.446521520705138,56.589344323708055,232.31801820181306,42.33468433879227,37.81227830332195,-0.1933058080962065,4.1099876165390015,5.6031107,58604.367585517175,0.1710925825750941,3.8873608311017356,10.323837,2.724999964237213,2.701239,0.49000004182259244,0.76943857 +1999,6.661329053494626,1.3034304715400178,0,0,7.698162125432142,2.9081997672716775,2.9607505,99.330872853597,72.96355,70.47599538167317,10.216505,82.38263448079427,14.054175,16.44995387395223,3.9749853,8.04999581972758,3.1538842,262.5458628336589,82.703538,540.1430358886719,140.42543999999998,9.093777736028036,168.37661,18.420173,562.6231740315756,5112.4264,1778.199513753255,309.40837085260006,367.84497833251953,940.7006779859273,11.384798526763916,58.33870699999999,11.354286829630533,25.741051,138.68090184529623,252.31636,1.2204217116038005,8.6848445,11.121968984603882,91.978363,1.9399973253409069,7.9486502,0.08600003769000371,0.7424206999999999,14.300010919570923,10.07373,4.148790035666631e-6,0.0031081514,0.08999998929599921,1.0699013000000002,0.011000006149212519,0.13954925,0.03241546514133612,0.49435229,314.70898946126295,6.28115080714577,54.76937230485621,205.11187816433736,40.94720104039744,30.449171325383368,-0.1936405176913962,4.358643651008606,5.1676463,55523.54473764534,0.17324185027932018,3.9997291962305703,10.262658,2.8026700019836426,2.1509855,0.49000003188848495,0.7706312 +2000,6.893167303200749,1.2013380488633538,0,0,7.457347231717921,3.038709739844004,2.8153943,98.27196884155273,72.65140799999998,71.17349561055501,9.9231457,81.99841690063477,9.4043884,16.499963760375977,3.9867142,8.149996836980185,2.3476517999999995,261.1698455810547,76.330076,542.3829905192057,122.76605,8.829522927602133,165.25876,19.471227,552.0705413818359,5074.2696,1778.0101216634112,310.18680982649335,369.1249745686849,886.5647302341199,13.121398448944092,56.341686,12.102788925170898,25.730152,143.4614372253418,263.60627,1.603711913029353,10.640667,14.691894769668579,99.657424,2.429996371269226,8.598756300000002,0.10600005090236664,0.86319988,15.120010137557983,9.2978389,2.9456416086759418e-5,0.034006926,0.1699999620517095,1.411492,0.013000006632258495,0.2699959,0.040547359734773636,0.57423278,315.7589950561523,6.112229814393959,54.5095965154282,195.32415818527357,41.26362178323956,27.98197839802492,-0.19397522728658584,4.563808560371399,5.2735332,55661.00151337025,0.17458241694797966,4.127887845039368,9.480134800000002,2.8623799681663513,1.9694412,0.49000002940495807,0.77151922 +2001,6.95708692825445,0.961802096435875,0,0,7.591758768528899,3.162919799486796,3.0480682,97.35795720418294,70.65696899999998,71.8547960917155,10.593275,81.4894282023112,5.9590470999999985,16.54997984568278,3.2771364000000003,8.262498617172241,1.1600545,259.5498352050781,68.271466,543.1950124104818,111.64066,8.354893207550049,165.59900000000002,19.806901,542.7083333333334,5094.2258,1776.5307312011716,312.89637869980686,370.67298889160156,881.6703955806449,14.544998407363892,56.36878100000001,13.052591880162558,24.490463,149.25739415486655,261.60586,1.978332092364629,11.075295,19.702295621236164,96.243251,2.9699952602386475,9.8521252,0.132000050197045,0.94275566,15.880009412765503,8.984000300000002,2.597141228761757e-4,0.80619906,0.2699999349812667,1.6540308999999995,0.019000007305294275,0.6107305000000001,0.050659650626281895,0.63867332,316.4930165608723,6.188009183487292,54.709896387749005,196.1877828105409,41.3771755400566,27.8779984365221,-0.19430993688177556,4.776847044626872,5.3282102,56049.16642558323,0.17084303620462507,4.220908443133037,8.8337936,2.8942899902661643,2.3248261,0.49000003188848495,0.74608572 +2002,7.097947294929641,1.0706525114551886,0,0,8.046474186766174,3.2808697621027627,3.4534372,96.3429667154948,70.45667399999998,72.51259549458821,11.982167,80.81803385416667,3.1513602,16.5999755859375,2.420559,8.29999844233195,0.95011524,257.66879018147785,63.484809,543.6559855143229,101.90454,8.333909193674723,161.14055,12.302716,535.3501332600912,5096.5932,1778.960947672526,322.2788312475723,372.83499399820965,970.7244171943499,15.739598194758097,50.843174,13.693090518315634,25.156097,154.4252700805664,270.32175,2.527012268702189,12.214474,23.51545794804891,102.73275,3.5299941102663674,11.617585,0.15900006766120592,1.2107813,16.560010592142742,9.7208997,0.002832789449409271,2.9170651000000003,0.3899999012549718,2.8037817000000005,0.030000012057522934,1.313749,0.06128753939022621,0.73327062,317.1010182698567,6.359556247633107,57.07665954461615,218.4604141242816,41.898783266207694,33.80824328599571,-0.19464464647696525,4.990507483482361,5.4976481,55687.522360887495,0.17652225756277531,4.2806588013966875,8.3685909,2.9381799499193826,2.2797577,0.49000003188848495,0.67660085 +2003,7.424688347669062,0.9010419027374732,0,0,8.2416975979600835,3.4251197973887124,3.16329,95.34536170959473,69.839024,73.28449440002441,12.579882,80.10183588663737,5.7693016,16.59995237986247,1.7336337,8.320768594741821,0.74505988,255.41280873616537,62.27795500000001,543.3510030110677,97.844828,8.222527821858725,158.92828,10.122917,538.8634541829427,5113.7538,1783.5898132324216,328.12422419548386,375.41099802652997,944.7470786126371,16.890098412831623,44.441172,14.409090280532837,25.070909,158.99640528361002,287.30923,2.9139525095621743,15.640539000000002,27.517083009084065,117.40605,4.223822851975759,13.114832,0.1890000912050406,1.560512,17.260011196136475,11.005369,0.06715815638502438,5.226518,0.5027138615647951,4.785689700000002,0.060000043672819935,2.2356391,0.07306782963375251,0.85366012,317.73000590006507,6.4283053046514125,57.69037487838639,214.40339143057142,42.682165561174564,34.362181347359645,-0.19497935607215489,5.207866946856181,5.541719400000002,57641.72369815564,0.165150043379564,4.319008390108745,8.0831154,2.99712997674942,2.0262772,0.48882503310839337,0.60195554 +2004,7.812644316268693,1.0382131676166668,0,0,8.542465507294889,3.577999790509542,2.2029533,94.38845952351888,66.998563,74.13009516398112,12.194883,79.26674334208171,9.216749,16.590060075124104,1.4729968999999998,8.341978788375854,0.75667708,253.1937993367513,60.966802,542.8480021158854,87.654103,8.019330620765686,156.21655,9.7469995,537.7152353922526,5141.4447,1784.230285644531,338.9417722149104,376.9870020548503,945.5469500687323,17.334598859151203,49.135801,15.063492933909098,28.554887,164.7063954671224,307.5767600000001,3.5451226830482483,15.758879,31.54472287495931,125.65071,5.00792149702708,13.097501,0.23300011828541756,2.0510461,18.06001361211141,12.712613,0.23797391975919405,6.6512131,0.8247378170490265,5.4873038,0.12000008982916673,3.1186526000000003,0.08672221936285496,0.97410928,318.3570175170898,6.590470046881482,58.11358476694662,216.68728340618873,44.556855897235216,32.33033041098627,-0.19531406566734455,5.435196399688721,5.6480085,60340.85188935469,0.1719032893302405,4.3401593764623,7.526764599999999,3.035939951737722,2.1192661,0.4857220376531283,0.55294607 +2005,8.093491315549059,1.025657164253795,0,0,8.840128385718105,3.697199821472168,1.9480504,93.41565831502278,63.195607,74.98279317220052,11.060838,78.73161888122559,4.6297025000000005,16.54227288564046,1.8139658,8.346869071324667,0.58070615,250.9148038228353,60.33117900000001,542.1459757486979,71.956593,7.931297580401103,154.12291000000005,7.5405195,538.5567677815756,5209.9819,1783.360432942708,346.39555462360056,378.9070078531901,950.5924444363927,17.678198496500652,53.955471,15.682193517684937,33.447493,170.47949091593424,329.52471,4.231992959976196,16.143675000000002,36.60471884409586,126.49199,5.8813802401224775,12.434284,0.28500013550122577,2.365528,18.97001536687215,14.626529,0.46645688513914746,7.0791974,1.2757697900136311,6.3606922,0.21000011265277863,3.4180583,0.10239290756483872,1.0845927,319.1300023396809,6.6935794842136405,58.883410476258234,218.7880647839753,45.62238086061233,32.723990706702715,-0.19564877526253424,5.6560072501500445,6.2799143,62587.82671838024,0.14980785321635395,4.354827245076497,6.9433284,3.073349952697754,1.8947828,0.481325035293897,0.46971744 +2006,8.358134409609946,1.092642827822681,0,0,8.925648149522456,3.767239769299825,2.045423,92.3141638437907,60.048081,75.77629216512044,10.21735,78.12813186645508,0.6450640999999999,16.514484405517578,1.7510311,8.368909200032553,0.58710647,248.66479873657227,63.03720300000001,540.64996337890625,65.575271,7.679868618647258,152.41471,9.3190485,536.2959035237631,5272.2746,1783.421223958333,356.46968956461853,381.01000722249347,986.1510088892475,18.454998811086018,51.911598,16.647892634073894,36.489809,177.60554122924805,346.30497,4.8289631605148315,19.891066,40.86165841420492,133.41048,6.627838969230652,14.118518,0.3600001533826192,2.3531588,20.050018151601154,12.639849,0.7066208471854528,6.875404400000001,1.6065597534179688,8.3862482,0.32000014930963516,2.5592336,0.1196288987994194,1.1852524,319.9329986572265,6.875606952566932,60.37974252884005,229.89543951646962,46.63913373990392,34.3551466019379,-0.19598348485772396,5.891855637232463,6.9409178,63046.345147395674,0.12455411284421772,4.33484947681427,6.3118449,3.1184199452400208,1.5902358,0.47626903901497525,0.43579597 +2007,8.681148087085731,0.9662119668592635,0,0,9.284494092478702,3.864439765612284,1.7666157999999998,91.12946637471516,57.25715400000001,76.47559356689453,9.3272415,77.3146406809489,4.5089203,16.49068291982015,1.5545493,8.360188722610474,0.78280059,246.4138298034668,64.737513,538.4259847005209,61.623755,7.651655554771423,147.28895,9.6981304,544.8235321044922,5250.6823,1788.9513142903643,355.0225755363805,382.60301971435547,945.8695944358407,19.124198754628498,49.953532,17.730092525482178,37.109679,185.02057011922201,357.26506,5.509383638699849,26.595246000000003,45.3168420791626,127.25708,7.37440820535024,16.399738,0.4300001785159111,2.4154053,21.274523735046387,9.3262891,0.9124758193890253,6.6980995,2.1004197100798288,8.4029745,0.41000018020470935,2.7884,0.13823089003562927,1.2649376,320.64601389567054,6.596141361261144,60.965826091796124,219.70587066030026,48.13085999118788,33.27729799228883,-0.1963181944529136,6.164003173510234,6.9754073000000005,62641.35919619402,0.1214193886258194,4.309016704559326,5.7707437000000015,3.1368099649747214,1.7021554,0.46845003962516785,0.59162888 +2008,8.733139806444965,0.6683379874909382,0,0,9.091850913798911,3.9428598284721375,1.746034,89.87336858113606,56.837697,77.15499623616536,9.0353429,76.47364234924316,8.339533900000001,16.458677450815838,1.9164483,8.382678429285685,0.45696793,244.47682189941406,63.06087700000001,536.3339691162109,57.108479,7.470538298288981,144.47281,6.337644999999998,546.2872212727865,5191.6855,1798.4196472167966,360.4917104977002,384.739018758138,912.5104843071592,19.5464989344279,54.881457,18.928292592366535,33.091627,193.09755071004233,362.72449,6.4292839368184405,30.815622,49.719340324401855,138.28669,8.326615969340006,17.544095000000002,0.5000001961986223,2.6196596000000003,22.006818771362305,8.8123411,1.0804997682571411,7.076053,2.7087196509043374,10.669375,0.4322652171055476,2.7884,0.15781688069303831,1.3164863000000002,321.57499186197913,6.638276368451454,61.316441745117054,214.69549502704018,48.035076099905325,31.619011505170853,-0.1966529040481033,6.453542669614156,6.8835341,61275.77057569818,0.13327703444478306,4.247629324595134,5.5737514,3.1567599376042685,1.6171325,0.4623090426127116,0.63840472 +2009,8.584990106780188,0.7548632834009588,0,0,9.109514001671727,4.015999873479207,1.7995506999999995,88.57357406616211,55.35525300000001,77.73389498392741,9.6854874,75.92381922403972,5.7877004,16.42168601353963,1.6755174,8.389018853505453,0.38354940000000004,242.4608243306478,60.065148,533.7759806315104,54.788238,7.171112656593323,144.24254,3.7694324,539.8231658935547,5145.2658,1802.1011861165362,364.2003633816462,386.28002166748047,917.7292309352042,19.870198726654053,61.50634300000001,19.930792331695557,32.081369,200.3144874572754,366.5558,7.706023693084717,33.926872,52.765931129455566,160.10848,9.35536535580953,21.142804,0.5700002362330755,2.9666725,22.658213933308918,9.933600300000002,1.2225398023923237,7.852249400000002,3.002319614092509,16.223306,0.4763352448741595,2.9974,0.17747688045104346,1.4335011999999998,322.27500661214185,6.712782947167917,61.37795929686438,218.75811433708597,46.48309573333753,31.77247636618844,-0.19698761364329287,6.728324254353841,7.159861,58721.16171394653,0.1066842123978326,4.189547856648763,5.2570896,3.1835699876149497,1.7272846000000002,0.4620170295238495,0.47723148 +2010,8.97554368419623,0.8851100551119334,0,0,9.665129375647625,4.092629869778951,1.7742175999999998,87.3809585571289,56.090865,78.37379455566406,10.48947,75.33903121948242,4.4070317,16.415090084075928,1.4644148,8.386359055836996,0.65896445,240.45181020100912,58.86009,531.2819671630859,52.271203,7.125164190928142,142.6745,2.4614781000000003,535.3102569580078,5179.9719,1807.850667317708,370.8962527865861,388.71703084309894,953.2286302920015,20.67949867248535,65.20953100000001,20.536893049875896,29.851794,207.74554824829102,361.74691,8.963194449742636,35.069515,57.8515370686849,165.044,10.426983912785849,20.460881,0.650000254313151,3.1827017000000004,23.296514352162678,11.247607,1.3827498058478038,8.7778712,3.920989453792572,15.914528,0.5346282621224722,3.3098,0.19690187896291414,1.3375544,323.140993754069,6.708375367844256,62.4444721228101,224.60211210242653,47.318297037341715,34.61053251023121,-0.19732232323848264,7.010202924410502,7.2759031,58249.4552717192,0.1379875550624469,4.121598919232686,4.897554799999999,3.1960699955622354,1.8511656000000003,0.4581970274448395,0.39655186 +2011,9.255966259655072,0.9136545403955806,0,0,9.478876565579496,4.170369823773702,1.8467555,86.05878257751465,57.565927,79.04059473673503,11.056837,74.6382344563802,4.6237938,16.361384391784668,2.0468287,8.387009064356485,0.85601742,238.2458127339681,62.415615,528.532969156901,52.120722,7.106488426526387,140.42156,3.0036158,534.1656138102213,5252.9333,1813.0701904296873,372.6576831783338,390.9440205891927,906.7673675143252,21.561198711395264,67.69059200000001,21.354194005330402,28.645628,214.5593744913737,366.94427,10.464804887771606,43.330418,62.84794902801514,190.47655,11.92148502667745,22.158614,0.7400002578894297,3.410604,24.134215990702312,12.498165,1.555159757534663,9.4654578,5.171979467074077,20.415233,0.5557872851689657,3.5841,0.21967886885007223,1.1291345,324.15898386637366,6.648935415452754,62.39874927347722,218.62875398112044,48.492221562223264,32.518259270416976,-0.19765703283367228,7.307322184244792,7.4656928,58834.52201769484,0.1090569133516887,4.04886809984843,4.3361773,3.2309599916140237,2.096153,0.450772022207578,0.39105944 +2012,9.386649744945927,0.9706890780006704,0,0,9.705285171316014,4.244799852371216,1.794986,85.01424598693848,59.464919,79.78919410705566,9.6609456,73.97862943013509,5.4529267,16.34028704961141,2.0520518,8.405529419581095,0.7168607,236.20683797200522,70.235225,525.833974202474,53.35878,6.98785674571991,136.71475,3.0096674,537.6538136800131,5232.3317,1815.2612304687498,380.80976664436446,393.0159912109375,949.6022183538887,22.543598651885986,63.311547,21.61989386876424,25.468261,220.10840479532877,356.29002,11.74120569229126,45.81505,67.7508716583252,205.00564,12.84508458773295,21.423000000000002,0.8300002614657084,3.2771162000000005,24.988317330678303,12.591587,1.750789761543274,9.054248,5.6421693166097,24.0671,0.6353292663892111,3.9269,0.23203588897983232,0.98551995,325.0049921671549,6.7427966320324675,63.84845417053954,229.10693623998705,48.176745092515574,35.82690195539086,-0.197991742428862,7.598473310470581,7.7062836,57925.01408286904,0.13867518125293046,3.9642380078633628,3.8379813,3.252539952596029,1.7328717,0.44370101888974506,0.41594871 +2013,9.65939649634906,0.9186575700100624,0,0,9.560553735096205,4.328779697418213,1.6324652,83.89107831319173,62.512861,80.53269322713216,8.3027436,73.30493418375652,6.5167934,16.327280203501385,1.9408617,8.421289602915445,0.61330322,234.38086700439453,75.740842,523.1149698893229,54.819887,6.848844488461812,133.39273,1.8384424,539.620361328125,5231.2321,1822.580841064453,381.59439281758614,395.72497812906903,901.2387566412425,23.414698759714764,59.817791,22.207694212595623,19.467118,226.13036346435547,342.89828,13.946606318155924,38.8888,74.7700621287028,202.01825,14.522682428359985,23.8069,0.9300002753734589,2.9986006,26.02762222290039,11.604213,1.9295397400856018,9.7859,7.50248924891154,21.452891,0.6930242776870728,4.2254,0.2427388938764731,0.87225171,325.91899108886713,6.847910646098343,63.650976650406456,219.3811792508812,47.50620674450057,33.245565827085585,-0.19832645202405166,7.910870313644409,7.686158,57413.51786587013,0.15767154312883705,3.8617884318033853,3.5745493,3.305999994277954,0.96258078,0.43652602036794025,0.44442215 +2014,9.719224641485487,1.0957648183627096,0,0,9.744379658087517,4.398729681968689,1.6517,83.06993166605632,53.5475,81.09249051411946,9.8735,72.71072514851888,2.8024,16.306567827860516,1.6696,8.429009358088175,1.114899,233.07986958821616,54.9365,520.5809682210287,28.9612,6.6860902309417725,133.6791,1.2625,539.5420227050781,5358.4982,1831.470998128255,387.873539205888,397.5469792683919,964.047618150183,23.809098561604817,59.82,22.075694402058918,22.47,229.5420659383138,358.8813,15.355007727940878,57.1243,80.51572863260905,200.0249,15.25278091430664,25.2487,1.0056702643632889,3.5393,26.890435059865315,12.991,2.047369738419851,10.1025,8.336968978246054,30.4858,0.7650303095579147,4.4701,0.24726289386550585,1.1516,326.98799133300776,6.916164550612366,65.0368536583283,233.52551800560903,47.385237858595374,36.145821385036584,-0.19866116161924133,8.221433083216349,7.8784,57093.261416151574,0.13977836334337682,3.7536577781041465,3.4810000000000003,3.2976099848747253,1.2299,0.431062030295531,0.3854 +2015,9.724603236619341,0.9598830811179276,0,0,9.727423576882975,4.480125069618225,1.57,82.11866823832194,47.5476,81.8342997233073,10.8699,72.07452011108398,0.8742,16.297698497772217,1.6696,8.46001680692037,1.6714,231.45183563232422,43.5734,518.0192362467448,14.6096,6.667515595753987,133.82299999999998,0,549.8638407389323,5404.8069,1841.92241414388,388.0727956633219,399.9493891398112,934.3498846847756,24.22537136077881,59.82,22.050126552581787,22.47,233.6949831644694,358.8813,17.758116245269775,78.7906,84.7739855448405,201.9534,16.744826078414917,32.381,1.0912393530209858,3.6633,27.94642512003581,14.4857,2.2243289152781167,11.7285,9.834727128346762,38.5792,0.8709225406249365,4.6492000000000004,0.2528697003920873,1.1516,328.17960611979163,6.937624392238832,65.27970313424451,227.24481931953318,47.348771783802036,34.74602422800083,-0.19899587121443105,8.568472703297934,8.02,50464.18814475436,0.12580052700903913,3.6527328491210938,3.2933,3.284418006738027,1.3378,0.4261275604367256,0.3481 +2016,9.835465014443445,0.844851276544465,0,0,9.782158760368375,4.563908616701762,1.54872,80.868988037109375,45.017160000000004,82.689117431640625,10.607422419999999,71.4100399017334,0.78156,16.274217128753662,1.515231454,8.488823413848877,1.61422146,229.5926055908203,41.88082,514.5848337809244,12.88774,6.8842053810755415,133.43352,0,563.020273844401,5377.54322,1851.5942281087237,396.977744048929,403.1169611612956,938.7207093417517,24.52680730819702,60.8428786,22.259799003601074,21.990155599999998,237.7288449605306,351.625206,21.18809429804484,85.38394,90.27671686808269,195.36684,19.401511192321777,34.04544,1.2003816366195679,3.64859498,28.906192779541016,11.92944,2.4407403071721396,12.1174182,12.709800879160563,31.77122,0.9575190742810568,4.497569260000001,0.26552995791037876,1.086787196,329.07597351074213,6.963399306934171,66.0504184973316,227.88365487356862,47.18627692929528,35.02706044940206,-0.19933058080962068,8.884455839792887,8.00504,49204.22589302376,0.11182269067470146,3.547180493672689,3.07158,3.2989591161410012,1.29166,0.4188620348771413,0.33428 +2017,9.946326792267548,0.7298194719710025,0,0,9.836893943853775,4.604879180590312,1.5274400000000001,79.52129300435384,42.486720000000005,83.12951215108235,10.34494484,70.57014846801758,0.68892,16.21771017710368,1.360862908,8.531164328257242,1.55704292,226.3097178141276,40.18824,508.8199412027995,11.16588,6.581218043963115,133.04404,0,557.0958353678385,5350.2795399999995,1875.3197021484373,405.8826924345361,405.74296315511066,943.0915339987279,24.887106895446777,61.8657572,22.13089911142985,21.5103112,240.99987411499023,344.369112,23.277893861134846,91.97728000000001,95.80340194702148,188.78028,20.6254137357076,35.70988,1.2754012842973073,3.63388996,29.83809518814087,9.37318,2.6055002411206565,12.5063364,13.146400451660156,24.96324,1.023070052266121,4.345938520000001,0.27433298031489056,1.021974392,329.7819747924804,6.989174221629511,66.8211338604187,228.52249042760405,47.023782074788535,35.30809667080329,-0.1996652904048104,9.180607080459595,7.99008,47944.26364129315,0.09784485434036376,3.43576047817866,2.8498599999999996,3.3043991923332214,1.24552,0.4108480264743169,0.32046 +2018,10.05718857009165,0.6147876673975399,0,0,9.891629127339174,4.670729319254558,1.50616,78.11829439798991,39.95628000000001,83.83631134033203,10.08246726,69.81604131062825,0.59628,16.17810805638631,1.206494362,8.575854063034058,1.49986438,223.6417121887207,38.49566,504.2629089355469,9.44402,6.571952025095622,132.65455999999998,0,556.9293924967448,5323.01586,1893.0016276041665,414.7876408201433,408.5569585164388,947.462358655704,25.253907362620037,62.8886358,22.13499879837036,21.0304668,243.55290095011392,337.113018,26.83599392573039,98.57061999999999,99.75603866577148,182.19371999999998,22.65611473719279,37.374320000000004,1.3648312191168468,3.6191849400000002,30.606096585591633,6.81692,2.797560175259908,12.8952546,13.803100347518921,18.15526,1.0758000612258911,4.19430778,0.281350980202357,0.957161588,330.5289738972981,7.014949136324851,67.59184922350578,229.1613259816395,46.86128722028178,35.58913289220452,-0.2,9.503506342569986,7.9751199999999995,46684.301389562555,0.08386701800602607,3.327050487200419,2.62814,3.3077791730562844,1.1993800000000001,0.4034980262319247,0.30663999999999997 +2019,10.168050347915754,0.4997558628240773,0,0,9.946364310824574,4.735669255256653,1.48488,76.66849581400554,37.42584,84.52521133422852,9.81998968,69.0663407643636,0.50364,16.132907390594482,1.052125816,8.61820419629415,1.44268584,220.94771194458008,36.80308,499.6559117635091,7.722159999999999,6.562195936838786,132.26507999999998,0,555.6556142171224,5295.75218,1912.561340332031,423.6925892057504,411.3399607340495,951.8331833126801,25.64010715484619,63.9115144,22.1134991645813,20.5506224,245.43892542521158,329.856924,30.601293404897053,105.16396,103.07932345072429,175.60716,24.764015356699627,39.03876,1.4513312379519145,3.60447992,31.15429751078288,4.26066,2.9832401871681213,13.2841728,13.641600211461386,11.347279999999998,1.1172100603580475,4.04267704,0.2864999820788701,0.892348784,331.27597300211585,7.040724051020191,68.36256458659287,229.80016153567493,46.698792365775034,35.87016911360575,-0.19988798027978674,9.825696388880411,7.96016,45424.33913783195,0.06988918167168841,3.2169004877408347,2.40642,3.3091992139816284,1.15324,0.396084023018678,0.29281999999999997 +2020,10.278912125739858,0.38472405825061473,0,0,10.001099494309974,4.799679239590962,1.4636,75.17949803670247,34.8954,85.19641049702962,9.5575121,68.32124137878418,0.41100000000000003,16.082906246185303,0.89775727,8.658293883005777,1.3855073,218.22970708211264,35.1105,495.013910929362,6.0003,6.552964687347412,131.8756,0,554.076161702474,5268.4885,1933.8615214029946,432.5975375913575,414.10096486409503,956.2040079696562,26.04190715154012,64.934393,22.071499188741047,20.070778,246.8269297281901,322.60083,34.56809266408285,111.7573,105.82043011983235,169.0206,26.947916348775227,40.7032,1.5350212156772614,3.5897749,31.483598709106445,1.7044,3.1635901927948,13.673091,12.805299997329712,4.5393,1.1486300627390544,3.8910463,0.28989898413419724,0.82753598,332.02097320556635,7.06649896571553,69.13327994967996,230.43899708971037,46.53629751126828,36.15120533500698,-0.2002950071407014,10.147206465403238,7.9452,44164.37688610135,0.05591134533735071,3.1060304641723633,2.1847,3.308749258518219,1.1071,0.38861901809771854,0.27899999999999997 +2021,10.457424764745575,0.3724463889357889,0,0,10.016411913532899,4.8627593119939165,1.48085,73.65859858194987,33.28538,85.84981155395508,9.61612159,67.58124033610027,0.37899000000000005,16.028706073760986,0.833926213,8.696213881174723,1.342148655,215.49370447794595,33.879090000000005,490.3509114583333,5.50149,6.544347643852234,132.19132,0,552.4449055989584,5274.57629,1956.771494547526,437.1027473162811,416.8429590861003,949.8055016829052,26.455807367960613,63.8401921,22.01349925994873,19.2265454,247.84998830159506,304.67177,38.73089122772217,133.763073,108.02481269836426,183.22632000000002,29.206718762715656,48.524420000000006,1.6160013576348622,4.02350089,31.595199426015217,1.6163699999999999,3.33948024113973,16.2482366,11.41130002339681,4.30485,1.1712300380071003,4.218079250000001,0.2916639869411786,0.8576092219999999,332.7659784952799,7.189825204299685,69.84087376339784,230.2554061230882,46.48606469383002,36.04762682577146,-0.20068904513403885,10.46790631612142,7.9875,44239.72152047861,0.041933509003013035,2.9950804511706033,2.06237,3.3065293232599893,1.07222,0.38112201790014905,0.26903 +2022,10.63593740375129,0.36016871962096303,0,0,10.031724332755823,4.92574926217397,1.4981,72.11220041910808,31.67536,86.49631055196126,9.67473108,66.8465404510498,0.34698,15.97090514500936,0.770095156,8.73206353187561,1.29879001,212.74170303344727,32.64768,485.6759084065755,5.00268,6.5470802783966064,132.50704,0,551.8312072753906,5280.6640800000005,1980.3113708496091,441.60795704120477,419.61095937093097,943.4069953961541,26.84280761082967,62.7459912,21.924899101257324,18.3823128,247.86106872558594,286.74271,43.459290186564125,155.768846,110.31132634480794,197.43204,31.75482193628947,56.34564,1.7020615140597026,4.45722688,31.594598929087322,1.52834,3.556940277417501,18.823382199999998,9.897239923477173,4.0704,1.1950100859006245,4.5451122,0.29297198355197906,0.887682464,333.5209757486979,7.313151442883839,70.54846757711572,230.07181515646602,46.43583187639177,35.94404831653594,-0.20107009425979916,10.789206504821777,8.0298,44315.06615485587,0.02795567266867536,2.88459046681722,1.9400399999999998,3.302629292011261,1.03734,0.37360502034425735,0.25905999999999996 +2023,10.814450042757008,0.3478910503061372,0,0,10.047036751978748,4.989479303359985,1.51535,70.54630343119304,30.065340000000003,87.14681180318196,9.73334057,66.11744054158528,0.31497000000000003,15.909804503122965,0.7062640990000001,8.765883445739746,1.255431365,209.97670237223306,31.41627,480.99791208902997,4.50387,6.563832084337871,132.82276,0,552.5509948730469,5286.75187,2003.5213826497393,446.1131667661284,422.4419581095378,937.008489109403,27.169407685597736,61.6517903,21.79349931081136,17.5380802,246.40309524536133,268.81365,49.1103884379069,177.774619,113.2552884419759,211.63776000000001,34.80192502339681,64.16686,1.8007916510105133,4.89095287,31.586798985799152,1.44031,3.856290320555369,21.398527799999997,8.624449968338013,3.83595,1.2288500567277272,4.87214515,0.29492198179165524,0.9177557059999999,334.29497273763013,7.436477681467995,71.2560613908336,229.88822418984387,46.38559905895352,35.84046980730042,-0.20143815451798225,11.112006664276123,8.072099999999999,44390.41078923313,0.013977836334337678,2.7750204205513,1.81771,3.2971293131510415,1.00246,0.3660820201039314,0.24908999999999998 +2024,10.992962681762723,0.3356133809913113,0,0,10.062349171201673,5.05393918355306,1.5326,68.96640268961589,28.45532,87.80121103922527,9.79195006,65.39404042561848,0.28296,15.845903952916464,0.642433042,8.797773361206055,1.21207272,207.20170211791992,30.18486,476.3239110310872,4.00506,6.584262092908223,133.13848,0,553.6725514729818,5292.839660000001,2026.4313456217446,450.61837649105206,425.334955851237,930.6099828226519,27.44310728708903,60.5575894,21.627499103546143,16.693847599999998,243.91412734985352,250.88459,55.655086835225426,199.780392,116.80707740783691,225.84348,38.33832836151123,71.98808,1.911831796169281,5.32467886,31.571899096171062,1.35228,4.227680404980977,23.9736734,7.550049980481465,3.6014999999999997,1.2716300785541534,5.1991781,0.2974749803543091,0.947828948,335.0889739990234,7.55980392005215,71.96365520455147,229.7046332232217,46.33536624151526,35.736891298064904,-0.2017932259085882,11.436506589253744,8.1144,44465.75542361039,0,2.6667904257774353,1.6953799999999999,3.2901093562444053,0.96758,0.35856401920318604,0.23911999999999997 +2025,11.17147532076844,0.3233357116764855,0,0,10.077661590424597,5.119149287541707,1.5498500000000002,67.3774045308431,26.8453,88.45961125691731,9.85055955,64.67653973897298,0.25095,15.779603560765585,0.578601985,8.827803055445353,1.168714075,204.41970443725586,28.95345,471.6609115600586,3.50625,6.605442444483439,133.45420000000001,0,554.8954366048177,5298.92745,2049.0613199869786,455.1235862159757,428.28996022542316,924.2114765359008,27.670207341512043,59.4633885,21.4336994489034,15.849615,240.72613525390625,232.95553,63.064785957336426,221.78616499999998,120.92583338419597,240.0492,42.35453097025553,79.80930000000001,2.0348519384860992,5.75840485,31.54979928334554,1.26425,4.662480354309082,26.548818999999998,6.638850092887878,3.36705,1.3223500748475392,5.526211050000001,0.3005899836619695,0.9779021899999999,335.9029744466145,7.683130158636304,72.67124901826935,229.52104225659951,46.285133424077,35.633312788829386,-0.20213530843161692,11.762606779734293,8.1567,44541.100057987656,0,2.5602304140726724,1.5730499999999998,3.2816593647003174,0.9327,0.3510630205273628,0.22914999999999996 +2026,11.349987959774158,0.3110580423616597,0,0,10.092974009647524,5.185089190800984,1.5671000000000002,65.78370475769043,25.235280000000003,89.1219113667806,9.90916904,63.96503988901774,0.21894,15.71120309829712,0.5147709280000001,8.856033166249594,1.12535543,201.6337038675944,27.72204,467.01391347249347,3.0074400000000003,6.626572807629903,133.76992,0,556.1234944661459,5305.01524,2071.4113362630205,459.6287959408993,431.3079605102539,917.8129702491498,27.85660696029663,58.369187600000004,21.218299706776936,15.0053824,237.09118779500326,215.02647000000002,71.31208419799805,243.79193800000002,125.57053438822429,254.25492000000003,46.8413340250651,87.63051999999999,2.169512073198954,6.192130839999999,31.520599524180096,1.17622,5.1531403462092085,29.123964599999997,5.862000068028768,3.1326,1.3801300823688507,5.853244,0.30423198143641156,1.0079754319999998,336.73597462972,7.806456397220459,73.37884283198724,229.33745128997734,46.234900606638746,35.52973427959387,-0.20246440208706856,12.090306599934896,8.199,44616.444692364916,0,2.455630381902059,1.45072,3.2718394001324973,0.89782,0.34358901530504227,0.21917999999999999 +2027,11.528500598779873,0.2987803730468338,0,0,10.108286428870448,5.251769304275513,1.5843500000000001,64.18950494130452,23.625260000000004,89.78821182250977,9.96777853,63.259538650512695,0.18693,15.641002575556437,0.45093987100000005,8.882533073425293,1.081996785,198.84470240275064,26.49063,462.3859176635742,2.50863,6.647443254788716,134.08564,0,557.3265838623047,5311.10303,2093.511291503906,464.13400566582294,434.386957804362,911.4144639623987,27.971706867218018,57.2749867,20.965399583180744,14.1611498,232.50226084391275,197.09741000000002,80.3707841237386,265.797711,130.7041778564453,268.46064,51.78943729400635,95.45174,2.3154922326405845,6.625856829999998,31.48419936498006,1.08819,5.693050543467204,31.699110199999996,5.195780038833618,2.8981500000000002,1.4442100822925568,6.18027695,0.308366984128952,1.038048674,337.58797200520826,7.929782635804614,74.08643664570512,229.15386032335516,46.18466778920049,35.42615577035835,-0.202780506874943,12.419606685638428,8.241299999999999,44691.789326742175,0,2.35323037703832,1.3283900000000002,3.2607293923695884,0.86294,0.33615001539389294,0.20921 +2028,11.70701323778559,0.286502703732008,0,0,10.123598848093373,5.31917929649353,1.6016000000000001,62.598405838012695,22.01524,90.45841217041016,10.026388019999999,62.56033833821615,0.15492,15.569202502568563,0.38710881399999997,8.90737279256185,1.03863814,196.05670293172201,25.25922,457.7809143066406,2.00982,6.667973438898723,134.40136,0,558.4957021077474,5317.19082,2115.3613281249995,468.6392153907466,437.52795664469403,905.0159576756475,27.98970635732015,56.1807858,20.662299156188965,13.316917199999999,226.6042798360189,179.16835000000003,90.21518135070801,287.803484,136.294802347819,282.66636000000005,57.19003995259603,103.27296000000001,2.4724923769632974,7.059582819999999,31.440799554189045,1.00016,6.27638057867686,34.2742558,4.620710055033366,2.6636999999999995,1.5138900876045227,6.5073099,0.31296397745609283,1.068121916,338.459971110026,8.05310887438877,74.794030459423,228.970269356733,46.13443497176224,35.32257726112283,-0.20308362279524028,12.750606536865234,8.2836,44767.133961119434,0,2.253240386644999,1.20606,3.2483994364738464,0.82806,0.32875701536734897,0.19923999999999997 +2029,11.885525876791306,0.2742250344171821,0,0,10.138911267316297,5.38732926050822,1.6188500000000001,61.013906478881836,20.40522,91.1326109568278,10.084997509999999,61.86723836263021,0.12290999999999996,15.496102253595987,0.32327775700000005,8.930612643559774,0.995279495,193.2707036336263,24.02781,453.20091756184894,1.5110099999999997,6.688194036483765,134.71708,0,559.6297658284506,5323.27861,2136.981323242187,473.14442511567023,440.73095448811847,898.6174513888965,27.925206343332928,55.0865849,20.319299697875977,12.4726846,219.86330032348633,161.23929000000004,100.82098007202148,309.809257,142.3073298136393,296.87208000000004,63.03434371948242,111.09418,2.6402125159899392,7.4933088099999985,31.390299638112385,0.91213,6.898030519485474,36.8494014,4.120770037174225,2.4292499999999997,1.5885600944360097,6.8343428500000005,0.3179929777979851,1.0981951579999998,339.34997558593744,8.176435112972923,75.50162427314088,228.78667839011084,46.08420215432398,35.21899875188731,-0.20337374984796036,13.083106756210327,8.3259,44842.478595496694,0,2.1558003624280295,1.08373,3.234919468561808,0.79318,0.321416012942791,0.18927 +2030,12.064038515797023,0.2619473651023563,0,0,10.154223686539222,5.45621923605601,1.6361,59.43880716959635,18.7952,91.8107115427653,10.143607,61.18043772379557,0.0909,15.421801884969076,0.25944670000000003,8.952302614847818,0.95192085,190.48970413208008,22.7964,448.64991505940753,1.0122,6.708093881607056,135.0328,0,560.7289479573568,5329.3664,2158.3812866210933,477.6496348405939,443.9969533284505,892.2189451021454,27.79090627034505,53.992384,19.94539960225423,11.628452,212.63030115763345,143.31023000000005,112.16297912597656,331.81503,148.71592076619467,311.0778,69.31384595235188,118.9154,2.8183526595433555,7.927034799999999,31.332799593607586,0.8241,7.5535106261571245,39.424547,3.6827800472577414,2.1948,1.667670100927353,7.1613758,0.3234259784221649,1.1282683999999998,340.25896962483716,8.299761351557079,76.20921808685875,228.60308742348866,46.033969336885725,35.115420242651794,-0.20365088803310324,13.417306582132975,8.3682,44917.82322987395,0,2.061050375302633,0.9614,3.2203394373257956,0.7583,0.31413501997788745,0.1793 +2031,12.130177755275938,0.2769939822901142,0,0,10.133134658159804,5.525849183400472,1.64181,57.87600803375244,17.92802,92.49281120300293,10.2032664,60.49993705749512,0.08381999999999999,15.346601565678915,0.24100761240000002,8.97250247001648,0.9221711260000001,187.71570460001627,21.996879999999997,444.12791697184247,0.92805,6.727695306142171,135.13731,0,561.7948506673177,5335.56326,2179.561299641927,480.6820647413024,447.324951171875,889.1581422042123,27.598005771636963,51.769800000000004,19.54819981257121,10.82562094,205.16734186808267,131.00808400000005,124.21997896830241,334.73425299999997,155.49032592773438,307.52097000000003,76.0201473236084,120.44006,3.0066426595052085,7.862793309999999,31.26819944381714,0.7873,8.2388707002004,39.9786988,3.295870025952657,2.09679,1.750740110874176,7.07948934,0.3292379826307297,1.0979250019999998,341.1869735717773,8.35926052298248,76.88211627588032,228.86026112151475,45.83673651303423,35.093350772122584,-0.2039439473729618,13.753206729888916,8.37544,44724.81018399024,0,1.9690803289413452,0.90757,3.204739491144816,0.7343999999999999,0.3069210151831309,0.1729 +2032,12.19631699475485,0.29204059947787214,0,0,10.112045629780388,5.5959592660268145,1.64752,56.32780774434408,17.060840000000002,93.17881202697754,10.2629258,59.82563749949137,0.07673999999999999,15.270601511001587,0.22256852480000003,8.991272528966268,0.8924214020000001,184.94970575968424,21.19736,439.6379165649414,0.8439,6.744607210159302,135.24182000000002,0,562.9703114827474,5341.76012,2200.401224772135,483.71449464201083,450.6959533691406,886.0973393062792,27.32420555750529,49.547216,19.11489963531494,10.02278988,197.02039845784506,118.70593800000003,136.50497817993164,337.65347599999996,162.11280314127603,303.96414000000004,82.92524719238281,121.96472,3.1962526440620422,7.798551819999999,31.19879961013794,0.7505000000000001,8.909100691477457,40.532850599999996,2.958570043245951,1.9987799999999998,1.8296901086966197,6.99760288,0.33472397923469543,1.067581604,342.12697092692054,8.41875969440788,77.55501446490189,229.11743481954085,45.639503689182746,35.07128130159337,-0.2042529278675359,14.089906692504883,8.38268,44531.79713810652,0,1.8799603283405304,0.85374,3.1881595452626548,0.7105,0.2997790103157361,0.16649999999999998 +2033,12.262456234233763,0.3070872166656301,0,0,10.09095660140097,5.666309197743733,1.6532300000000002,54.796409606933594,16.19366,93.86891237894694,10.322585199999999,59.15773709615072,0.06966,15.193901300430298,0.2041294372,9.00867247581482,0.862671678,182.19370651245117,20.39784,435.17991892496747,0.7597499999999999,6.758086999257405,135.34633,0,564.3000691731771,5347.95698,2220.7612304687495,486.74692454271934,454.09295145670575,883.036536408346,26.951005458831787,47.324632,18.635399500528973,9.219958819999999,187.87340927124023,106.40379200000004,148.54997634887695,340.572699,168.10086313883463,300.40731,89.80544853210449,123.48938000000001,3.3786125977834067,7.73431033,31.12689971923828,0.7137,9.52462069193522,41.087002399999996,2.669610063234965,1.9007699999999998,1.8973200917243958,6.91571642,0.3392239858706792,1.0372382059999998,343.07097371419263,8.47825886583328,78.22791265392345,229.37460851756697,45.44227086533125,35.04921183106416,-0.2045778295168257,14.426806767781576,8.38992,44338.784092222806,0,1.7937303086121876,0.79991,3.1706695556640625,0.6866,0.29271601140499115,0.1601 +2034,12.328595473712678,0.322133833853388,0,0,10.069867573021554,5.736899137496948,1.65894,53.283708572387695,15.32648,94.56301244099934,10.3822446,58.49603589375814,0.06258,15.116701126098633,0.18569034960000003,9.024742364883423,0.832921954,179.44970830281576,19.598319999999998,430.7549184163411,0.6756,6.7703473170598345,135.45084,0,565.6551055908203,5354.15384,2240.671203613281,489.77935444342785,457.51795450846356,879.975733510413,26.495305061340332,45.102047999999996,18.120299975077312,8.41712776,178.16141891479492,94.10164600000002,160.36297861735025,343.491922,173.49910736083984,296.85048,96.66184870402019,125.01404000000001,3.553942561149597,7.67006884,31.05239947636922,0.6769000000000001,10.09220059712728,41.641154199999995,2.420480032761892,1.80276,1.9548701047897339,6.83382996,0.3427949796120326,1.006894808,344.0209706624348,8.53775803725868,78.90081084294502,229.63178221559306,45.24503804147976,35.02714236053495,-0.2049186523208311,14.763906717300415,8.39716,44145.77104633909,0,1.7104302942752838,0.7460800000000001,3.152319550514221,0.6627,0.28573601444562274,0.1537 +2035,12.394734713191593,0.3371804510411459,0,0,10.048778544642136,5.80773921807607,1.66465,51.79150899251302,14.4593,95.26111221313477,10.441904000000001,57.84073575337728,0.055499999999999994,15.038901011149088,0.167251262,9.03953218460083,0.80317223,176.71871058146158,18.7988,426.3649164835612,0.59145,6.782037456830342,135.55535,0,566.9961700439453,5360.3507,2260.171203613281,492.8117843441363,460.9729512532552,876.9149306124798,25.971904754638672,42.879464,17.579099655151367,7.6142967,168.20841598510742,81.79950000000002,171.9519780476888,346.411145,178.3503735860189,293.29365,103.4950491587321,126.5387,3.722432573636373,7.60582735,30.975499788920086,0.6401,10.617600758870443,42.195306,2.204200049241384,1.7047499999999998,2.003460079431534,6.751943499999999,0.3454919829964638,0.9765514099999999,344.97497049967444,8.59725720868408,79.57370903196659,229.88895591361916,45.047805217628266,35.00507289000574,-0.20527539627955207,15.10120677947998,8.404399999999999,43952.758000455375,0,1.6300602952639263,0.69225,3.1331695715586343,0.6388,0.27884401629368466,0.1473 +2036,12.460873952670505,0.3522270682289039,0,0,10.027689516262718,5.878809134165446,1.67036,50.321309407552086,13.592120000000001,95.96331214904785,10.5015634,57.19163576761881,0.04842,14.960900863011679,0.1488121744,9.053092082341513,0.7734225060000001,174.0017115275065,17.99928,422.0099131266276,0.5073,6.7933376232783,135.65986,0,568.3112538655599,5366.54756,2279.291178385416,495.8442142448448,464.4569549560547,873.8541277145466,25.393704573313396,40.65688,17.01949993769328,6.81146564,158.25240325927734,69.49735400000002,183.32497787475586,349.33036799999996,182.68969345092773,289.73682,110.30604934692383,128.06336000000002,3.8842925230662027,7.54158586,30.895999272664387,0.6033000000000001,11.10610063870748,42.7494578,2.015020022789637,1.6067399999999998,2.0440500775973,6.67005704,0.3473679820696513,0.9462080119999999,345.9349695841471,8.656756380109481,80.24660722098817,230.14612961164525,44.85057239377678,34.98300341947653,-0.20564806139298872,15.43860681851705,8.41164,43759.744954571666,0,1.5526202817757924,0.63842,3.1132495999336243,0.6149,0.27204301456610364,0.1409 +2037,12.527013192149418,0.36727368541666183,0,0,10.006600487883302,5.9501092831293745,1.6760700000000002,48.87420908610026,12.72494,96.66941324869792,10.5612228,56.548835118611656,0.041339999999999995,14.882600704828898,0.1303730868,9.06547212600708,0.7436727820000001,171.30171330769858,17.199759999999998,417.6899185180664,0.42315,6.804337819417317,135.76437,0,569.5993448893229,5372.74442,2298.06113688151,498.8766441455533,467.9729537963867,870.7933248166136,24.77190415064494,38.434296,16.448399861653645,6.00863458,148.46439107259116,57.19520800000002,194.4909756978353,352.24959099999995,186.5550626118978,286.17999000000003,117.0950501759847,129.58802,4.0397025148073835,7.47734437,30.81399981180827,0.5665,11.562100807825724,43.3036096,1.8481699923674266,1.50873,2.0775100787480674,6.58817058,0.34846998502810794,0.915864614,346.8989690144856,8.716255551534882,80.91950541000973,230.40330330967134,44.653339569925286,34.96093394894732,-0.20603664766114094,15.776306788126627,8.41888,43566.73190868795,0,1.478080262740453,0.58459,3.0926295717557273,0.591,0.265338013569514,0.1345 +2038,12.593152431628333,0.38232030260441974,0,0,9.985511459503885,6.021659175554912,1.68178,47.45160992940267,11.857759999999999,97.37961069742839,10.6208822,55.91233476003011,0.03425999999999999,14.804000695546469,0.1119339992,9.076711893081665,0.713923058,168.6197141011556,16.40024,413.4059193929036,0.33899999999999997,6.815057913462321,135.86888,0,570.8584136962891,5378.94128,2316.491088867187,501.9090740462618,471.52095286051434,867.7325219186804,24.11630407969157,36.211712,15.871299823125204,5.20580352,138.9673728942871,44.893062,205.4549763997396,355.168814,189.97647094726562,282.62316,123.86305173238118,131.11268,4.188842495282491,7.41310288,30.72939968109131,0.5297000000000001,11.989500681559244,43.8577614,1.6997600098450978,1.41072,2.1046000719070435,6.50628412,0.3488429859280586,0.8855212159999999,347.866963704427,8.775754722960281,81.5924035990313,230.66047700769747,44.45610674607379,34.93886447841811,-0.2064411550840088,16.114106734593708,8.42612,43373.718862804235,0,1.4064302444458008,0.53076,3.0713496009508767,0.5670999999999999,0.2587310050924619,0.1281 +2039,12.659291671107248,0.39736691979217764,0,0,9.964422431124468,6.093449195226033,1.68749,46.05430920918783,10.990580000000001,98.093812306722,10.680541600000002,55.28203455607096,0.027179999999999996,14.725400606791178,0.09349491159999998,9.086852073669434,0.684173334,165.95471700032553,15.600719999999999,409.15792592366535,0.2548499999999999,6.825528224309285,135.97339,0,572.0915018717448,5385.13814,2334.601094563802,504.9415039469703,475.1019465128581,864.6717190207473,23.43540382385254,33.989128,15.2928999265035,4.40297246,129.84235699971518,32.59091600000001,216.22597630818686,358.088037,192.98592249552408,279.06633,130.61005210876465,132.63734,4.331892490386963,7.348861390000001,30.642300128936768,0.4929,12.391900777816772,44.4119132,1.5665800174077351,1.3127099999999998,2.1260001063346863,6.4243976599999995,0.348528986175855,0.8551778179999999,348.84097290039057,8.835253894385682,82.26530178805287,230.91765070572356,44.25887392222231,34.9167950078889,-0.20686158366159235,16.45220677057902,8.43336,43180.70581692052,0,1.3376002510388691,0.47693,3.049449622631073,0.5432,0.25222400948405266,0.1217 +2040,12.72543091058616,0.4124135369799356,0,0,9.94333340274505,6.1654791831970215,1.6932,44.68311023712158,10.1234,98.81201171875,10.740201,54.65793418884277,0.0201,14.646600484848022,0.07505582400000001,9.095951795578003,0.65442361,163.31071980794272,14.8012,404.9469223022461,0.1707,6.835758248964946,136.0779,0,573.2985382080078,5391.335,2352.4411214192705,507.9739338476788,478.71695200602215,861.6109161228142,22.73650376001994,31.766544,14.717099905014038,3.6001414,121.14333788553874,20.28877,226.80997721354166,361.00726,195.61041386922201,275.5095,137.33805465698242,134.162,4.469012459119161,7.284619900000001,30.55269972483317,0.4561,12.772100687026978,44.966065,1.4459500312805176,1.2147,2.1423200964927673,6.3425112,0.34756798793872196,0.82483442,349.818972269694,8.894753065811082,82.93819997707443,231.17482440374965,44.061641098370814,34.89472553735969,-0.2072979333938915,16.790406862894695,8.4406,42987.6927710368,0,1.271570235490799,0.4231,3.0269696513811746,0.5193,0.24582200745741525,0.1153 +2041,12.731345782263114,0.41291005922905044,0,0,9.877855815506168,6.237739205360413,1.69399,43.338809967041016,9.656320000000001,99.53421211242676,10.7656408,54.03993352254232,0.01853,14.56790033976237,0.0697234998,9.104021708170572,0.633957487,160.68572107950845,14.28209,400.7709248860677,0.15650999999999998,6.84575875600179,136.09235999999999,0,574.482676188151,5393.97744,2370.001057942708,509.4337937128776,482.3659489949544,857.3720223768441,22.02600320180257,30.4061322,14.147299925486246,3.34120265,112.90132141113281,18.44822429,237.2129758199056,357.821647,197.87593587239584,271.4297,144.04604975382486,133.22104000000002,4.600382447242737,7.166967790000001,30.460500081380207,0.4292,13.132800817489624,44.7776905,1.3356900016466777,1.14306,2.1541001001993814,6.2485976899999995,0.34599698583285016,0.8042657489999999,350.80197397867835,8.93228029119867,83.5568034040026,230.61564458750703,43.72345464340179,34.785594903589114,-0.20773480183402376,17.128806908925373,8.39314,42614.44004773884,0,1.2082702219486237,0.39941,3.0039596358935037,0.5029399999999999,0.23952500770489374,0.11118 +2042,12.737260653940066,0.4134065814781653,0,0,9.812378228267285,6.310139179229736,1.69478,42.02181021372477,9.18924,100.25901285807292,10.7910806,53.4281333287557,0.01696,14.489100376764933,0.0643911756,9.111121733983358,0.613491364,158.0837262471517,13.762979999999999,396.6319274902344,0.14232,6.854569514592488,136.10682,0,575.5830383300781,5396.61988,2387.0809936523433,510.8936535780765,486.03294881184894,853.1331286308742,21.30720313390096,29.0457204,13.58459989229838,3.0822639,105.0793062845866,16.607678579999998,247.29497655232748,354.636034,199.79546610514322,267.3499,150.6500498453776,132.28008,4.725252389907837,7.04931568,30.366199652353924,0.4023,13.461400588353476,44.589316000000004,1.2354300022125244,1.0714199999999998,2.1616501013437905,6.154684179999999,0.3439689849813779,0.783697078,351.7869720458984,8.969807516586256,84.17540683093074,230.05646477126444,43.38526818843277,34.67646426981853,-0.2081721889819892,17.466306527455647,8.34568,42241.187324440885,0,1.1476302047570546,0.37572,2.9804397026697793,0.48658,0.23333600784341493,0.10706 +2043,12.74317552561702,0.4139031037272801,0,0,9.746900641028402,6.382569273312886,1.69557,40.732710202534996,8.72216,100.9860127766927,10.8165204,52.82243347167969,0.015390000000000001,14.41040047009786,0.0590588514,9.117271820704142,0.5930252410000001,155.50372695922852,13.24387,392.52892303466797,0.12813,6.861859480539958,136.12128,0,576.572275797526,5399.26232,2403.5209757486973,512.3535134432753,489.7029520670573,848.8942348849042,20.58280324935913,27.6853086,13.02999989191691,2.82332515,97.64328893025716,14.767132870000001,256.91897837320965,351.450421,201.3810183207194,263.2701,157.06605275472006,131.33912,4.842932383219401,6.93166357,30.270299752553303,0.3754,13.746400753657023,44.4009415,1.1448500355084736,0.9997799999999999,2.165230095386505,6.06077067,0.34162598848342896,0.763128407,352.77197265624994,9.007334741973843,84.7940102578589,229.49728495502183,43.04708173346374,34.567333636047955,-0.20861009483778775,17.801806608835857,8.29822,41867.93460114292,0,1.0896001954873402,0.35202999999999995,2.9564696550369263,0.47021999999999997,0.22725500787297884,0.10294 +2044,12.74909039729397,0.41439962597639496,0,0,9.68142305378952,6.455019235610962,1.69636,39.471710205078125,8.25508,101.71501223246257,10.8419602,52.222732861836754,0.013819999999999999,14.33180046081543,0.0537265272,9.1225217183431,0.572559118,152.94572830200195,12.72476,388.4629211425781,0.11393999999999999,6.868469715118408,136.13574,0,577.5014088948568,5401.90476,2419.340901692708,513.8133733084742,493.3779525756836,844.6553411389343,19.85730282465617,26.324896799999998,12.48580002784729,2.5643864,90.61287053426106,12.92658716,266.1009750366211,348.264808,202.65460968017578,259.1903,163.2980499267578,130.39816,4.953602313995361,6.814011460000001,30.172799746195476,0.3485,13.993000745773315,44.212567,1.062250018119812,0.92814,2.165260076522827,5.96685716,0.338983990252018,0.742559736,353.7569732666015,9.04486196736143,85.41261368478706,228.93810513877924,42.708895278494715,34.45820300227737,-0.20904851940141955,18.13520685831706,8.25076,41494.68187784497,0,1.034100204706192,0.32833999999999997,2.9320796926816306,0.45386,0.2212850091358026,0.09881999999999999 +2045,12.755005268970924,0.4148961482255098,0,0,9.615945466550638,6.527499159177144,1.6971500000000002,38.23910999298096,7.788,102.44501304626465,10.8674,51.62903245290121,0.01225,14.253400246302286,0.048394203000000004,9.126901547114054,0.552092995,150.4127311706543,12.205649999999999,384.43292744954425,0.09974999999999999,6.8746598561604815,136.15019999999998,0,578.3885192871094,5404.5472,2434.590942382812,515.273233173673,497.05895233154297,840.4164473929643,19.134703000386555,24.964485,11.95359992980957,2.30544765,83.9956537882487,11.08604145,274.8529790242513,345.079195,203.63621520996094,255.1105,169.34904988606772,129.4572,5.057452201843262,6.69635935,30.073599815368652,0.3216,14.20560065905253,44.0241925,0.9862370093663534,0.8564999999999999,2.162090082963308,5.87294365,0.3360589842001597,0.721991065,354.74197133382154,9.082389192749016,86.03121711171522,228.37892532253662,42.37070882352569,34.349072368506796,-0.20948746267288446,18.466606458028156,8.2033,41121.429154547004,0,0.981064185500145,0.30465,2.907289743423462,0.4375,0.21542500828703245,0.0947 +2046,12.760920140647878,0.4153926704746247,0,0,9.550467879311755,6.599999189376831,1.69794,37.03501001993815,7.320920000000001,103.17701148986816,10.892839799999999,51.04133224487305,0.01068,14.175000190734863,0.0430618788,9.130431413650513,0.531626872,147.90373357137045,11.686539999999999,380.4389241536458,0.08556,6.880529920260112,136.16466,0,579.2416025797526,5407.18964,2449.320861816406,516.7330930388719,500.7469533284505,836.1775536469943,18.4182022412618,23.604073200000002,11.434799830118815,2.0465089,77.7898375193278,9.24549574,283.18897755940753,341.893582,204.34385299682617,251.0307,175.22204971313477,128.51624,5.154662211736043,6.57870724,29.97279977798462,0.29469999999999996,14.388100624084473,43.835818,0.9156430115302404,0.7848599999999999,2.1560500661532083,5.77903014,0.33286498735348385,0.701422394,355.72697448730463,9.119916418136603,86.64982053864337,227.819745506294,42.03252236855667,34.23994173473622,-0.2099269246521825,18.795906225840252,8.15584,40748.17643124904,0,0.9304151684045792,0.28096,2.8821497360865274,0.42114,0.2096770058075587,0.09058 +2047,12.76683501232483,0.41588919272373953,0,0,9.484990292072872,6.672529220581055,1.69873,35.859509785970054,6.85384,103.91001256306966,10.9182796,50.45953210194906,0.009110000000000002,14.096900224685669,0.037729554600000006,9.133161544799805,0.5111607490000001,145.42073567708334,11.16743,376.4809290568034,0.07137,6.886130054791768,136.17912,0,580.0647023518881,5409.83208,2463.55088297526,518.1929529040708,504.44395446777344,831.9386599010244,17.710602442423504,22.2436614,10.93049987157186,1.7875701500000003,71.98722139994304,7.40495003,291.1229782104492,338.707969,204.79551060994467,246.9509,180.9230524698893,127.57527999999999,5.245412190755208,6.46105513,29.870299816131592,0.26780000000000004,14.544000705083212,43.6474435,0.8495230078697205,0.71322,2.1474100748697915,5.68511663,0.3294169877966245,0.680853723,356.71097310384107,9.15744364352419,87.26842396557153,227.2605656900514,41.69433591358764,34.13081110096564,-0.21036690533931368,19.12320629755656,8.10838,40374.923707951086,0,0.8820751706759135,0.25727,2.8566797176996865,0.40478000000000003,0.20404000828663507,0.08646000000000001 +2048,12.772749884001783,0.41638571497285437,0,0,9.41951270483399,6.745089213053386,1.6995200000000001,34.71270910898844,6.386760000000001,104.64601262410481,10.943719399999999,49.883731524149574,0.00754,14.018900156021118,0.0323972304,9.135111411412558,0.490694626,142.96274185180664,10.648319999999998,372.55792744954425,0.05717999999999998,6.891470154126485,136.19358,0,580.8597513834635,5412.47452,2477.3308105468745,519.6528127692696,508.1499506632487,827.6997661550544,17.01420243581136,20.8832496,10.441399971644083,1.5286314,66.57480557759602,5.5644043199999995,298.6669743855794,335.522356,205.00819142659506,242.8711,186.45205052693686,126.63432,5.329862117767334,6.34340302,29.766199906667072,0.24089999999999998,14.676300684611002,43.459069,0.7870810031890869,0.6415799999999999,2.13644007841746,5.591203119999999,0.3257259825865428,0.660285052,357.69597371419263,9.194970868911776,87.88702739249969,226.7013858738088,41.35614945861862,34.02168046719506,-0.2108074047342781,19.448506673177082,8.06092,40001.67098465312,0,0.8359711617231369,0.23357999999999998,2.8309197227160134,0.38842,0.1985160062710444,0.08234 +2049,12.778664755678735,0.4168822372219692,0,0,9.354035117595107,6.817679206530253,1.70031,33.59440930684408,5.9196800000000005,105.38301213582356,10.9691592,49.31363169352213,0.005970000000000001,13.941199938456217,0.027064906200000002,9.136321465174357,0.470228503,140.53174336751303,10.129209999999999,368.67193094889325,0.04299,6.896580338478088,136.20803999999998,0,581.6308746337891,5415.11696,2490.690795898437,521.1126726344685,511.86695607503253,823.4608724090845,16.3311022122701,19.522837799999998,9.968129952748617,1.26969265,61.53649171193441,3.7238586100000006,305.8329798380534,332.336743,204.99588775634766,238.7913,191.81505076090494,125.69336,5.408182104428609,6.2257509099999995,29.66039975484212,0.214,14.78760059674581,43.270694500000005,0.7276670038700104,0.5699399999999999,2.1233600775400796,5.49728961,0.32180699209372204,0.639716381,358.6809717814127,9.232498094299363,88.50563081942784,226.1422060575662,41.0179630036496,33.91254983342448,-0.2112484228370756,19.771806557973225,8.01346,39628.41826135517,0,0.7920241604248682,0.20989,2.8048797249794006,0.37206,0.193103006730477,0.07822 +2050,12.784579627355688,0.41737875947108405,0,0,9.288557530356224,6.8902891874313354,1.7011,32.504509607950844,5.4526,106.12201245625813,10.994599,48.749430656433105,0.0044,13.863600174585978,0.021732582,9.136801401774088,0.44976238,138.12674458821616,9.6101,364.8209279378255,0.0288,6.901479959487915,136.2225,0,582.3797861735026,5417.7594,2503.660807291666,522.5725324996673,515.5939483642578,819.2219786631144,15.66280198097229,18.162426,9.510999838511148,1.0107539,56.854376475016274,1.8833129,312.6329803466797,329.15113,204.77261352539062,234.7115,197.0140495300293,124.7524,5.480532089869182,6.1080988,29.552899837493896,0.1871,14.880400657653809,43.08232,0.670743003487587,0.4983,2.1083900928497314,5.4033761,0.3176699901620547,0.61914771,359.6649729410807,9.27002531968695,89.124234246356,225.58302624132358,40.67977654868057,33.8034191996539,-0.21168995964770626,20.09300661087036,7.966,39255.165538057205,0,0.7501551459232966,0.1862,2.7786097327868142,0.3557,0.18780300642053285,0.0741 +2051,12.757417317073529,0.4141592112687301,0,0,9.182172484783603,6.962929209073384,1.6956200000000001,31.442808945973713,5.20103,106.8620122273763,10.935259499999999,48.19102986653646,0.00406,13.786400079727173,0.02018665606,9.13659119606018,0.435696317,135.74875259399414,9.27305,361.0049311319987,0.02641,6.906201203664144,136.1222,0,583.1082763671875,5411.59578,2516.260803222656,523.4919489176345,519.3319396972656,813.7056064808401,15.010501861572266,17.3846094,9.070219993591309,0.9380561430000001,52.50926431020101,1.712466056,319.0789794921875,321.17329,204.3533452351888,228.17455999999999,202.0520451863607,121.78314999999999,5.547072013219197,5.90148493,29.443699836730957,0.17542,14.956600666046143,42.1739559,0.6158640036980311,0.46719,2.0917000571886697,5.2528863,0.31332699209451675,0.597670333,360.6499684651692,9.29733866569954,89.57917466195178,224.79146875580915,40.35533677857733,33.520323042382614,-0.21212809839273605,20.41210635503133,7.987410000000001,38877.70786103589,0,0.7102881322304407,0.17577,2.752119799455007,0.34449,0.18261500572164854,0.07145 +2052,12.730255006791369,0.4109396630663762,0,0,9.07578743921098,7.035459200541179,1.69014,30.40920893351237,4.94946,107.60101318359375,10.875919999999999,47.63832982381185,0.0037200000000000002,13.70930012067159,0.01864073012,9.135731140772501,0.42163025400000004,133.39875157674155,8.936,357.22493235270184,0.02402,6.908452749252319,136.0219,0,583.4818216959635,5405.43216,2528.41074625651,524.4113653356017,523.0739593505859,808.1892342985656,14.375301996866861,16.6067928,8.64581004778544,0.865358386,48.48115189870199,1.541619212,325.06197865804035,313.19545,203.67796071370444,221.63762,206.86204401652017,118.81389999999999,5.606401999791463,5.69487106,29.33360004425049,0.16374,15.003100713094076,41.2655918,0.5647850086291631,0.43608,2.0723700523376465,5.1023965,0.30877699206272763,0.576192956,361.6329676310221,9.32465201171213,90.03411507754757,223.99991127029475,40.0308970084741,33.237226885111326,-0.212562839072165,20.730706532796223,8.00882,38500.25018401457,0,0.6723461349805196,0.16534,2.725449800491333,0.33328,0.1775390071173509,0.0688 +2053,12.703092696509211,0.4077201148640222,0,0,8.96940239363836,7.107749183972676,1.68466,29.403308550516766,4.69789,108.33701197306316,10.816580499999999,47.0913298924764,0.00338,13.63260014851888,0.01709480418,9.134220997492472,0.407564191,131.07575480143228,8.59895,353.4799321492513,0.02163,6.907572507858276,135.9216,0,583.3817799886068,5399.26854,2540.0207112630205,525.3307817535688,526.8129526774088,802.6728621162911,13.757601896921793,15.8289762,8.237669865290323,0.7926606290000001,44.75034141540527,1.370772368,330.47998301188153,305.21761000000004,202.69353103637695,215.10068,211.3740463256836,115.84465,5.657151858011882,5.48825719,29.222999890645344,0.15206,15.007700681686401,40.3572277,0.51896699766318,0.40497,2.0495600501696267,4.9519067,0.3040179858605067,0.554715579,362.61396789550776,9.35196535772472,90.48905549314337,223.20835378478031,39.70645723837086,32.954130727840045,-0.21299418168599304,21.05000638961792,8.03023,38122.79250699325,0,0.6362541268269221,0.15491,2.6985997756322226,0.32207,0.1725740060210228,0.06615 +2054,12.675930386227051,0.4045005666616683,0,0,8.863017348065737,7.179789225260417,1.6791800000000001,28.424808502197266,4.44632,109.06801160176595,10.757240999999999,46.54992993672689,0.00304,13.556100130081177,0.01554887824,9.132091124852499,0.393498128,128.78175926208496,8.261899999999999,349.76893107096356,0.01924,6.905622601509094,135.8213,0,583.1069793701172,5393.10492,2551.1506754557286,526.250198171536,530.5479583740234,797.1564899340167,13.158301750818888,15.0511596,7.845659971237183,0.719962872,41.297430674235024,1.199925524,335.3489812215169,297.23977,201.41814931233725,208.56374,215.59604517618814,112.8754,5.699541727701823,5.28164332,29.11200014750163,0.14038,14.975400606791178,39.4488636,0.47752300649881363,0.37385999999999997,2.023620088895162,4.8014168999999995,0.29905999203523,0.5332382019999999,363.59297688802076,9.379278703737311,90.94399590873915,222.4167962992659,39.38201746826762,32.67103457056876,-0.21342212623422024,21.3701065381368,8.051639999999999,37745.33482997194,0,0.6019371201594671,0.14448,2.671619792779287,0.31086,0.16771900405486426,0.0635 +2055,12.648768075944892,0.40128101845931435,0,0,8.756632302493117,7.2515891790390015,1.6737000000000002,27.473408222198486,4.19475,109.79501152038574,10.6979015,46.01422913869222,0.0027,13.479900121688843,0.0140029523,9.129370927810669,0.37943206500000004,126.51576105753581,7.924849999999999,346.0929361979167,0.01685,6.903222560882568,135.721,0,582.7601521809896,5386.9413,2561.810668945312,527.1696145895032,534.2809549967448,791.6401177517423,12.577601432800293,14.273343,7.46956996122996,0.6472651150000001,38.10402043660482,1.02907868,339.6859817504883,289.26193,199.87078475952148,202.02679999999998,219.5330441792806,109.90615,5.733791788419087,5.07502945,29.000499725341797,0.12869999999999998,14.910200675328573,38.5404995,0.4397130037347476,0.34275,1.9948700765768688,4.6509271000000005,0.2939149911204974,0.511760825,364.56997172037757,9.406592049749904,91.39893632433494,221.62523881375148,39.05757769816438,32.38793841329747,-0.2138466727168465,21.690906683603924,8.07305,37367.87715295062,0,0.5693241159121195,0.13405,2.6445197661717734,0.29965,0.16297400618592897,0.06085 +2056,12.621605765662732,0.3980614702569604,0,0,8.650247256920496,7.3231492439905805,1.66822,26.548808256785076,3.94318,110.51801300048828,10.638562,45.484029134114586,0.00236,13.403999964396158,0.01245702636,9.126081069310507,0.365366002,124.2777640024821,7.5878,342.45093027750653,0.01446,6.900572578112285,135.6207,0,582.3762156168619,5380.77768,2572.050659179687,528.0890310074703,538.012949625651,786.1237455694678,12.015801588694254,13.4955264,7.109089930852254,0.5745673580000001,35.15221087137858,0.8582318360000001,343.5079803466797,281.28409,198.0694491068522,195.48986,223.19004185994467,106.9369,5.7601116100947065,4.86841558,28.888699849446613,0.11702,14.815900405248007,37.6321354,0.4049250011642774,0.31164000000000003,1.963580052057902,4.5004373,0.28859199086825055,0.490283448,365.54397074381507,9.433905395762494,91.85387673993073,220.83368132823705,38.73313792806115,32.10484225602619,-0.214267821133872,22.01250648498535,8.09446,36990.4194759293,0,0.5383431017398834,0.12362000000000001,2.617309828599294,0.28844000000000003,0.15833700448274612,0.0582 +2057,12.594443455380572,0.3948419220546065,0,0,8.543862211347873,7.394469261169434,1.66274,25.650508244832356,3.6916100000000003,111.23701095581055,10.5792225,44.95932865142822,0.00202,13.328400055567423,0.01091110042,9.12225111325582,0.351299939,122.06876754760742,7.25075,338.84293365478516,0.012070000000000001,6.8977426290512085,135.5204,0,581.9682871500651,5374.61406,2581.8906046549473,529.0084474254375,541.7439473470052,780.6073733871933,11.473201354344686,12.7177098,6.763919989267985,0.5018696010000001,32.425102074941,0.6873849920000001,346.82898712158203,273.30625,196.0301310221354,188.95292,226.57103856404623,103.96764999999999,5.778711557388306,4.66180171,28.77639977137248,0.10534,14.695800622304281,36.7237713,0.3726480056842168,0.28053,1.9300200442473094,4.349947500000001,0.2830989857514699,0.46880607100000005,366.516970316569,9.461218741775085,92.30881715552651,220.04212384272265,38.40869815795791,31.8217460987549,-0.21468557148529646,22.334906419118244,8.11587,36612.961798907985,0,0.5089250952005386,0.11319000000000001,2.5900198419888816,0.27723000000000003,0.153808002670606,0.05555 +2058,12.567281145098415,0.3916223738522525,0,0,8.437477165775253,7.465539216995239,1.6572600000000002,24.778107802073162,3.44004,111.95201174418132,10.519883,44.44002819061279,0.00168,13.253099918365479,0.009365174479999998,9.117891073226929,0.337233876,119.88877042134602,6.9137,335.2699330647786,0.009680000000000001,6.894752462704976,135.42010000000002,0,581.5423227945963,5368.45044,2591.360616048177,529.9278638434047,545.4749552408854,775.0910012049189,10.94960125287374,11.9398932,6.433659950892131,0.42917184399999997,29.906394640604656,0.516538148,349.6649856567383,265.32840999999996,193.76783498128256,182.41598,229.68303934733072,100.9984,5.789771477381389,4.45518784,28.663699944814045,0.09366,14.552600622177124,35.8154072,0.3424530004461606,0.24941999999999998,1.8944000601768494,4.1994577,0.2774469902118047,0.44732869399999997,367.48696899414057,9.488532087787675,92.76375757112231,219.25056635720821,38.08425838785467,31.538649941483612,-0.21509992377112025,22.658106962839764,8.13728,36235.50412188667,0,0.48100009312232334,0.10275999999999999,2.5626798272132874,0.26602000000000003,0.14938400561610857,0.0529 +2059,12.540118834816255,0.3884028256498986,0,0,8.33109212020263,7.536359270413716,1.65178,23.93110768000285,3.18847,112.66301155090332,10.4605435,43.926328341166176,0.00134,13.178100109100342,0.007819248539999999,9.113010803858439,0.32316781299999997,117.73777262369792,6.57665,331.7299346923828,0.007290000000000001,6.891632556915283,135.31980000000001,0,581.1003875732422,5362.28682,2600.5006306966143,530.8472802613719,549.2059478759766,769.5746290226446,10.445101340611776,11.162076599999999,6.117909908294678,0.35647408700000005,27.581087430318195,0.34569130400000003,352.02998606363934,257.35057,191.2965545654297,175.87903999999997,232.5300381978353,98.02915,5.793511430422465,4.24857397,28.550600210825603,0.08198,14.389100472132364,34.9070431,0.31398800760507584,0.21830999999999995,1.8569400608539581,4.0489679,0.2716439937551816,0.425851317,368.454968770345,9.515845433800266,93.2186979867181,218.4590088716938,37.759818617751435,31.255553784212324,-0.21551087799134303,22.98210636774699,8.15869,35858.04644486535,0,0.4545030916730563,0.09233,2.5352898041407266,0.25481,0.14506600548823675,0.05025 +2060,12.512956524534095,0.38518327744754466,0,0,8.22470707463001,7.606949170430501,1.6463,23.10920763015747,2.9369,113.37101236979167,10.401204,43.41782792409261,0.001,13.103399991989136,0.0062733226,9.10766077041626,0.30910175,115.61577542622884,6.2396,328.2229359944661,0.0049,6.888382315635681,135.2195,0,580.6443735758463,5356.1232,2609.320576985677,531.766696679339,552.9369557698568,764.0582568403701,9.959541161855062,10.38426,5.8162299791971845,0.28377633,25.43488057454427,0.17484446,353.93898518880206,249.37273,188.6292953491211,169.3421,235.11803690592447,95.0599,5.790101369222005,4.0419601,28.437000115712483,0.0703,14.20740040143331,33.998679,0.28696700433890027,0.1872,1.8178200523058574,3.8984781,0.2656969924767812,0.40437394,369.4209721883137,9.543158779812856,93.67363840231388,217.66745138617938,37.435378847648195,30.97245762694104,-0.21591843414596493,23.306806564331055,8.1801,35480.588767844034,0,0.42937008291482925,0.0819,2.507879853248596,0.2436,0.14085200180610022,0.0476 +2061,12.454478810001852,0.37295561694945656,0,0,8.121358176057802,7.677289207776387,1.6363800000000002,22.31180731455485,2.80139,114.0740114847819,10.30117495,42.91482798258463,9.2e-4,13.029099941253662,0.0058252281299999995,9.101830959320068,0.299431331,113.52277946472168,6.02076,324.7499313354492,0.00449,6.8850330511728925,135.03794000000002,0,580.17657470703125,5345.73313,2617.8505452473955,531.6412053926217,556.667958577474,759.9981903644579,9.492621024449667,9.939558329999999,5.528199950853984,0.2633617666,23.454374313354492,0.1589853287,355.4049886067708,240.316685,185.77804946899414,163.01915,237.45003382364908,91.70904,5.779731273651123,3.86585975,28.322999795277912,0.06546,14.009700616200766,32.8437592,0.2611460064848264,0.17431,1.7772000432014465,3.75291845,0.2596139907836914,0.387059417,370.38496907552076,9.559975335047906,94.1617522672482,216.67870000232887,37.10784299455722,30.721624184809823,-0.2163130437765063,23.632306734720867,8.19306,35020.706355177725,0,0.4055400788784027,0.07732,2.480449835459391,0.23592000000000002,0.13674000402291617,0.0459 +2062,12.39600109546961,0.36072795645136846,0,0,8.018009277485595,7.747289180755615,1.62646,21.53840732574463,2.66588,114.77101135253906,10.2011459,42.417027155558266,8.4e-4,12.955099900563559,0.00537713366,9.095560868581137,0.289760912,111.45778210957845,5.80192,321.3099365234375,0.00408,6.880203763643901,134.85638,0,579.5552317301432,5335.34306,2625.940511067708,531.5157141059044,560.3909556070963,755.9381238885456,9.044100999832153,9.49485666,5.253359953562419,0.24294720320000002,21.627268314361572,0.1431261974,356.4159851074219,231.26064,182.76283518473306,156.69619999999998,239.5190340677897,88.35818,5.763111273447673,3.6897594,28.208799839019775,0.06062,13.79240051905314,31.688839400000003,0.2372770036260287,0.16142,1.735330065091451,3.6073588,0.2534499913454056,0.369744894,371.34597269694007,9.576791890282953,94.64986613218254,215.68994861847835,36.78030714146623,30.47079074267861,-0.21669470688296705,23.958306630452473,8.206019999999999,34560.82394251141,0,0.38295407593250275,0.07274,2.4530298113822937,0.22824,0.132730004688104,0.0442 +2063,12.337523380937366,0.34850029595328036,0,0,7.914660378913388,7.816849231719971,1.61654,20.788607279459637,2.53037,115.46201070149739,10.10111685,41.924526850382485,7.6e-4,12.881300131479898,0.00492903919,9.088850816090902,0.280090493,109.42278480529785,5.58308,317.90193430582684,0.00367,6.873453696568807,134.67482,0,578.7286732991537,5324.95299,2633.440490722656,531.3902228191872,564.0969543457031,751.8780574126336,8.613660971323648,9.05015499,4.991249958674113,0.22253263980000001,19.941963354746502,0.1272670661,356.9599863688151,222.204595,179.59863917032877,150.37324999999998,241.31603240966797,85.007319999999993,5.740941206614177,3.51365905,28.09469985961914,0.05578,13.552900552749634,30.5339196,0.21599200243751207,0.14853,1.692430039246877,3.46179915,0.24725899597009024,0.35243037099999996,372.3029759724934,9.593608445518003,95.13797999711686,214.7011972346278,36.45277128837525,30.219957300547392,-0.2170634234653472,24.284906546274822,8.21898,34100.9415298451,0,0.3615530679623286,0.06816,2.4256298740704856,0.22056,0.12882000456253687,0.0425 +2064,12.279045666405123,0.33627263545519226,0,0,7.811311480341182,7.885989268620809,1.60662,20.061906814575195,2.39486,116.14601135253906,10.0010878,41.43722693125407,6.8e-4,12.807999928792318,0.0044809447199999995,9.081730763117472,0.270420074,107.41678873697917,5.36424,314.52693939208984,0.00326,6.866023580233256,134.49326,0,577.8177897135416,5314.56292,2640.4004313151036,531.2647315324699,567.7869517008463,747.8179909367213,8.200880924860636,8.605453319999999,4.741379976272583,0.2021180764,18.387558142344158,0.1114079348,357.0499903361003,213.14855,176.2954559326172,144.0503,242.84503046671549,81.65646,5.7133510907491045,3.3375586999999998,27.98079999287923,0.05094,13.29330046971639,29.378999800000003,0.19686700279513994,0.13563999999999998,1.648590048154195,3.3162395,0.2410389930009842,0.335115848,373.2549692789713,9.610425000753052,95.62609386205118,213.7124458507773,36.12523543528427,29.96912385841618,-0.2174191935236468,24.611806392669678,8.23194,33641.05911717879,0,0.34128006796042126,0.06358,2.3982598384221396,0.21288,0.1250070029248794,0.0408 +2065,12.22056795187288,0.32404497495710416,0,0,7.7079625817689745,7.954679171244304,1.5967,19.357706864674885,2.25935,116.82401084899902,9.90105875,40.955126444498696,6.000000000000001e-4,12.734900077184042,0.00403285025,9.07421064376831,0.260749655,105.43979199727376,5.1454,311.18493906656903,0.00285,6.858263452847798,134.3117,0,576.8668874104818,5304.17285,2646.86045328776,531.1392402457526,571.4619445800781,743.7579244608091,7.805310845375061,8.16075165,4.503300031026204,0.181703513,16.95405387878418,0.0955488035,356.69998423258465,204.09250500000002,172.8602778116862,137.72735,244.11302947998047,78.3056,5.680471062660217,3.16145835,27.867000102996826,0.0461,13.016100486119589,28.22408,0.17954100171724954,0.12275,1.6039100388685863,3.17067985,0.23479199409484863,0.317801325,374.2029724121093,9.6272415559881,96.11420772698551,212.7236944669268,35.79769958219329,29.71829041628496,-0.2177620170578658,24.93920660018921,8.2449,33181.17670451247,0,0.32208306590716046,0.059,2.3709398905436196,0.2052,0.12129000201821327,0.0391 +2066,12.162090237340635,0.3118173144590161,0,0,7.604613683196767,8.02294925848643,1.58678,18.675506591796875,2.12384,117.49401092529297,9.801029699999999,40.47802607218424,5.200000000000001e-4,12.662200053532919,0.00358475578,9.066300710042318,0.25107923600000004,103.49179522196452,4.92656,307.8739420572917,0.0024400000000000003,6.850313464800517,134.13014,0,575.8919321695963,5293.78278,2652.850423177083,531.0137489590353,575.1209513346354,739.6978579848969,7.426500876744588,7.716049979999999,4.276529947916667,0.1612889496,15.632049719492594,0.0796896722,355.92198181152344,195.03646000000003,169.30311584472656,131.4044,245.12302907307944,74.95474,5.642451008160909,2.9853579999999997,27.75340000788371,0.041260000000000005,12.723000367482504,27.0691602,0.16371100271741548,0.10986,1.5584500432014465,3.0251202000000004,0.22851899514595667,0.300486802,375.1469751993815,9.64405811122315,96.60232159191983,211.73494308307627,35.47016372910231,29.467456974153745,-0.2180918940680042,25.266906420389812,8.257859999999999,32721.294291846163,0,0.3039090658227603,0.054419999999999996,2.343679904937744,0.19752,0.1176700039456288,0.0374 +2067,12.103612522808392,0.299589653960928,0,0,7.501264784624561,8.090769290924072,1.57686,18.014906406402588,1.9883300000000002,118.15801048278809,9.70100065,40.00612608591715,4.4000000000000007e-4,12.589799960454306,0.0031366613100000003,9.058030684789022,0.241408817,101.57279777526855,4.70772,304.59593709309894,0.0020300000000000006,6.842203338940938,133.94858,0,574.8989919026693,5283.39271,2658.410420735677,530.888257672318,578.7649586995443,735.6377915089847,7.063960870107015,7.27134831,4.0606099764506025,0.1408743862,14.412945826848349,0.06383054090000001,354.729985555013,185.98041500000002,165.6299565633138,125.08144999999999,245.88102849324545,71.60388,5.599401036898295,2.80925765,27.63980007171631,0.03642000000000001,12.415900389353434,25.9142404,0.14912900080283484,0.09697,1.5123000244299571,2.8795605500000003,0.22221999367078146,0.283172279,376.0869700113932,9.660874666458199,97.09043545685415,210.74619169922576,35.142627876011325,29.21662353202253,-0.21840882455406196,25.595106601715088,8.270819999999999,32261.411879179854,0,0.286710058649381,0.04984,2.316489855448405,0.18984,0.11414200253784657,0.0357 +2068,12.04513480827615,0.2873619934628399,0,0,7.3979158860523535,8.158169269561768,1.56694,17.375306447347004,1.8528200000000001,118.81501070658366,9.6009716,39.539225578308105,3.5999999999999997e-4,12.517699956893921,0.00268856684,9.049410661061605,0.231738398,99.68240229288737,4.48888,301.3489405314128,0.00162,6.833973288536072,133.76702,0,573.8910217285156,5273.00264,2663.570393880208,530.7627663856008,582.3939514160156,731.5777250330726,6.71721072991689,6.82664664,3.855090002218882,0.1204598228,13.28884220123291,0.04797140959999999,353.1349817911784,176.92437,161.84781392415366,118.7585,246.3900260925293,68.25301999999999,5.551450808842977,2.6331572999999997,27.526299794514973,0.03158,12.096200307210287,24.7593206,0.13558700059851012,0.08407999999999999,1.4655100305875142,2.7340009,0.21589699387550354,0.265857756,377.02297465006507,9.677691221693248,97.57854932178847,209.75744031537522,34.815092022920346,28.965790089891314,-0.2187128085160392,25.92380666732788,8.28378,31801.52946651354,0,0.2704380576809247,0.04526,2.289389908313751,0.18216,0.11070500314235687,0.034 +2069,11.986657093743906,0.2751343329647518,0,0,7.294566987480147,8.22512928644816,1.5570199999999998,16.75610589981079,1.7173100000000001,119.4650109608968,9.50094255,39.0774253209432,2.8e-4,12.44599986076355,0.0022404723699999997,9.040440638860067,0.22206797900000003,97.82050514221191,4.27004,298.1339365641276,0.0012100000000000001,6.82563320795695,133.58545999999998,0,572.8710581461588,5262.61257,2668.3603312174473,530.6372750988835,586.0089518229166,727.5176585571604,6.3857507308324175,6.381944969999999,3.6595199704170227,0.1000452594,12.252339045206705,0.03211227829999999,351.14998626708984,167.86832500000003,157.96367899576822,112.43555,246.6560262044271,64.90216,5.498740792274475,2.45705695,27.412999947865803,0.02674,11.765400489171347,23.6044008,0.1229130004843076,0.07118999999999999,1.418140043814977,2.5884412500000002,0.20954899365703264,0.248543233,377.9549713134765,9.694507776928296,98.0666631867228,208.7686889315247,34.48755616982936,28.7149566477601,-0.2190038459539359,26.252806822458904,8.29674,31341.647053847228,0,0.25504505013426143,0.04068,2.2623798847198486,0.17448,0.10735900327563286,0.032299999999999995 +2070,11.928179379211663,0.2629066724666637,0,0,7.19121808890794,8.291649341583252,1.5471,16.157005945841473,1.5818,120.10801060994466,9.4009135,38.620424588521324,2e-4,12.374599933624268,0.0017923779,9.031150658925375,0.21239756,95.98710759480794,4.0512,294.94894154866535,8e-4,6.817192951838176,133.4039,0,571.8390808105469,5252.2225,2672.810363769531,530.5117838121662,589.6099599202474,723.4575920812482,6.069080630938212,5.9372433,3.473479986190796,0.079630696,11.296535809834799,0.016253147,348.7859853108724,158.81228000000004,153.98455174763998,106.1126,246.68302536010742,61.5513,5.441370765368144,2.2809566,27.299699942270916,0.0219,11.424700419108072,22.449481,0.110962999984622,0.0583,1.3702500363190968,2.4428816,0.20317899684111276,0.23122871,378.8829727172851,9.711324332163345,98.55477705165713,207.7799375476742,34.16002031673838,28.464123205628884,-0.219281936867752,26.58230670293172,8.3097,30881.76464118092,0,0.2404890495042006,0.0361,2.235469877719879,0.1668,0.10410200245678425,0.0306 +2071,11.77244718236217,0.22016031642280567,0,0,7.079205681049444,8.357739289601644,1.53186,15.577305634816488,1.50882,120.74500974019368,9.26992471,38.16842492421468,1.8e-4,12.303599993387857,0.001657949557,9.02155057589213,0.205751345,94.18201001485188,3.9091199999999997,291.79593658447266,7.300000000000001e-4,6.808653434117635,133.12496,0,570.7981669108073,5238.6166299999995,2676.940307617187,529.2005992767879,593.1969553629557,716.7245867546777,5.766690651575725,5.6829841299999995,3.2965500156084695,0.0739077507,10.415332953135172,0.014775588179999999,346.0549901326497,150.91866850000005,149.91543197631836,100.94908,246.4750239054362,58.52473,5.379470705986023,2.15761918,27.18660004933675,0.02024,11.075100342432657,21.3701224,0.09961760106186072,0.05388,1.3218900461991627,2.3240033500000004,0.19678699597716331,0.219022585,379.8069686889648,9.720141111813026,99.01013803723995,206.62698990150565,33.69435622656857,28.1696592796937,-0.2195148049272162,26.912206649780273,8.30966,30225.759718854162,0,0.2267280456920465,0.03408,2.2086799144744873,0.16155,0.10093200206756592,0.029509999999999998 +2072,11.616714985512674,0.17741396037894763,0,0,6.96719327319095,8.423279285430908,1.5166199999999999,15.016605377197266,1.43584,121.37401008605957,9.13893592,37.721324602762856,1.6e-4,12.232900063196817,0.001523521214,9.011650482813517,0.19910513000000002,92.4049129486084,3.7670399999999997,288.67394256591797,6.6e-4,6.798834005991618,132.84601999999998,0,569.6874593098959,5225.01076,2680.630249023437,527.8894147414095,596.7399597167969,709.9915814281071,5.47821060816447,5.428724959999999,3.128370006879171,0.06818480539999999,9.603040297826132,0.01329802936,342.99899037679035,143.02505700000003,145.79839070638022,95.78556,246.04902267456055,55.49816,5.314090649286906,2.0342817600000003,27.073699951171875,0.01858,10.719500223795572,20.2907638,0.08922610059380531,0.04946,1.2736400266488392,2.2051251,0.19043399641911188,0.20681646,380.7259724934895,9.72895789146271,99.46549902282277,205.4740422553371,33.22869213639876,27.875195353758514,-0.21970245013232861,27.24230670928955,8.309619999999999,29569.75479652741,0,0.21372104187806448,0.03206,2.1819998820622764,0.1563,0.09784680294493835,0.028419999999999997 +2073,11.46098278866318,0.13466760433508962,0,0,6.855180865332455,8.488159338633219,1.50138,14.474405447642008,1.36286,121.99401028951009,9.00794713,37.278924306233726,1.4000000000000001e-4,12.162499904632568,0.0013890928710000002,9.001450538635254,0.192458915,90.65591621398926,3.6249599999999997,285.58194224039715,5.9e-4,6.787363886833191,132.56708,0,568.4876658121744,5211.40489,2683.7502441406245,526.5782302060312,600.210947672526,703.2585761015366,5.203230500221252,5.17446579,2.9685699939727783,0.0624618601,8.854398171106974,0.01182047054,339.65699005126953,135.13144550000004,141.66938400268555,90.62204,245.4220199584961,52.47159,5.246280670166016,1.9109443400000001,26.96120007832845,0.016919999999999998,10.360500256220499,19.211405199999998,0.08008100030322869,0.04504,1.2260100146134694,2.08624685,0.1841799976925055,0.194610335,381.63896942138666,9.73777467111239,99.9208600084056,204.32109460916857,32.76302804622895,27.58073142782333,-0.2198448724830892,27.572306791941326,8.30958,28913.749874200657,0,0.20142804210384688,0.03004,2.1554599006970725,0.15105000000000002,0.0948454017440478,0.02733 +2074,11.305250591813685,0.09192124829123158,0,0,6.74316845747396,8.552369276682535,1.48614,13.95010526974996,1.2898800000000001,122.60500907897949,8.87695834,36.841423988342285,1.2e-4,12.09250005086263,0.001254664528,8.990980466206869,0.1858127,88.93451881408691,3.4828799999999998,282.5199457804362,5.200000000000001e-4,6.775293747584025,132.28814,0,567.2447306315104,5197.79902,2686.35019938151,525.2670456706528,603.6139577229818,696.5255707749661,4.941190441449483,4.92020662,2.816770017147064,0.0567389148,8.164405981699625,0.01034291172,336.0389938354492,127.23783400000002,137.53036626180014,85.45852,244.5970204671224,49.44502,5.176090598106384,1.78760692,26.84909995396932,0.01526,9.998200257619223,18.1320466,0.07197590172290802,0.04062,1.178950031598409,1.9673686000000001,0.1780179999768734,0.18240421,382.54697418212885,9.746591450762072,100.37622099398843,203.16814696300003,32.297363956059144,27.286267501888148,-0.219942071979498,27.902206897735596,8.30954,28257.7449518739,0,0.18981603905558586,0.02802,2.129059910774231,0.14579999999999999,0.09192560240626335,0.02624 +2075,11.149518394964192,0.049174892247373564,0,0,6.6311560496154645,8.615929206212362,1.4708999999999999,13.443405151367188,1.2169,123.20700963338216,8.74596955,36.408623377482094,1e-4,12.022799968719482,0.001120236185,8.980250597000122,0.179166485,87.24072329203288,3.3407999999999998,279.4879455566406,4.5000000000000004e-4,6.762963612874349,132.0092,0,565.9787902832031,5184.19315,2688.4701741536455,523.9558611352745,606.9489542643229,689.7925654483956,4.691570480664571,4.66594745,2.6725800236066184,0.0510159695,7.5284238656361895,0.0088653529,332.15299224853516,119.34422250000003,133.37935384114584,80.295,243.57702000935873,46.41845,5.1035705010096235,1.6642695,26.73740005493164,0.0136,9.633010307947794,17.052688,0.06473340032001336,0.036199999999999996,1.1323700149854024,1.84849035,0.17193999762336412,0.170198085,383.4489720662434,9.755408230411753,100.83158197957124,202.01519931683146,31.83169986588933,26.991803575952964,-0.219994048621555,28.23190673192342,8.3095,27601.740029547145,0,0.178847037255764,0.026000000000000002,2.102799912293752,0.14055,0.08908560127019882,0.02515 +2076,10.993786198114698,0.0064285362035155225,0,0,6.51914364175697,8.67880916595459,1.45566,12.953604857126871,1.14392,123.80001068115234,8.61498076,35.980523109436035,8e-5,11.953399976094564,9.85807842e-4,8.969260533650717,0.17252027,85.57432492574056,3.19872,276.48594156901044,3.800000000000001e-4,6.750463406244914,131.73026,0,564.6968231201172,5170.58728,2690.130147298177,522.6446765998962,610.2169596354166,683.059560121825,4.453840494155884,4.41168828,2.535629987716675,0.045293024200000004,6.942221999168396,0.007387794080000001,328.00499216715497,111.45061100000001,129.21733792622885,75.13148000000001,242.36601765950522,43.39188,5.0287706057230634,1.5409320800000001,26.626100063323975,0.01194,9.265140136082968,15.973329399999999,0.05821110028773546,0.03178,1.086210012435913,1.7296121000000002,0.16594299798210463,0.15799196,384.34597015380854,9.764225010061436,101.28694296515407,200.86225167066291,31.36603577571952,26.697339650017778,-0.22000080240926012,28.561606566111248,8.30946,26945.735107220393,0,0.16848803435762724,0.02398,2.076699912548065,0.1353,0.0863237027078867,0.024059999999999998 +2077,10.838054001265203,0,0,0.03631781984034249,6.407131233898475,8.741039196650187,1.44042,12.480304797490438,1.07094,124.38500912984212,8.48399197,35.5571231842041,6.000000000000002e-5,11.884400049845377,8.513794990000002e-4,8.958030382792154,0.165874055,83.93492889404297,3.05664,273.5139465332031,3.1000000000000005e-4,6.737863262494405,131.45131999999998,0,563.4018503824869,5156.98141,2691.390157063802,521.3334920645178,613.4199625651041,676.3265547952545,4.227500478426616,4.157429110000001,2.405589997768402,0.03957007890000001,6.40185026327769,0.0059102352600000005,323.60399627685547,103.55699950000002,125.04432169596355,69.96796,240.968017578125,40.36531,4.9517505168914795,1.4175946600000002,26.515199820200603,0.01028,8.89481027921041,14.8939708,0.052295200526714325,0.027360000000000002,1.0404300491015117,1.61073385,0.16002099712689719,0.145785835,385.23797353108716,9.773041789711117,101.7423039507369,199.70930402449437,30.90037168554971,26.402875724082595,-0.21996233334261356,28.891106764475506,8.30942,26289.73018489364,0,0.15870603173971176,0.02196,2.0507599115371704,0.13005,0.08363940318425496,0.022969999999999997 +2078,10.682321804415709,0,0,0.07906417588420056,6.29511882603998,8.80259919166565,1.4251800000000001,12.023004531860352,0.99796,124.96100934346516,8.35300318,35.138322830200195,3.9999999999999996e-05,11.815700054168701,7.16951156e-4,8.946550448735556,0.15922783999999998,82.32253138224284,2.91456,270.5709482828776,2.3999999999999998e-4,6.7251730759938555,131.17238,0,562.0968882242838,5143.37554,2692.260131835937,520.0223075291395,616.5579579671224,669.593549468684,4.012070437272389,3.90316994,2.282119949658712,0.033847133599999996,5.903728683789571,0.00443267644,318.95599365234375,95.663388,120.86130777994792,64.80444,239.38501485188803,37.33874,4.8725703954696655,1.2942572399999999,26.404600143432617,0.00862,8.522250175476074,13.8146122,0.046885500041147075,0.022940000000000002,0.9949670334657034,1.4918556,0.15416799982388815,0.13357971,386.12397766113276,9.781858569360798,102.19766493631973,198.55635637832583,30.434707595379898,26.10841179814741,-0.21987864142161506,29.220606486002605,8.30938,25633.725262566884,0,0.14947303012013435,0.01994,2.0249799291292825,0.1248,0.08103110144535701,0.021879999999999997 +2079,10.526589607566214,0,0,0.12181053192805857,6.1831064181814845,8.863489309946695,1.40994,11.58140460650126,0.92498,125.52700996398926,8.22201439,34.72402286529541,1.9999999999999998e-5,11.747400045394897,5.82522813e-4,8.934850454330444,0.152581625,80.7367337544759,2.77248,267.65694427490234,1.7e-4,6.712392886479695,130.89344,0,560.7838999430338,5129.769670000001,2692.790100097656,518.7111229937611,619.6309611002604,662.8605441421134,3.8070703744888306,3.64891077,2.164909998575846,0.0281241883,5.444537242253621,0.0029551176199999994,314.0699946085612,87.7697765,116.66829617818196,59.64092,237.62201436360678,34.312169999999995,4.79127037525177,1.17091982,26.29450003306071,0.006959999999999999,8.147640268007914,12.735253599999998,0.04189850048472484,0.018520000000000002,0.9497930159171423,1.37297735,0.14837999766071638,0.12137358499999999,387.00397745768225,9.790675349010481,102.65302592190254,197.4034087321573,29.969043505210088,25.813947872212225,-0.2197497266462648,29.549906730651855,8.30934,24977.72034024013,0,0.14075902725259462,0.017920000000000002,1.9993799130121868,0.11954999999999999,0.0784961028645436,0.020789999999999996 +2080,10.37085741071672,0,0,0.1645568879719166,6.07109401032299,8.923729260762533,1.3947,11.154804388682047,0.852,126.0850092569987,8.0910256,34.314422607421875,0,11.679400126139322,4.4809447e-4,8.922930399576822,0.14593541,79.17723655700684,2.6304,264.7719446818034,1e-4,6.699562907218933,130.6145,0,559.4629465738932,5116.1638,2692.990091959635,517.3999384583828,622.6399637858073,656.127538815543,3.6120604276657104,3.3946516000000004,2.05362997452418,0.022401243,5.0212059418360395,0.0014775588,308.95198822021484,79.876165,112.46427981058757,54.4774,235.68201319376627,31.2856,4.707900404930115,1.0475824,26.18470001220703,0.0053,7.771150231361389,11.655895,0.037259199966986976,0.0141,0.904868021607399,1.2540991,0.14265299836794534,0.10916746,387.87997690836585,9.799492128660162,103.10838690748537,196.25046108598875,29.50337941504028,25.51948394627704,-0.21957558901656268,29.879106521606445,8.3093,24321.715417913376,0,0.13253602758049965,0.0159,1.97394992907842,0.1143,0.07603290118277073,0.0197 +2081,10.18815445702258,0,0,0.19387212785952057,5.971136562283064,8.983299255371094,1.38503,10.743004163106283,0.81269,126.63400840759277,8.01223632,33.9092222849528,0,11.611700137456259,4.25689747e-4,8.910820404688517,0.141363939,77.64403978983562,2.53814,261.9159469604492,9e-5,6.686692078908284,130.43752,0,558.1378072102865,5107.97992,2692.8900756835933,515.9255873633577,625.5849609375,650.9233549165045,3.426600376764933,3.2492708500000003,1.9480199913183849,0.020790642680000002,4.630924701690674,0.0013462202399999999,303.60899353027344,75.2405566,108.25026766459148,51.41163,233.56701151529947,29.468809999999998,4.6225303411483765,0.983904648,26.075299898783367,0.00488,7.39296019077301,10.99515477,0.03291010049482187,0.01298,0.8601600180069605,1.183527894,0.13698299725850424,0.1026837232,388.7499745686848,9.817348954277744,103.33037820756233,195.3852362760443,29.14177985530608,25.272461849264772,-0.21937044536148684,30.208306630452473,8.26714,23830.454453406135,0,0.12477802547315757,0.01501,1.9487099250157673,0.11069999999999999,0.07364010127882163,0.01899 +2082,10.00545150332844,0,0,0.22318736774712455,5.871179114243137,9.04232923189799,1.3753600000000001,10.345404068628946,0.77338,127.17601013183594,7.93344704,33.50852139790853,0,11.544400135676065,4.03285024e-4,8.898500363032023,0.136792468,76.1367416381836,2.44588,259.0879491170247,8e-5,6.675231059392293,130.26054,0,556.9631195068359,5099.79604,2692.450052897135,514.45123626833265,628.4629618326823,645.7191710174662,3.25020037094752,3.1038901000000005,1.8477700054645538,0.01918004236,4.271043499310811,0.00121488168,298.12599182128906,70.6049482,104.08537356058757,48.34586,231.3230120340983,27.65202,4.536200324694316,0.920226896,25.96619987487793,0.00446,7.021830121676127,10.33441454,0.02898110030218959,0.011859999999999999,0.8165470163027445,1.112956688,0.1314309984445572,0.09619998639999999,389.61597188313795,9.835205779895325,103.55236950763931,194.52001146609987,28.78018029557188,25.0254397522525,-0.2191342956810373,30.536406358083088,8.22498,23339.193488898898,0,0.11746102447311084,0.01412,1.9236599306265514,0.1071,0.07131520162026088,0.018279999999999998 +2083,9.8227485496343,0,0,0.25250260763472854,5.771221666203211,9.100929419199625,1.36569,9.96160395940145,0.73407,127.71300824483235,7.854657759999999,33.11222139994303,0,11.477399905522665,3.80880301e-4,8.886000394821167,0.13222099699999998,74.65504328409831,2.35362,256.28894933064777,7.000000000000001e-5,6.665600935618083,130.08355999999998,0,555.990712483724,5091.612160000001,2691.640014648437,512.9768851733074,631.271962483724,640.5149871184278,3.0824203491210938,2.9585093500000004,1.7525899906953175,0.01756944204,3.9391424655914307,0.00108354312,292.58399709065753,65.9693398,100.022523244222,45.28009,228.99300893147787,25.83523,4.4499402443567915,0.856549144,25.857699712117512,0.00404,6.665520151456197,9.673674309999999,0.025576000257084768,0.01074,0.7748160163561503,1.042385482,0.1260549978663524,0.08971624959999999,390.4789784749348,9.853062605512909,103.77436080771628,193.65478665615547,28.418580735837683,24.77841765524023,-0.21886713997521406,30.86280616124471,8.18282,22847.932524391657,0,0.1105590220540762,0.01323,1.8987999359766643,0.1035,0.06905690208077431,0.01757 +2084,9.64004559594016,0,0,0.2818178475223325,5.6712642181632855,9.159109274546305,1.35602,9.591203769048056,0.6947599999999999,128.24400838216147,7.77586848,32.72032165527344,0,11.410799900690714,3.58475578e-4,8.873310327529907,0.12764952599999999,73.19874699910481,2.26136,253.51794942220053,6e-5,6.65648086865743,129.90658,0,555.0846913655599,5083.42828,2690.4800211588536,511.50253407828234,634.011962890625,635.3108032193895,2.9228802919387817,2.8131286,1.6622500121593475,0.01595884172,3.6330215136210122,9.522045599999999e-4,286.98499806722003,61.3337314,96.05614344278972,42.21432,226.58001200358072,24.01844,4.363760272661845,0.7928713919999999,25.749500115712483,0.00362,6.322330156962077,9.01293408,0.022609300445765257,0.00962,0.734769011537234,0.9718142759999999,0.12084199922780196,0.08323251279999999,391.3379745483398,9.87091943113049,103.99635210779326,192.78956184621103,28.056981176103484,24.531395558227956,-0.2185689782440172,31.18730640411377,8.14066,22356.67155988442,0,0.10405202147861321,0.01234,1.8741399347782135,0.09989999999999999,0.06686400001247723,0.01686 +2085,9.457342642246019,0,0,0.3111330874099365,5.571306770123359,9.216869195302328,1.3463500000000002,9.233783721923828,0.65545,128.77000681559244,7.697079199999999,32.33282152811686,0,11.344499905904135,3.36070855e-4,8.860450347264608,0.12307805499999999,71.76755015055339,2.1691,250.7749481201172,5e-5,6.647470672925313,129.7296,0,554.1976267496744,5075.2444,2688.9899698893223,510.02818298325724,636.6819610595703,630.1066193203511,2.7712102929751077,2.6677478500000005,1.5764999985694885,0.0143482414,3.350700636704763,8.20866e-4,281.3309961954753,56.698122999999995,92.17886670430501,39.14855,224.08500798543295,22.20165,4.2776503165562945,0.72919364,25.641800085703533,0.0032,5.990730166435242,8.35219385,0.020004399896909792,0.0085,0.6962250073750814,0.90124307,0.11578499898314476,0.07674877599999999,392.19496917724604,9.888776256748072,104.21834340787022,191.9243370362666,27.69538161636929,24.284373461215687,-0.21823981048744656,31.51000674565633,8.0985,21865.41059537718,0,0.09791612066328526,0.01145,1.8496799369653065,0.0963,0.06473520087699096,0.016149999999999998 +2086,9.27463968855188,0,0,0.3404483272975405,5.471349322083433,9.274209340413412,1.33668,8.888933579126993,0.61614,129.2900072733561,7.618289919999999,31.949621200561523,0,11.278500080108643,3.13666132e-4,8.847430308659872,0.118506584,70.36115264892578,2.07684,248.0599505106608,4e-5,6.638480703035991,129.55262,0,553.3156534830729,5067.06052,2687.2199707031245,508.55383188823214,639.2829640706381,624.9024354213127,2.6270702481269836,2.5223671000000003,1.495119978984197,0.012737641079999999,3.0903097788492837,6.8952744e-4,275.6229934692383,52.0625146,88.38497479756673,36.08278,221.50900522867838,20.38486,4.191600203514099,0.66551588800000006,25.53439998626709,0.0027800000000000004,5.669410149256389,7.691453620000001,0.017702400063474972,0.00738,0.6590280135472616,0.8306718639999999,0.11087400031586488,0.07026503919999999,393.0479710896809,9.906633082365653,104.44033470794719,191.05911222632216,27.33378205663509,24.037351364203417,-0.21787963670550226,31.8309063911438,8.05634,21374.14963086994,0,0.09213161965211232,0.01056,1.825429916381836,0.0927,0.06266940105706453,0.015439999999999999 +2087,9.09193673485774,0,0,0.36976356718514447,5.371391874043507,9.331119298934937,1.32701,8.556283473968506,0.57683,129.80600611368814,7.539500639999999,31.5707205136617,0,11.212900002797445,2.91261409e-4,8.834240277608236,0.113935113,68.97935549418132,1.98458,245.371950785319,3.000000000000001e-5,6.629480441411336,129.37563999999998,0,552.4336242675781,5058.87664,2685.1699218749995,507.079480793207,641.81396484375,619.6982515222744,2.4901202917099,2.37698635,1.4178999761740367,0.01112704076,2.8501489758491516,5.5818888e-4,269.86299896240234,47.4269062,84.66898091634114,33.01701,218.85400772094727,18.56807,4.105610251426697,0.601838136,25.4275000890096,0.0023600000000000006,5.357170184453328,7.030713390000001,0.015659199949974816,0.00626,0.6230380088090897,0.760100658,0.10609899771710236,0.0637813024,393.89797210693354,9.924489907983235,104.66232600802417,190.19388741637772,26.972182496900892,23.790329267191144,-0.21748845689818425,32.15000661214193,8.01418,20882.8886663627,0,0.08668011799454689,0.00967,1.8013799488544464,0.0891,0.06066420115530491,0.01473 +2088,8.9092337811636,0,0,0.3990788070727485,5.27143442600358,9.387619336446127,1.31734,8.235413471857706,0.53752,130.31500752766928,7.460711359999999,31.196120421091717,0,11.147600015004477,2.68856686e-4,8.820900281270346,0.10936364199999998,67.62175687154134,1.8923199999999998,242.71194966634116,1.9999999999999998e-5,6.62047032515208,129.19866,0,551.5506388346354,5050.69276,2682.869954427083,505.6051296981819,644.2759653727213,614.494067623236,2.360030253728231,2.2316056,1.3446100056171417,0.009516440439999998,2.628648261229197,4.268503199999999e-4,264.0530014038086,42.791297799999995,81.02547645568848,29.95124,216.1210060119629,16.751279999999998,4.019690116246541,0.5381603839999999,25.32099978129069,0.0019399999999999999,5.052970131238301,6.369973160000001,0.013832800167923173,0.005139999999999999,0.5881250152985255,0.689529452,0.10145499867697556,0.057297565599999996,394.7449747721354,9.942346733600818,104.88431730810113,189.3286626064333,26.610582937166694,23.543307170178874,-0.21706627106549248,32.46720600128174,7.97202,20391.62770185546,0,0.08154281601309776,0.00878,1.7775399287541707,0.08549999999999999,0.058717601001262665,0.01402 +2089,8.726530827469459,0,0,0.4283940469603525,5.171476977963654,9.443679332733154,1.30767,7.925973256429036,0.49821,130.82000732421875,7.381922079999999,30.82562033335368,0,11.08269993464152,2.46451963e-4,8.807420492172241,0.10479217099999999,66.28816159566243,1.80006,240.07794952392578,9.999999999999999e-6,6.61145023504893,129.02168,0,550.6666361490885,5042.508879999999,2680.349914550781,504.1307786031567,646.6689758300781,609.2898837241977,2.236480236053467,2.0862248500000002,1.2750800053278606,0.007905840119999999,2.4243576924006143,2.955117599999998e-4,258.19299697875977,38.1556894,77.44986788431804,26.88547,213.31200536092123,14.93449,3.9338201681772866,0.47448263199999996,25.21499999364217,0.00152,4.755900104840596,5.7092329300000015,0.01218770002014935,0.004019999999999999,0.55417700111866,0.618958246,0.09693189958731334,0.0508138288,395.5889765421549,9.9602035592184,105.10630860817811,188.46343779648888,26.248983377432495,23.2962850731666,-0.216613079207427,32.78270626068115,7.92986,19900.366737348224,0,0.07670171620945136,0.00789,1.7539199491341908,0.0819,0.056828501323858895,0.013309999999999999 +2090,8.543827873775319,0,0,0.4577092868479565,5.071519529923728,9.499329408009848,1.298,7.627593119939168,0.4589,131.31900787353516,7.303132799999998,30.459320386250813,0,11.01799988746643,2.2404724e-4,8.793800195058187,0.1002207,64.97826258341472,1.7078,237.47195180257162,0,6.60243018468221,128.8447,0,549.7826385498047,5034.325,2677.619893391927,502.6564275081316,648.9919738769531,604.0856998251593,2.1191702286402383,1.9408441000000003,1.2090999980767567,0.0062952398,2.235947052637736,1.641732e-4,252.28599802652994,33.520081,73.93765068054199,23.8197,210.42800521850586,13.1177,3.8480101227760315,0.41080488,25.10929997762044,0.0011,4.465130090713501,5.0484927000000015,0.01068940005886058,0.0029,0.5210960060358047,0.54838704,0.09252389955023925,0.044330092,396.4299748738606,9.978060384835981,105.32829990825508,187.59821298654444,25.887383817698296,23.04926297615433,-0.2161288813239879,33.09630616505941,7.8877,19409.105772840983,0,0.07214191555976868,0.006999999999999999,1.730519950389862,0.0783,0.05499600122372309,0.0126 +2091,8.339805956421154,0,0,0.46398209487054143,4.997381592837584,9.55454953511556,1.28914,7.339893023173015,0.43762,131.8130086263021,7.231253459999999,30.097119967142742,0,10.953800042470297,2.01642516e-4,8.7800501982371,0.0970558359,63.69166533152262,1.6476899999999999,234.89195251464844,0.0012000000000000001,6.593419988950093,128.68252999999999,0,548.8986256917318,5026.85886,2674.6999104817705,501.5542382835348,651.2449645996094,600.7866210948025,2.007810195287069,1.8667949400000003,1.1465100049972534,0.00775867862,2.0621764858563743,0.00105070848,246.33299763997397,31.747071599999998,70.48453013102214,22.60229,207.4700050354004,12.423829999999999,3.76226011912028,0.387979721,25.004000186920166,9.9e-4,4.179940025011699,4.787059840000001,0.009313919969523946,0.00261,0.48879000544548035,0.520355345,0.08822389940420787,0.0419355302,397.26697285970045,9.999242061953533,105.50925380793724,186.27359380902791,25.571371955447155,22.94125203495097,-0.21563804609745915,33.40810585021973,7.86043,19043.334762942257,0,0.06784751390417416,0.0070999999999999995,1.7073399325211842,0.07583,0.053218100840846695,0.012150000000000001 +2092,8.135784039066989,0,0,0.47025490289312644,4.92324365575144,9.609369357426962,1.28028,7.06255288918813,0.41634,132.3020108540853,7.159374119999999,29.739019711812336,0,10.889899969100952,1.7923779199999998e-4,8.766170263290405,0.0938909718,62.42816766103109,1.58758,232.3389523824056,0.0024000000000000002,6.58450984954834,128.52035999999998,0,548.0245869954427,5019.39272,2671.6599121093745,500.4520490589379,653.4289703369141,597.4875423644457,1.9021101991335552,1.7927457800000002,1.0871300101280212,0.00922211744,1.9018960197766621,0.0019372437600000002,240.40500005086264,29.9740622,67.13850847880046,21.384880000000003,204.47900517781576,11.729959999999998,3.677260140577952,0.36515456199999996,24.899199803670246,8.8e-4,3.9080300529797873,4.525626980000001,0.008088430001710853,0.00232,0.45798300206661224,0.49232365,0.08407219871878624,0.0395409684,398.1029739379882,10.020423739071086,105.69020770761941,184.9489746315114,25.255360093196014,22.833241093747613,-0.21514057352784088,33.71840604146322,7.8331599999999995,18677.563753043534,0,0.0638019135221839,0.0072,1.6843699514865875,0.07336,0.051493800866107144,0.0117 +2093,7.931762121712823,0,0,0.47652771091571144,4.849105718665297,9.663809458414713,1.27142,6.795222798983256,0.39505999999999997,132.78600692749023,7.087494779999999,29.385018984476726,0,10.826299985249838,1.56833068e-4,8.752190351486206,0.0907261077,61.18736902872721,1.5274699999999999,229.81195322672525,0.0036,6.575729648272197,128.35818999999998,0,547.1615651448568,5011.926579999999,2668.5499471028643,499.34985983434103,655.5449778238932,594.188463634089,1.8017801741758983,1.7186966200000002,1.0307999849319458,0.01068555626,1.7540555497010548,0.00282377904,234.56999842325845,28.2010528,63.94422403971354,20.16747,201.4960060119629,11.03609,3.593690117200216,0.342329403,24.79479996363322,7.700000000000001e-4,3.656190037727356,4.264194120000001,0.0070305199672778445,0.0020299999999999997,0.42932600528001785,0.46429195500000003,0.08010669983923435,0.0371464066,398.9349746704101,10.041605416188638,105.87116160730157,183.6243554539949,24.939348230944873,22.725230152544253,-0.21463646361513306,34.02750587463379,7.80589,18311.79274314481,0,0.05999151275803646,0.007299999999999999,1.6616299549738567,0.07089,0.04982240063448747,0.01125 +2094,7.727740204358658,0,0,0.4828005189382964,4.774967781579153,9.717849334081015,1.2625600000000001,6.537572622299194,0.37378,133.2650057474772,7.0156154399999995,29.035019238789875,0,10.763000011444092,1.34428344e-4,8.738080342610678,0.0875612436,59.96907265981039,1.4673599999999998,227.31095377604166,0.0048000000000000004,6.567039608955383,128.19602,0,546.3075408935547,5004.46044,2665.3798828124995,498.2476706097442,657.5909729003906,590.8893849037322,1.7065801819165547,1.64464746,0.9773529917001724,0.012148995079999999,1.6176851292451222,0.0037103143200000006,228.82600021362305,26.4280434,60.89170455932617,18.95006,198.51900482177734,10.34222,3.511510133743286,0.319504244,24.690799713134766,6.6e-4,3.4221500158309937,4.002761260000001,0.006118260091170669,0.0017399999999999998,0.4025950034459432,0.43626026,0.07631689868867397,0.0347518448,399.7659759521484,10.06278709330619,106.05211550698374,182.29973627647837,24.62333636869373,22.617219211340895,-0.21412571635933567,34.33540598551432,7.77862,17946.021733246085,0,0.056404911602536835,0.0073999999999999995,1.6391199429829915,0.06842,0.04820200086881717,0.0108 +2095,7.523718287004493,0,0,0.48907332696088135,4.700829844493009,9.771509329477945,1.2537,6.2892725467681885,0.35250000000000004,133.73900604248047,6.943736099999999,28.689018726348877,0,10.70010002454122,1.1202362e-4,8.723860184351603,0.08439637950000001,58.7729746500651,1.40725,224.83595530192056,0.006,6.558409372965495,128.03385,0,545.4605204264323,4996.9943,2662.1599121093745,497.1454813851474,659.5679677327474,587.5903061733754,1.6162601709365845,1.5705983000000001,0.9266569962104162,0.013612433899999998,1.491904725631078,0.0045968496,223.16899998982748,24.655034,57.971887270609535,17.73265,195.54800415039062,9.648349999999999,3.4307000637054443,0.296679085,24.5872000058492,5.5e-4,3.203890045483907,3.7413284000000004,0.005328009991596143,0.00145,0.3775920048356056,0.40822856500000004,0.0726923979818821,0.032357283,400.5949732462565,10.083968770423741,106.2330694066659,180.97511709896185,24.30732450644259,22.509208270137535,-0.21360833176044872,34.64210573832194,7.75135,17580.25072334736,0,0.053028211618463196,0.0075,1.6168299615383148,0.06595,0.04663060077776512,0.010350000000000002 +2096,7.319696369650328,0,0,0.49534613498346636,4.626691907406864,9.824769417444864,1.24484,6.050022482872009,0.33122,134.2080078125,6.871856759999999,28.34691874186198,0,10.637500047683716,8.961889599999999e-5,8.709540287653605,0.08123151540000001,57.59877681732178,1.34714,222.3859545389811,0.0072,6.549839337666829,127.87168,0,544.6204986572266,4989.52816,2658.899922688802,496.0432921605505,661.4749755859375,584.2912274430186,1.5305801729361217,1.4965491400000002,0.8785680085420609,0.01507587272,1.3759043614069622,0.00548338488,217.5979995727539,22.8820246,55.175947507222496,16.51524,192.58500162760416,8.95448,3.351210097471873,0.273853926,24.484000205993652,4.4000000000000007e-4,2.9996100664138794,3.4798955400000002,0.004634710028767586,0.00116,0.35413600504398346,0.38019687,0.06922390001515548,0.0299627212,401.42097473144526,10.105150447541295,106.41402330634807,179.65049792144532,23.991312644191446,22.401197328934174,-0.2130843098184722,34.947505950927734,7.72408,17214.479713448636,0,0.04984831064939499,0.0076,1.594759960969289,0.06348,0.04510660097002983,0.0099 +2097,7.115674452296163,0,0,0.5016189430060514,4.55255397032072,9.877659241358439,1.23598,5.819512486457825,0.30994,134.67200724283853,6.799977419999999,28.008718490600586,0,10.575299978256226,6.7214172e-5,8.695120096206665,0.07806665130000001,56.44607893625895,1.28703,219.96195475260416,0.0084,6.5413291454315186,127.70951,0,543.7854817708334,4982.062019999999,2655.599934895833,494.94110293595367,663.3119761149088,580.9921487126618,1.449340134859085,1.42249998,0.8329549978176752,0.016539311539999997,1.2689040104548137,0.00636992016,212.11100006103516,21.1090152,52.49580510457357,15.297830000000001,189.62800470987955,8.26061,3.273020108540853,0.251028767,24.38129981358846,3.300000000000001e-4,2.807730038960775,3.2184626800000005,0.004022629970374207,8.700000000000001e-4,0.33206600447495777,0.352165175,0.0659023995200793,0.0275681594,402.2449747721354,10.126332124658846,106.59497720603024,178.3258787439288,23.675300781940305,22.293186387730817,-0.21255365053340614,35.2518056233724,7.69681,16848.708703549913,0,0.04685620963573456,0.0077,1.5729299585024517,0.06101,0.04362930047015349,0.00945 +2098,6.911652534941997,0,0,0.5078917510286363,4.478416033234577,9.93014931678772,1.22712,5.597442348798116,0.28866000000000003,135.1320063273112,6.72809808,27.674418290456135,0,10.513299942016602,4.480944799999998e-5,8.680610259373983,0.0749017872,55.31468137105306,1.2269199999999998,217.56395467122397,0.009600000000000001,6.532879034678142,127.54733999999999,0,542.95745849609375,4974.59588,2652.259928385416,493.8389137113568,665.0789693196615,577.693069982305,1.3723001380761464,1.34845082,0.7896959980328878,0.01800275036,1.170223702987035,0.007256455440000001,206.70400110880533,19.3360058,49.9240468343099,14.08042,186.677001953125,7.566739999999999,3.19609006245931,0.228203608,24.278899828592937,2.1999999999999993e-4,2.6268300215403237,2.9570298200000003,0.00347855999522532,5.799999999999998e-4,0.31123700241247815,0.32413348,0.06271939941992362,0.0251735976,403.0669784545898,10.147513801776398,106.7759311057124,177.0012595664123,23.359288919689163,22.185175446527456,-0.2120163539052505,35.554905573527016,7.6695400000000005,16482.937693651187,0,0.04404030988613764,0.0078,1.5513199468453724,0.058539999999999995,0.042198200399676956,0.009000000000000001 +2099,6.7076306175878315,0,0,0.5141645590512213,4.404278096148433,9.982259273529053,1.2182600000000001,5.383532365163167,0.26738000000000006,135.58700688680014,6.65621874,27.34401798248291,0,10.451799869537354,2.240472399999999e-5,8.666000127792358,0.0717369231,54.20418357849121,1.16681,215.1899553934733,0.0108,6.524488925933838,127.38517,0,542.1354471842448,4967.12974,2648.909932454427,492.73672448675995,666.7769673665365,574.3939912519483,1.2992801368236542,1.27440166,0.7486729969580969,0.01946618918,1.0792034169038136,0.00814299072,201.37499872843424,17.5629964,47.45348358154297,12.86301,183.73300170898438,6.872869999999999,3.1203900973002114,0.205378449,24.176999886830647,1.1000000000000007e-4,2.4556700587272644,2.69559696,0.002991470003811022,2.899999999999999e-4,0.29152100284894306,0.296101785,0.05966689934333166,0.0227790358,403.886973063151,10.168695478893952,106.95688500539457,175.67664038889578,23.043277057438022,22.0771645053241,-0.2114724199340053,35.85670566558838,7.64227,16117.166683752463,0,0.0413894085213542,0.0079,1.5299399495124817,0.05607,0.04081140086054802,0.008550000000000002 +2100,6.503608700233666,0,0,0.5204373670738063,4.330140159062289,10.0339994430542,1.2094,5.177492141723633,0.24610000000000004,136.03600692749023,6.5843394,27.01731777191162,0,10.39049998919169,0,8.651309967041016,0.068572059,53.11428642272949,1.1066999999999998,212.8409563700358,0.012,6.516148686408997,127.223,0,541.3194274902344,4959.6636,2645.52988688151,491.63453526216307,668.4039764404297,571.0949125215915,1.2300601502259572,1.2003525,0.7097739974657694,0.020929628,0.9952711264292399,0.009029526,196.1229985555013,15.789987,45.07740561167399,11.6456,180.79500198364258,6.178999999999999,3.0458900729815164,0.18255329,24.075500011444092,0,2.2931400338808694,2.4341641,0.0025520900186772146,0,0.27280400693416595,0.26807009,0.05673739997049173,0.020384474,404.70497385660804,10.189877156011503,107.13783890507673,174.35202121137925,22.72726519518688,21.969153564120738,-0.2109218486196706,36.157406171162926,7.615,15751.395673853738,0,0.03889510873705149,0.008,1.5087899764378865,0.0536,0.03946749990185102,0.008100000000000001 +2101,6.460251308898775,0,0,0.5100286197323302,4.310782881246579,10.085299253463745,1.2013373333333335,4.974382241566976,0.24445933333333336,136.48100789388022,6.540443804000001,26.694317658742268,0,10.329600016276041,0,8.635220050811768,0.06811491194000001,52.06599235534668,1.099322,210.5159568786621,0.01192,6.507858872413635,126.37484666666667,0,540.5094045003256,4926.599176,2642.129903157552,490.49454834882533,669.9599660237631,569.1645351116099,1.1666501363118489,1.19235015,0.6734399944543839,0.020790097146666665,0.9181628773609797,0.00896932916,190.94399897257486,15.68472042,42.789826075236,11.567962666666666,177.86400349934897,6.137806666666666,2.9725600878397622,0.18133626806666667,23.97439988454183,0,2.1382600466410318,2.417936339333333,0.002152679953724146,0,0.2549780048429966,0.26628295606666663,0.05392379965633154,0.020248577506666667,405.52097320556635,10.177665556355409,107.04402542487824,173.44097789709173,22.615761826825313,21.914326183971028,-0.2103822866144477,36.45680650075277,7.564233333333333,15652.16789031447,0,0.03663450696816047,0.007946666666666666,1.4871099889278412,0.05324266666666667,0.038073900466163955,0.008046000000000001 +2102,6.416893917563884,0,0,0.49961987239085404,4.29142560343087,10.13629945119222,1.1932746666666667,4.774402340253194,0.2428186666666667,136.9220059712728,6.496548208,26.375117619832356,0,10.269000053405762,0,8.617770036061605,0.06765776488,51.05789438883463,1.0919439999999998,208.21695709228516,0.01184,6.4989893436431885,125.52669333333333,0,539.7173258463541,4893.534752,2638.6298828124995,489.35456143548765,671.4879709879557,567.2341577016282,1.1098901530106862,1.1843477999999998,0.6395259946584702,0.020650566293333332,0.8472976634899775,0.008909132319999999,185.8759994506836,15.57945384,40.61580181121826,11.490325333333333,174.96100107828775,6.096613333333333,2.900710086027781,0.18011924613333333,23.87370014190674,0,1.9951800405979156,2.4017085786666663,0.0018023599889905502,0,0.2384410041073958,0.26449582213333334,0.05124419958641132,0.020112681013333335,406.33097330729163,10.165453956699315,106.95021194467975,172.5299345828042,22.50425845846375,21.859498803821317,-0.20985373391833675,36.75460561116537,7.513466666666667,15552.9401067752,0,0.03458090747396151,0.007893333333333334,1.4649199942747753,0.05288533333333333,0.036636900156736374,0.007992 +2103,6.373536526228993,0,0,0.4892111250493779,4.2720683256151615,10.186899503072103,1.185212,4.5824021100997925,0.24117800000000003,137.36000951131186,6.452652612,26.059617042541504,0,10.208800077438354,0,8.600359996159872,0.06720061782,50.06769593556722,1.0845659999999997,205.94095738728842,0.01176,6.48927903175354,124.67854,0,538.9442952473959,4860.470328,2634.9298909505205,488.2145745221499,673.0239766438802,565.3037802916465,1.0582301219304402,1.17634545,0.6073460032542547,0.02051103544,0.781811460852623,0.00884893548,180.95199966430664,15.47418726,38.57888698577881,11.412688,172.10600407918295,6.055419999999999,2.8306500713030496,0.17890222420000002,23.773399988810223,0,1.867610017458598,2.385480818,0.001508819996767367,0,0.2235490046441555,0.2627086882,0.04871569946408272,0.01997678452,407.1319732666015,10.153242357043222,106.85639846448126,171.61889126851668,22.39275509010218,21.804671423671607,-0.2093361905313376,37.050205866495766,7.4627,15453.71232323593,0,0.03263920700798432,0.00784,1.4430399735768635,0.052528000000000005,0.035253699868917465,0.007938 +2104,6.330179134894102,0,0,0.4788023777079018,4.252711047799452,10.237099329630533,1.1771493333333334,4.398082097371419,0.23953733333333338,137.7950096130371,6.408757016,25.74771722157796,0,10.148799896240234,0,8.582979838053385,0.06674347076,49.09509754180908,1.0771879999999998,203.68995793660483,0.01168,6.479318976402283,123.83038666666667,0,538.175303141276,4827.405904,2631.049886067708,487.0745876088122,674.5669809977213,563.3734028816649,1.0111801226933796,1.1683431,0.5768129974603653,0.020371504586666665,0.7212952772776285,0.00878873864,176.16899871826172,15.36892068,36.67005729675293,11.335050666666666,169.30000178019205,6.014226666666666,2.762320081392924,0.17768520226666668,23.67329978942871,0,1.753790020942688,2.3692530573333332,0.001262879988644272,0,0.21013100569446883,0.26092155426666663,0.04632969883581003,0.019840888026666666,407.92397308349604,10.141030757387128,106.76258498428277,170.70784795422915,22.281251721740613,21.749844043521897,-0.20882965645345036,37.34360567728678,7.411933333333334,15354.484539696661,0,0.030802506487816572,0.0077866666666666666,1.421470006306966,0.05217066666666667,0.033922399704655014,0.007884 +2105,6.286821743559211,0,0,0.4683936303664257,4.233353769983743,10.286999464035034,1.1690866666666668,4.221142013867696,0.2378966666666667,138.22800827026367,6.36486142,25.439417044321697,0,10.08929991722107,0,8.565620104471842,0.06628632370000001,48.13989988962809,1.06981,201.4619572957357,0.0116,6.46924889087677,122.98223333333334,0,537.4052988688151,4794.34148,2626.999816894531,485.9346006954745,676.1159820556641,561.4430254716833,0.968299130598704,1.16034075,0.5478390008211136,0.020231973733333332,0.6653950959444046,0.0087285418,171.52300008138022,15.2636541,34.88111718495687,11.257413333333332,166.54100290934244,5.9730333333333325,2.695690075556437,0.17646818033333334,23.573700428009033,0,1.65215003490448,2.3530252966666665,0.0010568699944997206,0,0.1980350042382876,0.25913442033333334,0.0440780995413661,0.019704991533333334,408.7079696655273,10.128819157731034,106.66877150408428,169.79680463994163,22.16974835337905,21.695016663372186,-0.20833413168467496,37.63490549723307,7.361166666666667,15255.256756157392,0,0.029064105978856485,0.007733333333333333,1.4001799921194713,0.051813333333333336,0.03264100011438131,0.00783 +2106,6.24346435222432,0,0,0.45798488302494955,4.213996492168033,10.336599508921305,1.161024,4.051271915435791,0.23625600000000002,138.65700658162436,6.320965824,25.134716669718426,0,10.02999989191691,0,8.54830010732015,0.06582917664,47.20180161794027,1.0624319999999998,199.256960550944,0.01152,6.45914888381958,122.13408,0,536.633310953776,4761.277056,2622.7998453776036,484.79461378213676,677.66796875,559.5126480617016,0.9291741400957108,1.1523383999999999,0.520346999168396,0.02009244288,0.6137849340836207,0.00866834496,167.00899759928384,15.15838752,33.20436668395996,11.179776,163.8280029296875,5.931839999999999,2.6307100454966226,0.1752511584,23.474300066630047,0,1.5613300402959187,2.3367975359999997,8.843190007610247e-4,0,0.1871240052084128,0.2573472864,0.041951799454788365,0.01956909504,409.4819768269856,10.11660755807494,106.57495802388578,168.88576132565413,22.05824498501748,21.640189283222472,-0.2078496162250114,37.92400582631429,7.3104,15156.028972618124,0,0.027417905783901613,0.00768,1.3791899879773457,0.051456,0.031407699609796204,0.007776000000000001 +2107,6.200106960889429,0,0,0.44757613568347343,4.194639214352324,10.385799407958984,1.1529613333333335,3.888191819190979,0.23461533333333337,139.0830052693685,6.2770702279999995,24.833516438802082,0,9.97104008992513,0,8.531000057856241,0.06537202958,46.28060340881348,1.0550539999999997,197.07596079508463,0.01144,6.449008742968242,121.28592666666667,0,535.8593241373698,4728.212632,2618.459879557291,483.654626868799,679.2229766845703,557.5822706517199,0.8934431225061417,1.14433605,0.4942619999249776,0.019952912026666665,0.5661367873350779,0.008608148119999999,162.62399927775064,15.05312094,31.632405916849773,11.102138666666667,161.16100056966147,5.890646666666666,2.567340056101481,0.17403413646666666,23.37530008951823,0,1.4801000356674194,2.320569775333333,7.398209951740379e-4,0,0.1772750032444795,0.25556015246666663,0.039943599763015904,0.01943319854666667,410.24797312418616,10.104395958418845,106.4811445436873,167.9747180113666,21.946741616655913,21.585361903072762,-0.20737611007445972,38.21100584665934,7.259633333333333,15056.801189078855,0,0.02585810547073682,0.007626666666666667,1.3584900001684825,0.05109866666666667,0.030220599845051765,0.0077220000000000006 +2108,6.156749569554538,0,0,0.43716738834199725,4.175281936536615,10.43459963798523,1.1448986666666667,3.731651763121287,0.2329746666666667,139.50600560506186,6.233174632,24.535816192626953,0,9.912419954935709,0,8.513739983240763,0.06491488252000001,45.37600580851237,1.0476759999999998,194.9169603983561,0.01136,6.438848535219829,120.43777333333334,0,535.0833282470703,4695.1482080000005,2613.979817708333,482.5146399554613,680.7789662679037,555.6518932417383,0.8607771346966425,1.1363337,0.46951399991909665,0.019813381173333332,0.5221196562051773,0.00854795128,158.3639996846517,14.947854360000001,30.158536593119305,11.024501333333333,158.53900273640951,5.849453333333332,2.5055400729179382,0.17281711453333334,23.276600042978924,0,1.4073700507481892,2.3043420146666667,6.188319918389121e-4,0,0.16837700456380844,0.2537730185333333,0.038048299960792065,0.019297302053333333,411.00497690836585,10.092184358762752,106.3873310634888,167.06367469707908,21.835238248294345,21.530534522923052,-0.20691361323301996,38.495805740356445,7.208866666666666,14957.573405539584,0,0.024396704975515604,0.007573333333333333,1.3380900025367737,0.05074133333333334,0.029078100031862657,0.007668000000000001 +2109,6.113392178219647,0,0,0.42675864100052113,4.155924658720906,10.483099301656088,1.1368360000000002,3.5813716650009155,0.23133400000000004,139.92600758870444,6.189279036,24.24151595433553,0,9.854120016098022,0,8.496500015258789,0.06445773546,44.48780663808187,1.040298,192.7809600830078,0.01128,6.428678472836812,119.58962,0,534.3053334554037,4662.083784,2609.3798421223955,481.3746530421236,682.3359883626302,553.7215158317567,0.8308761318524679,1.1283313499999998,0.44603200008471805,0.01967385032,0.48148252815008163,0.00848775444,154.2249984741211,14.84258778,28.776458899180096,10.946864,155.96000035603842,5.808259999999999,2.445270081361135,0.1716000926,23.178200085957844,0,1.342190037171046,2.288114254,5.175429929901535e-4,0,0.16033000374833742,0.2519858846,0.036259399726986885,0.01916140556,411.7529729207356,10.079972759106658,106.29351758329031,166.15263138279155,21.72373487993278,21.47570714277334,-0.206462125700692,38.778405825297035,7.1581,14858.345622000315,0,0.02301010489463806,0.00752,1.3179599940776825,0.050384000000000005,0.02797849988564849,0.007614000000000001 +2110,6.070034786884756,0,0,0.416349893659045,4.136567380905197,10.531299511591593,1.1287733333333334,3.4371116161346436,0.22969333333333336,140.3430061340332,6.14538344,23.950716018676758,0,9.796149969100952,0,8.479289929072062,0.0640005884,43.61560853322347,1.0329199999999998,190.66796239217123,0.0112,6.4184984763463335,118.74146666666667,0,533.5253346761068,4629.01936,2604.669840494791,480.2346661287859,683.8919728597006,551.791138421775,0.8034741332133611,1.120329,0.4237539991736412,0.019534319466666665,0.44396641105413437,0.0084275576,150.20400110880533,14.7373212,27.480172793070476,10.869226666666666,153.42500178019205,5.767066666666666,2.386490066846212,0.17038307066666666,23.08020003636678,0,1.2836800316969554,2.271886493333333,4.327610004111193e-4,0,0.1530480037132899,0.25019875066666664,0.03457089948157469,0.019025509066666668,412.49297841389966,10.067761159450564,106.19970410309182,165.24158806850403,21.612231511571213,21.42087976262363,-0.20602164747747592,39.058905601501465,7.107333333333333,14759.117838461047,0,0.02169350441545248,0.007466666666666667,1.2980999847253163,0.05002666666666667,0.02692009989793102,0.007560000000000001 +2111,6.026677395549865,0,0,0.4059411463175689,4.117210103089487,10.579099496205648,1.1207106666666666,3.2986215353012085,0.22805266666666668,140.75700759887695,6.101487844,23.663215796152752,0,9.738489866256714,0,8.462110042572021,0.06354344134,42.7593100865682,1.0255419999999997,188.57696151733398,0.01112,6.408298333485921,117.89331333333334,0,532.7443440755209,4595.954936,2599.8598022460933,479.09467921544814,685.44598388671875,549.8607610117933,0.7783271272977194,1.11232665,0.40261999766031903,0.01939478861333333,0.4093313018480937,0.00836736076,146.296999613444,14.63205462,26.26397959391276,10.791589333333333,150.93300120035806,5.7258733333333325,2.329180041948954,0.16916604873333332,22.982500076293945,0,1.231100042661031,2.2556587326666664,3.6180699680699036e-4,0,0.14645300433039665,0.2484116167333333,0.03297689991692702,0.018889612573333336,413.22397613525385,10.05554955979447,106.10589062289333,164.3305447542165,21.500728143209646,21.36605238247392,-0.2055921785633717,39.337205251057945,7.056566666666667,14659.890054921778,0,0.02046010410413146,0.007413333333333333,1.2785199880599976,0.049669333333333336,0.025901599787175655,0.0075060000000000005 +2112,5.983320004214974,0,0,0.39553239897609277,4.097852825273779,10.62649941444397,1.112648,3.1656914750734964,0.22641200000000003,141.16900507609049,6.057592248,23.37901512781779,0,9.681150118509928,0,8.444969971974691,0.06308629428,41.9186118443807,1.0181639999999998,186.50796254475912,0.01104,6.398088177045186,117.04516,0,531.9623463948568,4562.890512,2594.959777832031,477.9546923021104,686.9989725748698,547.9303836018117,0.755216121673584,1.1043242999999998,0.38256699591875076,0.01925525776,0.37735719978809357,0.00830716392,142.5009994506836,14.52678804,25.122979482014973,10.713951999999999,148.48200352986655,5.684679999999999,2.273280064264933,0.1679490268,22.8850998878479,0,1.183780054251353,2.2394309719999996,3.024339991194817e-4,0,0.14047200481096903,0.24662448279999996,0.03147209947928786,0.01875371608,413.9469731648762,10.043337960138375,106.01207714269484,163.41950143992898,21.38922477484808,21.31122500232421,-0.20517371895837935,39.61340490976969,7.0058,14560.662271382509,0,0.019287003980328638,0.00736,1.2592300176620483,0.049312,0.024921300044904154,0.007452000000000001 +2113,5.939962612880082,0,0,0.38512365163461665,4.078495547458069,10.673599402109781,1.1045853333333335,3.0380914211273193,0.22477133333333338,141.57700729370117,6.013696652,23.098215262095135,0,9.624130090077719,0,8.427849849065145,0.06262914722,41.09331385294596,1.010786,184.46096165974936,0.01096,6.387878139813741,116.19700666666667,0,531.1793314615885,4529.826088,2589.959818522135,476.8147053887727,688.5489756266276,546.0000061918302,0.7339441130558649,1.0963219499999999,0.3635439972082774,0.019115726906666665,0.3478381112217903,0.00824696708,138.8139991760254,14.421521460000001,24.051972548166912,10.636314666666667,146.07200241088867,5.643486666666666,2.218760053316752,0.16673200486666667,22.788100083669026,0,1.1411000390847523,2.2232032113333333,2.5276200055183534e-4,0,0.1350420042872429,0.24483734886666664,0.030051399643222492,0.018617819586666667,414.66097005208326,10.031126360482283,105.91826366249634,162.50845812564145,21.277721406486513,21.2563976221745,-0.20476626866249886,39.887405713399254,6.955033333333333,14461.43448784324,0,0.018170603550970554,0.007306666666666666,1.2402100066343944,0.04895466666666667,0.0239778997687002,0.007398000000000001 +2114,5.896605221545191,0,0,0.3747149042931405,4.05913826964236,10.72029940287272,1.0965226666666668,2.9156014124552407,0.2231306666666667,141.98200607299805,5.969801056,22.820715109507244,0,9.5674200852712,0,8.410760005315145,0.062172000160000004,40.28321488698324,1.0034079999999999,182.43596394856772,0.010879999999999999,6.377658009529114,115.34885333333334,0,530.3963368733724,4496.761664,2584.889811197916,475.674718475435,690.094970703125,544.0696287818485,0.7143311301867167,1.0883196,0.3454990014433861,0.01897619605333333,0.3206130191683769,0.00818677024,135.2310002644857,14.31625488,23.046660264333088,10.558677333333334,143.7020034790039,5.602293333333333,2.165600081284841,0.16551498293333333,22.69130007425944,0,1.102560043334961,2.2069754506666666,2.112119982484728e-4,0,0.13010600209236145,0.24305021493333331,0.02870999959607919,0.018481923093333335,415.36697896321607,10.018914760826188,105.82445018229785,161.59741481135393,21.166218038124946,21.20157024202479,-0.2043698276757303,40.15930589040121,6.9042666666666666,14362.206704303971,0,0.01712480342636506,0.007253333333333333,1.2214600046475728,0.04859733333333333,0.023069999801615875,0.007344000000000001 +2115,5.8532478302103,0,0,0.3643061569516644,4.039780991826651,10.766699314117432,1.08846,2.7980212966601052,0.22149000000000002,142.3850072224935,5.92590546,22.54631519317627,0,9.511020024617514,0,8.393699963887533,0.0617148531,39.48791662851969,0.9960299999999999,180.43196233113608,0.0108,6.367437879244487,114.5007,0,529.6123453776041,4463.6972399999995,2579.7497558593745,474.53473156209725,691.6379699707031,542.1392513718667,0.6962161213159561,1.0803172499999998,0.32837799688180286,0.018836665199999998,0.29550594339768094,0.0081265734,131.74899927775064,14.2109883,22.102641741434734,10.48104,141.37200419108072,5.5611,2.113750080267588,0.164297961,22.594899654388428,0,1.0676800310611725,2.19074769,1.7646099998576878e-4,0,0.12561200310786566,0.241263081,0.027443299535661936,0.018346026600000002,416.0649744669596,10.006703161170094,105.73063670209936,160.68637149706643,21.054714669763378,21.146742861875076,-0.20398439599807355,40.42900530497233,6.8535,14262.9789207647,0,0.016144903376698494,0.0072,1.2029699981212616,0.048240000000000005,0.022196199900160234,0.007290000000000001 +2116,5.809890438875409,0,0,0.3538974096101883,4.020423714010942,10.812699476877848,1.0803973333333334,2.685161272684733,0.21984933333333337,142.78400802612305,5.8820098640000005,22.275214831034344,0,9.454939842224121,0,8.376670042673746,0.06125770604,38.70731830596924,0.9886519999999999,178.4499626159668,0.01072,6.357207894325256,113.65254666666667,0,528.8273366292318,4430.632816,2574.5397745768223,473.3947446487595,693.1769816080729,540.2088739618852,0.679451122879982,1.0723148999999998,0.31213600436846417,0.018697134346666665,0.27232687175273895,0.00806637656,128.36600049336752,14.10572172,21.216018358866375,10.403402666666667,139.08100382486978,5.519906666666666,2.0631900429725647,0.16308093906666668,22.498900095621746,0,1.0360400279362996,2.174519929333333,1.4740300078604682e-4,0,0.12151400248209636,0.23947594706666664,0.026245699884990852,0.018210130106666667,416.7549743652343,9.994491561514,105.63682322190087,159.7753281827789,20.943211301401814,21.091915481725366,-0.20360997362952868,40.69660504659017,6.802733333333333,14163.751137225432,0,0.015227003023028374,0.007146666666666667,1.1847299933433533,0.04788266666666667,0.021355300055195887,0.007236000000000001 +2117,5.766533047540518,0,0,0.34348866226871216,4.001066436195233,10.858399629592896,1.0723346666666669,2.5768312414487204,0.21820866666666672,143.1800053914388,5.838114268,22.007214546203613,0,9.39917000134786,0,8.359670003255209,0.06080055898,37.94111982981364,0.9812739999999999,176.48796463012695,0.01064,6.346987724304199,112.80439333333334,0,528.0433502197266,4397.568392,2569.259785970052,472.2547577354218,694.709971110026,538.2784965519036,0.6639061272144318,1.06431255,0.2967279975612958,0.01855760349333333,0.25092580169439316,0.00800617972,125.07999801635742,14.00045514,20.383089701334637,10.325765333333333,136.828000386556,5.478713333333332,2.0138900578022003,0.16186391713333334,22.40309985478719,0,1.0072700430949528,2.1582921686666663,1.2310800047998782e-4,0,0.1177710040162007,0.23768881313333332,0.025113199837505817,0.018074233613333334,417.4369786580403,9.982279961857905,105.54300974170238,158.86428486849138,20.831707933040246,21.037088101575655,-0.20324656057009569,40.96200466156006,6.751966666666666,14064.523353686163,0,0.014349603016550342,0.0070933333333333334,1.1667699913183849,0.047525333333333336,0.020545999829967816,0.007182000000000001 +2118,5.723175656205626,0,0,0.33307991492723604,3.981709158379524,10.903699477513632,1.064272,2.4728511373202005,0.21656800000000004,143.57400767008463,5.794218672,21.742314338684082,0,9.343709945678711,0,8.342689911524454,0.06034341192,37.18912124633789,0.9738959999999999,174.5469652811686,0.01056,6.336767673492432,111.95624000000001,0,527.25933837890625,4364.503968,2563.939798990885,471.1147708220841,696.2389780680338,536.3481191419219,0.6494641254345576,1.0563102,0.28211400161186856,0.018418072639999998,0.23119373867909113,0.00794598288,121.88599840799968,13.895188560000001,19.60015646616618,10.248128000000001,134.6130027770996,5.437519999999999,1.9658000469207764,0.1606468952,22.307600021362305,0,0.9810430357853571,2.142064408,1.0280000060447492e-4,0,0.11434600315988064,0.2359016792,0.024043499647329252,0.01793833712,418.1099751790364,9.970068362201813,105.44919626150389,157.95324155420386,20.720204564678678,20.982260721425945,-0.20289415681977446,41.225305239359535,6.7012,13965.295570146895,0,0.013510302873328328,0.007039999999999999,1.1490600109100342,0.047168,0.01976729991535346,0.007128000000000001 +2119,5.679818264870735,0,0,0.3226711675857599,3.9623518805638147,10.948699474334717,1.0562093333333333,2.373041093349457,0.21492733333333336,143.96400705973306,5.750323076,21.480614185333252,0,9.288559993108114,0,8.32574995358785,0.05988626486,36.45112291971842,0.9665179999999999,172.62696329752603,0.01048,6.3265475034713745,111.10808666666667,0,526.475351969401,4331.439544,2558.5597534179683,469.97478390874636,697.7619832356771,534.4177417319402,0.6360161254803339,1.0483078499999998,0.2682490025957425,0.018278541786666665,0.2130016821126143,0.00788578604,118.7819995880127,13.78992198,18.864218552907307,10.170490666666668,132.43500010172525,5.396326666666666,1.918900042772293,0.1594298732666667,22.21250009536743,0,0.957075039545695,2.125836647333333,8.582700017238191e-5,0,0.11120600253343582,0.23411454526666664,0.023032899480313063,0.017802440626666666,418.77597300211585,9.957856762545719,105.3553827813054,157.04219823991633,20.608701196317114,20.927433341276235,-0.20255276237856526,41.48640441894531,6.650433333333334,13866.067786607626,0,0.01272400274562339,0.006986666666666666,1.1316000123818715,0.04681066666666667,0.019017800067861874,0.007074000000000001 +2120,5.636460873535844,0,0,0.3122624202442838,3.9429946027481058,10.99329940478007,1.0481466666666668,2.277241071065267,0.2132866666666667,144.35100682576498,5.70642748,21.2219139734904,0,9.233710050582886,0,8.308839956919352,0.0594291178,35.72682476043701,0.9591399999999999,170.7269655863444,0.0104,6.316337426503499,110.25993333333334,0,525.6913426717123,4298.37512,2553.129740397135,468.8347969954086,699.2789815266927,532.4873643219586,0.6234671225150427,1.0403054999999999,0.25509800016880035,0.01813901093333333,0.19623162845770517,0.0078255892,115.76699892679851,13.6846554,18.171977043151855,10.092853333333334,130.29300181070963,5.355133333333333,1.8731700579325359,0.15821285133333335,22.11770009994507,0,0.9351070324579874,2.1096088866666665,7.164380076574162e-5,0,0.10832100361585617,0.23232741133333332,0.02207819962253173,0.017666544133333333,419.43297831217444,9.945645162889624,105.2615693011069,156.1311549256288,20.497197827955546,20.872605961126524,-0.20222237724646785,41.745405197143555,6.599666666666667,13766.840003068357,0,0.011987402491892377,0.006933333333333333,1.1143999894460042,0.04645333333333333,0.018296600009004276,0.007020000000000001 +2121,5.593103482200953,0,0,0.3018536729028077,3.923637324932397,11.037599484125773,1.040084,2.185291031996409,0.21164600000000003,144.7360076904297,5.662531884,20.966213703155518,0,9.17916997273763,0,8.29196015993754,0.058971970740000004,35.01602554321289,0.9517619999999999,168.84796524047852,0.01032,6.3061273495356245,109.41178000000001,0,524.9073384602865,4265.310696,2547.669779459635,467.6948100820709,700.7889862060547,530.556986911977,0.6117281218369802,1.03230315,0.24262499809265137,0.017999480079999998,0.18077157934506735,0.00776539236,112.83599917093913,13.57938882,17.52083158493042,10.015216,128.1870034535726,5.31394,1.828570048014323,0.1569958294,22.023200194040935,0,0.9149140367905298,2.0933811259999997,5.979400005647525e-5,0,0.105665002639095,0.2305402774,0.02117599981526534,0.01753064764,420.08297983805335,9.93343356323353,105.16775582090841,155.22011161134128,20.385694459593978,20.817778580976814,-0.20190301200935645,42.00220521291097,6.5489,13667.612219529088,0,0.011297302320599556,0.00688,1.0974399944146473,0.046096,0.017602600157260895,0.006966000000000001 +2122,5.549746090866062,0,0,0.29144492556133156,3.9042800471166874,11.081499417622885,1.0320213333333335,2.097030997276306,0.21000533333333338,145.11700566609701,5.618636288,20.71351385116577,0,9.124930063883463,0,8.275099913279215,0.05851482368,34.31852722167969,0.9443839999999999,166.98796463012695,0.010239999999999999,6.295917232831319,108.56362666666666,0,524.1253407796224,4232.246271999999,2542.169779459635,466.5548231687332,702.2929840087891,528.6266095019953,0.6007201224565506,1.0243007999999998,0.23079099878668785,0.017859949226666665,0.1665225327014923,0.00770519552,109.98799959818523,13.47412224,16.90788221359253,9.937578666666667,126.11600176493327,5.2727466666666665,1.78507004181544,0.15577880746666667,21.929100036621094,0,0.8962900241216024,2.077153365333333,4.989539957023226e-5,0,0.10321200328568618,0.22875314346666664,0.020323399764796097,0.017394751146666665,420.724978129069,9.921221963577436,105.07394234070992,154.30906829705376,20.27419109123241,20.762951200827104,-0.20159466666723103,42.25690523783366,6.4981333333333335,13568.38443598982,0,0.01065090213281413,0.006826666666666667,1.0807100037733715,0.045738666666666664,0.01693479996174574,0.0069120000000000015 +2123,5.506388699531171,0,0,0.28103617821985544,3.8849227693009785,11.125099420547485,1.0239586666666667,2.012320955594381,0.2083646666666667,145.49600474039713,5.574740692000001,20.463813940684002,0,9.070990085601807,0,8.258280038833618,0.05805767662,33.63402811686198,0.9370059999999999,165.14896647135416,0.01016,6.2857271035512285,107.71547333333334,0,523.3433278401693,4199.181848,2536.629801432291,465.41483625539547,703.7909698486328,526.6962320920136,0.5903711219628652,1.0162984499999999,0.219565998762846,0.01772041837333333,0.153388491521279,0.00764499868,107.21999994913737,13.368855660000001,16.330830017725628,9.859941333333333,124.0800011952718,5.231553333333332,1.7426600456237793,0.15456178553333336,21.835200150807697,0,0.8790570249160131,2.0609256046666666,4.162819944516135e-5,0,0.10094000274936359,0.22696600953333332,0.019517499798287947,0.017258854653333332,421.3589782714843,9.909010363921341,104.98012886051143,153.39802498276623,20.162687722870846,20.708123820677393,-0.20129734122009166,42.50940545399984,6.447366666666667,13469.15665245055,0,0.010045402062435945,0.0067733333333333335,1.0642399787902832,0.045381333333333336,0.016292100151379902,0.006858000000000001 +2124,5.46303130819628,0,0,0.27062743087837926,3.865565491485269,11.168299516042074,1.0158960000000001,1.9310209254423778,0.20672400000000005,145.8710060119629,5.530845096,20.217013676961262,0,9.017360210418701,0,8.241479953130087,0.05760052956,32.96243031819662,0.9296279999999999,163.3289680480957,0.01008,6.275536974271138,106.86732,0,522.5613352457682,4166.117424,2531.0597941080723,464.2748493420578,705.2809804280599,524.765854682032,0.5806181182463964,1.0082961,0.20891900236407915,0.017580887519999998,0.14125745619336763,0.00758480184,104.53099950154622,13.263589080000001,15.787174701690674,9.782304,122.07700157165527,5.190359999999999,1.701290061076482,0.15334476360000002,21.74169985453288,0,0.8630580306053162,2.044697844,3.472479966148967e-5,0,0.09883340386052926,0.2251788756,0.018755699507892132,0.01712295816,421.9859771728515,9.896798764265247,104.88631538031294,152.4869816684787,20.051184354509278,20.653296440527683,-0.20101103566793824,42.759805043538414,6.3966,13369.928868911282,0,0.00946078208896021,0.00672,1.0480199952920277,0.045024,0.01567369986635943,0.006804000000000001 +2125,5.419673916861389,0,0,0.26021868353690314,3.84620821366956,11.21109946568807,1.0078333333333334,1.85298087199529,0.20508333333333337,146.2440071105957,5.4869495,19.973013242085774,0,8.964020093282064,0,8.224720001220703,0.057143382500000006,32.30353101094564,0.9222499999999998,161.52796427408853,0.01,6.265366951624553,106.01916666666668,0,521.7813313802084,4133.053,2525.459798177083,463.13486242872006,706.7629750569662,522.8354772720504,0.5714041193326315,1.00029375,0.19882100075483322,0.017441356666666664,0.1300514197597901,0.007524605,101.91699918111165,13.1583225,15.274816274642944,9.704666666666668,120.10800234476726,5.149166666666666,1.6609500547250111,0.15212774166666668,21.648499647776287,0,0.8481510331233343,2.028470083333333,2.8961099966788122e-5,0,0.09687410357097785,0.22339174166666664,0.01803389952207605,0.016987061666666664,422.60497538248694,9.884587164609155,104.79250190011444,151.57593835419118,19.93968098614771,20.598469060377973,-0.20073575001077087,43.008005142211914,6.345833333333333,13270.701085372013,0,0.008895711973309517,0.006666666666666666,1.0320200026035309,0.04466666666666667,0.015078600030392408,0.006750000000000001 +2126,5.376316525526498,0,0,0.24980993619542705,3.826850935853851,11.253599643707275,0.9997706666666667,1.7780808409055073,0.2034426666666667,146.61400604248047,5.443053904,19.73201338450114,0,8.910990079243978,0,8.207979996999105,0.05668623544,31.65703233083089,0.9148719999999998,159.74596659342447,0.00992,6.255196809768677,105.17101333333333,0,521.0023320515951,4099.988576,2519.839762369791,461.9948755153823,708.2379811604818,520.9050998620687,0.5626771152019501,0.9922913999999999,0.18924100076158842,0.01730182581333333,0.11972538816432159,0.00746440816,99.37629954020183,13.05305592,14.79165514310201,9.627029333333335,118.17100143432617,5.107973333333333,1.621600051720937,0.15091071973333334,21.555599848429363,0,0.834215040008227,2.0122423226666664,2.4149899824503034e-5,0,0.09504710262020429,0.22160460773333332,0.017349899746477604,0.01685116517333333,423.2159754435221,9.87237556495306,104.69868841991597,150.66489503990368,19.828177617786142,20.543641680228262,-0.20047148424858954,43.25410525004069,6.295066666666667,13171.473301832742,0,0.008366391683618227,0.006613333333333333,1.0162500143051147,0.04430933333333333,0.014506000016505519,0.006696000000000001 +2127,5.332959134191607,0,0,0.23940118885395092,3.8074936580381418,11.295799414316813,0.991708,1.7062008082866669,0.20180200000000004,146.9800059000651,5.3991583080000005,19.493812719980877,0,8.85824990272522,0,8.191280126571655,0.05622908838,31.02273352940877,0.9074939999999998,157.98396809895834,0.00984,6.245036641756694,104.32286,0,520.2243270874023,4066.924152,2514.199768066406,460.85488860204464,709.7059783935547,518.974722452087,0.5543881158034006,0.98428905,0.18015499785542488,0.017162294959999998,0.11021135623256366,0.0074042113199999995,96.90719922383626,12.94778934,14.335791428883871,9.549392000000001,116.26700210571289,5.06678,1.583230048418045,0.1496936978,21.46299982070923,0,0.8211380342642466,1.9960145619999998,2.0134400074311998e-5,0,0.09333860253294309,0.2198174738,0.01670289970934391,0.01671526868,423.81997172037757,9.860163965296966,104.60487493971748,149.75385172561616,19.716674249424575,20.488814300078552,-0.2002182383813942,43.49800523122152,6.244300000000001,13072.245518293474,0,0.007870571687817574,0.00656,1.000710015495618,0.043952,0.013955000089481473,0.006642000000000001 +2128,5.289601742856716,0,0,0.22899244151247478,3.788136380222433,11.337599515914917,0.9836453333333333,1.637210766474406,0.20016133333333336,147.34400685628256,5.355262712,19.258312702178955,0,8.805800120035807,0,8.17460004488627,0.055771941320000004,30.400434811909992,0.9001159999999998,156.23996861775717,0.009760000000000001,6.234896580378215,103.47470666666668,0,519.4473215738932,4033.859728,2508.5397542317705,459.7149016887069,711.1649729410807,517.0443450421054,0.546497106552124,0.9762867,0.1715380015472571,0.017022764106666664,0.1014453290651242,0.007344014479999999,94.50729942321777,12.842522760000001,13.90552568435669,9.471754666666667,114.39400227864583,5.0255866666666655,1.5458100537459056,0.14847667586666669,21.370700041453045,0,0.808821032444636,1.979786801333333,1.6783700023855392e-5,0,0.09173610371847947,0.21803033986666667,0.016090700092415016,0.016579372186666667,424.4169769287109,9.847952365640872,104.51106145951898,148.84280841132863,19.60517088106301,20.43398691992884,-0.19997601240918486,43.73980522155762,6.193533333333334,12973.017734754205,0,0.007406141570148368,0.006506666666666667,0.9854059964418411,0.04359466666666667,0.01342480001039803,0.006588000000000001 +2129,5.246244351521825,0,0,0.21858369417099865,3.7687791024067234,11.378999551137289,0.9755826666666666,1.5709907511870067,0.1985206666666667,147.70400873819986,5.3113671159999996,19.025712649027508,0,8.753650029500326,0,8.157950083414713,0.05531479426000001,29.789936542510986,0.8927379999999998,154.5149688720703,0.009680000000000001,6.224766453107198,102.62655333333333,0,518.6713180541992,4000.795304,2502.8597615559893,458.5749147753692,712.6159871419271,515.1139676321238,0.5389631142218908,0.96828435,0.1633629985153675,0.01688323325333333,0.09336940261224906,0.00728381764,92.17459869384766,12.737256180000001,13.499157349268595,9.394117333333334,112.55300203959148,4.984393333333332,1.5093200504779816,0.14725965393333335,21.27869971593221,0,0.7971800317366918,1.9635590406666665,1.3988099908601725e-5,0,0.09022870287299156,0.21624320593333332,0.015511399833485484,0.01644347569333333,425.00597635904944,9.835740765984777,104.41724797932049,147.9317650970411,19.493667512701442,20.37915953977913,-0.19974480633196154,43.97940476735433,6.142766666666667,12873.789951214936,0,0.006971101431796948,0.0064533333333333335,0.9703349967797598,0.043237333333333336,0.012914599928384026,0.006534000000000002 +2130,5.202886960186934,0,0,0.20817494682952253,3.7494218245910145,11.42009941736857,0.9675199999999999,1.507440725962321,0.19688000000000003,148.06200536092123,5.26747152,18.7957124710083,0,8.70179001490275,0,8.141330083211264,0.054857647200000005,29.19103701909383,0.8853599999999998,152.8089688618978,0.009600000000000001,6.214646379152934,101.7784,0,517.8973083496094,3967.73088,2497.169738769531,457.4349278620315,714.0589752197266,513.1835902221421,0.5317511061827341,0.960282,0.15560999885201454,0.016743702399999998,0.08593027914563815,0.0072236207999999994,89.90719985961914,12.6319896,13.114986975987753,9.31648,110.74200248718262,4.943199999999999,1.4737400511900585,0.146042632,21.187100092569988,0,0.7861360261837641,1.9473312799999998,1.1656200058496324e-5,0,0.08880650376280148,0.214456072,0.014963099732995033,0.0163075792,425.5879770914713,9.823529166328683,104.323434499122,147.02072178275358,19.382164144339875,20.32433215962942,-0.19952462014972425,44.21700509389242,6.0920000000000005,12774.562167675667,0,0.006563611367406945,0.0064,0.9554729958375295,0.04288,0.012423800071701407,0.006480000000000001 +2131,5.159529568852043,0,0,0.1977661994880464,3.7300645467753055,11.460899432500204,0.9594573333333333,1.4464506804943085,0.19523933333333338,148.41700490315756,5.223575924,18.568512598673504,0,8.650219837824503,0,8.124749978383383,0.05440050014,28.603538513183594,0.8779819999999998,151.12097040812174,0.00952,6.204546252886455,100.93024666666668,0,517.1243082682291,3934.666456,2491.4597574869786,456.29494094869375,715.4929860432943,511.2532128121605,0.5248321145772934,0.9522796499999999,0.14825699850916862,0.016604171546666664,0.07907805653909843,0.007163423959999999,87.7031987508138,12.52672302,12.751714706420898,9.238842666666667,108.9610029856364,4.902006666666666,1.4390300512313843,0.14482561006666667,21.09570010503133,0,0.7756240318218867,1.931103519333333,9.711329994388507e-6,0,0.08746070228517056,0.21266893806666667,0.014443999854847789,0.016171682706666666,426.1619771321614,9.811317566672589,104.22962101892351,146.10967846846606,19.270660775978307,20.26950477947971,-0.1993154432765988,44.45230484008789,6.0412333333333335,12675.334384136399,0,0.006181921266640226,0.006346666666666667,0.9408160050710043,0.04252266666666667,0.011951399889464179,0.006426000000000001 +2132,5.116172177517152,0,0,0.1873574521465703,3.710707268959596,11.501299460728964,0.9513946666666666,1.3879206677277882,0.1935986666666667,148.76800664265951,5.179680328,18.34391212463379,0,8.598949909210205,0,8.108189980189005,0.053943353080000006,28.027339617411297,0.8706039999999998,149.45096842447916,0.00944,6.194456100463867,100.08209333333333,0,516.3523076375326,3901.602032,2485.749776204427,455.154954035356,716.9179840087891,509.32283540217884,0.5181781103213629,0.9442773,0.14128099754452705,0.01646464069333333,0.07276683673262596,0.00710322712,85.56069882710774,12.42145644,12.407940785090128,9.161205333333333,107.21000226338704,4.860813333333333,1.4051800568898518,0.14360858813333333,21.00470034281413,0,0.7655820349852244,1.9148757586666665,8.089580092018878e-6,0,0.08618320276339848,0.21088180413333332,0.013952299719676375,0.016035786213333333,426.72897593180335,9.799105967016494,104.13580753872502,145.19863515417853,19.159157407616743,20.21467739933,-0.1991172757125852,44.68550491333008,5.990466666666667,12576.10660059713,0,0.005824401237381001,0.006293333333333334,0.9263809969027837,0.04216533333333333,0.011496999921898047,0.006372000000000001 +2133,5.072814786182261,0,0,0.17694870480509417,3.691349991143887,11.54129958152771,0.943332,1.3317506313323975,0.19195800000000002,149.11700566609701,5.135784731999999,18.1220121383667,0,8.547959884007772,0,8.091660102208456,0.05348620602,27.462140878041584,0.8632259999999998,147.79897181193033,0.00936,6.184386054674785,99.23394,0,515.5822931925455,3868.537608,2480.0297444661455,454.01496712201833,718.3349761962891,507.3924579921972,0.5117631008227667,0.9362749499999999,0.13466199859976768,0.016325109839999997,0.06695441839595635,0.007043030279999999,83.4778995513916,12.316189860000001,12.082364797592163,9.083568,105.48800086975098,4.81962,1.3721700410048168,0.1423915662,20.913999875386555,0,0.7559610307216644,1.8986479979999997,6.737489987547936e-6,0,0.08496720281740029,0.2090946702,0.013486599627261361,0.015899889719999998,427.2889785766601,9.786894367360402,104.04199405852653,144.287591839891,19.047654039255175,20.15985001918029,-0.19893011745768355,44.9166046778361,5.9397,12476.878817057861,0,0.005489531128356854,0.00624,0.9121659894784292,0.041808000000000005,0.011059699890514215,0.0063180000000000016 +2134,5.02945739484737,0,0,0.16653995746361805,3.671992713328178,11.580999612808228,0.9352693333333333,1.277830610672633,0.19031733333333337,149.46300506591797,5.091889136,17.902712027231853,0,8.497260093688965,0,8.075160026550293,0.05302905896000001,26.907742182413738,0.8558479999999998,146.16396967569986,0.00928,6.1743260224660235,98.38578666666666,0,514.8143005371094,3835.473184,2474.2997436523433,452.8749802086806,719.74298095703125,505.46208058221555,0.5055641035238901,0.9282726,0.12838399906953177,0.016185578986666664,0.061601801154514156,0.00698283344,81.45309956868489,12.210923280000001,11.773687362670898,9.005930666666666,103.7940018971761,4.778426666666666,1.3399800459543865,0.14117454426666667,20.823599815368652,0,0.7467110256354014,1.8824202373333332,5.610420013605714e-6,0,0.08380610371629398,0.20730753626666665,0.013043799748023352,0.015763993226666665,427.84297688802076,9.774682767704308,103.94818057832804,143.37654852560348,18.936150670893607,20.10502263903058,-0.19875396851189367,45.1456044514974,5.888933333333334,12377.651033518592,0,0.005175871114867429,0.006186666666666667,0.8981659958759943,0.04145066666666667,0.010638999907920757,0.006264000000000001 +2135,4.986100003512478,0,0,0.15613121012214193,3.652635435512469,11.620399395624796,0.9272066666666666,1.2261005739370983,0.18867666666666671,149.8060048421224,5.04799354,17.68601147333781,0,8.446839968363443,0,8.058689991633097,0.052571911900000004,26.364043076833088,0.8484699999999998,144.5469716389974,0.0092,6.164275844891866,97.53763333333333,0,514.0462900797526,3802.40876,2468.559733072916,451.73499329534286,721.1419728597006,503.5317031722339,0.4995611036817233,0.92027025,0.12242999921242396,0.01604604813333333,0.05667288384089867,0.0069226366,79.48449834187825,12.1056567,11.481008609135946,8.928293333333333,102.12800280253093,4.737233333333332,1.3085800409317017,0.13995752233333333,20.733500162760418,0,0.7377910315990448,1.8661924766666664,4.671089944470926e-6,0,0.08269430262347062,0.20552040233333332,0.01262259972281754,0.015628096733333333,428.3889770507812,9.762471168048213,103.85436709812954,142.46550521131599,18.824647302532043,20.05019525888087,-0.1985888288752157,45.37240473429362,5.838166666666667,12278.423249979322,0,0.004882090880225102,0.0061333333333333335,0.8843789994716644,0.041093333333333336,0.010234100045636296,0.006210000000000001 +2136,4.942742612177587,0,0,0.1457224627806658,3.63327815769676,11.659399588902792,0.919144,1.1764405369758606,0.18703600000000004,150.1460049947103,5.004097944,17.471911748250324,0,8.39670991897583,0,8.042249997456869,0.05211476484,25.83074410756429,0.8410919999999998,142.94797007242838,0.009120000000000001,6.154245773951213,96.68948,0,513.2812881469727,3769.3443359999997,2462.819742838541,450.5950063820051,722.531982421875,501.60132576225226,0.49373510479927063,0.9122678999999999,0.1167809988061587,0.015906517279999997,0.052134569734334946,0.006862439759999999,77.57059987386067,12.00039012,11.203128178914389,8.850656,100.4900016784668,4.696039999999999,1.2779600322246552,0.1387405004,20.643699804941814,0,0.7291630258162817,1.8499647159999997,3.888359951057889e-6,0,0.08162480282286803,0.2037332684,0.012223299747953812,0.01549220024,428.92797342936194,9.750259568392119,103.76055361793105,141.55446189702846,18.713143934170475,19.995367878731155,-0.1984346985476496,45.59700393676758,5.7874,12179.195466440053,0,0.004606920954150458,0.00608,0.8707809994618098,0.040736,0.009844649971152345,0.006156000000000001 +2137,4.899385220842696,0,0,0.13531371543918969,3.6139208798810505,11.697999477386475,0.9110813333333333,1.1287905474503834,0.18539533333333336,150.48200480143228,4.960202347999999,17.260311603546143,0,8.346860011418661,0,8.025839964548746,0.051657617780000005,25.3077449798584,0.8337139999999998,141.36597188313803,0.009040000000000001,6.144235650698344,95.84132666666666,0,512.5172805786133,3736.2799119999995,2457.079752604166,449.4550194686674,723.9119873046875,499.6709483522706,0.4880671054124832,0.90426555,0.11142199921111266,0.015766986426666664,0.04795625681678454,0.00680224292,75.70959981282552,11.89512354,10.939146677652994,8.773018666666667,98.87890179951985,4.654846666666666,1.2481000522772472,0.13752347846666665,20.554200172424316,0,0.7207960337400436,1.8337369553333331,3.2362400096038377e-6,0,0.0805933028459549,0.20194613446666665,0.011844499735161662,0.015356303746666666,429.459976196289,9.738047968736025,103.66674013773256,140.64341858274094,18.601640565808907,19.940540498581445,-0.19829157752919532,45.819604555765785,5.736633333333334,12079.967682900784,0,0.004349180807669957,0.006026666666666667,0.8573699941237768,0.04037866666666667,0.00946990012501677,0.006102000000000001 +2138,4.856027829507805,0,0,0.12490496809771355,3.5945636020653415,11.736299673716227,0.9030186666666666,1.083060512940089,0.1837546666666667,150.8160031636556,4.916306752,17.051111539204914,0,8.297289927800497,0,8.009460051854452,0.05120047072,24.794746081034344,0.8263359999999998,139.79997126261392,0.008960000000000001,6.13424551486969,94.99317333333333,0,511.7552769978841,3703.215488,2451.339721679687,448.3150325553297,725.2829793294271,497.74057094228897,0.48254510511954624,0.8962631999999999,0.10633899892369907,0.01562745557333333,0.04410954316457113,0.0067420460799999995,73.90009943644206,11.789856960000002,10.688064018885294,8.695381333333334,97.29450225830078,4.613653333333333,1.2189700603485107,0.13630645653333334,20.465099811553955,0,0.7126610229412714,1.8175091946666664,2.6930299933762094e-6,0,0.07959780345360438,0.20015900053333333,0.011485099714870254,0.015220407253333334,429.98498026529944,9.725836369079932,103.57292665753407,139.7323752684534,18.49013719744734,19.885713118431735,-0.19815946581985294,46.040004094441734,5.685866666666667,11980.739899361515,0,0.0041077807933713,0.005973333333333333,0.8441640039285024,0.04002133333333334,0.00910935007656614,0.006048000000000001 +2139,4.812670438172914,0,0,0.11449622075623743,3.575206324249632,11.774199644724527,0.894956,1.0391804973284404,0.18211400000000005,151.1470044453939,4.872411156,16.84451134999593,0,8.248000065485636,0,7.993099927902222,0.050743323660000006,24.29174741109212,0.8189579999999999,138.25196965535483,0.00888,6.124265432357788,94.14501999999999,0,510.9952672322591,3670.1510639999997,2445.5997517903643,447.17504564199197,726.6439768473307,495.8101935323073,0.47715509682893753,0.88826085,0.1015160009264946,0.015487924719999999,0.040568532732625805,0.00668184924,72.14050038655598,11.684590380000001,10.449180126190186,8.617744,95.73630142211914,4.5724599999999995,1.1905700266361237,0.1350894346,20.37619988123576,0,0.7047330290079117,1.8012814339999998,2.2406200059776893e-6,0,0.07863460356990497,0.19837186659999997,0.011143899677942196,0.01508451076,430.50297800699866,9.713624769423838,103.47911317733558,138.82133195416588,18.378633829085775,19.830885738282024,-0.19803836341962247,46.25820446014404,5.6351,11881.512115822246,0,0.003864270867779851,0.00592,0.8311580121517181,0.039664000000000005,0.008762450035040578,0.005994000000000001 +2140,4.769313046838023,0,0,0.10408747341476131,3.555849046433923,11.811799685160318,0.8868933333333333,0.997066468000412,0.18047333333333337,151.47500610351562,4.82851556,16.640311241149902,0,8.198999881744385,0,7.976780017217,0.0502861766,23.798548539479572,0.8115799999999999,136.71997197469076,0.0088,6.114305337270101,93.29686666666666,0,510.23626200358075,3637.0866399999995,2439.849772135416,446.03505872865423,727.9959869384766,493.8798161223257,0.4718841016292572,0.8802584999999999,0.09693819905320804,0.015348393866666666,0.03730902230987946,0.0066216524,70.42939885457356,11.579323800000001,10.221494992574057,8.540106666666667,94.2038008371989,4.531266666666666,1.1628600458304088,0.13387241266666666,20.287699858347576,0,0.6969900379578272,1.785053673333333,1.863900015071825e-6,0,0.07770050254960854,0.19658473266666665,0.010819799732416868,0.014948614266666667,431.01497395833326,9.701413169767743,103.38529969713709,137.91028863987836,18.267130460724207,19.776058358132314,-0.19792827032850374,46.47430388132731,5.584333333333333,11782.284332282978,0,0.003618770802859217,0.005866666666666667,0.8183500021696091,0.03930666666666667,0.008428690023720264,0.005940000000000001 +2141,4.725955655503132,0,0,0.09367872607328517,3.5364917686182142,11.848999659220377,0.8788306666666666,0.9566524475812912,0.1788326666666667,151.8000055948893,4.784619964,16.43851121266683,0,8.150269985198975,0,7.9604900280634565,0.04982902954,23.314849217732746,0.8042019999999999,135.20497258504233,0.00872,6.104365229606628,92.44871333333333,0,509.48026275634766,3604.0222159999994,2434.1097615559893,444.8950718153165,729.3379872639974,491.94943871234403,0.4667221009731293,0.8722561499999999,0.09259569831192493,0.015208863013333332,0.03430901219447454,0.006561455559999999,68.76540056864421,11.47405722,10.004509449005127,8.462469333333333,92.69660250345866,4.490073333333333,1.1358400483926137,0.13265539073333332,20.199399948120117,0,0.6894120226303736,1.7688259126666663,1.5502499858636536e-6,0,0.07679260211686294,0.19479759873333333,0.01051199979459246,0.014812717773333334,431.5199813842773,9.68920157011165,103.2914862169386,136.99924532559083,18.15562709236264,19.721230977982604,-0.19782918654649698,46.68830426534017,5.533566666666666,11683.056548743709,0,0.003388840763363987,0.0058133333333333335,0.8057370036840439,0.038949333333333336,0.008107590023428202,0.005886000000000001 +2142,4.682598264168241,0,0,0.08326997873180905,3.517134490802505,11.885899623235067,0.870768,0.9178704420725504,0.17719200000000004,152.12200673421225,4.7407243679999995,16.239110946655273,0,8.101809899012247,0,7.944230039914449,0.049371882480000004,22.840550422668457,0.7968239999999999,133.70597457885742,0.00864,6.094435056050618,91.60056,0,508.72525787353516,3570.9577919999997,2428.369750976562,443.7550849019788,730.6699879964193,490.0190613023624,0.4616560985644658,0.8642538,0.08847619965672493,0.015069332159999999,0.03154790339370569,0.00650125872,67.14699935913086,11.36879064,9.797312498092651,8.384832,91.21420224507649,4.44888,1.1094900568326314,0.1314383688,20.111499945322674,0,0.6819800287485123,1.7525981519999998,1.2891700009731721e-6,0,0.07590820267796516,0.19301046479999998,0.010219299777721366,0.01467682128,432.0179773966471,9.676989970455555,103.1976727367401,136.0882020113033,18.044123724001075,19.666403597832893,-0.19774111207360207,46.90020434061686,5.4828,11583.82876520444,0,0.003173500687504808,0.00576,0.7933160066604614,0.038592,0.007798649991552035,0.005832 +2143,4.639240872833349,0,0,0.07286123139033292,3.4977772129867954,11.922399679819742,0.8627053333333333,0.8806544144948324,0.17555133333333336,152.44100443522134,4.696828772,16.04201078414917,0,8.053629954655966,0,7.927989919980367,0.04891473542000001,22.37545124689738,0.7894459999999999,132.2239735921224,0.00856,6.084524949391683,90.75240666666666,0,507.97124735514325,3537.8933679999996,2422.639709472656,442.6150979886411,731.9919891357422,488.08868389238074,0.4566790983080864,0.8562514499999999,0.08456579906245072,0.014929801306666666,0.029006995105495054,0.00644106188,65.57279841105144,11.263524060000002,9.599364757537842,8.307194666666666,89.75629997253418,4.407686666666666,1.08378005027771,0.13022134686666667,20.023900190989178,0,0.6746790260076523,1.736370391333333,1.071879988027528e-6,0,0.0750449039041996,0.19122333086666665,0.009940989781171083,0.014540924786666666,432.5099792480468,9.664778370799462,103.10385925654161,135.17715869701578,17.932620355639507,19.611576217683183,-0.19766404690981898,47.10990365346273,5.432033333333333,11484.600981665171,0,0.0029718206302883723,0.005706666666666667,0.7810849994421005,0.03823466666666667,0.007501429916980366,0.005778000000000001 +2144,4.595883481498458,0,0,0.06245248404885678,3.4784199351710865,11.95859956741333,0.8546426666666667,0.8449404040972391,0.1739106666666667,152.7570063273112,4.6529331759999994,15.847310781478882,0,8.005719939867655,0,7.9117900133132935,0.048457588360000005,21.91945219039917,0.7820679999999999,130.75697326660156,0.00848,6.074634869893392,89.90425333333333,0,507.2202453613281,3504.828944,2416.909729003906,441.47511107530335,733.3039805094401,486.1583064823991,0.4517851024866104,0.8482491,0.08085570049782594,0.014790270453333332,0.026668787313004334,0.00638086504,64.04169845581055,11.158257480000001,9.41002623240153,8.229557333333332,88.32230186462402,4.366493333333333,1.0587100386619568,0.12900432493333333,19.93660036722819,0,0.6674950222174326,1.7201426306666665,8.910609968400726e-7,0,0.07420070221026738,0.18943619693333333,0.00967475981451571,0.014405028293333334,432.99497731526685,9.652566771143368,103.01004577634312,134.26611538272826,17.82111698727794,19.556748837533473,-0.1975979910551478,47.31750361124674,5.381266666666667,11385.373198125902,0,0.0027829306006121137,0.005653333333333334,0.7690399984518687,0.03787733333333333,0.007215479970909655,0.005724000000000001 +2145,4.552526090163567,0,0,0.052043736707380654,3.4590626573553775,11.994499603907267,0.84658,0.8106703807910284,0.17227000000000003,153.07000478108725,4.60903758,15.654910723368326,0,7.958089987436931,0,7.895609974861145,0.0480004413,21.472253163655598,0.7746899999999999,129.30597178141275,0.008400000000000001,6.064754684766133,89.0561,0,506.4702402750651,3471.7645199999997,2411.179768880208,440.3351241619656,734.6059722900391,484.22792907241745,0.4469641000032425,0.8402467499999999,0.07733569915095966,0.0146507396,0.024517380477239687,0.0063206682,62.55229981740316,11.052990900000001,9.228756984074911,8.15192,86.91190083821614,4.3252999999999995,1.0342600345611572,0.12778730300000002,19.849499861399334,0,0.6604180236657461,1.7039148699999997,7.406240030150002e-7,0,0.07337360208233197,0.187649063,0.009419939713552594,0.014269131800000001,433.4739786783854,9.640355171487274,102.91623229614463,133.35507206844073,17.70961361891637,19.50192145738376,-0.19754294450958848,47.522903760274254,5.3305,11286.145414586634,0,0.0026060305923844376,0.005600000000000001,0.7571789970000585,0.03752,0.006940380088053644,0.0056700000000000006 +2146,4.509168698828676,0,0,0.041634989365904526,3.439705379539668,12.029899597167969,0.8385173333333333,0.7777833739916483,0.17062933333333336,153.38000615437826,4.565141984,15.464810371398926,0,7.910719990730286,0,7.879469990730286,0.047543294240000006,21.033854166666668,0.7673119999999999,127.87097231547038,0.008320000000000001,6.0549046993255615,88.20794666666667,0,505.72222900390625,3438.7000959999996,2405.459737141927,439.19513724862793,735.8979797363281,482.2975516624358,0.4422110964854558,0.8322443999999999,0.0739931979527076,0.014511208746666667,0.022537974019845326,0.0062604713599999995,61.10339895884196,10.94772432,9.055006980895996,8.074282666666667,85.52470143636067,4.284106666666666,1.0104100207487743,0.12657028106666668,19.762800057729084,0,0.653435026605924,1.687687109333333,6.154840074638438e-7,0,0.07256200350821018,0.18586192906666665,0.00917723976696531,0.014133235306666667,433.94597625732416,9.62814357183118,102.82241881594614,132.4440287541532,17.598110250554807,19.44709407723405,-0.19749890727314107,47.726203282674156,5.279733333333333,11186.917631047363,0,0.0024403505570565662,0.005546666666666667,0.745478997627894,0.03716266666666667,0.006675720059623321,0.005616 +2147,4.465811307493785,0,0,0.03122624202442839,3.4203481017239588,12.065099557240805,0.8304546666666667,0.7462263604005178,0.1689886666666667,153.68700408935547,4.521246388,15.276910146077475,0,7.863629937171936,0,7.863349994023641,0.04708614718000001,20.60405508677165,0.7599339999999999,126.45097351074219,0.00824,6.045064489046733,87.35979333333334,0,504.9762217203776,3405.635672,2399.7397460937495,438.0551503352902,737.1799875895182,480.36717425245416,0.437520091732343,0.82424205,0.07081919970611732,0.014371677893333334,0.020716868185748655,0.00620027452,59.693699518839516,10.84245774,8.888286272684732,7.996645333333333,84.1603012084961,4.242913333333333,0.9871460398038229,0.12535325913333334,19.676400025685627,0,0.6465370307366053,1.6714593486666665,5.11403998852226e-7,0,0.07176430337131023,0.18407479513333333,0.008945979721223315,0.013997338813333335,434.4119771321614,9.615931972175085,102.72860533574764,131.53298543986568,17.48660688219324,19.392266697084338,-0.19746587934580545,47.92740345001221,5.2289666666666665,11087.689847508094,0,0.0022852005204185843,0.005493333333333334,0.7339390019575754,0.036805333333333336,0.006421110049510996,0.005562 +2148,4.422453916158893,0,0,0.020817494682952256,3.40099082390825,12.099799553553263,0.822392,0.7159443447987238,0.16734800000000002,153.99100240071616,4.477350792,15.091310262680054,0,7.816800038019816,0,7.847259958585103,0.04662900012000001,20.182755947113037,0.7525559999999999,125.04697354634602,0.00816,6.035244504610698,86.51164,0,504.23222096761066,3372.5712479999997,2394.0297648111973,436.91516342195246,738.45098876953125,478.4367968424725,0.4328860988219579,0.8162396999999999,0.06780699950953324,0.01423214704,0.01904156260813276,0.00614007768,58.32219886779785,10.737191160000002,8.728134950002035,7.919008,82.81830151875813,4.201719999999999,0.9644520481427511,0.12413623720000001,19.590399901072185,0,0.6397150258223215,1.6552315879999997,4.2485499799719645e-7,0,0.07097930150727431,0.1822876612,0.00872547971084714,0.01386144232,434.8709818522135,9.603720372518993,102.63479185554915,130.62194212557816,17.37510351383167,19.337439316934628,-0.1974438607275817,48.126404444376625,5.1781999999999995,10988.462063968826,0,0.002139890469455471,0.00544,0.7225740005572637,0.036448,0.00617615005467087,0.005508000000000001 +2149,4.379096524824002,0,0,0.010408747341476135,3.381633546092541,12.134299675623575,0.8143293333333333,0.6868873288234075,0.16570733333333337,154.2930030822754,4.433455196,14.907910029093424,0,7.770240028699239,0,7.831200003623962,0.046171853060000004,19.769656658172607,0.7451779999999999,123.65797424316406,0.00808,6.025444388389587,85.66348666666667,0,503.4902165730794,3339.506824,2388.329752604166,435.7751765086148,739.7119852701823,476.5064194324909,0.42830009510119754,0.80823735,0.06494819931685925,0.014092616186666667,0.01750055778150757,0.00607988084,56.98769950866699,10.631924580000002,8.574113130569458,7.841370666666666,81.49820200602214,4.160526666666666,0.9423160453637441,0.12291921526666667,19.504600048065186,0,0.6329620232184728,1.6390038273333332,3.528950003328646e-7,0,0.07020380285878976,0.18050052726666665,0.008515119707832733,0.013725545826666668,435.32397460937494,9.591508772862898,102.54097837535066,129.71089881129063,17.263600145470107,19.282611936784917,-0.19743285141846986,48.32340431213379,5.127433333333333,10889.234280429557,0,0.0020038004343708358,0.005386666666666667,0.7113829950491587,0.03609066666666667,0.005940509998860459,0.0054540000000000005 +2150,4.335739133489111,0,0,-0,3.3622762682768315,12.168299674987793,0.8062666666666667,0.6590043157339096,0.1640666666666667,154.59100468953451,4.3895596,14.726610024770102,0,7.7239499886830645,0,7.8151800235112505,0.04571470600000001,19.364657560984295,0.7377999999999999,122.28397369384766,0.008,6.015664180119832,84.81533333333334,0,502.75021107991535,3306.4424,2382.639709472656,434.63518959527704,740.96197509765625,474.5760420225092,0.4237620880206426,0.8002349999999999,0.06223239873846372,0.013953085333333334,0.01608315280949076,0.006019684,55.68909899393717,10.526658000000001,8.425840854644775,7.763733333333333,80.19980239868164,4.119333333333333,0.9207240442434946,0.12170219333333335,19.41909996668498,0,0.626272032658259,1.6227760666666664,2.9307600139342565e-7,0,0.06943680283923943,0.17871339333333333,0.008314289851114154,0.013589649333333334,435.77097829182935,9.579297173206804,102.44716489515217,128.7998554970031,17.15209677710854,19.227784556635207,-0.19743285141846986,48.518204053243004,5.076666666666666,10790.006496890288,0,0.0018763603972426306,0.005333333333333334,0.7003630002339681,0.03573333333333333,0.005713810018884639,0.0054 +2151,4.29238174215422,0,0,-0,3.3429189904611225,12.20199982325236,0.798204,0.6322493056456248,0.16242600000000001,154.88600540161133,4.3456640040000005,14.547509908676147,0,7.677920023600261,0,7.799179991086324,0.045257558940000005,18.967658360799152,0.7304219999999999,120.92497380574544,0.00792,6.005894144376119,83.96718000000001,0,502.0111999511719,3273.3779759999998,2376.9497477213536,433.4952026819393,742.2019805908203,472.6456646125276,0.41926809151967365,0.7922326499999999,0.05965439944217602,0.01381355448,0.014779548781613508,0.00595948716,54.42519919077555,10.42139142,8.282928148905436,7.686095999999999,78.92250188191731,4.078139999999999,0.8996610393126806,0.12048517140000001,19.333899974822998,0,0.6196380207935969,1.6065483059999996,2.433579974573756e-7,0,0.06867960157493751,0.1769262594,0.008122439729049802,0.01345375284,436.21197255452466,9.56708557355071,102.35335141495368,127.88881218271558,17.04059340874697,19.172957176485497,-0.19743285141846986,48.71080334981283,5.0259,10690.77871335102,0,0.0017570103712690373,0.005280000000000001,0.6895120044549307,0.035376,0.00549571996089071,0.005346 +2152,4.249024350819329,0,0,-0,3.323561712645413,12.23539956410726,0.7901413333333334,0.6065772871176401,0.16078533333333336,155.17800267537436,4.301768408,14.370609680811564,0,7.632150014241536,0,7.783209999402364,0.04480041188000001,18.57845942179362,0.7230439999999999,119.57997576395671,0.00784,5.9961540301640825,83.11902666666667,0,501.2751998901367,3240.313552,2371.2697753906245,432.3552157686016,743.4289855957031,470.71528720254594,0.4148130888740222,0.7842302999999999,0.05720699951052666,0.013674023626666667,0.013580644968897104,0.00589929032,53.19519933064779,10.31612484,8.145014683405558,7.6084586666666665,77.66620063781738,4.036946666666666,0.8791150401035944,0.11926814946666668,19.249000390370686,0,0.6130570322275162,1.5903205453333331,2.020409984500778e-7,0,0.06793130189180374,0.17513912546666666,0.007939059830581149,0.013317856346666667,436.6469802856445,9.554873973894615,102.25953793475519,126.97776886842806,16.929090040385407,19.118129796335786,-0.19743285141846986,48.901403745015465,4.975133333333333,10591.55092981175,0,0.001645240360327686,0.005226666666666668,0.6788270076115926,0.03501866666666666,0.005285919993184507,0.005292000000000001 +2153,4.205666959484438,0,0,-0,3.304204434829704,12.268399635950724,0.7820786666666667,0.5819422751665115,0.15914466666666668,155.46700286865234,4.2578728120000005,14.195709625879923,0,7.586650013923645,0,7.767270008722941,0.044343264820000006,18.197060108184814,0.7156659999999999,118.25097465515137,0.00776,5.986423929532369,82.27087333333334,0,500.54019419352215,3207.249128,2365.599731445312,431.2152288552639,744.6409810384115,468.7849097925643,0.4103950932621956,0.77622795,0.054880899687608085,0.013534492773333334,0.01247814119172593,0.00583909348,51.997898737589516,10.21085826,8.011790792147318,7.530821333333333,76.43030166625977,3.9957533333333326,0.8590710262457529,0.11805112753333334,19.164499759674072,0,0.6065230220556259,1.5740927846666664,1.6771200250786933e-7,0,0.06719110285242398,0.17335199153333333,0.007762229690949122,0.013181959853333335,437.07498168945307,9.542662374238523,102.1657244545567,126.06672555414055,16.81758667202384,19.063302416186076,-0.19743285141846986,49.08980401357015,4.924366666666666,10492.32314627248,0,0.0015405703549428533,0.005173333333333334,0.6683050145705541,0.034661333333333336,0.0050840900124361115,0.0052380000000000005 +2154,4.162309568149547,0,0,-0,3.2848471570139948,12.3010995388031,0.774016,0.5583052684863409,0.15750400000000003,155.75400416056314,4.213977216,14.023009459177652,0,7.541400035222371,0,7.7513599793116255,0.04388611776000001,17.823060989379883,0.7082879999999999,116.9349759419759,0.00768,5.97671377658844,81.42272,0,499.8071873982747,3174.184704,2359.939758300781,430.07524194192615,745.8369852701823,466.85453238258265,0.40601108968257904,0.7682256,0.05267209901163975,0.01339496192,0.011464438013111552,0.0057788966399999996,50.83249855041504,10.10559168,7.882946689923604,7.453183999999999,75.21460088094075,3.9545599999999994,0.8395140419403712,0.11683410560000002,19.08020003636678,0,0.6000320166349411,1.5578650239999998,1.3919400151015301e-7,0,0.06645820227762063,0.1715648576,0.0075915797691171365,0.01304606336,437.49797821044916,9.530450774582429,102.0719109743582,125.15568223985302,16.706083303662272,19.008475036036366,-0.19743285141846986,49.2761033376058,4.8736,10393.095362733211,0,0.001442550322584187,0.00512,0.6579450021187464,0.034304,0.004889940028078854,0.005184 +2155,4.1189521768146555,0,0,-0,3.265489879198286,12.333399693171183,0.7659533333333333,0.5356252491474152,0.15586333333333335,156.03700510660806,4.17008162,13.852209488550821,0,7.496410051981608,0,7.735479950904846,0.04342897070000001,17.45656156539917,0.7009099999999999,115.63397534688313,0.0076,5.967023690541585,80.57456666666667,0,499.07618459065753,3141.12028,2354.2897745768223,428.9352550285885,747.0179799397787,464.924154972601,0.4016580854852994,0.7602232499999999,0.050574399841328464,0.013255431066666667,0.01053233491256833,0.005718699799999999,49.69789950052897,10.000325100000001,7.7581920226414995,7.375546666666667,74.01870155334473,3.9133666666666658,0.8204360405604044,0.11561708366666668,18.99620008468628,0,0.5935800274213155,1.541637263333333,1.1550699537584326e-7,0,0.06573210222025712,0.16977772366666666,0.007428149770324429,0.012910166866666666,437.9139785766601,9.518239174926334,101.97809749415973,124.2446389255655,16.594579935300708,18.953647655886655,-0.19743285141846986,49.46020380655924,4.8228333333333335,10293.867579193942,0,0.001350750292961796,0.005066666666666667,0.6477429966131846,0.03394666666666667,0.004703169999023278,0.005130000000000001 +2156,4.0755947854797645,0,0,-0,3.246132601382577,12.365399599075317,0.7578906666666666,0.5138622373342514,0.15422266666666667,156.31700388590494,4.126186024,13.683609326680502,0,7.451680024464925,0,7.719619989395142,0.042971823640000004,17.097262382507324,0.6935319999999998,114.34697659810384,0.00752,5.957343578338623,79.72641333333334,0,498.34718068440753,3108.055856,2348.649739583333,427.79526811525074,748.1829732259115,462.99377756261936,0.3973320871591568,0.7522209,0.04857960001875957,0.013115900213333333,0.009675331957017383,0.00565850296,48.593199729919434,9.895058520000001,7.637257178624471,7.297909333333333,72.8422025044759,3.8721733333333326,0.8018240382273992,0.11440006173333334,18.91260019938151,0,0.5871640145778656,1.5254095026666663,2.566201769601169e-8,0,0.06501210108399391,0.16799058973333333,0.007271519862115383,0.012774270373333334,438.32498168945307,9.50602757527024,101.88428401396123,123.33359561127797,16.48307656693914,18.898820275736945,-0.19743285141846986,49.64220364888509,4.7720666666666665,10194.639795654673,0,0.0012647902864652376,0.005013333333333334,0.6376980046431223,0.03358933333333333,0.004523500062835713,0.005076000000000001 +2157,4.0322373941448735,0,0,-0,3.2267753235668675,12.396999597549438,0.7498279999999999,0.49298123518625897,0.15258200000000002,156.5950024922689,4.082290428,13.51690904299418,0,7.407210032145183,0,7.7037999629974365,0.04251467658000001,16.745062987009685,0.6861539999999998,113.07497660319011,0.0074400000000000004,5.947693427403768,78.87826,0,497.62017313639325,3074.991432,2343.0197347005205,426.655281201913,749.3329823811849,461.0634001526377,0.3930320863922437,0.74421855,0.04668219915280739,0.01297636936,0.008887479392190775,0.0055983061199999995,47.5175994237264,9.78979194,7.5198919375737505,7.220272,71.68480237325032,3.8309799999999994,0.7836650361617407,0.11318303980000001,18.82919994990031,0,0.5807810227076212,1.5091817419999998,0,0,0.06429770216345787,0.1662034558,0.0071212998203312354,0.012638373880000001,438.72898101806635,9.493815975614146,101.79047053376274,122.42255229699045,16.371573198577572,18.843992895587235,-0.19743285141846986,49.82210350036621,4.721299999999999,10095.412012115405,0,0.0011842902652764071,0.004960000000000001,0.6278069963057836,0.033232,0.00435065998074909,0.005022 +2158,3.988880002809982,0,0,-0,3.2074180457511585,12.42829966545105,0.7417653333333333,0.4729462265968323,0.15094133333333334,156.86900583902994,4.038394832,13.352209011713663,0,7.362989942232768,0,7.688010056813558,0.042057529520000005,16.399963855743408,0.6787759999999998,111.81597646077473,0.00736,5.938063343365987,78.03010666666667,0,496.8951695760091,3041.9270079999997,2337.399739583333,425.51529428857526,750.4669748942057,459.13302274265607,0.3887580831845601,0.7362162,0.044879499512414135,0.012836838506666667,0.008163247102250656,0.005538109279999999,46.470099449157715,9.68452536,7.405876437822978,7.142634666666666,70.54620107014973,3.789786666666666,0.7659490406513214,0.11196601786666667,18.746100107828777,0,0.5744290252526602,1.492953981333333,0,0,0.063588401923577,0.1644163218666667,0.0069770998088642955,0.012502477386666667,439.12798055013013,9.481604375958053,101.69665705356425,121.51150898270294,16.260069830216004,18.789165515437524,-0.19743285141846986,49.9999033610026,4.670533333333333,9996.184228576134,0,0.0011089102384479095,0.004906666666666667,0.6180680096149445,0.03287466666666667,0.004184409976005554,0.004968 +2159,3.945522611475091,0,0,-0,3.188060767935449,12.459199746449789,0.7337026666666666,0.45372121532758075,0.1493006666666667,157.14100646972656,3.9944992360000002,13.18950899442037,0,7.3190300067265825,0,7.672240058581035,0.04160038246000001,16.061664660771687,0.6713979999999998,110.56997680664062,0.00728,5.928443272908528,77.18195333333333,0,496.1721674601237,3008.862584,2331.7897542317705,424.3753073752376,751.5859832763672,457.2026453326744,0.38450708240270615,0.7282138499999999,0.043166499895354114,0.012697307653333333,0.007497534854337573,0.00547791244,45.44989935557047,9.57925878,7.294990579287211,7.064997333333333,69.42600123087566,3.7485933333333326,0.7486610412597656,0.11074899593333334,18.663400014241535,0,0.568108027180036,1.4767262206666665,0,0,0.06288400292396545,0.16262918793333334,0.00683857985616972,0.012366580893333333,439.52097829182935,9.469392776301959,101.60284357336576,120.60046566841541,16.14856646185444,18.734338135287814,-0.19743285141846986,50.17560386657715,4.619766666666667,9896.956445036865,0,0.001038320236451303,0.004853333333333334,0.6084780097007751,0.032517333333333336,0.0040244799650584655,0.004914000000000001 +2160,3.9021652201402,0,0,-0,3.16870349011974,12.489699602127075,0.72564,0.43527621030807495,0.14766,157.40900548299155,3.95060364,13.028808832168579,0,7.275319933891296,0,7.65651003519694,0.041143235400000006,15.730165402094523,0.6640199999999998,109.33797836303711,0.0072,5.918853084246318,76.3338,0,495.45115661621094,2975.79816,2326.189778645833,423.23532046189985,752.6899871826172,455.2722679226928,0.380278080701828,0.7202115,0.04153599931548039,0.0125577768,0.006885662907734513,0.005417715599999999,44.456299463907875,9.4739922,7.187024434407552,6.98736,68.32400194803874,3.7073999999999994,0.7317920327186584,0.109531974,18.580899874369305,0,0.5618130216995875,1.4604984599999997,0,0,0.06218390197803577,0.160842054,0.0067053997578720255,0.0122306844,439.90797678629554,9.457181176645864,101.50903009316727,119.68942235412788,16.037063093492872,18.679510755138104,-0.19743285141846986,50.34910329182943,4.569,9797.728661497596,0,9.722162212710828e-4,0.0048000000000000004,0.599034994840622,0.03216,0.00387063001592954,0.004860000000000001 +2161,3.858807828805309,0,0,-0,3.1493462123040312,12.519999742507935,0.7175773333333333,0.41757820049921673,0.14601933333333333,157.67400487263998,3.906708044,12.869908730189005,0,7.231859962145488,0,7.64079995950063,0.04068608834,15.405266046524048,0.6566419999999998,108.11997731526692,0.00712,5.909273028373718,75.48564666666667,0,494.73214467366535,2942.7337359999997,2320.5997517903643,422.0953335485621,753.7779795328776,453.34189051271113,0.3760690813263257,0.71220915,0.03998599915454785,0.012418245946666667,0.0063233109734331565,0.005357518759999999,43.488399505615234,9.36872562,7.081788142522176,6.909722666666666,67.23970158894856,3.666206666666666,0.7153320411841074,0.10831495206666666,18.498799959818523,0,0.5555440237124761,1.444270699333333,0,0,0.06148780199388663,0.1590549200666667,0.006577259783322613,0.012094787906666668,440.2899831136067,9.44496957698977,101.41521661296878,118.77837903984036,15.925559725131306,18.624683374988393,-0.19743285141846986,50.52050336201986,4.518233333333333,9698.500877958328,0,9.103151969611645e-4,0.004746666666666667,0.589738001426061,0.03180266666666667,0.003722649998962879,0.004806 +2162,3.815450437470418,0,0,-0,3.129988934488322,12.5497997601827,0.7095146666666666,0.4005981907248497,0.14437866666666668,157.93700536092123,3.862812448,12.713008642196655,0,7.188639998435974,0,7.6251300573349,0.040228941280000007,15.086766719818115,0.6492639999999998,106.91497866312663,0.007039999999999999,5.899712920188904,74.63749333333332,0,494.015141805013,2909.669312,2315.0197143554683,420.95534663522443,754.8499908447266,451.4115131027295,0.37187908589839935,0.7042068,0.038512200117111206,0.012278715093333333,0.0058064992384364205,0.00529732192,42.54539934794108,9.263459039999999,6.979121486345927,6.832085333333334,66.17300160725911,3.6250133333333325,0.6992710332075754,0.10709793013333334,18.416899998982746,0,0.5492970297733942,1.4280429386666664,0,0,0.06079550211628278,0.15726778613333334,0.006452439779726167,0.011958891413333334,440.66497548421216,9.432757977333676,101.32140313277029,117.86733572555283,15.814056356769738,18.569855994838683,-0.19743285141846986,50.68980312347412,4.467466666666667,9599.273094419059,0,8.523501892341301e-4,0.004693333333333334,0.58058300614357,0.03144533333333333,0.003580299982180198,0.004752000000000001 +2163,3.7720930461355264,0,0,-0,3.110631656672613,12.579299608866373,0.701452,0.3843051840861638,0.142738,158.19600423177084,3.818916852,12.557908376057943,0,7.145680030186971,0,7.609480023384094,0.039771794220000004,14.774767398834229,0.6418859999999998,105.72297668457031,0.00696,5.890182892481486,73.78934,0,493.29913838704425,2876.604888,2309.449788411458,419.8153597218867,755.906992594401,449.48113569274784,0.3677040785551071,0.69620445,0.03710829932242632,0.01213918424,0.005331587744876742,0.005237125079999999,41.62659899393717,9.15819246,6.878844698270162,6.754448,65.12340227762859,3.5838199999999993,0.6835980316003164,0.10588090820000001,18.335400263468426,0,0.5430730283260345,1.4118151779999997,0,0,0.06010470228890578,0.1554806522,0.0063307598466053605,0.01182299492,441.0349782307942,9.420546377677583,101.2275896525718,116.95629241126532,15.702552988408172,18.515028614688973,-0.19743285141846986,50.85700352986654,4.4167000000000005,9500.04531087979,0,7.980701727016518e-4,0.00464,0.571569005648295,0.031088,0.003443369991146028,0.004698000000000001 +2164,3.7287356548006354,0,0,-0,3.0912743788569035,12.608499765396118,0.6933893333333333,0.3686731730898221,0.14109733333333335,158.4530029296875,3.775021256,12.40470846494039,0,7.102969964345296,0,7.593860030174255,0.03931464716000001,14.468968073527018,0.6345079999999998,104.54397837320964,0.00688,5.880662679672241,72.94118666666667,0,492.5861307779948,2843.5404639999997,2303.899759928385,418.67537280854896,756.948984781901,447.5507582827662,0.36354708174864453,0.6882021,0.035770599730312824,0.011999653386666666,0.004895206346797447,0.00517692824,40.73119926452637,9.05292588,6.780807733535767,6.6768106666666664,64.09060128529866,3.542626666666666,0.668303037683169,0.10466388626666667,18.254100163777668,0,0.5368720293045044,1.3955874173333331,0,0,0.05941540220131477,0.15369351826666666,0.006213449717809756,0.011687098426666667,441.39997863769526,9.408334778021489,101.1337761723733,116.0452490969778,15.591049620046606,18.460201234539262,-0.19743285141846986,51.022002855936684,4.3659333333333334,9400.817527340521,0,7.472431655817976e-4,0.004586666666666667,0.5626940031846365,0.030730666666666667,0.0033116600049349167,0.0046440000000000006 +2165,3.6853782634657444,0,0,-0,3.0719171010411945,12.63729969660441,0.6853266666666666,0.35367616762717563,0.13945666666666667,158.7070058186849,3.73112566,12.253308296203613,0,7.060499986012776,0,7.578269998232524,0.038857500100000004,14.169268528620401,0.6271299999999999,103.37797864278157,0.0068,5.87116265296936,72.09303333333332,0,491.87512461344403,2810.4760399999996,2298.349731445312,417.5353858952112,757.9739837646484,445.62038087278455,0.3594060813387235,0.68019975,0.03449779966225227,0.011860122533333333,0.0044942549817884965,0.0051167313999999995,39.85859934488932,8.9476593,6.684860348701477,6.599173333333333,63.0745013554891,3.501433333333333,0.6533780346314112,0.10344686433333333,18.173100153605144,0,0.5306900242964426,1.3793596566666664,0,0,0.05872950175156196,0.15190638433333334,0.006100249748366575,0.011551201933333335,441.7589797973632,9.396123178365395,101.03996269217481,115.13420578269027,15.47954625168504,18.405373854389552,-0.19743285141846986,51.18500264485677,4.315166666666666,9301.589743801253,0,6.996491526175911e-4,0.004533333333333334,0.5539549986521403,0.030373333333333336,0.0031849699832188585,0.00459 +2166,3.6420208721308533,0,0,-0,3.0525598232254856,12.665799856185913,0.677264,0.33928616096576053,0.137816,158.95700454711914,3.687230064,12.103808244069418,0,7.018280029296875,0,7.562710007031758,0.03840035304,13.875569264094034,0.6197519999999999,102.22497749328613,0.006719999999999999,5.861682454744975,71.24488,0,491.16612243652344,2777.411616,2292.8197631835933,416.39539898187354,758.9839833577474,443.6900034628029,0.3552800764640172,0.6721974,0.0332866000632445,0.01172059168,0.004125883725161354,0.005056534559999999,39.0080992380778,8.84239272,6.590893069903056,6.521536,62.07460085550944,3.4602399999999993,0.6388090352217356,0.1022298424,18.09250005086263,0,0.5245270182689031,1.3631318959999996,0,0,0.05804680163661639,0.15011925040000001,0.005990919812271993,0.01141530544,442.1129811604817,9.3839115787093,100.94614921197632,114.22316246840275,15.368042883323472,18.350546474239838,-0.19743285141846986,51.3458038965861,4.2644,9202.361960261984,0,6.55082151448975e-4,0.0044800000000000005,0.5453509986400604,0.030016,0.0030631000408902764,0.004536000000000001 +2167,3.5986634807959623,0,0,-0,3.033202545409776,12.693899710973104,0.6692013333333333,0.3254801581303279,0.13617533333333334,159.20500310262045,3.643334468,11.956008195877075,0,6.976300040880839,0,7.5471800565719604,0.037943205980000005,13.587869882583618,0.6123739999999999,101.0839786529541,0.00664,5.852222402890523,70.39672666666667,0,490.45911661783856,2744.3471919999997,2287.2897338867183,415.2554120685358,759.9789835611979,441.75962605282126,0.35116807868083316,0.66419505,0.03213120003541311,0.011581060826666666,0.0037874626383806267,0.00499633772,38.178998947143555,8.737126139999999,6.498755574226379,6.443898666666667,61.09080123901367,3.419046666666666,0.6245880325635275,0.10101282046666668,18.012100219726562,0,0.5183820227781931,1.346904135333333,0,0,0.05736710224300623,0.14833211646666666,0.005885229834044973,0.011279408946666668,442.4609756469726,9.371699979053206,100.85233573177783,113.31211915411522,15.256539514961906,18.295719094090128,-0.19743285141846986,51.50450293223063,4.213633333333334,9103.134176722715,0,6.13351134234108e-4,0.004426666666666667,0.5368790030479431,0.029658666666666667,0.002945879998151213,0.004482000000000001 +2168,3.555306089461071,0,0,-0,3.0138452675940672,12.721599658330282,0.6611386666666667,0.31223414838314056,0.13453466666666666,159.44900512695312,3.599438872,11.81000804901123,0,6.934559981028239,0,7.5316799481709795,0.03748605892,13.305870532989502,0.6049959999999999,99.95627784729004,0.00656,5.842782298723857,69.54857333333334,0,489.7531102498372,2711.2827679999996,2281.7797444661455,414.11542515519807,760.9569854736328,439.8292486428396,0.3470700780550639,0.6561927,0.031031099148094654,0.011441529973333333,0.003476581633246193,0.004936140879999999,37.37069924672445,8.63185956,6.408337831497192,6.366261333333333,60.12260150909424,3.3778533333333325,0.610709031422933,0.09979579853333334,17.931999683380127,0,0.512254019578298,1.3306763746666663,0,0,0.05669030205657085,0.14654498253333334,0.005782969800444941,0.011143512453333334,442.8029810587565,9.359488379397114,100.75852225157934,112.40107583982771,15.14503614660034,18.240891713940417,-0.19743285141846986,51.66110324859619,4.162866666666667,9003.906393183446,0,5.742751236539334e-4,0.004373333333333333,0.5285190045833588,0.029301333333333332,0.002833139985644569,0.0044280000000000005 +2169,3.51194869812618,0,0,-0,2.994487989778358,12.748999754587809,0.653076,0.29952513923247653,0.132894,159.6910031636556,3.555543276,11.665807882944742,0,6.893060048421224,0,7.5162099202473955,0.037028911860000006,13.029571215311686,0.5976179999999999,98.84048016866048,0.00648,5.833352168401082,68.70042,0,489.0501022338867,2678.218344,2276.2797648111973,412.9754382418604,761.9199930826823,437.89887123285797,0.34298507620890933,0.64819035,0.029983399746318657,0.01130199912,0.00319102065016826,0.00487594404,36.582499186197914,8.52659298,6.319539984067281,6.288624,59.169901847839355,3.3366599999999993,0.5971610347429911,0.0985787766,17.852299849192303,0,0.5061420202255249,1.3144486139999998,0,0,0.05601600216080745,0.1447578486,0.005683929853451748,0.011007615960000001,443.1409784952799,9.34727677974102,100.66470877138084,111.49003252554019,15.033532778238772,18.186064333790707,-0.19743285141846986,51.815503438313804,4.1121,8904.678609644177,0,5.376851186156273e-4,0.00432,0.5202670047680537,0.028944,0.0027246899941625693,0.004374000000000001 +2170,3.468591306791289,0,0,-0,2.975130711962649,12.776099761327108,0.6450133333333333,0.28733313580354053,0.13125333333333333,159.93000411987305,3.51164768,11.523307879765829,0,6.851810057957967,0,7.500770052274068,0.0365717648,12.758771737416586,0.5902399999999999,97.73687934875488,0.0063999999999999994,5.823952118555705,67.85226666666667,0,488.34810129801434,2645.1539199999997,2270.7897949218745,411.83545132852265,762.8669789632162,435.9684938228763,0.3389100730419159,0.640188,0.028982799500226974,0.011162468266666666,0.002928729789952437,0.0048157472,35.81379985809326,8.4213264,6.23225200176239,6.210986666666667,58.23230139414469,3.295466666666666,0.5839370389779409,0.097361754666666675,17.772799809773762,0,0.5000460172692934,1.298220853333333,0,0,0.05534430220723152,0.14297071466666667,0.0055879398714751005,0.010871719466666667,443.47298177083326,9.335065180084925,100.57089529118235,110.57898921125266,14.922029409877206,18.131236953640997,-0.19743285141846986,51.96790313720703,4.061333333333334,8805.450826104909,0,5.034231047223633e-4,0.004266666666666667,0.5121420125166575,0.028586666666666666,0.002620370010845363,0.004320000000000001 +2171,3.4252339154563978,0,0,-0,2.95577343414694,12.802799701690674,0.6369506666666667,0.27563513070344925,0.12961266666666665,160.1660041809082,3.467752084,11.38250764211019,0,6.810789903004964,0,7.485359986623128,0.03611461774,12.49357239405314,0.5828619999999999,96.6453800201416,0.006319999999999999,5.81456200281779,67.00411333333334,0,487.6490885416667,2612.0894959999996,2265.3097737630205,410.6954644151849,763.7989756266276,434.0381164128947,0.3348480736215909,0.6321856499999999,0.02802920000006755,0.011022937413333333,0.0026878389762714505,0.004755550359999999,35.06399949391683,8.31605982,6.1463838418324785,6.133349333333333,57.30970128377279,3.254273333333333,0.5710290322701136,0.09614473273333335,17.693599700927734,0,0.4939680223663648,1.2819930926666663,0,0,0.054674901689092316,0.14118358073333334,0.0054948198376223445,0.010735822973333333,443.79898071289057,9.32285358042883,100.47708181098386,109.66794589696514,14.81052604151564,18.076409573491286,-0.19743285141846986,52.11810302734375,4.010566666666667,8706.22304256564,0,4.7134310686184716e-4,0.004213333333333334,0.5041429996490479,0.028229333333333332,0.0025200399880607924,0.004266000000000001 +2172,3.3818765241215067,0,0,-0,2.9364161563312305,12.829099655151367,0.628888,0.26441212743520737,0.127972,160.39800389607748,3.4238564879999998,11.243407567342123,0,6.770009954770406,0,7.4699699481328325,0.035657470680000004,12.233672857284546,0.5754839999999999,95.56588045756023,0.00624,5.805201888084412,66.15596,0,486.9510904947917,2579.025072,2259.839721679687,409.55547750184724,764.7149810791016,432.10773900291304,0.33079707125822705,0.6241833,0.027120099558184545,0.01088340656,0.0024666082463227212,0.00469535352,34.33259932200114,8.21079324,6.061845739682515,6.055712,56.401601791381836,3.2130799999999993,0.5584270258744558,0.09492771080000001,17.614700158437092,0,0.48790401717027027,1.2657653319999997,0,0,0.054007701886196934,0.1393964468,0.005402979790233076,0.01059992648,444.12097676595045,9.310641980772736,100.38326833078537,108.75690258267761,14.699022673154072,18.021582193341576,-0.19743285141846986,52.26620356241862,3.9598000000000004,8606.995259026371,0,4.4130409029700485e-4,0.0041600000000000005,0.49626700580120087,0.027872,0.0024235400487668812,0.0042120000000000005 +2173,3.3385191327866157,0,0,-0,2.9170588785155216,12.855199654897055,0.6208253333333333,0.25364511956771213,0.12633133333333335,160.6280059814453,3.3799608919999997,11.105907440185547,0,6.7294700145721436,0,7.454619963963826,0.03520032362,11.978973468144735,0.5681059999999999,94.49817848205566,0.00616,5.795851747194926,65.30780666666666,0,486.2560755411784,2545.9606479999998,2254.379740397135,408.4154905885095,765.6139933268229,430.1773615929314,0.3267570734024048,0.61618095,0.026250799652189016,0.010743875706666666,0.0022634475802381835,0.0046351566799999995,33.61899979909261,8.10552666,5.978557348251343,5.978074666666667,55.50790055592855,3.171886666666666,0.5461220393578211,0.09371068886666667,17.536100069681805,0,0.48185402154922485,1.249537571333333,0,0,0.05334260190526644,0.13760931286666667,0.00531236978713423,0.010464029986666668,444.4369812011718,9.298430381116644,100.28945485058688,107.8458592683901,14.587519304792504,17.966754813191866,-0.19743285141846986,52.41220251719157,3.9090333333333334,8507.7674754871,0,4.131770911044441e-4,0.0041066666666666665,0.48851200193166733,0.027514666666666666,0.00233071002488335,0.004158000000000001 +2174,3.2951617414517247,0,0,-0,2.897701600699812,12.880799690882364,0.6127626666666667,0.24331511681278548,0.12469066666666667,160.85500462849936,3.3360652959999997,10.970107396443685,0,6.6891599496205645,0,7.439290006955464,0.034743176560000005,11.729473988215128,0.5607279999999999,93.44218063354492,0.0060799999999999995,5.786521673202515,64.45965333333334,0,485.56207784016925,2512.8962239999996,2248.939798990885,407.27550367517176,766.4989929199219,428.24698418294975,0.322727066775163,0.6081786,0.025419199684013922,0.010604344853333333,0.0020768969552591443,0.00457495984,32.92269992828369,8.00026008,5.896438876787822,5.9004373333333335,54.628401120503746,3.130693333333333,0.534107024470965,0.09249366693333334,17.457799911499023,0,0.4758180156350136,1.2333098106666665,0,0,0.052679602056741714,0.13582217893333332,0.005224309784049789,0.010328133493333334,444.74797821044916,9.28621878146055,100.19564137038839,106.93481595410258,14.476015936430938,17.911927433042155,-0.19743285141846986,52.556102434794106,3.8582666666666667,8408.539691947832,0,3.868410907064875e-4,0.004053333333333333,0.4808779979745547,0.027157333333333332,0.0022414400009438396,0.004104000000000001 +2175,3.251804350116833,0,0,-0,2.8783443228841032,12.906099637349447,0.6047,0.23340411360065141,0.12305,161.07900365193686,3.2921696999999996,10.836007277170816,0,6.649090011914571,0,7.42399001121521,0.0342860295,11.485074281692505,0.5533499999999999,92.39778010050456,0.006,5.777211546897888,63.6115,0,484.8700714111328,2479.8318,2243.5097656249995,406.1355167618341,767.3669738769531,426.3166067729681,0.3187080721060435,0.60017625,0.024625499732792377,0.010464814,0.0019055963784921914,0.004514763,32.24309968948364,7.8949935,5.815410296122233,5.8228,53.76270135243734,3.0894999999999992,0.5223750323057175,0.09127664500000002,17.379799842834473,0,0.46979501843452454,1.2170820499999997,0,0,0.052018401833872,0.134035045,0.005138669783870379,0.010192237,445.05398050944007,9.274007181804455,100.1018278901899,106.02377263981505,14.364512568069372,17.85710005289244,-0.19743285141846986,52.69790236155192,3.8075,8309.311908408563,0,3.6218108046644676e-4,0.004,0.4733610029021899,0.026799999999999997,0.0021555699834910533,0.004050000000000001 +2176,3.208446958781942,0,0,-0,2.8589870450683943,12.931099732716879,0.5966373333333332,0.22389610732595125,0.12140933333333334,161.3000030517578,3.248274104,10.703507343928019,0,6.609249989191691,0,7.408729990323384,0.03382888244,11.245574951171875,0.5459719999999999,91.36488151550293,0.00592,5.767921408017476,62.76334666666666,0,484.18006896972656,2446.767376,2238.089762369791,404.99552984849635,768.218983968099,424.38622936298646,0.31469907114903134,0.5921738999999999,0.023867699628074963,0.010325283146666666,0.0017483258658709626,0.0044545661599999994,31.57979917526245,7.78972692,5.735421697298686,5.745162666666666,52.91060129801432,3.048306666666666,0.5109190295139948,0.09005962306666668,17.30210002263387,0,0.4637880176305771,1.200854289333333,0,0,0.05135910212993622,0.13224791106666667,0.0050552898707489176,0.010056340506666667,445.35498046874994,9.26179558214836,100.0080144099914,105.11272932552752,14.253009199707805,17.80227267274273,-0.19743285141846986,52.837502797444664,3.7567333333333335,8210.084124869294,0,3.390920731665877e-4,0.003946666666666667,0.46596000095208484,0.026442666666666666,0.002072969994818171,0.003996 +2177,3.165089567447051,0,0,-0,2.839629767252685,12.955699602762857,0.5885746666666666,0.21477510159214339,0.11976866666666668,161.51800282796225,3.204378508,10.57250706354777,0,6.569640000661214,0,7.393489956855774,0.03337173538,11.010975440343222,0.5385939999999999,90.34328015645345,0.00584,5.758641322453816,61.915193333333335,0,483.49205525716144,2413.7029519999996,2232.679707845052,403.8555429351586,769.0559895833334,422.4558519530048,0.3106970687707265,0.58417155,0.023141699532667797,0.010185752293333333,0.0016039454009539138,0.00439436932,30.932199478149414,7.68446034,5.656403024991353,5.667525333333334,52.07180150349935,3.007113333333333,0.4997330332795779,0.08884260113333334,17.224700291951496,0,0.4577940156062444,1.1846265286666664,0,0,0.05069950160880884,0.13046077713333332,0.004974049787657957,0.009920444013333335,445.6509806315104,9.249583982492267,99.91420092979291,104.20168601124,14.141505831346237,17.74744529259302,-0.19743285141846986,52.97510210673014,3.705966666666667,8110.856341330024,0,3.1747307123926777e-4,0.0038933333333333333,0.45867400119702023,0.026085333333333332,0.0019935400147611895,0.003942 +2178,3.12173217611216,0,0,-0,2.820272489436976,12.979899644851685,0.5805119999999999,0.20602409914135933,0.11812800000000001,161.73300170898438,3.160482912,10.443207184473673,0,6.530260006586711,0,7.37828000386556,0.03291458832,10.781075954437256,0.5312159999999999,89.33298174540202,0.0057599999999999995,5.749391237894694,61.06704,0,482.8060531616211,2380.6385279999995,2227.2797444661455,402.7155560218209,769.875986735026,420.52547454302317,0.3067050650715828,0.5761691999999999,0.022447899760057528,0.01004622144,0.0014713949446255963,0.00433417248,30.299899419148762,7.57919376,5.578294237454732,5.589888,51.24620087941488,2.9659199999999997,0.4888090292612712,0.08762557920000001,17.147599856058758,0,0.4518110180894534,1.1683987679999996,0,0,0.050039902329444885,0.1286736432,0.004894829859646658,0.00978454752,445.9419784545898,9.237372382836174,99.82038744959442,103.29064269695249,14.03000246298467,17.69261791244331,-0.19743285141846986,53.11050319671631,3.6552,8011.628557790756,0,2.972310661183049e-4,0.00384,0.4515010019143422,0.025727999999999997,0.0019171399956879516,0.0038880000000000004 +2179,3.078374784777269,0,0,-0,2.8009152116212666,13.003799676895142,0.5724493333333333,0.1976290966073672,0.11648733333333335,161.9440015157064,3.116587316,10.315406958262125,0,6.491110006968181,0,7.363099972407023,0.032457441260000004,10.55587649345398,0.5238379999999999,88.33378156026204,0.00568,5.740151127179463,60.21888666666667,0,482.1210479736328,2347.574104,2221.899739583333,401.5755691084832,770.6809844970703,418.5950971330415,0.302722064157327,0.56816685,0.02178479948391517,0.009906690586666666,0.0013497245284573485,0.00427397564,29.6822992960612,7.4739271800000004,5.501045346260071,5.512250666666667,50.43350092569987,2.924726666666666,0.47814002881447476,0.08640855726666669,17.070799986521404,0,0.4458410143852234,1.152171007333333,0,0,0.04938230166832606,0.12688650926666664,0.004817499779164791,0.009648651026666667,446.22797648111975,9.22516078318008,99.72657396939593,102.37959938266496,13.918499094623105,17.6377905322936,-0.19743285141846986,53.24380238850912,3.604433333333333,7912.400774251486,0,2.782780575216748e-4,0.0037866666666666665,0.44443800300359726,0.025370666666666666,0.0018436500104144216,0.0038340000000000006 +2180,3.035017393442378,0,0,-0,2.7815579338055576,13.027399698893229,0.5643866666666666,0.18957509100437164,0.11484666666666668,162.15300623575845,3.07269172,10.189106861750284,0,6.452190121014913,0,7.347939968109131,0.0320002942,10.335277160008749,0.5164599999999999,87.34548123677571,0.0056,5.730931003888448,59.370733333333334,0,481.4390385945638,2314.5096799999997,2216.5297648111973,400.43558219514546,771.4699910481771,416.6647197230599,0.29874806106090546,0.5601645,0.02114829948792855,0.009767159733333333,0.0012380341552974035,0.0042137788,29.07919963200887,7.3686606,5.424596428871155,5.434613333333333,49.633401234944664,2.883533333333333,0.46771803001562756,0.08519153533333335,16.994199911753338,0,0.4398830160498619,1.1359432466666664,0,0,0.04872660152614117,0.12509937533333332,0.004741959894696872,0.009512754533333334,446.50998179117835,9.212949183523985,99.63276048919744,101.46855606837744,13.806995726261537,17.58296315214389,-0.19743285141846986,53.3751023610433,3.5536666666666665,7813.172990712217,0,2.605330591904931e-4,0.0037333333333333333,0.4374849970142047,0.025013333333333332,0.0017729800116891663,0.0037800000000000004 +2181,2.991660002107487,0,0,-0,2.7622006559898487,13.050599654515585,0.5563239999999999,0.18184809014201164,0.11320600000000001,162.35900497436523,3.028796124,10.064406871795654,0,6.413489937782288,0,7.332820018132527,0.031543147140000005,10.119177420934042,0.5090819999999999,86.36818250020345,0.00552,5.721720894177754,58.52258,0,480.75804138183594,2281.4452559999995,2211.15976969401,399.2955952818077,772.2429860432943,414.73434231307823,0.2947820673386256,0.5521621499999999,0.02053689956665039,0.00962762888,0.0011355238287554432,0.00415358196,28.489899794260662,7.26339402,5.348917484283447,5.3569759999999995,48.84580103556315,2.8423399999999996,0.4575350309411685,0.0839745134,16.917999903361004,0,0.43393702308336896,1.1197154859999996,0,0,0.048072802213331066,0.12331224139999998,0.004666699833857517,0.009376858040000002,446.78598276774085,9.200737583867891,99.53894700899895,100.55751275408991,13.69549235789997,17.52813577199418,-0.19743285141846986,53.50420252482096,3.5029,7713.945207172948,0,2.4391805466924174e-4,0.00368,0.43063899874687195,0.024655999999999997,0.0017050000024028122,0.003726 +2182,2.948302610772596,0,0,-0,2.7428433781741393,13.07349967956543,0.5482613333333333,0.17443508406480154,0.11156533333333335,162.56300354003906,2.984900528,9.941136916478476,0,6.3750200271606445,0,7.317729989687602,0.031086000080000002,9.907517910003662,0.5017039999999999,85.40158208211263,0.0054399999999999995,5.712540785471599,57.67442666666667,0,480.0790252685547,2248.380832,2205.8097534179683,398.15560836847,772.9989776611328,412.8039649030966,0.2908250615000725,0.5441598,0.019951699456820886,0.009488098026666666,0.0010414435237180442,0.00409338512,27.914099375406902,7.15812744,5.273938337961833,5.279338666666666,48.07040055592855,2.801146666666666,0.4475890249013901,0.08275749146666668,16.842000007629395,0,0.4280020197232564,1.103487725333333,0,0,0.04742080128441254,0.12152510746666666,0.0045917098565648,0.009240961546666667,447.0569763183593,9.188525984211797,99.44513352880045,99.64646943980239,13.583988989538403,17.47330839184447,-0.19743285141846986,53.63120206197103,3.4521333333333333,7614.71742363368,0,2.283610507826476e-4,0.003626666666666667,0.4239000007510185,0.024298666666666666,0.0016396300052292645,0.0036720000000000004 +2183,2.9049452194377046,0,0,-0,2.7234861003584303,13.095999797185263,0.5401986666666666,0.16732408106327057,0.10992466666666667,162.76300430297852,2.941004932,9.819396734237671,0,6.336769978205363,0,7.3026600281397505,0.030628853020000003,9.700148423512777,0.49432599999999993,84.44568188985188,0.00536,5.703370650609334,56.82627333333333,0,479.40202077229816,2215.3164079999997,2200.4797363281245,397.0156214551323,773.739990234375,410.87358749311494,0.2868760625521342,0.5361574499999999,0.019391199729094904,0.009348567173333332,9.55101209304606e-4,0.00403318828,27.351399580637615,7.05286086,5.199639320373535,5.201701333333333,47.3070011138916,2.759953333333333,0.4378720273574193,0.08154046953333334,16.7664000193278,0,0.42208001514275867,1.0872599646666665,0,0,0.046770401298999786,0.11973797353333332,0.004518379767735799,0.009105065053333333,447.323984781901,9.176314384555704,99.35132004860196,98.73542612551488,13.472485621176837,17.41848101169476,-0.19743285141846986,53.756102879842125,3.4013666666666666,7515.48964009441,0,2.1379604853185205e-4,0.0035733333333333333,0.41726400206486386,0.023941333333333332,0.0015767499862704426,0.003618 +2184,2.8615878281028135,0,0,-0,2.704128822542721,13.118099689483643,0.5321359999999999,0.16050307576855025,0.108284,162.9600041707357,2.8971093359999998,9.699116547902426,0,6.298750042915344,0,7.287630041440328,0.030171705960000003,9.497008800506592,0.48694799999999994,83.50018246968587,0.00528,5.694220622380574,55.978120000000004,0,478.7270202636719,2182.2519839999995,2195.149780273437,395.87563454179457,774.4649709065756,408.9432100831333,0.2829330563545227,0.5281551,0.01885189985235532,0.009209036319999999,8.758679468883201e-4,0.00397299144,26.80139954884847,6.947594280000001,5.125970085461934,5.124064,46.55530071258545,2.7187599999999996,0.4283790240685145,0.08032344760000001,16.69099998474121,0,0.41617001841465634,1.0710322039999998,0,0,0.04612170159816742,0.1179508396,0.004446619811157386,0.00896916856,447.5859756469726,9.16410278489961,99.25750656840347,97.82438281122735,13.360982252815269,17.36365363154505,-0.19743285141846986,53.878902435302734,3.3506,7416.261856555141,0,2.001590449557019e-4,0.00352,0.410731998582681,0.023584,0.0015162800070053588,0.0035640000000000003 +2185,2.8182304367679225,0,0,-0,2.684771544727012,13.139899730682373,0.5240733333333333,0.15395807723204294,0.10664333333333334,163.15400187174478,2.85321374,9.580296436945597,0,6.260950009028117,0,7.272619962692261,0.029714558900000004,9.29802918434143,0.47956999999999994,82.56528155008952,0.0052,5.68509046236674,55.12996666666667,0,478.0540135701497,2149.1875599999994,2189.8297729492183,394.73564762845683,775.1729838053385,407.01283267315165,0.2789980595310529,0.5201527499999999,0.018334899563342333,0.009069505466666666,8.031627075979486e-4,0.0039127946,26.263699531555176,6.8423277,5.052910923957825,5.046426666666666,45.81520080566406,2.6775666666666664,0.41910402476787567,0.07910642566666667,16.61590003967285,0,0.41027001788218814,1.054804443333333,0,0,0.045474501637121044,0.11616370566666666,0.004376339842565358,0.008833272066666668,447.84297688802076,9.151891185243516,99.16369308820498,96.91333949693983,13.249478884453703,17.308826251395338,-0.19743285141846986,53.99950249989828,3.2998333333333334,7317.034073015872,0,1.8739004129505096e-4,0.003466666666666667,0.404300997654597,0.023226666666666666,0.0014581200084649026,0.00351 +2186,2.7748730454330315,0,0,-0,2.665414266911303,13.161399761835733,0.5160106666666666,0.14768007025122643,0.10500266666666667,163.3450024922689,2.809318144,9.462916453679403,0,6.223369995752971,0,7.25763996442159,0.029257411840000004,9.103119611740112,0.47219199999999995,81.64058303833008,0.0051199999999999996,5.675970355669658,54.28181333333333,0,477.3820114135742,2116.1231359999997,2184.5297851562495,393.5956607151191,775.8659922281901,405.08245526317,0.27507105966409046,0.5121503999999999,0.01783889966706435,0.008929974613333334,7.364504805688435e-4,0.00385259776,25.737899780273438,6.73706112,4.980401714642842,4.968789333333333,45.086501121520996,2.636373333333333,0.4100400259097417,0.07788940373333333,16.54110034306844,0,0.4043810193737348,1.0385766826666665,0,0,0.04482880110541979,0.11437657173333332,0.004307449872915943,0.008697375573333334,448.094980875651,9.139679585587421,99.06987960800649,96.0022961826523,13.137975516092137,17.253998871245628,-0.19743285141846986,54.11810270945231,3.2490666666666668,7217.8062894766035,0,1.7543604068729715e-4,0.0034133333333333338,0.3979700009028117,0.022869333333333332,0.0014021799919040252,0.003456 +2187,2.7315156540981405,0,0,-0,2.6460569890955936,13.182499726613363,0.507948,0.14165706684192023,0.10336200000000001,163.53300348917642,2.765422548,9.346956332524618,0,6.186019976933797,0,7.242690006891887,0.028800264780000005,8.912210067113241,0.46481399999999995,80.72608311971028,0.005039999999999999,5.666880249977112,53.43366,0,476.71200307210285,2083.0587119999996,2179.229817708333,392.45567380178136,776.5419871012369,403.15207785318836,0.27115105589230853,0.50414805,0.01736059971153736,0.00879044376,6.752412785620739e-4,0.0037924009200000003,25.223599751790363,6.6317945400000005,4.908432443936666,4.891152,44.36890125274658,2.5951799999999996,0.40118102729320526,0.07667238180000001,16.466600100199383,0,0.39850301792224246,1.022348922,0,0,0.04418460155526797,0.1125894378,0.004239869847272833,0.008561479080000002,448.34297688802076,9.127467985931327,98.976066127808,95.09125286836478,13.02647214773057,17.199171491095917,-0.19743285141846986,54.23460261027018,3.1983,7118.578505937335,0,1.6424303491173e-4,0.0033600000000000006,0.3917360007762909,0.022512,0.0013483899820130318,0.003402 +2188,2.688158262763249,0,0,-0,2.6266997112798847,13.203199704488119,0.4998853333333333,0.13588006421923637,0.10172133333333333,163.71800231933594,2.721526952,9.232386350631714,0,6.14887003103892,0,7.22777001063029,0.028343117720000005,8.725220441818237,0.45743599999999995,79.8217830657959,0.004959999999999999,5.657800157864888,52.58550666666667,0,476.0439987182617,2049.9942879999994,2173.949768066406,391.3156868884437,777.2019856770834,401.2217004432067,0.2672390565276146,0.4961456999999999,0.01690130013351639,0.008650912906666667,6.190860925319915e-4,0.00373220408,24.72059949239095,6.52652796,4.8369730313618975,4.813514666666666,43.6623010635376,2.553986666666666,0.3925210287173589,0.07545535986666667,16.39240010579427,0,0.3926350151499112,1.0061211613333332,0,0,0.04354180178294579,0.11080230386666666,0.0041735298388327164,0.008425582586666668,448.5869776407877,9.115256386275234,98.8822526476095,94.18020955407727,12.914968779369003,17.144344110946207,-0.19743285141846986,54.34890206654867,3.1475333333333335,7019.350722398065,0,1.5376403583407713e-4,0.003306666666666667,0.3855999956528346,0.022154666666666666,0.0012966500071343035,0.003348 +2189,2.644800871428358,0,0,-0,2.6073424334641753,13.223599751790365,0.49182266666666663,0.1303370619813601,0.10008066666666666,163.901003519694,2.677631356,9.119216203689575,0,6.111949960390727,0,7.2128799756368,0.027885970660000006,8.542050758997599,0.45005799999999996,78.92738342285156,0.00488,5.6487299998601275,51.73735333333334,0,475.3769938151042,2016.9298639999995,2168.679748535156,390.17569997510594,777.8459981282552,399.29132303322507,0.2633340582251549,0.4881433499999999,0.01645999976123373,0.008511382053333334,5.67568926877963e-4,0.00367200724,24.22839943567912,6.421261380000001,4.7659837404886884,4.735877333333333,42.96640110015869,2.5127933333333328,0.38405702263116837,0.07423833793333334,16.318400065104168,0,0.38677701602379483,0.9898934006666665,0,0,0.04290030182649692,0.10901516993333332,0.004108359920792282,0.008289686093333335,448.82497914632154,9.10304478661914,98.78843916741101,93.26916623978974,12.803465411007435,17.089516730796497,-0.19743285141846986,54.46120230356852,3.096766666666667,6920.122938858796,0,1.439530290857268e-4,0.0032533333333333338,0.3795589978496234,0.021797333333333335,0.0012468999872605007,0.003294 +2190,2.601443480093467,0,0,-0,2.5879851556484663,13.243699868520102,0.48375999999999997,0.12502105782429376,0.09844,164.08000310262045,2.63373576,9.007416089375814,0,6.075250029563904,0,7.198019981384277,0.027428823600000006,8.362651348114014,0.44267999999999996,78.04288419087727,0.0048,5.639689962069194,50.8892,0,474.7129872639974,1983.8654399999996,2163.409749348958,389.0357130617682,778.4739939371744,397.3609456232434,0.25943705439567566,0.48014099999999993,0.01603339969490965,0.0083718512,5.203097680350766e-4,0.0036118104,23.746699651082356,6.3159948,4.695454398790996,4.658239999999999,42.28100077311198,2.4715999999999996,0.3757840270797412,0.073021316,16.244800090789795,0,0.3809320131937663,0.9736656399999999,0,0,0.04225820178786913,0.107228036,0.004044279805384576,0.008153789600000001,449.05997721354163,9.090833186963046,98.69462568721252,92.35812292550222,12.69196204264587,17.034689350646786,-0.19743285141846986,54.57140223185221,3.0460000000000003,6820.8951553195275,0,1.3476703073441362e-4,0.0032000000000000006,0.37361099819342297,0.02144,0.0011990399992403884,0.00324 +2191,2.558086088758576,0,0,-0,2.5686278778327574,13.263399680455526,0.4756973333333333,0.11992005755503972,0.09679933333333333,164.25600306193033,2.589840164,8.896956046422323,0,6.038750052452087,0,7.1831899881362915,0.026971676540000007,8.186941623687744,0.43530199999999997,77.16818428039551,0.004719999999999999,5.630659858385722,50.04104666666667,0,474.04998779296875,1950.8010159999997,2158.15976969401,387.89572614843047,779.0859934488932,395.4305682132618,0.255544051527977,0.47213864999999994,0.015620599733665586,0.008232320346666667,4.7696061665192246e-4,0.0035516135600000003,23.275299390157063,6.21072822,4.6253449122111006,4.580602666666666,41.606001218159996,2.4304066666666664,0.36769602447748184,0.07180429406666666,16.17139991124471,0,0.3750960131486257,0.9574378793333332,0,0,0.041615601629018784,0.10544090206666666,0.003979839811411996,0.008017893106666667,449.28898111979163,9.078621587306952,98.60081220701403,91.44707961121469,12.580458674284303,16.979861970497076,-0.19743285141846986,54.67940171559652,2.9952333333333336,6721.667371780259,0,1.2616702709541036e-4,0.0031466666666666674,0.3677559991677602,0.021082666666666666,0.001153020003888135,0.003186 +2192,2.5147286974236844,0,0,-0,2.549270600017048,13.28279972076416,0.46763466666666664,0.11502705514431,0.09515866666666667,164.4290033976237,2.545944568,8.787845849990845,0,6.002479990323384,0,7.16838002204895,0.026514529480000007,8.014851927757263,0.42792399999999997,76.30318260192871,0.00464,5.621639728546143,49.19289333333334,0,473.38798268636066,1917.7365919999995,2152.919738769531,386.7557392350928,779.6809895833334,393.50019080328013,0.251658050964276,0.46413629999999995,0.015223399658376971,0.008092789493333334,4.3719848326873034e-4,0.0034914167200000004,22.8136994043986,6.105461640000001,4.555635452270508,4.502965333333333,40.94120089213053,2.3892133333333327,0.3597880279024442,0.07058727213333334,16.098300298055012,0,0.3692710151274999,0.9412101186666666,0,0,0.0409746008614699,0.10365376813333334,0.003915049834176898,0.007881996613333334,449.5149790445963,9.066409987650857,98.50699872681554,90.53603629692716,12.468955305922735,16.925034590347366,-0.19743285141846986,54.78540293375651,2.944466666666667,6622.439588240989,0,1.1811502554337494e-4,0.003093333333333334,0.3619919990499814,0.02072533333333333,0.0011087599947738151,0.003132 +2193,2.4713713060887934,0,0,-0,2.529913322201339,13.301799774169922,0.4595719999999999,0.11033405301471551,0.093518,164.6000010172526,2.502048972,8.680055777231852,0,5.966409961382548,0,7.153609991073608,0.026057382420000004,7.846312363942464,0.420546,75.44768397013347,0.00456,5.61264963944753,48.34474,0,472.72897084554035,1884.6721679999996,2147.689758300781,385.61575232175505,780.260996500651,391.5698133932985,0.24777905394633612,0.4561339499999999,0.014840799694259962,0.00795325864,4.0073036022173863e-4,0.00343121988,22.36169958114624,6.00019506,4.486315925916036,4.4253279999999995,40.28640111287435,2.3480199999999996,0.35205702235301334,0.06937025020000001,16.025500218073528,0,0.36345501492420834,0.9249823579999998,0,0,0.040335301930705704,0.1018666342,0.0038513598847202957,0.007746100120000001,449.7359771728515,9.054198387994765,98.41318524661705,89.62499298263965,12.35745193756117,16.870207210197655,-0.19743285141846986,54.88920211791992,2.8937,6523.21180470172,0,1.105770249220465e-4,0.0030400000000000006,0.35631700108448666,0.020368,0.0010662000083054106,0.003078 +2194,2.4280139147539024,0,0,-0,2.5105560443856296,13.32039968172709,0.45150933333333326,0.10583105062445004,0.09187733333333334,164.76700083414713,2.458153376,8.573575814565023,0,5.930559992790222,0,7.1388600667317705,0.025600235360000004,7.681252797444661,0.413168,74.6016845703125,0.00448,5.60366956392924,47.49658666666667,0,472.0709762573242,1851.6077439999995,2142.4697672526036,384.4757654084173,780.822987874349,389.63943598331684,0.24390705302357674,0.4481315999999999,0.014469699701294303,0.007813727786666667,3.6728424796213705e-4,0.00337102304,21.919099648793537,5.894928480000001,4.4173663854599,4.347690666666666,39.64130083719889,2.306826666666666,0.34449502825737,0.06815322826666667,15.95299998919169,0,0.35764801253875095,0.9087545973333332,0,0,0.03969750149796406,0.10007950026666668,0.0037886998422133424,0.007610203626666668,449.9519831339518,9.04198678833867,98.31937176641856,88.71394966835213,12.245948569199602,16.815379830047945,-0.19743285141846986,54.99100144704183,2.8429333333333333,6423.984021162451,0,1.0351902286250454e-4,0.002986666666666667,0.3507309953371684,0.020010666666666666,0.0010252699721604586,0.0030239999999999998 +2195,2.384656523419011,0,0,-0,2.4911987665699207,13.33869973818461,0.4434466666666666,0.10151204839348793,0.09023666666666667,164.93200302124023,2.41425778,8.468385696411133,0,5.894920110702515,0,7.124140024185181,0.025143088300000005,7.519583145777385,0.40579,73.76508394877116,0.004399999999999999,5.594699382781982,46.64843333333334,0,471.41496022542316,1818.5433199999995,2137.259785970052,383.3357784950796,781.3699951171875,387.70905857333514,0.2400420494377613,0.4401292499999999,0.014111899693186084,0.007674196933333334,3.3661214547464624e-4,0.0033108262000000003,21.485399564107258,5.7896619000000005,4.348756909370422,4.270053333333333,39.005900382995605,2.2656333333333327,0.33709702144066495,0.06693620633333333,15.880800008773804,0,0.35185401638348895,0.8925268366666665,0,0,0.03906110115349293,0.09829236633333334,0.003727009849778066,0.007474307133333334,450.1639785766601,9.029775188682576,98.22555828622006,87.8029063540646,12.134445200838035,16.760552449898235,-0.19743285141846986,55.09060255686442,2.7921666666666667,6324.756237623182,0,0,0.002933333333333334,0.3452320024371147,0.01965333333333333,9.859009975722681e-4,0.00297 +2196,2.34129913208412,0,0,-0,2.4718414887542117,13.35669986406962,0.43538399999999994,0.09736934676766396,0.08859600000000001,165.09300104777017,2.370362184,8.364475647608439,0,5.859489997227986,0,7.109449982643127,0.024685941240000005,7.361253420511882,0.398412,72.93768564860027,0.00432,5.585749228795369,45.80028,0,470.7599639892578,1785.4788959999996,2132.0597737630205,382.1957915817419,781.8999888102213,385.7786811633535,0.236183051019907,0.4321268999999999,0.013766599741453925,0.00753466608,3.08484050037805e-4,0.0032506293600000004,21.06049982706706,5.68439532,4.280477325121562,4.192416,38.38000075022379,2.2244399999999995,0.3298620233933131,0.0657191844,15.808899958928427,0,0.34606801221768063,0.8762990759999999,0,0,0.03842610182861487,0.0965052324,0.0036662398682286343,0.007338410640000001,450.37198384602857,9.017563589026482,98.13174480602159,86.89186303977708,12.02294183247647,16.70572506974852,-0.19743285141846986,55.188201586405434,2.7414,6225.528454083913,0,0,0.0028800000000000006,0.3398180032769839,0.019295999999999997,9.480429968486229e-4,0.002916 +2197,2.297941740749229,0,0,-0,2.4524842109385023,13.374299764633179,0.4273213333333333,0.0933950450271368,0.08695533333333334,165.2510019938151,2.326466588,8.261815627415976,0,5.824259996414185,0,7.094789981842041,0.024228794180000006,7.206203738848369,0.391034,72.1195837656657,0.00424,5.576819141705831,44.95212666666667,0,470.1069564819336,1752.4144719999995,2126.869750976562,381.05580466840416,782.4139963785807,383.84830375337185,0.23233105118076006,0.42412454999999993,0.01343089978521069,0.007395135226666667,2.82692963082809e-4,0.0031904325200000005,20.643999735514324,5.579128740000001,4.212517698605855,4.114778666666666,37.76330025990804,2.183246666666666,0.3227860207358996,0.06450216246666668,15.737200021743774,0,0.3402920141816139,0.8600713153333333,0,0,0.03779250135024389,0.09471809846666668,0.003606329846661538,0.007202514146666668,450.57598622639966,9.0053519893703875,98.0379313258231,85.98081972548955,11.911438464114902,16.65089768959881,-0.19743285141846986,55.283702532450356,2.6906333333333334,6126.300670544644,0,0,0.002826666666666667,0.33448799947897595,0.018938666666666666,9.116360063975056e-4,0.002862 +2198,2.254584349414338,0,0,-0,2.4331269331227934,13.391599814097086,0.41925866666666656,0.08958264191945393,0.08531466666666668,165.40700403849283,2.282570992,8.1604156494140625,0,5.7892500559488935,0,7.080159982045491,0.023771647120000003,7.054354111353557,0.383656,71.31038475036621,0.00416,5.567899028460185,44.103973333333336,0,469.45595296223956,1719.3500479999996,2121.689778645833,379.9158177550664,782.9119923909506,381.9179263433902,0.22848304733633995,0.4161221999999999,0.013104099547490478,0.0072556043733333336,2.5904388166964054e-4,0.00313023568,20.23579978942871,5.47386216,4.144848187764485,4.037141333333333,37.15570068359375,2.1420533333333327,0.3158620198567708,0.06328514053333334,15.665800015131632,0,0.3345240131020546,0.8438435546666665,0,0,0.037160200998187065,0.09293096453333334,0.003547229901111374,0.007066617653333334,450.7749811808268,8.993140389714295,97.9441178456246,85.06977641120204,11.799935095753336,16.5960703094491,-0.19743285141846986,55.37700176239014,2.6398666666666664,6027.072887005375,0,0,0.002773333333333334,0.32924100011587143,0.01858133333333333,8.76622997263136e-4,0.002808 +2199,2.2112269580794464,0,0,-0,2.413769655307084,13.408499797185263,0.4111959999999999,0.08592564115921657,0.08367400000000001,165.55900192260742,2.238675396,8.060235579808554,0,5.754439949989319,0,7.065559983253479,0.023314500060000003,6.905624429384868,0.376278,70.51028569539388,0.00408,5.558998982111613,43.25582000000001,0,468.80594635009766,1686.2856239999994,2116.5197753906245,378.77583084172875,783.3929901123047,379.98754893340856,0.22464104741811752,0.4081198499999999,0.012788199664403995,0.00711607352,2.3736080523425093e-4,0.0030700388400000003,19.83549960454305,5.368595580000001,4.077468593915303,3.9595039999999995,36.55710093180338,2.100859999999999,0.3090890198945999,0.062068118600000007,15.594699939092001,0,0.3287660131851832,0.8276157939999998,0,0,0.03652910081048807,0.0911438306,0.0034889098800097904,0.006930721160000001,450.969980875651,8.9809287900582,97.85030436542611,84.15873309691452,11.688431727391768,16.54124292929939,-0.19743285141846986,55.46830177307129,2.5890999999999997,5927.845103466106,0,0,0.00272,0.32407600184281665,0.018223999999999997,8.429529989371076e-4,0.002754 +2200,2.1678695667445553,0,0,-0,2.394412377491375,13.425099690755209,0.40313333333333323,0.08241764083504677,0.08203333333333335,165.70900090535483,2.1947798,7.961275378863017,0,5.71983003616333,0,7.050979971885681,0.022857353000000004,6.7599847714106245,0.3689,69.71898587544759,0.004,5.550108909606934,42.40766666666667,0,468.15793863932294,1653.2211999999995,2111.359781901041,377.635843928391,783.8579864501953,378.0571715234269,0.22080604607860246,0.4001174999999999,0.012482599820941687,0.006976542666666667,2.1748173821833916e-4,0.0030098420000000004,19.44289954503377,5.263329000000001,4.01035890976588,3.8818666666666664,35.967300732930504,2.059666666666666,0.30246001730362576,0.060851096666666674,15.523899952570597,0,0.32301601270834607,0.8113880333333332,0,0,0.035899301059544086,0.08935669666666668,0.0034298998846982918,0.006794824666666668,451.16098276774085,8.968717190402106,97.75649088522762,83.24768978262699,11.576928359030202,16.48641554914968,-0.19743285141846986,55.55740197499593,2.538333333333333,5828.617319926837,0,0,0.002666666666666667,0.3189920013149579,0.017866666666666663,8.105730036428819e-4,0.0027 +2201,2.1245121754096643,0,0,-0,2.3750550996756656,13.441299756368002,0.39507066666666657,0.07905263702074687,0.08039266666666668,165.8560028076172,2.150884204,7.863525311152141,0,5.685429970423381,0,7.036440014839172,0.022400205940000004,6.6173650821050005,0.361522,68.93658510843913,0.00392,5.541248718897502,41.559513333333335,0,467.5119323730469,1620.1567759999996,2106.199768066406,376.4958570150533,784.3059895833334,376.12679411344527,0.21697704369823137,0.3921151499999999,0.012184299761429429,0.0068370118133333335,1.9925667705441205e-4,0.0029496451600000005,19.05779965718587,5.15806242,3.9435092012087503,3.8042293333333332,35.386000633239746,2.0184733333333327,0.29597002019484836,0.05963407473333334,15.45329999923706,0,0.3172760133941968,0.7951602726666666,0,0,0.035270601200560726,0.08756956273333334,0.0033702698807852962,0.006658928173333334,451.34797668457026,8.956505590746012,97.66267740502913,82.33664646833947,11.465424990668636,16.43158816899997,-0.19743285141846986,55.64450200398763,2.4875666666666665,5729.389536387568,0,0,0.002613333333333334,0.3139860009153684,0.017509333333333328,7.794339956793314e-4,0.0026460000000000003 +2202,2.0811547840747733,0,0,-0,2.3556978218599567,13.457099914550781,0.3870079999999999,0.0758247369279464,0.07875200000000002,165.99900182088217,2.106988608,7.766955256462097,0,5.651229977607727,0,7.021920005480449,0.021943058880000005,6.477695385615031,0.354144,68.16278584798177,0.00384,5.53238860766093,40.711360000000006,0,466.86693064371747,1587.0923519999994,2101.0597534179683,375.3558701017156,784.7379913330078,374.1964167034636,0.21315404524405798,0.3841127999999999,0.011895399695883194,0.00669748096,1.825506199869172e-4,0.00288944832,18.679999669392902,5.052795840000001,3.8769095738728843,3.7265919999999997,34.813300450642906,1.9772799999999993,0.2896190236012141,0.05841705280000001,15.383100112279257,0,0.3115460127592087,0.7789325119999999,0,0,0.03464310150593519,0.0857824288,0.003311449875279019,0.006523031680000001,451.53097788492835,8.944293991089918,97.56886392483064,81.42560315405194,11.353921622307068,16.37676078885026,-0.19743285141846986,55.729502042134605,2.4368,5630.161752848298,0,0,0.00256,0.3090590015053749,0.017151999999999997,7.494890014640987e-4,0.002592 +2203,2.0377973927398823,0,0,-0,2.3363405440442477,13.472599824269613,0.37894533333333325,0.07272843519846599,0.07711133333333334,166.1400032043457,2.063093012,7.671565294265747,0,5.6172399918238325,0,7.007429997126262,0.021485911820000002,6.340915679931641,0.34676599999999996,67.39758491516113,0.00376,5.523558537165324,39.86320666666667,0,466.22292073567706,1554.0279279999995,2095.92978922526,374.21588318837786,785.1539866129557,372.266039293482,0.20933704326550165,0.3761104499999999,0.011615399892131487,0.006557950106666667,1.672365700263375e-4,0.0028292514800000003,18.309099674224854,4.9475292600000005,3.8105498552322388,3.6489546666666666,34.2488005956014,1.936086666666666,0.2834020232160886,0.057200030866666675,15.313100020090738,0,0.30582501490910846,0.7627047513333332,0,0,0.034016700461506844,0.08399529486666668,0.0032534098718315363,0.006387135186666668,451.7089767456054,8.932082391433825,97.47505044463215,80.51455983976443,11.242418253945502,16.32193340870055,-0.19743285141846986,55.812401135762535,2.3860333333333332,5530.93396930903,0,0,0.002506666666666667,0.3042080005009969,0.016794666666666663,7.206919981399551e-4,0.0025380000000000003 +2204,1.9944400014049912,0,0,-0,2.3169832662285383,13.487799962361654,0.3708826666666666,0.06975843322773774,0.07547066666666667,166.27700169881186,2.019197416,7.5773351192474365,0,5.583439985911052,0,6.9929700295130415,0.021028764760000002,6.206975976626079,0.33938799999999997,66.64088567097981,0.00368,5.514728387196858,39.01505333333334,0,465.58191680908203,1520.9635039999994,2090.8097737630205,373.0758962750401,785.5530039469401,370.33566188350034,0.20552604148785272,0.3681080999999999,0.011341299706449112,0.006418419253333333,1.531995221739635e-4,0.00276905464,17.945099353790283,4.842262680000001,3.744410216808319,3.571317333333333,33.692501068115234,1.8948933333333327,0.27731601893901825,0.05598300893333334,15.243399937947592,0,0.3001120140155156,0.7464769906666665,0,0,0.033389401311675705,0.08220816093333334,0.0031960899165521064,0.006251238693333334,451.8839797973632,8.919870791777731,97.38123696443365,79.6035165254769,11.130914885583934,16.267106028550838,-0.19743285141846986,55.89310201009115,2.3352666666666666,5431.706185769761,0,0,0.0024533333333333334,0.29943300286928815,0.01643733333333333,6.92999999349316e-4,0.002484 +2205,1.9510826100701002,0,0,-0,2.297625988412829,13.502599875132242,0.3628199999999999,0.06690953175226848,0.07383,166.4120012919108,1.9753018199999999,7.484255075454712,0,5.549849987030029,0,6.9785399834314985,0.020571617700000003,6.0758163134257,0.33200999999999997,65.89258639017741,0.0036,5.505918264389038,38.166900000000005,0,464.9419199625651,1487.8990799999995,2085.6997477213536,371.93590936170244,785.9359893798828,368.4052844735187,0.20171804105242094,0.3601057499999999,0.011075199659292897,0.0062788884,1.403334790666122e-4,0.0027088578,17.58769941329956,4.736996100000001,3.6784904996554055,3.49368,33.14420064290365,1.8536999999999995,0.2713580181201299,0.05476598700000001,15.174000104268393,0,0.2944070075949033,0.7302492299999999,0,0,0.0327614014968276,0.080421027,0.0031394698889926076,0.006115342200000001,452.05498250325513,8.907659192121637,97.28742348423516,78.69247321118938,11.019411517222368,16.212278648401128,-0.19743285141846986,55.9718017578125,2.2845,5332.478402230492,0,0,0.0024000000000000002,0.2947330002983411,0.016079999999999997,6.66369999332043e-4,0.0024300000000000003 +2206,1.9077252187352092,0,0,-0,2.27826871059712,13.517099698384603,0.35475733333333326,0.06417673081159592,0.07218933333333334,166.54400507609049,1.9314062239999998,7.392305056254069,0,5.516450007756551,0,6.9641299645106,0.020114470640000003,5.947386582692464,0.324632,65.15258661905925,0.0035199999999999997,5.497128168741862,37.31874666666667,0,464.30291239420575,1454.8346559999995,2080.599772135416,370.7959224483647,786.3029988606771,366.47490706353705,0.19791604081789652,0.3521033999999999,0.010816799787183603,0.006139357546666667,1.2854143642471172e-4,0.0026486609600000002,17.236599763234455,4.63172952,3.6127807895342507,3.416042666666667,32.60370031992594,1.8125066666666663,0.2655240148305893,0.053548965066666676,15.10480006535848,0,0.2887110114097595,0.7140214693333332,0,0,0.03213490049044291,0.07863389306666667,0.0030834898740674057,0.005979445706666668,452.2209803263346,8.895447592465542,97.19361000403667,77.78142989690186,10.907908148860802,16.157451268251418,-0.19743285141846986,56.048401832580566,2.2337333333333333,5233.250618691222,0,0,0.002346666666666667,0.2901049976547559,0.015722666666666663,6.407610004922996e-4,0.0023760000000000005 +2207,1.8643678274003181,0,0,-0,2.258911432781411,13.531199932098389,0.3466946666666666,0.06155542843043804,0.07054866666666668,166.67300160725912,1.8875106279999998,7.301475008328755,0,5.483249982198079,0,6.949759999910991,0.019657323580000004,5.821636875470479,0.317254,64.4208869934082,0.00344,5.48835813999176,36.47059333333334,0,463.66590627034503,1421.7702319999994,2075.499776204427,369.65593553502697,786.6529947916666,364.5445296535554,0.19412003830075264,0.3441010499999999,0.010563199796403447,0.005999826693333333,1.1773440140435316e-4,0.00258846412,16.891799767812092,4.526462940000001,3.54728102684021,3.3384053333333332,32.07100089391073,1.7713133333333329,0.25980901966492337,0.05233194313333334,15.035899957021078,0,0.28302300969759625,0.6977937086666666,0,0,0.031509700852135815,0.07684675913333333,0.0030281198560260236,0.0058435492133333345,452.38398234049475,8.883235992809448,97.09979652383818,76.87038658261433,10.796404780499234,16.102623888101707,-0.19743285141846986,56.12300173441569,2.1829666666666667,5134.022835151954,0,0,0.0022933333333333334,0.28555000325043994,0.015365333333333332,6.161339939959968e-4,0.0023220000000000003 +2208,1.821010436065427,0,0,-0,2.2395541549657016,13.544999917348227,0.33863199999999993,0.059041028221448265,0.068908,166.79800033569336,1.8436150319999998,7.21175491809845,0,5.450249950091044,0,6.935409982999166,0.01920017652,5.698507150014241,0.30987599999999993,63.697285652160645,0.0033599999999999997,5.479587992032369,35.622440000000005,0,463.0299021402995,1388.7058079999995,2070.419779459635,368.51594862168923,786.9870045979818,362.61415224357376,0.19033004095156988,0.33609869999999986,0.010314199763039747,0.00586029584,1.0783136955675825e-4,0.00252826728,16.5529998143514,4.421196360000001,3.4819612900416055,3.260768,31.545800526936848,1.7301199999999997,0.2542090242107709,0.05111492120000001,14.967300017674765,0,0.277343009908994,0.6815659479999998,0,0,0.030885901457319658,0.07505962520000001,0.0029733298967281976,0.005707652720000001,452.5429814656575,8.871024393153355,97.00598304363969,75.95934326832682,10.684901412137668,16.047796507951997,-0.19743285141846986,56.19540214538574,2.1322,5034.795051612684,0,0,0.0022400000000000002,0.28106600046157837,0.015007999999999997,5.924529929567749e-4,0.0022680000000000005 +2209,1.7776530447305359,0,0,-0,2.2201968771499923,13.558399756749472,0.33056933333333327,0.056629227163890995,0.06726733333333333,166.92100270589194,1.7997194359999997,7.123124877611796,0,5.417449951171875,0,6.92110002040863,0.01874302946,5.577927390734355,0.30249799999999993,62.98178641001383,0.00328,5.4708378712336225,34.774286666666676,0,462.3958994547526,1355.6413839999993,2065.349772135416,367.37596170835155,787.3039906819662,360.6837748335921,0.18654603883624077,0.32809634999999987,0.010071899897108475,0.0057207649866666665,3.3845009966171347e-5,0.0024680704399999997,16.21999963124593,4.315929780000001,3.4168315529823303,3.1831306666666666,31.028000831604004,1.6889266666666662,0.24872301643093428,0.04989789926666668,14.89900008837382,0,0.2716730112830798,0.6653381873333332,0,0,0.030263401102274656,0.07327249126666667,0.002917689911555499,0.005571756226666668,452.69798024495435,8.858812793497261,96.9121695634412,75.0482999540393,10.5733980437761,15.992969127802285,-0.19743285141846986,56.26570097605387,2.0814333333333335,4935.567268073415,0,0,0.0021866666666666666,0.2766519983609517,0.014650666666666664,5.696800023239726e-4,0.0022140000000000003 +2210,1.7342956533956448,0,0,-0,2.2008395993342833,13.571499903996786,0.3225066666666666,0.054315826234718166,0.06562666666666667,167.0410016377767,1.7558238399999997,7.035574793815613,0,5.384829998016357,0,6.90680992603302,0.0182858824,5.459867636362712,0.29511999999999994,62.274187088012695,0.0031999999999999997,5.46210781733195,33.92613333333334,0,461.76389567057294,1322.5769599999994,2060.2797648111973,366.2359747950138,787.604990641276,358.75339742361047,0.1827670360604922,0.3200939999999999,0.0098359197533379,0.005581234133333333,0,0.0024078736,15.89259966214498,4.210663200000001,3.3518817822138467,3.1054933333333334,30.517500559488933,1.647733333333333,0.24334901571273804,0.048680877333333344,14.830900033315023,0,0.266011007130146,0.6491104266666665,0,0,0.029642100756367046,0.07148535733333333,0.0028612399085735283,0.0054358597333333345,452.8489837646484,8.846601193841167,96.8183560832427,74.13725663975177,10.461894675414534,15.938141747652574,-0.19743285141846986,56.33390204111735,2.030666666666667,4836.339484534146,0,0,0.0021333333333333334,0.27230700105428696,0.014293333333333332,5.477809997197861e-4,0.0021600000000000005 +2211,1.6909382620607536,0,0,-0,2.1814823215185744,13.584199825922648,0.31444399999999995,0.05209672482063373,0.063986,167.15800348917642,1.7119282439999997,6.949094772338867,0,5.352410038312276,0,6.892550031344096,0.017828735340000002,5.3442478974660235,0.28774199999999994,61.57448705037435,0.0031199999999999995,5.45338761806488,33.077980000000004,0,461.1328887939453,1289.5125359999995,2055.2297465006504,365.0959878816761,787.8889973958334,356.8230200136288,0.17899303510785103,0.3120916499999999,0.009603579839070639,0.00544170328,0,0.00234767676,15.57069985071818,4.1053966200000005,3.2871020237604776,3.027856,30.01420036951701,1.6065399999999996,0.2380840132633845,0.04746385540000001,14.763200044631958,0,0.26035701235135394,0.6328826659999999,0,0,0.029021900923301775,0.0696982234,0.0028054598757686713,0.005299963240000001,452.995979309082,8.834389594185073,96.72454260304421,73.22621332546424,10.350391307052968,15.883314367502864,-0.19743285141846986,56.40010039011637,1.9799000000000002,4737.1117009948775,0,0,0.0020800000000000003,0.26803000022967655,0.013935999999999999,5.267219967208803e-4,0.0021060000000000002 +2212,1.6475808707258626,0,0,-0,2.162125043702865,13.596599896748861,0.3063813333333333,0.04996822432925304,0.06234533333333333,167.27200190226236,1.6680326479999998,6.863674680391948,0,5.320190032323201,0,6.878310004870097,0.017371588280000003,5.2310582002003985,0.28036399999999995,60.88258679707845,0.0030399999999999997,5.444687565167745,32.22982666666667,0,460.5038833618164,1256.4481119999996,2050.17973836263,363.9560009683384,788.1569875081381,354.8926426036472,0.175222035497427,0.3040892999999999,0.009377049747854471,0.005302172426666666,0,0.00228747992,15.254199822743734,4.00013004,3.222492237885793,2.9502186666666668,29.517900307973225,1.5653466666666662,0.23292401432991028,0.04624683346666668,14.6957000096639,0,0.25471100956201553,0.6166549053333332,0,0,0.02840290063371261,0.06791108946666667,0.002750299929175526,0.005164066746666668,453.1399790445963,8.822177994528978,96.63072912284572,72.31517001117672,10.2388879386914,15.828486987353154,-0.19743285141846986,56.46410242716471,1.9291333333333334,4637.883917455609,0,0,0.0020266666666666666,0.26382000495990116,0.013578666666666666,5.064720074490955e-4,0.0020520000000000004 +2213,1.6042234793909713,0,0,-0,2.142767765887156,13.60859990119934,0.29831866666666657,0.04792662306378285,0.060704666666666664,167.38300069173178,1.6241370519999998,6.7792946100234985,0,5.288149952888489,0,6.864110032717387,0.016914441220000003,5.120238383611043,0.27298599999999995,60.198486963907875,0.0029599999999999995,5.4359974066416425,31.381673333333335,0,459.8758824666341,1223.3836879999994,2045.1497701009112,362.81601405500066,788.4090016682943,352.96226519366553,0.17145703608791033,0.2960869499999999,0.009156009803215662,0.005162641573333334,0,0.0022272830799999997,14.942699750264486,3.8948634600000003,3.1580424507459006,2.872581333333333,29.02850087483724,1.524153333333333,0.22786701346437135,0.04502981153333334,14.628400007883707,0,0.2490720103184382,0.6004271446666665,0,0,0.02778500101218621,0.06612395553333333,0.0026957199055080614,0.0050281702533333346,453.27897898356116,8.809966394872886,96.53691564264723,71.40412669688921,10.127384570329834,15.773659607203443,-0.19743285141846986,56.52610047658285,1.8783666666666667,4538.656133916339,0,0,0.0019733333333333334,0.259674996137619,0.013221333333333331,4.869989982883756e-4,0.001998 +2214,1.56086608805608,0,0,-0,2.1234104880714466,13.620300054550171,0.2902559999999999,0.0459682218109568,0.05906399999999999,167.49099985758463,1.580241456,6.695934613545735,0,5.256309986114502,0,6.8499300082524615,0.016457294160000004,5.01171871026357,0.26560799999999996,59.52188777923584,0.0028799999999999997,5.4273273547490435,30.533520000000003,0,459.24888102213544,1190.3192639999995,2040.1197509765623,361.6760271416629,788.6439921061198,351.0318877836839,0.16769803191224733,0.2880845999999999,0.008937809926768145,0.0050231107200000005,0,0.00216708624,14.636299769083658,3.7895968800000004,3.093752682209015,2.794944,28.54590082168579,1.4829599999999996,0.22290701419115067,0.043812789600000006,14.561499993006388,0,0.24344300851225853,0.5841993839999998,0,0,0.02716810101022323,0.06433682160000001,0.0026416999171487987,0.004892273760000001,453.4159800211588,8.797754795216791,96.44310216244874,70.49308338260168,10.015881201968266,15.718832227053733,-0.19743285141846986,56.586000760396324,1.8276,4439.42835037707,0,0,0.00192,0.25559499859809875,0.012863999999999999,4.6827400122613955e-4,0.0019440000000000002 +2215,1.517508696721189,0,0,-0,2.1040532102557377,13.63159982363383,0.28219333333333324,0.04408982147773107,0.057423333333333326,167.59600194295248,1.53634586,6.613604505856832,0,5.224650025367737,0,6.835789958635966,0.016000147100000004,4.905468861262004,0.25822999999999996,58.85288747151693,0.0027999999999999995,5.418667316436768,29.685366666666667,0,458.6238708496094,1157.2548399999996,2035.0997517903643,360.5360402283252,788.8619842529297,349.10151037370224,0.16394403080145517,0.2800822499999999,0.008722309721633792,0.004883579866666667,0,0.0021068894,14.334699789683023,3.6843303,3.029602825641632,2.7173066666666665,28.069900671641033,1.4417666666666662,0.21804301192363104,0.04259576766666667,14.494799852371216,0,0.23782200862963995,0.5679716233333332,0,0,0.026552201093484957,0.06254968766666667,0.002588209909542153,0.004756377266666668,453.5479838053385,8.785543195560697,96.34928868225025,69.58204006831416,9.9043778336067,15.664004846904021,-0.19743285141846986,56.64380137125651,1.7768333333333333,4340.2005668378015,0,0,0.0018666666666666666,0.2515789990623792,0.012506666666666666,4.502679973181027e-4,0.0018900000000000002 +2216,1.4741513053862978,0,0,-0,2.0846959324400287,13.642599821090698,0.2741306666666666,0.0422881202151378,0.05578266666666666,167.6980005900065,1.492450264,6.532274444897969,0,5.193190058072408,0,6.821669975916545,0.015543000040000005,4.801439166069031,0.25085199999999996,58.19138717651367,0.0027199999999999993,5.410017132759094,28.83721333333333,0,458.0008595784505,1124.1904159999997,2030.0897623697915,359.3960533149875,789.0649871826172,347.1711329637206,0.160194031894207,0.27207989999999993,0.008511719837163886,0.004744049013333334,0,0.00204669256,14.037699778874716,3.5790637199999997,2.9656030535697937,2.639669333333333,27.600400765736897,1.4005733333333328,0.21327401449282965,0.04137874573333334,14.428299903869629,0,0.23220701018969217,0.5517438626666665,0,0,0.02593740060304602,0.06076255373333334,0.0025352098940250776,0.004620480773333335,453.67697906494135,8.773331595904603,96.25547520205176,68.67099675402663,9.792874465245134,15.60917746675431,-0.19743285141846986,56.6995013554891,1.7260666666666666,4240.972783298533,0,0,0.0018133333333333332,0.24762600163618723,0.012149333333333333,4.329530008059616e-4,0.0018360000000000002 +2217,1.4307939140514065,0,0,-0,2.0653386546243193,13.653199831644693,0.2660679999999999,0.040559918930133186,0.05414199999999999,167.79700215657553,1.448554668,6.4519444306691485,0,5.161909977595012,0,6.80757995446523,0.015085852980000005,4.699589371681213,0.24347399999999997,57.53718789418539,0.0026399999999999996,5.401387055714925,27.98906,0,457.3788604736328,1091.1259919999998,2025.0897521972654,358.2560664016498,789.249989827474,345.24075555373895,0.15644803022344908,0.26407754999999994,0.008305779891088605,0.004604518160000001,0,0.00198649572,13.745299895604452,3.47379714,2.90175324678421,2.562032,27.13740078608195,1.3593799999999994,0.20859701558947563,0.04016172380000001,14.362200021743774,0,0.22660000870625177,0.5355161019999999,0,0,0.025321500841528177,0.05897541980000001,0.0024826799247724316,0.004484584280000001,453.8019816080729,8.761119996248508,96.16166172185326,67.7599534397391,9.681371096883566,15.5543500866046,-0.19743285141846986,56.75310103098551,1.6752999999999998,4141.744999759264,0,0,0.0017599999999999998,0.24373500173290572,0.011792,4.1630300256656483e-4,0.0017820000000000002 +2218,1.3874365227165153,0,0,-0,2.0459813768086104,13.66349983215332,0.2580053333333332,0.038902318415542446,0.052501333333333323,167.89300282796225,1.404659072,6.372584342956543,0,5.130810022354126,0,6.793509999910991,0.014628705920000006,4.599859555562337,0.23609599999999997,56.89038848876953,0.0025599999999999993,5.392766992251079,27.140906666666663,0,456.75785573323566,1058.0615679999996,2020.0997721354165,357.11607948831204,789.41998291015625,343.3103781437573,0.15270703037579855,0.25607519999999995,0.008101879929502806,0.004464987306666668,0,0.00192629888,13.457299709320068,3.3685305599999995,2.8380334178606668,2.4843946666666663,26.6806001663208,1.3181866666666662,0.2040100134909153,0.03894470186666667,14.296300013860067,0,0.22100000704328218,0.5192883413333331,0,0,0.02470480076347788,0.057188285866666674,0.0024305799161083996,0.004348687786666668,453.922981262207,8.748908396592416,96.06784824165477,66.8489101254516,9.569867728522,15.49952270645489,-0.19743285141846986,56.80470053354899,1.6245333333333332,4042.5172162199947,0,0,0.0017066666666666667,0.2399039976298809,0.011434666666666666,4.0029300240955007e-4,0.001728 +2219,1.3440791313816243,0,0,-0,2.026624098992901,13.673399845759073,0.24994266666666654,0.03731231763958931,0.05086066666666665,167.98600260416666,1.3607634760000002,6.294204314549764,0,5.099900046984355,0,6.77947998046875,0.014171558860000006,4.502219796180725,0.22871799999999998,56.25078805287679,0.0024799999999999996,5.384166836738586,26.29275333333333,0,456.1388575236003,1024.9971439999997,2015.1197713216143,355.97609257497436,789.5719960530599,341.38000073377566,0.14897102986772856,0.24807284999999996,0.007902279884244004,0.0043254564533333345,0,0.00186610204,13.173599799474081,3.2632639799999996,2.7744436264038086,2.406757333333333,26.229900360107422,1.2769933333333328,0.1995100130637487,0.037727679933333334,14.230700016021729,0,0.2154070076843103,0.5030605806666665,0,0,0.024089400966962177,0.055401151933333344,0.0023775099543854594,0.004212791293333335,454.0409851074218,8.736696796936322,95.97403476145628,65.93786681116407,9.458364360160433,15.44469532630518,-0.19743285141846986,56.8541005452474,1.5737666666666663,3943.2894326807254,0,0,0.0016533333333333333,0.236134002606074,0.011077333333333333,3.8489699848772335e-4,0.001674 +2220,1.300721740046733,0,0,-0,2.007266821177192,13.683000008265177,0.24187999999999987,0.035787317591408886,0.049219999999999986,168.07600021362305,1.3168678800000002,6.216784278551738,0,5.069179932276408,0,6.765469908714294,0.013714411800000006,4.406639973322551,0.22133999999999998,55.618288358052574,0.0023999999999999994,5.3755766948064165,25.444599999999994,0,455.52085367838544,991.9327199999998,2010.1397705078123,354.8361056616366,789.708994547526,339.449623323794,0.1452410283188025,0.24007049999999996,0.007706739862139027,0.004185925600000001,0,0.0018059052,12.893999814987183,3.1579973999999993,2.7109838128089905,2.3291199999999996,25.785300413767498,1.2357999999999993,0.19509501258532205,0.036510658,14.165300051371256,0,0.20982100814580917,0.48683281999999983,0,0,0.023475400482614834,0.05361401800000001,0.00232350993125389,0.004076894800000001,454.1559727986653,8.724485197280227,95.88022128125779,65.02682349687655,9.346860991798867,15.38986794615547,-0.19743285141846986,56.90150101979574,1.5229999999999997,3844.0616491414567,0,0,0.0015999999999999999,0.23242200165987015,0.01072,3.7009399966336787e-4,0.00162 +2221,1.257364348711842,0,0,-0,1.9879095433614828,13.692199945449829,0.2338173333333332,0.03432451654225588,0.04757933333333332,168.16300201416016,1.2729722840000002,6.140304287274678,0,5.038640022277832,0,6.751499970753987,0.013257264740000007,4.3130602439244585,0.21396199999999999,54.99288845062256,0.002319999999999999,5.366996645927429,24.59644666666666,0,454.9038492838542,958.8682959999998,2005.179728190104,353.6961187482989,789.8289947509766,337.51924591381237,0.14151502400636673,0.23206814999999995,0.0075126998126506805,0.004046394746666668,0,0.00174570836,12.618399779001871,3.0527308199999994,2.647653957207998,2.251482666666666,25.34660053253174,1.1946066666666662,0.19076001023252806,0.03529363606666667,14.100299994150797,0,0.20424500604470572,0.47060505933333313,0,0,0.02286250066633026,0.051826884066666676,0.002270059931712846,0.003940998306666668,454.2659784952799,8.712273597624133,95.7864078010593,64.11578018258902,9.2353576234373,15.335040566005759,-0.19743285141846986,56.94680150349935,1.472233333333333,3744.833865602188,0,0,0.0015466666666666667,0.22876899813612303,0.010362666666666666,3.5585800166397047e-4,0.001566 +2222,1.214006957376951,0,0,-0,1.9685522655457737,13.701099952061972,0.22575466666666655,0.03292151540517807,0.045938666666666655,168.24700164794922,1.2290766880000001,6.064764102300008,0,5.008279999097188,0,6.737550059954326,0.012800117680000006,4.2214204867680865,0.206584,54.37448819478353,0.0022399999999999994,5.358436504999797,23.74829333333333,0,454.2888412475586,925.8038719999997,2000.219767252604,352.5561318349612,789.9319915771484,335.5888685038307,0.1377940240005652,0.22406579999999993,0.0073200798748681946,0.003906863893333334,0,0.0016855115199999999,12.346599896748861,2.9474642399999995,2.5844441453615823,2.173845333333333,24.91380023956299,1.1534133333333327,0.18650401135285696,0.034076614133333336,14.035399834314982,0,0.19867500911156336,0.45437729866666643,0,0,0.022250801014403503,0.050039750133333345,0.0022171199476967254,0.003805101813333335,454.37397766113276,8.700061997968039,95.6925943208608,63.204736868301495,9.123854255075733,15.280213185856049,-0.19743285141846986,56.99000040690104,1.4214666666666664,3645.6060820629186,0,0,0.0014933333333333333,0.2251730002462864,0.010005333333333333,3.4216999968824285e-4,0.0015119999999999999 +2223,1.17064956604206,0,0,-0,1.9491949877300647,13.709699869155884,0.21769199999999989,0.03157581528648734,0.04429799999999999,168.3290023803711,1.185181092,5.99014409383138,0,4.978099981943767,0,6.723620057106018,0.012342970620000006,4.131720662117004,0.199206,53.76298872629801,0.002159999999999999,5.349886337916057,22.900139999999993,0,453.6758397420247,892.7394479999996,1995.2697550455728,351.41614492162347,790.0189921061198,333.6584910938491,0.13407702619830766,0.21606344999999993,0.007131159887649119,0.003767333040000001,0,0.00162531468,12.078699747721354,2.842197659999999,2.521354297796885,2.0962079999999994,24.486700534820557,1.1122199999999995,0.18232700849572817,0.032859592199999996,13.970899820327759,0,0.19311200579007468,0.4381495379999998,0,0,0.02164010051637888,0.04825261620000001,0.0021646799480852983,0.003669205320000002,454.4779841105143,8.687850398311944,95.59878084066231,62.29369355401397,9.012350886714167,15.225385805706338,-0.19743285141846986,57.0311009089152,1.3706999999999998,3546.3782985236494,0,0,0.00144,0.22163299967845282,0.009647999999999999,3.2900799609099823e-4,0.0014579999999999997 +2224,1.1272921747071687,0,0,-0,1.9298377099143555,13.71779990196228,0.20962933333333322,0.030285014460484188,0.042657333333333325,168.40700149536133,1.141285496,5.916444023450215,0,4.948100050290425,0,6.70972998936971,0.011885823560000005,4.04391086101532,0.191828,53.158288637797035,0.0020799999999999994,5.341346303621928,22.05198666666666,0,453.06383514404297,859.6750239999996,1990.3297627766924,350.27615800828573,790.0889841715494,331.72811368386743,0.13036402314901352,0.20806109999999992,0.0069457498999933405,0.0036278021866666676,0,0.0015651178399999999,11.814399798711142,2.7369310799999993,2.4583744208017984,2.0185706666666663,24.06510003407796,1.0710266666666661,0.17822601025303206,0.03164257026666666,13.90659991900126,0,0.18755600725611052,0.4219217773333331,0,0,0.021030600493152935,0.04646548226666668,0.0021126899519003928,0.003533308826666669,454.5779825846354,8.67563879865585,95.50496736046382,61.382650239726445,8.900847518352599,15.170558425556628,-0.19743285141846986,57.07020060221354,1.3199333333333332,3447.1505149843806,0,0,0.0013866666666666667,0.2181480017801126,0.009290666666666666,3.1635100215983886e-4,0.0014039999999999996 +2225,1.0839347833722777,0,0,-0,1.9104804320986464,13.72569982210795,0.20156666666666656,0.029047013881305855,0.04101666666666666,168.48200225830078,1.0973899,5.843643983205159,0,4.918279965718587,0,6.69586996237437,0.011428676500000005,3.957951009273529,0.18445,52.560388247172035,0.001999999999999999,5.332826137542725,21.20383333333333,0,452.4528299967448,826.6105999999995,1985.3997599283853,349.13617109494805,790.1429951985677,329.7977362738858,0.12665502230326334,0.2000587499999999,0.006761299873081346,0.0034882713333333343,0,0.0015049209999999998,11.553599913914999,2.6316644999999994,2.3955145875612893,1.9409333333333327,23.649100462595623,1.029833333333333,0.17419900993506113,0.03042554833333333,13.842599948247274,0,0.182006003956,0.4056940166666664,0,0,0.02042200059319536,0.04467834833333334,0.0020611299163041017,0.0033974123333333356,454.67597961425776,8.663427198999756,95.41115388026533,60.47160692543892,8.789344149991033,15.115731045406918,-0.19743285141846986,57.107200622558594,1.2691666666666666,3347.922731445112,0,0,0.0013333333333333335,0.21471899996201196,0.008933333333333331,3.041809953477544e-4,0.0013499999999999996 +2226,1.0405773920373866,0,0,-0,1.8911231542829372,13.733199755350748,0.1935039999999999,0.02785951333741347,0.039375999999999994,168.55500030517578,1.053494304,5.7717439730962115,0,4.88864000638326,0,6.682029962539673,0.010971529440000006,3.87381120522817,0.177072,51.96918869018555,0.0019199999999999992,5.324316064516704,20.355679999999996,0,451.8428268432617,793.5461759999995,1980.4797566731768,347.9961841816103,790.1809997558594,327.86735886390414,0.12295102203885715,0.19205639999999988,0.006580129847861826,0.003348740480000001,0,0.0014447241599999997,11.296299854914347,2.5263979199999995,2.332764744758606,1.8632959999999994,23.238500277201336,0.9886399999999996,0.1702440120279789,0.029208526399999997,13.778800010681152,0,0.17646300544341406,0.3894662559999997,0,0,0.01981440077846249,0.0428912144,0.0020099899653966227,0.0032615158400000023,454.7689844767252,8.651215599343663,95.31734040006684,59.5605636111514,8.677840781629467,15.060903665257205,-0.19743285141846986,57.1420005162557,1.2184,3248.6949479058426,0,0,0.0012800000000000003,0.21134199822942415,0.008575999999999997,2.9247899995728705e-4,0.0012959999999999996 +2227,0.9972200007024956,0,0,-0,1.871765876467228,13.740300019582113,0.18544133333333324,0.02672061293075482,0.03773533333333333,168.6240005493164,1.009598708,5.700713912645976,0,4.859179973602295,0,6.668220003445943,0.010514382380000005,3.7914313673973083,0.169694,51.38468964894613,0.0018399999999999992,5.315825939178467,19.507526666666664,0,451.23482513427734,760.4817519999995,1975.5597432454424,346.8561972682726,790.2019907633463,325.9369814539225,0.11925102273623149,0.18405404999999986,0.006402059885052343,0.0032092096266666675,0,0.0013845273199999996,11.042299826939901,2.4211313399999996,2.270124892393748,1.785658666666666,22.833200295766193,0.9474466666666663,0.16636000821987787,0.027991504466666664,13.715299924214682,0,0.17092600713173547,0.373238495333333,0,0,0.01920780058329304,0.04110408046666667,0.0019592299261906496,0.0031256193466666694,454.8599828084309,8.639003999687569,95.22352691986835,58.64952029686388,8.566337413267899,15.006076285107495,-0.19743285141846986,57.17490037282308,1.1676333333333333,3149.4671643665733,0,0,0.001226666666666667,0.20801899954676628,0.008218666666666664,2.8122600391119096e-4,0.0012419999999999996 +2228,0.9538626093676046,0,0,-0,1.852408598651519,13.747099955876669,0.17737866666666657,0.02562821206326286,0.036094666666666664,168.69000244140625,0.9657031119999999,5.630553841590881,0,4.829890012741089,0,6.65444000562032,0.010057235320000005,3.71079158782959,0.16231600000000002,50.806589444478355,0.001759999999999999,5.307345827420552,18.659373333333328,0,450.62781524658203,727.4173279999993,1970.6497599283853,345.71621035493484,790.2060038248698,324.00660404394085,0.11555601904789607,0.17605169999999987,0.006224579915093879,0.003069678773333334,0,0.0013243304799999997,10.791499853134155,2.3158647599999993,2.207585016886393,1.7080213333333325,22.433000087738037,0.9062533333333331,0.16254200786352158,0.026774482533333324,13.65209992726644,0,0.16539900625745454,0.35701073466666633,0,0,0.01860210035617153,0.039316946533333334,0.0019074299489147961,0.002989722853333336,454.9469858805338,8.626792400031475,95.12971343966986,57.73847698257635,8.454834044906333,14.951248904957785,-0.19743285141846986,57.20560042063395,1.1168666666666667,3050.2393808273046,0,0,0.0011733333333333337,0.2047480009496212,0.00786133333333333,2.7040699690890807e-4,0.0011879999999999994 +2229,0.9105052180327134,0,0,-0,1.83305132083581,13.753599961598715,0.1693159999999999,0.024580411923428375,0.034454,168.75399907430014,0.9218075159999999,5.561263759930928,0,4.800779978434245,0,6.640679995218913,0.009600088260000004,3.631841758886973,0.15493800000000002,50.23508961995443,0.001679999999999999,5.298875729242961,17.811219999999995,0,450.02281697591144,694.3529039999993,1965.7497558593748,344.57622344159716,790.1949920654297,322.0762266339592,0.1118660190453132,0.16804934999999982,0.006049999928412338,0.002930147920000001,0,0.0012641336399999994,10.543799797693888,2.2105981799999994,2.145145138104757,1.6303839999999992,22.03800042470296,0.8650599999999997,0.15878800799449286,0.02555746059999999,13.589099963506063,0,0.15987700472275415,0.34078297399999957,0,0,0.01799720075602333,0.037529812600000004,0.0018546699332849432,0.002853826360000003,455.0309855143229,8.61458080037538,95.03589995947137,56.827433668288826,8.343330676544765,14.896421524808074,-0.19743285141846986,57.2342004776001,1.0661,2951.011597288036,0,0,0.0011200000000000003,0.2015290011962255,0.007503999999999996,2.600030008276614e-4,0.0011339999999999994 +2230,0.8671478266978224,0,0,-0,1.8136940430201007,13.759699980417887,0.16125333333333325,0.023575411333392065,0.03281333333333333,168.81400044759116,0.8779119199999998,5.49281374613444,0,4.771840055783589,0,6.626959999402364,0.009142941200000004,3.554551919301351,0.14756000000000002,49.6698891321818,0.001599999999999999,5.29041572411855,16.963066666666663,0,449.41881052652997,661.2884799999993,1960.8597615559893,343.4362365282594,790.1659952799479,320.14584922397756,0.10818001876274745,0.16004699999999983,0.00587817991618067,0.0027906170666666674,0,0.0012039367999999995,10.29919981956482,2.1053315999999995,2.0828153093655906,1.5527466666666658,21.64800039927165,0.8238666666666665,0.15509900947411856,0.02434043866666666,13.526400089263916,0,0.15436200549205145,0.3245552133333329,0,0,0.01739320034782092,0.035742678666666666,0.0018024099505661677,0.00271792986666667,455.11097971598304,8.602369200719286,94.94208647927287,55.9163903540013,8.231827308183199,14.841594144658364,-0.19743285141846986,57.2608003616333,1.0153333333333334,2851.7838137487665,0,0,0.0010666666666666672,0.19835900018612543,0.007146666666666662,2.4999899809093523e-4,0.0010799999999999994 +2231,0.8237904353629313,0,0,-0,1.7943367652043916,13.765399932861328,0.1531906666666666,0.022611510939896107,0.031172666666666664,168.87200037638345,0.8340163239999998,5.425213694572449,0,4.7430799802144366,0,6.61325999101003,0.008685794140000005,3.4788921078046164,0.14018200000000003,49.11108938852946,0.001519999999999999,5.281965573628743,16.11491333333333,0,448.81580861409503,628.2240559999993,1955.9797363281248,342.2962496149217,790.1219991048177,318.2154718139959,0.10449601834019025,0.15204464999999984,0.005706619898167749,0.002651086213333334,0,0.0011437399599999996,10.057499806086222,2.0000650199999996,2.0205754041671753,1.4751093333333327,21.262900352478027,0.7826733333333331,0.15147400895754495,0.023123416733333325,13.463900089263916,0,0.14885200435916582,0.3083274526666663,0,0,0.016788000396142404,0.033955544733333336,0.0017506199559041609,0.0025820333733333365,455.18898264567054,8.590157601063192,94.84827299907438,55.005347039713776,8.120323939821633,14.786766764508654,-0.19743285141846986,57.28530089060465,0.9645666666666667,2752.5560302094977,0,0,0.0010133333333333338,0.19523999840021133,0.0067893333333333295,2.4037900099453205e-4,0.0010259999999999994 +2232,0.78043304402804,0,0,-0,1.7749794873886824,13.7707998752594,0.14512799999999992,0.021687010303139687,0.029531999999999996,168.9259999593099,0.7901207279999998,5.358433683713277,0,4.714489976565043,0,6.599589983622233,0.008228647080000004,3.40482227007548,0.132804,48.55858898162842,0.001439999999999999,5.273535490036011,15.266759999999996,0,448.2138036092122,595.1596319999993,1951.0997619628904,341.15626270158396,790.05999755859375,316.2850944040143,0.10081601763765018,0.14404229999999987,0.005535319913178682,0.0025115553600000007,0,0.0010835431199999995,9.818589925765991,1.8947984399999995,1.958435555299123,1.3974719999999994,20.88260014851888,0.7414799999999998,0.1479090079665184,0.021906394799999996,13.401699860890707,0,0.14334900428851446,0.2920996919999996,0,0,0.01618190063163638,0.032168410800000005,0.0016992799646686763,0.002446136880000003,455.2629826863606,8.577946001407097,94.75445951887589,54.09430372542626,8.008820571460065,14.731939384358943,-0.19743285141846986,57.30770047505697,0.9138,2653.328246670229,0,0,9.600000000000005e-4,0.19216899946331978,0.006431999999999996,2.3113000012623766e-4,9.719999999999994e-4 +2233,0.7370756526931489,0,0,-0,1.7556222095729734,13.775899887084961,0.13706533333333326,0.02080020975942413,0.02789133333333333,168.9780019124349,0.7462251319999997,5.2924736340840655,0,4.686070005098979,0,6.585950016975403,0.007771500020000004,3.332312444845835,0.125426,48.012190183003746,0.0013599999999999988,5.26511538028717,14.418606666666664,0,447.6137975056966,562.0952079999994,1946.2297566731768,340.0162757882463,789.9829966227213,314.35471699403263,0.09714151546359062,0.13603994999999988,0.005366609936269621,0.0023720245066666673,0,0.0010233462799999996,9.582499821980795,1.7895318599999996,1.8963856895764668,1.3198346666666663,20.507100741068523,0.7002866666666664,0.14440500736236572,0.020689372866666663,13.339800039927164,0,0.13785400365789732,0.27587193133333293,0,0,0.015577100372562805,0.03038127686666667,0.0016483499590928357,0.0023102403866666695,455.33398437499994,8.565734401751005,94.6606460386774,53.18326041113873,7.897317203098498,14.677112004209233,-0.19743285141846986,57.32809988657633,0.8630333333333333,2554.1004631309597,0,0,9.066666666666671e-4,0.18914700051148733,0.006074666666666663,2.222360017185565e-4,9.179999999999994e-4 +2234,0.6937182613582578,0,0,-0,1.7362649317572643,13.780599991480509,0.1290026666666666,0.01994970953091979,0.026250666666666662,169.02599970499674,0.7023295359999997,5.227333585421245,0,4.657819986343384,0,6.57234005133311,0.007314352960000004,3.261322577794393,0.118048,47.47198994954427,0.0012799999999999988,5.256715297698975,13.57045333333333,0,447.0147933959961,529.0307839999994,1941.3697611490884,338.87628887490854,789.8889973958334,312.424339584051,0.09347071560720603,0.12803759999999992,0.005200369943243762,0.002232493653333334,0,9.631494399999996e-4,9.349069992701212,1.6842652799999995,1.8344358106454213,1.242197333333333,20.13610013326009,0.6590933333333331,0.14095600694417953,0.019472350933333334,13.27810001373291,0,0.13236500322818756,0.25964417066666623,0,0,0.014973300431544581,0.028594142933333337,0.0015978299585791926,0.0021743438933333357,455.401980082194,8.55352280209491,94.56683255847891,52.272217096851215,7.785813834736931,14.622284624059523,-0.19743285141846986,57.34639994303385,0.8122666666666666,2454.872679591691,0,0,8.533333333333338e-4,0.18617199982206026,0.0057173333333333295,2.1368500044142516e-4,8.639999999999995e-4 +2235,0.6503608700233665,0,0,-0,1.716907653941555,13.784900029500326,0.12093999999999994,0.01913400925695896,0.024609999999999993,169.0720011393229,0.6584339399999997,5.162983496983846,0,4.629730065663655,0,6.558749993642171,0.006857205900000003,3.1918227672576904,0.11066999999999999,46.93779055277506,0.0011999999999999988,5.248315135637919,12.722299999999997,0,446.41679128011066,495.96635999999944,1936.5197347005205,337.7363019615708,789.7780100504557,310.49396217406934,0.08980431345601876,0.12003524999999993,0.005034099953869979,0.0020929628000000006,0,9.029525999999996e-4,9.118250052134195,1.5789986999999996,1.7725659211476643,1.1645599999999998,19.769800662994385,0.6178999999999997,0.13756200795372328,0.018255329,13.216700077056885,0,0.1268820029993852,0.24341640999999958,0,0,0.014370600382486979,0.026807009000000007,0.0015476799647634227,0.0020384474000000024,455.46597798665357,8.541311202438816,94.47301907828043,51.36117378256369,7.674310466375365,14.56745724390981,-0.19743285141846986,57.362600008646645,0.7614999999999998,2355.644896052422,0,0,8.000000000000004e-4,0.18324399863680205,0.005359999999999997,2.0546200175886042e-4,8.099999999999995e-4 +2236,0.6070034786884755,0,0,-0,1.697550376125846,13.788899898529053,0.11287733333333327,0.018351609042535227,0.022969333333333328,169.11399841308594,0.6145383439999996,5.09942348798116,0,4.6018199523289995,0,6.5451899766922,0.006400058840000004,3.123792906602224,0.103292,46.40969053904215,0.0011199999999999988,5.239935040473938,11.874146666666665,0,445.82078552246094,462.9019359999995,1931.669759114583,336.59631504823307,789.6510009765625,308.5635847640877,0.08614191226661205,0.11203289999999995,0.004870179962987701,0.001953431946666667,0,8.427557599999997e-4,8.88992977142334,1.4737321199999998,1.7107960681120555,1.0869226666666667,19.40790017445882,0.5767066666666663,0.13422400504350662,0.017038307066666668,13.155500014623007,0,0.12140400397280852,0.22718864933333294,0,0,0.013769000303000212,0.025019875066666676,0.0014978799736127257,0.001902550906666669,455.52797953287757,8.529099602782722,94.37920559808194,50.450130468276164,7.562807098013798,14.5126298637601,-0.19743285141846986,57.37670008341471,0.7107333333333332,2256.4171125131534,0,0,7.46666666666667e-4,0.18036199981967607,0.005002666666666664,1.9755499912813926e-4,7.559999999999995e-4 +2237,0.5636460873535842,0,0,-0,1.6781930983101367,13.79259999593099,0.10481466666666661,0.017601208450893562,0.021328666666666656,169.15400060017905,0.5706427479999996,5.036653518676758,0,4.574080069859822,0,6.531659960746765,0.0059429117800000025,3.0572230418523154,0.09591399999999997,45.887390772501625,0.0010399999999999988,5.231564998626709,11.025993333333332,0,445.2257843017578,429.8375119999995,1926.8297322591143,335.45632813489533,789.50799560546875,306.63320735410605,0.08248361200094223,0.10403054999999997,0.004708470000574986,0.0018139010933333338,0,7.825589199999996e-4,8.664060036341349,1.3684655399999999,1.6491061449050903,1.0092853333333336,19.050400257110596,0.535513333333333,0.13093800470232964,0.01582128513333334,13.094600041707357,0,0.11593200328449409,0.21096088866666624,0,0,0.013168400386348367,0.023232741133333346,0.0014470099607327331,0.0017666544133333353,455.58698527018225,8.516888003126628,94.28539211788345,49.539087153988646,7.451303729652231,14.45780248361039,-0.19743285141846986,57.38879998524984,0.6599666666666664,2157.1893289738846,0,0,6.933333333333337e-4,0.1775250000258287,0.004645333333333331,1.8995300100262588e-4,7.019999999999996e-4 +2238,0.520288696018693,0,0,-0,1.6588358204944278,13.795900026957193,0.09675199999999995,0.016881507976601522,0.01968799999999999,169.19100189208984,0.5267471519999996,4.974643429120381,0,4.546500007311503,0,6.5181600252787275,0.005485764720000003,2.9920431772867837,0.08853599999999998,45.371090253194176,9.599999999999986e-4,5.223214864730835,10.177839999999996,0,444.63177998860675,396.7730879999995,1921.9997762044268,334.31634122155765,789.3479970296224,304.7028299441244,0.07882711105048656,0.09602819999999998,0.004546509900440772,0.0016743702400000005,0,7.223620799999997e-4,8.440539757410685,1.2631989599999995,1.5875062843163807,0.9316480000000001,18.697200139363606,0.49431999999999954,0.12770500406622887,0.014604263200000005,13.033900101979574,0,0.11046600217620532,0.19473312799999956,0,0,0.012568600320567688,0.021445607200000008,0.001395149971358478,0.0016307579200000018,455.641980489095,8.504676403470535,94.19157863768496,48.62804383970112,7.339800361290664,14.40297510346068,-0.19743285141846986,57.39870007832845,0.6091999999999997,2057.9615454346153,0,0,6.400000000000003e-4,0.1747320033609867,0.004287999999999997,1.8264299797010608e-4,6.479999999999996e-4 +2239,0.47693130468380185,0,0,-0,1.6394785426787186,13.79889988899231,0.08868933333333329,0.01619120795900623,0.018047333333333318,169.22400283813477,0.4828515559999995,4.913403352101644,0,4.519090016682942,0,6.504679997762044,0.0050286176600000025,2.928233325481415,0.08115799999999997,44.86049111684164,8.799999999999986e-4,5.214864691098531,9.329686666666664,0,444.0387700398763,363.7086639999996,1917.1697692871091,333.1763543082199,789.1719970703125,302.77245253414276,0.07517481036484241,0.08802585,0.00438432985295852,0.001534839386666667,0,6.621652399999997e-4,8.219320058822632,1.1579323799999997,1.5259863932927449,0.854010666666667,18.34820048014323,0.4531266666666662,0.12452300513784091,0.013387241266666674,12.9735000928243,0,0.10500600126882394,0.17850536733333291,0,0,0.011969800184791287,0.019658473266666678,0.0013437599894435455,0.0014948614266666685,455.69498189290357,8.49246480381444,94.09776515748646,47.717000525413596,7.2282969929290974,14.34814772331097,-0.19743285141846986,57.406700452168785,0.5584333333333329,1958.7337618953466,0,0,5.86666666666667e-4,0.17198399951060614,0.003930666666666664,1.7561399969660366e-4,5.939999999999997e-4 +2240,0.4335739133489107,0,0,-0,1.6201212648630094,13.801500002543131,0.08062666666666662,0.01552910745764772,0.016406666666666653,169.25499852498373,0.4389559599999995,4.85291330019633,0,4.49184004465739,0,6.4912400643030805,0.004571470600000002,2.8657735188802085,0.07377999999999996,44.35569095611572,7.999999999999986e-4,5.206534663836162,8.481533333333331,0,443.4477717081706,330.6442399999996,1912.3597615559893,332.0363673948822,788.9789988199869,300.8420751241611,0.07152650815745194,0.08002350000000003,0.004224279973035057,0.0013953085333333337,0,6.019683999999997e-4,8.000319917996725,1.0526657999999998,1.4645465016365051,0.7763733333333338,18.003300348917644,0.4119333333333328,0.1213900043318669,0.012170219333333343,12.913399934768677,0,0.09955290332436562,0.16227760666666624,0,0,0.011371900249893466,0.017871339333333347,0.0012928199721500278,0.001358964933333335,455.7439829508463,8.480253204158346,94.00395167728797,46.80595721112608,7.1167936245675305,14.293320343161259,-0.19743285141846986,57.41249974568685,0.5076666666666663,1859.5059783560778,0,0,5.333333333333336e-4,0.169278002033631,0.003573333333333331,1.6885600052773952e-4,5.399999999999997e-4 +2241,0.39021652201401963,0,0,-0,1.6007639870473003,13.803799867630005,0.07256399999999996,0.014894007239490747,0.014765999999999987,169.28300094604492,0.39506036399999955,4.79317323366801,0,4.464760025342305,0,6.477819999059041,0.004114323540000002,2.8046436111132302,0.06640199999999996,43.85649045308431,7.199999999999987e-4,5.198214491208394,7.633379999999998,0,442.8567708333333,297.57981599999965,1907.5397644042966,330.89638048154444,788.7700042724609,298.91169771417947,0.06788220877448718,0.07202115000000002,0.004066269922380646,0.0012557776800000003,0,5.417715599999997e-4,7.783479968706767,0.9473992199999998,1.4031966030597687,0.6987360000000005,17.662500222524006,0.3707399999999995,0.11830300465226173,0.010953197400000008,12.853500127792358,0,0.0941056019316117,0.14604984599999962,0,0,0.010774700126300255,0.016084205400000013,0.0012422899696199845,0.0012230684400000014,455.7909800211588,8.468041604502252,93.91013819708948,45.89491389683855,7.005290256205964,14.238492963011549,-0.19743285141846986,57.416300455729164,0.45689999999999964,1760.2781948168088,0,0,4.8000000000000023e-4,0.16661599899331728,0.003215999999999998,1.623580016409202e-4,4.859999999999997e-4 +2242,0.34685913067912855,0,0,-0,1.581406709231591,13.805699904759726,0.0645013333333333,0.0142850069484363,0.013125333333333322,169.30799992879233,0.35116476799999957,4.734163244565328,0,4.437840024630229,0,6.464420000712077,0.003657176480000002,2.7447937726974487,0.059023999999999965,43.36299101511637,6.399999999999989e-4,5.189904451370239,6.785226666666665,0,442.2677637736003,264.5153919999997,1902.7397460937498,329.75639356820676,788.5449981689453,296.9813203041978,0.06424180728693803,0.06401880000000001,0.003907829930540174,0.001116246826666667,0,4.815747199999998e-4,7.568719903628032,0.8421326399999998,1.3419167200724285,0.621098666666667,17.325700124104817,0.32954666666666627,0.11526100275417168,0.009736175466666674,12.793799956639608,0,0.08866350228587787,0.129822085333333,0,0,0.010178400203585625,0.014297071466666677,0.0011921699818534155,0.0010871719466666679,455.83398437499994,8.455830004846158,93.81632471689099,44.983870582551035,6.893786887844397,14.183665582861838,-0.19743285141846986,57.417999585469566,0.406133333333333,1661.0504112775398,0,0,4.266666666666669e-4,0.16399500146508217,0.0028586666666666647,1.5611000101974545e-4,4.3199999999999977e-4 +2243,0.3035017393442375,0,0,-0,1.5620494314158822,13.807300011316935,0.05643866666666664,0.013700806691000858,0.011484666666666657,169.3299992879232,0.30726917199999965,4.6758731206258135,0,4.411080042521159,0,6.451059977213542,0.003200029420000002,2.6862138509750366,0.05164599999999997,42.87499109903971,5.599999999999991e-4,5.181604345639546,5.937073333333332,0,441.67976633707684,231.45096799999976,1897.939748128255,328.616406654869,788.3029988606771,295.0509428942162,0.060605306488772236,0.05601645000000002,0.0037513499652656415,9.767159733333336e-4,0,4.2137787999999986e-4,7.355989853541057,0.7368660599999999,1.280726820230484,0.5434613333333337,16.992899894714355,0.28835333333333296,0.11226500322421391,0.00851915353333334,12.734399954477945,0,0.08322680182754993,0.11359432466666637,0,0,0.009582790158068141,0.012509937533333343,0.0011424099696644892,9.512754533333345e-4,455.87497711181635,8.443618405190065,93.7225112366925,44.07282726826351,6.782283519482831,14.128838202712126,-0.19743285141846986,57.41759967803955,0.3553666666666664,1561.8226277382705,0,0,3.733333333333335e-4,0.16141500075658163,0.002501333333333332,1.5010200149845332e-4,3.7799999999999976e-4 +2244,0.2601443480093464,0,0,-0,1.542692153600173,13.808499972025553,0.048375999999999975,0.013140606305872401,0.009843999999999992,169.34900029500326,0.26337357599999967,4.618313193321228,0,4.3844800392786665,0,6.437719980875651,0.0027428823600000015,2.6288839975992837,0.044267999999999974,42.39249038696289,4.7999999999999914e-4,5.173314174016316,5.088919999999998,0,441.09376017252606,198.38654399999976,1893.1497599283853,327.4764197415313,788.0449930826823,293.12056548423453,0.056972505524754524,0.04801410000000001,0.003596719955870261,8.371851200000002e-4,0,3.6118103999999986e-4,7.145220001538594,0.6315994799999998,1.2196069260438283,0.46582400000000024,16.66380023956299,0.24715999999999969,0.10931300185620785,0.007302131600000005,12.675300041834513,0,0.07779530063271523,0.09736656399999974,0,0,0.008987950161099434,0.010722803600000008,0.001093009962157036,8.153789600000009e-4,455.9119771321614,8.431406805533971,93.628697756494,43.16178395397599,6.670780151121264,14.074010822562416,-0.19743285141846986,57.415200551350914,0.30459999999999976,1462.5948441990015,0,0,3.2000000000000013e-4,0.15887599935134253,0.0021439999999999983,1.443250002921559e-4,3.239999999999998e-4 +2245,0.21678695667445536,0,0,-0,1.5233348757844638,13.809400002161661,0.04031333333333331,0.012603206094354391,0.008203333333333326,169.3639996846517,0.21947797999999974,4.561453143755595,0,4.358050028483073,0,6.424409985542297,0.002285735300000001,2.572774132092794,0.03688999999999998,41.915390968322754,3.999999999999993e-4,5.165044029553731,4.240766666666666,0,440.50775655110675,165.3221199999998,1888.3697611490884,326.33643282819355,787.7709910074869,291.1901880742529,0.053341105269889035,0.04001175000000001,0.0034414899613087377,6.976542666666669e-4,0,3.0098419999999987e-4,6.936359961827596,0.5263328999999999,1.158567061026891,0.3881866666666669,16.33850034077962,0.2059666666666664,0.10640400151411693,0.0060851096666666715,12.616399923960367,0,0.0723713015516599,0.08113880333333312,0,0,0.008391850084687272,0.008935669666666674,0.0010439499649995316,6.794824666666675e-4,455.94698079427076,8.419195205877877,93.53488427629551,42.250740639688466,6.559276782759697,14.019183442412706,-0.19743285141846986,57.410699208577476,0.25383333333333313,1363.3670606597325,0,0,2.666666666666668e-4,0.15637599925200144,0.0017866666666666656,1.3877099991077557e-4,2.6999999999999984e-4 +2246,0.17342956533956427,0,0,-0,1.5039775979687546,13.809899886449179,0.03225066666666665,0.012087805895134807,0.006562666666666661,169.37700017293295,0.1755823839999998,4.505293091138204,0,4.3317699035008745,0,6.411129991213481,0.0018285882400000011,2.517844259738922,0.029511999999999983,41.44369125366211,3.199999999999995e-4,5.156784017880757,3.3926133333333324,0,439.9237518310547,132.25769599999987,1883.5897623697915,325.1964459148559,787.4799957275391,289.25981066427124,0.049713703182836376,0.032009400000000014,0.0032880599804533026,5.581234133333335e-4,0,2.4078735999999993e-4,6.729349970817566,0.4210663199999999,1.0975971122582753,0.31054933333333357,16.016900221506756,0.16477333333333313,0.10353600171705087,0.004868087733333338,12.557699998219809,0,0.0669523011893034,0.0649110426666665,0,0,0.007794690201990306,0.0071485357333333395,9.95194025260086e-4,5.43585973333334e-4,455.97898101806635,8.406983606221782,93.44107079609702,41.33969732540094,6.44777341439813,13.964356062262995,-0.19743285141846986,57.40410010019938,0.2030666666666665,1264.1392771204635,0,0,2.1333333333333344e-4,0.15391699969768524,0.0014293333333333324,1.3343000076323128e-4,2.1599999999999988e-4 +2247,0.13007217400467325,0,0,-0,1.4846203201530455,13.810100158055624,0.024187999999999994,0.011593505507335067,0.004921999999999996,169.38700103759766,0.1316867879999999,4.449823061625163,0,4.305650035540263,0,6.39788003762563,0.0013714411800000007,2.464094400405884,0.022133999999999987,40.97729174296061,2.3999999999999965e-4,5.148533860842387,2.54446,0,439.3407516479492,99.1932719999999,1878.8197428385415,324.05645900151814,787.1729990641276,287.3294332542896,0.04608990220973889,0.02400705000000001,0.0031363299543348453,4.185925600000001e-4,0,1.8059051999999993e-4,6.524130026499431,0.31579974,1.0366972386837006,0.23291200000000023,15.698999961217245,0.12357999999999986,0.1007100014636914,0.003651065800000004,12.499300082524618,0,0.061538200825452805,0.04868328199999988,0,0,0.007198640067751209,0.0053614018000000055,9.453349969893073e-4,4.076894800000005e-4,456.00798034667963,8.394772006565688,93.34725731589853,40.42865401111342,6.336270046036564,13.909528682113285,-0.19743285141846986,57.39549986521403,0.15229999999999988,1164.9114935811945,0,0,1.600000000000001e-4,0.15149499972661337,0.0010719999999999996,1.2829500216563852e-4,1.6199999999999993e-4 +2248,0.08671478266978211,0,0,-0,1.4652630423373365,13.809899806976318,0.016125333333333325,0.011119405273348093,0.0032813333333333305,169.39400100708008,0.08779119199999985,4.395043094952901,0,4.2796900272369385,0,6.384649952252706,9.142941200000003e-4,2.4114745060602822,0.014755999999999991,40.51609134674072,1.5999999999999966e-4,5.1402937571207685,1.6963066666666657,0,438.75875091552734,66.12884799999989,1874.0597534179685,322.9164720881804,786.8490041097006,285.39905584430795,0.04246990165362755,0.016004699999999997,0.002983859992430856,2.7906170666666674e-4,0,1.2039367999999994e-4,6.3206400871276855,0.21053315999999989,0.9758733212947845,0.15527466666666667,15.38450002670288,0.08238666666666655,0.09792170052727063,0.0024340438666666676,12.441200176874796,0,0.05612900108098984,0.03245552133333324,0,0,0.006603640038520098,0.003574267866666668,8.944440002475554e-4,2.7179298666666686e-4,456.03498331705725,8.382560406909596,93.25344383570004,39.5176106968259,6.224766677674996,13.854701301963573,-0.19743285141846986,57.38479963938395,0.10153333333333325,1065.6837100419252,0,0,1.066666666666667e-4,0.14911199981967607,7.14666666666666e-4,1.2335799874563236e-4,1.0799999999999991e-4 +2249,0.04335739133489108,0,0,-0,1.4459057645216273,13.809400002161661,0.008062666666666662,0.010664705109472076,0.0016406666666666653,169.3979975382487,0.043895595999999926,4.3409329652786255,0,4.253890037536621,0,6.371449987093608,4.571470600000004e-4,2.3599746227264404,0.007377999999999996,40.0601921081543,7.999999999999988e-5,5.132063547770183,0.8481533333333333,0,438.17772420247394,33.064423999999974,1869.3097432454424,321.7764851748427,786.509999593099,283.4686784343263,0.038853500969707966,0.008002350000000005,0.002830699998109291,1.3953085333333337e-4,0,6.0196839999999995e-5,6.1188398996988935,0.10526658,0.9151224692662557,0.07763733333333334,15.073600053787231,0.04119333333333325,0.09516979940235615,0.0012170219333333347,12.383299986521402,0,0.05072470040371021,0.01622776066666662,0,0,0.006009610020555556,0.001787133933333334,8.43993000065287e-4,1.3589649333333354e-4,456.05798339843744,8.370348807253501,93.15963035550155,38.60656738253837,6.11326330931343,13.799873921813862,-0.19743285141846986,57.37200005849203,0.05076666666666663,966.4559265026562,0,0,5.333333333333335e-5,0.14676699911554655,3.573333333333332e-4,1.1861099968276297e-4,5.399999999999996e-5 +2250,0,0,-0,-0,1.4265484867059182,13.808599869410196,0,0.010228604932005206,0,169.3990020751953,0,4.287492950757344,0,4.228240013122559,0,6.3582799434661865,0,2.3095746835072837,0,39.60939121246338,0,5.123843828837077,0,0,437.5987854003906,0,1864.5597432454424,320.636498261505,786.1540018717448,281.53830102434466,0.035240600196023784,0,0.002679250028450042,0,0,0,5.91867995262146,0,0.8544404158989588,0,14.76610000928243,0,0.09245560007790725,0,12.325600067774454,0,0.04532539968689283,0,0,0,0.005416509966986875,0,7.939569962521394e-4,0,456.07898457845045,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.35719998677572,0,867.2281429633872,0,0,0,0.14445800085862479,0,1.1404599960466537e-4,0 +2251,0,0,-0,-0,1.4265484867059182,13.807400067647299,0,0.009810354793444276,0,169.39799880981445,0,4.234702865282695,0,4.202750086784363,0,6.34512996673584,0,2.260234812895457,0,39.163591384887695,0,5.115642507870992,0,0,437.0205993652344,0,1859.8097737630205,320.636498261505,785.7820027669271,281.53830102434466,0.031631200263897576,0,0.002529419977994015,0,0,0,5.720099965731303,0,0.7938267737627029,0,14.462000131607056,0,0.08977809982995193,0,12.268200079600016,0,0.03993090024838845,0,0,0,0.004824289974446098,0,7.443110031696657e-4,0,456.0969797770182,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.3402992884318,0,867.2281429633872,0,0,0,0.14218599845965704,0,1.0965700009061645e-4,0 +2252,0,0,-0,-0,1.4265484867059182,13.805999994277954,0,0.009409194501737753,0,169.3939997355143,0,4.182572801907857,0,4.177410006523132,0,6.332020084063212,0,2.2119449377059937,0,38.72289117177328,0,5.109830975532532,0,0,436.5799967447917,0,1855.2498270670571,320.636498261505,785.4030049641927,281.53830102434466,0.028216199949383736,0,0.002383449987974018,0,0,0,5.525599956512451,0,0.7354611059029897,0,14.162499984105429,0,0.08715660062928994,0,12.210999965667725,0,0.034879500356813274,0,0,0,0.00426653993781656,0,6.964309965648378e-4,0,456.1139831542968,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.32239945729574,0,867.2281429633872,0,0,0,0.13994900013009706,0,1.0543699985040196e-4,0 +2253,0,0,-0,-0,1.4265484867059182,13.80460000038147,0,0.009024454358344277,0,169.3910001118978,0,4.131082852681478,0,4.152219931284587,0,6.31893006960551,0,2.1646750370661416,0,38.28719170888265,0,5.107091228167216,0,0,436.3236338297526,0,1851.0398152669268,320.636498261505,785.0280049641927,281.53830102434466,0.02516819986825188,0,0.002245829983924826,0,0,0,5.337599953015645,0,0.6813533355792364,0,13.869100014368692,0,0.08461009959379832,0,12.154099941253662,0,0.03046440053731203,0,0,0,0.003772979990268747,0,6.516050052596256e-4,0,456.130983988444,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.30449962615967,0,867.2281429633872,0,0,0,0.1377480005224546,0,8.475839240418281e-5,0 +2254,0,0,-0,-0,1.4265484867059182,13.803200006484985,0,0.00865544417562584,0,169.38700103759766,0,4.0802327791849775,0,4.127189993858337,0,6.305869936943054,0,2.1184151768684387,0,37.85639222462972,0,5.10529100894928,0,0,436.13455454508465,0,1847.1498514811196,320.636498261505,784.6560007731119,281.53830102434466,0.02244800003245473,0,0.002116070012561977,0,0,0,5.1558899482091265,0,0.6311973631381989,0,13.581600109736124,0,0.08213659996787707,0,12.097400108973185,0,0.026606099990506966,0,0,0,0.003336279963453611,0,6.096420111134648e-4,0,456.1469853719075,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.28660011291504,0,867.2281429633872,0,0,0,0.1355810003976027,0,0,0 +2255,0,0,-0,-0,1.4265484867059182,13.801800092061361,0,0.008301534069081148,0,169.38400014241537,0,4.030012726783752,0,4.102310021718343,0,6.2928299109141035,0,2.0731252431869507,0,37.43039194742838,0,5.1038410266240435,0,0,435.97547149658203,0,1843.549845377604,320.636498261505,784.2859954833984,281.53830102434466,0.020020800021787483,0,0.0019937599912130586,0,0,0,4.980270028114319,0,0.584707314769427,0,13.29990005493164,0,0.07973410002887249,0,12.040899912516275,0,0.023234700007985037,0,0,0,0.0029499400213050344,0,5.703619972337037e-4,0,456.16298675537104,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.268699645996094,0,867.2281429633872,0,0,0,0.13344900061686835,0,0,0 +2256,0,0,-0,-0,1.4265484867059182,13.800400018692017,0,0.007962103777875503,0,169.3810017903646,0,3.980402708053589,0,4.077579935391744,0,6.279820005098979,0,2.028825362523397,0,37.00929196675619,0,5.1025610367457075,0,0,435.83443959554035,0,1840.2198893229165,320.636498261505,783.9180043538412,281.53830102434466,0.017854999750852585,0,0.0018784600057794403,0,0,0,4.810550053914388,0,0.5416207959254583,0,13.02400000890096,0,0.07740069863696893,0,11.984600146611532,0,0.020289100085695583,0,0,0,0.002608170014961312,0,5.335970005641381e-4,0,456.1799875895182,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.250800132751465,0,867.2281429633872,0,0,0,0.13134999945759773,0,0,0 +2257,0,0,-0,-0,1.4265484867059182,13.799100081125895,0,0.007636553607881069,0,169.3770014444987,0,3.931412696838379,0,4.0530000527699785,0,6.266839981079102,0,1.9854654769102733,0,36.59289264678955,0,5.1014009316762285,0,0,435.7063980102539,0,1837.1498718261716,320.636498261505,783.5509999593099,281.53830102434466,0.01592279993928969,0,0.0017697799970240642,0,0,0,4.646539926528931,0,0.5016910036404928,0,12.753600041071573,0,0.07513460020224254,0,11.928599913914999,0,0.0177158002431194,0,0,0,0.0023058800337215266,0,4.991870058195976e-4,0,456.19598134358716,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.23289934794108,0,867.2281429633872,0,0,0,0.12928399940331778,0,0,0 +2258,0,0,-0,-0,1.4265484867059182,13.79770008722941,0,0.007324333535507321,0,169.3739980061849,0,3.8830226262410483,0,4.028570095698039,0,6.253889997800191,0,1.943015565474828,0,36.18119271596273,0,5.100340962409973,0,0,435.58936818440753,0,1834.2998962402341,320.636498261505,783.1860046386719,281.53830102434466,0.014199100046729049,0,0.0016673499970541645,0,0,0,4.488050063451131,0,0.46468989302714664,0,12.488799969355265,0,0.07293390048046906,0,11.872900009155273,0,0.015468099930634102,0,0,0,0.002038520013835902,0,4.669839981943369e-4,0,456.2119801839192,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.214999516805015,0,867.2281429633872,0,0,0,0.12725099921226501,0,0,0 +2259,0,0,-0,-0,1.4265484867059182,13.796299934387207,0,0.007024873319702844,0,169.37000020345053,0,3.8352326154708862,0,4.004279990990956,0,6.240960001945496,0,1.901465654373169,0,35.774192810058594,0,5.099360903104146,0,0,435.4823455810547,0,1831.6798909505205,320.636498261505,782.8220011393229,281.53830102434466,0.012661400018259883,0,0.0015708099914869915,0,0,0,4.334920008977254,0,0.4304044892390569,0,12.229400078455607,0,0.070796899497509,0,11.817299922307333,0,0.013504800076285997,0,0,0,0.0018020699984238793,0,4.368489996219675e-4,0,456.2279841105143,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.19719982147217,0,867.2281429633872,0,0,0,0.12524999802311262,0,0,0 +2260,0,0,-0,-0,1.4265484867059182,13.794900099436441,0,0.006737663255383571,0,169.36700185139975,0,3.788032591342926,0,3.980149984359741,0,6.228069980939229,0,1.8607957661151886,0,35.37169233957926,0,5.0984708070755005,0,0,435.3833185831706,0,1829.2498982747393,320.636498261505,782.4589996337891,281.53830102434466,0.011289899935945868,0,0.0014798300010928263,0,0,0,4.186950047810872,0,0.3986368378003438,0,11.975199858347574,0,0.06872180042167504,0,11.762099822362265,0,0.011790100019425154,0,0,0,0.0015929900012755145,0,4.086479966645129e-4,0,456.2429835001627,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.17929935455322,0,867.2281429633872,0,0,0,0.12328000056246917,0,0,0 +2261,0,0,-0,-0,1.4265484867059182,13.793600082397461,0,0.00646220314471672,0,169.36400095621744,0,3.7414125402768454,0,3.956159989039103,0,6.215190013249715,0,1.820995847384135,0,34.973793029785156,0,5.09765084584554,0,0,435.2932993570964,0,1826.9999084472654,320.636498261505,782.0970001220703,281.53830102434466,0.010066600050777197,0,0.0013941000021683674,0,0,0,4.043990035851796,0,0.36920494089523953,0,11.726299921671549,0,0.06670680083334446,0,11.706999937693277,0,0.01029270002618432,0,0,0,0.0014080999923559527,0,3.822610039302769e-4,0,456.2589797973632,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.161399841308594,0,867.2281429633872,0,0,0,0.12134200024108092,0,0,0 +2262,0,0,-0,-0,1.4265484867059182,13.792200009028116,0,0.006198012890915076,0,169.36000188191733,0,3.695372521877289,0,3.932319978872935,0,6.2023499806722,0,1.7820459604263306,0,34.58039251963297,0,5.096900820732117,0,0,435.2102737426758,0,1824.9199422200518,320.636498261505,781.7359975179037,281.53830102434466,0.008975570012504855,0,0.0013133100098154198,0,0,0,3.9058799942334494,0,0.3419378101825714,0,11.482500076293945,0,0.06475040130317211,0,11.652199983596802,0,0.00898505987909933,0,0,0,0.0012446300049001973,0,3.5757099734231207e-4,0,456.27497863769526,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.14359919230143,0,867.2281429633872,0,0,0,0.11943399906158447,0,0,0 +2263,0,0,-0,-0,1.4265484867059182,13.790799935658773,0,0.005944632886288066,0,169.35699971516928,0,3.6499024828275046,0,3.908620019753774,0,6.18953005472819,0,1.7439160346984863,0,34.19139321645101,0,5.096210797627767,0,0,435.1342519124349,0,1822.9999287923174,320.636498261505,781.3769989013672,281.53830102434466,0.008002560042465726,0,0.0012371799869773288,0,0,0,3.7724399964014688,0,0.3166774759689967,0,11.243699868520102,0,0.06285079910109441,0,11.597599983215332,0,0.007843290028783182,0,0,0,0.0011001000045022618,0,3.344699992643048e-4,0,456.2899831136067,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.12569936116537,0,867.2281429633872,0,0,0,0.11755599888662498,0,0,0 +2264,0,0,-0,-0,1.4265484867059182,13.789400180180868,0,0.0057016027470429735,0,169.35300064086914,0,3.6049824555714927,0,3.8850599924723306,0,6.1767399708429975,0,1.706616113583247,0,33.80689303080241,0,5.095580816268921,0,0,435.0642395019531,0,1821.2299499511716,320.636498261505,781.0180002848307,281.53830102434466,0.007134839969997604,0,0.0011654499782404553,0,0,0,3.643530031045278,0,0.29327794909477234,0,11.009800036748251,0,0.06100649945437908,0,11.543299913406372,0,0.006846370020260413,0,0,0,9.723299881443381e-4,0,3.1285599834518507e-4,0,456.30498250325513,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.10789934794108,0,867.2281429633872,0,0,0,0.11570700009663899,0,0,0 +2265,0,0,-0,-0,1.4265484867059182,13.788000106811523,0,0.005468522625354429,0,169.34999974568686,0,3.5606224139531455,0,3.861649990081787,0,6.163980007171631,0,1.6701162060101826,0,33.4265931447347,0,5.095000783602397,0,0,435.0002161661784,0,1819.5799560546873,320.636498261505,780.6600036621094,281.53830102434466,0.006361059960909188,0,0.0010978599990873288,0,0,0,3.5190000335375466,0,0.27160223325093585,0,10.780699968338013,0,0.05921589955687523,0,11.489200035730997,0,0.005975969989473621,0,0,0,8.593719927982116e-4,0,2.926360005706859e-4,0,456.3209838867187,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.089999516805015,0,867.2281429633872,0,0,0,0.11388799982766311,0,0,0 +2266,0,0,-0,-0,1.4265484867059182,13.786699930826822,0,0.005244972455936174,0,169.3470001220703,0,3.5168124039967856,0,3.8383700052897134,0,6.1512400309244795,0,1.634386271238327,0,33.05059305826823,0,5.094470659891765,0,0,434.9422098795573,0,1818.0599466959634,320.636498261505,780.3029988606771,281.53830102434466,0.005671080046643813,0,0.0010341799934394658,0,0,0,3.398699998855591,0,0.25152435650428134,0,10.556399901707968,0,0.057477499358356,0,11.435400009155273,0,0.005216080035703878,0,0,0,7.595170027343556e-4,0,2.73718001456776e-4,0,456.33598327636713,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.07219982147217,0,867.2281429633872,0,0,0,0.11209699946145217,0,0,0 +2267,0,0,-0,-0,1.4265484867059182,13.78529985745748,0,0.005030562402680516,0,169.34299977620444,0,3.4735423922538757,0,3.8152400255203247,0,6.138529936472575,0,1.5994063516457875,0,32.678893089294434,0,5.09398078918457,0,0,434.88819376627606,0,1816.649943033854,320.636498261505,779.9470011393229,281.53830102434466,0.005055829960231979,0,9.741799876792356e-4,0,0,0,3.2824900150299072,0,0.23292631904284158,0,10.336700042088827,0,0.055789800360798836,0,11.381800015767416,0,0.004552699974738061,0,0,0,6.71249998655791e-4,0,2.5602000338646275e-4,0,456.35098012288404,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.0542999903361,0,867.2281429633872,0,0,0,0.11033499923845132,0,0,0 +2268,0,0,-0,-0,1.4265484867059182,13.783900022506714,0,0.004824922381279369,0,169.3400001525879,0,3.430802345275879,0,3.7922499974568686,0,6.125840028127034,0,1.5651864210764568,0,32.31139341990153,0,5.093540787696838,0,0,434.8391749064128,0,1815.3399759928384,320.636498261505,779.5919952392578,281.53830102434466,0.004507250036112964,0,9.176540042972192e-4,0,0,0,3.170229971408844,0,0.21570114294687906,0,10.121499935785929,0,0.05415140030284723,0,11.328500032424927,0,0.003973590035457164,0,0,0,5.932279988580073e-4,0,2.3946399839284518e-4,0,456.365987141927,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.036499659220375,0,867.2281429633872,0,0,0,0.10860000054041545,0,0,0 +2269,0,0,-0,-0,1.4265484867059182,13.78249994913737,0,0.004627692202727,0,169.3370018005371,0,3.3885923425356546,0,3.7693999807039895,0,6.113180001576741,0,1.5316864947477977,0,31.94799343744914,0,5.093140761057536,0,0,434.795171101888,0,1814.1299743652341,320.636498261505,779.2369893391927,281.53830102434466,0.0040181300331217544,0,8.643999996517474e-4,0,0,0,3.061799963315328,0,0.19974782566229501,0,9.910759925842285,0,0.052560899717112385,0,11.275400002797445,0,0.0034680700046010315,0,0,0,5.242650076979771e-4,0,2.2397700134509554e-4,0,456.38098144531244,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.01869932810465,0,867.2281429633872,0,0,0,0.10689299988249938,0,0,0 +2270,0,0,-0,-0,1.4265484867059182,13.781099955240885,0,0.004438522116591533,0,169.33300018310547,0,3.346902290980021,0,3.7466899752616882,0,6.100549976030986,0,1.4988865852355957,0,31.588693300882976,0,5.09277065594991,0,0,434.75415802001953,0,1813.0099792480466,320.636498261505,778.8839975992838,281.53830102434466,0.0035820299914727607,0,8.142300018031771e-4,0,0,0,2.957059999306997,0,0.18497139091293016,0,9.704390048980713,0,0.05101680041601261,0,11.222500006357828,0,0.0030267999973148108,0,0,0,4.6331000097173575e-4,0,2.0948900297905007e-4,0,456.3949839274088,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,57.00089899698893,0,867.2281429633872,0,0,0,0.10521299950778484,0,0,0 +2271,0,0,-0,-0,1.4265484867059182,13.779799938201904,0,0.004257092058348159,0,169.3300018310547,0,3.305722256501516,0,3.7241099874178567,0,6.087950070699056,0,1.4667966465155284,0,31.233493328094482,0,5.0924307107925415,0,0,434.71714274088544,0,1811.969980875651,320.636498261505,778.5319976806641,281.53830102434466,0.003193219987830768,0,7.669650027916456e-4,0,0,0,2.8558899760246277,0,0.17128684123357138,0,9.50228993097941,0,0.04951790006210407,0,11.169899940490723,0,0.0026416199980303645,0,0,0,4.094359998513634e-4,0,1.959369971397488e-4,0,456.4099782307942,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.98309930165609,0,867.2281429633872,0,0,0,0.10355899917582671,0,0,0 +2272,0,0,-0,-0,1.4265484867059182,13.77839994430542,0,0.004083081924666961,0,169.32599894205728,0,3.265052239100138,0,3.701669991016388,0,6.075370033582051,0,1.435396711031596,0,30.882193247477215,0,5.09212068716685,0,0,434.6831410725911,0,1810.9999898274737,320.636498261505,778.1809946695963,281.53830102434466,0.0028465800375367203,0,7.224389992188662e-4,0,0,0,2.7581699887911477,0,0.15861318136254945,0,9.30438001950582,0,0.048062900081276894,0,11.117499907811483,0,0.002305429991489897,0,0,0,3.6182100060007844e-4,0,1.8326000038844845e-4,0,456.4239832560221,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.96529960632324,0,867.2281429633872,0,0,0,0.1019310001283884,0,0,0 +2273,0,0,-0,-0,1.4265484867059182,13.776999950408936,0,0.00391619186848402,0,169.32300186157227,0,3.224892179171244,0,3.6793699860572815,0,6.062820076942444,0,1.404686798652013,0,30.534993330637615,0,5.091840744018555,0,0,434.6521275838216,0,1810.1099955240884,320.636498261505,777.8310038248698,281.53830102434466,0.0025375400437042117,0,6.804939960905662e-4,0,0,0,2.6637800137201944,0,0.1468754236896833,0,9.110570033391317,0,0.04665050065765778,0,11.065299987792969,0,0.002011990000028163,0,0,0,3.1973999527205404e-4,0,1.7140199997811578e-4,0,456.43898264567054,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.947499910990395,0,867.2281429633872,0,0,0,0.10032800026237965,0,0,0 +2274,0,0,-0,-0,1.4265484867059182,13.775600035985311,0,0.0037561217905022204,0,169.31999969482422,0,3.185212194919586,0,3.65720001856486,0,6.050289988517761,0,1.3746168514092763,0,30.191593647003174,0,5.0915907224019366,0,0,434.6241226196289,0,1809.2799886067705,320.636498261505,777.4809977213541,281.53830102434466,0.002262029971461743,0,6.409799971152097e-4,0,0,0,2.5726199944814048,0,0.1360055779417356,0,8.920780181884766,0,0.04527950038512548,0,11.013399918874105,0,0.0017558700249840815,0,0,0,2.8254899856013555e-4,0,1.6031000025880834e-4,0,456.4529825846354,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.92969957987467,0,867.2281429633872,0,0,0,0.09875130032499631,0,0,0 +2275,0,0,-0,-0,1.4265484867059182,13.77429993947347,0,0.003602591711872568,0,169.31599934895834,0,3.146032154560089,0,3.635170022646586,0,6.0377899805704756,0,1.3451669216156006,0,29.85209385553996,0,5.091360688209534,0,0,434.59811147054035,0,1808.4999898274737,320.636498261505,777.13299560546875,281.53830102434466,0.002016410008460904,0,6.037580072491741e-4,0,0,0,2.4845599929491677,0,0.12593863780299822,0,8.734930117925009,0,0.04394859975824753,0,10.96180001894633,0,0.0015323400148190558,0,0,0,2.4968099751276895e-4,0,1.4993499886865416e-4,0,456.4669825236002,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.91189956665039,0,867.2281429633872,0,0,0,0.09719900041818619,0,0,0 +2276,0,0,-0,-0,1.4265484867059182,13.772900025049845,0,0.0034553416383763156,0,169.31300099690756,0,3.1073321104049683,0,3.6132700045903525,0,6.025320013364156,0,1.3163569966952007,0,29.516393661499023,0,5.091150681177775,0,0,434.5751037597656,0,1807.7799886067705,320.636498261505,776.7849985758463,281.53830102434466,0.0017974399961531162,0,5.686949928834414e-4,0,0,0,2.3995200395584106,0,0.11661662968496482,0,8.552929957707724,0,0.0426566998163859,0,10.910300016403198,0,0.0013372499961405993,0,0,0,2.206350000051316e-4,0,1.4023100084159523e-4,0,456.480977376302,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.89409955342611,0,867.2281429633872,0,0,0,0.09567120112478733,0,0,0 +2277,0,0,-0,-0,1.4265484867059182,13.77150003115336,0,0.003314111556392163,0,169.30899937947592,0,3.0691120823224387,0,3.5915000240008035,0,6.012869993845622,0,1.2881770730018616,0,29.184593677520752,0,5.090960661570231,0,0,434.5541051228841,0,1807.1199849446612,320.636498261505,776.4390055338541,281.53830102434466,0.0016022500155183177,0,5.356650023410717e-4,0,0,0,2.3173799912134805,0,0.10798454657196999,0,8.374719937642416,0,0.04140270004669825,0,10.859100023905436,0,0.0011669900074290733,0,0,0,1.9496499832409123e-4,0,1.3115500041749328e-4,0,456.495979309082,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.8763001759847,0,867.2281429633872,0,0,0,0.0941675001134475,0,0,0 +2278,0,0,-0,-0,1.4265484867059182,13.770099878311157,0,0.0031786615339418254,0,169.30599975585938,0,3.0313620368639627,0,3.5698599815368652,0,6.000450094540914,0,1.260607123374939,0,28.856393973032635,0,5.090790669123332,0,0,434.53510030110675,0,1806.4899902343748,320.636498261505,776.0940093994141,281.53830102434466,0.0014282399982524414,0,5.045520083513111e-4,0,0,0,2.238040010134379,0,0.09998938937981923,0,8.200209935506185,0,0.040185500557223953,0,10.808200041453043,0,0.0010183900061141078,0,0,0,1.7228099992886806e-4,0,1.2266499834368005e-4,0,456.50898234049475,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.85859966278076,0,867.2281429633872,0,0,0,0.09268739943703015,0,0,0 +2279,0,0,-0,-0,1.4265484867059182,13.768700043360392,0,0.0030487414139012494,0,169.30300013224283,0,2.9940720200538635,0,3.548359990119934,0,5.988049944241841,0,1.2336071630318959,0,28.531993865966797,0,5.090630610783895,0,0,434.5180892944336,0,1805.909993489583,320.636498261505,775.7489980061849,281.53830102434466,0.0012731200161700447,0,4.7524399269605055e-4,0,0,0,2.161419987678528,0,0.09258707923193772,0,8.029329895973206,0,0.03900409986575445,0,10.757499933242798,0,8.887130000706142e-4,0,0,0,1.522349994047545e-4,0,1.1472500045783818e-4,0,456.52298482259107,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.84079933166504,0,867.2281429633872,0,0,0,0.09123060045142968,0,0,0 +2280,0,0,-0,-0,1.4265484867059182,13.767400026321411,0,0.00292414139645795,0,169.2989985148112,0,2.9572419921557107,0,3.526980002721151,0,5.975680073102315,0,1.207167237997055,0,28.211194038391113,0,5.090500712394714,0,0,434.50308990478516,0,1805.3699951171873,320.636498261505,775.405995686849,281.53830102434466,0.0011348399954537551,0,4.4763799814973027e-4,0,0,0,2.0874200065930686,0,0.08573190184930961,0,7.862000028292338,0,0.03785729998101791,0,10.706999937693277,0,7.755390009454762e-4,0,0,0,1.34521000290988e-4,0,1.0729800123954192e-4,0,456.5369847615559,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.82299963633219,0,867.2281429633872,0,0,0,0.08979669958353043,0,0,0 +2281,0,0,-0,-0,1.4265484867059182,13.766000032424927,0,0.002804631347923229,0,169.2960001627604,0,2.920871992905935,0,3.5057300130526223,0,5.963330030441284,0,1.1813072860240936,0,27.893994013468426,0,5.0903706550598145,0,0,434.48907979329425,0,1804.8699951171873,320.636498261505,775.062998453776,281.53830102434466,0.0010115699988091365,0,4.2163399727238965e-4,0,0,0,2.0159399807453156,0,0.07938407796124618,0,7.698139985402425,0,0.03674410004168749,0,10.656700054804483,0,6.76773003457735e-4,0,0,0,1.188670006134392e-4,0,1.0035199920821469e-4,0,456.55098470052076,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.80529944101969,0,867.2281429633872,0,0,0,0.08838540005187194,0,0,0 +2282,0,0,-0,-0,1.4265484867059182,13.764600038528442,0,0.002690011286176741,0,169.2930005391439,0,2.8849419554074607,0,3.4846099813779197,0,5.95101002852122,0,1.1559973657131195,0,27.580394109090168,0,5.090260624885559,0,0,434.4770762125651,0,1804.4000040690103,320.636498261505,774.7219950358073,281.53830102434466,9.016940020956099e-4,0,3.9713900090040016e-4,0,0,0,1.9469100038210552,0,0.07350589893758297,0,7.537700017293294,0,0.03566359976927439,0,10.6067001024882,0,5.905820047094797e-4,0,0,0,1.0503399971639737e-4,0,9.385479946407334e-5,0,456.563980102539,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.78749974568685,0,867.2281429633872,0,0,0,0.08699629890422027,0,0,0 +2283,0,0,-0,-0,1.4265484867059182,13.763199965159098,0,0.002580071256185571,0,169.28899892171225,0,2.8494619727134705,0,3.4636200070381165,0,5.9387199481328325,0,1.1312374273935955,0,27.270294348398846,0,5.090170661608378,0,0,434.46607971191406,0,1803.950012207031,320.636498261505,774.3810017903646,281.53830102434466,8.037470009488364e-4,0,3.7406699993880466e-4,0,0,0,1.8802499969800313,0,0.06806287728250027,0,7.380599935849507,0,0.03461490012705326,0,10.556899865468344,0,5.15364986010051e-4,0,0,0,9.28109996796896e-5,0,8.777829983349268e-5,0,456.57798004150385,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.769799868265785,0,867.2281429633872,0,0,0,0.0856291006008784,0,0,0 +2284,0,0,-0,-0,1.4265484867059182,13.761899948120117,0,0.002474631182849407,0,169.2859992980957,0,2.8144219517707825,0,3.4427599708239236,0,5.92645005385081,0,1.1070174674193065,0,26.963794072469074,0,5.0900806585947675,0,0,434.45606740315753,0,1803.5400085449216,320.636498261505,774.0410003662109,281.53830102434466,7.164369890233502e-4,0,3.523339983075857e-4,0,0,0,1.8158599932988484,0,0.06302261135230462,0,7.226760069529216,0,0.03359700025369724,0,10.507399956385294,0,4.497249998773138e-4,0,0,0,8.200970053925023e-5,0,8.2095099666427515e-05,0,456.5909856160481,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.751999855041504,0,867.2281429633872,0,0,0,0.08428329974412918,0,0,0 +2285,0,0,-0,-0,1.4265484867059182,13.760500033696493,0,0.0023734911422555647,0,169.28199895222983,0,2.779801865418752,0,3.4220199982325235,0,5.9142100016276045,0,1.0832975109418232,0,26.66059446334839,0,5.090000629425049,0,0,434.44806416829425,0,1803.159993489583,320.636498261505,773.7020060221354,281.53830102434466,6.38608995359391e-4,0,3.3186400348010164e-4,0,0,0,1.7536699970563252,0,0.058355607402821384,0,7.076130032539368,0,0.032609000181158386,0,10.458100001017252,0,3.9244400250026956e-4,0,0,0,7.246519999171142e-5,0,7.677960032500171e-5,0,456.6039784749348,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.73429934183756,0,867.2281429633872,0,0,0,0.08295880009730656,0,0,0 +2286,0,0,-0,-0,1.4265484867059182,13.759099960327148,0,0.0022764911021416387,0,169.27900187174478,0,2.745611866315206,0,3.4014099637667337,0,5.902000069618225,0,1.0600675841172535,0,26.360894362131756,0,5.089940667152405,0,0,434.4400685628255,0,1802.7899881998696,320.636498261505,773.365000406901,281.53830102434466,5.692349999056509e-4,0,3.1258199790803093e-4,0,0,0,1.6936199963092804,0,0.05403396487236023,0,6.928640007972717,0,0.03164999978616834,0,10.408999919891357,0,3.424579990678467e-4,0,0,0,6.403140135565384e-5,0,7.180829985979169e-5,0,456.61697896321607,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.716599464416504,0,867.2281429633872,0,0,0,0.0816550999879837,0,0,0 +2287,0,0,-0,-0,1.4265484867059182,13.757699966430664,0,0.002183461037930101,0,169.27600224812826,0,2.7118518352508545,0,3.3809199730555215,0,5.889799992243449,0,1.0373376309871674,0,26.064594745635986,0,5.089880704879761,0,0,434.43406168619794,0,1802.450032552083,320.636498261505,773.0280049641927,281.53830102434466,5.073959958584359e-4,0,2.9442000231938437e-4,0,0,0,1.635619988044103,0,0.05003239028155804,0,6.784209966659546,0,0.030719199993958075,0,10.360099951426188,0,2.9883699608035386e-4,0,0,0,5.657890020908477e-5,0,6.715869979719476e-5,0,456.630983988444,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.698899586995445,0,867.2281429633872,0,0,0,0.08037189953029156,0,0,0 +2288,0,0,-0,-0,1.4265484867059182,13.756400028864542,0,0.002094231022056192,0,169.2719980875651,0,2.678501844406128,0,3.3605600198109946,0,5.8776399691899615,0,1.0150976578394573,0,25.771594683329266,0,5.08983067671458,0,0,434.42806243896484,0,1802.1299947102862,320.636498261505,772.6920064290365,281.53830102434466,4.5227400308552507e-4,0,2.773140028390723e-4,0,0,0,1.5796000162760417,0,0.04632698278874159,0,6.642800052960713,0,0.02981570006037752,0,10.311500072479248,0,2.6077199921322364e-4,0,0,0,4.999370018291908e-5,0,6.28100997346337e-5,0,456.6429824829101,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.68109957377116,0,867.2281429633872,0,0,0,0.07910889945924282,0,0,0 +2289,0,0,-0,-0,1.4265484867059182,13.754999876022339,0,0.002008650995170077,0,169.26900100708008,0,2.6455618341763816,0,3.340320030848185,0,5.865500013033549,0,0.9933457225561142,0,25.481894493103027,0,5.08979058265686,0,0,434.42405192057294,0,1801.8300170898435,320.636498261505,772.3569997151693,281.53830102434466,4.0313900050629553e-4,0,2.612000025692396e-4,0,0,0,1.5254999995231628,0,0.04289604723453522,0,6.504319985707601,0,0.02893890005846818,0,10.263099908828735,0,2.2755500079559474e-4,0,0,0,4.4174900115952674e-5,0,5.874309984695477e-5,0,456.65598297119135,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.66340001424154,0,867.2281429633872,0,0,0,0.07786580050985019,0,0,0 +2290,0,0,-0,-0,1.4265484867059182,13.753600041071573,0,0.00192656092500935,0,169.26500193277994,0,2.613031804561615,0,3.320199986298879,0,5.853380004564921,0,0.9720617830753326,0,25.19549496968587,0,5.089750647544861,0,0,434.42005411783856,0,1801.5500183105466,320.636498261505,772.0229899088541,281.53830102434466,3.593419993800732e-4,0,2.460230001209614e-4,0,0,0,1.4732600152492523,0,0.03971908458818992,0,6.36873992284139,0,0.02808769994104902,0,10.214899937311808,0,1.9856900083444393e-4,0,0,0,3.9033299799484666e-5,0,5.4939300146846407e-05,0,456.6689834594726,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.64569981892904,0,867.2281429633872,0,0,0,0.07664219972987969,0,0,0 +2291,0,0,-0,-0,1.4265484867059182,13.752200047175089,0,0.0018478408843899767,0,169.2619997660319,0,2.580891728401184,0,3.3002000053723655,0,5.8412899573644,0,0.9512368192275366,0,24.91229502360026,0,5.089720606803894,0,0,434.41605377197266,0,1801.2800089518228,320.636498261505,771.6890004475912,281.53830102434466,3.203029991709627e-4,0,2.3172800016861098e-4,0,0,0,1.4227999945481618,0,0.03677739668637514,0,6.235979994138082,0,0.027261600053558748,0,10.166899998982748,0,1.7327500002769133e-4,0,0,0,3.4490000264971364e-5,0,5.138180010059538e-5,0,456.6819763183593,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.6279993057251,0,867.2281429633872,0,0,0,0.07543790029982726,0,0,0 +2292,0,0,-0,-0,1.4265484867059182,13.750899950663248,0,0.0017723308507508289,0,169.2590014139811,0,2.549161712328593,0,3.280330022176107,0,5.829230030377706,0,0.930840864777565,0,24.632294813791912,0,5.08970061937968,0,0,434.41404978434247,0,1801.0300191243487,320.636498261505,771.3569895426432,281.53830102434466,2.8550499458409223e-4,0,2.1826300144311972e-4,0,0,0,1.374070018529892,0,0.03405358580251535,0,6.105989972750346,0,0.026459799924244482,0,10.119200070699057,0,1.5120299940463156e-4,0,0,0,3.047560009387477e-5,0,4.805469992182528e-5,0,456.69498189290357,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.6102991104126,0,867.2281429633872,0,0,0,0.0742526004711787,0,0,0 +2293,0,0,-0,-0,1.4265484867059182,13.749500036239624,0,0.0016999008269825329,0,169.25499852498373,0,2.5178116957346597,0,3.260569989681244,0,5.817189971605937,0,0.9108649144570032,0,24.35539484024048,0,5.089680631955464,0,0,434.4120508829753,0,1800.7900187174478,320.636498261505,771.0249938964844,281.53830102434466,2.544880020044123e-4,0,2.055810000456404e-4,0,0,0,1.3270100057125092,0,0.031531453443070255,0,5.978700041770935,0,0.025681600129852693,0,10.07170001665751,0,1.3194200194751224e-4,0,0,0,2.6928399771956418e-5,0,4.494299961758467e-5,0,456.70698038736975,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.59259955088297,0,867.2281429633872,0,0,0,0.07308590039610863,0,0,0 +2294,0,0,-0,-0,1.4265484867059182,13.74809988339742,0,0.0016304407909046859,0,169.25200017293295,0,2.486851692199707,0,3.240929981072744,0,5.805169979731242,0,0.8913199603557587,0,24.081594944000244,0,5.089670658111572,0,0,434.41004689534503,0,1800.5599873860674,320.636498261505,770.6940002441406,281.53830102434466,2.2684000092946613e-4,0,1.93635000565943e-4,0,0,0,1.2815600037574768,0,0.029196101240813732,0,5.8540700276692705,0,0.024926300160586834,0,10.024399995803833,0,1.1513499945673782e-4,0,0,0,2.379399999578406e-5,0,4.203270024542386e-5,0,456.719980875651,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.57499980926514,0,867.2281429633872,0,0,0,0.07193750080962975,0,0,0 +2295,0,0,-0,-0,1.4265484867059182,13.746700127919516,0,0.0015638107530927907,0,169.24899927775064,0,2.4562716682751975,0,3.2214199701944985,0,5.793180028597514,0,0.8721980104843775,0,23.81099510192871,0,5.08966064453125,0,0,434.40904998779297,0,1800.3400166829424,320.636498261505,770.365000406901,281.53830102434466,2.0219499977732389e-4,0,1.823840005575524e-4,0,0,0,1.2376699944337208,0,0.027033730565259855,0,5.732030034065247,0,0.024193200127532084,0,9.97737987836202,0,1.0046799980045762e-4,0,0,0,2.1024500104734518e-5,0,3.9311000364250503e-5,0,456.73198191324866,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.55729961395264,0,867.2281429633872,0,0,0,0.07080720054606597,0,0,0 +2296,0,0,-0,-0,1.4265484867059182,13.745399951934814,0,0.001499910712785398,0,169.24500020345053,0,2.4260716636975608,0,3.202020009358724,0,5.781219998995463,0,0.8534900546073914,0,23.543395042419434,0,5.089660565058391,0,0,434.40904235839844,0,1800.1400044759112,320.636498261505,770.0359903971354,281.53830102434466,1.80227999711254e-4,0,1.7178600076780035e-4,0,0,0,1.1952799956003826,0,0.025031543026367824,0,5.612549980481465,0,0.023481599676112335,0,9.930539925893148,0,8.767010028047177e-5,0,0,0,1.8577299973306555e-5,0,3.6765400182048324e-5,0,456.7439829508463,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.53960005442301,0,867.2281429633872,0,0,0,0.06969469971954823,0,0,0 +2297,0,0,-0,-0,1.4265484867059182,13.74400003751119,0,0.0014386206942920883,0,169.24200185139975,0,2.396241625150045,0,3.1827299992243447,0,5.769280036290486,0,0.8351850907007853,0,23.27879508336385,0,5.08966060479482,0,0,434.40904235839844,0,1799.940022786458,320.636498261505,769.7069956461588,281.53830102434466,1.606479988064772e-4,0,1.6180400052689947e-4,0,0,0,1.1543499926726024,0,0.02317753992974758,0,5.495550036430359,0,0.022790999927868445,0,9.883920272191366,0,7.650230024106956e-5,0,0,0,1.6414999966703665e-5,0,3.4384699877894796e-5,0,456.75598144531244,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.5219996770223,0,867.2281429633872,0,0,0,0.06859970030685265,0,0,0 +2298,0,0,-0,-0,1.4265484867059182,13.742600043614706,0,0.001379840667747582,0,169.23800150553384,0,2.3667816321055093,0,3.1635700265566506,0,5.7573699951171875,0,0.817277138431867,0,23.017095406850178,0,5.089670618375142,0,0,434.40904235839844,0,1799.760019938151,320.636498261505,769.3800048828125,281.53830102434466,1.431949992062679e-4,0,1.5240300005340637e-4,0,0,0,1.1148099998633068,0,0.021460922279705603,0,5.380990068117778,0,0.02212059994538625,0,9.837520202000936,0,6.67570996787011e-5,0,0,0,1.4504400041914778e-5,0,3.2158200156118255e-5,0,456.76798502604163,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.5042994817098,0,867.2281429633872,0,0,0,0.0675219011803468,0,0,0 +2299,0,0,-0,-0,1.4265484867059182,13.741200049718222,0,0.0013234606400753062,0,169.23500061035156,0,2.3376815915107727,0,3.1445200045903525,0,5.745480060577393,0,0.7997551709413528,0,22.758495171864826,0,5.089680631955464,0,0,434.41004435221356,0,1799.5800170898435,320.636498261505,769.0529937744141,281.53830102434466,1.276379995639824e-4,0,1.435470015470249e-4,0,0,0,1.0766299863656361,0,0.019871490852286417,0,5.26882004737854,0,0.02147000003606081,0,9.791339953740438,0,5.8253300267097075e-5,0,0,0,1.2816100024792831e-5,0,3.0075800016978366e-5,0,456.7799809773762,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.4865992863973,0,867.2281429633872,0,0,0,0.06646110117435455,0,0,0 +2300,0,0,-0,-0,1.4265484867059182,13.73990019162496,0,0.0012693806008125346,0,169.23199844360352,0,2.308941602706909,0,3.1255800127983093,0,5.733609954516093,0,0.7826132029294968,0,22.502695242563885,0,5.089690605799357,0,0,434.41104380289715,0,1799.4100138346353,320.636498261505,768.7280069986979,281.53830102434466,1.1377200159283045e-4,0,1.3520600017121373e-4,0,0,0,1.0397600134213765,0,0.01839974693333109,0,5.158980051676433,0,0.020838599962492783,0,9.74538000424703,0,5.083279999477478e-5,0,0,0,1.1324399944593702e-05,0,2.8128299921566697e-5,0,456.7919794718424,8.358137207597407,93.06581687530306,37.695524068250855,6.001759940951863,13.745046541664152,-0.19743285141846986,56.46899954477946,0,867.2281429633872,0,0,0,0.06541700040300687,0,0,0 diff --git a/inst/input/tables/ssp534-over_emiss-constraints_rf.csv b/inst/input/tables/ssp534-over_emiss-constraints_rf.csv new file mode 100644 index 000000000..092e4a1c0 --- /dev/null +++ b/inst/input/tables/ssp534-over_emiss-constraints_rf.csv @@ -0,0 +1,562 @@ +; ssp534-over from rcmip +; hectordata 0.0.0.9000 +; commit dab9aad8750535b +; date Fri Nov 4 11:35:31 2022 +; UNITS:, PgC year-1, PgC year-1, PgC year-1, PgC year-1, Tg year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg CH4 year-1, ppm, Tg CO year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg N year-1, Tg year-1, Tg NMVOC year-1, Tg N year-1, Tg year-1, W m-2, ppt, ppt, Gg S year-1, W m-2, ppt, ppt, ppt, ppt, ppt, ppt +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_constrain,C2F6_emissions,CCl4_constrain,CCl4_emissions,CF4_constrain,CF4_emissions,CFC113_constrain,CFC113_emissions,CFC114_constrain,CFC114_emissions,CFC115_constrain,CFC115_emissions,CFC11_constrain,CFC11_emissions,CFC12_constrain,CFC12_emissions,CH3Br_constrain,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_constrain,CH3Cl_emissions,CH4_constrain,CH4_emissions,CO2_constrain,CO_emissions,HCFC141b_constrain,HCFC141b_emissions,HCFC142b_constrain,HCFC142b_emissions,HCFC22_constrain,HCFC22_emissions,HFC125_constrain,HFC125_emissions,HFC134a_constrain,HFC134a_emissions,HFC143a_constrain,HFC143a_emissions,HFC227ea_constrain,HFC227ea_emissions,HFC23_constrain,HFC23_emissions,HFC245_constrain,HFC245fa_emissions,HFC32_constrain,HFC32_emissions,HFC365_constrain,HFC365_emissions,HFC4310_constrain,HFC4310_emissions,N2O_constrain,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,RF_albedo,SF6_constrain,SF6_emissions,SO2_emissions,SV,halon1211_constrain,halon1211_emissions,halon1301_constrain,halon1301_emissions,halon2402_constrain,halon2402_emissions +1745,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,728.6180877685546,19.019783117809567,276.9859975179036,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7540486653645,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1746,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.704874674479,19.019783117809567,277.01399993896484,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7850443522135,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1747,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.8320821126301,19.019783117809567,277.0439987182617,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.80204772949213,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1748,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.2330983479817,19.019783117809567,277.07999928792316,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8170496622721,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1749,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.9769846598306,19.019783117809567,277.10900115966797,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8330459594726,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1750,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,731.4059956868489,19.019783117809567,277.1470031738281,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8650512695312,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1751,0.0025941063027029847,0.0826692695573487,0,0,2.0729259257736388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1072,0,457.00000254313153,4276.7685,731.838165283203,18.915108869931455,277.18800099690753,343.9263672486595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8940556844075,0.05578579647289745,6.860142184947855,59.08812628149409,3.8337729357251344,15.188716744277112,-0.00022945725475492763,0,0,1206.0681799841475,0.1857567460517512,0.004446572546536724,0.0077232726,0,0,0,0 +1752,0.0025952084646724115,0.0841901460141451,0,0,2.0643119329193533,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12502,0,457.00000254313153,4277.7049,732.8999735514321,18.889711811886766,277.22900136311847,341.8090339016869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.92705535888666,0.056839716429342754,6.819482036717451,58.63199702688318,3.8343718514044016,15.034475741403988,-4.5891450950985525e-4,0,0,1200.4278473396196,0.1857604715824308,0.004446572546536724,0.0077232726,0,0,0,0 +1753,0.0025953021590175993,0.08573900221733607,0,0,2.0719505635154682,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10373,0,457.00000254313153,4276.585999999999,733.634038289388,19.121377231171937,277.26300048828125,343.6754562091752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.9730555216471,0.057913547319122724,6.88143852899345,59.02634940020826,3.8177943228183677,15.18254515100842,-6.883717642647818e-4,0,0,1207.227098535096,0.1857617169069504,0.004446572546536724,0.0077232726,0,0,0,0 +1754,0.0025964043209870257,0.0873163529136683,0,0,2.09934978275426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07356,0,457.00000254313153,4274.9998,734.2020212809243,19.50906106501577,277.3040033976237,349.81562520064375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.01604461669916,0.059007665304832875,7.015189223980566,60.269945173845855,3.847331336983454,15.55877304959727,-9.178290190197105e-4,0,0,1232.9531143620388,0.18576213564093827,0.004446572546536724,0.0077232726,0,0,0,0 +1755,0.0025975064829564486,0.08892272231974611,0,0,2.099173164966012,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09182,0,457.00000254313153,4275.9598,734.7360788981118,19.500454933311694,277.3510030110677,348.144667955229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.05104319254554,0.06012245365563151,6.9439890428442705,59.824933724698546,3.8866528883154143,15.358182527090067,-0.0011472862737746368,0,0,1223.0826850431558,0.16149051004268924,0.004446572546536724,0.0077232726,0,0,0,0 +1756,0.002775090479167637,0.09055864429624946,0,0,2.0689154070023212,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08556000000002,0,457.00000254313153,4275.6306,735.4210001627603,19.46253659981589,277.38899993896484,343.32315167584505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.07905069986975,0.06125830288149874,6.92271155666652,58.94682931223554,3.780146274357017,15.195776625722106,-0.001376743528529566,0,0,1211.479201655296,-0.06413990375550595,0.004446572546536724,0.0077232726,0,0,0,0 +1757,0.0027761926411370656,0.09222466252535721,0,0,2.1479236761828795,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09137,0,457.00000254313153,4275.9361,735.8930308024087,20.023540664144175,277.4419987996419,355.9418922631908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.09605153401685,0.06241561087003213,7.047674128999731,61.263692996283645,3.9984362659957116,15.704819120374072,-0.0016062007832844925,0,0,1255.6882474413671,0.06548148963396255,0.004446572546536724,0.0077232726,0,0,0,0 +1758,0.002777294803106484,0.09392133069143445,0,0,2.120611409560707,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09662,0,457.00000254313153,4276.2118,736.2069956461587,19.93400532918585,277.48900095621747,351.839749049401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.12904612223304,0.06359478302582648,6.995459767973222,60.43461244378834,3.951609319926169,15.514611629339965,-0.0018356580380394208,0,0,1241.8061904390202,0.143706674085902,0.004446572546536724,0.0077232726,0,0,0,0 +1759,0.0027783969650759127,0.09564921266504378,0,0,2.1172674310973973,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08372,0,457.00000254313153,4275.5338,736.0988871256509,20.14146621388408,277.5399983723958,351.50776272566816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.1650466918945,0.06479623241248693,7.045958325346581,60.44526305257086,3.8825594605141793,15.574013491239148,-0.0020651152927943475,0,0,1238.6934463843995,0.17156026373747926,0.004446572546536724,0.0077232726,0,0,0,0 +1760,0.002778490659421102,0.09740888269034213,0,0,2.127804104941503,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04022,0,457.00000254313153,4273.2473,735.484171549479,20.416797144500503,277.6050033569336,354.41828530815224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.19305165608716,0.06602037989732504,7.1280482855702605,61.0517247888764,3.870426966375627,15.819063930323424,-0.002294572547549277,0,0,1250.820917255113,0.18098830087140405,0.004446572546536724,0.0077232726,0,0,0,0 +1761,0.0030417996868854222,0.09920092557592508,0,0,2.1377569894528237,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09143,0,457.00000254313153,4275.9395,735.7630208333333,20.45599016898809,277.6639989217122,354.70796791995804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.22205098470045,0.06726765429878842,7.080969808277224,60.98422720066375,3.9477855453840847,15.691915882574792,-0.0025240298023042032,0,0,1256.5481216489331,0.1841585443588585,0.004446572546536724,0.0077232726,0,0,0,0 +1762,0.0030429071320477096,0.10102593688918185,0,0,2.101748108909336,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08127,0,457.00000254313153,4275.4052,736.3031056722004,20.451687381976814,277.7320022583008,349.24969722773284,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3203315e-8,0,0,0,0,0,1.5142326e-6,0,0,0,0,274.25004831949866,0.06853849253667572,7.072547337152548,60.0270893345371,3.8056067222316985,15.52593530614623,-0.002753487057059132,0,0,1235.176016491452,-0.7198788864817063,0.004446572546536724,0.0077232726,0,0,0,0 +1763,0.003044014577209992,0.10288452315422644,0,0,2.1070297579949187,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09332,0,457.00000254313153,4276.0386,737.1810404459634,20.54517933681397,277.7959976196289,350.0593349220327,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6788058e-7,0,0,0,0,0,1.2367808e-5,0,0,0,0,274.30205535888666,0.06983333978518949,7.067982584358078,60.127066272688566,3.846149431214471,15.526762487788051,-0.0029829443118140585,0,0,1242.4313344000275,-0.4399601212913509,0.004446572546536724,0.0077232726,0,0,0,0 +1764,0.0030451220223722732,0.10477730205346951,0,0,2.0715492266986275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1104,0,457.00000254313153,4276.9364,738.1030629475911,20.26091721016315,277.8590037027995,342.04461065627544,0,0,0,0,0,0,0,0,0,0,0,0,5.745499576104152e-9,1.2683334e-6,0,0,0,0,3.1742572836890304e-7,2.4998684e-5,0,0,0,0,274.3400497436523,0.0711526496288805,6.89874574004507,58.43835716681741,3.8290033683946536,14.958698984764437,-0.003212401566568987,0,0,1212.8230980159792,-0.03904732457783037,0.004446572546536724,0.0077232726,0,0,0,0 +1765,0.0030462294675345533,0.10670490263289913,0,0,2.123600021913132,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07293,0,457.00000254313153,4274.9668,738.9860382080077,20.91915499807752,277.9129994710286,352.9327257663859,0,0,0,0,0,0,0,0,0,0,0,0,4.596399853321979e-8,1.3852706e-6,0,0,0,0,2.539405793792563e-6,3.0313258e-5,0,0,0,0,274.37204742431635,0.07249688422153833,7.112382325014417,60.629457859488916,3.8781552227346054,15.679924105503577,-0.0034418588213239137,0,0,1250.7252029507404,0.10958166609721692,0.004446572546536724,0.0077232726,0,0,0,0 +1766,0.0033962667106833934,0.10866796551113769,0,0,2.1104599771353545,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07758,0,457.00000254313153,4275.2111,739.831085205078,20.853591900632743,277.95800018310547,349.3806450006132,0,0,0,0,0,0,0,0,0,0,0,0,9.192799588220169e-8,1.4212948e-6,0,0,0,0,5.078811454950483e-6,3.4371719e-5,0,0,0,0,274.3920516967773,0.07386651444808362,7.0362965307494045,59.85878462626717,3.884852897551278,15.358830814708325,-0.00367131607607884,0,0,1244.142076911234,-0.17848752670419268,0.004446572546536724,0.0077232726,0,0,0,0 +1767,0.003397374155845676,0.11066714309234521,0,0,2.112460701438636,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08566,0,457.00000254313153,4275.6359,740.7289835611978,20.999179455660748,278.0169982910156,349.61609899642303,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199471148095e-7,1.4573362e-6,0,0,0,0,7.618217182425724e-6,3.8432158e-5,0,0,0,0,274.42605082194007,0.07526202008951893,7.045382426953697,59.89102690050866,3.880476348727496,15.400564496222026,-0.0039007733308337685,0,0,1243.3080558862168,-0.23003967707403605,0.004446572546536724,0.0077232726,0,0,0,0 +1768,0.003398481601007963,0.1127030997830392,0,0,2.183132040203538,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04673,0,457.00000254313153,4273.5893,741.2220560709634,21.659452113517297,278.07799530029297,362.65368482709385,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599176440337e-7,1.4932143e-6,0,0,0,0,1.0157622909900965e-5,4.247379e-5,0,0,0,0,274.44704691569007,0.07668388999099586,7.223617820830233,62.365825552982606,4.039005153575375,16.063730202230957,-0.004130230585588698,0,0,1294.7054231244865,0.0295441238874522,0.004446572546536724,0.0077232726,0,0,0,0 +1769,0.0033995890461702483,0.11477651221290339,0,0,2.1376337416440134,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0767,0,457.00000254313153,4275.165,741.7470499674478,21.496335350339965,278.135004679362,355.02541845168975,0,0,0,0,0,0,0,0,0,0,0,0,2.298199900015637e-7,1.5293427e-6,0,0,0,0,1.2697028751063044e-5,4.6544254e-5,0,0,0,0,274.4680506388346,0.07813262223305735,7.157863703024064,60.95040360500106,3.9146198633161595,15.735094791574257,-0.004359687840343624,0,0,1273.3622210005092,0.1325346158749756,0.004446572546536724,0.0077232726,0,0,0,0 +1770,0.003400696491332528,0.11688806945965896,0,0,2.1393647387522594,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04544,0,457.00000254313153,4273.5216,742.3010152180989,21.63439757224449,278.1939977010091,355.3605475565106,0,0,0,0,0,0,0,0,0,0,0,0,2.757839894229619e-7,1.5651961e-6,0,0,0,0,1.5236434516433897e-5,5.0583038e-5,0,0,0,0,274.49504852294916,0.0796087243061151,7.155978283657899,60.96602720867275,3.9271229910537153,15.742715085469241,-0.004589145095098551,0,0,1277.4922103572562,0.03636234846097209,0.004446572546536724,0.0077232726,0,0,0,0 +1771,0.0037688917930248853,0.11903847327807247,0,0,2.1009097006210053,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07227,0,457.00000254313153,4274.9318,742.8711649576821,21.428921101329358,278.2700017293294,347.8619882938519,0,0,0,0,0,0,0,0,0,0,0,0,3.2174798529164644e-7,1.6013494e-6,0,0,0,0,1.7775840206013527e-5,5.4656378000000014e-5,0,0,0,0,274.5130513509114,0.08111271328822328,7.069218405010363,59.42424032933085,3.843192572805414,15.321977391799376,-0.0048186023498534795,0,0,1230.1282386704063,0.08889303627750589,0.004446572546536724,0.0077232726,0,0,0,0 +1772,0.00377000487949438,0.12122843833317697,0,0,2.0870775413423877,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08887,0,457.00000254313153,4275.8046,744.0189666748046,21.39461571539237,278.33399963378906,344.613473832749,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198589728254e-7,1.6374741e-6,0,0,0,0,2.0315245971384382e-5,5.8726423e-5,0,0,0,0,274.5310490926106,0.08264511602621083,7.043230561502576,58.72495294608385,3.8129800371340568,15.114183286240658,-0.0050480596046084064,0,0,1217.8363475826973,0.15110052169091734,0.004446572546536724,0.0077232726,0,0,0,0 +1773,0.003771117965963877,0.12345869243778378,0,0,2.0927556031478227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.06952,0,457.00000254313153,4274.7874,744.6629842122395,21.59523139318095,278.41199493408203,345.7768090889352,0,0,0,0,0,0,0,0,0,0,0,0,4.136759793974913e-7,1.6733555e-6,0,0,0,0,2.2854651888337685e-5,6.276843000000001e-5,0,0,0,0,274.54705047607416,0.08420646932023572,7.104503735011084,58.916568849809806,3.795742518659598,15.204663791112324,-0.005277516859363335,0,0,1220.6866453772807,0.17402255695782867,0.004446572546536724,0.0077232726,0,0,0,0 +1774,0.0037722310524333762,0.12572997679436368,0,0,2.1549007405251683,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0265,0,457.00000254313153,4272.5262,744.8780721028645,22.25970772945681,278.49099985758465,358.1035850352457,0,0,0,0,0,0,0,0,0,0,0,0,4.5963998474007894e-7,1.709014e-6,0,0,0,0,2.539405750212609e-5,6.678474599999999e-5,0,0,0,0,274.56504567464185,0.08579732011182588,7.347701469094086,61.31335787055999,3.8921060554545215,15.87559317662792,-0.005506974114118261,0,0,1266.4286163930858,0.18181443567658306,0.004446572546536724,0.0077232726,0,0,0,0 +1775,0.0037733441389028706,0.12804304624137816,0,0,2.148996596875075,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05246,0,457.00000254313153,4273.8905,745.3670603434243,22.200963290559795,278.58600362141925,355.04717285558434,0,0,0,0,0,0,0,0,0,0,0,0,5.056039735033361e-7,1.7452255e-6,0,0,0,0,2.7933463115914492e-5,7.0864778e-5,0,0,0,0,274.5790456136067,0.08741822567547253,7.269644819584187,60.54083046418634,3.9181029245147934,15.589135703603631,-0.0057364313688731865,0,0,1250.604503536799,0.18443600769588672,0.004446572546536724,0.0077232726,0,0,0,0 +1776,0.004161708793079992,0.13039866950414225,0,0,2.1121431315177817,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03943999999998,0,457.00000254313153,4273.2061,746.0480702718098,22.141942125209106,278.68299865722656,348.8985525123486,0,0,0,0,0,0,0,0,0,0,0,0,5.515679741089722e-7,1.7810977e-6,0,0,0,0,3.0472869184450246e-5,7.490574e-5,0,0,0,0,274.59404754638666,0.08906975381384338,7.261469977422546,59.38114479685163,3.777483547468073,15.370077015958627,-0.005965888623628117,0,0,1235.2601205170242,0.1853168155815639,0.004446572546536724,0.0077232726,0,0,0,0 +1777,0.004162821879549489,0.13279762945030274,0,0,2.170244783620918,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05273,0,457.00000254313153,4273.9048,746.7369181315103,22.568710059808843,278.7739969889323,357.54536101292035,0,0,0,0,0,0,0,0,0,0,0,0,5.975319747146083e-7,1.8172253e-6,0,0,0,0,3.301227479823865e-5,7.8976112e-5,0,0,0,0,274.6060485839843,0.09075248305668364,7.355973763265293,60.89349007083899,3.9379814138510616,15.673457529791746,-0.0061953458783830465,0,0,1262.6435516726208,0.1856126856704365,0.004446572546536724,0.0077232726,0,0,0,0 +1778,0.004163934966018991,0.13524072335001636,0,0,2.19800140223097,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04465,0,457.00000254313153,4273.48,746.7510579427083,22.856080929571224,278.86599985758465,362.75541346308773,0,0,0,0,0,0,0,0,0,0,0,0,6.434959753202444e-7,1.8531337e-6,0,0,0,0,3.5551680412027054e-5,8.3021224e-5,0,0,0,0,274.61804707845045,0.09246700286347481,7.434606066614661,61.78348694597739,4.021077006745745,15.899456247670447,-0.006424803133137972,0,0,1282.2802932337786,0.18571207513321009,0.004446572546536724,0.0077232726,0,0,0,0 +1779,0.004165048052488488,0.1377287631409144,0,0,2.1596157774386384,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03691,0,457.00000254313153,4273.0734,746.907023111979,22.820635694370733,278.9590021769206,355.9261715181252,0,0,0,0,0,0,0,0,0,0,0,0,6.894599664519774e-7,1.889034e-6,0,0,0,0,3.809108632898036e-5,8.706542400000001e-5,0,0,0,0,274.6290486653645,0.09421391382992209,7.418773457145868,60.500814881249,3.8656452035830986,15.627457862925702,-0.006654260387892898,0,0,1253.8091981813902,0.18574546502203013,0.004446572546536724,0.0077232726,0,0,0,0 +1780,0.004167169606582223,0.14026257569794193,0,0,2.18926758767753,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98817,0,457.00000254313153,4270.5109999999995,747.2310638427733,23.24616665378551,279.0540033976237,361.61404216072185,0,0,0,0,0,0,0,0,0,0,0,0,7.354239623206619e-7,1.9244033000000003e-6,0,0,0,0,4.063049224593366e-5,9.1048394e-5,0,0,0,0,274.639050801595,0.09599382789834296,7.569429120654667,61.61859566014493,3.8711479642945226,16.01838080056119,-0.0068837176426478274,0,0,1274.797708672403,0.18575668147078706,0.004446572546536724,0.0077232726,0,0,0,0 +1781,0.004659412904951052,0.14284300310816161,0,0,2.189441199921453,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04236000000002,0,457.00000254313153,4273.3596,747.7660471598306,23.249655483903965,279.14499918619794,360.09005386289476,0,0,0,0,0,0,0,0,0,0,0,0,7.81387962926298e-7,1.9610810000000003e-6,0,0,0,0,4.316989755655717e-5,9.5182182e-5,0,0,0,0,274.6470464070637,0.09780736857203022,7.505783352638315,61.19330647262292,3.9207239231952387,15.80695226528239,-0.007113174897402756,0,0,1277.5362524488116,0.18576045057214427,0.004446572546536724,0.0077232726,0,0,0,0 +1782,0.00466053247031568,0.14547090295061266,0,0,2.160522701160256,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03125,0,457.00000254313153,4272.7759,748.2900187174478,23.341758118914438,279.2430013020833,356.04655462228243,0,0,0,0,0,0,0,0,0,0,0,0,8.273519635319341e-7,1.9969148e-6,0,0,0,0,4.570930377667537e-5,9.9218691e-5,0,0,0,0,274.65404764811194,0.09965517113366511,7.519625787694825,60.48572145305894,3.7938381853855025,15.712820826828775,-0.007342632152157681,0,0,1261.0508762359207,0.18576171303887845,0.004446572546536724,0.0077232726,0,0,0,0 +1783,0.004662660503304549,0.14814714858131856,0,0,2.150725589743228,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0436,0,457.00000254313153,4273.4248,748.6270294189452,23.379916787266467,279.33999888102215,354.28692425367274,0,0,0,0,0,0,0,0,0,0,0,0,8.733159641375702e-7,2.0330816e-6,0,0,0,0,4.824870908729887e-5,1.0329359e-4,0,0,0,0,274.6580505371093,0.1015378828678566,7.496232273464098,60.10171272373322,3.7887381780047664,15.607260472139073,-0.007572089406912609,0,0,1258.691215611721,-1.6071113091275233,0.004446572546536724,0.0077232726,0,0,0,0 +1784,0.004663780068669177,0.15087262942353824,0,0,2.140542212443426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05531,0,457.00000254313153,4274.0405,748.9340260823567,23.29404230240209,279.4340006510417,350.5694962640399,0,0,0,0,0,0,0,0,0,0,0,0,9.192799552693032e-7,2.0692567e-6,0,0,0,0,5.078811530741708e-5,1.0736946e-4,0,0,0,0,274.6640548706054,0.10345616328788484,7.381156400424443,59.21225989324307,3.835360348467436,15.228141255684468,-0.007801546661667537,0,0,1241.0913844308948,-3.4875496425880166,0.004446572546536724,0.0077232726,0,0,0,0 +1785,0.004666993144531652,0.1536482512633568,0,0,2.1658396912622853,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02817,0,457.00000254313153,4272.6136,749.2520395914712,23.80210553725873,279.53200276692706,356.805125351722,0,0,0,0,0,0,0,0,0,0,0,0,9.652439748227455e-7,2.1048124e-6,0,0,0,0,5.332752031487568e-5,1.113739e-4,0,0,0,0,274.66904958089185,0.1054106843667286,7.538152323485599,60.494479362546464,3.8216491921096964,15.732711479772949,-0.00803100391642247,0,0,1266.5681498543852,-1.3227211965923305,0.004446572546536724,0.0077232726,0,0,0,0 +1786,0.005295379572172684,0.15647493655071468,0,0,2.158683484868033,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02684000000001,0,457.00000254313153,4272.5442,749.563980102539,23.831994998220747,279.6290003458659,354.20587729579694,0,0,0,0,0,0,0,0,0,0,0,0,1.011207928058866e-6,2.14077e-6,0,0,0,0,5.586692683815878e-5,1.1542471e-4,0,0,0,0,274.67605336507154,0.10740213077245707,7.4910842541914535,59.91468240707549,3.8263162148060967,15.467157122376957,-0.008260461171177394,0,0,1263.905903422694,-0.4872575238005176,0.004446572546536724,0.0077232726,0,0,0,0 +1787,0.005297507605161552,0.15935362470597414,0,0,2.18517929356942,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03415,0,457.00000254313153,4272.9283,749.6690826416014,24.17652817967206,279.72900136311847,358.7933682521366,0,0,0,0,0,0,0,0,0,0,0,0,1.0571719712970662e-6,2.1768802999999995e-6,0,0,0,0,5.840633214878229e-5,1.1949308e-4,0,0,0,0,274.6780471801757,0.10943120010806894,7.555171969721947,60.75335707654267,3.8851079963013144,15.71033145518615,-0.00848991842593232,0,0,1281.3314192960927,-0.09613776148013498,0.004446572546536724,0.0077232726,0,0,0,0 +1788,0.005298627170526176,0.16228527243212662,0,0,2.255223483707013,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9922,0,457.00000254313153,4270.7227,750.1610209147134,24.855928924260272,279.83099873860675,371.3570923496072,0,0,0,0,0,0,0,0,0,0,0,0,1.1031359387440414e-6,2.2120831e-6,0,0,0,0,6.094573836890049e-5,1.2345688999999995e-4,0,0,0,0,274.67704772949213,0.11149860315586238,7.730934740743885,63.12433046674855,4.038519355079948,16.343354337191045,-0.008719375680687248,0,0,1326.080725437415,0.0885310651741068,0.004446572546536724,0.0077232726,0,0,0,0 +1789,0.005300755203515047,0.16527085403274291,0,0,2.2076646319075275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0242,0,457.00000254313153,4272.405,750.6470489501952,24.717072836600927,279.93299865722656,363.4416445787676,0,0,0,0,0,0,0,0,0,0,0,0,1.149099944086629e-6,2.2486571e-6,0,0,0,0,6.348514337635909e-5,1.2757871e-4,0,0,0,0,274.6780522664387,0.11360506412642196,7.663516243062957,61.632292379507476,3.911091424062233,16.00040861482673,-0.008948832935442175,0,0,1300.9350554928549,0.1529858926017705,0.004446572546536724,0.0077232726,0,0,0,0 +1790,0.005302883236503912,0.16831136173577357,0,0,2.2164369958956196,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99139,0,457.00000254313153,4270.6805,751.1640370686848,24.942208573783375,280.03700256347656,364.880216392627,0,0,0,0,0,0,0,0,0,0,0,0,1.195063968377023e-6,2.2839743e-6,0,0,0,0,6.60245495964773e-5,1.3155567e-4,0,0,0,0,274.67705281575513,0.11575132091230927,7.680254371033305,61.84599180813865,3.9372032070765473,16.056743908676,-0.009178290190197105,0,0,1304.8004807748046,0.1747471382296157,0.004446572546536724,0.0077232726,0,0,0,0 +1791,0.005920182770600551,0.1714078060233054,0,0,2.172583556470899,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02128,0,457.00000254313153,4272.2515,751.7080535888671,24.778432167331218,280.14099884033203,356.6583861664455,0,0,0,0,0,0,0,0,0,0,0,0,1.2410279168761917e-6,2.320551e-6,0,0,0,0,6.85639552102657e-5,1.3567783e-4,0,0,0,0,274.6740468343098,0.11793812534654649,7.556943543496139,60.21873920423577,3.848117366332663,15.616449876377857,-0.00940774744495203,0,0,1284.7688041559788,0.18206199111341248,0.004446572546536724,0.0077232726,0,0,0,0 +1792,0.006098811288557544,0.17456121596738536,0,0,2.1616507929601063,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04466,0,457.00000254313153,4273.4807,752.2780151367186,24.818892944319888,280.2409973144531,354.25153761087523,0,0,0,0,0,0,0,0,0,0,0,0,1.286991960114392e-6,2.3570319e-6,0,0,0,0,7.110336143038391e-5,1.3978892e-4,0,0,0,0,274.6740468343098,0.12016624346598324,7.499155044750518,59.70568574139235,3.8521685509833974,15.44666919254658,-0.009637204699706955,0,0,1279.936623401035,0.18451935326733201,0.004446572546536724,0.0077232726,0,0,0,0 +1793,0.00610508215549315,0.17777263957202216,0,0,2.1532738339280715,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02605,0,457.00000254313153,4272.5025,752.6820678710936,25.03153140920904,280.33199818929035,353.37230933667234,0,0,0,0,0,0,0,0,0,0,0,0,1.3329559275613672e-6,2.3926083e-6,0,0,0,0,7.364276643784251e-5,1.4379579e-4,0,0,0,0,274.65905253092444,0.12243645577963895,7.518120739119681,59.58493949599902,3.7981346475872892,15.477979537880952,-0.009866661954461885,0,0,1276.6758910223705,0.18534481647704806,0.004446572546536724,0.0077232726,0,0,0,0 +1794,0.006092419359098298,0.18104314412147968,0,0,2.2138431157688125,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98417,0,457.00000254313153,4270.3009999999995,753.2520446777343,25.76753777758947,280.41500091552734,365.72191403060503,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199329039548e-6,2.4276195000000003e-6,0,0,0,0,7.618217265796072e-5,1.4773748e-4,0,0,0,0,274.6480560302734,0.1247495575421151,7.731535991085819,62.03822453198564,3.901984420737959,16.16525997375536,-0.010096119209216816,0,0,1323.3915439011364,0.18562210038833984,0.004446572546536724,0.0077232726,0,0,0,0 +1795,0.006095932503617563,0.18437381653497847,0,0,2.2026922727614937,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01093,0,457.00000254313153,4271.7076,753.8410644531249,25.77334281488129,280.4919967651367,362.19212268926736,0,0,0,0,0,0,0,0,0,0,0,0,1.4248839571943488e-6,2.4642054e-6,0,0,0,0,7.872157827174912e-5,1.5186068000000002e-4,0,0,0,0,274.63105265299475,0.12710635903217238,7.626169221355247,61.24273214189555,3.9191066213899726,15.883131946283404,-0.01032557646397174,0,0,1307.1177907303108,0.18571524277301074,0.004446572546536724,0.0077232726,0,0,0,0 +1796,0.006396386441099536,0.18776576372792214,0,0,2.1531546155773227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99978,0,457.00000254313153,4271.1214,754.5180511474608,25.74058406529963,280.5549952189128,354.4783029356138,0,0,0,0,0,0,0,0,0,0,0,0,1.4708479056935175e-6,2.4998985e-6,0,0,0,0,8.126098449186732e-5,1.55881e-4,0,0,0,0,274.6150538126627,0.1295076858365712,7.5818630966127785,59.864242428463136,3.749609514115161,15.62836980130604,-0.010555033718726669,0,0,1286.4148371024328,0.056138903072538514,0.004446572546536724,0.0077232726,0,0,0,0 +1797,0.006712627262260326,0.19122011297976946,0,0,2.2134750361996645,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01623,0,457.00000254313153,4271.986,755.2560729980468,26.23006225836581,280.6230010986328,363.54823719907995,0,0,0,0,0,0,0,0,0,0,0,0,1.5168119489317178e-6,2.5362748e-6,0,0,0,0,8.380038949932593e-5,1.5998003e-4,0,0,0,0,274.6010538736979,0.1319543791392746,7.636302581611899,61.4713769474247,3.9409741021501565,15.938653048219956,-0.010784490973481595,0,0,1322.1792002170396,-0.04279485298025665,0.004446572546536724,0.0077232726,0,0,0,0 +1798,0.006990649026827593,0.19473801230867469,0,0,2.2340562829342026,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0081,0,457.00000254313153,4271.559,756.1130472819009,26.546440122432795,280.68200429280597,367.6501027985187,0,0,0,0,0,0,0,0,0,0,0,0,1.562775925852596e-6,2.5720343e-6,0,0,0,0,8.633979571944413e-5,1.6400798999999998e-4,0,0,0,0,274.5840530395507,0.1344472960161143,7.671017715782881,62.197639026391784,4.015700360730371,16.12667274116127,-0.011013948228236524,0,0,1344.4943107799907,0.057545267787991024,0.004446572546536724,0.0077232726,0,0,0,0 +1799,0.007363034100288113,0.19832063085301946,0,0,2.2072921648839388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99068,0,457.00000254313153,4270.6431,756.9420471191405,26.706488169365446,280.7529983520508,363.4860469038741,0,0,0,0,0,0,0,0,0,0,0,0,1.6087399217212806e-6,2.6075323e-6,0,0,0,0,8.887920133323253e-5,1.6800578999999998e-4,0,0,0,0,274.5700480143229,0.13698730973502452,7.674462849763394,61.49623019706863,3.882903388386678,16.03734278779562,-0.011243405482991452,0,0,1332.7327654492608,0.14035414546167346,0.004446572546536724,0.0077232726,0,0,0,0 +1800,0.007853247961014498,0.20196915925996428,0,0,2.2159740553936684,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95838,0,457.00000254313153,4268.9449,757.7620493570962,27.056343077702923,280.83399709065753,365.8466368441075,0,0,0,0,0,0,0,0,0,0,0,0,1.6547039554855776e-6,2.6425936e-6,0,0,0,0,9.141860694702093e-5,1.7195328999999998e-4,0,0,0,0,274.54705047607416,0.13957531006194712,7.7406453217716145,62.00320914073126,3.867691465248536,16.242141697691363,-0.011477676635976337,0,0,1351.4018850842497,0.17040288697636866,0.004446572546536724,0.0077232726,0,0,0,0 +1801,0.0077923631049037195,0.2056848100811483,0,0,2.219401689900871,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01099,0,457.00000254313153,4271.7107,758.5840606689452,27.12488718150826,280.9189987182617,364.91706838648093,0,0,0,0,0,0,0,0,0,0,0,0,1.7006678945108433e-6,2.6800125e-6,0,0,0,0,9.395801256080934e-5,1.7617249e-4,0,0,0,0,274.5320510864257,0.1422122035725165,7.701186978248275,61.665647788634544,3.9218437626561613,16.063733218320355,-0.011716461343221001,0,0,1346.3126694277855,0.1805980962819972,0.004446572546536724,0.0077232726,0,0,0,0 +1802,0.010116776318211833,0.20946881817566826,0,0,2.2026926609955066,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99468,0,457.00000254313153,4270.8532,759.5070699055989,27.339784315547476,280.9939956665039,362.96270750693964,0,0,0,0,0,0,0,0,0,0,0,0,1.7466319377490436e-6,2.7155059e-6,0,0,0,0,9.649741878092755e-5,1.8016977e-4,0,0,0,0,274.5230509440104,0.14489891396963264,7.763054085257172,61.32615659022455,3.814905719116379,16.0758236117733,-0.011955246050465669,0,0,1365.7924593201149,0.18402739824539616,0.004446572546536724,0.0077232726,0,0,0,0 +1803,0.008763957676258299,0.2133224411204717,0,0,2.1800158282432216,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0108,0,457.00000254313153,4271.7009,760.5080464680989,27.320499854247753,281.07299550374347,358.65077997506035,0,0,0,0,0,0,0,0,0,0,0,0,1.7925959146699217e-6,2.7519421e-6,0,0,0,0,9.903682439471595e-5,1.8427573e-4,0,0,0,0,274.50505065917963,0.1476363824070339,7.720863756565482,60.404341817460505,3.773697198795284,15.83103087932591,-0.01219403075771034,0,0,1340.0232615916289,0.18517955647392584,0.004446572546536724,0.0077232726,0,0,0,0 +1804,0.009565590378222546,0.2172469596283,0,0,2.197298086929074,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0121,0,457.00000254313153,4271.7691,761.5410817464192,27.46474997353236,281.15699768066406,359.52869597563125,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599105386063e-6,2.7879493e-6,0,0,0,0,1.0157623000850435e-4,1.8833223e-4,0,0,0,0,274.4860483805338,0.1504255678189829,7.687086730342071,60.36470274902327,3.8714733047891783,15.676248110600966,-0.012432815464955008,0,0,1347.9906823261654,0.1855665834344882,0.004446572546536724,0.0077232726,0,0,0,0 +1805,0.009351564248471856,0.2212436779733203,0,0,2.215042398148324,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98963,0,457.00000254313153,4270.588,762.6710561116536,27.95079819780367,281.23399607340497,364.30370432998336,0,0,0,0,0,0,0,0,0,0,0,0,1.8845239443029034e-6,2.8232141e-6,0,0,0,0,1.0411563562229276e-4,1.9230319e-4,0,0,0,0,274.46604665120435,0.15326744725618094,7.835162208853216,61.31991145746931,3.843518327224849,16.094154796194182,-0.012671600172199671,0,0,1367.0219318674867,0.18569659271698705,0.004446572546536724,0.0077232726,0,0,0,0 +1806,0.009786482457224585,0.22531392442458775,0,0,2.222822584756122,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98239,0,457.00000254313153,4270.2074,763.799077351888,28.134372446801326,281.32200113932294,364.34322933574117,0,0,0,0,0,0,0,0,0,0,0,0,1.930487997015007e-6,2.8589339e-6,0,0,0,0,1.0665504184241097e-4,1.9632654e-4,0,0,0,0,274.44705200195307,0.15616301622802836,7.843541453054056,61.22344968188294,3.8770122853259146,15.951443167692844,-0.01291038487944434,0,0,1370.2972329819197,0.18574025872045344,0.004446572546536724,0.0077232726,0,0,0,0 +1807,0.01047013855726404,0.22945905168748248,0,0,2.2398719818574606,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99423,0,457.00000254313153,4270.8298,765.0220794677733,28.45865602722048,281.40900166829425,367.234932813752,0,0,0,0,0,0,0,0,0,0,0,0,1.976451850775144e-6,2.8952686e-6,0,0,0,0,1.0919444745619937e-4,2.0042079e-4,0,0,0,0,274.4280471801757,0.15911328905135125,7.906227328891799,61.706469136452746,3.9067413834348796,16.117564084518662,-0.013149169586689009,0,0,1389.725529173022,0.1857549291426783,0.004446572546536724,0.0077232726,0,0,0,0 +1808,0.0097850874703066491,0.23368043735326766,0,0,2.311936484434354,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95199,0,457.00000254313153,4268.6094,766.3190816243489,29.185241168144344,281.4959996541341,380.03527200344246,0,0,0,0,0,0,0,0,0,0,0,0,2.022415856117732e-6,2.9298066e-6,0,0,0,0,1.1173385246365797e-4,2.0430798e-4,0,0,0,0,274.41105143229163,0.16211929920571624,8.095303457182244,64.08195973155631,4.0703582727403695,16.731546899631116,-0.013387954293933677,0,0,1425.5751228095764,0.1857598571570931,0.004446572546536724,0.0077232726,0,0,0,0 +1809,0.009793704265605399,0.23797948435691788,0,0,2.267442640293564,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.979,0,457.00000254313153,4270.0292,767.6550801595051,29.128658126909023,281.56599680582684,372.8486855412818,0,0,0,0,0,0,0,0,0,0,0,0,2.068379899355932e-6,2.9666566e-6,0,0,0,0,1.1427325929010597e-4,2.084616e-4,0,0,0,0,274.3830540974934,0.16518209969545813,8.062766978193096,62.71002212876877,3.9400684962479615,16.440165993612062,-0.013626739001178344,0,0,1403.1315870359595,-3.365688134186352,0.004446572546536724,0.0077232726,0,0,0,0 +1810,0.010412685282412803,0.24235762144337059,0,0,2.279523715758953,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93988,0,457.00000254313153,4267.9729,769.1471150716145,29.42453241885191,281.6480026245117,374.7180119050739,0,0,0,0,0,0,0,0,0,0,0,0,2.1143439425941324e-6,3.001229600000001e-6,0,0,0,0,1.1681266429756458e-4,2.1235282e-4,0,0,0,0,274.3600463867187,0.16830276341854683,8.107079152206923,62.97351665449524,3.9615915998724422,16.525388081401466,-0.013865523708423014,0,0,1414.1945614469914,-2.313830028435405,0.004446572546536724,0.0077232726,0,0,0,0 +1811,0.011014901476711613,0.24681630364235504,0,0,2.252530235973812,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96903,0,457.00000254313153,4269.505,770.71804300944,29.40578755819684,281.71799723307294,369.2694863079116,0,0,0,0,0,0,0,0,0,0,0,0,2.1603079858323326e-6,3.0381873e-6,0,0,0,0,1.1935207051768278e-4,2.1651886e-4,0,0,0,0,274.3340479532877,0.17148238354242323,8.026948341108737,61.82960599561912,3.9187456997844685,16.18886557071267,-0.014104308415667684,0,0,1403.686743399878,-0.7123016214302859,0.004446572546536724,0.0077232726,0,0,0,0 +1812,0.011395911929257216,0.2513570127519567,0,0,2.228006934512883,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99029,0,457.00000254313153,4270.6225,772.2101186116536,29.420298496849927,281.7899983723958,364.5806874718721,0,0,0,0,0,0,0,0,0,0,0,0,2.20627183959247e-6,3.0749001e-6,0,0,0,0,1.2189147552514139e-4,2.2065669e-4,0,0,0,0,274.3040517171223,0.17472207388693542,7.965169636083453,60.85746996681422,3.875988658118611,15.929050627989685,-0.014343093122912353,0,0,1394.884132023951,-0.11856299687933905,0.004446572546536724,0.0077232726,0,0,0,0 +1813,0.011449080560791872,0.25598125783107806,0,0,2.2319968590304815,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97005,0,457.00000254313153,4269.5589,773.7009938557942,29.7784760297943,281.8580017089844,365.91388742059627,0,0,0,0,0,0,0,0,0,0,0,0,2.2522358449350577e-6,3.110098e-6,0,0,0,0,1.244308817452596e-4,2.2461994e-4,0,0,0,0,274.2670516967773,0.17802296931450928,8.032995952278533,61.13613019851266,3.844088557026285,16.064915035546967,-0.014581877830157016,0,0,1400.3255529877902,0.08341540584179588,0.004446572546536724,0.0077232726,0,0,0,0 +1814,0.011703715690574799,0.26069057570095894,0,0,2.291579691300283,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93883999999998,0,457.00000254313153,4267.9182,774.8281351725259,30.547851858136706,281.9310048421224,377.9855416791419,0,0,0,0,0,0,0,0,0,0,0,0,2.298199888173258e-6,3.1448486e-6,0,0,0,0,1.269702879653778e-4,2.2853159e-4,0,0,0,0,274.2310485839843,0.18138622612769045,8.255365791822651,63.491928228846156,3.9468734522371403,16.719923485538892,-0.014820662537401687,0,0,1449.119879767822,0.1513774178324831,0.004446572546536724,0.0077232726,0,0,0,0 +1815,0.012094116593579975,0.2654865314559236,0,0,2.2873246936294374,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94955,0,457.00000254313153,4268.4808,776.1400197347004,30.644339540877155,281.9919967651367,375.58066479556715,0,0,0,0,0,0,0,0,0,0,0,0,2.344163931411458e-6,3.1811772e-6,0,0,0,0,1.295096929728364e-4,2.3262515e-4,0,0,0,0,274.1810506184895,0.18481302247419681,8.178894557702046,62.871575698722964,3.9779982661109097,16.487496881933723,-0.015059447244646357,0,0,1442.8346042595695,-3.3418049013197435,0.004446572546536724,0.0077232726,0,0,0,0 +1816,0.013382562792105972,0.27037071898352416,0,0,2.2610219999980314,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93504,0,457.00000254313153,4267.7184,777.380157470703,30.799856219058316,282.0590006510417,371.6298227687404,0,0,0,0,0,0,0,0,0,0,0,0,2.3901279746496584e-6,3.2165261e-6,0,0,0,0,1.320490991929546e-4,2.3660577e-4,0,0,0,0,274.1430511474609,0.1883045587596232,8.188247476569973,62.14643251873565,3.866008444908697,16.395033850520726,-0.01538342230023426,0,0,1449.5176305014372,-4.328813791919775,0.004446572546536724,0.0077232726,0,0,0,0 +1817,0.013970105691413876,0.2753447614942531,0,0,2.2961805691271597,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95336,0,457.00000254313153,4268.6815,778.9910329182942,31.198395410102997,282.1270014444987,376.4429441283954,0,0,0,0,0,0,0,0,0,0,0,0,2.4360918284097957e-6,3.2531745000000007e-6,0,0,0,0,1.345885054130728e-4,2.4073619e-4,0,0,0,0,274.10705566406244,0.1918620580679428,8.22082538393248,62.94153100870699,3.9812025759726706,16.517228645555626,-0.015754264592881567,0,0,1472.005826655642,-1.519519756284862,0.004446572546536724,0.0077232726,0,0,0,0 +1818,0.01405484729122227,0.2804103120610006,0,0,2.335490104759264,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94012,0,457.00000254313153,4267.9855,780.3030497233071,31.68760831940507,282.1999994913737,383.9142096017897,0,0,0,0,0,0,0,0,0,0,0,0,2.4820558337523835e-6,3.2885565000000008e-6,0,0,0,0,1.371279092078718e-4,2.4472062e-4,0,0,0,0,274.07105000813795,0.19548676658995365,8.306817108343136,64.26768048931984,4.1092958455936754,16.849648882949314,-0.01612510688552888,0,0,1503.3307533939446,-0.39544551956287705,0.004446572546536724,0.0077232726,0,0,0,0 +1819,0.01412101034059915,0.28556905416843703,0,0,2.304129482409452,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92235,0,457.00000254313153,4267.0511,781.42605082194,31.84544135012051,282.27200571695965,378.33258383444644,0,0,0,0,0,0,0,0,0,0,0,0,2.5280198769905837e-6,3.3237292e-6,0,0,0,0,1.396673166406496e-4,2.4868094e-4,0,0,0,0,274.05004882812494,0.19917995405981814,8.302878858634369,63.25758927353961,3.9635191901767652,16.665198211860137,-0.016495949178176192,0,0,1480.3972085438447,-0.009852951526022849,0.004446572546536724,0.0077232726,0,0,0,0 +1820,0.014336733148844732,0.29082270227250195,0,0,2.32104876587155,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88909,0,457.00000254313153,4265.3029,782.4270782470702,32.333394668843965,282.3460006713867,382.4197482792824,0,0,0,0,0,0,0,0,0,0,0,0,2.573983920228784e-6,3.3582175000000007e-6,0,0,0,0,1.4220672286076783e-4,2.5256240000000004e-4,0,0,0,0,274.0070495605468,0.20294291419985105,8.41607797478937,64.0766432984354,3.958562233257077,16.963564409475474,-0.0168667914708235,0,0,1500.1274234919138,0.12003571660703966,0.004446572546536724,0.0077232726,0,0,0,0 +1821,0.014562069432518771,0.2961730023701861,0,0,2.3334837772109833,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93899,0,457.00000254313153,4267.9261,783.568130493164,32.52138863261211,282.4150034586589,382.89753410088764,0,0,0,0,0,0,0,0,0,0,0,0,2.6199479634669842e-6,3.396252e-6,0,0,0,0,1.4474612665556683e-4,2.5685255e-4,0,0,0,0,273.9700495402018,0.20677696517370964,8.396299170642942,63.987449087582284,4.029731628274296,16.860100322541292,-0.01723763376347081,0,0,1506.0001599344928,0.06037517262922151,0.004446572546536724,0.0077232726,0,0,0,0 +1822,0.015133379255268703,0.30162173257979613,0,0,2.3025151175170526,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92104,0,457.00000254313153,4266.9822,784.9560546874999,32.73451051970765,282.4769999186198,378.6708004400731,0,0,0,0,0,0,0,0,0,0,0,0,2.665911836174928e-6,3.4313761e-6,0,0,0,0,1.4728553408834463e-4,2.6080728e-4,0,0,0,0,273.9330520629882,0.21068345004814615,8.447852069179593,63.22724653024458,3.871133523422822,16.796298079496715,-0.017608476056118122,0,0,1499.4772542487524,0.0654325060086605,0.004446572546536724,0.0077232726,0,0,0,0 +1823,0.01603814933316958,0.30717070373189426,0,0,2.2824717646567367,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94096,0,457.00000254313153,4268.0293,786.2210744222004,32.75571508609182,282.54000091552734,374.3931813157347,0,0,0,0,0,0,0,0,0,0,0,0,2.7118758225697093e-6,3.4681677e-6,0,0,0,0,1.4982493909580322e-4,2.6495418e-4,0,0,0,0,273.89505004882807,0.21466373726348362,8.395261063519708,62.26076437261461,3.846052063384317,16.532712282905738,-0.01797931834876543,0,0,1499.6047524729552,-0.2700677190301451,0.004446572546536724,0.0077232726,0,0,0,0 +1824,0.01650100893154855,0.31282175997110956,0,0,2.310947810882604,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93425,0,457.00000254313153,4267.6765,787.4750722249348,33.05197869569693,282.6179962158203,377.040711415511,0,0,0,0,0,0,0,0,0,0,0,0,2.7578398658079095e-6,3.5037779e-6,0,0,0,0,1.5236434531592144e-4,2.6896492e-4,0,0,0,0,273.847048441569,0.21871922111297978,8.395833943142073,62.56343379800663,3.956577312910641,16.47072525551795,-0.018354944497914732,0,0,1512.9125520641012,-0.02966138430388376,0.004446572546536724,0.0077232726,0,0,0,0 +1825,0.01722266283199113,0.3185767793690206,0,0,2.3227031118101618,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91652,0,457.00000254313153,4266.7449,788.7140604654946,33.52533881675272,282.6759999593099,380.31674976188685,0,0,0,0,0,0,0,0,0,0,0,0,2.8038039090461098e-6,3.5388691e-6,0,0,0,0,1.5490375032338002e-4,2.7291587000000003e-4,0,0,0,0,273.78604634602857,0.22285132223124796,8.516236488505783,63.185789553909586,3.9190680646113942,16.80867752489523,-0.0187628709494922,0,0,1538.203336309689,0.11056506113548577,0.004446572546536724,0.0077232726,0,0,0,0 +1826,0.017382230465949125,0.32443767454831385,0,0,2.320968833647435,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90841,0,457.00000254313153,4266.3186,789.8310445149739,33.74810290483613,282.6929982503255,378.82226551401243,0,0,0,0,0,0,0,0,0,0,0,0,2.84976795228431e-6,3.574385500000001e-6,0,0,0,0,1.5744315654349825e-4,2.7691579e-4,0,0,0,0,273.72805023193354,0.22706148809190466,8.523620414150141,62.815941509777446,3.9116044827887784,16.620779080998844,-0.01917079740106968,0,0,1531.9828127801402,0.16037395519074635,0.004446572546536724,0.0077232726,0,0,0,0 +1827,0.01863987745517804,0.3304063933184248,0,0,2.3463377823547544,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91515,0,457.00000254313153,4266.6729,790.8700917561848,34.15505001036133,282.69299570719403,382.4773392117438,0,0,0,0,0,0,0,0,0,0,0,0,2.8957318249922537e-6,3.6105981e-6,0,0,0,0,1.5998256276361644e-4,2.8099598e-4,0,0,0,0,273.67705535888666,0.23135119351461897,8.585850324307904,63.38999010724139,3.9627935910031815,16.799919229980286,-0.01957872385264715,0,0,1566.0922143761854,0.17722825483510965,0.004446572546536724,0.0077232726,0,0,0,0 +1828,0.01882474558367928,0.33648491932287206,0,0,2.420774152646399,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.87222,0,457.00000254313153,4264.4159,791.9830423990884,34.99912851284667,282.708002726237,395.9754324666183,0,0,0,0,0,0,0,0,0,0,0,0,2.941695811387035e-6,3.6444139e-6,0,0,0,0,1.6252196777107505e-4,2.847999e-4,0,0,0,0,273.6410522460937,0.23572194118174164,8.801495946618267,65.90535948629658,4.116354977084998,17.480564495882128,-0.019986650304224626,0,0,1618.0207226022496,0.18289538758840385,0.004446572546536724,0.0077232726,0,0,0,0 +1829,0.01866419595593191,0.34267527269850206,0,0,2.379376332459752,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90025,0,457.00000254313153,4265.8895,793.0000712076821,35.0164051294104,282.76099650065106,389.1746282041487,0,0,0,0,0,0,0,0,0,0,0,0,2.9876598546252353e-6,3.6816572e-6,0,0,0,0,1.6506137277853364e-4,2.8899889e-4,0,0,0,0,273.6020533243815,0.24017526216469398,8.767229394465893,64.57289823663554,4.000350816006103,17.19408165401919,-0.020394576755802103,0,0,1597.2383021208498,0.18479929364776207,0.004446572546536724,0.0077232726,0,0,0,0 +1830,0.024933734074320084,0.3489795107468605,0,0,2.4031598307534434,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8667,0,457.00000254313153,4264.1256,793.9600270589192,35.40215533786149,282.8249994913737,392.10653286413964,0,0,0,0,0,0,0,0,0,0,0,0,3.0336238978634356e-6,3.7158665e-6,0,0,0,0,1.6760078021131145e-4,2.9284816e-4,0,0,0,0,273.5640513102213,0.24471271646030182,8.81880644628117,64.94076179033591,4.038430290401805,17.314251572854413,-0.020802503207379586,0,0,1705.903253614498,0.1854388472573092,0.004446572546536724,0.0077232726,0,0,0,0 +1831,0.02366017773383691,0.3553997286179164,0,0,2.3613471253941487,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89173999999998,0,457.00000254313153,4265.442,794.810073852539,35.37418704933364,282.8909962972005,384.20125072452805,0,0,0,0,0,0,0,0,0,0,0,0,3.079587941101636e-6,3.7529959e-6,0,0,0,0,1.7014018521877006e-4,2.97034e-4,0,0,0,0,273.52005004882807,0.24933589353726177,8.731507391555889,63.33682174076503,3.9474094529519688,16.877728667025877,-0.02121042965895705,0,0,1661.033130299973,-2.2447406013527207,0.004446572546536724,0.0077232726,0,0,0,0 +1832,0.023685925177870507,0.3619380600063637,0,0,2.3538632990393804,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90924,0,457.00000254313153,4266.362,795.5789845784504,35.562723492003244,282.9219970703125,382.363398002473,0,0,0,0,0,0,0,0,0,0,0,0,3.1255518138095795e-6,3.7897747e-6,0,0,0,0,1.7267959022622867e-4,3.0117945e-4,0,0,0,0,273.4440485636393,0.25404641289293156,8.712430008651964,62.87089656141417,3.946175052921808,16.738986754109227,-0.021652683906249543,0,0,1660.6105827511283,-1.4987682109213591,0.004446572546536724,0.0077232726,0,0,0,0 +1833,0.024226693427449875,0.3685966778607331,0,0,2.356959381290607,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89175,0,457.00000254313153,4265.4426,796.1241149902343,35.98083111069253,282.96599833170575,383.4537927943128,0,0,0,0,0,0,0,0,0,0,0,0,3.171515800204361e-6,3.824754e-6,0,0,0,0,1.7521899765900648e-4,3.0511746e-4,0,0,0,0,273.3720499674479,0.2588459246206396,8.790922956695082,63.06958370159948,3.905335593523844,16.86449692010886,-0.02214928975776249,0,0,1673.8749364362222,-0.4194845439142279,0.004446572546536724,0.0077232726,0,0,0,0 +1834,0.02470258560682817,0.3753777951055501,0,0,2.4124454659285632,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.854,0,457.00000254313153,4263.4584,797.0440368652343,36.761060965311756,283.0279998779297,394.1429023376304,0,0,0,0,0,0,0,0,0,0,0,0,3.217479843442561e-6,3.8586347e-6,0,0,0,0,1.7775840266646506e-4,3.089289e-4,0,0,0,0,273.2140502929687,0.2637361099877118,9.001420472247489,65.10499264081507,3.9890612936666887,17.454285340709294,-0.02264589560927544,0,0,1721.2693465918007,-0.01933718178498213,0.004446572546536724,0.0077232726,0,0,0,0 +1835,0.025273637508183497,0.38228366537677744,0,0,2.4054563746496176,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8698,0,457.00000254313153,4264.2887,797.8309682210286,36.88278972577237,283.08599853515625,390.5551391819573,0,0,0,0,0,0,0,0,0,0,0,0,3.2634438866807614e-6,3.8953332e-6,0,0,0,0,1.8029780767392367e-4,3.1306506e-4,0,0,0,0,273.07905069986975,0.2687186820244191,8.925548285908778,64.23544316564437,3.998558037017324,17.170486789731093,-0.023142501460788386,0,0,1718.2221250231016,-1.6633625299236003,0.004446572546536724,0.0077232726,0,0,0,0 +1836,0.029221069497854205,0.389316583770789,0,0,2.4041879560344257,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84901,0,457.00000254313153,4263.1961,798.1060129801431,37.24729235142932,283.1489995320638,389.978664389183,0,0,0,0,0,0,0,0,0,0,0,0,3.3094079299189616e-6,3.9300644999999986e-6,0,0,0,0,1.8283721389404187e-4,3.1697451e-4,0,0,0,0,272.9540532430012,0.2737953861240514,8.99301508642379,64.08016333132153,3.917445996447821,17.23500428603742,-0.02363910731230133,0,0,1783.0834194781103,-1.0677252796589791,0.004446572546536724,0.0077232726,0,0,0,0 +1837,0.02926039926471735,0.39647888760712147,0,0,2.4402101737227215,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.86946,0,457.00000254313153,4264.2707,798.115982055664,37.699806775525964,283.19800059000653,394.75650376781886,0,0,0,0,0,0,0,0,0,0,0,0,3.3553718026269053e-6,3.9670389e-6,0,0,0,0,1.853766201141601e-4,3.2114251e-4,0,0,0,0,272.8730545043945,0.2789680006543284,9.027059824256213,64.82242714481194,4.040217213334495,17.353835237590644,-0.02413571316381428,0,0,1798.0881971564909,-0.2640591208376881,0.004446572546536724,0.0077232726,0,0,0,0 +1838,0.030288692886915835,0.4037729572052591,0,0,2.477311745666847,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85548,0,457.00000254313153,4263.5362,797.937016805013,38.242109615281024,283.2530034383138,401.2961870125921,0,0,0,0,0,0,0,0,0,0,0,0,3.4013357890216867e-6,4.0021199e-6,0,0,0,0,1.8791602512161867e-4,3.2509225e-4,0,0,0,0,272.8660507202148,0.28423833758036093,9.122535894908143,65.94724656685626,4.142172855024622,17.64153847089682,-0.024632319015327232,0,0,1841.5431392468436,0.03335501919910246,0.004446572546536724,0.0077232726,0,0,0,0 +1839,0.031310556578042714,0.4112012166757089,0,0,2.4526381380788647,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83788,0,457.00000254313153,4262.6108,797.9220987955728,38.51117555601762,283.3109995524089,396.9116368644367,0,0,0,0,0,0,0,0,0,0,0,0,3.447299832259887e-6,4.0369741e-6,0,0,0,0,1.904554313417369e-4,3.2901587999999995e-4,0,0,0,0,272.85805002848304,0.2896082430993816,9.139608329107503,65.11131218043978,4.015311872419976,17.505176328593002,-0.025128924866840176,0,0,1843.0808236850567,0.13450763436493787,0.004446572546536724,0.0077232726,0,0,0,0 +1840,0.03354297409334304,0.41876613472562935,0,0,2.4438775219719657,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.80755,0,457.00000254313153,4261.0163,798.3870493570962,38.88776194382017,283.38200124104816,395.88091618643386,0,0,0,0,0,0,0,0,0,0,0,0,3.493263875498087e-6,4.0710717e-6,0,0,0,0,1.9299483634919548e-4,3.3285227e-4,0,0,0,0,272.7990519205729,0.29507959828746777,9.211326298909695,64.92298176034035,3.924269140081404,17.575132478856116,-0.025625530718353124,0,0,1874.1418275066233,0.16854263071970732,0.004446572546536724,0.0077232726,0,0,0,0 +1841,0.03460122912653735,0.42647022547928015,0,0,2.490489852137439,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84789,0,457.00000254313153,4263.137,799.060084025065,39.38162316774325,283.46699778238934,402.37274181683716,0,0,0,0,0,0,0,0,0,0,0,0,3.5392279187362874e-6,4.1092335e-6,0,0,0,0,1.955342437819733e-4,3.3715711000000003e-4,0,0,0,0,272.6890487670898,0.3006543197584808,9.249453201790956,65.9454451837981,4.089445548039454,17.745543570932366,-0.026145023202402858,0,0,1916.2642072737253,0.17997793561545353,0.004446572546536724,0.0077232726,0,0,0,0 +1842,0.03663997981024372,0.4343160493135666,0,0,2.4491704689870333,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84034,0,457.00000254313153,4262.7403,800.0011189778645,39.618728876147166,283.5279998779297,396.99512213680947,0,0,0,0,0,0,0,0,0,0,0,0,3.585191791444231e-6,4.1446349e-6,0,0,0,0,1.980736475767723e-4,3.411438e-4,0,0,0,0,272.58205413818354,0.3063343603354562,9.261381852099804,64.92167359416241,3.9361680613715975,17.590961717477978,-0.026688925256719682,0,0,1931.46250751484,0.18381929631950947,0.004446572546536724,0.0077232726,0,0,0,0 +1843,0.037450386379355084,0.44230621370895423,0,0,2.4111362709735427,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85726,0,457.00000254313153,4263.6297,801.4921824137368,39.653263822240504,283.56600189208984,389.73678087183737,0,0,0,0,0,0,0,0,0,0,0,0,3.6311557778390124e-6,4.1814844e-6,0,0,0,0,2.006130537968905e-4,3.4529738e-4,0,0,0,0,272.6070480346679,0.3121217097346764,9.185852611691464,63.424060913522,3.8460662124532643,17.218218321973847,-0.027232827311036496,0,0,1929.66039784958,0.18510965928096967,0.004446572546536724,0.0077232726,0,0,0,0 +1844,0.03984697293733208,0.45044337411603935,0,0,2.4438258963267856,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85117,0,457.00000254313153,4263.3094,803.6190745035806,40.04426499219912,283.60899861653644,392.7074417140548,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198210772127e-6,4.2169694e-6,0,0,0,0,2.0315246122966832e-4,3.4929371e-4,0,0,0,0,272.64805348714185,0.3180183952626677,9.178913525794204,63.76245430030204,3.965309781326317,17.1801218980614,-0.027776729365353317,0,0,1991.4456467268888,0.1855430999305122,0.004446572546536724,0.0077232726,0,0,0,0 +1845,0.04379212851318448,0.4587302348380611,0,0,2.4713718751387326,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83257,0,457.00000254313153,4262.3319,805.665069580078,40.66967666700967,283.72499593098956,397.85005599568376,0,0,0,0,0,0,0,0,0,0,0,0,3.723083864315413e-6,4.2516813e-6,0,0,0,0,2.0569186502446732e-4,3.5320089999999995e-4,0,0,0,0,272.64005025227857,0.32402648252636523,9.30790591121511,64.68556723249593,3.957876345089828,17.599363300735142,-0.02832063141967013,0,0,2080.3810922503694,0.18568870533529727,0.004446572546536724,0.0077232726,0,0,0,0 +1846,0.04419737434029645,0.46716954992964915,0,0,2.4711987422790394,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82423,0,457.00000254313153,4261.8933,807.2559560139973,40.975199745155024,283.8470001220703,395.9082621735635,0,0,0,0,0,0,0,0,0,0,0,0,3.769047907553613e-6,4.2869996e-6,0,0,0,0,2.0823127124458551e-4,3.5717802e-4,0,0,0,0,272.7300465901692,0.3301480761566941,9.302498358152864,64.24405152639606,3.9495415402063423,17.39887856615626,-0.02886453347398695,0,0,2072.290434339566,0.003535562113167848,0.004446572546536724,0.0077232726,0,0,0,0 +1847,0.047464619118496226,0.4757641241121063,0,0,2.521115228079649,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82758,0,457.00000254313153,4262.0693,807.9369812011718,41.61647167525484,283.9359995524089,402.98515747487147,0,0,0,0,0,0,0,0,0,0,0,0,3.815011799209363e-6,4.3230378e-6,0,0,0,0,2.107706774647037e-4,3.6123808e-4,0,0,0,0,272.8130518595377,0.33638532054582115,9.401962018636505,65.44362075203811,4.040566100417133,17.760514190415755,-0.029408435528303762,0,0,2154.230603343035,0.05986150819062035,0.004446572546536724,0.0077232726,0,0,0,0 +1848,0.04711780719580413,0.484516813705529,0,0,2.5773717998210097,0,1.4945332000000003e-5,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.78829,0,457.00000254313153,4260.004,808.0920410156249,42.449470629613735,284.0679982503255,413.5582929452125,0,0,0,0,0,0,0,0,0,0,0,0,3.860975766656338e-6,4.3563791e-6,0,0,0,0,2.1331008247216232e-4,3.6498734e-4,0,0,0,0,272.8850479125976,0.3427404005983347,9.573238566746884,67.39824375327751,4.1550564996331225,18.30069373024327,-0.029952337582620583,0,0,2204.416735349108,0.14052998907092631,0.004446572546536724,0.0077232726,0,0,0,0 +1849,0.04885144245331925,0.49343052757807715,0,0,2.5523940889282035,0,1.1956415e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.81678,0,457.00000254313153,4261.5016,808.2150014241536,42.63396460567202,284.20699818929035,408.9399341234632,0,0,0,0,0,0,0,0,0,0,0,0,3.9069398098945385e-6,4.3940071e-6,0,0,0,0,2.1584948869228052e-4,3.6923065e-4,0,0,0,0,272.9540456136067,0.3492155424966158,9.543358834157274,66.42707154065786,4.087020956416189,18.074786269748145,-0.03055301159093652,0,0,2224.8957196823785,0.1704345774563485,0.004446572546536724,0.0077232726,0,0,0,0 +1850,0.051384895328128635,0.502508228112706,0,0,2.5711244787427185,1.2887821417469543e-6,2.2473666e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93295,0,457.00000254313153,4267.6083,808.249028523763,43.142363653343445,284.3169987996419,411.4628743194825,0,0,0,0,0,0,0,0,0,0,0,0,3.952903853132739e-6,4.4373643e-6,0,0,0,0,2.1838889491239874e-4,3.7413425e-4,0,0,0,0,273.02104695638013,0.35581301448066943,9.604162557026681,66.78304875030415,4.096904208036784,18.22682478664064,-0.03125687970329533,0,0,2275.7767113113205,0.18074597510251067,0.004446572546536724,0.0077232726,0,0,0,0 +1851,0.051562308443334225,0.4946563668475162,0,0,2.5266925893124657,1.031025730450589e-5,2.4082745e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96457,0,457.00000254313153,4269.2706,808.4141082763671,43.151913707774774,284.4510040283203,402.2448152541545,0,0,0,0,0,0,0,0,0,0,0,0,3.998867896370939e-6,4.475348e-6,0,0,0,0,2.2092829991985732e-4,3.7841858e-4,0,0,0,0,273.0940500895182,0.3637934413745739,9.478471328343609,64.9500465918497,4.010397677989623,17.726300494053056,-0.03196074781565415,0,0,2256.8151473435455,0.18431279870175096,0.004446572546536724,0.0077232726,0,0,0,0 +1852,0.05364238006818437,0.5506858688322854,0,0,2.5076341601822123,2.0667359725242324e-5,2.4179888e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98199,0,457.00000254313153,4270.1861,809.1631317138671,43.34412933408961,284.59800211588544,397.49851999155004,0,0,0,0,0,0,0,0,0,0,0,0,4.044831939609139e-6,4.5124367e-6,0,0,0,0,2.2346770613997555e-4,3.825997e-4,0,0,0,0,273.16805013020826,0.3724242241558459,9.424520247380277,63.95789986488204,3.9584516109367627,17.47926154999162,-0.03266461592801298,0,0,2277.6344054535484,0.17954033954307605,0.004446572546536724,0.0077232726,0,0,0,0 +1853,0.05595234905591053,0.5486310857453621,0,0,2.5278117426961444,3.10744549096853e-5,2.4277992e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9693,0,457.00000254313153,4269.5191,810.404057820638,43.88435962687079,284.7309977213542,400.33880414377563,0,0,0,0,0,0,0,0,0,0,0,0,4.0907959828473395e-6,4.5475315000000004e-06,0,0,0,0,2.2600711114743413e-4,3.8655105e-4,0,0,0,0,273.264050801595,0.38010970895337787,9.493187126119388,64.44555417814735,3.9683262348472685,17.65848987916477,-0.0333684840403718,0,0,2326.4206162177375,0.015887254241176648,0.004446572546536724,0.0077232726,0,0,0,0 +1854,0.06589565461208481,0.5467397743701289,0,0,2.6100485430157265,4.1513251138288375e-5,2.4405566e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9226,0,457.00000254313153,4267.0641,811.7321421305337,44.80907906406347,284.8459981282552,413.39913150953396,0,0,0,0,0,0,0,0,0,0,0,0,4.136759950294315e-6,4.5802995999999986e-6,0,0,0,0,2.2854651736755235e-4,3.9023425e-4,0,0,0,0,273.3630498250325,0.3881180379413641,9.708926054401639,66.794695219375825,4.086374133078645,18.340431326430615,-0.034072352152730634,0,0,2535.1581947111176,-0.014112611956298624,0.004446572546536724,0.0077232726,0,0,0,0 +1855,0.0665605946226626,0.543758286864958,0,0,2.593264313364505,5.2002859774802346e-5,2.4547759e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95064,0,457.00000254313153,4268.5385,813.332036336263,44.957053896332596,284.9409993489583,408.11045388038974,0,0,0,0,0,0,0,0,0,0,0,0,4.182723614576389e-6,4.6181251e-6,0,0,0,0,2.3108592358767055e-4,3.945003e-4,0,0,0,0,273.4700495402018,0.39515493127386314,9.608218449939441,65.65156397841133,4.071657215875477,17.99164859504197,-0.03477622026508945,0,0,2531.882070736542,0.11294859461260336,0.004446572546536724,0.0077232726,0,0,0,0 +1856,0.07119571676282484,0.5497252657327152,0,0,2.5734300072332923,6.254957406781614e-5,2.4704559e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92886,0,457.00000254313153,4267.3934,814.7961222330728,45.32147323346321,285.04899342854816,404.85491673017987,0,0,0,0,0,0,0,0,0,0,0,0,4.228687657814589e-6,4.652537400000002e-6,0,0,0,0,2.3362532859512916e-4,3.98373e-4,0,0,0,0,273.5780461629231,0.40121361649916243,9.648967407833753,65.04253470413643,3.941501863088442,17.954118052235966,-0.03548008837744827,0,0,2598.3233502208395,0.12225561148477546,0.004446572546536724,0.0077232726,0,0,0,0 +1857,0.0718939473501754,0.55506091263013,0,0,2.636452577483439,7.315969560295343e-5,2.487597e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94976,0,457.00000254313153,4268.4922,816.4521179199218,46.01300693840024,285.20399983723956,414.6731918454804,0,0,0,0,0,0,0,0,0,0,0,0,4.2746517010527896e-06,4.6899086e-6,0,0,0,0,2.3616473481524736e-4,4.025867e-4,0,0,0,0,273.67504882812494,0.4075261897409684,9.717987448936368,66.72779876959439,4.1591410074143615,18.291565645975457,-0.03618395648980709,0,0,2646.996287168382,-0.044823331390134384,0.004446572546536724,0.0077232726,0,0,0,0 +1858,0.0730281599923091,0.5597369099004649,0,0,2.660122641883427,8.383950868543859e-5,2.5062e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93987,0,457.00000254313153,4267.9722,818.3551279703775,46.54057728835799,285.3690007527669,419.01402360882946,0,0,0,0,0,0,0,0,0,0,0,0,4.32061574429099e-6,4.7251299e-6,0,0,0,0,2.3870414103536555e-4,4.0655264e-4,0,0,0,0,273.7560501098632,0.41251745553966174,9.773872716558104,67.47060376347301,4.240872484906792,18.47927629769415,-0.03688782460216592,0,0,2684.853418420537,0.08628782582640311,0.004446572546536724,0.0077232726,0,0,0,0 +1859,0.07785211331835136,0.5673853687525405,0,0,2.6482032498787995,9.459531490089527e-5,2.5262647e-4,0.025000428936133783,0.024856862,34.05000019073486,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91443,0,457.00000254313153,4266.635,820.3960774739583,46.94962615479032,285.5449956258138,416.29974849312515,0,0,0,0,0,0,0,0,0,0,0,0,4.36657978752919e-6,4.7592242000000015e-6,0,0,0,0,2.4124354483016455e-4,4.1038866e-4,0,0,0,0,273.89505004882807,0.41699740802681257,9.815633788495665,66.95694733909333,4.119710728903347,18.449505984059194,-0.03759169271452474,0,0,2765.3515040429447,0.1535034293269437,0.004446572546536724,0.0077232726,0,0,0,0 +1860,0.08580578973181537,0.57190571026195,0,0,2.6484047305257548,1.0543340310202136e-4,2.5477918999999995e-4,0.025000428936133783,0.024856862,34.04999955495199,0.010810676000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89112,0,457.00000254313153,4265.4096,822.3121185302733,47.37614022716783,285.73899332682294,416.0639965860974,0,0,0,0,0,0,0,0,0,0,0,0,4.41254383076739e-6,4.7934342e-6,0,0,0,0,2.4378295105028278e-4,4.1423802e-4,0,0,0,0,274.05604807535804,0.42075257795117216,9.868462594270229,66.84953492841794,4.0609762626653305,18.52046800322501,-0.03829556082688356,0,0,2898.3777844170777,0.17676937373971446,0.004446572546536724,0.0077232726,0,0,0,0 +1861,0.09043757175448788,0.5830953457170218,0,0,2.670268662609388,1.1636007608710013e-4,2.5707803e-4,0.025000428936133783,0.024856862,34.04999987284342,0.010810691,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94268,0,457.00000254313153,4268.1198,824.399190266927,48.23468669993056,285.9330012003581,417.24413721688705,0,0,0,0,0,0,0,0,0,0,0,0,4.4585078740055906e-6,4.8330788e-6,0,0,0,0,2.463223596957202e-4,4.1871377e-4,0,0,0,0,274.2400461832682,0.42335986018473476,9.85713564571437,66.88575551122409,4.161212988464047,18.437119828737263,-0.03899942893924239,0,0,2971.2788427875175,0.11623622338672868,0.004446572546536724,0.0077232726,0,0,0,0 +1862,0.09186559088261632,0.5229565631081879,0,0,2.648564983127743,1.2738162210249962e-4,2.5952295e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93302,0,457.00000254313153,4267.612,827.0292002360025,49.13056211810905,286.1000010172526,414.16280656087633,0,0,0,0,0,0,0,0,0,0,0,0,4.504471917243791e-6,4.8682827e-6,0,0,0,0,2.488617634905192e-4,4.2267767e-4,0,0,0,0,274.4160486857096,0.4259683950031353,9.918881972367876,66.358960161654025,4.0424493589722115,18.41589320519377,-0.0397032970516012,0,0,2976.388043494933,-0.6237998311805185,0.004446572546536724,0.0077232726,0,0,0,0 +1863,0.09748855439032131,0.523134296634959,0,0,2.6292695144324947,1.3850433606421575e-4,2.6211454e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9509,0,457.00000254313153,4268.552,830.1662139892577,49.710222528727996,286.271001180013,408.1224194075052,0,0,0,0,0,0,0,0,0,0,0,0,4.550435960481991e-6,4.9055252e-6,0,0,0,0,2.5140116971063736e-4,4.2687657e-4,0,0,0,0,274.57104492187494,0.4284326826015117,9.86866585386286,65.00963540040021,3.9715193557400945,18.09141100618794,-0.04040716516396003,0,0,3064.446906560989,-0.2585729087354761,0.004446572546536724,0.0077232726,0,0,0,0 +1864,0.10472513857630868,0.5234813827246285,0,0,2.667755633655596,1.4973450258063772e-4,2.6485186e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94467,0,457.00000254313153,4268.2247,833.6041412353514,50.66032472624755,286.44200134277344,411.3310642864957,0,0,0,0,0,0,0,0,0,0,0,0,4.5963999279289664e-6,4.9409793e-6,0,0,0,0,2.539405759307556e-4,4.308693e-4,0,0,0,0,274.72005208333326,0.431014195621195,9.887134077064891,65.39906664161046,4.087458726366705,18.093817300572518,-0.041111033276318855,0,0,3193.218258651068,0.037999846461008915,0.004446572546536724,0.0077232726,0,0,0,0 +1865,0.11093631924882667,0.5242503840770768,0,0,2.720201066299487,1.6107846022350714e-4,2.6773567000000004e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010810706000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93017,0,457.00000254313153,4267.4623,836.8942057291665,51.98007509857536,286.6139958699544,420.4890049801762,0,0,0,0,0,0,0,0,0,0,0,0,4.642363592211041e-6,4.9757947000000005e-6,0,0,0,0,2.564799797255546e-4,4.3478845e-4,0,0,0,0,274.8800430297851,0.43343877181201473,10.07353477775766,67.10347351160692,4.157661467348705,18.66656837953943,-0.04181490138867768,0,0,3327.080175680617,0.1429288681419851,0.004446572546536724,0.0077232726,0,0,0,0 +1866,0.11473850842802115,0.5243863634262115,0,0,2.7102983366424596,1.7254241417200925e-4,2.707659e-4,0.025000428936133783,0.024856862,34.050100008646645,0.01081072,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92398,0,457.00000254313153,4267.1368,840.3622080485025,52.74699292831513,286.78099822998047,417.1011849314015,0,0,0,0,0,0,0,0,0,0,0,0,4.688327635449241e-6,5.0112266e-6,0,0,0,0,2.590193835203536e-4,4.387786599999999e-4,0,0,0,0,275.0480473836262,0.4357447764915154,10.064549123367675,66.37528156013664,4.133671177718162,18.394680194366018,-0.042518769501036495,0,0,3388.2580778414886,0.1744104739671799,0.004446572546536724,0.0077232726,0,0,0,0 +1867,0.12258204012181728,0.5228764549771724,0,0,2.761022670595916,1.8413277454480217e-4,2.7394196e-4,0.025000428936133783,0.024856862,34.05020046234131,0.010070544,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93094,0,457.00000254313153,4267.5026,843.995122273763,53.9410217812425,286.9550018310547,424.2969752987472,0,0,0,0,0,0,0,0,0,0,0,0,4.734291678687441e-6,5.0476689e-6,0,0,0,0,2.615587945911102e-4,4.428853e-4,0,0,0,0,275.21304829915357,0.43821064879605803,10.189133101169272,67.66026448741948,4.231180960949066,18.768356166586962,-0.04322263761339532,0,0,3565.4355350198875,0.18466917521307166,0.004446572546536724,0.0077232726,0,0,0,0 +1868,0.12560944174010713,0.5214153984123745,0,0,2.825140562350265,1.9585573196915598e-4,2.7726501e-4,0.025000428936133783,0.024856862,34.05019982655843,0.010072023,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89186,0,457.00000254313153,4265.4483,847.2491251627603,55.287673564162375,287.10500081380206,434.93022825982507,0,0,0,0,0,0,0,0,0,0,0,0,4.780255721925641e-6,5.0805177e-6,0,0,0,0,2.640981983859092e-4,4.465778e-4,0,0,0,0,275.39104461669916,0.44143425556535276,10.372200923081559,69.64729381366908,4.3633047348631795,19.301247569591883,-0.043926505725754135,0,0,3668.308732016809,0.188148666241629,0.004446572546536724,0.0077232726,0,0,0,0 +1869,0.13329152205114916,0.5197708976584334,0,0,2.7850043169774756,2.0771763714340827e-4,2.8073396e-4,0.025000428936133783,0.024856862,34.05020014444987,0.010810735,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93014,0,457.00000254313153,4267.4609,850.1300862630208,55.83359728305401,287.2249984741211,426.4036167290826,0,0,0,0,0,0,0,0,0,0,0,0,4.826219765163842e-6,5.1194221e-6,0,0,0,0,2.666376021807082e-4,4.5096821e-4,0,0,0,0,275.5610478719075,0.44390826602791195,10.311061269202527,67.9294955911712,4.245329954023304,18.888825035193033,-0.04497175592064998,0,0,3791.4627445920805,0.1894123650346563,0.004446572546536724,0.0077232726,0,0,0,0 +1870,0.13667438365279438,0.5186718603074794,0,0,2.831200782445544,2.197247971101509e-4,2.8434934e-4,0.025000428936133783,0.024856862,34.05020014444987,0.01081075,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89317,0,457.00000254313153,4265.5174,852.4350077311196,56.996592307003596,287.3549982706706,433.2287624497814,0,0,0,0,0,0,0,0,0,0,0,0,4.872183808402042e-6,5.152380400000002e-6,0,0,0,0,2.691770132514648e-4,4.5467331e-4,0,0,0,0,275.7200444539387,0.4466399609979402,10.441023971231417,69.12187693609928,4.323468650206145,19.258120747383764,-0.046232618783436236,0,0,3887.5293351931314,0.189950840385198,0.004446572546536724,0.0077232726,0,0,0,0 +1871,0.1452491611173251,0.5388152153139819,0,0,2.7978303472693873,2.31883451003038e-4,2.8811122e-4,0.025000428936133783,0.024856862,34.050299326578774,0.010071314,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92871,0,457.00000254313153,4267.3856,853.9930725097655,57.57401422057298,287.4940007527669,425.1606513202936,0,0,0,0,0,0,0,0,0,0,0,0,4.918147851640242e-6,5.1911213e-6,0,0,0,0,2.717164146209446e-4,4.590449e-4,0,0,0,0,275.9030456542968,0.45433593382870696,10.369497697943174,67.42862357960736,4.269404036940666,18.76177376623424,-0.047493481646222496,0,0,4016.0322788183066,0.19025039687154105,0.004446572546536724,0.0077232726,0,0,0,0 +1872,0.16034651313527334,0.6242378015462033,0,0,2.771292693837977,2.4419995800902444e-4,2.9201899e-4,0.025000428936133783,0.024856862,34.050299962361656,0.010810765,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95075,0,457.00000254313153,4268.5441,855.2329915364583,58.18710545429253,287.66399637858075,417.7442733570141,0,0,0,0,0,0,0,0,0,0,0,0,4.964111894878442e-6,5.228817700000002e-6,0,0,0,0,2.742558184157436e-4,4.6329615e-4,0,0,0,0,276.07804361979163,0.4708626218532089,10.330384237922804,65.84553711122807,4.17870981733127,18.365341648996967,-0.048754344509008736,0,0,4250.256915543303,0.18883431574024787,0.004446572546536724,0.0077232726,0,0,0,0 +1873,0.17009548212988732,0.635197775727867,0,0,2.8416338477805057,2.566805657503816e-4,2.9607326e-4,0.025000428936133783,0.024856862,34.050299962361656,0.01081078,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93223,0,457.00000254313153,4267.5705,856.1681976318358,59.62016165313301,287.86000061035156,429.28028904113773,0,0,0,0,0,0,0,0,0,0,0,0,5.010075938116643e-6,5.2632224000000015e-6,0,0,0,0,2.7679522706118104e-4,4.6716788e-4,0,0,0,0,276.25004831949866,0.4938942498998885,10.56453511561426,67.99437045089431,4.309987323977962,18.937298904886617,-0.050015207371795004,0,0,4473.449627744114,-0.0158300305583035,0.004446572546536724,0.0077232726,0,0,0,0 +1874,0.16101264250188482,0.6424589219115043,0,0,2.8680589101535006,2.693315764190629e-4,3.0027407000000005e-4,0.025000428936133783,0.024856862,34.05039978027344,0.010810794,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88493,0,457.00000254313153,4265.0843,857.8200785319009,60.88850035180588,288.0609995524089,435.8041800080444,0,0,0,0,0,0,0,0,0,0,0,0,5.05603994345923e-6,5.295217800000002e-6,0,0,0,0,2.793346332812992e-4,4.7076201e-4,0,0,0,0,276.4160537719726,0.5217358117405276,10.751611012739497,69.34908007240699,4.369596917606238,19.304810723709583,-0.051276070234581236,0,0,4382.176552473297,0.10137566545666454,0.004446572546536724,0.0077232726,0,0,0,0 +1875,0.17325906778674766,0.6503215087418923,0,0,2.8334891051221005,2.821592812930855e-4,3.046214e-4,0.025000428936133783,0.024856862,34.05040009816488,0.010810809,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5065,859.4690653483071,61.447170295790954,288.29100290934247,426.89349545310597,0,0,0,0,0,0,0,0,0,0,0,0,5.102003569845692e-6,5.3349387000000006e-6,0,0,0,0,2.818740370760982e-4,4.7524653e-4,0,0,0,0,276.5850474039713,0.5521636138855727,10.663545228962466,67.4820885998621,4.311546235769538,18.753876090158617,-0.0525369330973675,0,0,4552.510356024947,0.11898633163405398,0.004446572546536724,0.0077232726,0,0,0,0 +1876,0.17593823238514505,0.6580403904252425,0,0,2.8431252665224327,2.9516999347833917e-4,3.0911468e-4,0.025000428936133783,0.024856862,34.05049991607666,0.010810823999999998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90175,0,457.00000254313153,4265.968,860.8591054280598,62.60294810766919,288.5199966430664,429.4805477313967,0,0,0,0,0,0,0,0,0,0,0,0,5.1479676130838925e-6,5.3683812e-6,0,0,0,0,2.8441344572153565e-4,4.790074400000001e-4,0,0,0,0,276.7350514729817,0.5828831599457934,10.831893028061607,68.07266489194261,4.273649915248981,19.002140660093694,-0.053797795960153764,0,0,4640.322706228576,0.13010732358702753,0.004446572546536724,0.0077232726,0,0,0,0 +1877,0.17982534828505667,0.6646940864903487,0,0,2.881579172917859,3.083699945515643e-4,3.1375456e-4,0.025000428936133783,0.024856862,34.050500551859535,0.010810839,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92824,0,457.00000254313153,4267.3608,862.3791147867837,63.64524258623489,288.7520014444987,434.0603459961696,0,0,0,0,0,0,0,0,0,0,0,0,5.193931656322093e-6,5.406519099999998e-6,0,0,0,0,2.869528519416538e-4,4.833095099999999e-4,0,0,0,0,276.86404927571607,0.6122267058453676,10.897021601068372,68.7783807279057,4.413505723589701,19.089059096309025,-0.05504429988349307,0,0,4762.60475525006,0.1696072468545434,0.004446572546536724,0.0077232726,0,0,0,0 +1878,0.18077698311132545,0.6715857617280921,0,0,2.905036494302108,3.2176555153758574e-4,3.1854156e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810853,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92472,0,457.00000254313153,4267.1759,864.1391499837239,64.71120382869425,288.9930013020833,437.9599497693981,0,0,0,0,0,0,0,0,0,0,0,0,5.239895699560293e-6,5.4421234e-6,0,0,0,0,2.8949225331113365e-4,4.8731959e-4,0,0,0,0,277.0020446777343,0.637718423578712,10.998945344161125,69.46979574102357,4.5031308409529425,19.22817130569276,-0.056156826594968116,0,0,4806.3164952803945,0.1844107426763875,0.004446572546536724,0.0077232726,0,0,0,0 +1879,0.1931754383145236,0.6786152944896107,0,0,2.9292586401809286,3.3536301149676245e-4,3.234746e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810868,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88028,0,457.00000254313153,4264.8396,866.2831624348958,65.90279841258594,289.2210006713867,440.8517590737373,0,0,0,0,0,0,0,0,0,0,0,0,5.285859742798493e-6,5.474183400000002e-6,0,0,0,0,2.920316595312518e-4,4.9092116e-4,0,0,0,0,277.1330490112304,0.6589267771109586,11.181505690638433,70.08572001647862,4.44715839638976,19.487315389320713,-0.05726935330644314,0,0,5054.634872921024,0.18865930412898813,0.004446572546536724,0.0077232726,0,0,0,0 +1880,0.2193400047887077,0.6848574235612915,0,0,2.921172062464678,3.4916867055774975e-4,3.2855365e-4,0.025000428936133783,0.024856862,34.05069955190023,0.010810144,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88174,0,457.00000254313153,4264.9162,868.6961059570311,66.66498430210106,289.4699986775716,437.365727538686,0,0,0,0,0,0,0,0,0,0,0,0,5.3318237860366935e-6,5.5101807e-6,0,0,0,0,2.9457106817668927e-4,4.9497652e-4,0,0,0,0,277.26505025227857,0.6727777764677255,11.210570347061365,69.18788119083449,4.386751757292326,19.32682128004249,-0.05838188001791818,0,0,5476.691840909654,0.15238702978073307,0.004446572546536724,0.0077232726,0,0,0,0 +1881,0.2252231799496281,0.7226262033549594,0,0,2.9628772256083247,3.6318877634281915e-4,3.3377873e-4,0.025000428936133783,0.024856862,34.05069955190023,0.011551088,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92914,0,457.00000254313153,4267.4079,870.9841257731118,67.70670094788971,289.7369969685872,440.9737248225101,0,0,0,0,0,0,0,0,0,0,0,0,5.377787829274894e-6,5.5502216e-6,0,0,0,0,2.9711047197148827e-4,4.9949792e-4,0,0,0,0,277.37404123942054,0.6806367037591056,11.274748464221961,69.70896888997471,4.531822010702024,19.327166243417963,-0.059494406729393226,0,0,5655.562652963553,0.14804251864424234,0.004446572546536724,0.0077232726,0,0,0,0 +1882,0.23694899687620047,0.6743786080130141,0,0,2.9443458510058322,3.774296346819028e-4,3.3915105e-4,0.025000428936133783,0.024856862,34.05080000559489,0.011550379,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92759,0,457.00000254313153,4267.3266,873.2501373291014,68.57787523920716,290.0190022786458,436.0786301154982,0,0,0,0,0,0,0,0,0,0,0,0,5.423751872513094e-6,5.585991e-6,0,0,0,0,2.9964987819160643e-4,5.035270200000001e-4,0,0,0,0,277.4860509236653,0.6892556813322581,11.343220962302505,68.75016748711803,4.409841205149023,19.158162285322444,-0.06060693344086825,0,0,5878.580768497191,0.1874362016564929,0.004446572546536724,0.0077232726,0,0,0,0 +1883,0.25089467695775003,0.6814540279475114,0,0,2.918084088079926,3.918974956225914e-4,3.4467464999999995e-4,0.025000428936133783,0.024856862,34.05090045928955,0.010810957,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95902,0,457.00000254313153,4268.979,875.6031494140624,69.18597910133236,290.26300048828125,428.22120343049505,0,0,0,0,0,0,0,0,0,0,0,0,5.469715915751294e-6,5.6247084000000005e-6,0,0,0,0,3.021892868370439e-4,5.0789587e-4,0,0,0,0,277.5910491943359,0.6958725524070566,11.301072778092927,67.06254475755776,4.3447075949809335,18.709361365312684,-0.06171946015234329,0,0,6136.7508152909495,-0.3245940535795368,0.004446572546536724,0.0077232726,0,0,0,0 +1884,0.2528499020827967,0.6846835417141454,0,0,2.9781587398376455,4.065987474556702e-4,3.503391000000001e-4,0.025000428936133783,0.024856862,34.05100059509277,0.010810972,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93535,0,457.00000254313153,4267.7345,878.1482035319009,70.48060514662333,290.5119984944661,436.5183491794865,0,0,0,0,0,0,0,0,0,0,0,0,5.515679921093882e-6,5.6585019e-6,0,0,0,0,3.047286906318429e-4,5.1169724e-4,0,0,0,0,277.69505055745435,0.7016904496772703,11.463778568830996,68.59402326244992,4.507763748192013,19.009889976177178,-0.06283198686381833,0,0,6243.347604744989,-1.8150618607595548,0.004446572546536724,0.0077232726,0,0,0,0 +1885,0.25444299147687327,0.6908637814371342,0,0,2.987658653242268,4.215400040266104e-4,3.5614909e-4,0.025000428936133783,0.024856862,34.05099964141846,0.011550438,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93798,0,457.00000254313153,4267.8727,881.0251312255858,71.60546241341835,290.7969970703125,438.1415385380004,0,0,0,0,0,0,0,0,0,0,0,0,5.561643547480344e-6,5.6946520999999985e-6,0,0,0,0,3.0726809200132266e-4,5.1577023e-4,0,0,0,0,277.79504903157545,0.7078908709316327,11.603153567015962,68.94977818435397,4.492846370676968,19.20686906057728,-0.06394451357529336,0,0,6294.938313202323,-0.6420197136906102,0.004446572546536724,0.0077232726,0,0,0,0 +1886,0.25832612706643443,0.6919349119161695,0,0,3.0001483762763606,4.3672676110873e-4,3.621046e-4,0.025000428936133783,0.024856862,34.05110009511312,0.011550467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9357,0,457.00000254313153,4267.7531,883.8392181396483,72.58254388217381,291.09999593098956,437.73332685492454,0,0,0,0,0,0,0,0,0,0,0,0,5.607607590718544e-6,5.7303567999999985e-6,0,0,0,0,3.0980750307207927e-4,5.1979186e-4,0,0,0,0,277.8850479125976,0.7126327786706089,11.675797474801131,68.86926284379062,4.534738954197774,19.067819582095456,-0.06519373004483152,0,0,6353.02729378205,-0.0852453820278208,0.004446572546536724,0.0077232726,0,0,0,0 +1887,0.27097332569304644,0.6918854634202647,0,0,3.0445900747103636,4.521660230238922e-4,3.6821147e-4,0.025000428936133783,0.024856862,34.05120054880778,0.011550497,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94903,0,457.00000254313153,4268.4538,886.933135986328,73.77743063310328,291.4139989217122,443.10773813765155,0,0,0,0,0,0,0,0,0,0,0,0,5.653571633956744e-6,5.7675003e-6,0,0,0,0,3.1234690686687827e-4,5.2397934e-4,0,0,0,0,277.99504597981763,0.7182166601192096,11.825655230740924,69.79403942185417,4.618994873829845,19.328453638145426,-0.06654164466411291,0,0,6605.766964967214,-0.025019474885791315,0.004446572546536724,0.0077232726,0,0,0,0 +1888,0.2990240690559838,0.6915397836551626,0,0,3.1234840519185503,4.6786327826945734e-4,3.7446389e-4,0.025000428936133783,0.024856862,34.051300366719566,0.011550526,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91459,0,457.00000254313153,4266.6433,889.9262135823567,75.11035553057255,291.76300048828125,452.50230797053916,0,0,0,0,0,0,0,0,0,0,0,0,5.699535677194945e-6,5.8002124e-6,0,0,0,0,3.1488631066167727e-4,5.2765607e-4,0,0,0,0,278.08005015055335,0.724224234516275,12.041623292379388,71.4272374400245,4.7418969174520385,19.785746426186453,-0.06788955928339427,0,0,7182.264808724919,0.13500730253153945,0.004446572546536724,0.0077232726,0,0,0,0 +1889,0.2993958898436063,0.6910492076322109,0,0,3.104668337723354,4.838260307830448e-4,3.8086186e-4,0.025000428936133783,0.024856862,34.05139986673991,0.011550556000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95877,0,457.00000254313153,4268.9657,893.1561584472655,75.9296001940716,292.1130015055339,448.69086963270234,0,0,0,0,0,0,0,0,0,0,0,0,5.745499720433145e-6,5.840258e-6,0,0,0,0,3.174257217324339e-4,5.3217801e-4,0,0,0,0,278.191047668457,0.730764111829077,12.075327913087893,70.65718771639492,4.727164288354711,19.55277705492912,-0.06923747390267565,0,0,7178.592239188243,0.1858189092422608,0.004446572546536724,0.0077232726,0,0,0,0 +1890,0.32528597028265194,0.6877629398180971,0,0,3.159194948993984,5.000592888488123e-4,3.8741134e-4,0.025000428936133783,0.024856862,34.05150000254313,0.011550586000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9317,0,457.00000254313153,4267.5425,896.3831837972004,77.07862319106741,292.45799763997394,453.89903232867,0,0,0,0,0,0,0,0,0,0,0,0,5.791463763671345e-6,5.8736235e-6,0,0,0,0,3.199651255272329e-4,5.359300400000001e-4,0,0,0,0,278.2730509440104,0.7556615541830685,12.221880708940976,71.47659716602703,4.8079166884923445,19.778064862780106,-0.07058538852195702,0,0,7728.431301023277,0.07030158718899164,0.004446572546536724,0.0077232726,0,0,0,0 +1891,0.34045390881796567,0.6844114067588241,0,0,3.125180696005549,5.165705564043795e-4,3.9410043e-4,0.025000428936133783,0.024856862,34.051600774129234,0.011550615,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97344,0,457.00000254313153,4269.7366,899.666264851888,77.68229292407419,292.8159993489583,444.382731801162,0,0,0,0,0,0,0,0,0,0,0,0,5.837427806909545e-6,5.9135147000000014e-06,0,0,0,0,3.225045293220319e-4,5.4043419e-4,0,0,0,0,278.34705098470045,0.7669960073050373,12.159640198474342,69.53172190504567,4.743306066350147,19.199673026982396,-0.0719333031412384,0,0,8025.900172756182,-0.1023137574833239,0.004446572546536724,0.0077232726,0,0,0,0 +1892,0.3429460922092071,0.698931319975308,0,0,3.1105283647598623,5.333653001192337e-4,4.0093536e-4,0.025000428936133783,0.024856862,34.05169995625814,0.011550645,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99082,0,457.00000254313153,4270.6504,903.534194946289,78.54558088981553,293.16699981689453,439.8086590465999,0,0,0,0,0,0,0,0,0,0,0,0,5.8833918501477456e-6,5.951126000000002e-6,0,0,0,0,3.250439355421501e-4,5.446755599999999e-4,0,0,0,0,278.44204457600904,0.77827246793364,12.199146519671457,68.66391958974123,4.69568230481039,18.949521757077395,-0.07328121776051978,0,0,8166.143155148587,0.07763085595364166,0.004446572546536724,0.0077232726,0,0,0,0 +1893,0.3378703897546753,0.6997131247828723,0,0,3.1254308946941567,5.504500586539507e-4,4.079215e-4,0.025000428936133783,0.024856862,34.05179977416992,0.012290126,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97993999999998,0,457.00000254313153,4270.0783,907.2741190592446,79.81501328862245,293.4769999186198,443.3506557921903,0,0,0,0,0,0,0,0,0,0,0,0,5.929355893385946e-6,5.986023799999998e-6,0,0,0,0,3.275833417622683e-4,5.4860421e-4,0,0,0,0,278.55404917399085,0.7897298228538592,12.379453862745622,69.48705801909811,4.715239732570137,19.178456201207396,-0.07462913237980115,0,0,8120.644734612286,0.1864156024276895,0.004446572546536724,0.0077232726,0,0,0,0 +1894,0.35112450392061667,0.7155813956083555,0,0,3.205110617860807,5.678308225469664e-4,4.1505353e-4,0.025000428936133783,0.024856862,34.051900227864586,0.01229017,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5063,910.4781341552733,81.38345626276687,293.7909978230794,456.69603250902094,0,0,0,0,0,0,0,0,0,0,0,0,5.975319936624146e-6,6.017190099999998e-6,0,0,0,0,3.301227455570673e-4,5.5210279e-4,0,0,0,0,278.6890487670898,0.8020046367832572,12.66238559332695,71.90804380664727,4.8889485381651845,19.8361284777738,-0.07597704699908253,0,0,8411.388473243653,0.19284299907478186,0.004446572546536724,0.0077232726,0,0,0,0 +1895,0.37171203675260484,0.7209450963563064,0,0,3.216163844950097,5.855145864188671e-4,4.2233098e-4,0.025000428936133783,0.024856862,34.05209986368815,0.011550763,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4251,913.2259826660155,82.23116014335764,294.0789972941081,453.5518850499526,0,0,0,0,0,0,0,0,0,0,0,0,6.0212835251149954e-6,6.056690099999998e-6,0,0,0,0,3.326621542025047e-4,5.5656184e-4,0,0,0,0,278.83104960123694,0.8128876331059834,12.672444225617587,71.15178658195539,4.91917125426521,19.522500482390267,-0.07728033747142447,0,0,8846.667009900264,0.1930910447676056,0.004446572546536724,0.0077232726,0,0,0,0 +1896,0.38367481768429307,0.7234407884813598,0,0,3.170768746502162,6.03506836341694e-4,4.2976003e-4,0.025000428936133783,0.024856862,34.05219968159994,0.012290244,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4252,914.7710927327473,83.00005426186281,294.36499786376953,444.0944277814877,0,0,0,0,0,0,0,0,0,0,0,0,6.067247568353196e-6,6.0926241e-6,0,0,0,0,3.352015604226229e-4,5.606100700000001e-4,0,0,0,0,278.9390513102213,0.824102858385605,12.720593693458584,69.42267705803128,4.733994615392683,19.177287716924887,-0.07856237646782513,0,0,9089.59843267371,0.19318346141929987,0.004446572546536724,0.0077232726,0,0,0,0 +1897,0.4019811637589425,0.725878270524141,0,0,3.2687021119074915,6.218145863385871e-4,4.373290900000001e-4,0.025000428936133783,0.024856862,34.052300453186035,0.012290288,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99693,0,457.00000254313153,4270.9718,916.2742818196614,84.39253635318506,294.64599863688153,456.4122054736632,0,0,0,0,0,0,0,0,0,0,0,0,6.113211611591396e-6,6.1314997000000015e-6,0,0,0,0,3.377409642174219e-4,5.6499701e-4,0,0,0,0,279.051045735677,0.8346371271895597,12.890217099416494,71.54673250412924,5.026760132357157,19.58218287923395,-0.07984441546422576,0,0,9520.393854224154,0.19322441190367687,0.004446572546536724,0.0077232726,0,0,0,0 +1898,0.4233042102069517,0.728376569617105,0,0,3.2968702587691077,6.404438560518125e-4,4.4504943e-4,0.025000428936133783,0.02485618,34.052499771118164,0.012290333,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01512,0,457.00000254313153,4271.9281,919.0172271728514,85.36127162189973,294.95399983723956,456.6037673563168,0,0,0,0,0,0,0,0,0,0,0,0,6.159175654829596e-6,6.1692876e-6,0,0,0,0,3.402803704375401e-4,5.692587400000001e-4,0,0,0,0,279.1630477905273,0.8443053161523663,12.959068227762758,71.45665951589594,5.0980295350528255,19.501681112942983,-0.0811264544606264,0,0,10010.09583228873,0.19324438193560026,0.004446572546536724,0.0077232356,0,0,0,0 +1899,0.46331719155147416,0.7285561578617307,0,0,3.35583134512378,6.594006069159756e-4,4.856732599999999e-4,0.025000428936133783,0.024857703,34.05260022481283,0.012290377,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97653,0,457.00000254313153,4269.8993,922.2811838785806,86.70543386559314,295.2999979654948,462.1035993919434,0,0,0,0,0,0,0,0,0,0,0,0,6.205139698067796e-6,6.2013454e-6,0,0,0,0,3.4281977665765834e-4,5.7286006e-4,0,0,0,0,279.3080469767252,0.8537833662798698,13.20706844128895,72.46072255843502,5.09497938372201,19.868709929010027,-0.08240849345702704,0,0,10838.113453916734,0.1932520396033143,0.004446572546536724,0.0077232334,0,0,0,0 +1900,0.4881558617748878,0.7305723603784592,0,0,3.3618210367956025,6.786918675061315e-4,0.0023926675,0.025000376626849174,0.024856437,34.052798906962074,0.028558348,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98481,0,457.00000254313153,4270.3344,925.5521138509114,87.61328845020651,295.6749954223633,459.5444668504325,0,0,0,0,0,0,0,0,0,0,0,0,6.251103741305997e-6,6.2381326e-6,0,0,0,0,3.4535918045245734e-4,5.770064599999999e-4,0,0,0,0,279.4540481567382,0.8631696543463733,13.276669554810011,71.90656631461616,5.089168388032589,19.750787925178965,-0.08385968995663869,0,0,11348.727499729994,0.19324967713848945,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1901,0.5044857194846931,0.7969063127701378,0,0,3.3829529353801377,7.011479125746215e-4,0.0048200969,0.025000494594375294,0.024857442,34.05289999643961,0.047784449000000014,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04131,0,457.00000254313153,4273.3046,928.800333658854,88.39116711070807,296.0069986979167,457.6168305058551,0,0,0,0,0,0,0,0,0,0,0,0,6.297067784544197e-6,6.2798935e-6,0,0,0,0,3.478985866725755e-4,5.817261e-4,0,0,0,0,279.613047281901,0.8714059588722426,13.301409901434221,71.63263161162581,5.20214413763188,19.48762216724768,-0.08579737819029178,0,0,11775.255202668699,0.1931616844954455,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1902,0.5193451170981727,0.800278636367018,0,0,3.3815414695884436,8.848810005777826e-4,0.0057781223,0.025000344030559063,0.024856062,34.055300076802574,0.050743008,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04898,0,457.00000254313153,4273.708,932.7311604817708,89.26282464192792,296.3249994913737,455.02617682462983,0,0,0,0,0,0,0,0,0,0,0,0,6.343031827782397e-6,6.316678900000002e-6,0,0,0,0,3.5043799531801295e-4,5.858722900000001e-4,0,0,0,0,279.8610509236653,0.8812154472523583,13.412488026584588,71.24149846316587,5.179688036784444,19.35806149893677,-0.08773506642394488,0,0,12100.548766402842,0.09059743996435048,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1903,0.5664546211178523,0.8295711459044773,0,0,3.389386332354358,0.001116641176243623,0.0069576127,0.025000539453079302,0.024857979,34.05799961090088,0.05591998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09555,0,457.00000254313153,4276.1561,936.7834269205728,89.89074056747505,296.65399678548175,449.9625304110428,0,0,0,0,0,0,0,0,0,0,0,0,6.388995871020597e-6,6.3575352999999986e-6,0,0,0,0,3.5297739911281195e-4,5.9048768e-4,0,0,0,0,280.15604146321607,0.890660734283567,13.437520518020643,70.25376393283156,5.1901034578968455,19.030597877588104,-0.08967275465759794,0,0,13044.158155518342,-0.7087274740337839,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1904,0.5751521325099065,0.856100074253587,0,0,3.4640582999698033,0.0013829462016777445,0.0094363385,0.02500028194238742,0.024855289,34.06080023447672,0.068491568,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07939,0,457.00000254313153,4275.3063,942.1142679850259,91.35674942842638,296.95399475097656,462.6217650299278,0,0,0,0,0,0,0,0,0,0,0,0,6.434959914258798e-6,6.3918668e-6,0,0,0,0,3.555168053329301e-4,5.9435105e-4,0,0,0,0,280.43204243977857,0.900998671506556,13.731471700844033,72.88437625246438,5.400226562773813,19.656119727265345,-0.09161044289125103,0,0,13274.437189098227,-0.26430883974577096,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1905,0.6122962467973883,0.8830904178747726,0,0,3.525334738078169,0.0017163676869434614,0.013412831000000002,0.02500062497953574,0.024859105,34.06420008341471,0.087718467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08907,0,457.00000254313153,4275.8152,947.4432729085286,92.40132432209919,297.28899637858075,467.44012883738543,0,0,0,0,0,0,0,0,0,0,0,0,6.480923502749647e-6,6.4289102e-6,0,0,0,0,3.5805621155304834e-4,5.985269799999999e-4,0,0,0,0,280.7050450642903,0.911796750677243,13.855105466247057,73.70973521692333,5.570897783797489,19.752967156958555,-0.09354813112490414,0,0,14100.978379035863,0.07758312468608113,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1906,0.6442763573284219,0.9139458953081726,0,0,3.549324480388693,0.0021963609227289758,0.018196454,0.02500016087045272,0.024853655,34.068699518839516,0.11138246,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10645,0,457.00000254313153,4276.7286,953.0924224853514,93.2499831638467,297.66199747721356,466.4356478967891,0,0,0,0,0,0,0,0,0,0,0,0,6.526887545987847e-6,6.466788299999998e-6,0,0,0,0,3.6059561534784734e-4,6.027991099999999e-4,0,0,0,0,280.9800465901692,0.9228643088832689,13.959645369835703,73.46173851221981,5.607842106776347,19.60693136091458,-0.09545551104287764,0,0,14766.450119103303,0.17494042863794804,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1907,0.726915977115476,0.9229970275040732,0,0,3.6744573684699935,0.002872606390155852,0.016966195,0.025000798360755045,0.025812945,34.074700037638344,0.10398923,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14627,0,457.00000254313153,4278.822,959.1561177571614,94.5608019449233,298.0979944864909,480.31745635776645,0,0,0,0,0,0,0,0,0,0,0,0,6.5728515892260475e-6,6.507102e-6,0,0,0,0,3.6313501914264634e-4,6.0735196e-4,0,0,0,0,281.2760442097981,0.9335570189055034,14.216774986296493,76.00444514305916,5.925751520425966,20.144490748304303,-0.09692403030316216,0,0,16264.987209463294,0.062031619541395626,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1908,0.7032325912946371,0.932378464388443,0,0,3.675876640379726,0.0037649905619521937,0.021404879,0.02499991360430916,0.029231937000000006,34.08239936828613,0.12765503,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12414,0,457.00000254313153,4277.6586,964.0852966308593,95.71237193404865,298.5179901123047,482.5826340091374,0,0,0,0,0,0,0,0,0,0,0,0,6.618815632464248e-6,6.5407783e-6,0,0,0,0,3.6567443021340296e-4,6.111398000000001e-4,0,0,0,0,281.61104329427076,0.9439781461374255,14.407422860628587,76.85623799627187,5.975251674338594,20.34218954572492,-0.09839254956344667,0,0,15590.713118515627,0.12577421060954422,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1909,0.7293531000033262,0.9394639872302616,0,0,3.6900486620571034,0.004334990129185219,0.036714367000000005,0.02507337733792762,0.7650859999999999,34.087400118509926,0.21121463,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.16533,0,457.00000254313153,4279.8240000000005,969.3983662923176,96.46669460330283,298.93599192301434,480.68946878632124,0,0,0,0,0,0,0,0,0,0,0,0,6.664779675702448e-6,6.5813135e-6,0,0,0,0,3.6821383400820196e-4,6.1571818e-4,0,0,0,0,281.95004526774085,0.9541466929230623,14.465734280062996,76.44087709943787,6.04171533179017,20.1096713132971,-0.0998610688237312,0,0,16371.00547137995,0.1917775514880681,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1910,0.765726394850593,0.9455920872078338,0,0,3.7676081069530625,0.005609989515505731,0.042342327,0.02532928188641866,1.0366888,34.098299980163574,0.24301505,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14442,0,457.00000254313153,4278.7248,974.7870890299478,97.77187102780431,299.37699635823566,491.4713622185322,0,0,0,0,0,0,0,0,0,0,0,0,6.710743718940648e-6,6.615104700000002e-6,0,0,0,0,3.7075323780300096e-4,6.1951928e-4,0,0,0,0,282.3140436808268,0.9648675091710838,14.7306044680131,78.48124342715315,6.22524154290356,20.602328395865626,-0.10126503542660648,0,0,17123.070519811292,0.19159019115572065,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1911,0.7810146544824405,0.8874036750204771,0,0,3.725917531952306,0.007499988889321685,0.047217079,0.0812472328543663,0.55672031,34.11459986368815,0.27037941,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.20214,0,457.00000254313153,4281.7592,979.4653218587239,98.4293811567004,299.82899220784503,482.3736483687901,0,0,0,0,0,0,0,0,0,0,0,0,6.7567077621788485e-6,6.6575406e-6,0,0,0,0,3.7329264887375757e-4,6.2431671e-4,0,0,0,0,282.72104136149085,0.9761720065989483,14.679374542895259,76.73370568501319,6.205453710840906,20.007607425742776,-0.10240012153911617,0,0,17244.1854917937,0.1913996219514424,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1912,0.8199661913672125,0.8508398703003752,0,0,3.7091004678175183,0.009259988398601612,0.055977137,0.10000008965531985,1.3372385,34.12980047861735,0.31844894,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.23472,0,457.00000254313153,4283.4718,983.6058603922525,99.26614632335712,300.3529917399089,477.9889214580395,0,0,0,0,0,0,0,0,0,0,0,0,6.802671805417049e-6,6.6972695e-6,0,0,0,0,3.7583205024323735e-4,6.288021400000001e-4,0,0,0,0,283.01904296874994,0.9924203303369911,14.713664798160675,75.8316081908469,6.21946391056852,19.680892428681513,-0.10353520765162587,0,0,17989.19691090075,-0.2483084466661772,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1913,0.889533970104308,0.8203484804069425,0,0,3.787939036045986,0.011569987594460448,0.05934571,0.11666701609889667,2.7874772,34.1497999827067,0.33694139,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.25437,0,457.00000254313153,4284.5046,986.2423197428384,100.61255837319116,300.9099934895833,488.2676034939648,0,0,0,0,0,0,0,0,0,0,0,0,6.848635848655249e-6,6.7356009000000015e-6,0,0,0,0,3.7837145403803635e-4,6.3312652e-4,0,0,0,0,283.3620402018229,1.0114400974128448,14.921807646192061,77.57996159883326,6.453879619764709,20.00732869050688,-0.10467029376413556,0,0,19072.753187289316,-0.30943169229472783,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1914,0.8114913689780275,0.8092045045442162,0,0,3.764418792127778,0.014084987109526992,0.064801984000000007,0.19333053504427275,4.5655912,34.17150020599365,0.36726542,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.19867,0,457.00000254313153,4281.5767,988.610880533854,102.28405865111169,301.4189910888672,494.4978826289548,0,0,0,0,0,0,0,0,0,0,0,0,6.894599891893449e-6,6.765480200000002e-6,0,0,0,0,3.809108626834738e-4,6.3647677e-4,0,0,0,0,283.71604156494135,1.0321295138459616,15.241497455163927,79.77807342879137,6.499176732511072,20.59248108677444,-0.10580537987664523,0,0,17594.434057832063,0.020398445252377703,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1915,0.8029916592535993,0.7974019582591167,0,0,3.7223377832742996,0.016684986495723326,0.08400062900000001,0.31655970215797424,6.2098372,34.193999926249184,0.47153519,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.2716,0,457.00000254313153,4285.4105,991.4610799153645,103.0579197466507,301.9369888305664,484.24768488469795,0,0,0,0,0,0,0,0,0,0,0,0,6.9405635182799115e-6,6.8098518e-6,0,0,0,0,3.8345026890359196e-4,6.4149729e-4,0,0,0,0,284.04704284667963,1.0546195831794383,15.232131029774814,78.35040062356745,6.4827720725927875,20.061424577974346,-0.10694046598915492,0,0,17573.116044207876,0.1641375391623491,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1916,0.8653307900276433,0.7997102256366486,0,0,3.744207068777381,0.019669986019531887,0.10465075,0.5206524853905042,5.9968917,34.21979999542236,0.58467971,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.29863,0,457.00000254313153,4286.831,998.4538218180337,104.08894352066241,302.48498789469403,482.95426600786,0,0,0,0,0,0,0,0,0,0,0,0,6.986527523622499e-6,6.8490958e-6,0,0,0,0,3.8598967269839096e-4,6.4592684e-4,0,0,0,0,284.31204223632807,1.077791381611315,15.342847178146304,78.27985154770643,6.60168085846147,19.908298607149394,-0.1080755521016646,0,0,19065.484279863696,0.18922175763831675,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1917,0.896621584801294,0.8027455741063269,0,0,3.8263968555995858,0.02392498527963956,0.11034348,0.7563406427701315,5.1585271,34.2564001083374,0.61870744,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.37275,0,457.00000254313153,4290.7275,1003.5705515543618,105.4397414501963,303.01098887125653,492.9600447524987,0,0,0,0,0,0,0,0,0,0,0,0,7.032491566860699e-6,6.8937875e-6,0,0,0,0,3.885290813438284e-4,6.509842700000001e-4,0,0,0,0,284.6150461832682,1.1002556131310455,15.500365004779491,80.4548180697849,7.003710361287698,20.17756104011222,-0.10921063821417433,0,0,19906.998931884555,0.19018318847478569,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1918,0.8873955587039598,0.8060358496732685,0,0,3.8305973797130326,0.02868998423218727,0.10461425,0.9276737372080485,4.2721672,34.29749997456869,0.58914082,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.37311,0,457.00000254313153,4290.7462,1010.1304473876952,106.74593160054405,303.44898732503253,496.242073076373,0,0,0,0,0,0,0,0,0,0,0,0,7.078455610098899e-6,6.9300659e-6,0,0,0,0,3.910684875639466e-4,6.550720200000001e-4,0,0,0,0,284.80504862467444,1.1212267086350811,15.704391027274072,81.61294813978053,7.118191256260811,20.368951576880015,-0.110345724326684,0,0,19743.244967391554,0.1899763122778872,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1919,0.7808604024397078,0.8111591475979437,0,0,3.7226411346821937,0.03343498365332683,0.10155164,1.0843643546104431,3.196035,34.338699658711754,0.57214502,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.33647,0,457.00000254313153,4288.8202,1017.6303660074868,108.09510704377881,303.8139877319336,490.9794171167238,0,0,0,0,0,0,0,0,0,0,0,0,7.1244196533371e-6,6.962042700000002e-6,0,0,0,0,3.936078889334264e-4,6.5866401e-4,0,0,0,0,284.85105133056635,1.1402334776582428,15.915652713498652,81.67724386438958,6.926922672741556,20.368638212598857,-0.1115197148188522,0,0,16994.786869895725,0.18976010178406924,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1920,0.9030601007400624,0.8135184546759534,0,0,3.8130101207834444,0.03770498279482126,0.071874804,1.176037738720576,4.0059497,34.375800132751465,0.41169313,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.40157,0,457.00000254313153,4292.2427,1025.0703277587888,109.13363853305731,304.24598693847656,498.87459987539705,0,0,0,0,0,0,0,0,0,0,0,0,7.1703836965753e-6,7.0058716e-6,0,0,0,0,3.961472951535446e-4,6.636221499999999e-4,0,0,0,0,284.9290440877278,1.157633764648187,16.036656139503478,82.96992111207,7.3188151464881575,20.402395098799328,-0.11278881532908334,0,0,18802.69892302283,0.18954070686553806,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1921,0.7938358638145999,0.8612993334837397,0,0,3.661222702405219,0.042184981517493725,0.05599481,1.241669515768687,6.3575754999999985,34.4146998723348,0.32444592,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.42979,0,457.00000254313153,4293.7261,1032.2003377278643,109.80934796264431,304.59998830159503,486.6136241874396,0,0,0,0,0,0,0,0,0,0,0,0,7.2163477398135e-6,7.045455500000001e-6,0,0,0,0,3.98686703798982e-4,6.6809072e-4,0,0,0,0,285.0390421549479,1.173417684573443,16.01016129774032,81.18725519244387,7.146950074087312,19.846108774902355,-0.11405791583931453,0,0,16049.705932221917,0.1893181118062252,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1922,0.8438966628298804,0.8533692042065284,0,0,3.6583337227642674,0.04389498041321834,0.10093674,1.3888855278491974,7.5196689,34.43010012308756,0.56921203,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.47367,0,457.00000254313153,4296.0327,1039.1002502441404,110.48581040150992,304.9449818929036,484.8273418444006,0,0,0,0,0,0,0,0,0,0,0,0,7.2623117830517e-6,7.0869364000000015e-6,0,0,0,0,4.01226107593781e-4,6.7277807e-4,0,0,0,0,285.17004903157545,1.188779371830489,16.07300912106922,80.53069430512947,7.252038815173717,19.474278395734512,-0.11532701634954567,0,0,16950.895997894484,0.0877045766097048,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1923,0.9595590008888546,0.8614844099618343,0,0,3.8812462099992877,0.04700497972468535,0.13753371,1.6249915957450867,8.1995609,34.45719941457113,0.77479139,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.54539,0,457.00000254313153,4299.8026,1045.1300659179685,112.25356413194692,305.27098337809247,514.2343951443905,0,0,0,0,0,0,0,0,0,0,0,0,7.308275826289901e-6,7.131803e-6,0,0,0,0,4.037655138138992e-4,6.7785565e-4,0,0,0,0,285.46704101562494,1.205120977529758,16.469305300306814,86.27583424473677,8.013836332456805,20.417825208931507,-0.11659611685977685,0,0,19723.672024100037,0.12093783396952988,0.004446569985399644,0.007723268,0,0,0,0 +1924,0.9703594405113312,0.8676633311171565,0,0,3.7748090158825875,0.052589978401859604,0.14595489,1.8459543486436207,10.064032,34.50569979349772,0.82730698,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.55899,0,457.00000254313153,4300.5175,1049.450032552083,112.63350596587964,305.62998453776044,499.0974143950571,0,0,0,0,0,0,0,0,0,0,0,0,7.354239869528101e-6,7.169801200000001e-6,0,0,0,0,4.0630492245933664e-4,6.8214162e-4,0,0,0,0,285.6050491333007,1.2222190421891945,16.415647771084632,83.21123114220697,7.790296571572385,19.77882376042076,-0.117865217370008,0,0,19521.89407498274,0.18863121099961191,0.004446569946594536,0.0077232683,0,0,0,0 +1925,0.9836991206856317,0.8708471713839661,0,0,3.7906069821644643,0.05885497791071733,0.15281139,2.1164215207099915,9.887985,34.5605993270874,0.86947278,0,0,0,0,0,0,0,0,0,0,5.299997687339783,105.60265,0,457.00000254313153,4302.8128,1052.159952799479,113.6704269189651,305.81298065185547,502.6957687586778,0,0,0,0,0,0,0,0,0,0,0,0,7.400203495914563e-6,7.2114506e-6,0,0,0,0,4.0884432625413564e-4,6.8684841e-4,0,0,0,0,285.6520512898762,1.2377911006225208,16.841681561106117,84.06174423454924,7.983263811925956,19.753454837168906,-0.11913431788023915,0,0,19738.889839322743,0.18839574168627352,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1926,0.9711936637110966,0.8752881607638067,0,0,3.724383638277895,0.06516497613241275,0.16877181,2.460367262363434,10.020584,34.616199811299644,0.96266008,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.65209,0,457.00000254313153,4305.4116,1053.600107828776,114.54563027246535,305.9539845784505,499.041820374083,0,0,0,0,0,0,0,0,0,0,0,0,7.4461675012571504e-6,7.2538666e-6,0,0,0,0,4.1138373004893464e-4,6.9164354e-4,0,0,0,0,285.69204711914057,1.2526121062865871,17.14732507530922,84.16877083488303,8.057166101708676,19.573020111236303,-0.12040341839047032,0,0,19808.91323463674,0.18815706175477445,0.0044465700242047506,0.0077232683,0,0,0,0 +1927,1.0719822978926645,0.9148152429216062,0,0,3.8503573823854342,0.0720199750115474,0.19366311,2.6942857106526694,13.691728,34.67679913838705,1.1076116000000005,0,0,0,0,0,0,0,0,0,0,5.299997607866923,105.65063,0,457.00000254313153,4305.3352,1055.770568847656,115.74747998347533,306.17698669433594,515.0910883833536,0,0,0,0,0,0,0,0,0,0,0,0,7.492131544495351e-6,7.290134400000002e-6,0,0.0049450274,0,0,4.1392313869437203e-4,6.9573008e-4,0,0,0,0,285.7400512695312,1.2667652835613548,17.432321744004053,86.52753524964037,8.499773806732605,19.875509864662817,-0.12167251890070148,0,0,21139.782286868525,0.187915087386083,0.004446569985399644,0.0077232677,0,0,0,0 +1928,1.0761742979146,0.9182619073884535,0,0,3.828134931557229,0.07970497260491054,0.21328049999999998,3.02649054924647,16.914307,34.74499924977621,1.2252077,0,0.020814729,0,0,0,0,0,0,0,0,5.2999982436498,105.59392,0,457.00000254313153,4302.3537,1060.6403605143228,116.7958666079441,306.3289794921875,515.8400889336957,0,0,0,0,0,0,0,0,0,0,0,0,7.538095587733551e-6,7.3196023e-6,0,0.030139896,0,0,4.1646254248917103e-4,6.990328999999999e-4,0,0,0,0,285.83304850260413,1.2797850846246124,17.62700284771002,87.11586336850812,8.569023694913732,19.91593076109437,-0.12294161941093265,0,0,21065.047460560574,0.16326849505962074,0.004446569985399644,0.007723269,0,0,0,0 +1929,1.1569513873862218,0.945536477224549,0,0,3.8902159937355303,0.08870497221748035,0.20802541,3.517713646094004,19.38339,34.825199127197266,1.2037865,0,0.33502494,0,0,0,0,0,0,0,0,5.299996972084045,105.60372,0,457.00000254313153,4297.9849,1066.6603291829424,118.01999771578741,306.49498748779297,527.0535755087527,0,0,0,0,0,0,0,0,0,0,0,0,7.584059630971751e-6,7.3457199e-6,8.387752144093005e-4,0.003329301,0,0,4.1900194628397003e-4,7.019496099999999e-4,0,0,0,0,285.8910522460937,1.290827581649255,17.867272783472913,89.37670246877072,8.894481947800461,20.274973944467554,-0.1242107199211638,0,0,22402.21951573089,0.008459436299327926,0.004446569946594536,0.007723266199999999,0,0,0,0 +1930,1.0728864782722383,1.0228008835417055,0,0,3.9076228058376485,0.0980799701064825,0.17035764,4.063463946183522,20.571834,34.909299532572426,0.99750344,0.001314997343191256,1.1701026,0,0,0,0,0,0,0,0,5.299998998641968,105.91828999999998,0,457,4287.8382,1072.6401163736978,119.67017881003574,306.6199773152669,535.0349028180784,0,0,0,0,0,0,0,0,0,0,0,0,7.630023560523114e-6,7.3580297999999985e-6,0.00510867650154978,-0.026051043,0,0,4.2154135735472664e-4,7.0327493e-4,0,0,0,0,285.9380518595377,1.3003703550961545,18.10997615018731,91.59573862667055,8.841770878325681,20.952388588675653,-0.12547982156900256,0,0,20792.33985686783,0.17991195822791398,0.004446570101814966,0.0077232725,0,0,0,0 +1931,0.9686717262631225,1.0331302905231323,0,0,3.699193086333459,0.10662497021257877,0.11326202,4.702978173891704,21.232329,34.9865992863973,0.6766021,0.021151568042114377,1.6600328999999998,0,0,0,0,0,0,0,0,5.3066509167353315,106.6887,0,457.000005086263,4282.6938,1077.4902242024737,119.90750782308882,306.82198333740234,504.89813450435264,0,0,0,0,0,0,0,0,0,0,0,0,7.675987490074476e-6,7.3819696e-6,0.0013775627594441175,-0.0038292076,0,0,4.2408076114952564e-4,7.059406299999999e-4,0,0,0,0,286.124043782552,1.3073181920546588,17.958294196248843,86.48531866506026,8.206316153499158,19.782983456664027,-0.12674892343562766,0,0,18348.14599749548,0.1869152841968948,0.0044465698301792145,0.0077232589,0,0,0,0 +1932,0.8802743934777767,0.934985060725432,0,0,3.701120518695932,0.11274996710320313,0.085847633,5.2942134141922,23.837144,35.04279931386312,0.51911084,0.07499745239814122,1.6167368,0,0,0,0,0,0,0,0,5.338305354118347,107.41813,0,457.00000254313153,4276.7559,1081.9602254231768,121.42198728704909,307.09297943115234,510.1823315036154,0,0,0,0,0,0.0057643486,0,0,0,0,0,0,7.721951533312676e-6,7.4038620000000015e-06,6.616643853097534e-4,7.431065e-4,0,0,4.2662016494432464e-4,7.083703599999999e-4,0,0,0,0,286.222048441569,1.3141063515038527,18.10001303714107,87.9072537284969,8.14248430159185,20.161815548303863,-0.12801802530225273,0,0,16151.105195411223,0.04254262073622287,0.004446570334645609,0.0077232888,0,0,0,0 +1933,0.9234526077537247,0.9318013427122356,0,0,3.6739916956408347,0.11636996641755104,0.10162739999999999,5.937420805295308,28.120028,35.076699574788414,0.61081444,0.12499795357386272,1.6336582,0,0,0,0,0,0,0,0,5.379978577295939,108.09758,0,456.99999745686847,4271.2585,1086.540334065755,122.34376589659303,307.40198008219403,508.11601205842635,0,0,0,0,0,0.14482802,0,0,0,0,0,0,7.767915576550877e-6,7.4266479000000016e-6,7.192010428601255e-4,8.0764091e-4,0,0,4.2915957358976203e-4,7.1090308e-4,0,0,0,0,286.3710505167643,1.3197777870137994,18.14058311592853,87.73926442282286,8.102332976784076,20.019613310457757,-0.1292871271688778,0,0,16995.040808999714,0.15037091489606738,0.004446569170492391,0.0077232216,0,0,0,0 +1934,1.000687973523085,0.9200297551297542,0,0,3.8176224066538618,0.120129964624842,0.15202423,6.679798523585002,34.519287,35.111599604288735,0.91252255,0.174997894714276,1.6505883,0,0,0,0,0,0,0,0,5.419978777567546,108.91202,0,456.99999745686847,4272.3774,1091.770294189453,123.95329985100088,307.7849833170573,528.0331660089164,0,0,0,0,7.617614949898174e-4,0.60639434,0,0,0,0,0,0,7.813879619789077e-6,7.4653224e-6,7.817409447549531e-4,8.7789025e-4,0,0,4.3169897738456103e-4,7.152669800000001e-4,0,0,0,0,286.4670486450195,1.326062978814577,18.32411358884008,91.49703968423377,8.603675585096985,20.702617836824825,-0.1305562290355029,0,0,18679.912767508573,0.18613128672545048,0.004446571848044793,0.007723374200000002,0,0,0,0 +1935,1.0505968685462075,0.9186843152571444,0,0,3.826763235457096,0.12510996125638485,0.22028466,7.595823089281718,40.132859,35.15789985656738,1.3303298,0.22499790415167809,1.6675173,0,0,0,0,0,0,0,0,5.459979295730591,109.70014,0,457,4272.1486,1097.08012898763,124.8946043872966,308.2269795735677,529.4409406291938,0,0,0,0,0.019080033137773473,0.97427321,0,0,0,0,0,0,7.859843663027277e-6,7.500741299999999e-6,8.497191738570109e-4,9.5422447e-4,0,0,4.3423838117936003e-4,7.192557e-4,0,0,0,0,286.58704884847,1.332452330452497,18.317319645408826,91.90214074154562,8.779424673428734,20.543197042155484,-0.13182533090212795,0,0,20077.943320367118,0.18586353451204687,0.004446565833253165,0.0077230226,0,0,0,0 +1936,1.1503667221829357,0.9270693885573005,0,0,3.9720080230657695,0.13321496173739433,0.28820401,8.761372248331705,42.33712,35.23359902699789,1.7570203000000002,0.27499790986378986,1.6844464,0,0,0,0,0,0,0,0,5.4999799728393555,110.56758,0,456.999994913737,4275.9063,1101.8303019205728,126.46470475438792,309.01197306315106,550.0398548533171,0,0,0,0,0.07932233065366745,1.0455299,0,0,0,0,0,0,7.905807706265477e-6,7.545934399999999e-6,9.236086334567517e-4,0.001037276,0,0,4.367777898247975e-4,7.243709e-4,0,0,0,0,286.7470448811848,1.3386899894061661,18.652869642211954,95.83484543323485,9.362043924590697,21.164186541248704,-0.13309443276875307,0,0,21597.571787769164,0.185592517547358,0.0044465794538458185,0.007723846199999999,0,0,0,0 +1937,1.231103104871657,0.9045164915618376,0,0,3.977215074471826,0.14407995715737343,0.34372195,10.024959723154703,44.188471,35.3363987604777,2.1186454,0.3249979118506114,1.7013755000000002,0,0.0063900215,0,0,0,0,0,0,5.539980530738831,111.3625,0,457.00000254313153,4275.9946,1106.3199869791665,127.18233706750797,309.7639745076497,550.6109419060176,0,0,0,0,0.1400045237193505,1.1131878000000002,0,0,0,0,0,0,7.951771749503678e-6,7.5821791e-6,0.0010039232001872733,0.0011274768,0,0,4.3931719604491565e-4,7.2845477e-4,0,0,0,0,286.95104471842444,1.3465253526433507,18.73588299543127,95.84567433043011,9.575630542004474,20.850604708617507,-0.13436353463537815,0,0,23231.712031323073,0.1853182578338796,0.004446548409759998,0.0077218498,0,0,0,0 +1938,1.1614219711074325,0.9073215418860066,0,0,3.8795464313880084,0.1580399548014005,0.39883954,11.266163110733032,49.06474,35.46979935963949,2.4891541,0.3749979188044866,1.7183046999999998,0,0.1328808,0,0,0,0,0,0,5.579981207847595,112.0603,0,456.99999745686847,4271.2734,1110.6307983398435,127.90539303616418,310.2939758300781,535.4268484555511,0,0,0,0,0.20000430569052696,1.185033,0,0,0,0,0,0,7.997735792741878e-6,7.6064912e-6,0.0010912219295278192,0.0012254241,0,0,4.4185659983971465e-4,7.3116337e-4,0,0,0,0,287.191042582194,1.3551266769032138,18.7206280051743,93.2370606174549,9.13361208452991,20.283818003860038,-0.13563263650200325,0,0,21542.975865724657,0.1850407365123296,0.004446620470844209,0.0077285525,0,0,0,0 +1939,1.2326137038964111,0.9058800276933815,0,0,4.010820601451636,0.1736899564663569,0.43390074,12.575761953989664,56.68305400000001,35.62149874369303,2.745053,0.4249979183077812,1.7352338,4.437717252585571e-4,0.68779311,0,0,0,0,0,0,5.61998176574707,112.8293,0,457.00002034505206,4270.1197,1116.909678141276,129.50135676592018,310.8509750366211,554.5379171230255,0,0,0,0,0.26000453531742096,1.2571398,0,0,0,0,0,0,8.043699835980078e-6,7.6395717e-6,0.0011861117285055418,0.0013320616,0,0,4.443960084851521e-4,7.3488257e-4,0,0,0,0,287.3870468139648,1.3668291715856424,18.987929691357078,97.34535423251211,9.632984018885308,21.020853325485078,-0.13690173836862835,0,0,23010.268809183824,0.1847599106254542,0.004446447691104065,0.11813875,0,0,0,0 +1940,1.332494477928578,0.8934636293441599,0,0,4.026253626433618,0.19239995131889978,0.50172554,14.090854724248251,67.98074100000001,35.804999033610024,3.2190952,0.4749979227781296,1.7521629,0.009225911945880702,1.4928916,0,0,0,0,0,0,5.6599823633829756,113.75015,0,456.9999643961589,4276.3916,1120.120178222656,130.13499426241637,311.35697682698566,550.4654056455058,0,0,0,0,0.3200042446454366,1.3304593999999998,0,0,0,0,0,0,8.089663500262153e-6,7.6912641e-6,0.0012892556163327147,0.0014481828,0,0,4.469354122799511e-4,7.4074684e-4,0,0,0,0,287.61904144287104,1.3795892066065865,18.93380647928792,96.49612886832482,9.961368880607099,20.566275747266797,-0.13793690008074544,0,0,25159.0741191676,0.1844758339571321,0.0044469935819506645,0.21814961,0,0,0,0 +1941,1.3573323902091925,0.87608140300394,0,0,4.050294266866393,0.21106995145479837,0.64957282,15.872149070103964,81.740279,35.991299311319985,4.2240743,0.5249979098637899,1.769092,0.04815833130851388,2.2339929,0,0,0,0,0,0,5.69998296101888,114.54353,0,457.0000813802083,4282.9257,1123.240509033203,132.2180939399341,311.81097412109375,552.9500650768001,0,0,0,0,0.3800046021739642,1.4028748,0,0,0,0,0,0,8.135627467709128e-6,7.727317500000001e-6,0.0014013840700499713,0.0015741503,0,0,4.494748160747501e-4,7.448086699999999e-4,0,0,0,0,287.8640467325846,1.42706317607174,19.034030783582587,97.09407345232208,10.193711740010501,20.462031367555745,-0.1386016615843945,0,0,26113.949704774812,0.1841885864846894,0.012151915968085328,0.1951164,0,0,0,0 +1942,1.3590493190022876,0.8973145216954003,0,0,4.1141932838166495,0.23562495286266008,0.84353078,18.12043031056722,95.021136,36.23889923095703,5.585489,0.5749979317188263,1.7860212,0.112600847457846,2.976471,0,0,0,0,0,0.19841173,5.739983518918355,115.26991,0,456.9997380574544,4303.7401,1128.1901550292966,134.70602408126945,312.17197672526044,560.1841861089208,0,0,0,0,0.4400041376550992,1.4745563999999998,0,0,0,0,0,0,8.181591510947328e-6,7.7551846e-6,0.0015232670799984287,0.0017109548,0,0,4.5201422229486826e-4,7.4792699e-4,0,0,0,0,288.1380538940429,1.5298185446895778,19.210183227285178,98.65719695401302,10.345483778655613,21.014193770024683,-0.13926642308804354,0,0,26702.042786503276,0.18389809416798145,0.018664849922060966,0.16898031,0,0,0,0 +1943,1.4029458246329907,0.8921248427380299,0,0,4.11408578168194,0.267039954662323,0.80476688,20.794118722279865,89.521615,36.56109873453776,5.4576739000000005,0.6249979237715403,1.8029502,0.20245546102523804,3.7199961,0,0,0,0.056451758,0,4.3053247,5.77998411655426,116.04761,0,457.93199666341144,4331.4951,1132.6601562499998,136.62968688428126,312.3899790445964,561.0185502959332,0,0,0,0,0.5000047385692596,1.5467027,0,0,0,0,0,0,8.227555554185528e-6,7.789335e-6,0.0016557506072179724,0.0018597366,0,0,4.545536309403057e-4,7.517695e-4,0,0,0,0,288.78102874755854,1.6777932069727464,19.226489945128584,99.48634644476039,10.644062862464148,20.76469900653816,-0.13993118459169265,0,0,27110.348585419746,0.1836043762155363,0.023900681796173256,0.14684461,0,0,0,0 +1944,1.3879131189978564,0.8983189521156985,0,0,4.111269896041665,0.30831495175759,0.41764093,23.86478344599406,72.69430200000002,36.99279912312826,2.9606569,0.6749979356924692,1.8198794,0.3176470845937729,4.4638059000000005,0,0,0,0.97266311,0.019433656940236688,16.545617,5.8199847141901655,116.85265,0,460.7425028483073,4354.745,1136.270060221354,138.93105622391963,312.41297149658203,569.4275578497453,0,0,0,0,0.5600039213895798,1.6191675,0,0,0,0,0,0,8.273519597423729e-6,7.8268219e-6,0.00179975672896641,0.0020215068,0,0,4.570930347351047e-4,7.559967e-4,0,0,0,0,289.00005086263013,1.8537439967013465,19.454671365649084,102.00830515112277,10.972149966258387,20.918122282494288,-0.14059594609534168,0,0,26578.15151015907,0.18330738198668892,0.027877628337591887,0.11439264,0,0,0,0 +1945,1.180916481863783,0.8988221719461101,0,0,3.970406317162407,0.33637995769580203,0.20111842,25.904248396555584,68.369262,37.297698974609375,1.5076942,0.7249979277451833,1.8368084,0.4580556924144427,5.2077233,0,0,0.004844144840414326,3.4593405,0.4215002196530501,24.846154,5.85998531182607,117.6118,0,463.24369557698566,4376.5008,1139.32036336263,141.02296395690516,312.38497670491535,562.3881403027648,0,0,0,0,0.6200050512949625,1.69101,0,0,0,0,0,0,8.319483640661929e-6,7.8587212e-6,0.0019562874901263663,0.0021972582,0,0,4.596324409552229e-4,7.595796e-4,0,0,0,0,289.2270406087239,2.0468366239992983,19.530998731486306,102.38686289278726,10.811058367654892,20.630415192374578,-0.14126070759899073,0,0,23414.92285804937,0.18300712894373766,0.03101034214099248,0.080798572,0,0,0,0 +1946,1.2942110656768657,0.9829470073282762,0,0,3.9716964354580995,0.3442649617791176,0.27970458,27.504756927490234,74.71723399999998,37.39169883728027,2.0726649,0.7749979496002197,1.8537378,0.6235543092091879,5.9856104000000006,0,0,0.08337228807310264,4.940467900000002,1.6357106665770214,24.839378,5.899985949198405,118.39896,0,465.7432912190755,4399.6117,1143.6604919433591,142.70640224525258,312.38997141520184,555.2899629515077,0,0,0,0,0.680003434419632,1.7631907999999998,0,0,0,0,0,0,8.365447683900129e-6,7.894034299999999e-6,0.002126432334383329,0.0023883489,0,0,4.621718496006603e-4,7.635561099999999e-4,0,0,0,0,289.4270451863606,2.2422352077889016,19.68948842063387,102.65818348678006,10.80993836386383,20.305933499558623,-0.14192546910263978,0,0,23137.2912384495,0.18270359473494088,0.03229169764866432,0.06430042700000001,0,0,0,0 +1947,1.4498949379331847,1.013635265025484,0,0,4.004289599390247,0.3536549558242162,0.34838359,29.078561464945476,84.081746,37.50009854634603,2.6369074,0.8249979366858801,1.8706665,0.8140119264523188,6.4443541,0,0,0.3000110412637393,4.8390374000000005,2.835014005502065,24.982371,5.93998658657074,119.2973,0,468.2434260050456,4428.0553,1149.6402994791665,144.7944964951042,312.48597208658856,563.4037753734774,0,0,0,0,0.7400057514508566,1.8372679,0,0,0,0,0,0,8.41141172713833e-6,7.9428476e-6,0.0023113751861577234,0.0025963146,0,0,4.647112509701401e-4,7.6908855e-4,0,0,0,0,289.51104482014966,2.4286545050325703,19.916095128874474,104.15736760766261,11.489678423181335,20.190999473703123,-0.14259023060628884,0,0.0033728385,25978.580134271393,0.18239681638037056,0.03281248671313127,0.046731228,0,0,0,0 +1948,1.541746757752381,1.0217889660432258,0,0,4.123520872976997,0.3683149615923564,0.33316898,31.041143258412678,90.670686,37.670498530069985,2.6243892000000004,0.8749979635079702,1.8875961,1.0316545367240906,6.6649072,0,0,0.5000130111972491,4.856366099999999,4.025014281272888,24.987103,5.979986985524495,120.08364,0,470.7433776855469,4451.0369,1155.630167643229,147.27202945137043,312.5209681193034,586.5360800457117,0,0,0,0,0.8000023066997528,1.966277,0,0,0,0,0,0,8.45737577037653e-6,7.9780491e-6,0.002512403065338731,0.0033276717,0,0,4.672506547649391e-4,7.7305219e-4,0,0,0,0,289.55605316162104,2.589644895931103,20.349060560415165,108.09641738801687,12.195764994941479,20.65035706357972,-0.14325499210993792,0,0.023611977000000003,27162.316753376424,0.1820867991187164,0.0328332781791687,0.020169381,0,0,0,0 +1949,1.5150340802151026,1.0322291088892992,0,0,4.0957465510773075,0.38362496097882587,0.31424196,33.192337354024254,91.962416,37.855198542277016,2.5926444,0.9249979307254156,1.8955033,1.2518172562122345,7.1640705,0,0,0.7000119686126709,5.561141,5.215012947718303,27.295461,6.019987901051839,120.70601,0,473.243403116862,4466.7618,1160.3499450683591,150.21571488778258,312.63197072347003,588.4410386834926,0,0,0,0,0.8600076138973236,1.6426278000000003,0,0,0,0,0,0,8.50333981361473e-6,7.993390500000001e-6,0.0027309151094717285,0.02463759,0,0,4.697900658356957e-4,7.747269e-4,0,0,0,0,289.59805043538404,2.7140139811269637,20.909195897992674,109.1544257771438,11.863971231370714,21.081179377216955,-0.14391975361358694,2.747740879082509e-4,0.063741035,26198.851367200677,0.18177350173895448,0.03209515412648519,-0.0015784357,0,0,0,0 +1950,1.6956807866542396,1.0454343901508287,0,0,4.3312607912797665,0.3969699591398239,0.32876887,35.499832471211754,78.580053,38.023898442586265,2.8441101000000004,0.9749979873498281,1.9897329,1.4824664394060771,7.4706053,0,0,0.8938818424940109,8.1460574,6.382257183392842,32.673745000000004,6.059987783432007,121.62274,0,475.7314631144206,4499.2896,1163.820566813151,152.20100844625213,312.8209762573242,619.9439709148871,0,0,0,0,0.9275005906820297,1.0661465,0,0,0,0,0,0,8.549303477896805e-6,8.0453408e-6,0.003054187574889511,0.10531435,0,0,4.723294696304947e-4,7.806208900000001e-4,0,0,0,0,289.73904164632154,2.7868238058947905,21.601404570641137,113.85984719531825,13.132141828954166,22.105810561368756,-0.14458451511723602,0.001923504489241168,0.16053368,29148.546819670417,0.1814569633566329,0.03030576727663477,2.432756e-4,0,0,0,0 +1951,1.8173567042308394,1.2637884621306537,0,0,4.212336067356143,0.41064496090014774,0.33222262,37.58082548777262,70.47669,38.204298655192055,3.0430784,1.0244279702504475,2.1685287,1.7349158823490143,7.5542237,0,0,1.1468555231889088,12.050138,7.775353193283081,36.815853,6.099990487098694,122.51807,0.014330518,478.3116455078125,4529.1876,1168.810119628906,155.27193516536855,313.01397196451825,593.1994505844021,0,0,0,0,0.9349976976712545,1.0527789,0,0,0,0,0,0,8.59526744534378e-6,8.0850349e-6,0.006885135274690886,0.2343219,0,0,4.748688734252937e-4,7.8510233e-4,0,0,0,0,289.8600540161132,2.8307926461022945,21.710967064016447,109.09095441872181,13.152193894404679,20.398188183698103,-0.14710768873059346,0.005466860408584277,0.23983988,30378.934969744696,0.18113711866275609,0.028203126974403858,0.0011664316,0,0,0,0 +1952,1.8518759304813062,1.2915086581093504,0,0,4.27824996657228,0.42523996035257977,0.32854487,38.706894874572754,76.508762,38.406997998555504,3.2228257,1.079317679007848,2.4120426,1.984303871790568,7.673401400000001,0,0,1.5540266533692677,16.078842,9.444400389989218,40.441283,6.139426151911418,123.26435,0.21725302,481.16064198811847,4558.7052,1174.3108825683591,160.57335760480584,313.3419774373372,606.9563399935745,0,0,0,0,0.9200002650419871,1.4414744,0,0,0,0,0,0,8.64123148858198e-6,8.100092099999999e-6,0.02087512387273212,0.36283509999999997,0,0,4.7740828449605033e-4,7.867442699999999e-4,0,0,0,0,290.02505238850904,2.873469224433514,22.393786048989185,112.61821090484105,13.48661503998857,20.95793435117974,-0.1497592068193485,0.01499934789414207,0.24565292,30772.879377004218,0.1808140109638238,0.026776751192907493,-0.0020300648,0,0,0,0 +1953,1.9058871956207555,1.288662579097105,0,0,4.400134890913105,0.4392099554340045,0.31999622,40.05176067352295,81.681224,38.61429913838705,3.3863087,1.1389276186625164,2.8478934,2.2399121522903442,7.7034458,0,0,2.129436651865641,20.201055,11.213325262069702,45.581432,6.184987505276998,124.06078,1.3575508,484.1764450073242,4600.7084,1183.360656738281,165.68183230817434,313.72996775309247,623.9750547982311,0,0,0,0,0.9262516697247823,2.1004080000000003,0,0,0,0,0,0,8.68719553182018e-6,8.1248995e-6,0.04651178978383541,0.48047903,0,0,4.7994768829084933e-4,7.8950997e-4,0,0,0,0,290.3340403238932,2.918473220829267,23.086276532048977,116.77653779023555,14.050620354457529,21.600939708208692,-0.15241072490810365,0.024999434128403664,0.24572915,31392.44295532122,0.18048767518443254,0.02495241429035862,-2.2819236e-4,0,0,0,0 +1954,1.9553258305658399,1.3426832443153052,0,0,4.475107773130416,0.4534849599003792,0.29457384,41.54246679941813,86.86346999999998,38.84129842122396,3.4048632000000003,1.2079770465691884,3.2763156,2.4949118296305337,7.760213,0,0,2.8635963996251426,25.212381,13.203928073247274,51.892411,6.22998833656311,124.75392,3.6198833,488.50885518391925,4629.2231,1194.4306030273435,170.37100791893153,314.09496815999347,628.9096635314064,0,0,0,0,0.9637557764848074,2.8888848,0,0,0,0,0,0,8.73315957505838e-6,8.1370738e-6,0.08213070034980774,0.59576061,0,0,4.824870896603291e-4,7.9081967e-4,0,0,0,0,290.54804992675776,2.9653052307782946,23.518269296485517,118.7896928573186,14.352627821692423,21.654738949016565,-0.15506224299685875,0.034999388890961804,0.24580572,31601.64061572461,0.1801580463648328,0.0234999794823428,-0.0040708208,0,0,0,0 +1955,2.1387868172549656,1.3878206830387967,0,0,4.585745111893209,0.46671496083339054,0.26311875,43.17295900980631,91.980019,39.07069810231527,3.3346824,1.2937463521957397,3.6788015,2.7499121824900308,7.6370702,0,0,3.7677908142407737,30.727319,15.439632256825766,59.87188100000001,6.274988849957784,125.74327,6.4848679,493.2549794514974,4666.3367,1206.65092976888,174.7404470567501,314.4149703979492,641.3267253315221,0,0,0,0,1.0538601179917653,3.5564777000000003,0,0,0,0,0,0,8.77912361829658e-6,8.184845900000001e-6,0.1274599153548479,0.70910415,0,0,4.8502649830576655e-4,7.9623211e-4,0,0,0,0,290.84404500325513,3.016004167545106,23.788691617349485,122.54258151361353,15.359884890806127,21.61194057224027,-0.15771376108561386,0.044999435233573117,0.24588273,34555.402722250226,0.17982516920850813,0.021999980478237074,0.0010493547,0,0,0,0 +1956,2.291039468224933,1.4462836425278403,0,0,4.8444014888868745,0.478794959684213,0.22075982,44.93925635019938,97.008491,39.3001979192098,3.0796375,1.3882061143716176,4.2759912,3.006162941455841,7.543031599999999,0,0,4.90076740582784,33.546756,18.00713857014974,66.950489,6.319989720980327,126.58168,9.1561662,496.95969645182294,4699.2729,1221.1007995605466,180.671117460758,314.6979675292969,673.8062290292883,0,0,0,0,1.1860103805859883,4.5322657999999985,0,0,0,0,0,0,8.82508766153478e-6,8.2145095e-6,0.1822890266776085,0.82044371,0,0,4.8756590210056555e-4,7.995574900000001e-4,0,0,0,0,291.1870447794596,3.067693130108469,24.39548109092037,129.82302004314178,16.407730767105924,22.724482756858983,-0.16036527917436896,0.05499937882026037,0.24595899,37118.77108719959,0.1794890063461402,0.020458318758755922,0.006640162099999999,0,0,0,0 +1957,2.384773000160331,1.4774945790842637,0,0,5.084522572350242,0.489309956630071,0.18587639,46.82995192209879,102.11597,39.52009836832682,2.8571248,1.4974753856658936,4.9612019,3.2499133944511414,7.3765313,0,0,6.239397327105205,32.871446,20.977540334065754,72.204141,6.364989757537842,127.41838,11.488509,500.6978174845378,4733.2024,1235.8001810709634,186.0555677386444,314.9919611612956,695.9496130566932,0,0,0,0,1.3464653591314952,5.9875108,0,0,0,0,0,0,8.871051704772981e-6,8.2451464e-6,0.2464121406277021,0.92977447,0,0,4.901053131713221e-4,8.029950599999999e-4,0,0,0,0,291.5120417277018,3.1227659361540883,25.10938270800668,135.59152056062854,17.202288510585237,23.82634944628376,-0.16301679726312407,0.06499945092946291,0.24603635,38873.754310972414,0.1791495207576567,0.019499980999777716,0.004342369,0,0,0,0 +1958,2.4670954688378814,1.5285973472099872,0,0,5.060488042524024,0.4977349440256755,0.17928487,48.83994928995768,107.206,39.715097745259605,2.9954591,1.6274844805399578,5.6330503,3.4969948132832847,6.9087313,0,0,7.567232608795166,34.746284,24.184339841206867,80.925329,6.409992456436157,128.42262,14.781202,504.5039291381836,4771.3965,1247.4204813639321,188.38553994967657,315.344965616862,661.285485841322,0,0,0,0,1.5845945576826732,7.120203999999998,0,0,0,0,0,0,8.917015748011181e-6,8.2860065e-6,0.3196182499329249,1.0371306,0,0,4.926447145408019e-4,8.0761087e-4,0,0,0,0,291.7720464070637,3.18418831910038,25.26871426472444,129.20858361180427,17.043104741234497,22.24665040214954,-0.16566831535187918,0.07499935726324718,0.24611309999999997,39341.991357154206,0.1788067540033275,0.018499995737026136,0.0026052944,0,1.5255345e-5,0,1.550744e-4 +1959,2.6036729140488357,1.4736682886389454,0,0,5.186762349282971,0.505239948630333,0.18081021,50.97114499409994,112.29185,39.90489800771078,3.2476716,1.777483691771825,6.388022599999998,3.7265921036402383,6.8760458,0,0,8.797123988469442,43.506257,27.60905106862386,93.983467,6.4542984167734785,129.47587,18.063698,508.3637110392253,4808.726,1257.320078531901,192.68675731110378,315.8069661458333,665.4367222123257,0,0,0,0,1.9060347974300385,8.0253807,0,0,0,0,0,0,8.962979791249381e-6,8.3259739e-6,0.40169936915238696,1.1424694,0,0,4.951841207609201e-4,8.121238e-4,0,0,0,0,291.98704274495435,3.250322629161094,25.784568318874836,131.21049744121555,17.515266326606977,22.136950451664426,-0.1683198334406343,0.08499948245783646,0.30755864,41319.47350993611,0.1784607567238176,0.017499990140398342,8.684612300000001e-4,0,1.2225318000000002e-4,0,0.0012460364 +1960,2.728446849074149,1.4615195318866923,0,0,5.288213084302709,0.5130949467420578,0.17259465,53.211243311564125,117.2597,40.118597666422524,3.3209398,1.9469429155190785,7.3201718,3.938670496145884,7.2392631,0,0,10.23712126413981,56.28148100000001,31.60536019007365,107.5417,6.504989147186279,130.53321,21.750437,512.2328440348307,4847.0424,1264.1198730468748,197.26110047577146,316.62496693929035,668.5656629833454,0,0,0,0,2.2494065960248313,9.5885732,0,0,0,0,0,0,9.008943455531456e-6,8.3712137e-6,0.49244747559229535,1.2458107,0,0,4.977235318316767e-4,8.1724438e-4,0,0,0,0,292.2830454508463,3.323928526213912,26.127946785499923,133.33681491027784,18.137986763264845,22.068663139398165,-0.16971698815179884,0.09499939220647018,0.43040209999999995,42970.73471143208,0.17811146430862335,0.016499992460012436,-8.684921e-4,1.2107990556842196e-6,2.3072394e-4,6.978449713794059e-6,0.0023750868 +1961,2.7521018504089363,1.531158201999545,0,0,5.280187774913458,0.5207299540440241,0.16861102,55.563539822896324,121.58986000000002,40.34249718983968,3.4304351000000004,2.141221841176351,8.4287849,4.1636671622594195,7.4514735,0,0.0018618006,12.167853911717733,70.618557,36.23666445414225,123.80387,6.554991841316223,131.26152,27.278298,516.0400848388672,4864.0212,1269.4615275065103,205.13834130452685,317.29896291097003,701.0053452576341,0,0,0,0,2.637653867403666,11.884386,0,0,0,0,0,0,9.054907422978431e-6,8.367736999999999e-6,0.5916525920232137,1.346892,0,0,5.002629332011566e-4,8.1675024e-4,0,0,0,0,292.60204569498694,3.545375735491367,26.889738501199272,143.56526348207862,18.738996990578176,23.373573142607228,-0.17042405828273247,0.10999903393288453,0.55328481,48370.747602751726,0.1748425912224242,0.015499991675217947,-0.0026053238,9.686392521264983e-6,2.4913556000000003e-4,5.5827597558770016e-5,0.003546415 +1962,2.868392578555052,1.520724683920321,0,0,5.268371108547883,0.5278749416271845,0.17112099,58.007436752319336,125.71015,40.56609694163004,3.6249821,2.365680515766144,9.612767800000002,4.398663679758708,7.580527900000001,0,0.045181371,14.639893293380737,86.214551,41.47677803039551,144.89716,6.604418396949768,132.4011,32.049021,519.7264709472656,4895.6486,1282.5712890624998,207.2122991826155,318.0439631144206,678.8492233714484,0,0,0,0,3.1291542649269104,14.500089,0,0,0,0,0,0,9.100871466216631e-6,8.405538e-6,0.699107696612676,1.4460951000000002,0,0,5.028023394212747e-4,8.2101348e-4,0,0,0,0,292.9450378417968,3.678783292234149,27.391344297603926,140.1058920148071,19.332929386112895,22.550094638193304,-0.1711311284136661,0.12999879072109857,0.61483924,49373.4626711147,0.018878477916170075,0.01449999026954174,-0.0043425207,1.9372784966738738e-5,2.5250226000000003e-4,1.1165519572386984e-4,0.0049206759 +1963,3.036186160713145,1.5272093107248352,0,0,5.437875742912039,0.535164937376976,0.18314033,60.507436434427895,128.88013,40.80479653676351,3.9881367,2.6255189975102744,10.949721,4.63597031434377,7.911085400000001,1.4331860863118587e-4,0.24720738,17.71703306833903,101.83231,47.60459232330322,167.67883,6.659987608591716,132.99126,37.52532,523.2439982096354,4904.2354,1300.79057820638,216.19226558975322,318.64996337890625,741.3196016175318,0,0,0,0,3.753723760445913,17.280228,0,0,0,0,0,0,9.146835509454831e-6,8.3926404e-6,0.814602812131246,1.5429261,0,0,5.053417504920313e-4,8.194336200000001e-4,0,0,0,0,293.32704925537104,3.8037763068903097,28.744647607968993,156.13095399196706,20.520847373631998,24.609210933874923,-0.1718381985445997,0.15499834592143694,0.55366285,50918.547922521546,-0.7158139715324602,0.013499994995072484,-0.0078699311,2.905917745010811e-5,3.5209498e-4,2.0954201075558862e-4,0.005972759100000001 +1964,3.1935857269729495,1.5182530872301747,0,0,5.25990946510033,0.5425249338150024,0.20130699,63.07753308614095,129.76928999999998,41.05469576517741,4.432625700000001,2.9195976853370667,12.657214,4.877436995506287,8.477894599999999,0.003477728799528753,0.46848862,21.421671549479168,116.30072,54.79980500539144,189.8766,6.715564290682475,134.07707,49.914046,526.5386403401693,4933.087,1317.3704528808591,216.5561629558192,319.3329620361328,689.1114600087734,0,0,0,0,4.5027817487716675,20.771971,0,0,0,0,0,0,9.192799552693032e-6,8.436046300000001e-6,0.9379299183686575,1.6379776,0,0,5.078811470108727e-4,8.243428e-4,0,0,0,0,293.6850484212239,3.94575429191722,28.607416327576342,146.45477556142896,21.250626659387255,22.37762398460907,-0.17254526867553333,0.17999867846568426,0.49245891,52831.63766662475,-0.6203003960549346,0.012499973177909851,-7.597085899999999e-4,3.8745569933477476e-5,0.0010303711,3.218187654662567e-4,0.033580017000000004 +1965,3.342046614628416,1.5494103546996891,0,0,5.2700102527121695,0.5508499294519424,0.22504179999999996,65.62683486938477,129.69213,41.342495918273926,4.9089192000000015,3.2579756379127502,14.528257,5.135173638661702,9.0358315,0.019166271900758147,0.58010695,25.709799925486248,130.83983999999998,63.0290142695109,213.3919,6.764422178268433,135.19804,70.507935,529.5773620605469,4953.0596,1331.0602823893228,222.666415702745,319.81596120198566,709.3122962703268,0,0,0,0,5.391107479731242,25.0603,0,0,0,0,0,0,9.238763595931232e-6,8.4640089e-6,1.0688820282618205,1.7308461,0,0,5.10420553230991e-4,8.274721400000001e-4,0,0,0,0,294.04503885904944,4.115195266374096,29.972153677829578,153.40539119426893,22.08301053841794,22.64997293102378,-0.17325233880646695,0.1999987723926703,0.4926084,54063.80178149757,-0.2927293197139612,0.01137502615650495,0.015948649,5.60693097213516e-5,0.0021406888,4.596758565943067e-4,0.11324642 +1966,3.501720550339981,1.5517652807392261,0,0,5.285174795936927,0.5597749253114065,0.26721734,68.0712407430013,129.70542,41.65249570210775,5.6248074,3.653163174788157,16.547774,5.413369536399841,9.5008952,0.039499382954090834,0.77191369,30.50373379389445,147.99606,72.2479305267334,240.15802,6.8193081219991045,136.46754,94.258765,532.3371022542318,4976.4474,1342.240509033203,226.31069580205852,320.8799565633138,710.941466458106,0,0,0,0,6.472539742787679,30.477075,0,0,0,0,0,0,9.284727639169432e-6,8.5066137e-6,1.2072421511014302,1.8217969,0,0,5.129599594511092e-4,8.322890299999999e-4,0,0,0,0,294.45304361979163,4.31119735595728,31.553067549575943,156.4949809106804,22.847791402233124,22.434297142441455,-0.17395940893740058,0.21999895945191383,0.61550021,55269.31676159744,0.11690965230767818,0.010999986358607808,0.069786165,1.1921713667106815e-4,0.0031030971,0.0018055206843807052,0.20275693 +1967,3.6259660139730605,1.595865385821404,0,0,5.390458849300692,0.5701449265082678,0.32052973,70.42624282836914,129.68847,42.00469557444254,6.3547572,4.101901113986969,18.918172,5.707025408744812,9.9208119,0.06371349437783162,1.0373000000000001,35.86647764841715,169.42177,82.6101468404134,269.58286,6.879989941914876,137.66763,116.32544,534.8238169352213,4995.4184,1354.2715555826821,232.33314648826578,321.4799575805664,746.2098208746951,0,0,0,0,7.774255792299907,36.036945,0,1.246032e-5,0,0,0,6.8991852e-5,9.330691682407632e-6,8.544612699999999e-6,1.352812260389328,1.9105949,0,0,5.154993656712273e-4,8.365750900000001e-4,0,0,0,0,294.8600463867187,4.481777634666587,33.1677760500894,164.77531621039864,24.19623737938871,23.585293537089132,-0.1746664790683342,0.23999873300393423,0.7384486,54762.89709618766,-0.07633744709933905,0.011131961752350131,0.24404072,2.235555645408264e-4,0.0037542491,0.005476358346641064,0.26151045 +1968,3.8345952658425997,1.5469930909111562,0,0,5.370373092170119,0.5827049265305201,0.40423022,72.69054730733235,129.73308,42.41149616241455,7.332441499999999,4.61564834912618,21.713594,6.014501253763835,10.295172,0.09872918141384919,1.3673824,41.93913205464681,195.13757,94.25966453552246,299.7143700000001,6.939991156260173,139.24379,133.08156,537.0335591634115,5029.5667,1371.6504618326821,235.33540266621623,322.3889567057292,740.4824182303034,0,0,0,0.0092379775,9.383843421936035,40.359034,0,8.8038453e-5,0,0,0,4.8559101e-4,9.376655725645833e-6,8.6257131e-6,1.505382388830185,1.9976935,0,0,5.180387718913456e-4,8.458288900000001e-4,0,0,0,0,295.2690455118815,4.618299686146145,34.3815728401946,165.09570877308497,25.41081254044139,22.825796914652,-0.1753735491992678,0.26999801645676297,0.67731523,56868.37887037226,0.0011209927611538926,0.014528773414591948,0.44305972,3.60778462588011e-4,0.0055431793,0.010674211041380962,0.29037411 +1969,4.0615677268044985,1.5437089021510264,0,0,5.404091612813001,0.5976699193318685,0.5206411,74.8699499766032,129.76058,42.862396240234375,8.483171800000001,5.203845143318176,24.938178,6.334147016207377,10.638634,0.143262746433417,1.7120901000000002,48.922607421875,220.72612,107.28918075561523,327.55328,6.999991575876872,140.05867,146.61896000000004,538.9712473551432,5026.2804,1389.3417561848955,239.18485161256538,323.25095621744794,747.0297315350706,0,0,0,0.18322115,11.191637754440308,44.144508,1.2165773692155806e-6,9.3679956e-5,0,0,9.679108093981389e-6,5.038868e-4,9.422619768884033e-6,0.0098248184,1.6647424797217052,2.0817369,0,0,5.205781781114638e-4,8.450532600000001e-4,0,0.0011288309,0,0,295.681042989095,4.732615322675832,34.96181250811188,169.68157132242786,26.065069005292788,22.100489511661433,-0.17608061933020144,0.29999837279319763,0.67751619,58467.81079627766,0.07485921849687786,0.02660746080800891,0.55613635,5.134661914780736e-4,0.03648951,0.016677813526863854,0.30862539 +1970,4.323514044182916,1.5319290688025449,0,0,5.549708797290366,0.61744491259257,0.6581691999999999,76.96995290120442,129.69302,43.40139643351237,9.5318801,5.882411241531372,28.576904,6.6643119653066,11.00827,0.2035404990116755,1.8909658,56.95325533548991,245.38621,121.64918899536133,354.60102,7.059993505477905,141.52757,173.56366,540.6648610432943,5048.3132,1411.1005147298174,244.41839554629246,324.78295644124347,781.037552297546,0,0,0.001065175359447797,0.60795801,13.09374705950419,49.037394,8.557121153292732e-6,2.4685116e-5,0,0,6.793739824691632e-5,1.0851205e-4,9.468583508957332e-6,0.036330653,1.830672601858775,2.1644992000000003,0,0,5.23117584331582e-4,8.520249e-4,0,0.0042255569,0,0,296.0980377197265,4.714190307707546,37.469578527471604,179.6859546683907,27.824084069544437,22.780224323226346,-0.17678768946113504,0.32499857246875763,0.80047128,61529.779790205444,0.07891007914399001,0.042955159209668636,0.64373178,7.886756357038394e-4,0.11813403,0.022781516425311565,0.34789664 +1971,4.510244869270977,1.4055542417708098,0,0,5.703748992338275,0.6424449036518732,0.82992065,78.98995844523112,129.60227,44.007896423339844,10.711494,6.6607770919799805,32.729139,7.00438114007314,11.452529,0.27441523348291713,2.1402118,65.84650834401448,276.44309,137.13820521036783,387.53989,7.119412302970886,143.1196,217.72405,542.1264394124349,5067.5026,1431.1209615071612,249.2895330837902,325.3999557495117,796.2029425301106,0,0,0.021073126544555027,0.8564575999999999,15.120055437088013,55.790888,1.0061302646136028e-5,1.3254363e-5,0,0,7.890220331319142e-5,4.2594654e-5,6.875001223913083e-4,0.064586906,2.0029827058315277,2.2451174,0,0,5.256569905517002e-4,8.5867175e-4,8.593750105016322e-5,0.00774384,0,0,296.52204386393225,4.663522046368115,38.13342515565109,183.53555789915328,28.617263975091056,23.195116011534044,-0.17749263314257094,0.3549981142083804,0.86210262,61716.79562857309,-0.03213341039414315,0.06120223210503658,0.78786166,0.003391635837033391,0.2232129,0.029181620261321466,0.40686343 +1972,4.706494311867816,1.3269371347118073,0,0,5.971153374722522,0.6740748832623163,1.0559028999999998,80.9293607076009,129.65777,44.68869590759277,12.24311,7.553642193476359,37.465523,7.356679677963257,11.97792,0.34821991870800656,2.5517628,75.6708869934082,314.22879,153.8562266031901,427.68026,7.184317310651143,144.52172,267.60333,543.3849334716797,5079.1924,1449.2900187174478,257.2102054265862,327.3489532470703,868.4735707547015,0,0,0.06999984166274469,0.87667663,17.352389971415203,61.456633,1.0390318796756523e-5,1.3479254e-5,0,0,8.037302359298337e-5,4.3040854e-5,0.0025000001187436283,0.082580189,2.181452830632528,2.3233295,0,0,5.281963967718184e-4,8.6363194e-4,3.124999990783787e-4,0.010359322,0,0,296.9550399780273,4.9307421199057115,39.56446297363227,196.66552470793948,30.236221506038817,25.52743453960084,-0.17813366446922693,0.3899978771805763,0.86237286,63465.10424037791,0.049119653936524114,0.08156623815496762,1.0951867,0.010107177193276584,0.31882408,0.0366138257086277,0.4721474 +1973,4.975651785811607,1.318385656312959,0,0,5.895831575895738,0.7138798783222834,1.3307870000000002,82.79306348164876,129.79157,45.45469538370768,14.085332,8.576456785202026,42.979262,7.723947962125142,12.585161,0.43801355610291165,2.92937,86.87261581420898,338.0693,172.25726318359375,454.71123,7.255663514137268,146.54158,301.85553,544.4634094238281,5118.3195,1462.860677083333,260.2947249743578,329.90895080566406,826.0293132269293,0,0,0.11499984314044316,0.82240702,19.92769479751587,65.420113,1.0719714812997458e-5,1.3772853e-5,0,0,8.184554402153783e-5,5.4973948e-5,0.005062500150719036,0.090214925,2.365882933139801,2.4006492,0,0,5.307358029919366e-4,8.768767699999999e-4,6.328129966277629e-4,0.011968111000000002,0,0,297.3990402221679,5.050826137007638,39.9571427129374,186.52593193281965,31.240096880428535,23.455648107310147,-0.17877469579588295,0.42499801019827527,0.92401065,66317.71188639547,0.15522883058251086,0.1075315357496341,1.5930673,0.02092159477372964,0.39726303,0.04518213029950857,0.54390644 +1974,4.948149198232062,1.2905489996591684,0,0,5.971643938399686,0.7649898727734884,1.4191691,84.59316635131836,129.76026000000002,46.34259541829427,14.311146,9.748060464859009,49.247959,8.108936508496603,13.447442,0.5431961392362913,3.5184015,99.53890228271484,340.6055,192.56424713134766,453.22872,7.319503704706828,147.80664,327.35544,545.3698170979818,5113.8208,1476.140909830729,261.8082770537653,330.7559534708659,824.6214022160059,0,0,0.16126984233657518,0.76119143,22.525582949320476,71.666995,1.1049491528562308e-5,1.3967525e-5,0,0,8.331976338619522e-5,0.052416219000000014,0.008000000069538752,0.08706316300000001,2.556043048699697,2.474116,0,0,5.332752092120548e-4,8.7789564e-4,9.999999989910673e-4,0.01237887,0,0,297.8550415039062,5.0344191249004195,40.69211663930812,183.60052508219061,31.077406046065626,23.599624622127063,-0.17941572712253898,0.45999792218208313,1.0394718,65371.62666713273,0.10279066121396813,0.14653477569421133,2.1806547000000003,0.034983893080304064,0.67241083,0.05499073459456364,0.65809554 +1975,4.928622399679322,1.303204963553737,0,0,5.9984313740411705,0.8284898797671,1.4004084,86.32876841227214,129.65616,47.35769589742025,14.321042000000002,11.09574286142985,57.565811,8.51440660158793,14.538442000000002,0.661696677406629,4.217686799999999,112.33176358540852,337.71465,213.23522440592447,440.16522,7.389227231343587,148.91662,384.99818,546.1371358235677,5104.4298,1491.7409667968748,263.05854864525753,330.8269551595052,816.9194858581777,0,0,0.19499984259406725,0.80304672,25.179124514261883,79.153904,1.1379648640286177e-5,1.4151174000000003e-5,0,0,8.637850078230258e-5,0.19213674,0.010937500201786557,0.07287558599999999,2.7517531315485635,2.545125,0,0,5.35814615432173e-4,8.7775104e-4,0.0013671900087501854,0.011478755,0,0,298.32604471842444,5.2068127673577305,41.476725896945794,177.51306730736252,30.76637271161256,23.129653790732366,-0.180056758449195,0.49999761829773587,1.1646458,64182.768823129416,-0.20496901654447228,0.20330782110492387,2.8018363,0.051680791191756725,1.2682709,0.06614344008266926,0.8287437 +1976,5.1946610219984874,1.3202053582443383,0,0,6.237496531818932,0.8872098724047343,1.5554771,87.99307123819987,129.63321000000002,48.276095390319824,16.011714,12.636435270309448,57.24638,8.955106973648071,15.386466,0.8118081788221995,4.743647,124.73074785868327,329.27602,232.99722162882486,426.10768,7.465574224789937,150.23158,475.43135,546.7914225260416,5104.2152,1509.1109517415362,269.9482096580869,331.5449498494466,856.063491529847,0,0,0.22999984274307886,0.82394648,28.196115493774414,92.664426,1.171018743661989e-5,1.4358855e-5,0,0,0.007432716122517983,0.33759564,0.01350000019495686,0.047412585,2.9527832667032876,2.614347,0,0,5.383540216522912e-4,8.8049315e-4,0.001687499995265777,0.0091593417,0,0,298.8140436808268,5.352361696512741,42.5213569666273,186.24742729810202,32.28663209283211,24.40571791742575,-0.18069778977585105,0.5443803270657858,1.4235416,67153.40876186565,0.042795931279707856,0.27751198535164195,3.4107057000000003,0.08715698743859927,1.8435573,0.08035514317452908,0.98712807 +1977,5.364428639868427,1.3520979710065895,0,0,6.353178768287844,0.9490798612435659,1.6923549999999998,89.59247398376465,129.63647,49.29249509175619,16.762577,14.47871708869934,55.875241,9.431879123051962,15.71703,0.9836416741212209,5.1782548,136.7956975301107,306.11158,251.99420674641928,404.2283,7.534413854281108,152.04263999999995,533.0325,547.3396860758463,5117.6518,1527.680948893229,274.03015240270713,333.3529459635417,868.4313096928761,0,0,0.2649998404085636,0.93269902,31.407798290252686,109.06413,1.2041107462816095e-5,2.1399971000000003e-6,0,0,0.026895795327921707,0.42456315,0.015312500220413009,0.022180513,3.1589433749516806,3.5323931000000006,0,0,5.408934278724095e-4,8.8740955e-4,0.0019140600246222068,-0.0065053902,0,0,299.3190358479817,5.499463794793741,43.27485687581617,189.22553225601726,33.05929028320198,24.38724427025082,-0.181338821102507,0.5945511807998022,2.1583469,67777.19082397268,0.12845401331973466,0.3696969747543335,3.8826089,0.1504269844541947,2.1420878,0.09829714894294739,1.0852977 +1978,5.581802902559232,1.2993019000302957,0,0,6.57904481781486,1.0211598575115204,1.7691766,91.13187662760417,130.48848999999998,50.43949508666992,16.898235,15.96304734547933,72.245349,9.926631212234497,15.529417,1.1736451586087544,5.5214165999999985,148.00458017985025,278.45958,270.00118255615234,383.9896,7.609319130579631,153.91731,529.79652,547.7978973388672,5132.0601,1546.890899658203,276.33335446294114,335.00994873046875,897.405148357044,0,0,0.29872983197371167,1.277913,35.72357686360677,112.78031,1.237240955257827e-5,-6.2543157e-5,0,0,0.054136695029834904,0.45249588,0.016000000139077503,-0.059867027,3.3700035015741983,4.661461,0,0,5.434328243912508e-4,8.9480636e-4,0.0019999999882808575,-0.021383103,0,0,299.8450393676757,5.625120895967197,44.240892074424366,192.93479554653743,34.269193302792054,25.019744191924026,-0.18197985242916306,0.6599957346916199,2.8286901,68023.041876235,0.1506635484397897,0.4763076677918434,4.2701212,0.23020097613334656,2.1599238,0.1185080527017514,1.1209156999999998 +1979,5.730732140077329,1.2523176484359615,0,0,6.677231649399466,1.094819853703181,1.9203395,92.61308097839355,128.37989,51.557394663492836,17.898313,17.68312692642212,94.634628,10.421233495076498,14.991238,1.3782646457354228,6.1020639,157.6384735107422,271.13342,286.4941584269206,394.80033,7.689991553624471,155.58903999999995,518.50501,548.1820729573568,5138.651,1566.1608581542966,281.6000656120118,336.60494740804035,900.4664227016348,0,0,0.34251976509888965,1.7595655,40.48909950256348,113.22088,1.1487397311308692e-5,-2.0391387e-6,0,0,0.0849026944488287,0.42017076,0.016000000139077503,-0.17766763,3.7300036549568176,5.0937882000000005,0,0,5.459722354620075e-4,9.0008302e-4,0.001000000006267025,-0.0099825707,0,0,300.39303843180335,5.807081798508845,45.13478108156769,196.0169028731842,35.013987182511805,25.212479862598272,-0.18262088375581906,0.7699926396210989,2.8296177000000005,69119.86371174049,0.1473114304822424,0.5893768072128296,4.6513697,0.31519197672605515,2.0579417,0.13952905808885893,1.1328091 +1980,5.650947966828631,1.2441357938650308,0,0,6.618387124854692,1.1735098262627919,1.9633226,94.1031723022461,125.08456,52.72269503275553,17.664267000000006,20.167388280232746,120.23426,10.897735516230265,14.760860999999998,1.5939541260401409,7.2362595,166.07752100626627,276.09356,302.1822509765625,398.43779,7.769993821779887,157.04196000000005,513.02719,548.5012359619141,5131.8984,1584.940734863281,283.34647023515436,338.70494588216144,890.5114951943987,0,0,0.41178564727306366,2.0330453,44.551489194234215,118.29604,5.5193815645300974e-6,7.9351775e-5,0,0,0.11494099286695321,0.35605477,0.011000000056810677,-0.12485274,4.130003849665324,5.1732709,0,0,5.485116416821256e-4,9.0155542e-4,5.107808434938003e-5,0.0031252635,0,8.167018e-5,300.9650395711262,5.872959052014542,45.97852705498147,194.39124204024887,34.76440146642314,25.232545658292864,-0.18326191508247508,0.8899930367867152,2.8304822999999995,68783.84556601176,0.109190156973947,0.7097166180610657,5.1129913,0.39410896847645444,2.1545661,0.15989606082439423,1.1562096000000002 +1981,5.539335981414791,1.2528135487313492,0,0,6.577782229862206,1.2601898312568665,1.7391266,95.31219546000163,126.52811,53.97579542795817,16.187192,23.256973266601562,128.45086,11.349838097890219,13.920115,1.8424933552742004,8.637244699999998,174.73850377400717,271.00597,319.4201304117839,403.07178,7.849401632944743,158.51506,516.86109,548.7653757731119,5123.4643,1602.6506245930987,279.78942071631377,340.05894978841144,875.7816094417443,0,0,0.5049996227025986,1.96562,48.66220633188883,122.37567,1.075440430516513e-5,1.7112573999999998e-5,0,0,0.1399999943872293,0.32601335,0.0030000001109632044,0.11779446,4.560003956158956,4.4274361,0,0,5.510510430516055e-4,9.0259513e-4,1.2761924275158285e-4,0.038309698,0,6.9675129e-4,301.56203460693354,5.805407445505892,46.37436562130664,189.16861385900194,34.11541673008395,24.873295971397052,-0.1839029464091311,0.999993642171224,2.9541119,66688.82721964004,0.0757372745424995,0.8352456837892532,6.0090214999999985,0.4687449559569359,2.4863888,0.1800000655154387,1.1742814 +1982,5.477249508472458,1.2581454775126868,0,0,6.915258577522967,1.3425698479016621,1.6205522,96.45029131571452,129.38621,55.10939598083496,15.97381,27.298911412556965,128.57689,11.805440743764242,13.885459000000001,2.144632577896118,9.2748324,183.27747344970703,277.72577,335.1432698567708,391.79861,7.934991518656413,159.18065000000001,532.93449,548.9834696451823,5083.3728,1618.7305399576821,287.6693153882337,340.64394124348956,967.4292982868147,0,0,0.5972496171792349,1.6573363999999997,52.764092127482094,125.26367,1.2755718368377226e-5,-8.228379000000001e-5,0,0,0.1600000001490116,0.33083911,0.0020000001228860733,0.22216908,4.970003763834636,3.5575865,0,0,5.535904541223621e-4,8.9426293e-4,2.6965544202539604e-4,0.066661524,3.741915871084226e-6,0.0015785006,302.18704223632807,6.043062727559764,47.66689067623099,206.8844647776702,34.15609140912993,28.272205714382924,-0.1845634619404803,1.1199926137924194,2.9550432,65532.301753925305,-0.15641584008740989,0.9728992034991583,6.4693449,0.5532129456599554,3.0131287,0.2000000737607479,1.352411 +1983,5.483062192797363,1.4330241763538591,0,0,6.625402213840496,1.4098998308181763,1.8456854,97.67579015096028,130.75988999999998,56.16269588470459,16.384525,30.830673376719158,150.74703,12.194235563278198,15.564841,2.4999918937683105,9.057039,191.16732279459634,353.29433,352.50609588623047,385.70972,8.019996364911398,160.09108999999995,547.19948,549.1685434977213,5047.3484,1632.620147705078,281.617658355317,342.26594797770184,862.0214943304857,0,0,0.672999694943428,1.3378778,56.786487897237144,129.4055,1.1691284877694367e-5,-2.7098867e-5,0,0,0.17999999349315962,0.33559498,0.011000000212031106,0.09748991,5.270004232724507,3.8040369,0,0,5.561298603424802e-4,8.871233e-4,0.0029999999581680945,0.024088349,3.1704332892938204e-5,0.0020178464,302.84204101562494,6.065834079500119,47.64540210423812,183.83582233478342,33.285128980692804,24.459513427275525,-0.18530513482030356,1.2399930556615193,3.2014371,64552.41617363238,-0.6775945263802521,1.144959529240926,6.0034055,0.651974951227506,3.8198142,0.21950007850925127,1.378774 +1984,5.619005090796103,1.4612248534423995,0,0,6.8150189551184415,1.4820398290952046,1.954181,98.93998591105144,134.9934,57.26739501953125,14.927399,34.79922644297282,167.86607,12.642924229303995,17.177695999999994,2.8499913215637207,10.537606,199.96714146931967,352.61795,366.79923248291016,438.30954,8.103740215301514,162.15076000000005,546.6524,549.3226318359375,5054.1956,1643.5008544921873,285.00304516787423,344.00794728597003,889.7020107049092,0,0,0.7217137465874354,1.2391705,60.742489178975426,137.14096999999998,3.96903745780719e-6,8.659051799999999e-5,0,0,0.19999999552965164,0.48356263,0.017000000225380063,0.027417786,5.530004461606343,4.8805394999999985,0,0,5.586692617119601e-4,8.9282411e-4,0.005000000004656613,-0.04014793,7.402270027038564e-5,0.0043071608,303.5280380249023,5.996375963335671,48.69349353439086,189.33352573144714,34.32486538148798,25.326276357675727,-0.1860468077001268,1.3599929014841716,3.5706830000000003,65309.89915296105,-0.2289078353791943,1.295939067999522,6.3412338,0.7757129470507304,4.798725900000001,0.24612508217493692,1.1329507 +1985,5.678895002751574,1.4997437788078463,0,0,6.922761988583978,1.5687698423862457,1.930951,100.18199602762859,138.44665,58.3761952718099,13.863624,39.652387619018555,191.20489,13.144109964370728,18.042992,3.187290926774343,12.093107,214.03345489501953,321.80334,383.26725006103516,487.46531,8.199989477793375,164.43684,559.24581,549.4526824951172,5072.7864,1655.9104715983071,285.6752697155976,345.4589538574219,906.9368199480392,0,0,0.7549997667471567,1.4290266,64.80020904541016,148.48134,8.568774148898228e-6,2.1606645e-4,0,0,0.21999999756614366,0.56320674,0.01700000014776985,0.085787554,5.8700045347213745,5.2553933,0,0,5.612086727827167e-4,9.0213205e-4,0.003999999995964269,-0.006224988000000001,1.1811007364788868e-4,0.012966035,304.2470397949218,5.996554239215087,49.41563613245486,190.4568856663394,34.861509200143864,25.83243997550224,-0.18678848057995007,1.4999912877877553,3.6945657,65474.087150351224,-0.011715700559269468,1.4159816404183705,7.686271400000001,0.9354569266239802,5.5359652000000015,0.26520808786153793,1.1864916 +1986,5.784334367519234,1.5301135694160417,0,0,7.0137036621234845,1.6502498388290405,2.0447892,101.67297554016113,134.66824,59.28379599253336,14.595216,44.608107248942055,226.48099,13.69979476928711,17.343175,3.6499905784924827,11.156209,222.3396848042806,363.19165,402.41221872965497,561.19711,8.294995307922363,166.53505,605.54478,549.5567423502604,5079.9439,1668.7911478678384,290.8084487539618,346.90294647216797,914.5218093193049,0,0,0.7879217316706976,2.1480617000000004,69.13964017232259,163.26271,1.2043192891534696e-5,2.1612991e-4,0,6.836250999999999e-4,0.2599999929467837,0.57273931,0.018000000156462193,0.044305139,6.3100047906239825,5.6896951,0,0,5.637480790028349e-4,9.0805661e-4,9.999999941404287e-4,0.03179967,2.603702887427062e-4,0.028102657000000003,305.0020370483398,6.123193922877899,50.21167873708514,195.66522346659664,35.24652923018162,25.9121168517712,-0.18753015345977328,1.6499911447366078,3.9411958,65479.271483930934,-1.4658150072006793e-4,1.5741113722324371,8.619926699999999,1.1329799195130665,5.6626388,0.2791670933365822,1.453026 +1987,5.942054872368608,1.51568933473453,0,0,7.200139154017295,1.7349598209063213,2.1868179,103.0739803314209,140.05915,60.248695373535156,15.122737,50.83082103729248,234.71551,14.25549602508545,15.986362,4.105550249417623,11.176584,233.33564122517905,377.17492,423.347417195638,543.59326,8.389330943425497,168.70781000000005,636.85035,549.6467793782552,5087.8651,1683.749786376953,295.0485146932872,348.77494557698566,952.061149189977,0,0.0011578226,0.8391895890235901,3.2631248,73.98439725240071,177.25124,2.903536521140874e-5,5.821475400000001e-5,0,0.0048785865000000005,0.28999998917182285,0.79616882,0.022000000191231567,-0.099665792,6.710005084673564,6.538606400000001,0,0,5.662874803723147e-4,9.1426979e-4,0.0030000000745834163,0.0083239765,6.904602487338707e-4,0.044783508,305.7930348714192,6.350228641755308,51.33101365968814,203.58517005144802,36.43815818195585,27.251867169865875,-0.18827182633959655,1.7999912301699321,4.3106697,66721.09399661662,0.062169756099630324,1.7711602052052815,9.1692428,1.346309910217921,5.241268700000001,0.29950010031461716,1.7364871 +1988,6.133362796862496,1.5150947746951446,0,0,7.39663506024057,1.8262398143609364,2.2384091,104.16901715596516,134.89421000000002,61.255194981892906,15.295333,57.8955987294515,225.34631,14.756715536117554,14.052169,4.49442990620931,12.063592,244.82575480143228,324.40759,449.32311248779297,433.01446,8.48999317487081,171.54521,645.54402,549.7208353678385,5119.7697,1693.940928141276,298.68549508376714,351.2759323120117,950.4151874289803,0,0.34924766,0.9504593312740326,5.2661192,79.53813616434734,185.3279,3.188543450960424e-5,0.021115007,7.708864601833436e-5,0.06849384,0.32999999324480694,0.88192316,0.02000000032906731,-0.07366243900000001,7.220005750656128,6.627813900000001,0,0,5.688268914430713e-4,9.2784993e-4,0.0030000005305434265,0.034690666,0.001493088435381651,0.060567348,306.624043782552,6.188309996026968,51.72677741877051,203.53222760721053,37.7977892884268,27.185066126098715,-0.18901349921941984,1.9699894785881042,4.6802608,67287.48390226346,0.1102479335964212,1.9729202787081401,10.094657000000002,1.548219899336497,4.7030971,0.32425010204315186,1.770198 +1989,6.211121149262674,1.53212989041127,0,0,7.320233667650651,1.9231797953446705,2.2075539,105.88293329874675,105.50252,62.29139518737793,15.212081,64.49583530426025,212.83728,15.212542057037354,10.119863,4.9499895970026655,11.292045,256.58931223551434,246.46809,468.0721740722656,357.7641,8.589393774668375,174.22363000000001,713.52261,549.7808532714844,5139.3872,1705.6304423014321,302.164174394028,352.89392344156903,930.8467754620427,1.1203966126534699e-4,0.72136249,1.1215790609518688,10.730464,85.39031410217285,189.56819,3.284409467596561e-5,0.31476996,5.449304395976166e-4,0.67304705,0.38999999314546585,0.82629641,0.014000000199303031,0.054397397,7.7600061893463135,6.6572182,0,0,5.713662976631895e-4,0.0060655338,0.0030000010544123747,0.077007399,0.002615397213958204,0.07614778700000001,307.8310241699218,6.264529714671574,52.06403696267891,200.31650520357337,38.13825088093059,26.33140676747172,-0.18975517209924306,2.149989446004232,5.0499664000000015,67312.93275191178,0.14261546154697627,2.1840911904970803,10.904862,1.7223599056402843,4.3864096,0.35575009882450104,1.6702493000000005 +1990,6.186811699323791,1.4450968870559717,0,0,7.508271531599201,2.018889824549357,2.1076967,106.4680290222168,86.426532,63.32119528452555,14.407865,70.81883303324382,176.8456,15.573984305063883,7.0905085,5.40554936726888,10.591201,263.08519744873047,208.25652,482.7560577392578,333.97703,8.694339831670126,176.36773,658.40311,549.8308563232422,5137.248,1717.400675455729,305.27255465213847,354.07293192545575,940.5626313485474,0.03376847004983574,1.5203264,1.4477779567241669,17.768055,90.98358980814616,192.30881,0.002091195086904918,0.96053501,0.0077552789346858235,1.7208698,0.43999998768170673,0.69729352,0.014000000121692816,0.18589003,8.280006090799967,6.6838429,0,0,5.739056990326693e-4,0.02696988,0.005000001498653243,0.018320285,0.004025665286462754,0.091767095,308.68303680419916,6.277152282827942,52.52170067846646,203.0212309920509,38.25721546450458,27.365368354710768,-0.19049684497906635,2.3499877055486045,5.1743108,67094.07179291768,0.14079531171550244,2.425140698750814,10.051338,1.8762499292691548,4.2741531,0.38000010202328366,1.7373255 +1991,6.190131151726644,1.6368601104218738,0,0,8.011536269395817,2.113149801890055,1.982897,105.85304832458496,85.14222600000002,64.34609444936116,12.924815,76.4864673614502,120.64491,15.752021392186483,6.9542228,5.799989104270935,10.775591,267.79015350341797,159.81288999999995,493.7842102050781,286.27307,8.804992516835531,177.30503000000004,474.47964,549.8710784912109,5089.9323,1729.3305562337237,318.7311920514537,355.35293833414715,1129.9838832525568,0.06648059604534258,6.9394223,2.221526563167572,22.06288,96.40249379475911,185.52075,0.03069222376992305,1.727734,0.07582558194796245,2.7251313,0.48999999711910885,0.70613627,0.017000000070159633,0.24819351,8.820006291071573,7.057256599999999,0,0,0.0016515196378653247,0.058141591,0.008000002048599223,-0.073018715,0.005709253367967904,0.10715402,309.23303731282545,6.34494559215869,54.26130892359681,244.42863411026067,39.69249193256378,34.394938327949504,-0.1909628409298788,2.5599875847498574,5.29866,66472.31501729792,-0.4148185776434353,2.665145973364512,9.6580528,2.020599921544393,4.1585749,0.40500009556611377,1.6735462 +1992,6.145912972932644,1.683057085276074,0,0,7.364888993342175,2.20022984345754,1.9500444,104.98307355244954,85.437279,65.2670955657959,11.907588,80.40375582377116,74.361852,15.899934848149618,5.3089984,6.199989080429077,10.120439,270.7759323120117,106.91739,505.86798095703125,227.43518,8.91499400138855,179.3441,361.04368,549.9049123128256,5056.1355,1740.1392618815103,299.4017954744593,356.22894795735675,913.3754185979066,0.1707762268682321,22.26499,3.3005158503850303,24.233416,101.49227841695149,194.06099999999998,0.09482813626527786,2.4767485,0.19600565483172736,4.0250116,0.5199999809265137,1.0018637,0.026000000691662233,0.18194194,9.340006430943808,7.910261500000002,0,0,0.005856849117359768,0.088755914,0.0050000026628064615,-0.030822369,0.007651571494837602,0.12273589,309.7250391642252,6.358476438557756,52.37759098866641,198.23847301394608,38.71717596139569,26.648976889112614,-0.19129755052506844,2.769987682501475,5.4230636,64223.92565128395,-1.6835767484157795,2.8172022501627603,10.784362,2.161349892616272,3.8127392,0.4305000975728035,1.4631107 +1993,6.193394814861415,1.5467274300386273,0,0,7.531122846620259,2.2837098240852356,1.9984803,104.32304191589355,84.458339,66.09139442443848,11.381334,82.41623814900716,50.567396,16.066639582316082,3.463778,6.607129295667012,8.677164900000001,271.1687749226888,84.3251,511.9880956013997,231.9618,9.027161439259848,179.76429,256.33383,549.941884358724,5078.4684,1743.1006876627603,299.4425140657421,356.92495981852215,941.8816353260038,0.7146161670486132,34.33223,4.47598530848821,22.551362,105.4173412322998,208.33854,0.19552044942975044,3.0949997,0.36491671949625015,11.967198,0.5699999282757441,1.5166355,0.0330000047882398,0.157163,9.94000768661499,8.353483800000001,0,0,0.01262219933172067,0.11880940000000001,0.0010666858239953096,0.042782191,0.009837979606042305,0.13825367,310.09905242919916,6.310752016783032,52.78275226171121,203.77578316226604,39.74372708975235,28.114996259780565,-0.19163226012025816,2.9899867177009583,5.424762,63195.55051984089,-0.8170844043492784,3.0058298110961914,11.612337,2.2925199468930564,3.3180441,0.4508330797155698,1.2514505 +1994,6.240067755470377,1.5037166846247065,0,0,7.8957327340876935,2.36793980995814,2.1430557,103.57006708780925,86.05046,66.87479654947917,11.006658,83.36027018229167,37.565451,16.09994300206502,4.6095776,6.955350279808044,8.163642999999999,269.62779235839844,85.893495,518.2140757242838,238.58315,9.131617546081543,178.03958,159.08791000000005,545.3847249348959,5003.2837,1748.620371500651,310.25183676250725,358.2539596557617,1060.282744333416,2.2383394837379456,45.287421,5.687364776929219,24.423112,110.94440905253093,237.88968,0.32772576560576755,3.5515517999999995,0.6123692641655604,24.558229,0.6399997919797897,2.3253155,0.03700000451256832,0.20390529,10.600008169809977,8.737967999999999,0,0,0.021451599275072415,0.14808425,0.002012556239302891,0.0083003343,0.012253877784435948,0.15358509,310.80802917480463,6.441827000222701,54.21042306521078,231.0503542937696,40.27137015559246,33.14335063351852,-0.1919669697154478,3.2099871834119162,5.549182599999999,61820.50123949212,-0.0813850082344821,3.2168917854626975,11.303115,2.4025299350420632,2.9604627,0.4654170672098796,1.1962062 +1995,6.3773864537253155,1.4860805049306975,0,0,7.813189501191085,2.4555798172950745,2.3880707,102.88904825846355,80.480245,67.62789662679036,10.682998,83.83788744608562,23.473127,16.137446244557697,5.7076242,7.249991933504741,7.674757700000002,268.1038513183594,86.264975,524.6570994059244,210.72453,9.13146940867106,180.13151000000005,95.783763,552.4202321370443,5016.3948,1755.2296244303384,305.40958889562864,360.2389551798503,955.0363061603086,3.747459292411804,51.095458,6.54466180006663,27.59918,116.0475304921468,230.3453,0.4816569561759631,3.8771223,1.649199257294337,36.211193,0.7599995483954748,3.4395305,0.04200000377992789,0.29614801,11.270008246103922,9.315257,0,0,0.031974499113857746,0.17780027,0.00400000410930564,0.0084622213,0.014884675852954388,0.16982122,311.2790552775065,6.504076135852905,53.416717880413046,206.47424846775004,40.45040793019892,29.71540753892105,-0.1923016793106375,3.429987053076426,5.6736625,60635.50706790533,0.08530772110638411,3.4390769600868225,11.011358,2.4911099076271057,2.8923304,0.475000041226546,1.0842597 +1996,6.511379278926775,1.470193984753465,0,0,7.686339550726493,2.5522598028182983,2.6638414,102.31104151407878,75.256035,68.36059633890788,10.505743,83.94530232747395,13.005309,16.249948978424072,4.6522227,7.557493487993876,5.5242189,266.7558415730794,85.278741,531.4079996744791,170.78176000000005,9.06367564201355,183.44400000000002,59.514335,537.3112080891927,5297.7083,1757.1905924479165,307.29120752307955,362.00496164957684,930.0218807197676,6.036929090817769,53.568363,7.866570234298706,26.00128,124.7284984588623,224.86947,0.6497871528069178,4.0579149,3.2318945129712424,48.538296,0.9399992177883784,4.501452099999999,0.04900001051525275,0.39044285,11.990008195241293,9.7707047,0,0,0.04382059909403324,0.20547879,0.002013620309298858,0.11353612,0.01771567389369011,0.23841137,312.29801940917963,6.542220103334365,53.42127728765462,200.87242078907184,40.45019229181408,28.71419152495162,-0.1926363889058272,3.6599862774213157,5.5527008,59650.01603284395,0.14569222560343534,3.602302074432373,10.510994,2.569999933242798,2.8654227000000003,0.48625003546476364,0.84755661 +1997,6.574573878777592,2.183313990263035,0,0,8.269788742717703,2.6610097885131836,2.8728436999999998,101.2420825958252,75.489912,69.06989606221516,10.417958,83.52113278706868,10.398164,16.362446784973145,3.7691062,7.813324570655823,3.4559389,265.2918523152669,86.34144599999998,534.9630432128906,160.63531,9.140432437260946,180.149,29.550907,542.7740173339844,5288.9251,1761.5010782877603,331.28891975653016,363.25195566813153,1204.992305406782,7.7147689660390215,55.76348100000001,8.959980805714926,29.370536,127.37702624003093,240.5221,0.8248193363348643,4.6266327,5.39930792649587,58.758537,1.2099987765153248,5.5717023,0.06000001293917497,0.427562,12.750008503595987,9.7952259,0,4.9588597e-5,0.05661919961373011,0.25820595,0.004000423466398691,0.1113431,0.02073227148503065,0.31501343,313.18303171793616,6.740456045264001,56.11803188775538,264.67515030448345,41.89315592193428,38.341382315947115,-0.19297109850101685,3.889986495176951,5.7834259,59868.27681505938,0.16690248873741567,3.780295729637146,9.824276800000002,2.650669972101847,2.8566852000000003,0.49000003685553867,0.76826308 +1998,6.590459870606787,1.5412452817195224,0,0,8.412226876444452,2.781449774901072,2.9899069,100.31604703267415,72.916263,69.77859687805176,10.335348,82.96492513020833,12.992477,16.399945735931396,3.9615346,7.95416518052419,2.9318362,263.8838653564453,86.348141,537.6670277913412,156.67666,9.254634141921997,176.1082,23.412636,570.7273610432943,5175.5355,1770.2906799316404,315.332621195414,365.9329554239909,1085.4305991966446,9.836338837941488,55.95678100000001,9.961479743321737,28.471196000000006,134.272824605306,234.46613,0.9994525363047918,6.9049469,8.110631505648294,70.04979200000001,1.5299981534481049,6.8917397,0.07300002624591191,0.54029666,13.540009021759033,10.02529,0,3.583493100000001e-4,0.06999999843537807,0.60512272,0.01000000579127421,0.06915097099999999,0.026339268311858177,0.38665542,313.90700531005854,6.446521520705138,56.589344323708055,232.31801820181306,42.33468433879227,37.81227830332195,-0.1933058080962065,4.1099876165390015,5.6031107,58604.367585517175,0.1710925825750941,3.8873608311017356,10.323837,2.724999964237213,2.701239,0.49000004182259244,0.76943857 +1999,6.661329053494626,1.3034304715400178,0,0,7.698162125432142,2.9081997672716775,2.9607505,99.330872853597,72.96355,70.47599538167317,10.216505,82.38263448079427,14.054175,16.44995387395223,3.9749853,8.04999581972758,3.1538842,262.5458628336589,82.703538,540.1430358886719,140.42543999999998,9.093777736028036,168.37661,18.420173,562.6231740315756,5112.4264,1778.199513753255,309.40837085260006,367.84497833251953,940.7006779859273,11.384798526763916,58.33870699999999,11.354286829630533,25.741051,138.68090184529623,252.31636,1.2204217116038005,8.6848445,11.121968984603882,91.978363,1.9399973253409069,7.9486502,0.08600003769000371,0.7424206999999999,14.300010919570923,10.07373,4.148790035666631e-6,0.0031081514,0.08999998929599921,1.0699013000000002,0.011000006149212519,0.13954925,0.03241546514133612,0.49435229,314.70898946126295,6.28115080714577,54.76937230485621,205.11187816433736,40.94720104039744,30.449171325383368,-0.1936405176913962,4.358643651008606,5.1676463,55523.54473764534,0.17324185027932018,3.9997291962305703,10.262658,2.8026700019836426,2.1509855,0.49000003188848495,0.7706312 +2000,6.893167303200749,1.2013380488633538,0,0,7.457347231717921,3.038709739844004,2.8153943,98.27196884155273,72.65140799999998,71.17349561055501,9.9231457,81.99841690063477,9.4043884,16.499963760375977,3.9867142,8.149996836980185,2.3476517999999995,261.1698455810547,76.330076,542.3829905192057,122.76605,8.829522927602133,165.25876,19.471227,552.0705413818359,5074.2696,1778.0101216634112,310.18680982649335,369.1249745686849,886.5647302341199,13.121398448944092,56.341686,12.102788925170898,25.730152,143.4614372253418,263.60627,1.603711913029353,10.640667,14.691894769668579,99.657424,2.429996371269226,8.598756300000002,0.10600005090236664,0.86319988,15.120010137557983,9.2978389,2.9456416086759418e-5,0.034006926,0.1699999620517095,1.411492,0.013000006632258495,0.2699959,0.040547359734773636,0.57423278,315.7589950561523,6.112229814393959,54.5095965154282,195.32415818527357,41.26362178323956,27.98197839802492,-0.19397522728658584,4.563808560371399,5.2735332,55661.00151337025,0.17458241694797966,4.127887845039368,9.480134800000002,2.8623799681663513,1.9694412,0.49000002940495807,0.77151922 +2001,6.95708692825445,0.961802096435875,0,0,7.591758768528899,3.162919799486796,3.0480682,97.35795720418294,70.65696899999998,71.8547960917155,10.593275,81.4894282023112,5.9590470999999985,16.54997984568278,3.2771364000000003,8.262498617172241,1.1600545,259.5498352050781,68.271466,543.1950124104818,111.64066,8.354893207550049,165.59900000000002,19.806901,542.7083333333334,5094.2258,1776.5307312011716,312.89637869980686,370.67298889160156,881.6703955806449,14.544998407363892,56.36878100000001,13.052591880162558,24.490463,149.25739415486655,261.60586,1.978332092364629,11.075295,19.702295621236164,96.243251,2.9699952602386475,9.8521252,0.132000050197045,0.94275566,15.880009412765503,8.984000300000002,2.597141228761757e-4,0.80619906,0.2699999349812667,1.6540308999999995,0.019000007305294275,0.6107305000000001,0.050659650626281895,0.63867332,316.4930165608723,6.188009183487292,54.709896387749005,196.1877828105409,41.3771755400566,27.8779984365221,-0.19430993688177556,4.776847044626872,5.3282102,56049.16642558323,0.17084303620462507,4.220908443133037,8.8337936,2.8942899902661643,2.3248261,0.49000003188848495,0.74608572 +2002,7.097947294929641,1.0706525114551886,0,0,8.046474186766174,3.2808697621027627,3.4534372,96.3429667154948,70.45667399999998,72.51259549458821,11.982167,80.81803385416667,3.1513602,16.5999755859375,2.420559,8.29999844233195,0.95011524,257.66879018147785,63.484809,543.6559855143229,101.90454,8.333909193674723,161.14055,12.302716,535.3501332600912,5096.5932,1778.960947672526,322.2788312475723,372.83499399820965,970.7244171943499,15.739598194758097,50.843174,13.693090518315634,25.156097,154.4252700805664,270.32175,2.527012268702189,12.214474,23.51545794804891,102.73275,3.5299941102663674,11.617585,0.15900006766120592,1.2107813,16.560010592142742,9.7208997,0.002832789449409271,2.9170651000000003,0.3899999012549718,2.8037817000000005,0.030000012057522934,1.313749,0.06128753939022621,0.73327062,317.1010182698567,6.359556247633107,57.07665954461615,218.4604141242816,41.898783266207694,33.80824328599571,-0.19464464647696525,4.990507483482361,5.4976481,55687.522360887495,0.17652225756277531,4.2806588013966875,8.3685909,2.9381799499193826,2.2797577,0.49000003188848495,0.67660085 +2003,7.424688347669062,0.9010419027374732,0,0,8.2416975979600835,3.4251197973887124,3.16329,95.34536170959473,69.839024,73.28449440002441,12.579882,80.10183588663737,5.7693016,16.59995237986247,1.7336337,8.320768594741821,0.74505988,255.41280873616537,62.27795500000001,543.3510030110677,97.844828,8.222527821858725,158.92828,10.122917,538.8634541829427,5113.7538,1783.5898132324216,328.12422419548386,375.41099802652997,944.7470786126371,16.890098412831623,44.441172,14.409090280532837,25.070909,158.99640528361002,287.30923,2.9139525095621743,15.640539000000002,27.517083009084065,117.40605,4.223822851975759,13.114832,0.1890000912050406,1.560512,17.260011196136475,11.005369,0.06715815638502438,5.226518,0.5027138615647951,4.785689700000002,0.060000043672819935,2.2356391,0.07306782963375251,0.85366012,317.73000590006507,6.4283053046514125,57.69037487838639,214.40339143057142,42.682165561174564,34.362181347359645,-0.19497935607215489,5.207866946856181,5.541719400000002,57641.72369815564,0.165150043379564,4.319008390108745,8.0831154,2.99712997674942,2.0262772,0.48882503310839337,0.60195554 +2004,7.812644316268693,1.0382131676166668,0,0,8.542465507294889,3.577999790509542,2.2029533,94.38845952351888,66.998563,74.13009516398112,12.194883,79.26674334208171,9.216749,16.590060075124104,1.4729968999999998,8.341978788375854,0.75667708,253.1937993367513,60.966802,542.8480021158854,87.654103,8.019330620765686,156.21655,9.7469995,537.7152353922526,5141.4447,1784.230285644531,338.9417722149104,376.9870020548503,945.5469500687323,17.334598859151203,49.135801,15.063492933909098,28.554887,164.7063954671224,307.5767600000001,3.5451226830482483,15.758879,31.54472287495931,125.65071,5.00792149702708,13.097501,0.23300011828541756,2.0510461,18.06001361211141,12.712613,0.23797391975919405,6.6512131,0.8247378170490265,5.4873038,0.12000008982916673,3.1186526000000003,0.08672221936285496,0.97410928,318.3570175170898,6.590470046881482,58.11358476694662,216.68728340618873,44.556855897235216,32.33033041098627,-0.19531406566734455,5.435196399688721,5.6480085,60340.85188935469,0.1719032893302405,4.3401593764623,7.526764599999999,3.035939951737722,2.1192661,0.4857220376531283,0.55294607 +2005,8.093491315549059,1.025657164253795,0,0,8.840128385718105,3.697199821472168,1.9480504,93.41565831502278,63.195607,74.98279317220052,11.060838,78.73161888122559,4.6297025000000005,16.54227288564046,1.8139658,8.346869071324667,0.58070615,250.9148038228353,60.33117900000001,542.1459757486979,71.956593,7.931297580401103,154.12291000000005,7.5405195,538.5567677815756,5209.9819,1783.360432942708,346.39555462360056,378.9070078531901,950.5924444363927,17.678198496500652,53.955471,15.682193517684937,33.447493,170.47949091593424,329.52471,4.231992959976196,16.143675000000002,36.60471884409586,126.49199,5.8813802401224775,12.434284,0.28500013550122577,2.365528,18.97001536687215,14.626529,0.46645688513914746,7.0791974,1.2757697900136311,6.3606922,0.21000011265277863,3.4180583,0.10239290756483872,1.0845927,319.1300023396809,6.6935794842136405,58.883410476258234,218.7880647839753,45.62238086061233,32.723990706702715,-0.19564877526253424,5.6560072501500445,6.2799143,62587.82671838024,0.14980785321635395,4.354827245076497,6.9433284,3.073349952697754,1.8947828,0.481325035293897,0.46971744 +2006,8.358134409609946,1.092642827822681,0,0,8.925648149522456,3.767239769299825,2.045423,92.3141638437907,60.048081,75.77629216512044,10.21735,78.12813186645508,0.6450640999999999,16.514484405517578,1.7510311,8.368909200032553,0.58710647,248.66479873657227,63.03720300000001,540.64996337890625,65.575271,7.679868618647258,152.41471,9.3190485,536.2959035237631,5272.2746,1783.421223958333,356.46968956461853,381.01000722249347,986.1510088892475,18.454998811086018,51.911598,16.647892634073894,36.489809,177.60554122924805,346.30497,4.8289631605148315,19.891066,40.86165841420492,133.41048,6.627838969230652,14.118518,0.3600001533826192,2.3531588,20.050018151601154,12.639849,0.7066208471854528,6.875404400000001,1.6065597534179688,8.3862482,0.32000014930963516,2.5592336,0.1196288987994194,1.1852524,319.9329986572265,6.875606952566932,60.37974252884005,229.89543951646962,46.63913373990392,34.3551466019379,-0.19598348485772396,5.891855637232463,6.9409178,63046.345147395674,0.12455411284421772,4.33484947681427,6.3118449,3.1184199452400208,1.5902358,0.47626903901497525,0.43579597 +2007,8.681148087085731,0.9662119668592635,0,0,9.284494092478702,3.864439765612284,1.7666157999999998,91.12946637471516,57.25715400000001,76.47559356689453,9.3272415,77.3146406809489,4.5089203,16.49068291982015,1.5545493,8.360188722610474,0.78280059,246.4138298034668,64.737513,538.4259847005209,61.623755,7.651655554771423,147.28895,9.6981304,544.8235321044922,5250.6823,1788.9513142903643,355.0225755363805,382.60301971435547,945.8695944358407,19.124198754628498,49.953532,17.730092525482178,37.109679,185.02057011922201,357.26506,5.509383638699849,26.595246000000003,45.3168420791626,127.25708,7.37440820535024,16.399738,0.4300001785159111,2.4154053,21.274523735046387,9.3262891,0.9124758193890253,6.6980995,2.1004197100798288,8.4029745,0.41000018020470935,2.7884,0.13823089003562927,1.2649376,320.64601389567054,6.596141361261144,60.965826091796124,219.70587066030026,48.13085999118788,33.27729799228883,-0.1963181944529136,6.164003173510234,6.9754073000000005,62641.35919619402,0.1214193886258194,4.309016704559326,5.7707437000000015,3.1368099649747214,1.7021554,0.46845003962516785,0.59162888 +2008,8.733139806444965,0.6683379874909382,0,0,9.091850913798911,3.9428598284721375,1.746034,89.87336858113606,56.837697,77.15499623616536,9.0353429,76.47364234924316,8.339533900000001,16.458677450815838,1.9164483,8.382678429285685,0.45696793,244.47682189941406,63.06087700000001,536.3339691162109,57.108479,7.470538298288981,144.47281,6.337644999999998,546.2872212727865,5191.6855,1798.4196472167966,360.4917104977002,384.739018758138,912.5104843071592,19.5464989344279,54.881457,18.928292592366535,33.091627,193.09755071004233,362.72449,6.4292839368184405,30.815622,49.719340324401855,138.28669,8.326615969340006,17.544095000000002,0.5000001961986223,2.6196596000000003,22.006818771362305,8.8123411,1.0804997682571411,7.076053,2.7087196509043374,10.669375,0.4322652171055476,2.7884,0.15781688069303831,1.3164863000000002,321.57499186197913,6.638276368451454,61.316441745117054,214.69549502704018,48.035076099905325,31.619011505170853,-0.1966529040481033,6.453542669614156,6.8835341,61275.77057569818,0.13327703444478306,4.247629324595134,5.5737514,3.1567599376042685,1.6171325,0.4623090426127116,0.63840472 +2009,8.584990106780188,0.7548632834009588,0,0,9.109514001671727,4.015999873479207,1.7995506999999995,88.57357406616211,55.35525300000001,77.73389498392741,9.6854874,75.92381922403972,5.7877004,16.42168601353963,1.6755174,8.389018853505453,0.38354940000000004,242.4608243306478,60.065148,533.7759806315104,54.788238,7.171112656593323,144.24254,3.7694324,539.8231658935547,5145.2658,1802.1011861165362,364.2003633816462,386.28002166748047,917.7292309352042,19.870198726654053,61.50634300000001,19.930792331695557,32.081369,200.3144874572754,366.5558,7.706023693084717,33.926872,52.765931129455566,160.10848,9.35536535580953,21.142804,0.5700002362330755,2.9666725,22.658213933308918,9.933600300000002,1.2225398023923237,7.852249400000002,3.002319614092509,16.223306,0.4763352448741595,2.9974,0.17747688045104346,1.4335011999999998,322.27500661214185,6.712782947167917,61.37795929686438,218.75811433708597,46.48309573333753,31.77247636618844,-0.19698761364329287,6.728324254353841,7.159861,58721.16171394653,0.1066842123978326,4.189547856648763,5.2570896,3.1835699876149497,1.7272846000000002,0.4620170295238495,0.47723148 +2010,8.97554368419623,0.8851100551119334,0,0,9.665129375647625,4.092629869778951,1.7742175999999998,87.3809585571289,56.090865,78.37379455566406,10.48947,75.33903121948242,4.4070317,16.415090084075928,1.4644148,8.386359055836996,0.65896445,240.45181020100912,58.86009,531.2819671630859,52.271203,7.125164190928142,142.6745,2.4614781000000003,535.3102569580078,5179.9719,1807.850667317708,370.8962527865861,388.71703084309894,953.2286302920015,20.67949867248535,65.20953100000001,20.536893049875896,29.851794,207.74554824829102,361.74691,8.963194449742636,35.069515,57.8515370686849,165.044,10.426983912785849,20.460881,0.650000254313151,3.1827017000000004,23.296514352162678,11.247607,1.3827498058478038,8.7778712,3.920989453792572,15.914528,0.5346282621224722,3.3098,0.19690187896291414,1.3375544,323.140993754069,6.708375367844256,62.4444721228101,224.60211210242653,47.318297037341715,34.61053251023121,-0.19732232323848264,7.010202924410502,7.2759031,58249.4552717192,0.1379875550624469,4.121598919232686,4.897554799999999,3.1960699955622354,1.8511656000000003,0.4581970274448395,0.39655186 +2011,9.255966259655072,0.9136545403955806,0,0,9.478876565579496,4.170369823773702,1.8467555,86.05878257751465,57.565927,79.04059473673503,11.056837,74.6382344563802,4.6237938,16.361384391784668,2.0468287,8.387009064356485,0.85601742,238.2458127339681,62.415615,528.532969156901,52.120722,7.106488426526387,140.42156,3.0036158,534.1656138102213,5252.9333,1813.0701904296873,372.6576831783338,390.9440205891927,906.7673675143252,21.561198711395264,67.69059200000001,21.354194005330402,28.645628,214.5593744913737,366.94427,10.464804887771606,43.330418,62.84794902801514,190.47655,11.92148502667745,22.158614,0.7400002578894297,3.410604,24.134215990702312,12.498165,1.555159757534663,9.4654578,5.171979467074077,20.415233,0.5557872851689657,3.5841,0.21967886885007223,1.1291345,324.15898386637366,6.648935415452754,62.39874927347722,218.62875398112044,48.492221562223264,32.518259270416976,-0.19765703283367228,7.307322184244792,7.4656928,58834.52201769484,0.1090569133516887,4.04886809984843,4.3361773,3.2309599916140237,2.096153,0.450772022207578,0.39105944 +2012,9.386649744945927,0.9706890780006704,0,0,9.705285171316014,4.244799852371216,1.794986,85.01424598693848,59.464919,79.78919410705566,9.6609456,73.97862943013509,5.4529267,16.34028704961141,2.0520518,8.405529419581095,0.7168607,236.20683797200522,70.235225,525.833974202474,53.35878,6.98785674571991,136.71475,3.0096674,537.6538136800131,5232.3317,1815.2612304687498,380.80976664436446,393.0159912109375,949.6022183538887,22.543598651885986,63.311547,21.61989386876424,25.468261,220.10840479532877,356.29002,11.74120569229126,45.81505,67.7508716583252,205.00564,12.84508458773295,21.423000000000002,0.8300002614657084,3.2771162000000005,24.988317330678303,12.591587,1.750789761543274,9.054248,5.6421693166097,24.0671,0.6353292663892111,3.9269,0.23203588897983232,0.98551995,325.0049921671549,6.7427966320324675,63.84845417053954,229.10693623998705,48.176745092515574,35.82690195539086,-0.197991742428862,7.598473310470581,7.7062836,57925.01408286904,0.13867518125293046,3.9642380078633628,3.8379813,3.252539952596029,1.7328717,0.44370101888974506,0.41594871 +2013,9.65939649634906,0.9186575700100624,0,0,9.560553735096205,4.328779697418213,1.6324652,83.89107831319173,62.512861,80.53269322713216,8.3027436,73.30493418375652,6.5167934,16.327280203501385,1.9408617,8.421289602915445,0.61330322,234.38086700439453,75.740842,523.1149698893229,54.819887,6.848844488461812,133.39273,1.8384424,539.620361328125,5231.2321,1822.580841064453,381.59439281758614,395.72497812906903,901.2387566412425,23.414698759714764,59.817791,22.207694212595623,19.467118,226.13036346435547,342.89828,13.946606318155924,38.8888,74.7700621287028,202.01825,14.522682428359985,23.8069,0.9300002753734589,2.9986006,26.02762222290039,11.604213,1.9295397400856018,9.7859,7.50248924891154,21.452891,0.6930242776870728,4.2254,0.2427388938764731,0.87225171,325.91899108886713,6.847910646098343,63.650976650406456,219.3811792508812,47.50620674450057,33.245565827085585,-0.19832645202405166,7.910870313644409,7.686158,57413.51786587013,0.15767154312883705,3.8617884318033853,3.5745493,3.305999994277954,0.96258078,0.43652602036794025,0.44442215 +2014,9.719224641485487,1.0957648183627096,0,0,9.744379658087517,4.398729681968689,1.6517,83.06993166605632,53.5475,81.09249051411946,9.8735,72.71072514851888,2.8024,16.306567827860516,1.6696,8.429009358088175,1.114899,233.07986958821616,54.9365,520.5809682210287,28.9612,6.6860902309417725,133.6791,1.2625,539.5420227050781,5358.4982,1831.470998128255,387.873539205888,397.5469792683919,964.047618150183,23.809098561604817,59.82,22.075694402058918,22.47,229.5420659383138,358.8813,15.355007727940878,57.1243,80.51572863260905,200.0249,15.25278091430664,25.2487,1.0056702643632889,3.5393,26.890435059865315,12.991,2.047369738419851,10.1025,8.336968978246054,30.4858,0.7650303095579147,4.4701,0.24726289386550585,1.1516,326.98799133300776,6.916164550612366,65.0368536583283,233.52551800560903,47.385237858595374,36.145821385036584,-0.19866116161924133,8.221433083216349,7.8784,57093.261416151574,0.13977836334337682,3.7536577781041465,3.4810000000000003,3.2976099848747253,1.2299,0.431062030295531,0.3854 +2015,9.724603236619341,0.9598830811179276,0,0,9.727423576882977,4.4800931215286255,1.57,82.11865997314453,47.5476,81.8340072631836,10.8699,72.0745226542155,0.8742,16.297694365183514,1.6696,8.460016330083212,1.6714,231.45194625854492,43.5734,518.0192718505859,14.6096,6.666963418324788,133.82299999999998,0,549.8340708414713,5404.8069,1841.9459635416665,388.072795663322,399.94872283935547,934.3498846847754,24.225462595621746,59.82,22.05017598470052,22.47,233.6956329345703,358.8813,17.753957668940227,78.7906,84.76680437723796,201.9534,16.742682456970215,32.381,1.0911460916201274,3.6633,27.946319580078125,14.4857,2.2238617142041526,11.7285,9.834426800409952,38.5792,0.8708101063966751,4.6492000000000004,0.2528558212021987,1.1516,328.17957051595045,6.937624392238832,65.27970313424446,227.24481931953324,47.34877178380204,34.74602422800083,-0.19899587121443105,8.568445841471354,8.02,50464.18814475436,0.12580052700903913,3.6527342200279236,3.2933,3.2844189604123435,1.3378,0.4261277839541435,0.3481 +2016,9.949869256003215,0.9834897104633868,0,0,9.66524115233401,4.563908696174622,1.65952,80.86888949076335,45.017160000000004,82.689117431640625,11.2451366,71.41004117329915,0.78156,16.27421760559082,1.515231454,8.488823413848877,1.61422146,229.59260431925455,41.88082,514.5848388671875,12.88774,6.884193817774455,135.46146,0,563.0186564127604,5443.782899999999,1851.5940653483071,389.9511153904733,403.11696370442706,924.3121222950324,24.52680762608846,60.8428786,22.259799321492512,21.990155599999998,237.72884877522787,351.625206,21.18809413909912,97.98179999999999,90.27675247192383,214.41974,19.401511828104656,38.63372,1.2003816664218903,4.05325878,28.906192779541016,12.121559999999999,2.4407403270403543,13.658721,12.709800720214844,32.28288,0.9575140625238419,4.936195140000001,0.2655299554268519,1.18008914,329.07597859700513,7.0436200690913315,66.16008016755805,227.6426909383829,47.78426142861769,33.98323708689,-0.19933058080962068,8.884455839792887,8.09854,48398.93583290068,0.11182269067470146,3.5471805532773337,3.07158,3.2989591360092163,1.29166,0.4188620373606682,0.33428 +2017,10.175135275387088,1.0070963398088462,0,0,9.603058727785044,4.607269088427226,1.74904,79.52099291483562,42.486720000000005,83.15111351013184,11.6203732,70.57004737854004,0.68892,16.21771017710368,1.360862908,8.531164248784384,1.55704292,226.30871963500977,40.18824,508.81893666585285,11.16588,6.611278374989827,137.09992,0,558.8184305826823,5482.7589,1873.6891988118487,391.8294351176246,405.7999547322591,914.2743599052895,24.88080708185832,61.8657572,22.127699216206867,21.5103112,240.94988123575845,344.369112,23.582992712656658,117.173,96.32146898905437,226.88608,20.785216808319092,44.88644,1.2822915315628052,4.443217560000001,29.845894654591877,9.75742,2.636750260988871,15.588942000000001,13.166900475819906,25.986559999999997,1.0310900658369064,5.223190280000001,0.2753569756944974,1.20857828,329.7899805704752,7.149615745943832,67.04045720087166,228.04056255723262,48.21975107343334,33.22044994577918,-0.1996652904048104,9.182517131169638,8.17708,46333.683521047,0.09784485434036376,3.4357404311498008,2.8498599999999996,3.3043891390164695,1.24552,0.4108460272351901,0.32046 +2018,10.40040129477096,1.0307029691543055,0,0,9.540876303236079,4.680289109547933,1.83856,78.11739349365234,39.95628000000001,83.92251396179199,11.9956098,69.81563949584961,0.59628,16.178008397420246,1.206494362,8.575844208399454,1.49986438,223.63971328735352,38.49566,504.2599054972331,9.44402,6.670305530230205,138.73837999999998,0,562.6398518880209,5521.7348999999995,1886.6609802246091,393.70775484477593,408.78296152750653,904.2365975155466,25.22910737991333,62.8886358,22.122399012247723,21.0304668,243.35291290283203,337.113018,28.04559103647868,136.36419999999998,101.78744506835938,239.35242,23.29181973139445,51.13916,1.3921616474787395,4.8331763400000005,30.63719606399536,7.393280000000001,2.918510297934214,17.519163,13.88070034980774,19.69024,1.1069300770759583,5.51018542,0.2853819752732913,1.23706742,330.5629781087239,7.255611422796331,67.92083423418525,228.4384341760823,48.65524071824899,32.45766280466835,-0.2,9.511126597722372,8.255619999999999,44268.431209193324,0.08386701800602607,3.32701047261556,2.62814,3.3077592055002847,1.1993800000000001,0.4034940203030904,0.30663999999999997 +2019,10.625667314154834,1.0543095984997646,0,0,9.478693878687112,4.757159074147542,1.92808,76.66659482320149,37.42584,84.71921412150066,12.370846400000001,69.0654411315918,0.50364,16.13280725479126,1.052125816,8.618184010187784,1.44268584,220.94271087646484,36.80308,499.64991505940753,7.722159999999999,6.737996657689412,140.37684,0,565.9287872314453,5560.7109,1898.5905456542966,395.5860745719272,411.8409601847331,894.1988351258037,25.58390760421753,63.9115144,22.08479913075765,20.5506224,244.98493830362955,329.856924,33.292689641316734,155.55540000000002,107.53894869486491,251.81876,26.184622446695965,57.39188,1.5122217734654744,5.22313512,31.22409741083781,5.02914,3.244560261567434,19.449384000000002,13.804700295130411,13.393919999999998,1.1846900880336761,5.79718056,0.2953789755702019,1.26555656,331.35097503662104,7.361607099648832,68.80121126749886,228.836305794932,49.090730363064644,31.69487566355753,-0.20135475900145988,9.84283677736918,8.334159999999999,42203.17889733965,0.06988918167168841,3.216820478439331,2.40642,3.309149225552877,1.15324,0.39607302596171695,0.29281999999999997 +2020,10.850933333538707,1.077916227845224,0,0,9.416511454138146,4.837888995806376,2.0176,75.17629750569661,34.8954,85.54141553243001,12.746083,68.31974093119304,0.41100000000000003,16.08280658721924,0.89775727,8.658264001210531,1.3855073,218.22270711263022,35.1105,495.00391642252606,6.0003,6.807396491368611,142.0153,0,568.9655100504557,5599.6869,1909.540568033854,397.46439429907855,414.9819564819336,884.1610727360608,25.94090747833252,64.934393,22.019899368286133,20.070778,246.0109545389811,322.60083,39.29698880513509,174.7466,113.54829216003418,264.2851,29.45532496770223,63.6446,1.6421418885389965,5.613093900000001,31.607298374176025,2.665,3.609040319919586,21.379605,13.07799998919169,7.0976,1.2640700737635295,6.0841757,0.3053389812509219,1.2940457,332.1539738972981,7.467602776501331,69.68158830081245,229.23417741378168,49.52622000788029,30.932088522446705,-0.2024951752232111,10.17760682106018,8.4127,40137.92658548597,0.05591134533735071,3.1059004863103232,2.1847,3.3086692690849304,1.1071,0.38860202332337695,0.27899999999999997 +2021,11.150761662372332,1.094299056710729,0,0,9.31852107212082,4.9224690198898315,1.95172,73.65369860331218,33.28538,86.38881429036458,12.5072952,67.57894198099773,0.37899000000000005,16.02850564320882,0.833926213,8.696173747380575,1.342148655,215.48170598347983,33.879090000000005,490.3349126180013,5.50149,6.8766283591588335,140.80952,0,571.8685404459635,5574.8839,1919.560628255208,403.1647108720892,418.20496368408203,871.2058361340453,26.296507199605305,63.8401921,21.931999683380127,19.2265454,246.5630137125651,304.67177,46.03138796488444,190.678475,119.79457982381184,269.17534,33.09562683105469,69.25233,1.781611979007721,5.849861440000001,31.78779872258504,2.48147,4.006760378678639,23.210832600000003,11.81660008430481,6.60881,1.3447900811831157,6.19675258,0.3152589773138364,1.2782293200000001,332.9739735921223,7.525782920832098,70.42946494822603,228.19138522267377,49.51701374276551,30.279219281117893,-0.2036529205209393,10.515506982803345,8.50082,39705.18637850465,0.041933509003013035,2.99487042427063,2.06237,3.3063992659250894,1.07222,0.38109402110179263,0.26903 +2022,11.450589991205957,1.1106818855762342,0,0,9.220530690103494,5.007549126942952,1.88584,72.10530090332031,31.67536,87.24091466267903,12.2685074,66.84324010213216,0.34698,15.970505078633627,0.770095156,8.732003688812256,1.29879001,212.72470347086588,32.64768,485.65291086832684,5.00268,6.897752443949382,139.60374,0,572.7207590738932,5550.0809,1929.5707600911455,408.8650274450999,421.5299580891927,858.2505995320298,26.616607189178467,62.7459912,21.808899402618408,18.3823128,246.0360895792643,286.74271,53.39228661855062,206.61035,126.05045000712077,274.06558,37.07562859853109,74.86006,1.9277320603529613,6.08662898,31.8590989112854,2.29794,4.431700388590495,25.0420602,10.421200275421143,6.12002,1.423490087191264,6.309329460000001,0.32464798043171567,1.2624129400000001,333.803975423177,7.583963065162864,71.1773415956396,227.14859303156584,49.50780747765074,29.62635003978908,-0.20482799489464465,10.856706857681274,8.58894,39272.44617152334,0.02795567266867536,2.8842904567718506,1.9400399999999998,3.302439332008362,1.03734,0.37356602400541306,0.25905999999999996 +2023,11.750418320039584,1.1270647144417392,0,0,9.122540308086167,5.0897791385650635,1.8199599999999998,70.53720219930013,30.065340000000003,88.07681401570638,12.0297196,66.11293919881184,0.31497000000000003,15.90930445988973,0.7062640990000001,8.765813509623209,1.255431365,209.95470428466797,31.41627,480.96791076660156,4.50387,6.857924779256185,138.39796,0,570.9481302897135,5525.2779,1940.4107869466143,414.5653440181105,424.9689585367839,845.2953629300142,26.873507340749104,61.6517903,21.64099931716919,17.5380802,244.021120707194,268.81365,61.27998574574789,222.542225,132.11316045125326,278.95582,41.366231282552086,80.46779,2.0777121583620706,6.32339652,31.91429901123047,2.11441,4.878770470619202,26.8732878,9.221779982248941,5.63123,1.497230072816213,6.4219063400000005,0.33305197954177856,1.24659656,334.63997395833326,7.642143209493631,71.92521824305318,226.10580084045793,49.498601212535974,28.97348079846027,-0.20602039834432687,11.201407194137573,8.677059999999999,38839.70596454202,0.013977836334337678,2.7746404012044272,1.81771,3.2968693574269614,1.00246,0.3660310183962186,0.24908999999999998 +2024,12.050246648873209,1.1434475433072442,0,0,9.024549926068842,5.169159173965454,1.7540799999999999,68.95500373840332,28.45532,88.89651425679524,11.790931800000001,65.38833999633789,0.28296,15.845303853352865,0.642433042,8.79767338434855,1.21207272,207.17370096842447,30.18486,476.2859141031901,4.00506,6.801615277926127,137.19218,0,568.3770548502604,5500.4749,1952.0108337402341,420.2656605911212,428.5199508666992,832.3401263279987,27.07540734608968,60.5575894,21.43709929784139,16.693847599999998,240.96514892578125,250.88459,69.67638524373372,238.47410000000002,137.99692916870117,283.84606,45.96103318532308,86.07552,2.2314421931902566,6.56016406,31.953598976135254,1.93088,5.345120390256246,28.704515400000002,8.183950066566467,5.14244,1.5665900905927022,6.534483220000001,0.3405359759926796,1.23078018,335.48197428385413,7.700323353824398,72.67309489046676,225.06300864935,49.4893949474212,28.320611557131457,-0.2072301308699863,11.549506982167562,8.765179999999999,38406.96575756071,0,2.6663204034169516,1.6953799999999999,3.2897793849309287,0.96758,0.35850001871585846,0.23911999999999997 +2025,12.350074977706834,1.1598303721727494,0,0,8.926559544051516,5.245689233144124,1.6882,67.36350377400716,26.8453,89.70011329650879,11.552144,64.66953913370769,0.25095,15.778803586959839,0.578601985,8.827673355738321,1.168714075,204.38470204671225,28.95345,471.6139170328776,3.50625,6.7410339911778765,135.9864,0,565.5823516845703,5475.671899999999,1964.320861816406,425.96597716413186,432.18195088704425,819.3848897259833,27.229907194773357,59.4633885,21.204699357350666,15.849615,237.212158203125,232.95553,78.56398391723633,254.405975,143.71370569864908,288.73630000000003,50.853535970052086,91.68325,2.388812303543091,6.7969316,31.976898829142254,1.74735,5.828280488650004,30.535743000000004,7.279430071512858,4.65365,1.6320601006348927,6.647060100000001,0.3471599817276001,1.2149638,336.3279724121093,7.758503498155164,73.42097153788035,224.0202164582421,49.48018868230642,27.667742315802645,-0.2084571924716227,11.901207208633423,8.8533,37974.225550579395,0,2.559670408566793,1.5730499999999998,3.2812493642171225,0.9327,0.35098501046498615,0.22914999999999996 +2026,12.649903306540459,1.1762132010382544,0,0,8.82856916203419,5.319379250208537,1.62232,65.76730600992839,25.235280000000003,90.48751386006673,11.3133562,63.9566396077474,0.21894,15.710203091303507,0.5147709280000001,8.855883121490479,1.12535543,201.59170150756836,27.72204,466.9569091796875,3.0074400000000003,6.679503281911214,134.78062,0,562.7393849690756,5450.8688999999995,1977.2809041341143,431.6662937371425,435.9539489746094,806.4296531239678,27.343407313028973,58.369187600000004,20.9500994682312,15.0053824,233.02120971679688,215.02647000000002,87.92568270365398,270.33785,149.27650451660156,293.62654,56.03753821055094,97.29097999999999,2.5497123996416726,7.0336991399999995,31.984399159749348,1.56382,6.32606053352356,32.3669706,6.484790047009786,4.16486,1.694090078274409,6.759636980000001,0.35297897706429165,1.19914742,337.17997233072913,7.816683642485931,74.16884818529392,222.97742426713418,49.47098241719165,27.014873074473833,-0.20970158314923612,12.256307204564413,8.94142,37541.48534359808,0,2.4549904068311057,1.45072,3.271349390347799,0.89782,0.34349701553583145,0.21917999999999999 +2027,12.949731635374084,1.1925960299037595,0,0,8.730578780016865,5.3902192910512285,1.55644,64.17050552368164,23.625260000000004,91.2587121327718,11.0745684,63.24963887532552,0.18693,15.639802614847818,0.45093987100000005,8.882353067398071,1.081996785,198.7957026163737,26.49063,462.3189112345378,2.50863,6.617902119954427,133.57484,0,559.8983408610026,5426.0659,1990.8409322102862,437.3666103101532,439.83495076497394,793.4744165219523,27.386006991068523,57.2749867,20.657999356587727,14.1611498,227.89127985636392,197.09741000000002,97.74518140157063,286.269725,154.69731267293295,298.51678,61.50704002380371,102.89871,2.714022437731425,7.270466679999999,31.97619915008545,1.38029,6.836560487747192,34.1981982,5.780700087547302,3.67607,1.7530800998210907,6.872213860000001,0.35804397612810135,1.1833310400000001,338.0379740397135,7.874863786816698,74.9167248327075,221.93463207602625,49.46177615207688,26.36200383314502,-0.21096330290282664,12.614907344182333,9.02954,37108.745136616766,0,2.352500398953756,1.3283900000000002,3.260149439175924,0.86294,0.3360430176059405,0.20921 +2028,13.24955996420771,1.2089788587692645,0,0,8.632588397999537,5.458209196726481,1.4905599999999999,62.57680575052897,22.01524,92.01381301879883,10.8357806,62.54883893330892,0.15492,15.567902326583862,0.38710881399999997,8.90716298421224,1.03863814,196.00070190429688,25.25922,457.7029113769531,2.00982,6.5564314524332685,132.36906000000002,0,557.0713144938151,5401.2629,2004.9509277343748,443.06692688316383,443.8239517211914,780.5191799199367,27.332706451416016,56.1807858,20.31599982579549,13.316917199999999,221.4752960205078,179.16835000000003,108.00697962443034,302.20160000000004,159.9851417541504,303.40702,67.2559420267741,108.50644,2.881652534008026,7.507234219999999,31.952399571736652,1.1967599999999998,7.358100573221843,36.0294258,5.151180028915405,3.1872799999999994,1.8093700806299846,6.984790740000001,0.36240598062674206,1.16751466,338.89997355143225,7.933043931147465,75.66460148012108,220.89183988491834,49.4525698869621,25.70913459181621,-0.21224235173239414,12.9769074122111,9.11766,36676.00492963545,0,2.2524203658103943,1.20606,3.247719426949819,0.82806,0.32863402118285495,0.19923999999999997 +2029,13.549388293041336,1.2253616876347697,0,0,8.534598015982212,5.523349324862163,1.42468,60.98940658569336,20.40522,92.75271161397298,10.596992799999999,61.85403792063395,0.12290999999999996,15.494602044423422,0.32327775700000005,8.930362860361734,0.995279495,193.2067019144694,24.02781,453.1119130452474,1.5110099999999997,6.495140035947164,131.16328000000001,0,554.26220703125,5376.4599,2019.5609944661455,448.7672434561745,447.92395273844403,767.5639433179213,27.198806444803875,55.0865849,19.934799512227375,12.4726846,214.24731953938803,161.23929000000004,118.69397799173991,318.13347500000003,165.14996973673502,308.29726,73.27834574381511,114.11417,3.052502612272898,7.744001759999999,31.912999471028645,1.0132299999999999,7.8892306089401245,37.860653400000004,4.58309002717336,2.6984899999999996,1.8632800877094269,7.097367620000002,0.3661079779267311,1.15169828,339.7679773966471,7.9912240754782315,76.41247812753465,219.8490476938104,49.443363621847325,25.056265350487397,-0.21353872963793874,13.342507441838583,9.20578,36243.26472265414,0,2.154900372028351,1.08373,3.2341294487317405,0.79318,0.3212770124276479,0.18927 +2030,13.84921662187496,1.2417445165002747,0,0,8.436607633964886,5.5856393575668335,1.3588,59.41150792439779,18.7952,93.4755121866862,10.358205,61.16543738047282,0.0909,15.420101960500082,0.25944670000000003,8.952012856801352,0.95192085,190.41670354207358,22.7964,448.54791768391925,1.0122,6.433990438779195,129.9575,0,551.46630859375,5351.6569,2034.6310017903643,454.46756002918517,452.13194783528644,754.6087067159058,26.99760627746582,53.992384,19.52369960149129,11.628452,206.5633176167806,143.31023000000005,129.79397837320963,334.06535,170.20083618164062,313.1875,79.56844584147136,119.7219,3.226462701956431,7.980769299999999,31.858099460601807,0.8297,8.42866047223409,39.691881,4.065560042858124,2.2097,1.9150701065858204,7.2099445000000015,0.3691929777463277,1.1358819,340.64097340901685,8.049404219808999,77.16035477494823,218.8062555027025,49.434157356732555,24.403396109158585,-0.2148524366194604,13.711507558822632,9.2939,35810.52451567282,0,2.0600603222846985,0.9614,3.2194395065307617,0.7583,0.31398001064856845,0.1793 +2031,14.247373704294825,1.2112994919758162,0,0,8.399193441457442,5.645089348157247,1.31663,57.845808347066246,17.92802,94.18211110432942,10.20601637,60.482937494913735,0.08381999999999999,15.344701608022055,0.24100761240000002,8.972172657648722,0.9221711260000001,187.6337038675944,21.996879999999997,444.0129140218099,0.92805,6.373006224632263,129.18567000000002,0,548.6859385172526,5335.84899,2050.1110636393223,463.25007773423965,456.45194753011066,749.767512962103,26.740705966949463,51.769800000000004,19.090499718983967,10.82562094,198.68736012776694,131.00808400000005,141.28997675577799,342.70114900000004,175.14567438761392,313.95416,86.12064870198567,123.37401,3.403452714284261,8.031049419999999,31.78779935836792,0.79985,8.975270509719849,40.9593659,3.5896900296211243,2.1302000000000003,1.964990109205246,7.227592540000002,0.3717029814918836,1.118346335,341.5199762980143,8.096064169605077,77.5339096036032,217.88219350349667,49.655055153276265,24.09682946872741,-0.21613393078595566,14.084007660547892,9.359300000000001,35808.74626505274,0,1.968010316292445,0.90757,3.2037194768587747,0.7343999999999999,0.30674901107947034,0.1729 +2032,14.645530786714689,1.1808544674513577,0,0,8.361779248949999,5.702199339866638,1.27446,56.294708251953125,17.060840000000002,94.87551053365071,10.05382774,59.806736628214516,0.07673999999999999,15.268401463826498,0.22256852480000003,8.990902503331503,0.8924214020000001,184.85870361328125,21.19736,439.50891367594403,0.8439,6.319060802459717,128.41384,0,546.1548309326172,5320.04108,2066.4612223307286,472.03259543929414,460.8939488728841,744.9263192083002,26.404005527496338,49.547216,18.621699651082356,10.02278988,190.15541330973306,118.70593800000003,152.99097951253256,351.336948,179.8723055521647,314.72082,92.86024983723958,127.02612,3.5801127552986145,8.081329539999999,31.70859956741333,0.77,9.515970627466837,42.2268508,3.1692200303077698,2.0507,2.0113800962766013,7.245240580000002,0.37364498525857925,1.10081077,342.4019749959309,8.142724119401157,77.90746443225817,216.9581315042908,49.87595294981998,23.790262828296235,-0.21738321213742454,14.459507624308268,9.424700000000001,35806.96801443265,0,1.8788103262583415,0.85374,3.1870195269584656,0.7105,0.2995900089542071,0.16649999999999998 +2033,15.043687869134553,1.1504094429268992,0,0,8.324365056442554,5.757489363352458,1.23229,54.76040840148926,16.19366,95.55851173400879,9.90163911,59.13673655192057,0.06966,15.191401243209839,0.2041294372,9.008262395858765,0.862671678,182.09270604451498,20.39784,435.03692118326825,0.7597499999999999,6.2741709152857466,127.64201,0,543.9601694742838,5304.2331699999995,2084.0512491861973,480.8151131443486,465.4699452718099,740.0851254544974,25.967505137125652,47.324632,18.106599648793537,9.219958819999999,180.64442189534506,106.40379200000004,164.70797856648764,359.972747,184.27685419718424,315.48748,99.7140515645345,130.67823,3.7532127499580383,8.131609659999999,31.626999537150066,0.74015,10.039300600687662,43.4943357,2.8154900272687278,1.9712,2.0527800917625427,7.262888620000002,0.3750309819976489,1.083275205,343.2859751383463,8.189384069197235,78.28101926091314,216.03406950508497,50.09685074636369,23.48369618786506,-0.21860028067386708,14.837507724761963,9.4901,35805.18976381257,0,1.792510320742925,0.79991,3.1693994998931885,0.6866,0.2925100103020668,0.1601 +2034,15.441844951554419,1.1199644184024407,0,0,8.28695086393511,5.810959378878276,1.19012,53.24480946858724,15.32648,96.2313117980957,9.74945048,58.47293663024902,0.06258,15.113901058832804,0.18569034960000003,9.024282455444336,0.832921954,179.33870697021484,19.598319999999998,430.59791564941406,0.6756,6.232160011927287,126.87018,0,541.9099070231119,5288.42526,2102.8013102213536,489.59763084940306,470.1789372762044,735.2439317006947,25.44980525970459,45.102047999999996,17.556599617004395,8.41712776,170.60042826334634,94.10164600000002,176.44097646077475,368.60854600000005,188.3834660847982,316.25414,106.68005307515462,134.33034,3.9228527545928955,8.181889779999999,31.54319938023885,0.7102999999999999,10.547600746154785,44.7618206,2.5166900555292764,1.8917000000000002,2.089790105819702,7.280536660000002,0.3759009862939517,1.06573964,344.1729710896809,8.236044018993315,78.65457408956811,215.11000750587914,50.31774854290741,23.177129547433886,-0.2197851363952833,15.21810777982076,9.5555,35803.411513192485,0,1.7091303169727325,0.7460800000000001,3.150919576485952,0.6627,0.2855130136013031,0.1537 +2035,15.840002033974283,1.0895193938779821,0,0,8.249536671427666,5.862599492073059,1.14795,51.74960899353027,14.4593,96.89381090799968,9.597261849999999,57.81533590952555,0.055499999999999994,15.035900990168253,0.167251262,9.03901219367981,0.80317223,176.59770965576172,18.7988,426.1919199625651,0.59145,6.191259463628133,126.09835000000001,0,539.9367319742838,5272.61735,2122.6213785807286,498.38014855445755,475.0209426879883,730.4027379468919,24.8667049407959,42.879464,16.981499830881756,7.6142967,160.35442352294922,81.79950000000002,188.18897501627603,377.24434500000007,192.2150993347168,317.0208,113.75505383809407,137.98245,4.089142799377441,8.232169899999999,31.45709975560506,0.68045,11.04270068804423,46.0293055,2.263110021750132,1.8122000000000003,2.122940103212992,7.298184700000002,0.3762899811069171,1.0482040750000001,345.0629730224609,8.282703968789393,79.02812891822308,214.1859455066733,50.53864633945112,22.870562907002714,-0.2209377793016732,15.60130778948466,9.6209,35801.6332625724,0,1.6286902725696564,0.69225,3.1316195726394653,0.6388,0.2786030098795891,0.1473 +2036,16.238159116394147,1.0590743693535236,0,0,8.212122478920222,5.912419517834981,1.10578,50.2763090133667,13.592120000000001,97.54591051737468,9.44507322,57.16393597920736,0.04842,14.957600831985474,0.1488121744,9.05252226193746,0.7734225060000001,173.87171173095703,17.99928,421.8209228515625,0.5073,6.150908907254537,125.32652,0,538.01361083984375,5256.80944,2143.411397298177,507.16266625951204,479.9949366251628,725.561544193089,24.23220443725586,40.65688,16.38949966430664,6.81146564,150.1504160563151,69.49735400000002,199.95197550455728,385.88014400000003,195.79477055867514,317.78746,120.93705558776855,141.63456,4.252182841300964,8.28245002,31.368699709574383,0.6506000000000001,11.52630066871643,47.2967904,2.046720008055369,1.7327000000000001,2.1526900927225747,7.315832740000001,0.37623098244269687,1.03066851,345.9549763997395,8.329363918585472,79.40168374687805,213.26188350746745,50.75954413599483,22.56399626657154,-0.2220582093930367,15.987007935841879,9.686300000000001,35799.85501195231,0,1.5511802732944489,0.63842,3.1115495562553406,0.6149,0.2717840125163396,0.1409 +2037,16.63631619881401,1.028629344829065,0,0,8.174708286412777,5.9604094823201494,1.0636100000000002,48.826209704081215,12.72494,98.1878096262614,9.29288459,56.5187349319458,0.041339999999999995,14.878900845845541,0.1303730868,9.064842144648233,0.7436727820000001,171.16071192423502,17.199759999999998,417.4839146931966,0.42315,6.110928138097127,124.55469,0,536.1275177001953,5241.00153,2165.091471354166,515.9451839645665,485.1019337972005,720.7203504392863,23.558204174041748,38.434296,15.787699778874716,6.00863458,140.1603978474935,57.19520800000002,211.72997283935547,394.51594300000005,199.1404546101888,318.55412,128.2250576019287,145.28667,4.412072817484538,8.33273014,31.27809985478719,0.62075,12.000000794728598,48.5642753,1.8608800172805786,1.6532,2.179460108280182,7.333480780000001,0.3757549822330475,1.013132945,346.84997049967444,8.376023868381552,79.77523857553302,212.3378215082616,50.98044193253855,22.257429626140365,-0.22314642666937384,16.375207901000977,9.751700000000001,35798.07676133223,0,1.476580262184143,0.58459,3.090769648551941,0.591,0.26506000757217407,0.1345 +2038,17.034473281233875,0.9981843203046066,0,0,8.137294093905332,6.0065895318984985,1.0214400000000001,47.40040969848633,11.857759999999999,98.81930987040202,9.140695959999999,55.87953535715739,0.03425999999999999,14.800000667572021,0.1119339992,9.076022068659464,0.713923058,168.46571477254233,16.40024,413.18192291259766,0.33899999999999997,6.071207682291667,123.78286,0,534.2694600423177,5225.19362,2187.5815022786455,524.727701669621,490.3439356486003,715.8791566854835,22.855003992716473,36.211712,15.18179980913798,5.20580352,130.50837898254395,44.893062,223.5199737548828,403.15174200000007,202.27117665608725,319.32078,135.6140594482422,148.93878,4.568902810414632,8.38301026,31.185299555460613,0.5909,12.46500070889791,49.8317602,1.7001500229040782,1.5737,2.203610082467397,7.351128820000001,0.3748899847269058,0.99559738,347.74697367350257,8.42268381817763,80.148793404188,211.41375950905578,51.20133972908226,21.95086298570919,-0.2242024311306846,16.766008059183758,9.8171,35796.29851071215,0,1.4048502544562023,0.53076,3.0693196256955466,0.5670999999999999,0.2584340100487073,0.1281 +2039,17.43263036365374,0.9677392957801481,0,0,8.09987990139789,6.050939559936523,0.9792700000000001,45.99990971883138,10.990580000000001,99.44050979614258,8.98850733,55.24643421173096,0.027179999999999996,14.721000591913858,0.09349491159999998,9.08610192934672,0.684173334,165.78971481323242,15.600719999999999,408.91491953531903,0.2548499999999999,6.031686782836914,123.01103,0,532.4323984781901,5209.3857100000005,2210.8214925130205,533.5102193746754,495.71993255615234,711.0379629316808,22.131303946177166,33.989128,14.576899766921997,4.40297246,121.27435874938965,32.59091600000001,235.3239720662435,411.78754100000003,205.20289738972983,320.08744,143.10505803426108,152.59089,4.722762823104858,8.43329038,31.09019962946574,0.56105,12.922400712966919,51.0992451,1.5600500305493672,1.4942000000000002,2.2254401246706643,7.368776860000001,0.3736639817555745,0.978061815,348.64697265624994,8.46934376797371,80.52234823284296,210.48969750984992,51.422237525625974,21.644296345278015,-0.22522622277696905,17.159307956695557,9.8825,35794.52026009206,0,1.3359702328840892,0.47693,3.047239621480306,0.5432,0.25190700963139534,0.1217 +2040,17.830787446073604,0.9372942712556895,0,0,8.062465708890445,6.093459566434224,0.9371,44.62540976206461,10.1234,100.05100949605306,8.8363187,54.61943435668945,0.0201,14.641900618871054,0.07505582400000001,9.09512186050415,0.65442361,163.13272094726562,14.8012,404.6829198201497,0.1707,5.992317120234172,122.2392,0,530.610361735026,5193.5778,2234.7317301432286,542.2927370797299,501.2329330444336,706.196769177878,21.394703547159832,31.766544,13.976799885431925,3.6001414,112.50933837890625,20.28877,247.13897196451822,420.42334000000005,207.94968287150064,320.8541,150.69306055704752,156.243,4.8737428188323975,8.4835705,30.993099530537922,0.5312,13.373100757598877,52.36673,1.4368799924850464,1.4147,2.2452301184336343,7.3864249000000015,0.37209898233413696,0.96052625,349.54897562662757,8.516003717769788,80.89590306149793,209.56563551064409,51.643135322169684,21.33772970484684,-0.2262178016082272,17.555107911427815,9.9479,35792.74200947198,0,1.2698702315489452,0.4231,3.0245796044667563,0.5193,0.24548400938510895,0.1153 +2041,17.345696177947396,0.9187478536835538,0,0,7.812736340748348,6.134169618288676,0.88249,43.277709325154625,9.656320000000001,100.65200932820638,8.41457258,53.99843406677246,0.01853,14.562700351079306,0.0697234998,9.103121836980185,0.633957487,160.49472045898438,14.28209,400.48591868082684,0.15650999999999998,5.953023711840312,121.23969,0,528.7973429361979,5149.77082,2259.2409667968745,514.2980411426028,506.8829345703125,695.4447612690923,20.65170367558797,30.4061322,13.384999910990397,3.34120265,104.24331792195638,18.44822429,258.96597417195636,405.768564,210.5254135131836,308.29824,158.3780606587728,150.99893,5.021922747294108,8.14344805,30.893699645996094,0.49365000000000003,13.817900816599527,50.714793199999995,1.3276000221570332,1.3147,2.26321009794871,7.097378140000002,0.37021798143784207,0.915999682,350.45297495524085,8.281679912098136,80.92310566220384,206.46400659459687,50.258899343886284,21.068322115803,-0.22718976481469266,17.953507741292317,9.569280000000001,34123.82426189707,0,1.206500232219696,0.39941,3.001359681288401,0.5029399999999999,0.239166010171175,0.11118 +2042,16.860604909821188,0.9002014361114181,0,0,7.563006972606251,6.172779520352681,0.8278800000000001,41.95721022288004,9.18924,101.23300997416179,7.99282646,53.383233070373535,0.01696,14.483500401178995,0.0643911756,9.11013150215149,0.613491364,157.87872187296549,13.762979999999999,396.3239212036133,0.14232,5.918380657831828,120.24018,0,526.9397379557291,5105.96384,2278.7698160807286,486.3033452054756,512.4729334513346,684.6927533603066,19.913002967834473,29.0457204,12.805400053660074,3.0822639,96.4655990600586,16.607678579999998,270.2729771931966,391.11378800000006,212.63760375976562,295.74238,165.85805638631186,145.75486,5.161282579104106,7.803325600000001,30.792500019073486,0.4561,14.204500834147135,49.062856399999994,1.2296100358168285,1.2147000000000001,2.2748800913492837,6.808331380000001,0.36782698333263397,0.871473114,351.3309758504231,8.047356106426486,80.95030826290973,203.36237767854965,48.87466336560288,20.798914526759162,-0.2281421123963656,18.345407485961914,9.190660000000001,32454.90651432216,0,1.1458002030849457,0.37572,2.977639655272166,0.48658,0.23295500750343004,0.10706 +2043,16.37551364169498,0.8816550185392825,0,0,7.3132776044641545,6.209039568901062,0.77327,40.66440963745117,8.72216,101.78600883483887,7.57108034,52.774033546447754,0.015390000000000001,14.40440034866333,0.0590588514,9.116191705067953,0.5930252410000001,155.2837257385254,13.24387,392.1969223022461,0.12813,5.887932340304057,119.24067,0,524.8388036092123,5062.15686,2288.119466145833,458.3086492683484,517.8179423014323,673.9407454515208,19.186203161875408,27.6853086,12.241000016530355,2.82332515,89.15757942199707,14.767132870000001,280.54597727457684,376.45901200000003,213.99952697753906,283.18652000000003,172.83805465698242,140.51079,5.285882472991943,7.463203150000001,30.689499855041504,0.41855,14.486000855763754,47.4109196,1.1404600044091542,1.1147,2.2760300636291504,6.5192846200000005,0.3647239878773689,0.8269465460000001,352.15197753906244,7.813032300754835,80.97751086361563,200.26074876250243,47.49042738731948,20.529506937715325,-0.229074844353246,18.72180716196696,8.81204,30785.98876674725,0,1.0877102116743724,0.35202999999999995,2.9534396727879844,0.47021999999999997,0.22685100883245468,0.10294 +2044,15.890422373568772,0.8631086009671468,0,0,7.063548236322058,6.242929657300313,0.7186600000000001,39.39980951944987,8.25508,102.31000836690266,7.14933422,52.17073345184326,0.013819999999999999,14.325300296147665,0.0537265272,9.121351480484009,0.572559118,152.71172968546549,12.72476,388.1059265136719,0.11393999999999999,5.855492790540059,118.24116,0,522.3260879516602,5018.34988,2288.048950195312,430.3139533312212,522.9369405110677,663.1887375427351,18.470802783966064,26.324896799999998,11.692300081253052,2.5643864,82.31376139322917,12.92658716,289.8099772135417,361.80423600000006,214.64659118652344,270.63066000000003,179.32505416870117,135.26672,5.3959724108378095,7.123080700000001,30.58459981282552,0.381,14.673300743103027,45.7589828,1.058040012915929,1.0147,2.2674900690714517,6.230237860000001,0.3609189838171005,0.7824199780000001,352.9169718424479,7.578708495083184,81.00471346432153,197.1591198464552,46.10619140903608,20.260099348671485,-0.2299879606853337,19.08260663350423,8.43342,29117.07101917234,0,1.0321501990159352,0.32833999999999997,2.9288097421328225,0.45386,0.22085800766944885,0.09881999999999999 +2045,15.405331105442563,0.8445621833950111,0,0,6.813818868179961,6.274469653765361,0.66405,38.163710276285805,7.788,102.80600802103679,6.7275881,51.57343260447184,0.01225,14.246300299962362,0.048394203000000004,9.125621557235718,0.552092995,150.16272989908853,12.205649999999999,384.04992421468097,0.09974999999999999,5.819783369700114,117.24164999999999,0,519.3892822265625,4974.5429,2279.2485148111973,402.31925739409405,527.8389434814453,652.4367296339494,17.766602993011475,24.964485,11.159600098927816,2.30544765,75.9224427541097,11.08604145,298.08997853597003,347.14946000000003,214.6096674601237,258.0748,185.32604853312174,130.02265,5.4918222824732466,6.78295825,30.477499802907307,0.34345000000000003,14.77630082766215,44.107046,0.9807160248359045,0.9147000000000001,2.2500601013501487,5.941191100000001,0.35642898579438526,0.7378934100000001,353.6259740193684,7.344384689411532,81.03191606502743,194.057490930408,44.72195543075267,19.990691759627644,-0.2308814613926289,19.427806854248047,8.0548,27448.15327159743,0,0.9790621846914291,0.30465,2.903779685497284,0.4375,0.2149760089814663,0.0947 +2046,14.920239837316355,0.8260157658228754,0,0,6.5640895000378645,6.303649663925171,0.60944,36.9563102722168,7.320920000000001,103.27300707499187,6.30584198,50.982032775878906,0.01068,14.167400280634562,0.0430618788,9.129061381022135,0.531626872,147.63873291015625,11.686539999999999,380.0299301147461,0.08556,5.780743718147278,116.24214,0,516.0583826700846,4930.73592,2262.348164876302,374.3245614569669,532.5319366455078,641.6847217251637,17.07390244801839,23.604073200000002,10.643199841181437,2.0465089,69.96732584635417,9.24549574,305.40897878011066,332.494684,213.91979598999023,245.51894000000001,190.84804916381836,124.77858,5.5736622015635175,6.442835800000001,30.368299802144367,0.3059,14.803500652313232,42.455109199999995,0.9072770128647486,0.8147000000000001,2.224430044492086,5.65214434,0.3512689893444379,0.6933668420000001,354.2789738972981,7.110060883739882,81.05911866573334,190.95586201436078,43.33771945246927,19.721284170583807,-0.2317553464751315,19.75760618845622,7.6761800000000004,25779.235524022522,0,0.9283671826124191,0.28096,2.8783997098604837,0.42114,0.20920600617925325,0.09058 +2047,14.435148569190147,0.8074693482507398,0,0,6.314360131895768,6.330479780832927,0.55483,35.77770964304606,6.85384,103.71200688680013,5.88409586,50.39653174082438,0.009110000000000002,14.088800112406412,0.037729554600000006,9.131681283315023,0.5111607490000001,145.1407330830892,11.16743,376.0459289550781,0.07137,5.7386239767074585,115.24263,0,512.3673807779948,4886.92894,2237.9577433268223,346.3298655198397,537.022939046224,630.932713816378,16.393102486928303,22.2436614,10.14329997698466,1.7875701500000003,64.42890898386638,7.40495003,311.78897857666016,317.83990800000004,212.6069564819336,232.96308000000002,195.8970489501953,119.53451000000001,5.641752044359843,6.10271335,30.25659974416097,0.26835000000000003,14.762300729751587,40.803172399999994,0.8367760082085928,0.7147000000000001,2.1912600795427957,5.36309758,0.3454589893420537,0.6488402740000001,354.87797546386713,6.87573707806823,81.08632126643923,187.85423309831356,41.95348347418587,19.45187658153997,-0.2326096159328416,20.07180579503377,7.297560000000001,24110.317776447613,0,0.8799911687771479,0.25727,2.8526897033055625,0.40478000000000003,0.2035480054716269,0.08646000000000001 +2048,13.950057301063937,0.7889229306786041,0,0,6.064630763753671,6.354949712753296,0.50022,34.628109296162926,6.386760000000001,104.12200609842937,5.46234974,49.817131678263344,0.00754,14.010300159454346,0.0323972304,9.133541345596313,0.490694626,142.66873931884766,10.648319999999998,372.0979232788086,0.05717999999999998,5.693664352099101,114.24312,0,508.3482971191406,4843.1219599999995,2206.6173909505205,318.3351695827125,541.3159383138021,620.1807059075923,15.724602460861206,20.8832496,9.660020033518473,1.5286314,59.2860943476359,5.5644043199999995,317.25398508707684,303.185132,210.70116806030273,220.40722,200.48004150390625,114.29043999999999,5.696331938107808,5.7625909,30.14239962895711,0.2308,14.65950059890747,39.15123559999999,0.7684980084498724,0.6147,2.151170035203298,5.07405082,0.3390189881126086,0.604313706,355.42197418212885,6.641413272396579,81.11352386714513,184.75260418226634,40.569247495902474,19.18246899249613,-0.23344426976575897,20.370505332946777,6.918939999999999,22441.4000288727,0,0.8338611622651418,0.23357999999999998,2.8266897797584534,0.38842,0.19800500695904097,0.08234 +2049,13.46496603293773,0.7703765131064684,0,0,5.8149013956115745,6.377049843470256,0.44561,33.50730959574381,5.9196800000000005,104.50300598144531,5.04060362,49.24363168080648,0.005970000000000001,13.932000239690145,0.027064906200000002,9.134641329447428,0.470228503,140.22373962402344,10.129209999999999,368.18692779541016,0.04299,5.646104216575623,113.24361,0,504.0281448364258,4799.31498,2168.8471272786455,290.34047364558535,545.4139455159506,609.4286979988066,15.06910220781962,19.522837799999998,9.193319956461588,1.26969265,54.51668039957682,3.7238586100000006,321.82298278808594,288.530356,208.2294019063314,207.85136,204.60204569498697,109.04637,5.73764185110728,5.42246845,30.025499661763508,0.19324999999999998,14.501000563303629,37.4992988,0.7018970102071762,0.5147,2.1047200759251914,4.78500406,0.3319689879814784,0.559787138,355.9119796752929,6.407089466724928,81.14072646785102,181.65097526621912,39.18501151761907,18.91306140345229,-0.2342593079738838,20.65370527903239,6.5403199999999995,20772.48228129779,0,0.7899001638094584,0.20989,2.8004297415415444,0.37206,0.19257600729664168,0.07822 +2050,12.979874764811521,0.7518300955343327,0,0,5.565172027469478,6.396809816360474,0.391,32.415409564971924,5.4526,104.8560053507487,4.6188575,48.67613124847412,0.0044,13.854000171025595,0.021732582,9.135021130243937,0.44976238,137.80674616495767,9.6101,364.31292724609375,0.0288,5.596115191777547,112.2441,0,499.4269307454427,4755.508,2125.106709798177,262.3457777084582,549.3189544677734,598.6766900900209,14.42700203259786,18.162426,8.743129968643188,1.0107539,50.09836641947428,1.8833129,325.51697794596356,273.87558,205.21969604492188,195.2955,208.2710418701172,103.8023,5.7659117380778,5.082346,29.90589984258016,0.1557,14.292200565338135,35.847362,0.636567011475563,0.4147,2.0524200995763144,4.4959573,0.32433098802963894,0.51526057,356.3489786783854,6.172765661053277,81.16792906855693,178.5493463501719,37.80077553933567,18.643653814408452,-0.2350547305572161,20.92130486170451,6.1617,19103.56453372288,0,0.7480281442403793,0.1862,2.773939768473307,0.3557,0.18726200486222902,0.0741 +2051,12.004192925979071,0.8068700681177958,0,0,5.472894625197806,6.4141998291015625,0.3588,31.35210943222046,5.20103,105.18100420633952,4.26219078,48.114630699157715,0.00406,13.776300032933554,0.02018665606,9.134721199671427,0.435696317,135.41774876912436,9.27305,360.4759292602539,0.02641,5.543852806091309,111.65475,0,494.56368255615234,4718.46084,2075.8468627929683,252.58198821107112,553.0349527994791,593.249270021062,13.798902034759521,17.3846094,8.309290091196695,0.9380561430000001,46.00865459442139,1.712466056,328.3569819132487,248.343711,201.69799041748047,177.02609,211.49103800455728,94.12945,5.781391580899556,4.604193112,29.783499717712402,0.14065,14.03790052731832,32.51562222,0.5722030103206635,0.37461,1.9947500725587208,4.075366733,0.3161259889602661,0.4667430649,356.7319768269856,6.332726478064603,81.91865414801462,176.5609104385784,36.90394966617684,18.48889459205154,-0.2359083754483515,21.1735045115153,5.6840399999999995,18474.28786218845,0,0.708170140782992,0.17577,2.747259775797526,0.34449,0.18206200376152992,0.07145 +2052,11.028511087146622,0.8619100407012591,0,0,5.3806172229261335,6.429729859034221,0.3266,30.31740887959798,4.94946,105.47900454203288,3.90552406,47.55923080444336,0.0037200000000000002,13.698800166447958,0.01864073012,9.133771260579428,0.42163025400000004,133.0577532450358,8.936,356.6759312947591,0.02402,5.4946393966674805,111.0654,0,489.4692153930664,4681.41368,2024.4472351074216,242.81819871368407,556.4659576416016,587.8218499521032,13.183701912562052,16.6067928,7.89109989007314,0.865358386,42.222443262736,1.541619212,330.08298746744794,222.811842,197.51299413045248,158.75668000000002,214.1080322265625,84.45660000000001,5.781721393267314,4.1260402240000005,29.658899943033855,0.1256,13.705500523249308,29.183882439999998,0.5116110071539879,0.33452,1.9294400612513225,3.6547761659999995,0.30731099595626193,0.41822555980000004,357.10397593180335,6.49268729507593,82.6693792274723,174.57247452698485,36.00712379301802,18.33413536969463,-0.23682024264729,21.408104101816814,5.206379999999999,17845.011190654015,0,0.670249139269193,0.16534,2.720399777094523,0.33328,0.17697700733939806,0.0688 +2053,10.052829248314172,0.9169500132847223,0,0,5.288339820654461,6.443859855333964,0.2944,29.310908953348797,4.69789,105.75300407409668,3.5488573399999996,47.00973033905029,0.00338,13.621700048446655,0.01709480418,9.132171312967936,0.407564191,130.72775268554688,8.59895,352.91193135579425,0.02163,5.4509092171986895,110.47605,0,484.2593307495117,4644.36652,1974.0472106933591,233.05440921629705,559.5239562988281,582.3944298831443,12.581501881281534,15.8289762,7.488089958826701,0.7926606290000001,38.71723206837972,1.370772368,330.4509862263997,197.279973,192.53289286295572,140.48727000000002,215.97402826944986,74.78375,5.764731248219808,3.647887336,29.532999833424885,0.11055000000000001,13.26770027478536,25.85214266,0.4571790024638176,0.29443,1.8546100358168285,3.234185599,0.29785699645678204,0.3697080547,357.50598144531244,6.652648112087256,83.42010430693,172.58403861539134,35.11029791985919,18.179376147337717,-0.2377903321540317,21.62320391337077,4.72872,17215.734519119582,0,0.634189118941625,0.15491,2.6933997869491577,0.32207,0.17200600480039915,0.06615 +2054,9.077147409481721,0.9719899858681855,0,0,5.196062418382789,6.456599831581116,0.2622,28.332308451334637,4.44632,106.0030034383138,3.19219062,46.46622943878174,0.00304,13.54479988416036,0.01554887824,9.129971027374268,0.393498128,128.42675908406576,8.261899999999999,349.1859308878581,0.01924,5.408978621164958,109.8867,0,479.04724884033203,4607.3193599999995,1924.607259114583,223.29061971891,562.2169596354166,576.9670098141854,11.9939018090566,15.0511596,7.1004200379053755,0.719962872,35.47722180684408,1.199925524,329.50898996988934,171.748104,186.82093938191733,122.21786,217.1030248006185,65.1109,5.73094101746877,3.169734448,29.405800024668377,0.0955,12.738400300343832,22.52040288,0.4079110001524289,0.25434,1.7714500427246094,2.8135950319999994,0.2878119970361392,0.32119054960000004,357.9379781087239,6.812608929098582,84.17082938638768,170.5956027037978,34.21347204670037,18.024616924980805,-0.2388186439685765,21.818803469340008,4.25106,16586.45784758515,0,0.5999161253372828,0.14448,2.666279753049215,0.31086,0.16714800521731377,0.0635 +2055,8.101465570649271,1.0270299584516487,0,0,5.103785016111117,6.467959801355998,0.23,27.381308396657307,4.19475,106.22800191243489,2.8355239,45.92872937520345,0.0027,13.468300104141235,0.0140029523,9.127190907796225,0.37943206500000004,126.15576235453288,7.924849999999999,345.4969304402669,0.01685,5.367788076400757,109.29735,0,473.8671417236328,4570.272199999999,1876.0573018391924,213.52683022152294,564.5509694417318,571.5395897452265,11.422401507695517,14.273343,6.728119969367981,0.6472651150000001,32.486412366231285,1.02907868,327.2999903361003,146.216235,180.43504079182944,103.94845000000001,217.51102193196616,55.438050000000004,5.680860837300618,2.69158156,29.277199586232502,0.08045000000000001,12.129800160725912,19.1886631,0.3629700019955635,0.21425,1.6810200313727062,2.3930044649999997,0.2772189974784851,0.2726730445,358.39997863769526,6.972569746109908,84.92155446584538,168.60716679220428,33.31664617354154,17.869857702623893,-0.2399051780909244,21.994903087615967,3.7733999999999996,15957.181176050715,0,0.567356119553248,0.13405,2.6390697757403054,0.29965,0.16240400448441505,0.06085 +2056,7.1257837318168225,1.0820699310351118,0,0,5.011507613839445,6.477919936180115,0.1978,26.457608064015705,3.94318,106.43000221252441,2.47885718,45.39712905883789,0.00236,13.392200072606405,0.01245702636,9.123841047286987,0.365366002,123.91476376851399,7.5878,341.84593709309894,0.01446,5.327037572860718,108.708,0,468.7270202636719,4533.22504,1828.3473612467446,203.7630407241359,566.52996826171875,566.1121696762677,10.868101517359415,13.4955264,6.371129949887593,0.5745673580000001,29.728803157806396,0.8582318360000001,323.86999766031903,120.68436600000001,173.43122355143228,85.67904000000001,217.21401977539062,45.76520000000001,5.614980737368266,2.213428672,29.147300243377686,0.06540000000000001,11.452900330225626,15.85692332,0.3216650038957596,0.17416,1.5842700203259785,1.9724138979999997,0.26612099756797153,0.22415553940000005,358.8919779459635,7.132530563121235,85.67227954530307,166.61873088061077,32.41982030038272,17.71509848026698,-0.2410499345210755,22.15150260925293,3.29574,15327.904504516282,0,0.5364391058683395,0.12362000000000001,2.611789802710215,0.28844000000000003,0.15777100374301276,0.0582 +2057,6.150101892984373,1.137109903618575,0,0,4.919230211567773,6.486499945322673,0.16560000000000002,25.560708045959473,3.6916100000000003,106.60800298055013,2.12219046,44.87152894337972,0.00202,13.316399971644083,0.01091110042,9.11996086438497,0.351299939,121.70476722717285,7.25075,338.2309341430664,0.012070000000000001,5.286617080370585,108.11865,0,463.6278940836589,4496.17788,1781.4473876953123,193.99925122674887,568.15997314453125,560.6847496073088,10.331901629765829,12.7177098,6.0292900403340655,0.5018696010000001,27.18909517923991,0.6873849920000001,319.2619908650716,95.15249700000001,165.85947291056314,67.40963000000002,216.2250124613444,36.09235000000001,5.533790588378906,1.7352757840000002,29.016200065612793,0.05035000000000002,10.717000246047974,12.52518354,0.28346500049034756,0.13407000000000002,1.4820400377114613,1.551823331,0.2545579969882965,0.17563803430000002,359.4149780273437,7.292491380132561,86.42300462476075,164.63029496901723,31.522994427223896,17.56033925791007,-0.2422529132590297,22.28850253423055,2.8180799999999997,14698.627832981849,0,0.5070921008785566,0.11319000000000001,2.5844497879346213,0.27723000000000003,0.15324700499574342,0.05555 +2058,5.174420054151922,1.1921498762020384,0,0,4.826952809296101,6.493679920832316,0.13340000000000002,24.69010814030965,3.44004,106.76100158691406,1.76552374,44.35182889302572,0.00168,13.241000016530355,0.009365174479999998,9.115560928980509,0.337233876,119.52577018737793,6.9137,334.65393320719403,0.009680000000000001,5.246456623077393,107.5293,0,458.56582895914715,4459.13072,1735.307403564453,184.23546172936182,569.4429880777994,555.25732953835,9.814351320266724,11.9398932,5.702379981676738,0.42917184399999997,24.852287133534748,0.516538148,313.5179926554362,69.62062800000001,157.7677853902181,49.14022,214.55901082356772,26.4195,5.437770446141561,1.2571228959999994,28.883700052897137,0.0353,9.930780092875162,9.193443760000001,0.24786599973837534,0.09397999999999995,1.3750700255235035,1.1312327639999995,0.24256599818666777,0.1271205292,359.9659754435221,7.452452197143888,87.17372970421845,162.64185905742372,30.62616855406507,17.405580035553157,-0.24351411430478706,22.4061017036438,2.3404199999999995,14069.351161447416,0,0.4792470956842105,0.10275999999999999,2.55707981189092,0.26602000000000003,0.14883400375644365,0.0529 +2059,4.198738215319473,1.2471898487855015,0,0,4.734675407024429,6.4994800090789795,0.10120000000000001,23.845507780710857,3.18847,106.89000193277995,1.4088570199999997,43.83802890777588,0.00134,13.165900071461996,0.007819248539999999,9.110660950342814,0.32316781299999997,117.37777328491211,6.57665,331.11293538411456,0.007290000000000001,5.206525723139445,106.93995,0,453.537602742513,4422.08356,1689.8674519856768,174.47167223197476,570.3839874267578,549.8299094693912,9.315771341323853,11.162076599999999,5.390099962552388,0.35647408700000005,22.70398012797038,0.34569130400000003,306.6800003051758,44.08875900000001,149.20216496785483,30.870810000000006,212.2320073445638,16.746650000000002,5.327390193939209,0.7789700079999999,28.750100135803223,0.020250000000000018,9.10152006149292,5.8617039800000015,0.21439500028888384,0.053889999999999993,1.2640400131543477,0.7106421969999999,0.23018099864323935,0.07860302409999997,360.54797363281244,7.612413014155214,87.92445478367613,160.65342314583017,29.729342680906246,17.250820813196245,-0.2448335376583475,22.504101594289143,1.8627599999999997,13440.074489912982,0,0.4528370921810468,0.09233,2.529709796110789,0.25481,0.14452900489171347,0.05025 +2060,3.2230563764870226,1.3022298213689647,0,0,4.642398004752756,6.503889958063762,0.069,23.026407559712727,2.9369,106.99600156148274,1.0521903,43.330128033955894,0.001,13.091200033823648,0.0062733226,9.10529088973999,0.30910175,115.26077779134114,6.2396,327.6089375813802,0.0049,5.166796684265137,106.3506,0,448.5399449666341,4385.0364,1645.1074422200518,164.7078827345877,570.9859873453776,544.4024894004323,8.836371103922525,10.38426,5.092129906018575,0.28377633,20.730573813120525,0.17484446,298.78599802652997,18.55689,140.20257059733072,12.6014,209.25800069173178,7.0738,5.203110218048096,0.30081712,28.615100224812824,0.0052,8.235750158627829,2.5299642,0.1827199993034204,0.0138,1.1495400071144104,0.29005163,0.21743399649858475,0.030085519,361.15797678629554,7.77237383116654,88.67517986313382,158.66498723423666,28.83251680774742,17.096061590839334,-0.2462111833197111,22.582701047261555,1.3851,12810.797818378549,0,0.4277970815698306,0.0819,2.5023398200670877,0.2436,0.14033100257317224,0.0476 +2061,2.6750955673078036,1.240255911900013,0,0,4.547445920626111,6.506900032361348,0.06663000000000001,22.232307593027752,2.80139,107.07700157165527,1.035990451,42.82802677154541,9.2e-4,13.016899903615316,0.0058252281299999995,9.099470933278402,0.299431331,113.17477989196777,6.02076,324.14293162027997,0.00449,5.127251823743184,106.30722,0,443.56946055094403,4383.35372,1600.9676513671873,162.13886984430866,571.2519887288412,539.0797938936472,8.37618112564087,9.939558329999999,4.8080999453862505,0.2633617666,18.919267654418945,0.1589853287,289.87699635823566,18.949698599999998,130.80909856160483,12.84362,205.65000279744467,7.2378800000000005,5.065370122591655,0.303024071,28.478999932607014,0.00499,7.339209993680318,2.59481267,0.15256499871611595,0.01325,1.0321000168720882,0.295630754,0.20435799906651178,0.0303556747,361.797976175944,7.807936527179875,89.12949597091718,156.22692677492776,28.052187964962897,16.991168136081754,-0.2475232706624884,22.64180072148641,1.37208,12433.5424490805,0,0.404065082470576,0.07732,2.4749998251597085,0.23592000000000002,0.13623900090654692,0.0459 +2062,2.1271347581285847,1.1782820024310612,0,0,4.452493836499466,6.509179949760437,0.06426000000000001,21.462607383728027,2.66588,107.14500172932942,1.019790602,42.33182684580485,8.4e-4,12.943000157674154,0.00537713366,9.093220710754395,0.289760912,111.11978530883789,5.80192,320.7129364013672,0.00408,5.096756021181743,106.26384,0,439.7783025105794,4381.67104,1558.6179097493487,159.5698569540296,571.2559865315756,533.7570983868621,7.934811035792033,9.49485666,4.53750999768575,0.24294720320000002,17.257261753082275,0.1431261974,280.61899820963544,19.3425072,121.57363382975261,13.08584,201.7660001118978,7.401960000000001,4.922850131988525,0.305231022,28.34220027923584,0.0047799999999999995,6.487110058466594,2.6596611400000003,0.12573900011678538,0.0127,0.9202060103416443,0.301209878,0.1915330005188783,0.0306258304,362.4529774983723,7.843499223193209,89.58381207870053,153.78886631561886,27.27185912217837,16.886274681324178,-0.2487697996866793,22.690900961558025,1.35906,12056.28707978245,0,0.3815820763508479,0.07274,2.4476898312568665,0.22824,0.13225100437800089,0.0442 +2063,1.5791739489493655,1.1163080929621096,0,0,4.3575417523728195,6.511349995930989,0.06189,20.716907183329266,2.53037,107.21200180053711,1.003590753,41.841426849365234,7.6e-4,12.86959989865621,0.00492903919,9.08655071258545,0.280090493,109.09678713480632,5.58308,317.3189341227214,0.00367,5.078076203664144,106.22046,0,437.56307729085285,4379.98836,1519.1180521647134,157.00084406375055,571.0649973551432,528.4344028800771,7.5120309591293335,9.05015499,4.279929916063945,0.22253263980000001,15.733056624730429,0.1272670661,271.65599568684894,19.7353158,113.00967597961426,13.32806,197.95700327555338,7.56604,4.783980091412862,0.307437973,28.20539967219035,0.004569999999999999,5.745000084241231,2.72450961,0.10371300019323826,0.01215,0.8213520050048828,0.30678900200000003,0.17950600013136864,0.0308959861,363.1109771728515,7.879061919206545,90.03812818648387,151.35080585630996,26.491530279393846,16.781381226566598,-0.2499507703922839,22.73940086364746,1.34604,11679.0317104844,0,0.36028706779082614,0.06816,2.4204498330752053,0.22056,0.1283650038142999,0.0425 +2064,1.0312131397701463,1.0543341834931579,0,0,4.262589668246174,6.513419985771179,0.059520000000000003,19.994606653849285,2.39486,107.27900123596191,0.987390904,41.35682678222656,6.8e-4,12.796500047047934,0.0044809447199999995,9.07948080698649,0.270420074,107.10479100545247,5.36424,313.9629389444987,0.00326,5.063405712445577,106.17708,0,435.9224675496419,4378.30568,1482.2581583658853,154.4318311734715,570.6769968668619,523.111707373292,7.107930898666382,8.605453319999999,4.03503002723058,0.2021180764,14.33675185839335,0.1114079348,262.9860026041667,20.1281244,105.07545153299968,13.57028,194.2230021158854,7.73012,4.648750066757202,0.309644924,28.068699836730957,0.004359999999999999,5.0997300545374555,2.78935808,0.08564320144553979,0.0116,0.7341290016969045,0.312368126,0.16823400060335794,0.0311661418,363.77197774251295,7.914624615219879,90.49244429426723,148.91274539700106,25.711201436609322,16.67648777180902,-0.2510661827793022,22.787400881449383,1.3330199999999999,11301.77634118635,0,0.3401230648159981,0.06358,2.3932798703511557,0.21288,0.12458000207940738,0.0408 +2065,0.4832523305909273,0.9923602740242061,0,0,4.167637584119529,6.515379985173543,0.057150000000000006,19.295206864674885,2.25935,107.34400113423665,0.971191055,40.877926190694176,6.000000000000001e-4,12.72379994392395,0.00403285025,9.072030703226725,0.260749655,105.14379437764485,5.1454,310.6419372558594,0.00285,5.050575415293376,106.1337,0,434.5367736816406,4376.623,1447.8482564290362,151.86281828319244,570.0880025227865,517.7890118665068,6.722430904706319,8.16075165,3.8024799823760986,0.181703513,13.058847268422445,0.0955488035,254.60499954223633,20.520933,97.73056538899739,13.8125,190.56600062052408,7.8942000000000005,4.5171600977579756,0.311851875,27.932000001271565,0.00415,4.539550065994263,2.85420655,0.07082820062836011,0.01105,0.6572670092185339,0.31794725,0.15768000235160193,0.0314362975,364.4349797566731,7.950187311233214,90.94676040205059,146.47468493769216,24.930872593824795,16.571594317051442,-0.2521160368477341,22.834800561269123,1.3199999999999998,10924.520971888302,0,0.32103606561819714,0.059,2.366189877192179,0.2052,0.12089400303860505,0.0391 +2066,0,0.9303863645552544,0.06470847858829165,0,4.0726854999928825,6.517250021298726,0.05478,18.61820650100708,2.12384,107.40800094604492,0.954991206,40.4046262105306,5.200000000000001e-4,12.651599804560343,0.00358475578,9.064210812250773,0.25107923600000004,103.21279716491699,4.92656,307.3579355875651,0.0024400000000000003,5.038964907328288,106.09031999999999,0,433.3054707845052,4374.94032,1415.6883748372393,149.29380539291338,569.2990061442057,512.4663163597218,6.35533086458842,7.716049979999999,3.5819000204404197,0.1612889496,11.890243291854858,0.0796896722,246.50799814860025,20.913741599999998,90.93778800964355,14.05472,186.98400243123373,8.05828,4.38916011651357,0.314058826,27.79550011952718,0.00394,4.054050068060557,2.91905502,0.05868630080173413,0.0105,0.5896170089642206,0.323526374,0.14780200148622194,0.0317064532,365.10097503662104,7.985750007246549,91.40107650983394,144.03662447838326,24.15054375104027,16.466700862293862,-0.2531003325975797,22.88170099258423,1.30698,10547.265602590252,0,0.30297406017780304,0.054419999999999996,2.3391998410224915,0.19752,0.11730600396792094,0.0374 +2067,0,0.8684124550863026,0.6126692877675106,0,3.977733415866237,6.519009947776794,0.05241,17.9629062016805,1.9883300000000002,107.47100194295247,0.938791357,39.93702507019043,4.4000000000000007e-4,12.579700072606405,0.0031366613100000003,9.056050777435303,0.241408817,101.3138001759847,4.70772,304.1089375813802,0.0020300000000000006,5.028374592463176,106.04693999999999,0,432.1941172281901,4373.25764,1385.6084696451821,146.72479250263433,568.3090057373047,507.14362085293675,6.006270845731099,7.27134831,3.3728699684143066,0.1408743862,10.822539647420248,0.06383054090000001,238.68999735514322,21.3065502,84.66097831726074,14.29694,183.4800033569336,8.22236,4.264730056126912,0.316265777,27.659200191497803,0.00373,3.633970061937968,2.98390349,0.048735800199210644,0.00995,0.5301460027694702,0.329105498,0.13856499890486398,0.0319766089,365.76897176106763,8.021312703259884,91.8553926176173,141.59856401907436,23.370214908255747,16.361807407536283,-0.2540190700288391,22.928101062774658,1.29396,10170.010233292203,0,0.28588705758253735,0.04984,2.3123198548952737,0.18984,0.11381300228337447,0.0357 +2068,0,0.8064385456173508,1.16063009694673,0,3.882781331739592,6.520669897397359,0.05004,17.328906059265137,1.8528200000000001,107.53300094604492,0.922591508,39.47492504119873,3.5999999999999997e-4,12.508300065994263,0.00268856684,9.047560612360636,0.231738398,99.44480387369792,4.48888,300.8949432373047,0.00162,5.01872440179189,106.00356,0,431.18783315022785,4371.57496,1357.458536783854,144.15577961235527,567.11700439453125,501.8209253461516,5.674820780754089,6.82664664,3.1749800046284995,0.1204598228,9.847706158955893,0.04797140959999999,231.14599990844727,21.6993588,78.8657169342041,14.53916,180.05200322469076,8.38644,4.1438301006952925,0.318472728,27.523200035095215,0.0035199999999999997,3.2711400787035623,3.0487519599999997,0.04057439975440502,0.009399999999999999,0.4779290035367012,0.33468462200000004,0.12993100037177405,0.0322467646,366.4389775594075,8.056875399273219,92.30970872540064,139.16050355976546,22.58988606547122,16.256913952778703,-0.2548722491415121,22.97390079498291,1.28094,9792.754863994152,0,0.2697250545024872,0.04526,2.2855498592058816,0.18216,0.11041200285156567,0.034 +2069,0,0.7444646361483992,1.7085909061259494,0,3.7878292476129465,6.522220015525818,0.047670000000000004,16.715505917867024,1.7173100000000001,107.59400113423665,0.9063916590000001,39.01842498779297,2.8e-4,12.437300046284994,0.0022404723699999997,9.038740555445353,0.22206797900000003,97.60620752970378,4.27004,297.71693929036456,0.0012100000000000001,5.00995401541392,105.96018,0,430.28055572509766,4369.89228,1331.078643798828,141.58676672207622,565.7240142822266,496.49822983936656,5.360470692316691,6.381944969999999,2.9877899885177612,0.1000452594,8.958272775014242,0.03211227829999999,223.87200037638345,22.0921674,73.51921526590984,14.78138,176.70100275675455,8.55052,4.026410102844238,0.320679679,27.387499809265137,0.0033099999999999996,2.958340048789978,3.11360043,0.03388050043334564,0.00885,0.43213900675376254,0.34026374600000003,0.12186599957446258,0.0325169203,367.1129760742187,8.092438095286553,92.764024833184,136.72244310045656,21.809557222686696,16.152020498021127,-0.2556598699355987,23.019200960795086,1.26792,9415.499494696103,0,0.2544410564005375,0.04068,2.2589198549588523,0.17448,0.10710400218764941,0.032299999999999995 +2070,0,0.6824907266794474,2.2565517153051684,0,3.6928771634863007,6.523679971694946,0.0453,16.122306029001873,1.5818,107.65300114949544,0.89019181,38.56732432047526,2e-4,12.3667999903361,0.0017923779,9.029610554377237,0.21239756,95.79771041870117,4.0512,294.5739466349284,8e-4,5.002023537953694,105.9168,0,429.4652582804362,4368.2096,1306.3387145996091,139.01775383179717,564.1300099690756,491.1755343325815,5.062660654385884,5.9372433,2.8108699719111123,0.079630696,8.147260109583536,0.016253147,216.85999806722006,22.484976,68.59046999613444,15.0236,173.42700576782227,8.7146,3.9124300877253213,0.32288663,27.252099990844727,0.0031,2.689230044682821,3.1784489,0.0283848000690341,0.0083,0.3920360083381335,0.34584287,0.11433599951366584,0.032787076,367.787976582845,8.128000791299888,93.21834094096735,134.28438264114766,21.02922837990217,16.047127043263547,-0.256381932411099,23.06390078862508,1.2549,9038.244125398054,0,0.23999104648828506,0.0361,2.2324198484420776,0.1668,0.10388600205381711,0.0306 +2071,0,0.6389056803691486,2.460951496500738,0,3.6117225968956626,6.525030016899109,0.04399,15.548705577850342,1.50882,107.71200052897136,0.879431909,38.12162399291992,1.8e-4,12.296600103378296,0.001657949557,9.020190636316935,0.205751345,94.01901308695476,3.9091199999999997,291.4649429321289,7.300000000000001e-4,4.994923830032349,105.89282,0,428.7401402791341,4367.09196,1283.0987955729165,137.9164839965719,562.3370107014974,488.09552059893525,4.780790646870931,5.6829841299999995,2.643779993057251,0.0739077507,7.40818723042806,0.014775588179999999,210.10599772135416,22.8043935,64.05058670043945,15.27262,170.22900263468424,8.848930000000001,3.8018301129341125,0.32427797,27.117199897766113,0.00296,2.4582300583521524,3.23532481,0.023866300005465746,0.00792,0.3569600060582161,0.35157900400000003,0.10730999956528346,0.0330203923,368.4659754435221,8.100306078171625,93.06940867667768,132.35611675188392,20.57575721313254,15.999198443733421,-0.25705788281881925,23.10810089111328,1.24151,8833.411394679219,0,0.22633404781421027,0.03408,2.2060698866844177,0.16155,0.10075600259006023,0.029509999999999998 +2072,0,0.5953206340588499,2.665351277696307,0,3.5305680303050244,6.5262999931971235,0.04268,14.994105418523153,1.43584,107.77000109354655,0.868672008,37.68122418721517,1.6e-4,12.226900021235148,0.001523521214,9.010490576426188,0.19910513000000002,92.27001635233562,3.7670399999999997,288.3899383544922,6.6e-4,4.987504204114278,105.86883999999999,0,427.9724706013997,4365.97432,1261.4089050292966,136.81521416134666,560.4280039469401,485.015506865289,4.513850569725037,5.428724959999999,2.4859699805577598,0.06818480539999999,6.73454491297404,0.01329802936,203.59499740600586,23.123811,59.86815865834554,15.52164,167.1030019124349,8.983260000000001,3.6944501201311746,0.32566931,26.982500235239666,0.00282,2.2600200176239014,3.29220072,0.020151000159482162,0.00754,0.32629700501759845,0.35731513800000003,0.10075099890430768,0.0332537086,369.13997395833326,8.072611365043365,92.92047641238801,130.4278508626202,20.122286046362905,15.951269844203296,-0.25768772115875943,23.151701132456463,1.2281199999999999,8628.578663960381,0,0.213428046554327,0.03206,2.1798698902130127,0.1563,0.09771290235221386,0.028419999999999997 +2073,0,0.5517355877485511,2.869751058891876,0,3.4494134637143863,6.527519981066386,0.04137,14.458105246225992,1.36286,107.82600084940593,0.8579121070000001,37.24622440338135,1.4000000000000001e-4,12.157600084940592,0.0013890928710000002,9.000520388285318,0.192458915,90.55042012532552,3.6249599999999997,285.3499476114909,5.9e-4,4.979483763376872,105.84486,0,427.12353515625,4364.85668,1241.3089701334634,135.7139443261214,558.4830067952474,481.9354931316428,4.260910630226135,5.17446579,2.3369099696477256,0.0624618601,6.120432694753011,0.01182047054,197.31499735514322,23.4432285,56.014695167541504,15.77066,164.04600397745767,9.11759,3.5901401241620383,0.32706065,26.848200003306072,0.00268,2.090000053246816,3.34907663,0.01709230011329055,0.00716,0.2995060086250305,0.36305127200000004,0.0946268979460001,0.033487024899999995,369.8029708862304,8.044916651915102,92.77154414809836,128.49958497335646,19.668814879593274,15.903341244673168,-0.25827144743091945,23.19480101267497,1.2147299999999999,8423.745933241546,0,0.20123304054141045,0.03004,2.153839866320292,0.15105000000000002,0.09475380244354407,0.02733 +2074,0,0.5081505414382523,3.0741508400874458,0,3.368258897123748,6.528679966926575,0.04006,13.940105120340982,1.2898800000000001,107.88300132751465,0.8471522060000001,36.816423416137695,1.2e-4,12.08869997660319,0.001254664528,8.99029048283895,0.1858127,88.85982131958008,3.4828799999999998,282.3429412841797,5.200000000000001e-4,4.9719235102335615,105.82088,0,426.31328837076825,4363.73904,1222.6690470377603,134.61267449089615,556.4950052897135,478.85547939799653,4.021490514278412,4.92020662,2.1962200005849204,0.0567389148,5.560930609703064,0.01034291172,191.25999959309897,23.762646,52.46750291188558,16.01968,161.057004292806,9.25192,3.4888501167297363,0.32845198999999997,26.714200019836426,0.0025399999999999997,1.9446000556151073,3.40595254,0.014569300149256984,0.00678,0.2761400068799655,0.36878740600000004,0.08891099939743678,0.0337203412,370.45597330729163,8.01722193878684,92.62261188380869,126.57131908409274,19.215343712823643,15.855412645143042,-0.25880906163529943,23.237301031748455,1.2013399999999999,8218.91320252271,0,0.18971403812368712,0.02802,2.1279699007670083,0.14579999999999999,0.0918770016481479,0.02624 +2075,0,0.46456549512795364,3.2785506212830153,0,3.2871043305331105,6.52977995077769,0.03875,13.439604918162027,1.2169,107.93800163269043,0.8363923050000001,36.39192326863607,1e-4,12.02020001411438,0.001120236185,8.979820410410563,0.179166485,87.19802665710449,3.3407999999999998,279.3689448038737,4.5000000000000004e-4,4.965063254038493,105.7969,0,425.5760854085286,4362.6214,1205.3890991210935,133.5114046556709,554.4620107014974,475.7754656643503,3.7950804829597473,4.66594745,2.0635199745496116,0.0510159695,5.0514687697092695,0.0088653529,185.42599868774414,24.0820635,49.20518143971761,16.2687,158.13600158691406,9.38625,3.3905500570933023,0.32984333,26.580499807993572,0.0024,1.8206500609715779,3.46282845,0.012487700131411353,0.0063999999999999994,0.25580100218455,0.37452354,0.08357939993341763,0.0339536575,371.09697723388666,7.989527225658577,92.47367961951902,124.64305319482901,18.761872546054008,15.807484045612917,-0.25930056377189936,23.279200553894043,1.1879499999999998,8014.080471803873,0,0.17883603647351265,0.026000000000000002,2.1022799015045166,0.14055,0.0890804020067056,0.02515 +2076,0,0.4209804488176549,3.4829504024785845,0,3.2059497639424723,6.530830025672913,0.03744,12.956004778544107,1.14392,107.99300130208333,0.825632404,35.97242228190104,8e-5,11.952200174331665,9.85807842e-4,8.96911064783732,0.17252027,85.56472905476888,3.19872,276.4279429117839,3.800000000000001e-4,4.9589329560597735,105.77292,0,424.91684977213544,4361.50376,1189.359171549479,132.41013482044565,552.3800201416016,472.69545193070405,3.5811304847399392,4.41168828,1.9384399851163228,0.045293024200000004,4.587816993395488,0.007387794080000001,179.80799992879233,24.401481,46.20753256479899,16.51772,155.2820027669271,9.52058,3.2951901157697043,0.33123467,26.44729995727539,0.00226,1.7154100735982258,3.51970436,0.01076540001668036,0.006019999999999999,0.23813500627875328,0.380259674,0.07860879848400752,0.0341869738,371.7289784749348,7.961832512530315,92.32474735522935,122.71478730556528,18.308401379284376,15.759555446082791,-0.25974595384071925,23.320600986480713,1.17456,7809.247741085037,0,0.1685630331436793,0.02398,2.0767699082692466,0.1353,0.08636220234135787,0.024059999999999998 +2077,0,0.37739540250735615,3.6873501836741536,0,3.124795197351834,6.531820098559062,0.03613,12.48890471458435,1.07094,108.04700152079265,0.8148725030000001,35.55802313486735,6.000000000000002e-5,11.884600003560385,8.513794990000002e-4,8.958170493443808,0.165874055,83.95943196614583,3.05664,273.5199457804362,3.1000000000000005e-4,4.953522642453511,105.74894,0,424.33463287353516,4360.38612,1174.4692179361978,131.3088649852204,550.24700927734375,469.6154381970578,3.3791004618008933,4.157429110000001,1.8205999930699666,0.03957007890000001,4.166045506795247,0.0059102352600000005,174.40099970499674,24.7208985,43.45545895894369,16.76674,152.49700419108072,9.654910000000001,3.2027000983556113,0.33262600999999997,26.31450017293294,0.00212,1.626440058151881,3.57658027,0.009329940114791194,0.00564,0.22282900537053743,0.385995808,0.07397700039048989,0.0344202901,372.3489786783854,7.934137799402054,92.17581509093968,120.78652141630155,17.854930212514745,15.711626846552665,-0.2601452318417589,23.361400763193767,1.16117,7604.4150103662005,0,0.15886203199625015,0.02196,2.05144993464152,0.13005,0.08372160233557224,0.022969999999999997 +2078,0,0.33381035619705735,3.891749964869723,0,3.043640630761196,6.532749970753987,0.03482,12.037804444630941,0.99796,108.10000165303548,0.804112602,35.14862219492594,3.9999999999999996e-05,11.817300001780191,7.16951156e-4,8.947020451227823,0.15922783999999998,82.38193321228027,2.91456,270.6439488728841,2.3999999999999998e-4,4.9487924973169966,105.72496000000001,0,423.82741292317706,4359.26848,1160.6392618815103,130.20759514999514,548.0620066324869,466.5354244634116,3.188430448373159,3.90316994,1.7096499900023143,0.033847133599999996,3.782534102598826,0.00443267644,169.19799931844076,25.040316,40.93126106262207,17.01576,149.77800369262695,9.78924,3.113040109475454,0.33401735,26.182100137074787,0.00198,1.5516300698121388,3.63345618,0.008127450050475696,0.005259999999999999,0.2096020057797432,0.391731942,0.06966299811999004,0.034653606399999995,372.9599736531575,7.906443086273791,92.02688282665002,118.85825552703781,17.401459045745113,15.663698247022538,-0.26049839777501865,23.40170081456502,1.14778,7399.582279647364,0,0.1497050312658151,0.01994,2.026309907436371,0.1248,0.08115700073540211,0.021879999999999997 +2079,0,0.2902253098867586,4.096149746065293,0,2.962486064170558,6.533629973729451,0.03351,11.602204402287802,0.92498,108.15300051371257,0.7933527010000001,34.74412218729655,1.9999999999999998e-5,11.750499884287516,5.82522813e-4,8.93565058708191,0.152581625,80.8317387898763,2.77248,267.79994201660156,1.7e-4,4.94470230738322,105.70098,0,423.3892313639323,4358.15084,1147.779327392578,129.1063253147699,545.8230133056641,463.45541072976533,3.008570412794749,3.64891077,1.6052300035953522,0.0281241883,3.4339427947998047,0.0029551176199999994,164.19600041707358,25.3597335,38.61804167429606,17.264780000000002,147.12600072224936,9.92357,3.026150087515513,0.33540868999999995,26.050299962361652,0.0018399999999999998,1.4891400436560314,3.69033209,0.007119180091346304,0.00488,0.1982050041357676,0.397468076,0.06564659873644511,0.034886922699999996,373.5599797566731,7.878748373145529,91.87795056236035,116.92998963777409,16.94798787897548,15.615769647492412,-0.26080545164049823,23.44140100479126,1.13439,7194.749548928528,0,0.14106303080916405,0.017920000000000002,2.001369923353195,0.11954999999999999,0.07866540054480235,0.020789999999999996 +2080,0,0.24664026357645988,4.300549527260862,0,2.88133149757992,6.534440040588379,0.0322,11.181604385375977,0.852,108.20500055948894,0.7825928000000001,34.344521840413414,0,11.684199889500936,4.4809447e-4,8.924090385437012,0.14593541,79.30873998006184,2.6304,264.98794809977215,1e-4,4.9412219524383545,105.677,0,423.0180079142253,4357.0332,1135.8193562825518,128.00505547954464,543.5280202229818,460.3753969961191,2.8389803767204285,3.3946516000000004,1.5070099929968517,0.022401243,3.117211620012919,0.0014775588,159.38699849446616,25.679151,36.50030040740967,17.5138,144.53900273640951,10.0579,2.941970109939575,0.33680003,25.919000148773193,0.0017,1.4373400509357452,3.747208,0.006268400155628721,0.0045,0.1884200063844522,0.40320421,0.061909098799029984,0.035120239,374.14897918701166,7.851053660017267,91.72901829807068,115.00172374851036,16.494516712205847,15.567841047962286,-0.2610663934381977,23.480600833892822,1.121,6989.916818209692,0,0.13290602962176004,0.0159,1.976629912853241,0.1143,0.07624520175158978,0.0197 +2081,0,0.22356228857077937,4.3784666795489775,0,2.834081757201689,6.535210013389587,0.031039999999999998,10.775504032770792,0.81269,108.25600115458171,0.7715729010000001,33.94982147216797,0,11.618200063705444,4.25689747e-4,8.912350416183472,0.141363939,77.8124434153239,2.53814,262.20594787597656,9e-5,4.938302238782247,105.65577,0,422.70896402994794,4355.888559999999,1124.6794026692705,126.92298386847112,541.1780141194662,458.78715640951276,2.6791303555170694,3.2492708500000003,1.4146500031153362,0.020790642680000002,2.829500595728556,0.0013462202399999999,154.76699829101562,25.7665821,34.563340187072754,17.64934,142.01800282796225,10.09125,2.860440115133921,0.33566057099999996,25.788300037384033,0.00162,1.3948400517304738,3.77240947,0.005540089992185433,0.0042899999999999995,0.18005400523543358,0.406323495,0.0584322993333141,0.035120239,374.7289784749348,7.819547030765665,91.91239773595773,114.17591611415287,16.32572664528545,15.505461715624582,-0.2613029242101165,23.519200801849365,1.1062400000000001,6900.561430344213,0,0.12521102651953697,0.01501,1.952089915672938,0.11069999999999999,0.07389480123917262,0.01899 +2082,0,0.20048431356509883,4.456383831837093,0,2.7868320168234586,6.535919984181722,0.02988,10.383603890736898,0.77338,108.30600102742513,0.7605530020000001,33.55982176462809,0,11.552600065867106,4.03285024e-4,8.90043044090271,0.136792468,76.3425464630127,2.44588,259.45594533284503,8e-5,4.93478278319041,105.63454,0,422.33335876464844,4354.74392,1114.2294108072915,125.8409122573976,538.8040059407552,457.19891582290643,2.528320332368215,3.1038901000000005,1.3277799884478252,0.01918004236,2.5680796106656394,0.00121488168,150.31999969482422,25.8540132,32.78855164845785,17.78488,139.55500284830728,10.124600000000001,2.781400124231974,0.33452111199999995,25.658099969228108,0.00154,1.3596400717894237,3.79761094,0.00492063001729548,0.004079999999999999,0.17287500451008478,0.40944278,0.055194299668073654,0.035120239,375.2979710896809,7.788040401514063,92.09577717384477,113.35010847979537,16.156936578365052,15.44308238328688,-0.2615150439562545,23.55720090866089,1.09148,6811.206042478732,0,0.11795102432370186,0.01412,1.9277599155902863,0.1071,0.07161180240412553,0.018279999999999998 +2083,0,0.1774063385594183,4.534300984125209,0,2.739582276445228,6.536580006281535,0.02872,10.005303780237833,0.73407,108.35600153605144,0.7495331030000001,33.17452081044515,0,11.48739997545878,3.80880301e-4,8.888330300649008,0.13222099699999998,74.8985481262207,2.35362,256.73594919840497,7.000000000000001e-5,4.930252591768901,105.61331,0,421.84654235839844,4353.59928,1104.3494364420571,124.7588406463241,536.4390106201172,455.6106752363001,2.3858903447786965,2.9585093500000004,1.2460499902566273,0.01756944204,2.3304587403933206,0.00108354312,146.03299967447916,25.9414443,31.15894317626953,17.92042,137.14600245157877,10.15795,2.704680105050405,0.333381653,25.52839994430542,0.00146,1.330000062783559,3.82281241,0.0043990200307841105,0.0038699999999999997,0.16667300586899123,0.41256206500000003,0.05217469887187084,0.035120239,375.85597991943354,7.756533772262461,92.27915661173182,112.52430084543786,15.988146511444654,15.380703050949176,-0.2617027526766118,23.594600836435955,1.07672,6721.850654613253,0,0.11110302371283372,0.01323,1.903639942407608,0.1035,0.06939450092613697,0.01757 +2084,0,0.15432836355373777,4.612218136413325,0,2.6923325360669974,6.5371900002161665,0.02756,9.640183607737223,0.6947599999999999,108.40500005086263,0.7385132040000001,32.793920834859215,0,11.42270008722941,3.58475578e-4,8.87608027458191,0.12764952599999999,73.48025067647298,2.26136,254.04594930013022,6e-5,4.925712505976359,105.59208,0,421.3514455159505,4352.45464,1094.9994608561196,123.67676903525059,534.0780181884766,454.02243464969376,2.251430332660675,2.8131286,1.1691900094350178,0.01595884172,2.1145278811454773,9.522045599999999e-4,141.900998433431,26.0288754,29.663522084554035,18.05596,134.78800328572592,10.1913,2.6302401224772134,0.332242194,25.399099826812744,0.00138,1.3052000602086384,3.84801388,0.003956740042970826,0.0036599999999999996,0.1613330071171125,0.41568135,0.04935929893205563,0.035120239,376.40297698974604,7.725027143010859,92.46253604961886,111.69849321108038,15.819356444524256,15.318323718611472,-0.2618660503711884,23.63140042622884,1.06196,6632.495266747773,0,0.10464302202065785,0.01234,1.8797299365202587,0.09989999999999999,0.06724170098702113,0.01686 +2085,0,0.13125038854805726,4.690135288701441,0,2.645082795688767,6.537749965985616,0.0264,9.287893613179525,0.65545,108.45300038655598,0.7274933050000001,32.417820612589516,0,11.358299970626831,3.36070855e-4,8.86366049448649,0.12307805499999999,72.0873540242513,2.1691,251.38595072428384,5e-5,4.921402414639791,105.57085000000001,0,420.87939453125,4351.3099999999995,1086.139485677083,122.59469742417707,531.7190246582031,452.43419406308743,2.1245402892430625,2.6677478500000005,1.0969200034936268,0.0143482414,1.918367216984431,8.20866e-4,137.91899744669595,26.1163065,28.29228623708089,18.191499999999998,132.48200352986655,10.22465,2.5580200950304666,0.331102735,25.270300070444744,0.0013,1.2846100628376007,3.8732153499999997,0.0035787300439551473,0.00345,0.15675300483902296,0.418800635,0.04673509951680899,0.035120239,376.93997701009107,7.693520513759257,92.6459154875059,110.87268557672289,15.650566377603859,15.255944386273768,-0.26200493703998423,23.667500813802082,1.0472000000000001,6543.1398788822935,0,0.098550820723176,0.01145,1.856039931376775,0.0963,0.06515200125674407,0.016149999999999998 +2086,0,0.10817241354237672,4.768052440989557,0,2.597833055310536,6.538259983062744,0.02524,8.947993516921997,0.61614,108.50000190734863,0.716473406,32.04632012049357,0,11.294300079345703,3.13666132e-4,8.8510901927948,0.118506584,70.71925481160481,2.07684,248.75495020548502,4e-5,4.917372226715088,105.54962,0,420.43528747558594,4350.16536,1077.709503173828,121.51262581310355,529.3610076904297,450.8459534764811,2.0048102935155234,2.5223671000000003,1.0290000140666962,0.012737641079999999,1.74020653963089,6.8952744e-4,134.0819994608561,26.2037376,27.03583876291911,18.32704,130.22600301106772,10.258000000000001,2.487950086593628,0.32996327599999997,25.14199988047282,0.00122,1.267670065164566,3.89841682,0.003252800030168146,0.00324,0.15284200633565584,0.42191992,0.04428939986974001,0.035120239,377.46597798665357,7.6620138845076555,92.82929492539294,110.04687794236538,15.481776310683463,15.193565053936066,-0.2621194126829993,23.70310052235921,1.03244,6453.784491016814,0,0.09280541973809402,0.01056,1.8325599332650502,0.0927,0.06312430246422689,0.015439999999999999 +2087,0,0.08509443853669621,4.8459695932776725,0,2.5505833149323056,6.538720051447551,0.02408,8.620083332061768,0.57683,108.54700088500977,0.705453507,31.679320176442463,0,11.230699936548868,2.91261409e-4,8.838380416234335,0.113935113,69.37575785319011,1.98458,246.15295028686523,3.000000000000001e-5,4.913622101147969,105.52839,0,420.02220662434894,4349.02072,1069.699503580729,120.43055420203004,527.0030110677084,449.25771288987477,1.8918602565924327,2.37698635,0.9651769995689392,0.01112704076,1.5784359375635784,5.5818888e-4,130.3859952290853,26.2911687,25.88547960917155,18.46258,128.02100245157877,10.291350000000001,2.420000116030375,0.32882381699999996,25.01419989267985,0.00114,1.253920078277588,3.92361829,0.0029638800187967718,0.0030299999999999997,0.14951900765299797,0.42503920500000003,0.04201059943685929,0.035120239,377.98197428385413,7.630507255256053,93.01267436327998,109.22107030800788,15.312986243763065,15.131185721598362,-0.2622094773002337,23.73810084660848,1.01768,6364.429103151334,0,0.08738891780376434,0.00967,1.8092999358971913,0.0891,0.06115610059350729,0.01473 +2088,0,0.06201646353101567,4.923886745565788,0,2.503333574554075,6.539129972457886,0.02292,8.303763310114542,0.53752,108.59300168355306,0.694433608,31.316719849904377,0,11.16759991645813,2.68856686e-4,8.82554038365682,0.10936364199999998,68.05646133422852,1.8923199999999998,243.58095169067383,1.9999999999999998e-5,4.910142183303833,105.50716,0,419.6381530761719,4347.87608,1062.0695292154946,119.34848259095654,524.6420135498047,447.66947230326844,1.7853202521800995,2.2316056,0.9052199920018514,0.009516440439999998,1.4315554002920787,4.268503199999999e-4,126.82699775695801,26.3785998,24.833109378814697,18.598119999999998,125.86500422159831,10.3247,2.3540901144345603,0.327684358,24.886900107065838,0.00106,1.242920070886612,3.9488197599999997,0.002704960041834662,0.0028199999999999996,0.1467130072414875,0.42815849,0.03988759902616342,0.035120239,378.48797353108716,7.599000626004451,93.19605380116704,108.3952626736504,15.144196176842668,15.068806389260658,-0.26227513089168736,23.77240053812663,1.00292,6275.073715285855,0,0.08228231531878312,0.00878,1.7862499554951985,0.08549999999999999,0.05924530141055584,0.01402 +2089,0,0.03893848852533513,5.001803897853904,0,2.4560838341758444,6.539479931195577,0.02176,7.998663266499837,0.49821,108.638001759847,0.683413709,30.958419640858967,0,11.10479998588562,2.46451963e-4,8.812560240427652,0.10479217099999999,66.76096471150716,1.80006,241.03595225016275,9.999999999999999e-6,4.9069011608759565,105.48593,0,419.2808888753255,4346.73144,1054.769571940104,118.26641097988302,522.2770182291666,446.0812317166621,1.6848502457141876,2.0862248500000002,0.8489079922437668,0.007905840119999999,1.298244873682658,2.955117599999998e-4,123.39999707539876,26.4660309,23.871129194895428,18.73366,123.75700251261394,10.35805,2.2901901404062905,0.326544899,24.760200023651123,9.8e-4,1.234340061744054,3.97402123,0.002475490056288739,0.0026099999999999995,0.1443600058555603,0.431277775,0.03791019941369692,0.035120239,378.98298136393225,7.56749399675285,93.37943323905408,107.5694550392929,14.97540610992227,15.006427056922956,-0.26231637345736025,23.806100845336914,0.98816,6185.718327420374,0,0.07746811583638191,0.00789,1.763439933458964,0.0819,0.057390800987680755,0.013309999999999999 +2090,0,0.01586051351965462,5.07972105014202,0,2.408834093797614,6.539789954821269,0.0206,7.704402923583984,0.4589,108.68200238545735,0.67239381,30.604519367218018,0,11.042399883270264,2.2404724e-4,8.79947026570638,0.1002207,65.48906707763672,1.7078,238.51995340983072,0,4.905869841575623,105.4647,0,419.15088907877606,4345.5868,1047.9096069335935,117.1843393688095,519.9070180257162,444.49299113005577,1.5902902285257976,1.9408441000000003,0.796085000038147,0.0062952398,1.1773644089698792,1.641732e-4,120.10599899291992,26.553462,22.994744459788006,18.8692,121.69900512695312,10.3914,2.2283101081848145,0.32540544,24.63410011927287,9e-4,1.2280300656954448,3.9992227,0.002270320119957129,0.0024,0.14242400725682577,0.43439706,0.036071198992431164,0.035120239,379.4669748942057,7.535987367501248,93.56281267694112,106.7436474049354,14.806616043001872,14.944047724585252,-0.26233320499725243,23.839200655619305,0.9734,6096.362939554895,0,0.07293141509095828,0.006999999999999999,1.7408399482568104,0.0783,0.0555916012575229,0.0126 +2091,0,0,5.104175413173149,0.0075815001136105425,2.3857376137950275,6.540050029754639,0.02033,7.420622905095418,0.43762,108.72599983215332,0.663423893,30.25481923421224,0,10.980299949645996,2.01642516e-4,8.786250352859497,0.0970558359,64.24016984303792,1.6476899999999999,236.03095372517905,0.0012000000000000001,4.907489776611328,105.45975999999999,0,419.30235544840497,4344.65509,1041.529622395833,116.23534281250366,517.5310211181641,443.5814803268978,1.5014602144559224,1.8667949400000003,0.7465920001268387,0.00775867862,1.0678940117359161,0.00105070848,116.94499842325847,26.558177699999998,22.199151515960693,18.94417,119.69400405883789,10.39321,2.168470084667206,0.323618289,24.508899847666424,8.1e-4,1.223870058854421,4.00937449,0.002085220029888054,0.0021599999999999996,0.14087400709589323,0.436124181,0.0343635988732179,0.0350465602,379.9419809977213,7.513404171699458,93.40017002711446,106.54245344169443,14.693092285192549,14.929302720651865,-0.26232523383402045,23.871700445810955,0.95677,6054.271583906918,0,0.0686567152539889,0.0070999999999999995,1.7184699376424153,0.07583,0.05384560146679481,0.012150000000000001 +2092,0,0,5.128629776204279,0.031023513746875706,2.362641133792441,6.540279905001323,0.02006,7.1469829479853315,0.41634,108.76900164286296,0.654453976,29.909318923950195,0,10.918699900309244,1.7923779199999998e-4,8.772930145263672,0.0938909718,63.014171282450356,1.58758,233.56995391845703,0.0024000000000000002,4.909969846407573,105.45482,0,419.53336842854816,4343.72338,1035.589640299479,115.28634625619783,515.1600189208984,442.66996952373984,1.4179601967334747,1.7927457800000002,0.700216993689537,0.00922211744,0.968718633055687,0.0019372437600000002,113.90899848937988,26.5628934,21.4758456548055,19.01914,117.73900413513184,10.39502,2.1105700929959617,0.321831138,24.384400208791096,7.199999999999999e-4,1.2212400535742443,4.01952628,0.0019161500288949658,0.0019199999999999998,0.13963300734758377,0.437851302,0.03277699928730726,0.034972881399999996,380.40797678629554,7.490820975897667,93.23752737728778,106.34125947845345,14.579568527383227,14.91455771671848,-0.2622924599676644,23.90360101064046,0.9401400000000001,6012.180228258941,0,0.06462741270661354,0.0072,1.6963199575742085,0.07336,0.052151901026566826,0.0117 +2093,0,0,5.153084139235408,0.05446552738014086,2.3395446537898548,6.5404999653498335,0.01979,6.883142789204915,0.39505999999999997,108.81100082397461,0.6454840589999999,29.568018595377605,0,10.857399940490723,1.56833068e-4,8.759510278701782,0.0907261077,61.81047375996908,1.5274699999999999,231.1359545389811,0.0036,4.912829756736755,105.44988,0,419.7812779744466,4342.79167,1030.079650878906,114.33734969989199,512.8050181070963,441.7584587205819,1.3394101858139038,1.7186966200000002,0.6567560036977133,0.01068555626,0.8788612981637319,0.00282377904,110.99199930826823,26.5676091,20.81713056564331,19.09411,115.83100573221843,10.396830000000001,2.0545500914255777,0.320043987,24.260700066884358,6.299999999999999e-4,1.2196200788021088,4.02967807,0.0017547200065261375,0.0016799999999999999,0.13863500704367956,0.439578423,0.031301699268321194,0.0348992026,380.8649800618489,7.468237780095876,93.07488472746111,106.14006551521248,14.466044769573905,14.899812712785094,-0.2622348833981841,23.934700806935627,0.92351,5970.088872610963,0,0.06083011285712322,0.007299999999999999,1.6743999520937602,0.07089,0.050509800824026264,0.01125 +2094,0,0,5.177538502266538,0.07790754101340604,2.3164481737872684,6.5406999985377,0.01952,6.628752589225769,0.37378,108.85300127665202,0.636514142,29.230718453725178,0,10.796600023905436,1.34428344e-4,8.74599035580953,0.0875612436,60.62887700398763,1.4673599999999998,228.72895685831705,0.0048000000000000004,4.915789802869161,105.44494,0,420.0353190104167,4341.85996,1024.9296569824216,113.38835314358614,510.4640197753906,440.84694791742396,1.2654901842276256,1.64464746,0.6160279959440231,0.012148995079999999,0.7974379857381185,0.0037103143200000006,108.18699773152669,26.5723248,20.21760892868042,19.16908,113.96900367736816,10.39864,2.000330130259196,0.318256836,24.137800057729084,5.399999999999999e-4,1.2188500662644703,4.03982986,0.0015993700071703643,0.0014399999999999999,0.1378490055600802,0.441305544,0.02992969937622547,0.0348255238,381.3139724731445,7.445654584294086,92.91224207763443,105.93887155197152,14.352521011764582,14.885067708851707,-0.2621525041255798,23.965200583140057,0.90688,5927.997516962986,0,0.05725361220538616,0.0073999999999999995,1.6527099609375,0.06842,0.04891730130960544,0.0108 +2095,0,0,5.201992865297667,0.1013495546466712,2.293351693784682,6.540899991989136,0.01925,6.383522550264995,0.35250000000000004,108.89399846394856,0.6275442250000001,28.897518316904705,0,10.735999981562296,1.1202362e-4,8.732360124588013,0.08439637950000001,59.469078381856285,1.40725,226.34795506795248,0.006,4.918769756952922,105.44,0,420.2912775675456,4340.92825,1020.0996907552083,112.43935658728032,508.13501993815106,439.935437114266,1.1958901584148407,1.5705983000000001,0.5778580009937286,0.013612433899999998,0.7236487021048864,0.0045968496,105.4919974009196,26.5770405,19.672380924224854,19.24405,112.15200424194336,10.40045,1.9478601117928822,0.316469685,24.01570002237956,4.5e-4,1.218840052684148,4.049981649999999,0.001448840038695683,0.0012,0.13724800447622934,0.443032665,0.028653599321842194,0.034751845,381.75598144531244,7.423071388492296,92.74959942780777,105.73767758873055,14.238997253955258,14.870322704918323,-0.2620453221498513,23.9950008392334,0.89025,5885.906161315009,0,0.0538842116172115,0.0075,1.6312399506568909,0.06595,0.047372400450209774,0.010350000000000002 +2096,0,0,5.226447228328796,0.12479156827993634,2.2702552137820957,6.541079998016357,0.01898,6.147122422854106,0.33122,108.93500137329102,0.618574308,28.568317731221516,0,10.675899982452393,8.961889599999999e-5,8.718640168507894,0.08123151540000001,58.33058102925619,1.34714,223.99395751953125,0.0072,4.921779791514079,105.43505999999999,0,420.54830169677734,4339.99654,1015.5696970621743,111.49036003097447,505.8180185953776,439.023926311108,1.1303301652272542,1.4965491400000002,0.5420830001433691,0.01507587272,0.6567674527565638,0.00548338488,102.90199788411458,26.581756199999997,19.17704709370931,19.31902,110.3780034383138,10.40226,1.897060106197993,0.314682534,23.894399960835774,3.5999999999999997e-4,1.2194600601991017,4.0601334399999995,0.001302110031247139,9.599999999999999e-4,0.13680900633335114,0.444759786,0.027466599363833666,0.0346781662,382.18898264567054,7.4004881926905055,92.5869567779811,105.53648362548957,14.125473496145936,14.855577700984936,-0.26191333747099865,24.024100462595623,0.8736200000000001,5843.814805667032,0,0.05070891045033932,0.0076,1.60998997092247,0.06348,0.045873500096301235,0.0099 +2097,0,0,5.250901591359926,0.14823358191320152,2.2471587337795094,6.541249990463257,0.01871,5.919252435366313,0.30994,108.97499974568684,0.609604391,28.24301767349243,0,10.616099913914999,6.7214172e-5,8.704840262730917,0.07806665130000001,57.21308263142904,1.28703,221.66495513916016,0.0084,4.924789786338806,105.43012,0,420.80628712972003,4339.06483,1011.2897135416665,110.54136347466863,503.5110168457031,438.11241550795006,1.068550129731496,1.42249998,0.5085519949595133,0.016539311539999997,0.5961402207612991,0.00636992016,100.4119987487793,26.5864719,18.72750775019328,19.39399,108.64800262451172,10.40407,1.847900112469991,0.312895383,23.773800214131672,2.7000000000000006e-4,1.220630059639613,4.07028523,0.0011635200159313779,7.199999999999999e-4,0.13651200383901596,0.446486907,0.02636219949151079,0.0346044874,382.6139831542968,7.377904996888715,92.42431412815442,105.3352896622486,14.011949738336615,14.84083269705155,-0.2617565500890219,24.05250056584676,0.85699,5801.723450019054,0,0.0477190101519227,0.0077,1.5889799694220226,0.06101,0.04441990020374457,0.00945 +2098,0,0,5.275355954391055,0.1716755955464667,2.224062253776923,6.541409969329834,0.018439999999999998,5.699612299601237,0.28866000000000003,109.01399993896484,0.600634474,27.921717643737793,0,10.556700070699057,4.480944799999998e-5,8.690960248311361,0.0749017872,56.11628500620524,1.2269199999999998,219.36195627848306,0.009600000000000001,4.927809715270996,105.42518,0,421.06529235839844,4338.1331199999995,1007.2397308349608,109.59236691836279,501.2140197753906,437.20090470479215,1.0103301405906677,1.34845082,0.47712399810552597,0.01800275036,0.5411730160315832,0.007256455440000001,98.01869773864746,26.591187599999998,18.320063591003418,19.46896,106.95900472005208,10.40588,1.8003000915050507,0.311108232,23.653899828592937,1.7999999999999993e-4,1.22229007879893,4.08043702,0.0010262900080609445,4.7999999999999996e-4,0.1363390050828457,0.448214028,0.025334699389835198,0.034530808600000004,383.03197733561194,7.355321801086925,92.26167147832776,105.13409569900763,13.898425980527291,14.826087693118163,-0.261574960003921,24.08030064900716,0.84036,5759.632094371077,0,0.04490310947100321,0.0078,1.568179965019226,0.058539999999999995,0.043011000690360866,0.009000000000000001 +2099,0,0,5.299810317422185,0.19511760917973187,2.2009657737743367,6.541550000508626,0.01817,5.487942258516948,0.26738000000000006,109.05300076802571,0.5916645570000001,27.604117552439373,0,10.497699896494547,2.240472399999999e-5,8.677000125249227,0.0717369231,55.03978729248047,1.16681,217.08395767211914,0.0108,4.930829683939616,105.42024,0,421.32527923583984,4337.20141,1003.3997294108071,108.64337036205696,498.9250208536784,436.2893939016342,0.9554251432418823,1.27440166,0.44766899943351746,0.01946618918,0.49133483072121936,0.00814299072,95.71829668680827,26.5959033,17.95121431350708,19.54393,105.31100463867188,10.407689999999999,1.7542201081911724,0.309321081,23.534800052642822,9.000000000000002e-5,1.2243600686391194,4.09058881,8.900660031940788e-4,2.3999999999999976e-4,0.13627500583728155,0.449941149,0.024378499171386164,0.0344571298,383.44197591145826,7.332738605285135,92.09902882850108,104.93290173576665,13.784902222717967,14.811342689184778,-0.261368567215696,24.107300599416096,0.8237300000000001,5717.5407387231,0,0.0422501095260183,0.0079,1.5476199587186177,0.05607,0.04164519999176264,0.008550000000000002 +2100,0,0,5.3242646804533145,0.218559622812997,2.1778692937717503,6.541689912478129,0.0179,5.283942143122355,0.24610000000000004,109.09100023905437,0.58269464,27.290417035420734,0,10.438999970753988,0,8.662970145543417,0.068572059,53.98339017232259,1.1066999999999998,214.8319574991862,0.012,4.93386971950531,105.4153,0,421.5852737426758,4336.2697,999.7277323404946,107.69437380575111,496.6440200805664,435.3778830984762,0.9036361376444498,1.2003525,0.42006199806928635,0.020929628,0.4461416353782018,0.009029526,93.50729688008626,26.600619,17.617761611938477,19.6189,103.70200475056966,10.4095,1.7096100946267445,0.30753393,23.416500091552734,0,1.226790060599645,4.1007406,7.545960009641325e-4,0,0.13630600521961847,0.45166827,0.023488499379406374,0.034383451,383.8439788818359,7.310155409483344,91.93638617867441,104.73170777252568,13.671378464908646,14.796597685251392,-0.2611373717243468,24.133700370788574,0.8071,5675.449383075123,0,0.039751808469494186,0.008,1.5272799829641979,0.0536,0.04032080061733723,0.008100000000000001 +2101,0,0,5.3242646804533145,0.21418843035673707,2.1731680345380164,6.541809995969136,0.017780666666666667,5.082682212193807,0.24445933333333336,109.12900225321452,0.5788100090666667,26.980416933695476,0,10.3807000319163,0,8.647540092468262,0.06811491194000001,52.96779600779215,1.099322,212.6039581298828,0.01192,4.936899979909261,104.71253133333333,0,421.84530385335285,4307.361235333333,996.2207489013671,107.52772332097322,494.3700180053711,434.5851787485477,0.856948142250379,1.19235015,0.3947329993049304,0.020790097146666665,0.4054524749517441,0.00896932916,91.38199806213379,26.423281539999998,17.316904226938885,19.488107333333332,102.13200441996257,10.340103333333333,1.6664100885391235,0.3054837038,23.298899968465168,0,1.2295300761858623,4.073402329333334,6.196600006660447e-4,0,0.13642000406980515,0.44865714819999997,0.022660099280377228,0.034154227993333335,384.2389831542968,7.301394882745122,91.8627309961603,104.43598333212462,13.631967242338145,14.78584103495773,-0.2609108022599994,24.159300645192463,0.8017193333333333,5643.913843384918,0,0.03748550731688738,0.007946666666666666,1.5063999990622203,0.05324266666666667,0.03894530050456524,0.008046000000000001 +2102,0,0,5.3242646804533145,0.20981723790047713,2.1684667753042826,6.5419299602508545,0.01766133333333333,4.884352246920268,0.2428186666666667,109.16600036621094,0.5749253781333333,26.67411708831787,0,10.322800079981485,0,8.63077982266744,0.06765776488,51.99179776509603,1.0919439999999998,210.40095901489258,0.01184,4.93953013420105,104.00976266666667,0,422.0774434407552,4278.452770666667,992.9727834065754,107.36107283619532,492.1150182088216,433.7924743986192,0.8161651442448298,1.1843477999999998,0.37153299649556476,0.020650566293333332,0.3688073481122653,0.008909132319999999,89.33379809061687,26.245944079999997,17.039931138356526,19.357314666666667,100.59700393676758,10.270706666666666,1.6245600978533428,0.3034334776,23.182000001271565,0,1.231730063756307,4.0460640586666665,5.005150039020615e-4,0,0.1365140068034331,0.4456460264,0.021886599560578663,0.03392500498666667,384.62698364257807,7.292634356006899,91.78907581364618,104.14025889172356,13.592556019767645,14.775084384664067,-0.26068885882265386,24.184600512186687,0.7963386666666668,5612.378303694714,0,0.035424607495466866,0.007893333333333334,1.4850099782148998,0.05288533333333333,0.037524900088707604,0.007992 +2103,0,0,5.3242646804533145,0.2054460454442172,2.1637655160705487,6.54203995068868,0.017542,4.693812171618144,0.24117800000000003,109.20300038655598,0.5710407472000001,26.371416568756104,0,10.265199899673462,0,8.614050070444742,0.06720061782,51.03309981028239,1.0845659999999997,208.22196197509766,0.01176,4.941650112469991,103.306994,0,422.2724965413411,4249.544306,990.0687866210936,107.19442235141743,489.89001719156903,432.9997700486908,0.7797441383202871,1.17634545,0.34977899740139645,0.02051103544,0.3354712277650833,0.00884893548,87.35459836324056,26.068606619999997,16.778651396433514,19.226522,99.09290504455566,10.20131,1.5840000907580059,0.3013832514,23.06580050786336,0,1.232630044221878,4.018725788,4.043500011903234e-4,0,0.13649600620071092,0.4426349046,0.021161599395175774,0.033695781980000006,385.0109786987304,7.283873829268677,91.71542063113205,103.8445344513225,13.553144797197145,14.764327734370406,-0.2604715414123101,24.2096004486084,0.790958,5580.842764004511,0,0.0334745068103075,0.00784,1.463919997215271,0.052528000000000005,0.03615689960618814,0.007938 +2104,0,0,5.3242646804533145,0.20107485298795727,2.159064256836815,6.542140046755473,0.017422666666666666,4.510771989822388,0.23953733333333338,109.23900032043457,0.5671561162666667,26.07241614659627,0,10.207900047302246,0,8.597369909286499,0.06674347076,50.09130128224691,1.0771879999999998,206.06595993041992,0.01168,4.943630139033,102.60422533333333,0,422.4565149943034,4220.635841333333,987.4728037516275,107.02777186663954,487.6930236816406,432.2070656987623,0.7471781323353449,1.1683431,0.3293779989083608,0.020371504586666665,0.305134117603302,0.00878873864,85.44169743855794,25.891269159999997,16.53177038828532,19.095729333333335,97.61880302429199,10.131913333333333,1.544680118560791,0.2993330252,22.950200080871582,0,1.232410063346227,3.991387517333333,3.267199984596421e-4,0,0.1363810064891974,0.4396237828,0.020481999187419813,0.03346655897333334,385.3899815877278,7.275113302530454,91.64176544861793,103.54881001092144,13.513733574626645,14.753571084076745,-0.2602588500289682,24.23430061340332,0.7855773333333333,5549.307224314307,0,0.031628206527481474,0.0077866666666666666,1.443129986524582,0.05217066666666667,0.03483920047680537,0.007884 +2105,0,0,5.3242646804533145,0.19670366053169733,2.154362997603081,6.542240023612976,0.01730333333333333,4.334921995798747,0.2378966666666667,109.27500025431316,0.5632714853333334,25.77691634496053,0,10.150999943415323,0,8.580729961395264,0.06628632370000001,49.16610336303711,1.06981,203.93396377563477,0.0116,4.945570111274719,101.90145666666666,0,422.6365203857422,4191.727376666667,985.1488189697264,106.86112138186164,485.5240173339844,431.4143613488338,0.7180201311906179,1.16034075,0.3102420022090276,0.020231973733333332,0.2775440141558647,0.0087285418,83.59249750773112,25.713931699999996,16.298288345336914,18.964936666666667,96.17410532633464,10.062516666666667,1.5065700908501942,0.297282799,22.835299968719482,0,1.231230080127716,3.964049246666667,2.6403999921361293e-4,0,0.1361820064485073,0.43661266099999996,0.019845799387743075,0.03323733596666667,385.7649765014648,7.266352775792232,91.56811026610382,103.25308557052037,13.474322352056145,14.742814433783082,-0.2600507846726281,24.2589004834493,0.7801966666666666,5517.771684624103,0,0.029879105743020773,0.007733333333333333,1.42261998852094,0.051813333333333336,0.0335699999704957,0.00783 +2106,0,0,5.3242646804533145,0.19233246807543738,2.149661738369347,6.54233992099762,0.017183999999999998,4.1659819682439165,0.23625600000000002,109.31100018819173,0.5593868544,25.48491621017456,0,10.09440008799235,0,8.564120054244995,0.06582917664,48.25740432739258,1.0624319999999998,201.82596079508463,0.01152,4.947500109672546,101.198688,0,422.8145243326823,4162.818912,983.0688323974608,106.69447089708375,483.3800226847331,430.6216569989053,0.6918761332829794,1.1523383999999999,0.2922919988632202,0.02009244288,0.2524729259312153,0.00866834496,81.80459912618001,25.53659424,16.077004273732502,18.834144,94.75810368855794,9.99312,1.4696201086044312,0.29523257280000004,22.721100171407063,0,1.229220062494278,3.936710976,2.1342299927103645e-4,0,0.13590600341558456,0.4336015392,0.019249999585251015,0.03300811296,386.13498179117835,7.25759224905401,91.4944550835897,102.95736113011931,13.434911129485647,14.73205778348942,-0.2598473453432898,24.28320074081421,0.7748160000000001,5486.236144933899,0,0.028221305614958208,0.00768,1.4023899932702382,0.051456,0.03234739974141121,0.007776000000000001 +2107,0,0,5.3242646804533145,0.18796127561917747,2.144960479135613,6.54243004322052,0.017064666666666665,4.003671805063884,0.23461533333333337,109.34700202941895,0.5555022234666667,25.19631592432658,0,10.03820006052653,0,8.547559976577759,0.06537202958,47.364806493123375,1.0550539999999997,199.73995971679688,0.01144,4.9494102001190186,100.49591933333333,0,422.9915313720703,4133.910447333333,981.2048339843749,106.52782041230586,481.26201883951825,429.8289526489768,0.6683951367934545,1.14433605,0.2754549980163574,0.019952912026666665,0.22968683888514838,0.008608148119999999,80.07559712727864,25.35925678,15.86691927909851,18.703351333333334,93.37020428975423,9.923723333333333,1.4337900976339977,0.29318234660000003,22.60759989420573,0,1.2264800469080608,3.9093727053333334,1.7254000097940056e-4,0,0.13556300476193428,0.4305904174,0.01869039935991168,0.032778889953333334,386.4999745686848,7.248831722315788,91.42079990107558,102.66163668971825,13.395499906915147,14.721301133195759,-0.2596485320409533,24.30720059076945,0.7694353333333334,5454.700605243695,0,0.02664910474171241,0.007626666666666667,1.3824499944845836,0.05109866666666667,0.031169800243029993,0.0077220000000000006 +2108,0,0,5.3242646804533145,0.18359008316291753,2.1402592199018793,6.5425099929173784,0.016945333333333333,3.8477317094802856,0.2329746666666667,109.3830000559489,0.5516175925333334,24.911215623219807,0,9.982359965642294,0,8.53102993965149,0.06491488252000001,46.48810831705729,1.0476759999999998,197.67596054077148,0.01136,4.951320171356201,99.79315066666666,0,423.1675338745117,4105.001982666667,979.5338439941405,106.36116992752797,479.1690216064453,429.03624829904834,0.647269124786059,1.1363337,0.2596610014637311,0.019813381173333332,0.2089447615047296,0.00854795128,78.40329869588216,25.18191932,15.66713261604309,18.572558666666666,92.00950304667155,9.854326666666667,1.3990500966707866,0.2911321204,22.494700113932293,0,1.2231100698312123,3.8820344346666666,1.3951199798611924e-4,0,0.1351630079249541,0.42757929559999996,0.018164399545639753,0.032549666946666674,386.8609771728515,7.240071195577565,91.34714471856145,102.36591224931719,13.356088684344646,14.710544482902097,-0.2594543447656186,24.331100304921467,0.7640546666666667,5423.165065553491,0,0.025174404960125685,0.007573333333333333,1.3627899785836537,0.05074133333333334,0.030035399987051885,0.007668000000000001 +2109,0,0,5.3242646804533145,0.17921889070665759,2.1355579606681454,6.542590022087097,0.016825999999999997,3.6979116598765054,0.23133400000000004,109.41800117492676,0.5477329616000001,24.629515488942463,0,9.926829973856607,0,8.514540115992228,0.06445773546,45.62700970967611,1.040298,195.63596471150717,0.01128,4.9532201290130615,99.090382,0,423.3435312906901,4076.0935179999997,978.0348561604817,106.19451944275006,477.09901936848956,428.24354394911984,0.6282231311003367,1.1283313499999998,0.2448410006860892,0.01967385032,0.19008569543560347,0.00848775444,76.78549702962239,25.00458186,15.476745049158732,18.441766,90.67560450236003,9.78493,1.3653700947761536,0.2890818942,22.382500171661377,0,1.2192100683848064,3.854696164,1.1282599916739855e-4,0,0.13471300651629767,0.4245681738,0.017669699465235073,0.032320443940000006,387.2179794311523,7.231310668839343,91.27348953604734,102.07018780891613,13.316677461774146,14.699787832608434,-0.25926478351728577,24.354700406392414,0.7586740000000001,5391.629525863287,0,0.023773904889822006,0.00752,1.3434100051720936,0.050384000000000005,0.028942699544131756,0.007614000000000001 +2110,0,0,5.3242646804533145,0.17484769825039764,2.1308567014344115,6.542659958203633,0.016706666666666665,3.5539716283480325,0.22969333333333336,109.45300038655598,0.5438483306666667,24.351115226745605,0,9.87162987391154,0,8.498090028762817,0.0640005884,44.78131103515625,1.0329199999999998,193.61696116129556,0.0112,4.95511011282603,98.38761333333333,0,423.51853434244794,4047.185053333333,976.6888631184895,106.02786895797217,475.05201721191406,427.45083959919134,0.6110191295544306,1.120329,0.23093700036406517,0.019534319466666665,0.17293463026483855,0.0084275576,75.22009913126628,24.827244399999998,15.295056660970053,18.310973333333333,89.36770439147949,9.715533333333333,1.3326900998751323,0.287031668,22.270899931589764,0,1.2148200571537018,3.827357893333333,9.126079991498652e-5,0,0.13421700646479925,0.421557052,0.017204099489996832,0.03209122093333334,387.5699793497721,7.22255014210112,91.19983435353322,101.77446336851507,13.277266239203646,14.689031182314773,-0.2590798482959548,24.378100554148357,0.7532933333333334,5360.093986173083,0,0.022442904611428578,0.007466666666666667,1.3242700099945068,0.05002666666666667,0.02789009998862942,0.007560000000000001 +2111,0,0,5.3242646804533145,0.1704765057941377,2.1261554422006776,6.54272989432017,0.016587333333333332,3.4156715671221414,0.22805266666666668,109.48800150553386,0.5399636997333334,24.075915177663166,0,9.816769997278849,0,8.481679995854696,0.06354344134,43.95061333974203,1.0255419999999997,191.6199607849121,0.01112,4.956990083058675,97.68484466666666,0,423.69253794352215,4018.2765886666666,975.4778747558593,105.86121847319428,473.02702077229816,426.65813524926284,0.5954451312621435,1.11232665,0.217890997727712,0.01939478861333333,0.15733257432778677,0.00836736076,73.70509783426921,24.649906939999997,15.12136729558309,18.180180666666665,88.08520380655925,9.646136666666667,1.3010100920995076,0.2849814418,22.159899711608887,0,1.210030049085617,3.8000196226666665,7.38299992614581e-5,0,0.13368100548783937,0.41854593019999997,0.016765499487519264,0.03186199792666667,387.9179814656575,7.213789615362898,91.1261791710191,101.47873892811401,13.237855016633146,14.678274532021112,-0.2588995285157514,24.401300589243572,0.7479126666666667,5328.558446482879,0,0.021194503953059513,0.007413333333333333,1.3054099877675374,0.049669333333333336,0.02687619999051094,0.0075060000000000005 +2112,0,0,5.3242646804533145,0.16610531333787776,2.1214541829669438,6.542790015538533,0.016468,3.282791495323181,0.22641200000000003,109.52200063069661,0.5360790688,23.80411497751872,0,9.762239933013916,0,8.465309937795004,0.06308629428,43.13491439819336,1.0181639999999998,189.64496231079102,0.01104,4.95887017250061,96.982076,0,423.86553955078125,3989.3681239999996,974.3868764241536,105.69456798841638,471.0240173339844,425.8654308993344,0.5813101232051849,1.1043242999999998,0.2056459995607535,0.01925525776,0.1431365224222342,0.00830716392,72.23849805196126,24.472569479999997,14.9549769560496,18.049388,86.82760302225749,9.57674,1.2702700992425282,0.2829312156,22.04959996541341,0,1.2048900524775188,3.7726813519999998,5.9738800094540544e-5,0,0.13311100751161575,0.4155348084,0.016352099366486073,0.03163277492,388.26198069254554,7.205029088624675,91.05252398850499,101.18301448771295,13.198443794062646,14.667517881727449,-0.2587238241766757,24.42430067062378,0.7425320000000001,5297.022906792676,0,0.02000610421722134,0.00736,1.2868199944496155,0.049312,0.025899400003254414,0.007452000000000001 +2113,0,0,5.3242646804533145,0.16173412088161782,2.11675292373321,6.542849977811177,0.016348666666666664,3.1551214257876077,0.22477133333333338,109.55600166320801,0.5321944378666668,23.535414536794026,0,9.708030064900717,0,8.448969999949137,0.06262914722,42.33381589253744,1.010786,187.69096247355142,0.01096,4.960740129152934,96.27930733333334,0,424.03754170735675,3960.459659333333,973.4038747151692,105.52791750363849,469.041020711263,425.0727265494059,0.5684491246938705,1.0963219499999999,0.19415499766667685,0.019115726906666665,0.13021547347307205,0.00824696708,70.81869888305664,24.295232019999997,14.795285622278849,17.918595333333332,85.59410285949707,9.507343333333333,1.2404500842094421,0.2808809894,21.940000375111897,0,1.1994400521119435,3.745343081333333,4.8345299849946365e-5,0,0.13251100480556488,0.4125236866,0.015963499589512747,0.031403551913333334,388.60097503662104,7.196268561886453,90.97886880599087,100.88729004731188,13.159032571492146,14.656761231433787,-0.25855273527872763,24.44700034459432,0.7371513333333334,5265.487367102472,0,0.018874003707120817,0.007306666666666666,1.2685000101725261,0.04895466666666667,0.024958400055766106,0.007398000000000001 +2114,0,0,5.3242646804533145,0.15736292842535787,2.112051664499476,6.5429099798202515,0.01622933333333333,3.0324513713518777,0.2231306666666667,109.59000142415364,0.5283098069333334,23.269914627075195,0,9.654159943262735,0,8.432679971059164,0.062172000160000004,41.5470183690389,1.0034079999999999,185.7579663594564,0.010879999999999999,4.962610205014546,95.57653866666666,0,424.2095438639323,3931.5511946666666,972.515884399414,105.3612670188606,467.0790150960286,424.28002219947746,0.5567151258389155,1.0883196,0.18336999788880348,0.01897619605333333,0.11847943067550659,0.00818677024,69.44359842936198,24.117894559999996,14.641693830490112,17.787802666666668,84.38430404663086,9.437946666666667,1.2115200857321422,0.2788307632,21.830899715423584,0,1.1937100688616435,3.7180048106666663,3.91314000201722e-5,0,0.1318830040593942,0.4095125648,0.015597999561578035,0.03117432890666667,388.9359792073567,7.18750803514823,90.90521362347675,100.59156560691082,13.119621348921646,14.646004581140126,-0.2583862618219072,24.46950054168701,0.7317706666666667,5233.951827412267,0,0.017812103653947513,0.007253333333333333,1.2504299879074097,0.04859733333333333,0.024052000138908625,0.007344000000000001 +2115,0,0,5.3242646804533145,0.15299173596909793,2.107350405265742,6.542950073877971,0.01611,2.914581298828125,0.22149000000000002,109.62400182088216,0.524425176,23.007514158884685,0,9.60061001777649,0,8.416420141855875,0.0617148531,40.774518966674805,0.9960299999999999,183.84596506754556,0.0108,4.964460174242656,94.87377000000001,0,424.3805465698242,3902.6427299999996,971.7118886311848,105.19461653408271,465.1360168457031,423.48731784954896,0.5459781239430109,1.0803172499999998,0.17324400072296461,0.018836665199999998,0.10781939389805,0.0081265734,68.11169815063477,23.9405571,14.49380119641622,17.65701,83.19760513305664,9.368549999999999,1.1834600865840912,0.27678053700000005,21.72249984741211,0,1.1877500514189403,3.6906665399999996,3.167889993468028e-5,0,0.13123000537355742,0.406501443,0.015252499530712763,0.030945105900000006,389.266980489095,7.178747508410009,90.83155844096262,100.29584116650976,13.080210126351147,14.635247930846464,-0.2582244038062145,24.49180046717326,0.7263900000000001,5202.416287722064,0,0.016816003403315943,0.0072,1.232610007127126,0.048240000000000005,0.023178699892014265,0.007290000000000001 +2116,0,0,5.3242646804533145,0.148620543512838,2.1026491460320087,6.54298992951711,0.015990666666666667,2.80132124821345,0.21984933333333337,109.65700085957845,0.5205405450666667,22.74831422170003,0,9.547379891077677,0,8.400199969609579,0.06125770604,40.01581986745199,0.9886519999999999,181.95496622721353,0.01072,4.966320157051086,94.17100133333334,0,424.55154673258465,3873.734265333333,970.9818878173827,105.02796604930481,463.2120183308919,422.69461349962046,0.5361201216777166,1.0723148999999998,0.16373700027664503,0.018697134346666665,0.09810795821249485,0.00806637656,66.82129859924316,23.76321964,14.351108312606812,17.52621733333333,82.03340403238933,9.299153333333333,1.1562200983365376,0.27473031080000004,21.614699999491375,0,1.181590050458908,3.6633282693333333,2.5650099814811256e-5,0,0.13055700436234474,0.4034903212,0.014925699448212981,0.030715882893333338,389.59297688802076,7.169986981671786,90.75790325844851,100.0001167261087,13.040798903780647,14.624491280552801,-0.2580671612316495,24.513800462086994,0.7210093333333334,5170.88074803186,0,0.015881703235208988,0.007146666666666667,1.2150399883588154,0.04788266666666667,0.022337400044004124,0.007236000000000001 +2117,0,0,5.3242646804533145,0.14424935105657805,2.097947886798275,6.543030063311259,0.015871333333333335,2.6925012270609536,0.21820866666666672,109.6900011698405,0.5166559141333333,22.492014090220135,0,9.494470040003458,0,8.384009997049967,0.06080055898,39.270822525024414,0.9812739999999999,180.08396784464517,0.01064,4.968160231908162,93.46823266666667,0,424.72154998779297,3844.8258006666665,970.317891438802,104.86131556452692,461.30702209472656,421.901909149692,0.5270411173502604,1.06431255,0.15481099983056387,0.01855760349333333,0.08925812505185604,0.00800617972,65.57069905598958,23.58588218,14.213214556376139,17.395424666666667,80.89120356241862,9.229756666666667,1.129790077606837,0.27268008460000004,21.50749985376994,0,1.1752500335375469,3.6359899986666666,2.07720998635826e-5,0,0.12986600523193678,0.4004791994,0.014616199458638826,0.03048665988666667,389.9159774780273,7.161226454933564,90.68424807593439,99.70439228570764,13.001387681210147,14.61373463025914,-0.2579145340982121,24.535600662231445,0.7156286666666667,5139.345208341656,0,0.014987802986676494,0.0070933333333333334,1.1977300147215526,0.047525333333333336,0.021526900275299948,0.007182000000000001 +2118,0,0,5.3242646804533145,0.1398781586003181,2.093246627564541,6.543069998423259,0.015752,2.5879311760266623,0.21656800000000004,109.72300084431966,0.5127712832000001,22.238813559214275,0,9.441879908243815,0,8.367869933446249,0.06034341192,38.53922367095947,0.9738959999999999,178.23296483357748,0.01056,4.970000147819519,92.765464,0,424.8905512491862,3815.917336,969.7118886311848,104.69466507974903,459.4200210571289,421.1092047997635,0.5186521261930466,1.0563102,0.1464310015241305,0.018418072639999998,0.08121739576260249,0.00794598288,64.35859807332356,23.40854472,14.079620281855265,17.264632,79.77050399780273,9.16036,1.104140082995097,0.27062985840000003,21.401000022888184,0,1.168740063905716,3.608651728,1.6824599773220445e-5,0,0.12915800387660661,0.39746807759999997,0.014322899281978607,0.030257436880000002,390.23398590087885,7.152465928195341,90.61059289342028,99.40866784530657,12.961976458639647,14.602977979965479,-0.2577665224059024,24.55720027287801,0.710248,5107.809668651452,0,0.014131902949884534,0.007039999999999999,1.1806599895159404,0.047168,0.0207461000730594,0.007128000000000001 +2119,0,0,5.3242646804533145,0.13550696614405816,2.088545368330807,6.543090025583903,0.015632666666666666,2.487451136112213,0.21492733333333336,109.75600051879883,0.5088866522666667,21.988513469696045,0,9.389600038528442,0,8.351760069529215,0.05988626486,37.82092412312826,0.9665179999999999,176.4029680887858,0.01048,4.971840222676595,92.06269533333334,0,425.05954996744794,3787.008871333333,969.1568908691405,104.52801459497113,457.5500183105469,420.3165004498351,0.5108741174141566,1.0483078499999998,0.13855999832352003,0.018278541786666665,0.07391116954386234,0.00788578604,63.183397928873696,23.231207259999998,13.95002563794454,17.133839333333334,78.67070388793945,9.090963333333333,1.079240083694458,0.26857963220000003,21.295000076293945,0,1.162110060453415,3.581313457333333,1.3629600061904057e-5,0,0.1284330040216446,0.3944569558,0.014044599374756217,0.030028213873333338,390.547976175944,7.143705401457119,90.53693771090616,99.11294340490551,12.922565236069147,14.592221329671816,-0.25762312615472033,24.57860056559245,0.7048673333333334,5076.274128961249,0,0.013329102657735348,0.006986666666666666,1.1638199885686238,0.04681066666666667,0.019993800204247236,0.007074000000000001 +2120,0,0,5.3242646804533145,0.13113577368779822,2.083844109097073,6.5431199471155805,0.015513333333333334,2.3909010688463845,0.2132866666666667,109.78800010681152,0.5050020213333334,21.74121332168579,0,9.337640126546225,0,8.335690021514893,0.0594291178,37.11552619934082,0.9591399999999999,174.5909678141276,0.0104,4.973670125007629,91.35992666666667,0,425.22755940755206,3758.1004066666665,968.6469014485676,104.36136411019324,455.697021484375,419.5237960999066,0.503634124994278,1.0403054999999999,0.13116799915830293,0.01813901093333333,0.06727184417347114,0.0078255892,62.04369831085205,23.053869799999998,13.824130535125732,17.003046666666666,77.59140396118164,9.021566666666667,1.055060088634491,0.266529406,21.18970012664795,0,1.1553500493367512,3.5539751866666665,1.1043100054545599e-5,0,0.1276950053870678,0.391445834,0.013781599700450897,0.02979899086666667,390.8579762776692,7.134944874718896,90.46328252839204,98.81721896450445,12.883154013498647,14.581464679378154,-0.257484345344666,24.599700291951496,0.6994866666666667,5044.7385892710445,0,0.012575902510434389,0.006933333333333333,1.1472299993038177,0.04645333333333333,0.019269100079933803,0.007020000000000001 +2121,0,0,5.3242646804533145,0.12676458123153828,2.0791428498633393,6.543129960695903,0.015394,2.2981210152308145,0.21164600000000003,109.81999969482422,0.5011173904,21.49681345621745,0,9.285989999771118,0,8.319649934768677,0.058971970740000004,36.423027992248535,0.9517619999999999,172.79996871948242,0.01032,4.975490132967631,90.657158,0,425.39455159505206,3729.191942,968.1768951416014,104.19471362541535,453.8610204060872,418.7310917499781,0.49687211712201435,1.03230315,0.124225997676452,0.017999480079999998,0.0612382215137283,0.00776539236,60.938198725382485,22.876532339999997,13.701634963353476,16.872253999999998,76.53200403849284,8.95217,1.0315900941689808,0.2644791798,21.084900220235188,0,1.148480047782262,3.5266369159999997,8.948959930421552e-6,0,0.12694600348671278,0.3884347122,0.013532999437302351,0.029569767860000002,391.1639734903971,7.126184347980674,90.38962734587793,98.52149452410339,12.843742790928147,14.570708029084493,-0.2573501905616134,24.620600541432697,0.694106,5013.20304958084,0,0.01186940244709452,0.00688,1.1308799982070923,0.046096,0.018570800001422565,0.006966000000000001 +2122,0,0,5.3242646804533145,0.12239338877527833,2.0744415906296054,6.543149987856547,0.015274666666666667,2.2089710036913552,0.21000533333333338,109.85200055440266,0.49723275946666673,21.255313396453857,0,9.234649976094564,0,8.303659836451212,0.05851482368,35.74302895863851,0.9443839999999999,171.0269686381022,0.010239999999999999,4.977310140927632,89.95438933333334,0,425.56255594889325,3700.283477333333,967.7399088541665,104.02806314063744,452.041015625,417.93838740004963,0.49053211758534115,1.0243007999999998,0.11770300070444743,0.017859949226666665,0.055754601334532104,0.00770519552,59.86559899648031,22.699194879999997,13.582139015197754,16.741461333333334,75.49210421244304,8.882773333333333,1.0088000893592834,0.2624289536,20.980799674987793,0,1.1415200531482697,3.499298645333333,7.253140021627284e-6,0,0.12618800501028696,0.3854235904,0.013296199341615042,0.029340544853333338,391.46598307291663,7.117423821242451,90.31597216336381,98.22577008370233,12.804331568357647,14.55995137879083,-0.25722066180556263,24.641300519307453,0.6887253333333334,4981.667509890636,0,0.011206602212041616,0.006826666666666667,1.1147400041421254,0.045738666666666664,0.017898099962621927,0.0069120000000000015 +2123,0,0,5.3242646804533145,0.11802219631901839,2.0697403313958715,6.543150067329407,0.015155333333333333,2.1233009497324624,0.2083646666666667,109.88400014241536,0.4933481285333334,21.016613006591797,0,9.18361004193624,0,8.287690003712973,0.05805767662,35.07532978057861,0.9370059999999999,169.27396774291992,0.01016,4.979130069414775,89.25162066666667,0,425.72855885823566,3671.3750126666664,967.3329010009764,103.86141265585955,450.2360153198242,417.14568305012114,0.48456311970949173,1.0162984499999999,0.11157199988762538,0.01772041837333333,0.050770384880403675,0.00764499868,58.82449817657471,22.521857419999996,13.465542872746786,16.610668666666665,74.47130330403645,8.813376666666667,0.9866740852594376,0.2603787274,20.87719996770223,0,1.1344800690809886,3.4719603746666667,5.879640032920482e-6,0,0.12541900326808295,0.3824124686,0.013070499446863929,0.02911132184666667,391.7639821370442,7.108663294504229,90.24231698084968,97.93004564330127,12.764920345787147,14.549194728497168,-0.2570957590765137,24.661800543467205,0.6833446666666667,4950.131970200433,0,0.010584902173529068,0.0067733333333333335,1.098850001891454,0.045381333333333336,0.01724989991635084,0.006858000000000001 +2124,0,0,5.3242646804533145,0.11365100386275845,2.0650390721621377,6.5431599617004395,0.015036,2.040970961252848,0.20672400000000005,109.91500091552734,0.4894634976000001,20.78061294555664,0,9.132879972457886,0,8.271770000457764,0.05760052956,34.419931729634605,0.9296279999999999,167.53896713256836,0.01008,4.980940103530884,88.548852,0,425.8955561319987,3642.466548,966.9518992106118,103.69476217108166,448.44701894124347,416.35297870019264,0.4789241204659144,1.0082961,0.10581299910942714,0.017580887519999998,0.04621296934783459,0.00758480184,57.81389904022217,22.344519959999996,13.351546128590902,16.479876,73.46910413106282,8.74398,0.9651820957660675,0.2583285012,20.774199962615967,0,1.1273600657780964,3.444622104,4.76703000155491e-6,0,0.1246410043289264,0.3794013468,0.012855099514126778,0.028882098840000002,392.0589803059895,7.0999027677660065,90.16866179833556,97.63432120290021,12.725509123216646,14.538438078203507,-0.2569754823744666,24.682000001271565,0.677964,4918.596430510229,0,0.009984162248050174,0.00672,1.0831900139649708,0.045024,0.01662540001173814,0.006804000000000001 +2125,0,0,5.3242646804533145,0.1092798114064985,2.0603378129284042,6.543150027592977,0.014916666666666667,1.961860865354538,0.20508333333333337,109.94600105285645,0.4855788666666667,20.547512849171955,0,9.082460085550943,0,8.255879878997803,0.057143382500000006,33.77633253733317,0.9222499999999998,165.82396825154623,0.01,4.982750177383423,87.84608333333333,0,426.0615641276042,3613.5580833333333,966.5919087727864,103.52811168630376,446.6720199584961,415.5602743502642,0.4735761160651843,1.00029375,0.1004019994288683,0.017441356666666664,0.042043053545057774,0.007524605,56.83259836832682,22.167182499999996,13.23984924952189,16.349083333333333,72.48490206400554,8.674583333333334,0.9443070888519287,0.256278275,20.671799818674724,0,1.1201800505320232,3.4172838333333333,3.8655899932867515e-6,0,0.1238570058097442,0.37639022499999997,0.01264929942165812,0.028652875833333334,392.34898122151685,7.091142241027784,90.09500661582145,97.33859676249915,12.686097900646146,14.527681427909844,-0.2568598316994213,24.70200030008952,0.6725833333333333,4887.060890820025,0,0.009403191894913713,0.006666666666666666,1.067749987045924,0.04466666666666667,0.01602369997029503,0.006750000000000001 +2126,0,0,5.3242646804533145,0.10490861895023856,2.0556365536946704,6.543139894803365,0.014797333333333332,1.8858408431212108,0.2034426666666667,109.97700119018555,0.48169423573333336,20.317012786865234,0,9.03233011563619,0,8.24003005027771,0.05668623544,33.144533475240074,0.9148719999999998,164.12596893310547,0.00992,4.98455011844635,87.14331466666667,0,426.226557413737,3584.6496186666664,966.2519073486327,103.36146120152587,444.91202036539715,414.7675700003357,0.46848711123069126,0.9922913999999999,0.09531369991600513,0.01730182581333333,0.038252039812505245,0.00746440816,55.879398345947266,21.98984504,13.13035217920939,16.218290666666665,71.5186030069987,8.605186666666667,0.9240280836820602,0.2542280488,20.570000012715656,0,1.1129400531450908,3.3899455626666666,3.1351200201849374e-6,0,0.12306700584789117,0.3733791032,0.012452399513373772,0.02842365282666667,392.6349843343098,7.0823817142895615,90.02135143330733,97.04287232209808,12.646686678075646,14.516924777616182,-0.25674880705137776,24.721800168355305,0.6672026666666667,4855.525351129821,0,0.008858161823203167,0.006613333333333333,1.0525100032488506,0.04430933333333333,0.01544390005680422,0.006696000000000001 +2127,0,0,5.3242646804533145,0.10053742649397862,2.0509352944609365,6.543130000432332,0.014678,1.8127808173497517,0.20180200000000004,110.00699996948242,0.47780960480000007,20.08931239446004,0,8.982499996821085,0,8.224219957987467,0.05622908838,32.52423508961996,0.9074939999999998,162.4459686279297,0.00984,4.986350178718567,86.440546,0,426.3915659586589,3555.741154,965.9369049072264,103.19481071674798,443.1670227050781,413.9748656504072,0.46362611651420593,0.98428905,0.09053189866244793,0.017162294959999998,0.03480532641212145,0.0074042113199999995,54.95339870452881,21.81250758,13.022854804992676,16.087498,70.56940333048503,8.53579,0.9043270945549011,0.2521778226,20.46879990895589,0,1.105640063683192,3.362607292,2.5431000191626176e-6,0,0.12226900520424049,0.3703679814,0.0122637995518744,0.028194429820000002,392.9169794718424,7.073621187551339,89.94769625079321,96.74714788169702,12.607275455505146,14.506168127322521,-0.25664240843033603,24.741400559743244,0.661822,4823.9898114396165,0,0.008346841670572758,0.00656,1.0375099976857503,0.043952,0.014885300071910024,0.006642000000000001 +2128,0,0,5.3242646804533145,0.09616623403771868,2.0462340352272026,6.543110013008118,0.014558666666666666,1.7425707777341206,0.20016133333333336,110.03700065612793,0.4739249738666667,19.86421251296997,0,8.932969888051352,0,8.208440144856771,0.055771941320000004,31.91533676783244,0.9001159999999998,160.78496805826822,0.009760000000000001,4.988140225410461,85.73777733333333,0,426.5555648803711,3526.8326893333333,965.6459045410155,103.02816023197009,441.437016805013,413.1821613004787,0.45896511276563007,0.9762867,0.08603699877858162,0.017022764106666664,0.03167141523833076,0.007344014479999999,54.053297996520996,21.635170119999998,12.917157093683878,15.956705333333332,69.63720385233562,8.466393333333334,0.8851830810308456,0.2501275964,20.368200143178303,0,1.0983000596364338,3.3352690213333336,2.063210028306154e-6,0,0.12146500560144584,0.3673568596,0.01208429946564138,0.027965206813333334,393.1959788004557,7.064860660813117,89.87404106827908,96.45142344129596,12.567864232934646,14.49541147702886,-0.2565406358362962,24.760700225830078,0.6564413333333333,4792.454271749413,0,0.00786714154916505,0.006506666666666667,1.0227200090885162,0.04359466666666667,0.01434710000952085,0.006588000000000001 +2129,0,0,5.3242646804533145,0.09179504158145874,2.0415327759934687,6.543089985847473,0.014439333333333334,1.6750907401243846,0.1985206666666667,110.06700007120769,0.4700403429333334,19.641712188720703,0,8.883740027745565,0,8.192700147628784,0.05531479426000001,31.317537307739258,0.8927379999999998,159.1409683227539,0.009680000000000001,4.989930232365926,85.03500866666667,0,426.71956634521484,3497.9242246666663,965.3779093424478,102.86150974719219,439.7210210164388,412.38945695055025,0.45448310921589535,0.96828435,0.08180889797707398,0.01688323325333333,0.028821805026382208,0.00728381764,53.178399403889976,21.457832659999998,12.813159545262655,15.825912666666666,68.72150293986003,8.396996666666666,0.8665770838658015,0.2480773702,20.268100261688232,0,1.0909100572268169,3.307930750666667,1.6741500038127317e-6,0,0.12065700503687064,0.3643457378,0.011913299560546875,0.02773598380666667,393.47097778320307,7.056100134074894,89.80038588576497,96.1556990008949,12.528453010364146,14.484654826735197,-0.2564434892692581,24.779800573984783,0.6510606666666667,4760.918732059209,0,0.0074171014518166585,0.0064533333333333335,1.008159985144933,0.043237333333333336,0.01382850001876553,0.006534000000000002 +2130,0,0,5.3242646804533145,0.0874238491251988,2.036831516759735,6.5430599848429365,0.01432,1.6102507213751476,0.19688000000000003,110.09700202941895,0.46615571200000006,19.42191219329834,0,8.834800004959106,0,8.176990111668905,0.054857647200000005,30.73063850402832,0.8853599999999998,157.5149688720703,0.009600000000000001,4.991720199584961,84.33224,0,426.88356526692706,3469.0157599999998,965.1289164225259,102.6948592624143,438.0190175374349,411.59675260062176,0.45015611002842587,0.960282,0.07783349913855393,0.016743702399999998,0.026230295654386282,0.0072236207999999994,52.327598571777344,21.280495199999997,12.710661252339682,15.69512,67.82180277506511,8.3276,0.8484930743773779,0.246027144,20.16859992345174,0,1.0834900339444478,3.28059248,1.358670004947271e-6,0,0.1198460062344869,0.361334616,0.011748699626574913,0.027506760800000002,393.74197896321607,7.047339607336672,89.72673070325085,95.85997456049384,12.489041787793646,14.473898176441535,-0.2563509687292219,24.7987003326416,0.64568,4729.383192369005,0,0.006994881434366107,0.0064,0.9937870055437088,0.04288,0.013328800133119026,0.006480000000000001 +2131,0,0,5.3242646804533145,0.08305265666893885,2.032130257526001,6.543020009994507,0.014200666666666667,1.5479306876659393,0.19523933333333338,110.12700080871582,0.4622710810666667,19.204611937204998,0,8.786150137583414,0,8.161320050557455,0.05440050014,30.154539585113525,0.8779819999999998,155.90697224934897,0.00952,4.993500113487244,83.62947133333333,0,427.0465672810872,3440.1072953333332,964.8979034423827,102.52820877763641,436.3310190836589,410.80404825069326,0.44596710552771884,0.9522796499999999,0.07409499896069367,0.016604171546666664,0.023873486711333197,0.007163423959999999,51.499999046325684,21.103157739999997,12.609463214874268,15.564327333333333,66.93790245056152,8.258203333333334,0.8309160868326823,0.2439769178,20.069600264231365,0,1.0760200520356495,3.2532542093333334,1.1028199935481098e-6,0,0.11902900412678719,0.3583234942,0.01159019962263604,0.027277537793333334,394.0089797973632,7.038579080598449,89.65307552073673,95.56425012009278,12.449630565223146,14.463141526147874,-0.25626307421618744,24.817400614420574,0.6402993333333333,4697.847652678801,0,0.0065987512934952974,0.006346666666666667,0.9796109994252523,0.04252266666666667,0.012847300075615445,0.006426000000000001 +2132,0,0,5.3242646804533145,0.07868146421267891,2.027428998292267,6.542979995409648,0.014081333333333333,1.488040695587794,0.1935986666666667,110.1560001373291,0.4583864501333334,18.989811579386394,0,8.737789948781332,0,8.145690043767294,0.053943353080000006,29.589041233062744,0.8706039999999998,154.31496938069662,0.00944,4.995280146598816,82.92670266666667,0,427.2095718383789,3411.1988306666663,964.6829121907551,102.3615582928585,434.65702056884766,410.0113439007648,0.4419001092513402,0.9442773,0.07057639956474304,0.01646464069333333,0.02172997873276472,0.00710322712,50.69469896952311,20.925820279999996,12.509664932886759,15.433534666666667,66.06930224100749,8.188806666666666,0.8138270825147629,0.2419266916,19.97120014826457,0,1.0685300529003143,3.2259159386666667,8.952969968352894e-7,0,0.11820700454215209,0.3553123724,0.01143729966133833,0.02704831478666667,394.2719802856445,7.029818553860227,89.57942033822262,95.26852567969172,12.410219342652645,14.45238487585421,-0.2561798057301548,24.835800329844158,0.6349186666666667,4666.312112988598,0,0.006227101276939114,0.006293333333333334,0.9656440069278082,0.04216533333333333,0.012383299879729748,0.006372000000000001 +2133,0,0,5.3242646804533145,0.07431027175641897,2.022727739058533,6.542939941088359,0.013961999999999999,1.4304906328519185,0.19195800000000002,110.18500137329102,0.45450181920000005,18.777511596679688,0,8.689719915390015,0,8.130089918772379,0.05348620602,29.033941745758057,0.8632259999999998,152.7409693400065,0.00936,4.9970500866572065,82.223934,0,427.37156931559247,3382.2903659999997,964.4809112548827,102.19490780808061,432.9960225423177,409.2186395508363,0.43794211000204086,0.9362749499999999,0.0672642004986604,0.016325109839999997,0.019780271997054417,0.007043030279999999,49.91089916229248,20.74848282,12.410866101582846,15.302741999999999,65.21570269266765,8.11941,0.7972130825122198,0.23987646540000002,19.87340021133423,0,1.0610100428263347,3.198577668,7.269380072708979e-7,0,0.11738000561793645,0.3523012506,0.01128959950680534,0.026819091780000002,394.53198242187494,7.021058027122005,89.50576515570849,94.97280123929065,12.370808120082145,14.44162822556055,-0.256101163271124,24.854000409444172,0.629538,4634.7765732983935,0,0.005878421089922388,0.00624,0.951884999871254,0.041808000000000005,0.011936200084164739,0.0063180000000000016 +2134,0,0,5.3242646804533145,0.06993907930015902,2.0180264798247993,6.542889952659607,0.013842666666666666,1.375170628229777,0.19031733333333337,110.21299997965495,0.45061718826666675,18.56771119435628,0,8.64193026224772,0,8.114520072937012,0.05302905896000001,28.489043076833088,0.8558479999999998,151.18296813964844,0.00928,4.998830159505208,81.52116533333333,0,427.5345687866211,3353.381901333333,964.2899068196614,102.02825732330273,431.3480173746745,408.4259352009078,0.4340791081388791,0.9282726,0.06414779958625634,0.016185578986666664,0.01800676512842377,0.00698283344,49.14779885609945,20.57114536,12.313267946243286,15.171949333333332,64.3767032623291,8.050013333333334,0.781057079633077,0.2378262392,19.77609984079997,0,1.0534500479698181,3.1712393973333333,5.903329925634656e-7,0,0.11655200521151225,0.3492901288,0.011146799428388476,0.026589868773333337,394.7879791259765,7.012297500383783,89.43210997319437,94.67707679888959,12.331396897511645,14.430871575266888,-0.2560271468390949,24.872000376383465,0.6241573333333333,4603.241033608189,0,0.005551271140575409,0.006186666666666667,0.9383300046126047,0.04145066666666667,0.011505400063470006,0.006264000000000001 +2135,0,0,5.3242646804533145,0.0655678868438991,2.0133252205910654,6.542839964230855,0.013723333333333334,1.322010596593221,0.18867666666666671,110.24199930826823,0.4467325573333334,18.360411326090496,0,8.594420115152994,0,8.098989963531494,0.052571911900000004,27.9541441599528,0.8484699999999998,149.64197158813477,0.0092,5.000600179036458,80.81839666666667,0,427.69657135009766,3324.473436666666,964.1099192301431,101.86160683852484,429.7130177815755,407.6332308509793,0.43030010163784027,0.92027025,0.06121529887119929,0.01604604813333333,0.016393459402024746,0.0069226366,48.404598236083984,20.3938079,12.216568867365519,15.041156666666666,63.552002906799316,7.980616666666666,0.7653440833091736,0.235776013,19.67929983139038,0,1.0458800494670868,3.1439011266666665,4.79476002605376e-7,0,0.11572200494507949,0.346279007,0.011009899588922659,0.02636064576666667,395.0409825642903,7.00353697364556,89.35845479068026,94.38135235848853,12.291985674941145,14.420114924973227,-0.25595775643406776,24.88980023066203,0.6187766666666668,4571.705493917985,0,0.005244331123928229,0.0061333333333333335,0.9249750127394994,0.041093333333333336,0.011090299890687069,0.006210000000000001 +2136,0,0,5.3242646804533145,0.06119669438763915,2.008623961357332,6.542770028114319,0.013604,1.2709105809529622,0.18703600000000004,110.27000045776367,0.44284792640000004,18.15541124343872,0,8.547199885050455,0,8.083499987920126,0.05211476484,27.429144859313965,0.8410919999999998,148.11697260538736,0.009120000000000001,5.002370119094849,80.115628,0,427.8585739135742,3295.5649719999997,963.9379018147786,101.69495635374693,428.09002176920575,406.8405265010509,0.4265941033760707,0.9122678999999999,0.05845279898494482,0.015906517279999997,0.014925654046237469,0.006862439759999999,47.68049875895182,20.21647044,12.120670239130655,14.910364,62.74120330810547,7.91122,0.7500600715478262,0.2337257868,19.583100001017254,0,1.0382700363794963,3.116562856,3.8949800303574494e-7,0,0.11488700471818447,0.3432678852,0.01087849959731102,0.026131422760000002,395.2899805704752,6.994776446907338,89.28479960816614,94.08562791808747,12.252574452370647,14.409358274679564,-0.2558929920560424,24.9073003133138,0.613396,4540.169954227782,0,0.004956351011060178,0.00608,0.9117979953686396,0.040736,0.010690299949298302,0.006156000000000001 +2137,0,0,5.3242646804533145,0.05682550193137921,2.003922702123598,6.542710065841675,0.013484666666666666,1.2218105693658192,0.18539533333333336,110.29800033569336,0.43896329546666674,17.952911218007404,0,8.5002601146698,0,8.068039894104004,0.051657617780000005,26.913846333821613,0.8337139999999998,146.6089719136556,0.009040000000000001,5.004130005836487,79.41285933333333,0,428.0195795694987,3266.656507333333,963.7739003499348,101.52830586896904,426.4800211588542,406.0478221511224,0.4229511072238286,0.90426555,0.05585229893525442,0.015766986426666664,0.013590249232947826,0.00680224292,46.97489865620931,20.039132979999998,12.025671243667603,14.779571333333333,61.944003105163574,7.841823333333333,0.7351910769939423,0.2316755606,19.487500190734863,0,1.0306500494480133,3.089224585333333,3.1645600036730076e-7,0,0.11404900501171748,0.3402567634,0.010750799595067898,0.025902199753333337,395.5349807739257,6.986015920169115,89.21114442565202,93.78990347768641,12.213163229800147,14.398601624385902,-0.2558328537050188,24.92460012435913,0.6080153333333334,4508.634414537578,0,0.004686150816269219,0.006026666666666667,0.8987949937582016,0.04037866666666667,0.01030479984668394,0.006102000000000001 +2138,0,0,5.3242646804533145,0.05245430947511927,1.9992214428898643,6.542640010515849,0.013365333333333333,1.1746105253696442,0.1837546666666667,110.32499885559082,0.4350786645333334,17.752710819244385,0,8.453599770863852,0,8.052620013554892,0.05120047072,26.408047040303547,0.8263359999999998,145.11597061157227,0.008960000000000001,5.005900144577026,78.71009066666666,0,428.1805725097656,3237.7480426666666,963.6149037679036,101.36165538419115,424.88201904296875,405.2551178011939,0.4193651005625725,0.8962631999999999,0.05340369946012894,0.01562745557333333,0.012375144675994912,0.0067420460799999995,46.286898612976074,19.86179552,11.93127179145813,14.648778666666665,61.16020361582438,7.772426666666666,0.7207240760326385,0.22962533440000002,19.392399946848553,0,1.0230000217755635,3.0618863146666664,2.5715200043426495e-7,0,0.11321000382304192,0.3372456416,0.010626499463493625,0.02567297674666667,395.776980082194,6.977255393430894,89.13748924313789,93.49417903728533,12.173752007229647,14.387844974092241,-0.25577734138099706,24.941700140635174,0.6026346666666667,4477.098874847374,0,0.004432630880425374,0.005973333333333333,0.8859850068887075,0.04002133333333334,0.009933320029328266,0.006048000000000001 +2139,0,0,5.3242646804533145,0.04808311701885933,1.9945201836561304,6.54255998134613,0.013246,1.1292505264282227,0.18211400000000005,110.35300127665202,0.4311940336000001,17.554810841878254,0,8.407209873199463,0,8.037240028381348,0.050743323660000006,25.911547978719074,0.8189579999999999,143.63997268676758,0.00888,5.007660150527954,78.007322,0,428.34157307942706,3208.8395779999996,963.4619089762368,101.19500489941325,423.2950210571289,404.46241345126543,0.4158291021982829,0.88826085,0.05109539907425642,0.015487924719999999,0.01126944087445736,0.00668184924,45.61609808603922,19.68445806,11.837573130925497,14.517985999999999,60.38930320739746,7.70303,0.7066430747509003,0.22757510820000001,19.297799905141193,0,1.015330046415329,3.0345480439999997,2.0899500086102307e-7,0,0.11236900463700294,0.3342345198,0.010505499706293145,0.025443753740000005,396.0149765014648,6.968494866692671,89.06383406062378,93.19845459688428,12.134340784659146,14.377088323798578,-0.2557264550839771,24.958600521087646,0.5972540000000001,4445.5633351571705,0,0.004177320942593117,0.00592,0.8733640064795812,0.039664000000000005,0.009575340043132504,0.005994000000000001 +2140,0,0,5.3242646804533145,0.04371192456259939,1.9898189244223965,6.542479991912842,0.013126666666666667,1.085650493701299,0.18047333333333337,110.38000106811523,0.4273094026666667,17.359210809071858,0,8.36109987894694,0,8.02187999089559,0.0502861766,25.42434899012248,0.8115799999999999,142.17897415161133,0.0088,5.00941018263499,77.30455333333333,0,428.50257873535156,3179.931113333333,963.3119099934895,101.02835441463536,421.7210210164388,403.66970910133693,0.4123371069629987,0.8802584999999999,0.04891869953523079,0.015348393866666666,0.010263237093264857,0.0066216524,44.961599032084145,19.5071206,11.744473695755005,14.387193333333332,59.63110319773356,7.633633333333333,0.6929370810588201,0.225524882,19.203700065612793,0,1.0076500475406647,3.007209773333333,1.6988299951966232e-7,0,0.11152500472962856,0.331223398,0.010387499583885074,0.025214530733333337,396.24897766113276,6.959734339954449,88.99017887810966,92.90273015648322,12.094929562088646,14.366331673504916,-0.25568019481395904,24.975200335184734,0.5918733333333334,4414.027795466966,0,0.003920320906521131,0.005866666666666667,0.8609289973974228,0.03930666666666667,0.009230370012422403,0.005940000000000001 +2141,0,0,5.146789191104871,0.039340732106339454,1.9851176651886626,6.542399962743123,0.013007333333333333,1.0437404612700145,0.1788326666666667,110.40700022379558,0.42342477173333337,17.16581090291341,0,8.315249919891357,0,8.006570021311441,0.04982902954,24.94605016708374,0.8042019999999999,140.73397318522134,0.00872,5.011170148849487,76.60178466666666,0,428.6625747680664,3151.0226486666666,963.1659138997395,100.86170392985747,420.15701548258465,402.87700475140844,0.40888410061597824,0.8722561499999999,0.046867799324293934,0.015208863013333332,0.0093475137061129,0.006561455559999999,44.322898864746094,19.32978314,11.651874462763468,14.256400666666666,58.88530286153158,7.564236666666666,0.6795940846204758,0.2234746558,19.11019976933797,0,0.9999420543511709,2.9798715026666662,1.38112999555536e-7,0,0.11067700448135535,0.3282122762,0.010272199598451456,0.02498530772666667,396.48098246256507,6.950973813216226,88.91652369559554,92.60700571608216,12.055518339518146,14.355575023211255,-0.2556385605709427,24.991700490315754,0.5864926666666667,4382.492255776762,0,0.0036791807506233454,0.0058133333333333335,0.8486780027548472,0.038949333333333336,0.008897919983913502,0.005886000000000001 +2142,0,0,4.969313701756427,0.03496953965007951,1.9804164059549287,6.542309959729512,0.012888,1.0034704556067784,0.17719200000000004,110.4330005645752,0.41954014080000007,16.97481044133504,0,8.269690036773682,0,7.99127999941508,0.049371882480000004,24.476651032765705,0.7968239999999999,139.30397415161133,0.00864,5.012920101483663,75.899016,0,428.82357533772785,3122.1141839999996,963.0219116210936,100.69505344507957,418.6460138956706,402.08430040148,0.40546110024054843,0.8642538,0.044934999818603195,0.015069332159999999,0.00851408081750075,0.00650125872,43.699399630228676,19.15244568,11.559775034586588,14.125608,58.15160274505615,7.49484,0.6666050752003988,0.2214244296,19.017199993133545,0,0.9922180424133936,2.9525332319999995,1.123009999067411e-7,0,0.10982900361220042,0.3252011544,0.010159499555205306,0.024756084720000005,396.7079772949218,6.942213286478004,88.84286851308143,92.3112812756811,12.016107116947646,14.344818372917592,-0.2556015523549281,25.007800261179607,0.5811120000000001,4350.956716086558,0,0.00345291073123614,0.00576,0.8366069942712784,0.038592,0.008577550062909722,0.005832 +2143,0,0,4.791838212407983,0.030598347193819573,1.975715146721195,6.542209943135579,0.012768666666666668,0.9647544473409653,0.17555133333333336,110.45900090535481,0.4156555098666667,16.78591028849284,0,8.224390109380087,0,7.976029992103577,0.04891473542000001,24.015951951344807,0.7894459999999999,137.88897323608398,0.00856,5.014670133590698,75.19624733333333,0,428.9825795491536,3093.205719333333,962.8789062499999,100.52840296030168,417.2220204671224,401.2915960515515,0.4020681008696556,0.8562514499999999,0.04311069908241431,0.014929801306666666,0.007755487963246803,0.00644106188,43.090599060058594,18.97510822,11.468075593312582,13.994815333333332,57.429703076680504,7.425443333333333,0.6539560705423355,0.2193742034,18.924700260162354,0,0.9844760398070017,2.9251949613333332,8.352018336192183e-9,0,0.10898000498612721,0.3221900326,0.010050599463284016,0.024526861713333337,396.9329808553059,6.933452759739781,88.76921333056731,92.01555683528002,11.976695894377146,14.33406172262393,-0.2555691701659155,25.023800532023113,0.5757313333333334,4319.421176396355,0,0.0032405907016557953,0.005706666666666667,0.824714000026385,0.03823466666666667,0.008268800098448992,0.005778000000000001 +2144,0,0,4.614362723059539,0.026227154737559634,1.9710138874874612,6.542110045750936,0.012649333333333334,0.9275444100300471,0.1739106666666667,110.48600006103516,0.41177087893333336,16.599210421244305,0,8.179350058237711,0,7.960819999376933,0.048457588360000005,23.5637526512146,0.7820679999999999,136.48897171020508,0.00848,5.0163902044296265,74.49347866666666,0,429.1395950317383,3064.2972546666665,962.7349192301431,100.36175247552379,415.88001505533856,400.498891701623,0.39870009819666546,0.8482491,0.04139049972097079,0.014790270453333332,0.007064945413731039,0.00638086504,42.49569924672445,18.79777076,11.376776138941446,13.864022666666665,56.71920235951742,7.356046666666667,0.6416360785563787,0.2173239772,18.83270009358724,0,0.9767170449097952,2.8978566906666665,0,0,0.10812700477739175,0.3191789108,0.009945229549581805,0.02429763870666667,397.15397898356116,6.924692233001559,88.6955581480532,91.71983239487896,11.937284671806646,14.323305072330268,-0.2555414140039046,25.039600213368733,0.5703506666666667,4287.885636706151,0,0.0030413606436923146,0.005653333333333334,0.8129970033963522,0.03787733333333333,0.007971250064050158,0.005724000000000001 +2145,0,0,4.436887233711095,0.021855962281299695,1.9663126282537273,6.541999975840251,0.01253,0.8917774011691412,0.17227000000000003,110.51100031534831,0.40788624800000006,16.41471020380656,0,8.13457989692688,0,7.945640047391255,0.0480004413,23.119953473409016,0.7746899999999999,135.10397466023764,0.008400000000000001,5.018070260683696,73.79070999999999,0,429.2916005452474,3035.38879,962.5889231363931,100.19510199074588,414.6190185546875,399.70618735169455,0.3953520978490512,0.8402467499999999,0.03976800044377645,0.0146507396,0.0064363131920496626,0.0063206682,41.91439882914225,18.620433300000002,11.285776456197103,13.733229999999999,56.020002683003746,7.28665,0.6296360641717911,0.215273751,18.741300264994305,0,0.9689380476872126,2.87051842,0,0,0.10727100384732087,0.316167789,0.009841709630563855,0.024068415700000005,397.370979309082,6.915931706263336,88.62190296553908,91.4241079544779,11.897873449236148,14.312548422036606,-0.2555182838688956,25.055100282033283,0.56497,4256.350097015947,0,0.002854410617146641,0.005600000000000001,0.8014510075251261,0.03752,0.007684479972037177,0.0056700000000000006 +2146,0,0,4.259411744362652,0.017484769825039756,1.9616113690199934,6.541889985402425,0.012410666666666667,0.8573983758687973,0.17062933333333336,110.53700002034505,0.4040016170666667,16.232309977213543,0,8.09007994333903,0,7.930499990781148,0.047543294240000006,22.684454282124836,0.7673119999999999,133.73397318522134,0.008320000000000001,5.019710183143616,73.08794133333333,0,429.4406204223633,3006.480325333333,962.4389088948567,100.028451505968,413.4330062866211,398.91348300176605,0.39202209562063217,0.8322443999999999,0.03823489975184202,0.014511208746666667,0.005863981127428512,0.0062604713599999995,41.345998446146645,18.44309584,11.194976727167765,13.602437333333333,55.331802686055504,7.217253333333333,0.617943063378334,0.2132235248,18.650300184885662,0,0.9611380497614542,2.843180149333333,0,0,0.10641200405855973,0.3131566672,0.009739919565618038,0.023839192693333337,397.58497873942054,6.907171179525115,88.54824778302495,91.12838351407684,11.858462226665647,14.301791771742945,-0.25549977976088833,25.07040007909139,0.5595893333333334,4224.8145573257425,0,0.0026789705928725502,0.005546666666666667,0.7900549918413162,0.03716266666666667,0.007408109959214926,0.005616 +2147,0,0,4.081936255014208,0.01311357736877982,1.9569101097862596,6.541770060857137,0.012291333333333335,0.824352373679479,0.1689886666666667,110.5620002746582,0.40011698613333335,16.05200982093811,0,8.045830090840658,0,7.915380040804545,0.04708614718000001,22.25695514678955,0.7599339999999999,132.3779754638672,0.00824,5.021310210227966,72.38517266666666,0,429.58362833658856,2977.5718606666665,962.2839101155598,99.8618010211901,412.3210169474284,398.12077865183755,0.38870609551668167,0.82424205,0.03678559915473064,0.014371677893333334,0.005342869165663918,0.00620027452,40.79009819030762,18.26575838,11.104477246602377,13.471644666666666,54.65420309702555,7.147856666666667,0.606549064318339,0.2111732986,18.55989996592204,0,0.9533150394757589,2.8158418786666664,0,0,0.10555200402935346,0.3101455454,0.009639699555312594,0.02360996968666667,397.7959823608398,6.898410652786892,88.47459260051083,90.83265907367579,11.819051004095147,14.291035121449282,-0.2554859016798829,25.085400422414143,0.5542086666666667,4193.279017635538,0,0.0025143405267347894,0.005493333333333334,0.7788069993257523,0.036805333333333336,0.0071417499566450715,0.005562 +2148,0,0,3.9044607656657635,0.008742384912519878,1.952208850552526,6.54164997736613,0.012172,0.7925873547792435,0.16734800000000002,110.58699989318848,0.3962323552,15.873709758122763,0,8.00184996922811,0,7.900300025939941,0.04662900012000001,21.837456226348877,0.7525559999999999,131.0369758605957,0.00816,5.0228501955668134,71.68240399999999,0,429.72264607747394,2948.663396,962.1209055582681,99.69515053641221,411.28101348876953,397.32807430190906,0.3854010949532191,0.8162396999999999,0.03541719913482666,0.01423214704,0.0048683676092575,0.00614007768,40.245999018351235,18.08842092,11.014077266057333,13.340851999999998,53.9870023727417,7.07846,0.595443069934845,0.2091230724,18.46989981333415,0,0.9454680482546488,2.788503608,0,0,0.1046900035192569,0.3071344236,0.009540939625973502,0.02338074668,398.00398254394526,6.88965012604867,88.40093741799672,90.53693463327471,11.779639781524647,14.28027847115562,-0.25547664962587924,25.100300312042236,0.548828,4161.743477945335,0,0.0023598604990790286,0.00544,0.767723004023234,0.036448,0.006885029996434848,0.005508000000000001 +2149,0,0,3.7269852763173197,0.0043711924562599355,1.947507591318792,6.541519999504089,0.012052666666666666,0.7620523373285929,0.16570733333333337,110.61200014750163,0.3923477242666667,15.69750968615214,0,7.958119988441467,0,7.885260025660197,0.046171853060000004,21.42575693130493,0.7451779999999999,129.7089754740397,0.00808,5.024350206057231,70.97963533333333,0,429.8556594848633,2919.754931333333,961.9489135742186,99.52850005163431,410.3090133666992,396.5353699519806,0.382102092107137,0.80823735,0.03412489996602138,0.014092616186666667,0.00443625597593685,0.00607988084,39.71349906921387,17.91108346,10.923877477645874,13.210059333333332,53.32990233103434,7.009063333333334,0.5846150716145834,0.2070728462,18.380499680836994,0,0.9375970462958018,2.7611653373333334,0,0,0.10382500352958839,0.3041233018,0.009443519481768211,0.023151523673333337,398.20797983805335,6.880889599310447,88.3272822354826,90.24121019287365,11.740228558954147,14.269521820861957,-0.25547202359887744,25.114900430043537,0.5434473333333334,4130.207938255131,0,0.0022148804661507406,0.005386666666666667,0.7568019976218542,0.03609066666666667,0.00663760001771152,0.0054540000000000005 +2150,0,0,3.549509786968876,-0,1.9428063320850582,6.54138998190562,0.011933333333333334,0.7327003280321757,0.1640666666666667,110.63600031534831,0.38846309333333334,15.523409605026245,0,7.914640029271443,0,7.870249946912129,0.04571470600000001,21.021657784779865,0.7377999999999999,128.39597511291504,0.008,5.025800307591756,70.27686666666666,0,429.98367563883465,2890.8464666666664,961.7679087320962,99.36184956685642,409.40401458740234,395.7426656020521,0.3788090944290161,0.8002349999999999,0.03290159969280163,0.013953085333333334,0.004042724516087522,0.006019684,39.19199879964193,17.733746,10.833677450815836,13.079266666666665,52.682702700297035,6.939666666666667,0.574054072300593,0.20502262,18.291499773661297,0,0.9297010451555252,2.7338270666666666,0,0,0.10295600506166618,0.30111218,0.009348729625344276,0.02292230066666667,398.40898132324213,6.872129072572225,88.25362705296848,89.94548575247259,11.700817336383647,14.258765170568296,-0.25547202359887744,25.129300276438396,0.5380666666666667,4098.672398564927,0,0.002078830439131707,0.005333333333333334,0.7460400015115738,0.03573333333333333,0.006399120010125141,0.0054 +2151,0,0,3.372034297620432,-0,1.9381050728513243,6.541260004043579,0.011814,0.7044833153486252,0.16242600000000001,110.66000048319499,0.3845784624,15.35120956103007,0,7.871410012245178,0,7.855270028114319,0.045257558940000005,20.62505833307902,0.7304219999999999,127.09597524007161,0.00792,5.02720042069753,69.57409799999999,0,430.1056950887044,2861.938002,961.5739034016926,99.19519908207853,408.5630111694336,394.9499612521236,0.3755220870176951,0.7922326499999999,0.031745298920820154,0.01381355448,0.003684303218809267,0.00595948716,38.680999437967934,17.55640854,10.743677854537964,12.948474,52.0451021194458,6.87027,0.5637520651022593,0.20297239379999998,18.20300006866455,0,0.9217810481786728,2.706488796,0,0,0.10208600449065368,0.2981010582,0.00925637975645562,0.02269307766,398.60697937011713,6.863368545834002,88.17997187045437,89.64976131207153,11.661406113813147,14.248008520274634,-0.25547202359887744,25.143500169118244,0.532686,4067.136858874723,0,0.0019511504312201093,0.005280000000000001,0.7354349941015244,0.035376,0.006169249924520652,0.005346 +2152,0,0,3.1945588082719882,-0,1.9334038136175904,6.541109999020894,0.011694666666666667,0.6773583044608434,0.16078533333333336,110.68400001525879,0.3806938314666667,15.1810093720754,0,7.828440030415853,0,7.840319991111755,0.04480041188000001,20.235759417215984,0.7230439999999999,125.8099759419759,0.00784,5.028540253639221,68.87132933333334,0,430.2227096557617,2833.029537333333,961.3669077555337,99.02854859730063,407.7850087483724,394.1572569021952,0.3722370887796084,0.7842302999999999,0.03065199948226412,0.013674023626666667,0.0033578320289961994,0.00589929032,38.18019803365072,17.37907108,10.65357748667399,12.817681333333333,51.4169028600057,6.8008733333333335,0.5537020663420359,0.20092216759999998,18.1150000890096,0,0.9138350387414297,2.679150525333333,0,0,0.1012130044400692,0.29508993640000003,0.009164879641806086,0.022463854653333337,398.80097452799475,6.85460801909578,88.10631668794025,89.35403687167047,11.621994891242647,14.237251869980971,-0.25547202359887744,25.157400131225586,0.5273053333333334,4035.601319184519,0,0.0018313303783846397,0.005226666666666668,0.7249839951594671,0.03501866666666666,0.005947690030249457,0.005292000000000001 +2153,0,0,3.0170833189235444,-0,1.9287025543838565,6.540970007578532,0.011575333333333333,0.6512822955846786,0.15914466666666668,110.70799954732259,0.37680920053333333,15.012709299723307,0,7.785709977149963,0,7.825399915377299,0.044343264820000006,19.853760083516438,0.7156659999999999,124.53697649637859,0.00776,5.029840270678203,68.16856066666666,0,430.33373260498047,2804.1210726666664,961.1489105224608,98.86189811252274,407.0670166015625,393.3645525522667,0.36895309140284854,0.77622795,0.029615499700109165,0.013534492773333334,0.0030604509908395507,0.00583909348,37.68909899393717,17.20173362,10.5635777314504,12.686888666666666,50.797902743021645,6.7314766666666666,0.5438950757185618,0.1988719414,18.02739969889323,0,0.9058630367120107,2.6518122546666665,0,0,0.10033700366814931,0.2920788146,0.009074159509812793,0.02223463164666667,398.99197896321607,6.845847492357557,88.03266150542612,89.0583124312694,11.582583668672147,14.22649521968731,-0.25547202359887744,25.17120059331258,0.5219246666666667,4004.0657794943154,0,0.0017188803758472204,0.005173333333333334,0.7146859963734945,0.034661333333333336,0.005734140092196564,0.0052380000000000005 +2154,0,0,2.8396078295751006,-0,1.9240012951501226,6.540820042292277,0.011456000000000001,0.6262152791023254,0.15750400000000003,110.73100090026855,0.37292456960000003,14.84640916188558,0,7.743229985237122,0,7.810520013173421,0.04388611776000001,19.47886069615682,0.7082879999999999,123.27797762552898,0.00768,5.031070311864217,67.465792,0,430.43874104817706,2775.212608,960.9239044189452,98.69524762774485,406.4080123901367,392.5718482023382,0.365669089059035,0.7682256,0.028634599254777033,0.01339496192,0.0027895300105835,0.0057788966399999996,37.20739905039469,17.02439616,10.473477522532145,12.556096,50.18770281473795,6.66208,0.5343230664730072,0.1968217152,17.940399805704754,0,0.8978630503018697,2.6244739839999998,0,0,0.09945740488668282,0.2890676928,0.008984149588892857,0.02200540864,399.18097941080725,6.837086965619335,87.959006322912,88.76258799086834,11.543172446101646,14.215738569393649,-0.25547202359887744,25.18470033009847,0.516544,3972.5302398041113,0,0.0016133503425711144,0.00512,0.7045379976431528,0.034304,0.005528290057554841,0.005184 +2155,0,0,2.662132340226657,-0,1.9193000359163888,6.54065998395284,0.011336666666666667,0.6021162668863932,0.15586333333333335,110.75400034586589,0.3690399386666667,14.68190892537435,0,7.700990080833435,0,7.795670072237651,0.04342897070000001,19.110861619313557,0.7009099999999999,122.03097724914551,0.0076,5.032260298728943,66.76302333333334,0,430.53876241048175,2746.304143333333,960.6958974202473,98.52859714296696,405.8080088297526,391.7791438524097,0.36238308995962143,0.7602232499999999,0.027705899594972532,0.013255431066666667,0.002542719147944202,0.005718699799999999,36.73459815979004,16.847058699999998,10.383377631505331,12.425303333333332,49.58620262145996,6.5926833333333335,0.5249790698289871,0.194771489,17.85379981994629,0,0.8898370365301768,2.5971357133333335,0,0,0.0985757044206063,0.28605657100000004,0.008894779486581683,0.021776185633333334,399.3649800618489,6.828326438881113,87.88535114039789,88.46686355046728,11.503761223531146,14.204981919099986,-0.25547202359887744,25.19790045420329,0.5111633333333334,3940.9947001139076,0,0.001514310317967708,0.005066666666666667,0.6945359905560812,0.03394666666666667,0.005329859986280401,0.005130000000000001 +2156,0,0,2.484656850878213,-0,1.914598776682655,6.5404999653498335,0.011217333333333333,0.5789472609758377,0.15422266666666667,110.7770004272461,0.3651553077333333,14.519308805465698,0,7.658990104993184,0,7.780850013097127,0.042971823640000004,18.749762058258057,0.6935319999999998,120.79797808329265,0.00752,5.033400376637776,66.06025466666667,0,430.63277943929035,2717.3956786666663,960.4659067789712,98.36194665818905,405.2640101114909,390.98643950248123,0.3590930898984273,0.7522209,0.026823799591511488,0.013115900213333333,0.0023178382931898036,0.00565850296,36.27039941151937,16.66972124,10.293177286783854,12.294510666666666,48.99320284525553,6.5232866666666665,0.5158560623725256,0.1927212628,17.767600218454998,0,0.8817860434452692,2.5697974426666668,0,0,0.09769210343559583,0.2830454492,0.0088059896758447085,0.02154696262666667,399.54697926839185,6.819565912142891,87.81169595788377,88.17113911006622,11.464350000960646,14.194225268806324,-0.25547202359887744,25.211000124613445,0.5057826666666667,3909.459160423704,0,0.0014213503163773566,0.005013333333333334,0.6846799949804941,0.03358933333333333,0.005138590039374928,0.005076000000000001 +2157,0,0,2.307181361529769,-0,1.9098975174489212,6.540329972902934,0.011098,0.5566742519537607,0.15258200000000002,110.79999987284343,0.3612706768,14.358508904774984,0,7.61722997824351,0,7.766059994697571,0.04251467658000001,18.395262559254963,0.6861539999999998,119.5769780476888,0.0074400000000000004,5.034480373064677,65.357486,0,430.7207972208659,2688.4872139999998,960.2319081624348,98.19529617341117,404.77701059977215,390.19373515255273,0.3558000847697258,0.74421855,0.025985499378293753,0.01297636936,0.002112947559605042,0.0055983061199999995,35.814498583475746,16.49238378,10.202877203623453,12.163718,48.40850257873535,6.4538899999999995,0.5069450587034225,0.19067103659999998,17.681900183359783,0,0.873707041144371,2.542459172,0,0,0.0968045045932134,0.2800343274,0.008717719620714584,0.02131773962,399.72598012288404,6.810805385404668,87.73804077536965,87.87541466966516,11.424938778390146,14.183468618512663,-0.25547202359887744,25.223800500233967,0.500402,3877.9236207335,0,0.0013341102749109268,0.004960000000000001,0.6749659975369772,0.033232,0.004954220067399244,0.005022 +2158,0,0,2.1297058721813253,-0,1.9051962582151873,6.540149966875712,0.010978666666666666,0.5352602352698644,0.15094133333333334,110.82200050354004,0.35738604586666667,14.199608643849691,0,7.5756999254226685,0,7.751300017038981,0.042057529520000005,18.047463575998943,0.6787759999999998,118.36897786458333,0.00736,5.0355104605356855,64.65471733333334,0,430.8038101196289,2659.5787493333332,959.9928995768228,98.02864568863328,404.34600830078125,389.40103080262423,0.35250308364629745,0.7362162,0.025190699379891157,0.012836838506666667,0.0019262368732597679,0.005538109279999999,35.366498947143555,16.31504632,10.11247722307841,12.032925333333333,47.83180300394694,6.3844933333333325,0.49824006607135135,0.1886208104,17.596700191497803,0,0.8656010379393896,2.5151209013333333,0,0,0.09591300350924332,0.2770232056,0.008631329673031965,0.021088516613333334,399.90097808837885,6.802044858666446,87.66438559285552,87.57969022926409,11.385527555819646,14.172711968219001,-0.25547202359887744,25.23640028635661,0.49502133333333337,3846.388081043296,0,0.0012522302567958832,0.004906666666666667,0.66539299984773,0.03287466666666667,0.004776489998524387,0.004968 +2159,0,0,1.9522303828328815,-0,1.9004949989814535,6.539979934692383,0.010859333333333334,0.5146732280651728,0.1493006666666667,110.8439998626709,0.35350141493333337,14.042508602142334,0,7.5344200531641645,0,7.736569921175639,0.04160038246000001,17.706064383188885,0.6713979999999998,117.17297744750977,0.00728,5.036490519841512,63.95194866666667,0,430.8808314005534,2630.6702846666662,959.7478993733723,97.86199520385537,403.96800994873047,388.6083264526958,0.34920208404461545,0.7282138499999999,0.024436699381719034,0.012697307653333333,0.001756096287863329,0.00547791244,34.926198641459145,16.13770886,10.021977027257284,11.902132666666667,47.2629025777181,6.315096666666666,0.4897340660293897,0.1865705842,17.511899789174397,0,0.857468048731486,2.4877826306666666,0,0,0.09501990427573521,0.27401208380000003,0.008546669657031694,0.02085929360666667,400.0729777018229,6.7932843319282235,87.59073041034141,87.28396578886303,11.346116333249146,14.161955317925338,-0.25547202359887744,25.248799959818523,0.48964066666666667,3814.852541353092,0,0.0011753902460138004,0.004853333333333334,0.6559590051571528,0.032517333333333336,0.004605160017187397,0.004914000000000001 +2160,0,0,1.7747548934844377,-0,1.8957937397477196,6.5398000081380205,0.01074,0.49488022178411484,0.14766,110.86599985758464,0.349616784,13.88710848490397,0,7.493360002835591,0,7.721869985262553,0.041143235400000006,17.370965162913006,0.6640199999999998,115.98997751871745,0.0072,5.037410457928975,63.24918,0,430.95284271240234,2601.7618199999997,959.494903564453,97.69534471907748,403.64500681559247,387.8156221027673,0.34589508175849915,0.7202115,0.02371869965766867,0.0125577768,0.0016010457184165716,0.005417715599999999,34.493099212646484,15.9603714,9.931346734364828,11.77134,46.70170243581136,6.245699999999999,0.4814190591375033,0.184520358,17.4275000890096,0,0.8493080387512842,2.46044436,0,0,0.09412480394045512,0.271000962,0.008462219654272,0.0206300706,400.2429809570312,6.784523805190001,87.51707522782729,86.98824134846197,11.306705110678646,14.151198667631677,-0.25547202359887744,25.26099983851115,0.48426,3783.3170016628883,0,0.0011032602439324062,0.0048000000000000004,0.6466600000858307,0.03216,0.004440000009102126,0.004860000000000001 +2161,0,0,1.597279404135994,-0,1.8910924805139857,6.539610028266907,0.010620666666666667,0.4758502095937729,0.14601933333333333,110.8879992167155,0.34573215306666666,13.733508507410685,0,7.452540000279744,0,7.707209984461467,0.04068608834,17.04216543833415,0.6566419999999998,114.81897799173991,0.00712,5.03829038143158,62.54641133333334,0,431.0188624064128,2572.853355333333,959.2348988850911,97.52869423429959,403.37400817871094,387.0229177528388,0.3425830850998561,0.71220915,0.023036799393594265,0.012418245946666667,0.0014597352031463136,0.005357518759999999,34.06709893544515,15.78303394,9.840566714604696,11.640547333333334,46.14790280659994,6.176303333333332,0.47328806668519974,0.1824701318,17.343599796295166,0,0.8411240329345068,2.433106089333333,0,0,0.09322590380907059,0.2679898402,0.008377939695492387,0.020400847593333334,400.40897623697913,6.7757632784517785,87.44342004531318,86.69251690806091,11.267293888108146,14.140442017338016,-0.25547202359887744,25.272900104522705,0.4788793333333334,3751.781461972684,0,0.0010355702155114461,0.004746666666666667,0.6374960045019785,0.03180266666666667,0.004280780054007967,0.004806 +2162,0,0,1.41980391478755,-0,1.8863912212802518,6.5394099950790405,0.010501333333333333,0.4575532029072444,0.14437866666666668,110.90900039672852,0.34184752213333336,13.581608374913534,0,7.411939978599548,0,7.692570010821025,0.040228941280000007,16.71946620941162,0.6492639999999998,113.65997823079427,0.007039999999999999,5.039120475451152,61.84364266666667,0,431.0798746744792,2543.944890666666,958.9659067789712,97.36204374952169,403.15500895182294,386.23021340291035,0.33926408489545185,0.7042068,0.02238879958167672,0.012278715093333333,0.0013309347559697926,0.00529732192,33.64779885609945,15.605696479999999,9.749626239140829,11.509754666666668,45.601402282714844,6.106906666666666,0.4653370603919029,0.18041990559999999,17.26010004679362,0,0.8329140345255533,2.4057678186666664,0,0,0.09232310516138871,0.26497871840000004,0.00829379966792961,0.02017162458666667,400.57197570800776,6.767002751713556,87.36976486279906,86.39679246765985,11.227882665537646,14.129685367044353,-0.25547202359887744,25.284700234731037,0.4734986666666667,3720.2459222824805,0,9.72030208989357e-4,0.004693333333333334,0.6284630000591278,0.03144533333333333,0.004127279971726239,0.004752000000000001 +2163,0,0,1.2423284254391063,-0,1.8816899620465182,6.539209961891174,0.010381999999999999,0.4399621958533923,0.142738,110.93000030517578,0.3379628912,13.431408246358236,0,7.371580044428508,0,7.67796003818512,0.039771794220000004,16.402766863505047,0.6418859999999998,112.5129788716634,0.00696,5.03989044825236,61.140874000000004,0,431.13489532470703,2515.0364259999997,958.6878967285155,97.1953932647438,402.98800404866535,385.43750905298185,0.3359370802839597,0.69620445,0.02177029972275098,0.01213918424,0.0012135443297059585,0.005237125079999999,33.23489920298258,15.42835902,9.658526102701822,11.378962,45.061902364095054,6.037509999999999,0.45756006489197415,0.1783696794,17.177099863688152,0,0.8246780385573705,2.3784295479999997,0,0,0.09141680411994457,0.2619675966,0.008209789792696634,0.01994240158,400.73197937011713,6.7582422249753336,87.29610968028493,86.10106802725878,11.188471442967145,14.118928716750691,-0.25547202359887744,25.296200434366863,0.46811800000000003,3688.710382592277,0,9.123951943668848e-4,0.00464,0.6195599983135859,0.031088,0.003979309966477255,0.004698000000000001 +2164,0,0,1.0648529360906624,-0,1.8769887028127843,6.539010047912598,0.010262666666666666,0.4230481932560603,0.14109733333333335,110.95100084940593,0.3340782602666667,13.282908121744791,0,7.3314301172892256,0,7.663379987080892,0.03931464716000001,16.091867605845135,0.6345079999999998,111.37697982788086,0.00688,5.040610512097676,60.43810533333333,0,431.1839090983073,2486.127961333333,958.3989003499348,97.02874277996591,402.8710072835286,384.64480470305335,0.332604077955087,0.6882021,0.021179499415059883,0.011999653386666666,0.0011065339591975014,0.00517692824,32.82819779713949,15.25102156,9.567255894343058,11.248169333333333,44.52940273284912,5.968113333333333,0.44995306183894473,0.1763194532,17.094500223795574,0,0.8164170384407043,2.351091277333333,0,0,0.09050890368719895,0.2589564748,0.008125879724199573,0.019713178573333337,400.8889821370442,6.749481698237111,87.22245449777081,85.80534358685772,11.149060220396645,14.10817206645703,-0.25547202359887744,25.307400544484455,0.46273733333333333,3657.1748429020727,0,8.564221789129078e-4,0.004586666666666667,0.6107850025097529,0.030730666666666667,0.0038366600250204406,0.0046440000000000006 +2165,0,0,0.8873774467422189,-0,1.8722874435790504,6.538799961407979,0.010143333333333334,0.4067861835161845,0.13945666666666667,110.9710013071696,0.33019362933333335,13.136008024215698,0,7.291519999504089,0,7.648830016454061,0.038857500100000004,15.786868015925089,0.6271299999999999,110.25397936503093,0.0068,5.041280508041382,59.73533666666667,0,431.2289276123047,2457.2194966666666,958.0998992919921,96.862092295188,402.8050053914388,383.8521003531249,0.3292640795310338,0.68019975,0.020617099789281685,0.011860122533333333,0.0010089936113217846,0.0051167313999999995,32.42749945322672,15.0736841,9.475805600484213,11.117376666666667,44.00360234578451,5.898716666666666,0.4425080592433612,0.174269227,17.01230001449585,0,0.8081300357977549,2.3237530066666663,0,0,0.08959940324227016,0.255945353,0.008043439670776328,0.01948395556666667,401.0429763793945,6.740721171498889,87.1487993152567,85.50961914645666,11.109648997826145,14.097415416163368,-0.25547202359887744,25.31850020090739,0.4573566666666667,3625.6393032118685,0,8.038851713839298e-4,0.004533333333333334,0.6021370043357214,0.030373333333333336,0.0036991299906124673,0.00459 +2166,0,0,0.709901957393775,-0,1.8675861843453165,6.538589994112651,0.010024,0.39115017652511597,0.137816,110.9919999440511,0.3263089984,12.9908078511556,0,7.251819928487142,0,7.634310086568196,0.03840035304,15.487468640009562,0.6197519999999999,109.14097913106282,0.006719999999999999,5.041910529136658,59.032568000000005,0,431.2669372558594,2428.3110319999996,957.7889048258462,96.69544181041012,402.78800201416016,383.0593960031964,0.3259170825282733,0.6721974,0.02008129966755708,0.01172059168,9.200712811434641e-4,0.005056534559999999,32.032499154408775,14.896346639999999,9.384165445963541,10.986584,43.48440170288086,5.829319999999999,0.4352210536599159,0.1722190008,16.93049971262614,0,0.7998210340738297,2.296414736,0,0,0.0886863029251496,0.2529342312,0.007962379759798447,0.01925473256,401.193977355957,6.731960644760667,87.07514413274258,85.2138947060556,11.070237775255647,14.086658765869705,-0.25547202359887744,25.32930024464925,0.45197600000000004,3594.103763521665,0,7.545731593078623e-4,0.0044800000000000005,0.59361199537913,0.030016,0.003566540020983666,0.004536000000000001 +2167,0,0,0.5324264680453314,-0,1.8628849251115827,6.538369973500569,0.009904666666666666,0.3761161689956983,0.13617533333333334,111.01200040181477,0.3224243674666667,12.84720786412557,0,7.212339997291565,0,7.6198199192682905,0.037943205980000005,15.19356926282247,0.6123739999999999,108.03997866312663,0.00664,5.04248050848643,58.329799333333334,0,431.3009516398112,2399.402567333333,957.4658915201821,96.52879132563223,402.8200047810872,382.2666916532679,0.322563074529171,0.66419505,0.01956809979553024,0.011581060826666666,8.390069948897386e-4,0.00499633772,31.64289919535319,14.71900918,9.292335112889608,10.855791333333334,42.971502939860024,5.759923333333333,0.42808705816666287,0.1701687746,16.84910011291504,0,0.7914880265792211,2.2690764653333333,0,0,0.0877696027358373,0.2499231094,0.007881179607162872,0.019025509553333337,401.34197743733716,6.7232001180224445,87.00148895022846,84.91817026565454,11.030826552685147,14.075902115576044,-0.25547202359887744,25.33990017573039,0.44659533333333334,3562.568223831461,0,7.082881590273852e-4,0.004426666666666667,0.585208997130394,0.029658666666666667,0.0034387199751411877,0.004482000000000001 +2168,0,0,0.3549509786968874,-0,1.858183665877849,6.538139979044597,0.009785333333333333,0.3616611634691556,0.13453466666666666,111.0310001373291,0.31853973653333334,12.705207745234171,0,7.173090020815532,0,7.6053599913914995,0.03748605892,14.90516988436381,0.6049959999999999,106.94998105367024,0.00656,5.04300057888031,57.62703066666667,0,431.32896931966144,2370.4941026666665,957.1308949788411,96.36214084085434,402.9010009765625,381.4739873033394,0.31920207291841507,0.6561927,0.019078599599500496,0.011441529973333333,7.651017416113367e-4,0.004936140879999999,31.258599122365315,14.54167172,9.200314919153849,10.724998666666666,42.46500205993652,5.690526666666666,0.42110005766153336,0.1681185484,16.768099784851074,0,0.7831300298372904,2.2417381946666666,0,0,0.08685150494178136,0.24691198760000002,0.007799839639725785,0.01879628654666667,401.48697916666663,6.714439591284222,86.92783376771433,84.62244582525346,10.991415330114647,14.065145465282383,-0.25547202359887744,25.350300312042236,0.4412146666666667,3531.032684141257,0,6.648431396267066e-4,0.004373333333333333,0.5769059956073761,0.029301333333333332,0.0033154799796951315,0.0044280000000000005 +2169,0,0,0.17747548934844382,-0,1.8534824066441151,6.537909984588623,0.009666000000000001,0.34776115665833157,0.132894,111.05099932352702,0.31465510560000004,12.564807653427124,0,7.134039958318074,0,7.590920011202495,0.037028911860000006,14.622170289357504,0.5976179999999999,105.87198003133138,0.00648,5.043470541636149,56.924262,0,431.35099029541016,2341.5856379999996,956.7829030354817,96.19549035607643,403.0300038655599,380.68128295341097,0.31583407272895175,0.64819035,0.018611299494902294,0.01130199912,6.977194861974567e-4,0.00487594404,30.879398981730144,14.36433426,9.108094612757364,10.594206,41.964502016703285,5.62113,0.41425705204407376,0.1660683222,16.687599976857502,0,0.7747490406036377,2.214399924,0,0,0.0859320027132829,0.2439008658,0.007718359702266753,0.018567063540000005,401.62897745768225,6.705679064546,86.85417858520022,84.3267213848524,10.952004107544147,14.05438881498872,-0.25547202359887744,25.36050033569336,0.435834,3499.497144451053,0,6.240641329592714e-4,0.00432,0.5687029957771301,0.028944,0.0031966599635779858,0.004374000000000001 +2170,0,0,-0,-0,1.8487811474103812,6.53767991065979,0.009546666666666667,0.3343971495827039,0.13125333333333333,111.06999969482422,0.3107704746666667,12.426007588704428,0,7.095220009485881,0,7.576520005861918,0.0365717648,14.3443710009257,0.5902399999999999,104.80397923787434,0.0063999999999999994,5.043900529543559,56.221493333333335,0,431.3679962158203,2312.677173333333,956.421900431315,96.02883987129854,403.2070007324219,379.8885786034825,0.31245607634385425,0.640188,0.018162499492367108,0.011162468266666666,6.362842686939985e-4,0.0048157472,30.50489886601766,14.1869968,9.015674432118734,10.463413333333333,41.469902674357094,5.551733333333333,0.4075520584980647,0.164018096,16.607399781545002,0,0.7663460373878479,2.187061653333333,0,0,0.08500890309611957,0.24088974400000002,0.007636729666652779,0.018337840533333337,401.76797993977857,6.696918537807777,86.7805234026861,84.03099694445135,10.912592884973646,14.043632164695058,-0.25547202359887744,25.370400110880535,0.43045333333333335,3467.9616047608492,0,5.857881187694147e-4,0.004266666666666667,0.5606160014867783,0.028586666666666666,0.003082110003257791,0.004320000000000001 +2171,0,0,-0,-0,1.8440798881766474,6.537440101305644,0.009427333333333333,0.32154614229997,0.12961266666666665,111.08900006612141,0.30688584373333333,12.288607597351074,0,7.056600014368693,0,7.562139987945557,0.03611461774,14.071771621704102,0.5828619999999999,103.74698066711426,0.006319999999999999,5.044270674387614,55.51872466666667,0,431.38001759847003,2283.7687086666665,956.047892252604,95.86218938652065,403.4310022989909,379.095874253554,0.3090720747907956,0.6321856499999999,0.017733399756252766,0.011022937413333333,5.802680728569006e-4,0.004755550359999999,30.13509925206502,14.009659339999999,8.923044125239054,10.332620666666667,40.981101989746094,5.482336666666666,0.40097805360953015,0.1619678698,16.5277001063029,0,0.757922038435936,2.1597233826666664,0,0,0.0840825034926335,0.23787862220000003,0.007554949649299185,0.01810861752666667,401.9049809773762,6.688158011069555,86.70686822017198,83.73527250405029,10.873181662403146,14.032875514401397,-0.25547202359887744,25.38010040918986,0.4250726666666667,3436.4260650706456,0,5.498591150778035e-4,0.004213333333333334,0.5526449928681055,0.028229333333333332,0.002971659977144251,0.004266000000000001 +2172,0,0,-0,-0,1.8393786289429135,6.5371900002161665,0.009308,0.3091891383131345,0.127972,111.10699971516927,0.30300121280000003,12.152907530466715,0,7.018199960390727,0,7.5477800369262695,0.035657470680000004,13.804272015889486,0.5754839999999999,102.70097986857097,0.00624,5.044590711593628,54.815956,0,431.3870315551758,2254.8602439999995,955.6598968505858,95.69553890174276,403.66200002034503,378.30316990362553,0.3056800688306491,0.6241833,0.017322799501319725,0.01088340656,5.291908843598018e-4,0.00469535352,29.76979907353719,13.83232188,8.83022371927897,10.201828,40.49800237019857,5.41294,0.39453205466270447,0.1599176436,16.44830020268758,0,0.7494760354359945,2.1323851119999997,0,0,0.08315480252106984,0.2348675004,0.007473019727816184,0.017879394520000005,402.0379842122395,6.679397484331332,86.63321303765787,83.43954806364923,10.833770439832646,14.022118864107734,-0.25547202359887744,25.38960027694702,0.419692,3404.8905253804414,0,5.161351097437242e-4,0.0041600000000000005,0.5447869996229807,0.027872,0.002865179985140761,0.0042120000000000005 +2173,0,0,-0,-0,1.8346773697091796,6.536939978599548,0.009188666666666668,0.2973081370194753,0.12633133333333335,111.12600072224934,0.2991165818666667,12.018607298533121,0,6.9800099929173784,0,7.533460060755412,0.03520032362,13.541672468185425,0.5681059999999999,101.66498120625813,0.00616,5.044880668322246,54.113187333333336,0,431.38904062906903,2225.951779333333,955.2578887939452,95.52888841696486,403.8630015055339,377.51046555369703,0.30228207012017566,0.61618095,0.016927299555391073,0.010743875706666666,4.8261572131499025e-4,0.0046351566799999995,29.408799171447754,13.65498442,8.73719342549642,10.071035333333333,40.02040163675944,5.343543333333333,0.38821105162302655,0.15786741740000002,16.369400183359783,0,0.7410090317328771,2.105046841333333,0,0,0.08222600258886814,0.23185637860000002,0.0073923397188385325,0.017650171513333337,402.1689834594726,6.67063695759311,86.55955785514375,83.14382362324817,10.794359217262146,14.011362213814072,-0.25547202359887744,25.398900190989178,0.41431133333333336,3373.3549856902373,0,4.8447910133594024e-4,0.0041066666666666665,0.5370410035053889,0.027514666666666666,0.002762509994984915,0.004158000000000001 +2174,0,0,-0,-0,1.8299761104754457,6.5366900364557905,0.009069333333333334,0.2858831286430359,0.12469066666666667,111.14400164286296,0.2952319509333334,11.885807116826376,0,6.942020018895467,0,7.5191599527994795,0.034743176560000005,13.283973137537638,0.5607279999999999,100.63998158772786,0.0060799999999999995,5.045140624046326,53.410418666666665,0,431.38804880777997,2197.0433146666664,954.8428955078124,95.36223793218697,404.03900146484375,376.71776120376853,0.2988770703474681,0.6081786,0.01654589967802167,0.010604344853333333,4.401465703267604e-4,0.00457495984,29.051799138387043,13.47764696,8.643973191579184,9.940242666666666,39.54820156097412,5.274146666666667,0.3820120518406232,0.1558171912,16.290800094604492,0,0.7325230340162913,2.0777085706666663,0,0,0.08129390267034371,0.2288452568,0.007312839656757812,0.01742094850666667,402.2969818115234,6.661876430854887,86.48590267262963,82.84809918284711,10.754947994691646,14.000605563520411,-0.25547202359887744,25.40790017445882,0.40893066666666666,3341.8194460000336,0,4.5476509937240434e-4,0.004053333333333333,0.5294059962034225,0.027157333333333332,0.0026635199901647866,0.004104000000000001 +2175,0,0,-0,-0,1.825274851241712,6.53643000125885,0.00895,0.27489712337652844,0.12305,111.16200002034505,0.29134732,11.754407167434692,0,6.904240012168884,0,7.504899978637695,0.0342860295,13.031073570251465,0.5533499999999999,99.62498156229655,0.006,5.0453806320826216,52.70765,0,431.3860549926758,2168.1348499999995,954.4158935546874,95.19558744740908,404.1919987996419,375.92505685384003,0.2954660654067993,0.60017625,0.016180199726174276,0.010464814,4.014184305560775e-4,0.004514763,28.69879913330078,13.300309500000001,8.550573031107584,9.80945,39.08120187123617,5.20475,0.3759300534923871,0.153766965,16.212599913279217,0,0.7240200291077296,2.0503703,0,0,0.08035900319616,0.22583413500000002,0.0072330096348499255,0.017191725500000005,402.42197926839185,6.653115904116665,86.4122474901155,82.55237474244603,10.715536772121148,13.989848913226748,-0.25547202359887744,25.416800181070965,0.40355,3310.28390630983,0,4.2687409101442125e-4,0.004,0.5218789875507355,0.026799999999999997,0.0025680799929735563,0.004050000000000001 +2176,0,0,-0,-0,1.8205735920079782,6.536159992218018,0.008830666666666667,0.2643331165115039,0.12140933333333334,111.17900149027507,0.28746268906666667,11.624606927235922,0,6.86667005221049,0,7.490649938583374,0.03382888244,12.78287402788798,0.5459719999999999,98.62028121948242,0.00592,5.045620600382487,52.00488133333334,0,431.38305409749347,2139.226385333333,953.9768829345702,95.02893696263119,404.3249969482422,375.1323525039116,0.29204907019933063,0.5921738999999999,0.015829199614624184,0.010325283146666666,3.661033066843326e-4,0.0044545661599999994,28.349699179331463,13.12297204,8.457002798716227,9.678657333333334,38.619401613871254,5.135353333333333,0.3699630523721377,0.1517167388,16.13480011622111,0,0.7155020286639532,2.0230320293333333,0,0,0.07942340336740017,0.22282301320000003,0.007152889699985583,0.016962502493333337,402.54398091634107,6.644355377378442,86.33859230760139,82.25665030204497,10.676125549550648,13.979092262933086,-0.25547202359887744,25.425400098164875,0.3981693333333334,3278.748366619626,0,4.0069308791620034e-4,0.003946666666666667,0.5144589940706888,0.026442666666666666,0.00247606000630185,0.003996 +2177,0,0,-0,-0,1.8158723327742443,6.535889983177185,0.008711333333333335,0.2541751141349475,0.11976866666666668,111.19700050354004,0.28357805813333337,11.49610702196757,0,6.829310019810994,0,7.476439952850342,0.03337173538,12.539374510447184,0.5385939999999999,97.62578264872234,0.00584,5.045860648155212,51.302112666666666,0,431.3800532023112,2110.3179206666664,953.5268910725911,94.8622864778533,404.43999735514325,374.3396481539831,0.288626067340374,0.58417155,0.015489699474225441,0.010185752293333333,3.3389818903136376e-4,0.00439436932,28.004199345906574,12.94563458,8.363272587458292,9.547864666666667,38.16260210673014,5.065956666666667,0.36410605162382126,0.1496665126,16.057400226593018,0,0.7069710344076157,1.9956937586666665,0,0,0.07848730248709519,0.21981189140000001,0.0070724797357494635,0.01673327948666667,402.66298166910804,6.63559485064022,86.26493712508727,81.96092586164391,10.636714326980147,13.968335612639425,-0.25547202359887744,25.43380006154378,0.3927886666666667,3247.2128269294217,0,3.761180754130085e-4,0.0038933333333333333,0.5071450024843216,0.026085333333333332,0.002387339986550311,0.003942 +2178,0,0,-0,-0,1.8111710735405104,6.535620013872783,0.008592,0.24440811077753702,0.11812800000000001,111.21400006612141,0.2796934272,11.369106928507486,0,6.792139927546184,0,7.462249954541524,0.03291458832,12.300375064214071,0.5312159999999999,96.64138221740723,0.0057599999999999995,5.046100616455078,50.599344,0,431.37705485026044,2081.409456,953.0668843587239,94.6956359930754,404.5399983723958,373.5469438040546,0.2851980651418368,0.5761691999999999,0.0151632996276021,0.01004622144,3.045300885181253e-4,0.00433417248,27.66219886144002,12.76829712,8.269402265548706,9.417072,37.710801124572754,4.99656,0.3583570470412572,0.14761628640000002,15.98039976755778,0,0.6984270264705023,1.9683554879999998,0,0,0.07754870255788167,0.21680076960000003,0.006991819633791844,0.01650405648,402.7799809773762,6.626834323901997,86.19128194257316,81.66520142124286,10.597303104409647,13.957578962345764,-0.25547202359887744,25.4419002532959,0.38740800000000003,3215.677287239218,0,3.530500762281008e-4,0.00384,0.49993499120076496,0.025727999999999997,0.002301789994817227,0.0038880000000000004 +2179,0,0,-0,-0,1.8064698143067766,6.535339991251628,0.008472666666666667,0.2350161075592041,0.11648733333333335,111.2309996287028,0.2758087962666667,11.243506987889608,0,6.75518004099528,0,7.448089996973674,0.032457441260000004,12.065775553385416,0.5238379999999999,95.6668815612793,0.00568,5.046330650647481,49.89657533333333,0,431.3740539550781,2052.500991333333,952.5968882242837,94.52898550829751,404.62499745686847,372.75423945412615,0.28176606446504593,0.56816685,0.014849299564957619,0.009906690586666666,2.777489911143978e-4,0.00427397564,27.323699315388996,12.590959660000001,8.175372123718262,9.286279333333333,37.26380221048991,4.927163333333334,0.35271205256382626,0.1455660602,15.903700033823648,0,0.6898710330327352,1.941017217333333,0,0,0.0766079022238652,0.2137896478,0.0069108996540308,0.016274833473333337,402.8939819335937,6.618073797163775,86.11762676005904,81.3694769808418,10.557891881839147,13.9468223120521,-0.25547202359887744,25.449900309244793,0.38202733333333333,3184.1417475490143,0,3.3139807055704296e-4,0.0037866666666666665,0.49282700071732205,0.025370666666666666,0.0022193199838511646,0.0038340000000000006 +2180,0,0,-0,-0,1.8017685550730427,6.53505007425944,0.008353333333333334,0.2259851023554802,0.11484666666666668,111.24700101216634,0.27192416533333336,11.119306802749634,0,6.718419988950093,0,7.43396000067393,0.0320002942,11.835575898488363,0.5164599999999999,94.70218213399251,0.0056,5.046570618947347,49.19380666666667,0,431.3700586954753,2023.5925266666663,952.1178894042968,94.36233502351962,404.69800059000653,371.96153510419765,0.27833106368780136,0.5601645,0.014544599611933032,0.009767159733333333,2.533259018188498e-4,0.0042137788,26.988499482472736,12.4136222,8.08122213681539,9.155486666666667,36.821502049764,4.857766666666667,0.3471670498450597,0.143515834,15.827499945958456,0,0.6813060243924459,1.9136789466666664,0,0,0.07566510202984016,0.21077852600000002,0.006831159737582008,0.01604561046666667,403.0049845377604,6.609313270425552,86.04397157754492,81.07375254044074,10.518480659268647,13.93606566175844,-0.25547202359887744,25.457600116729736,0.3766466666666667,3152.60620785881,0,3.110730685875751e-4,0.0037333333333333333,0.4858200003703435,0.025013333333333332,0.0021397999565427503,0.0037800000000000004 +2181,0,0,-0,-0,1.7970672958393088,6.534759918848674,0.008234,0.21730109800895056,0.11320600000000001,111.2640012105306,0.2680395344,10.996406634648642,0,6.681869943936666,0,7.419850031534831,0.031543147140000005,11.609776417414347,0.5090819999999999,93.74728266398112,0.00552,5.046810587247212,48.491038,0,431.36705017089844,1994.6840619999996,951.6298929850259,94.19568453874173,404.75900014241535,371.16883075426915,0.27489306529362995,0.5521621499999999,0.014248599608739218,0.00962762888,2.3105282283116443e-4,0.00415358196,26.656499067942303,12.23628474,7.986941695213318,9.024694,36.38380209604899,4.78837,0.3417200446128845,0.1414656078,15.75159994761149,0,0.6727310319741567,1.8863406759999997,0,0,0.07472240303953488,0.20776740420000003,0.006752509662571053,0.01581638746,403.1129811604817,6.60055274368733,85.9703163950308,80.77802810003968,10.479069436698147,13.925309011464778,-0.25547202359887744,25.465100288391113,0.371266,3121.070668168606,0,2.919950614644525e-4,0.00368,0.4789140025774638,0.024655999999999997,0.0020631299703381956,0.003726 +2182,0,0,-0,-0,1.792366036605575,6.534469962120056,0.008114666666666668,0.20895109449823698,0.11156533333333335,111.28000068664551,0.2641549034666667,10.874906619389852,0,6.645509998003642,0,7.405770023663838,0.031086000080000002,11.388076782226562,0.5017039999999999,92.80198224385579,0.0054399999999999995,5.047050515810649,47.78826933333333,0,431.3650487263997,1965.775597333333,951.1338806152343,94.02903405396383,404.80899810791016,370.3761264043407,0.27145106593767804,0.5441598,0.013963199608648816,0.009488098026666666,2.1074174946988933e-4,0.00409338512,26.327499230702717,12.05894728,7.892541686693828,8.893901333333334,35.95070266723633,4.7189733333333335,0.33636604497830075,0.1394153816,15.675999959309896,0,0.6641480227311453,1.8590024053333332,0,0,0.07378000331421693,0.20475628240000002,0.006673479646754761,0.015587164453333335,403.2189814249674,6.591792216949107,85.89666121251669,80.48230365963862,10.439658214127647,13.914552361171115,-0.25547202359887744,25.472400347391766,0.36588533333333334,3089.5351284784024,0,2.7408705742952105e-4,0.003626666666666667,0.4721050014098485,0.024298666666666666,0.0019891999933558204,0.0036720000000000004 +2183,0,0,-0,-0,1.7876647773718413,6.534160017967224,0.007995333333333333,0.20092208807667097,0.10992466666666667,111.29500071207683,0.26027027253333335,10.754806677500406,0,6.609350045522054,0,7.391719977060954,0.030628853020000003,11.17057736714681,0.49432599999999993,91.8662821451823,0.00536,5.047300616900126,47.08550066666667,0,431.362055460612,1936.8671326666663,950.6288859049478,93.86238356918594,404.8500010172526,369.5834220544122,0.2680070648590724,0.5361574499999999,0.013687799762313565,0.009348567173333332,1.9221768282780735e-4,0.00403318828,26.00149933497111,11.881609820000001,7.7980415026346845,8.763108666666666,35.521902084350586,4.6495766666666665,0.33110204587380093,0.1373651554,15.600900014241537,0,0.6555600265661875,1.8316641346666664,0,0,0.07283560124536355,0.20174516060000003,0.006594089713568489,0.015357941446666669,403.32197570800776,6.583031690210885,85.82300603000256,80.18657921923754,10.400246991557147,13.903795710877453,-0.25547202359887744,25.479400157928467,0.3605046666666667,3057.9995887881987,0,2.572770487555924e-4,0.0035733333333333333,0.46539399524529773,0.023941333333333332,0.001917929999763146,0.003618 +2184,0,0,-0,-0,1.7829635181381074,6.533859968185425,0.007876000000000001,0.19320208579301834,0.108284,111.31100082397461,0.2563856416,10.636006514231363,0,6.573379993438721,0,7.3776899973551435,0.030171705960000003,10.957177718480429,0.48694799999999994,90.93998273213704,0.00528,5.047540624936421,46.382732,0,431.36005147298175,1907.9586679999998,950.1168874104817,93.69573308440803,404.88200124104816,368.79071770448377,0.2645590603351593,0.5281551,0.013419299619272351,0.009209036319999999,1.7532462394835116e-4,0.00397299144,25.678398927052815,11.704272360000001,7.703441341718038,8.632316,35.09750207265218,4.58018,0.3259270489215851,0.1353149292,15.526099999745687,0,0.646965021888415,1.804325864,0,0,0.07188960164785385,0.1987340388,0.006514359770032267,0.015128718440000001,403.4219818115234,6.5742711634726625,85.74935084748844,79.89085477883648,10.360835768986647,13.89303906058379,-0.25547202359887744,25.486200014750164,0.355124,3026.4640490979946,0,2.4149905463370183e-4,0.00352,0.45877700050671893,0.023584,0.001849209996483599,0.0035640000000000003 +2185,0,0,-0,-0,1.7782622589043735,6.533549984296163,0.007756666666666667,0.1857780839006106,0.10664333333333334,111.32600021362305,0.25250101066666664,10.518406311670939,0,6.537619988123576,0,7.3636899789174395,0.029714558900000004,10.747778018315634,0.47956999999999994,90.02298355102539,0.0052,5.04779068628947,45.67996333333333,0,431.35805257161456,1879.050203333333,949.5978851318358,93.52908259963014,404.90599822998047,367.99801335455527,0.2611080581943194,0.5201527499999999,0.013159699582805237,0.009069505466666666,1.5991757027222775e-4,0.0039127946,25.357999483744305,11.5269349,7.608731230099996,8.501523333333333,34.67730172475179,4.510783333333333,0.3208390474319458,0.13326470299999998,15.45170005162557,0,0.6383640219767889,1.7769875933333332,0,0,0.07094410248100758,0.19572291700000002,0.00643431981249402,0.014899495433333335,403.5199839274088,6.565510636734441,85.67569566497433,79.59513033843542,10.321424546416146,13.882282410290129,-0.25547202359887744,25.492900053660076,0.3497433333333333,2994.9285094077904,0,2.2668804983065152e-4,0.003466666666666667,0.4522550006707509,0.023226666666666666,0.0017829500041746844,0.00351 +2186,0,0,-0,-0,1.7735609996706396,6.533229947090149,0.007637333333333334,0.17863907913366953,0.10500266666666667,111.34100087483723,0.24861637973333334,10.402206341425577,0,6.502039949099223,0,7.349720001220703,0.029257411840000004,10.542278528213501,0.47219199999999995,89.11528333028157,0.0051199999999999996,5.0480406284332275,44.97719466666667,0,431.3560485839844,1850.1417386666662,949.0708872477212,93.36243211485225,404.9220021565755,367.20530900462677,0.2576550592978795,0.5121503999999999,0.012908599649866423,0.008929974613333334,1.4586652105208486e-4,0.00385259776,25.04029893875122,11.34959744,7.513941168785095,8.370730666666667,34.26120185852051,4.441386666666666,0.3158350462714831,0.1312144768,15.377600034077963,0,0.6297580301761627,1.7496493226666665,0,0,0.06999900316198666,0.19271179520000004,0.00635398974797378,0.014670272426666669,403.615982055664,6.556750109996218,85.60204048246021,79.29940589803437,10.282013323845648,13.871525759996468,-0.25547202359887744,25.499199867248535,0.34436266666666665,2963.3929697175868,0,2.1278504452008443e-4,0.0034133333333333338,0.4458260014653206,0.022869333333333332,0.0017190700067051996,0.003456 +2187,0,0,-0,-0,1.7688597404369057,6.532909909884135,0.007518,0.17177507653832436,0.10336200000000001,111.3559996287028,0.24473174879999998,10.287306149800619,0,6.466670036315918,0,7.335769971211751,0.028800264780000005,10.340678930282593,0.46481399999999995,88.21678225199382,0.005039999999999999,5.048300623893738,44.274426,0,431.3550491333008,1821.2332739999997,948.5398864746093,93.19578163007435,404.9320017496745,366.4126046546983,0.25420105705658597,0.50414805,0.012662999720002214,0.00879044376,1.3305247315050414e-4,0.0037924009200000003,24.725099245707195,11.17225998,7.419060985247294,8.239938,33.84920152028402,4.37199,0.3109120453397433,0.1291642506,15.30400005976359,0,0.6211460282405218,1.722311052,0,0,0.06905220200618108,0.18970067340000002,0.006273369731691976,0.014441049420000001,403.7079772949218,6.547989583257996,85.5283852999461,79.0036814576333,10.242602101275148,13.860769109702805,-0.25547202359887744,25.505400498708088,0.338982,2931.857430027383,0,1.997360389699073e-4,0.0033600000000000006,0.4394889970620473,0.022512,0.0016574799956288189,0.003402 +2188,0,0,-0,-0,1.764158481203172,6.532580018043518,0.007398666666666666,0.1651750740905603,0.10172133333333333,111.37000020345052,0.24084711786666665,10.17370613416036,0,6.431480010350545,0,7.321849942207336,0.028343117720000005,10.142879486083984,0.45743599999999995,87.32738304138184,0.004959999999999999,5.048550605773926,43.571657333333334,0,431.3530502319336,1792.324809333333,948.0068868001301,93.02913114529646,404.9350001017253,365.61990030476983,0.2507450580596924,0.4961456999999999,0.012424899575610956,0.008650912906666667,1.2136443365307059e-4,0.00373220408,24.412399291992188,10.99492252,7.324110984802246,8.109145333333332,33.44120184580485,4.302593333333333,0.3060670420527458,0.1271140244,15.230700095494589,0,0.6125320245822271,1.6949727813333333,0,0,0.06810390204191208,0.18668955160000003,0.006193899743569394,0.014211826413333335,403.7979838053385,6.5392290565197735,85.45473011743196,78.70795701723223,10.203190878704648,13.850012459409143,-0.25547202359887744,25.5114000638326,0.3336013333333333,2900.321890337179,0,1.874860390671529e-4,0.003306666666666667,0.43324100226163864,0.022154666666666666,0.0015981000033207238,0.003348 +2189,0,0,-0,-0,1.7594572219694382,6.532250006993611,0.007279333333333333,0.15882807100812593,0.10008066666666666,111.38399887084961,0.2369624869333333,10.061306158701578,0,6.396489977836609,0,7.307960073153178,0.027885970660000006,9.94871973991394,0.45005799999999996,86.44698397318523,0.00488,5.048810521761577,42.86888866666666,0,431.352045694987,1763.4163446666662,947.4768931070962,92.86248066051856,404.93299865722656,364.8271959548414,0.24728705609838167,0.4881433499999999,0.012193999718874693,0.008511382053333334,1.1070539464223354e-4,0.00367200724,24.102099418640137,10.81758506,7.229070822397868,7.978352666666666,33.037001609802246,4.233196666666667,0.3013000388940175,0.1250637982,15.157699982325235,0,0.6039120405912399,1.6676345106666668,0,0,0.06715630181133747,0.18367842980000001,0.006115499689864616,0.013982603406666667,403.88598124186194,6.530468529781551,85.38107493491785,78.41223257683117,10.163779656134148,13.83925580911548,-0.25547202359887744,25.517099857330322,0.3282206666666666,2868.786350646975,0,1.759880360623356e-4,0.0032533333333333338,0.42708300054073334,0.021797333333333335,0.0015408399825294812,0.003294 +2190,0,0,-0,-0,1.7547559627357043,6.531909982363383,0.00716,0.1527260666092237,0.09844,111.3980000813802,0.23307785599999997,9.950146277745565,0,6.361689964930217,0,7.294100006421407,0.027428823600000006,9.75825015703837,0.44267999999999996,85.57538414001465,0.0048,5.049070596694946,42.16612,0,431.3510462443034,1734.5078799999997,946.9508819580077,92.69583017574067,404.9260025024414,364.0344916049129,0.24382805451750755,0.48014099999999993,0.011967399623245,0.0083718512,6.002932362510668e-5,0.0036118104,23.79409948984782,10.6402476,7.1339707771937055,7.84756,32.636701583862305,4.1638,0.29660604149103165,0.12301357199999999,15.085100015004477,0,0.5952890167633692,1.64029624,0,0,0.066209202632308,0.18066730800000003,0.006036689737811685,0.013753380400000001,403.9709854125976,6.5217080030433285,85.30741975240373,78.11650813643011,10.124368433563648,13.828499158821819,-0.25547202359887744,25.522600173950195,0.32283999999999996,2837.250810956771,0,1.6519603498939736e-4,0.0032000000000000006,0.4210119992494583,0.02144,0.0014856300064517807,0.00324 +2191,0,0,-0,-0,1.7500547035019705,6.531570037206014,0.007040666666666666,0.14685706545909247,0.09679933333333333,111.41200129191081,0.22919322506666664,9.8402259349823,0,6.327080011367798,0,7.280259966850281,0.026971676540000007,9.571380297342936,0.43530199999999997,84.71258481343587,0.004719999999999999,5.049320538838704,41.463351333333335,0,431.3500442504883,1705.599415333333,946.4298858642577,92.52917969096278,404.91600290934247,363.2417872549844,0.24036505445837975,0.47213864999999994,0.011744899675250053,0.008232320346666667,0,0.0035516135600000003,23.488199551900227,10.46291014,7.038800676663716,7.716767333333333,32.24000104268392,4.094403333333333,0.29198404401540756,0.12096334579999998,15.01289995511373,0,0.5866610258817673,1.6129579693333334,0,0,0.06526060154040654,0.17765618620000004,0.0059574997673432035,0.013524157393333335,404.05398050944007,6.512947476305106,85.23376456988962,77.82078369602905,10.084957210993148,13.817742508528157,-0.25547202359887744,25.527899901072185,0.3174593333333333,2805.7152712665675,0,1.5506503162517524e-4,0.0031466666666666674,0.4150270000100136,0.021082666666666666,0.0014324100047815591,0.003186 +2192,0,0,-0,-0,1.7453534442682366,6.531230052312215,0.006921333333333333,0.14121506238977113,0.09515866666666667,111.42499987284343,0.22530859413333332,9.731525818506876,0,6.292649984359741,0,7.266439914703369,0.026514529480000007,9.388020753860474,0.42792399999999997,83.85858408610027,0.00464,5.049580613772075,40.760582666666664,0,431.3490473429362,1676.6909506666664,945.9138844807942,92.36252920618489,404.9010009765625,362.4490829050559,0.2369020531574885,0.46413629999999995,0.01152859969685475,0.008092789493333334,0,0.0034914167200000004,23.184499740600586,10.285572680000001,6.943560560544332,7.585974666666666,31.847001711527508,4.025006666666667,0.2874320422609647,0.11891311959999999,14.940999984741211,0,0.5780290216207504,1.5856196986666666,0,0,0.06431060160199802,0.17464506440000002,0.005877939751371741,0.013294934386666669,404.1339848836262,6.504186949566884,85.1601093873755,77.525059255628,10.045545988422647,13.806985858234494,-0.25547202359887744,25.53290049235026,0.3120786666666666,2774.1797315763633,0,1.4555503124332367e-4,0.003093333333333334,0.40912800282239914,0.02072533333333333,0.001381090017578875,0.003132 +2193,0,0,-0,-0,1.740652185034503,6.530870079994202,0.006802,0.1357890603442987,0.093518,111.43900044759114,0.22142396319999996,9.624035835266113,0,6.258420030275981,0,7.252659996350606,0.026057382420000004,9.208131074905396,0.420546,83.01318422953288,0.00456,5.049850583076477,40.05781399999999,0,431.34804280598956,1647.7824859999996,945.401896158854,92.19587872140698,404.8829981486003,361.65637855512745,0.23343705385923386,0.4561339499999999,0.01131809976262351,0.00795325864,0,0.00343121988,22.882899443308514,10.108235220000001,6.848260402679443,7.455182,31.457501729329426,3.95561,0.28294503937164944,0.11686289339999999,14.869499921798706,0,0.5693960140148798,1.5582814280000001,0,0,0.06335940212011337,0.17163394260000003,0.00579805967087547,0.013065711380000001,404.21097819010413,6.495426422828661,85.08645420486137,77.22933481522692,10.006134765852147,13.796229207940833,-0.25547202359887744,25.5377999941508,0.30669799999999997,2742.644191886159,0,1.3662902832341692e-4,0.0030400000000000006,0.4033130034804344,0.020368,0.0013316099939402193,0.003078 +2194,0,0,-0,-0,1.735950925800769,6.530519962310791,0.006682666666666667,0.13057205950220427,0.09187733333333334,111.45099957784016,0.21753933226666664,9.517725785573324,0,6.224370002746582,0,7.238900025685628,0.025600235360000004,9.031641642252604,0.413168,82.17628415425618,0.00448,5.0501106182734175,39.35504533333333,0,431.3480453491211,1618.874021333333,944.8928883870442,92.0292282366291,404.8610026041667,360.86367420519895,0.22997104997436205,0.4481315999999999,0.011110699735581875,0.007813727786666667,0,0.00337102304,22.583299318949383,9.93089776,6.752900401751201,7.3243893333333325,31.071401596069336,3.8862133333333335,0.2785220369696617,0.1148126672,14.79830002784729,0,0.5607590277989706,1.5309431573333334,0,0,0.06240900233387947,0.16862282080000002,0.005717849708162248,0.012836488373333335,404.2859802246093,6.486665896090439,85.01279902234725,76.93361037482586,9.966723543281647,13.785472557647171,-0.25547202359887744,25.542400360107422,0.3013173333333333,2711.1086521959555,0,1.2825002704630606e-4,0.002986666666666667,0.39758000522851944,0.020010666666666666,0.0012839100187799584,0.0030239999999999998 +2195,0,0,-0,-0,1.7312496665670352,6.530150016148885,0.006563333333333333,0.12555505645771822,0.09023666666666667,111.4640007019043,0.2136547013333333,9.412595669428507,0,6.190509994824727,0,7.225159923235576,0.025143088300000005,8.858461936314901,0.40579,81.34788449605306,0.004399999999999999,5.050370573997498,38.652276666666666,0,431.3470509847005,1589.9655566666663,944.3878733317056,91.8625777518512,404.8360010782878,360.07096985527045,0.2265040489534537,0.4401292499999999,0.010908599710091949,0.007674196933333334,0,0.0033108262000000003,22.28549925486247,9.7535603,6.657480239868164,7.193596666666666,30.688801447550457,3.816816666666667,0.27416203667720157,0.11276244099999999,14.727500041325888,0,0.5521190265814463,1.5036048866666667,0,0,0.061459402553737164,0.16561169900000003,0.005638759816065431,0.012607265366666669,404.35898590087885,6.477905369352216,84.93914383983314,76.6378859344248,9.927312320711147,13.77471590735351,-0.25547202359887744,25.546799818674724,0.2959366666666666,2679.573112505752,0,1.2038602653774433e-4,0.002933333333333334,0.3919289981325467,0.01965333333333333,0.0012379100177592288,0.00297 +2196,0,0,-0,-0,1.7265484073333013,6.529789924621582,0.006444,0.12073105449477832,0.08859600000000001,111.47599919637044,0.20977007039999998,9.30862577756246,0,6.156829992930095,0,7.211449940999349,0.024685941240000005,8.688562075297037,0.398412,80.52788543701172,0.00432,5.05064058303833,37.949507999999994,0,431.3470408121745,1561.0570919999996,943.8858947753905,91.69592726707332,404.8090006510417,359.27826550534195,0.22303604955474535,0.4321268999999999,0.010711499800284704,0.00753466608,0,0.0032506293600000004,21.989599386850994,9.576222840000002,6.562010208765666,7.062804,30.309501489003498,3.7474200000000004,0.2698650434613228,0.11071221479999999,14.657000144322714,0,0.5434750219186147,1.476266616,0,0,0.06050830272336801,0.16260057720000004,0.005560699772710602,0.012378042360000003,404.42997996012366,6.469144842613995,84.86548865731902,76.34216149402374,9.887901098140647,13.763959257059847,-0.25547202359887744,25.551000118255615,0.290556,2648.0375728155477,0,1.1300302382248144e-4,0.0028800000000000006,0.38635900368293125,0.019295999999999997,0.0011935600098998596,0.002916 +2197,0,0,-0,-0,1.7218471480995674,6.529420057932536,0.006324666666666667,0.11609305255115032,0.08695533333333334,111.48899904886882,0.20588543946666665,9.205815633138021,0,6.123340010643005,0,7.197769999504089,0.024228794180000006,8.5218825340271,0.391034,79.71608416239421,0.00424,5.050910631815593,37.24673933333332,0,431.34704844156903,1532.148627333333,943.3858846028645,91.52927678229543,404.7789993286133,358.48556115541345,0.2195670468111833,0.42412454999999993,0.010516699636355042,0.007395135226666667,0,0.0031904325200000005,21.695499420166016,9.398885380000001,6.466480135917664,6.932011333333333,29.933501561482746,3.678023333333334,0.26562603811422986,0.1086619886,14.586899995803833,0,0.5348280270894369,1.4489283453333335,0,0,0.05955610269059738,0.15958945540000002,0.005482189784136911,0.012148819353333336,404.49798329671216,6.460384315875772,84.7918334748049,76.04643705362268,9.848489875570147,13.753202606766186,-0.25547202359887744,25.55500014623006,0.28517533333333334,2616.5020331253436,0,1.060730222282776e-4,0.002826666666666667,0.38086699694395065,0.018938666666666666,0.0011508000025060028,0.002862 +2198,0,0,-0,-0,1.7171458888658337,6.5290400584538775,0.0062053333333333335,0.1116330511868,0.08531466666666668,111.5,0.2020008085333333,9.104135672251383,0,6.0900299946467085,0,7.184119979540507,0.023771647120000003,8.358352979024252,0.383656,78.91258494059245,0.00416,5.051170627276103,36.54397066666666,0,431.3470408121745,1503.2401626666663,942.8878885904946,91.36262629751752,404.7469991048177,357.692856805485,0.2160950464506944,0.4161221999999999,0.010324099799618125,0.0072556043733333336,0,0.00313023568,21.40299924214681,9.22154792,6.370910127957662,6.801218666666666,29.560601393381756,3.608626666666667,0.2614460339148839,0.10661176239999999,14.517100016276041,0,0.5261790255705515,1.4215900746666668,0,0,0.05860470266391834,0.15657833360000004,0.005403279753712316,0.011919596346666669,404.56298828124994,6.45162378913755,84.71817829229077,75.75071261322161,9.809078652999647,13.742445956472524,-0.25547202359887744,25.55869992574056,0.27979466666666664,2584.96649343514,0,4.226278967204659e-5,0.002773333333333334,0.37545400112867355,0.01858133333333333,0.0011095800048982103,0.002808 +2199,0,0,-0,-0,1.7124446296320999,6.528650005658467,0.006086,0.10734404747684796,0.08367400000000001,111.51199913024902,0.19811617759999997,9.00358541806539,0,6.056899984677632,0,7.17048994700114,0.023314500060000003,8.197893222173056,0.376278,78.11708577473958,0.00408,5.0514406363169355,35.841201999999996,0,431.3470458984375,1474.3316979999995,942.3928782145181,91.19597581273963,404.7120005289714,356.9001524555565,0.21262204771240553,0.4081198499999999,0.010135899918774763,0.00711607352,0,0.0030700388400000003,21.112199465433758,9.044210460000002,6.275279998779297,6.670425999999999,29.190901279449463,3.5392300000000003,0.2573220406969388,0.1045615362,14.447700023651123,0,0.5175280173619589,1.394251804,0,0,0.057654001750051975,0.15356721180000002,0.005323979809569816,0.011690373340000003,404.62698364257807,6.442863262399327,84.64452310977666,75.45498817282055,9.769667430429147,13.731689306178861,-0.25547202359887744,25.562199592590332,0.274414,2553.4309537449362,0,0,0.00272,0.3701179971297582,0.018223999999999997,0.0010698300029616803,0.002754 +2200,0,0,-0,-0,1.707743370398366,6.52827000617981,0.005966666666666667,0.10322004618744056,0.08203333333333335,111.5230000813802,0.19423154666666664,8.904135386149088,0,6.023950020472209,0,7.156889994939168,0.022857353000000004,8.040483514467875,0.3689,77.32968711853027,0.004,5.0517105261484785,35.138433333333325,0,431.3470458984375,1445.423233333333,941.8988901774087,91.02932532796174,404.6759999593099,356.107448105628,0.20914804562926292,0.4001174999999999,0.009951769762362042,0.006976542666666667,0,0.0030098420000000004,20.822999477386475,8.866873000000002,6.179609934488933,6.539633333333333,28.824201265970867,3.4698333333333338,0.253253032763799,0.10251131,14.378599961598715,0,0.5088730255762736,1.3669135333333333,0,0,0.0567019023001194,0.15055609000000003,0.005244319831642012,0.011461150333333336,404.6879806518554,6.434102735661105,84.57086792726254,75.15926373241949,9.730256207858647,13.7209326558852,-0.25547202359887744,25.565499941507976,0.26903333333333335,2521.895414054732,0,0,0.002666666666666667,0.3648579989870389,0.017866666666666663,0.0010315099886308114,0.0027 +2201,0,0,-0,-0,1.7030421111646321,6.527869979540507,0.005847333333333334,0.09925424369672935,0.08039266666666668,111.53400039672852,0.19034691573333332,8.805795272191366,0,5.991189996401469,0,7.143309990564982,0.022400205940000004,7.886053919792175,0.361522,76.55028533935547,0.00392,5.05198061466217,34.43566466666666,0,431.3470408121745,1416.5147686666662,941.4068806966145,90.86267484318385,404.63700103759766,355.3147437556995,0.2056740460296472,0.3921151499999999,0.009769229839245478,0.0068370118133333335,0,0.0029496451600000005,20.535399436950684,8.689535540000001,6.083889921506246,6.408840666666666,28.460401217142742,3.400436666666667,0.24923603236675262,0.10046108379999999,14.309800148010254,0,0.5002150212725004,1.3395752626666666,0,0,0.055748602375388145,0.14754496820000004,0.0051643197269489365,0.01123192732666667,404.7459818522135,6.425342208922882,84.49721274474842,74.86353929201843,9.690844985288146,13.710176005591538,-0.25547202359887744,25.568600018819172,0.2636526666666667,2490.359874364528,0,0,0.002613333333333334,0.35967299590508145,0.017509333333333328,9.945559916862596e-4,0.0026460000000000003 +2202,0,0,-0,-0,1.6983408519308982,6.527470072110494,0.0057280000000000005,0.09544104399780433,0.07875200000000002,111.54500007629395,0.1864622848,8.708545446395874,0,5.958600004514058,0,7.129760066668193,0.021943058880000005,7.734554092089335,0.354144,75.7786865234375,0.00384,5.052250583966573,33.732896,0,431.3470509847005,1387.6063039999997,940.9148864746093,90.69602435840595,404.5970001220703,354.52203940577107,0.20219904432694116,0.3841127999999999,0.009590489712233344,0.00669748096,0,0.00288944832,20.249199390411377,8.512198080000001,5.988119840621948,6.278047999999999,28.09960142771403,3.3310400000000002,0.24527003367741904,0.0984108576,14.241400082906088,0,0.49155402183532715,1.3122369919999999,0,0,0.05479610183586677,0.14453384640000003,0.005083999751756589,0.011002704320000002,404.80297851562494,6.41658168218466,84.42355756223431,74.56781485161737,9.651433762717646,13.699419355297875,-0.25547202359887744,25.571500142415363,0.258272,2458.8243346743243,0,0,0.00256,0.3545609985788663,0.017151999999999997,9.58928998443298e-4,0.002592 +2203,0,0,-0,-0,1.6936395926971646,6.527070005734761,0.005608666666666667,0.09177454250554244,0.07711133333333334,111.5549996693929,0.18257765386666663,8.612375179926554,0,5.92619001865387,0,7.116230050722758,0.021485911820000002,7.585904439290364,0.34676599999999996,75.01488558451335,0.00376,5.052520593007405,33.030127333333326,0,431.3470408121745,1358.697839333333,940.4258829752603,90.52937387362806,404.5550003051758,353.72933505584257,0.19872304424643517,0.3761104499999999,0.009415319810310999,0.006557950106666667,0,0.0028292514800000003,19.964399496714275,8.334860620000002,5.892309745152791,6.147255333333333,27.741601308186848,3.2616433333333337,0.24135203287005424,0.0963606314,14.17329994837443,0,0.48289202402035397,1.2848987213333334,0,0,0.05384440099199613,0.14152272460000004,0.005004789757852753,0.010773481313333336,404.85697937011713,6.407821155446437,84.34990237972019,74.27209041121631,9.612022540147146,13.688662705004214,-0.25547202359887744,25.574100017547607,0.25289133333333336,2427.28879498412,0,0,0.002506666666666667,0.349522997935613,0.016794666666666663,9.245799980514372e-4,0.0025380000000000003 +2204,0,0,-0,-0,1.6889383334634307,6.526660005251567,0.005489333333333334,0.08824883898099263,0.07547066666666667,111.56599934895833,0.1786930229333333,8.517265240351358,0,5.89394998550415,0,7.10273003578186,0.021028764760000002,7.440074721972148,0.33938799999999997,74.25878588358562,0.00368,5.052790562311809,32.32735866666666,0,431.34804280598956,1329.7893746666664,939.9368845621743,90.36272338885017,404.5119984944661,352.9366307059141,0.195246039579312,0.3681080999999999,0.009241149760782719,0.006418419253333333,0,0.00276905464,19.680999596913654,8.157523160000002,5.7964597543080645,6.016462666666666,27.386401017506916,3.1922466666666667,0.23748003070553145,0.0943104052,14.105600039164225,0,0.47422702113787335,1.2575604506666667,0,0,0.052891301922500134,0.13851160280000002,0.004926599794998765,0.010544258306666669,404.90898386637366,6.399060628708215,84.27624719720608,73.97636597081525,9.572611317576646,13.677906054710553,-0.25547202359887744,25.576499938964844,0.24751066666666668,2395.7532552939165,0,0,0.0024533333333333334,0.34455600132544834,0.01643733333333333,8.914609934436157e-4,0.002484 +2205,0,0,-0,-0,1.6842370742296968,6.526249925295512,0.005370000000000001,0.08485863916575909,0.07383,111.57600021362305,0.17480839199999998,8.423205057779947,0,5.861900011698405,0,7.08925998210907,0.020571617700000003,7.297025084495544,0.33200999999999997,73.51038678487141,0.0036,5.05306061108907,31.624589999999998,0,431.3480402628581,1300.8809099999996,939.4478861490884,90.19607290407228,404.4670003255208,352.1439263559856,0.19176604226231575,0.3601057499999999,0.009070279852797588,0.0062788884,0,0.0027088578,19.39889939626058,7.980185700000002,5.7005696296691895,5.885669999999999,27.034001350402832,3.12285,0.23365503052870432,0.092260179,14.03820013999939,0,0.4655580172936122,1.23022218,0,0,0.0519369017953674,0.13550048100000003,0.0048479697822282715,0.010315035300000002,404.95797983805335,6.390300101969993,84.20259201469196,73.68064153041419,9.533200095006148,13.66714940441689,-0.25547202359887744,25.578700065612793,0.24213,2364.2177156037123,0,0,0.0024000000000000002,0.3396590054035187,0.016079999999999997,8.595289982622489e-4,0.0024300000000000003 +2206,0,0,-0,-0,1.679535814995963,6.525830030441284,0.005250666666666667,0.08159873634576797,0.07218933333333334,111.58499972025554,0.17092376106666665,8.330185095469156,0,5.830010096232097,0,7.075809955596924,0.020114470640000003,7.156685312589009,0.324632,72.76958656311035,0.0035199999999999997,5.053330620129903,30.921821333333334,0,431.3480453491211,1271.9724453333329,938.9608917236327,90.02942241929438,404.4209950764974,351.3512220060571,0.18828603997826576,0.3521033999999999,0.008902509929612279,0.006139357546666667,0,0.0026486609600000002,19.117999871571858,7.802848240000001,5.604639569918315,5.754877333333333,26.68420108159383,3.0534533333333336,0.22987502937515578,0.09020995279999999,13.971100012461344,0,0.45688701421022415,1.2028839093333332,0,0,0.05098340132584175,0.13248935920000005,0.004768929871109624,0.010085812293333336,405.00598144531244,6.381539575231771,84.12893683217783,73.38491709001312,9.493788872435648,13.656392754123228,-0.25547202359887744,25.580700238545734,0.23674933333333334,2332.682175913508,0,0,0.002346666666666667,0.33483300109704334,0.015722666666666663,8.287409970459217e-4,0.0023760000000000005 +2207,0,0,-0,-0,1.674834555762229,6.525410056114197,0.005131333333333334,0.07846413490672906,0.07054866666666668,111.59499931335449,0.16703913013333332,8.238195101420084,0,5.798310041427612,0,7.062389969825745,0.019657323580000004,7.019025564193726,0.317254,72.0361868540446,0.00344,5.053600509961446,30.219052666666666,0,431.3480402628581,1243.0639806666663,938.4738769531249,89.86277193451649,404.37400309244794,350.5585176561287,0.18480403969685236,0.3441010499999999,0.008735299808904529,0.005999826693333333,0,0.00258846412,18.838399410247803,7.625510780000002,5.508669535319011,5.624084666666666,26.337001005808514,2.9840566666666666,0.22613902886708578,0.0881597266,13.90440003077189,0,0.44821201761563617,1.1755456386666667,0,0,0.050030601831773915,0.12947823740000003,0.004689499852247536,0.009856589286666669,405.05097961425776,6.372779048493548,84.05528164966371,73.08919264961206,9.454377649865148,13.645636103829567,-0.25547202359887744,25.582499821980793,0.23136866666666667,2301.1466362233045,0,0,0.0022933333333333334,0.3300749982396762,0.015365333333333332,7.990570011315867e-4,0.0023220000000000003 +2208,0,0,-0,-0,1.6701332965284954,6.524980028470357,0.005012000000000001,0.0754499329874913,0.068908,111.60400009155273,0.16315449919999997,8.147225062052408,0,5.766770005226135,0,7.049000024795532,0.01920017652,6.883975823720296,0.30987599999999993,71.31018575032552,0.0033599999999999997,5.053870598475139,29.516284000000002,0,431.3490498860677,1214.1555159999996,937.9868825276692,89.6961214497386,404.3260014851888,349.7658133062002,0.18132303903500238,0.33609869999999986,0.008568609831854701,0.00586029584,0,0.00252826728,18.559999624888103,7.448173320000001,5.4126594463984175,5.493291999999999,25.992400964101154,2.91466,0.22244502852360407,0.0861095004,13.837999900182089,0,0.4395350192983945,1.148207368,0,0,0.04907640162855387,0.12646711560000004,0.00460969974907736,0.009627366280000002,405.0939814249674,6.364018521755326,83.9816264671496,72.793468209211,9.414966427294647,13.634879453535905,-0.25547202359887744,25.58400011062622,0.22598800000000002,2269.6110965331004,0,0,0.0022400000000000002,0.32538499931494397,0.015007999999999997,7.704360032221302e-4,0.0022680000000000005 +2209,0,0,-0,-0,1.6654320372947615,6.524540026982625,0.0048926666666666676,0.07255153295894463,0.06726733333333333,111.61299959818523,0.15926986826666664,8.057265122731527,0,5.73541001478831,0,7.035629987716675,0.01874302946,6.7514861424763994,0.30249799999999993,70.59158643086751,0.00328,5.054140528043111,28.813515333333335,0,431.34904225667316,1185.2470513333328,937.5008850097655,89.5294709649607,404.2760009765625,348.97310895627174,0.17784003789226213,0.32809634999999987,0.008404769857103625,0.0057207649866666665,0,0.0024680704399999997,18.282599767049152,7.270835860000002,5.3166093826293945,5.362499333333332,25.650201002756756,2.845263333333333,0.21879302834471068,0.0840592742,13.771900018056234,0,0.43085401753584546,1.1208690973333333,0,0,0.04812090160946051,0.12345599380000004,0.004529559868387878,0.009398143273333335,405.1349792480468,6.355257995017103,83.90797128463548,72.49774376880994,9.375555204724147,13.624122803242242,-0.25547202359887744,25.585299968719482,0.22060733333333335,2238.0755568428967,0,0,0.0021866666666666666,0.3207610050837199,0.014650666666666664,7.428410074984034e-4,0.0022140000000000003 +2210,0,0,-0,-0,1.6607307780610276,6.524109999338786,0.004773333333333334,0.06976463086903095,0.06562666666666667,111.62200037638347,0.15538523733333331,7.968294858932495,0,5.704220016797383,0,7.022280017534892,0.0182858824,6.621516426404317,0.29511999999999994,69.8801867167155,0.0031999999999999997,5.054420590400696,28.11074666666667,0,431.35004170735675,1156.3385866666663,937.0138804117837,89.3628204801828,404.2260004679362,348.18040460634325,0.17435703674952188,0.3200939999999999,0.008243599828953544,0.005581234133333333,0,0.0024078736,18.006399313608807,7.093498400000001,5.2205192645390825,5.231706666666666,25.310500939687092,2.7758666666666665,0.21518103033304214,0.082009048,13.70610006650289,0,0.42217301577329636,1.0935308266666666,0,0,0.04716430169840654,0.12044487200000004,0.00445049989502877,0.009168920266666668,405.1729838053385,6.346497468278881,83.83431610212136,72.20201932840888,9.336143982153647,13.613366152948581,-0.25547202359887744,25.586400032043457,0.21522666666666668,2206.5400171526926,0,0,0.0021333333333333334,0.3162040039896965,0.014293333333333332,7.162339946565529e-4,0.0021600000000000005 +2211,0,0,-0,-0,1.6560295188272938,6.523659984270732,0.004654000000000001,0.06708473029235999,0.063986,111.63000043233235,0.1515006064,7.880314787228902,0,5.673189918200175,0,7.008960008621216,0.017828735340000002,6.494006594022115,0.28774199999999994,69.17598660786946,0.0031199999999999995,5.0546906391779585,27.407978000000004,0,431.3500442504883,1127.4301219999995,936.5278879801431,89.19616999540492,404.1749954223633,347.38770025641475,0.17087303598721823,0.3120916499999999,0.008082589833065867,0.00544170328,0,0.00234767676,17.731199582417805,6.916160940000001,5.124399344126384,5.1009139999999995,24.973200798034668,2.70647,0.21160702655712763,0.0799588218,13.640700181325277,0,0.41348901639382046,1.0661925559999998,0,0,0.0462087020277977,0.11743375020000003,0.004372459875109295,0.008939697260000002,405.209981282552,6.337736941540658,83.76066091960725,71.90629488800782,9.296732759583147,13.60260950265492,-0.25547202359887744,25.587300141652424,0.209846,2175.0044774624885,0,0,0.0020800000000000003,0.31171099344889325,0.013935999999999999,6.905810005264357e-4,0.0021060000000000002 +2212,0,0,-0,-0,1.6513282595935599,6.52321994304657,0.004534666666666668,0.06450782902538776,0.06234533333333333,111.63800112406413,0.14761597546666666,7.7933047612508135,0,5.642339984575908,0,6.995670000712077,0.017371588280000003,6.368936936060588,0.28036399999999995,68.47888692220052,0.0030399999999999997,5.054960648218791,26.705209333333336,0,431.3500442504883,1098.521657333333,936.0418802897134,89.02951951062701,404.1230010986328,346.5949959064863,0.16738503302137056,0.3040892999999999,0.007924079817409316,0.005302172426666666,0,0.00228747992,17.457099437713623,6.7388234800000015,5.0282392501831055,4.970121333333333,24.638200918833416,2.637073333333333,0.20807102570931116,0.0779085956,13.575599988301596,0,0.40480101853609085,1.0388542853333331,0,0,0.045253801780442394,0.11442262840000003,0.004293939836012821,0.008710474253333335,405.2439804077148,6.328976414802436,83.68700573709313,71.61057044760676,9.257321537012647,13.591852852361257,-0.25547202359887744,25.588000138600666,0.20446533333333333,2143.468937772285,0,0,0.0020266666666666666,0.3072820032636325,0.013578666666666666,6.658470034987355e-4,0.0020520000000000004 +2213,0,0,-0,-0,1.646627000359826,6.5227599541346235,0.004415333333333334,0.06202992796897888,0.060704666666666664,111.64599990844727,0.1437313445333333,7.707254767417908,0,5.61165992418925,0,6.982399940490723,0.016914441220000003,6.246257185935974,0.27298599999999995,67.78878720601399,0.0029599999999999995,5.055230498313904,26.002440666666672,0,431.3510437011719,1069.6131926666662,935.5548909505208,88.86286902584912,404.07000223795575,345.8022915565578,0.16389803464214006,0.2960869499999999,0.007767919800244272,0.005162641573333334,0,0.0022272830799999997,17.18389956156413,6.561486020000001,4.932039181391398,4.839328666666666,24.305500984191895,2.5676766666666664,0.2045720269282659,0.0758583694,13.510799964269003,0,0.39611101895570755,1.0115160146666666,0,0,0.04429770167917013,0.11141150660000004,0.004214999886850516,0.008481251246666668,405.276980082194,6.320215888064214,83.613350554579,71.31484600720569,9.217910314442147,13.581096202067595,-0.25547202359887744,25.58839988708496,0.1990846666666667,2111.933398082081,0,0,0.0019733333333333334,0.3029160052537918,0.013221333333333331,6.420000039118653e-4,0.001998 +2214,0,0,-0,-0,1.6419257411260921,6.522299885749817,0.004296,0.059647227016588054,0.05906399999999999,111.65399932861328,0.13984671359999998,7.622154672940572,0,5.581140001614888,0,6.9691600402196245,0.016457294160000004,6.125897447268168,0.26560799999999996,67.10578791300456,0.0028799999999999997,5.055510600407918,25.299672000000005,0,431.3510487874349,1040.7047279999997,935.068888346354,88.69621854107123,404.01600392659503,345.0095872066293,0.16040903454025587,0.2880845999999999,0.007611619774252176,0.0050231107200000005,0,0.00216708624,16.91159963607788,6.384148560000002,4.835809230804443,4.708536,23.975001017252605,2.4982799999999994,0.2011060230433941,0.07380814320000001,13.446299950281778,0,0.3874170159300168,0.9841777439999999,0,0,0.04334030207246542,0.10840038480000004,0.004135649806509416,0.00825202824,405.3069814046223,6.311455361325992,83.53969537206488,71.01912156680463,9.178499091871647,13.570339551773934,-0.25547202359887744,25.58859984079997,0.19370400000000002,2080.397858391877,0,0,0.00192,0.2986120010415713,0.012863999999999999,6.190060036412129e-4,0.0019440000000000002 +2215,0,0,-0,-0,1.6372244818923583,6.52184001604716,0.004176666666666667,0.05735612567514181,0.057423333333333326,111.66099993387859,0.13596208266666665,7.538004597028096,0,5.550789912541707,0,6.9559400876363116,0.016000147100000004,6.007837613423665,0.25822999999999996,66.42958704630534,0.0027999999999999995,5.0557806094487505,24.596903333333337,0,431.35103607177734,1011.796263333333,934.5818939208983,88.52956805629333,403.96199798583984,344.21688285670086,0.15692003319660822,0.2800822499999999,0.007455189828760922,0.004883579866666667,0,0.0021068894,16.640199820200603,6.206811100000001,4.73953910668691,4.577743333333333,23.646701018015545,2.428883333333333,0.19767202312747637,0.071757917,13.382100105285645,0,0.37872301290432614,0.9568394733333332,0,0,0.04238380088160435,0.10538926300000004,0.0040559199017783,0.008022805233333334,405.334981282552,6.302694834587769,83.46604018955077,70.72339712640357,9.139087869301147,13.559582901480272,-0.25547202359887744,25.588599999745686,0.18832333333333334,2048.862318701673,0,0,0.0018666666666666666,0.29437000056107837,0.012506666666666666,5.968370048018793e-4,0.0018900000000000002 +2216,0,0,-0,-0,1.6325232226586246,6.521369934082031,0.004057333333333334,0.05515302469333013,0.05578266666666666,111.66800053914388,0.13207745173333332,7.454774578412374,0,5.520610054334004,0,6.942749937375386,0.015543000040000005,5.8920178810755415,0.25085199999999996,65.76018651326497,0.0027199999999999993,5.056050618489583,23.89413466666667,0,431.352045694987,982.8877986666663,934.0938720703124,88.36291757151544,403.90700276692706,343.42417850677236,0.15343103309472403,0.27207989999999993,0.007300969834129016,0.004744049013333334,0,0.00204669256,16.369699478149414,6.029473640000001,4.643229087193807,4.446950666666667,23.320600986480713,2.3594866666666663,0.19427102183302244,0.0697076908,13.318300088246664,0,0.37002601474523544,0.9295012026666665,0,0,0.04142810093859831,0.10237814120000004,0.0039758398197591305,0.0077935822266666675,405.3609822591145,6.293934307849547,83.39238500703665,70.42767268600251,9.099676646730648,13.54882625118661,-0.25547202359887744,25.58839988708496,0.18294266666666667,2017.3267790114692,0,0,0.0018133333333333332,0.2901879946390788,0.012149333333333333,5.754619972625127e-4,0.0018360000000000002 +2217,0,0,-0,-0,1.6278219634248907,6.52088995774587,0.0039380000000000005,0.053034624084830284,0.05414199999999999,111.67500114440918,0.1281928208,7.372474471728007,0,5.49059001604716,0,6.929579973220825,0.015085852980000005,5.778418183326721,0.24347399999999997,65.09768740336101,0.0026399999999999996,5.056320508321126,23.191366000000002,0,431.35203806559247,953.9793339999997,933.6058909098306,88.19626708673755,403.85099538167316,342.63147415684386,0.14993802830576897,0.26407754999999994,0.007148839843769868,0.004604518160000001,0,0.00198649572,16.09999942779541,5.852136180000001,4.546888987223308,4.316158000000001,22.996501127878826,2.2900899999999993,0.19090202450752258,0.06765746460000001,13.254699945449829,0,0.3613260140021642,0.9021629319999999,0,0,0.040471101800600685,0.09936701940000003,0.003895409832087656,0.0075643592200000005,405.3849843343098,6.285173781111324,83.31872982452253,70.13194824560145,9.060265424160148,13.538069600892948,-0.25547202359887744,25.58799997965495,0.177562,1985.7912393212653,0,0,0.0017599999999999998,0.2860649997989337,0.011792,5.548529976901287e-4,0.0017820000000000002 +2218,0,0,-0,-0,1.6231207041911568,6.520409941673279,0.003818666666666667,0.05099752297004064,0.052501333333333323,111.68199984232585,0.12430818986666665,7.291084408760071,0,5.460739970207214,0,6.916439970334371,0.014628705920000006,5.666978319485982,0.23609599999999997,64.44178835550944,0.0025599999999999993,5.056600530942281,22.488597333333338,0,431.35304768880206,925.0708693333329,933.1178792317708,88.02961660195966,403.7949981689453,341.83876980691537,0.1464450297256311,0.25607519999999995,0.006996319823277493,0.004464987306666668,0,0.00192629888,15.831099589665731,5.674798720000001,4.45051896572113,4.185365333333333,22.674500942230225,2.2206933333333327,0.1875650224586328,0.0656072384,13.191499948501587,0,0.35262201229731244,0.8748246613333331,0,0,0.03951280129452547,0.09635589760000005,0.0038160799109997847,0.007335136213333334,405.4069798787434,6.276413254373103,83.2450746420084,69.83622380520038,9.020854201589648,13.527312950599287,-0.25547202359887744,25.587300300598145,0.17218133333333335,1954.2556996310614,0,0,0.0017066666666666667,0.28200100362300873,0.011434666666666666,5.349820081998283e-4,0.001728 +2219,0,0,-0,-0,1.618419444957423,6.519929965337117,0.003699333333333333,0.049038722179830074,0.05086066666666665,111.6879997253418,0.12042355893333331,7.2105943361918134,0,5.431040008862813,0,6.903319954872131,0.014171558860000006,5.5576686064402265,0.22871799999999998,63.79248841603597,0.0024799999999999996,5.056870500246684,21.78582866666667,0,431.35304005940753,896.1624046666662,932.6288909912108,87.86296611718176,403.73900349934894,341.0460654569869,0.14295103028416634,0.24807284999999996,0.006845779872188966,0.0043254564533333345,0,0.00186610204,15.562999725341797,5.4974612600000015,4.354118903477986,4.054572666666667,22.35450092951457,2.1512966666666657,0.18425802141427994,0.06355701220000001,13.128599961598715,0,0.3439150129755338,0.8474863906666665,0,0,0.038555401687820755,0.09334477580000004,0.0037377598540236554,0.007105913206666667,405.42697906494135,6.26765272763488,83.17141945949429,69.54049936479932,8.981442979019148,13.516556300305623,-0.25547202359887744,25.586499849955242,0.16680066666666668,1922.7201599408575,0,0,0.0016533333333333333,0.27799500276645023,0.011077333333333333,5.158230002659062e-4,0.001674 +2220,0,0,-0,-0,1.613718185723689,6.519439975420634,0.00358,0.04715522130330404,0.049219999999999986,111.69400151570638,0.11653892799999999,7.130994359652202,0,5.401510000228882,0,6.890229980150859,0.013714411800000006,5.450448791186015,0.22133999999999998,63.14978853861491,0.0023999999999999994,5.057140509287517,21.083060000000003,0,431.3540522257487,867.2539399999996,932.1388854980468,87.69631563240387,403.6809997558594,340.2533611070584,0.13945702960093817,0.24007049999999996,0.006697099811087052,0.004185925600000001,0,0.0018059052,15.29569959640503,5.320123800000001,4.257678906122844,3.9237800000000007,22.03640079498291,2.081899999999999,0.18098002299666405,0.06150678600000001,13.066000064214071,0,0.33520801613728207,0.8201481199999998,0,0,0.03759870088348786,0.09033365400000004,0.003658979859513541,0.0068766902000000005,405.44498189290357,6.258892200896658,83.09776427698017,69.24477492439826,8.942031756448648,13.505799650011962,-0.25547202359887744,25.585400104522705,0.16142,1891.1846202506536,0,0,0.0015999999999999999,0.2740460013349851,0.01072,4.973499938690414e-4,0.00162 +2221,0,0,-0,-0,1.6090169264899552,6.518939971923828,0.0034606666666666666,0.04534412051240603,0.04757933333333332,111.70000139872234,0.11265429706666666,7.052274306615193,0,5.372139930725098,0,6.87716003259023,0.013257264740000007,5.3452690442403155,0.21396199999999999,62.5135882695516,0.002319999999999999,5.057420571645101,20.380291333333336,0,431.3540395100911,838.345475333333,931.6488800048827,87.52966514762598,403.6239980061849,339.4606567571299,0.13596202805638313,0.23206814999999995,0.006547829834744334,0.004046394746666668,0,0.00174570836,15.02899972597758,5.142786340000001,4.161208828290303,3.792987333333334,21.720201174418133,2.0125033333333326,0.17773101975520453,0.0594565598,13.003699938456217,0,0.32649801423152286,0.7928098493333331,0,0,0.03664070088416338,0.08732253220000004,0.0035797798773273826,0.006647467193333334,405.46097819010413,6.250131674158435,83.02410909446606,68.9490504839972,8.902620533878148,13.4950429997183,-0.25547202359887744,25.584100087483723,0.15603933333333334,1859.6490805604496,0,0,0.0015466666666666667,0.2701529984672864,0.010362666666666666,4.795399994084922e-4,0.001566 +2222,0,0,-0,-0,1.6043156672562213,6.5184400876363116,0.0033413333333333333,0.04360251904775699,0.045938666666666655,111.70499992370605,0.10876966613333332,6.974424282709758,0,5.342939972877502,0,6.86411992708842,0.012800117680000006,5.242099205652873,0.206584,61.883788108825684,0.0022399999999999994,5.057690501213074,19.67752266666667,0,431.35504150390625,809.4370106666663,931.1568857828775,87.36301466284807,403.5649998982747,338.6679524072015,0.1324660231669744,0.22406579999999993,0.006397979916073382,0.003906863893333334,0,0.0016855115199999999,14.762999614079794,4.965448880000001,4.064708809057872,3.662194666666667,21.405900637308758,1.9431066666666659,0.17450902114311853,0.057406333600000005,12.941799879074097,0,0.31778401633103687,0.7654715786666665,0,0,0.03568140106896559,0.08431141040000004,0.0035001798532903194,0.006418244186666667,405.474983215332,6.241371147420213,82.95045391195194,68.65332604359614,8.863209311307648,13.484286349424638,-0.25547202359887744,25.582499980926514,0.15065866666666666,1828.1135408702457,0,0,0.0014933333333333333,0.266315000752608,0.010005333333333333,4.6236699805983034e-4,0.0015119999999999999 +2223,0,0,-0,-0,1.5996144080224877,6.517939964930217,0.003222,0.041927919102211796,0.04429799999999999,111.70999972025554,0.10488503519999999,6.8974341948827105,0,5.313889980316162,0,6.851110100746155,0.012342970620000006,5.1408993403116865,0.199206,61.26028823852539,0.002159999999999999,5.057960549990336,18.974754000000004,0,431.35504150390625,780.5285459999996,930.6648813883462,87.19636417807018,403.50700124104816,337.875248057273,0.12897002572814623,0.21606344999999993,0.0062499498793234425,0.003767333040000001,0,0.00162531468,14.497699737548828,4.788111420000001,3.9681687553723655,3.531402000000001,21.093400478363037,1.8737099999999993,0.17131401474277178,0.0553561074,12.880099852879843,0,0.3090670183300972,0.7381333079999998,0,0,0.03472100136180719,0.08130028860000005,0.003420199869045367,0.006189021180000001,405.48697916666663,6.2326106206819905,82.87679872943781,68.35760160319506,8.823798088737147,13.473529699130976,-0.25547202359887744,25.58080005645752,0.14527800000000002,1796.5780011800418,0,0,0.00144,0.26253200074036914,0.009647999999999999,4.4581000111065805e-4,0.0014579999999999997 +2224,0,0,-0,-0,1.5949131487887538,6.5174299875895185,0.0031026666666666668,0.040317618288099766,0.042657333333333325,111.71500015258789,0.10100040426666665,6.821294109026591,0,5.285000006357829,0,6.838120023409526,0.011885823560000005,5.0416496594746905,0.191828,60.6431884765625,0.0020799999999999994,5.058240493138631,18.271985333333337,0,431.35604604085285,751.6200813333329,930.171880086263,87.0297136932923,403.447998046875,337.0825437073445,0.12547002422312895,0.20806109999999992,0.00610362986723582,0.0036278021866666676,0,0.0015651178399999999,14.232999722162882,4.610773960000001,3.871588706970215,3.400609333333334,20.78270085652669,1.8043133333333325,0.16814501956105232,0.0533058812,12.818700075149536,0,0.30034800867239636,0.7107950373333332,0,0,0.033761500691374145,0.07828916680000005,0.003339869901537895,0.005959798173333334,405.4979858398437,6.223850093943768,82.80314354692369,68.061877162794,8.784386866166647,13.462773048837313,-0.25547202359887744,25.578799883524578,0.13989733333333335,1765.042461489838,0,0,0.0013866666666666667,0.25880300005276996,0.009290666666666666,4.298450003261678e-4,0.0014039999999999996 +2225,0,0,-0,-0,1.59021188955502,6.516909996668498,0.0029833333333333335,0.03876911817739407,0.04101666666666666,111.71999994913737,0.09711577333333332,6.746004184087117,0,5.25625999768575,0,6.825150012969971,0.011428676500000005,4.944299777348836,0.18445,60.032288551330566,0.001999999999999999,5.058510581652324,17.56921666666667,0,431.3560434977214,722.7116166666663,929.6768900553384,86.8630632085144,403.38899993896484,336.289839357416,0.12197102295855682,0.2000587499999999,0.005956549857122202,0.0034882713333333343,0,0.0015049209999999998,13.968899726867676,4.433436500000001,3.77498867114385,3.2698166666666673,20.473800500233967,1.734916666666666,0.16499901687105498,0.051255655,12.757599910100302,0,0.2916270097096761,0.6834567666666664,0,0,0.03280290092031161,0.07527804500000004,0.0032605998761331043,0.005730575166666668,405.5059789021809,6.2150895672055455,82.72948836440958,67.76615272239295,8.744975643596149,13.452016398543652,-0.25547202359887744,25.576600074768066,0.13451666666666667,1733.506921799634,0,0,0.0013333333333333335,0.2551269978284836,0.008933333333333331,4.144530006063481e-4,0.0013499999999999996 +2226,0,0,-0,-0,1.585510630321286,6.5163900057474775,0.0028640000000000002,0.03728021619220575,0.039375999999999994,111.72500101725261,0.0932311424,6.671544114748637,0,5.227689981460571,0,6.8122100830078125,0.010971529440000006,4.848810076713562,0.177072,59.42748864491781,0.0019199999999999992,5.058780550956726,16.866448000000002,0,431.3560434977214,693.8031519999996,929.1818796793618,86.6964127237365,403.3290023803711,335.49713500748754,0.1184700212130944,0.19205639999999988,0.005811119878975053,0.003348740480000001,0,0.0014447241599999997,13.705399751663208,4.2560990400000005,3.6783486008644104,3.1390240000000005,20.166500727335613,1.6655199999999994,0.16187501698732376,0.04920542879999999,12.696900049845377,0,0.2829030081629753,0.6561184959999997,0,0,0.03184290137141943,0.07226692320000004,0.003182339908865591,0.005501352160000002,405.511983235677,6.206329040467322,82.65583318189546,67.47042828199189,8.705564421025649,13.44125974824999,-0.25547202359887744,25.57419999440511,0.129136,1701.9713821094301,0,0,0.0012800000000000003,0.25150299693147343,0.008575999999999997,3.9961200188069296e-4,0.0012959999999999996 +2227,0,0,-0,-0,1.5808093710875522,6.515870054562886,0.002744666666666667,0.03584841638803482,0.03773533333333333,111.72899945576985,0.08934651146666665,6.597904006640117,0,5.199270049730937,0,6.799290021260579,0.010514382380000005,4.7551601727803545,0.169694,58.82888889312744,0.0018399999999999992,5.059060573577881,16.163679333333334,0,431.35704549153644,664.894687333333,928.6848805745442,86.52976223895861,403.26899973551434,334.70443065755904,0.11496902133027713,0.18405404999999986,0.005667229842705031,0.0032092096266666675,0,0.0013845273199999996,13.442499796549479,4.078761580000001,3.581678549448649,3.0082313333333337,19.861000696818035,1.5961233333333327,0.15877501542369524,0.047155202599999994,12.636400063832602,0,0.2741760065158208,0.6287802253333331,0,0,0.030881800844023626,0.06925580140000004,0.003103609875931094,0.005272129153333335,405.516980489095,6.1975685137291,82.58217799938134,67.17470384159083,8.666153198455149,13.430503097956327,-0.25547202359887744,25.571599801381428,0.12375533333333334,1670.4358424192262,0,0,0.001226666666666667,0.24793099984526634,0.008218666666666664,3.853029969225948e-4,0.0012419999999999996 +2228,0,0,-0,-0,1.5761081118538185,6.515340010325114,0.0026253333333333337,0.03447171549002329,0.036094666666666664,111.73299916585286,0.08546188053333333,6.525083978970845,0,5.171000003814697,0,6.7864000002543134,0.010057235320000005,4.6633003155390425,0.16231600000000002,58.23628902435303,0.001759999999999999,5.059330542882283,15.460910666666669,0,431.35704040527344,635.9862226666662,928.1868896484374,86.36311175418072,403.20800018310547,333.91172630763054,0.11146701996525128,0.17605169999999987,0.0055224397995819645,0.003069678773333334,0,0.0013243304799999997,13.180099646250406,3.9014241200000006,3.4849785566329956,2.8774386666666674,19.557000478108723,1.526726666666666,0.15569801504413286,0.04510497639999999,12.576200008392334,0,0.2654460122187932,0.6014419546666664,0,0,0.02992150125404199,0.06624467960000005,0.0030244399094954133,0.005042906146666669,405.51897939046216,6.188807986990877,82.50852281686721,66.87897940118975,8.626741975884649,13.419746447662666,-0.25547202359887744,25.56879981358846,0.11837466666666667,1638.9003027290223,0,0,0.0011733333333333337,0.2444089986383915,0.00786133333333333,3.71506003527126e-4,0.0011879999999999994 +2229,0,0,-0,-0,1.5714068526200846,6.514799912770589,0.0025060000000000004,0.03314781499405702,0.034454,111.73600069681804,0.08157724959999998,6.453063885370891,0,5.142889976501465,0,6.773530006408691,0.009600088260000004,4.573200623194377,0.15493800000000002,57.649689356486,0.001679999999999999,5.0596005121866865,14.758142000000003,0,431.3580373128255,607.0777579999996,927.6878763834634,86.19646126940282,403.1470006306966,333.1190219577021,0.10796401960154374,0.16804934999999982,0.00537914988429596,0.002930147920000001,0,0.0012641336399999994,12.91819961865743,3.7240866600000007,3.388238469759623,2.746646,19.254700819651287,1.4573299999999993,0.15264301498730978,0.04305475019999999,12.516299962997437,0,0.25671300540367764,0.5741036839999998,0,0,0.028962100856006145,0.06323355780000005,0.0029448499359811344,0.004813683140000002,405.5199839274088,6.180047460252655,82.4348676343531,66.5832549607887,8.587330753314149,13.408989797369003,-0.25547202359887744,25.56570021311442,0.11299400000000001,1607.3647630388184,0,0,0.0011200000000000003,0.24093800286451975,0.007503999999999996,3.582039983787884e-4,0.0011339999999999994 +2230,0,0,-0,-0,1.5667055933863507,6.514260013898213,0.002386666666666667,0.03187481500208378,0.03281333333333333,111.74000040690105,0.07769261866666666,6.38184388478597,0,5.11493996779124,0,6.760689973831177,0.009142941200000004,4.4848207632700605,0.14756000000000002,57.0689894358317,0.001599999999999999,5.059870521227519,14.055373333333335,0,431.35804748535156,578.1692933333329,927.1868896484374,86.02981078462493,403.0860010782878,332.3263176077736,0.10446101861695449,0.16004699999999983,0.005237269836167495,0.0027906170666666674,0,0.0012039367999999995,12.656799793243408,3.5467492000000007,3.2914684216181436,2.615853333333334,18.953900655110676,1.3879333333333328,0.14960901315013567,0.04100452399999999,12.456700086593628,0,0.24797901138663292,0.5467654133333331,0,0,0.028001200562963884,0.060222436000000046,0.0028648798858436444,0.004584460133333336,405.5189870198567,6.171286933514432,82.36121245183898,66.28753052038763,8.547919530743648,13.398233147075342,-0.25547202359887744,25.562399864196777,0.10761333333333334,1575.8292233486145,0,0,0.0010666666666666672,0.23751600086688995,0.007146666666666662,3.45378000929486e-4,0.0010799999999999994 +2231,0,0,-0,-0,1.5620043341526169,6.513709982236226,0.002267333333333334,0.030650713636229437,0.031172666666666664,111.74300130208333,0.07380798773333333,6.31140383084615,0,5.087129990259807,0,6.747870008150737,0.008685794140000005,4.398140907287598,0.14018200000000003,56.494188944498696,0.001519999999999999,5.060150583585103,13.352604666666668,0,431.35804239908856,549.2608286666663,926.6848805745442,85.86316029984704,403.02500406901044,331.5336132578451,0.10095501815279324,0.15204464999999984,0.0050943699122096104,0.002651086213333334,0,0.0011437399599999996,12.395899772644043,3.3694117400000008,3.194668412208557,2.485060666666667,18.654700597127277,1.3185366666666662,0.1465970128774643,0.03895429779999999,12.39739982287089,0,0.23924200981855392,0.5194271426666663,0,0,0.027039200843622286,0.057211314200000044,0.0027845399260210493,0.00435523712666667,405.5159784952799,6.16252640677621,82.28755726932486,65.99180607998657,8.508508308173148,13.38747649678168,-0.25547202359887744,25.558900038401287,0.10223266666666667,1544.2936836584106,0,0,0.0010133333333333338,0.23414299885431925,0.0067893333333333295,3.3301099999031675e-4,0.0010259999999999994 +2232,0,0,-0,-0,1.557303074918883,6.513159990310669,0.0021480000000000006,0.029473613016307354,0.029531999999999996,111.74599965413411,0.06992335679999999,6.241753896077474,0,5.05948003133138,0,6.735080083211263,0.008228647080000004,4.313111146291097,0.132804,55.92518965403239,0.001439999999999999,5.060420513153076,12.649836000000002,0,431.35904693603516,520.3523639999996,926.1808776855468,85.69650981506913,402.96299743652344,330.74090890791666,0.09744801620642345,0.14404229999999987,0.004950499899374942,0.0025115553600000007,0,0.0010835431199999995,12.13539981842041,3.192074280000001,3.097848335901896,2.3542680000000002,18.356900374094646,1.2491399999999995,0.1436040128270785,0.03690407159999999,12.338399966557821,0,0.23050100853045782,0.49208887199999973,0,0,0.026078000664711,0.05420019240000005,0.0027038599364459515,0.004126014120000003,405.5109837849934,6.153765880037987,82.21390208681075,65.69608163958551,8.469097085602648,13.376719846488017,-0.25547202359887744,25.555199940999348,0.09685200000000001,1512.7581439682067,0,0,9.600000000000005e-4,0.23081699758768082,0.006431999999999996,3.2108800223795697e-4,9.719999999999994e-4 +2233,0,0,-0,-0,1.552601815685149,6.512609998385112,0.0020286666666666673,0.028341812857737143,0.02789133333333333,111.74899991353352,0.06603872586666666,6.172863682111104,0,5.031979997952779,0,6.722309986750285,0.007771500020000004,4.229701201121013,0.125426,55.36188983917236,0.0013599999999999988,5.0607004563013716,11.947067333333335,0,431.3590443929036,491.4438993333329,925.6758778889973,85.52985933029125,402.9010009765625,329.94820455798816,0.09394061503310998,0.13603994999999988,0.004808059854743381,0.0023720245066666673,0,0.0010233462799999996,11.875399669011435,3.0147368200000004,3.0009882847468057,2.223475333333334,18.060600598653156,1.179743333333333,0.14063101386030516,0.034853845399999986,12.2796999613444,0,0.22175800800323486,0.464750601333333,0,0,0.025117600647111733,0.051189070600000046,0.002624259931811442,0.0038967911133333368,405.50498199462885,6.145005353299766,82.14024690429663,65.40035719918446,8.429685863032148,13.365963196194356,-0.25547202359887744,25.551299730936687,0.09147133333333334,1481.2226042780026,0,0,9.066666666666671e-4,0.22753899917006493,0.006074666666666663,3.095909972519924e-4,9.179999999999994e-4 +2234,0,0,-0,-0,1.5479005564514152,6.512039979298909,0.001909333333333334,0.027253412175923586,0.026250666666666662,111.7509994506836,0.06215409493333333,6.104743719100952,0,5.004619995752971,0,6.709560036659241,0.007314352960000004,4.147891441980998,0.118048,54.80428918202718,0.0012799999999999988,5.060970505078633,11.244298666666669,0,431.36004130045575,462.5354346666662,925.1678822835286,85.36320884551336,402.83799235026044,329.15550020805966,0.09043251598874728,0.12803759999999992,0.004666979890316725,0.002232493653333334,0,9.631494399999996e-4,11.615799824396769,2.8373993600000005,2.904088258743286,2.092682666666667,17.765700499216717,1.1103466666666661,0.13767801225185394,0.03280361919999999,12.221299886703491,0,0.21301100899775824,0.43741233066666635,0,0,0.024155800696462393,0.04817794880000005,0.0025456699077039957,0.0036675681066666702,405.49698384602857,6.136244826561543,82.06659172178252,65.10463275878338,8.390274640461648,13.355206545900694,-0.25547202359887744,25.547200043996174,0.08609066666666668,1449.6870645877987,0,0,8.533333333333338e-4,0.2243080014983813,0.0057173333333333295,2.985059982165694e-4,8.639999999999995e-4 +2235,0,0,-0,-0,1.5431992972176816,6.51147997379303,0.0017900000000000008,0.02620691169674198,0.024609999999999993,111.75300153096516,0.05826946399999999,6.037373661994934,0,4.977419972419739,0,6.696839968363444,0.006857205900000003,4.067641496658325,0.11066999999999999,54.25228977203369,0.0011999999999999988,5.061240514119466,10.541530000000002,0,431.3600438435872,433.6269699999996,924.6588897705077,85.19655836073545,402.7749989827474,328.3627958581312,0.08692371348539989,0.12003524999999993,0.004524810006842017,0.0020929628000000006,0,9.029525999999996e-4,11.356599966684977,2.6600619000000005,2.807168205579122,1.9618900000000004,17.472200393676758,1.0409499999999996,0.13474000742038092,0.03075339299999999,12.16319998105367,0,0.20426400502522787,0.4100740599999997,0,0,0.02319270061949889,0.04516682700000005,0.002466619946062565,0.0034383451000000037,405.4859822591145,6.127484299823321,81.99293653926838,64.80890831838232,8.350863417891148,13.344449895607031,-0.25547202359887744,25.54279963175456,0.08071,1418.1515248975948,0,0,8.000000000000004e-4,0.22112200036644936,0.005359999999999997,2.8781899891328067e-4,8.099999999999995e-4 +2236,0,0,-0,-0,1.5384980379839477,6.510900060335795,0.0016706666666666675,0.02520051132887602,0.022969333333333328,111.75499979654948,0.054384833066666666,5.970753630002339,0,4.950369993845622,0,6.684149980545044,0.006400058840000004,3.988941768805186,0.103292,53.70588970184326,0.0011199999999999988,5.061520536740621,9.838761333333334,0,431.3610432942708,404.7185053333329,924.1478830973306,85.02990787595756,402.71199798583984,327.5700915082027,0.08341421249012153,0.11203289999999995,0.004383979947306216,0.001953431946666667,0,8.427557599999997e-4,11.097699880599976,2.4827244400000006,2.7102081576983132,1.8310973333333336,17.180100599924724,0.971553333333333,0.1318180114030838,0.028703166799999992,12.105300029118856,0,0.19551300381620726,0.382735789333333,0,0,0.022228600612531107,0.042155705200000046,0.0023871399268197515,0.0032091220933333376,405.474983215332,6.118723773085098,81.91928135675427,64.51318387798126,8.31145219532065,13.33369324531337,-0.25547202359887744,25.53820006052653,0.07532933333333333,1386.6159852073908,0,0,7.46666666666667e-4,0.21798200036088625,0.005002666666666664,2.7751399951133254e-4,7.559999999999995e-4 +2237,0,0,-0,-0,1.5337967787502138,6.510329961776733,0.0015513333333333343,0.02423281113927563,0.021328666666666656,111.75600051879883,0.050500202133333325,5.904863595962524,0,4.923460046450297,0,6.671470046043396,0.0059429117800000025,3.9117719531059265,0.09591399999999997,53.165090243021645,0.0010399999999999988,5.061790506045024,9.135992666666668,0,431.36104583740234,375.8100406666663,923.6338806152343,84.86325739117967,402.6489995320638,326.7773871582742,0.07990401114026706,0.10403054999999997,0.004244389943778515,0.0018139010933333338,0,7.825589199999996e-4,10.83929975827535,2.3053869800000006,2.61322812239329,1.700304666666667,16.88930034637451,0.9021566666666663,0.12891400853792825,0.026652940599999994,12.047699928283691,0,0.18676000585158667,0.35539751866666636,0,0,0.02126540057361126,0.03914458340000005,0.002307249951021125,0.0029798990866666706,405.4609807332356,6.109963246346876,81.84562617424015,64.2174594375802,8.27204097275015,13.322936595019709,-0.25547202359887744,25.53339958190918,0.06994866666666667,1355.080445517187,0,0,6.933333333333337e-4,0.2148869993786017,0.004645333333333331,0.00026757799787446856,7.019999999999996e-4 +2238,0,0,-0,-0,1.52909551951648,6.509750008583069,0.001432000000000001,0.023302310301611822,0.01968799999999999,111.75800069173177,0.0466155712,5.839703520139058,0,4.896699984868367,0,6.658830046653748,0.005485764720000003,3.8360620935757956,0.08853599999999998,52.62959003448486,9.599999999999986e-4,5.062070528666179,8.433224000000001,0,431.3620427449544,346.9015759999995,923.1188761393228,84.69660690640178,402.5850016276042,325.9846828083457,0.07639071221152942,0.09602819999999998,0.004103619993353884,0.0016743702400000005,0,7.223620799999997e-4,10.581199884414673,2.1280495200000002,2.516208072503408,1.5695120000000002,16.599900086720783,0.8327599999999996,0.1260260088990132,0.024602714399999993,11.990399916966757,0,0.17800300319989523,0.32805924799999964,0,0,0.020302900578826666,0.03613346160000005,0.0022269899297195175,0.0027506760800000045,405.4459838867187,6.101202719608654,81.77197099172604,63.92173499717914,8.23262975017965,13.312179944726047,-0.25547202359887744,25.5283997853597,0.064568,1323.5449058269828,0,0,6.400000000000003e-4,0.21183500190575918,0.004287999999999997,2.579990007992213e-4,6.479999999999996e-4 +2239,0,0,-0,-0,1.524394260282746,6.509160041809082,0.0013126666666666677,0.022407509852200747,0.018047333333333318,111.75900014241536,0.04273094026666666,5.775263547897339,0,4.870090007781982,0,6.646200021107991,0.0050286176600000025,3.7618022362391152,0.08115799999999997,52.09959061940511,8.799999999999986e-4,5.062340537707011,7.730455333333334,0,431.3620427449544,317.9931113333329,922.6008758544921,84.52995642162388,402.52100372314453,325.1919784584173,0.07287691098948319,0.08802585,0.0039617498793328805,0.001534839386666667,0,6.621652399999997e-4,10.323399941126505,1.9507120600000003,2.419148027896881,1.4387193333333335,16.311700344085693,0.7633633333333331,0.12315500775973003,0.02255248819999999,11.93339999516805,0,0.16924300168951353,0.300720977333333,0,0,0.01933920041968425,0.03312233980000005,0.002146359959927698,0.002521453073333338,405.42898050944007,6.092442192870432,81.69831580921192,63.62601055677808,8.19321852760915,13.301423294432384,-0.25547202359887744,25.523199876149494,0.059187333333333335,1292.009366136779,0,0,5.86666666666667e-4,0.20882700135310492,0.003930666666666664,2.487619979850327e-4,5.939999999999997e-4 +2240,0,0,-0,-0,1.5196930010490122,6.508570035298665,0.0011933333333333344,0.021547109664728243,0.016406666666666653,111.75999959309895,0.03884630933333333,5.7115334669748945,0,4.84361998240153,0,6.633600036303203,0.004571470600000002,3.6889723936716714,0.07377999999999996,51.57499027252197,7.999999999999986e-4,5.062610467274983,7.027686666666668,0,431.36304473876953,289.08464666666623,922.0808766682942,84.36330593684599,402.45599873860675,324.3992741084888,0.0693625087539355,0.08002350000000003,0.0038211799304311476,0.0013953085333333337,0,6.019683999999997e-4,10.065999825795492,1.7733746000000004,2.32206799586614,1.307926666666667,16.02470024426778,0.6939666666666664,0.12030000736316045,0.020502261999999993,11.876700083414713,0,0.16048000504573187,0.2733827066666663,0,0,0.018374300406624872,0.03011121800000005,0.002066809955673913,0.0022922300666666715,405.4099756876627,6.083681666132209,81.6246606266978,63.33028611637702,8.153807305038649,13.290666644138723,-0.25547202359887744,25.517699877421062,0.05380666666666667,1260.473826446575,0,0,5.333333333333336e-4,0.2058620018263658,0.003573333333333331,2.3985600031058615e-4,5.399999999999997e-4 +2241,0,0,-0,-0,1.5149917418152783,6.507969975471497,0.001074000000000001,0.02071970918526252,0.014765999999999987,111.76000022888184,0.034961678399999994,5.648513476053874,0,4.817300001780192,0,6.6210300127665205,0.004114323540000002,3.6175525188446045,0.06640199999999996,51.05559062957764,7.199999999999987e-4,5.062890450159709,6.324918000000001,0,431.363042195638,260.1761819999996,921.55788675944,84.1966554520681,402.39200083414715,323.6065697585603,0.06584740802645683,0.07202115000000002,0.0036818299364919462,0.0012557776800000003,0,5.417715599999997e-4,9.80886975924174,1.5960371400000004,2.2249579628308616,1.1771340000000001,15.739000161488852,0.6245699999999997,0.11746000622709592,0.018452035799999995,11.820299943288168,0,0.1517140045762062,0.24604443599999967,0,0,0.017410300361613434,0.027100096200000045,0.001988249927914391,0.0020630070600000045,405.3889795939127,6.074921139393987,81.55100544418369,63.03456167597596,8.114396082468149,13.279909993845061,-0.25547202359887744,25.51199992497762,0.048426000000000004,1228.938286756371,0,0,4.8000000000000023e-4,0.20293899873892465,0.003215999999999998,2.3126900002049902e-4,4.859999999999997e-4 +2242,0,0,-0,-0,1.5102904825815444,6.507370034853618,9.546666666666676e-4,0.019924109025547903,0.013125333333333322,111.75999959309895,0.031077047466666664,5.5861934423446655,0,4.791119972864787,0,6.608480016390483,0.003657176480000002,3.54748264948527,0.059023999999999965,50.54149055480957,6.399999999999989e-4,5.063170591990153,5.6221493333333346,0,431.3640416463216,231.267717333333,921.0318806966145,84.0300049672902,402.3270009358724,322.81386540863184,0.0623317069063584,0.06401880000000001,0.003541279952817907,0.001116246826666667,0,4.815747199999998e-4,9.55204995473226,1.4186996800000002,2.127807935078939,1.0463413333333336,15.454400062561035,0.5551733333333331,0.11463400535285473,0.016401809599999994,11.764099995295206,0,0.14294700448711714,0.21870616533333304,0,0,0.016447100477914017,0.02408897440000004,0.0019092099779906373,0.001833784053333337,405.36698404947913,6.066160612655764,81.47735026166957,62.73883723557489,8.074984859897649,13.269153343551398,-0.25547202359887744,25.506099700927734,0.04304533333333334,1197.4027470661672,0,0,4.266666666666669e-4,0.20005700116356215,0.0028586666666666647,2.2298999950483753e-4,4.3199999999999977e-4 +2243,0,0,-0,-0,1.5055892233478108,6.506770054499309,8.353333333333342e-4,0.01915910855556528,0.011484666666666657,111.76000022888184,0.027192416533333333,5.5245533386866255,0,4.765080014864604,0,6.5959499677022295,0.003200029420000002,3.478772819042206,0.05164599999999997,50.03259118398031,5.599999999999991e-4,5.0634405215581255,4.919380666666667,0,431.36504618326825,202.35925266666635,920.5038808186848,83.8633544825123,402.26099650065106,322.02116105870334,0.05881520640105009,0.05601645000000002,0.003401939970596383,9.767159733333336e-4,0,4.2137787999999986e-4,9.295509974161783,1.2413622200000003,2.0306278467178345,0.9155486666666668,15.171000242233276,0.4857766666666665,0.111823004980882,0.014351583399999996,11.708199898401896,0,0.13417700305581093,0.19136789466666643,0,0,0.015482500350723663,0.021077852600000037,0.001829739970465501,0.00160456104666667,405.3429870605468,6.057400085917542,81.40369507915544,62.44311279517383,8.035573637327149,13.258396693257737,-0.25547202359887744,25.499999682108562,0.037664666666666666,1165.8672073759635,0,0,3.733333333333335e-4,0.19721700126926103,0.002501333333333332,2.150069982841766e-4,3.7799999999999976e-4 +2244,0,0,-0,-0,1.5008879641140769,6.506149967511495,7.160000000000007e-4,0.018423408114661772,0.009843999999999992,111.76000022888184,0.0233077856,5.463603258132935,0,4.7391800085703535,0,6.583450039227803,0.0027428823600000015,3.4113929867744446,0.044267999999999974,49.52879079182943,4.7999999999999914e-4,5.063720464706421,4.2166120000000005,0,431.3650436401367,173.45078799999973,919.97487894694,83.69670399773442,402.19500223795575,321.22845670877484,0.05529790557920933,0.04801410000000001,0.0032637499777289727,8.371851200000002e-4,0,3.6118103999999986e-4,9.039230028788248,1.0640247600000001,1.933417836825053,0.7847560000000001,14.888800064722696,0.4163799999999998,0.10902600424985091,0.012301357199999996,11.652599970499674,0,0.1254040033866962,0.16402962399999976,0,0,0.01451670021439592,0.018066730800000028,0.0017498399829491973,0.0013753380400000027,405.3179829915364,6.048639559179319,81.33003989664132,62.147388354772765,7.996162414756649,13.247640042964075,-0.25547202359887744,25.4936998685201,0.032284,1134.3316676857596,0,0,3.2000000000000013e-4,0.19441700105865797,0.0021439999999999983,2.0731000040541403e-4,3.239999999999998e-4 +2245,0,0,-0,-0,1.496186704880343,6.505539933840434,5.966666666666672e-4,0.01771600777283311,0.008203333333333326,111.76000022888184,0.019423154666666664,5.403323292732239,0,4.713430086771647,0,6.570970018704732,0.002285735300000001,3.3453030784924827,0.03688999999999998,49.03009064992269,3.999999999999993e-4,5.063990473747253,3.513843333333334,0,431.3660430908203,144.54232333333312,919.4458872477212,83.53005351295653,402.1290003458659,320.43575235884634,0.0517777039979895,0.04001175000000001,0.003124289990713199,6.976542666666669e-4,0,3.0098419999999987e-4,8.783219814300537,0.8866873000000002,1.8361877898375194,0.6539633333333335,14.60760005315145,0.3469833333333332,0.10624300440152486,0.010251130999999997,11.59719999631246,0,0.11662800175448258,0.13669135333333315,0,0,0.013551800201336542,0.015055609000000025,0.0016695599964198966,0.0011461150333333357,405.2909825642903,6.039879032441098,81.25638471412721,61.851663914371706,7.9567511921861485,13.236883392670414,-0.25547202359887744,25.487199783325195,0.026903333333333335,1102.7961279955557,0,0,2.666666666666668e-4,0.19165600091218948,0.0017866666666666656,1.998880021953179e-4,2.6999999999999984e-4 +2246,0,0,-0,-0,1.4914854456466091,6.504909912745158,4.7733333333333384e-4,0.017035807482898235,0.006562666666666661,111.75900014241536,0.015538523733333334,5.343713283538818,0,4.687819957733154,0,6.558510025342305,0.0018285882400000011,3.280493219693502,0.029511999999999983,48.536390940348305,3.199999999999995e-4,5.064270575841268,2.8110746666666673,0,431.3670399983724,115.6338586666665,918.9168853759764,83.36340302817862,402.06300354003906,319.6430480089179,0.048256903886795044,0.032009400000000014,0.0029859699619313083,5.581234133333335e-4,0,2.4078735999999993e-4,8.52744992574056,0.7093498400000002,1.738917738199234,0.5231706666666668,14.327600240707397,0.2775866666666666,0.10347000323235989,0.008200904799999997,11.542099952697754,0,0.10784900064269702,0.10935308266666652,0,0,0.012587600077191988,0.01204448720000002,0.001588909993491446,9.168920266666685e-4,405.261978149414,6.031118505702875,81.18272953161309,61.555939473970646,7.917339969615649,13.226126742376751,-0.25547202359887744,25.48039960861206,0.02152266666666667,1071.2605883053518,0,0,2.1333333333333344e-4,0.18893500169118246,0.0014293333333333324,1.9273300010051267e-4,2.1599999999999988e-4 +2247,0,0,-0,-0,1.4867841864128752,6.504290024439494,3.5800000000000035e-4,0.01638170735289653,0.004921999999999996,111.75800196329753,0.0116538928,5.284753203392029,0,4.662339965502421,0,6.546080032984416,0.0013714411800000007,3.2169333497683206,0.022133999999999987,48.0476910273234,2.3999999999999965e-4,5.064540425936381,2.1083060000000007,0,431.3670476277669,86.72539399999988,918.3898874918618,83.19675254340073,401.99600474039715,318.8503436589894,0.044735402489701905,0.02400705000000001,0.0028487199645799897,4.185925600000001e-4,0,1.8059051999999993e-4,8.271919965744019,0.5320123800000003,1.6416176855564117,0.3923780000000001,14.048600117365519,0.20818999999999993,0.10070800160368283,0.006150678599999999,11.487300078074137,0,0.0990686013052861,0.08201481199999991,0,0,0.011622000330438217,0.009033365400000017,0.0015079099975991994,6.876690200000016e-4,405.23198445638013,6.022357978964653,81.10907434909898,61.26021503356958,7.877928747045149,13.21537009208309,-0.25547202359887744,25.47339979807536,0.016142000000000004,1039.725048615148,0,0,1.600000000000001e-4,0.18625299632549286,0.0010719999999999996,1.858340013617029e-4,1.6199999999999993e-4 +2248,0,0,-0,-0,1.4820829271791416,6.503660003344218,2.3866666666666687e-4,0.015752806871508557,0.0032813333333333305,111.75600051879883,0.007769261866666665,5.226453145345052,0,4.637009978294373,0,6.533669988314311,9.142941200000003e-4,3.1545934875806174,0.014755999999999991,47.56389204661051,1.5999999999999966e-4,5.064820448557536,1.4055373333333332,0,431.3670374552409,57.816929333333235,917.8648834228514,83.03010205862284,401.92899831136066,318.0576393090609,0.04121330256263415,0.016004699999999997,0.0027101399997870126,2.7906170666666674e-4,0,1.2039367999999994e-4,8.016619880994162,0.3546749199999999,1.5442876120408375,0.26158533333333334,13.770700057347616,0.1387933333333332,0.09795800161858399,0.004100452399999999,11.432799816131592,0,0.09028540054957072,0.054676541333333245,0,0,0.010655200108885765,0.006022243600000008,0.0014279999886639416,4.5844601333333416e-4,405.19998677571607,6.01359745222643,81.03541916658484,60.96449059316852,7.838517524474649,13.204613441789428,-0.25547202359887744,25.46620003382365,0.010761333333333331,1008.1895089249441,0,0,1.066666666666667e-4,0.1836090013384819,7.14666666666666e-4,1.7918100032450943e-4,1.0799999999999991e-4 +2249,0,0,-0,-0,1.4773816679454077,6.50301996866862,1.1933333333333349e-4,0.015148006845265627,0.0016406666666666653,111.75499979654948,0.0038846309333333343,5.168793161710103,0,4.611809968948364,0,6.521289984385173,4.571470600000004e-4,3.093453586101532,0.007377999999999996,47.08509095509847,7.999999999999988e-5,5.065090497334798,0.7027686666666666,0,431.3680419921875,28.90846466666659,917.3458760579426,82.86345157384494,401.8620071411133,317.26493495913246,0.03769060100118319,0.008002350000000005,0.002570299974953135,1.3953085333333337e-4,0,6.0196839999999995e-5,7.761529962221782,0.17733745999999995,1.4469276865323384,0.13079266666666656,13.49370018641154,0.06939666666666666,0.09522010013461113,0.002050226199999998,11.37849990526835,0,0.08149900039037068,0.027338270666666636,0,0,0.009689240017905831,0.0030111218000000058,0.0013490899873431772,2.2922300666666697e-4,405.1659851074218,6.004836925488208,80.96176398407073,60.668766152767454,7.799106301904149,13.193856791495765,-0.25547202359887744,25.458799839019775,0.0053806666666666655,976.6539692347403,0,0,5.333333333333335e-5,0.18100199972589812,3.573333333333332e-4,1.727679979618794e-4,5.399999999999996e-5 +2250,0,0,-0,-0,1.4726804087116738,6.5023800532023115,0,0.01456640645240744,0,111.75300025939941,0,5.111773173014323,0,4.586749990781148,0,6.508930047353108,0,3.033493717511495,0,46.61099116007487,0,5.065360466639201,0,0,431.36804453531903,0,916.8318786621093,82.69680108906705,401.7950032552083,316.47223060920396,0.03416700009256601,0,0.002431609978278478,0,0,0,7.506649971008301,0,1.3495373825232189,0,13.21779998143514,0,0.09249389978746574,0,11.324499924977621,0,0.07270940020680428,0,0,0,0.008724000149716934,0,0.0012697199902807672,0,405.13097635904944,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.451200008392334,0,945.1184295445364,0,0,0,0.1784320001800855,0,1.6658300228300504e-4,0 +2251,0,0,-0,-0,1.4726804087116738,6.50173004468282,0,0.014007106190547347,0,111.75100072224934,0,5.055383086204529,0,4.5618300040562945,0,6.4965900182724,0,2.9746938347816467,0,46.141791343688965,0,5.065640489260356,0,0,431.3690363566081,0,916.3228759765624,82.69680108906705,401.72900136311847,316.47223060920396,0.030642699915915728,0,0.00229400999766464,0,0,0,7.251950025558472,0,1.2521077891190846,0,12.942799806594849,0,0.08977880018452804,0,11.270800034205118,0,0.06391680023322503,0,0,0,0.007757369972144564,0,0.0011899199841233592,0,405.0939814249674,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.443399747212727,0,945.1184295445364,0,0,0,0.17589900021751723,0,1.6061999849625863e-4,0 +2252,0,0,-0,-0,1.4726804087116738,6.5010799964269,0,0.013469405937939882,0,111.74899991353352,0,4.99962302049001,0,4.5370399951934814,0,6.484279950459798,0,2.917013943195343,0,45.67719109853109,0,5.065860589345296,0,0,431.3730239868164,0,915.8418884277343,82.69680108906705,401.66200256347656,316.47223060920396,0.027308800412962835,0,0.002159779988384495,0,0,0,7.001760045687358,0,1.1583248774210613,0,12.671199957529703,0,0.08710950054228306,0,11.217300017674765,0,0.05568990049262842,0,0,0,0.006846879958175123,0,0.0011125100039256115,0,405.05697886149085,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.435400009155273,0,945.1184295445364,0,0,0,0.17340200021862984,0,1.548709988128394e-4,0 +2253,0,0,-0,-0,1.4726804087116738,6.50043002764384,0,0.012952305609360337,0,111.74600092569987,0,4.944473028182983,0,4.51238997777303,0,6.471990029017131,0,2.8604541222254434,0,45.21739196777344,0,5.065980553627014,0,0,431.3820088704427,0,915.4098917643228,82.69680108906705,401.59600321451825,316.47223060920396,0.024337599985301495,0,0.002033410011790693,0,0,0,6.760199983914693,0,1.0715751747290294,0,12.405300060907999,0,0.08451969921588898,0,11.164100090662638,0,0.04852220012495915,0,0,0,0.00604326999746263,0,0.001040129999940594,0,405.01997884114576,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.427499771118164,0,945.1184295445364,0,0,0,0.17094099769989649,0,1.4932799967937171e-4,0 +2254,0,0,-0,-0,1.4726804087116738,6.499780019124349,0,0.012455005509157976,0,111.74400075276692,0,4.889932990074158,0,4.487880031267802,0,6.459729949633281,0,2.8049741784731546,0,44.762191454569496,0,5.0660905838012695,0,0,431.3920160929362,0,915.0228983561196,82.69680108906705,401.52899678548175,316.47223060920396,0.02168989988664786,0,0.0019144300119175266,0,0,0,6.526990016301473,0,0.9913234263658524,0,12.144999980926514,0,0.08200699960192044,0,11.11109987894694,0,0.042277200147509575,0,0,0,0.005334019971390565,0,9.724739987480765e-4,0,404.9829839070637,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.41949987411499,0,945.1184295445364,0,0,0,0.16851399838924408,0,1.4398300118045881e-4,0 +2255,0,0,-0,-0,1.4726804087116738,6.499129970868428,0,0.011976905322323242,0,111.74200057983398,0,4.835992932319641,0,4.463500022888184,0,6.447490016619365,0,2.7505643367767334,0,44.31159210205078,0,5.066190640131633,0,0,431.4020131429036,0,914.6758982340493,82.69680108906705,401.46299997965497,316.47223060920396,0.019330200118323166,0,0.0018024199913876753,0,0,0,6.301830013593038,0,0.9170845647652944,0,11.890100081761679,0,0.07956909947097301,0,11.05839991569519,0,0.03683619977285465,0,0,0,0.00470801997774591,0,9.092170027239869e-4,0,404.94698079427076,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.41159995396932,0,945.1184295445364,0,0,0,0.16612200190623602,0,1.3883000065106899e-4,0 +2256,0,0,-0,-0,1.4726804087116738,6.498480002085368,0,0.011517105080808202,0,111.73999977111816,0,4.782652974128723,0,4.4392499923706055,0,6.435269991556804,0,2.69722443819046,0,43.86559168497721,0,5.066290577252706,0,0,431.4130121866862,0,914.3638966878254,82.69680108906705,401.39599609375,316.47223060920396,0.017227400094270706,0,0.0016969699839440484,0,0,0,6.084440032641093,0,0.8484078794717789,0,11.640700022379557,0,0.07720380028088887,0,11.005899985631308,0,0.03209570003673434,0,0,0,0.004155520000495017,0,8.500769957511997e-4,0,404.90998331705725,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.403599898020428,0,945.1184295445364,0,0,0,0.16376399993896484,0,1.3386100060112463e-4,0 +2257,0,0,-0,-0,1.4726804087116738,6.497829993565877,0,0.011075004935264587,0,111.7370007832845,0,4.729912916819255,0,4.415129979451497,0,6.423069993654887,0,2.644904534022013,0,43.4240919748942,0,5.066400607426961,0,0,431.4240137736003,0,914.0848999023436,82.69680108906705,401.3289972941081,316.47223060920396,0.015353399949769178,0,0.0015976900079598029,0,0,0,5.87456997235616,0,0.7848777323961258,0,11.396400054295858,0,0.07490890038510163,0,10.953700065612793,0,0.027965300095578034,0,0,0,0.0036678699931750693,0,7.947850050792719e-4,0,404.8739878336588,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.395699977874756,0,945.1184295445364,0,0,0,0.16143999993801117,0,1.2907000079091327e-4,0 +2258,0,0,-0,-0,1.4726804087116738,6.497179985046387,0,0.010649804801990589,0,111.73499997456868,0,4.677742878595988,0,4.391150037447612,0,6.4109000364939375,0,2.5935946106910706,0,42.98699188232422,0,5.066500544548035,0,0,431.4350102742513,0,913.8348999023436,82.69680108906705,401.26099904378253,316.47223060920396,0.013683300154904524,0,0.001504230002562205,0,0,0,5.671939969062805,0,0.7261070311069489,0,11.157299995422363,0,0.0726822999616464,0,10.901700019836426,0,0.0243666999352475,0,0,0,0.0032374600414186716,0,7.430930030144131e-4,0,404.83898417154944,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.387799739837646,0,945.1184295445364,0,0,0,0.1591489998002847,0,1.2445099976806281e-4,0 +2259,0,0,-0,-0,1.4726804087116738,6.4965299765268965,0,0.010241004405543208,0,111.73299916585286,0,4.626152753829956,0,4.367290099461873,0,6.3987499078114825,0,2.5432647665341697,0,42.55429204305013,0,5.06661057472229,0,0,431.44701385498047,0,913.6109059651692,82.69680108906705,401.1940002441406,316.47223060920396,0.012194899919753274,0,0.001416230001874889,0,0,0,5.4763100147247314,0,0.6717388778924942,0,10.923199971516928,0,0.07052200039227803,0,10.850000063578287,0,0.021231199769924086,0,0,0,0.0028575800048808255,0,6.947640116171291e-4,0,404.80298360188795,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.379799683888752,0,945.1184295445364,0,0,0,0.15688999990622202,0,1.1999699927400798e-4,0 +2260,0,0,-0,-0,1.4726804087116738,6.495880047480266,0,0.009847884609674415,0,111.73100026448567,0,4.5751428206761675,0,4.343569954236348,0,6.386630058288574,0,2.4939048091570535,0,42.126091639200844,0,5.066720565160115,0,0,431.45801544189453,0,913.4099019368489,82.69680108906705,401.12699635823566,316.47223060920396,0.010868500064437589,0,0.00133338999391223,0,0,0,5.2874399820963545,0,0.6214432766040167,0,10.69409998257955,0,0.0684258999923865,0,10.798500061035156,0,0.01849940000101924,0,0,0,0.0025222799934757254,0,6.495809987730657e-4,0,404.7679824829101,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.371900240580242,0,945.1184295445364,0,0,0,0.1546629990140597,0,1.157020002816959e-4,0 +2261,0,0,-0,-0,1.4726804087116738,6.495229999224345,0,0.009469864269097647,0,111.72899945576985,0,4.5246827602386475,0,4.319980065027873,0,6.374529997507731,0,2.4455049435297647,0,41.70209217071533,0,5.0668206214904785,0,0,431.4700113932292,0,913.2309010823567,82.69680108906705,401.05899810791016,316.47223060920396,0.009686399949714541,0,0.0012553900208634634,0,0,0,5.105090022087097,0,0.5749162783225378,0,10.469699939092001,0,0.06639229940871398,0,10.747300068537394,0,0.016119099920615554,0,0,0,0.0022263399829777577,0,6.073369974425683e-4,0,404.73398081461585,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.36399968465169,0,945.1184295445364,0,0,0,0.15246799836556116,0,1.1156200040810897e-4,0 +2262,0,0,-0,-0,1.4726804087116738,6.494579990704854,0,0.009106364178781709,0,111.72600110371907,0,4.474792679150899,0,4.2965099811553955,0,6.362449924151103,0,2.3980350494384766,0,41.28239186604818,0,5.066930611928304,0,0,431.4810104370117,0,913.0699005126952,82.69680108906705,400.9909973144531,316.47223060920396,0.008632910049830874,0,0.0011819699914970745,0,0,0,4.929030021031697,0,0.5318749050299326,0,10.250100056330362,0,0.06441920002301534,0,10.696300029754639,0,0.014045200077816844,0,0,0,0.0019651300099212676,0,5.678430025000125e-4,0,404.6989822387695,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.35610008239746,0,945.1184295445364,0,0,0,0.1503050004442533,0,1.0756899973785039e-4,0 +2263,0,0,-0,-0,1.4726804087116738,6.493929982185364,0,0.008756823992977539,0,111.72399965922038,0,4.425452669461568,0,4.2731800476710005,0,6.3503899574279785,0,2.351475099722544,0,40.86699263254801,0,5.06704060236613,0,0,431.49300893147785,0,912.9269053141275,82.69680108906705,400.9230016072591,316.47223060920396,0.0076940399982656045,0,0.0011128300102427602,0,0,0,4.759060064951579,0,0.4920571794112523,0,10.035099824269613,0,0.06250480003654957,0,10.645600001017252,0,0.012238199900214871,0,0,0,0.0017345800103309255,0,5.309180123731494e-4,0,404.6649805704752,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.34809970855713,0,945.1184295445364,0,0,0,0.14817200104395548,0,1.0371999936372352e-4,0 +2264,0,0,-0,-0,1.4726804087116738,6.493280013402303,0,0.00842071371152997,0,111.72199948628743,0,4.376652717590332,0,4.249970038731893,0,6.338359991709392,0,2.30583522717158,0,40.45569292704264,0,5.067140579223633,0,0,431.50401560465497,0,912.7979024251301,82.69680108906705,400.85500081380206,316.47223060920396,0.006857309994908671,0,0.0010477500036358833,0,0,0,4.594950000445048,0,0.45522113144397736,0,9.824620087941488,0,0.060647399785617985,0,10.595099925994873,0,0.010663700057193637,0,0,0,0.001531090005300939,0,4.963950050296262e-4,0,404.630983988444,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.3402001063029,0,945.1184295445364,0,0,0,0.14606900016466776,0,5.045958096161485e-5,0 +2265,0,0,-0,-0,1.4726804087116738,6.4926300048828125,0,0.008097503489504257,0,111.71999994913737,0,4.328392585118611,0,4.226889967918396,0,6.326350053151448,0,2.261085311571757,0,40.04859256744385,0,5.067250569661458,0,0,431.5160090128581,0,912.6829071044921,82.69680108906705,400.7879994710286,316.47223060920396,0.00611159997060895,0,9.864739937863003e-4,0,0,0,4.436510006586711,0,0.4211447983980179,0,9.618549982706705,0,0.058845200265447296,0,10.544800043106079,0,0.009291870053857565,0,0,0,0.0013514700112864375,0,4.641189977216224e-4,0,404.59698232014966,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.332300027211506,0,945.1184295445364,0,0,0,0.14399599904815355,0,0,0 +2266,0,0,-0,-0,1.4726804087116738,6.491979996363322,0,0.007786703451226155,0,111.71700032552083,0,4.280672629674275,0,4.203930060068767,0,6.314369996388753,0,2.2171854178110757,0,39.64559237162272,0,5.067360599835713,0,0,431.52701568603516,0,912.5809071858723,82.69680108906705,400.7200012207031,316.47223060920396,0.005447019978115956,0,9.287839930038899e-4,0,0,0,4.2835400104522705,0,0.38962118575970334,0,9.41681989034017,0,0.057096700804928936,0,10.494800170262655,0,0.008096560020931065,0,0,0,0.0011929299992819626,0,4.339430039787355e-4,0,404.563980102539,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.324399789174397,0,945.1184295445364,0,0,0,0.1419529989361763,0,0,0 +2267,0,0,-0,-0,1.4726804087116738,6.491329948107402,0,0.007487833305882911,0,111.71500015258789,0,4.233472585678101,0,4.181100010871887,0,6.302409927050273,0,2.1741355260213218,0,39.246692975362144,0,5.067460457483928,0,0,431.5380096435547,0,912.4889017740884,82.69680108906705,400.65199788411456,316.47223060920396,0.004854720047054191,0,8.744700025999919e-4,0,0,0,4.135849992434184,0,0.360457311073939,0,9.219319979349772,0,0.05540020018815994,0,10.44509998957316,0,0.007055050033765535,0,0,0,0.001053000014508143,0,4.057299981165367e-4,0,404.53098297119135,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.316500027974445,0,945.1184295445364,0,0,0,0.13993899896740913,0,0,0 +2268,0,0,-0,-0,1.4726804087116738,6.490679979324341,0,0.007200443263476093,0,111.71299997965495,0,4.186802585919698,0,4.1583999792734785,0,6.290469964345296,0,2.1319156090418496,0,38.85179297129313,0,5.067570606867473,0,0,431.55001068115234,0,912.4079182942708,82.69680108906705,400.58399709065753,316.47223060920396,0.004326849981832008,0,8.2333399526154e-4,0,0,0,3.993250012397766,0,0.3334782098730405,0,9.025969902674357,0,0.05375419991711775,0,10.39549978574117,0,0.006147549992116789,0,0,0,9.29485002416186e-4,0,3.793519960405926e-4,0,404.4979858398437,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.308599948883057,0,945.1184295445364,0,0,0,0.13795300076405206,0,0,0 +2269,0,0,-0,-0,1.4726804087116738,6.49003001054128,0,0.006924093080063661,0,111.71100044250488,0,4.140642523765564,0,4.135809977849324,0,6.278549989064534,0,2.0905156334241233,0,38.46089299519857,0,5.067670543988545,0,0,431.5610122680664,0,912.3349100748696,82.69680108906705,400.51600138346356,316.47223060920396,0.00385638993854324,0,7.751910015940666e-4,0,0,0,3.8555800318717957,0,0.308519887427489,0,8.836689949035645,0,0.05215709997961918,0,10.346199909845987,0,0.005356819989780585,0,0,0,8.204619953176007e-4,0,3.546900018894424e-4,0,404.46598307291663,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.300599733988445,0,945.1184295445364,0,0,0,0.13599600022037825,0,0,0 +2270,0,0,-0,-0,1.4726804087116738,6.489389975865682,0,0.006658352989082535,0,111.70800081888835,0,4.094992478688558,0,4.113360007603963,0,6.266650040944417,0,2.049895783265432,0,38.07399272918701,0,5.067780613899231,0,0,431.57201385498047,0,912.2699127197264,82.69680108906705,400.447998046875,316.47223060920396,0.003437110009447982,0,7.298639975488186e-4,0,0,0,3.722670018672943,0,0.28542937089999515,0,8.651379982630411,0,0.05060760024935007,0,10.297200043996176,0,0.0046678199820841355,0,0,0,7.242320037524527e-4,0,3.316320022956158e-4,0,404.4329808553059,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.292699813842773,0,945.1184295445364,0,0,0,0.1340670014421145,0,0,0 +2271,0,0,-0,-0,1.4726804087116738,6.4887400070826216,0,0.0064028128593539195,0,111.7060006459554,0,4.04985245068868,0,4.091019988059998,0,6.254780093828837,0,2.010075847307841,0,37.69089285532633,0,5.067880551020305,0,0,431.5840123494466,0,912.2119038899739,82.69680108906705,400.3799997965495,316.47223060920396,0.0030634200084023178,0,6.871899968245998e-4,0,0,0,3.5943400065104165,0,0.2640686606367429,0,8.469969908396402,0,0.049104099782804646,0,10.24839997291565,0,0.004067469989725699,0,0,0,6.392910096716756e-4,0,3.1007400442225236e-4,0,404.4009857177734,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.284799734751385,0,945.1184295445364,0,0,0,0.1321650023261706,0,0,0 +2272,0,0,-0,-0,1.4726804087116738,6.488089958826701,0,0.0061570826995496946,0,111.70399983723958,0,4.00520247220993,0,4.068810025850932,0,6.242939988772075,0,1.971035937468211,0,37.31169287363688,0,5.0679905017217,0,0,431.59501393636066,0,912.1599019368489,82.69680108906705,400.31199645996094,316.47223060920396,0.0027303799870423973,0,6.470119988080114e-4,0,0,0,3.470429996649424,0,0.24430778622627258,0,8.292360146840414,0,0.04764540089915196,0,10.19980001449585,0,0.003544349999477466,0,0,0,5.643150119188552e-4,0,2.8991900277712074e-4,0,404.3689854939778,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.276899973551433,0,945.1184295445364,0,0,0,0.13028999914725622,0,0,0 +2273,0,0,-0,-0,1.4726804087116738,6.48743999004364,0,0.005920792658192416,0,111.70200030008952,0,3.961052417755127,0,4.046710014343262,0,6.231110056241353,0,1.932765970627467,0,36.93639310201009,0,5.068090558052063,0,0,431.60601298014325,0,912.1139170328775,82.69680108906705,400.2450002034505,316.47223060920396,0.002433549981409063,0,6.091849985144412e-4,0,0,0,3.3508099913597107,0,0.22602574775616327,0,8.118489901224772,0,0.04623009947439035,0,10.151400089263916,0,0.0030885299978156886,0,0,0,4.981350042119933e-4,0,2.710739960699963e-4,0,404.3379796346028,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.26899989446004,0,945.1184295445364,0,0,0,0.12844099973638853,0,0,0 +2274,0,0,-0,-0,1.4726804087116738,6.48678994178772,0,0.005693572573363781,0,111.69899940490723,0,3.9173924128214517,0,4.024739940961202,0,6.219310005505879,0,1.8952160875002544,0,36.56479358673096,0,5.0682006279627485,0,0,431.6170120239258,0,912.0729166666665,82.69680108906705,400.17699940999347,316.47223060920396,0.0021690099965780973,0,5.735710001317784e-4,0,0,0,3.235309978326162,0,0.20911256223917007,0,7.948270042737325,0,0.044856900038818516,0,10.103300094604492,0,0.002691339992452413,0,0,0,4.397189986775629e-4,0,2.534550003474578e-4,0,404.30697886149085,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.261099815368652,0,945.1184295445364,0,0,0,0.1266189975043138,0,0,0 +2275,0,0,-0,-0,1.4726804087116738,6.486139973004659,0,0.005475072422996163,0,111.69699923197429,0,3.874212384223938,0,4.00288999080658,0,6.2075300216674805,0,1.8583861490090687,0,36.19699350992838,0,5.068300525347392,0,0,431.62800852457684,0,912.0369110107421,82.69680108906705,400.1100031534831,316.47223060920396,0.0019332299804470192,0,5.40039996849373e-4,0,0,0,3.123799959818522,0,0.19346524154146513,0,7.781629999478658,0,0.043524499982595444,0,10.055400053660074,0,0.0023452499881386757,0,0,0,3.8815499768437195e-4,0,2.3698099782147133e-4,0,404.27597808837885,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.253300189971924,0,945.1184295445364,0,0,0,0.1248230009029309,0,0,0 +2276,0,0,-0,-0,1.4726804087116738,6.4854899644851685,0,0.005264972258980076,0,111.69499969482422,0,3.8315023382504783,0,3.981159965197245,0,6.195770025253296,0,1.8222762246926625,0,35.83279259999593,0,5.068400541941325,0,0,431.6390101114909,0,912.004903157552,82.69680108906705,400.041997273763,316.47223060920396,0.0017230899829883128,0,5.084709991933778e-4,0,0,0,3.0161399841308594,0,0.17898979658881822,0,7.618490020434062,0,0.04223169976224502,0,10.007700045903524,0,0.0020436699754403285,0,0,0,3.426390006400955e-4,0,2.215790021485494e-4,0,404.2449798583984,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.245399951934814,0,945.1184295445364,0,0,0,0.12305200037856896,0,0,0 +2277,0,0,-0,-0,1.4726804087116738,6.484839955965678,0,0.0050629222532734275,0,111.69299952189128,0,3.7892722686131797,0,3.959540009498596,0,6.184030016263326,0,1.7868763109048207,0,35.47239335378011,0,5.0685005982716875,0,0,431.65001169840497,0,911.9759165445962,82.69680108906705,399.9750010172526,316.47223060920396,0.0015357900022839506,0,4.787489985271047e-4,0,0,0,2.9121899803479514,0,0.16559823602437973,0,7.4587699969609575,0,0.04097739979624748,0,9.960269927978516,0,0.0017808900059511263,0,0,0,3.024629986612126e-4,0,2.0717900042654946e-4,0,404.2139790852864,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.237500031789143,0,945.1184295445364,0,0,0,0.12130700051784515,0,0,0 +2278,0,0,-0,-0,1.4726804087116738,6.48419992129008,0,0.004868642194196582,0,111.69099934895833,0,3.7475122809410095,0,3.93803999821345,0,6.172320008277893,0,1.7521663804848988,0,35.115593592325844,0,5.068600575129191,0,0,431.66101328531903,0,911.9499155680337,82.69680108906705,399.90799713134766,316.47223060920396,0.001368869988558193,0,4.507650010054931e-4,0,0,0,2.81182998418808,0,0.15320856496691704,0,7.302410006523132,0,0.03976039960980415,0,9.913060029347738,0,0.001551899981374542,0,0,0,2.669979997638923e-4,0,1.9371500093257055e-4,0,404.1839803059895,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.229599793752033,0,945.1184295445364,0,0,0,0.11958600021898746,0,0,0 +2279,0,0,-0,-0,1.4726804087116738,6.483549952507019,0,0.004681812017224729,0,111.68799908955891,0,3.706212282180786,0,3.916670004526774,0,6.160629987716675,0,1.7181164522965748,0,34.762393951416016,0,5.068700551986694,0,0,431.67200978597003,0,911.9279123942056,82.69680108906705,399.84099833170575,316.47223060920396,0.0012200900043050449,0,4.244169977027923e-4,0,0,0,2.714930017789205,0,0.1417467954258124,0,7.149330059687297,0,0.03857959993183613,0,9.866070032119751,0,0.0013523599870192509,0,0,0,2.3569299931599139e-4,0,1.8112600082531571e-4,0,404.1539866129557,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.221699873606365,0,945.1184295445364,0,0,0,0.11789000034332275,0,0,0 +2280,0,0,-0,-0,1.4726804087116738,6.482899943987529,0,0.004502161988057196,0,111.68600018819173,0,3.665362238883972,0,3.8953999678293862,0,6.148959954579671,0,1.6847165028254192,0,34.41269334157308,0,5.068800568580627,0,0,431.6830113728841,0,911.9079182942708,82.69680108906705,399.7730000813802,316.47223060920396,0.0010874800112408896,0,3.996109977985422e-4,0,0,0,2.621370017528534,0,0.13114293292164803,0,6.999459981918335,0,0.03743389993906021,0,9.819310029347738,0,0.0011784899979829788,0,0,0,2.0805999884032644e-4,0,1.693559994843478e-4,0,404.1239802042643,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.213799794514973,0,945.1184295445364,0,0,0,0.11621800002952416,0,0,0 +2281,0,0,-0,-0,1.4726804087116738,6.482249935468038,0,0.004329401922101776,0,111.68399874369304,0,3.6249622106552124,0,3.8742600083351135,0,6.137320001920064,0,1.6519665718078613,0,34.06659380594889,0,5.068900505701701,0,0,431.6930160522461,0,911.889923095703,82.69680108906705,399.7070032755534,316.47223060920396,9.69296995511589e-4,0,3.7625499923403066e-4,0,0,0,2.531049986680349,0,0.12133198541899522,0,6.852750023206075,0,0.03632230032235384,0,9.772770007451376,0,0.001026979991972136,0,0,0,1.8366700169281103e-4,0,1.5835100081555234e-4,0,404.0949834187825,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.205899874369305,0,945.1184295445364,0,0,0,0.11456900027891,0,0,0 +2282,0,0,-0,-0,1.4726804087116738,6.481600006421407,0,0.004163271825139721,0,111.68199984232585,0,3.585022211074829,0,3.8532299796740213,0,6.125699996948242,0,1.6198566257953644,0,33.72399361928304,0,5.069000522295634,0,0,431.7040100097656,0,911.8739064534504,82.69680108906705,399.64000193277997,316.47223060920396,8.639580046292394e-4,0,3.542660003101143e-4,0,0,0,2.4438299934069314,0,0.11225596070289612,0,6.7091100215911865,0,0.03524370056887468,0,9.726450045903524,0,8.949479961302131e-4,0,0,0,1.621350008160031e-4,0,1.4806200124439783e-4,0,404.06498209635413,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.198099772135418,0,945.1184295445364,0,0,0,0.11294400009016196,0,0,0 +2283,0,0,-0,-0,1.4726804087116738,6.480950037638347,0,0.004003531803997855,0,111.6790002187093,0,3.5455121596654258,0,3.8323100010553994,0,6.114090005556743,0,1.5883767108122508,0,33.38479359944662,0,5.069100538889567,0,0,431.7150166829427,0,911.8599090576171,82.69680108906705,399.573003133138,316.47223060920396,7.700710023830956e-4,0,3.33561998559162e-4,0,0,0,2.359630028406779,0,0.10385885834693909,0,6.568489948908488,0,0.03419720040013393,0,9.680349985758463,0,7.798969988167906e-4,0,0,0,1.431279997632373e-4,0,1.3844200051001584e-4,0,404.0359802246093,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.190200010935467,0,945.1184295445364,0,0,0,0.11134299946328004,0,0,0 +2284,0,0,-0,-0,1.4726804087116738,6.480310042699178,0,0.0038499117363244295,0,111.67699940999348,0,3.506442149480184,0,3.811509986718496,0,6.102519949277242,0,1.5575167536735535,0,33.049093882242836,0,5.06920059521993,0,0,431.72501373291016,0,911.8469085693358,82.69680108906705,399.50600179036456,316.47223060920396,6.863890012027696e-4,0,3.1406900234287605e-4,0,0,0,2.2783300280570984,0,0.09609069675207138,0,6.430820067723592,0,0.033181799575686455,0,9.634479999542236,0,6.79641006475625e-4,0,0,0,1.2634900122066028e-4,0,1.2944699725873457e-4,0,404.00698089599604,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.182299613952637,0,945.1184295445364,0,0,0,0.10976300078133742,0,0,0 +2285,0,0,-0,-0,1.4726804087116738,6.479660073916118,0,0.0037021916553688547,0,111.67499987284343,0,3.467802127202352,0,3.7908200224240622,0,6.090960065523784,0,1.5272368490695953,0,32.71669356028239,0,5.069300572077434,0,0,431.7360102335612,0,911.8359171549478,82.69680108906705,399.4399998982747,316.47223060920396,6.118040037108585e-4,0,2.9571599831494194e-4,0,0,0,2.199839989344279,0,0.08890356495976448,0,6.296040018399556,0,0.03219659999012947,0,9.588819980621338,0,5.922750036309784e-4,0,0,0,1.1153899928710113e-4,0,1.210370004021873e-4,0,403.97898101806635,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.174499829610188,0,945.1184295445364,0,0,0,0.10820699979861577,0,0,0 +2286,0,0,-0,-0,1.4726804087116738,6.479009985923767,0,0.0035601415826628604,0,111.67300033569336,0,3.4295921127001443,0,3.770240008831024,0,6.079430063565572,0,1.4975268840789795,0,32.387694358825684,0,5.0694005489349365,0,0,431.7460123697917,0,911.8259124755858,82.69680108906705,399.3740056355794,316.47223060920396,5.453250050777569e-4,0,2.784359991589251e-4,0,0,0,2.1240500013033548,0,0.08225428002576034,0,6.164099971453349,0,0.03124069965754946,0,9.54337994257609,0,5.161429920311397e-4,0,0,0,9.84642999052691e-5,0,1.1317300049995538e-4,0,403.94997914632154,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.16659990946452,0,945.1184295445364,0,0,0,0.1066720001399517,0,0,0 +2287,0,0,-0,-0,1.4726804087116738,6.478360056877136,0,0.0034235415514558554,0,111.67000007629395,0,3.3918020725250244,0,3.749779999256134,0,6.067910035451253,0,1.4684069554011028,0,32.06199407577515,0,5.0694905916849775,0,0,431.7570114135742,0,911.816914876302,82.69680108906705,399.3070017496745,316.47223060920396,4.8607300414005294e-4,0,2.6216599993252504e-4,0,0,0,2.050879975159963,0,0.0761025386552016,0,6.0349200169245405,0,0.03031320000688235,0,9.498160123825073,0,4.4979999802308157e-4,0,0,0,8.6923000102009e-5,0,1.0582100003375672e-4,0,403.9219818115234,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.158699989318848,0,945.1184295445364,0,0,0,0.10515899956226349,0,0,0 +2288,0,0,-0,-0,1.4726804087116738,6.477720022201538,0,0.003292191463212172,0,111.66800053914388,0,3.354422072569529,0,3.7294299602508545,0,6.056420048077901,0,1.4398470222949982,0,31.739593823750813,0,5.069590608278911,0,0,431.7670160929362,0,911.8089192708333,82.69680108906705,399.2410024007161,316.47223060920396,4.3326000013621524e-4,0,2.4684800155228004e-4,0,0,0,1.9802299837271373,0,0.07041105007131894,0,5.90845000743866,0,0.029413299945493538,0,9.453150113423666,0,3.9198600279632956e-4,0,0,0,7.673489926673938e-5,0,9.894619870465249e-5,0,403.8939819335937,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.1509002049764,0,945.1184295445364,0,0,0,0.10366799992819627,0,0,0 +2289,0,0,-0,-0,1.4726804087116738,6.477070013682048,0,0.0031658813823014498,0,111.66599909464519,0,3.3174620270729065,0,3.7091799775759378,0,6.044949968655904,0,1.4118570784727733,0,31.420494079589844,0,5.069690624872844,0,0,431.7780125935872,0,911.8009084065754,82.69680108906705,399.1750030517578,316.47223060920396,3.8618699909420684e-4,0,2.3242499810294248e-4,0,0,0,1.9120099941889446,0,0.06514551521589358,0,5.784639954566956,0,0.028540100281437237,0,9.40836008389791,0,3.416049973263095e-4,0,0,0,6.774119962453067e-5,0,9.251860016471862e-5,0,403.8669815063476,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.14299964904785,0,945.1184295445364,0,0,0,0.1021980003764232,0,0,0 +2290,0,0,-0,-0,1.4726804087116738,6.476420005162557,0,0.0030444113460058966,0,111.664000193278,0,3.2809119820594788,0,3.689049998919169,0,6.033510009447734,0,1.384407142798106,0,31.104494094848633,0,5.069780508677165,0,0,431.7880172729492,0,911.7949117024739,82.69680108906705,399.10999806722003,316.47223060920396,3.442299979118009e-4,0,2.1884600088621178e-4,0,0,0,1.846150000890096,0,0.06027383729815483,0,5.663430015246074,0,0.02769290019447605,0,9.363779783248901,0,2.977009983927322e-4,0,0,0,5.980189992745485e-5,0,8.650870040582959e-5,0,403.83898417154944,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.135199546813965,0,945.1184295445364,0,0,0,0.1007489984234174,0,0,0 +2291,0,0,-0,-0,1.4726804087116738,6.475769996643066,0,0.0029276113297479847,0,111.66199938456218,0,3.2447619636853537,0,3.6690299908320108,0,6.022079984347026,0,1.3574972053368886,0,30.791794300079346,0,5.0698806047439575,0,0,431.79801177978516,0,911.7879079182942,82.69680108906705,399.04400126139325,316.47223060920396,3.068329994372713e-4,0,2.0605999937591454e-4,0,0,0,1.7825599908828735,0,0.05576672125607729,0,5.54475998878479,0,0.02687080002700289,0,9.319420019785563,0,2.594409985855843e-4,0,0,0,5.279339984554099e-5,0,8.088950077459837e-5,0,403.81198374430335,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.127299626668293,0,945.1184295445364,0,0,0,0.09932039926449458,0,0,0 +2292,0,0,-0,-0,1.4726804087116738,6.475120027860005,0,0.0028152912661122778,0,111.6590010325114,0,3.209011952082316,0,3.6491199930508933,0,6.010679999987285,0,1.3310972452163696,0,30.482194264729817,0,5.069970568021138,0,0,431.80802154541016,0,911.7829030354817,82.69680108906705,398.9779917399089,316.47223060920396,2.7350000164005905e-4,0,1.940220002628242e-4,0,0,0,1.7211699883143108,0,0.05159676757951578,0,5.428580005963643,0,0.026073200007279713,0,9.275270064671835,0,2.2609900285412246e-4,0,0,0,4.660640054983863e-5,0,7.563540081415947e-5,0,403.78498331705725,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.119399706522625,0,945.1184295445364,0,0,0,0.09791209983328979,0,0,0 +2293,0,0,-0,-0,1.4726804087116738,6.474479953447978,0,0.002707281227534016,0,111.65700022379558,0,3.173661947250366,0,3.6293200055758157,0,5.999299963315328,0,1.3051872849464417,0,30.17569414774577,0,5.0700706243515015,0,0,431.81801350911456,0,911.7769165039061,82.69680108906705,398.9129994710286,316.47223060920396,2.4378899979637936e-4,0,1.8268699811111824e-4,0,0,0,1.6618800262610118,0,0.04773878181974093,0,5.3148499727249146,0,0.025299299973994493,0,9.231329997380575,0,1.9704399892361835e-4,0,0,0,4.114470023826774e-5,0,7.072280034966146e-5,0,403.75798034667963,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.111599604288738,0,945.1184295445364,0,0,0,0.09652379962305228,0,0,0 +2294,0,0,-0,-0,1.4726804087116738,6.473829944928487,0,0.0026034211817507944,0,111.65500005086263,0,3.138701915740967,0,3.609619975090027,0,5.987939993540446,0,1.2797873417536418,0,29.872294584910076,0,5.070160587628682,0,0,431.8290100097656,0,911.7729187011718,82.69680108906705,398.8469975789388,316.47223060920396,2.1730699882027693e-4,0,1.7201499940711074e-4,0,0,0,1.6046500007311504,0,0.044169364807506405,0,5.2034900188446045,0,0.024548399883011978,0,9.187589963277182,0,1.7172299946347872e-4,0,0,0,3.632319991690262e-5,0,6.612939917734668e-5,0,403.73097991943354,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.10379997889201,0,945.1184295445364,0,0,0,0.09515519998967648,0,0,0 +2295,0,0,-0,-0,1.4726804087116738,6.473180015881856,0,0.002503541142990192,0,111.65300051371257,0,3.1041219234466553,0,3.5900399883588157,0,5.976609945297241,0,1.2548773884773254,0,29.571994463602703,0,5.070250630378723,0,0,431.8390197753906,0,911.7679036458333,82.69680108906705,398.78199768066406,316.47223060920396,1.93701998796314e-4,0,1.619669989546916e-4,0,0,0,1.54939000805219,0,0.04086691855142514,0,5.094479997952779,0,0.02381980000063777,0,9.144069910049438,0,1.496559986359595e-4,0,0,0,3.206689992415098e-5,0,6.18344993199571e-5,0,403.7049763997395,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.0958997408549,0,945.1184295445364,0,0,0,0.09380609914660454,0,0,0 +2296,0,0,-0,-0,1.4726804087116738,6.472530047098796,0,0.002407501102425158,0,111.64999961853027,0,3.069921831289927,0,3.57055002450943,0,5.965289950370789,0,1.2304674486319225,0,29.274694442749023,0,5.070350646972656,0,0,431.84900919596356,0,911.7629089355468,82.69680108906705,398.71700286865234,316.47223060920396,1.7266199817337716e-4,0,1.5250600093471198e-4,0,0,0,1.4960299928983052,0,0.037811546586453915,0,4.987749973932902,0,0.023112900089472532,0,9.100759983062744,0,1.304259991835958e-4,0,0,0,2.8309400173990678e-5,0,5.781869973967938e-5,0,403.67898050944007,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.08809995651245,0,945.1184295445364,0,0,0,0.09247609972953796,0,0,0 +2297,0,0,-0,-0,1.4726804087116738,6.471890012423198,0,0.002315141047195842,0,111.64799880981445,0,3.036111831665039,0,3.5511799653371177,0,5.953999916712443,0,1.2065275013446808,0,28.98039436340332,0,5.070440570513408,0,0,431.8590138753255,0,911.7589060465493,82.69680108906705,398.65199788411456,316.47223060920396,1.5390800035675056e-4,0,1.435979999466023e-4,0,0,0,1.4445099929968517,0,0.034984750362734,0,4.883260051409404,0,0.022427000105381012,0,9.057650089263916,0,1.1366800026735291e-4,0,0,0,2.4992400085466215e-5,0,5.406379993170655e-5,0,403.65298207600904,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.080199718475342,0,945.1184295445364,0,0,0,0.09116499995191892,0,0,0 +2298,0,0,-0,-0,1.4726804087116738,6.471240003903707,0,0.0022263309995954237,0,111.64599927266438,0,3.0026618440945945,0,3.5319100419680276,0,5.942729989687602,0,1.183057536681493,0,28.688994725545246,0,5.070530613263448,0,0,431.8690185546875,0,911.754908243815,82.69680108906705,398.5870005289714,316.47223060920396,1.3719099903634438e-4,0,1.352099995225823e-4,0,0,0,1.3947700063387554,0,0.03236932990451654,0,4.780970056851705,0,0.021761400004227955,0,9.014739990234375,0,9.906300025856278e-5,0,0,0,2.2064099842585467e-5,0,5.055290057498496e-5,0,403.62698872884107,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.072399934132893,0,945.1184295445364,0,0,0,0.08987260051071644,0,0,0 +2299,0,0,-0,-0,1.4726804087116738,6.470589955647786,0,0.002140920958481729,0,111.64399909973145,0,2.969591816266378,0,3.5127500096956887,0,5.931469957033793,0,1.1600475907325745,0,28.400594393412273,0,5.070620536804199,0,0,431.8780212402344,0,911.7499135335286,82.69680108906705,398.5229975382487,316.47223060920396,1.22290998964066e-4,0,1.2731300133358067e-4,0,0,0,1.3467399974664052,0,0.029949590253333252,0,4.680820027987163,0,0.021115599976231653,0,8.972050031026205,0,8.633519973955117e-5,0,0,0,1.947899954757304e-5,0,4.727009976098392e-5,0,403.6019846598307,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.06459967295329,0,945.1184295445364,0,0,0,0.08859840035438538,0,0,0 +2300,0,0,-0,-0,1.4726804087116738,6.469950040181478,0,0.002058790938463062,0,111.64100011189778,0,2.9368818203608194,0,3.493690013885498,0,5.920249978701274,0,1.137487639983495,0,28.11509434382121,0,5.07071057955424,0,0,431.8880132039388,0,911.7459004720051,82.69680108906705,398.458002726237,316.47223060920396,1.0900899966751847e-4,0,1.198779991682386e-4,0,0,0,1.3003699878851573,0,0.027710730209946632,0,4.582769989967346,0,0.020488999939213198,0,8.929550011952719,0,7.524309997582652e-5,0,0,0,1.719679994494072e-5,0,4.420060031407047e-5,0,403.57598114013666,5.996076398749985,80.88810880155661,60.373041712366394,7.759695079333649,13.183100141202104,-0.25547202359887744,25.056699752807617,0,945.1184295445364,0,0,0,0.08734239948292573,0,0,0 diff --git a/inst/input/tables/ssp585_emiss-constraints_rf.csv b/inst/input/tables/ssp585_emiss-constraints_rf.csv new file mode 100644 index 000000000..c10e9fecc --- /dev/null +++ b/inst/input/tables/ssp585_emiss-constraints_rf.csv @@ -0,0 +1,562 @@ +; ssp585 from rcmip +; hectordata 0.0.0.9000 +; commit dab9aad8750535b +; date Fri Nov 4 11:35:31 2022 +; UNITS:, PgC year-1, PgC year-1, PgC year-1, PgC year-1, Tg year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg CH4 year-1, ppm, Tg CO year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg N year-1, Tg year-1, Tg NMVOC year-1, Tg N year-1, Tg year-1, W m-2, ppt, ppt, Gg S year-1, W m-2, ppt, ppt, ppt, ppt, ppt, ppt +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_constrain,C2F6_emissions,CCl4_constrain,CCl4_emissions,CF4_constrain,CF4_emissions,CFC113_constrain,CFC113_emissions,CFC114_constrain,CFC114_emissions,CFC115_constrain,CFC115_emissions,CFC11_constrain,CFC11_emissions,CFC12_constrain,CFC12_emissions,CH3Br_constrain,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_constrain,CH3Cl_emissions,CH4_constrain,CH4_emissions,CO2_constrain,CO_emissions,HCFC141b_constrain,HCFC141b_emissions,HCFC142b_constrain,HCFC142b_emissions,HCFC22_constrain,HCFC22_emissions,HFC125_constrain,HFC125_emissions,HFC134a_constrain,HFC134a_emissions,HFC143a_constrain,HFC143a_emissions,HFC227ea_constrain,HFC227ea_emissions,HFC23_constrain,HFC23_emissions,HFC245_constrain,HFC245fa_emissions,HFC32_constrain,HFC32_emissions,HFC365_constrain,HFC365_emissions,HFC4310_constrain,HFC4310_emissions,N2O_constrain,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,RF_albedo,SF6_constrain,SF6_emissions,SO2_emissions,SV,halon1211_constrain,halon1211_emissions,halon1301_constrain,halon1301_emissions,halon2402_constrain,halon2402_emissions +1745,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,728.6180877685546,19.019783117809567,276.9859975179036,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7540486653645,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1746,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.704874674479,19.019783117809567,277.01399993896484,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.7850443522135,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1747,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,729.8320821126301,19.019783117809567,277.0439987182617,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.80204772949213,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1748,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.2330983479817,19.019783117809567,277.07999928792316,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8170496622721,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1749,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,730.9769846598306,19.019783117809567,277.10900115966797,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8330459594726,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1750,0.0025940126083577966,0.08117586739898679,0,0,2.097770755422972,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08773,0,457.00000254313153,4275.7449,731.4059956868489,19.019783117809567,277.1470031738281,348.5273587773604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8650512695312,0.05475141826198451,6.92769009144426,60.02182622415481,3.877282015259525,15.4476681469614,0,0,0,1221.927531322724,0.18574567415812035,0.004446572546536724,0.0077232726,0,0,0,0 +1751,0.0025941063027029847,0.0826692695573487,0,0,2.0729259257736388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1072,0,457.00000254313153,4276.7685,731.838165283203,18.915108869931455,277.18800099690753,343.9263672486595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.8940556844075,0.05578579647289745,6.860142184947855,59.08812628149409,3.8337729357251344,15.188716744277112,-0.00022945725475492763,0,0,1206.0681799841475,0.1857567460517512,0.004446572546536724,0.0077232726,0,0,0,0 +1752,0.0025952084646724115,0.0841901460141451,0,0,2.0643119329193533,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12502,0,457.00000254313153,4277.7049,732.8999735514321,18.889711811886766,277.22900136311847,341.8090339016869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.92705535888666,0.056839716429342754,6.819482036717451,58.63199702688318,3.8343718514044016,15.034475741403988,-4.5891450950985525e-4,0,0,1200.4278473396196,0.1857604715824308,0.004446572546536724,0.0077232726,0,0,0,0 +1753,0.0025953021590175993,0.08573900221733607,0,0,2.0719505635154682,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10373,0,457.00000254313153,4276.585999999999,733.634038289388,19.121377231171937,277.26300048828125,343.6754562091752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273.9730555216471,0.057913547319122724,6.88143852899345,59.02634940020826,3.8177943228183677,15.18254515100842,-6.883717642647818e-4,0,0,1207.227098535096,0.1857617169069504,0.004446572546536724,0.0077232726,0,0,0,0 +1754,0.0025964043209870257,0.0873163529136683,0,0,2.09934978275426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07356,0,457.00000254313153,4274.9998,734.2020212809243,19.50906106501577,277.3040033976237,349.81562520064375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.01604461669916,0.059007665304832875,7.015189223980566,60.269945173845855,3.847331336983454,15.55877304959727,-9.178290190197105e-4,0,0,1232.9531143620388,0.18576213564093827,0.004446572546536724,0.0077232726,0,0,0,0 +1755,0.0025975064829564486,0.08892272231974611,0,0,2.099173164966012,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09182,0,457.00000254313153,4275.9598,734.7360788981118,19.500454933311694,277.3510030110677,348.144667955229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.05104319254554,0.06012245365563151,6.9439890428442705,59.824933724698546,3.8866528883154143,15.358182527090067,-0.0011472862737746368,0,0,1223.0826850431558,0.16149051004268924,0.004446572546536724,0.0077232726,0,0,0,0 +1756,0.002775090479167637,0.09055864429624946,0,0,2.0689154070023212,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08556000000002,0,457.00000254313153,4275.6306,735.4210001627603,19.46253659981589,277.38899993896484,343.32315167584505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.07905069986975,0.06125830288149874,6.92271155666652,58.94682931223554,3.780146274357017,15.195776625722106,-0.001376743528529566,0,0,1211.479201655296,-0.06413990375550595,0.004446572546536724,0.0077232726,0,0,0,0 +1757,0.0027761926411370656,0.09222466252535721,0,0,2.1479236761828795,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09137,0,457.00000254313153,4275.9361,735.8930308024087,20.023540664144175,277.4419987996419,355.9418922631908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.09605153401685,0.06241561087003213,7.047674128999731,61.263692996283645,3.9984362659957116,15.704819120374072,-0.0016062007832844925,0,0,1255.6882474413671,0.06548148963396255,0.004446572546536724,0.0077232726,0,0,0,0 +1758,0.002777294803106484,0.09392133069143445,0,0,2.120611409560707,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09662,0,457.00000254313153,4276.2118,736.2069956461587,19.93400532918585,277.48900095621747,351.839749049401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.12904612223304,0.06359478302582648,6.995459767973222,60.43461244378834,3.951609319926169,15.514611629339965,-0.0018356580380394208,0,0,1241.8061904390202,0.143706674085902,0.004446572546536724,0.0077232726,0,0,0,0 +1759,0.0027783969650759127,0.09564921266504378,0,0,2.1172674310973973,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08372,0,457.00000254313153,4275.5338,736.0988871256509,20.14146621388408,277.5399983723958,351.50776272566816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.1650466918945,0.06479623241248693,7.045958325346581,60.44526305257086,3.8825594605141793,15.574013491239148,-0.0020651152927943475,0,0,1238.6934463843995,0.17156026373747926,0.004446572546536724,0.0077232726,0,0,0,0 +1760,0.002778490659421102,0.09740888269034213,0,0,2.127804104941503,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04022,0,457.00000254313153,4273.2473,735.484171549479,20.416797144500503,277.6050033569336,354.41828530815224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.19305165608716,0.06602037989732504,7.1280482855702605,61.0517247888764,3.870426966375627,15.819063930323424,-0.002294572547549277,0,0,1250.820917255113,0.18098830087140405,0.004446572546536724,0.0077232726,0,0,0,0 +1761,0.0030417996868854222,0.09920092557592508,0,0,2.1377569894528237,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09143,0,457.00000254313153,4275.9395,735.7630208333333,20.45599016898809,277.6639989217122,354.70796791995804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,274.22205098470045,0.06726765429878842,7.080969808277224,60.98422720066375,3.9477855453840847,15.691915882574792,-0.0025240298023042032,0,0,1256.5481216489331,0.1841585443588585,0.004446572546536724,0.0077232726,0,0,0,0 +1762,0.0030429071320477096,0.10102593688918185,0,0,2.101748108909336,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08127,0,457.00000254313153,4275.4052,736.3031056722004,20.451687381976814,277.7320022583008,349.24969722773284,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3203315e-8,0,0,0,0,0,1.5142326e-6,0,0,0,0,274.25004831949866,0.06853849253667572,7.072547337152548,60.0270893345371,3.8056067222316985,15.52593530614623,-0.002753487057059132,0,0,1235.176016491452,-0.7198788864817063,0.004446572546536724,0.0077232726,0,0,0,0 +1763,0.003044014577209992,0.10288452315422644,0,0,2.1070297579949187,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09332,0,457.00000254313153,4276.0386,737.1810404459634,20.54517933681397,277.7959976196289,350.0593349220327,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6788058e-7,0,0,0,0,0,1.2367808e-5,0,0,0,0,274.30205535888666,0.06983333978518949,7.067982584358078,60.127066272688566,3.846149431214471,15.526762487788051,-0.0029829443118140585,0,0,1242.4313344000275,-0.4399601212913509,0.004446572546536724,0.0077232726,0,0,0,0 +1764,0.0030451220223722732,0.10477730205346951,0,0,2.0715492266986275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.1104,0,457.00000254313153,4276.9364,738.1030629475911,20.26091721016315,277.8590037027995,342.04461065627544,0,0,0,0,0,0,0,0,0,0,0,0,5.745499576104152e-9,1.2683334e-6,0,0,0,0,3.1742572836890304e-7,2.4998684e-5,0,0,0,0,274.3400497436523,0.0711526496288805,6.89874574004507,58.43835716681741,3.8290033683946536,14.958698984764437,-0.003212401566568987,0,0,1212.8230980159792,-0.03904732457783037,0.004446572546536724,0.0077232726,0,0,0,0 +1765,0.0030462294675345533,0.10670490263289913,0,0,2.123600021913132,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07293,0,457.00000254313153,4274.9668,738.9860382080077,20.91915499807752,277.9129994710286,352.9327257663859,0,0,0,0,0,0,0,0,0,0,0,0,4.596399853321979e-8,1.3852706e-6,0,0,0,0,2.539405793792563e-6,3.0313258e-5,0,0,0,0,274.37204742431635,0.07249688422153833,7.112382325014417,60.629457859488916,3.8781552227346054,15.679924105503577,-0.0034418588213239137,0,0,1250.7252029507404,0.10958166609721692,0.004446572546536724,0.0077232726,0,0,0,0 +1766,0.0033962667106833934,0.10866796551113769,0,0,2.1104599771353545,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07758,0,457.00000254313153,4275.2111,739.831085205078,20.853591900632743,277.95800018310547,349.3806450006132,0,0,0,0,0,0,0,0,0,0,0,0,9.192799588220169e-8,1.4212948e-6,0,0,0,0,5.078811454950483e-6,3.4371719e-5,0,0,0,0,274.3920516967773,0.07386651444808362,7.0362965307494045,59.85878462626717,3.884852897551278,15.358830814708325,-0.00367131607607884,0,0,1244.142076911234,-0.17848752670419268,0.004446572546536724,0.0077232726,0,0,0,0 +1767,0.003397374155845676,0.11066714309234521,0,0,2.112460701438636,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08566,0,457.00000254313153,4275.6359,740.7289835611978,20.999179455660748,278.0169982910156,349.61609899642303,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199471148095e-7,1.4573362e-6,0,0,0,0,7.618217182425724e-6,3.8432158e-5,0,0,0,0,274.42605082194007,0.07526202008951893,7.045382426953697,59.89102690050866,3.880476348727496,15.400564496222026,-0.0039007733308337685,0,0,1243.3080558862168,-0.23003967707403605,0.004446572546536724,0.0077232726,0,0,0,0 +1768,0.003398481601007963,0.1127030997830392,0,0,2.183132040203538,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04673,0,457.00000254313153,4273.5893,741.2220560709634,21.659452113517297,278.07799530029297,362.65368482709385,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599176440337e-7,1.4932143e-6,0,0,0,0,1.0157622909900965e-5,4.247379e-5,0,0,0,0,274.44704691569007,0.07668388999099586,7.223617820830233,62.365825552982606,4.039005153575375,16.063730202230957,-0.004130230585588698,0,0,1294.7054231244865,0.0295441238874522,0.004446572546536724,0.0077232726,0,0,0,0 +1769,0.0033995890461702483,0.11477651221290339,0,0,2.1376337416440134,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0767,0,457.00000254313153,4275.165,741.7470499674478,21.496335350339965,278.135004679362,355.02541845168975,0,0,0,0,0,0,0,0,0,0,0,0,2.298199900015637e-7,1.5293427e-6,0,0,0,0,1.2697028751063044e-5,4.6544254e-5,0,0,0,0,274.4680506388346,0.07813262223305735,7.157863703024064,60.95040360500106,3.9146198633161595,15.735094791574257,-0.004359687840343624,0,0,1273.3622210005092,0.1325346158749756,0.004446572546536724,0.0077232726,0,0,0,0 +1770,0.003400696491332528,0.11688806945965896,0,0,2.1393647387522594,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04544,0,457.00000254313153,4273.5216,742.3010152180989,21.63439757224449,278.1939977010091,355.3605475565106,0,0,0,0,0,0,0,0,0,0,0,0,2.757839894229619e-7,1.5651961e-6,0,0,0,0,1.5236434516433897e-5,5.0583038e-5,0,0,0,0,274.49504852294916,0.0796087243061151,7.155978283657899,60.96602720867275,3.9271229910537153,15.742715085469241,-0.004589145095098551,0,0,1277.4922103572562,0.03636234846097209,0.004446572546536724,0.0077232726,0,0,0,0 +1771,0.0037688917930248853,0.11903847327807247,0,0,2.1009097006210053,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07227,0,457.00000254313153,4274.9318,742.8711649576821,21.428921101329358,278.2700017293294,347.8619882938519,0,0,0,0,0,0,0,0,0,0,0,0,3.2174798529164644e-7,1.6013494e-6,0,0,0,0,1.7775840206013527e-5,5.4656378000000014e-5,0,0,0,0,274.5130513509114,0.08111271328822328,7.069218405010363,59.42424032933085,3.843192572805414,15.321977391799376,-0.0048186023498534795,0,0,1230.1282386704063,0.08889303627750589,0.004446572546536724,0.0077232726,0,0,0,0 +1772,0.00377000487949438,0.12122843833317697,0,0,2.0870775413423877,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08887,0,457.00000254313153,4275.8046,744.0189666748046,21.39461571539237,278.33399963378906,344.613473832749,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198589728254e-7,1.6374741e-6,0,0,0,0,2.0315245971384382e-5,5.8726423e-5,0,0,0,0,274.5310490926106,0.08264511602621083,7.043230561502576,58.72495294608385,3.8129800371340568,15.114183286240658,-0.0050480596046084064,0,0,1217.8363475826973,0.15110052169091734,0.004446572546536724,0.0077232726,0,0,0,0 +1773,0.003771117965963877,0.12345869243778378,0,0,2.0927556031478227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.06952,0,457.00000254313153,4274.7874,744.6629842122395,21.59523139318095,278.41199493408203,345.7768090889352,0,0,0,0,0,0,0,0,0,0,0,0,4.136759793974913e-7,1.6733555e-6,0,0,0,0,2.2854651888337685e-5,6.276843000000001e-5,0,0,0,0,274.54705047607416,0.08420646932023572,7.104503735011084,58.916568849809806,3.795742518659598,15.204663791112324,-0.005277516859363335,0,0,1220.6866453772807,0.17402255695782867,0.004446572546536724,0.0077232726,0,0,0,0 +1774,0.0037722310524333762,0.12572997679436368,0,0,2.1549007405251683,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0265,0,457.00000254313153,4272.5262,744.8780721028645,22.25970772945681,278.49099985758465,358.1035850352457,0,0,0,0,0,0,0,0,0,0,0,0,4.5963998474007894e-7,1.709014e-6,0,0,0,0,2.539405750212609e-5,6.678474599999999e-5,0,0,0,0,274.56504567464185,0.08579732011182588,7.347701469094086,61.31335787055999,3.8921060554545215,15.87559317662792,-0.005506974114118261,0,0,1266.4286163930858,0.18181443567658306,0.004446572546536724,0.0077232726,0,0,0,0 +1775,0.0037733441389028706,0.12804304624137816,0,0,2.148996596875075,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05246,0,457.00000254313153,4273.8905,745.3670603434243,22.200963290559795,278.58600362141925,355.04717285558434,0,0,0,0,0,0,0,0,0,0,0,0,5.056039735033361e-7,1.7452255e-6,0,0,0,0,2.7933463115914492e-5,7.0864778e-5,0,0,0,0,274.5790456136067,0.08741822567547253,7.269644819584187,60.54083046418634,3.9181029245147934,15.589135703603631,-0.0057364313688731865,0,0,1250.604503536799,0.18443600769588672,0.004446572546536724,0.0077232726,0,0,0,0 +1776,0.004161708793079992,0.13039866950414225,0,0,2.1121431315177817,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03943999999998,0,457.00000254313153,4273.2061,746.0480702718098,22.141942125209106,278.68299865722656,348.8985525123486,0,0,0,0,0,0,0,0,0,0,0,0,5.515679741089722e-7,1.7810977e-6,0,0,0,0,3.0472869184450246e-5,7.490574e-5,0,0,0,0,274.59404754638666,0.08906975381384338,7.261469977422546,59.38114479685163,3.777483547468073,15.370077015958627,-0.005965888623628117,0,0,1235.2601205170242,0.1853168155815639,0.004446572546536724,0.0077232726,0,0,0,0 +1777,0.004162821879549489,0.13279762945030274,0,0,2.170244783620918,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05273,0,457.00000254313153,4273.9048,746.7369181315103,22.568710059808843,278.7739969889323,357.54536101292035,0,0,0,0,0,0,0,0,0,0,0,0,5.975319747146083e-7,1.8172253e-6,0,0,0,0,3.301227479823865e-5,7.8976112e-5,0,0,0,0,274.6060485839843,0.09075248305668364,7.355973763265293,60.89349007083899,3.9379814138510616,15.673457529791746,-0.0061953458783830465,0,0,1262.6435516726208,0.1856126856704365,0.004446572546536724,0.0077232726,0,0,0,0 +1778,0.004163934966018991,0.13524072335001636,0,0,2.19800140223097,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04465,0,457.00000254313153,4273.48,746.7510579427083,22.856080929571224,278.86599985758465,362.75541346308773,0,0,0,0,0,0,0,0,0,0,0,0,6.434959753202444e-7,1.8531337e-6,0,0,0,0,3.5551680412027054e-5,8.3021224e-5,0,0,0,0,274.61804707845045,0.09246700286347481,7.434606066614661,61.78348694597739,4.021077006745745,15.899456247670447,-0.006424803133137972,0,0,1282.2802932337786,0.18571207513321009,0.004446572546536724,0.0077232726,0,0,0,0 +1779,0.004165048052488488,0.1377287631409144,0,0,2.1596157774386384,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03691,0,457.00000254313153,4273.0734,746.907023111979,22.820635694370733,278.9590021769206,355.9261715181252,0,0,0,0,0,0,0,0,0,0,0,0,6.894599664519774e-7,1.889034e-6,0,0,0,0,3.809108632898036e-5,8.706542400000001e-5,0,0,0,0,274.6290486653645,0.09421391382992209,7.418773457145868,60.500814881249,3.8656452035830986,15.627457862925702,-0.006654260387892898,0,0,1253.8091981813902,0.18574546502203013,0.004446572546536724,0.0077232726,0,0,0,0 +1780,0.004167169606582223,0.14026257569794193,0,0,2.18926758767753,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98817,0,457.00000254313153,4270.5109999999995,747.2310638427733,23.24616665378551,279.0540033976237,361.61404216072185,0,0,0,0,0,0,0,0,0,0,0,0,7.354239623206619e-7,1.9244033000000003e-6,0,0,0,0,4.063049224593366e-5,9.1048394e-5,0,0,0,0,274.639050801595,0.09599382789834296,7.569429120654667,61.61859566014493,3.8711479642945226,16.01838080056119,-0.0068837176426478274,0,0,1274.797708672403,0.18575668147078706,0.004446572546536724,0.0077232726,0,0,0,0 +1781,0.004659412904951052,0.14284300310816161,0,0,2.189441199921453,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04236000000002,0,457.00000254313153,4273.3596,747.7660471598306,23.249655483903965,279.14499918619794,360.09005386289476,0,0,0,0,0,0,0,0,0,0,0,0,7.81387962926298e-7,1.9610810000000003e-6,0,0,0,0,4.316989755655717e-5,9.5182182e-5,0,0,0,0,274.6470464070637,0.09780736857203022,7.505783352638315,61.19330647262292,3.9207239231952387,15.80695226528239,-0.007113174897402756,0,0,1277.5362524488116,0.18576045057214427,0.004446572546536724,0.0077232726,0,0,0,0 +1782,0.00466053247031568,0.14547090295061266,0,0,2.160522701160256,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03125,0,457.00000254313153,4272.7759,748.2900187174478,23.341758118914438,279.2430013020833,356.04655462228243,0,0,0,0,0,0,0,0,0,0,0,0,8.273519635319341e-7,1.9969148e-6,0,0,0,0,4.570930377667537e-5,9.9218691e-5,0,0,0,0,274.65404764811194,0.09965517113366511,7.519625787694825,60.48572145305894,3.7938381853855025,15.712820826828775,-0.007342632152157681,0,0,1261.0508762359207,0.18576171303887845,0.004446572546536724,0.0077232726,0,0,0,0 +1783,0.004662660503304549,0.14814714858131856,0,0,2.150725589743228,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0436,0,457.00000254313153,4273.4248,748.6270294189452,23.379916787266467,279.33999888102215,354.28692425367274,0,0,0,0,0,0,0,0,0,0,0,0,8.733159641375702e-7,2.0330816e-6,0,0,0,0,4.824870908729887e-5,1.0329359e-4,0,0,0,0,274.6580505371093,0.1015378828678566,7.496232273464098,60.10171272373322,3.7887381780047664,15.607260472139073,-0.007572089406912609,0,0,1258.691215611721,-1.6071113091275233,0.004446572546536724,0.0077232726,0,0,0,0 +1784,0.004663780068669177,0.15087262942353824,0,0,2.140542212443426,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.05531,0,457.00000254313153,4274.0405,748.9340260823567,23.29404230240209,279.4340006510417,350.5694962640399,0,0,0,0,0,0,0,0,0,0,0,0,9.192799552693032e-7,2.0692567e-6,0,0,0,0,5.078811530741708e-5,1.0736946e-4,0,0,0,0,274.6640548706054,0.10345616328788484,7.381156400424443,59.21225989324307,3.835360348467436,15.228141255684468,-0.007801546661667537,0,0,1241.0913844308948,-3.4875496425880166,0.004446572546536724,0.0077232726,0,0,0,0 +1785,0.004666993144531652,0.1536482512633568,0,0,2.1658396912622853,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02817,0,457.00000254313153,4272.6136,749.2520395914712,23.80210553725873,279.53200276692706,356.805125351722,0,0,0,0,0,0,0,0,0,0,0,0,9.652439748227455e-7,2.1048124e-6,0,0,0,0,5.332752031487568e-5,1.113739e-4,0,0,0,0,274.66904958089185,0.1054106843667286,7.538152323485599,60.494479362546464,3.8216491921096964,15.732711479772949,-0.00803100391642247,0,0,1266.5681498543852,-1.3227211965923305,0.004446572546536724,0.0077232726,0,0,0,0 +1786,0.005295379572172684,0.15647493655071468,0,0,2.158683484868033,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02684000000001,0,457.00000254313153,4272.5442,749.563980102539,23.831994998220747,279.6290003458659,354.20587729579694,0,0,0,0,0,0,0,0,0,0,0,0,1.011207928058866e-6,2.14077e-6,0,0,0,0,5.586692683815878e-5,1.1542471e-4,0,0,0,0,274.67605336507154,0.10740213077245707,7.4910842541914535,59.91468240707549,3.8263162148060967,15.467157122376957,-0.008260461171177394,0,0,1263.905903422694,-0.4872575238005176,0.004446572546536724,0.0077232726,0,0,0,0 +1787,0.005297507605161552,0.15935362470597414,0,0,2.18517929356942,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.03415,0,457.00000254313153,4272.9283,749.6690826416014,24.17652817967206,279.72900136311847,358.7933682521366,0,0,0,0,0,0,0,0,0,0,0,0,1.0571719712970662e-6,2.1768802999999995e-6,0,0,0,0,5.840633214878229e-5,1.1949308e-4,0,0,0,0,274.6780471801757,0.10943120010806894,7.555171969721947,60.75335707654267,3.8851079963013144,15.71033145518615,-0.00848991842593232,0,0,1281.3314192960927,-0.09613776148013498,0.004446572546536724,0.0077232726,0,0,0,0 +1788,0.005298627170526176,0.16228527243212662,0,0,2.255223483707013,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9922,0,457.00000254313153,4270.7227,750.1610209147134,24.855928924260272,279.83099873860675,371.3570923496072,0,0,0,0,0,0,0,0,0,0,0,0,1.1031359387440414e-6,2.2120831e-6,0,0,0,0,6.094573836890049e-5,1.2345688999999995e-4,0,0,0,0,274.67704772949213,0.11149860315586238,7.730934740743885,63.12433046674855,4.038519355079948,16.343354337191045,-0.008719375680687248,0,0,1326.080725437415,0.0885310651741068,0.004446572546536724,0.0077232726,0,0,0,0 +1789,0.005300755203515047,0.16527085403274291,0,0,2.2076646319075275,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0242,0,457.00000254313153,4272.405,750.6470489501952,24.717072836600927,279.93299865722656,363.4416445787676,0,0,0,0,0,0,0,0,0,0,0,0,1.149099944086629e-6,2.2486571e-6,0,0,0,0,6.348514337635909e-5,1.2757871e-4,0,0,0,0,274.6780522664387,0.11360506412642196,7.663516243062957,61.632292379507476,3.911091424062233,16.00040861482673,-0.008948832935442175,0,0,1300.9350554928549,0.1529858926017705,0.004446572546536724,0.0077232726,0,0,0,0 +1790,0.005302883236503912,0.16831136173577357,0,0,2.2164369958956196,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99139,0,457.00000254313153,4270.6805,751.1640370686848,24.942208573783375,280.03700256347656,364.880216392627,0,0,0,0,0,0,0,0,0,0,0,0,1.195063968377023e-6,2.2839743e-6,0,0,0,0,6.60245495964773e-5,1.3155567e-4,0,0,0,0,274.67705281575513,0.11575132091230927,7.680254371033305,61.84599180813865,3.9372032070765473,16.056743908676,-0.009178290190197105,0,0,1304.8004807748046,0.1747471382296157,0.004446572546536724,0.0077232726,0,0,0,0 +1791,0.005920182770600551,0.1714078060233054,0,0,2.172583556470899,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02128,0,457.00000254313153,4272.2515,751.7080535888671,24.778432167331218,280.14099884033203,356.6583861664455,0,0,0,0,0,0,0,0,0,0,0,0,1.2410279168761917e-6,2.320551e-6,0,0,0,0,6.85639552102657e-5,1.3567783e-4,0,0,0,0,274.6740468343098,0.11793812534654649,7.556943543496139,60.21873920423577,3.848117366332663,15.616449876377857,-0.00940774744495203,0,0,1284.7688041559788,0.18206199111341248,0.004446572546536724,0.0077232726,0,0,0,0 +1792,0.006098811288557544,0.17456121596738536,0,0,2.1616507929601063,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04466,0,457.00000254313153,4273.4807,752.2780151367186,24.818892944319888,280.2409973144531,354.25153761087523,0,0,0,0,0,0,0,0,0,0,0,0,1.286991960114392e-6,2.3570319e-6,0,0,0,0,7.110336143038391e-5,1.3978892e-4,0,0,0,0,274.6740468343098,0.12016624346598324,7.499155044750518,59.70568574139235,3.8521685509833974,15.44666919254658,-0.009637204699706955,0,0,1279.936623401035,0.18451935326733201,0.004446572546536724,0.0077232726,0,0,0,0 +1793,0.00610508215549315,0.17777263957202216,0,0,2.1532738339280715,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.02605,0,457.00000254313153,4272.5025,752.6820678710936,25.03153140920904,280.33199818929035,353.37230933667234,0,0,0,0,0,0,0,0,0,0,0,0,1.3329559275613672e-6,2.3926083e-6,0,0,0,0,7.364276643784251e-5,1.4379579e-4,0,0,0,0,274.65905253092444,0.12243645577963895,7.518120739119681,59.58493949599902,3.7981346475872892,15.477979537880952,-0.009866661954461885,0,0,1276.6758910223705,0.18534481647704806,0.004446572546536724,0.0077232726,0,0,0,0 +1794,0.006092419359098298,0.18104314412147968,0,0,2.2138431157688125,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98417,0,457.00000254313153,4270.3009999999995,753.2520446777343,25.76753777758947,280.41500091552734,365.72191403060503,0,0,0,0,0,0,0,0,0,0,0,0,1.3789199329039548e-6,2.4276195000000003e-6,0,0,0,0,7.618217265796072e-5,1.4773748e-4,0,0,0,0,274.6480560302734,0.1247495575421151,7.731535991085819,62.03822453198564,3.901984420737959,16.16525997375536,-0.010096119209216816,0,0,1323.3915439011364,0.18562210038833984,0.004446572546536724,0.0077232726,0,0,0,0 +1795,0.006095932503617563,0.18437381653497847,0,0,2.2026922727614937,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01093,0,457.00000254313153,4271.7076,753.8410644531249,25.77334281488129,280.4919967651367,362.19212268926736,0,0,0,0,0,0,0,0,0,0,0,0,1.4248839571943488e-6,2.4642054e-6,0,0,0,0,7.872157827174912e-5,1.5186068000000002e-4,0,0,0,0,274.63105265299475,0.12710635903217238,7.626169221355247,61.24273214189555,3.9191066213899726,15.883131946283404,-0.01032557646397174,0,0,1307.1177907303108,0.18571524277301074,0.004446572546536724,0.0077232726,0,0,0,0 +1796,0.006396386441099536,0.18776576372792214,0,0,2.1531546155773227,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99978,0,457.00000254313153,4271.1214,754.5180511474608,25.74058406529963,280.5549952189128,354.4783029356138,0,0,0,0,0,0,0,0,0,0,0,0,1.4708479056935175e-6,2.4998985e-6,0,0,0,0,8.126098449186732e-5,1.55881e-4,0,0,0,0,274.6150538126627,0.1295076858365712,7.5818630966127785,59.864242428463136,3.749609514115161,15.62836980130604,-0.010555033718726669,0,0,1286.4148371024328,0.056138903072538514,0.004446572546536724,0.0077232726,0,0,0,0 +1797,0.006712627262260326,0.19122011297976946,0,0,2.2134750361996645,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01623,0,457.00000254313153,4271.986,755.2560729980468,26.23006225836581,280.6230010986328,363.54823719907995,0,0,0,0,0,0,0,0,0,0,0,0,1.5168119489317178e-6,2.5362748e-6,0,0,0,0,8.380038949932593e-5,1.5998003e-4,0,0,0,0,274.6010538736979,0.1319543791392746,7.636302581611899,61.4713769474247,3.9409741021501565,15.938653048219956,-0.010784490973481595,0,0,1322.1792002170396,-0.04279485298025665,0.004446572546536724,0.0077232726,0,0,0,0 +1798,0.006990649026827593,0.19473801230867469,0,0,2.2340562829342026,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0081,0,457.00000254313153,4271.559,756.1130472819009,26.546440122432795,280.68200429280597,367.6501027985187,0,0,0,0,0,0,0,0,0,0,0,0,1.562775925852596e-6,2.5720343e-6,0,0,0,0,8.633979571944413e-5,1.6400798999999998e-4,0,0,0,0,274.5840530395507,0.1344472960161143,7.671017715782881,62.197639026391784,4.015700360730371,16.12667274116127,-0.011013948228236524,0,0,1344.4943107799907,0.057545267787991024,0.004446572546536724,0.0077232726,0,0,0,0 +1799,0.007363034100288113,0.19832063085301946,0,0,2.2072921648839388,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99068,0,457.00000254313153,4270.6431,756.9420471191405,26.706488169365446,280.7529983520508,363.4860469038741,0,0,0,0,0,0,0,0,0,0,0,0,1.6087399217212806e-6,2.6075323e-6,0,0,0,0,8.887920133323253e-5,1.6800578999999998e-4,0,0,0,0,274.5700480143229,0.13698730973502452,7.674462849763394,61.49623019706863,3.882903388386678,16.03734278779562,-0.011243405482991452,0,0,1332.7327654492608,0.14035414546167346,0.004446572546536724,0.0077232726,0,0,0,0 +1800,0.007853247961014498,0.20196915925996428,0,0,2.2159740553936684,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95838,0,457.00000254313153,4268.9449,757.7620493570962,27.056343077702923,280.83399709065753,365.8466368441075,0,0,0,0,0,0,0,0,0,0,0,0,1.6547039554855776e-6,2.6425936e-6,0,0,0,0,9.141860694702093e-5,1.7195328999999998e-4,0,0,0,0,274.54705047607416,0.13957531006194712,7.7406453217716145,62.00320914073126,3.867691465248536,16.242141697691363,-0.011477676635976337,0,0,1351.4018850842497,0.17040288697636866,0.004446572546536724,0.0077232726,0,0,0,0 +1801,0.0077923631049037195,0.2056848100811483,0,0,2.219401689900871,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01099,0,457.00000254313153,4271.7107,758.5840606689452,27.12488718150826,280.9189987182617,364.91706838648093,0,0,0,0,0,0,0,0,0,0,0,0,1.7006678945108433e-6,2.6800125e-6,0,0,0,0,9.395801256080934e-5,1.7617249e-4,0,0,0,0,274.5320510864257,0.1422122035725165,7.701186978248275,61.665647788634544,3.9218437626561613,16.063733218320355,-0.011716461343221001,0,0,1346.3126694277855,0.1805980962819972,0.004446572546536724,0.0077232726,0,0,0,0 +1802,0.010116776318211833,0.20946881817566826,0,0,2.2026926609955066,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99468,0,457.00000254313153,4270.8532,759.5070699055989,27.339784315547476,280.9939956665039,362.96270750693964,0,0,0,0,0,0,0,0,0,0,0,0,1.7466319377490436e-6,2.7155059e-6,0,0,0,0,9.649741878092755e-5,1.8016977e-4,0,0,0,0,274.5230509440104,0.14489891396963264,7.763054085257172,61.32615659022455,3.814905719116379,16.0758236117733,-0.011955246050465669,0,0,1365.7924593201149,0.18402739824539616,0.004446572546536724,0.0077232726,0,0,0,0 +1803,0.008763957676258299,0.2133224411204717,0,0,2.1800158282432216,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0108,0,457.00000254313153,4271.7009,760.5080464680989,27.320499854247753,281.07299550374347,358.65077997506035,0,0,0,0,0,0,0,0,0,0,0,0,1.7925959146699217e-6,2.7519421e-6,0,0,0,0,9.903682439471595e-5,1.8427573e-4,0,0,0,0,274.50505065917963,0.1476363824070339,7.720863756565482,60.404341817460505,3.773697198795284,15.83103087932591,-0.01219403075771034,0,0,1340.0232615916289,0.18517955647392584,0.004446572546536724,0.0077232726,0,0,0,0 +1804,0.009565590378222546,0.2172469596283,0,0,2.197298086929074,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.0121,0,457.00000254313153,4271.7691,761.5410817464192,27.46474997353236,281.15699768066406,359.52869597563125,0,0,0,0,0,0,0,0,0,0,0,0,1.8385599105386063e-6,2.7879493e-6,0,0,0,0,1.0157623000850435e-4,1.8833223e-4,0,0,0,0,274.4860483805338,0.1504255678189829,7.687086730342071,60.36470274902327,3.8714733047891783,15.676248110600966,-0.012432815464955008,0,0,1347.9906823261654,0.1855665834344882,0.004446572546536724,0.0077232726,0,0,0,0 +1805,0.009351564248471856,0.2212436779733203,0,0,2.215042398148324,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98963,0,457.00000254313153,4270.588,762.6710561116536,27.95079819780367,281.23399607340497,364.30370432998336,0,0,0,0,0,0,0,0,0,0,0,0,1.8845239443029034e-6,2.8232141e-6,0,0,0,0,1.0411563562229276e-4,1.9230319e-4,0,0,0,0,274.46604665120435,0.15326744725618094,7.835162208853216,61.31991145746931,3.843518327224849,16.094154796194182,-0.012671600172199671,0,0,1367.0219318674867,0.18569659271698705,0.004446572546536724,0.0077232726,0,0,0,0 +1806,0.009786482457224585,0.22531392442458775,0,0,2.222822584756122,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98239,0,457.00000254313153,4270.2074,763.799077351888,28.134372446801326,281.32200113932294,364.34322933574117,0,0,0,0,0,0,0,0,0,0,0,0,1.930487997015007e-6,2.8589339e-6,0,0,0,0,1.0665504184241097e-4,1.9632654e-4,0,0,0,0,274.44705200195307,0.15616301622802836,7.843541453054056,61.22344968188294,3.8770122853259146,15.951443167692844,-0.01291038487944434,0,0,1370.2972329819197,0.18574025872045344,0.004446572546536724,0.0077232726,0,0,0,0 +1807,0.01047013855726404,0.22945905168748248,0,0,2.2398719818574606,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99423,0,457.00000254313153,4270.8298,765.0220794677733,28.45865602722048,281.40900166829425,367.234932813752,0,0,0,0,0,0,0,0,0,0,0,0,1.976451850775144e-6,2.8952686e-6,0,0,0,0,1.0919444745619937e-4,2.0042079e-4,0,0,0,0,274.4280471801757,0.15911328905135125,7.906227328891799,61.706469136452746,3.9067413834348796,16.117564084518662,-0.013149169586689009,0,0,1389.725529173022,0.1857549291426783,0.004446572546536724,0.0077232726,0,0,0,0 +1808,0.0097850874703066491,0.23368043735326766,0,0,2.311936484434354,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95199,0,457.00000254313153,4268.6094,766.3190816243489,29.185241168144344,281.4959996541341,380.03527200344246,0,0,0,0,0,0,0,0,0,0,0,0,2.022415856117732e-6,2.9298066e-6,0,0,0,0,1.1173385246365797e-4,2.0430798e-4,0,0,0,0,274.41105143229163,0.16211929920571624,8.095303457182244,64.08195973155631,4.0703582727403695,16.731546899631116,-0.013387954293933677,0,0,1425.5751228095764,0.1857598571570931,0.004446572546536724,0.0077232726,0,0,0,0 +1809,0.009793704265605399,0.23797948435691788,0,0,2.267442640293564,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.979,0,457.00000254313153,4270.0292,767.6550801595051,29.128658126909023,281.56599680582684,372.8486855412818,0,0,0,0,0,0,0,0,0,0,0,0,2.068379899355932e-6,2.9666566e-6,0,0,0,0,1.1427325929010597e-4,2.084616e-4,0,0,0,0,274.3830540974934,0.16518209969545813,8.062766978193096,62.71002212876877,3.9400684962479615,16.440165993612062,-0.013626739001178344,0,0,1403.1315870359595,-3.365688134186352,0.004446572546536724,0.0077232726,0,0,0,0 +1810,0.010412685282412803,0.24235762144337059,0,0,2.279523715758953,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93988,0,457.00000254313153,4267.9729,769.1471150716145,29.42453241885191,281.6480026245117,374.7180119050739,0,0,0,0,0,0,0,0,0,0,0,0,2.1143439425941324e-6,3.001229600000001e-6,0,0,0,0,1.1681266429756458e-4,2.1235282e-4,0,0,0,0,274.3600463867187,0.16830276341854683,8.107079152206923,62.97351665449524,3.9615915998724422,16.525388081401466,-0.013865523708423014,0,0,1414.1945614469914,-2.313830028435405,0.004446572546536724,0.0077232726,0,0,0,0 +1811,0.011014901476711613,0.24681630364235504,0,0,2.252530235973812,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96903,0,457.00000254313153,4269.505,770.71804300944,29.40578755819684,281.71799723307294,369.2694863079116,0,0,0,0,0,0,0,0,0,0,0,0,2.1603079858323326e-6,3.0381873e-6,0,0,0,0,1.1935207051768278e-4,2.1651886e-4,0,0,0,0,274.3340479532877,0.17148238354242323,8.026948341108737,61.82960599561912,3.9187456997844685,16.18886557071267,-0.014104308415667684,0,0,1403.686743399878,-0.7123016214302859,0.004446572546536724,0.0077232726,0,0,0,0 +1812,0.011395911929257216,0.2513570127519567,0,0,2.228006934512883,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99029,0,457.00000254313153,4270.6225,772.2101186116536,29.420298496849927,281.7899983723958,364.5806874718721,0,0,0,0,0,0,0,0,0,0,0,0,2.20627183959247e-6,3.0749001e-6,0,0,0,0,1.2189147552514139e-4,2.2065669e-4,0,0,0,0,274.3040517171223,0.17472207388693542,7.965169636083453,60.85746996681422,3.875988658118611,15.929050627989685,-0.014343093122912353,0,0,1394.884132023951,-0.11856299687933905,0.004446572546536724,0.0077232726,0,0,0,0 +1813,0.011449080560791872,0.25598125783107806,0,0,2.2319968590304815,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97005,0,457.00000254313153,4269.5589,773.7009938557942,29.7784760297943,281.8580017089844,365.91388742059627,0,0,0,0,0,0,0,0,0,0,0,0,2.2522358449350577e-6,3.110098e-6,0,0,0,0,1.244308817452596e-4,2.2461994e-4,0,0,0,0,274.2670516967773,0.17802296931450928,8.032995952278533,61.13613019851266,3.844088557026285,16.064915035546967,-0.014581877830157016,0,0,1400.3255529877902,0.08341540584179588,0.004446572546536724,0.0077232726,0,0,0,0 +1814,0.011703715690574799,0.26069057570095894,0,0,2.291579691300283,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93883999999998,0,457.00000254313153,4267.9182,774.8281351725259,30.547851858136706,281.9310048421224,377.9855416791419,0,0,0,0,0,0,0,0,0,0,0,0,2.298199888173258e-6,3.1448486e-6,0,0,0,0,1.269702879653778e-4,2.2853159e-4,0,0,0,0,274.2310485839843,0.18138622612769045,8.255365791822651,63.491928228846156,3.9468734522371403,16.719923485538892,-0.014820662537401687,0,0,1449.119879767822,0.1513774178324831,0.004446572546536724,0.0077232726,0,0,0,0 +1815,0.012094116593579975,0.2654865314559236,0,0,2.2873246936294374,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94955,0,457.00000254313153,4268.4808,776.1400197347004,30.644339540877155,281.9919967651367,375.58066479556715,0,0,0,0,0,0,0,0,0,0,0,0,2.344163931411458e-6,3.1811772e-6,0,0,0,0,1.295096929728364e-4,2.3262515e-4,0,0,0,0,274.1810506184895,0.18481302247419681,8.178894557702046,62.871575698722964,3.9779982661109097,16.487496881933723,-0.015059447244646357,0,0,1442.8346042595695,-3.3418049013197435,0.004446572546536724,0.0077232726,0,0,0,0 +1816,0.013382562792105972,0.27037071898352416,0,0,2.2610219999980314,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93504,0,457.00000254313153,4267.7184,777.380157470703,30.799856219058316,282.0590006510417,371.6298227687404,0,0,0,0,0,0,0,0,0,0,0,0,2.3901279746496584e-6,3.2165261e-6,0,0,0,0,1.320490991929546e-4,2.3660577e-4,0,0,0,0,274.1430511474609,0.1883045587596232,8.188247476569973,62.14643251873565,3.866008444908697,16.395033850520726,-0.01538342230023426,0,0,1449.5176305014372,-4.328813791919775,0.004446572546536724,0.0077232726,0,0,0,0 +1817,0.013970105691413876,0.2753447614942531,0,0,2.2961805691271597,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95336,0,457.00000254313153,4268.6815,778.9910329182942,31.198395410102997,282.1270014444987,376.4429441283954,0,0,0,0,0,0,0,0,0,0,0,0,2.4360918284097957e-6,3.2531745000000007e-6,0,0,0,0,1.345885054130728e-4,2.4073619e-4,0,0,0,0,274.10705566406244,0.1918620580679428,8.22082538393248,62.94153100870699,3.9812025759726706,16.517228645555626,-0.015754264592881567,0,0,1472.005826655642,-1.519519756284862,0.004446572546536724,0.0077232726,0,0,0,0 +1818,0.01405484729122227,0.2804103120610006,0,0,2.335490104759264,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94012,0,457.00000254313153,4267.9855,780.3030497233071,31.68760831940507,282.1999994913737,383.9142096017897,0,0,0,0,0,0,0,0,0,0,0,0,2.4820558337523835e-6,3.2885565000000008e-6,0,0,0,0,1.371279092078718e-4,2.4472062e-4,0,0,0,0,274.07105000813795,0.19548676658995365,8.306817108343136,64.26768048931984,4.1092958455936754,16.849648882949314,-0.01612510688552888,0,0,1503.3307533939446,-0.39544551956287705,0.004446572546536724,0.0077232726,0,0,0,0 +1819,0.01412101034059915,0.28556905416843703,0,0,2.304129482409452,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92235,0,457.00000254313153,4267.0511,781.42605082194,31.84544135012051,282.27200571695965,378.33258383444644,0,0,0,0,0,0,0,0,0,0,0,0,2.5280198769905837e-6,3.3237292e-6,0,0,0,0,1.396673166406496e-4,2.4868094e-4,0,0,0,0,274.05004882812494,0.19917995405981814,8.302878858634369,63.25758927353961,3.9635191901767652,16.665198211860137,-0.016495949178176192,0,0,1480.3972085438447,-0.009852951526022849,0.004446572546536724,0.0077232726,0,0,0,0 +1820,0.014336733148844732,0.29082270227250195,0,0,2.32104876587155,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88909,0,457.00000254313153,4265.3029,782.4270782470702,32.333394668843965,282.3460006713867,382.4197482792824,0,0,0,0,0,0,0,0,0,0,0,0,2.573983920228784e-6,3.3582175000000007e-6,0,0,0,0,1.4220672286076783e-4,2.5256240000000004e-4,0,0,0,0,274.0070495605468,0.20294291419985105,8.41607797478937,64.0766432984354,3.958562233257077,16.963564409475474,-0.0168667914708235,0,0,1500.1274234919138,0.12003571660703966,0.004446572546536724,0.0077232726,0,0,0,0 +1821,0.014562069432518771,0.2961730023701861,0,0,2.3334837772109833,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93899,0,457.00000254313153,4267.9261,783.568130493164,32.52138863261211,282.4150034586589,382.89753410088764,0,0,0,0,0,0,0,0,0,0,0,0,2.6199479634669842e-6,3.396252e-6,0,0,0,0,1.4474612665556683e-4,2.5685255e-4,0,0,0,0,273.9700495402018,0.20677696517370964,8.396299170642942,63.987449087582284,4.029731628274296,16.860100322541292,-0.01723763376347081,0,0,1506.0001599344928,0.06037517262922151,0.004446572546536724,0.0077232726,0,0,0,0 +1822,0.015133379255268703,0.30162173257979613,0,0,2.3025151175170526,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92104,0,457.00000254313153,4266.9822,784.9560546874999,32.73451051970765,282.4769999186198,378.6708004400731,0,0,0,0,0,0,0,0,0,0,0,0,2.665911836174928e-6,3.4313761e-6,0,0,0,0,1.4728553408834463e-4,2.6080728e-4,0,0,0,0,273.9330520629882,0.21068345004814615,8.447852069179593,63.22724653024458,3.871133523422822,16.796298079496715,-0.017608476056118122,0,0,1499.4772542487524,0.0654325060086605,0.004446572546536724,0.0077232726,0,0,0,0 +1823,0.01603814933316958,0.30717070373189426,0,0,2.2824717646567367,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94096,0,457.00000254313153,4268.0293,786.2210744222004,32.75571508609182,282.54000091552734,374.3931813157347,0,0,0,0,0,0,0,0,0,0,0,0,2.7118758225697093e-6,3.4681677e-6,0,0,0,0,1.4982493909580322e-4,2.6495418e-4,0,0,0,0,273.89505004882807,0.21466373726348362,8.395261063519708,62.26076437261461,3.846052063384317,16.532712282905738,-0.01797931834876543,0,0,1499.6047524729552,-0.2700677190301451,0.004446572546536724,0.0077232726,0,0,0,0 +1824,0.01650100893154855,0.31282175997110956,0,0,2.310947810882604,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93425,0,457.00000254313153,4267.6765,787.4750722249348,33.05197869569693,282.6179962158203,377.040711415511,0,0,0,0,0,0,0,0,0,0,0,0,2.7578398658079095e-6,3.5037779e-6,0,0,0,0,1.5236434531592144e-4,2.6896492e-4,0,0,0,0,273.847048441569,0.21871922111297978,8.395833943142073,62.56343379800663,3.956577312910641,16.47072525551795,-0.018354944497914732,0,0,1512.9125520641012,-0.02966138430388376,0.004446572546536724,0.0077232726,0,0,0,0 +1825,0.01722266283199113,0.3185767793690206,0,0,2.3227031118101618,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91652,0,457.00000254313153,4266.7449,788.7140604654946,33.52533881675272,282.6759999593099,380.31674976188685,0,0,0,0,0,0,0,0,0,0,0,0,2.8038039090461098e-6,3.5388691e-6,0,0,0,0,1.5490375032338002e-4,2.7291587000000003e-4,0,0,0,0,273.78604634602857,0.22285132223124796,8.516236488505783,63.185789553909586,3.9190680646113942,16.80867752489523,-0.0187628709494922,0,0,1538.203336309689,0.11056506113548577,0.004446572546536724,0.0077232726,0,0,0,0 +1826,0.017382230465949125,0.32443767454831385,0,0,2.320968833647435,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90841,0,457.00000254313153,4266.3186,789.8310445149739,33.74810290483613,282.6929982503255,378.82226551401243,0,0,0,0,0,0,0,0,0,0,0,0,2.84976795228431e-6,3.574385500000001e-6,0,0,0,0,1.5744315654349825e-4,2.7691579e-4,0,0,0,0,273.72805023193354,0.22706148809190466,8.523620414150141,62.815941509777446,3.9116044827887784,16.620779080998844,-0.01917079740106968,0,0,1531.9828127801402,0.16037395519074635,0.004446572546536724,0.0077232726,0,0,0,0 +1827,0.01863987745517804,0.3304063933184248,0,0,2.3463377823547544,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91515,0,457.00000254313153,4266.6729,790.8700917561848,34.15505001036133,282.69299570719403,382.4773392117438,0,0,0,0,0,0,0,0,0,0,0,0,2.8957318249922537e-6,3.6105981e-6,0,0,0,0,1.5998256276361644e-4,2.8099598e-4,0,0,0,0,273.67705535888666,0.23135119351461897,8.585850324307904,63.38999010724139,3.9627935910031815,16.799919229980286,-0.01957872385264715,0,0,1566.0922143761854,0.17722825483510965,0.004446572546536724,0.0077232726,0,0,0,0 +1828,0.01882474558367928,0.33648491932287206,0,0,2.420774152646399,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.87222,0,457.00000254313153,4264.4159,791.9830423990884,34.99912851284667,282.708002726237,395.9754324666183,0,0,0,0,0,0,0,0,0,0,0,0,2.941695811387035e-6,3.6444139e-6,0,0,0,0,1.6252196777107505e-4,2.847999e-4,0,0,0,0,273.6410522460937,0.23572194118174164,8.801495946618267,65.90535948629658,4.116354977084998,17.480564495882128,-0.019986650304224626,0,0,1618.0207226022496,0.18289538758840385,0.004446572546536724,0.0077232726,0,0,0,0 +1829,0.01866419595593191,0.34267527269850206,0,0,2.379376332459752,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90025,0,457.00000254313153,4265.8895,793.0000712076821,35.0164051294104,282.76099650065106,389.1746282041487,0,0,0,0,0,0,0,0,0,0,0,0,2.9876598546252353e-6,3.6816572e-6,0,0,0,0,1.6506137277853364e-4,2.8899889e-4,0,0,0,0,273.6020533243815,0.24017526216469398,8.767229394465893,64.57289823663554,4.000350816006103,17.19408165401919,-0.020394576755802103,0,0,1597.2383021208498,0.18479929364776207,0.004446572546536724,0.0077232726,0,0,0,0 +1830,0.024933734074320084,0.3489795107468605,0,0,2.4031598307534434,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8667,0,457.00000254313153,4264.1256,793.9600270589192,35.40215533786149,282.8249994913737,392.10653286413964,0,0,0,0,0,0,0,0,0,0,0,0,3.0336238978634356e-6,3.7158665e-6,0,0,0,0,1.6760078021131145e-4,2.9284816e-4,0,0,0,0,273.5640513102213,0.24471271646030182,8.81880644628117,64.94076179033591,4.038430290401805,17.314251572854413,-0.020802503207379586,0,0,1705.903253614498,0.1854388472573092,0.004446572546536724,0.0077232726,0,0,0,0 +1831,0.02366017773383691,0.3553997286179164,0,0,2.3613471253941487,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89173999999998,0,457.00000254313153,4265.442,794.810073852539,35.37418704933364,282.8909962972005,384.20125072452805,0,0,0,0,0,0,0,0,0,0,0,0,3.079587941101636e-6,3.7529959e-6,0,0,0,0,1.7014018521877006e-4,2.97034e-4,0,0,0,0,273.52005004882807,0.24933589353726177,8.731507391555889,63.33682174076503,3.9474094529519688,16.877728667025877,-0.02121042965895705,0,0,1661.033130299973,-2.2447406013527207,0.004446572546536724,0.0077232726,0,0,0,0 +1832,0.023685925177870507,0.3619380600063637,0,0,2.3538632990393804,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90924,0,457.00000254313153,4266.362,795.5789845784504,35.562723492003244,282.9219970703125,382.363398002473,0,0,0,0,0,0,0,0,0,0,0,0,3.1255518138095795e-6,3.7897747e-6,0,0,0,0,1.7267959022622867e-4,3.0117945e-4,0,0,0,0,273.4440485636393,0.25404641289293156,8.712430008651964,62.87089656141417,3.946175052921808,16.738986754109227,-0.021652683906249543,0,0,1660.6105827511283,-1.4987682109213591,0.004446572546536724,0.0077232726,0,0,0,0 +1833,0.024226693427449875,0.3685966778607331,0,0,2.356959381290607,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89175,0,457.00000254313153,4265.4426,796.1241149902343,35.98083111069253,282.96599833170575,383.4537927943128,0,0,0,0,0,0,0,0,0,0,0,0,3.171515800204361e-6,3.824754e-6,0,0,0,0,1.7521899765900648e-4,3.0511746e-4,0,0,0,0,273.3720499674479,0.2588459246206396,8.790922956695082,63.06958370159948,3.905335593523844,16.86449692010886,-0.02214928975776249,0,0,1673.8749364362222,-0.4194845439142279,0.004446572546536724,0.0077232726,0,0,0,0 +1834,0.02470258560682817,0.3753777951055501,0,0,2.4124454659285632,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.854,0,457.00000254313153,4263.4584,797.0440368652343,36.761060965311756,283.0279998779297,394.1429023376304,0,0,0,0,0,0,0,0,0,0,0,0,3.217479843442561e-6,3.8586347e-6,0,0,0,0,1.7775840266646506e-4,3.089289e-4,0,0,0,0,273.2140502929687,0.2637361099877118,9.001420472247489,65.10499264081507,3.9890612936666887,17.454285340709294,-0.02264589560927544,0,0,1721.2693465918007,-0.01933718178498213,0.004446572546536724,0.0077232726,0,0,0,0 +1835,0.025273637508183497,0.38228366537677744,0,0,2.4054563746496176,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.8698,0,457.00000254313153,4264.2887,797.8309682210286,36.88278972577237,283.08599853515625,390.5551391819573,0,0,0,0,0,0,0,0,0,0,0,0,3.2634438866807614e-6,3.8953332e-6,0,0,0,0,1.8029780767392367e-4,3.1306506e-4,0,0,0,0,273.07905069986975,0.2687186820244191,8.925548285908778,64.23544316564437,3.998558037017324,17.170486789731093,-0.023142501460788386,0,0,1718.2221250231016,-1.6633625299236003,0.004446572546536724,0.0077232726,0,0,0,0 +1836,0.029221069497854205,0.389316583770789,0,0,2.4041879560344257,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84901,0,457.00000254313153,4263.1961,798.1060129801431,37.24729235142932,283.1489995320638,389.978664389183,0,0,0,0,0,0,0,0,0,0,0,0,3.3094079299189616e-6,3.9300644999999986e-6,0,0,0,0,1.8283721389404187e-4,3.1697451e-4,0,0,0,0,272.9540532430012,0.2737953861240514,8.99301508642379,64.08016333132153,3.917445996447821,17.23500428603742,-0.02363910731230133,0,0,1783.0834194781103,-1.0677252796589791,0.004446572546536724,0.0077232726,0,0,0,0 +1837,0.02926039926471735,0.39647888760712147,0,0,2.4402101737227215,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.86946,0,457.00000254313153,4264.2707,798.115982055664,37.699806775525964,283.19800059000653,394.75650376781886,0,0,0,0,0,0,0,0,0,0,0,0,3.3553718026269053e-6,3.9670389e-6,0,0,0,0,1.853766201141601e-4,3.2114251e-4,0,0,0,0,272.8730545043945,0.2789680006543284,9.027059824256213,64.82242714481194,4.040217213334495,17.353835237590644,-0.02413571316381428,0,0,1798.0881971564909,-0.2640591208376881,0.004446572546536724,0.0077232726,0,0,0,0 +1838,0.030288692886915835,0.4037729572052591,0,0,2.477311745666847,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85548,0,457.00000254313153,4263.5362,797.937016805013,38.242109615281024,283.2530034383138,401.2961870125921,0,0,0,0,0,0,0,0,0,0,0,0,3.4013357890216867e-6,4.0021199e-6,0,0,0,0,1.8791602512161867e-4,3.2509225e-4,0,0,0,0,272.8660507202148,0.28423833758036093,9.122535894908143,65.94724656685626,4.142172855024622,17.64153847089682,-0.024632319015327232,0,0,1841.5431392468436,0.03335501919910246,0.004446572546536724,0.0077232726,0,0,0,0 +1839,0.031310556578042714,0.4112012166757089,0,0,2.4526381380788647,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83788,0,457.00000254313153,4262.6108,797.9220987955728,38.51117555601762,283.3109995524089,396.9116368644367,0,0,0,0,0,0,0,0,0,0,0,0,3.447299832259887e-6,4.0369741e-6,0,0,0,0,1.904554313417369e-4,3.2901587999999995e-4,0,0,0,0,272.85805002848304,0.2896082430993816,9.139608329107503,65.11131218043978,4.015311872419976,17.505176328593002,-0.025128924866840176,0,0,1843.0808236850567,0.13450763436493787,0.004446572546536724,0.0077232726,0,0,0,0 +1840,0.03354297409334304,0.41876613472562935,0,0,2.4438775219719657,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.80755,0,457.00000254313153,4261.0163,798.3870493570962,38.88776194382017,283.38200124104816,395.88091618643386,0,0,0,0,0,0,0,0,0,0,0,0,3.493263875498087e-6,4.0710717e-6,0,0,0,0,1.9299483634919548e-4,3.3285227e-4,0,0,0,0,272.7990519205729,0.29507959828746777,9.211326298909695,64.92298176034035,3.924269140081404,17.575132478856116,-0.025625530718353124,0,0,1874.1418275066233,0.16854263071970732,0.004446572546536724,0.0077232726,0,0,0,0 +1841,0.03460122912653735,0.42647022547928015,0,0,2.490489852137439,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84789,0,457.00000254313153,4263.137,799.060084025065,39.38162316774325,283.46699778238934,402.37274181683716,0,0,0,0,0,0,0,0,0,0,0,0,3.5392279187362874e-6,4.1092335e-6,0,0,0,0,1.955342437819733e-4,3.3715711000000003e-4,0,0,0,0,272.6890487670898,0.3006543197584808,9.249453201790956,65.9454451837981,4.089445548039454,17.745543570932366,-0.026145023202402858,0,0,1916.2642072737253,0.17997793561545353,0.004446572546536724,0.0077232726,0,0,0,0 +1842,0.03663997981024372,0.4343160493135666,0,0,2.4491704689870333,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.84034,0,457.00000254313153,4262.7403,800.0011189778645,39.618728876147166,283.5279998779297,396.99512213680947,0,0,0,0,0,0,0,0,0,0,0,0,3.585191791444231e-6,4.1446349e-6,0,0,0,0,1.980736475767723e-4,3.411438e-4,0,0,0,0,272.58205413818354,0.3063343603354562,9.261381852099804,64.92167359416241,3.9361680613715975,17.590961717477978,-0.026688925256719682,0,0,1931.46250751484,0.18381929631950947,0.004446572546536724,0.0077232726,0,0,0,0 +1843,0.037450386379355084,0.44230621370895423,0,0,2.4111362709735427,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85726,0,457.00000254313153,4263.6297,801.4921824137368,39.653263822240504,283.56600189208984,389.73678087183737,0,0,0,0,0,0,0,0,0,0,0,0,3.6311557778390124e-6,4.1814844e-6,0,0,0,0,2.006130537968905e-4,3.4529738e-4,0,0,0,0,272.6070480346679,0.3121217097346764,9.185852611691464,63.424060913522,3.8460662124532643,17.218218321973847,-0.027232827311036496,0,0,1929.66039784958,0.18510965928096967,0.004446572546536724,0.0077232726,0,0,0,0 +1844,0.03984697293733208,0.45044337411603935,0,0,2.4438258963267856,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.85117,0,457.00000254313153,4263.3094,803.6190745035806,40.04426499219912,283.60899861653644,392.7074417140548,0,0,0,0,0,0,0,0,0,0,0,0,3.6771198210772127e-6,4.2169694e-6,0,0,0,0,2.0315246122966832e-4,3.4929371e-4,0,0,0,0,272.64805348714185,0.3180183952626677,9.178913525794204,63.76245430030204,3.965309781326317,17.1801218980614,-0.027776729365353317,0,0,1991.4456467268888,0.1855430999305122,0.004446572546536724,0.0077232726,0,0,0,0 +1845,0.04379212851318448,0.4587302348380611,0,0,2.4713718751387326,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.83257,0,457.00000254313153,4262.3319,805.665069580078,40.66967666700967,283.72499593098956,397.85005599568376,0,0,0,0,0,0,0,0,0,0,0,0,3.723083864315413e-6,4.2516813e-6,0,0,0,0,2.0569186502446732e-4,3.5320089999999995e-4,0,0,0,0,272.64005025227857,0.32402648252636523,9.30790591121511,64.68556723249593,3.957876345089828,17.599363300735142,-0.02832063141967013,0,0,2080.3810922503694,0.18568870533529727,0.004446572546536724,0.0077232726,0,0,0,0 +1846,0.04419737434029645,0.46716954992964915,0,0,2.4711987422790394,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82423,0,457.00000254313153,4261.8933,807.2559560139973,40.975199745155024,283.8470001220703,395.9082621735635,0,0,0,0,0,0,0,0,0,0,0,0,3.769047907553613e-6,4.2869996e-6,0,0,0,0,2.0823127124458551e-4,3.5717802e-4,0,0,0,0,272.7300465901692,0.3301480761566941,9.302498358152864,64.24405152639606,3.9495415402063423,17.39887856615626,-0.02886453347398695,0,0,2072.290434339566,0.003535562113167848,0.004446572546536724,0.0077232726,0,0,0,0 +1847,0.047464619118496226,0.4757641241121063,0,0,2.521115228079649,0,0,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.82758,0,457.00000254313153,4262.0693,807.9369812011718,41.61647167525484,283.9359995524089,402.98515747487147,0,0,0,0,0,0,0,0,0,0,0,0,3.815011799209363e-6,4.3230378e-6,0,0,0,0,2.107706774647037e-4,3.6123808e-4,0,0,0,0,272.8130518595377,0.33638532054582115,9.401962018636505,65.44362075203811,4.040566100417133,17.760514190415755,-0.029408435528303762,0,0,2154.230603343035,0.05986150819062035,0.004446572546536724,0.0077232726,0,0,0,0 +1848,0.04711780719580413,0.484516813705529,0,0,2.5773717998210097,0,1.4945332000000003e-5,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.78829,0,457.00000254313153,4260.004,808.0920410156249,42.449470629613735,284.0679982503255,413.5582929452125,0,0,0,0,0,0,0,0,0,0,0,0,3.860975766656338e-6,4.3563791e-6,0,0,0,0,2.1331008247216232e-4,3.6498734e-4,0,0,0,0,272.8850479125976,0.3427404005983347,9.573238566746884,67.39824375327751,4.1550564996331225,18.30069373024327,-0.029952337582620583,0,0,2204.416735349108,0.14052998907092631,0.004446572546536724,0.0077232726,0,0,0,0 +1849,0.04885144245331925,0.49343052757807715,0,0,2.5523940889282035,0,1.1956415e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.81678,0,457.00000254313153,4261.5016,808.2150014241536,42.63396460567202,284.20699818929035,408.9399341234632,0,0,0,0,0,0,0,0,0,0,0,0,3.9069398098945385e-6,4.3940071e-6,0,0,0,0,2.1584948869228052e-4,3.6923065e-4,0,0,0,0,272.9540456136067,0.3492155424966158,9.543358834157274,66.42707154065786,4.087020956416189,18.074786269748145,-0.03055301159093652,0,0,2224.8957196823785,0.1704345774563485,0.004446572546536724,0.0077232726,0,0,0,0 +1850,0.051384895328128635,0.502508228112706,0,0,2.5711244787427185,1.2887821417469543e-6,2.2473666e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93295,0,457.00000254313153,4267.6083,808.249028523763,43.142363653343445,284.3169987996419,411.4628743194825,0,0,0,0,0,0,0,0,0,0,0,0,3.952903853132739e-6,4.4373643e-6,0,0,0,0,2.1838889491239874e-4,3.7413425e-4,0,0,0,0,273.02104695638013,0.35581301448066943,9.604162557026681,66.78304875030415,4.096904208036784,18.22682478664064,-0.03125687970329533,0,0,2275.7767113113205,0.18074597510251067,0.004446572546536724,0.0077232726,0,0,0,0 +1851,0.051562308443334225,0.4946563668475162,0,0,2.5266925893124657,1.031025730450589e-5,2.4082745e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96457,0,457.00000254313153,4269.2706,808.4141082763671,43.151913707774774,284.4510040283203,402.2448152541545,0,0,0,0,0,0,0,0,0,0,0,0,3.998867896370939e-6,4.475348e-6,0,0,0,0,2.2092829991985732e-4,3.7841858e-4,0,0,0,0,273.0940500895182,0.3637934413745739,9.478471328343609,64.9500465918497,4.010397677989623,17.726300494053056,-0.03196074781565415,0,0,2256.8151473435455,0.18431279870175096,0.004446572546536724,0.0077232726,0,0,0,0 +1852,0.05364238006818437,0.5506858688322854,0,0,2.5076341601822123,2.0667359725242324e-5,2.4179888e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98199,0,457.00000254313153,4270.1861,809.1631317138671,43.34412933408961,284.59800211588544,397.49851999155004,0,0,0,0,0,0,0,0,0,0,0,0,4.044831939609139e-6,4.5124367e-6,0,0,0,0,2.2346770613997555e-4,3.825997e-4,0,0,0,0,273.16805013020826,0.3724242241558459,9.424520247380277,63.95789986488204,3.9584516109367627,17.47926154999162,-0.03266461592801298,0,0,2277.6344054535484,0.17954033954307605,0.004446572546536724,0.0077232726,0,0,0,0 +1853,0.05595234905591053,0.5486310857453621,0,0,2.5278117426961444,3.10744549096853e-5,2.4277992e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9693,0,457.00000254313153,4269.5191,810.404057820638,43.88435962687079,284.7309977213542,400.33880414377563,0,0,0,0,0,0,0,0,0,0,0,0,4.0907959828473395e-6,4.5475315000000004e-06,0,0,0,0,2.2600711114743413e-4,3.8655105e-4,0,0,0,0,273.264050801595,0.38010970895337787,9.493187126119388,64.44555417814735,3.9683262348472685,17.65848987916477,-0.0333684840403718,0,0,2326.4206162177375,0.015887254241176648,0.004446572546536724,0.0077232726,0,0,0,0 +1854,0.06589565461208481,0.5467397743701289,0,0,2.6100485430157265,4.1513251138288375e-5,2.4405566e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9226,0,457.00000254313153,4267.0641,811.7321421305337,44.80907906406347,284.8459981282552,413.39913150953396,0,0,0,0,0,0,0,0,0,0,0,0,4.136759950294315e-6,4.5802995999999986e-6,0,0,0,0,2.2854651736755235e-4,3.9023425e-4,0,0,0,0,273.3630498250325,0.3881180379413641,9.708926054401639,66.794695219375825,4.086374133078645,18.340431326430615,-0.034072352152730634,0,0,2535.1581947111176,-0.014112611956298624,0.004446572546536724,0.0077232726,0,0,0,0 +1855,0.0665605946226626,0.543758286864958,0,0,2.593264313364505,5.2002859774802346e-5,2.4547759e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010070485,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95064,0,457.00000254313153,4268.5385,813.332036336263,44.957053896332596,284.9409993489583,408.11045388038974,0,0,0,0,0,0,0,0,0,0,0,0,4.182723614576389e-6,4.6181251e-6,0,0,0,0,2.3108592358767055e-4,3.945003e-4,0,0,0,0,273.4700495402018,0.39515493127386314,9.608218449939441,65.65156397841133,4.071657215875477,17.99164859504197,-0.03477622026508945,0,0,2531.882070736542,0.11294859461260336,0.004446572546536724,0.0077232726,0,0,0,0 +1856,0.07119571676282484,0.5497252657327152,0,0,2.5734300072332923,6.254957406781614e-5,2.4704559e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071964,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92886,0,457.00000254313153,4267.3934,814.7961222330728,45.32147323346321,285.04899342854816,404.85491673017987,0,0,0,0,0,0,0,0,0,0,0,0,4.228687657814589e-6,4.652537400000002e-6,0,0,0,0,2.3362532859512916e-4,3.98373e-4,0,0,0,0,273.5780461629231,0.40121361649916243,9.648967407833753,65.04253470413643,3.941501863088442,17.954118052235966,-0.03548008837744827,0,0,2598.3233502208395,0.12225561148477546,0.004446572546536724,0.0077232726,0,0,0,0 +1857,0.0718939473501754,0.55506091263013,0,0,2.636452577483439,7.315969560295343e-5,2.487597e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94976,0,457.00000254313153,4268.4922,816.4521179199218,46.01300693840024,285.20399983723956,414.6731918454804,0,0,0,0,0,0,0,0,0,0,0,0,4.2746517010527896e-06,4.6899086e-6,0,0,0,0,2.3616473481524736e-4,4.025867e-4,0,0,0,0,273.67504882812494,0.4075261897409684,9.717987448936368,66.72779876959439,4.1591410074143615,18.291565645975457,-0.03618395648980709,0,0,2646.996287168382,-0.044823331390134384,0.004446572546536724,0.0077232726,0,0,0,0 +1858,0.0730281599923091,0.5597369099004649,0,0,2.660122641883427,8.383950868543859e-5,2.5062e-4,0.025000428936133783,0.024856862,34.04999923706055,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93987,0,457.00000254313153,4267.9722,818.3551279703775,46.54057728835799,285.3690007527669,419.01402360882946,0,0,0,0,0,0,0,0,0,0,0,0,4.32061574429099e-6,4.7251299e-6,0,0,0,0,2.3870414103536555e-4,4.0655264e-4,0,0,0,0,273.7560501098632,0.41251745553966174,9.773872716558104,67.47060376347301,4.240872484906792,18.47927629769415,-0.03688782460216592,0,0,2684.853418420537,0.08628782582640311,0.004446572546536724,0.0077232726,0,0,0,0 +1859,0.07785211331835136,0.5673853687525405,0,0,2.6482032498787995,9.459531490089527e-5,2.5262647e-4,0.025000428936133783,0.024856862,34.05000019073486,0.010071225,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91443,0,457.00000254313153,4266.635,820.3960774739583,46.94962615479032,285.5449956258138,416.29974849312515,0,0,0,0,0,0,0,0,0,0,0,0,4.36657978752919e-6,4.7592242000000015e-6,0,0,0,0,2.4124354483016455e-4,4.1038866e-4,0,0,0,0,273.89505004882807,0.41699740802681257,9.815633788495665,66.95694733909333,4.119710728903347,18.449505984059194,-0.03759169271452474,0,0,2765.3515040429447,0.1535034293269437,0.004446572546536724,0.0077232726,0,0,0,0 +1860,0.08580578973181537,0.57190571026195,0,0,2.6484047305257548,1.0543340310202136e-4,2.5477918999999995e-4,0.025000428936133783,0.024856862,34.04999955495199,0.010810676000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89112,0,457.00000254313153,4265.4096,822.3121185302733,47.37614022716783,285.73899332682294,416.0639965860974,0,0,0,0,0,0,0,0,0,0,0,0,4.41254383076739e-6,4.7934342e-6,0,0,0,0,2.4378295105028278e-4,4.1423802e-4,0,0,0,0,274.05604807535804,0.42075257795117216,9.868462594270229,66.84953492841794,4.0609762626653305,18.52046800322501,-0.03829556082688356,0,0,2898.3777844170777,0.17676937373971446,0.004446572546536724,0.0077232726,0,0,0,0 +1861,0.09043757175448788,0.5830953457170218,0,0,2.670268662609388,1.1636007608710013e-4,2.5707803e-4,0.025000428936133783,0.024856862,34.04999987284342,0.010810691,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94268,0,457.00000254313153,4268.1198,824.399190266927,48.23468669993056,285.9330012003581,417.24413721688705,0,0,0,0,0,0,0,0,0,0,0,0,4.4585078740055906e-6,4.8330788e-6,0,0,0,0,2.463223596957202e-4,4.1871377e-4,0,0,0,0,274.2400461832682,0.42335986018473476,9.85713564571437,66.88575551122409,4.161212988464047,18.437119828737263,-0.03899942893924239,0,0,2971.2788427875175,0.11623622338672868,0.004446572546536724,0.0077232726,0,0,0,0 +1862,0.09186559088261632,0.5229565631081879,0,0,2.648564983127743,1.2738162210249962e-4,2.5952295e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93302,0,457.00000254313153,4267.612,827.0292002360025,49.13056211810905,286.1000010172526,414.16280656087633,0,0,0,0,0,0,0,0,0,0,0,0,4.504471917243791e-6,4.8682827e-6,0,0,0,0,2.488617634905192e-4,4.2267767e-4,0,0,0,0,274.4160486857096,0.4259683950031353,9.918881972367876,66.358960161654025,4.0424493589722115,18.41589320519377,-0.0397032970516012,0,0,2976.388043494933,-0.6237998311805185,0.004446572546536724,0.0077232726,0,0,0,0 +1863,0.09748855439032131,0.523134296634959,0,0,2.6292695144324947,1.3850433606421575e-4,2.6211454e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9509,0,457.00000254313153,4268.552,830.1662139892577,49.710222528727996,286.271001180013,408.1224194075052,0,0,0,0,0,0,0,0,0,0,0,0,4.550435960481991e-6,4.9055252e-6,0,0,0,0,2.5140116971063736e-4,4.2687657e-4,0,0,0,0,274.57104492187494,0.4284326826015117,9.86866585386286,65.00963540040021,3.9715193557400945,18.09141100618794,-0.04040716516396003,0,0,3064.446906560989,-0.2585729087354761,0.004446572546536724,0.0077232726,0,0,0,0 +1864,0.10472513857630868,0.5234813827246285,0,0,2.667755633655596,1.4973450258063772e-4,2.6485186e-4,0.025000428936133783,0.024856862,34.05009969075521,0.010071254,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94467,0,457.00000254313153,4268.2247,833.6041412353514,50.66032472624755,286.44200134277344,411.3310642864957,0,0,0,0,0,0,0,0,0,0,0,0,4.5963999279289664e-6,4.9409793e-6,0,0,0,0,2.539405759307556e-4,4.308693e-4,0,0,0,0,274.72005208333326,0.431014195621195,9.887134077064891,65.39906664161046,4.087458726366705,18.093817300572518,-0.041111033276318855,0,0,3193.218258651068,0.037999846461008915,0.004446572546536724,0.0077232726,0,0,0,0 +1865,0.11093631924882667,0.5242503840770768,0,0,2.720201066299487,1.6107846022350714e-4,2.6773567000000004e-4,0.025000428936133783,0.024856862,34.050100008646645,0.010810706000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93017,0,457.00000254313153,4267.4623,836.8942057291665,51.98007509857536,286.6139958699544,420.4890049801762,0,0,0,0,0,0,0,0,0,0,0,0,4.642363592211041e-6,4.9757947000000005e-6,0,0,0,0,2.564799797255546e-4,4.3478845e-4,0,0,0,0,274.8800430297851,0.43343877181201473,10.07353477775766,67.10347351160692,4.157661467348705,18.66656837953943,-0.04181490138867768,0,0,3327.080175680617,0.1429288681419851,0.004446572546536724,0.0077232726,0,0,0,0 +1866,0.11473850842802115,0.5243863634262115,0,0,2.7102983366424596,1.7254241417200925e-4,2.707659e-4,0.025000428936133783,0.024856862,34.050100008646645,0.01081072,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92398,0,457.00000254313153,4267.1368,840.3622080485025,52.74699292831513,286.78099822998047,417.1011849314015,0,0,0,0,0,0,0,0,0,0,0,0,4.688327635449241e-6,5.0112266e-6,0,0,0,0,2.590193835203536e-4,4.387786599999999e-4,0,0,0,0,275.0480473836262,0.4357447764915154,10.064549123367675,66.37528156013664,4.133671177718162,18.394680194366018,-0.042518769501036495,0,0,3388.2580778414886,0.1744104739671799,0.004446572546536724,0.0077232726,0,0,0,0 +1867,0.12258204012181728,0.5228764549771724,0,0,2.761022670595916,1.8413277454480217e-4,2.7394196e-4,0.025000428936133783,0.024856862,34.05020046234131,0.010070544,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93094,0,457.00000254313153,4267.5026,843.995122273763,53.9410217812425,286.9550018310547,424.2969752987472,0,0,0,0,0,0,0,0,0,0,0,0,4.734291678687441e-6,5.0476689e-6,0,0,0,0,2.615587945911102e-4,4.428853e-4,0,0,0,0,275.21304829915357,0.43821064879605803,10.189133101169272,67.66026448741948,4.231180960949066,18.768356166586962,-0.04322263761339532,0,0,3565.4355350198875,0.18466917521307166,0.004446572546536724,0.0077232726,0,0,0,0 +1868,0.12560944174010713,0.5214153984123745,0,0,2.825140562350265,1.9585573196915598e-4,2.7726501e-4,0.025000428936133783,0.024856862,34.05019982655843,0.010072023,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89186,0,457.00000254313153,4265.4483,847.2491251627603,55.287673564162375,287.10500081380206,434.93022825982507,0,0,0,0,0,0,0,0,0,0,0,0,4.780255721925641e-6,5.0805177e-6,0,0,0,0,2.640981983859092e-4,4.465778e-4,0,0,0,0,275.39104461669916,0.44143425556535276,10.372200923081559,69.64729381366908,4.3633047348631795,19.301247569591883,-0.043926505725754135,0,0,3668.308732016809,0.188148666241629,0.004446572546536724,0.0077232726,0,0,0,0 +1869,0.13329152205114916,0.5197708976584334,0,0,2.7850043169774756,2.0771763714340827e-4,2.8073396e-4,0.025000428936133783,0.024856862,34.05020014444987,0.010810735,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93014,0,457.00000254313153,4267.4609,850.1300862630208,55.83359728305401,287.2249984741211,426.4036167290826,0,0,0,0,0,0,0,0,0,0,0,0,4.826219765163842e-6,5.1194221e-6,0,0,0,0,2.666376021807082e-4,4.5096821e-4,0,0,0,0,275.5610478719075,0.44390826602791195,10.311061269202527,67.9294955911712,4.245329954023304,18.888825035193033,-0.04497175592064998,0,0,3791.4627445920805,0.1894123650346563,0.004446572546536724,0.0077232726,0,0,0,0 +1870,0.13667438365279438,0.5186718603074794,0,0,2.831200782445544,2.197247971101509e-4,2.8434934e-4,0.025000428936133783,0.024856862,34.05020014444987,0.01081075,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.89317,0,457.00000254313153,4265.5174,852.4350077311196,56.996592307003596,287.3549982706706,433.2287624497814,0,0,0,0,0,0,0,0,0,0,0,0,4.872183808402042e-6,5.152380400000002e-6,0,0,0,0,2.691770132514648e-4,4.5467331e-4,0,0,0,0,275.7200444539387,0.4466399609979402,10.441023971231417,69.12187693609928,4.323468650206145,19.258120747383764,-0.046232618783436236,0,0,3887.5293351931314,0.189950840385198,0.004446572546536724,0.0077232726,0,0,0,0 +1871,0.1452491611173251,0.5388152153139819,0,0,2.7978303472693873,2.31883451003038e-4,2.8811122e-4,0.025000428936133783,0.024856862,34.050299326578774,0.010071314,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92871,0,457.00000254313153,4267.3856,853.9930725097655,57.57401422057298,287.4940007527669,425.1606513202936,0,0,0,0,0,0,0,0,0,0,0,0,4.918147851640242e-6,5.1911213e-6,0,0,0,0,2.717164146209446e-4,4.590449e-4,0,0,0,0,275.9030456542968,0.45433593382870696,10.369497697943174,67.42862357960736,4.269404036940666,18.76177376623424,-0.047493481646222496,0,0,4016.0322788183066,0.19025039687154105,0.004446572546536724,0.0077232726,0,0,0,0 +1872,0.16034651313527334,0.6242378015462033,0,0,2.771292693837977,2.4419995800902444e-4,2.9201899e-4,0.025000428936133783,0.024856862,34.050299962361656,0.010810765,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95075,0,457.00000254313153,4268.5441,855.2329915364583,58.18710545429253,287.66399637858075,417.7442733570141,0,0,0,0,0,0,0,0,0,0,0,0,4.964111894878442e-6,5.228817700000002e-6,0,0,0,0,2.742558184157436e-4,4.6329615e-4,0,0,0,0,276.07804361979163,0.4708626218532089,10.330384237922804,65.84553711122807,4.17870981733127,18.365341648996967,-0.048754344509008736,0,0,4250.256915543303,0.18883431574024787,0.004446572546536724,0.0077232726,0,0,0,0 +1873,0.17009548212988732,0.635197775727867,0,0,2.8416338477805057,2.566805657503816e-4,2.9607326e-4,0.025000428936133783,0.024856862,34.050299962361656,0.01081078,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93223,0,457.00000254313153,4267.5705,856.1681976318358,59.62016165313301,287.86000061035156,429.28028904113773,0,0,0,0,0,0,0,0,0,0,0,0,5.010075938116643e-6,5.2632224000000015e-6,0,0,0,0,2.7679522706118104e-4,4.6716788e-4,0,0,0,0,276.25004831949866,0.4938942498998885,10.56453511561426,67.99437045089431,4.309987323977962,18.937298904886617,-0.050015207371795004,0,0,4473.449627744114,-0.0158300305583035,0.004446572546536724,0.0077232726,0,0,0,0 +1874,0.16101264250188482,0.6424589219115043,0,0,2.8680589101535006,2.693315764190629e-4,3.0027407000000005e-4,0.025000428936133783,0.024856862,34.05039978027344,0.010810794,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88493,0,457.00000254313153,4265.0843,857.8200785319009,60.88850035180588,288.0609995524089,435.8041800080444,0,0,0,0,0,0,0,0,0,0,0,0,5.05603994345923e-6,5.295217800000002e-6,0,0,0,0,2.793346332812992e-4,4.7076201e-4,0,0,0,0,276.4160537719726,0.5217358117405276,10.751611012739497,69.34908007240699,4.369596917606238,19.304810723709583,-0.051276070234581236,0,0,4382.176552473297,0.10137566545666454,0.004446572546536724,0.0077232726,0,0,0,0 +1875,0.17325906778674766,0.6503215087418923,0,0,2.8334891051221005,2.821592812930855e-4,3.046214e-4,0.025000428936133783,0.024856862,34.05040009816488,0.010810809,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5065,859.4690653483071,61.447170295790954,288.29100290934247,426.89349545310597,0,0,0,0,0,0,0,0,0,0,0,0,5.102003569845692e-6,5.3349387000000006e-6,0,0,0,0,2.818740370760982e-4,4.7524653e-4,0,0,0,0,276.5850474039713,0.5521636138855727,10.663545228962466,67.4820885998621,4.311546235769538,18.753876090158617,-0.0525369330973675,0,0,4552.510356024947,0.11898633163405398,0.004446572546536724,0.0077232726,0,0,0,0 +1876,0.17593823238514505,0.6580403904252425,0,0,2.8431252665224327,2.9516999347833917e-4,3.0911468e-4,0.025000428936133783,0.024856862,34.05049991607666,0.010810823999999998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.90175,0,457.00000254313153,4265.968,860.8591054280598,62.60294810766919,288.5199966430664,429.4805477313967,0,0,0,0,0,0,0,0,0,0,0,0,5.1479676130838925e-6,5.3683812e-6,0,0,0,0,2.8441344572153565e-4,4.790074400000001e-4,0,0,0,0,276.7350514729817,0.5828831599457934,10.831893028061607,68.07266489194261,4.273649915248981,19.002140660093694,-0.053797795960153764,0,0,4640.322706228576,0.13010732358702753,0.004446572546536724,0.0077232726,0,0,0,0 +1877,0.17982534828505667,0.6646940864903487,0,0,2.881579172917859,3.083699945515643e-4,3.1375456e-4,0.025000428936133783,0.024856862,34.050500551859535,0.010810839,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92824,0,457.00000254313153,4267.3608,862.3791147867837,63.64524258623489,288.7520014444987,434.0603459961696,0,0,0,0,0,0,0,0,0,0,0,0,5.193931656322093e-6,5.406519099999998e-6,0,0,0,0,2.869528519416538e-4,4.833095099999999e-4,0,0,0,0,276.86404927571607,0.6122267058453676,10.897021601068372,68.7783807279057,4.413505723589701,19.089059096309025,-0.05504429988349307,0,0,4762.60475525006,0.1696072468545434,0.004446572546536724,0.0077232726,0,0,0,0 +1878,0.18077698311132545,0.6715857617280921,0,0,2.905036494302108,3.2176555153758574e-4,3.1854156e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810853,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92472,0,457.00000254313153,4267.1759,864.1391499837239,64.71120382869425,288.9930013020833,437.9599497693981,0,0,0,0,0,0,0,0,0,0,0,0,5.239895699560293e-6,5.4421234e-6,0,0,0,0,2.8949225331113365e-4,4.8731959e-4,0,0,0,0,277.0020446777343,0.637718423578712,10.998945344161125,69.46979574102357,4.5031308409529425,19.22817130569276,-0.056156826594968116,0,0,4806.3164952803945,0.1844107426763875,0.004446572546536724,0.0077232726,0,0,0,0 +1879,0.1931754383145236,0.6786152944896107,0,0,2.9292586401809286,3.3536301149676245e-4,3.234746e-4,0.025000428936133783,0.024856862,34.05060005187988,0.010810868,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88028,0,457.00000254313153,4264.8396,866.2831624348958,65.90279841258594,289.2210006713867,440.8517590737373,0,0,0,0,0,0,0,0,0,0,0,0,5.285859742798493e-6,5.474183400000002e-6,0,0,0,0,2.920316595312518e-4,4.9092116e-4,0,0,0,0,277.1330490112304,0.6589267771109586,11.181505690638433,70.08572001647862,4.44715839638976,19.487315389320713,-0.05726935330644314,0,0,5054.634872921024,0.18865930412898813,0.004446572546536724,0.0077232726,0,0,0,0 +1880,0.2193400047887077,0.6848574235612915,0,0,2.921172062464678,3.4916867055774975e-4,3.2855365e-4,0.025000428936133783,0.024856862,34.05069955190023,0.010810144,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.88174,0,457.00000254313153,4264.9162,868.6961059570311,66.66498430210106,289.4699986775716,437.365727538686,0,0,0,0,0,0,0,0,0,0,0,0,5.3318237860366935e-6,5.5101807e-6,0,0,0,0,2.9457106817668927e-4,4.9497652e-4,0,0,0,0,277.26505025227857,0.6727777764677255,11.210570347061365,69.18788119083449,4.386751757292326,19.32682128004249,-0.05838188001791818,0,0,5476.691840909654,0.15238702978073307,0.004446572546536724,0.0077232726,0,0,0,0 +1881,0.2252231799496281,0.7226262033549594,0,0,2.9628772256083247,3.6318877634281915e-4,3.3377873e-4,0.025000428936133783,0.024856862,34.05069955190023,0.011551088,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92914,0,457.00000254313153,4267.4079,870.9841257731118,67.70670094788971,289.7369969685872,440.9737248225101,0,0,0,0,0,0,0,0,0,0,0,0,5.377787829274894e-6,5.5502216e-6,0,0,0,0,2.9711047197148827e-4,4.9949792e-4,0,0,0,0,277.37404123942054,0.6806367037591056,11.274748464221961,69.70896888997471,4.531822010702024,19.327166243417963,-0.059494406729393226,0,0,5655.562652963553,0.14804251864424234,0.004446572546536724,0.0077232726,0,0,0,0 +1882,0.23694899687620047,0.6743786080130141,0,0,2.9443458510058322,3.774296346819028e-4,3.3915105e-4,0.025000428936133783,0.024856862,34.05080000559489,0.011550379,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.92759,0,457.00000254313153,4267.3266,873.2501373291014,68.57787523920716,290.0190022786458,436.0786301154982,0,0,0,0,0,0,0,0,0,0,0,0,5.423751872513094e-6,5.585991e-6,0,0,0,0,2.9964987819160643e-4,5.035270200000001e-4,0,0,0,0,277.4860509236653,0.6892556813322581,11.343220962302505,68.75016748711803,4.409841205149023,19.158162285322444,-0.06060693344086825,0,0,5878.580768497191,0.1874362016564929,0.004446572546536724,0.0077232726,0,0,0,0 +1883,0.25089467695775003,0.6814540279475114,0,0,2.918084088079926,3.918974956225914e-4,3.4467464999999995e-4,0.025000428936133783,0.024856862,34.05090045928955,0.010810957,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95902,0,457.00000254313153,4268.979,875.6031494140624,69.18597910133236,290.26300048828125,428.22120343049505,0,0,0,0,0,0,0,0,0,0,0,0,5.469715915751294e-6,5.6247084000000005e-6,0,0,0,0,3.021892868370439e-4,5.0789587e-4,0,0,0,0,277.5910491943359,0.6958725524070566,11.301072778092927,67.06254475755776,4.3447075949809335,18.709361365312684,-0.06171946015234329,0,0,6136.7508152909495,-0.3245940535795368,0.004446572546536724,0.0077232726,0,0,0,0 +1884,0.2528499020827967,0.6846835417141454,0,0,2.9781587398376455,4.065987474556702e-4,3.503391000000001e-4,0.025000428936133783,0.024856862,34.05100059509277,0.010810972,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93535,0,457.00000254313153,4267.7345,878.1482035319009,70.48060514662333,290.5119984944661,436.5183491794865,0,0,0,0,0,0,0,0,0,0,0,0,5.515679921093882e-6,5.6585019e-6,0,0,0,0,3.047286906318429e-4,5.1169724e-4,0,0,0,0,277.69505055745435,0.7016904496772703,11.463778568830996,68.59402326244992,4.507763748192013,19.009889976177178,-0.06283198686381833,0,0,6243.347604744989,-1.8150618607595548,0.004446572546536724,0.0077232726,0,0,0,0 +1885,0.25444299147687327,0.6908637814371342,0,0,2.987658653242268,4.215400040266104e-4,3.5614909e-4,0.025000428936133783,0.024856862,34.05099964141846,0.011550438,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93798,0,457.00000254313153,4267.8727,881.0251312255858,71.60546241341835,290.7969970703125,438.1415385380004,0,0,0,0,0,0,0,0,0,0,0,0,5.561643547480344e-6,5.6946520999999985e-6,0,0,0,0,3.0726809200132266e-4,5.1577023e-4,0,0,0,0,277.79504903157545,0.7078908709316327,11.603153567015962,68.94977818435397,4.492846370676968,19.20686906057728,-0.06394451357529336,0,0,6294.938313202323,-0.6420197136906102,0.004446572546536724,0.0077232726,0,0,0,0 +1886,0.25832612706643443,0.6919349119161695,0,0,3.0001483762763606,4.3672676110873e-4,3.621046e-4,0.025000428936133783,0.024856862,34.05110009511312,0.011550467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9357,0,457.00000254313153,4267.7531,883.8392181396483,72.58254388217381,291.09999593098956,437.73332685492454,0,0,0,0,0,0,0,0,0,0,0,0,5.607607590718544e-6,5.7303567999999985e-6,0,0,0,0,3.0980750307207927e-4,5.1979186e-4,0,0,0,0,277.8850479125976,0.7126327786706089,11.675797474801131,68.86926284379062,4.534738954197774,19.067819582095456,-0.06519373004483152,0,0,6353.02729378205,-0.0852453820278208,0.004446572546536724,0.0077232726,0,0,0,0 +1887,0.27097332569304644,0.6918854634202647,0,0,3.0445900747103636,4.521660230238922e-4,3.6821147e-4,0.025000428936133783,0.024856862,34.05120054880778,0.011550497,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.94903,0,457.00000254313153,4268.4538,886.933135986328,73.77743063310328,291.4139989217122,443.10773813765155,0,0,0,0,0,0,0,0,0,0,0,0,5.653571633956744e-6,5.7675003e-6,0,0,0,0,3.1234690686687827e-4,5.2397934e-4,0,0,0,0,277.99504597981763,0.7182166601192096,11.825655230740924,69.79403942185417,4.618994873829845,19.328453638145426,-0.06654164466411291,0,0,6605.766964967214,-0.025019474885791315,0.004446572546536724,0.0077232726,0,0,0,0 +1888,0.2990240690559838,0.6915397836551626,0,0,3.1234840519185503,4.6786327826945734e-4,3.7446389e-4,0.025000428936133783,0.024856862,34.051300366719566,0.011550526,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.91459,0,457.00000254313153,4266.6433,889.9262135823567,75.11035553057255,291.76300048828125,452.50230797053916,0,0,0,0,0,0,0,0,0,0,0,0,5.699535677194945e-6,5.8002124e-6,0,0,0,0,3.1488631066167727e-4,5.2765607e-4,0,0,0,0,278.08005015055335,0.724224234516275,12.041623292379388,71.4272374400245,4.7418969174520385,19.785746426186453,-0.06788955928339427,0,0,7182.264808724919,0.13500730253153945,0.004446572546536724,0.0077232726,0,0,0,0 +1889,0.2993958898436063,0.6910492076322109,0,0,3.104668337723354,4.838260307830448e-4,3.8086186e-4,0.025000428936133783,0.024856862,34.05139986673991,0.011550556000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.95877,0,457.00000254313153,4268.9657,893.1561584472655,75.9296001940716,292.1130015055339,448.69086963270234,0,0,0,0,0,0,0,0,0,0,0,0,5.745499720433145e-6,5.840258e-6,0,0,0,0,3.174257217324339e-4,5.3217801e-4,0,0,0,0,278.191047668457,0.730764111829077,12.075327913087893,70.65718771639492,4.727164288354711,19.55277705492912,-0.06923747390267565,0,0,7178.592239188243,0.1858189092422608,0.004446572546536724,0.0077232726,0,0,0,0 +1890,0.32528597028265194,0.6877629398180971,0,0,3.159194948993984,5.000592888488123e-4,3.8741134e-4,0.025000428936133783,0.024856862,34.05150000254313,0.011550586000000002,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.9317,0,457.00000254313153,4267.5425,896.3831837972004,77.07862319106741,292.45799763997394,453.89903232867,0,0,0,0,0,0,0,0,0,0,0,0,5.791463763671345e-6,5.8736235e-6,0,0,0,0,3.199651255272329e-4,5.359300400000001e-4,0,0,0,0,278.2730509440104,0.7556615541830685,12.221880708940976,71.47659716602703,4.8079166884923445,19.778064862780106,-0.07058538852195702,0,0,7728.431301023277,0.07030158718899164,0.004446572546536724,0.0077232726,0,0,0,0 +1891,0.34045390881796567,0.6844114067588241,0,0,3.125180696005549,5.165705564043795e-4,3.9410043e-4,0.025000428936133783,0.024856862,34.051600774129234,0.011550615,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97344,0,457.00000254313153,4269.7366,899.666264851888,77.68229292407419,292.8159993489583,444.382731801162,0,0,0,0,0,0,0,0,0,0,0,0,5.837427806909545e-6,5.9135147000000014e-06,0,0,0,0,3.225045293220319e-4,5.4043419e-4,0,0,0,0,278.34705098470045,0.7669960073050373,12.159640198474342,69.53172190504567,4.743306066350147,19.199673026982396,-0.0719333031412384,0,0,8025.900172756182,-0.1023137574833239,0.004446572546536724,0.0077232726,0,0,0,0 +1892,0.3429460922092071,0.698931319975308,0,0,3.1105283647598623,5.333653001192337e-4,4.0093536e-4,0.025000428936133783,0.024856862,34.05169995625814,0.011550645,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99082,0,457.00000254313153,4270.6504,903.534194946289,78.54558088981553,293.16699981689453,439.8086590465999,0,0,0,0,0,0,0,0,0,0,0,0,5.8833918501477456e-6,5.951126000000002e-6,0,0,0,0,3.250439355421501e-4,5.446755599999999e-4,0,0,0,0,278.44204457600904,0.77827246793364,12.199146519671457,68.66391958974123,4.69568230481039,18.949521757077395,-0.07328121776051978,0,0,8166.143155148587,0.07763085595364166,0.004446572546536724,0.0077232726,0,0,0,0 +1893,0.3378703897546753,0.6997131247828723,0,0,3.1254308946941567,5.504500586539507e-4,4.079215e-4,0.025000428936133783,0.024856862,34.05179977416992,0.012290126,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97993999999998,0,457.00000254313153,4270.0783,907.2741190592446,79.81501328862245,293.4769999186198,443.3506557921903,0,0,0,0,0,0,0,0,0,0,0,0,5.929355893385946e-6,5.986023799999998e-6,0,0,0,0,3.275833417622683e-4,5.4860421e-4,0,0,0,0,278.55404917399085,0.7897298228538592,12.379453862745622,69.48705801909811,4.715239732570137,19.178456201207396,-0.07462913237980115,0,0,8120.644734612286,0.1864156024276895,0.004446572546536724,0.0077232726,0,0,0,0 +1894,0.35112450392061667,0.7155813956083555,0,0,3.205110617860807,5.678308225469664e-4,4.1505353e-4,0.025000428936133783,0.024856862,34.051900227864586,0.01229017,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.93101,0,457.00000254313153,4267.5063,910.4781341552733,81.38345626276687,293.7909978230794,456.69603250902094,0,0,0,0,0,0,0,0,0,0,0,0,5.975319936624146e-6,6.017190099999998e-6,0,0,0,0,3.301227455570673e-4,5.5210279e-4,0,0,0,0,278.6890487670898,0.8020046367832572,12.66238559332695,71.90804380664727,4.8889485381651845,19.8361284777738,-0.07597704699908253,0,0,8411.388473243653,0.19284299907478186,0.004446572546536724,0.0077232726,0,0,0,0 +1895,0.37171203675260484,0.7209450963563064,0,0,3.216163844950097,5.855145864188671e-4,4.2233098e-4,0.025000428936133783,0.024856862,34.05209986368815,0.011550763,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4251,913.2259826660155,82.23116014335764,294.0789972941081,453.5518850499526,0,0,0,0,0,0,0,0,0,0,0,0,6.0212835251149954e-6,6.056690099999998e-6,0,0,0,0,3.326621542025047e-4,5.5656184e-4,0,0,0,0,278.83104960123694,0.8128876331059834,12.672444225617587,71.15178658195539,4.91917125426521,19.522500482390267,-0.07728033747142447,0,0,8846.667009900264,0.1930910447676056,0.004446572546536724,0.0077232726,0,0,0,0 +1896,0.38367481768429307,0.7234407884813598,0,0,3.170768746502162,6.03506836341694e-4,4.2976003e-4,0.025000428936133783,0.024856862,34.05219968159994,0.012290244,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.96751,0,457.00000254313153,4269.4252,914.7710927327473,83.00005426186281,294.36499786376953,444.0944277814877,0,0,0,0,0,0,0,0,0,0,0,0,6.067247568353196e-6,6.0926241e-6,0,0,0,0,3.352015604226229e-4,5.606100700000001e-4,0,0,0,0,278.9390513102213,0.824102858385605,12.720593693458584,69.42267705803128,4.733994615392683,19.177287716924887,-0.07856237646782513,0,0,9089.59843267371,0.19318346141929987,0.004446572546536724,0.0077232726,0,0,0,0 +1897,0.4019811637589425,0.725878270524141,0,0,3.2687021119074915,6.218145863385871e-4,4.373290900000001e-4,0.025000428936133783,0.024856862,34.052300453186035,0.012290288,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.99693,0,457.00000254313153,4270.9718,916.2742818196614,84.39253635318506,294.64599863688153,456.4122054736632,0,0,0,0,0,0,0,0,0,0,0,0,6.113211611591396e-6,6.1314997000000015e-6,0,0,0,0,3.377409642174219e-4,5.6499701e-4,0,0,0,0,279.051045735677,0.8346371271895597,12.890217099416494,71.54673250412924,5.026760132357157,19.58218287923395,-0.07984441546422576,0,0,9520.393854224154,0.19322441190367687,0.004446572546536724,0.0077232726,0,0,0,0 +1898,0.4233042102069517,0.728376569617105,0,0,3.2968702587691077,6.404438560518125e-4,4.4504943e-4,0.025000428936133783,0.02485618,34.052499771118164,0.012290333,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.01512,0,457.00000254313153,4271.9281,919.0172271728514,85.36127162189973,294.95399983723956,456.6037673563168,0,0,0,0,0,0,0,0,0,0,0,0,6.159175654829596e-6,6.1692876e-6,0,0,0,0,3.402803704375401e-4,5.692587400000001e-4,0,0,0,0,279.1630477905273,0.8443053161523663,12.959068227762758,71.45665951589594,5.0980295350528255,19.501681112942983,-0.0811264544606264,0,0,10010.09583228873,0.19324438193560026,0.004446572546536724,0.0077232356,0,0,0,0 +1899,0.46331719155147416,0.7285561578617307,0,0,3.35583134512378,6.594006069159756e-4,4.856732599999999e-4,0.025000428936133783,0.024857703,34.05260022481283,0.012290377,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.97653,0,457.00000254313153,4269.8993,922.2811838785806,86.70543386559314,295.2999979654948,462.1035993919434,0,0,0,0,0,0,0,0,0,0,0,0,6.205139698067796e-6,6.2013454e-6,0,0,0,0,3.4281977665765834e-4,5.7286006e-4,0,0,0,0,279.3080469767252,0.8537833662798698,13.20706844128895,72.46072255843502,5.09497938372201,19.868709929010027,-0.08240849345702704,0,0,10838.113453916734,0.1932520396033143,0.004446572546536724,0.0077232334,0,0,0,0 +1900,0.4881558617748878,0.7305723603784592,0,0,3.3618210367956025,6.786918675061315e-4,0.0023926675,0.025000376626849174,0.024856437,34.052798906962074,0.028558348,0,0,0,0,0,0,0,0,0,0,5.299997806549072,104.98481,0,457.00000254313153,4270.3344,925.5521138509114,87.61328845020651,295.6749954223633,459.5444668504325,0,0,0,0,0,0,0,0,0,0,0,0,6.251103741305997e-6,6.2381326e-6,0,0,0,0,3.4535918045245734e-4,5.770064599999999e-4,0,0,0,0,279.4540481567382,0.8631696543463733,13.276669554810011,71.90656631461616,5.089168388032589,19.750787925178965,-0.08385968995663869,0,0,11348.727499729994,0.19324967713848945,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1901,0.5044857194846931,0.7969063127701378,0,0,3.3829529353801377,7.011479125746215e-4,0.0048200969,0.025000494594375294,0.024857442,34.05289999643961,0.047784449000000014,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04131,0,457.00000254313153,4273.3046,928.800333658854,88.39116711070807,296.0069986979167,457.6168305058551,0,0,0,0,0,0,0,0,0,0,0,0,6.297067784544197e-6,6.2798935e-6,0,0,0,0,3.478985866725755e-4,5.817261e-4,0,0,0,0,279.613047281901,0.8714059588722426,13.301409901434221,71.63263161162581,5.20214413763188,19.48762216724768,-0.08579737819029178,0,0,11775.255202668699,0.1931616844954455,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1902,0.5193451170981727,0.800278636367018,0,0,3.3815414695884436,8.848810005777826e-4,0.0057781223,0.025000344030559063,0.024856062,34.055300076802574,0.050743008,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.04898,0,457.00000254313153,4273.708,932.7311604817708,89.26282464192792,296.3249994913737,455.02617682462983,0,0,0,0,0,0,0,0,0,0,0,0,6.343031827782397e-6,6.316678900000002e-6,0,0,0,0,3.5043799531801295e-4,5.858722900000001e-4,0,0,0,0,279.8610509236653,0.8812154472523583,13.412488026584588,71.24149846316587,5.179688036784444,19.35806149893677,-0.08773506642394488,0,0,12100.548766402842,0.09059743996435048,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1903,0.5664546211178523,0.8295711459044773,0,0,3.389386332354358,0.001116641176243623,0.0069576127,0.025000539453079302,0.024857979,34.05799961090088,0.05591998,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.09555,0,457.00000254313153,4276.1561,936.7834269205728,89.89074056747505,296.65399678548175,449.9625304110428,0,0,0,0,0,0,0,0,0,0,0,0,6.388995871020597e-6,6.3575352999999986e-6,0,0,0,0,3.5297739911281195e-4,5.9048768e-4,0,0,0,0,280.15604146321607,0.890660734283567,13.437520518020643,70.25376393283156,5.1901034578968455,19.030597877588104,-0.08967275465759794,0,0,13044.158155518342,-0.7087274740337839,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1904,0.5751521325099065,0.856100074253587,0,0,3.4640582999698033,0.0013829462016777445,0.0094363385,0.02500028194238742,0.024855289,34.06080023447672,0.068491568,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.07939,0,457.00000254313153,4275.3063,942.1142679850259,91.35674942842638,296.95399475097656,462.6217650299278,0,0,0,0,0,0,0,0,0,0,0,0,6.434959914258798e-6,6.3918668e-6,0,0,0,0,3.555168053329301e-4,5.9435105e-4,0,0,0,0,280.43204243977857,0.900998671506556,13.731471700844033,72.88437625246438,5.400226562773813,19.656119727265345,-0.09161044289125103,0,0,13274.437189098227,-0.26430883974577096,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1905,0.6122962467973883,0.8830904178747726,0,0,3.525334738078169,0.0017163676869434614,0.013412831000000002,0.02500062497953574,0.024859105,34.06420008341471,0.087718467,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.08907,0,457.00000254313153,4275.8152,947.4432729085286,92.40132432209919,297.28899637858075,467.44012883738543,0,0,0,0,0,0,0,0,0,0,0,0,6.480923502749647e-6,6.4289102e-6,0,0,0,0,3.5805621155304834e-4,5.985269799999999e-4,0,0,0,0,280.7050450642903,0.911796750677243,13.855105466247057,73.70973521692333,5.570897783797489,19.752967156958555,-0.09354813112490414,0,0,14100.978379035863,0.07758312468608113,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1906,0.6442763573284219,0.9139458953081726,0,0,3.549324480388693,0.0021963609227289758,0.018196454,0.02500016087045272,0.024853655,34.068699518839516,0.11138246,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.10645,0,457.00000254313153,4276.7286,953.0924224853514,93.2499831638467,297.66199747721356,466.4356478967891,0,0,0,0,0,0,0,0,0,0,0,0,6.526887545987847e-6,6.466788299999998e-6,0,0,0,0,3.6059561534784734e-4,6.027991099999999e-4,0,0,0,0,280.9800465901692,0.9228643088832689,13.959645369835703,73.46173851221981,5.607842106776347,19.60693136091458,-0.09545551104287764,0,0,14766.450119103303,0.17494042863794804,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1907,0.726915977115476,0.9229970275040732,0,0,3.6744573684699935,0.002872606390155852,0.016966195,0.025000798360755045,0.025812945,34.074700037638344,0.10398923,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14627,0,457.00000254313153,4278.822,959.1561177571614,94.5608019449233,298.0979944864909,480.31745635776645,0,0,0,0,0,0,0,0,0,0,0,0,6.5728515892260475e-6,6.507102e-6,0,0,0,0,3.6313501914264634e-4,6.0735196e-4,0,0,0,0,281.2760442097981,0.9335570189055034,14.216774986296493,76.00444514305916,5.925751520425966,20.144490748304303,-0.09692403030316216,0,0,16264.987209463294,0.062031619541395626,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1908,0.7032325912946371,0.932378464388443,0,0,3.675876640379726,0.0037649905619521937,0.021404879,0.02499991360430916,0.029231937000000006,34.08239936828613,0.12765503,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.12414,0,457.00000254313153,4277.6586,964.0852966308593,95.71237193404865,298.5179901123047,482.5826340091374,0,0,0,0,0,0,0,0,0,0,0,0,6.618815632464248e-6,6.5407783e-6,0,0,0,0,3.6567443021340296e-4,6.111398000000001e-4,0,0,0,0,281.61104329427076,0.9439781461374255,14.407422860628587,76.85623799627187,5.975251674338594,20.34218954572492,-0.09839254956344667,0,0,15590.713118515627,0.12577421060954422,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1909,0.7293531000033262,0.9394639872302616,0,0,3.6900486620571034,0.004334990129185219,0.036714367000000005,0.02507337733792762,0.7650859999999999,34.087400118509926,0.21121463,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.16533,0,457.00000254313153,4279.8240000000005,969.3983662923176,96.46669460330283,298.93599192301434,480.68946878632124,0,0,0,0,0,0,0,0,0,0,0,0,6.664779675702448e-6,6.5813135e-6,0,0,0,0,3.6821383400820196e-4,6.1571818e-4,0,0,0,0,281.95004526774085,0.9541466929230623,14.465734280062996,76.44087709943787,6.04171533179017,20.1096713132971,-0.0998610688237312,0,0,16371.00547137995,0.1917775514880681,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1910,0.765726394850593,0.9455920872078338,0,0,3.7676081069530625,0.005609989515505731,0.042342327,0.02532928188641866,1.0366888,34.098299980163574,0.24301505,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.14442,0,457.00000254313153,4278.7248,974.7870890299478,97.77187102780431,299.37699635823566,491.4713622185322,0,0,0,0,0,0,0,0,0,0,0,0,6.710743718940648e-6,6.615104700000002e-6,0,0,0,0,3.7075323780300096e-4,6.1951928e-4,0,0,0,0,282.3140436808268,0.9648675091710838,14.7306044680131,78.48124342715315,6.22524154290356,20.602328395865626,-0.10126503542660648,0,0,17123.070519811292,0.19159019115572065,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1911,0.7810146544824405,0.8874036750204771,0,0,3.725917531952306,0.007499988889321685,0.047217079,0.0812472328543663,0.55672031,34.11459986368815,0.27037941,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.20214,0,457.00000254313153,4281.7592,979.4653218587239,98.4293811567004,299.82899220784503,482.3736483687901,0,0,0,0,0,0,0,0,0,0,0,0,6.7567077621788485e-6,6.6575406e-6,0,0,0,0,3.7329264887375757e-4,6.2431671e-4,0,0,0,0,282.72104136149085,0.9761720065989483,14.679374542895259,76.73370568501319,6.205453710840906,20.007607425742776,-0.10240012153911617,0,0,17244.1854917937,0.1913996219514424,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1912,0.8199661913672125,0.8508398703003752,0,0,3.7091004678175183,0.009259988398601612,0.055977137,0.10000008965531985,1.3372385,34.12980047861735,0.31844894,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.23472,0,457.00000254313153,4283.4718,983.6058603922525,99.26614632335712,300.3529917399089,477.9889214580395,0,0,0,0,0,0,0,0,0,0,0,0,6.802671805417049e-6,6.6972695e-6,0,0,0,0,3.7583205024323735e-4,6.288021400000001e-4,0,0,0,0,283.01904296874994,0.9924203303369911,14.713664798160675,75.8316081908469,6.21946391056852,19.680892428681513,-0.10353520765162587,0,0,17989.19691090075,-0.2483084466661772,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1913,0.889533970104308,0.8203484804069425,0,0,3.787939036045986,0.011569987594460448,0.05934571,0.11666701609889667,2.7874772,34.1497999827067,0.33694139,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.25437,0,457.00000254313153,4284.5046,986.2423197428384,100.61255837319116,300.9099934895833,488.2676034939648,0,0,0,0,0,0,0,0,0,0,0,0,6.848635848655249e-6,6.7356009000000015e-6,0,0,0,0,3.7837145403803635e-4,6.3312652e-4,0,0,0,0,283.3620402018229,1.0114400974128448,14.921807646192061,77.57996159883326,6.453879619764709,20.00732869050688,-0.10467029376413556,0,0,19072.753187289316,-0.30943169229472783,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1914,0.8114913689780275,0.8092045045442162,0,0,3.764418792127778,0.014084987109526992,0.064801984000000007,0.19333053504427275,4.5655912,34.17150020599365,0.36726542,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.19867,0,457.00000254313153,4281.5767,988.610880533854,102.28405865111169,301.4189910888672,494.4978826289548,0,0,0,0,0,0,0,0,0,0,0,0,6.894599891893449e-6,6.765480200000002e-6,0,0,0,0,3.809108626834738e-4,6.3647677e-4,0,0,0,0,283.71604156494135,1.0321295138459616,15.241497455163927,79.77807342879137,6.499176732511072,20.59248108677444,-0.10580537987664523,0,0,17594.434057832063,0.020398445252377703,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1915,0.8029916592535993,0.7974019582591167,0,0,3.7223377832742996,0.016684986495723326,0.08400062900000001,0.31655970215797424,6.2098372,34.193999926249184,0.47153519,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.2716,0,457.00000254313153,4285.4105,991.4610799153645,103.0579197466507,301.9369888305664,484.24768488469795,0,0,0,0,0,0,0,0,0,0,0,0,6.9405635182799115e-6,6.8098518e-6,0,0,0,0,3.8345026890359196e-4,6.4149729e-4,0,0,0,0,284.04704284667963,1.0546195831794383,15.232131029774814,78.35040062356745,6.4827720725927875,20.061424577974346,-0.10694046598915492,0,0,17573.116044207876,0.1641375391623491,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1916,0.8653307900276433,0.7997102256366486,0,0,3.744207068777381,0.019669986019531887,0.10465075,0.5206524853905042,5.9968917,34.21979999542236,0.58467971,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.29863,0,457.00000254313153,4286.831,998.4538218180337,104.08894352066241,302.48498789469403,482.95426600786,0,0,0,0,0,0,0,0,0,0,0,0,6.986527523622499e-6,6.8490958e-6,0,0,0,0,3.8598967269839096e-4,6.4592684e-4,0,0,0,0,284.31204223632807,1.077791381611315,15.342847178146304,78.27985154770643,6.60168085846147,19.908298607149394,-0.1080755521016646,0,0,19065.484279863696,0.18922175763831675,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1917,0.896621584801294,0.8027455741063269,0,0,3.8263968555995858,0.02392498527963956,0.11034348,0.7563406427701315,5.1585271,34.2564001083374,0.61870744,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.37275,0,457.00000254313153,4290.7275,1003.5705515543618,105.4397414501963,303.01098887125653,492.9600447524987,0,0,0,0,0,0,0,0,0,0,0,0,7.032491566860699e-6,6.8937875e-6,0,0,0,0,3.885290813438284e-4,6.509842700000001e-4,0,0,0,0,284.6150461832682,1.1002556131310455,15.500365004779491,80.4548180697849,7.003710361287698,20.17756104011222,-0.10921063821417433,0,0,19906.998931884555,0.19018318847478569,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1918,0.8873955587039598,0.8060358496732685,0,0,3.8305973797130326,0.02868998423218727,0.10461425,0.9276737372080485,4.2721672,34.29749997456869,0.58914082,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.37311,0,457.00000254313153,4290.7462,1010.1304473876952,106.74593160054405,303.44898732503253,496.242073076373,0,0,0,0,0,0,0,0,0,0,0,0,7.078455610098899e-6,6.9300659e-6,0,0,0,0,3.910684875639466e-4,6.550720200000001e-4,0,0,0,0,284.80504862467444,1.1212267086350811,15.704391027274072,81.61294813978053,7.118191256260811,20.368951576880015,-0.110345724326684,0,0,19743.244967391554,0.1899763122778872,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1919,0.7808604024397078,0.8111591475979437,0,0,3.7226411346821937,0.03343498365332683,0.10155164,1.0843643546104431,3.196035,34.338699658711754,0.57214502,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.33647,0,457.00000254313153,4288.8202,1017.6303660074868,108.09510704377881,303.8139877319336,490.9794171167238,0,0,0,0,0,0,0,0,0,0,0,0,7.1244196533371e-6,6.962042700000002e-6,0,0,0,0,3.936078889334264e-4,6.5866401e-4,0,0,0,0,284.85105133056635,1.1402334776582428,15.915652713498652,81.67724386438958,6.926922672741556,20.368638212598857,-0.1115197148188522,0,0,16994.786869895725,0.18976010178406924,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1920,0.9030601007400624,0.8135184546759534,0,0,3.8130101207834444,0.03770498279482126,0.071874804,1.176037738720576,4.0059497,34.375800132751465,0.41169313,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.40157,0,457.00000254313153,4292.2427,1025.0703277587888,109.13363853305731,304.24598693847656,498.87459987539705,0,0,0,0,0,0,0,0,0,0,0,0,7.1703836965753e-6,7.0058716e-6,0,0,0,0,3.961472951535446e-4,6.636221499999999e-4,0,0,0,0,284.9290440877278,1.157633764648187,16.036656139503478,82.96992111207,7.3188151464881575,20.402395098799328,-0.11278881532908334,0,0,18802.69892302283,0.18954070686553806,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1921,0.7938358638145999,0.8612993334837397,0,0,3.661222702405219,0.042184981517493725,0.05599481,1.241669515768687,6.3575754999999985,34.4146998723348,0.32444592,0,0,0,0,0,0,0,0,0,0,5.299997766812642,105.42979,0,457.00000254313153,4293.7261,1032.2003377278643,109.80934796264431,304.59998830159503,486.6136241874396,0,0,0,0,0,0,0,0,0,0,0,0,7.2163477398135e-6,7.045455500000001e-6,0,0,0,0,3.98686703798982e-4,6.6809072e-4,0,0,0,0,285.0390421549479,1.173417684573443,16.01016129774032,81.18725519244387,7.146950074087312,19.846108774902355,-0.11405791583931453,0,0,16049.705932221917,0.1893181118062252,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1922,0.8438966628298804,0.8533692042065284,0,0,3.6583337227642674,0.04389498041321834,0.10093674,1.3888855278491974,7.5196689,34.43010012308756,0.56921203,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.47367,0,457.00000254313153,4296.0327,1039.1002502441404,110.48581040150992,304.9449818929036,484.8273418444006,0,0,0,0,0,0,0,0,0,0,0,0,7.2623117830517e-6,7.0869364000000015e-6,0,0,0,0,4.01226107593781e-4,6.7277807e-4,0,0,0,0,285.17004903157545,1.188779371830489,16.07300912106922,80.53069430512947,7.252038815173717,19.474278395734512,-0.11532701634954567,0,0,16950.895997894484,0.0877045766097048,0.0044465700242047506,0.0077232681000000015,0,0,0,0 +1923,0.9595590008888546,0.8614844099618343,0,0,3.8812462099992877,0.04700497972468535,0.13753371,1.6249915957450867,8.1995609,34.45719941457113,0.77479139,0,0,0,0,0,0,0,0,0,0,5.299997806549072,105.54539,0,457.00000254313153,4299.8026,1045.1300659179685,112.25356413194692,305.27098337809247,514.2343951443905,0,0,0,0,0,0,0,0,0,0,0,0,7.308275826289901e-6,7.131803e-6,0,0,0,0,4.037655138138992e-4,6.7785565e-4,0,0,0,0,285.46704101562494,1.205120977529758,16.469305300306814,86.27583424473677,8.013836332456805,20.417825208931507,-0.11659611685977685,0,0,19723.672024100037,0.12093783396952988,0.004446569985399644,0.007723268,0,0,0,0 +1924,0.9703594405113312,0.8676633311171565,0,0,3.7748090158825875,0.052589978401859604,0.14595489,1.8459543486436207,10.064032,34.50569979349772,0.82730698,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.55899,0,457.00000254313153,4300.5175,1049.450032552083,112.63350596587964,305.62998453776044,499.0974143950571,0,0,0,0,0,0,0,0,0,0,0,0,7.354239869528101e-6,7.169801200000001e-6,0,0,0,0,4.0630492245933664e-4,6.8214162e-4,0,0,0,0,285.6050491333007,1.2222190421891945,16.415647771084632,83.21123114220697,7.790296571572385,19.77882376042076,-0.117865217370008,0,0,19521.89407498274,0.18863121099961191,0.004446569946594536,0.0077232683,0,0,0,0 +1925,0.9836991206856317,0.8708471713839661,0,0,3.7906069821644643,0.05885497791071733,0.15281139,2.1164215207099915,9.887985,34.5605993270874,0.86947278,0,0,0,0,0,0,0,0,0,0,5.299997687339783,105.60265,0,457.00000254313153,4302.8128,1052.159952799479,113.6704269189651,305.81298065185547,502.6957687586778,0,0,0,0,0,0,0,0,0,0,0,0,7.400203495914563e-6,7.2114506e-6,0,0,0,0,4.0884432625413564e-4,6.8684841e-4,0,0,0,0,285.6520512898762,1.2377911006225208,16.841681561106117,84.06174423454924,7.983263811925956,19.753454837168906,-0.11913431788023915,0,0,19738.889839322743,0.18839574168627352,0.004446569985399644,0.0077232681000000015,0,0,0,0 +1926,0.9711936637110966,0.8752881607638067,0,0,3.724383638277895,0.06516497613241275,0.16877181,2.460367262363434,10.020584,34.616199811299644,0.96266008,0,0,0,0,0,0,0,0,0,0,5.299997846285502,105.65209,0,457.00000254313153,4305.4116,1053.600107828776,114.54563027246535,305.9539845784505,499.041820374083,0,0,0,0,0,0,0,0,0,0,0,0,7.4461675012571504e-6,7.2538666e-6,0,0,0,0,4.1138373004893464e-4,6.9164354e-4,0,0,0,0,285.69204711914057,1.2526121062865871,17.14732507530922,84.16877083488303,8.057166101708676,19.573020111236303,-0.12040341839047032,0,0,19808.91323463674,0.18815706175477445,0.0044465700242047506,0.0077232683,0,0,0,0 +1927,1.0719822978926645,0.9148152429216062,0,0,3.8503573823854342,0.0720199750115474,0.19366311,2.6942857106526694,13.691728,34.67679913838705,1.1076116000000005,0,0,0,0,0,0,0,0,0,0,5.299997607866923,105.65063,0,457.00000254313153,4305.3352,1055.770568847656,115.74747998347533,306.17698669433594,515.0910883833536,0,0,0,0,0,0,0,0,0,0,0,0,7.492131544495351e-6,7.290134400000002e-6,0,0.0049450274,0,0,4.1392313869437203e-4,6.9573008e-4,0,0,0,0,285.7400512695312,1.2667652835613548,17.432321744004053,86.52753524964037,8.499773806732605,19.875509864662817,-0.12167251890070148,0,0,21139.782286868525,0.187915087386083,0.004446569985399644,0.0077232677,0,0,0,0 +1928,1.0761742979146,0.9182619073884535,0,0,3.828134931557229,0.07970497260491054,0.21328049999999998,3.02649054924647,16.914307,34.74499924977621,1.2252077,0,0.020814729,0,0,0,0,0,0,0,0,5.2999982436498,105.59392,0,457.00000254313153,4302.3537,1060.6403605143228,116.7958666079441,306.3289794921875,515.8400889336957,0,0,0,0,0,0,0,0,0,0,0,0,7.538095587733551e-6,7.3196023e-6,0,0.030139896,0,0,4.1646254248917103e-4,6.990328999999999e-4,0,0,0,0,285.83304850260413,1.2797850846246124,17.62700284771002,87.11586336850812,8.569023694913732,19.91593076109437,-0.12294161941093265,0,0,21065.047460560574,0.16326849505962074,0.004446569985399644,0.007723269,0,0,0,0 +1929,1.1569513873862218,0.945536477224549,0,0,3.8902159937355303,0.08870497221748035,0.20802541,3.517713646094004,19.38339,34.825199127197266,1.2037865,0,0.33502494,0,0,0,0,0,0,0,0,5.299996972084045,105.60372,0,457.00000254313153,4297.9849,1066.6603291829424,118.01999771578741,306.49498748779297,527.0535755087527,0,0,0,0,0,0,0,0,0,0,0,0,7.584059630971751e-6,7.3457199e-6,8.387752144093005e-4,0.003329301,0,0,4.1900194628397003e-4,7.019496099999999e-4,0,0,0,0,285.8910522460937,1.290827581649255,17.867272783472913,89.37670246877072,8.894481947800461,20.274973944467554,-0.1242107199211638,0,0,22402.21951573089,0.008459436299327926,0.004446569946594536,0.007723266199999999,0,0,0,0 +1930,1.0728864782722383,1.0228008835417055,0,0,3.9076228058376485,0.0980799701064825,0.17035764,4.063463946183522,20.571834,34.909299532572426,0.99750344,0.001314997343191256,1.1701026,0,0,0,0,0,0,0,0,5.299998998641968,105.91828999999998,0,457,4287.8382,1072.6401163736978,119.67017881003574,306.6199773152669,535.0349028180784,0,0,0,0,0,0,0,0,0,0,0,0,7.630023560523114e-6,7.3580297999999985e-6,0.00510867650154978,-0.026051043,0,0,4.2154135735472664e-4,7.0327493e-4,0,0,0,0,285.9380518595377,1.3003703550961545,18.10997615018731,91.59573862667055,8.841770878325681,20.952388588675653,-0.12547982156900256,0,0,20792.33985686783,0.17991195822791398,0.004446570101814966,0.0077232725,0,0,0,0 +1931,0.9686717262631225,1.0331302905231323,0,0,3.699193086333459,0.10662497021257877,0.11326202,4.702978173891704,21.232329,34.9865992863973,0.6766021,0.021151568042114377,1.6600328999999998,0,0,0,0,0,0,0,0,5.3066509167353315,106.6887,0,457.000005086263,4282.6938,1077.4902242024737,119.90750782308882,306.82198333740234,504.89813450435264,0,0,0,0,0,0,0,0,0,0,0,0,7.675987490074476e-6,7.3819696e-6,0.0013775627594441175,-0.0038292076,0,0,4.2408076114952564e-4,7.059406299999999e-4,0,0,0,0,286.124043782552,1.3073181920546588,17.958294196248843,86.48531866506026,8.206316153499158,19.782983456664027,-0.12674892343562766,0,0,18348.14599749548,0.1869152841968948,0.0044465698301792145,0.0077232589,0,0,0,0 +1932,0.8802743934777767,0.934985060725432,0,0,3.701120518695932,0.11274996710320313,0.085847633,5.2942134141922,23.837144,35.04279931386312,0.51911084,0.07499745239814122,1.6167368,0,0,0,0,0,0,0,0,5.338305354118347,107.41813,0,457.00000254313153,4276.7559,1081.9602254231768,121.42198728704909,307.09297943115234,510.1823315036154,0,0,0,0,0,0.0057643486,0,0,0,0,0,0,7.721951533312676e-6,7.4038620000000015e-06,6.616643853097534e-4,7.431065e-4,0,0,4.2662016494432464e-4,7.083703599999999e-4,0,0,0,0,286.222048441569,1.3141063515038527,18.10001303714107,87.9072537284969,8.14248430159185,20.161815548303863,-0.12801802530225273,0,0,16151.105195411223,0.04254262073622287,0.004446570334645609,0.0077232888,0,0,0,0 +1933,0.9234526077537247,0.9318013427122356,0,0,3.6739916956408347,0.11636996641755104,0.10162739999999999,5.937420805295308,28.120028,35.076699574788414,0.61081444,0.12499795357386272,1.6336582,0,0,0,0,0,0,0,0,5.379978577295939,108.09758,0,456.99999745686847,4271.2585,1086.540334065755,122.34376589659303,307.40198008219403,508.11601205842635,0,0,0,0,0,0.14482802,0,0,0,0,0,0,7.767915576550877e-6,7.4266479000000016e-6,7.192010428601255e-4,8.0764091e-4,0,0,4.2915957358976203e-4,7.1090308e-4,0,0,0,0,286.3710505167643,1.3197777870137994,18.14058311592853,87.73926442282286,8.102332976784076,20.019613310457757,-0.1292871271688778,0,0,16995.040808999714,0.15037091489606738,0.004446569170492391,0.0077232216,0,0,0,0 +1934,1.000687973523085,0.9200297551297542,0,0,3.8176224066538618,0.120129964624842,0.15202423,6.679798523585002,34.519287,35.111599604288735,0.91252255,0.174997894714276,1.6505883,0,0,0,0,0,0,0,0,5.419978777567546,108.91202,0,456.99999745686847,4272.3774,1091.770294189453,123.95329985100088,307.7849833170573,528.0331660089164,0,0,0,0,7.617614949898174e-4,0.60639434,0,0,0,0,0,0,7.813879619789077e-6,7.4653224e-6,7.817409447549531e-4,8.7789025e-4,0,0,4.3169897738456103e-4,7.152669800000001e-4,0,0,0,0,286.4670486450195,1.326062978814577,18.32411358884008,91.49703968423377,8.603675585096985,20.702617836824825,-0.1305562290355029,0,0,18679.912767508573,0.18613128672545048,0.004446571848044793,0.007723374200000002,0,0,0,0 +1935,1.0505968685462075,0.9186843152571444,0,0,3.826763235457096,0.12510996125638485,0.22028466,7.595823089281718,40.132859,35.15789985656738,1.3303298,0.22499790415167809,1.6675173,0,0,0,0,0,0,0,0,5.459979295730591,109.70014,0,457,4272.1486,1097.08012898763,124.8946043872966,308.2269795735677,529.4409406291938,0,0,0,0,0.019080033137773473,0.97427321,0,0,0,0,0,0,7.859843663027277e-6,7.500741299999999e-6,8.497191738570109e-4,9.5422447e-4,0,0,4.3423838117936003e-4,7.192557e-4,0,0,0,0,286.58704884847,1.332452330452497,18.317319645408826,91.90214074154562,8.779424673428734,20.543197042155484,-0.13182533090212795,0,0,20077.943320367118,0.18586353451204687,0.004446565833253165,0.0077230226,0,0,0,0 +1936,1.1503667221829357,0.9270693885573005,0,0,3.9720080230657695,0.13321496173739433,0.28820401,8.761372248331705,42.33712,35.23359902699789,1.7570203000000002,0.27499790986378986,1.6844464,0,0,0,0,0,0,0,0,5.4999799728393555,110.56758,0,456.999994913737,4275.9063,1101.8303019205728,126.46470475438792,309.01197306315106,550.0398548533171,0,0,0,0,0.07932233065366745,1.0455299,0,0,0,0,0,0,7.905807706265477e-6,7.545934399999999e-6,9.236086334567517e-4,0.001037276,0,0,4.367777898247975e-4,7.243709e-4,0,0,0,0,286.7470448811848,1.3386899894061661,18.652869642211954,95.83484543323485,9.362043924590697,21.164186541248704,-0.13309443276875307,0,0,21597.571787769164,0.185592517547358,0.0044465794538458185,0.007723846199999999,0,0,0,0 +1937,1.231103104871657,0.9045164915618376,0,0,3.977215074471826,0.14407995715737343,0.34372195,10.024959723154703,44.188471,35.3363987604777,2.1186454,0.3249979118506114,1.7013755000000002,0,0.0063900215,0,0,0,0,0,0,5.539980530738831,111.3625,0,457.00000254313153,4275.9946,1106.3199869791665,127.18233706750797,309.7639745076497,550.6109419060176,0,0,0,0,0.1400045237193505,1.1131878000000002,0,0,0,0,0,0,7.951771749503678e-6,7.5821791e-6,0.0010039232001872733,0.0011274768,0,0,4.3931719604491565e-4,7.2845477e-4,0,0,0,0,286.95104471842444,1.3465253526433507,18.73588299543127,95.84567433043011,9.575630542004474,20.850604708617507,-0.13436353463537815,0,0,23231.712031323073,0.1853182578338796,0.004446548409759998,0.0077218498,0,0,0,0 +1938,1.1614219711074325,0.9073215418860066,0,0,3.8795464313880084,0.1580399548014005,0.39883954,11.266163110733032,49.06474,35.46979935963949,2.4891541,0.3749979188044866,1.7183046999999998,0,0.1328808,0,0,0,0,0,0,5.579981207847595,112.0603,0,456.99999745686847,4271.2734,1110.6307983398435,127.90539303616418,310.2939758300781,535.4268484555511,0,0,0,0,0.20000430569052696,1.185033,0,0,0,0,0,0,7.997735792741878e-6,7.6064912e-6,0.0010912219295278192,0.0012254241,0,0,4.4185659983971465e-4,7.3116337e-4,0,0,0,0,287.191042582194,1.3551266769032138,18.7206280051743,93.2370606174549,9.13361208452991,20.283818003860038,-0.13563263650200325,0,0,21542.975865724657,0.1850407365123296,0.004446620470844209,0.0077285525,0,0,0,0 +1939,1.2326137038964111,0.9058800276933815,0,0,4.010820601451636,0.1736899564663569,0.43390074,12.575761953989664,56.68305400000001,35.62149874369303,2.745053,0.4249979183077812,1.7352338,4.437717252585571e-4,0.68779311,0,0,0,0,0,0,5.61998176574707,112.8293,0,457.00002034505206,4270.1197,1116.909678141276,129.50135676592018,310.8509750366211,554.5379171230255,0,0,0,0,0.26000453531742096,1.2571398,0,0,0,0,0,0,8.043699835980078e-6,7.6395717e-6,0.0011861117285055418,0.0013320616,0,0,4.443960084851521e-4,7.3488257e-4,0,0,0,0,287.3870468139648,1.3668291715856424,18.987929691357078,97.34535423251211,9.632984018885308,21.020853325485078,-0.13690173836862835,0,0,23010.268809183824,0.1847599106254542,0.004446447691104065,0.11813875,0,0,0,0 +1940,1.332494477928578,0.8934636293441599,0,0,4.026253626433618,0.19239995131889978,0.50172554,14.090854724248251,67.98074100000001,35.804999033610024,3.2190952,0.4749979227781296,1.7521629,0.009225911945880702,1.4928916,0,0,0,0,0,0,5.6599823633829756,113.75015,0,456.9999643961589,4276.3916,1120.120178222656,130.13499426241637,311.35697682698566,550.4654056455058,0,0,0,0,0.3200042446454366,1.3304593999999998,0,0,0,0,0,0,8.089663500262153e-6,7.6912641e-6,0.0012892556163327147,0.0014481828,0,0,4.469354122799511e-4,7.4074684e-4,0,0,0,0,287.61904144287104,1.3795892066065865,18.93380647928792,96.49612886832482,9.961368880607099,20.566275747266797,-0.13793690008074544,0,0,25159.0741191676,0.1844758339571321,0.0044469935819506645,0.21814961,0,0,0,0 +1941,1.3573323902091925,0.87608140300394,0,0,4.050294266866393,0.21106995145479837,0.64957282,15.872149070103964,81.740279,35.991299311319985,4.2240743,0.5249979098637899,1.769092,0.04815833130851388,2.2339929,0,0,0,0,0,0,5.69998296101888,114.54353,0,457.0000813802083,4282.9257,1123.240509033203,132.2180939399341,311.81097412109375,552.9500650768001,0,0,0,0,0.3800046021739642,1.4028748,0,0,0,0,0,0,8.135627467709128e-6,7.727317500000001e-6,0.0014013840700499713,0.0015741503,0,0,4.494748160747501e-4,7.448086699999999e-4,0,0,0,0,287.8640467325846,1.42706317607174,19.034030783582587,97.09407345232208,10.193711740010501,20.462031367555745,-0.1386016615843945,0,0,26113.949704774812,0.1841885864846894,0.012151915968085328,0.1951164,0,0,0,0 +1942,1.3590493190022876,0.8973145216954003,0,0,4.1141932838166495,0.23562495286266008,0.84353078,18.12043031056722,95.021136,36.23889923095703,5.585489,0.5749979317188263,1.7860212,0.112600847457846,2.976471,0,0,0,0,0,0.19841173,5.739983518918355,115.26991,0,456.9997380574544,4303.7401,1128.1901550292966,134.70602408126945,312.17197672526044,560.1841861089208,0,0,0,0,0.4400041376550992,1.4745563999999998,0,0,0,0,0,0,8.181591510947328e-6,7.7551846e-6,0.0015232670799984287,0.0017109548,0,0,4.5201422229486826e-4,7.4792699e-4,0,0,0,0,288.1380538940429,1.5298185446895778,19.210183227285178,98.65719695401302,10.345483778655613,21.014193770024683,-0.13926642308804354,0,0,26702.042786503276,0.18389809416798145,0.018664849922060966,0.16898031,0,0,0,0 +1943,1.4029458246329907,0.8921248427380299,0,0,4.11408578168194,0.267039954662323,0.80476688,20.794118722279865,89.521615,36.56109873453776,5.4576739000000005,0.6249979237715403,1.8029502,0.20245546102523804,3.7199961,0,0,0,0.056451758,0,4.3053247,5.77998411655426,116.04761,0,457.93199666341144,4331.4951,1132.6601562499998,136.62968688428126,312.3899790445964,561.0185502959332,0,0,0,0,0.5000047385692596,1.5467027,0,0,0,0,0,0,8.227555554185528e-6,7.789335e-6,0.0016557506072179724,0.0018597366,0,0,4.545536309403057e-4,7.517695e-4,0,0,0,0,288.78102874755854,1.6777932069727464,19.226489945128584,99.48634644476039,10.644062862464148,20.76469900653816,-0.13993118459169265,0,0,27110.348585419746,0.1836043762155363,0.023900681796173256,0.14684461,0,0,0,0 +1944,1.3879131189978564,0.8983189521156985,0,0,4.111269896041665,0.30831495175759,0.41764093,23.86478344599406,72.69430200000002,36.99279912312826,2.9606569,0.6749979356924692,1.8198794,0.3176470845937729,4.4638059000000005,0,0,0,0.97266311,0.019433656940236688,16.545617,5.8199847141901655,116.85265,0,460.7425028483073,4354.745,1136.270060221354,138.93105622391963,312.41297149658203,569.4275578497453,0,0,0,0,0.5600039213895798,1.6191675,0,0,0,0,0,0,8.273519597423729e-6,7.8268219e-6,0.00179975672896641,0.0020215068,0,0,4.570930347351047e-4,7.559967e-4,0,0,0,0,289.00005086263013,1.8537439967013465,19.454671365649084,102.00830515112277,10.972149966258387,20.918122282494288,-0.14059594609534168,0,0,26578.15151015907,0.18330738198668892,0.027877628337591887,0.11439264,0,0,0,0 +1945,1.180916481863783,0.8988221719461101,0,0,3.970406317162407,0.33637995769580203,0.20111842,25.904248396555584,68.369262,37.297698974609375,1.5076942,0.7249979277451833,1.8368084,0.4580556924144427,5.2077233,0,0,0.004844144840414326,3.4593405,0.4215002196530501,24.846154,5.85998531182607,117.6118,0,463.24369557698566,4376.5008,1139.32036336263,141.02296395690516,312.38497670491535,562.3881403027648,0,0,0,0,0.6200050512949625,1.69101,0,0,0,0,0,0,8.319483640661929e-6,7.8587212e-6,0.0019562874901263663,0.0021972582,0,0,4.596324409552229e-4,7.595796e-4,0,0,0,0,289.2270406087239,2.0468366239992983,19.530998731486306,102.38686289278726,10.811058367654892,20.630415192374578,-0.14126070759899073,0,0,23414.92285804937,0.18300712894373766,0.03101034214099248,0.080798572,0,0,0,0 +1946,1.2942110656768657,0.9829470073282762,0,0,3.9716964354580995,0.3442649617791176,0.27970458,27.504756927490234,74.71723399999998,37.39169883728027,2.0726649,0.7749979496002197,1.8537378,0.6235543092091879,5.9856104000000006,0,0,0.08337228807310264,4.940467900000002,1.6357106665770214,24.839378,5.899985949198405,118.39896,0,465.7432912190755,4399.6117,1143.6604919433591,142.70640224525258,312.38997141520184,555.2899629515077,0,0,0,0,0.680003434419632,1.7631907999999998,0,0,0,0,0,0,8.365447683900129e-6,7.894034299999999e-6,0.002126432334383329,0.0023883489,0,0,4.621718496006603e-4,7.635561099999999e-4,0,0,0,0,289.4270451863606,2.2422352077889016,19.68948842063387,102.65818348678006,10.80993836386383,20.305933499558623,-0.14192546910263978,0,0,23137.2912384495,0.18270359473494088,0.03229169764866432,0.06430042700000001,0,0,0,0 +1947,1.4498949379331847,1.013635265025484,0,0,4.004289599390247,0.3536549558242162,0.34838359,29.078561464945476,84.081746,37.50009854634603,2.6369074,0.8249979366858801,1.8706665,0.8140119264523188,6.4443541,0,0,0.3000110412637393,4.8390374000000005,2.835014005502065,24.982371,5.93998658657074,119.2973,0,468.2434260050456,4428.0553,1149.6402994791665,144.7944964951042,312.48597208658856,563.4037753734774,0,0,0,0,0.7400057514508566,1.8372679,0,0,0,0,0,0,8.41141172713833e-6,7.9428476e-6,0.0023113751861577234,0.0025963146,0,0,4.647112509701401e-4,7.6908855e-4,0,0,0,0,289.51104482014966,2.4286545050325703,19.916095128874474,104.15736760766261,11.489678423181335,20.190999473703123,-0.14259023060628884,0,0.0033728385,25978.580134271393,0.18239681638037056,0.03281248671313127,0.046731228,0,0,0,0 +1948,1.541746757752381,1.0217889660432258,0,0,4.123520872976997,0.3683149615923564,0.33316898,31.041143258412678,90.670686,37.670498530069985,2.6243892000000004,0.8749979635079702,1.8875961,1.0316545367240906,6.6649072,0,0,0.5000130111972491,4.856366099999999,4.025014281272888,24.987103,5.979986985524495,120.08364,0,470.7433776855469,4451.0369,1155.630167643229,147.27202945137043,312.5209681193034,586.5360800457117,0,0,0,0,0.8000023066997528,1.966277,0,0,0,0,0,0,8.45737577037653e-6,7.9780491e-6,0.002512403065338731,0.0033276717,0,0,4.672506547649391e-4,7.7305219e-4,0,0,0,0,289.55605316162104,2.589644895931103,20.349060560415165,108.09641738801687,12.195764994941479,20.65035706357972,-0.14325499210993792,0,0.023611977000000003,27162.316753376424,0.1820867991187164,0.0328332781791687,0.020169381,0,0,0,0 +1949,1.5150340802151026,1.0322291088892992,0,0,4.0957465510773075,0.38362496097882587,0.31424196,33.192337354024254,91.962416,37.855198542277016,2.5926444,0.9249979307254156,1.8955033,1.2518172562122345,7.1640705,0,0,0.7000119686126709,5.561141,5.215012947718303,27.295461,6.019987901051839,120.70601,0,473.243403116862,4466.7618,1160.3499450683591,150.21571488778258,312.63197072347003,588.4410386834926,0,0,0,0,0.8600076138973236,1.6426278000000003,0,0,0,0,0,0,8.50333981361473e-6,7.993390500000001e-6,0.0027309151094717285,0.02463759,0,0,4.697900658356957e-4,7.747269e-4,0,0,0,0,289.59805043538404,2.7140139811269637,20.909195897992674,109.1544257771438,11.863971231370714,21.081179377216955,-0.14391975361358694,2.747740879082509e-4,0.063741035,26198.851367200677,0.18177350173895448,0.03209515412648519,-0.0015784357,0,0,0,0 +1950,1.6956807866542396,1.0454343901508287,0,0,4.3312607912797665,0.3969699591398239,0.32876887,35.499832471211754,78.580053,38.023898442586265,2.8441101000000004,0.9749979873498281,1.9897329,1.4824664394060771,7.4706053,0,0,0.8938818424940109,8.1460574,6.382257183392842,32.673745000000004,6.059987783432007,121.62274,0,475.7314631144206,4499.2896,1163.820566813151,152.20100844625213,312.8209762573242,619.9439709148871,0,0,0,0,0.9275005906820297,1.0661465,0,0,0,0,0,0,8.549303477896805e-6,8.0453408e-6,0.003054187574889511,0.10531435,0,0,4.723294696304947e-4,7.806208900000001e-4,0,0,0,0,289.73904164632154,2.7868238058947905,21.601404570641137,113.85984719531825,13.132141828954166,22.105810561368756,-0.14458451511723602,0.001923504489241168,0.16053368,29148.546819670417,0.1814569633566329,0.03030576727663477,2.432756e-4,0,0,0,0 +1951,1.8173567042308394,1.2637884621306537,0,0,4.212336067356143,0.41064496090014774,0.33222262,37.58082548777262,70.47669,38.204298655192055,3.0430784,1.0244279702504475,2.1685287,1.7349158823490143,7.5542237,0,0,1.1468555231889088,12.050138,7.775353193283081,36.815853,6.099990487098694,122.51807,0.014330518,478.3116455078125,4529.1876,1168.810119628906,155.27193516536855,313.01397196451825,593.1994505844021,0,0,0,0,0.9349976976712545,1.0527789,0,0,0,0,0,0,8.59526744534378e-6,8.0850349e-6,0.006885135274690886,0.2343219,0,0,4.748688734252937e-4,7.8510233e-4,0,0,0,0,289.8600540161132,2.8307926461022945,21.710967064016447,109.09095441872181,13.152193894404679,20.398188183698103,-0.14710768873059346,0.005466860408584277,0.23983988,30378.934969744696,0.18113711866275609,0.028203126974403858,0.0011664316,0,0,0,0 +1952,1.8518759304813062,1.2915086581093504,0,0,4.27824996657228,0.42523996035257977,0.32854487,38.706894874572754,76.508762,38.406997998555504,3.2228257,1.079317679007848,2.4120426,1.984303871790568,7.673401400000001,0,0,1.5540266533692677,16.078842,9.444400389989218,40.441283,6.139426151911418,123.26435,0.21725302,481.16064198811847,4558.7052,1174.3108825683591,160.57335760480584,313.3419774373372,606.9563399935745,0,0,0,0,0.9200002650419871,1.4414744,0,0,0,0,0,0,8.64123148858198e-6,8.100092099999999e-6,0.02087512387273212,0.36283509999999997,0,0,4.7740828449605033e-4,7.867442699999999e-4,0,0,0,0,290.02505238850904,2.873469224433514,22.393786048989185,112.61821090484105,13.48661503998857,20.95793435117974,-0.1497592068193485,0.01499934789414207,0.24565292,30772.879377004218,0.1808140109638238,0.026776751192907493,-0.0020300648,0,0,0,0 +1953,1.9058871956207555,1.288662579097105,0,0,4.400134890913105,0.4392099554340045,0.31999622,40.05176067352295,81.681224,38.61429913838705,3.3863087,1.1389276186625164,2.8478934,2.2399121522903442,7.7034458,0,0,2.129436651865641,20.201055,11.213325262069702,45.581432,6.184987505276998,124.06078,1.3575508,484.1764450073242,4600.7084,1183.360656738281,165.68183230817434,313.72996775309247,623.9750547982311,0,0,0,0,0.9262516697247823,2.1004080000000003,0,0,0,0,0,0,8.68719553182018e-6,8.1248995e-6,0.04651178978383541,0.48047903,0,0,4.7994768829084933e-4,7.8950997e-4,0,0,0,0,290.3340403238932,2.918473220829267,23.086276532048977,116.77653779023555,14.050620354457529,21.600939708208692,-0.15241072490810365,0.024999434128403664,0.24572915,31392.44295532122,0.18048767518443254,0.02495241429035862,-2.2819236e-4,0,0,0,0 +1954,1.9553258305658399,1.3426832443153052,0,0,4.475107773130416,0.4534849599003792,0.29457384,41.54246679941813,86.86346999999998,38.84129842122396,3.4048632000000003,1.2079770465691884,3.2763156,2.4949118296305337,7.760213,0,0,2.8635963996251426,25.212381,13.203928073247274,51.892411,6.22998833656311,124.75392,3.6198833,488.50885518391925,4629.2231,1194.4306030273435,170.37100791893153,314.09496815999347,628.9096635314064,0,0,0,0,0.9637557764848074,2.8888848,0,0,0,0,0,0,8.73315957505838e-6,8.1370738e-6,0.08213070034980774,0.59576061,0,0,4.824870896603291e-4,7.9081967e-4,0,0,0,0,290.54804992675776,2.9653052307782946,23.518269296485517,118.7896928573186,14.352627821692423,21.654738949016565,-0.15506224299685875,0.034999388890961804,0.24580572,31601.64061572461,0.1801580463648328,0.0234999794823428,-0.0040708208,0,0,0,0 +1955,2.1387868172549656,1.3878206830387967,0,0,4.585745111893209,0.46671496083339054,0.26311875,43.17295900980631,91.980019,39.07069810231527,3.3346824,1.2937463521957397,3.6788015,2.7499121824900308,7.6370702,0,0,3.7677908142407737,30.727319,15.439632256825766,59.87188100000001,6.274988849957784,125.74327,6.4848679,493.2549794514974,4666.3367,1206.65092976888,174.7404470567501,314.4149703979492,641.3267253315221,0,0,0,0,1.0538601179917653,3.5564777000000003,0,0,0,0,0,0,8.77912361829658e-6,8.184845900000001e-6,0.1274599153548479,0.70910415,0,0,4.8502649830576655e-4,7.9623211e-4,0,0,0,0,290.84404500325513,3.016004167545106,23.788691617349485,122.54258151361353,15.359884890806127,21.61194057224027,-0.15771376108561386,0.044999435233573117,0.24588273,34555.402722250226,0.17982516920850813,0.021999980478237074,0.0010493547,0,0,0,0 +1956,2.291039468224933,1.4462836425278403,0,0,4.8444014888868745,0.478794959684213,0.22075982,44.93925635019938,97.008491,39.3001979192098,3.0796375,1.3882061143716176,4.2759912,3.006162941455841,7.543031599999999,0,0,4.90076740582784,33.546756,18.00713857014974,66.950489,6.319989720980327,126.58168,9.1561662,496.95969645182294,4699.2729,1221.1007995605466,180.671117460758,314.6979675292969,673.8062290292883,0,0,0,0,1.1860103805859883,4.5322657999999985,0,0,0,0,0,0,8.82508766153478e-6,8.2145095e-6,0.1822890266776085,0.82044371,0,0,4.8756590210056555e-4,7.995574900000001e-4,0,0,0,0,291.1870447794596,3.067693130108469,24.39548109092037,129.82302004314178,16.407730767105924,22.724482756858983,-0.16036527917436896,0.05499937882026037,0.24595899,37118.77108719959,0.1794890063461402,0.020458318758755922,0.006640162099999999,0,0,0,0 +1957,2.384773000160331,1.4774945790842637,0,0,5.084522572350242,0.489309956630071,0.18587639,46.82995192209879,102.11597,39.52009836832682,2.8571248,1.4974753856658936,4.9612019,3.2499133944511414,7.3765313,0,0,6.239397327105205,32.871446,20.977540334065754,72.204141,6.364989757537842,127.41838,11.488509,500.6978174845378,4733.2024,1235.8001810709634,186.0555677386444,314.9919611612956,695.9496130566932,0,0,0,0,1.3464653591314952,5.9875108,0,0,0,0,0,0,8.871051704772981e-6,8.2451464e-6,0.2464121406277021,0.92977447,0,0,4.901053131713221e-4,8.029950599999999e-4,0,0,0,0,291.5120417277018,3.1227659361540883,25.10938270800668,135.59152056062854,17.202288510585237,23.82634944628376,-0.16301679726312407,0.06499945092946291,0.24603635,38873.754310972414,0.1791495207576567,0.019499980999777716,0.004342369,0,0,0,0 +1958,2.4670954688378814,1.5285973472099872,0,0,5.060488042524024,0.4977349440256755,0.17928487,48.83994928995768,107.206,39.715097745259605,2.9954591,1.6274844805399578,5.6330503,3.4969948132832847,6.9087313,0,0,7.567232608795166,34.746284,24.184339841206867,80.925329,6.409992456436157,128.42262,14.781202,504.5039291381836,4771.3965,1247.4204813639321,188.38553994967657,315.344965616862,661.285485841322,0,0,0,0,1.5845945576826732,7.120203999999998,0,0,0,0,0,0,8.917015748011181e-6,8.2860065e-6,0.3196182499329249,1.0371306,0,0,4.926447145408019e-4,8.0761087e-4,0,0,0,0,291.7720464070637,3.18418831910038,25.26871426472444,129.20858361180427,17.043104741234497,22.24665040214954,-0.16566831535187918,0.07499935726324718,0.24611309999999997,39341.991357154206,0.1788067540033275,0.018499995737026136,0.0026052944,0,1.5255345e-5,0,1.550744e-4 +1959,2.6036729140488357,1.4736682886389454,0,0,5.186762349282971,0.505239948630333,0.18081021,50.97114499409994,112.29185,39.90489800771078,3.2476716,1.777483691771825,6.388022599999998,3.7265921036402383,6.8760458,0,0,8.797123988469442,43.506257,27.60905106862386,93.983467,6.4542984167734785,129.47587,18.063698,508.3637110392253,4808.726,1257.320078531901,192.68675731110378,315.8069661458333,665.4367222123257,0,0,0,0,1.9060347974300385,8.0253807,0,0,0,0,0,0,8.962979791249381e-6,8.3259739e-6,0.40169936915238696,1.1424694,0,0,4.951841207609201e-4,8.121238e-4,0,0,0,0,291.98704274495435,3.250322629161094,25.784568318874836,131.21049744121555,17.515266326606977,22.136950451664426,-0.1683198334406343,0.08499948245783646,0.30755864,41319.47350993611,0.1784607567238176,0.017499990140398342,8.684612300000001e-4,0,1.2225318000000002e-4,0,0.0012460364 +1960,2.728446849074149,1.4615195318866923,0,0,5.288213084302709,0.5130949467420578,0.17259465,53.211243311564125,117.2597,40.118597666422524,3.3209398,1.9469429155190785,7.3201718,3.938670496145884,7.2392631,0,0,10.23712126413981,56.28148100000001,31.60536019007365,107.5417,6.504989147186279,130.53321,21.750437,512.2328440348307,4847.0424,1264.1198730468748,197.26110047577146,316.62496693929035,668.5656629833454,0,0,0,0,2.2494065960248313,9.5885732,0,0,0,0,0,0,9.008943455531456e-6,8.3712137e-6,0.49244747559229535,1.2458107,0,0,4.977235318316767e-4,8.1724438e-4,0,0,0,0,292.2830454508463,3.323928526213912,26.127946785499923,133.33681491027784,18.137986763264845,22.068663139398165,-0.16971698815179884,0.09499939220647018,0.43040209999999995,42970.73471143208,0.17811146430862335,0.016499992460012436,-8.684921e-4,1.2107990556842196e-6,2.3072394e-4,6.978449713794059e-6,0.0023750868 +1961,2.7521018504089363,1.531158201999545,0,0,5.280187774913458,0.5207299540440241,0.16861102,55.563539822896324,121.58986000000002,40.34249718983968,3.4304351000000004,2.141221841176351,8.4287849,4.1636671622594195,7.4514735,0,0.0018618006,12.167853911717733,70.618557,36.23666445414225,123.80387,6.554991841316223,131.26152,27.278298,516.0400848388672,4864.0212,1269.4615275065103,205.13834130452685,317.29896291097003,701.0053452576341,0,0,0,0,2.637653867403666,11.884386,0,0,0,0,0,0,9.054907422978431e-6,8.367736999999999e-6,0.5916525920232137,1.346892,0,0,5.002629332011566e-4,8.1675024e-4,0,0,0,0,292.60204569498694,3.545375735491367,26.889738501199272,143.56526348207862,18.738996990578176,23.373573142607228,-0.17042405828273247,0.10999903393288453,0.55328481,48370.747602751726,0.1748425912224242,0.015499991675217947,-0.0026053238,9.686392521264983e-6,2.4913556000000003e-4,5.5827597558770016e-5,0.003546415 +1962,2.868392578555052,1.520724683920321,0,0,5.268371108547883,0.5278749416271845,0.17112099,58.007436752319336,125.71015,40.56609694163004,3.6249821,2.365680515766144,9.612767800000002,4.398663679758708,7.580527900000001,0,0.045181371,14.639893293380737,86.214551,41.47677803039551,144.89716,6.604418396949768,132.4011,32.049021,519.7264709472656,4895.6486,1282.5712890624998,207.2122991826155,318.0439631144206,678.8492233714484,0,0,0,0,3.1291542649269104,14.500089,0,0,0,0,0,0,9.100871466216631e-6,8.405538e-6,0.699107696612676,1.4460951000000002,0,0,5.028023394212747e-4,8.2101348e-4,0,0,0,0,292.9450378417968,3.678783292234149,27.391344297603926,140.1058920148071,19.332929386112895,22.550094638193304,-0.1711311284136661,0.12999879072109857,0.61483924,49373.4626711147,0.018878477916170075,0.01449999026954174,-0.0043425207,1.9372784966738738e-5,2.5250226000000003e-4,1.1165519572386984e-4,0.0049206759 +1963,3.036186160713145,1.5272093107248352,0,0,5.437875742912039,0.535164937376976,0.18314033,60.507436434427895,128.88013,40.80479653676351,3.9881367,2.6255189975102744,10.949721,4.63597031434377,7.911085400000001,1.4331860863118587e-4,0.24720738,17.71703306833903,101.83231,47.60459232330322,167.67883,6.659987608591716,132.99126,37.52532,523.2439982096354,4904.2354,1300.79057820638,216.19226558975322,318.64996337890625,741.3196016175318,0,0,0,0,3.753723760445913,17.280228,0,0,0,0,0,0,9.146835509454831e-6,8.3926404e-6,0.814602812131246,1.5429261,0,0,5.053417504920313e-4,8.194336200000001e-4,0,0,0,0,293.32704925537104,3.8037763068903097,28.744647607968993,156.13095399196706,20.520847373631998,24.609210933874923,-0.1718381985445997,0.15499834592143694,0.55366285,50918.547922521546,-0.7158139715324602,0.013499994995072484,-0.0078699311,2.905917745010811e-5,3.5209498e-4,2.0954201075558862e-4,0.005972759100000001 +1964,3.1935857269729495,1.5182530872301747,0,0,5.25990946510033,0.5425249338150024,0.20130699,63.07753308614095,129.76928999999998,41.05469576517741,4.432625700000001,2.9195976853370667,12.657214,4.877436995506287,8.477894599999999,0.003477728799528753,0.46848862,21.421671549479168,116.30072,54.79980500539144,189.8766,6.715564290682475,134.07707,49.914046,526.5386403401693,4933.087,1317.3704528808591,216.5561629558192,319.3329620361328,689.1114600087734,0,0,0,0,4.5027817487716675,20.771971,0,0,0,0,0,0,9.192799552693032e-6,8.436046300000001e-6,0.9379299183686575,1.6379776,0,0,5.078811470108727e-4,8.243428e-4,0,0,0,0,293.6850484212239,3.94575429191722,28.607416327576342,146.45477556142896,21.250626659387255,22.37762398460907,-0.17254526867553333,0.17999867846568426,0.49245891,52831.63766662475,-0.6203003960549346,0.012499973177909851,-7.597085899999999e-4,3.8745569933477476e-5,0.0010303711,3.218187654662567e-4,0.033580017000000004 +1965,3.342046614628416,1.5494103546996891,0,0,5.2700102527121695,0.5508499294519424,0.22504179999999996,65.62683486938477,129.69213,41.342495918273926,4.9089192000000015,3.2579756379127502,14.528257,5.135173638661702,9.0358315,0.019166271900758147,0.58010695,25.709799925486248,130.83983999999998,63.0290142695109,213.3919,6.764422178268433,135.19804,70.507935,529.5773620605469,4953.0596,1331.0602823893228,222.666415702745,319.81596120198566,709.3122962703268,0,0,0,0,5.391107479731242,25.0603,0,0,0,0,0,0,9.238763595931232e-6,8.4640089e-6,1.0688820282618205,1.7308461,0,0,5.10420553230991e-4,8.274721400000001e-4,0,0,0,0,294.04503885904944,4.115195266374096,29.972153677829578,153.40539119426893,22.08301053841794,22.64997293102378,-0.17325233880646695,0.1999987723926703,0.4926084,54063.80178149757,-0.2927293197139612,0.01137502615650495,0.015948649,5.60693097213516e-5,0.0021406888,4.596758565943067e-4,0.11324642 +1966,3.501720550339981,1.5517652807392261,0,0,5.285174795936927,0.5597749253114065,0.26721734,68.0712407430013,129.70542,41.65249570210775,5.6248074,3.653163174788157,16.547774,5.413369536399841,9.5008952,0.039499382954090834,0.77191369,30.50373379389445,147.99606,72.2479305267334,240.15802,6.8193081219991045,136.46754,94.258765,532.3371022542318,4976.4474,1342.240509033203,226.31069580205852,320.8799565633138,710.941466458106,0,0,0,0,6.472539742787679,30.477075,0,0,0,0,0,0,9.284727639169432e-6,8.5066137e-6,1.2072421511014302,1.8217969,0,0,5.129599594511092e-4,8.322890299999999e-4,0,0,0,0,294.45304361979163,4.31119735595728,31.553067549575943,156.4949809106804,22.847791402233124,22.434297142441455,-0.17395940893740058,0.21999895945191383,0.61550021,55269.31676159744,0.11690965230767818,0.010999986358607808,0.069786165,1.1921713667106815e-4,0.0031030971,0.0018055206843807052,0.20275693 +1967,3.6259660139730605,1.595865385821404,0,0,5.390458849300692,0.5701449265082678,0.32052973,70.42624282836914,129.68847,42.00469557444254,6.3547572,4.101901113986969,18.918172,5.707025408744812,9.9208119,0.06371349437783162,1.0373000000000001,35.86647764841715,169.42177,82.6101468404134,269.58286,6.879989941914876,137.66763,116.32544,534.8238169352213,4995.4184,1354.2715555826821,232.33314648826578,321.4799575805664,746.2098208746951,0,0,0,0,7.774255792299907,36.036945,0,1.246032e-5,0,0,0,6.8991852e-5,9.330691682407632e-6,8.544612699999999e-6,1.352812260389328,1.9105949,0,0,5.154993656712273e-4,8.365750900000001e-4,0,0,0,0,294.8600463867187,4.481777634666587,33.1677760500894,164.77531621039864,24.19623737938871,23.585293537089132,-0.1746664790683342,0.23999873300393423,0.7384486,54762.89709618766,-0.07633744709933905,0.011131961752350131,0.24404072,2.235555645408264e-4,0.0037542491,0.005476358346641064,0.26151045 +1968,3.8345952658425997,1.5469930909111562,0,0,5.370373092170119,0.5827049265305201,0.40423022,72.69054730733235,129.73308,42.41149616241455,7.332441499999999,4.61564834912618,21.713594,6.014501253763835,10.295172,0.09872918141384919,1.3673824,41.93913205464681,195.13757,94.25966453552246,299.7143700000001,6.939991156260173,139.24379,133.08156,537.0335591634115,5029.5667,1371.6504618326821,235.33540266621623,322.3889567057292,740.4824182303034,0,0,0,0.0092379775,9.383843421936035,40.359034,0,8.8038453e-5,0,0,0,4.8559101e-4,9.376655725645833e-6,8.6257131e-6,1.505382388830185,1.9976935,0,0,5.180387718913456e-4,8.458288900000001e-4,0,0,0,0,295.2690455118815,4.618299686146145,34.3815728401946,165.09570877308497,25.41081254044139,22.825796914652,-0.1753735491992678,0.26999801645676297,0.67731523,56868.37887037226,0.0011209927611538926,0.014528773414591948,0.44305972,3.60778462588011e-4,0.0055431793,0.010674211041380962,0.29037411 +1969,4.0615677268044985,1.5437089021510264,0,0,5.404091612813001,0.5976699193318685,0.5206411,74.8699499766032,129.76058,42.862396240234375,8.483171800000001,5.203845143318176,24.938178,6.334147016207377,10.638634,0.143262746433417,1.7120901000000002,48.922607421875,220.72612,107.28918075561523,327.55328,6.999991575876872,140.05867,146.61896000000004,538.9712473551432,5026.2804,1389.3417561848955,239.18485161256538,323.25095621744794,747.0297315350706,0,0,0,0.18322115,11.191637754440308,44.144508,1.2165773692155806e-6,9.3679956e-5,0,0,9.679108093981389e-6,5.038868e-4,9.422619768884033e-6,0.0098248184,1.6647424797217052,2.0817369,0,0,5.205781781114638e-4,8.450532600000001e-4,0,0.0011288309,0,0,295.681042989095,4.732615322675832,34.96181250811188,169.68157132242786,26.065069005292788,22.100489511661433,-0.17608061933020144,0.29999837279319763,0.67751619,58467.81079627766,0.07485921849687786,0.02660746080800891,0.55613635,5.134661914780736e-4,0.03648951,0.016677813526863854,0.30862539 +1970,4.323514044182916,1.5319290688025449,0,0,5.549708797290366,0.61744491259257,0.6581691999999999,76.96995290120442,129.69302,43.40139643351237,9.5318801,5.882411241531372,28.576904,6.6643119653066,11.00827,0.2035404990116755,1.8909658,56.95325533548991,245.38621,121.64918899536133,354.60102,7.059993505477905,141.52757,173.56366,540.6648610432943,5048.3132,1411.1005147298174,244.41839554629246,324.78295644124347,781.037552297546,0,0,0.001065175359447797,0.60795801,13.09374705950419,49.037394,8.557121153292732e-6,2.4685116e-5,0,0,6.793739824691632e-5,1.0851205e-4,9.468583508957332e-6,0.036330653,1.830672601858775,2.1644992000000003,0,0,5.23117584331582e-4,8.520249e-4,0,0.0042255569,0,0,296.0980377197265,4.714190307707546,37.469578527471604,179.6859546683907,27.824084069544437,22.780224323226346,-0.17678768946113504,0.32499857246875763,0.80047128,61529.779790205444,0.07891007914399001,0.042955159209668636,0.64373178,7.886756357038394e-4,0.11813403,0.022781516425311565,0.34789664 +1971,4.510244869270977,1.4055542417708098,0,0,5.703748992338275,0.6424449036518732,0.82992065,78.98995844523112,129.60227,44.007896423339844,10.711494,6.6607770919799805,32.729139,7.00438114007314,11.452529,0.27441523348291713,2.1402118,65.84650834401448,276.44309,137.13820521036783,387.53989,7.119412302970886,143.1196,217.72405,542.1264394124349,5067.5026,1431.1209615071612,249.2895330837902,325.3999557495117,796.2029425301106,0,0,0.021073126544555027,0.8564575999999999,15.120055437088013,55.790888,1.0061302646136028e-5,1.3254363e-5,0,0,7.890220331319142e-5,4.2594654e-5,6.875001223913083e-4,0.064586906,2.0029827058315277,2.2451174,0,0,5.256569905517002e-4,8.5867175e-4,8.593750105016322e-5,0.00774384,0,0,296.52204386393225,4.663522046368115,38.13342515565109,183.53555789915328,28.617263975091056,23.195116011534044,-0.17749263314257094,0.3549981142083804,0.86210262,61716.79562857309,-0.03213341039414315,0.06120223210503658,0.78786166,0.003391635837033391,0.2232129,0.029181620261321466,0.40686343 +1972,4.706494311867816,1.3269371347118073,0,0,5.971153374722522,0.6740748832623163,1.0559028999999998,80.9293607076009,129.65777,44.68869590759277,12.24311,7.553642193476359,37.465523,7.356679677963257,11.97792,0.34821991870800656,2.5517628,75.6708869934082,314.22879,153.8562266031901,427.68026,7.184317310651143,144.52172,267.60333,543.3849334716797,5079.1924,1449.2900187174478,257.2102054265862,327.3489532470703,868.4735707547015,0,0,0.06999984166274469,0.87667663,17.352389971415203,61.456633,1.0390318796756523e-5,1.3479254e-5,0,0,8.037302359298337e-5,4.3040854e-5,0.0025000001187436283,0.082580189,2.181452830632528,2.3233295,0,0,5.281963967718184e-4,8.6363194e-4,3.124999990783787e-4,0.010359322,0,0,296.9550399780273,4.9307421199057115,39.56446297363227,196.66552470793948,30.236221506038817,25.52743453960084,-0.17813366446922693,0.3899978771805763,0.86237286,63465.10424037791,0.049119653936524114,0.08156623815496762,1.0951867,0.010107177193276584,0.31882408,0.0366138257086277,0.4721474 +1973,4.975651785811607,1.318385656312959,0,0,5.895831575895738,0.7138798783222834,1.3307870000000002,82.79306348164876,129.79157,45.45469538370768,14.085332,8.576456785202026,42.979262,7.723947962125142,12.585161,0.43801355610291165,2.92937,86.87261581420898,338.0693,172.25726318359375,454.71123,7.255663514137268,146.54158,301.85553,544.4634094238281,5118.3195,1462.860677083333,260.2947249743578,329.90895080566406,826.0293132269293,0,0,0.11499984314044316,0.82240702,19.92769479751587,65.420113,1.0719714812997458e-5,1.3772853e-5,0,0,8.184554402153783e-5,5.4973948e-5,0.005062500150719036,0.090214925,2.365882933139801,2.4006492,0,0,5.307358029919366e-4,8.768767699999999e-4,6.328129966277629e-4,0.011968111000000002,0,0,297.3990402221679,5.050826137007638,39.9571427129374,186.52593193281965,31.240096880428535,23.455648107310147,-0.17877469579588295,0.42499801019827527,0.92401065,66317.71188639547,0.15522883058251086,0.1075315357496341,1.5930673,0.02092159477372964,0.39726303,0.04518213029950857,0.54390644 +1974,4.948149198232062,1.2905489996591684,0,0,5.971643938399686,0.7649898727734884,1.4191691,84.59316635131836,129.76026000000002,46.34259541829427,14.311146,9.748060464859009,49.247959,8.108936508496603,13.447442,0.5431961392362913,3.5184015,99.53890228271484,340.6055,192.56424713134766,453.22872,7.319503704706828,147.80664,327.35544,545.3698170979818,5113.8208,1476.140909830729,261.8082770537653,330.7559534708659,824.6214022160059,0,0,0.16126984233657518,0.76119143,22.525582949320476,71.666995,1.1049491528562308e-5,1.3967525e-5,0,0,8.331976338619522e-5,0.052416219000000014,0.008000000069538752,0.08706316300000001,2.556043048699697,2.474116,0,0,5.332752092120548e-4,8.7789564e-4,9.999999989910673e-4,0.01237887,0,0,297.8550415039062,5.0344191249004195,40.69211663930812,183.60052508219061,31.077406046065626,23.599624622127063,-0.17941572712253898,0.45999792218208313,1.0394718,65371.62666713273,0.10279066121396813,0.14653477569421133,2.1806547000000003,0.034983893080304064,0.67241083,0.05499073459456364,0.65809554 +1975,4.928622399679322,1.303204963553737,0,0,5.9984313740411705,0.8284898797671,1.4004084,86.32876841227214,129.65616,47.35769589742025,14.321042000000002,11.09574286142985,57.565811,8.51440660158793,14.538442000000002,0.661696677406629,4.217686799999999,112.33176358540852,337.71465,213.23522440592447,440.16522,7.389227231343587,148.91662,384.99818,546.1371358235677,5104.4298,1491.7409667968748,263.05854864525753,330.8269551595052,816.9194858581777,0,0,0.19499984259406725,0.80304672,25.179124514261883,79.153904,1.1379648640286177e-5,1.4151174000000003e-5,0,0,8.637850078230258e-5,0.19213674,0.010937500201786557,0.07287558599999999,2.7517531315485635,2.545125,0,0,5.35814615432173e-4,8.7775104e-4,0.0013671900087501854,0.011478755,0,0,298.32604471842444,5.2068127673577305,41.476725896945794,177.51306730736252,30.76637271161256,23.129653790732366,-0.180056758449195,0.49999761829773587,1.1646458,64182.768823129416,-0.20496901654447228,0.20330782110492387,2.8018363,0.051680791191756725,1.2682709,0.06614344008266926,0.8287437 +1976,5.1946610219984874,1.3202053582443383,0,0,6.237496531818932,0.8872098724047343,1.5554771,87.99307123819987,129.63321000000002,48.276095390319824,16.011714,12.636435270309448,57.24638,8.955106973648071,15.386466,0.8118081788221995,4.743647,124.73074785868327,329.27602,232.99722162882486,426.10768,7.465574224789937,150.23158,475.43135,546.7914225260416,5104.2152,1509.1109517415362,269.9482096580869,331.5449498494466,856.063491529847,0,0,0.22999984274307886,0.82394648,28.196115493774414,92.664426,1.171018743661989e-5,1.4358855e-5,0,0,0.007432716122517983,0.33759564,0.01350000019495686,0.047412585,2.9527832667032876,2.614347,0,0,5.383540216522912e-4,8.8049315e-4,0.001687499995265777,0.0091593417,0,0,298.8140436808268,5.352361696512741,42.5213569666273,186.24742729810202,32.28663209283211,24.40571791742575,-0.18069778977585105,0.5443803270657858,1.4235416,67153.40876186565,0.042795931279707856,0.27751198535164195,3.4107057000000003,0.08715698743859927,1.8435573,0.08035514317452908,0.98712807 +1977,5.364428639868427,1.3520979710065895,0,0,6.353178768287844,0.9490798612435659,1.6923549999999998,89.59247398376465,129.63647,49.29249509175619,16.762577,14.47871708869934,55.875241,9.431879123051962,15.71703,0.9836416741212209,5.1782548,136.7956975301107,306.11158,251.99420674641928,404.2283,7.534413854281108,152.04263999999995,533.0325,547.3396860758463,5117.6518,1527.680948893229,274.03015240270713,333.3529459635417,868.4313096928761,0,0,0.2649998404085636,0.93269902,31.407798290252686,109.06413,1.2041107462816095e-5,2.1399971000000003e-6,0,0,0.026895795327921707,0.42456315,0.015312500220413009,0.022180513,3.1589433749516806,3.5323931000000006,0,0,5.408934278724095e-4,8.8740955e-4,0.0019140600246222068,-0.0065053902,0,0,299.3190358479817,5.499463794793741,43.27485687581617,189.22553225601726,33.05929028320198,24.38724427025082,-0.181338821102507,0.5945511807998022,2.1583469,67777.19082397268,0.12845401331973466,0.3696969747543335,3.8826089,0.1504269844541947,2.1420878,0.09829714894294739,1.0852977 +1978,5.581802902559232,1.2993019000302957,0,0,6.57904481781486,1.0211598575115204,1.7691766,91.13187662760417,130.48848999999998,50.43949508666992,16.898235,15.96304734547933,72.245349,9.926631212234497,15.529417,1.1736451586087544,5.5214165999999985,148.00458017985025,278.45958,270.00118255615234,383.9896,7.609319130579631,153.91731,529.79652,547.7978973388672,5132.0601,1546.890899658203,276.33335446294114,335.00994873046875,897.405148357044,0,0,0.29872983197371167,1.277913,35.72357686360677,112.78031,1.237240955257827e-5,-6.2543157e-5,0,0,0.054136695029834904,0.45249588,0.016000000139077503,-0.059867027,3.3700035015741983,4.661461,0,0,5.434328243912508e-4,8.9480636e-4,0.0019999999882808575,-0.021383103,0,0,299.8450393676757,5.625120895967197,44.240892074424366,192.93479554653743,34.269193302792054,25.019744191924026,-0.18197985242916306,0.6599957346916199,2.8286901,68023.041876235,0.1506635484397897,0.4763076677918434,4.2701212,0.23020097613334656,2.1599238,0.1185080527017514,1.1209156999999998 +1979,5.730732140077329,1.2523176484359615,0,0,6.677231649399466,1.094819853703181,1.9203395,92.61308097839355,128.37989,51.557394663492836,17.898313,17.68312692642212,94.634628,10.421233495076498,14.991238,1.3782646457354228,6.1020639,157.6384735107422,271.13342,286.4941584269206,394.80033,7.689991553624471,155.58903999999995,518.50501,548.1820729573568,5138.651,1566.1608581542966,281.6000656120118,336.60494740804035,900.4664227016348,0,0,0.34251976509888965,1.7595655,40.48909950256348,113.22088,1.1487397311308692e-5,-2.0391387e-6,0,0,0.0849026944488287,0.42017076,0.016000000139077503,-0.17766763,3.7300036549568176,5.0937882000000005,0,0,5.459722354620075e-4,9.0008302e-4,0.001000000006267025,-0.0099825707,0,0,300.39303843180335,5.807081798508845,45.13478108156769,196.0169028731842,35.013987182511805,25.212479862598272,-0.18262088375581906,0.7699926396210989,2.8296177000000005,69119.86371174049,0.1473114304822424,0.5893768072128296,4.6513697,0.31519197672605515,2.0579417,0.13952905808885893,1.1328091 +1980,5.650947966828631,1.2441357938650308,0,0,6.618387124854692,1.1735098262627919,1.9633226,94.1031723022461,125.08456,52.72269503275553,17.664267000000006,20.167388280232746,120.23426,10.897735516230265,14.760860999999998,1.5939541260401409,7.2362595,166.07752100626627,276.09356,302.1822509765625,398.43779,7.769993821779887,157.04196000000005,513.02719,548.5012359619141,5131.8984,1584.940734863281,283.34647023515436,338.70494588216144,890.5114951943987,0,0,0.41178564727306366,2.0330453,44.551489194234215,118.29604,5.5193815645300974e-6,7.9351775e-5,0,0,0.11494099286695321,0.35605477,0.011000000056810677,-0.12485274,4.130003849665324,5.1732709,0,0,5.485116416821256e-4,9.0155542e-4,5.107808434938003e-5,0.0031252635,0,8.167018e-5,300.9650395711262,5.872959052014542,45.97852705498147,194.39124204024887,34.76440146642314,25.232545658292864,-0.18326191508247508,0.8899930367867152,2.8304822999999995,68783.84556601176,0.109190156973947,0.7097166180610657,5.1129913,0.39410896847645444,2.1545661,0.15989606082439423,1.1562096000000002 +1981,5.539335981414791,1.2528135487313492,0,0,6.577782229862206,1.2601898312568665,1.7391266,95.31219546000163,126.52811,53.97579542795817,16.187192,23.256973266601562,128.45086,11.349838097890219,13.920115,1.8424933552742004,8.637244699999998,174.73850377400717,271.00597,319.4201304117839,403.07178,7.849401632944743,158.51506,516.86109,548.7653757731119,5123.4643,1602.6506245930987,279.78942071631377,340.05894978841144,875.7816094417443,0,0,0.5049996227025986,1.96562,48.66220633188883,122.37567,1.075440430516513e-5,1.7112573999999998e-5,0,0,0.1399999943872293,0.32601335,0.0030000001109632044,0.11779446,4.560003956158956,4.4274361,0,0,5.510510430516055e-4,9.0259513e-4,1.2761924275158285e-4,0.038309698,0,6.9675129e-4,301.56203460693354,5.805407445505892,46.37436562130664,189.16861385900194,34.11541673008395,24.873295971397052,-0.1839029464091311,0.999993642171224,2.9541119,66688.82721964004,0.0757372745424995,0.8352456837892532,6.0090214999999985,0.4687449559569359,2.4863888,0.1800000655154387,1.1742814 +1982,5.477249508472458,1.2581454775126868,0,0,6.915258577522967,1.3425698479016621,1.6205522,96.45029131571452,129.38621,55.10939598083496,15.97381,27.298911412556965,128.57689,11.805440743764242,13.885459000000001,2.144632577896118,9.2748324,183.27747344970703,277.72577,335.1432698567708,391.79861,7.934991518656413,159.18065000000001,532.93449,548.9834696451823,5083.3728,1618.7305399576821,287.6693153882337,340.64394124348956,967.4292982868147,0,0,0.5972496171792349,1.6573363999999997,52.764092127482094,125.26367,1.2755718368377226e-5,-8.228379000000001e-5,0,0,0.1600000001490116,0.33083911,0.0020000001228860733,0.22216908,4.970003763834636,3.5575865,0,0,5.535904541223621e-4,8.9426293e-4,2.6965544202539604e-4,0.066661524,3.741915871084226e-6,0.0015785006,302.18704223632807,6.043062727559764,47.66689067623099,206.8844647776702,34.15609140912993,28.272205714382924,-0.1845634619404803,1.1199926137924194,2.9550432,65532.301753925305,-0.15641584008740989,0.9728992034991583,6.4693449,0.5532129456599554,3.0131287,0.2000000737607479,1.352411 +1983,5.483062192797363,1.4330241763538591,0,0,6.625402213840496,1.4098998308181763,1.8456854,97.67579015096028,130.75988999999998,56.16269588470459,16.384525,30.830673376719158,150.74703,12.194235563278198,15.564841,2.4999918937683105,9.057039,191.16732279459634,353.29433,352.50609588623047,385.70972,8.019996364911398,160.09108999999995,547.19948,549.1685434977213,5047.3484,1632.620147705078,281.617658355317,342.26594797770184,862.0214943304857,0,0,0.672999694943428,1.3378778,56.786487897237144,129.4055,1.1691284877694367e-5,-2.7098867e-5,0,0,0.17999999349315962,0.33559498,0.011000000212031106,0.09748991,5.270004232724507,3.8040369,0,0,5.561298603424802e-4,8.871233e-4,0.0029999999581680945,0.024088349,3.1704332892938204e-5,0.0020178464,302.84204101562494,6.065834079500119,47.64540210423812,183.83582233478342,33.285128980692804,24.459513427275525,-0.18530513482030356,1.2399930556615193,3.2014371,64552.41617363238,-0.6775945263802521,1.144959529240926,6.0034055,0.651974951227506,3.8198142,0.21950007850925127,1.378774 +1984,5.619005090796103,1.4612248534423995,0,0,6.8150189551184415,1.4820398290952046,1.954181,98.93998591105144,134.9934,57.26739501953125,14.927399,34.79922644297282,167.86607,12.642924229303995,17.177695999999994,2.8499913215637207,10.537606,199.96714146931967,352.61795,366.79923248291016,438.30954,8.103740215301514,162.15076000000005,546.6524,549.3226318359375,5054.1956,1643.5008544921873,285.00304516787423,344.00794728597003,889.7020107049092,0,0,0.7217137465874354,1.2391705,60.742489178975426,137.14096999999998,3.96903745780719e-6,8.659051799999999e-5,0,0,0.19999999552965164,0.48356263,0.017000000225380063,0.027417786,5.530004461606343,4.8805394999999985,0,0,5.586692617119601e-4,8.9282411e-4,0.005000000004656613,-0.04014793,7.402270027038564e-5,0.0043071608,303.5280380249023,5.996375963335671,48.69349353439086,189.33352573144714,34.32486538148798,25.326276357675727,-0.1860468077001268,1.3599929014841716,3.5706830000000003,65309.89915296105,-0.2289078353791943,1.295939067999522,6.3412338,0.7757129470507304,4.798725900000001,0.24612508217493692,1.1329507 +1985,5.678895002751574,1.4997437788078463,0,0,6.922761988583978,1.5687698423862457,1.930951,100.18199602762859,138.44665,58.3761952718099,13.863624,39.652387619018555,191.20489,13.144109964370728,18.042992,3.187290926774343,12.093107,214.03345489501953,321.80334,383.26725006103516,487.46531,8.199989477793375,164.43684,559.24581,549.4526824951172,5072.7864,1655.9104715983071,285.6752697155976,345.4589538574219,906.9368199480392,0,0,0.7549997667471567,1.4290266,64.80020904541016,148.48134,8.568774148898228e-6,2.1606645e-4,0,0,0.21999999756614366,0.56320674,0.01700000014776985,0.085787554,5.8700045347213745,5.2553933,0,0,5.612086727827167e-4,9.0213205e-4,0.003999999995964269,-0.006224988000000001,1.1811007364788868e-4,0.012966035,304.2470397949218,5.996554239215087,49.41563613245486,190.4568856663394,34.861509200143864,25.83243997550224,-0.18678848057995007,1.4999912877877553,3.6945657,65474.087150351224,-0.011715700559269468,1.4159816404183705,7.686271400000001,0.9354569266239802,5.5359652000000015,0.26520808786153793,1.1864916 +1986,5.784334367519234,1.5301135694160417,0,0,7.0137036621234845,1.6502498388290405,2.0447892,101.67297554016113,134.66824,59.28379599253336,14.595216,44.608107248942055,226.48099,13.69979476928711,17.343175,3.6499905784924827,11.156209,222.3396848042806,363.19165,402.41221872965497,561.19711,8.294995307922363,166.53505,605.54478,549.5567423502604,5079.9439,1668.7911478678384,290.8084487539618,346.90294647216797,914.5218093193049,0,0,0.7879217316706976,2.1480617000000004,69.13964017232259,163.26271,1.2043192891534696e-5,2.1612991e-4,0,6.836250999999999e-4,0.2599999929467837,0.57273931,0.018000000156462193,0.044305139,6.3100047906239825,5.6896951,0,0,5.637480790028349e-4,9.0805661e-4,9.999999941404287e-4,0.03179967,2.603702887427062e-4,0.028102657000000003,305.0020370483398,6.123193922877899,50.21167873708514,195.66522346659664,35.24652923018162,25.9121168517712,-0.18753015345977328,1.6499911447366078,3.9411958,65479.271483930934,-1.4658150072006793e-4,1.5741113722324371,8.619926699999999,1.1329799195130665,5.6626388,0.2791670933365822,1.453026 +1987,5.942054872368608,1.51568933473453,0,0,7.200139154017295,1.7349598209063213,2.1868179,103.0739803314209,140.05915,60.248695373535156,15.122737,50.83082103729248,234.71551,14.25549602508545,15.986362,4.105550249417623,11.176584,233.33564122517905,377.17492,423.347417195638,543.59326,8.389330943425497,168.70781000000005,636.85035,549.6467793782552,5087.8651,1683.749786376953,295.0485146932872,348.77494557698566,952.061149189977,0,0.0011578226,0.8391895890235901,3.2631248,73.98439725240071,177.25124,2.903536521140874e-5,5.821475400000001e-5,0,0.0048785865000000005,0.28999998917182285,0.79616882,0.022000000191231567,-0.099665792,6.710005084673564,6.538606400000001,0,0,5.662874803723147e-4,9.1426979e-4,0.0030000000745834163,0.0083239765,6.904602487338707e-4,0.044783508,305.7930348714192,6.350228641755308,51.33101365968814,203.58517005144802,36.43815818195585,27.251867169865875,-0.18827182633959655,1.7999912301699321,4.3106697,66721.09399661662,0.062169756099630324,1.7711602052052815,9.1692428,1.346309910217921,5.241268700000001,0.29950010031461716,1.7364871 +1988,6.133362796862496,1.5150947746951446,0,0,7.39663506024057,1.8262398143609364,2.2384091,104.16901715596516,134.89421000000002,61.255194981892906,15.295333,57.8955987294515,225.34631,14.756715536117554,14.052169,4.49442990620931,12.063592,244.82575480143228,324.40759,449.32311248779297,433.01446,8.48999317487081,171.54521,645.54402,549.7208353678385,5119.7697,1693.940928141276,298.68549508376714,351.2759323120117,950.4151874289803,0,0.34924766,0.9504593312740326,5.2661192,79.53813616434734,185.3279,3.188543450960424e-5,0.021115007,7.708864601833436e-5,0.06849384,0.32999999324480694,0.88192316,0.02000000032906731,-0.07366243900000001,7.220005750656128,6.627813900000001,0,0,5.688268914430713e-4,9.2784993e-4,0.0030000005305434265,0.034690666,0.001493088435381651,0.060567348,306.624043782552,6.188309996026968,51.72677741877051,203.53222760721053,37.7977892884268,27.185066126098715,-0.18901349921941984,1.9699894785881042,4.6802608,67287.48390226346,0.1102479335964212,1.9729202787081401,10.094657000000002,1.548219899336497,4.7030971,0.32425010204315186,1.770198 +1989,6.211121149262674,1.53212989041127,0,0,7.320233667650651,1.9231797953446705,2.2075539,105.88293329874675,105.50252,62.29139518737793,15.212081,64.49583530426025,212.83728,15.212542057037354,10.119863,4.9499895970026655,11.292045,256.58931223551434,246.46809,468.0721740722656,357.7641,8.589393774668375,174.22363000000001,713.52261,549.7808532714844,5139.3872,1705.6304423014321,302.164174394028,352.89392344156903,930.8467754620427,1.1203966126534699e-4,0.72136249,1.1215790609518688,10.730464,85.39031410217285,189.56819,3.284409467596561e-5,0.31476996,5.449304395976166e-4,0.67304705,0.38999999314546585,0.82629641,0.014000000199303031,0.054397397,7.7600061893463135,6.6572182,0,0,5.713662976631895e-4,0.0060655338,0.0030000010544123747,0.077007399,0.002615397213958204,0.07614778700000001,307.8310241699218,6.264529714671574,52.06403696267891,200.31650520357337,38.13825088093059,26.33140676747172,-0.18975517209924306,2.149989446004232,5.0499664000000015,67312.93275191178,0.14261546154697627,2.1840911904970803,10.904862,1.7223599056402843,4.3864096,0.35575009882450104,1.6702493000000005 +1990,6.186811699323791,1.4450968870559717,0,0,7.508271531599201,2.018889824549357,2.1076967,106.4680290222168,86.426532,63.32119528452555,14.407865,70.81883303324382,176.8456,15.573984305063883,7.0905085,5.40554936726888,10.591201,263.08519744873047,208.25652,482.7560577392578,333.97703,8.694339831670126,176.36773,658.40311,549.8308563232422,5137.248,1717.400675455729,305.27255465213847,354.07293192545575,940.5626313485474,0.03376847004983574,1.5203264,1.4477779567241669,17.768055,90.98358980814616,192.30881,0.002091195086904918,0.96053501,0.0077552789346858235,1.7208698,0.43999998768170673,0.69729352,0.014000000121692816,0.18589003,8.280006090799967,6.6838429,0,0,5.739056990326693e-4,0.02696988,0.005000001498653243,0.018320285,0.004025665286462754,0.091767095,308.68303680419916,6.277152282827942,52.52170067846646,203.0212309920509,38.25721546450458,27.365368354710768,-0.19049684497906635,2.3499877055486045,5.1743108,67094.07179291768,0.14079531171550244,2.425140698750814,10.051338,1.8762499292691548,4.2741531,0.38000010202328366,1.7373255 +1991,6.190131151726644,1.6368601104218738,0,0,8.011536269395817,2.113149801890055,1.982897,105.85304832458496,85.14222600000002,64.34609444936116,12.924815,76.4864673614502,120.64491,15.752021392186483,6.9542228,5.799989104270935,10.775591,267.79015350341797,159.81288999999995,493.7842102050781,286.27307,8.804992516835531,177.30503000000004,474.47964,549.8710784912109,5089.9323,1729.3305562337237,318.7311920514537,355.35293833414715,1129.9838832525568,0.06648059604534258,6.9394223,2.221526563167572,22.06288,96.40249379475911,185.52075,0.03069222376992305,1.727734,0.07582558194796245,2.7251313,0.48999999711910885,0.70613627,0.017000000070159633,0.24819351,8.820006291071573,7.057256599999999,0,0,0.0016515196378653247,0.058141591,0.008000002048599223,-0.073018715,0.005709253367967904,0.10715402,309.23303731282545,6.34494559215869,54.26130892359681,244.42863411026067,39.69249193256378,34.394938327949504,-0.1909628409298788,2.5599875847498574,5.29866,66472.31501729792,-0.4148185776434353,2.665145973364512,9.6580528,2.020599921544393,4.1585749,0.40500009556611377,1.6735462 +1992,6.145912972932644,1.683057085276074,0,0,7.364888993342175,2.20022984345754,1.9500444,104.98307355244954,85.437279,65.2670955657959,11.907588,80.40375582377116,74.361852,15.899934848149618,5.3089984,6.199989080429077,10.120439,270.7759323120117,106.91739,505.86798095703125,227.43518,8.91499400138855,179.3441,361.04368,549.9049123128256,5056.1355,1740.1392618815103,299.4017954744593,356.22894795735675,913.3754185979066,0.1707762268682321,22.26499,3.3005158503850303,24.233416,101.49227841695149,194.06099999999998,0.09482813626527786,2.4767485,0.19600565483172736,4.0250116,0.5199999809265137,1.0018637,0.026000000691662233,0.18194194,9.340006430943808,7.910261500000002,0,0,0.005856849117359768,0.088755914,0.0050000026628064615,-0.030822369,0.007651571494837602,0.12273589,309.7250391642252,6.358476438557756,52.37759098866641,198.23847301394608,38.71717596139569,26.648976889112614,-0.19129755052506844,2.769987682501475,5.4230636,64223.92565128395,-1.6835767484157795,2.8172022501627603,10.784362,2.161349892616272,3.8127392,0.4305000975728035,1.4631107 +1993,6.193394814861415,1.5467274300386273,0,0,7.531122846620259,2.2837098240852356,1.9984803,104.32304191589355,84.458339,66.09139442443848,11.381334,82.41623814900716,50.567396,16.066639582316082,3.463778,6.607129295667012,8.677164900000001,271.1687749226888,84.3251,511.9880956013997,231.9618,9.027161439259848,179.76429,256.33383,549.941884358724,5078.4684,1743.1006876627603,299.4425140657421,356.92495981852215,941.8816353260038,0.7146161670486132,34.33223,4.47598530848821,22.551362,105.4173412322998,208.33854,0.19552044942975044,3.0949997,0.36491671949625015,11.967198,0.5699999282757441,1.5166355,0.0330000047882398,0.157163,9.94000768661499,8.353483800000001,0,0,0.01262219933172067,0.11880940000000001,0.0010666858239953096,0.042782191,0.009837979606042305,0.13825367,310.09905242919916,6.310752016783032,52.78275226171121,203.77578316226604,39.74372708975235,28.114996259780565,-0.19163226012025816,2.9899867177009583,5.424762,63195.55051984089,-0.8170844043492784,3.0058298110961914,11.612337,2.2925199468930564,3.3180441,0.4508330797155698,1.2514505 +1994,6.240067755470377,1.5037166846247065,0,0,7.8957327340876935,2.36793980995814,2.1430557,103.57006708780925,86.05046,66.87479654947917,11.006658,83.36027018229167,37.565451,16.09994300206502,4.6095776,6.955350279808044,8.163642999999999,269.62779235839844,85.893495,518.2140757242838,238.58315,9.131617546081543,178.03958,159.08791000000005,545.3847249348959,5003.2837,1748.620371500651,310.25183676250725,358.2539596557617,1060.282744333416,2.2383394837379456,45.287421,5.687364776929219,24.423112,110.94440905253093,237.88968,0.32772576560576755,3.5515517999999995,0.6123692641655604,24.558229,0.6399997919797897,2.3253155,0.03700000451256832,0.20390529,10.600008169809977,8.737967999999999,0,0,0.021451599275072415,0.14808425,0.002012556239302891,0.0083003343,0.012253877784435948,0.15358509,310.80802917480463,6.441827000222701,54.21042306521078,231.0503542937696,40.27137015559246,33.14335063351852,-0.1919669697154478,3.2099871834119162,5.549182599999999,61820.50123949212,-0.0813850082344821,3.2168917854626975,11.303115,2.4025299350420632,2.9604627,0.4654170672098796,1.1962062 +1995,6.3773864537253155,1.4860805049306975,0,0,7.813189501191085,2.4555798172950745,2.3880707,102.88904825846355,80.480245,67.62789662679036,10.682998,83.83788744608562,23.473127,16.137446244557697,5.7076242,7.249991933504741,7.674757700000002,268.1038513183594,86.264975,524.6570994059244,210.72453,9.13146940867106,180.13151000000005,95.783763,552.4202321370443,5016.3948,1755.2296244303384,305.40958889562864,360.2389551798503,955.0363061603086,3.747459292411804,51.095458,6.54466180006663,27.59918,116.0475304921468,230.3453,0.4816569561759631,3.8771223,1.649199257294337,36.211193,0.7599995483954748,3.4395305,0.04200000377992789,0.29614801,11.270008246103922,9.315257,0,0,0.031974499113857746,0.17780027,0.00400000410930564,0.0084622213,0.014884675852954388,0.16982122,311.2790552775065,6.504076135852905,53.416717880413046,206.47424846775004,40.45040793019892,29.71540753892105,-0.1923016793106375,3.429987053076426,5.6736625,60635.50706790533,0.08530772110638411,3.4390769600868225,11.011358,2.4911099076271057,2.8923304,0.475000041226546,1.0842597 +1996,6.511379278926775,1.470193984753465,0,0,7.686339550726493,2.5522598028182983,2.6638414,102.31104151407878,75.256035,68.36059633890788,10.505743,83.94530232747395,13.005309,16.249948978424072,4.6522227,7.557493487993876,5.5242189,266.7558415730794,85.278741,531.4079996744791,170.78176000000005,9.06367564201355,183.44400000000002,59.514335,537.3112080891927,5297.7083,1757.1905924479165,307.29120752307955,362.00496164957684,930.0218807197676,6.036929090817769,53.568363,7.866570234298706,26.00128,124.7284984588623,224.86947,0.6497871528069178,4.0579149,3.2318945129712424,48.538296,0.9399992177883784,4.501452099999999,0.04900001051525275,0.39044285,11.990008195241293,9.7707047,0,0,0.04382059909403324,0.20547879,0.002013620309298858,0.11353612,0.01771567389369011,0.23841137,312.29801940917963,6.542220103334365,53.42127728765462,200.87242078907184,40.45019229181408,28.71419152495162,-0.1926363889058272,3.6599862774213157,5.5527008,59650.01603284395,0.14569222560343534,3.602302074432373,10.510994,2.569999933242798,2.8654227000000003,0.48625003546476364,0.84755661 +1997,6.574573878777592,2.183313990263035,0,0,8.269788742717703,2.6610097885131836,2.8728436999999998,101.2420825958252,75.489912,69.06989606221516,10.417958,83.52113278706868,10.398164,16.362446784973145,3.7691062,7.813324570655823,3.4559389,265.2918523152669,86.34144599999998,534.9630432128906,160.63531,9.140432437260946,180.149,29.550907,542.7740173339844,5288.9251,1761.5010782877603,331.28891975653016,363.25195566813153,1204.992305406782,7.7147689660390215,55.76348100000001,8.959980805714926,29.370536,127.37702624003093,240.5221,0.8248193363348643,4.6266327,5.39930792649587,58.758537,1.2099987765153248,5.5717023,0.06000001293917497,0.427562,12.750008503595987,9.7952259,0,4.9588597e-5,0.05661919961373011,0.25820595,0.004000423466398691,0.1113431,0.02073227148503065,0.31501343,313.18303171793616,6.740456045264001,56.11803188775538,264.67515030448345,41.89315592193428,38.341382315947115,-0.19297109850101685,3.889986495176951,5.7834259,59868.27681505938,0.16690248873741567,3.780295729637146,9.824276800000002,2.650669972101847,2.8566852000000003,0.49000003685553867,0.76826308 +1998,6.590459870606787,1.5412452817195224,0,0,8.412226876444452,2.781449774901072,2.9899069,100.31604703267415,72.916263,69.77859687805176,10.335348,82.96492513020833,12.992477,16.399945735931396,3.9615346,7.95416518052419,2.9318362,263.8838653564453,86.348141,537.6670277913412,156.67666,9.254634141921997,176.1082,23.412636,570.7273610432943,5175.5355,1770.2906799316404,315.332621195414,365.9329554239909,1085.4305991966446,9.836338837941488,55.95678100000001,9.961479743321737,28.471196000000006,134.272824605306,234.46613,0.9994525363047918,6.9049469,8.110631505648294,70.04979200000001,1.5299981534481049,6.8917397,0.07300002624591191,0.54029666,13.540009021759033,10.02529,0,3.583493100000001e-4,0.06999999843537807,0.60512272,0.01000000579127421,0.06915097099999999,0.026339268311858177,0.38665542,313.90700531005854,6.446521520705138,56.589344323708055,232.31801820181306,42.33468433879227,37.81227830332195,-0.1933058080962065,4.1099876165390015,5.6031107,58604.367585517175,0.1710925825750941,3.8873608311017356,10.323837,2.724999964237213,2.701239,0.49000004182259244,0.76943857 +1999,6.661329053494626,1.3034304715400178,0,0,7.698162125432142,2.9081997672716775,2.9607505,99.330872853597,72.96355,70.47599538167317,10.216505,82.38263448079427,14.054175,16.44995387395223,3.9749853,8.04999581972758,3.1538842,262.5458628336589,82.703538,540.1430358886719,140.42543999999998,9.093777736028036,168.37661,18.420173,562.6231740315756,5112.4264,1778.199513753255,309.40837085260006,367.84497833251953,940.7006779859273,11.384798526763916,58.33870699999999,11.354286829630533,25.741051,138.68090184529623,252.31636,1.2204217116038005,8.6848445,11.121968984603882,91.978363,1.9399973253409069,7.9486502,0.08600003769000371,0.7424206999999999,14.300010919570923,10.07373,4.148790035666631e-6,0.0031081514,0.08999998929599921,1.0699013000000002,0.011000006149212519,0.13954925,0.03241546514133612,0.49435229,314.70898946126295,6.28115080714577,54.76937230485621,205.11187816433736,40.94720104039744,30.449171325383368,-0.1936405176913962,4.358643651008606,5.1676463,55523.54473764534,0.17324185027932018,3.9997291962305703,10.262658,2.8026700019836426,2.1509855,0.49000003188848495,0.7706312 +2000,6.893167303200749,1.2013380488633538,0,0,7.457347231717921,3.038709739844004,2.8153943,98.27196884155273,72.65140799999998,71.17349561055501,9.9231457,81.99841690063477,9.4043884,16.499963760375977,3.9867142,8.149996836980185,2.3476517999999995,261.1698455810547,76.330076,542.3829905192057,122.76605,8.829522927602133,165.25876,19.471227,552.0705413818359,5074.2696,1778.0101216634112,310.18680982649335,369.1249745686849,886.5647302341199,13.121398448944092,56.341686,12.102788925170898,25.730152,143.4614372253418,263.60627,1.603711913029353,10.640667,14.691894769668579,99.657424,2.429996371269226,8.598756300000002,0.10600005090236664,0.86319988,15.120010137557983,9.2978389,2.9456416086759418e-5,0.034006926,0.1699999620517095,1.411492,0.013000006632258495,0.2699959,0.040547359734773636,0.57423278,315.7589950561523,6.112229814393959,54.5095965154282,195.32415818527357,41.26362178323956,27.98197839802492,-0.19397522728658584,4.563808560371399,5.2735332,55661.00151337025,0.17458241694797966,4.127887845039368,9.480134800000002,2.8623799681663513,1.9694412,0.49000002940495807,0.77151922 +2001,6.95708692825445,0.961802096435875,0,0,7.591758768528899,3.162919799486796,3.0480682,97.35795720418294,70.65696899999998,71.8547960917155,10.593275,81.4894282023112,5.9590470999999985,16.54997984568278,3.2771364000000003,8.262498617172241,1.1600545,259.5498352050781,68.271466,543.1950124104818,111.64066,8.354893207550049,165.59900000000002,19.806901,542.7083333333334,5094.2258,1776.5307312011716,312.89637869980686,370.67298889160156,881.6703955806449,14.544998407363892,56.36878100000001,13.052591880162558,24.490463,149.25739415486655,261.60586,1.978332092364629,11.075295,19.702295621236164,96.243251,2.9699952602386475,9.8521252,0.132000050197045,0.94275566,15.880009412765503,8.984000300000002,2.597141228761757e-4,0.80619906,0.2699999349812667,1.6540308999999995,0.019000007305294275,0.6107305000000001,0.050659650626281895,0.63867332,316.4930165608723,6.188009183487292,54.709896387749005,196.1877828105409,41.3771755400566,27.8779984365221,-0.19430993688177556,4.776847044626872,5.3282102,56049.16642558323,0.17084303620462507,4.220908443133037,8.8337936,2.8942899902661643,2.3248261,0.49000003188848495,0.74608572 +2002,7.097947294929641,1.0706525114551886,0,0,8.046474186766174,3.2808697621027627,3.4534372,96.3429667154948,70.45667399999998,72.51259549458821,11.982167,80.81803385416667,3.1513602,16.5999755859375,2.420559,8.29999844233195,0.95011524,257.66879018147785,63.484809,543.6559855143229,101.90454,8.333909193674723,161.14055,12.302716,535.3501332600912,5096.5932,1778.960947672526,322.2788312475723,372.83499399820965,970.7244171943499,15.739598194758097,50.843174,13.693090518315634,25.156097,154.4252700805664,270.32175,2.527012268702189,12.214474,23.51545794804891,102.73275,3.5299941102663674,11.617585,0.15900006766120592,1.2107813,16.560010592142742,9.7208997,0.002832789449409271,2.9170651000000003,0.3899999012549718,2.8037817000000005,0.030000012057522934,1.313749,0.06128753939022621,0.73327062,317.1010182698567,6.359556247633107,57.07665954461615,218.4604141242816,41.898783266207694,33.80824328599571,-0.19464464647696525,4.990507483482361,5.4976481,55687.522360887495,0.17652225756277531,4.2806588013966875,8.3685909,2.9381799499193826,2.2797577,0.49000003188848495,0.67660085 +2003,7.424688347669062,0.9010419027374732,0,0,8.2416975979600835,3.4251197973887124,3.16329,95.34536170959473,69.839024,73.28449440002441,12.579882,80.10183588663737,5.7693016,16.59995237986247,1.7336337,8.320768594741821,0.74505988,255.41280873616537,62.27795500000001,543.3510030110677,97.844828,8.222527821858725,158.92828,10.122917,538.8634541829427,5113.7538,1783.5898132324216,328.12422419548386,375.41099802652997,944.7470786126371,16.890098412831623,44.441172,14.409090280532837,25.070909,158.99640528361002,287.30923,2.9139525095621743,15.640539000000002,27.517083009084065,117.40605,4.223822851975759,13.114832,0.1890000912050406,1.560512,17.260011196136475,11.005369,0.06715815638502438,5.226518,0.5027138615647951,4.785689700000002,0.060000043672819935,2.2356391,0.07306782963375251,0.85366012,317.73000590006507,6.4283053046514125,57.69037487838639,214.40339143057142,42.682165561174564,34.362181347359645,-0.19497935607215489,5.207866946856181,5.541719400000002,57641.72369815564,0.165150043379564,4.319008390108745,8.0831154,2.99712997674942,2.0262772,0.48882503310839337,0.60195554 +2004,7.812644316268693,1.0382131676166668,0,0,8.542465507294889,3.577999790509542,2.2029533,94.38845952351888,66.998563,74.13009516398112,12.194883,79.26674334208171,9.216749,16.590060075124104,1.4729968999999998,8.341978788375854,0.75667708,253.1937993367513,60.966802,542.8480021158854,87.654103,8.019330620765686,156.21655,9.7469995,537.7152353922526,5141.4447,1784.230285644531,338.9417722149104,376.9870020548503,945.5469500687323,17.334598859151203,49.135801,15.063492933909098,28.554887,164.7063954671224,307.5767600000001,3.5451226830482483,15.758879,31.54472287495931,125.65071,5.00792149702708,13.097501,0.23300011828541756,2.0510461,18.06001361211141,12.712613,0.23797391975919405,6.6512131,0.8247378170490265,5.4873038,0.12000008982916673,3.1186526000000003,0.08672221936285496,0.97410928,318.3570175170898,6.590470046881482,58.11358476694662,216.68728340618873,44.556855897235216,32.33033041098627,-0.19531406566734455,5.435196399688721,5.6480085,60340.85188935469,0.1719032893302405,4.3401593764623,7.526764599999999,3.035939951737722,2.1192661,0.4857220376531283,0.55294607 +2005,8.093491315549059,1.025657164253795,0,0,8.840128385718105,3.697199821472168,1.9480504,93.41565831502278,63.195607,74.98279317220052,11.060838,78.73161888122559,4.6297025000000005,16.54227288564046,1.8139658,8.346869071324667,0.58070615,250.9148038228353,60.33117900000001,542.1459757486979,71.956593,7.931297580401103,154.12291000000005,7.5405195,538.5567677815756,5209.9819,1783.360432942708,346.39555462360056,378.9070078531901,950.5924444363927,17.678198496500652,53.955471,15.682193517684937,33.447493,170.47949091593424,329.52471,4.231992959976196,16.143675000000002,36.60471884409586,126.49199,5.8813802401224775,12.434284,0.28500013550122577,2.365528,18.97001536687215,14.626529,0.46645688513914746,7.0791974,1.2757697900136311,6.3606922,0.21000011265277863,3.4180583,0.10239290756483872,1.0845927,319.1300023396809,6.6935794842136405,58.883410476258234,218.7880647839753,45.62238086061233,32.723990706702715,-0.19564877526253424,5.6560072501500445,6.2799143,62587.82671838024,0.14980785321635395,4.354827245076497,6.9433284,3.073349952697754,1.8947828,0.481325035293897,0.46971744 +2006,8.358134409609946,1.092642827822681,0,0,8.925648149522456,3.767239769299825,2.045423,92.3141638437907,60.048081,75.77629216512044,10.21735,78.12813186645508,0.6450640999999999,16.514484405517578,1.7510311,8.368909200032553,0.58710647,248.66479873657227,63.03720300000001,540.64996337890625,65.575271,7.679868618647258,152.41471,9.3190485,536.2959035237631,5272.2746,1783.421223958333,356.46968956461853,381.01000722249347,986.1510088892475,18.454998811086018,51.911598,16.647892634073894,36.489809,177.60554122924805,346.30497,4.8289631605148315,19.891066,40.86165841420492,133.41048,6.627838969230652,14.118518,0.3600001533826192,2.3531588,20.050018151601154,12.639849,0.7066208471854528,6.875404400000001,1.6065597534179688,8.3862482,0.32000014930963516,2.5592336,0.1196288987994194,1.1852524,319.9329986572265,6.875606952566932,60.37974252884005,229.89543951646962,46.63913373990392,34.3551466019379,-0.19598348485772396,5.891855637232463,6.9409178,63046.345147395674,0.12455411284421772,4.33484947681427,6.3118449,3.1184199452400208,1.5902358,0.47626903901497525,0.43579597 +2007,8.681148087085731,0.9662119668592635,0,0,9.284494092478702,3.864439765612284,1.7666157999999998,91.12946637471516,57.25715400000001,76.47559356689453,9.3272415,77.3146406809489,4.5089203,16.49068291982015,1.5545493,8.360188722610474,0.78280059,246.4138298034668,64.737513,538.4259847005209,61.623755,7.651655554771423,147.28895,9.6981304,544.8235321044922,5250.6823,1788.9513142903643,355.0225755363805,382.60301971435547,945.8695944358407,19.124198754628498,49.953532,17.730092525482178,37.109679,185.02057011922201,357.26506,5.509383638699849,26.595246000000003,45.3168420791626,127.25708,7.37440820535024,16.399738,0.4300001785159111,2.4154053,21.274523735046387,9.3262891,0.9124758193890253,6.6980995,2.1004197100798288,8.4029745,0.41000018020470935,2.7884,0.13823089003562927,1.2649376,320.64601389567054,6.596141361261144,60.965826091796124,219.70587066030026,48.13085999118788,33.27729799228883,-0.1963181944529136,6.164003173510234,6.9754073000000005,62641.35919619402,0.1214193886258194,4.309016704559326,5.7707437000000015,3.1368099649747214,1.7021554,0.46845003962516785,0.59162888 +2008,8.733139806444965,0.6683379874909382,0,0,9.091850913798911,3.9428598284721375,1.746034,89.87336858113606,56.837697,77.15499623616536,9.0353429,76.47364234924316,8.339533900000001,16.458677450815838,1.9164483,8.382678429285685,0.45696793,244.47682189941406,63.06087700000001,536.3339691162109,57.108479,7.470538298288981,144.47281,6.337644999999998,546.2872212727865,5191.6855,1798.4196472167966,360.4917104977002,384.739018758138,912.5104843071592,19.5464989344279,54.881457,18.928292592366535,33.091627,193.09755071004233,362.72449,6.4292839368184405,30.815622,49.719340324401855,138.28669,8.326615969340006,17.544095000000002,0.5000001961986223,2.6196596000000003,22.006818771362305,8.8123411,1.0804997682571411,7.076053,2.7087196509043374,10.669375,0.4322652171055476,2.7884,0.15781688069303831,1.3164863000000002,321.57499186197913,6.638276368451454,61.316441745117054,214.69549502704018,48.035076099905325,31.619011505170853,-0.1966529040481033,6.453542669614156,6.8835341,61275.77057569818,0.13327703444478306,4.247629324595134,5.5737514,3.1567599376042685,1.6171325,0.4623090426127116,0.63840472 +2009,8.584990106780188,0.7548632834009588,0,0,9.109514001671727,4.015999873479207,1.7995506999999995,88.57357406616211,55.35525300000001,77.73389498392741,9.6854874,75.92381922403972,5.7877004,16.42168601353963,1.6755174,8.389018853505453,0.38354940000000004,242.4608243306478,60.065148,533.7759806315104,54.788238,7.171112656593323,144.24254,3.7694324,539.8231658935547,5145.2658,1802.1011861165362,364.2003633816462,386.28002166748047,917.7292309352042,19.870198726654053,61.50634300000001,19.930792331695557,32.081369,200.3144874572754,366.5558,7.706023693084717,33.926872,52.765931129455566,160.10848,9.35536535580953,21.142804,0.5700002362330755,2.9666725,22.658213933308918,9.933600300000002,1.2225398023923237,7.852249400000002,3.002319614092509,16.223306,0.4763352448741595,2.9974,0.17747688045104346,1.4335011999999998,322.27500661214185,6.712782947167917,61.37795929686438,218.75811433708597,46.48309573333753,31.77247636618844,-0.19698761364329287,6.728324254353841,7.159861,58721.16171394653,0.1066842123978326,4.189547856648763,5.2570896,3.1835699876149497,1.7272846000000002,0.4620170295238495,0.47723148 +2010,8.97554368419623,0.8851100551119334,0,0,9.665129375647625,4.092629869778951,1.7742175999999998,87.3809585571289,56.090865,78.37379455566406,10.48947,75.33903121948242,4.4070317,16.415090084075928,1.4644148,8.386359055836996,0.65896445,240.45181020100912,58.86009,531.2819671630859,52.271203,7.125164190928142,142.6745,2.4614781000000003,535.3102569580078,5179.9719,1807.850667317708,370.8962527865861,388.71703084309894,953.2286302920015,20.67949867248535,65.20953100000001,20.536893049875896,29.851794,207.74554824829102,361.74691,8.963194449742636,35.069515,57.8515370686849,165.044,10.426983912785849,20.460881,0.650000254313151,3.1827017000000004,23.296514352162678,11.247607,1.3827498058478038,8.7778712,3.920989453792572,15.914528,0.5346282621224722,3.3098,0.19690187896291414,1.3375544,323.140993754069,6.708375367844256,62.4444721228101,224.60211210242653,47.318297037341715,34.61053251023121,-0.19732232323848264,7.010202924410502,7.2759031,58249.4552717192,0.1379875550624469,4.121598919232686,4.897554799999999,3.1960699955622354,1.8511656000000003,0.4581970274448395,0.39655186 +2011,9.255966259655072,0.9136545403955806,0,0,9.478876565579496,4.170369823773702,1.8467555,86.05878257751465,57.565927,79.04059473673503,11.056837,74.6382344563802,4.6237938,16.361384391784668,2.0468287,8.387009064356485,0.85601742,238.2458127339681,62.415615,528.532969156901,52.120722,7.106488426526387,140.42156,3.0036158,534.1656138102213,5252.9333,1813.0701904296873,372.6576831783338,390.9440205891927,906.7673675143252,21.561198711395264,67.69059200000001,21.354194005330402,28.645628,214.5593744913737,366.94427,10.464804887771606,43.330418,62.84794902801514,190.47655,11.92148502667745,22.158614,0.7400002578894297,3.410604,24.134215990702312,12.498165,1.555159757534663,9.4654578,5.171979467074077,20.415233,0.5557872851689657,3.5841,0.21967886885007223,1.1291345,324.15898386637366,6.648935415452754,62.39874927347722,218.62875398112044,48.492221562223264,32.518259270416976,-0.19765703283367228,7.307322184244792,7.4656928,58834.52201769484,0.1090569133516887,4.04886809984843,4.3361773,3.2309599916140237,2.096153,0.450772022207578,0.39105944 +2012,9.386649744945927,0.9706890780006704,0,0,9.705285171316014,4.244799852371216,1.794986,85.01424598693848,59.464919,79.78919410705566,9.6609456,73.97862943013509,5.4529267,16.34028704961141,2.0520518,8.405529419581095,0.7168607,236.20683797200522,70.235225,525.833974202474,53.35878,6.98785674571991,136.71475,3.0096674,537.6538136800131,5232.3317,1815.2612304687498,380.80976664436446,393.0159912109375,949.6022183538887,22.543598651885986,63.311547,21.61989386876424,25.468261,220.10840479532877,356.29002,11.74120569229126,45.81505,67.7508716583252,205.00564,12.84508458773295,21.423000000000002,0.8300002614657084,3.2771162000000005,24.988317330678303,12.591587,1.750789761543274,9.054248,5.6421693166097,24.0671,0.6353292663892111,3.9269,0.23203588897983232,0.98551995,325.0049921671549,6.7427966320324675,63.84845417053954,229.10693623998705,48.176745092515574,35.82690195539086,-0.197991742428862,7.598473310470581,7.7062836,57925.01408286904,0.13867518125293046,3.9642380078633628,3.8379813,3.252539952596029,1.7328717,0.44370101888974506,0.41594871 +2013,9.65939649634906,0.9186575700100624,0,0,9.560553735096205,4.328779697418213,1.6324652,83.89107831319173,62.512861,80.53269322713216,8.3027436,73.30493418375652,6.5167934,16.327280203501385,1.9408617,8.421289602915445,0.61330322,234.38086700439453,75.740842,523.1149698893229,54.819887,6.848844488461812,133.39273,1.8384424,539.620361328125,5231.2321,1822.580841064453,381.59439281758614,395.72497812906903,901.2387566412425,23.414698759714764,59.817791,22.207694212595623,19.467118,226.13036346435547,342.89828,13.946606318155924,38.8888,74.7700621287028,202.01825,14.522682428359985,23.8069,0.9300002753734589,2.9986006,26.02762222290039,11.604213,1.9295397400856018,9.7859,7.50248924891154,21.452891,0.6930242776870728,4.2254,0.2427388938764731,0.87225171,325.91899108886713,6.847910646098343,63.650976650406456,219.3811792508812,47.50620674450057,33.245565827085585,-0.19832645202405166,7.910870313644409,7.686158,57413.51786587013,0.15767154312883705,3.8617884318033853,3.5745493,3.305999994277954,0.96258078,0.43652602036794025,0.44442215 +2014,9.719224641485487,1.0957648183627096,0,0,9.744379658087517,4.398729681968689,1.6517,83.06993166605632,53.5475,81.09249051411946,9.8735,72.71072514851888,2.8024,16.306567827860516,1.6696,8.429009358088175,1.114899,233.07986958821616,54.9365,520.5809682210287,28.9612,6.6860902309417725,133.6791,1.2625,539.5420227050781,5358.4982,1831.470998128255,387.873539205888,397.5469792683919,964.047618150183,23.809098561604817,59.82,22.075694402058918,22.47,229.5420659383138,358.8813,15.355007727940878,57.1243,80.51572863260905,200.0249,15.25278091430664,25.2487,1.0056702643632889,3.5393,26.890435059865315,12.991,2.047369738419851,10.1025,8.336968978246054,30.4858,0.7650303095579147,4.4701,0.24726289386550585,1.1516,326.98799133300776,6.916164550612366,65.0368536583283,233.52551800560903,47.385237858595374,36.145821385036584,-0.19866116161924133,8.221433083216349,7.8784,57093.261416151574,0.13977836334337682,3.7536577781041465,3.4810000000000003,3.2976099848747253,1.2299,0.431062030295531,0.3854 +2015,9.724603236619341,0.9598830811179276,0,0,9.727423576882977,4.4800931215286255,1.57,82.11865933736165,47.5476,81.8340072631836,10.8699,72.07452964782715,0.8742,16.297693729400635,1.6696,8.46001672744751,1.6714,231.4519182840983,43.5734,518.0193379720052,14.6096,6.666959961255391,133.82299999999998,0,549.8335927327474,5404.8069,1841.947591145833,388.072795663322,399.94878641764325,934.3498846847754,24.225465774536133,59.82,22.050167560577393,22.47,233.69566218058267,358.8813,17.753954728444416,78.7906,84.76681009928386,201.9534,16.742686986923218,32.381,1.0911458035310109,3.6633,27.94632927576701,14.4857,2.2213880022366843,11.7285,9.834432284037272,38.5792,0.8708094507455826,4.6492000000000004,0.2528558596968651,1.1516,328.17957051595045,6.937624392238832,65.27970313424446,227.24481931953324,47.34877178380204,34.74602422800083,-0.19899587121443105,8.568445841471354,8.02,50464.18814475436,0.12580052700903913,3.6527332067489624,3.2933,3.2844185034434,1.3378,0.426127590239048,0.3481 +2016,9.949869256003215,0.9834744278612633,0,0,9.66524115233401,4.563908696174622,1.65952,80.86888885498047,45.017160000000004,82.689117431640625,11.2451366,71.41004053751628,0.78156,16.274217287699383,1.515231454,8.488823413848877,1.61422146,229.59260431925455,41.88082,514.5848388671875,12.88774,6.884193738301595,135.46146,0,563.0186208089193,5443.782899999999,1851.594055175781,389.9511153904733,403.11696370442706,924.3121222950325,24.526807467142742,60.8428786,22.259799321492512,21.990155599999998,237.72884877522787,351.625206,21.18809445699056,97.98179999999999,90.27675183614095,214.41974,19.401511669158936,38.63372,1.2003816465536754,4.05325878,28.906192779541016,12.121559999999999,2.4407403071721396,13.658721,12.709800720214844,32.28288,0.9575150708357493,4.936195140000001,0.26552996536095935,1.18008914,329.07597859700513,7.0436200690913315,66.16008016755805,227.6426909383829,47.78426142861769,33.98323708689,-0.19933058080962068,8.884455839792887,8.09854,48398.93583290068,0.11182269067470146,3.5471805334091187,3.07158,3.2989591360092163,1.29166,0.4188620373606682,0.33428 +2017,10.175135275387087,1.007065774604599,0,0,9.603058727785044,4.607269088427226,1.74904,79.52099164326985,42.486720000000005,83.15111351013184,11.6203732,70.57004610697429,0.68892,16.21771017710368,1.360862908,8.531164169311523,1.55704292,226.30871963500977,40.18824,508.8189392089844,11.16588,6.6113983790079756,137.09992,0,558.8313802083334,5482.7589,1873.519124348958,391.8294351176246,405.79396057128906,914.2743599052895,24.88090721766154,61.8657572,22.12779935201009,21.5103112,240.95088068644205,344.369112,23.582992553710938,117.173,96.32187016805013,226.88608,20.785216967264812,44.88644,1.2822915613651276,4.443217560000001,29.845894813537598,9.75742,2.636770228544871,15.588942000000001,13.167000452677408,25.986559999999997,1.0311000694831212,5.223190280000001,0.27535797903935116,1.20857828,329.78997548421216,7.149615745943832,67.04045720087166,228.04056255723262,48.219751073433336,33.22044994577918,-0.1996652904048104,9.182517131169638,8.17708,46333.683521047,0.09784485434036376,3.4357504645983377,2.8498599999999996,3.304389158884684,1.24552,0.4108470280965169,0.32046 +2018,10.40040129477096,1.0306571213479347,0,0,9.540876303236079,4.680289109547933,1.83856,78.117493947347,39.95628000000001,83.92251396179199,11.9956098,69.8157418568929,0.59628,16.178007920583088,1.206494362,8.575844287872314,1.49986438,223.63971074422201,38.49566,504.26090749104816,9.44402,6.670585473378499,138.73837999999998,0,562.6688181559244,5521.7348999999995,1885.9708862304685,393.70775484477593,408.7599639892578,904.2365975155467,25.229507287343342,62.8886358,22.122599283854168,21.0304668,243.35691452026367,337.113018,28.04569133122762,136.36419999999998,101.78844515482585,239.35242,23.29192002614339,51.13916,1.392161637544632,4.8331763400000005,30.637296040852863,7.393280000000001,2.918560286362966,17.519163,13.881100336710611,19.69024,1.1069500744342804,5.51018542,0.28538497537374496,1.23706742,330.5629730224609,7.255611422796331,67.92083423418525,228.4384341760823,48.65524071824899,32.45766280466835,-0.2,9.511126597722372,8.255619999999999,44268.431209193324,0.08386701800602607,3.3270204861958823,2.62814,3.307759245236715,1.1993800000000001,0.4034940227866173,0.30663999999999997 +2019,10.625667314154832,1.0542484680912703,0,0,9.478693878687112,4.757159074147542,1.92808,76.66689618428548,37.42584,84.71921412150066,12.370846400000001,69.06554285685222,0.50364,16.132807572682697,1.052125816,8.618184089660645,1.44268584,220.94371032714844,36.80308,499.6509145100911,7.722159999999999,6.738316655158997,140.37684,0,565.9638010660807,5560.7109,1897.0604858398435,395.5860745719272,411.78996022542316,894.1988351258037,25.58450698852539,63.9115144,22.08519919713338,20.5506224,244.98993937174478,329.856924,33.29298973083496,155.55540000000002,107.54095141092937,251.81876,26.184722582499187,57.39188,1.512231747309367,5.22313512,31.22409725189209,5.02914,3.2446503043174744,19.449384000000002,13.805300235748291,13.393919999999998,1.184730072816213,5.79718056,0.2953829765319824,1.26555656,331.3509724934895,7.361607099648832,68.80121126749886,228.836305794932,49.09073036306464,31.69487566355753,-0.20135454728397695,9.84283677736918,8.334159999999999,42203.17889733965,0.06988918167168841,3.2168304721514382,2.40642,3.309159239133199,1.15324,0.3960750227173169,0.29281999999999997 +2020,10.850933333538705,1.077839814834606,0,0,9.416511454138146,4.837888995806376,2.0176,75.17669677734375,34.8954,85.54141553243001,12.746083,68.31994120279948,0.41100000000000003,16.08280674616496,0.89775727,8.658273935317993,1.3855073,218.22370783487955,35.1105,495.0059127807617,6.0003,6.807626525561015,142.0153,0,568.9905700683594,5599.6869,1906.8804626464841,397.46439429907855,414.8909632364909,884.1610727360609,25.94160731633504,64.934393,22.020299116770428,20.070778,246.01595306396484,322.60083,39.29728921254476,174.7466,113.55129114786784,264.2851,29.455424626668293,63.6446,1.6421518921852112,5.613093900000001,31.60739866892497,2.665,3.609150310357412,21.379605,13.078700145085653,7.0976,1.2641100684801738,6.0841757,0.3053449789683024,1.2940457,332.15397135416663,7.467602776501331,69.68158830081245,229.23417741378168,49.52622000788028,30.932088522446705,-0.20249485764698674,10.17760682106018,8.4127,40137.92658548597,0.05591134533735071,3.1059104998906455,2.1847,3.3086792826652527,1.1071,0.3886040225625038,0.27899999999999997 +2021,11.150761662372329,1.0941365900233293,0,0,9.31852107212082,4.9224690198898315,1.95172,73.65429878234863,33.28538,86.38881429036458,12.5072952,67.57924143473308,0.37899000000000005,16.02850580215454,0.833926213,8.696183840433756,1.342148655,215.48370742797852,33.879090000000005,490.33691151936847,5.50149,6.8766385316848755,140.80952,0,571.8706410725912,5574.8839,1915.5205078124998,403.1647108720892,418.06495666503906,871.2058361340454,26.297107537587483,63.8401921,21.9322992960612,19.2265454,246.56801223754883,304.67177,46.031688372294106,190.678475,119.79557673136394,269.17534,33.09572680791219,69.25233,1.7816219627857208,5.849861440000001,31.78779888153076,2.48147,4.006840368111928,23.210832600000003,11.817000230153402,6.60881,1.3448200821876526,6.19675258,0.31526297330856323,1.2782293200000001,332.97397613525385,7.525782920832098,70.42946494822603,228.19138522267377,49.51701374276551,30.279219281117893,-0.20365241239898035,10.515506982803345,8.50082,39705.18637850465,0.041933509003013035,2.9949004451433816,2.06237,3.306419312953949,1.07222,0.3810980220635732,0.26903 +2022,11.450589991205952,1.1104333652120526,0,0,9.220530690103494,5.007549126942952,1.88584,72.10620053609212,31.67536,87.24091466267903,12.2685074,66.84374109903972,0.34698,15.970504999160767,0.770095156,8.732013702392578,1.29879001,212.72770309448242,32.64768,485.6559117635091,5.00268,6.897372682889302,139.60374,0,572.6819101969401,5550.0809,1924.0206502278643,408.8650274450998,421.33495839436847,858.2505995320298,26.61680730183919,62.7459912,21.808999220530193,18.3823128,246.03809102376303,286.74271,53.39218680063883,206.61035,126.05044492085774,274.06558,37.075628916422524,74.86006,1.9277320404847462,6.08662898,31.85909875233968,2.29794,4.43168044090271,25.0420602,10.421300172805786,6.12002,1.423490087191264,6.309329460000001,0.3246489812930425,1.2624129400000001,333.80397288004554,7.583963065162864,71.1773415956396,227.14859303156584,49.507807477650736,29.62635003978908,-0.2048272115399578,10.856706857681274,8.58894,39272.44617152334,0.02795567266867536,2.88433043162028,1.9400399999999998,3.3024592796961465,1.03734,0.3735720217227936,0.25905999999999996 +2023,11.750418320039577,1.1267301404007757,0,0,9.122540308086167,5.0897791385650635,1.8199599999999998,70.53860219319661,30.065340000000003,88.07681401570638,12.0297196,66.11363983154297,0.31497000000000003,15.909404516220093,0.7062640990000001,8.765823523203531,1.255431365,209.95770390828451,31.41627,480.97191365559894,4.50387,6.857054948806763,138.39796,0,570.8572896321615,5525.2779,1933.3906962076821,414.5653440181105,424.720952351888,845.2953629300143,26.872807661692303,61.6517903,21.64079936345418,17.5380802,244.01612091064453,268.81365,61.27928606669108,222.542225,132.1101557413737,278.95582,41.366031328837074,80.46779,2.0776921113332114,6.32339652,31.914298852284748,2.11441,4.878550410270691,26.8732878,9.221230109532675,5.63123,1.4971800943215687,6.4219063400000005,0.33304697771867114,1.24659656,334.6399765014648,7.642143209493631,71.92521824305318,226.10580084045793,49.49860121253597,28.97348079846027,-0.2060192550699192,11.201407194137573,8.677059999999999,38839.70596454202,0.013977836334337678,2.7747004429499307,1.81771,3.2969093521436057,1.00246,0.3660390203197797,0.24908999999999998 +2024,12.0502466488732,1.143026915589499,0,0,9.024549926068842,5.169159173965454,1.7540799999999999,68.95680236816406,28.45532,88.89651425679524,11.790931800000001,65.38923899332683,0.28296,15.845403909683228,0.642433042,8.797693570454916,1.21207272,207.17770131429037,30.18486,476.29190826416016,4.00506,6.800275444984436,137.19218,0,568.2361958821615,5500.4749,1943.5707295735674,420.26566059112116,428.21995544433594,832.3401263279989,27.07370726267497,60.5575894,21.436299165089924,16.693847599999998,240.95115025838217,250.88459,69.67468452453613,238.47410000000002,137.98892211914062,283.84606,45.960433642069496,86.07552,2.2314022183418274,6.56016406,31.953498999277752,1.93088,5.344630479812622,28.704515400000002,8.18275010585785,5.14244,1.5664601027965546,6.534483220000001,0.34052297721306485,1.23078018,335.4819717407226,7.700323353824398,72.67309489046676,225.06300864935,49.48939494742119,28.320611557131457,-0.2072285429888644,11.549506982167562,8.765179999999999,38406.96575756071,0,2.6663904388745627,1.6953799999999999,3.28982937335968,0.96758,0.3585100198785464,0.23911999999999997 +2025,12.350074977706823,1.1593236907782223,0,0,8.926559544051516,5.245689233144124,1.6882,67.36580467224121,26.8453,89.70011329650879,11.552144,64.6707394917806,0.25095,15.778903484344482,0.578601985,8.827693382898966,1.168714075,204.3907012939453,28.95345,471.6219126383464,3.50625,6.739274064699809,135.9864,0,565.3954772949219,5475.671899999999,1954.49077351888,425.9659771641318,431.82995859781903,819.3848897259834,27.226906776428223,59.4633885,21.2031995455424,15.849615,237.1881586710612,232.95553,78.56088320414226,254.405975,143.6996981302897,288.73630000000003,50.85233497619629,91.68325,2.388732294241587,6.7969316,31.976699034372967,1.74735,5.827420473098755,30.535743000000004,7.277600089708964,4.65365,1.6318400899569194,6.647060100000001,0.3471349775791168,1.2149638,336.32897440592444,7.758503498155164,73.42097153788035,224.0202164582421,49.48018868230642,27.667742315802645,-0.20845507529679352,11.901207208633423,8.8533,37974.225550579395,0,2.5597704450289407,1.5730499999999998,3.2813193798065186,0.9327,0.35099901755650836,0.22914999999999996 +2026,12.649903306540446,1.1756204659669456,0,0,8.82856916203419,5.319379250208537,1.62232,65.77030499776204,25.235280000000003,90.48751386006673,11.3133562,63.95813910166422,0.21894,15.710403203964233,0.5147709280000001,8.855913162231445,1.12535543,201.59970347086588,27.72204,466.96691131591797,3.0074400000000003,6.677373329798381,134.78062,0,562.5115000406901,5450.8688999999995,1966.1008097330728,431.66629373714244,435.5499547322591,806.4296531239678,27.33890708287557,58.369187600000004,20.947899500528973,15.0053824,232.98621241251627,215.02647000000002,87.92068227132161,270.33785,149.25649388631186,293.62654,56.03573767344157,97.29097999999999,2.5495723883310952,7.0336991399999995,31.98409907023112,1.56382,6.324760516484578,32.3669706,6.482380072275798,4.16486,1.6937601069609325,6.759636980000001,0.35294098158677417,1.19914742,337.1809717814127,7.816683642485931,74.16884818529392,222.97742426713418,49.47098241719165,27.014873074473833,-0.20969885199370647,12.256307204564413,8.94142,37541.48534359808,0,2.455100417137146,1.45072,3.271429399649302,0.89782,0.34351301689942676,0.21917999999999999 +2027,12.94973163537407,1.1919172411556689,0,0,8.730578780016865,5.3902192910512285,1.55644,64.17410500844319,23.625260000000004,91.2587121327718,11.0745684,63.251538594563804,0.18693,15.640102704366049,0.45093987100000005,8.8823930422465,1.081996785,198.80570220947266,26.49063,462.3319142659505,2.50863,6.615452170372009,133.57484,0,559.6344350179037,5426.0659,1978.350840250651,437.3666103101531,439.37795003255206,793.4744165219523,27.379806836446125,57.2749867,20.654999415079754,14.1611498,227.8432820638021,197.09741000000002,97.73788261413574,286.269725,154.6683006286621,298.51678,61.504340489705406,102.89871,2.713832437992096,7.270466679999999,31.975799401601154,1.38029,6.8347404797871905,34.1981982,5.7778000831604,3.67607,1.752630094687144,6.872213860000001,0.3579919785261154,1.1833310400000001,338.0389734903971,7.874863786816698,74.9167248327075,221.93463207602625,49.46177615207687,26.36200383314502,-0.2109598730796033,12.614907344182333,9.02954,37108.745136616766,0,2.352640390396118,1.3283900000000002,3.2602594097455344,0.86294,0.3360630199313164,0.20921 +2028,13.249559964207695,1.208214016344392,0,0,8.632588397999537,5.458209196726481,1.4905599999999999,62.58110682169596,22.01524,92.01381301879883,10.8357806,62.55103778839111,0.15492,15.568102518717447,0.38710881399999997,8.907202879587809,1.03863814,196.01170094807944,25.25922,457.71891530354816,2.00982,6.553711573282878,132.36906000000002,0,556.7764027913412,5401.2629,1991.1708679199216,443.0669268831638,443.31495157877606,780.5191799199367,27.32500648498535,56.1807858,20.312199274698894,13.316917199999999,221.41530100504556,179.16835000000003,107.99598121643066,302.20160000000004,159.94812774658203,303.40702,67.25214258829753,108.50644,2.881392558415731,7.507234219999999,31.951799392700195,1.1967599999999998,7.355700532595317,36.0294258,5.147900025049846,3.1872799999999994,1.8088001211484273,6.984790740000001,0.36233798166116077,1.16751466,338.9019673665364,7.933043931147465,75.66460148012108,220.89183988491834,49.4525698869621,25.70913459181621,-0.21223813855448406,12.9769074122111,9.11766,36676.00492963545,0,2.2525903979937234,1.20606,3.247849424680074,0.82806,0.3286590129137039,0.19923999999999997 +2029,13.549388293041318,1.2245107915331153,0,0,8.534598015982212,5.523349324862163,1.42468,60.99460697174072,20.40522,92.75271161397298,10.596992799999999,61.856737772623696,0.12290999999999996,15.49490221341451,0.32327775700000005,8.930412848790487,0.995279495,193.21970494588217,24.02781,453.13091532389325,1.5110099999999997,6.4921800295511884,131.16328000000001,0,553.9392649332682,5376.4599,2004.5209045410154,448.7672434561744,447.36094665527344,767.5639433179213,27.189406236012776,55.0865849,19.930099487304688,12.4726846,214.17531967163086,161.23929000000004,118.6809794108073,318.13347500000003,165.10295740763345,308.29726,73.27334531148274,114.11417,3.0521625876426697,7.744001759999999,31.912299474080402,1.0132299999999999,7.886180480321248,37.860653400000004,4.57951005299886,2.6984899999999996,1.86257008711497,7.097367620000002,0.3660239825646083,1.15169828,339.7699712117512,7.9912240754782315,76.41247812753465,219.8490476938104,49.443363621847325,25.056265350487397,-0.21353364841834865,13.342507521311441,9.20578,36243.26472265414,0,2.1550903717676797,1.08373,3.2342894872029624,0.79318,0.3213070159157117,0.18927 +2030,13.849216621874941,1.2408075667218386,0,0,8.436607633964886,5.585639317830403,1.3588,59.41750717163086,18.7952,93.4755121866862,10.358205,61.16863759358724,0.0909,15.420501867930094,0.25944670000000003,8.952072858810425,0.95192085,190.4327023824056,22.7964,448.5699157714844,1.0122,6.430840611457825,129.9575,0,551.1203816731771,5351.6569,2018.3609110514321,454.46756002918505,451.51494852701825,754.6087067159058,26.98660643895467,53.992384,19.518099625905354,11.628452,206.47931671142578,143.31023000000005,129.77597745259604,334.06535,170.1438217163086,313.1875,79.56204605102539,119.7219,3.2260426680246987,7.980769299999999,31.857199668884277,0.8297,8.424900571505228,39.691881,4.06179000933965,2.2097,1.9142200847466786,7.2099445000000015,0.3690929760535558,1.1358819,340.6429773966471,8.049404219808999,77.16035477494823,218.8062555027025,49.434157356732555,24.403396109158585,-0.2148464026711971,13.711507558822632,9.2939,35810.52451567282,0,2.060280362764994,0.9614,3.2196394999821982,0.7583,0.314014012614886,0.1793 +2031,14.247373704294805,1.210485455660477,0,0,8.399193441457442,5.645089348157247,1.31663,57.85260804494222,17.92802,94.18211110432942,10.20601637,60.48673788706461,0.08381999999999999,15.345101753870646,0.24100761240000002,8.972252686818441,0.9221711260000001,187.65270614624023,21.996879999999997,444.03892008463544,0.92805,6.369686206181844,129.18567000000002,0,548.3189697265625,5335.84899,2032.6410013834634,463.25007773423954,455.7789484659831,749.767512962103,26.728106021881104,51.769800000000004,19.0839999516805,10.82562094,198.59235636393228,131.00808400000005,141.2679786682129,342.70114900000004,175.07866032918295,313.95416,86.1126480102539,123.37401,3.4029327034950256,8.031049419999999,31.786799430847168,0.79985,8.970750570297241,40.9593659,3.585800031820933,2.1302000000000003,1.9640000959237416,7.227592540000002,0.3715839758515358,1.118346335,341.52097829182935,8.096064169605077,77.5339096036032,217.88219350349667,49.655055153276265,24.09682946872741,-0.21612707113950896,14.084007581075033,9.359300000000001,35808.74626505274,0,1.9682503441969554,0.90757,3.203949491182963,0.7343999999999999,0.30678801238536835,0.1729 +2032,14.64553078671467,1.1801633445991155,0,0,8.361779248949999,5.702199379603068,1.27446,56.30240821838379,17.060840000000002,94.87551053365071,10.05382774,59.811137199401855,0.07673999999999999,15.268901427586874,0.22256852480000003,8.990992546081543,0.8924214020000001,184.87970606486002,21.19736,439.5389149983724,0.8439,6.315890431404114,128.41384,0,545.8007049560547,5320.04108,2047.8211364746091,472.032595439294,460.16394805908203,744.9263192083002,26.39020586013794,49.547216,18.61459954579671,10.02278988,190.0524139404297,118.70593800000003,152.9639778137207,351.336948,179.79629516601562,314.72082,92.85064951578777,127.02612,3.5795027017593384,8.081329539999999,31.707399527231853,0.77,9.510810613632202,42.2268508,3.1653800209363303,2.0507,2.010270098845164,7.245240580000002,0.37351197997728985,1.10081077,342.40397644042963,8.142724119401157,77.90746443225817,216.95813150429083,49.87595294981998,23.790262828296235,-0.21737565382328428,14.459507624308268,9.424700000000001,35806.96801443265,0,1.879080315430959,0.85374,3.187279522418976,0.7105,0.2996340071161588,0.16649999999999998 +2033,15.043687869134532,1.149841233537754,0,0,8.324365056442554,5.757489363352458,1.23229,54.768908182779946,16.19366,95.55851173400879,9.90163911,59.141636530558266,0.06966,15.192001263300577,0.2041294372,9.008352597554525,0.862671678,182.11670557657877,20.39784,435.0699183146159,0.7597499999999999,6.271610657374064,127.64201,0,543.6679433186849,5304.2331699999995,2064.3311971028643,480.8151131443486,464.6819483439128,740.0851254544975,25.953405221303303,47.324632,18.0990997950236,9.219958819999999,180.53842290242514,106.40379200000004,164.6779759724935,359.972747,184.19484837849936,315.48748,99.70325088500977,130.67823,3.752532740434011,8.131609659999999,31.62579933802287,0.74015,10.033900737762451,43.4943357,2.8119000593821206,1.9712,2.051620046297709,7.262888620000002,0.3748909855882327,1.083275205,343.287976582845,8.189384069197235,78.28101926091314,216.034069505085,50.09685074636369,23.48369618786506,-0.21859215072252292,14.837507804234823,9.4901,35805.18976381257,0,1.7928002973397572,0.79991,3.169699569543203,0.6866,0.29255901277065277,0.1601 +2034,15.441844951554396,1.1195191224763923,0,0,8.286950863935111,5.810959537823995,1.19012,53.25410874684652,15.32648,96.2313117980957,9.74945048,58.4784361521403,0.06258,15.114601055781046,0.18569034960000003,9.024392366409302,0.832921954,179.36570739746094,19.598319999999998,430.6349182128906,0.6756,6.230319817860921,126.87018,0,541.6956736246744,5288.42526,2082.0612386067705,489.59763084940306,469.33094533284503,735.2439317006947,25.436005115509033,45.102047999999996,17.549100081125896,8.41712776,170.49642944335938,94.10164600000002,176.40897623697916,368.60854600000005,188.30046590169272,316.25414,106.66805203755696,134.33034,3.9221327702204385,8.181889779999999,31.54189936319987,0.7102999999999999,10.542100747426352,44.7618206,2.513480007648468,1.8917000000000002,2.088650087515513,7.280536660000002,0.37575797984997433,1.06573964,344.17597452799475,8.236044018993315,78.65457408956811,215.11000750587917,50.31774854290741,23.177129547433886,-0.21977656183722505,15.21810777982076,9.5555,35803.411513192485,0,1.709440290927887,0.7460800000000001,3.151249567667643,0.6627,0.285566009581089,0.1537 +2035,15.84000203397426,1.0891970114150307,0,0,8.249536671427666,5.862599492073059,1.14795,51.75970904032389,14.4593,96.8938102722168,9.597261849999999,57.82143592834473,0.055499999999999994,15.036600828170776,0.167251262,9.03914213180542,0.80317223,176.62670771280924,18.7988,426.23292032877606,0.59145,6.190179149309794,126.09835000000001,0,539.8054860432943,5272.61735,2100.9113362630205,498.38014855445755,474.1119384765625,730.4027379468919,24.85400454203288,42.879464,16.97409963607788,7.6142967,160.25642267862955,81.79950000000002,188.15697479248047,377.24434500000007,192.13510386149088,317.0208,113.74305407206218,137.98245,4.088412761688232,8.232169899999999,31.45569944381714,0.68045,11.037500778834024,46.0293055,2.2603500485420227,1.8122000000000003,2.1218701203664145,7.298184700000002,0.376150980591774,1.0482040750000001,345.0659739176432,8.282703968789393,79.02812891822308,214.18594550667336,50.53864633945112,22.870562907002714,-0.2209288871673905,15.60130778948466,9.6209,35801.6332625724,0,1.6290202836195629,0.69225,3.131989598274231,0.6388,0.278661015133063,0.1473 +2036,16.238159116394122,1.0588749003536693,0,0,8.212122478920222,5.912419478098552,1.10578,50.287110010782875,13.592120000000001,97.54591051737468,9.44507322,57.170535723368324,0.04842,14.958300987879435,0.1488121744,9.05265220006307,0.7734225060000001,173.90271123250326,17.99928,421.8659210205078,0.5073,6.150618513425191,125.32652,0,537.9693654378256,5256.80944,2120.791341145833,507.16266625951204,479.02494049072266,725.5615441930892,24.221004645029705,40.65688,16.382599512736004,6.81146564,150.0604133605957,69.49735400000002,199.9219767252604,385.88014400000003,195.7197723388672,317.78746,120.92605527242024,141.63456,4.2514728307724,8.28245002,31.36739953358968,0.6506000000000001,11.521800597508749,47.2967904,2.0444400310516357,1.7327000000000001,2.151750107606252,7.315832740000001,0.37610198309024173,1.03066851,345.9589742024739,8.329363918585472,79.40168374687805,213.26188350746753,50.75954413599483,22.56399626657154,-0.22204912671301935,15.987007856369019,9.686300000000001,35799.85501195231,0,1.5515302916367848,0.63842,3.1119595964749656,0.6149,0.2718460112810135,0.1409 +2037,16.636316198813986,1.0285527892923076,0,0,8.174708286412779,5.9604094823201494,1.0636100000000002,48.83770942687988,12.72494,98.1878096262614,9.29288459,56.52583535512289,0.041339999999999995,14.879800717035929,0.1303730868,9.06499195098877,0.7436727820000001,171.19371287027994,17.199759999999998,417.5329182942708,0.42315,6.111427823702495,124.55469,0,536.1712392171224,5241.00153,2141.611409505208,515.9451839645666,484.07193756103516,720.7203504392864,23.549004395802815,38.434296,15.781399885813395,6.00863458,140.0813954671224,57.19520800000002,211.70197550455728,394.51594300000005,199.0754712422689,318.55412,128.21405474344888,145.28667,4.411412795384725,8.33273014,31.27679967880249,0.62075,11.996500571568808,48.5642753,1.8591100374857585,1.6532,2.178700069586436,7.333480780000001,0.37564098089933395,1.013132945,346.8539708455403,8.376023868381552,79.77523857553302,212.3378215082617,50.98044193253855,22.257429626140365,-0.2231372804741117,16.375207742055256,9.751700000000001,35798.07676133223,0,1.4769402742385864,0.58459,3.0912196238835654,0.591,0.2651270081599553,0.1345 +2038,17.03447328123385,0.9982306782309461,0,0,8.137294093905334,6.006589492162068,1.0214400000000001,47.41250991821289,11.857759999999999,98.81930923461914,9.140695959999999,55.887234687805176,0.03425999999999999,14.801000674565634,0.1119339992,9.076182047526041,0.713923058,168.50171534220377,16.40024,413.2339172363281,0.33899999999999997,6.072507540384929,123.78286,0,534.4032185872396,5225.19362,2163.3014526367183,524.7277016696211,489.2519353230794,715.8791566854836,22.848203976949055,36.211712,15.17639978726705,5.20580352,130.44237772623697,44.893062,223.49797566731772,403.15174200000007,202.21918741861978,319.32078,135.60606002807617,148.93878,4.56833291053772,8.38301026,31.184099515279133,0.5909,12.462700843811035,49.8317602,1.698870023091634,1.5737,2.2030701438585916,7.351128820000001,0.374797984957695,0.99559738,347.7509740193684,8.42268381817763,80.148793404188,211.41375950905586,51.20133972908226,21.95086298570919,-0.22419334845066732,16.766007900238037,9.8171,35796.29851071215,0,1.4052302638689678,0.53076,3.069799621899923,0.5670999999999999,0.2585040107369423,0.1281 +2039,17.432630363653715,0.9679085671695846,0,0,8.099879901397891,6.050939520200093,0.9792700000000001,46.0125093460083,10.990580000000001,99.44051106770833,8.98850733,55.25473499298096,0.027179999999999996,14.722000678380331,0.09349491159999998,9.08627200126648,0.684173334,165.82771682739258,15.600719999999999,408.9709192911784,0.2548499999999999,6.0337962706883745,123.01103,0,532.65704345703125,5209.3857100000005,2185.7714843749995,533.5102193746756,494.5669352213542,711.0379629316808,22.127203623453777,33.989128,14.572499831517538,4.40297246,121.2223580678304,32.59091600000001,235.3089739481608,411.78754100000003,205.16693623860678,320.08744,143.0980593363444,152.59089,4.722322901089986,8.43329038,31.089199384053547,0.56105,12.921700795491537,51.0992451,1.5592400232950847,1.4942000000000002,2.225170095761617,7.368776860000001,0.37359698365132016,0.978061815,348.6509704589843,8.46934376797371,80.52234823284296,210.48969750985003,51.422237525625974,21.644296345278015,-0.22521733064268645,17.159307797749836,9.8825,35794.52026009206,0,1.3363502422968547,0.47693,3.047749658425649,0.5432,0.2519810075561206,0.1217 +2040,17.83078744607358,0.937586456108223,0,0,8.062465708890446,6.093459606170654,0.9371,44.63850975036621,10.1234,100.05101013183594,8.8363187,54.628134409586586,0.0201,14.64300044377645,0.07505582400000001,9.095301787058512,0.65442361,163.1727180480957,14.8012,404.74292246500653,0.1707,5.995237270991008,122.2392,0,530.9283091227213,5193.5778,2208.961547851562,542.29273707973,500.01893107096356,706.1967691778781,21.39370361963908,31.766544,13.973599831263224,3.6001414,112.47333717346191,20.28877,247.13397343953451,420.42334000000005,207.93367640177408,320.8541,150.690060933431,156.243,4.8734729290008545,8.4835705,30.99209992090861,0.5312,13.374400774637857,52.36673,1.4365200102329254,1.4147,2.245280106862386,7.3864249000000015,0.3720619852344195,0.96052625,349.5529708862304,8.516003717769788,80.89590306149793,209.5656355106442,51.643135322169684,21.33772970484684,-0.2262092270501689,17.555107911427815,9.9479,35792.74200947198,0,1.2702502210934956,0.4231,3.025119642416636,0.5193,0.2455610086520513,0.1153 +2041,18.26483035251734,0.8998523114686243,0,0,7.946306556292067,6.134169618288676,0.9101400000000001,43.29130935668945,9.656320000000001,100.65201059977214,8.7385696,54.00763352711996,0.01853,14.563900470733643,0.0697234998,9.10332179069519,0.633957487,160.5377197265625,14.28209,400.5489196777344,0.15650999999999998,5.956782420476277,121.74575999999999,0,529.21051025390625,5183.42455,2232.8115030924473,547.0932273226367,505.60793050130206,702.7722316362681,20.65380350748698,30.4061322,13.383099953333536,3.34120265,104.22231737772624,18.44822429,258.97397232055664,431.40552400000007,210.5334841410319,326.57948,158.37906392415366,160.71565999999999,5.021872878074646,8.61920207,30.89299949010213,0.50822,13.821500698725382,54.070386,1.3276700178782146,1.3535000000000001,2.2636200984319053,7.518230390000001,0.3702169805765152,0.964222471,350.4579747517903,8.502727514290838,80.91751695575154,209.0394504623315,51.387041549503834,21.237220970630947,-0.2271612041262468,17.953508059183758,10.02518,35240.28487663249,0,1.2068902254104614,0.39941,3.0019396940867105,0.5029399999999999,0.23924600705504417,0.11118 +2042,18.698873258961104,0.8621181668290256,0,0,7.830147403693688,6.17337961991628,0.8831800000000001,41.97121016184489,9.18924,101.24400838216145,8.6408205,53.3930336634318,0.01696,14.484700361887613,0.0643911756,9.110341707865397,0.613491364,157.92272313435873,13.762979999999999,396.3909225463867,0.14232,5.92673647403717,121.25232,0,528.0659942626953,5173.2713,2256.9115193684893,551.8937175655433,511.34192657470703,699.3476940946581,19.91360314687093,29.0457204,12.803099711736044,3.0822639,96.4414005279541,16.607678579999998,270.89896901448566,442.38770800000003,213.1466064453125,332.30486,166.19706598917642,165.18832,5.169312953948975,8.754833640000001,30.79219977060954,0.48524,14.276000817616781,55.774041999999994,1.231520007054011,1.2923,2.2830101251602173,7.650035880000002,0.3683599804838498,0.967918692,351.3589757283528,8.489451310811889,80.93913085000513,208.51326541401883,51.130947776837985,21.136712236415057,-0.2280732618709199,18.354708194732666,10.10246,34687.82774379301,0,1.1462002197901409,0.37572,2.9782397150993347,0.48658,0.23303800697127977,0.10706 +2043,19.132916165404865,0.824384022189427,0,0,7.713988251095309,6.211419582366943,0.85622,40.678810119628906,8.72216,101.83000946044922,8.5430714,52.78433354695638,0.015390000000000001,14.405600388844809,0.0590588514,9.116421699523926,0.5930252410000001,155.32972844441733,13.24387,392.2669270833333,0.12813,5.90719719727834,120.75888,0,527.658701578776,5163.11805,2280.921508789062,556.69420780845,517.2279256184896,695.9231565530481,19.177703380584717,27.6853086,12.235599915186564,2.82332515,89.09968185424805,14.767132870000001,282.97996520996094,453.36989200000005,215.93587493896484,338.03024,174.17606735229492,169.66098,5.3175530433654785,8.89046521,30.69039996465047,0.46226,14.748900890350342,57.477698,1.1470500230789185,1.2311,2.3059001167615256,7.781841370000001,0.36677198112010956,0.971614913,352.24897257486975,8.476175107332939,80.96074474425873,207.98708036570613,50.874854004172136,21.036203502199164,-0.2289454002841884,18.75890827178955,10.17974,34135.37061095352,0,1.0881002048651378,0.35202999999999995,2.9540796677271524,0.47021999999999997,0.22693600753943124,0.10294 +2044,19.56695907184863,0.7866498775498282,0,0,7.597829098496929,6.2482995589574175,0.82926,39.41440931955973,8.25508,102.4090092976888,8.445322299999999,52.1814333597819,0.013819999999999999,14.326600313186646,0.0537265272,9.121591647466024,0.572559118,152.7597287495931,12.72476,388.1789245605469,0.11393999999999999,5.8902667760849,120.26544,0,527.4585520426432,5152.9648,2304.841471354166,561.4946980513566,523.2669321695963,692.4986190114381,18.44960308074951,26.324896799999998,11.682199875513712,2.5643864,82.20916239420573,12.92658716,295.21296946207684,464.352076,218.88808059692383,343.75562,182.31306838989258,174.13364,5.466583013534546,9.026096780000001,30.587599754333496,0.43928,15.238200902938843,59.181354,1.0720400114854176,1.1699,2.3318700989087424,7.913646860000002,0.3654309809207916,0.975311134,353.1299718221028,8.462898903853988,80.98235863851234,207.46089531739347,50.618760231506286,20.93569476798327,-0.22977761936605226,19.16610844930013,10.25702,33582.91347811403,0,1.0325501958529155,0.32833999999999997,2.929469724496206,0.45386,0.2209440072377523,0.09881999999999999 +2045,20.00100197829239,0.7489157329102295,0,0,7.48166994589855,6.284009615580241,0.8023,38.178309758504234,7.788,102.98101043701172,8.3475732,51.58433278401693,0.01225,14.247700293858847,0.048394203000000004,9.125871578852335,0.552092995,150.21173095703125,12.205649999999999,384.1249262491862,0.09974999999999999,5.873796701431274,119.77199999999999,0,527.2955271402994,5142.81155,2328.67148844401,566.2951882942632,529.4599202473959,689.0740814698281,17.73200273513794,24.964485,11.144399960835775,2.30544765,75.76934432983398,11.08604145,307.5939687093099,475.33426000000003,221.99128341674805,349.481,190.6050682067871,178.6063,5.6163930495580034,9.16172835,30.48359966278076,0.4163,15.741800864537558,60.885009999999994,1.0046800126632054,1.1087,2.360550125439962,8.045452350000001,0.36431798338890076,0.979007355,353.9999694824218,8.449622700375038,81.00397253276594,206.93471026908077,50.36266645884044,20.83518603376738,-0.23056991911651145,19.57640854517619,10.3343,33030.45634527455,0,0.9794481893380483,0.30465,2.904469688733419,0.4375,0.21506300816933313,0.0947 +2046,20.43504488473615,0.7111815882706308,0,0,7.365510793300171,6.318549593289693,0.77534,36.97060998280843,7.320920000000001,103.54700978597005,8.2498241,50.99293168385824,0.01068,14.168800354003906,0.0430618788,9.129311482111612,0.531626872,147.6877326965332,11.686539999999999,380.10492451985675,0.08556,5.857176423072815,119.27856,0,527.1186014811198,5132.6583,2352.411478678385,571.0956785371699,535.8089345296224,685.6495439282182,17.027002493540447,23.604073200000002,10.623199860254923,2.0465089,69.77132733662923,9.24549574,320.1199696858724,486.31644400000005,225.23446782430014,355.20637999999997,199.049072265625,183.07896,5.766953190167745,9.29735992,30.378599961598713,0.39332,16.258100827534992,62.588665999999996,0.943514014283816,1.0475,2.39162011941274,8.177257840000001,0.36341698467731476,0.982703576,354.8599751790364,8.436346496896089,81.02558642701953,206.40852522076807,50.106572686174594,20.73467729955149,-0.231322299535566,19.98960828781128,10.41158,32477.99921243506,0,0.9287371685107549,0.28096,2.8790797193845115,0.42114,0.20929100612799326,0.09058 +2047,20.869087791179915,0.6734474436310321,0,0,7.249351640701791,6.351929585138957,0.74838,35.79130935668945,6.85384,104.10600980122884,8.152075,50.407331784566246,0.009110000000000002,14.090100129445394,0.037729554600000006,9.131931384404501,0.5111607490000001,145.1877352396647,11.16743,376.1199264526367,0.07137,5.840256253878276,118.78512,0,526.9127044677734,5122.50505,2376.0514729817705,575.8961687800766,542.3139139811198,682.2250063866082,16.33650255203247,22.2436614,10.119199911753336,1.7875701500000003,64.2006098429362,7.40495003,332.7859649658203,497.298628,228.60463587443033,360.93176,207.64207204182944,187.55162,5.918243209520976,9.432991490000001,30.272399584452312,0.37034,16.785600980122883,64.292322,0.887348011136055,0.9863,2.424790104230245,8.30906333,0.36271098007758457,0.986399797,355.709971110026,8.423070293417139,81.04720032127314,205.8823401724554,49.850478913508745,20.634168565335596,-0.23203476062321585,20.40590826670329,10.48886,31925.542079595576,0,0.8803351720174154,0.25727,2.8533597389856973,0.40478000000000003,0.20363000656167665,0.08646000000000001 +2048,21.303130697623676,0.6357132989914334,0,0,7.133192488103412,6.384149630864461,0.72142,34.64060910542806,6.386760000000001,104.6580098470052,8.0543259,49.82733186086019,0.00754,14.011600176493326,0.0323972304,9.133781353632608,0.490694626,142.71373875935873,10.648319999999998,372.1689224243164,0.05717999999999998,5.822985967000325,118.29168,0,526.6708119710287,5112.3517999999995,2399.611450195312,580.6966590229832,548.9769185384115,678.8004688449982,15.662102381388346,20.8832496,9.633109966913858,1.5286314,59.038694063822426,5.5644043199999995,345.5879669189453,508.280812,232.0927937825521,366.65713999999997,216.38307444254556,192.02428,6.070253213246663,9.56862306,30.165099779764812,0.34736,17.322900772094727,65.995978,0.8352210174004236,0.9251,2.459800124168396,8.440868820000002,0.36218498398860294,0.990096018,356.54997507731116,8.409794089938188,81.06881421552674,205.3561551241427,49.594385140842896,20.533659831119703,-0.23270730237946105,20.82520850499471,10.56614,31373.08494675609,0,0.8341701676448187,0.23357999999999998,2.8273197611172995,0.38842,0.19808000574509302,0.08234 +2049,21.73717360406744,0.5979791543518347,0,0,7.017033335505032,6.415199677149455,0.69446,33.51830927530924,5.9196800000000005,105.20400873819987,7.9565768,49.25293159484863,0.005970000000000001,13.933200120925903,0.027064906200000002,9.134861389795939,0.470228503,140.26374181111655,10.129209999999999,368.2519251505534,0.04299,5.805375814437866,117.79823999999999,0,526.3929341634115,5102.19855,2423.0814819335933,585.4971492658898,555.7999216715494,675.3759313033883,15.00470232963562,19.522837799999998,9.16504987080892,1.26969265,54.26457945505778,3.7238586100000006,358.521967569987,519.262996,235.68994013468424,372.38252,225.26707712809244,196.49694000000002,6.222963253657023,9.704254630000001,30.056700070699055,0.32438,17.869001070658367,67.699634,0.7863500018914541,0.8639,2.4964400927225747,8.572674310000002,0.36182398597399396,0.993792239,357.3799794514973,8.39651788645924,81.09042810978033,204.82997007583003,49.338291368177046,20.433151096903813,-0.23333992480430166,21.24750852584839,10.64342,30820.627813916602,0,0.7901611576477686,0.20989,2.8009997606277466,0.37206,0.19264200578133264,0.07822 +2050,22.1712165105112,0.560245009712236,0,0,6.900874182906653,6.445079763730367,0.6675,32.42430877685547,5.4526,105.74300956726074,7.8588277,48.68413098653158,0.0044,13.855100154876709,0.021732582,9.135211308797201,0.44976238,137.8407440185547,9.6101,364.367925008138,0.0288,5.787425716718038,117.3048,0,526.0799942016602,5092.0453,2446.451497395833,590.2976395087965,562.783925374349,671.9513937617783,14.365502119064331,18.162426,8.715120077133179,1.0107539,49.85606575012207,1.8833129,371.584966023763,530.24518,239.3880704243978,378.1079,234.29408009847006,200.9696,6.3763532638549805,9.8398862,29.947099685668945,0.3014,18.42280117670695,69.40329,0.7400990178187689,0.8027,2.5345001022020974,8.704479800000001,0.36161597818136215,0.99748846,358.19997660319007,8.38324168298029,81.11204200403394,204.30378502751734,49.0821975955112,20.33264236268792,-0.2339326278977376,21.67280848821004,10.7207,30268.170681077117,0,0.7482321510712305,0.1862,2.7744197448094687,0.3557,0.18731500456730524,0.0741 +2051,22.688456400920256,0.5080245211191539,0,0,6.867758269552311,6.473799745241801,0.65022,31.3584090868632,5.20103,106.27600924173991,7.79585828,48.12083117167155,0.00406,13.777100086212158,0.02018665606,9.134861071904501,0.435696317,135.442746480306,9.27305,360.5179265340169,0.02641,5.769155025482178,116.98853,0,525.7342325846354,5085.504629999999,2469.741373697916,591.0588934449585,569.9299163818359,672.3153942178374,13.744901974995932,17.3846094,8.283310095469156,0.9380561430000001,45.79045263926188,1.712466056,384.77296447753906,543.545966,243.17819213867188,385.33678,243.45907974243164,206.15558000000001,6.5304034153620405,9.93093498,29.836400190989178,0.28994,18.98340129852295,71.5055304,0.6959530115127563,0.77218,2.573820094267527,8.870901020000002,0.3615499834219615,1.005273854,359.0109761555989,8.400122039114782,81.34046986175906,204.62492513353237,49.19632084013124,20.276010790968694,-0.2344700833140053,22.101208686828613,10.75191,30439.62385529749,0,0.7083061387141546,0.17577,2.7475997606913247,0.34449,0.1820990058283011,0.07145 +2052,23.205696291329307,0.4558040325260717,0,0,6.83464235619797,6.501559694608052,0.63294,30.3205091158549,4.94946,106.80300839742024,7.73288886,47.562930742899574,0.0037200000000000002,13.699299971262613,0.01864073012,9.133851210276285,0.42163025400000004,133.07174936930338,8.936,356.7019297281901,0.02402,5.751474499702454,116.67226,0,525.23388671875,5078.96396,2492.021118164062,591.8201473811205,577.2579091389974,672.6793946738964,13.142001946767172,16.6067928,7.868939995765686,0.865358386,42.04134051005045,1.541619212,398.12396240234375,556.846752,247.07434844970703,392.56566,252.78008143107095,211.34156000000002,6.68410340944926,10.021983760000001,29.724799791971844,0.27848,19.555501143137615,73.6077708,0.6549580047527949,0.74166,2.614560147126516,9.037322240000002,0.3616349870959918,1.013059248,359.81497701009107,8.417002395249275,81.56889771948418,204.94606523954744,49.31044408475129,20.219379219249465,-0.23495229105310506,22.53160874048869,10.78312,30611.077029517866,0,0.6703081329663595,0.16534,2.720589796702067,0.33328,0.17699500421682993,0.0688 +2053,23.722936181738362,0.40358354393298956,0,0,6.801526442843628,6.52856969833374,0.61566,29.310208956400555,4.69789,107.32600847880046,7.66991944,47.01053015391032,0.00338,13.621800263722738,0.01709480418,9.1321812470754,0.407564191,130.72775522867838,8.59895,352.91793060302734,0.02163,5.734394669532776,116.35599,0,524.5144195556641,5072.42329,2512.4310506184893,592.5814013172825,584.7839202880859,673.0433951299553,12.555901924769083,15.8289762,7.471289952596028,0.7926606290000001,38.58302974700928,1.370772368,411.67095947265625,570.147538,251.08750788370767,399.79454,262.27208455403644,216.52754000000002,6.836443463961284,10.11303254,29.612699667612713,0.26702,20.14290126164754,75.7100112,0.6179830133914948,0.71114,2.656830132007599,9.20374346,0.36188098539908725,1.020844642,360.61497243245435,8.433882751383766,81.7973255772093,205.2672053455625,49.424567329371335,20.16274764753024,-0.23537925111503666,22.9632085164388,10.81433,30782.530203738243,0,0.6341611295938492,0.15491,2.6933897535006204,0.32207,0.1720000058412552,0.06615 +2054,24.240176072147413,0.3513630553399074,0,0,6.768410529489287,6.554829756418864,0.59838,28.32740847269694,4.44632,107.84500885009766,7.60695002,46.46352926890055,0.00304,13.54450011253357,0.01554887824,9.129891157150269,0.393498128,128.41175587972006,8.261899999999999,349.1679331461589,0.01924,5.716914653778076,116.03972,0,523.662701924642,5065.88262,2531.111002604166,593.3426552534445,592.5069071451823,673.4073955860144,11.987001657485962,15.0511596,7.0900899569193525,0.719962872,35.39561907450358,1.199925524,425.40296427408856,583.4483240000001,255.20263799031576,407.02342,271.9310887654622,221.71352000000002,6.987403512001038,10.20408132,29.500099658966064,0.25556,20.742701212565105,77.8122516,0.5842860092719396,0.68062,2.7003801266352334,9.37016468,0.3622709835569064,1.028630036,361.412971496582,8.45076310751826,82.02575343493443,205.58834545157754,49.53869057399138,20.106116075811013,-0.2357509634998001,23.39590867360433,10.84554,30953.983377958615,0,0.5997921129067739,0.14448,2.6660298109054565,0.31086,0.16711600249012312,0.0635 +2055,24.75741596255647,0.29914256674682527,0,0,6.735294616134945,6.580349683761597,0.5811,27.37160841623942,4.19475,108.35900815327962,7.543980599999999,45.921829541524254,0.0027,13.467399994532267,0.0140029523,9.126991113026937,0.37943206500000004,126.12275886535645,7.924849999999999,345.4499282836914,0.01685,5.6988247235616045,115.72345,0,522.71197509765625,5059.34195,2548.160970052083,594.1039091896065,600.4289093017578,673.7713960420735,11.435601631800333,14.273343,6.725039998690288,0.6472651150000001,32.459709803263344,1.02907868,439.30896759033203,596.74911,259.4067548116048,414.2523,281.7510935465495,226.8995,7.136963407198588,10.295130100000002,29.386799812316895,0.24409999999999998,21.35270118713379,79.914492,0.5532670120398203,0.6501,2.744960129261017,9.5365859,0.3627909794449806,1.03641543,362.2069727579752,8.467643463652752,82.25418129265955,205.90948555759257,49.65281381861143,20.049484504091787,-0.23606742820739554,23.82970889409383,10.876750000000001,31125.436552178988,0,0.5671301186084747,0.13405,2.638529817263285,0.29965,0.16234000523885092,0.06085 +2056,25.274655852965523,0.24692207815374312,0,0,6.7021787027806035,6.6051197449366255,0.56382,26.44260835647583,3.94318,108.86900838216145,7.481011179999999,45.38542970021566,0.00236,13.390599966049194,0.01245702636,9.12351099650065,0.365366002,123.86176109313965,7.5878,341.76393636067706,0.01446,5.680104653040568,115.40718,0,521.6771977742513,5052.80128,2563.6908569335933,594.8651631257685,608.5499013264974,674.1353964981325,10.90200146039327,13.4955264,6.3757699728012085,0.5745673580000001,29.75700092315674,0.8582318360000001,453.3789647420247,610.049896,263.68785603841144,421.48118,291.7270914713542,232.08548,7.2851035594940186,10.386178880000001,29.273000081380207,0.23264,21.970701217651367,82.0167324,0.5244460105895996,0.61958,2.7903801004091897,9.70300712,0.36342598249514896,1.0442008239999998,362.99797566731763,8.484523819787245,82.48260915038466,206.23062566360764,49.766937063231474,19.992852932372557,-0.2363286452378228,24.26460886001587,10.907960000000001,31296.889726399364,0,0.5361031095186869,0.12362000000000001,2.6109098196029663,0.28844000000000003,0.15767300377289453,0.0582 +2057,25.791895743374575,0.19470158956066097,0,0,6.669062789426262,6.62913978099823,0.54654,25.53980811436971,3.6916100000000003,109.37500826517741,7.4180417599999995,44.85432879130045,0.00202,13.314000050226847,0.01091110042,9.119481086730957,0.351299939,121.6277650197347,7.25075,338.1109339396159,0.012070000000000001,5.660784641901652,115.09091,0,520.56939697265625,5046.26061,2577.8208007812495,595.6264170619305,616.8699035644531,674.4993969541915,10.386301517486572,12.7177098,6.041899959246318,0.5018696010000001,27.27039321263631,0.6873849920000001,467.6029586791992,623.350682,268.0359395345052,428.71006,301.85509490966797,237.27146,7.4318035046259565,10.47722766,29.15850003560384,0.22118,22.595001538594563,84.1189728,0.49742400894562405,0.58906,2.836450139681498,9.869428339999999,0.36416498323281604,1.051986218,363.7849756876627,8.501404175921738,82.71103700810978,206.5517657696227,49.88106030785152,19.93622136065333,-0.236534614591082,24.700708866119385,10.93917,31468.34290061974,0,0.5066401039560636,0.11319000000000001,2.5831998189290366,0.27723000000000003,0.15311200295885405,0.05555 +2058,26.30913563378363,0.14248110096757882,0,0,6.6359468760719205,6.652419805526733,0.52926,24.663008054097492,3.44004,109.87600771586101,7.3550723399999995,44.328529040018715,0.00168,13.23770006497701,0.009365174479999998,9.11491084098816,0.337233876,119.42276827494304,6.9137,334.49093373616535,0.009680000000000001,5.640924612681071,114.77464,0,519.39459228515625,5039.71994,2590.630696614583,596.3876709980925,625.3909047444662,674.8633974102506,9.888681332270304,11.9398932,5.723009983698527,0.42917184399999997,24.98348553975423,0.516538148,481.96996307373047,636.651468,272.4410120646159,435.93894,312.12909444173175,242.45744,7.577043533325195,10.56827644,29.043299833933514,0.20972,23.22390127182007,86.2212132,0.4718780095378558,0.55854,2.8830201625823975,10.035849559999999,0.3649949828783671,1.0597716119999998,364.568977355957,8.51828453205623,82.9394648658349,206.87290587563774,49.995183552471566,19.879589788934105,-0.2366853362671731,25.138008912404377,10.97038,31639.796074840113,0,0.47867609808842343,0.10275999999999999,2.5554098089536033,0.26602000000000003,0.1486580048998197,0.0529 +2059,26.826375524192684,0.09026061237449667,0,0,6.602830962717579,6.674939870834351,0.51198,23.811607837677002,3.18847,110.37400881449382,7.29210292,43.80782890319824,0.00134,13.161700169245401,0.007819248539999999,9.109811067581177,0.32316781299999997,117.24577077229817,6.57665,330.90093485514325,0.007290000000000001,5.620564421017964,114.45837,0,518.1597340901693,5033.1792700000005,2602.2106526692705,597.1489249342545,634.1138865152994,675.2273978663097,9.40904132525126,11.162076599999999,5.418649991353353,0.35647408700000005,22.88127867380778,0.34569130400000003,496.47196197509766,649.952254,276.89307657877606,443.16782,322.5440953572591,247.64342,7.720823566118876,10.659325220000001,28.9274001121521,0.19826,23.856001218159992,88.3234536,0.4475400075316429,0.5280199999999999,2.9299501180648804,10.20227078,0.36590898036956787,1.067557006,365.3509724934895,8.535164888190723,83.16789272356003,207.19404598165278,50.10930679709161,19.822958217214875,-0.2367808102660961,25.576408704121906,11.00159,31811.249249060485,0,0.4521420920888583,0.09233,2.527559836705526,0.25481,0.14430900290608406,0.05025 +2060,27.343615414601736,0.03804012378141449,0,0,6.5697150493632375,6.696719725926717,0.4947,22.985307693481445,2.9369,110.86700757344563,7.2291335,43.29222838083903,0.001,13.085900068283081,0.0062733226,9.104221026102701,0.30910175,115.09777514139812,6.2396,327.3439305623372,0.0049,5.599764943122864,114.1421,0,516.8699747721354,5026.6386,2612.6406046549473,597.9101788704165,643.0408986409506,675.5913983223687,8.947311162948608,10.38426,5.12837000687917,0.28377633,20.94967206319173,0.17484446,511.0979537963867,663.25304,281.3841247558594,450.3967,333.0960998535156,252.8294,7.863123655319214,10.750374,28.81090021133423,0.1868,24.490101019541424,90.425694,0.4241960073510806,0.4975,2.977130174636841,10.368692,0.3668949802716573,1.0753423999999998,366.1289723714192,8.552045244325216,83.39632058128515,207.51518608766784,50.22343004171166,19.76632664549565,-0.23682103658785106,26.01590871810913,11.0328,31982.70242328086,0,0.4269750838478406,0.0819,2.499669830004374,0.2436,0.14006300270557404,0.0476 +2061,27.8030564462792,0.027961473106151803,0,0,6.521597973186327,6.717759728431702,0.48363999999999996,22.18360773722331,2.80139,111.35500907897949,7.18911387,42.78172810872396,9.2e-4,13.01040005683899,0.0058252281299999995,9.09816082318624,0.299431331,112.97777493794759,6.02076,323.81793212890625,0.00449,5.5785430272420244,113.93967,0,515.5288213094076,5022.48175,2622.0105387369786,597.8320022947985,652.1719004313151,674.6864791350496,8.503331263860067,9.939558329999999,4.8517100016276045,0.2633617666,19.17526610692342,0.1589853287,525.8399505615234,677.7417780000001,285.90617116292316,459.35405000000003,343.7811024983724,258.86776,8.003923734029135,10.836025300000001,28.693600018819172,0.17923999999999998,25.125101407368977,92.8068766,0.40168001006046933,0.47737,3.024450163046519,10.5748997,0.36794498066107434,1.0854855199999998,366.90297953287757,8.55189579013531,83.58140095451509,207.08293381716103,49.99017805415978,19.725709806559603,-0.23685060293434085,26.456508954366047,11.05564,31859.101005815177,0,0.40311507880687714,0.07732,2.471749802430471,0.23592000000000002,0.13592000305652618,0.0459 +2062,28.262497477956668,0.017882822430889116,0,0,6.473480897009417,6.738179802894592,0.47258,21.406007289886475,2.66588,111.84000778198242,7.14909424,42.27632713317871,8.4e-4,12.935200055440268,0.00537713366,9.091630776723227,0.289760912,110.88578033447266,5.80192,320.3229344685872,0.00408,5.560380856196086,113.73724,0,514.3838907877604,5018.3249000000005,2630.410522460937,597.7538257191806,661.5069071451823,673.7815599477306,8.077481150627136,9.49485666,4.58839996655782,0.24294720320000002,17.54696051279704,0.1431261974,540.7299550374349,692.2305160000001,290.5183283487956,468.3114,354.6271006266276,264.90612,8.143303553263346,10.921676600000001,28.575899918874104,0.17168,25.768301645914715,95.1880592,0.3804440051317215,0.45724,3.0728201270103455,10.7811074,0.36909497777620953,1.09562864,367.67297363281244,8.551746335945404,83.76648132774501,206.65068154665423,49.75692606660789,19.685092967623557,-0.2368695093055657,26.898108959197998,11.07848,31735.499588349492,0,0.3805030733346939,0.07274,2.4438198606173196,0.22824,0.1318780022362868,0.0442 +2063,28.721938509634132,0.007804171755626428,0,0,6.425363820832507,6.7581197420756025,0.46152,20.651907126108807,2.53037,112.32300758361816,7.1090746099999995,41.775827725728355,7.6e-4,12.86020016670227,0.00492903919,9.08465083440145,0.280090493,108.82278378804524,5.58308,316.8589375813802,0.00367,5.546241124471028,113.53481,0,513.5143814086914,5014.16805,2637.9204508463536,597.6756491435626,671.0448862711588,672.8766407604114,7.669960975646973,9.05015499,4.338110049565633,0.22253263980000001,16.054155429204304,0.1272670661,555.8029429117838,706.7192540000001,295.2725346883138,477.26875,365.6661071777344,270.94448,8.281343698501587,11.0073279,28.457899888356526,0.16412,26.42600154876709,97.5692418,0.3608480046192805,0.43711,3.1230701406796775,10.9873151,0.3703789835174878,1.1057717599999999,368.4369735717773,8.551596881755499,83.95156170097495,206.21842927614742,49.52367407905601,19.64447612868751,-0.23687775570152544,27.340508778889973,11.10132,31611.898170883807,0,0.3590780695279439,0.06816,2.415889879067739,0.22056,0.12793700272838274,0.0425 +2064,29.181379541311596,0,0,0.0022744789196362594,6.377246744655597,6.777579824129741,0.45045999999999997,19.92100699742635,2.39486,112.80300649007161,7.06905498,41.28042729695638,6.8e-4,12.785499970118204,0.0044809447199999995,9.077250639597574,0.270420074,106.7877852121989,5.36424,313.42593638102215,0.00326,5.5329908927281695,113.33238,0,512.7074203491211,5010.0112,2644.600423177083,597.5974725679446,680.7888946533203,671.9717215730923,7.280240972836812,8.605453319999999,4.100310027599335,0.2021180764,14.685950915018717,0.1114079348,571.0489501953125,721.2079920000001,300.1566925048828,486.2261,376.89110565185547,276.98284,8.418043613433838,11.0929792,28.339699904123943,0.15655999999999998,27.096001466115315,99.9504244,0.34259800612926483,0.41698,3.174930195013682,11.1935228,0.3717849800984065,1.1159148799999998,369.1929728190104,8.551447427565593,84.13664207420487,205.7861770056406,49.29042209150412,19.603859289751465,-0.2368753421222201,27.783709049224854,11.12416,31488.296753418123,0,0.3387860680619876,0.06358,2.3879798650741577,0.21288,0.12409300232927005,0.0408 +2065,29.640820572989064,0,0,0.012353129594898947,6.329129668478687,6.796559810638428,0.4394,19.21270688374837,2.25935,113.28000831604004,7.02903535,40.78982702891032,6.000000000000001e-4,12.711099942525228,0.00403285025,9.069430748621622,0.260749655,104.78178977966309,5.1454,310.02293904622394,0.00285,5.519771059354146,113.12995000000001,0,511.89644622802734,5005.85435,2650.530354817708,597.5192959923265,690.7388814290365,671.0668023857731,6.907790859540303,8.16075165,3.8744900226593018,0.181703513,13.431946674982706,0.0955488035,586.4579569498698,735.6967300000001,305.15685272216797,495.18345,388.2991078694661,283.02119999999996,8.553403695424398,11.1786305,28.221199830373127,0.149,27.77600161234538,102.33160699999999,0.32545700669288635,0.39685000000000004,3.2281501491864524,11.3997305,0.3733019803961118,1.126058,369.9429779052734,8.551297973375688,84.32172244743481,205.35392473513383,49.05717010395224,19.56324245081542,-0.23686226856764975,28.227709134419758,11.147,31364.69533595244,0,0.3195720687508583,0.059,2.3601098457972207,0.2052,0.12034500204026699,0.0391 +2066,30.100261604666528,0,0,0.022431780270161635,6.281012592301776,6.815069794654846,0.42834,18.52660671869914,2.12384,113.75400797526042,6.98901572,40.304226875305176,5.200000000000001e-4,12.636999924977621,0.00358475578,9.061220725377401,0.25107923600000004,102.80379231770833,4.92656,306.6499379475911,0.0024400000000000003,5.50636084874471,112.92752,0,511.0615463256836,5001.6975,2655.740356445312,597.4411194167086,700.8988850911459,670.1618831984541,6.55207081635793,7.716049979999999,3.6601399978001914,0.1612889496,12.28294269243876,0.0796896722,602.0209452311198,750.1854680000001,310.260986328125,504.1408,399.8821105957031,289.05956,8.6874237060546875,11.264281800000001,28.102499961853027,0.14144,28.46420160929362,104.7127896,0.3092230061690013,0.37672,3.2825201551119485,11.605938199999999,0.3749199757973353,1.13620112,370.6859690348307,8.551148519185782,84.50680282066475,204.92167246462702,48.82391811640036,19.522625611879374,-0.23683853503781435,28.672409216562908,11.16984,31241.093918486757,0,0.3013850624362628,0.054419999999999996,2.332279900709788,0.19752,0.11669400334358215,0.0374 +2067,30.559702636343992,0,0,0.03251043094542432,6.2328955161248665,6.833089828491211,0.41728,17.862006505330402,1.9883300000000002,114.2260087331136,6.9489960900000005,39.823426246643066,4.4000000000000007e-4,12.563199996948242,0.0031366613100000003,9.052620649337769,0.241408817,100.85379536946614,4.70772,303.3079350789388,0.0020300000000000006,5.49272088209788,112.72509,0,510.19761912027997,4997.54065,2660.290344238281,597.3629428410907,711.2688802083334,669.256964011135,6.212520798047383,7.27134831,3.45674999554952,0.1408743862,11.230339209238688,0.06383054090000001,617.7299499511719,764.6742060000001,315.4581044514974,513.09815,411.63711802164715,295.09792,8.820103804270426,11.349933100000001,27.983500321706135,0.13388,29.15900182723999,107.0939722,0.2937349999944369,0.35659,3.3378601471583047,11.812145899999999,0.3766309743126233,1.14634424,371.422976175944,8.550999064995876,84.69188319389467,204.4894201941202,48.59066612884847,19.482008772943328,-0.2368041415327139,29.118008931477863,11.192680000000001,31117.49250102107,0,0.28417705992857617,0.04984,2.3044999043146768,0.18984,0.11313600279390812,0.0357 +2068,31.019143668021457,0,0,0.04258908162068701,6.184778439947956,6.850639780362447,0.40621999999999997,17.21860631306966,1.8528200000000001,114.69500732421875,6.90897646,39.347426096598305,3.5999999999999997e-4,12.48959994316101,0.00268856684,9.043670574824015,0.231738398,98.93309783935547,4.48888,299.99493408203125,0.00162,5.478840788205464,112.52266,0,509.3047154744466,4993.3838,2664.230326334635,597.2847662654726,721.8508860270182,668.3520448238158,5.88861080010732,6.82664664,3.2638399998346963,0.1204598228,10.266035874684652,0.04797140959999999,633.5749664306641,779.1629440000002,320.7372131347656,522.0554999999999,423.55911509195965,301.13627999999994,8.951453844706217,11.4355844,27.86419979731242,0.12632,29.85880168279012,109.4751548,0.278866005440553,0.33646,3.393990178902944,12.0183536,0.378425973157088,1.1564873599999999,372.15397898356116,8.55084961080597,84.8769635671246,204.0571679236134,48.35741414129659,19.44139193400728,-0.2367590880523485,29.564309279123943,11.21552,30993.891083555387,0,0.2678980554143588,0.04526,2.2767898639043174,0.18216,0.10966900301476319,0.034 +2069,31.478584699698924,0,0,0.0526677322959497,6.136661363771046,6.867709835370381,0.39516,16.595706462860107,1.7173100000000001,115.16100756327312,6.86895683,38.876125971476235,2.8e-4,12.416299978892008,0.0022404723699999997,9.034360647201538,0.22206797900000003,97.04020118713379,4.27004,296.7119394938151,0.0012100000000000001,5.46475072701772,112.32023000000001,0,508.3857701619466,4989.22695,2667.600260416666,597.2065896898546,732.6478830973307,667.4471256364968,5.579780737559001,6.381944969999999,3.080940008163452,0.1000452594,9.382952769597372,0.03211227829999999,649.5479532877604,793.6516820000002,326.0903091430664,531.01285,435.6421203613281,307.17463999999995,9.08147382736206,11.5212357,27.744600137074787,0.11875999999999999,30.562501748402912,111.8563374,0.26450300465027493,0.31633,3.4507701794306436,12.2245613,0.3802969778577487,1.16663048,372.87797546386713,8.550700156616065,85.06204394035453,203.6249156531066,48.1241621537447,19.400775095071236,-0.2367033745967179,30.01150910059611,11.23836,30870.289666089702,0,0.25250305111209553,0.04068,2.249159892400106,0.17448,0.10629300276438396,0.032299999999999995 +2070,31.93802573137639,0,0,0.06274638297121238,6.088544287594136,6.884299834569295,0.3841,15.993005832036337,1.5818,115.62500762939453,6.8289372,38.40962632497152,2e-4,12.343300104141235,0.0017923779,9.024710575739542,0.21239756,95.17530377705891,4.0512,293.4589360555013,8e-4,5.450450857480367,112.1178,0,507.44187927246094,4985.0701,2670.430236816406,597.1284131142367,743.6618703206381,666.5422064491777,5.285510698954265,5.9372433,2.9075899918874106,0.079630696,8.574260075887045,0.016253147,665.6409505208334,808.1404200000002,331.5073979695638,539.9702,447.8811213175456,313.21299999999997,9.210173845291138,11.606887,27.62470022837321,0.1112,31.268901824951172,114.23752,0.2505600042641163,0.2962,3.508070190747579,12.430769,0.38223697741826373,1.1767736,373.59497578938795,8.55055070242616,85.24712431358446,203.1926633825998,47.89091016619282,19.36015825613519,-0.23663700116582234,30.45940907796224,11.2612,30746.688248624017,0,0.23794704675674438,0.0361,2.2216298977533975,0.1668,0.10300700180232525,0.0306 +2071,32.28622860133179,0,0,0.06050652068408887,6.022095762137825,6.900409817695618,0.37702,15.409905672073364,1.50882,116.08500862121582,6.80335743,37.94782511393229,1.8e-4,12.270599921544393,0.001657949557,9.01473061243693,0.205751345,93.33850733439128,3.9091199999999997,290.2349344889323,7.300000000000001e-4,5.435979803403218,111.98821000000001,0,506.4748026529948,4982.4131099999995,2672.7801717122393,594.313475844596,754.89288330078125,665.263043665584,5.005240599314372,5.6829841299999995,2.743339995543162,0.0739077507,7.833827575047811,0.014775588179999999,681.8469441731771,814.7537060000002,336.9814707438151,545.6006199999999,460.2721201578776,316.13491,9.337543884913126,11.592841700000001,27.504499912261963,0.10590999999999999,31.977001825968426,115.57154700000001,0.23697000245253244,0.28211,3.565780202547709,12.5603868,0.3842389831940333,1.17862785,374.3059743245442,8.553999052980561,85.17560606371174,202.88504024626744,47.52778013881201,19.318373946025147,-0.2365729989707355,30.908108870188396,11.24508,30340.853138146045,0,0.2241890455285708,0.03408,2.1941898465156555,0.16155,0.0998079019288222,0.029509999999999998 +2072,32.63443147128719,0,0,0.058266658396965355,5.955647236681513,6.91612982749939,0.36994,14.845805565516153,1.43584,116.544007619222,6.777777660000001,37.490625063578285,1.6e-4,12.198199987411499,0.001523521214,9.004440546035767,0.19910513000000002,91.52941068013509,3.7670399999999997,287.0389353434245,6.6e-4,5.423238595326741,111.85862,0,505.6093292236328,4979.75612,2674.290059407552,591.4985385749555,766.3228708902994,663.9838808819902,4.738620599110921,5.428724959999999,2.5878299673398337,0.06818480539999999,7.156205177307129,0.01329802936,697.9729461669922,821.3669920000002,342.4183629353841,551.23104,472.7041269938151,319.05681999999996,9.461973826090494,11.5787964,27.38419993718465,0.10061999999999999,32.6657018661499,116.905574,0.2240020049115022,0.26802000000000004,3.6224801341692605,12.6900046,0.38620998213688534,1.1804821,375.0109710693359,8.557447403534965,85.104087813839,202.57741710993506,47.16465011143121,19.276589635915105,-0.2365113680114573,31.35690911610921,11.22896,29935.018027668077,0,0.21118804315725961,0.03206,2.1668599446614585,0.1563,0.09669510213037331,0.028419999999999997 +2073,32.982634341242594,0,0,0.05602679610984185,5.889198711225203,6.93153981367747,0.36286,14.300305287043253,1.36286,117.00100898742676,6.752197890000001,37.03802458445231,1.4000000000000001e-4,12.126099983851114,0.0013890928710000002,8.993840456008911,0.192458915,89.74811299641927,3.6249599999999997,283.87294006347656,5.9e-4,5.412688692410787,111.72903,0,504.8781026204427,4977.0991300000005,2674.650024414062,588.683601305315,777.92987060546875,662.7047180983965,4.4852205117543535,5.17446579,2.4406699538230896,0.0624618601,6.536323030789693,0.01182047054,713.8349456787109,827.9802780000001,347.73316955566406,556.86146,485.06812540690106,321.97873,9.581893841425577,11.5647511,27.2637996673584,0.09533,33.31630166371664,118.239601,0.21189000209172568,0.25393,3.6769102017084756,12.8196224,0.3880619779229164,1.18233635,375.7109807332356,8.560895754089369,85.03256956396626,202.2697939736027,46.8015200840504,19.234805325805063,-0.2364521082879879,31.8048095703125,11.21284,29529.182917190104,0,0.19890504082043967,0.03004,2.1396499077479043,0.15105000000000002,0.09366630266110103,0.02733 +2074,33.330837211197995,0,0,0.05378693382271834,5.822750185768891,6.9466398159662885,0.35578,13.77300532658895,1.2898800000000001,117.45600827534993,6.72661812,36.59012413024902,1.2e-4,12.054199934005737,0.001254664528,8.982950448989868,0.1858127,87.99431546529134,3.4828799999999998,280.73494720458984,5.200000000000001e-4,5.402508775393168,111.59944,0,504.1611862182617,4974.44214,2673.949971516927,585.8686640356744,789.7188822428385,661.4255553148028,4.24444051583608,4.92020662,2.3014400005340576,0.0567389148,5.969271024068196,0.01034291172,729.4359436035156,834.5935640000001,352.9300257364909,562.49188,497.36413319905597,324.90063999999995,9.69736393292745,11.5507058,27.14330021540324,0.09004,33.932902336120605,119.573628,0.20047600318988165,0.23984,3.7292701601982117,12.9492402,0.38979998230934143,1.1841906,376.4049708048502,8.564344104643771,84.96105131409354,201.96217083727032,46.4383900566696,19.19302101569502,-0.23639521980032716,32.251909255981445,11.196720000000001,29123.347806712136,0,0.18730403731266657,0.02802,2.112559894720713,0.14579999999999999,0.09071970172226429,0.02624 +2075,33.679040081153396,0,0,0.05154707153559483,5.75630166031258,6.961439847946167,0.3487,13.26320513089498,1.2169,117.90900802612305,6.701038350000001,36.14662520090739,1e-4,11.982700030008951,0.001120236185,8.971790472666422,0.179166485,86.26791826883952,3.3407999999999998,277.6259409586589,4.5000000000000004e-4,5.392198801040649,111.46985000000001,0,503.4232432047526,4971.78515,2672.269897460937,583.0537267660338,801.6908721923828,660.146392531209,4.015700558821361,4.66594745,2.1697399814923606,0.0510159695,5.450589299201965,0.0088653529,744.7799479166666,841.2068500000001,358.0138676961263,568.1223,509.5911280314128,327.82255,9.808493773142496,11.5366605,27.022799968719482,0.08474999999999999,34.5192019144694,120.907655,0.18961700052022934,0.22575,3.77972020705541,13.078858,0.39142798135677975,1.18604485,377.09397633870435,8.567792455198173,84.88953306422081,201.65454770093797,46.075260029288785,19.151236705584978,-0.2363407025484751,32.69820912679037,11.1806,28717.512696234164,0,0.17635103687644005,0.026000000000000002,2.0856098930040994,0.14055,0.08785360182325046,0.02515 +2076,34.027242951108796,0,0,0.04930720924847132,5.6898531348562695,6.975929816563924,0.34162000000000003,12.770605007807413,1.14392,118.3610070546468,6.675458580000001,35.70772393544515,8e-5,11.911399920781454,9.85807842e-4,8.960350592931112,0.17252027,84.56862195332845,3.19872,274.5449447631836,3.800000000000001e-4,5.38166876633962,111.34026,0,502.6563466389974,4969.12816,2669.6999104817705,580.2387894963933,813.8478749593099,658.8672297476153,3.7984704971313477,4.41168828,2.045189996560415,0.045293024200000004,4.976167599360148,0.007387794080000001,759.8729451497396,847.8201360000002,362.9887212117513,573.75272,521.7491404215494,330.74446,9.915353854497274,11.5226152,26.902199586232502,0.07946,35.07820192972819,122.241682,0.17921600366632143,0.21166000000000001,3.8284402092297873,13.208475799999999,0.39294997851053876,1.1878991,377.77697245279944,8.571240805752577,84.818014814348075,201.34692456460562,45.71213000190798,19.10945239547494,-0.23628855653243175,33.14380900065104,11.16448,28311.67758575619,0,0.16600903620322546,0.02398,2.058799902598063,0.1353,0.08506640171011288,0.024059999999999998 +2077,34.3754458210642,0,0,0.04706734696134781,5.623404609399958,6.990119854609172,0.33454,12.294704755147299,1.07094,118.81100845336914,6.649878810000001,35.27322324117025,6.000000000000002e-5,11.840400060017904,8.513794990000002e-4,8.948650439580282,0.165874055,82.8964246114095,3.05664,271.491943359375,3.1000000000000005e-4,5.370888749758403,111.21067000000001,0,501.8604202270508,4966.471170000001,2666.289815266927,577.4238522267528,826.19287109375,657.5880669640216,3.5922104716300964,4.157429110000001,1.9274200002352397,0.03957007890000001,4.542296131451924,0.0059102352600000005,774.7169443766276,854.4334220000002,367.85858154296875,579.38314,533.8371327718099,333.66637,10.018003861109415,11.5085699,26.78150002161662,0.07417,35.61280186971029,123.57570899999999,0.16919000198443732,0.19757000000000002,3.8755401770273843,13.338093599999999,0.394368976354599,1.1897533500000002,378.4549763997395,8.574689156306981,84.74649656447534,201.03930142827323,45.348999974527175,19.067668085364897,-0.2362387817521972,33.58850924173991,11.14836,27905.842475278223,0,0.15624703342715898,0.02196,2.0321399172147117,0.13005,0.08235760281483333,0.022969999999999997 +2078,34.7236486910196,0,0,0.0448274846742243,5.556956083943647,7.003989934921265,0.32746000000000003,11.834904591242472,0.99796,119.25900840759277,6.62429904,34.8432232538859,3.9999999999999996e-05,11.769700129826864,7.16951156e-4,8.936700582504272,0.15922783999999998,81.25102806091309,2.91456,268.4669443766276,2.3999999999999998e-4,5.359888752301534,111.08108,0,501.0365041097005,4963.81418,2662.1098429361973,574.6089149571122,838.7268778483073,656.3089041804278,3.3964304327964783,3.90316994,1.8160900076230366,0.033847133599999996,4.145524720350902,0.00443267644,789.3189493815104,861.0467080000001,372.6264419555664,585.01356,545.8551279703776,336.58828,10.116603771845499,11.4945246,26.660699526468914,0.06888,36.12540213267008,124.909736,0.15947600454092026,0.18347999999999998,3.9211801886558533,13.467711399999999,0.3956919809182485,1.1916076,379.12797800699866,8.578137506861383,84.67497831460261,200.73167829194088,44.98586994714637,19.025883775254854,-0.23619137820777125,34.0325091679891,11.13224,27500.00736480025,0,0.147036029646794,0.01994,2.0056399206320443,0.1248,0.07972560202081998,0.021879999999999997 +2079,35.071851560975,0,0,0.04258762238710079,5.4905075584873355,7.017559885978699,0.32038,11.390904506047567,0.92498,119.70500755310059,6.598719270000001,34.41762351989746,1.9999999999999998e-5,11.699300050735474,5.82522813e-4,8.924500544865927,0.152581625,79.6323299407959,2.77248,265.4699452718099,1.7e-4,5.3486787875493365,110.95149,0,500.1875686645508,4961.15719,2657.239827473958,571.7939776874716,851.4518636067709,655.0297413968341,3.210660378138224,3.64891077,1.7108699878056843,0.0281241883,3.782733460267385,0.0029551176199999994,803.6799519856771,867.6599940000001,377.2973175048828,590.64398,557.8021443684896,339.51018999999997,10.211203893025717,11.480479299999999,26.539700190226238,0.06359,36.61830202738444,126.243763,0.15002100293835005,0.16938999999999999,3.965460181236267,13.597329199999999,0.39691997816165286,1.19346185,379.79497528076166,8.581585857415785,84.60346006472989,200.4240551556085,44.622739919765564,18.984099465144812,-0.2361463458991541,34.475609143575035,11.11612,27094.172254322282,0,0.13834702844421068,0.017920000000000002,1.9793099164962769,0.11954999999999999,0.07716780093808968,0.020789999999999996 +2080,35.4200544309304,0,0,0.04034776009997728,5.424059033031025,7.030829826990764,0.3133,10.962104241053263,0.852,120.1500072479248,6.573139500000001,33.99642372131348,0,11.629200061162313,4.4809447e-4,8.91208028793335,0.14593541,78.0400333404541,2.6304,262.4999465942383,1e-4,5.337288657824199,110.8219,0,499.3156458536784,4958.5002,2651.719787597656,568.9790404178311,864.3688659667969,653.75057861324035,3.0344303846359253,3.3946516000000004,1.6114399929841359,0.022401243,3.4510523080825806,0.0014775588,817.8069356282552,874.2732800000001,381.87518819173175,596.2744,569.6791330973307,342.4321,10.301903883616129,11.466434,26.418699741363525,0.0583,37.09340159098307,127.57779,0.14078800256053606,0.1553,4.0084802110989886,13.726947,0.3980589807033539,1.1953161,380.4569778442382,8.585034207970189,84.53194181485715,200.11643201927615,44.25960989238476,18.94231515503477,-0.2361036848263456,34.91800912221273,11.1,26688.33714384431,0,0.13015002633134523,0.0159,1.9531399309635162,0.1143,0.07468270199994247,0.0197 +2081,35.454895159851105,0,0,0.04983121195182913,5.322125268151566,7.043789863586426,0.30073,10.548204183578491,0.81269,120.59300740559895,6.527609920000001,33.57952276865641,-1.118684e-14,11.559300104777018,4.25689747e-4,8.89944044748942,0.141363939,76.47383562723796,2.53814,259.55794525146484,9e-5,5.325738906860352,110.59184,0,498.42365010579425,4953.77102,2645.599670410156,563.4142180361756,877.4798634847006,650.0361864472151,2.867300351460775,3.2492708500000003,1.5175000031789143,0.020790642680000002,3.147851208845774,0.0013462202399999999,831.7019449869791,871.2008210000001,386.362065633138,596.59043,581.4851226806641,341.20029999999997,10.3887038230896,11.3535556,26.297499974568684,0.055189999999999996,37.552401860555015,127.52465799999999,0.131740003824234,0.14701,4.050340175628662,13.7342219,0.3991119811932246,1.18732195,381.11397298177076,8.568209641395917,84.54350715424637,198.96211152035048,43.59519880192244,18.869890038699694,-0.2360509883448467,35.35950915018717,11.074,26119.526531148294,0,0.12242102560897668,0.01501,1.927149921655655,0.11069999999999999,0.07226890201369922,0.01899 +2082,35.489735888771804,0,0,0.059314663803680986,5.2201915032721065,7.056319912274678,0.28816,10.148704051971436,0.77338,121.03300793965657,6.48208034,33.16692320505778,-2.237368e-14,11.489799976348877,4.03285024e-4,8.886580467224121,0.136792468,74.93373807271321,2.44588,256.64294687906903,8e-5,5.313319206237793,110.36178,0,497.55950419108075,4949.041840000001,2638.6096191406245,557.8493956545201,890.7088673909506,646.3217942811899,2.7090003887812295,3.1038901000000005,1.4288100004196167,0.01918004236,2.8708702325820923,0.00121488168,845.1509450276693,868.1283620000002,390.62968190511066,596.90646,593.08013916015625,339.9685,10.470303694407145,11.2406772,26.17639970779419,0.05208,37.970801989237465,127.471526,0.12315600117047627,0.13872,4.0890902280807495,13.7414968,0.39998498062292737,1.1793278,381.76297505696607,8.551385074821646,84.55507249363559,197.80779102142483,42.93078771146013,18.797464922364618,-0.23598825645465735,35.80010954538981,11.048,25550.715918452282,0,0.11513402375082175,0.01412,1.9013399283091228,0.1071,0.06992390130956967,0.018279999999999998 +2083,35.52457661769251,0,0,0.06879811565553283,5.118257738392648,7.068309903144836,0.27559,9.763183991114298,0.73407,121.47100766499837,6.436550760000001,32.75862216949463,-3.356052e-14,11.420499960581461,3.80880301e-4,8.873520294825235,0.13222099699999998,73.41934013366699,2.35362,253.75494511922201,7.000000000000001e-5,5.299809217453003,110.13172,0,496.7324574788411,4944.3126600000005,2630.4795328776036,552.2845732728646,903.9808654785156,642.6074021151646,2.5592403213183084,2.9585093500000004,1.3451499938964844,0.01756944204,2.617979347705841,0.00108354312,857.9459381103516,865.0559030000002,394.55919138590497,597.22249,604.3291269938151,338.7367,10.545203606287638,11.127798799999999,26.055400053660076,0.04897,38.3273016611735,127.41839399999999,0.11526900281508763,0.13043,4.1229701439539594,13.748771699999999,0.40058698256810504,1.17133365,382.4029744466145,8.534560508247374,84.56663783302481,196.65347052249916,42.26637662099782,18.725039806029542,-0.2359154891557776,36.23950926462809,11.022,24981.905305756267,0,0.10826502305765946,0.01323,1.8757099310557048,0.1035,0.06764640100300312,0.01757 +2084,35.55941734661321,0,0,0.07828156750738469,5.016323973513189,7.079759915669759,0.26302000000000003,9.39120364189148,0.6947599999999999,121.90500831604004,6.391021180000001,32.35462220509847,-4.474736e-14,11.35160001118978,3.58475578e-4,8.860270420710245,0.12764952599999999,71.93054262797038,2.26136,250.89395014444986,6e-5,5.285819053649902,109.90165999999999,0,495.8975346883138,4939.58348,2621.2994995117183,546.7197508912091,917.3008728027344,638.8930099491395,2.4175403118133545,2.8131286,1.2662199934323628,0.01595884172,2.387088497479757,9.522045599999999e-4,870.1049448649088,861.9834440000002,398.1717936197917,597.5385200000001,615.2371368408203,337.5049,10.613503615061441,11.0149204,25.934599717458088,0.04586,38.62910238901774,127.365262,0.10794900233546893,0.12214,4.152520140012105,13.7560466,0.40093497683604556,1.1633395,383.03397623697913,8.517735941673102,84.57820317241404,195.4991500235735,41.6019655305355,18.652614689694467,-0.23583268644820746,36.677608807881676,10.996,24413.094693060255,0,0.10179202134410541,0.01234,1.8502799371878307,0.09989999999999999,0.0654353021333615,0.01686 +2085,35.594258075533915,0,0,0.08776501935923653,4.91439020863373,7.090659936269124,0.25045,9.032353480656942,0.65545,122.33600743611653,6.345491600000001,31.954821427663166,-5.5934199999999996e-14,11.282900015513102,3.36070855e-4,8.84682027498881,0.12307805499999999,70.46694628397624,2.1691,248.0599505106608,5e-5,5.271548946698506,109.6716,0,495.04058837890625,4934.854300000001,2611.1694335937495,541.1549285095535,930.6708628336588,635.1786177831142,2.283490300178528,2.6677478500000005,1.1917700072129567,0.0143482414,2.1763077775637307,8.20866e-4,881.6459452311198,858.9109850000002,401.48938751220703,597.85455,625.8101298014323,336.2731,10.675503651301065,10.902042,25.813999970753986,0.042749999999999996,38.883001963297524,127.31213,0.10109500028192997,0.11385,4.178200125694275,13.7633215,0.4010429804523786,1.1553453500000002,383.65597788492835,8.50091137509883,84.58976851180327,194.34482952464782,40.937554440073185,18.58018957335939,-0.23573984833194675,37.114608446756996,10.969999999999999,23844.28408036424,0,0.09569102029005687,0.01145,1.825039933125178,0.0963,0.06328940267364185,0.016149999999999998 +2086,35.62909880445462,0,0,0.09724847121108839,4.812456443754271,7.101019859313965,0.23788,8.686253627141317,0.61614,122.76500829060872,6.299962020000001,31.559322039286297,-6.712104e-14,11.214499870936075,3.13666132e-4,8.833200295766195,0.118506584,69.02854919433594,2.07684,245.25294876098633,4e-5,5.257068832715352,109.44154,0,494.1616617838542,4930.125120000001,2600.1593627929683,535.590106127898,944.0918680826823,631.4642256170889,2.156680246194204,2.5223671000000003,1.1215499937534332,0.012737641079999999,1.983887126048406,6.8952744e-4,892.5889485677084,855.8385260000001,404.5290247599284,598.17058,636.0541330973307,335.0413,10.731303612391153,10.7891636,25.69350020090739,0.039639999999999995,39.094702084859215,127.25899799999999,0.09462730151911576,0.10556,4.20041028658549,13.7705964,0.40092498312393826,1.1473512000000001,384.26797993977857,8.484086808524559,84.60133385119249,193.19050902572218,40.27314334961087,18.507764457024315,-0.2356369748069957,37.550408363342285,10.943999999999999,23275.473467668224,0,0.0899431196351846,0.01056,1.7999999423821766,0.0927,0.06120750121772289,0.015439999999999999 +2087,35.66393953337532,0,0,0.10673192306294024,4.710522678874812,7.110839923222859,0.22531,8.352503379185995,0.57683,123.19000752766927,6.25443244,31.167921543121338,-7.830787999999999e-14,11.146399895350138,2.91261409e-4,8.819400151570639,0.113935113,67.61495208740234,1.98458,242.4729487101237,3.000000000000001e-5,5.242418805758159,109.21148,0,493.261713663737,4925.39594,2588.349385579427,530.0252837462425,957.5668690999349,627.7498334510638,2.036720265944799,2.37698635,1.0553299983342488,0.01112704076,1.8082465032736461,5.5818888e-4,902.949951171875,852.7660670000001,407.3116811116536,598.48661,645.9731394449869,333.8095,10.781103610992432,10.6762852,25.573200225830078,0.03653,39.269201596577965,127.205866,0.08847649954259396,0.09727000000000001,4.219540158907573,13.777871300000001,0.40059397866328555,1.13935705,384.87197621663404,8.467262241950287,84.61289919058171,192.0361885267965,39.60873225914855,18.43533934068924,-0.23552406587335425,37.98500919342041,10.918,22706.66285497221,0,0.084529518460234,0.00967,1.7751699487368267,0.0891,0.059187401086091995,0.01473 +2088,35.698780262296026,0,0,0.11621537491479209,4.608588913995353,7.120109875996907,0.21273999999999998,8.030713359514872,0.53752,123.6120065053304,6.208902860000001,30.780621369679768,-8.949472e-14,11.078699986139933,2.68856686e-4,8.80543033281962,0.10936364199999998,66.22595469156902,1.8923199999999998,239.7189483642578,1.9999999999999998e-5,5.22761869430542,108.98142,0,492.34376271565753,4920.66676,2575.8193155924473,524.460461364587,971.0958658854166,624.0354412850385,1.9232402443885803,2.2316056,0.9928960005442301,0.009516440439999998,1.647915909687678,4.268503199999999e-4,912.7479604085287,849.6936080000002,409.85135650634766,598.80264,655.5731302897135,332.5777,10.825003385543823,10.5634068,25.45299990971883,0.03342,39.41100184122721,127.152734,0.08258110160628955,0.08898,4.235910256703694,13.7851462,0.4000629757841428,1.1313629,385.46597798665357,8.450437675376016,84.62446452997094,190.88186802787084,38.944321168686244,18.362914224354164,-0.2354011215310223,38.418308893839516,10.892,22137.852242276196,0,0.07943131774663925,0.00878,1.7505499521891277,0.08549999999999999,0.057226900942623615,0.01402 +2089,35.733620991216725,0,0,0.12569882676664396,4.506655149115894,7.12883992989858,0.20017,7.720513145128886,0.49821,124.03100713094075,6.163373280000001,30.397521018981934,-1.0068155999999999e-13,11.011200030644735,2.46451963e-4,8.791300217310587,0.10479217099999999,64.86135673522949,1.80006,236.99094772338867,9.999999999999999e-6,5.212688446044922,108.75135999999999,0,491.40880330403644,4915.937580000001,2562.619303385416,518.8956389829315,984.6808675130209,620.3210491190133,1.8159202535947163,2.0862248500000002,0.9340270012617111,0.007905840119999999,1.501595397790273,2.955117599999998e-4,921.9979502360026,846.6211490000002,412.1660639444987,599.1186700000001,664.8611297607422,331.34590000000003,10.86310346921285,10.4505284,25.332900047302246,0.030309999999999997,39.524102528889976,127.099602,0.07689620119829972,0.08069,4.249820152918498,13.7924211,0.39934397985537845,1.12336875,386.05197397867835,8.433613108801744,84.63602986936016,189.7275475289452,38.27991007822393,18.290489108019088,-0.2352681417799999,38.85050900777181,10.866,21569.041629580184,0,0.07463041506707668,0.00789,1.7261399328708649,0.0819,0.05532500147819519,0.013309999999999999 +2090,35.76846172013743,0,0,0.1351822786184958,4.404721384236435,7.137029965718587,0.1876,7.421533107757568,0.4589,124.44600613911946,6.117843700000001,30.018520832061768,-1.1186839999999999e-13,10.944000085194906,2.2404724e-4,8.77702029546102,0.1002207,63.52075926462809,1.7078,234.2899513244629,0,5.197648684183757,108.5213,0,490.4598693847656,4911.2084,2548.819213867187,513.330816601276,998.32086181640625,616.606656952988,1.7144402265548706,1.9408441000000003,0.8785319974025091,0.0062952398,1.3680649399757385,1.641732e-4,930.7179514567057,843.5486900000002,414.2707773844401,599.4347,673.84112548828125,330.1141,10.895703395207724,10.33765,25.21299997965495,0.0272,39.611802419026695,127.04647,0.071385499710838,0.0724,4.261540214220683,13.799696,0.398447980483373,1.1153746,386.62797800699866,8.416788542227472,84.64759520874938,188.57322703001952,37.61549898776161,18.218063991684012,-0.23512512662028714,39.28150908152262,10.84,21000.23101688417,0,0.07011171616613865,0.006999999999999999,1.701949954032898,0.0783,0.05348090113451084,0.0126 +2091,35.67966303847417,0,0,0.16342526587366507,4.295624440309142,7.14467990398407,0.1876,7.133402943611145,0.43762,124.85900688171387,6.117843700000001,29.643620491027832,-1.0068155999999999e-13,10.877099911371866,2.01642516e-4,8.762600262959799,0.0970558359,62.204161643981934,1.6476899999999999,231.61395009358725,0.0012000000000000001,5.182516813278198,108.5213,0,489.49874623616535,4911.2084,2534.4692789713536,510.2122834334663,1012.0198669433594,612.6105490468983,1.6184702118237813,1.8667949400000003,0.8262249976396561,0.00775867862,1.2462144990762074,0.00105070848,938.9239349365234,838.3398020000002,416.1785202026367,597.8640800000001,682.5191396077474,328.07465,10.922903617223104,10.2188704,25.09320004781087,0.02448,39.677401860555015,126.542861,0.06601920040945213,0.06516000000000001,4.271300236384074,13.7635416,0.39738698303699493,1.10611563,387.19597625732416,8.385030357261325,84.33537508008196,186.04718062028513,36.859838961257495,18.15654724885887,-0.2349522275378601,39.71130816141764,10.808,20378.247071504218,0,0.06585921409229438,0.0070999999999999995,1.6779799461364746,0.07583,0.05169240074853102,0.012150000000000001 +2092,35.59086435681091,0,0,0.19166825312883434,4.186527496381849,7.1520499388376875,0.1876,6.855792840321858,0.41634,125.27000554402669,6.117843700000001,29.272820154825848,-8.949471999999999e-14,10.810499906539917,1.7923779199999998e-4,8.748030265172323,0.0938909718,60.910964012145996,1.58758,228.96495056152344,0.0024000000000000002,5.1714640855789185,108.5213,0,488.7069320678711,4911.2084,2520.029317220052,507.09375026565675,1025.7398529052734,608.6144411408086,1.5277401904265087,1.7927457800000002,0.7769340028365453,0.00922211744,1.135054111480713,0.0019372437600000002,946.58294677734375,833.1309140000002,417.8531773885091,596.29346,690.8731333414713,326.03520000000003,10.944703340530396,10.1000908,24.9735000928243,0.021759999999999998,39.714402516682945,126.039252,0.06083120126277208,0.057920000000000006,4.2785301605860395,13.7273872,0.3961579849322637,1.09685666,387.75397745768225,8.353272172295178,84.02315495141453,183.52113421055074,36.10417893475338,18.09503050603373,-0.2347494445327189,40.139808654785156,10.776,19756.263126124268,0,0.061856312987705074,0.0072,1.6542299389839172,0.07336,0.049958802138765655,0.0117 +2093,35.50206567514765,0,0,0.21991124038400361,4.077430552454557,7.159429907798767,0.1876,6.588342785835266,0.39505999999999997,125.68100802103679,6.117843700000001,28.905920028686523,-7.830788e-14,10.744199911753336,1.56833068e-4,8.73334010442098,0.0907261077,59.64116668701172,1.5274699999999999,226.3419507344564,0.0036,5.165714104970296,108.5213,0,488.15144602457684,4911.2084,2505.9393920898433,503.9752170978471,1039.4498596191406,604.6183332347189,1.442010184129079,1.7186966200000002,0.7304930090904236,0.01068555626,1.033673753341039,0.00282377904,953.6639455159506,827.9220260000001,419.26180267333984,594.72284,698.8821258544922,323.99575,10.961203495661417,9.9813112,24.853999932607014,0.01904,39.71800168355306,125.535643,0.055849200735489525,0.05068,4.282770156860352,13.691232800000002,0.39475998282432556,1.08759769,388.29997762044263,8.32151398732903,83.7109348227471,180.99508780081635,35.34851890824926,18.033513763208592,-0.2345167776048634,40.566908836364746,10.744,19134.27918074432,0,0.05808911224206289,0.007299999999999999,1.6306999425093334,0.07089,0.04827910071859757,0.01125 +2094,35.41326699348439,0,0,0.2481542276391729,3.9683336085272645,7.1667998631795244,0.1876,6.330732663472493,0.37378,126.09300740559895,6.117843700000001,28.54311990737915,-6.712103999999999e-14,10.678200085957846,1.34428344e-4,8.718520243962606,0.0875612436,58.394369761149086,1.4673599999999998,223.74394734700522,0.0048000000000000004,5.16150426864624,108.5213,0,487.6833801269531,4911.2084,2492.1693725585933,500.8566839300375,1053.149881998698,600.6222253286292,1.3610101838906605,1.64464746,0.6867500096559525,0.012148995079999999,0.9412154157956442,0.0037103143200000006,960.189951578776,822.7131380000001,420.42750040690106,593.15222000000006,706.5551249186198,321.9563,10.972703218460083,9.8625316,24.734700043996174,0.016319999999999998,39.69270102183024,125.032034,0.0510330010826389,0.043440000000000006,4.284400224685669,13.6550784,0.39320797969897586,1.07833872,388.8339742024739,8.289755802362883,83.39871469407969,178.46904139108196,34.592858881745144,17.97199702038345,-0.2342542267542937,40.992508252461754,10.712,18512.29523536437,0,0.05454621184617281,0.0073999999999999995,1.6073999404907227,0.06842,0.04665160117050012,0.0108 +2095,35.32446831182113,0,0,0.27639721489434216,3.8592366645999716,7.174169858296712,0.1876,6.082622607549031,0.35250000000000004,126.50400733947754,6.117843700000001,28.184219678243,-5.5934199999999996e-14,10.612600008646647,1.1202362e-4,8.703570206960043,0.08439637950000001,57.17037105560303,1.40725,221.1719512939453,0.006,5.157804091771443,108.5213,0,487.2532424926758,4911.2084,2478.709350585937,497.73815076222786,1066.849873860677,596.6261174225394,1.2845001618067424,1.5705983000000001,0.6455560127894083,0.013612433899999998,0.856923113266627,0.0045968496,966.1809488932291,817.5042500000001,421.3691889444987,591.5816,713.8991241455078,319.91685,10.979303201039633,9.743752,24.61550013224284,0.0136,39.64270210266113,124.528425,0.04635480108360449,0.0362,4.283770163853963,13.618924,0.39151197920242947,1.06907975,389.355977376302,8.257997617396736,83.08649456541227,175.94299498134757,33.83719885524103,17.91048027755831,-0.2339617919810098,41.41670831044515,10.68,17890.31128998442,0,0.051213510955373444,0.0075,1.5843299627304077,0.06595,0.04507420056809982,0.010350000000000002 +2096,35.235669630157865,0,0,0.30464020214951143,3.7501397206726788,7.181539972623189,0.1876,5.843712488810222,0.33122,126.91500663757324,6.117843700000001,27.8293194770813,-4.4747359999999994e-14,10.547200123469034,8.961889599999999e-5,8.688500165939331,0.08123151540000001,55.96877415974935,1.34714,218.62495295206705,0.0072,5.154354095458984,108.5213,0,486.84622955322266,4911.2084,2465.5194295247393,494.6196175944183,1080.5298563639324,592.6300095164496,1.212250163157781,1.4965491400000002,0.6067669987678528,0.01507587272,0.7800858368476232,0.00548338488,971.6569468180338,812.2953620000001,422.10793050130206,590.01098,720.9211120605469,317.8774,10.981203238169352,9.624972399999999,24.49659999211629,0.01088,39.57150173187256,124.024816,0.04179160048564275,0.028960000000000007,4.281170169512431,13.5827696,0.3896849875648816,1.05982078,389.86697387695307,8.226239432430589,82.77427443674483,173.41694857161315,33.08153882873691,17.84896353473317,-0.23363947328501164,41.83940855662028,10.648,17268.32734460447,0,0.04807780993481477,0.0076,1.5614899694919586,0.06348,0.04354530076185862,0.0099 +2097,35.14687094849461,0,0,0.3328831894046807,3.6410427767453863,7.188909928003947,0.1876,5.613672375679016,0.30994,127.3260072072347,6.117843700000001,27.47821919123332,-3.3560520000000005e-14,10.482100089391073,6.7214172e-5,8.673330148061117,0.07806665130000001,54.7893762588501,1.28703,216.10295232137045,0.0084,5.151074051856995,108.5213,0,486.45814514160156,4911.2084,2452.609436035156,491.50108442660866,1094.2098795572917,588.6339016103599,1.1440201600392659,1.42249998,0.5702490011850992,0.016539311539999997,0.7100535879532496,0.00636992016,976.6389516194662,807.0864740000001,422.65867106119794,588.44036,727.6291147867838,315.83795000000003,10.978503147761026,9.506192799999999,24.37790012359619,0.00816,39.48230171203613,123.521207,0.037324500580628715,0.021720000000000003,4.276870171229045,13.546615200000002,0.3877359827359517,1.05056181,390.36697896321607,8.194481247464442,82.46205430807741,170.89090216187876,32.32587880223279,17.787446791908028,-0.2332872706662993,42.260708491007485,10.616,16646.34339922452,0,0.04513020999729633,0.0077,1.5388799508412678,0.06101,0.04206410050392151,0.00945 +2098,35.058072266831346,0,0,0.36112617665985,3.5319458328180935,7.196279923121135,0.1876,5.392222325007121,0.28866000000000003,127.73700714111328,6.117843700000001,27.1311190923055,-2.237367999999999e-14,10.41729998588562,4.480944799999998e-5,8.658050139745077,0.0749017872,53.63187917073568,1.2269199999999998,213.60695266723633,0.009600000000000001,5.147924025853475,108.5213,0,486.0871175130208,4911.2084,2439.949381510416,488.382551258799,1107.8898620605469,584.6377937042702,1.0796201626459758,1.34845082,0.5358779976765314,0.01800275036,0.6462333500385284,0.007256455440000001,981.1449534098307,801.877586,423.03845469156903,586.8697400000001,734.0301157633463,313.7985,10.971303145090738,9.3874132,24.25940004984538,0.005439999999999997,39.37770207722982,123.01759799999999,0.03293800028041005,0.01448,4.271110097567241,13.5104608,0.3856759841243426,1.04130284,390.85597483317054,8.162723062498294,82.149834179409993,168.36485575214436,31.570218775728673,17.72593004908289,-0.23290518412487266,42.68060843149821,10.584,16024.35945384457,0,0.04235870918879906,0.0078,1.516509970029195,0.058539999999999995,0.04063020025690397,0.009000000000000001 +2099,34.96927358516809,0,0,0.38936916391501925,3.422848888890801,7.203649997711182,0.1876,5.179062247276306,0.26738000000000006,128.14800771077475,6.117843700000001,26.787818908691406,-1.1186840000000002e-14,10.35290002822876,2.240472399999999e-5,8.642660220464071,0.0717369231,52.495981216430664,1.16681,211.13495254516602,0.0108,5.144903937975566,108.5213,0,485.73106638590497,4911.2084,2427.52939860026,485.26401809098945,1121.5498758951824,580.6416857981804,1.0188201417525609,1.27440166,0.5035340065757433,0.01946618918,0.5880861431360245,0.00814299072,985.1939544677734,796.668698,423.2622426350911,585.29912,740.1311238606771,311.75905,10.959903081258139,9.2686336,24.14109977086385,0.00272,39.26010195414225,122.513989,0.028619200146446627,0.0072399999999999964,4.264080206553142,13.4743064,0.3835129787524541,1.03204387,391.3329747517903,8.130964877532147,81.83761405074256,165.83880934240997,30.814558749224556,17.66441330625775,-0.2324932136607318,43.099008560180664,10.552,15402.375508464622,0,0.03975240855167309,0.0079,1.4943699638048809,0.05607,0.03924180008471012,0.008550000000000002 +2100,34.880474903504826,0,0,0.4176121511701885,3.3137519449635082,7.21101991335551,0.1876,4.973902146021525,0.24610000000000004,128.5590082804362,6.117843700000001,26.448318640391033,0,10.288699944814047,0,8.627170165379843,0.068572059,51.38148466746012,1.1066999999999998,208.6889533996582,0.012,5.1420137484868365,108.5213,0,485.38990529378253,4911.2084,2415.329406738281,482.1454849231798,1135.2098693847656,576.6455778920907,0.9614421427249908,1.2003525,0.47310400009155273,0.020929628,0.5351149390141169,0.009029526,988.8029530843099,791.45981,423.3440653483073,583.7285,745.94012451171875,309.7196,10.944403012593588,9.149854,24.02299976348877,0,39.13140137990316,122.01038,0.024357599982370932,0,4.2559601465861006,13.438152,0.38125598678986233,1.0227849,391.79897816975904,8.099206692566,81.52539392207514,163.31276293267558,30.05889872272044,17.60289656343261,-0.2320513592738768,43.51600869496664,10.52,14780.391563084671,0,0.0373024083673954,0.008,1.4724600116411846,0.0536,0.037897199702759586,0.008100000000000001 +2101,34.64793840414813,0,0,0.40925990814678476,3.302680745638655,7.2183899482091265,0.1863493333333333,4.771802186965942,0.24445933333333336,128.97000630696616,6.077058075333334,26.1127184232076,0,10.224799871444702,0,8.610270102818808,0.06811491194000001,50.30908997853597,1.099322,206.2669563293457,0.01192,5.139214833577474,107.79782466666666,0,485.061279296875,4878.467010666667,2403.339416503906,480.03842737907553,1148.8598734537761,575.0502071568059,0.9094661325216293,1.19235015,0.445024994512399,0.020790097146666665,0.4871637523174286,0.00896932916,991.9889424641927,786.1834112666666,423.29387919108075,579.8369766666667,751.4611256917318,307.6548026666667,10.924903074900309,9.088854973333333,23.905100027720135,0,38.99330202738444,121.19697746666667,0.020144199952483177,0,4.246920188268025,13.348564320000001,0.3789119819800059,1.015966334,392.2539749145507,8.08950056283084,81.43094500298645,162.63466111703391,29.90474085941721,17.581899464573052,-0.2316183440919337,43.93160820007324,10.449866666666667,14688.534504052066,0,0.03508600685745478,0.007946666666666666,1.4500299791495006,0.05324266666666667,0.036504000114897885,0.008046000000000001 +2102,34.41540190479143,0,0,0.400907665123381,3.291609546313802,7.225729902585347,0.18509866666666666,4.572952310244243,0.2428186666666667,129.380007425944,6.036272450666668,25.780818303426106,0,10.16129986445109,0,8.592009941736857,0.06765776488,49.27769152323405,1.0919439999999998,203.86995569864908,0.01184,5.134126464525859,107.07434933333333,0,484.37304941813153,4845.725621333334,2391.4794311523433,477.9313698349713,1162.4698791503906,573.4548364215209,0.8636281390984853,1.1843477999999998,0.4191339959700902,0.020650566293333332,0.44372161477804184,0.008909132319999999,994.7279459635416,780.9070125333333,423.0245081583659,575.9454533333334,756.6861165364584,305.59000533333335,10.902203241984049,9.027855946666666,23.78749990463257,0,38.835402488708496,120.38357493333334,0.016345399742325146,0,4.235520164171855,13.25897664,0.376490980386734,1.009147768,392.69997660319007,8.079794433095683,81.33649608389776,161.95655930139228,29.750582996113984,17.560902365713495,-0.23119416811490245,44.34500821431478,10.379733333333332,14596.67744501946,0,0.033076007229586445,0.007893333333333334,1.427099992831548,0.05288533333333333,0.035068499855697155,0.007992 +2103,34.182865405434725,0,0,0.3925554220999772,3.2805383469889486,7.233010013898213,0.18384799999999998,4.382222135861714,0.24117800000000003,129.78700637817383,5.9954868260000005,25.45261796315511,0,10.097999890645346,0,8.573760032653809,0.06720061782,48.264793395996094,1.0845659999999997,201.49695841471353,0.01176,5.126096089680989,106.350874,0,483.2087758382161,4812.984232000001,2379.6594034830723,475.82431229086706,1176.0298665364583,571.859465686236,0.822324146827062,1.17634545,0.39473599940538406,0.02051103544,0.40400547037522,0.00884893548,996.9959513346354,775.6306138,422.4500961303711,572.05393,761.6021270751953,303.525208,10.877003033955893,8.96685692,23.670100212097168,0,38.648502349853516,119.57017239999999,0.013253999951605996,0,4.220540205637614,13.169388960000001,0.3740009864171346,1.002329202,393.1409784952799,8.070088303360524,81.24204716480907,161.2784574857506,29.596425132810754,17.53990526685394,-0.2307788313427832,44.7554079691569,10.3096,14504.820385986857,0,0.031177406199276447,0.00784,1.4044900139172871,0.052528000000000005,0.0336881997063756,0.007938 +2104,33.95032890607803,0,0,0.3842031790765734,3.2694671476640957,7.2402398983637495,0.18259733333333333,4.199282010396321,0.23953733333333338,130.19100697835287,5.954701201333334,25.128117720286053,0,10.035099903742472,0,8.555529912312826,0.06674347076,47.2702964146932,1.0771879999999998,199.14795557657877,0.01168,5.117306192715962,105.62739866666666,0,481.9049479166667,4780.2428426666675,2367.9094238281245,473.71725474676276,1189.5298767089844,570.2640949509511,0.785066137711207,1.1683431,0.3717479978998502,0.020371504586666665,0.36770133922497433,0.00878873864,998.8109486897787,770.3542150666666,421.5967305501302,568.1624066666667,766.2161204020182,301.4604106666667,10.84950296084086,8.905857893333332,23.552899837493896,0,38.43660195668539,118.75676986666666,0.010740099940449,0,4.202410141626994,13.07980128,0.37144798040390015,0.995510636,393.57497406005854,8.060382173625367,81.14759824572037,160.60035567010897,29.442267269507525,17.518908167994383,-0.2303723337755759,45.16270796457926,10.239466666666667,14412.963326954252,0,0.029383106157183647,0.0077866666666666666,1.3821999927361805,0.05217066666666667,0.03236079992105564,0.007884 +2105,33.71779240672133,0,0,0.37585093605316966,3.2583959483392424,7.247419873873393,0.18134666666666666,4.023832003275554,0.2378966666666667,130.59300486246744,5.913915576666668,24.807317574818928,0,9.97245987256368,0,8.537319978078207,0.06628632370000001,46.293797175089516,1.06981,196.82395680745444,0.0116,5.108376065889995,104.90392333333332,0,480.5669759114583,4747.501453333334,2356.1994628906245,471.61019720265847,1202.9798889160156,568.6687242156662,0.7514181385437647,1.16034075,0.35008999953667325,0.020231973733333332,0.33454522490501404,0.0087285418,1000.1899464925131,765.0778163333332,420.4863866170247,564.2708833333334,770.5351206461588,299.39561333333336,10.819703181584677,8.844858866666666,23.435900052388508,0,38.20350170135498,117.94336733333333,0.008697280039389929,0,4.181560158729553,12.9902136,0.3688389832774798,0.9886920699999999,394.00297546386713,8.050676043890208,81.05314932663168,159.9222538544673,29.2881094062043,17.497911069134826,-0.2299746754132805,45.567108154296875,10.169333333333334,14321.106267921647,0,0.02768660554041465,0.007733333333333333,1.3601899941762288,0.051813333333333336,0.03108450025320053,0.00783 +2106,33.48525590736463,0,0,0.3674986930297659,3.247324749014389,7.254539926846822,0.18009599999999998,3.8555618723233542,0.23625600000000002,130.99100875854492,5.873129952000001,24.49011691411336,0,9.91013010342916,0,8.51911989847819,0.06582917664,45.33509953816732,1.0624319999999998,194.52295684814453,0.01152,5.099486033121745,104.180448,0,479.22696177164715,4714.760064,2344.559488932291,469.50313965855423,1216.369873046875,567.0733534803813,0.7209931363662084,1.1523383999999999,0.32968899856011075,0.02009244288,0.30429811775684357,0.00866834496,1001.1499582926432,759.8014175999999,419.1400782267253,560.3793600000001,774.5641174316406,297.330816,10.7876029809316,8.78385984,23.31919987996419,0,37.95220216115316,117.1299648,0.007038339972496033,0,4.158340175946553,12.900625920000001,0.3661779860655467,0.981873504,394.42497507731116,8.040969914155049,80.958700407543,159.24415203882563,29.13395154290107,17.47691397027527,-0.22958585625589698,45.9686082204183,10.0992,14229.249208889041,0,0.02608170562113325,0.00768,1.3384999930858612,0.051456,0.029857299911479156,0.007776000000000001 +2107,33.252719408007934,0,0,0.35914645000636214,3.236253549689536,7.261599938074748,0.17884533333333333,3.694191833337148,0.23461533333333337,131.38700485229492,5.832344327333335,24.176517327626545,0,9.848100105921427,0,8.50094985961914,0.06537202958,44.39400100708008,1.0550539999999997,192.2449582417806,0.01144,5.090665936470032,103.45697266666667,0,477.8959274291992,4682.018674666667,2332.9894409179683,467.39608211445,1229.6998697916667,565.4779827450964,0.69344214598337806,1.14433605,0.310479000210762,0.019952912026666665,0.27670902013778687,0.008608148119999999,1001.699961344401,754.5250188666666,417.57979583740234,556.4878366666668,778.31011962890625,295.2660186666667,10.753503004709879,8.722860813333332,23.20269997914632,0,37.68550173441569,116.31656226666666,0.005692110008870562,0,4.1330801248550415,12.81103824,0.36347098151842755,0.975054938,394.84097798665357,8.031263784419892,80.86425148845431,158.566050223184,28.97979367959784,17.455916871415713,-0.22920587630342545,46.367008209228516,10.029066666666667,14137.392149856436,0,0.024562504918624956,0.007626666666666667,1.3171099921067555,0.05109866666666667,0.028677400201559067,0.0077220000000000006 +2108,33.02018290865123,0,0,0.3507942069829583,3.225182350364683,7.268610000610352,0.17759466666666665,3.5394517381985984,0.2329746666666667,131.78000768025717,5.791558702666667,23.86661720275879,0,9.786380132039389,0,8.482790072758993,0.06491488252000001,43.47020308176676,1.0476759999999998,189.9909578959147,0.01136,5.081945935885112,102.73349733333333,0,476.577885945638,4649.277285333334,2321.4794514973955,465.2890245703457,1242.9698791503906,563.8826120098115,0.6684561222791672,1.1363337,0.292393999795119,0.019813381173333332,0.2515249289572239,0.00854795128,1001.8599548339844,749.2486201333332,415.8225326538086,552.5963133333335,781.77911376953125,293.20122133333336,10.717302958170572,8.661861786666666,23.086400190989178,0,37.406002044677734,115.50315973333332,0.00460039001579086,0,4.106050173441569,12.721450560000001,0.36072298387686413,0.968236372,395.25098164876295,8.021557654684733,80.76980256936562,157.88794840754232,28.82563581629461,17.434919772556157,-0.22883473555586584,46.762508392333984,9.958933333333334,14045.535090823832,0,0.023141004610806704,0.007573333333333333,1.2960199813048046,0.05074133333333334,0.027543000256021816,0.007668000000000001 +2109,32.78764640929453,0,0,0.34244196395955456,3.21411115103983,7.275569915771484,0.176344,3.3910616437594094,0.23133400000000004,132.1710065205892,5.750773078000001,23.5601167678833,0,9.724960009256998,0,8.46465015411377,0.06445773546,42.563604990641274,1.040298,187.75995890299478,0.01128,5.0733158985773725,102.01002199999999,0,475.2728500366211,4616.535896,2310.04941813151,463.1819670262414,1256.1898701985676,562.2872412745265,0.6457551370064417,1.1283313499999998,0.27536899596452713,0.01967385032,0.22856384764115015,0.00848775444,1001.6499481201172,743.9722213999999,413.88629659016925,548.7047900000001,784.9771016438802,291.13642400000003,10.679102818171183,8.600862759999998,22.970399856567383,0,37.11570167541504,114.68975719999999,0.0037156699884993336,0,4.0775201718012495,12.63186288,0.3579379816850026,0.9614178059999999,395.65497843424475,8.011851524949575,80.67535365027693,157.20984659190069,28.671477952991385,17.4139226736966,-0.22847243401321815,47.154907862345375,9.8888,13953.678031791227,0,0.02179360498363773,0.00752,1.2752300004164379,0.050384000000000005,0.02645249990746379,0.007614000000000001 +2110,32.55510990993783,0,0,0.3340897209361508,3.2030399517149766,7.282469908396403,0.17509333333333332,3.248781601587931,0.22969333333333336,132.55800501505533,5.709987453333334,23.257216453552246,0,9.663849910100302,0,8.446529944737753,0.0640005884,41.6738068262736,1.0329199999999998,185.5529581705729,0.0112,5.064805865287781,101.28654666666667,0,473.98180389404297,4583.794506666667,2298.6894327799473,461.0749094821372,1269.3498942057292,560.6918705392417,0.6250941356023153,1.120329,0.25934600085020065,0.019534319466666665,0.2076357752084732,0.0084275576,1001.0799509684244,738.6958226666666,411.7870864868164,544.8132666666668,787.911122639974,289.0716266666667,10.639002958933512,8.539863733333332,22.854599793752033,0,36.8165012995402,113.87635466666666,0.002999189969462653,0,4.047710180282593,12.5422752,0.3551219825943311,0.95459924,396.0529759724934,8.002145395214416,80.58090473118824,156.53174477625902,28.517320089688155,17.392925574837044,-0.2281189716754824,47.544407526652016,9.818666666666667,13861.820972758622,0,0.020515604099879663,0.007466666666666667,1.2547100186347961,0.05002666666666667,0.025404199957847595,0.007560000000000001 +2111,32.322573410581136,0,0,0.32573747791274704,3.1919687523901232,7.28931991259257,0.17384266666666665,3.1123615304629006,0.22805266666666668,132.94300587972006,5.669201828666668,22.957816282908123,0,9.603050152460733,0,8.428420066833496,0.06354344134,40.80060895284017,1.0255419999999997,183.3679567972819,0.01112,5.05638575553894,100.56307133333334,0,472.7047627766927,4551.053117333334,2287.4094645182286,458.96785193803294,1282.4498697916667,559.0964998039568,0.606251135468483,1.11232665,0.24426999812324843,0.01939478861333333,0.18856270362933478,0.00836736076,1000.1699523925781,733.4194239333333,409.54089101155597,540.9217433333334,790.5871022542318,287.00682933333337,10.597202777862549,8.478864706666666,22.739099661509197,0,36.51000181833903,113.06295213333333,0.0024193500091011324,0,4.016800204912822,12.452687520000001,0.3522769833604495,0.947780674,396.4459788004557,7.992439265479258,80.48645581209955,155.85364296061735,28.363162226384926,17.371928475977487,-0.2277743485426586,47.93100770314535,9.748533333333334,13769.963913726016,0,0.019320004153996706,0.007413333333333333,1.2344800134499867,0.049669333333333336,0.02439649977410833,0.0075060000000000005 +2112,32.09003691122444,0,0,0.3173852348893433,3.1808975530652703,7.296109914779663,0.172592,2.9815615018208823,0.22641200000000003,133.32500457763672,5.6284162040000005,22.661815961201984,0,9.542550007502237,0,8.410339911778768,0.06308629428,39.94391059875488,1.0181639999999998,181.20596313476562,0.01104,5.048075755437215,99.839596,0,471.4417215983073,4518.311728000001,2276.2094726562495,456.86079439392864,1295.4898783365886,557.5011290686718,0.5890301217635473,1.1043242999999998,0.23008499791224798,0.01925525776,0.1711836395164331,0.00830716392,998.9269612630209,728.1430251999999,407.15970611572266,537.0302200000001,793.0101064046224,284.94203200000004,10.553602774937948,8.417865679999998,22.623899936676025,0,36.19760195414225,112.2495496,0.001950400018055613,0,3.984990119934082,12.36309984,0.34940798332293826,0.940962108,396.8329772949218,7.9827331357441,80.39200689301086,155.17554114497568,28.209004363081696,17.35093137711793,-0.2274385646147467,48.314507484436035,9.6784,13678.106854693411,0,0.01818410415823261,0.00736,1.2145599921544392,0.049312,0.023427899926900864,0.007452000000000001 +2113,31.85750041186774,0,0,0.3090329918659395,3.169826353740417,7.302849968274434,0.17134133333333332,2.856171409289042,0.22477133333333338,133.70500818888345,5.587630579333334,22.36931610107422,0,9.482360045115152,0,8.392279863357544,0.06262914722,39.10331153869629,1.010786,179.06695938110352,0.01096,5.039865732192993,99.11612066666666,0,470.19268798828125,4485.570338666667,2265.08945719401,454.75373684982435,1308.4698791503906,555.905758333387,0.5732531348864237,1.0963219499999999,0.21674199774861336,0.019115726906666665,0.15535158291459084,0.00824696708,997.3679504394531,722.8666264666666,404.65855662027997,533.1386966666668,795.1871134440104,282.8772346666667,10.508402903874716,8.356866653333332,22.508900324503582,0,35.88050206502279,111.43614706666666,0.0015713799997077633,0,3.9524101416269937,12.273512160000001,0.34651898344357807,0.9341435419999999,397.2139765421549,7.973027006008942,80.29755797392218,154.49743932933404,28.054846499778467,17.329934278258374,-0.22711161989174675,48.69510714213053,9.608266666666667,13586.249795660806,0,0.017104103695601225,0.007306666666666666,1.1949300070603688,0.04895466666666667,0.02249689990033706,0.007398000000000001 +2114,31.624963912511042,0,0,0.30068074884253576,3.158755154415564,7.309530019760132,0.17009066666666667,2.73595138390859,0.2231306666666667,134.08100382486978,5.546844954666668,22.08021593093872,0,9.422479947408041,0,8.374240001042685,0.062172000160000004,38.278713862101235,1.0034079999999999,176.9499600728353,0.010879999999999999,5.031755646069844,98.39264533333333,0,468.9566421508789,4452.828949333334,2254.059488932291,452.6466793057201,1321.3898824055989,554.310387598102,0.5587641149759293,1.0883196,0.20419500147302946,0.01897619605333333,0.14095653096834818,0.00818677024,995.5069580078125,717.5902277333332,402.04740651448566,529.2471733333334,797.1231180826823,280.8124373333334,10.461602926254272,8.295867626666666,22.39420000712077,0,35.559702237447105,110.62274453333333,0.0012652499814673017,0,3.9192001819610596,12.18392448,0.3436119829614957,0.927324976,397.5889816284179,7.963320876273784,80.20310905483349,153.81933751369237,27.900688636475238,17.308937179398818,-0.2267935143736587,49.07270749409994,9.538133333333333,13494.3927366282,0,0.01609380341445406,0.007253333333333333,1.1755699912707012,0.04859733333333333,0.021602199878543615,0.007344000000000001 +2115,31.392427413154344,0,0,0.29232850581913195,3.1476839550907108,7.316159963607788,0.16884,2.6207112471262612,0.22149000000000002,134.45500691731772,5.506059330000001,21.79441547393799,0,9.362900018692017,0,8.356210072835287,0.0617148531,37.469715436299644,0.9960299999999999,174.85496139526367,0.0108,5.023745616277059,97.66917000000001,0,467.73460642496747,4420.08756,2243.099487304687,450.5396217616159,1334.2498881022136,552.7150168628172,0.5454221268494924,1.0803172499999998,0.19239500040809313,0.018836665199999998,0.12787148170173168,0.0081265734,993.3549550374349,712.3138289999999,399.3382822672526,525.3556500000001,798.8241119384766,278.74764000000005,10.41320276260376,8.234868599999999,22.279800097147625,0,35.236101150512695,109.80934199999999,0.001018140009061123,0,3.8854801654815674,12.0943368,0.3406899844606717,0.92050641,397.9589767456054,7.9536147465386255,80.1086601357448,153.1412356980507,27.746530773172008,17.287940080539265,-0.22648424806048265,49.4473082224528,9.468,13402.535677595595,0,0.01514890301041305,0.0072,1.1564800043900807,0.048240000000000005,0.02074229981129368,0.007290000000000001 +2116,31.159890913797643,0,0,0.2839762627957282,3.1366127557658574,7.322739919026692,0.1675893333333333,2.5102412501970925,0.21984933333333337,134.82600784301758,5.465273705333334,21.51201518376668,0,9.303629954655966,0,8.338209867477417,0.06125770604,36.6762170791626,0.9886519999999999,172.7829615275065,0.01072,5.015835523605347,96.94569466666667,0,466.5255635579427,4387.346170666667,2232.2294514973955,448.4325642175116,1347.0498657226562,551.1196461275323,0.5331011215845743,1.0723148999999998,0.181298998494943,0.018697134346666665,0.11595544094840686,0.00806637656,990.9249521891276,707.0374302666667,396.5411605834961,521.4641266666667,800.2961171468099,276.68284266666666,10.363502820332846,8.173869573333333,22.16569979985555,0,34.9106019337972,108.99593946666666,8.188119924549634e-4,0,3.851340174674988,12.004749120000001,0.33775698641935986,0.913687844,398.32397969563795,7.943908616803467,80.01421121665611,152.46313388240904,27.59237290986878,17.26694298167971,-0.22618382095221845,49.818907737731934,9.397866666666667,13310.678618562992,0,0.014265102799981833,0.007146666666666667,1.1376700003941853,0.04788266666666667,0.01991590003793438,0.007236000000000001 +2117,30.927354414440945,0,0,0.2756240197723244,3.1255415564410045,7.329259872436523,0.16633866666666666,2.4043511549631753,0.21820866666666672,135.19400533040366,5.424488080666667,21.23291524251302,0,9.244659980138143,0,8.32022992769877,0.06080055898,35.89801851908366,0.9812739999999999,170.73296101888022,0.01064,5.008025447527568,96.22221933333333,0,465.3305257161458,4354.604781333333,2221.4494628906245,446.32550667340735,1359.7798970540364,549.5242753922473,0.5216921220223109,1.06431255,0.17086999987562498,0.01855760349333333,0.10510339836279552,0.00800617972,988.2289530436198,701.7610315333333,393.66505940755206,517.5726033333334,801.5441080729166,274.6180453333333,10.312302748362223,8.112870546666667,22.051899909973145,0,34.58370145161947,108.18253693333332,6.581189954886213e-4,0,3.8168901205062866,11.91516144,0.33481398473183316,0.9068692780000001,398.6829757690429,7.934202487068309,79.91976229756742,151.78503206676737,27.43821504656555,17.245945882820152,-0.2258922330488662,50.187607765197754,9.327733333333333,13218.821559530386,0,0.013421102970217666,0.0070933333333333334,1.1191499928633373,0.047525333333333336,0.01912179992844661,0.007182000000000001 +2118,30.694817915084247,0,0,0.26727177674892066,3.114470357116151,7.33571990331014,0.16508799999999998,2.302851140499115,0.21656800000000004,135.56000645955405,5.383702456000001,20.957114855448406,0,9.186010042826334,0,8.30226993560791,0.06034341192,35.13471984863281,0.9738959999999999,168.70496241251627,0.01056,5.000315388043721,95.498744,0,464.1474889119466,4321.863392,2210.7494710286455,444.21844912930305,1372.4398803710938,547.9289046569625,0.51109512646993,1.0563102,0.16106799989938736,0.018418072639999998,0.09524806216359138,0.00794598288,985.2799631754557,696.4846328,390.71997324625653,513.6810800000001,802.5741068522135,272.553248,10.25980273882548,8.051871519999999,21.938300132751465,0,34.25610160827637,107.3691344,5.286549955296019e-4,0,3.7821901639302573,11.825573760000001,0.33186498284339905,0.900050712,399.0359776814778,7.924496357333151,79.82531337847874,151.10693025112573,27.28405718326232,17.224948783960595,-0.2256094843504259,50.55330721537272,9.2576,13126.964500497781,0,0.012614302802830935,0.007039999999999999,1.100899984439214,0.047168,0.01835869997739792,0.007128000000000001 +2119,30.46228141572755,0,0,0.2589195337255169,3.1033991577912983,7.342129945755005,0.16383733333333333,2.2055710752805076,0.21492733333333336,135.9220059712728,5.3429168313333335,20.684614658355713,0,9.127649943033854,0,8.284329891204834,0.05988626486,34.38622188568115,0.9665179999999999,166.6979611714681,0.01048,4.992705424626668,94.77526866666668,0,462.9774525960286,4289.122002666667,2200.129475911458,442.1113915851988,1385.0398966471355,546.3335339216775,0.5012231270472208,1.0483078499999998,0.15185500060518584,0.018278541786666665,0.08630072822173436,0.00788578604,982.0879567464193,691.2082340666666,387.7118886311849,509.7895566666667,803.3911081949869,270.48845066666667,10.2061026096344,7.990872493333333,21.825100262959797,0,33.928300857543945,106.55573186666666,4.24415004090406e-4,0,3.7473201553026834,11.73598608,0.3289119824767113,0.893232146,399.38498179117835,7.914790227597993,79.73086445939005,150.42882843548406,27.12989931995909,17.20395168510104,-0.2253355748568975,50.91600735982259,9.187466666666666,13035.107441465176,0,0.011859802529215813,0.006986666666666666,1.0828999976317089,0.04681066666666667,0.017625500137607258,0.007074000000000001 +2120,30.22974491637085,0,0,0.25056729070211314,3.092327958466445,7.348489920298259,0.16258666666666666,2.1123310724894204,0.2132866666666667,136.28200403849283,5.302131206666667,20.41531467437744,0,9.069610039393107,0,8.266419967015585,0.0594291178,33.652222633361816,0.9591399999999999,164.7129643758138,0.0104,4.985195318857829,94.05179333333334,0,461.8204116821289,4256.380613333334,2189.589477539062,440.0043340410945,1397.5698852539062,544.7381631863926,0.4919971177975337,1.0403054999999999,0.14319899678230286,0.01813901093333333,0.07817979777852695,0.0078255892,978.6639607747396,685.9318353333333,384.64981842041016,505.8980333333334,804.0001118977865,268.42365333333333,10.151202519734701,7.929873466666666,21.712199846903484,0,33.60060183207194,105.74232933333333,3.405360015070376e-4,0,3.7123201489448547,11.6463984,0.3259559820095698,0.88641358,399.72697703043616,7.905084097862835,79.63641554030136,149.7507266198424,26.97574145665586,17.182954586241483,-0.22507050456828104,51.27580706278483,9.117333333333333,12943.25038243257,0,0.011154202278703451,0.006933333333333333,1.0651900172233582,0.04645333333333333,0.016920999934275944,0.007020000000000001 +2121,29.997208417014154,0,0,0.24221504767870938,3.0812567591415916,7.3547898928324384,0.16133599999999998,2.0229709645112357,0.21164600000000003,136.63900502522787,5.261345582000001,20.14921458562215,0,9.01186998685201,0,8.248519976933798,0.058971970740000004,32.93252499898275,0.9517619999999999,162.74896240234375,0.01032,4.977765321731567,93.328318,0,460.67638142903644,4223.6392240000005,2179.139506022135,437.89727649699023,1410.0398864746094,543.1427924511078,0.4833471179008484,1.03230315,0.13506799936294556,0.017999480079999998,0.07081107050180435,0.00776539236,975.0189514160156,680.6554366,381.5397542317708,502.00651000000005,804.4071044921875,266.358856,10.095102707544962,7.868874439999999,21.59950017929077,0,33.27330207824707,104.9289268,2.730819978751242e-4,0,3.6772701740264893,11.556810720000001,0.32299798478682834,0.8795950140000001,400.0649795532226,7.895377968127677,79.54196662121267,149.07262480420073,26.82158359335263,17.161957487381926,-0.22481427348457653,51.63260714213053,9.0472,12851.393323399965,0,0.010494402376934886,0.00688,1.0477299988269806,0.046096,0.01624420005828142,0.006966000000000001 +2122,29.764671917657452,0,0,0.2338628046553056,3.0701855598167387,7.361039956410726,0.16008533333333333,1.9373409648736317,0.21000533333333338,136.9940071105957,5.220559957333334,19.886314233144123,0,8.954439878463745,0,8.230649948120117,0.05851482368,32.22692632675171,0.9443839999999999,160.80596288045248,0.010239999999999999,4.97043518225352,92.60484266666667,0,459.54334259033203,4190.897834666667,2168.779459635416,435.790218952886,1422.4298807779949,541.5474217158228,0.47521111617485684,1.0243007999999998,0.12742799955109754,0.017859949226666665,0.06412664397309224,0.00770519552,971.1629435221354,675.3790378666666,378.387700398763,498.1149866666667,804.6171010335287,264.2940586666667,10.03790251413981,7.807875413333333,21.487200101216633,0,32.94690195719401,104.11552426666667,2.1886700172520554e-4,0,3.642190158367157,11.46722304,0.32004098345836,0.872776448,400.3969751993815,7.885671838392518,79.44751770212397,148.39452298855906,26.667425730049402,17.14096038852237,-0.22456688160578392,51.98640727996826,8.977066666666666,12759.53626436736,0,0.009877461940050125,0.006826666666666667,1.0305199821790059,0.045738666666666664,0.015593900112435222,0.0069120000000000015 +2123,29.532135418300754,0,0,0.2255105616319018,3.0591143604918853,7.36722993850708,0.15883466666666665,1.8552709221839905,0.2083646666666667,137.3450050354004,5.179774332666667,19.626514434814453,0,8.897309939066568,0,8.212800025939941,0.05805767662,31.535127957661945,0.9370059999999999,158.8849639892578,0.01016,4.963205138842265,91.88136733333333,0,458.42330678304035,4158.156445333334,2158.4895019531245,433.6831614087817,1434.7598876953125,539.9520509805379,0.46753211816151935,1.0162984499999999,0.12024999844531219,0.01772041837333333,0.05806462342540423,0.00764499868,967.1059519449869,670.1026391333332,375.19865163167316,494.22346333333337,804.6341094970703,262.22926133333334,9.979742685953775,7.746876386666666,21.375199953715008,0,32.62150128682455,103.30212173333334,1.7532000128994696e-4,0,3.607130150000254,11.377635360000001,0.31708698719739914,0.865957882,400.7249857584635,7.875965708657359,79.35306878303528,147.71642117291742,26.513267866746176,17.119963289662813,-0.22432832893190327,52.33720715840658,8.906933333333333,12667.679205334756,0,0.0093005719439437,0.0067733333333333335,1.0135799944400787,0.045381333333333336,0.014969100011512637,0.006858000000000001 +2124,29.299598918944056,0,0,0.21715831860849805,3.0480431611670324,7.3733698924382525,0.157584,1.7766308883825939,0.20672400000000005,137.6940066019694,5.138988708,19.36981423695882,0,8.840489943822226,0,8.194979985555014,0.05760052956,30.85702912012736,0.9296279999999999,156.9839655558268,0.01008,4.956055084864299,91.157892,0,457.3152720133464,4125.415056000001,2148.2795410156245,431.57610386467746,1447.0099080403645,538.356680245253,0.46026211480299634,1.0082961,0.11350899996856849,0.017580887519999998,0.05254160395512978,0.00758480184,962.8569641113281,664.8262404,371.97961171468097,490.33194000000003,804.4641062418619,260.164464,9.920572678248087,7.685877359999999,21.263500054677326,0,32.297401428222656,102.4887192,1.4036099916362824e-4,0,3.5721101562182107,11.28804768,0.31413697948058444,0.859139316,401.04697926839185,7.866259578922201,79.25861986394659,147.03831935727575,26.359110003442947,17.098966190803257,-0.22409861546293453,52.68510723114014,8.8368,12575.822146302151,0,0.008743761961037913,0.00672,0.9968989988168081,0.045024,0.014369000059862932,0.006804000000000001 +2125,29.06706241958736,0,0,0.2088060755850943,3.036971961842179,7.379449923833211,0.15633333333333332,1.7012708485126495,0.20508333333333337,138.04000600179037,5.098203083333334,19.11621363957723,0,8.783969958623251,0,8.177169879277548,0.057143382500000006,30.19233051935832,0.9222499999999998,155.10396321614584,0.01,4.948995073636373,90.43441666666666,0,456.2182388305664,4092.673666666667,2138.159505208333,429.46904632057317,1459.1898803710938,536.7613095099681,0.45335911959409714,1.00029375,0.10717999935150146,0.017441356666666664,0.04750858464588722,0.007524605,958.4249471028646,659.5498416666667,368.73358154296875,486.4404166666667,804.1120910644531,258.0996666666667,9.860472599665323,7.624878333333333,21.152199904123943,0,31.97470172246297,101.67531666666667,1.1231300049985293e-4,0,3.537170171737671,11.19846,0.31119198848803836,0.8523207500000001,401.3639780680338,7.856553449187043,79.16417094485791,146.36021754163409,26.204952140139717,17.0779690919437,-0.22387774119887774,53.03000672658285,8.766666666666666,12483.965087269546,0,0.008205761822561422,0.006666666666666666,0.9804629931847254,0.04466666666666667,0.01379250013269484,0.006750000000000001 +2126,28.834525920230657,0,0,0.2004538325616905,3.0259007625173258,7.385479887326558,0.15508266666666665,1.6290708084901173,0.2034426666666667,138.3840077718099,5.057417458666667,18.865713755289715,0,8.727759917577108,0,8.15939998626709,0.05668623544,29.54073190689087,0.9148719999999998,153.24396514892578,0.00992,4.942025065422058,89.71094133333332,0,455.13220469156903,4059.932277333334,2128.1095174153643,427.3619887764689,1471.2898864746094,535.1659387746832,0.4467831129829089,0.9922913999999999,0.10123499917487304,0.01730182581333333,0.042947967536747456,0.00746440816,953.8199564615885,654.2734429333333,365.46655527750653,482.5488933333334,803.5821024576823,256.03486933333335,9.799502611160278,7.563879306666666,21.041199843088787,0,31.653501510620117,100.86191413333333,8.982210116907179e-5,0,3.5023301442464194,11.108872320000001,0.30825398365656537,0.845502184,401.67597961425776,7.846847319451885,79.06972202576922,145.68211572599242,26.050794276836488,17.056971993084147,-0.22366570613973288,53.37200673421224,8.696533333333333,12392.10802823694,0,0.007702771651869019,0.006613333333333333,0.9642650038003922,0.04430933333333333,0.01323869995151957,0.006696000000000001 +2127,28.60198942087396,0,0,0.19210158953828674,3.014829563192473,7.3914599021275835,0.153832,1.5598907669385274,0.20180200000000004,138.72400538126627,5.016631834000001,18.618213494618733,0,8.671850045522055,0,8.141639947891235,0.05622908838,28.902233123779297,0.9074939999999998,151.40496571858725,0.00984,4.935134967168172,88.987466,0,454.0581741333008,4027.1908880000005,2118.1395467122393,425.25493123236464,1483.3199055989583,533.5705680393983,0.440499114493529,0.98428905,0.09565419827898343,0.017162294959999998,0.038816350822647415,0.0074042113199999995,949.0499623616537,648.9970441999999,362.18052673339844,478.65737000000007,802.8790944417318,253.97007200000002,9.737692515055338,7.502880279999999,20.930499871571858,0,31.334001382191975,100.0485116,7.179759995779023e-5,0,3.4676001270612082,11.01928464,0.3053239832321803,0.838683618,401.98298136393225,7.837141189716727,78.97527310668053,145.00401391035075,25.89663641353326,17.03597489422459,-0.22346251028549996,53.71100680033366,8.6264,12300.250969204335,0,0.00723253155592829,0.00656,0.9483219981193542,0.043952,0.01270679997590681,0.006642000000000001 +2128,28.36945292151726,0,0,0.18374934651488295,3.0037583638676195,7.397379914919536,0.15258133333333332,1.493600755929947,0.20016133333333336,139.06200790405273,4.9758462093333335,18.37371301651001,0,8.61624002456665,0,8.123910029729208,0.055771941320000004,28.276334762573242,0.9001159999999998,149.58596547444662,0.009760000000000001,4.928334991137187,88.26399066666666,0,452.9951477050781,3994.449498666667,2108.239522298177,423.14787368826035,1495.2798970540364,531.9751973041134,0.43447811404863995,0.9762867,0.09041530018051465,0.017022764106666664,0.03507443672666947,0.007344014479999999,944.1219635009766,643.7206454666666,358.88050587972003,474.76584666666673,802.0071004231771,251.90527466666668,9.675092458724976,7.4418812533333325,20.820099989573162,0,31.01630163192749,99.23510906666667,5.73604005088176e-5,0,3.4330201745033264,10.929696960000001,0.30240198224782944,0.831865052,402.2849782307942,7.827435059981568,78.88082418759184,144.3259120947091,25.742478550230032,17.014977795365034,-0.2232681536361789,54.047006924947105,8.556266666666668,12208.393910171731,0,0.0067929214565083385,0.006506666666666667,0.9326289941867193,0.04359466666666667,0.012195899849757552,0.006588000000000001 +2129,28.13691642216056,0,0,0.1753971034914792,2.9926871645427666,7.403239925702413,0.15133066666666667,1.430090715487798,0.1985206666666667,139.3970069885254,4.935060584666667,18.13221311569214,0,8.560940027236938,0,8.106199979782104,0.05531479426000001,27.66313584645589,0.8927379999999998,147.78696568806967,0.009680000000000001,4.92161492506663,87.54051533333333,0,451.9421157836914,3961.7081093333336,2098.41953531901,421.0408161441561,1507.1599019368489,530.3798265688284,0.4286921148498853,0.96828435,0.08549549865225951,0.01688323325333333,0.03168632369488478,0.00728381764,939.0459696451823,638.4442467333333,355.57050069173175,470.8743233333334,800.9711049397787,249.84047733333335,9.61175243059794,7.3808822266666665,20.710100173950195,0,30.70040162404378,98.42170653333334,4.580289957326992e-5,0,3.3985801537831626,10.84010928,0.29948898653189343,0.825046486,402.58198038736975,7.8177289302464095,78.78637526850315,143.64781027906744,25.588320686926803,16.993980696505478,-0.22308263619176985,54.38010597229004,8.486133333333333,12116.536851139126,0,0.006381971334728102,0.0064533333333333335,0.917184000213941,0.043237333333333336,0.011705199955031276,0.006534000000000002 +2130,27.904379922803862,0,0,0.1670448604680754,2.9816159652179133,7.409049908320109,0.15008,1.3692506849765778,0.19688000000000003,139.72900517781576,4.894274960000001,17.89361302057902,0,8.505950053532919,0,8.088519970575968,0.054857647200000005,27.062137285868328,0.8853599999999998,146.00796763102213,0.009600000000000001,4.914974848429362,86.81703999999999,0,450.90008036295575,3928.9667200000004,2088.679524739583,418.9337586000518,1518.9598897298176,528.7844558335436,0.4231141085426013,0.960282,0.08087779954075813,0.016743702399999998,0.028619211943199236,0.0072236207999999994,933.8279673258463,633.1678479999999,352.25148518880206,466.98280000000005,799.7760925292969,247.77568000000002,9.547712484995523,7.3198832,20.600499947865803,0,30.386401335398357,97.608304,3.655560036956255e-5,0,3.3643001516660056,10.7505216,0.29658698042233783,0.81822792,402.8739802042643,7.808022800511251,78.69192634941446,142.96970846342577,25.434162823623574,16.97298359764592,-0.2229059579522727,54.71020698547363,8.416,12024.67979210652,0,0.005997811288883288,0.0064,0.9019639939069748,0.04288,0.011233900130415956,0.006480000000000001 +2131,27.671843423447164,0,0,0.15869261744467164,2.97054476589306,7.414809902509053,0.1488293333333333,1.3109606603781383,0.19523933333333338,140.0590031941732,4.853489335333334,17.657912731170654,0,8.451249917348227,0,8.070859988530477,0.05440050014,26.473238309224445,0.8779819999999998,144.2479680379232,0.00952,4.908424774805705,86.09356466666665,0,449.8690490722656,3896.225330666667,2078.9995117187495,416.8267010559475,1530.6798909505208,527.1890850982586,0.4177261119087537,0.9522796499999999,0.07654389987389247,0.016604171546666664,0.025843401594708364,0.007163423959999999,928.4759623209635,627.8914492666665,348.9264780680339,463.0912766666667,798.4260965983073,245.7108826666667,9.483012437820435,7.258884173333333,20.491199652353924,0,30.07430140177409,96.79490146666667,2.9160800143775607e-5,0,3.330200175444285,10.660933920000002,0.29369598378737766,0.811409354,403.16198221842444,7.798316670776093,78.59747743032577,142.2916066477841,25.280004960320344,16.951986498786365,-0.22273810833181332,55.037306785583496,8.345866666666668,11932.822733073916,0,0.005638721166178584,0.006346666666666667,0.8869639933109283,0.04252266666666667,0.010781299788504839,0.006426000000000001 +2132,27.439306924090463,0,0,0.15034037442126785,2.959473566568207,7.420509894688924,0.14757866666666666,1.2551206250985463,0.1935986666666667,140.3860066731771,4.812703710666668,17.42511256535848,0,8.396859963734945,0,8.053229888280233,0.053943353080000006,25.896339416503906,0.8706039999999998,142.5079663594564,0.00944,4.901944716771443,85.37008933333333,0,448.8480224609375,3863.483941333334,2069.39951578776,414.7196435118433,1542.3198954264324,525.5937143629737,0.4125081052382787,0.9442773,0.07247429961959521,0.01646464069333333,0.023331991862505674,0.00710322712,922.9969584147135,622.6150505333333,345.59947713216144,459.1997533333334,796.9240926106771,243.64608533333336,9.41768248875936,7.197885146666666,20.382200082143147,0,29.76410166422526,95.98149893333334,2.3250300121920493e-5,0,3.296270191669464,10.57134624,0.2908159817258517,0.8045907880000001,403.443977355957,7.788610541040935,78.50302851123708,141.61350483214247,25.125847097017115,16.93098939992681,-0.22257908733039175,55.36150646209717,8.275733333333333,11840.96567404131,0,0.005303061101585627,0.006293333333333334,0.8722030023733774,0.04216533333333333,0.010346600087359548,0.006372000000000001 +2133,27.206770424733765,0,0,0.1419881313978641,2.9484023672433537,7.426159898440043,0.14632799999999999,1.2016206085681915,0.19195800000000002,140.71000289916992,4.771918086,17.195112387339275,0,8.342769861221313,0,8.035620133082071,0.05348620602,25.331140836079914,0.8632259999999998,140.78796895345053,0.00936,4.895534714063008,84.646614,0,447.8359909057617,3830.742552,2059.859537760416,412.61258596773905,1553.879903157552,523.9983436276889,0.4074431086579959,0.9362749499999999,0.0686527993530035,0.016325109839999997,0.02106008306145668,0.007043030279999999,917.3979644775391,617.3386518,342.27147674560547,455.30823000000004,795.2750956217448,241.58128800000003,9.35178248087565,7.13688612,20.273600260416668,0,29.45600159962972,95.1680964,1.852879980409246e-5,0,3.2625301480293274,10.481758560000001,0.28794798503319424,0.797772222,403.72198232014966,7.778904411305777,78.40857959214839,140.9354030165008,24.97168923371389,16.909992301067252,-0.222428894948008,55.68270683288574,8.2056,11749.108615008705,0,0.0049893209943547845,0.00624,0.8576759894688925,0.041808000000000005,0.009929210102806488,0.0063180000000000016 +2134,26.974233925377067,0,0,0.13363588837446033,2.937331167918501,7.43175995349884,0.14507733333333334,1.1503805915514629,0.19031733333333337,141.03100204467773,4.731132461333334,16.968012015024822,0,8.28896983464559,0,8.01803994178772,0.05302905896000001,24.77744213740031,0.8558479999999998,139.08596801757812,0.00928,4.889214634895325,83.92313866666666,0,446.83496348063153,3798.001162666667,2050.389536539713,410.50552842363476,1565.3599039713542,522.4029728924039,0.4025171101093292,0.9282726,0.06506659897665183,0.016185578986666664,0.019005574906865757,0.00698283344,911.6849568684896,612.0622530666666,338.94447835286456,451.4167066666667,793.4840952555338,239.5164906666667,9.285322427749634,7.075887093333333,20.16540002822876,0,29.14980125427246,94.35469386666666,1.4759000047585383e-5,0,3.2289701302846274,10.39217088,0.2850929871201515,0.790953656,403.9959818522135,7.769198281570619,78.3141306730597,140.25730120085916,24.81753137041066,16.888995202207695,-0.222287531184662,56.00100644429525,8.135466666666666,11657.2515559761,0,0.004696070992698272,0.006186666666666667,0.8433810075124105,0.04145066666666667,0.009528390054280559,0.006264000000000001 +2135,26.741697426020366,0,0,0.12528364535105657,2.9262599685936475,7.437289913495381,0.14382666666666666,1.1013005475203197,0.18867666666666671,141.3490079243978,4.690346836666667,16.743712425231934,0,8.235479911168417,0,8.00047997633616,0.052571911900000004,24.23504336675008,0.8484699999999998,137.40397008260092,0.0092,4.8829545974731445,83.19966333333332,0,445.84293874104816,3765.2597733333337,2040.989532470703,408.39847087953046,1576.7598978678386,520.8076021571189,0.39771610498428345,0.92027025,0.06170130055397749,0.01604604813333333,0.01714786747470498,0.0069226366,905.8639628092448,606.7858543333332,335.62048085530597,447.5251833333334,791.5540873209635,237.45169333333337,9.218362410863241,7.014888066666666,20.057499885559082,0,28.84550142288208,93.54129133333333,1.1750599999989694e-5,0,3.1956001122792563,10.3025832,0.2822509879867236,0.78413509,404.2649815877278,7.7594921518354605,78.219681753971,139.5791993852175,24.66337350710743,16.86799810334814,-0.22215499604035374,56.316305796305336,8.065333333333333,11565.394496943496,0,0.004421990908061464,0.0061333333333333335,0.8293139984210333,0.041093333333333336,0.009143520068998138,0.006210000000000001 +2136,26.509160926663668,0,0,0.1169314023276528,2.915188769268794,7.442779898643494,0.14257599999999998,1.054280549287796,0.18703600000000004,141.66500600179037,4.649561212000001,16.522112369537354,0,8.182289997736612,0,7.98294993241628,0.05211476484,23.703644434611004,0.8410919999999998,135.7399698893229,0.009120000000000001,4.876774549484253,82.476188,0,444.8599166870117,3732.5183840000004,2031.6495463053384,406.2914133354262,1588.0799051920574,519.2122314218341,0.3930271069208781,0.9122678999999999,0.05854089961697658,0.015906517279999997,0.015468661362926165,0.006862439759999999,899.9419657389323,601.5094555999999,332.30149332682294,443.6336600000001,789.4880879720052,235.386896,9.150912284851074,6.953889039999999,19.950000286102295,0,28.543301264444988,92.7278888,9.351020025860635e-6,0,3.162430167198181,10.212995520000002,0.27942099173863727,0.7773165240000001,404.52897644042963,7.749786022100302,78.12523283488233,138.90109756957582,24.5092156438042,16.847001004488583,-0.2220312895150833,56.628706296284996,7.9952,11473.53743791089,0,0.004165830789133906,0.00608,0.815451001127561,0.040736,0.008773959940299392,0.006156000000000001 +2137,26.27662442730697,0,0,0.10857915930424904,2.904117569943941,7.448209921518962,0.14132533333333333,1.0092505166927974,0.18539533333333336,141.9780069986979,4.6087755873333345,16.30331214269002,0,8.129400173823038,0,7.965439995129903,0.051657617780000005,23.18324549992879,0.8337139999999998,134.09496943155924,0.009040000000000001,4.870664556821187,81.75271266666667,0,443.8858820597331,3699.776994666667,2022.3795572916665,404.184355791322,1599.3099060058594,517.6168606865492,0.3884391039609909,0.90426555,0.05557509915282329,0.015766986426666664,0.013951055239886045,0.00680224292,893.9239552815756,596.2330568666666,328.9875005086263,439.74213666666674,787.2920939127604,233.32209866666668,9.083022197087606,6.892890013333332,19.84280014038086,0,28.243001302083332,91.91448626666667,7.437979888891277e-6,0,3.1294501225153604,10.12340784,0.276605986058712,0.7704979580000001,404.7879791259765,7.740079892365144,78.03078391579363,138.22299575393419,24.35505778050097,16.826003905629026,-0.22191641160885064,56.93810590108236,7.925066666666666,11381.680378878285,0,0.003926420758944005,0.006026666666666667,0.8017909924189249,0.04037866666666667,0.008419119908163944,0.006102000000000001 +2138,26.044087927950272,0,0,0.10022691628084526,2.893046370619088,7.453579942385356,0.14007466666666665,0.9661224881807963,0.1837546666666667,142.28800582885742,4.567989962666667,16.087211688359577,0,8.076810042063395,0,7.947959979375203,0.05120047072,22.673446655273438,0.8263359999999998,132.46896998087564,0.008960000000000001,4.864624540011088,81.02923733333333,0,442.9218495686849,3667.0356053333335,2013.1695353190103,402.0772982472177,1610.4499104817708,516.0214899512642,0.38394410411516827,0.8962631999999999,0.052791999032100044,0.01562745557333333,0.012579950115953883,0.0067420460799999995,887.8149617513021,590.9566581333332,325.6825129191081,435.8506133333334,784.9680938720703,231.25730133333334,9.0147123336792,6.831890986666666,19.73599974314372,0,27.94460153579712,91.10108373333333,5.913589954313163e-6,0,3.096670150756836,10.033820160000001,0.2738039841254552,0.763679392,405.042978922526,7.730373762629986,77.93633499670494,137.54489393829252,24.200899917197745,16.80500680676947,-0.2218103623216558,57.244506200154625,7.854933333333333,11289.82331984568,0,0.003702680735538403,0.005973333333333333,0.7883499960104624,0.04002133333333334,0.008078430080786347,0.006048000000000001 +2139,25.81155142859357,0,0,0.09187467325744149,2.881975171294235,7.458909908930461,0.138824,0.9248144676287969,0.18211400000000005,142.59600575764975,4.527204338000001,15.873711744944254,0,8.02450998624166,0,7.930509964625041,0.050743323660000006,22.17424774169922,0.8189579999999999,130.86096954345703,0.00888,4.858654459317525,80.30576199999999,0,441.9668273925781,3634.2942160000002,2004.019541422526,399.9702407031134,1621.5098876953125,514.4261192159793,0.3795331045985222,0.88826085,0.050177699575821556,0.015487924719999999,0.011341245146468282,0.00668184924,881.6219533284506,585.6802593999998,322.38452402750653,431.95909000000006,782.5200907389323,229.192504,8.946022431055704,6.770891959999999,19.629599889119465,0,27.648101488749187,90.2876812,4.699480011064831e-6,0,3.064090112845103,9.94423248,0.2710159868001938,0.756860826,405.29398091634107,7.720667632894828,77.84188607761625,136.86679212265088,24.046742053894516,16.784009707909913,-0.2217131416534987,57.54800573984782,7.7848,11197.966260813075,0,0.003476190807608267,0.00592,0.7751260101795197,0.039664000000000005,0.007751340007719894,0.005994000000000001 +2140,25.579014929236873,0,0,0.08352243023403773,2.8709039719693816,7.4641698996226,0.13757333333333333,0.8852524360020956,0.18047333333333337,142.90000661214194,4.486418713333334,15.66301147143046,0,7.9725199937820435,0,7.9130799770355225,0.0502861766,21.685349146525066,0.8115799999999999,129.2709706624349,0.0088,4.852754473686218,79.58228666666666,0,441.01980845133465,3601.552826666667,1994.9195454915362,397.86318315900917,1632.4899088541667,512.8307484806944,0.3752001076936722,0.8802584999999999,0.04772189911454916,0.015348393866666666,0.010222640664627155,0.0066216524,875.3489583333334,580.4038606666666,319.09654235839844,428.0675666666667,779.9510803222656,227.12770666666668,8.876972277959188,6.709892933333332,19.523600101470947,0,27.353601296742756,89.47427866666666,3.7329600104385463e-6,0,3.0317001342773438,9.8546448,0.26824098577102023,0.7500422600000001,405.5399805704752,7.71096150315967,77.74743715852756,136.1886903070092,23.892584190591286,16.763012609050357,-0.22162474960437945,57.848605473836265,7.714666666666666,11106.10920178047,0,0.003247140751530727,0.005866666666666667,0.762112999955813,0.03930666666666667,0.007437310026337703,0.005940000000000001 +2141,25.346478429880175,0,0,0.07517018721063395,2.8598327726445283,7.469380021095276,0.13632266666666665,0.8473634272813797,0.1788326666666667,143.2020060221354,4.445633088666668,15.454811414082846,0,7.920809944470723,0,7.895680030186971,0.04982902954,21.206650257110596,0.8042019999999999,127.69897015889485,0.00872,4.8469144105911255,78.85881133333334,0,440.0807825724284,3568.8114373333337,1985.8895365397134,395.75612561490493,1643.3799133300781,511.2353777454095,0.37093810240427655,0.8722561499999999,0.04541689964632193,0.015208863013333332,0.009212536659712592,0.006561455559999999,869.000966389974,575.1274619333333,315.81954701741535,424.1760433333334,777.2660878499349,225.06290933333335,8.807592312494913,6.6488939066666655,19.417899926503498,0,27.060901323954266,88.66087613333333,2.963890021116337e-6,0,2.9995001355806985,9.765057120000002,0.26547998438278836,0.7432236940000001,405.78197733561194,7.7012553734245115,77.65298823943887,135.51058849136754,23.738426327288057,16.7420155101908,-0.22154519676017204,58.14620621999105,7.6445333333333325,11014.252142747864,0,0.0030331106778855124,0.0058133333333333335,0.7493110001087189,0.038949333333333336,0.007135829965894421,0.005886000000000001 +2142,25.113941930523474,0,0,0.06681794418723018,2.8487615733196754,7.474539955457051,0.135072,0.811078409353892,0.17719200000000004,143.50100580851236,4.404847464000001,15.249311367670694,0,7.869409998257955,0,7.878300031026204,0.049371882480000004,20.7377511660258,0.7968239999999999,126.14497184753418,0.00864,4.841144283612569,78.135336,0,439.15075429280597,3536.0700480000005,1976.9095357259112,393.64906807080064,1654.169901529948,509.64000701012463,0.36673809836308163,0.8642538,0.043253399431705475,0.015069332159999999,0.008300683150688807,0.00650125872,862.5829671223959,569.8510631999999,312.55356852213544,420.28452000000004,774.4680887858073,222.99811200000002,8.737912257512411,6.5878948799999995,19.312600135803223,0,26.770001252492268,87.8474736,2.352230012547807e-6,0,2.9674901167551675,9.67546944,0.26273298511902493,0.736405128,406.01897939046216,7.691549243689353,77.55853932035018,134.83248667572587,23.584268463984827,16.721018411331244,-0.2214744831208766,58.440805753072105,7.5744,10922.395083715259,0,0.002833120602493485,0.00576,0.7367159972588221,0.038592,0.006846409989520907,0.005832 +2143,24.881405431166776,0,0,0.058465701163826406,2.837690373994822,7.479649901390076,0.13382133333333332,0.7763303965330124,0.17555133333333336,143.79800669352213,4.364061839333334,15.046311060587565,0,7.818300088246663,0,7.860960086186727,0.04891473542000001,20.278751850128174,0.7894459999999999,124.60897127787273,0.00856,4.835434317588806,77.41186066666666,0,438.2287343343099,3503.328658666667,1967.97954305013,391.54201052669634,1664.8799235026042,508.0446362748397,0.36259809881448746,0.8562514499999999,0.04122009935478369,0.014929801306666666,0.007477679910759131,0.00644106188,856.0989634195963,564.5746644666666,309.298578898112,416.3929966666667,771.55908203125,220.9333146666667,8.667952140172323,6.5268958533333326,19.2076997756958,0,26.481001377105713,87.03407106666666,1.865990014948693e-6,0,2.9356701374053955,9.58588176,0.2600009888410568,0.729586562,406.25298055013013,7.681843113954194,77.4640904012615,134.15438486008424,23.430110600681598,16.700021312471687,-0.22141260868649307,58.732505798339844,7.504266666666666,10830.538024682655,0,0.0026462506308841207,0.005706666666666667,0.7243239978949229,0.03823466666666667,0.0065685800509527326,0.005778000000000001 +2144,24.648868931810078,0,0,0.05011345814042264,2.826619174669969,7.484699885050456,0.13257066666666667,0.7430553783973058,0.1739106666666667,144.09100468953451,4.3232762146666674,14.845910787582397,0,7.7674800157547,0,7.8436399300893145,0.048457588360000005,19.82925271987915,0.7820679999999999,123.0899715423584,0.00848,4.829784274101257,76.68838533333333,0,437.31470998128253,3470.5872693333336,1959.1095479329424,389.4349529825921,1675.5098978678386,506.4492655395548,0.35851309696833294,0.8482491,0.03931119944900274,0.014790270453333332,0.00673503700333337,0.00638086504,849.5529632568359,559.2982657333332,306.0565999348958,412.50147333333337,768.5430755615234,218.86851733333336,8.597732146581015,6.4658968266666665,19.10320011774699,0,26.19370126724243,86.22066853333332,1.4796299675860307e-6,0,2.9040401180585227,9.49629408,0.2572839880983035,0.722767996,406.48098246256507,7.672136984219036,77.36964148217281,133.47628304444257,23.27595273737837,16.67902421361213,-0.22135957345702156,59.02130572001139,7.4341333333333335,10738.68096565005,0,0.0024716605354721346,0.005653333333333334,0.7121330052614212,0.03787733333333333,0.006301869948705037,0.005724000000000001 +2145,24.41633243245338,0,0,0.041761215117018864,2.815547975345116,7.489689985911052,0.13132,0.7111923595269521,0.17227000000000003,144.38200505574545,4.282490590000001,14.648010969161987,0,7.716959913571675,0,7.826350013415019,0.0480004413,19.389153798421223,0.7746899999999999,121.58797264099121,0.008400000000000001,4.824194272359212,75.96491,0,436.40868377685547,3437.8458800000003,1950.2895507812498,387.32789543848787,1686.0399068196614,504.8538948042699,0.3544790968298912,0.8402467499999999,0.03751889988780022,0.0146507396,0.006065034346344571,0.0063206682,842.9499715169271,554.0218669999999,302.82762145996094,408.60995,765.4240875244141,216.80372,8.527292172114054,6.4048978,18.99910004933675,0,25.908201376597088,85.40726599999999,1.172760012953707e-6,0,2.8726001381874084,9.406706400000001,0.25458098699649173,0.71594943,406.70598093668616,7.662430854483878,77.27519256308412,132.7981812288009,23.121794874075142,16.658027114752578,-0.22131537743246185,59.307106018066406,7.364,10646.823906617445,0,0.0023085305195612213,0.005600000000000001,0.7001390059789022,0.03752,0.0060458699784552055,0.0056700000000000006 +2146,24.18379593309668,0,0,0.03340897209361509,2.8044767760202625,7.4946298996607466,0.13006933333333331,0.6806803445021311,0.17062933333333336,144.67000325520834,4.2417049653333345,14.452510674794516,0,7.666719992955525,0,7.809080044428508,0.047543294240000006,18.95825497309367,0.7673119999999999,120.10397211710612,0.008320000000000001,4.818664113680522,75.24143466666666,0,435.5106658935547,3405.104490666667,1941.519561767578,385.2208378943836,1696.4798990885417,503.258524068985,0.35049209743738174,0.8322443999999999,0.03583339974284172,0.014511208746666667,0.00546069194873174,0.0062604713599999995,836.2939758300781,548.7454682666666,299.6126403808594,404.7184266666667,762.2040863037109,214.73892266666667,8.456642150878906,6.343898773333333,18.895299911499023,0,25.624401410420734,84.59386346666666,9.291430084582922e-7,0,2.8413401444753013,9.31711872,0.25189199298620224,0.709130864,406.92697906494135,7.65272472474872,77.18074364399543,132.12007941315923,22.967637010771913,16.63703001589302,-0.22128002061281413,59.59000555674235,7.293866666666666,10554.96684758484,0,0.002156120492145419,0.005546666666666667,0.6883209894100825,0.03716266666666667,0.005800130039763947,0.005616 +2147,23.95125943373998,0,0,0.025056729070211323,2.7934055766954096,7.499519944190979,0.12881866666666666,0.6514653265476227,0.1689886666666667,144.9550043741862,4.200919340666668,14.259610652923584,0,7.616780042648315,0,7.791850050290425,0.04708614718000001,18.53645610809326,0.7599339999999999,118.63697179158528,0.00824,4.8132041692733765,74.51795933333332,0,434.61964416503906,3372.363101333334,1932.7995503743487,383.11378035027934,1706.8198954264324,501.6631533337001,0.34654809534549713,0.82424205,0.034248000010848045,0.014371677893333334,0.004915679843785862,0.00620027452,829.5869649251302,543.4690695333333,296.41065979003906,400.82690333333335,758.8860880533854,212.67412533333334,8.385802110036215,6.282899746666667,18.79200013478597,0,25.3423015276591,83.78046093333333,7.358269868973366e-7,0,2.8102601567904153,9.227531039999999,0.24921798954407373,0.702312298,407.1429824829101,7.643018595013562,77.08629472490674,131.44197759751756,22.813479147468684,16.616032917033465,-0.2212535029980784,59.86990547180176,7.223733333333334,10463.109788552234,0,0.002013730467297137,0.005493333333333334,0.6766750067472458,0.036805333333333336,0.0055642599472776055,0.005562 +2148,23.718722934383283,0,0,0.01670448604680755,2.7823343773705562,7.504349946975708,0.127568,0.6234913021326065,0.16734800000000002,145.2380027770996,4.160133716000001,14.06911039352417,0,7.567129929860433,0,7.774640043576558,0.04662900012000001,18.123556931813557,0.7525559999999999,117.18597348531087,0.00816,4.807784120241801,73.794484,0,433.7356262207031,3339.621712,1924.1195576985674,381.00672280617505,1717.0799255371094,500.0677825984152,0.3426450937986374,0.8162396999999999,0.03275869941959778,0.01423214704,0.004424287859971325,0.00614007768,822.8349609375,538.1926708,293.2226740519206,396.93538,755.4740804036459,210.609328,8.314791997273764,6.22190072,18.689000129699707,0,25.061901410420734,82.96705839999998,5.824909929212178e-7,0,2.7793601353963218,9.13794336,0.24655898908774057,0.695493732,407.35498046874994,7.633312465278403,76.99184580581806,130.76387578187592,22.659321284165454,16.59503581817391,-0.22123582458825453,60.14680608113607,7.1536,10371.25272951963,0,0.0018807004283492763,0.00544,0.6652189940214157,0.036448,0.005337870020108919,0.005508000000000001 +2149,23.486186435026582,0,0,0.008352243023403774,2.7712631780457033,7.509119987487793,0.12631733333333334,0.596707304318746,0.16570733333333337,145.51800537109375,4.119348091333334,13.880910237630209,0,7.51777998606364,0,7.757449984550476,0.046171853060000004,17.71935796737671,0.7451779999999999,115.75197283426921,0.00808,4.802434086799622,73.07100866666667,0,432.8585968017578,3306.880322666667,1915.4995829264321,378.8996652620708,1727.2399088541667,498.47241186313033,0.33877809594074887,0.80823735,0.031359399668872356,0.014092616186666667,0.00398131605470553,0.00607988084,816.0389709472656,532.9162720666666,290.04869333902997,393.04385666666667,751.9700775146484,208.54453066666667,8.243642091751099,6.160901693333334,18.586399873097736,0,24.783101240793865,82.15365586666665,4.6092002511007496e-7,0,2.7486301263173423,9.04835568,0.24391298865278563,0.6886751659999999,407.5629781087239,7.623606335543244,76.89739688672937,130.08577396623426,22.505163420862225,16.574038719314352,-0.22122698538334254,60.420905431111656,7.083466666666667,10279.395670487025,0,0.0017564204172231257,0.005386666666666667,0.6539499958356222,0.03609066666666667,0.005120590018729369,0.0054540000000000005 +2150,23.253649935669884,0,0,-0,2.76019197872085,7.513849973678589,0.12506666666666666,0.5710622916618983,0.1640666666666667,145.79500579833984,4.078562466666668,13.695210218429565,0,7.468700011571248,0,7.740299979845683,0.04571470600000001,17.323758284250896,0.7377999999999999,114.33497428894043,0.008,4.797134041786194,72.34753333333333,0,431.9895833333333,3274.1389333333336,1906.9195556640623,376.7926077179665,1737.3199055989583,496.8770411278454,0.33494609345992404,0.8002349999999999,0.03004199933881561,0.013953085333333334,0.0035820744815282524,0.006019684,809.2039642333984,527.6398733333333,286.88971455891925,389.15233333333333,748.3770904541016,206.47973333333334,8.172352075576782,6.099902666666667,18.48420015970866,0,24.5058012008667,81.34025333333332,3.645740254872483e-7,0,2.718070129553477,8.958768,0.2412819874783357,0.6818565999999999,407.76797993977857,7.613900205808086,76.80294796764068,129.4076721505926,22.351005557558995,16.553041620454795,-0.22122698538334254,60.691905657450356,7.013333333333334,10187.53861145442,0,0.001640330379207929,0.005333333333333334,0.6428659955660502,0.03573333333333333,0.0049120400023336215,0.0054 +2151,23.021113436313186,0,0,-0,2.7491207793959966,7.518519957860311,0.123816,0.5465102742115656,0.16242600000000001,146.06900533040366,4.037776842000001,13.511810143788656,0,7.419919967651367,0,7.723180015881856,0.045257558940000005,16.936559677124023,0.7304219999999999,112.93397331237793,0.00792,4.791884024937947,71.62405799999999,0,431.1265614827474,3241.3975440000004,1898.3795674641924,374.6855501738622,1747.2899271647136,495.2816703925605,0.33114809542894363,0.7922326499999999,0.028803599532693624,0.01381355448,0.0032223130498702326,0.00595948716,802.3329569498698,522.3634746,283.7457326253255,385.26081,744.6980794270834,204.414936,8.100962162017822,6.03890364,18.382400035858154,0,24.230101108551025,80.52685079999999,2.8825199175723054e-7,0,2.687680105368296,8.86918032,0.23866499091188112,0.675038034,407.9679819742838,7.604194076072928,76.70849904855199,128.72957033495092,22.196847694255766,16.53204452159524,-0.22122698538334254,60.96010557810465,6.9432,10095.681552421815,0,0.0015318703566056986,0.005280000000000001,0.6319619913895925,0.035376,0.004711900061617295,0.005346 +2152,22.788576936956485,0,0,-0,2.7380495800711437,7.523129979769389,0.12256533333333333,0.5230032652616501,0.16078533333333336,146.34000523885092,3.9969912173333344,13.330809911092123,0,7.371429999669393,0,7.706079999605815,0.04480041188000001,16.557560284932453,0.7230439999999999,111.5499750773112,0.00784,4.786684036254883,70.90058266666666,0,430.27054087320965,3208.656154666667,1889.8895568847654,372.578492629758,1757.1699117024739,493.6862996572756,0.32738108932971954,0.7842302999999999,0.02763919982438286,0.013674023626666667,0.002898181730415672,0.00589929032,795.4289703369141,517.0870758666666,280.6157506306966,381.36928666666665,740.9360911051432,202.35013866666668,8.02947207291921,5.977904613333333,18.2810001373291,0,23.95600112279256,79.71344826666666,2.278179837370923e-7,0,2.657450099786123,8.779592639999999,0.23606098939975104,0.668219468,408.16398111979163,7.59448794633777,76.6140501294633,128.05146851930928,22.042689830952536,16.511047422735682,-0.22122698538334254,61.2253049214681,6.873066666666667,10003.824493389211,0,0.0014305603205381583,0.005226666666666668,0.6212379982074102,0.03501866666666666,0.004519820096902549,0.005292000000000001 +2153,22.556040437599787,0,0,-0,2.7269783807462904,7.527689854303996,0.12131466666666665,0.5004982476433119,0.15914466666666668,146.60900497436523,3.9562055926666675,13.152109702428183,0,7.3232200145721436,0,7.68900998433431,0.044343264820000006,16.18656126658122,0.7156659999999999,110.18097559611003,0.00776,4.781543930371602,70.17710733333332,0,429.42152913411456,3175.9147653333334,1881.4295654296873,370.47143508565375,1766.9499104817708,492.09092892199067,0.32364408920208615,0.77622795,0.02654159938295682,0.013534492773333334,0.0026062305939073362,0.00583909348,788.4929656982422,511.8106771333333,277.5007731119792,377.47776333333337,737.0920766194662,200.28534133333335,7.957912007967631,5.916905586666667,18.179999987284344,0,23.6833012898763,78.90004573333333,1.799830198952653e-7,0,2.6273900866508484,8.69000496,0.23347199087341627,0.6614009019999999,408.355977376302,7.584781816602612,76.5196012103746,127.37336670366761,21.888531967649307,16.490050323876126,-0.22122698538334254,61.48760541280111,6.802933333333334,9911.967434356606,0,0.0013359203197372456,0.005173333333333334,0.6106889943281809,0.034661333333333336,0.004335480082469682,0.0052380000000000005 +2154,22.32350393824309,0,0,-0,2.7159071814214375,7.532189965248108,0.12006399999999999,0.47895323981841403,0.15750400000000003,146.87500508626303,3.915419968000001,12.975609540939331,0,7.275290052096049,0,7.671969930330913,0.04388611776000001,15.823561986287435,0.7082879999999999,108.82797559102376,0.00768,4.776453971862793,69.453632,0,428.57850646972656,3143.173376,1873.019571940104,368.36437754154946,1776.6399027506511,490.49555818670575,0.3199350908398628,0.7682256,0.02550899951408307,0.01339496192,0.00234328955411911,0.0057788966399999996,781.5299631754557,506.53427839999995,274.4007924397786,373.58624000000003,733.1700744628906,198.22054400000002,7.886282006899516,5.85590656,18.079400221506756,0,23.41210126876831,78.0866432,1.4213702096791772e-7,0,2.597490131855011,8.6004172799999985,0.23089598615964255,0.6545823359999999,408.54498036702466,7.575075686867454,76.42515229128591,126.69526488802595,21.734374104346077,16.46905322501657,-0.22122698538334254,61.7469056447347,6.7328,9820.110375324,0,0.001247520277199025,0.00512,0.6003140012423197,0.034304,0.004158589988946915,0.005184 +2155,22.090967438886388,0,0,-0,2.704835982096584,7.536649902661641,0.11881333333333333,0.45832723130782443,0.15586333333333335,147.13800557454428,3.874634343333334,12.801409562428793,0,7.227649966875712,0,7.654960036277771,0.04342897070000001,15.468262831370035,0.7009099999999999,107.49097506205241,0.0076,4.771403908729553,68.73015666666666,0,427.74248758951825,3110.431986666667,1864.6495768229165,366.25731999744517,1786.2199096679688,488.90018745142083,0.31625308593114215,0.7602232499999999,0.024537199332068365,0.013255431066666667,0.002106528573979934,0.005718699799999999,774.5419769287109,501.25787966666667,271.31481170654297,369.6947166666667,729.1720733642578,196.1557466666667,7.8146019379297895,5.794907533333333,17.97920020421346,0,23.142301082611084,77.27324066666665,1.1220596896066581e-7,0,2.5677400827407837,8.5108296,0.22833298767606416,0.64776377,408.72898101806635,7.565369557132295,76.33070337219723,126.01716307238429,21.580216241042848,16.448056126157013,-0.22122698538334254,62.003305435180664,6.6626666666666665,9728.253316291397,0,0.0011649402731563896,0.005066666666666667,0.5901089906692505,0.03394666666666667,0.003988830023445189,0.005130000000000001 +2156,21.85843093952969,0,0,-0,2.693764782771731,7.541039943695068,0.11756266666666666,0.4385822241504987,0.15422266666666667,147.3990020751953,3.833848718666667,12.629509290059408,0,7.180300037066142,0,7.637979944547017,0.042971823640000004,15.120563745498657,0.6935319999999998,106.16997464497884,0.00752,4.7664138078689575,68.00668133333332,0,426.9114685058594,3077.6905973333337,1856.3195699055987,364.15026245334093,1795.6999104817708,487.304816716136,0.3125930850704511,0.7522209,0.02361989968145887,0.013115900213333333,0.0018933777367540945,0.00565850296,767.52996826171875,495.98148093333333,268.2448323567708,365.80319333333335,725.10107421875,194.09094933333336,7.7428819338480634,5.733908506666666,17.87939993540446,0,22.8739013671875,76.45983813333332,0,0,2.538150111834208,8.42124192,0.22578398883342743,0.640945204,408.9099782307942,7.555663427397137,76.23625445310854,125.33906125674264,21.426058377739622,16.42705902729746,-0.22122698538334254,62.25670464833578,6.592533333333334,9636.396257258792,0,0.0010878102524050821,0.005013333333333334,0.5800720006227493,0.03358933333333333,0.0038259299860025444,0.005076000000000001 +2157,21.625894440172992,0,0,-0,2.682693583446878,7.545379916826884,0.116312,0.41968021045128506,0.15258200000000002,147.6560033162435,3.7930630940000007,12.459709405899048,0,7.133219917615254,0,7.62103005250295,0.04251467658000001,14.780364354451498,0.6861539999999998,104.86397552490234,0.0074400000000000004,4.76146384080251,67.28320599999999,0,426.0874557495117,3044.9492080000005,1848.01958211263,362.0432049092367,1805.0799255371094,485.70944598085106,0.3089580883582433,0.74421855,0.022753499293078978,0.01297636936,0.0017015269356003653,0.0055983061199999995,760.4989776611328,490.7050822,265.18885294596356,361.91167,720.9590759277344,192.02615200000002,7.671151876449585,5.6729094799999995,17.779999891916912,0,22.60690100987752,75.64643559999999,0,0,2.50870011250178,8.331654239999999,0.22324898963173231,0.634126638,409.0869801839192,7.545957297661979,76.14180553401985,124.66095944110097,21.271900514436393,16.406061928437904,-0.22122698538334254,62.50720532735189,6.5224,9544.539198226186,0,0.001015770249068737,0.004960000000000001,0.5702020029226939,0.033232,0.0036696199676953256,0.005022 +2158,21.393357940816294,0,0,-0,2.6716223841220246,7.549670020739238,0.11506133333333332,0.4015862047672272,0.15094133333333334,147.91100438435873,3.752277469333334,12.292109251022339,0,7.086430033047994,0,7.6041100025177,0.042057529520000005,14.447465260823568,0.6787759999999998,103.57297643025716,0.00736,4.756563822428386,66.55973066666665,0,425.2684326171875,3012.2078186666668,1839.759582519531,359.9361473651324,1814.3599141438801,484.11407524556614,0.30534608910481137,0.7362162,0.021937199402600527,0.012836838506666667,0.0015288662495246779,0.005538109279999999,753.4479675292969,485.42868346666666,262.1468734741211,358.02014666666673,716.7470753987631,189.9613546666667,7.599411805470784,5.6119104533333335,17.681000073750813,0,22.341201146443684,74.83303306666666,0,0,2.479400098323822,8.24206656,0.22072598959008852,0.6273080719999999,409.25998179117835,7.536251167926821,76.04735661493116,123.98285762545932,21.117742651133163,16.385064829578347,-0.22122698538334254,62.75480524698893,6.452266666666667,9452.682139193581,0,9.48486223933287e-4,0.004906666666666667,0.5604940007130305,0.03287466666666667,0.0035196300013922155,0.004968 +2159,21.160821441459593,0,0,-0,2.6605511847971717,7.55390997727712,0.11381066666666666,0.384266197681427,0.1493006666666667,148.16300455729166,3.7114918446666674,12.126709143320719,0,7.039920012156169,0,7.5872100194295244,0.04160038246000001,14.121766010920206,0.6713979999999998,102.29797681172688,0.00728,4.75170377890269,65.83625533333333,0,424.4564158121745,2979.4664293333335,1831.539560953776,357.8290898210281,1823.5399271647136,482.5187045102812,0.3017560864488284,0.7282138499999999,0.02116769940281908,0.012697307653333333,0.0013735056466733415,0.00547791244,746.3819681803385,480.1522847333333,259.12089411417645,354.1286233333334,712.4700775146484,187.89655733333336,7.527671893437703,5.550911426666667,17.582499980926514,0,22.076901117960613,74.01963053333333,0,0,2.4502500891685486,8.152478879999999,0.21821398908893266,0.620489506,409.42898050944007,7.526545038191663,75.95290769584247,123.30475580981765,20.963584787829934,16.36406773071879,-0.22122698538334254,62.99940458933512,6.382133333333334,9360.825080160977,0,8.856401982484385e-4,0.004853333333333334,0.5509459972381592,0.032517333333333336,0.003375719980491946,0.004914000000000001 +2160,20.928284942102895,0,0,-0,2.6494799854723183,7.558089931805928,0.11256,0.367687185605367,0.14766,148.41300455729166,3.6707062200000005,11.963409026463827,0,6.993680000305176,0,7.570349931716919,0.041143235400000006,13.803066651026407,0.6640199999999998,101.03697649637859,0.0072,4.746893723805745,65.11277999999999,0,423.64940134684247,2946.7250400000003,1823.3495686848955,355.72203227692387,1832.6099243164062,480.9233337749963,0.29818708697954815,0.7202115,0.020439699447403353,0.0125577768,0.0012337450655953337,0.005417715599999999,739.3019765218099,474.875886,256.10790888468426,350.23710000000005,708.1280619303385,185.83176000000003,7.455941875775655,5.4899124,17.484299818674724,0,21.813801288604736,73.206228,0,0,2.42123011747996,8.0628912,0.21571498860915503,0.61367094,409.5949834187825,7.516838908456505,75.85845877675378,122.626653994176,20.809426924526704,16.343070631859234,-0.22122698538334254,63.24110476175944,6.312,9268.968021128372,0,8.269451936939731e-4,0.0048000000000000004,0.5415569990873337,0.03216,0.0032376300271910927,0.004860000000000001 +2161,20.695748442746197,0,0,-0,2.638408786147465,7.562209924062093,0.11130933333333333,0.3518181766072909,0.14601933333333333,148.65900675455728,3.629920595333334,11.802208741505941,0,6.9477299451828,0,7.553509950637817,0.04068608834,13.491267442703247,0.6566419999999998,99.791077931722,0.00712,4.742123643557231,64.38930466666666,0,422.8473815917969,2913.983650666667,1815.1895650227862,353.6149747328196,1841.5799051920574,479.3279630397114,0.29463807741800946,0.71220915,0.01975269941613078,0.012418245946666667,0.0011080245409781735,0.005357518759999999,732.2089691162109,469.59948726666664,253.10993321736655,346.3455766666667,703.7230631510416,183.7669626666667,7.384251832962036,5.428913373333333,17.386500040690105,0,21.552000840504963,72.39282546666666,0,0,2.3923500974973044,7.973303519999999,0.21322899063428244,0.606852374,409.75698089599604,7.507132778721346,75.76400985766509,121.94855217853434,20.655269061223475,16.322073532999678,-0.22122698538334254,63.47990481058756,6.241866666666667,9177.110962095767,0,7.721261790720746e-4,0.004746666666666667,0.5323229978481928,0.03180266666666667,0.0031051399807135263,0.004806 +2162,20.463211943389496,0,0,-0,2.627337586822612,7.566279967625936,0.11005866666666667,0.33662917216618854,0.14437866666666668,148.9030024210612,3.589134970666667,11.643108606338501,0,6.902050058046977,0,7.536709984143575,0.040228941280000007,13.186268329620361,0.6492639999999998,98.559876759847,0.007039999999999999,4.737393657366435,63.66582933333332,0,422.0513636271159,2881.2422613333338,1807.059580485026,351.50791718871534,1850.4599202473958,477.7325923044265,0.2911090801159541,0.7042068,0.019104099366813898,0.012278715093333333,9.94967083291461e-4,0.00529732192,725.1049753824869,464.3230885333333,250.12695185343424,342.4540533333334,699.2590688069662,181.70216533333337,7.312581817309062,5.367914346666667,17.289100011189777,0,21.291400909423828,71.57942293333333,0,0,2.363610088825226,7.88371584,0.2107549880941709,0.6000338080000001,409.9159774780273,7.497426648986188,75.6695609385764,121.27045036289267,20.50111119792025,16.30107643414012,-0.22122698538334254,63.715804735819496,6.171733333333334,9085.253903063161,0,7.20929165254347e-4,0.004693333333333334,0.5232430050770441,0.03144533333333333,0.002978009986691177,0.004752000000000001 +2163,20.230675444032798,0,0,-0,2.6162663874977587,7.570299983024597,0.10880799999999999,0.32209016134341556,0.142738,149.14400227864584,3.548349346,11.486108541488647,0,6.856649994850159,0,7.519929965337117,0.039771794220000004,12.887868801752726,0.6418859999999998,97.34317715962727,0.00696,4.73271365960439,62.94235399999999,0,421.26135508219403,2848.500872,1798.9695739746091,349.40085964461105,1859.2199198404949,476.1372215691416,0.2875970775882403,0.69620445,0.01848899961138765,0.01213918424,8.933066807609672e-4,0.005237125079999999,717.9929606119791,459.04668979999997,247.1569684346517,338.56253000000004,694.7360687255859,179.63736800000004,7.240961790084839,5.30691532,17.192100207010906,0,21.03200101852417,70.7660204,0,0,2.3350100914637246,7.79412816,0.20829398930072784,0.593215242,410.07098134358716,7.48772051925103,75.57511201948772,120.59234854725102,20.34695333461702,16.280079335280565,-0.22122698538334254,63.948704401652016,6.1016,8993.396844030556,0,6.731161556672305e-4,0.00464,0.5143130073944727,0.031088,0.002856050016513715,0.004698000000000001 +2164,19.9981389446761,0,0,-0,2.605195188172906,7.574259916941325,0.10755733333333332,0.30817416061957675,0.14109733333333335,149.38300450642905,3.5075637213333337,11.331008434295654,0,6.811520020167033,0,7.503190080324809,0.03931464716000001,12.595869382222494,0.6345079999999998,96.14077822367351,0.00688,4.728063623110454,62.218878666666654,0,420.475336710612,2815.759482666667,1790.9095764160154,347.2938021005068,1867.8899230957031,474.5418508338567,0.28410207728544873,0.6882021,0.017905399513741333,0.011999653386666666,8.01913304409633e-4,0.00517692824,710.8739776611328,453.77029106666663,244.20098876953125,334.6710066666667,690.1580657958984,177.5725706666667,7.16940180460612,5.245916293333333,17.09559981028239,0,20.77380100886027,69.95261786666667,0,0,2.3065300981203714,7.7045404799999995,0.2058439888060093,0.586396676,410.2219797770182,7.478014389515872,75.48066310039903,119.91424673160935,20.19279547131379,16.25908223642101,-0.22122698538334254,64.1787052154541,6.031466666666667,8901.53978499795,0,6.284631478289763e-4,0.004586666666666667,0.5055319964885712,0.030730666666666667,0.002739040006417781,0.0046440000000000006 +2165,19.765602445319402,0,0,-0,2.5941239888480525,7.5781699021657305,0.10630666666666666,0.2948561484615008,0.13945666666666667,149.6180051167806,3.4667780966666673,11.178008238474527,0,6.766669909159343,0,7.486470023790996,0.038857500100000004,12.310270150502523,0.6271299999999999,94.95267740885417,0.0068,4.723463614781697,61.49540333333333,0,419.695317586263,2783.0180933333336,1782.8795776367185,345.1867445564025,1876.449930826823,472.9464800985718,0.2806260759631793,0.68019975,0.01735339950149258,0.011860122533333333,7.19761970685795e-4,0.0051167313999999995,703.74896240234375,448.4938923333333,241.25900904337564,330.77948333333336,685.5250600179037,175.50777333333338,7.097901741663615,5.184917266666666,16.99939997990926,0,20.51680103937785,69.13921533333334,0,0,2.2781700690587363,7.614952799999999,0.20340598995486894,0.57957811,410.3699798583984,7.468308259780714,75.38621418131034,119.2361449159677,20.03863760801056,16.238085137561455,-0.22122698538334254,64.40570386250813,5.961333333333334,8809.682725965347,0,5.86764135126335e-4,0.004533333333333334,0.49689699957768124,0.030373333333333336,0.002626779993685583,0.00459 +2166,19.5330659459627,0,0,-0,2.583052789523199,7.582019964853923,0.105056,0.2821091463168462,0.137816,149.85100428263345,3.4259924720000003,11.027008136113485,0,6.722090005874634,0,7.4697900613149,0.03840035304,12.030970891316732,0.6197519999999999,93.77857844034831,0.006719999999999999,4.718893567721049,60.771927999999996,0,418.92030843098956,2750.2767040000003,1774.8795878092446,343.0796870122982,1884.8999328613281,471.35110936328687,0.2771660735209783,0.6721974,0.01683099940419197,0.01172059168,6.459296710090712e-4,0.005056534559999999,696.6199696858724,443.21749359999995,238.33002599080405,326.8879600000001,680.8390655517578,173.44297600000002,7.026471773783366,5.12391824,16.90370003382365,0,20.26090129216512,68.3258128,0,0,2.2499400774637857,7.52536512,0.20097899188597998,0.5727595440000001,410.5149815877278,7.458602130045556,75.29176526222165,118.55804310032605,19.884479744707335,16.2170880387019,-0.22122698538334254,64.62990442911784,5.8912,8717.825666932742,0,5.478221282828599e-4,0.0044800000000000005,0.4884059975544612,0.030016,0.0025190800079144537,0.004536000000000001 +2167,19.300529446606003,0,0,-0,2.5719815901983463,7.585819959640503,0.10380533333333333,0.2699091409643491,0.13617533333333334,150.08100382486978,3.3852068473333334,10.878008206685385,0,6.6777799526850385,0,7.4531300862630205,0.037943205980000005,11.75767151514689,0.6123739999999999,92.61847813924153,0.00664,4.714373588562012,60.04845266666666,0,418.14929453531903,2717.535314666667,1766.9095662434893,340.972629468194,1893.2399393717449,469.75573862800195,0.2737230757872264,0.66419505,0.01633399973313014,0.011581060826666666,5.79586402939943e-4,0.00499633772,689.48797607421875,437.9410948666666,235.41504542032877,322.99643666666674,676.1030782063802,171.37817866666668,6.955121715863545,5.062919213333333,16.80840015411377,0,20.00610113143921,67.51241026666666,0,0,2.2218401233355203,7.43577744,0.1985639917353789,0.5659409780000001,410.6559804280598,7.4488960003103974,75.19731634313295,117.87994128468438,19.730321881404105,16.196090939842342,-0.22122698538334254,64.85110410054524,5.821066666666667,8625.968607900137,0,5.114581144880503e-4,0.004426666666666667,0.4800570035974185,0.029658666666666667,0.002415760012809187,0.004482000000000001 +2168,19.067992947249305,0,0,-0,2.560910390873493,7.589569926261902,0.10255466666666666,0.2582331324617068,0.13453466666666666,150.30800247192383,3.344421222666667,10.730808019638062,0,6.633740067481995,0,7.43651004632314,0.03748605892,11.49037218093872,0.6049959999999999,91.47207768758138,0.00656,4.709883530934651,59.32497733333333,0,417.38427734375,2684.7939253333334,1758.9595743815103,338.8655719240897,1901.4899393717449,468.1603678927171,0.27029607941706973,0.6561927,0.01586289967720707,0.011441529973333333,5.199801526032388e-4,0.004936140879999999,682.35498046875,432.6646961333333,232.5130615234375,319.1049133333334,671.3190663655599,169.31338133333335,6.883851687113444,5.001920186666666,16.7134002049764,0,19.752301057179768,66.69900773333333,0,0,2.193850100040436,7.34618976,0.1961599886417389,0.559122412,410.7929814656575,7.439189870575239,75.10286742404428,117.20183946904272,19.576164018100876,16.175093840982786,-0.22122698538334254,65.06930414835612,5.750933333333333,8534.111548867531,0,4.775001119317797e-4,0.004373333333333333,0.47182699541250867,0.029301333333333332,0.0023166400108796856,0.0044280000000000005 +2169,18.835456447892604,0,0,-0,2.54983919154864,7.593259930610657,0.10130399999999999,0.24705912296970686,0.132894,150.5330022176107,3.3036355980000005,10.585607926050821,0,6.589979966481526,0,7.419910033543904,0.037028911860000006,11.228972752888998,0.5976179999999999,90.33927981058757,0.00648,4.705423474311829,58.601501999999996,0,416.62227121988934,2652.052536,1751.03960164388,336.75851437998546,1909.6199239095051,466.5649971574322,0.26688407361507416,0.64819035,0.015416199419026574,0.01130199912,4.664369359185609e-4,0.00487594404,675.2209676106771,427.38829739999994,229.6230786641439,315.21339000000006,666.487070719401,167.24858400000002,6.812681635220845,4.94092116,16.618899822235107,0,19.499701182047527,65.8856052,0,0,2.165980080763499,7.25660208,0.19376699005564055,0.552303846,410.92797851562494,7.429483740840081,75.00841850495559,116.52373765340106,19.42200615479765,16.15409674212323,-0.22122698538334254,65.28470420837402,5.6808000000000005,8442.254489834926,0,4.457901037919025e-4,0.00432,0.4637160003185272,0.028944,0.0022215600474737585,0.004374000000000001 +2170,18.602919948535906,0,0,-0,2.5387679922237867,7.596889932950337,0.10005333333333333,0.23636511961619058,0.13125333333333333,150.755002339681,3.2628499733333336,10.442307790120443,0,6.546479980150859,0,7.403350035349528,0.0365717648,10.973273356755575,0.5902399999999999,89.21997896830241,0.0063999999999999994,4.701013445854187,57.87802666666666,0,415.8662465413411,2619.311146666667,1743.1495971679685,334.65145683588116,1917.6499125162761,464.96962642214726,0.2634860749046008,0.640188,0.01498979958705604,0.011162468266666666,4.18346736599536e-4,0.0048157472,668.0889689127604,422.1118986666666,226.74709828694662,311.3218666666667,661.6100667317709,165.1837866666667,6.74161159992218,4.879922133333333,16.524799823760986,0,19.248101075490315,65.07220266666667,0,0,2.138230085372925,7.1670144,0.19138498976826668,0.5454852800000001,411.05798848470045,7.419777611104923,74.9139695858669,115.8456358377594,19.26784829149442,16.133099643263673,-0.22122698538334254,65.49710337320964,5.610666666666667,8350.39743080232,0,4.1618009709054604e-4,0.004266666666666667,0.4557399998108546,0.028586666666666666,0.00213035000100111,0.004320000000000001 +2171,18.370383449179208,0,0,-0,2.5276967928989333,7.6004800001780195,0.09880266666666666,0.2261311151087284,0.12961266666666665,150.974001566569,3.2220643486666667,10.300907611846924,0,6.5032399495442705,0,7.386810064315796,0.03611461774,10.72317393620809,0.5828619999999999,88.11397933959961,0.006319999999999999,4.69662344455719,57.15455133333333,0,415.11424763997394,2586.5697573333337,1735.279581705729,332.5443992917769,1925.5799255371094,463.37425568686234,0.2601020783185959,0.6321856499999999,0.014584799607594809,0.011022937413333333,3.7516155862249434e-4,0.004755550359999999,660.9579722086588,416.83549993333327,223.88311513264975,307.4303433333334,656.6890614827474,163.11898933333336,6.670641581217448,4.8189231066666665,16.43110005060832,0,18.997501055399578,64.25880013333334,0,0,2.110580086708069,7.07742672,0.18901398902138075,0.5386667140000001,411.1859817504882,7.410071481369765,74.8195206667782,115.16753402211774,19.11369042819119,16.112102544404117,-0.22122698538334254,65.70660400390625,5.540533333333333,8258.540371769715,0,3.885310919334491e-4,0.004213333333333334,0.4478969946503639,0.028229333333333332,0.0020428499944197633,0.004266000000000001 +2172,18.137846949822507,0,0,-0,2.5166255935740804,7.603999932607015,0.097552,0.21633711084723473,0.127972,151.19000371297201,3.1812787240000002,10.161307573318481,0,6.460279981295268,0,7.370309988657634,0.035657470680000004,10.478574434916178,0.5754839999999999,87.02117983500163,0.00624,4.692273338635762,56.431076,0,414.36622365315753,2553.8283680000004,1727.4395650227862,330.43734174767263,1933.3999328613281,461.7788849515774,0.256732073922952,0.6241833,0.014199799469982585,0.01088340656,3.363864016137086e-4,0.00469535352,653.8309682210287,411.55910119999993,221.03213246663412,303.53882000000004,651.726064046224,161.05419200000003,6.5997815529505415,4.7579240799999996,16.33780002593994,0,18.74790096282959,63.4453976,0,0,2.083050092061361,6.98783904,0.18665299067894617,0.531848148,411.30997721354163,7.400365351634607,74.72507174768951,114.48943220647608,18.95953256488796,16.09110544554456,-0.22122698538334254,65.91320419311523,5.470400000000001,8166.683312737111,0,3.62714083166793e-4,0.0041600000000000005,0.44018599887688953,0.027872,0.0019589200092013925,0.0042120000000000005 +2173,17.90531045046581,0,0,-0,2.505554394249227,7.607479969660441,0.09630133333333332,0.20696510498722395,0.12633133333333335,151.40300114949545,3.1404930993333338,10.02360757191976,0,6.417579968770345,0,7.353840033213298,0.03520032362,10.239375034968058,0.5681059999999999,85.94147936503093,0.00616,4.687963406244914,55.707600666666664,0,413.6232147216797,2521.0869786666667,1719.6195780436196,328.33028420356834,1941.1099446614583,460.18351421629256,0.25337707499663037,0.61618095,0.013831099572901925,0.010743875706666666,3.015772551104116e-4,0.0046351566799999995,646.70697021484375,406.2827024666666,218.19314829508463,299.6472966666667,646.7220509847006,158.9893946666667,6.529041568438212,4.6969250533333335,16.244900067647297,0,18.499300797780354,62.63199506666667,0,0,2.055630087852478,6.898251360000001,0.18430199225743613,0.525029582,411.4309819539387,7.390659221899448,74.63062282860082,113.81133039083443,18.805374701584732,16.070108346685004,-0.22122698538334254,66.11690457661946,5.400266666666667,8074.826253704506,0,3.386070820852183e-4,0.0041066666666666665,0.43260499835014343,0.027514666666666666,0.0018784200074151158,0.004158000000000001 +2174,17.67277395110911,0,0,-0,2.494483194924374,7.610900004704793,0.09505066666666666,0.1979971006512642,0.12469066666666667,151.6140047709147,3.099707474666667,9.887627363204956,0,6.375139991442363,0,7.337400039037068,0.034743176560000005,10.005475521087646,0.5607279999999999,84.87468020121257,0.0060799999999999995,4.683683355649312,54.98412533333333,0,412.8842010498047,2488.3455893333335,1711.819590250651,326.2232266594641,1948.7099304199219,458.58814348100765,0.2500350698828697,0.6081786,0.01347759971395135,0.010604344853333333,2.7033213215569657e-4,0.00457495984,639.5889841715494,401.00630373333325,215.3661626180013,295.75577333333337,641.6790618896484,156.92459733333337,6.458431561787923,4.635926026666667,16.152399857838947,0,18.25160090128581,61.81859253333333,0,0,2.0283101201057434,6.80866368,0.18196099127332369,0.5182110160000001,411.54898579915357,7.380953092164289,74.53617390951213,113.13322857519276,18.651216838281503,16.049111247825447,-0.22122698538334254,66.3176040649414,5.330133333333333,7982.9691946719,0,3.16099074552767e-4,0.004053333333333333,0.4251509979367256,0.027157333333333332,0.0018011900150061895,0.004104000000000001 +2175,17.44023745175241,0,0,-0,2.483411995599521,7.614259918530782,0.0938,0.18941409761706987,0.12305,151.82200368245444,3.05892185,9.753467480341593,0,6.332970023155212,0,7.320979952812195,0.0342860295,9.776736179987589,0.5533499999999999,83.82058080037434,0.006,4.679433266321818,54.26065,0,412.1491978963216,2455.6042,1704.049591064453,324.11616911535987,1956.2099304199219,456.99277274572273,0.24670606727401415,0.60017625,0.013140799632916847,0.010464814,2.4229000943402448e-4,0.004514763,632.4759775797526,395.7299049999999,212.55017852783203,291.8642500000001,636.5980682373047,154.8598,6.387941559155782,4.574927,16.060400168100994,0,18.004901091257732,61.00519,0,0,2.0010900696118674,6.719076,0.17962998896837234,0.51139245,411.6629842122395,7.371246962429131,74.44172499042344,112.45512675955109,18.497058974978273,16.02811414896589,-0.22122698538334254,66.51540311177571,5.26,7891.112135639296,0,2.9508307003804174e-4,0.004,0.41782299677530926,0.026799999999999997,0.0017271200000929336,0.004050000000000001 +2176,17.20770095239571,0,0,-0,2.4723407962746675,7.617569963137309,0.09254933333333333,0.1812020925184091,0.12140933333333334,152.02700551350912,3.0181362253333335,9.621067126592001,0,6.291060010592143,0,7.30460000038147,0.03382888244,9.553046703338623,0.5459719999999999,82.7791805267334,0.00592,4.675213257471721,53.53717466666666,0,411.4181823730469,2422.862810666667,1696.2995503743487,322.0091115712556,1963.5999450683594,455.3974020104378,0.2433900684118271,0.5921738999999999,0.012819399669145545,0.010325283146666666,2.171279071869018e-4,0.0044545661599999994,625.3699696858724,390.45350626666664,209.74719365437826,287.97272666666674,631.4820658365885,152.79500266666668,6.317571560541789,4.513927973333333,15.968700170516968,0,17.759201049804688,60.19178746666667,0,0,1.9739800890286763,6.62948832,0.1773069923122724,0.504573884,411.7749811808268,7.361540832693973,74.34727607133476,111.77702494390944,18.342901111675047,16.007117050106334,-0.22122698538334254,66.71030298868816,5.189866666666667,7799.255076606691,0,2.754610710932563e-4,0.003946666666666667,0.41061700135469437,0.026442666666666666,0.0016560800043710817,0.003996 +2177,16.975164453039014,0,0,-0,2.4612695969498146,7.6208300193150835,0.09129866666666667,0.1733440893391768,0.11976866666666668,152.23000462849936,2.977350600666667,9.490407148996988,0,6.249400019645691,0,7.288260022799174,0.03337173538,9.334316968917847,0.5385939999999999,81.75028165181477,0.00584,4.67102324962616,52.813699333333325,0,410.69116973876953,2390.1214213333337,1688.5695800781248,319.90205402715134,1970.8799336751301,453.8020312751529,0.2400850678483645,0.58417155,0.012510099681094289,0.010185752293333333,1.9455281411258815e-4,0.00439436932,618.2709655761719,385.1771075333333,206.9552090962728,284.0812033333334,626.3300577799479,150.73020533333334,6.247351447741191,4.452928946666666,15.87749989827474,0,17.51430082321167,59.37838493333333,0,0,1.9469700654347737,6.539900640000001,0.1749939906100432,0.49775531800000006,411.88298543294263,7.351834702958815,74.25282715224607,111.09892312826778,18.188743248371818,15.986119951246778,-0.22122698538334254,66.9023043314616,5.1197333333333335,7707.398017574085,0,2.5714005702563253e-4,0.0038933333333333333,0.4035340026021004,0.026085333333333332,0.0015879400016274303,0.003942 +2178,16.742627953682316,0,0,-0,2.4501983976249613,7.624029994010925,0.09004799999999999,0.16582408547401428,0.11812800000000001,152.4290033976237,2.936564976,9.361467043558756,0,6.208009998003642,0,7.2719400723775225,0.03291458832,9.120437701543173,0.5312159999999999,80.73368072509766,0.0057599999999999995,4.666863123575847,52.09022399999999,0,409.96716054280597,2357.380032,1680.8595784505205,317.79499648304704,1978.0499369303386,452.20666053986804,0.2367920664449533,0.5761691999999999,0.012214599642902613,0.01004622144,1.7430073179032965e-4,0.00433417248,611.1799672444662,379.90070879999996,204.1742261250814,280.18968000000007,621.1450602213541,148.665408,6.177261471748352,4.39192992,15.786600033442179,0,17.27030070622762,58.5649824,0,0,1.9200500845909119,6.45031296,0.17268999417622885,0.49093675200000003,411.9879811604817,7.342128573223656,74.15837823315738,110.42082131262612,18.03458538506859,15.965122852387221,-0.22122698538334254,67.09140396118164,5.0496,7615.54095854148,0,2.4003505556417318e-4,0.00384,0.39656899869441986,0.025727999999999997,0.0015225799870677292,0.0038880000000000004 +2179,16.510091454325615,0,0,-0,2.4391271983001084,7.627169926961263,0.08879733333333333,0.15862907841801643,0.11648733333333335,152.62600580851236,2.895779351333333,9.234226942062378,0,6.166880051294963,0,7.255649964014689,0.032457441260000004,8.91130797068278,0.5238379999999999,79.72938092549641,0.00568,4.662733197212219,51.36674866666666,0,409.2481460571289,2324.638642666667,1673.1695963541665,315.6879389389428,1985.1099548339844,450.6112898045831,0.23351206382115683,0.56816685,0.011931799740220109,0.009906690586666666,1.5613565483363345e-4,0.00427397564,604.0989735921224,374.6243100666666,201.40423838297525,276.2981566666667,615.92706298828125,146.60061066666668,6.107311566670735,4.330930893333333,15.696199973424276,0,17.02720085779826,57.75157986666666,0,0,1.893230100472768,6.3607252800000005,0.1703959902127584,0.48411818600000006,412.0899759928385,7.332422443488498,74.06392931406869,109.74271949698445,17.88042752176536,15.944125753527665,-0.22122698538334254,67.27750396728516,4.979466666666667,7523.683899508876,0,2.2406505134616358e-4,0.0037866666666666665,0.38972300042708713,0.025370666666666666,0.0014598899967192362,0.0038340000000000006 +2180,16.277554954968917,0,0,-0,2.428055998975255,7.630269964536031,0.08754666666666666,0.1517440751194954,0.11484666666666668,152.81999969482422,2.8549937266666667,9.108666817347208,0,6.126000006993611,0,7.239400068918864,0.0320002942,8.706828435262045,0.5164599999999999,78.73708089192708,0.0056,4.658623178799947,50.643273333333326,0,408.53213755289715,2291.8972533333335,1665.499572753906,313.5808813948385,1992.0699462890625,449.0159190692982,0.23024306446313858,0.5601645,0.0116585996778061,0.009767159733333333,1.3984558972879313e-4,0.0042137788,597.0259755452474,369.3479113333333,198.64525604248047,272.4066333333334,610.6780598958334,144.53581333333335,6.037501533826192,4.269931866666666,15.606200138727823,0,16.784900665283203,56.93817733333333,0,0,1.8665100832780201,6.2711376,0.16810999189813933,0.47729962000000004,412.18898773193354,7.3227163137533395,73.96948039498,109.0646176813428,17.72626965846213,15.923128654668108,-0.22122698538334254,67.46080334981282,4.9093333333333335,7431.82684047627,0,2.0915504865115508e-4,0.0037333333333333333,0.3829919993877411,0.025013333333333332,0.0013997700104179482,0.0037800000000000004 +2181,16.04501845561222,0,0,-0,2.416984799650402,7.633299986521403,0.086296,0.14515707517663637,0.11320600000000001,153.01200230916342,2.8142081020000003,8.984776735305786,0,6.08538003762563,0,7.223170042037964,0.031543147140000005,8.506909052530924,0.5090819999999999,77.75688298543294,0.00552,4.654553174972534,49.91979799999999,0,407.82012430826825,2259.1558640000003,1657.8595886230466,311.4738238507342,1998.9299418131511,447.4205483340133,0.22698606302340826,0.5521621499999999,0.011394399606312314,0.00962762888,1.2523852759234919e-4,0.00415358196,589.9629770914713,364.07151259999995,195.89626693725586,268.51511000000005,605.4000549316406,142.47101600000002,5.967851400375366,4.208932839999999,15.516499996185303,0,16.543500741322834,56.1247748,0,0,1.8398700853188832,6.18154992,0.1658339910209179,0.470481054,412.2849782307942,7.313010184018181,73.8750314758913,108.38651586570114,17.5721117951589,15.902131555808552,-0.22122698538334254,67.64110374450684,4.8392,7339.969781443665,0,1.9523504306562245e-4,0.00368,0.3763740037878354,0.024655999999999997,0.0013421100059834619,0.003726 +2182,15.81248195625552,0,0,-0,2.405913600325549,7.636289993921916,0.08504533333333333,0.13885407149791718,0.11156533333333335,153.20000457763672,2.7734224773333334,8.862506786982218,0,6.045010010401408,0,7.206979910532634,0.031086000080000002,8.311439673105875,0.5017039999999999,76.78838221232097,0.0054399999999999995,4.650503118832906,49.19632266666666,0,407.11111704508465,2226.414474666667,1650.2195841471353,309.36676630663,2005.669942220052,445.8251775987284,0.22374006112416586,0.5441598,0.011140899655098716,0.009488098026666666,1.1214247266858972e-4,0.00409338512,582.9109700520834,358.7951138666666,193.15928649902344,264.6235866666667,600.0930684407552,140.4062186666667,5.898341417312622,4.147933813333333,15.427299976348877,0,16.302900950113933,55.311372266666666,0,0,1.8133300840854645,6.09196224,0.163565993309021,0.46366248800000004,412.37798055013013,7.303304054283023,73.78058255680261,107.70841405005947,17.41795393185567,15.881134456948995,-0.22122698538334254,67.81850369771321,4.769066666666667,7248.1127224110605,0,1.8223904286666462e-4,0.003626666666666667,0.369868998726209,0.024298666666666666,0.0012868100117581587,0.0036720000000000004 +2183,15.57994545689882,0,0,-0,2.3948424010006955,7.639219919840495,0.08379466666666666,0.13282406826814017,0.10992466666666667,153.38600413004556,2.732636852666667,8.74186666806539,0,6.0049000183741255,0,7.190820097923279,0.030628853020000003,8.120329936345419,0.49432599999999993,75.83168284098308,0.00536,4.646483143170674,48.47284733333333,0,406.40510813395184,2193.6730853333333,1642.6095682779946,307.25970876252575,2012.2999369303386,444.2298068634435,0.22050506249070168,0.5361574499999999,0.010897399702419838,0.009348567173333332,5.156396279441348e-5,0.00403318828,575.8699747721354,353.5187151333333,190.4312947591146,260.7320633333334,594.7590535481771,138.34142133333336,5.828991373380025,4.086934786666666,15.338500022888184,0,16.063100814819336,54.49796973333333,0,0,1.7868700722853343,6.00237456,0.16130699341495833,0.456843922,412.4679794311523,7.293597924547865,73.68613363771394,107.0303122344178,17.263796068552445,15.86013735808944,-0.22122698538334254,67.99300384521484,4.698933333333334,7156.255663378455,0,1.7010704080651826e-4,0.0035733333333333333,0.3634739990035693,0.023941333333333332,0.0012337800095944356,0.003618 +2184,15.347408957542122,0,0,-0,2.3837712016758426,7.6420899629592896,0.08254399999999999,0.12705406608680883,0.108284,153.5690015157064,2.691851228,8.62282657623291,0,5.96504004796346,0,7.174690008163452,0.030171705960000003,7.933500488599141,0.48694799999999994,74.88648287455241,0.00528,4.642483154932658,47.749371999999994,0,405.70309193929035,2160.931696,1635.01958211263,305.15265121842145,2018.8299458821614,442.6344361281586,0.21727906167507172,0.5281551,0.01066099953216811,0.009209036319999999,0,0.00397299144,568.8399759928385,348.24231639999994,187.7143122355143,256.84054000000003,589.3990529378256,136.27662400000003,5.759801348050435,4.025935759999999,15.250099897384644,0,15.824100732803345,53.6845672,0,0,1.7605100969473522,5.91278688,0.15905599296092987,0.45002535600000004,412.55498504638666,7.283891794812707,73.59168471862525,106.35221041877615,17.109638205249215,15.839140259229884,-0.22122698538334254,68.16460291544597,4.6288,7064.39860434585,0,1.587800373575495e-4,0.00352,0.35718800127506256,0.023584,0.0011829100064157199,0.0035640000000000003 +2185,15.114872458185422,0,0,-0,2.3727000023509897,7.644909938176473,0.08129333333333333,0.12153306230902672,0.10664333333333334,153.7500025431315,2.6510656033333335,8.505366404851278,0,5.925429979960124,0,7.158590038617452,0.029714558900000004,7.750840902328491,0.47956999999999994,73.9527816772461,0.0052,4.638513008753459,47.02589666666666,0,405.00408935546875,2128.190306666667,1627.4395853678384,303.04559367431716,2025.2499491373699,441.0390653928737,0.21406406164169312,0.5201527499999999,0.010433399661754569,0.009069505466666666,0,0.0039127946,561.8229777018229,342.96591766666666,185.0063222249349,252.9490166666667,584.0130513509115,134.2118266666667,5.69076132774353,3.964936733333333,15.162200053532919,0,15.5859006245931,52.871164666666665,0,0,1.7342300713062286,5.8231991999999995,0.15681399405002594,0.44320679,412.6389795939127,7.274185665077549,73.49723579953655,105.6741086031345,16.955480341945986,15.818143160370328,-0.22122698538334254,68.3333028157552,4.558666666666667,6972.541545313245,0,1.48206033676009e-4,0.003466666666666667,0.35100800544023514,0.023226666666666666,0.0011341400095261633,0.00351 +2186,14.882335958828723,0,0,-0,2.3616288030261363,7.647680044174194,0.08004266666666666,0.11625206097960472,0.10500266666666667,153.92700068155924,2.610279978666667,8.389456272125244,0,5.8860699733098345,0,7.142520030339559,0.029257411840000004,7.572281360626221,0.47219199999999995,73.03038279215495,0.0051199999999999996,4.634563048680623,46.30242133333333,0,404.3080749511719,2095.4489173333336,1619.8795776367185,300.9385361302129,2031.5599365234375,439.44369465758876,0.21086005742351213,0.5121503999999999,0.010214199622472128,0.008929974613333334,0,0.00385259776,554.8169860839844,337.6895189333333,182.30934143066406,249.05749333333335,578.6030476888021,132.14702933333334,5.621881326039632,3.9039377066666665,15.074600060780844,0,15.348400751749674,52.057762133333334,0,0,1.7080300748348236,5.73361152,0.15457899123430252,0.436388224,412.72098286946607,7.2644795353423905,73.40278688044786,104.99600678749283,16.801322478642756,15.797146061510771,-0.22122698538334254,68.49900309244792,4.488533333333334,6880.68448628064,0,1.3833503301915093e-4,0.0034133333333333338,0.34493299822012585,0.022869333333333332,0.0010873600064466398,0.003456 +2187,14.649799459472025,0,0,-0,2.350557603701283,7.650389949480693,0.078792,0.11119805773099263,0.10336200000000001,154.10200373331705,2.569494354,8.27509625752767,0,5.846959948539734,0,7.126479983329773,0.028800264780000005,7.397731741269429,0.46481399999999995,72.1191832224528,0.005039999999999999,4.630643010139465,45.578945999999995,0,403.61606852213544,2062.7075280000004,1612.3395894368487,298.8314785861087,2037.7599589029949,437.84832392230385,0.2076660580933094,0.50414805,0.010000299662351608,0.00879044376,0,0.0037924009200000003,547.823974609375,332.4131202,179.6213493347168,245.16597000000002,573.1700439453125,130.082232,5.553151249885559,3.8429386799999996,14.98740005493164,0,15.111700852711996,51.2443596,0,0,1.6819200615088146,5.64402384,0.15235299244523048,0.429569658,412.79898071289057,7.254773405607232,73.30833796135917,104.31790497185116,16.647164615339527,15.776148962651215,-0.22122698538334254,68.66190401713054,4.4184,6788.827427248035,0,1.291200278501492e-4,0.0033600000000000006,0.3389610027273496,0.022512,0.0010425000024649005,0.003402 +2188,14.417262960115325,0,0,-0,2.33948640437643,7.653049985567729,0.07754133333333332,0.10636405584712823,0.10172133333333333,154.27400334676108,2.5287087293333337,8.162256240844727,0,5.808090051015218,0,7.110480109850566,0.028343117720000005,7.227102279663086,0.45743599999999995,71.2189826965332,0.004959999999999999,4.626743038495381,44.85547066666666,0,402.92606353759766,2029.966138666667,1604.8095703124998,296.7244210420044,2043.8499552408855,436.252953187019,0.20448205744226775,0.4961456999999999,0.009793939689795176,0.008650912906666667,0,0.00373220408,540.8439737955729,327.13672146666664,176.94236501057944,241.27444666666668,567.7150472005209,128.01743466666667,5.4846012989679975,3.781939653333333,14.900600035985311,0,14.875800768534342,50.430957066666664,0,0,1.6558800637722015,5.55443616,0.15013399347662926,0.422751092,412.8749796549479,7.245067275872074,73.2138890422705,103.63980315620951,16.4930067520363,15.75515186379166,-0.22122698538334254,68.82190259297688,4.3482666666666665,6696.9703682154295,0,1.2051802756711065e-4,0.003306666666666667,0.33309000233809155,0.022154666666666666,9.994830179493874e-4,0.003348 +2189,14.184726460758625,0,0,-0,2.328415205051577,7.655649979909261,0.07629066666666666,0.10173905206223328,0.10008066666666666,154.44300333658853,2.4879231046666668,8.050916194915771,0,5.769479910532634,0,7.094510038693746,0.027885970660000006,7.060292601585388,0.45005799999999996,70.32978439331055,0.00488,4.622862815856934,44.13199533333333,0,402.2390543619792,1997.2247493333334,1597.2995808919268,294.6173634979001,2049.8099365234375,434.6575824517341,0.20130705709258714,0.4881433499999999,0.009594459707538286,0.008511382053333334,0,0.00367200724,533.8779805501302,321.8603227333333,174.27337646484375,237.38292333333334,562.2390441894531,125.95263733333334,5.41620131333669,3.7209406266666663,14.814300060272217,0,14.640600681304932,49.61755453333333,0,0,1.6299300789833069,5.46484848,0.14792299146453539,0.415932526,412.9469782511393,7.235361146136916,73.1194401231818,102.96170134056786,16.33884888873307,15.734154764932104,-0.22122698538334254,68.97890345255534,4.278133333333334,6605.113309182825,0,1.1248702624773917e-4,0.0032533333333333338,0.32731999705235165,0.021797333333333335,9.582300020459419e-4,0.003294 +2190,13.952189961401928,0,0,-0,2.317344005726724,7.6581999858220415,0.07504,0.09731354999045531,0.09844,154.61000315348306,2.4471374800000003,7.94105605284373,0,5.7311000029246015,0,7.078569968541463,0.027428823600000006,6.897243022918701,0.44267999999999996,69.45138359069824,0.0048,4.619012951850891,43.408519999999996,0,401.55604298909503,1964.4833600000002,1589.7995808919268,292.51030595379586,2055.6599324544272,433.06221171644916,0.1981430562833945,0.48014099999999993,0.00939910967523853,0.0083718512,0,0.0036118104,526.9249827067057,316.58392399999997,171.61338806152344,233.4914,556.7430470784506,123.88784000000001,5.347971200942993,3.6599416,14.728300094604492,0,14.40600069363912,48.804152,0,0,1.6040500700473785,5.3752607999999995,0.14571999261776605,0.40911396,413.01698557535804,7.225655016401758,73.02499120409311,102.28359952492619,16.184691025429842,15.713157666072547,-0.22122698538334254,69.13300323486328,4.208,6513.25625015022,0,1.049910242727492e-4,0.0032000000000000006,0.3216480016708374,0.02144,9.186719980789348e-4,0.00324 +2191,13.71965346204523,0,0,-0,2.3062728064018705,7.660699923833211,0.07378933333333333,0.0930802480628093,0.09679933333333333,154.77400334676108,2.406351855333334,7.832665920257568,0,5.69297997156779,0,7.062659939130147,0.026971676540000007,6.737873435020447,0.43530199999999997,68.5836836496989,0.004719999999999999,4.615172902743022,42.68504466666666,0,400.87503306070965,1931.741970666667,1582.3195699055987,290.40324840969157,2061.419962565104,431.46684098116424,0.19498605653643608,0.47213864999999994,0.00920763968800505,0.008232320346666667,0,0.0035516135600000003,519.9859720865885,311.30752526666663,168.96240234375,229.59987666666666,551.2270456949869,121.82304266666668,5.279911200205485,3.5989425733333333,14.642699956893921,0,14.172200759251913,47.99074946666667,0,0,1.5782500902811687,5.285673119999999,0.14352399110794067,0.402295394,413.08498382568354,7.2159488866666,72.93054228500442,101.60549770928453,16.030533162126613,15.69216056721299,-0.22122698538334254,69.28430302937825,4.137866666666667,6421.3991911176145,0,1.6801621313788928e-5,0.0031466666666666674,0.3160720020532608,0.021082666666666666,8.807390064854795e-4,0.003186 +2192,13.48711696268853,0,0,-0,2.2952016070770176,7.6631399393081665,0.07253866666666667,0.08903024531900883,0.09515866666666667,154.93400192260742,2.365566230666667,7.725725809733073,0,5.655089974403381,0,7.046779990196228,0.026514529480000007,6.582093755404155,0.42792399999999997,67.72658348083496,0.00464,4.611362894376119,41.96156933333333,0,400.19702402750653,1899.0005813333335,1574.8495890299478,288.29619086558733,2067.0899658203125,429.8714702458793,0.19183805212378502,0.46413629999999995,0.009022129621977607,0.008092789493333334,0,0.0034914167200000004,513.06097412109375,306.0311265333333,166.31941095987955,225.70835333333332,545.6930491129557,119.75824533333335,5.212011178334554,3.5379435466666664,14.557600100835165,0,13.939100742340088,47.17734693333333,0,0,1.5525300701459248,5.196085439999999,0.14133499066034952,0.395476828,413.14898427327466,7.206242756931442,72.83609336591573,100.92739589364287,15.876375298823385,15.671163468353434,-0.22122698538334254,69.43260320027669,4.067733333333334,6329.54213208501,0,0,0.003093333333333334,0.31059199819962185,0.02072533333333333,8.443640011440342e-4,0.003132 +2193,13.254580463331832,0,0,-0,2.2841304077521642,7.665529886881511,0.07128799999999999,0.08515584468841553,0.093518,155.09300104777017,2.3247806060000005,7.620205720265706,0,5.61745007832845,0,7.030940016110738,0.026057382420000004,6.42984406153361,0.420546,66.87988408406575,0.00456,4.607572873433431,41.238094,0,399.5210215250651,1866.2591920000002,1567.3995869954424,286.18913332148304,2072.6399739583335,428.2760995105944,0.18870005259911218,0.4561339499999999,0.008842189718658725,0.00795325864,0,0.00343121988,506.14998118082684,300.75472779999996,163.6864242553711,221.81683,540.1420440673828,117.693448,5.144281188646953,3.47694452,14.472800016403198,0,13.706600904464722,46.3639444,0,0,1.5268900692462921,5.10649776,0.1391539933780829,0.388658262,413.21098327636713,7.1965366271962825,72.74164444682704,100.24929407800121,15.722217435520156,15.650166369493878,-0.22122698538334254,69.57800420125325,3.9976000000000003,6237.685073052405,0,0,0.0030400000000000006,0.3052049974600474,0.020368,8.09485005447641e-4,0.003078 +2194,13.022043963975133,0,0,-0,2.2730592084273114,7.66786007086436,0.07003733333333333,0.08144934164981048,0.09187733333333334,155.24800618489584,2.2839949813333336,7.516105612119039,0,5.580040017763774,0,7.0151199499766035,0.025600235360000004,6.281044403711955,0.413168,66.04358418782552,0.00448,4.603792866071065,40.514618666666664,0,398.84800720214844,1833.5178026666667,1559.9595947265623,284.0820757773788,2078.0599161783853,426.6807287753095,0.18557105089227358,0.4481315999999999,0.00866511968585352,0.007813727786666667,0,0.00337102304,499.2539800008138,295.4783290666666,161.0614331563314,217.92530666666667,534.5730489095052,115.62865066666667,5.076721111933391,3.415945493333333,14.388500054677328,0,13.474900722503662,45.55054186666666,0,0,1.5013100604216258,5.01691008,0.1369789938131968,0.381839696,413.2699864705403,7.186830497461124,72.64719552773835,99.57119226235955,15.568059572216928,15.629169270634321,-0.22122698538334254,69.72060330708821,3.9274666666666667,6145.828014019799,0,0,0.002986666666666667,0.29990999897321063,0.020010666666666666,7.760390047527229e-4,0.0030239999999999998 +2195,12.789507464618435,0,0,-0,2.261988009102458,7.670139869054158,0.06878666666666666,0.07790354018410046,0.09023666666666667,155.4010009765625,2.243209356666667,7.413395643234253,0,5.542880018552144,0,6.999340017636617,0.025143088300000005,6.135594765345256,0.40579,65.21748542785645,0.004399999999999999,4.600042819976807,39.79114333333333,0,398.1780064900716,1800.7764133333335,1552.529581705729,281.9750182332745,2083.3799641927085,425.08535804002463,0.18245105197032294,0.4401292499999999,0.008493089815601707,0.007674196933333334,0,0.0033108262000000003,492.37198130289715,290.2019303333333,158.44444783528647,214.03378333333333,528.9890391031901,113.56385333333334,5.009321093559265,3.3549464666666666,14.304499944051107,0,13.243700742721558,44.73713933333333,0,0,1.4758100708325703,4.9273223999999995,0.13480999444921812,0.37502113,413.32598114013666,7.177124367725966,72.55274660864967,98.89309044671789,15.413901708913698,15.608172171774765,-0.22122698538334254,69.86020215352376,3.8573333333333335,6053.970954987195,0,0,0.002933333333333334,0.294705996910731,0.01965333333333333,7.439689943566918e-4,0.00297 +2196,12.556970965261737,0,0,-0,2.2509168097776047,7.672370036443074,0.067536,0.07451163791120052,0.08859600000000001,155.5510050455729,2.2024237320000006,7.312065561612447,0,5.505949974060059,0,6.983590046564738,0.024685941240000005,5.993445158004761,0.398412,64.40148480733235,0.00432,4.596302787462871,39.067668,0,397.50998942057294,1768.0350240000002,1545.1095784505205,279.8679606891702,2088.5899454752603,423.4899873047397,0.1793400483826796,0.4321268999999999,0.008325759787112474,0.00753466608,0,0.0032506293600000004,485.5049819946289,284.9255316,155.83545939127603,210.14226,523.3900553385416,111.49905600000001,4.9421011209487915,3.29394744,14.220999876658121,0,13.013300657272339,43.9237368,0,0,1.4503800769646962,4.837734719999999,0.13264699404438338,0.36820256399999995,413.37998199462885,7.167418237990808,72.45829768956098,98.21498863107624,15.259743845610469,15.58717507291521,-0.22122698538334254,69.99690373738606,3.7872000000000003,5962.11389595459,0,0,0.0028800000000000006,0.2895909994840622,0.019295999999999997,7.132189978923028e-4,0.002916 +2197,12.324434465905037,0,0,-0,2.2398456104527518,7.674540003140767,0.066285333333333335,0.07126673683524132,0.08695533333333334,155.69800313313803,2.1616381073333337,7.212085485458374,0,5.469259977340698,0,6.967880010604858,0.024228794180000006,5.854525605837504,0.391034,63.59548568725586,0.00424,4.592592716217041,38.344192666666665,0,396.8449885050456,1735.2936346666668,1537.7095845540362,277.760903145066,2093.679972330729,421.8946165694548,0.1762370504438877,0.42412454999999993,0.00816047991005083,0.007395135226666667,0,0.0031904325200000005,478.6539815266927,279.64913286666666,153.235471089681,206.25073666666668,517.7770487467448,109.43425866666668,4.875041127204895,3.2329484133333333,14.137800057729086,0,12.783400694529215,43.11033426666666,0,0,1.4250200688838959,4.748147039999999,0.13049199432134628,0.361383998,413.4309819539387,7.15771210825565,72.36384877047229,97.53688681543457,15.105585982307241,15.566177974055654,-0.22122698538334254,70.13070233662923,3.7170666666666667,5870.256836921984,0,0,0.002826666666666667,0.28456299751996994,0.018938666666666666,6.837339945680773e-4,0.002862 +2198,12.09189796654834,0,0,-0,2.2287744111278984,7.676659981409709,0.06503466666666666,0.06816273555159569,0.08531466666666668,155.84200286865234,2.1208524826666673,7.1134553750356035,0,5.432810028394063,0,6.952189962069194,0.023771647120000003,5.718745867411296,0.383656,62.79938570658366,0.00416,4.588892738024394,37.62071733333333,0,396.1819839477539,1702.5522453333335,1530.3195800781248,275.6538456009617,2098.6699829101562,420.2992458341699,0.17314104860027632,0.4161221999999999,0.00799713966747125,0.0072556043733333336,0,0.00313023568,471.81698354085285,274.3727341333333,150.64347966512045,202.35921333333334,512.150042215983,107.36946133333333,4.808151086171468,3.171949386666667,14.055000066757202,0,12.554200728734335,42.29693173333333,0,0,1.3997300664583843,4.65855936,0.1283429947992166,0.35456543199999996,413.47998555501295,7.148005978520491,72.2693998513836,96.85878499979292,14.951428119004012,15.545180875196097,-0.22122698538334254,70.26160303751628,3.6469333333333336,5778.399777889379,0,0,0.002773333333333334,0.2796210050582886,0.01858133333333333,6.554630041743318e-4,0.002808 +2199,11.85936146719164,0,0,-0,2.2177032118030455,7.678719957669576,0.063784,0.06519353451828162,0.08367400000000001,155.98400370279947,2.0800668580000004,7.016145348548889,0,5.396590034166972,0,6.936540007591248,0.023314500060000003,5.586046099662781,0.376278,62.013086001078285,0.00408,4.585202693939209,36.897242,0,395.52098083496094,1669.810856,1522.9395853678384,273.54678805685745,2103.539998372396,418.70387509888496,0.1700530449549357,0.4081198499999999,0.0078379597592478,0.00711607352,0,0.0030700388400000003,464.9959767659505,269.0963354,148.05848948160806,198.46769,506.51004282633465,105.304664,4.74143115679423,3.11095036,13.972700039545694,0,12.325600624084473,41.48352919999999,0,0,1.3745000660419464,4.56897168,0.1262009913722674,0.347746866,413.5259806315104,7.138299848785333,72.1749509322949,96.18068318415125,14.797270255700784,15.52418377633654,-0.22122698538334254,70.38970375061035,3.5768,5686.542718856775,0,0,0.00272,0.27476399888594943,0.018223999999999997,6.283569964580238e-4,0.002754 +2200,11.626824967834942,0,0,-0,2.206632012478192,7.680730064709981,0.06253333333333333,0.062353131671746574,0.08203333333333335,156.1230036417643,2.039281233333334,6.920145233472188,0,5.360599994659424,0,6.920919934908549,0.022857353000000004,5.456366419792175,0.3689,61.236385663350426,0.004,4.581542770067851,36.173766666666666,0,394.8629633585612,1637.0694666666668,1515.5795796712237,271.43973051275316,2108.3099568684897,417.10850436360005,0.1669730469584465,0.4001174999999999,0.007682669791392982,0.006976542666666667,0,0.0030098420000000004,458.18898010253906,263.81993666666665,145.48149998982748,194.57616666666667,500.85803985595703,103.23986666666667,4.674881060918172,3.0499513333333335,13.890700101852417,0,12.097600618998209,40.67012666666666,0,0,1.34934006134669,4.479384,0.12406399349371593,0.34092829999999996,413.56898244222,7.1285937190501745,72.08050201320621,95.5025813685096,14.643112392397555,15.503186677476984,-0.22122698538334254,70.51480229695638,3.506666666666667,5594.685659824169,0,0,0.002666666666666667,0.2699900045990944,0.017866666666666663,6.023659952916205e-4,0.0027 +2201,11.394288468478242,0,0,-0,2.195560813153339,7.682679971059163,0.061282666666666666,0.059636130618552365,0.08039266666666668,156.25900268554688,1.9984956086666672,6.825425187746684,0,5.324839949607849,0,6.905330061912537,0.022400205940000004,5.329626758893331,0.361522,60.46918551127116,0.00392,4.577892740567525,35.45029133333333,0,394.20696512858075,1604.3280773333336,1508.2195841471353,269.3326729686489,2112.959920247396,415.51313362831513,0.1639020455380281,0.3921151499999999,0.007528679755826791,0.0068370118133333335,0,0.0029496451600000005,451.39898681640625,258.5435379333333,142.9125124613444,190.68464333333333,495.1950327555339,101.17506933333334,4.608500997225444,2.9889523066666666,13.809100071589151,0,11.870200475056967,39.85672413333333,0,0,1.324250062306722,4.389796319999999,0.12193499381343524,0.334109734,413.6099828084309,7.118887589315016,71.98605309411752,94.82447955286793,14.488954529094325,15.482189578617428,-0.22122698538334254,70.63700167338054,3.4365333333333337,5502.828600791564,0,0,0.002613333333333334,0.2652979989846547,0.017509333333333328,5.774470046162605e-4,0.0026460000000000003 +2202,11.161751969121545,0,0,-0,2.184489613828486,7.684580008188884,0.060031999999999995,0.05703712937732538,0.07875200000000002,156.39300537109375,1.9577099840000005,6.731995066006978,0,5.28932003180186,0,6.889769951502482,0.021943058880000005,5.2057870626449585,0.354144,59.71148554484049,0.00384,4.574262698491414,34.726816,0,393.5519536336263,1571.586688,1500.8795878092446,267.2256154245446,2117.5099283854165,413.9177628930302,0.16083904231588045,0.3841127999999999,0.007378249739607175,0.00669748096,0,0.00288944832,444.6229832967122,253.26713919999997,140.35152180989584,186.79312,489.52003987630206,99.11027200000001,4.542290965716044,2.92795328,13.72790010770162,0,11.643400430679321,39.0433216,0,0,1.2992200553417206,4.300208639999999,0.11981099471449852,0.32729116799999997,413.64897918701166,7.109181459579858,71.89160417502883,94.14637773722627,14.334796665791098,15.461192479757871,-0.22122698538334254,70.75640106201172,3.3664,5410.97154175896,0,0,0.00256,0.2606869985659917,0.017151999999999997,5.535550056568658e-4,0.002592 +2203,10.929215469764845,0,0,-0,2.1734184145036326,7.686429937680562,0.05878133333333333,0.054551128298044205,0.07711133333333334,156.52300135294595,1.9169243593333336,6.639815052350362,0,5.2540199756622314,0,6.874250014623006,0.021485911820000002,5.084757407506307,0.34676599999999996,58.96308581034342,0.00376,4.570642630259196,34.00334066666666,0,392.8999506632487,1538.8452986666668,1493.53960164388,265.1185578804404,2121.9499308268228,412.3223921577453,0.1577830451230208,0.3761104499999999,0.0072311597953860956,0.006557950106666667,0,0.0028292514800000003,437.8629862467448,247.99074046666664,137.79653294881186,182.90159666666668,483.83603922526044,97.04547466666666,4.476251006126404,2.866954253333333,13.647100130716959,0,11.417200644810995,38.22991906666666,0,0,1.2742600639661152,4.21062096,0.11769399419426918,0.320472602,413.68498229980463,7.0994753298447,71.79715525594014,93.46827592158462,14.180638802487868,15.440195380898315,-0.22122698538334254,70.872802734375,3.296266666666667,5319.114482726354,0,0,0.002506666666666667,0.25615399827559787,0.016794666666666663,5.306479918848103e-4,0.0025380000000000003 +2204,10.696678970408147,0,0,-0,2.1623472151787797,7.688219984372457,0.05753066666666666,0.052173126178483166,0.07547066666666667,156.65100224812826,1.876138734666667,6.548874934514363,0,5.218949953715007,0,6.858749945958455,0.021028764760000002,4.966477672259013,0.33938799999999997,58.223886489868164,0.00368,4.56703261534373,33.279865333333326,0,392.2499415079753,1506.1039093333334,1486.2195841471353,263.0115003363361,2126.2699584960938,410.7270214224604,0.15473604202270508,0.3681080999999999,0.00708484979501615,0.006418419253333333,0,0.00276905464,431.1189829508464,242.7143417333333,135.24954096476236,179.01007333333334,478.1420415242513,94.98067733333333,4.410370906194051,2.8059552266666667,13.566799799601236,0,11.191600640614828,37.41651653333333,0,0,1.2493600646654766,4.12103328,0.11558199487626553,0.31365403599999997,413.7189839680989,7.089769200109542,71.70270633685145,92.79017410594295,14.026480939184639,15.419198282038758,-0.22122698538334254,70.98640314737956,3.2261333333333333,5227.257423693749,0,0,0.0024533333333333334,0.251700001458327,0.01643733333333333,5.086850045093646e-4,0.002484 +2205,10.464142471051447,0,0,-0,2.1512760158539264,7.68995996316274,0.05628,0.04989842573801676,0.07383,156.77600224812826,1.8353531100000002,6.459164937337239,0,5.184110005696614,0,6.843290050824483,0.020571617700000003,4.8509078820546465,0.33200999999999997,57.49378617604574,0.0036,4.563442587852478,32.55638999999999,0,391.60193888346356,1473.3625200000001,1478.9095967610674,260.90444279223186,2130.4899698893228,409.13165068717547,0.15169304236769676,0.3601057499999999,0.0069416197172055645,0.0062788884,0,0.0027088578,424.38998158772785,237.43794299999996,132.70955022176108,175.11855,472.4390360514323,92.91588,4.344660957654317,2.7449562,13.48669981956482,0,10.966500520706177,36.603114,0,0,1.224520057439804,4.0314456,0.11347599451740582,0.30683547,413.74997711181635,7.080063070374384,71.60825741776276,92.11207229030128,13.872323075881411,15.398201183179204,-0.22122698538334254,71.09700139363606,3.156,5135.400364661144,0,0,0.0024000000000000002,0.24732200056314468,0.016079999999999997,4.876280023988026e-4,0.0024300000000000003 +2206,10.231605971694748,0,0,-0,2.140204816529073,7.691649953524272,0.05502933333333333,0.04772272457679113,0.07218933333333334,156.89900334676108,1.7945674853333335,6.370664755503337,0,5.149499972661336,0,6.827870051066081,0.020114470640000003,4.737988233566284,0.324632,56.77278677622477,0.0035199999999999997,4.559872547785441,31.83291466666666,0,390.9559275309245,1440.6211306666669,1471.6095784505205,258.79738524812757,2134.5899454752603,407.5362799518906,0.14865904425581297,0.3521033999999999,0.006801269793262084,0.006139357546666667,0,0.0026486609600000002,417.67698669433594,232.16154426666662,130.17756017049155,171.22702666666666,466.7270329793294,90.85108266666667,4.279120922088623,2.683957173333333,13.407099962234497,0,10.742000579833984,35.78971146666667,0,0,1.199740062157313,3.9418579199999995,0.11137599435945351,0.30001690400000003,413.77898406982416,7.0703569406392255,71.51380849867408,91.43397047465963,13.718165212578182,15.377204084319647,-0.22122698538334254,71.20480219523112,3.085866666666667,5043.543305628539,0,0,0.002346666666666667,0.24301999807357788,0.015722666666666663,4.674399994352522e-4,0.0023760000000000005 +2207,9.99906947233805,0,0,-0,2.12913361720422,7.693279981613159,0.05377866666666666,0.045641523165007435,0.07054866666666668,157.01800282796225,1.7537818606666669,6.28336485226949,0,5.115109999974568,0,6.812470038731893,0.019657323580000004,4.62764847278595,0.317254,56.06058692932129,0.00344,4.556302507718404,31.109439333333324,0,390.3119303385417,1407.8797413333334,1464.3095499674478,256.69032770402333,2138.5999552408853,405.9409092166057,0.14563204099734625,0.3441010499999999,0.006661289759601156,0.005999826693333333,0,0.00258846412,410.9789861043294,226.8851455333333,127.65157127380371,167.33550333333335,461.0080337524414,88.78628533333334,4.213750878969829,2.6229581466666665,13.327900012334188,0,10.518000523249308,34.976308933333335,0,0,1.1750200390815735,3.8522702399999997,0.10928199502329032,0.293198338,413.80498504638666,7.060650810904067,71.41935957958539,90.75586865901798,13.564007349274952,15.35620698546009,-0.22122698538334254,71.30970128377278,3.0157333333333334,4951.686246595934,0,0,0.0022933333333333334,0.23879100009799004,0.015365333333333332,4.4808499903107685e-4,0.0023220000000000003 +2208,9.76653297298135,0,0,-0,2.1180624178793668,7.694849967956543,0.052528,0.043650922986368336,0.068908,157.13500213623047,1.712996236,6.197244644165039,0,5.080940008163452,0,6.797110040982564,0.01920017652,4.519838770230611,0.30987599999999993,55.35718695322672,0.0033599999999999997,4.552752534548442,30.38596399999999,0,389.6689224243164,1375.1383520000002,1457.029571533203,254.58327015991907,2142.47998046875,404.3455384813208,0.14261204128464064,0.33609869999999986,0.006521659825618069,0.00586029584,0,0.00252826728,404.29698435465497,221.60874679999995,125.13257789611816,163.44398,455.2810312906901,86.721488,4.148540894190471,2.5619591199999996,13.249099969863892,0,10.294600566228231,34.1629064,0,0,1.1503600577513378,3.7626825599999996,0.10719299502670765,0.28637977200000003,413.828982035319,7.050944681168909,71.3249106604967,90.07776684337631,13.409849485971723,15.335209886600534,-0.22122698538334254,71.41170183817546,2.9456,4859.829187563329,0,0,0.0022400000000000002,0.23463599880536398,0.015007999999999997,4.295290006363454e-4,0.0022680000000000005 +2209,9.53399647362465,0,0,-0,2.106991218554514,7.696370005607605,0.05127733333333333,0.04174692121644815,0.06726733333333333,157.2490030924479,1.6722106113333333,6.112284620602925,0,5.047000050544739,0,6.781780004501343,0.01874302946,4.414489030838013,0.30249799999999993,54.66258684794108,0.00328,4.549212574958801,29.662488666666654,0,389.0289128621419,1342.3969626666667,1449.759572347005,252.4762126158148,2146.2599487304688,402.75016774603586,0.13960003852844238,0.32809634999999987,0.006384719745256007,0.0057207649866666665,0,0.0024680704399999997,397.63098398844403,216.3323480666666,122.61958758036296,159.55245666666667,449.5470326741536,84.65669066666666,4.083500782648723,2.500960093333333,13.170600016911825,0,10.07170057296753,33.349503866666666,0,0,1.1257600486278534,3.67309488,0.10510999523103237,0.279561206,413.85097757975257,7.041238551433751,71.230461741408,89.39966502773464,13.255691622668495,15.314212787740978,-0.22122698538334254,71.51080131530762,2.8754666666666666,4767.972128530724,0,0,0.0021866666666666666,0.23055200030406317,0.014650666666666664,4.1173899808200076e-4,0.0022140000000000003 +2210,9.301459974267953,0,0,-0,2.0959200192296605,7.697839975357056,0.050026666666666664,0.03992582050462564,0.06562666666666667,157.36000061035156,1.6314249866666666,6.028474609057109,0,5.013269980748494,0,6.766480008761088,0.0182858824,4.311559240023295,0.29511999999999994,53.976487477620445,0.0031999999999999997,4.545692563056946,28.93901333333332,0,388.3899205525716,1309.6555733333335,1442.489583333333,250.36915507171054,2149.929972330729,401.15479701075094,0.13659503559271494,0.3200939999999999,0.006250299862585962,0.005581234133333333,0,0.0024078736,390.97998301188153,211.05594933333327,120.11459795633952,155.66093333333333,443.8070297241211,82.59189333333333,4.018630882104238,2.4399610666666662,13.092499812444052,0,9.849330425262451,32.536101333333335,0,0,1.101220041513443,3.5835071999999997,0.10303199539581935,0.27274264000000004,413.8699849446614,7.031532421698593,71.13601282231932,88.72156321209299,13.101533759365266,15.293215688881421,-0.22122698538334254,71.60700225830078,2.8053333333333335,4676.115069498119,0,0,0.0021333333333333334,0.22653800124923387,0.014293333333333332,3.946840006392449e-4,0.0021600000000000005 +2211,9.068923474911253,0,0,-0,2.084848819904807,7.699259996414185,0.048776,0.038183819192151226,0.063986,157.46900177001953,1.590639362,5.945794502894084,0,4.9797699848810835,0,6.75120997428894,0.017828735340000002,4.210969527562459,0.28774199999999994,53.29888788859049,0.0031199999999999995,4.54217251141866,28.215537999999988,0,387.75189717610675,1276.9141840000002,1435.239583333333,248.26209752760627,2153.47998046875,399.559426275466,0.13359703620274863,0.3120916499999999,0.0061158997705206275,0.00544170328,0,0.00234767676,384.34398651123047,205.77955059999994,117.61560567220052,151.76941,438.06203206380206,80.527096,3.9539108077685037,2.3789620399999998,13.014899889628092,0,9.627500454584757,31.7226988,0,0,1.0767400463422139,3.4939195199999995,0.10095999638239543,0.265924074,413.88698069254554,7.021826291963435,71.04156390323062,88.04346139645133,12.947375896062036,15.272218590021865,-0.22122698538334254,71.70030148824056,2.7352000000000003,4584.2580104655135,0,0,0.0020800000000000003,0.2225940003991127,0.013935999999999999,3.7833399983355775e-4,0.0021060000000000002 +2212,8.836386975554555,0,0,-0,2.0737776205799543,7.70061997572581,0.04752533333333333,0.036517818458378315,0.06234533333333333,157.57500076293945,1.5498537373333332,5.86424446105957,0,4.94647999604543,0,6.735980033874512,0.017371588280000003,4.112709720929463,0.28036399999999995,52.62968762715658,0.0030399999999999997,4.53867244720459,27.492062666666655,0,387.11691029866535,1244.1727946666667,1427.9895731608071,246.155039983502,2156.9199829101562,397.9640555401811,0.13060403491059938,0.3040892999999999,0.005983859805079798,0.005302172426666666,0,0.00228747992,377.72398376464844,200.50315186666663,115.12261454264323,147.87788666666665,432.31103261311847,78.46229866666667,3.8893707593282065,2.317963013333333,12.937599976857504,0,9.406180381774902,30.909296266666665,0,0,1.0523100694020588,3.4043318399999998,0.09889259499808152,0.25910550800000004,413.90198262532545,7.0121201622282765,70.94711498414193,87.36535958080967,12.793218032758809,15.251221491162308,-0.22122698538334254,71.79070281982422,2.665066666666667,4492.400951432909,0,0,0.0020266666666666666,0.21871699889500937,0.013578666666666666,3.6265799766018364e-4,0.0020520000000000004 +2213,8.603850476197856,0,0,-0,2.062706421255101,7.701919953028361,0.046274666666666665,0.03492421812067429,0.060704666666666664,157.6779988606771,1.5090681126666667,5.783794442812602,0,4.913420001665751,0,6.72078001499176,0.016914441220000003,4.016710003217061,0.27298599999999995,51.96878751118978,0.0029599999999999995,4.535172422726949,26.768587333333322,0,386.48189544677734,1211.4314053333335,1420.749572753906,244.04798243939774,2160.239949544271,396.36868480489625,0.12761803468068442,0.2960869499999999,0.005854049775128563,0.005162641573333334,0,0.0022272830799999997,371.1199900309245,195.2267531333333,112.63662338256836,143.98636333333334,426.5550282796224,76.39750133333334,3.8249807953834534,2.2569639866666664,12.860600074132284,0,9.185370445251465,30.095893733333334,0,0,1.0279400448004405,3.3147441599999996,0.09683049594362576,0.252286942,413.9149831136067,7.0024140324931174,70.85266606505326,86.68725776516801,12.639060169455579,15.230224392302754,-0.22122698538334254,71.87829971313477,2.5949333333333335,4400.543892400305,0,0,0.0019733333333333334,0.21490800008177757,0.013221333333333331,3.476310012047179e-4,0.001998 +2214,8.371313976841156,0,0,-0,2.051635221930248,7.703169981638591,0.045023999999999995,0.03340011679877838,0.05906399999999999,157.7780024210612,1.468282488,5.704434355099996,0,4.880559961001079,0,6.705609997113545,0.016457294160000004,3.922910233338674,0.26560799999999996,51.3159875869751,0.0028799999999999997,4.531692465146382,26.04511199999999,0,385.84989674886066,1178.690016,1413.519571940104,241.94092489529348,2163.4599405924478,394.77331406961133,0.12463803340991338,0.2880845999999999,0.005723979828568797,0.0050231107200000005,0,0.00216708624,364.52999114990234,189.95035439999998,110.15663146972656,140.09484,420.79503122965497,74.332704,3.76076078414917,2.1959649599999995,12.78409997622172,0,8.965070406595865,29.2824912,0,0,1.0036200433969498,3.22515648,0.09477219606439273,0.24546837600000002,413.92498016357416,6.992707902757959,70.75821714596457,86.00915594952635,12.484902306152351,15.209227293443197,-0.22122698538334254,71.96300188700359,2.5248000000000004,4308.686833367699,0,0,0.00192,0.21116399889190993,0.012863999999999999,3.332250028809843e-4,0.0019440000000000002 +2215,8.138777477484457,0,0,-0,2.0405640226053947,7.704369982083638,0.04377333333333333,0.031942316330969334,0.057423333333333326,157.87500381469727,1.4274968633333334,5.62615434328715,0,4.847930034001668,0,6.690469940503438,0.016000147100000004,3.83126038312912,0.25822999999999996,50.671387672424316,0.0027999999999999995,4.528212388356526,25.321636666666656,0,385.21788787841797,1145.9486266666668,1406.2995605468748,239.8338673511892,2166.5700073242188,393.1779433343264,0.1216660322000583,0.2800822499999999,0.005593689779440562,0.004883579866666667,0,0.0021068894,357.95698801676434,184.67395566666664,107.68263943990071,136.20331666666667,415.03102620442706,72.26790666666668,3.6966907183329263,2.134965933333333,12.707900047302246,0,8.745270570119223,28.469088666666664,0,0,0.9793580373128256,3.1355687999999997,0.09271899610757828,0.23864981000000002,413.9329808553059,6.983001773022801,70.66376822687587,85.33105413388469,12.330744442849122,15.18823019458364,-0.22122698538334254,72.04480171203613,2.454666666666667,4216.829774335094,0,0,0.0018666666666666666,0.20748500153422356,0.012506666666666666,3.194139984164697e-4,0.0018900000000000002 +2216,7.906240978127759,0,0,-0,2.0294928232805414,7.705519994099935,0.04252266666666667,0.030548115726560354,0.05578266666666666,157.96999867757162,1.3867112386666667,5.5489342212677,0,4.815500020980835,0,6.6753599643707275,0.015543000040000005,3.7417306701342263,0.25085199999999996,50.03478844960531,0.0027199999999999993,4.5247524579366045,24.598161333333323,0,384.58888244628906,1113.2072373333335,1399.0795491536455,237.72680980708492,2169.5799763997397,391.5825725990415,0.11870003181199233,0.27207989999999993,0.0054655498048911495,0.004744049013333334,0,0.00204669256,351.39798736572266,179.3975569333333,105.21464920043945,132.31179333333333,409.2630259195964,70.20310933333334,3.6327907045682273,2.0739669066666666,12.632199923197428,0,8.525970538457235,27.65568613333333,0,0,0.9551500429709753,3.0459811199999995,0.09067089669406414,0.23183124400000002,413.938985188802,6.973295643287643,70.56931930778718,84.65295231824304,12.176586579545893,15.167233095724084,-0.22122698538334254,72.12370173136394,2.384533333333334,4124.97271530249,0,0,0.0018133333333333332,0.20387000093857446,0.012149333333333333,3.0617500306107104e-4,0.0018360000000000002 +2217,7.673704478771059,0,0,-0,2.0184216239556885,7.7066099643707275,0.041271999999999996,0.0292145151955386,0.05414199999999999,158.06200154622397,1.345925614,5.4727641344070435,0,4.783289988835652,0,6.660290002822876,0.015085852980000005,3.6542608936627707,0.24347399999999997,49.406088511149086,0.0026399999999999996,4.521292328834534,23.87468599999999,0,383.9598795572917,1080.465848,1391.8695678710935,235.61975226298065,2172.479939778646,389.9872018637566,0.11573903014262517,0.26407754999999994,0.00533942983020097,0.004604518160000001,0,0.00198649572,344.854985555013,174.1211582,102.75365702311198,128.42027000000002,403.4920298258464,68.13831200000001,3.569040675957998,2.0129678799999997,12.5567999680837,0,8.30715036392212,26.842283599999995,0,0,0.9309970438480377,2.95639344,0.08862769541641076,0.22501267800000002,413.9429804484049,6.963589513552485,70.47487038869849,83.97485050260137,12.022428716242665,15.146235996864528,-0.22122698538334254,72.19970194498698,2.314400000000001,4033.1156562698848,0,0,0.0017599999999999998,0.20031699910759926,0.011792,2.934830044978298e-4,0.0017820000000000002 +2218,7.44116797941436,0,0,-0,2.007350424630835,7.707639892896016,0.04002133333333333,0.02793911440918843,0.052501333333333323,158.1510009765625,1.3051399893333335,5.397634069124858,0,4.751290003458659,0,6.645249962806702,0.014628705920000006,3.5688010851542153,0.23609599999999997,48.78528849283854,0.0025599999999999993,4.517842332522075,23.151210666666657,0,383.3328806559245,1047.7244586666668,1384.6695760091143,233.5126947188764,2175.2699584960938,388.3918311284717,0.11278502953549226,0.25607519999999995,0.005212849898574253,0.004464987306666668,0,0.00192629888,338.3269856770833,168.84475946666666,100.29766464233398,124.52874666666666,397.71802775065106,66.07351466666668,3.5054606596628823,1.9519688533333333,12.48170002301534,0,8.088820377985636,26.028881066666663,0,0,0.9068950364987055,2.8668057599999996,0.08658939537902673,0.218194112,413.9439849853515,6.953883383817326,70.38042146960981,83.29674868695972,11.868270852939435,15.125238898004973,-0.22122698538334254,72.27280044555664,2.2442666666666673,3941.25859723728,0,0,0.0017066666666666667,0.1968259997665882,0.011434666666666666,2.8131500342472765e-4,0.001728 +2219,7.208631480057662,0,0,-0,1.996279225305982,7.708619991938273,0.03877066666666666,0.026719313735763233,0.05086066666666665,158.23799896240234,1.2643543646666668,5.323523998260498,0,4.719510038693746,0,6.630249977111816,0.014171558860000006,3.4853113094965615,0.22871799999999998,48.172088623046875,0.0024799999999999996,4.514402270317078,22.427735333333324,0,382.70687611897785,1014.9830693333333,1377.469563802083,231.40563717477212,2177.929972330729,386.7964603931868,0.10983702850838502,0.24807284999999996,0.005088219807172815,0.0043254564533333345,0,0.00186610204,331.8149922688802,163.56836073333335,97.84807205200195,120.63722333333334,391.94202423095703,64.00871733333335,3.4420306285222373,1.8909698266666664,12.407099882761637,0,7.870960394541423,25.21547853333333,0,0,0.8828460425138474,2.77721808,0.08455599658191204,0.211375546,413.9439798990885,6.944177254082168,70.28597255052112,82.61864687131805,11.714112989636208,15.104241799145417,-0.22122698538334254,72.34310150146484,2.174133333333334,3849.401538204675,0,0,0.0016533333333333333,0.19339499870936075,0.011077333333333333,2.6965200231643394e-4,0.001674 +2220,6.976094980700962,0,0,-0,1.9852080259811289,7.709549983342488,0.03752,0.025552713001767795,0.049219999999999986,158.3220011393229,1.2235687400000002,5.250423987706502,0,4.687930067380269,0,6.6152699788411455,0.013714411800000006,3.4037615259488425,0.22133999999999998,47.56658935546875,0.0023999999999999994,4.510972340901692,21.70425999999999,0,382.0818786621094,982.2416800000001,1370.289560953776,229.29857963066786,2180.489990234375,385.2010896579019,0.10689502768218517,0.24007049999999996,0.004965389807087679,0.004185925600000001,0,0.0018059052,325.3169911702474,158.291962,95.40428098042806,116.7457,386.16402943929035,61.94392000000002,3.3787606159845986,1.8299708,12.332799911499023,0,7.65358038743337,24.402075999999994,0,0,0.8588470369577408,2.6876303999999998,0.08252739657958348,0.20455698,413.9409815470377,6.934471124347009,70.19152363143243,81.9405450556764,11.559955126332978,15.08324470028586,-0.22122698538334254,72.41050148010254,2.104000000000001,3757.54447917207,0,0,0.0015999999999999999,0.19002400214473406,0.01072,2.584710018709302e-4,0.00162 +2221,6.743558481344263,0,0,-0,1.9741368266562758,7.710429946581523,0.036269333333333334,0.02443691265458862,0.04757933333333332,158.4030024210612,1.1827831153333335,5.178313930829366,0,4.65654997030894,0,6.600330074628194,0.013257264740000007,3.3240817189216614,0.21396199999999999,46.968588511149086,0.002319999999999999,4.507542332013448,20.980784666666658,0,381.45786539713544,949.5002906666667,1363.0995992024737,227.1915220865636,2182.9500122070312,383.605718922617,0.10396002605557442,0.23206814999999995,0.004841919871978462,0.004046394746666668,0,0.00174570836,318.83399200439453,153.01556326666667,92.96618843078613,112.85417666666666,380.38402303059894,59.87912266666669,3.3156405687332153,1.7689717733333332,12.258900006612143,0,7.436670343081157,23.588673466666663,0,0,0.8348990281422933,2.5980427199999996,0.08050349603096645,0.197738414,413.9369812011718,6.924764994611851,70.09707471234374,81.26244324003474,11.405797263029749,15.062247601426304,-0.22122698538334254,72.47500101725261,2.0338666666666674,3665.6874201394653,0,0,0.0015466666666666667,0.18671099841594696,0.010362666666666666,2.4775300577554543e-4,0.001566 +2222,6.5110219819875645,0,0,-0,1.9630656273314226,7.7112499078114825,0.03501866666666666,0.023369711668541033,0.045938666666666655,158.4810002644857,1.1419974906666668,5.107193827629089,0,4.62539001305898,0,6.58542005221049,0.012800117680000006,3.246241887410482,0.206584,46.37808895111084,0.0022399999999999994,4.504122296969096,20.257309333333325,0,380.8358688354492,916.7589013333334,1355.9295654296873,225.08446454245933,2185.2899373372397,382.01034818733206,0.1010320254911979,0.22406579999999993,0.004717889823950827,0.003906863893333334,0,0.0016855115199999999,312.3659973144531,147.73916453333334,90.53389739990234,108.96265333333334,374.603022257487,57.81432533333335,3.252680559953054,1.7079727466666665,12.185400088628134,0,7.2202203671137495,22.775270933333328,0,0,0.8110020309686661,2.50845504,0.07848419683674972,0.190919848,413.92997741699213,6.915058864876693,70.00262579325505,80.58434142439307,11.251639399726521,15.041250502566747,-0.22122698538334254,72.53660074869792,1.9637333333333342,3573.83036110686,0,0,0.0014933333333333333,0.18345499907930693,0.010005333333333333,2.3747799908354258e-4,0.0015119999999999999 +2223,6.278485482630867,0,0,-0,1.9519944280065695,7.712009986241658,0.033768,0.022349111425379913,0.04429799999999999,158.55600102742514,1.1012118660000003,5.037033875783284,0,4.594429969787598,0,6.570539951324463,0.012342970620000006,3.1702120502789817,0.199206,45.79488945007324,0.002159999999999999,4.500712275505066,19.53383399999999,0,380.2138671875,884.0175120000001,1348.759562174479,222.97740699835506,2187.519978841146,380.4149774520472,0.09810902612904708,0.21606344999999993,0.004595679851869742,0.003767333040000001,0,0.00162531468,305.9139912923177,142.4627658,88.10720443725586,105.07113,368.82102457682294,55.74952800000002,3.189870536327362,1.64697372,12.112200021743774,0,7.004240314165751,21.961868399999997,0,0,0.787154033780098,2.4188673599999997,0.07646949651340644,0.18410128199999998,413.92097981770826,6.905352735141535,69.90817687416636,79.9062396087514,11.097481536423292,15.02025340370719,-0.22122698538334254,72.59540049235027,1.8936000000000006,3481.973302074255,0,0,0.00144,0.18025599916776022,0.009647999999999999,2.276290009225098e-4,0.0014579999999999997 +2224,6.045948983274168,0,0,-0,1.9409232286817164,7.712719996770223,0.03251733333333333,0.02137301101659735,0.042657333333333325,158.62900034586588,1.0604262413333336,4.967843810717265,0,4.563669999440511,0,6.5557001034418745,0.011885823560000005,3.0959422985712686,0.191828,45.21898969014486,0.0020799999999999994,4.497302134831746,18.81035866666666,0,379.59385172526044,851.2761226666668,1341.5995686848955,220.8703494542508,2189.6500244140625,378.8196067167623,0.09519042447209358,0.20806109999999992,0.004475169853928189,0.0036278021866666676,0,0.0015651178399999999,299.4749933878581,137.18636706666666,85.68611081441243,101.17960666666667,363.0380223592122,53.68473066666668,3.127210557460785,1.5859746933333334,12.039400021235148,0,6.788710316022237,21.148465866666662,0,0,0.763358031709989,2.32927968,0.07445929696162541,0.17728271599999998,413.9099782307942,6.895646605406377,69.81372795507767,79.22813779310975,10.943323673120064,14.999256304847634,-0.22122698538334254,72.65120124816895,1.8234666666666672,3390.11624304165,0,0,0.0013866666666666667,0.17711199944218,0.009290666666666666,2.181879996593731e-4,0.0014039999999999996 +2225,5.813412483917469,0,0,-0,1.929852029356863,7.713380018870036,0.031266666666666665,0.020439510699361563,0.04101666666666666,158.69900131225586,1.019640616666667,4.899583697319031,0,4.533120036125183,0,6.540879964828491,0.011428676500000005,3.023402432600657,0.18445,44.65028953552246,0.001999999999999999,4.493902246157329,18.086883333333326,0,378.974858601888,818.5347333333334,1334.4395751953123,218.76329191014653,2191.6699829101562,377.22423598147736,0.0922781229019165,0.2000587499999999,0.004353929893113673,0.0034882713333333343,0,0.0015049209999999998,293.05198923746747,131.90996833333332,83.27051734924316,97.28808333333333,357.25502014160156,51.61993333333335,3.064700504144033,1.5249756666666667,11.966999848683676,0,6.5736403465271,20.33506333333333,0,0,0.7396130263805389,2.239692,0.07245359631876151,0.17046414999999998,413.89797719319654,6.885940475671219,69.71927903598899,78.5500359774681,10.789165809816835,14.978259205988078,-0.22122698538334254,72.70430183410645,1.7533333333333339,3298.259184009045,0,0,0.0013333333333333335,0.17402299990256628,0.008933333333333331,2.091370006382931e-4,0.0013499999999999996 +2226,5.5808759845607705,0,0,-0,1.91878083003201,7.713989973068237,0.030015999999999998,0.019546810071915388,0.039375999999999994,158.76599884033203,0.9788549920000003,4.832263708114624,0,4.502769986788432,0,6.526099960009257,0.010971529440000006,2.9525426030158997,0.177072,44.08868948618571,0.0019199999999999992,4.490502238273621,17.363407999999993,0,378.3558527628581,785.793344,1327.2895507812498,216.65623436604227,2193.5699666341147,375.62886524619245,0.08937202331920464,0.19205639999999988,0.004234349781957765,0.003348740480000001,0,0.0014447241599999997,286.6429901123047,126.63356959999999,80.86042594909668,93.39656,351.4720204671224,49.55513600000002,3.0023505091667175,1.46397664,11.894899924596151,0,6.359010259310405,19.5216608,0,0,0.7159160226583481,2.1501043199999996,0.07045229648550351,0.16364558399999998,413.88298288981116,6.87623434593606,69.6248301169003,77.87193416182643,10.635007946513605,14.957262107128523,-0.22122698538334254,72.75440088907878,1.6832000000000005,3206.40212497644,0,0,0.0012800000000000003,0.17098799968759218,0.008575999999999997,2.0046199885352203e-4,0.0012959999999999996 +2227,5.348339485204072,0,0,-0,1.9077096307071568,7.7145399649937945,0.02876533333333333,0.018692909584691126,0.03773533333333333,158.8300018310547,0.9380693673333337,4.7658636172612505,0,4.472620010375977,0,6.511360049247742,0.010514382380000005,2.8833327492078147,0.169694,43.53408972422282,0.0018399999999999992,4.487112283706665,16.63993266666666,0,377.7388559977214,753.0519546666667,1320.1495666503904,214.549176821938,2195.3299560546875,374.03349451090753,0.0864719208329916,0.18405404999999986,0.00411633988066266,0.0032092096266666675,0,0.0013845273199999996,280.24899037679035,121.35717086666665,78.4557336171468,89.50503666666667,345.6890182495117,47.49033866666668,2.9401504596074424,1.4029776133333334,11.823199987411499,0,6.144830346107483,18.708258266666665,0,0,0.6922660320997238,2.06051664,0.06845539684096973,0.15682701799999998,413.865982055664,6.866528216200902,69.53038119781161,77.19383234618476,10.480850083210377,14.936265008268967,-0.22122698538334254,72.80160077412923,1.613066666666667,3114.5450659438347,0,0,0.001226666666666667,0.16800499831636748,0.008218666666666664,1.921459988807328e-4,0.0012419999999999996 +2228,5.115802985847374,0,0,-0,1.8966384313823037,7.715030074119568,0.027514666666666666,0.01787630918746193,0.036094666666666664,158.89200083414713,0.897283742666667,4.700373609860738,0,4.442670027414958,0,6.496640046437581,0.010057235320000005,2.815722942352295,0.16231600000000002,42.986489613850914,0.001759999999999999,4.48372217019399,15.916457333333327,0,377.12184651692706,720.3105653333334,1313.009562174479,212.44211927783374,2197.009969075521,372.43812377562267,0.08357792037228744,0.17605169999999987,0.003997459813642005,0.003069678773333334,0,0.0013243304799999997,273.86999257405597,116.08077213333331,76.05644035339355,85.61351333333333,339.90601857503253,45.42554133333334,2.878090500831604,1.341978586666667,11.75190003712972,0,5.931100249290466,17.894855733333333,0,0,0.6686650266249975,1.9709289599999997,0.0664627980440855,0.15000845199999996,413.8469797770182,6.856822086465744,69.43593227872292,76.51573053054311,10.326692219907148,14.91526790940941,-0.22122698538334254,72.84600067138672,1.5429333333333335,3022.68800691123,0,0,0.0011733333333333337,0.16507399951418242,0.00786133333333333,1.841750005648161e-4,0.0011879999999999994 +2229,4.883266486490674,0,0,-0,1.8855672320574506,7.715480009714763,0.026263999999999996,0.017095408712824185,0.034454,158.95100021362305,0.8564981180000004,4.635773579279582,0,4.4129200379053755,0,6.481959939002991,0.009600088260000004,2.7496930956840515,0.15493800000000002,42.445689837137856,0.001679999999999999,4.480342189470927,15.192981999999994,0,376.50684356689453,687.569176,1305.8795674641924,210.33506173372948,2198.5899658203125,370.84275304033775,0.08068981890877087,0.16804934999999982,0.0038801199019265673,0.002930147920000001,0,0.0012641336399999994,267.5039927164714,110.80437339999997,73.66244824727376,81.72199,334.12501525878906,43.36074400000001,2.816180427869161,1.28097956,11.68090009689331,0,5.717800219853719,17.0814532,0,0,0.6451110243797302,1.8813412799999998,0.0644744982322057,0.14318988599999996,413.82698059082026,6.847115956730586,69.34148335963422,75.83762871490146,10.17253435660392,14.894270810549854,-0.22122698538334254,72.88750012715657,1.4728,2930.8309478786246,0,0,0.0011200000000000003,0.16219400117794672,0.007503999999999996,1.7653300043699952e-4,0.0011339999999999994 +2230,4.6507299871339765,0,0,-0,1.8744960327325975,7.71586000919342,0.025013333333333332,0.016348608459035557,0.03281333333333333,159.00699996948242,0.8157124933333337,4.5720534324646,0,4.383370002110799,0,6.467309991518657,0.009142941200000004,2.68518328666687,0.14756000000000002,41.91168975830078,0.001599999999999999,4.476962169011434,14.46950666666666,0,375.891840616862,654.8277866666667,1298.759562174479,208.2280041896252,2200.0700073242188,369.24738230505284,0.07780751834313075,0.16004699999999983,0.0037642299042393765,0.0027906170666666674,0,0.0012039367999999995,261.1529947916667,105.52797466666664,71.2737553914388,77.83046666666667,328.3440195719401,41.29594666666668,2.7544204394022622,1.2199805333333336,11.610299905141195,0,5.504950205485026,16.268050666666667,0,0,0.6216040203968684,1.7917535999999998,0.062490397753814854,0.13637131999999996,413.80398559570307,6.837409826995428,69.24703444054553,75.15952689925979,10.018376493300691,14.873273711690297,-0.22122698538334254,72.92620023091634,1.4026666666666667,2838.9738888460197,0,0,0.0010666666666666672,0.1593639999628067,0.007146666666666662,1.6920899846203005e-4,0.0010799999999999994 +2231,4.418193487777278,0,0,-0,1.8634248334077443,7.716200033823649,0.023762666666666665,0.015634307948251564,0.031172666666666664,159.06000137329102,0.774926868666667,4.509213407834371,0,4.354010025660197,0,6.452690045038859,0.008685794140000005,2.6221734484036765,0.14018200000000003,41.384290059407554,0.001519999999999999,4.473592122395833,13.746031333333327,0,375.27784220377606,622.0863973333334,1291.6395467122393,206.12094664552095,2201.4299519856772,367.6520115697679,0.07492871768772602,0.15204464999999984,0.00364736991468817,0.002651086213333334,0,0.0011437399599999996,254.8169962565104,100.2515759333333,68.89026196797688,73.93894333333334,322.5650151570638,39.23114933333335,2.6928003827730813,1.1589815066666669,11.539999882380167,0,5.29252028465271,15.454648133333333,0,0,0.5981440246105194,1.7021659199999999,0.06051049785067638,0.12955275399999996,413.77998352050776,6.82770369726027,69.15258552145684,74.48142508361813,9.864218629997461,14.85227661283074,-0.22122698538334254,72.96200116475423,1.3325333333333336,2747.116829813415,0,0,0.0010133333333333338,0.15658400083581606,0.0067893333333333295,1.621879988912648e-4,0.0010259999999999994 +2232,4.185656988420578,0,0,-0,1.8523536340828912,7.716479976971944,0.022511999999999997,0.01495130763699611,0.029531999999999996,159.11100133260092,0.7341412440000002,4.447233398755391,0,4.3248500029246015,0,6.438099980354309,0.008228647080000004,2.560623586177826,0.132804,40.86359055836996,0.001439999999999999,4.47021206219991,13.022555999999994,0,374.6638412475586,589.345008,1284.519561767578,204.01388910141668,2202.6599731445312,366.056640834483,0.07205591599146526,0.14404229999999987,0.0035296198717939356,0.0025115553600000007,0,0.0010835431199999995,248.49399439493814,94.97517719999996,66.51206906636556,70.04742000000002,316.7870178222656,37.16635200000002,2.63133039077123,1.0979824800000002,11.470099846522013,0,5.080530206362407,14.6412456,0,0,0.5747320204973221,1.61257824,0.0585347975914677,0.12273418799999998,413.75298055013013,6.817997567525111,69.05813660236815,73.80332326797647,9.710060766694234,14.831279513971184,-0.22122698538334254,72.99489974975586,1.2624000000000002,2655.2597707808095,0,0,9.600000000000005e-4,0.15385099997123083,0.006431999999999996,1.5545899926413162e-4,9.719999999999994e-4 +2233,3.9531204890638794,0,0,-0,1.8412824347580379,7.716710011164348,0.021261333333333333,0.014298007435475787,0.02789133333333333,159.15899785359701,0.6933556193333336,4.386103391647339,0,4.29587999979655,0,6.423550009727478,0.007771500020000004,2.5005037585894265,0.125426,40.34939034779867,0.0013599999999999988,4.46684209505717,12.299080666666661,0,374.0508397420247,556.6036186666668,1277.4195658365884,201.90683155731242,2203.789998372396,364.46127009919815,0.06918901577591896,0.13603994999999988,0.0034133899219644568,0.0023720245066666673,0,0.0010233462799999996,242.18599446614584,89.69877846666662,64.13887564341228,66.15589666666668,311.0110117594401,35.101554666666686,2.5700003504753113,1.0369834533333337,11.40059987703959,0,4.8689701954523725,13.827843066666665,0,0,0.5513680229584376,1.5229905599999998,0.05656169820576906,0.11591562199999998,413.72498067220045,6.808291437789952,68.96368768327947,73.12522145233481,9.555902903391004,14.810282415111628,-0.22122698538334254,73.02490043640137,1.192266666666667,2563.4027117482046,0,0,9.066666666666671e-4,0.1511670003334681,0.006074666666666663,1.4900800063818073e-4,9.179999999999994e-4 +2234,3.72058398970718,0,0,-0,1.8302112354331848,7.716880043347676,0.020010666666666666,0.0136733070636789,0.026250666666666662,159.2040023803711,0.6525699946666668,4.3258033990859985,0,4.267110029856364,0,6.409030079841614,0.007314352960000004,2.4417738914489746,0.118048,39.84169101715088,0.0012799999999999988,4.463472008705139,11.575605333333328,0,373.43883260091144,523.8622293333334,1270.3095703124998,199.79977401320815,2204.8099975585938,362.86589936391323,0.06632791521648566,0.12803759999999992,0.0032985999326532087,0.002232493653333334,0,9.631494399999996e-4,235.89099629720053,84.42237973333329,61.77088292439779,62.26437333333335,305.2370147705078,33.036757333333355,2.508820335070292,0.9759844266666671,11.331399838129679,0,4.657830198605855,13.014440533333332,0,0,0.5280500203371048,1.4334028799999998,0.05459289780507485,0.109097056,413.6949793497721,6.798585308054794,68.86923876419078,72.44711963669315,9.401745040087775,14.789285316252071,-0.22122698538334254,73.0521011352539,1.1221333333333336,2471.5456527155993,0,0,8.533333333333338e-4,0.14852900182207426,0.0057173333333333295,1.4282499978435226e-4,8.639999999999995e-4 +2235,3.488047490350481,0,0,-0,1.8191400361083316,7.7170000076293945,0.01876,0.013075906628121933,0.024609999999999993,159.24600092569986,0.6117843700000001,4.266333222389221,0,4.23851998647054,0,6.394539952278137,0.006857205900000003,2.3844040234883628,0.11066999999999999,39.340291023254395,0.0011999999999999988,4.46011209487915,10.852129999999995,0,372.8278350830078,491.12084000000004,1263.2095743815103,197.69271646910389,2205.7300008138022,361.2705286286283,0.06347251279900472,0.12003524999999993,0.0031828099357274673,0.0020929628000000006,0,9.029525999999996e-4,229.6109937032064,79.14598099999995,59.407990137736,58.37285000000003,299.4660110473633,30.971960000000024,2.4477803111076355,0.9149854000000004,11.262600104014078,0,4.447120149930318,12.201037999999997,0,0,0.5047780176003774,1.3438151999999999,0.05262819863855839,0.10227849,413.6629791259765,6.788879178319636,68.77478984510209,71.76901782105149,9.247587176784545,14.768288217392517,-0.22122698538334254,73.07640012105306,1.0520000000000005,2379.6885936829945,0,0,8.000000000000004e-4,0.14593599860866865,0.005359999999999997,1.3689800228651924e-4,8.099999999999995e-4 +2236,3.2555109909937823,0,0,-0,1.8080688367834785,7.717060089111328,0.01750933333333333,0.012504506468152007,0.022969333333333328,159.28600056966147,0.5709987453333334,4.207683285077413,0,4.210129936536153,0,6.380080024401347,0.006400058840000004,2.3283841411272683,0.103292,38.84519068400065,0.0011199999999999988,4.45674196879069,10.128654666666662,0,372.21682993570965,458.3794506666667,1256.1195678710935,195.58565892499962,2206.529988606771,359.6751578933434,0.060622813180089,0.11203289999999995,0.003068459938125064,0.001953431946666667,0,8.427557599999997e-4,223.34399541219076,73.86958226666661,57.05009619394938,54.4813266666667,293.69701385498047,28.907162666666693,2.386870265007019,0.8539863733333337,11.19409990310669,0,4.2368301550547285,11.387635466666662,0,0,0.48155001550912857,1.25422752,0.050667498571177326,0.095459924,413.6289800008137,6.779173048584478,68.6803409260134,71.09091600540984,9.093429313481318,14.74729111853296,-0.22122698538334254,73.09790102640788,0.9818666666666673,2287.8315346503896,0,0,7.46666666666667e-4,0.14338999738295874,0.005002666666666664,1.3121699885232374e-4,7.559999999999995e-4 +2237,3.0229744916370835,0,0,-0,1.7969976374586254,7.717069983482361,0.016258666666666664,0.011958106188103557,0.021328666666666656,159.32200241088867,0.5302131206666667,4.14983316262563,0,4.181930025418599,0,6.365659991900126,0.0059429117800000025,2.2736742893854776,0.09591399999999997,38.35629145304362,0.0010399999999999988,4.4533820152282715,9.40517933333333,0,371.60682678222656,425.6380613333334,1249.0295613606768,193.47860138089536,2207.22998046875,358.0797871580585,0.057778612400094666,0.10403054999999997,0.002955439907964319,0.0018139010933333338,0,7.825589199999996e-4,217.09099451700845,68.59318353333327,54.69720331827799,50.58980333333338,287.9300079345703,26.842365333333362,2.326110283533732,0.7929873466666671,11.125900109608969,0,4.0269701679547625,10.57423293333333,0,0,0.458368015786012,1.16463984,0.04871099845816692,0.08864135800000002,413.5939839680989,6.76946691884932,68.58589200692471,70.41281418976817,8.939271450178088,14.726294019673404,-0.22122698538334254,73.11640040079753,0.911733333333334,2195.9744756177847,0,0,6.933333333333337e-4,0.14088699966669083,0.004645333333333331,1.2577200080462111e-4,7.019999999999996e-4 +2238,2.790437992280384,0,0,-0,1.785926438133772,7.717030048370361,0.015007999999999999,0.011435605973626176,0.01968799999999999,159.3560028076172,0.48942749599999985,4.092783093452454,0,4.153909921646118,0,6.351269960403442,0.005485764720000003,2.220234433809916,0.08853599999999998,37.87359142303467,9.599999999999986e-4,4.4500120878219604,8.681703999999996,0,370.996826171875,392.896672,1241.9495646158853,191.3715438367911,2207.8099975585938,356.4844164227736,0.054937711295982204,0.09602819999999998,0.002841349982190877,0.0016743702400000005,0,7.223620799999997e-4,210.85199356079102,63.31678479999994,52.34931023915609,46.69828000000004,282.16701253255206,24.77756800000003,2.265490253766378,0.7319883200000005,11.058199961980185,0,3.817520181337992,9.760830399999994,0,0,0.4352310101191203,1.0750521599999998,0.046758398724099,0.08182279200000002,413.55698394775385,6.759760789114161,68.49144308783603,69.73471237412652,8.785113586874859,14.705296920813847,-0.22122698538334254,73.13220087687175,0.8416000000000007,2104.1174165851794,0,0,6.400000000000003e-4,0.13842799762884775,0.004287999999999997,1.2055200083220068e-4,6.479999999999996e-4 +2239,2.557901492923685,0,0,-0,1.774855238808919,7.716929952303569,0.013757333333333331,0.010935905622318387,0.018047333333333318,159.38799921671549,0.44864187133333316,4.036513050397237,0,4.12608007589976,0,6.336910049120585,0.0050286176600000025,2.1680245200792947,0.08115799999999997,37.396891276041664,8.799999999999986e-4,4.446651975313823,7.958228666666663,0,370.38782501220703,360.15528266666666,1234.8695678710935,189.26448629268683,2208.289998372396,354.8890456874887,0.05210261015842358,0.08802585,0.0027262899287355444,0.001534839386666667,0,6.621652399999997e-4,204.62599817911783,58.0403860666666,50.006317138671875,42.806756666666715,276.4070078531901,22.7127706666667,2.2050002018610635,0.6709892933333338,10.990700006484985,0,3.6084901293118796,8.947427866666661,0,0,0.4121380150318146,0.9854644799999999,0.0448098989824454,0.07500422600000003,413.5179824829101,6.7500546593790025,68.39699416874734,69.05661055848485,8.630955723571631,14.68429982195429,-0.22122698538334254,73.14499982198079,0.7714666666666675,2012.2603575525745,0,0,5.86666666666667e-4,0.13601200034221014,0.003930666666666664,1.1554899901966564e-4,5.939999999999997e-4 +2240,2.325364993566986,0,0,-0,1.7637840394840658,7.716779947280884,0.012506666666666666,0.010458105398962894,0.016406666666666653,159.41600290934244,0.4078562466666664,3.981013019879659,0,4.098440011342366,0,6.3225800196329756,0.004571470600000002,2.1170447071393332,0.07377999999999996,36.92629146575928,7.999999999999986e-4,4.443291982014974,7.23475333333333,0,369.77882893880206,327.41389333333336,1227.7995605468748,187.15742874858256,2208.6500040690103,353.2936749522038,0.049273109063506126,0.08002350000000003,0.002612659998703748,0.0013953085333333337,0,6.019683999999997e-4,198.4149958292643,52.76398733333326,47.66832319895426,38.91523333333339,270.65000406901044,20.64797333333337,2.144660214583079,0.6099902666666672,10.92359987894694,0,3.399870137373606,8.134025333333327,0,0,0.38909300913413364,0.8958767999999999,0.04286529899885257,0.06818566000000004,413.4769846598307,6.740348529643844,68.30254524965865,68.3785087428432,8.476797860268402,14.663302723094734,-0.22122698538334254,73.154998779296875,0.7013333333333343,1920.4032985199694,0,0,5.333333333333336e-4,0.13363800073663393,0.003573333333333331,1.1075400046441548e-4,5.399999999999997e-4 +2241,2.0928284942102873,0,0,-0,1.7527128401592127,7.716579953829448,0.011255999999999999,0.010001105101158222,0.014765999999999987,159.44200007120767,0.3670706219999998,3.9262830018997192,0,4.070990006128947,0,6.308290044466655,0.004114323540000002,2.067254821459452,0.06640199999999996,36.46149190266927,7.199999999999987e-4,4.439921935399373,6.511277999999997,0,369.1698252360026,294.672504,1220.729553222656,185.0503712044783,2208.9099934895835,351.69830421691887,0.046449207700788975,0.07202115000000002,0.0025003799431336424,0.0012557776800000003,0,5.417715599999997e-4,192.21599833170572,47.48758859999994,45.335130055745445,35.02371000000005,264.89601135253906,18.58317600000003,2.0844501852989197,0.5489912400000005,10.856900056203207,0,3.191670080025991,7.3206227999999935,0,0,0.3660930097103119,0.80628912,0.04092459908376137,0.06136709400000003,413.43398284912104,6.730642399908686,68.20809633056996,67.70040692720153,8.322639996965172,14.642305624235178,-0.22122698538334254,73.16219902038574,0.6312000000000009,1828.5462394873643,0,0,4.8000000000000023e-4,0.13130599881211916,0.003215999999999998,1.0615799995624305e-4,4.859999999999997e-4 +2242,1.8602919948535888,0,0,-0,1.7416416408343596,7.7163199583689375,0.010005333333333333,0.009564095021535953,0.013125333333333322,159.4650001525879,0.32628499733333316,3.872302989164988,0,4.043709993362427,0,6.294029990832011,0.003657176480000002,2.018624941507975,0.059023999999999965,36.00259145100912,6.399999999999989e-4,4.436562021573384,5.787802666666664,0,368.5618209838867,261.9311146666667,1213.6595662434893,182.94331366037403,2209.0699462890625,350.10293348163395,0.0436309070015947,0.06401880000000001,0.002387029933743179,0.001116246826666667,0,4.815747199999998e-4,186.03099568684897,42.21118986666661,43.006836891174316,31.132186666666712,259.1470006306966,16.518378666666695,2.0243701537450156,0.48799221333333376,10.790499846140543,0,2.98388010263443,6.507220266666661,0,0,0.3431370109319687,0.7167014399999999,0.03898779954761267,0.05454852800000003,413.3899815877278,6.720936270173528,68.11364741148127,67.02230511155987,8.168482133661943,14.621308525375621,-0.22122698538334254,73.16639963785808,0.5610666666666674,1736.6891804547593,0,0,4.266666666666669e-4,0.12901400153835615,0.0028586666666666647,9.343642826327898e-5,4.3199999999999977e-4 +2243,1.6277554954968902,0,0,-0,1.7305704415095062,7.716010014216105,0.008754666666666666,0.009146174881607294,0.011484666666666657,159.4849993387858,0.2854993726666665,3.819062908490499,0,4.016619960467021,0,6.279800017674764,0.003200029420000002,1.9711250364780426,0.05164599999999997,35.54949156443278,5.599999999999991e-4,4.433201909065247,5.064327333333331,0,367.9538218180339,229.18972533333334,1206.5995483398435,180.83625611626977,2209.1099853515625,348.50756274634904,0.04081800673156977,0.05601645000000002,0.0022750499580676356,9.767159733333336e-4,0,4.2137787999999986e-4,179.85899607340494,36.934791133333285,40.68344370524088,27.240663333333373,253.40100479125977,14.453581333333357,1.964430143435796,0.4269931866666671,10.724399964014689,0,2.776500105857849,5.693817733333329,0,0,0.3202260086933772,0.62711376,0.03705479918668667,0.04772996200000003,413.3439865112304,6.71123014043837,68.01919849239258,66.34420329591822,8.014324270358715,14.600311426516067,-0.22122698538334254,73.16790008544922,0.490933333333334,1644.8321214221544,0,0,3.733333333333335e-4,0.12676299984256426,0.002501333333333332,0,3.7799999999999976e-4 +2244,1.3952189961401915,0,0,-0,1.719499242184653,7.715640028317769,0.007503999999999999,0.008746524496624867,0.009843999999999992,159.50300089518228,0.24471374799999984,3.7665528853734336,0,3.9897199869155884,0,6.2656000057856245,0.0027428823600000015,1.9247451623280842,0.044267999999999974,35.102091789245605,4.7999999999999914e-4,4.429831902186076,4.340851999999998,0,367.34582265218097,196.448336,1199.5495605468748,178.7291985721655,2209.029988606771,346.9121920110641,0.03801050502806902,0.04801410000000001,0.002164339976540456,8.371851200000002e-4,0,3.6118103999999986e-4,173.70100021362305,31.658392399999954,38.36474927266439,23.349140000000034,247.65900293986002,12.38878400000002,1.9046301345030467,0.3659941600000003,10.658700068791708,0,2.569530109564463,4.880415199999996,0,0,0.2973580062389374,0.5375260799999999,0.03512569951514403,0.040911396000000017,413.2959849039713,6.701524010703212,67.92474957330388,65.66610148027655,7.860166407055486,14.57931432765651,-0.22122698538334254,73.16640027364095,0.42080000000000056,1552.9750623895493,0,0,3.2000000000000013e-4,0.12455000107487042,0.0021439999999999983,0,3.239999999999998e-4 +2245,1.162682496783493,0,0,-0,1.7084280428598,7.715219974517822,0.006253333333333333,0.00836434424854815,0.008203333333333326,159.51800028483072,0.2039281233333332,3.7147728204727173,0,3.9629900058110556,0,6.251429994901021,0.002285735300000001,1.8794552783171337,0.03688999999999998,34.66029167175293,3.999999999999993e-4,4.426461935043335,3.617376666666665,0,366.7388178507487,163.70694666666668,1192.499542236328,176.62214102806124,2208.8400065104165,345.31682127577926,0.03520610400786003,0.04001175000000001,0.002052489959169179,6.976542666666669e-4,0,3.0098419999999987e-4,167.55499521891275,26.38199366666663,36.05095609029134,19.457616666666695,241.92100524902344,10.323986666666684,1.84496009349823,0.3049951333333336,10.593400001525879,0,2.3629700541496277,4.067012666666663,0,0,0.27453400442997616,0.44793839999999996,0.033200399639705815,0.03409283000000002,413.2469813028971,6.6918178809680535,67.8303006542152,64.98799966463488,7.706008543752256,14.558317228796954,-0.22122698538334254,73.16209920247395,0.3506666666666671,1461.1180033569442,0,0,2.666666666666668e-4,0.12237599926690261,0.0017866666666666656,0,2.6999999999999984e-4 +2246,0.9301459974267945,0,0,-0,1.6973568435349469,7.714750011761983,0.0050026666666666665,0.007998864011218151,0.006562666666666661,159.53000132242838,0.16314249866666658,3.6636927922566733,0,3.9364399909973145,0,6.237299958864848,0.0018285882400000011,1.8352253933747609,0.029511999999999983,34.22409184773763,3.199999999999995e-4,4.423091888427734,2.893901333333332,0,366.13182322184247,130.96555733333335,1185.4495544433591,174.51508348395697,2208.5699869791665,343.72145054049435,0.03240740361313025,0.032009400000000014,0.0019419299690828968,5.581234133333335e-4,0,2.4078735999999993e-4,161.4229965209961,21.105594933333307,33.741861979166664,15.566093333333356,236.1880022684733,8.259189333333348,1.7854200700918834,0.24399610666666688,10.528300126393637,0,2.156820058822632,3.253610133333331,0,0,0.2517530048886935,0.35835072,0.03127879944319526,0.027274264000000013,413.19598134358716,6.682111751232895,67.73585173512652,64.30989784899323,7.551850680449027,14.537320129937397,-0.22122698538334254,73.154998779296875,0.2805333333333337,1369.260944324339,0,0,2.1333333333333344e-4,0.12024100124835968,0.0014293333333333324,0,2.1599999999999988e-4 +2247,0.697609498070096,0,0,-0,1.6862856442100937,7.71422000726064,0.003752,0.007649363988700013,0.004921999999999996,159.53899892171225,0.12235687399999995,3.613332728544871,0,3.910069982210795,0,6.223200003306071,0.0013714411800000007,1.7920354902744293,0.022133999999999987,33.793392499287926,2.3999999999999965e-4,4.419721881548564,2.170425999999999,0,365.5248209635417,98.22416800000002,1178.4095560709634,172.4080259398527,2208.1900024414062,342.12607980520943,0.029614302795380354,0.02400705000000001,0.001832590001868084,4.185925600000001e-4,0,1.8059051999999993e-4,155.30399958292642,15.829196199999984,31.437569618225098,11.674570000000017,230.45899963378906,6.194392000000011,1.7260100444157918,0.1829970800000002,10.463600158691406,0,1.9510800242424011,2.440207599999998,0,0,0.2290170043706894,0.26876304000000006,0.02936109947040677,0.020455698000000015,413.1439870198567,6.672405621497737,67.64140281603783,63.63179603335157,7.397692817145798,14.51632303107784,-0.22122698538334254,73.14499918619792,0.2104000000000003,1277.4038852917342,0,0,1.600000000000001e-4,0.11814199884732564,0.0010719999999999996,0,1.6199999999999993e-4 +2248,0.465072998713397,0,0,-0,1.6752144448852404,7.713639974594116,0.002501333333333333,0.00731513377589484,0.0032813333333333305,159.5450007120768,0.08157124933333326,3.5636526942253113,0,3.883879999319712,0,6.209130009015401,9.142941200000003e-4,1.7498556077480316,0.014755999999999991,33.36819267272949,1.5999999999999966e-4,4.416351834932963,1.446950666666666,0,364.9178212483724,65.48277866666666,1171.3695576985674,170.30096839574844,2207.6900024414062,340.5307090699245,0.026826601785918076,0.016004699999999997,0.0017220599887271721,2.7906170666666674e-4,0,1.2039367999999994e-4,149.197998046875,10.552797466666647,29.13807471593221,7.783046666666678,224.73500442504883,4.129594666666673,1.6667400399843852,0.12199805333333341,10.399200201034546,0,1.7457400262355804,1.6268050666666651,0,0,0.20632600163420042,0.1791753599999999,0.027447099797427654,0.013637132000000003,413.08998362223304,6.662699491762579,67.54695389694913,62.95369421770991,7.243534953842569,14.495325932218286,-0.22122698538334254,73.13209978739421,0.14026666666666687,1185.546826259129,0,0,1.066666666666667e-4,0.11607999975482623,7.14666666666666e-4,0,1.0799999999999991e-4 +2249,0.23253649935669873,0,0,-0,1.6641432455603873,7.7130000193913775,0.0012506666666666656,0.006995513569563627,0.0016406666666666653,159.54900105794272,0.04078562466666663,3.5146626830101013,0,3.857860008875529,0,6.195090015729268,4.571470600000004e-4,1.7086556951204936,0.007377999999999996,32.94829177856445,7.999999999999988e-5,4.41297189394633,0.723475333333333,0,364.31081136067706,32.7413893333333,1164.3295694986978,168.19391085164418,2207.0700073242188,338.9353383346396,0.02404430105040471,0.008002350000000005,0.0016104399983305484,1.3953085333333337e-4,0,6.0196839999999995e-5,143.10499827067056,5.276398733333323,26.843283971150715,3.891523333333339,219.01499938964844,2.0647973333333347,1.6075900097688038,0.06099902666666668,10.33519991238912,0,1.5408200124899547,0.8134025333333321,0,0,0.18368100126584372,0.08958767999999995,0.025536799958596628,0.006818566000000005,413.03398386637366,6.652993362027421,67.45250497786044,62.27559240206825,7.08937709053934,14.47432883335873,-0.22122698538334254,73.11639912923177,0.07013333333333338,1093.689767226524,0,0,5.333333333333335e-5,0.11405500086645286,3.573333333333332e-4,0,5.399999999999996e-5 +2250,0,0,-0,-0,1.6530720462355342,7.712310115496318,0,0.006689873446399967,0,159.54999923706055,0,3.466352621714274,0,3.832020024458567,0,6.181090076764424,0,1.66843581199646,0,32.53369267781576,0,4.409581740697225,0,0,363.70384724934894,0,1157.2995503743487,166.0868533075399,2206.3500162760415,337.3399675993547,0.02126740012317896,0,0.0015001599967945367,0,0,0,137.0249989827474,0,24.55318291982015,0,213.3009999593099,0,1.548580010732015,0,10.271499872207642,0,1.3363000055154164,0,0,0,0.16107799982031187,0,0.02363019995391369,0,412.97598266601557,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,73.09789975484212,0,1001.832708193919,0,0,0,0.11206399959822495,0,0,0 +2251,0,0,-0,-0,1.6530720462355342,7.711570064226787,0,0.006397593261984487,0,159.54799779256186,0,3.4187026023864746,0,3.8063599864641824,0,6.167120019594829,0,1.6291459103425343,0,32.12429221471151,0,4.406211813290914,0,0,363.0987269083659,0,1150.26958211263,166.0868533075399,2205.5199991861978,337.3399675993547,0.018495799973607063,0,0.0013911399970917653,0,0,0,130.95800018310547,0,22.267802238464355,0,207.59200032552084,0,1.4896899958451588,0,10.208099921544393,0,1.1321799953778584,0,0,0,0.13851900026202202,0,0.021727300093819697,0,412.9179814656575,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,73.07639948527019,0,1001.832708193919,0,0,0,0.11010900015632312,0,0,0 +2252,0,0,-0,-0,1.6530720462355342,7.7107999722162885,0,0.006118093190404276,0,159.5449981689453,0,3.371712585290273,0,3.780870000521342,0,6.153180003166199,0,1.5907860100269318,0,31.720092455546062,0,4.402761896451314,0,0,362.5843276977539,0,1143.57964070638,166.0868533075399,2204.6399739583335,337.3399675993547,0.015917200051868956,0,0.001285600010305643,0,0,0,125.03000005086263,0,20.094918251037598,0,201.95899963378906,0,1.4319700102011363,0,10.145099957784018,0,0.9450059980154037,0,0,0,0.11766500025987625,0,0.019904100025693577,0,412.8579839070637,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,73.0536003112793,0,1001.832708193919,0,0,0,0.10818799957633018,0,0,0 +2253,0,0,-0,-0,1.6530720462355342,7.71002991994222,0,0.005850823052848379,0,159.5420010884603,0,3.3253725369771323,0,3.755549987157186,0,6.139270027478536,0,1.5533161163330078,0,31.320992469787598,0,4.399351716041565,0,0,362.19605509440106,0,1137.4996744791665,166.0868533075399,2203.75,337.3399675993547,0.013695399820183715,0,0.0011879299903133262,0,0,0,119.36299959818523,0,18.131423155466717,0,196.47099939982095,0,1.3763999938964844,0,10.082300027211508,0,0.7885699967543284,0,0,0,0.09992770043512185,0,0.018231799981246393,0,412.7989832560221,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,73.03079922993977,0,1001.832708193919,0,0,0,0.10629999948044618,0,0,0 +2254,0,0,-0,-0,1.6530720462355342,7.709249973297119,0,0.005595232903336485,0,159.5380007425944,0,3.2796724836031594,0,3.730400025844574,0,6.125399947166443,0,1.5167261858781178,0,30.926992734273274,0,4.396201570828755,0,0,361.8649597167969,0,1131.9796854654946,166.0868533075399,2202.8600260416665,337.3399675993547,0.011781599993507067,0,0.0010975799911345045,0,0,0,113.9450003306071,0,16.357462008794148,0,191.12700017293295,0,1.3229299982388814,0,10.01990008354187,0,0.6578769981861115,0,0,0,0.0848468008140723,0,0.016698199945191543,0,412.74098459879554,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,73.00799878438313,0,1001.832708193919,0,0,0,0.10444600072999795,0,0,0 +2255,0,0,-0,-0,1.6530720462355342,7.708480000495911,0,0.005350812726343672,0,159.5349998474121,0,3.234612464904785,0,3.7054199973742166,0,6.111550013224284,0,1.4809962809085846,0,30.53799279530843,0,4.393321593602498,0,0,361.56885782877606,0,1126.9697163899737,166.0868533075399,2201.9699910481772,337.3399675993547,0.010133599940066537,0,0.0010140100008963298,0,0,0,108.76800028483073,0,14.755392710367838,0,185.92199834187826,0,1.2714699904123943,0,9.957739988962809,0,0.5487279941638311,0,0,0,0.07202839913467567,0,0.015292200104643902,0,412.682985941569,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.98520024617513,0,1001.832708193919,0,0,0,0.10262400036056836,0,0,0 +2256,0,0,-0,-0,1.6530720462355342,7.707709987958272,0,0.005117092669631044,0,159.53200022379556,0,3.190162420272827,0,3.6806100010871887,0,6.097740054130554,0,1.4461163679758708,0,30.153892676035564,0,4.3907014926274615,0,0,361.30078379313153,0,1122.419728597005,166.0868533075399,2201.0999959309897,337.3399675993547,0.008714899964009723,0,9.367309927862758e-4,0,0,0,103.82100041707356,0,13.308695554733276,0,180.8540013631185,0,1.221970001856486,0,9.89592989285787,0,0.4575989991426468,0,0,0,0.06113620071361462,0,0.014003299952795109,0,412.6249872843424,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.96239980061848,0,1001.832708193919,0,0,0,0.10083400023480256,0,0,0 +2257,0,0,-0,-0,1.6530720462355342,7.706939975420634,0,0.004893582547083497,0,159.52900187174478,0,3.146332403024038,0,3.655970056851705,0,6.083960056304932,0,1.412056456009547,0,29.774593035380047,0,4.388321359952291,0,0,361.0577214558919,0,1118.2697652180987,166.0868533075399,2200.220011393229,337.3399675993547,0.007493790006265044,0,8.652750014637908e-4,0,0,0,99.0948003133138,0,12.002581199010214,0,175.9199981689453,0,1.1743500034014385,0,9.834450085957846,0,0.3815369978547096,0,0,0,0.051883100221554436,0,0.012821999999384085,0,412.5679829915364,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.93959935506184,0,1001.832708193919,0,0,0,0.09907480018834273,0,0,0 +2258,0,0,-0,-0,1.6530720462355342,7.706170002619426,0,0.004679842347589632,0,159.52599970499674,0,3.103102366129557,0,3.6314900120099387,0,6.070220033327739,0,1.3787865440050762,0,29.400193373362224,0,4.386151313781738,0,0,360.8356577555339,0,1114.499766031901,166.0868533075399,2199.3399861653647,337.3399675993547,0.006442989960002403,0,7.992150009764979e-4,0,0,0,94.57969983418782,0,10.823648611704508,0,171.11600240071616,0,1.1285399893919628,0,9.773300011952719,0,0.3180670017997424,0,0,0,0.044024200178682804,0,0.011739599984139204,0,412.51198069254554,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.91680018107097,0,1001.832708193919,0,0,0,0.09734680006901424,0,0,0 +2259,0,0,-0,-0,1.6530720462355342,7.705399990081787,0,0.004475442343391478,0,159.52300008138022,0,3.0604723493258157,0,3.6071799794832864,0,6.05650007724762,0,1.3462865948677063,0,29.03039312362671,0,4.38417116800944,0,0,360.6346028645833,0,1111.0597941080728,166.0868533075399,2198.4400024414062,337.3399675993547,0.005538920018201073,0,7.381539908237755e-4,0,0,0,90.26699892679851,0,9.759750048319498,0,166.43999735514322,0,1.0844900012016296,0,9.712479988733927,0,0.2651169995466868,0,0,0,0.037350899539887905,0,0.010747800037885705,0,412.45598093668616,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.89399973551433,0,1001.832708193919,0,0,0,0.09564900025725365,0,0,0 +2260,0,0,-0,-0,1.6530720462355342,7.7046299775441485,0,0.00427998222100238,0,159.5189997355143,0,3.0184322595596313,0,3.5830399990081787,0,6.042820016543071,0,1.3145466844240825,0,28.665393193562824,0,4.382371187210083,0,0,360.45055389404297,0,1107.9298095703123,166.0868533075399,2197.539998372396,337.3399675993547,0.004761229967698455,0,6.817190005676821e-4,0,0,0,86.14799944559734,0,8.799716711044312,0,161.8890012105306,0,1.0421299934387207,0,9.652000029881796,0,0.2209519992272059,0,0,0,0.03168549994006753,0,0.009839150045687953,0,412.3999811808268,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.8711986541748,0,1001.832708193919,0,0,0,0.09398089970151584,0,0,0 +2261,0,0,-0,-0,1.6530720462355342,7.70386000474294,0,0.004093062093791862,0,159.51600138346353,0,2.9769622484842935,0,3.5590500036875405,0,6.029170036315918,0,1.2835767567157745,0,28.304893334706623,0,4.380721131960551,0,0,360.28350830078125,0,1105.0698140462237,166.0868533075399,2196.6299845377603,337.3399675993547,0.004092340008355677,0,6.295669930599009e-4,0,0,0,82.2145004272461,0,7.933560411135356,0,157.4599978129069,0,1.0013899952173233,0,9.591860055923462,0,0.1841219998896122,0,0,0,0.026876499876379967,0,0.009006860045095285,0,412.3449834187825,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.8484001159668,0,1001.832708193919,0,0,0,0.0923419992129008,0,0,0 +2262,0,0,-0,-0,1.6530720462355342,7.703089992205302,0,0.00391431205207482,0,159.51300048828125,0,2.9360722502072654,0,3.535230020682017,0,6.015549937884013,0,1.2533168494701385,0,27.94899336496989,0,4.379231095314026,0,0,360.1304753621419,0,1102.4498291015623,166.0868533075399,2195.7300008138022,337.3399675993547,0.003517129982355982,0,5.813769918556014e-4,0,0,0,78.45829963684082,0,7.152201890945435,0,153.1489995320638,0,0.9622250000635783,0,9.532049973805746,0,0.15341400106747946,0,0,0,0.02279520019267996,0,0.008244560022527972,0,412.2909851074218,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.82569821675618,0,1001.832708193919,0,0,0,0.09073169901967049,0,0,0 +2263,0,0,-0,-0,1.6530720462355342,7.702320019404094,0,0.00374337190684552,0,159.51000213623047,0,2.8957422176996865,0,3.5115699966748557,0,6.001960039138794,0,1.2237569093704224,0,27.597593307495117,0,4.377861022949219,0,0,359.9914296468099,0,1100.049835205078,166.0868533075399,2194.8300170898438,337.3399675993547,0.0030225400696508586,0,5.36853001297762e-4,0,0,0,74.87179883321126,0,6.447412768999736,0,148.95399856567383,0,0.9245709975560507,0,9.472580115000406,0,0.12781399860978127,0,0,0,0.01933189993724227,0,0.0075464199762791395,0,412.2359822591145,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.8028990427653,0,1001.832708193919,0,0,0,0.08914960051576297,0,0,0 +2264,0,0,-0,-0,1.6530720462355342,7.701550006866455,0,0.0035799118146921196,0,159.50699869791666,0,2.855972190697988,0,3.488070011138916,0,5.988399982452393,0,1.194916993379593,0,27.250593344370525,0,4.376610994338989,0,0,359.86440022786456,0,1097.8598531087237,166.0868533075399,2193.9500325520835,337.3399675993547,0.0025973200293568275,0,4.957199926138856e-4,0,0,0,71.44759941101074,0,5.811763763427734,0,144.87200164794922,0,0.888372004032135,0,9.41346001625061,0,0.10647599895795186,0,0,0,0.016393499992166955,0,0.006907119958971937,0,412.18298339843744,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.7801996866862,0,1001.832708193919,0,0,0,0.0875951995452245,0,0,0 +2265,0,0,-0,-0,1.6530720462355342,7.700779994328816,0,0.0034235817923521004,0,159.50300089518228,0,2.816742161909739,0,3.4647200107574463,0,5.974869966506958,0,1.166757086912791,0,26.90799363454183,0,4.3754609028498335,0,0,359.7473729451497,0,1095.839853922526,166.0868533075399,2193.0599975585938,337.3399675993547,0.002231770020443946,0,4.5772100080891204e-4,0,0,0,68.17850112915039,0,5.2385358810424805,0,140.9010009765625,0,0.8535749961932501,0,9.354680061340332,0,0.08869330088297527,0,0,0,0.013900600063304106,0,0.0063217299757525325,0,412.1299794514973,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.75739860534668,0,1001.832708193919,0,0,0,0.08606790006160736,0,0,0 +2266,0,0,-0,-0,1.6530720462355342,7.700009981791179,0,0.003274081682320684,0,159.50000127156576,0,2.778062125047048,0,3.441540022691091,0,5.9613800048828125,0,1.1392471392949421,0,26.56969388326009,0,4.374421040217082,0,0,359.6403401692708,0,1093.9798787434893,166.0868533075399,2192.1600341796875,337.3399675993547,0.001917559983363996,0,4.226219971315004e-4,0,0,0,65.05779997507732,0,4.721619923909505,0,137.0369987487793,0,0.8201269954442978,0,9.296240091323853,0,0.07387450026969115,0,0,0,0.011785999949400624,0,0.005785750031160812,0,412.0769831339518,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.73469924926758,0,1001.832708193919,0,0,0,0.08456730159620444,0,0,0 +2267,0,0,-0,-0,1.6530720462355342,7.69924000898997,0,0.0031311216104465225,0,159.49700037638345,0,2.7399120728174844,0,3.4185099999109902,0,5.947909951210022,0,1.1123771965503693,0,26.23569377263387,0,4.373450875282288,0,0,359.5423177083333,0,1092.2798563639321,166.0868533075399,2191.2500203450522,337.3399675993547,0.0016474899991105,0,3.902019986223119e-4,0,0,0,62.078700383504234,0,4.255546847979228,0,133.27699915568033,0,0.7879770050446192,0,9.238149960835775,0,0.061527199732760586,0,0,0,0.009992480045184493,0,0.005295039930691321,0,412.02398427327466,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.71199862162273,0,1001.832708193919,0,0,0,0.08309289999306202,0,0,0 +2268,0,0,-0,-0,1.6530720462355342,7.6984699964523315,0,0.002994401555042714,0,159.4939982096354,0,2.7022820512453714,0,3.3956300218900046,0,5.93448003133138,0,1.0861572623252869,0,25.905893961588543,0,4.372570951779683,0,0,359.4522933959961,0,1090.6998697916665,166.0868533075399,2190.3400065104165,337.3399675993547,0.001415389987717693,0,3.6025899801946554e-4,0,0,0,59.235100428263344,0,3.835327168305715,0,129.6189982096354,0,0.7570769985516866,0,9.180390040079752,0,0.05124020048727592,0,0,0,0.008471369976177812,0,0.0048457999946549535,0,411.97198232014966,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.68929926554362,0,1001.832708193919,0,0,0,0.08164429912964503,0,0,0 +2269,0,0,-0,-0,1.6530720462355342,7.697700023651123,0,0.0028636514907702804,0,159.4909985860189,0,2.665172040462494,0,3.372909982999166,0,5.921069979667664,0,1.060537318388621,0,25.580293973286945,0,4.3717509508132935,0,0,359.36927795410156,0,1089.2398681640623,166.0868533075399,2189.4300130208335,337.3399675993547,0.0012159300094936043,0,3.3260599836163845e-4,0,0,0,56.520800272623696,0,3.456481655438741,0,126.06099955240886,0,0.7273789991935095,0,9.122979958852133,0,0.042670500464737415,0,0,0,0.0071814400143921375,0,0.004434559998723368,0,411.9209823608398,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.66649945576985,0,1001.832708193919,0,0,0,0.08022090047597885,0,0,0 +2270,0,0,-0,-0,1.6530720462355342,7.696930011113484,0,0.0027386114040079215,0,159.48700078328451,0,2.628582020600637,0,3.3503400087356567,0,5.907699942588806,0,1.0355073908964794,0,25.25869385401408,0,4.37100084622701,0,0,359.2932586669922,0,1087.8898925781248,166.0868533075399,2188.5299682617188,337.3399675993547,0.0010445399966556579,0,3.070680007416134e-4,0,0,0,53.930200258890785,0,3.1149507562319436,0,122.59899965922038,0,0.6988370021184286,0,9.065920114517212,0,0.03553210043658813,0,0,0,0.006087620005321999,0,0.004058110003825277,0,411.8699849446614,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.64379946390788,0,1001.832708193919,0,0,0,0.07882239980002244,0,0,0 +2271,0,0,-0,-0,1.6530720462355342,7.6961599588394165,0,0.002619041323972245,0,159.48400115966797,0,2.5924819707870483,0,3.3279199798901877,0,5.894360065460205,0,1.0110774636268616,0,24.941194375356037,0,4.370310823122661,0,0,359.2232437133789,0,1086.6398925781248,166.0868533075399,2187.6200154622397,337.3399675993547,8.972690023559456e-4,0,2.834839979186654e-4,0,0,0,51.45760027567545,0,2.8070950309435525,0,119.2309996287028,0,0.6714080025752386,0,9.009190003077189,0,0.029586299943427246,0,0,0,0.005160169947581987,0,0.00371352998384585,0,411.81898244222,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.62110074361165,0,1001.832708193919,0,0,0,0.0774483997374773,0,0,0 +2272,0,0,-0,-0,1.6530720462355342,7.695390025774638,0,0.002504691268162181,0,159.48099899291992,0,2.5568919579188027,0,3.305649975935618,0,5.881039977073669,0,0.9872285226980845,0,24.627693970998127,0,4.3696707884470625,0,0,359.15722910563153,0,1085.4698893229165,166.0868533075399,2186.7199910481772,337.3399675993547,7.707339973421767e-4,0,2.617070034223919e-4,0,0,0,49.0977996190389,0,2.5295849442481995,0,115.95599873860677,0,0.645048995812734,0,8.952800114949545,0,0.024634300265461206,0,0,0,0.004373830005836983,0,0.0033981400192715228,0,411.7689819335937,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.59849993387859,0,1001.832708193919,0,0,0,0.07609829989572366,0,0,0 +2273,0,0,-0,-0,1.6530720462355342,7.6946200132369995,0,0.0023953312387069068,0,159.47799809773764,0,2.5217819213867188,0,3.283539970715841,0,5.867759982744853,0,0.9639515727758408,0,24.31819438934326,0,4.369070808092753,0,0,359.0972162882487,0,1084.379913330078,166.0868533075399,2185.8200073242188,337.3399675993547,6.620210042456165e-4,0,2.4159800280661634e-4,0,0,0,46.845699628194176,0,2.279450992743174,0,112.76899973551433,0,0.6197179853916168,0,8.896759907404581,0,0.02051019963497917,0,0,0,0.003707170020788908,0,0.003109470009803772,0,411.7189839680989,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.5757999420166,0,1001.832708193919,0,0,0,0.07477180038889249,0,0,0 +2274,0,0,-0,-0,1.6530720462355342,7.693850000699361,0,0.0022907511641581855,0,159.47499720255533,0,2.487151881059011,0,3.2615699966748557,0,5.854509989420573,0,0.9412106374899546,0,24.0125945409139,0,4.3685208559036255,0,0,359.0402069091797,0,1083.359903971354,166.0868533075399,2184.9000244140625,337.3399675993547,5.686239989396805e-4,0,2.230299990818215e-4,0,0,0,44.69640032450358,0,2.054003417491913,0,109.66899998982747,0,0.5953770081202189,0,8.841050068537394,0,0.017075899988412857,0,0,0,0.0031420100131072104,0,0.0028452700353227556,0,411.6699778238932,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.5531005859375,0,1001.832708193919,0,0,0,0.07346850012739499,0,0,0 +2275,0,0,-0,-0,1.6530720462355342,7.693080027898152,0,0.0021907411282882094,0,159.47100194295248,0,2.4530118703842163,0,3.2397499879201255,0,5.84128999710083,0,0.9189916799465815,0,23.71079428990682,0,4.368000785509746,0,0,358.9881896972656,0,1082.3998921712237,166.0868533075399,2183.989990234375,337.3399675993547,4.8838899480567e-4,0,2.0588599727489054e-4,0,0,0,42.645300229390465,0,1.850812743107478,0,106.65400060017903,0,0.57198799153169,0,8.785679976145426,0,0.014216000058998665,0,0,0,0.0026629200049986443,0,0.00260346995977064,0,411.6209869384765,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.53039868672688,0,1001.832708193919,0,0,0,0.07218789992233117,0,0,0 +2276,0,0,-0,-0,1.6530720462355342,7.6923099756240845,0,0.0020951010713664195,0,159.46800104777017,0,2.4193318486213684,0,3.2180700302124023,0,5.8281000057856245,0,0.8973037401835123,0,23.412794431050617,0,4.367520769437154,0,0,358.93918863932294,0,1081.5099080403643,166.0868533075399,2183.0899861653647,337.3399675993547,4.194639962709819e-4,0,1.900570011154438e-4,0,0,0,40.68790054321289,0,1.6676891247431438,0,103.72199948628743,0,0.5495119988918304,0,8.730650027592977,0,0.011834700126200914,0,0,0,0.002256809986041238,0,0.002382179993825654,0,411.5719833374023,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.50779978434245,0,1001.832708193919,0,0,0,0.0709296992669503,0,0,0 +2277,0,0,-0,-0,1.6530720462355342,7.691540042559306,0,0.00200363101127247,0,159.46499888102213,0,2.386111835638682,0,3.1965400179227195,0,5.814939975738525,0,0.8761337995529175,0,23.118494828542072,0,4.36707071463267,0,0,358.89317321777344,0,1080.6599019368487,166.0868533075399,2182.1900024414062,337.3399675993547,3.6025699955644086e-4,0,1.7544200090924278e-4,0,0,0,38.82010014851888,0,1.5026529332002003,0,100.86899948120117,0,0.5279160042603811,0,8.675949970881144,0,0.009851939898605147,0,0,0,0.0019125700152168672,0,0.002179669992377361,0,411.52397918701166,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.48509915669759,0,1001.832708193919,0,0,0,0.06969339959323406,0,0,0 +2278,0,0,-0,-0,1.6530720462355342,7.690769990285237,0,0.001916161001039048,0,159.4619992574056,0,2.3533518314361572,0,3.175159990787506,0,5.801809986432393,0,0.8554698477188746,0,22.82799466451009,0,4.366650780042012,0,0,358.8501688639323,0,1079.859893798828,166.0868533075399,2181.289998372396,337.3399675993547,3.094000009393009e-4,0,1.6194899944821373e-4,0,0,0,37.03770033518473,0,1.3539243737856548,0,98.09479967753093,0,0.5071659858028094,0,8.621580044428507,0,0.008201110060326755,0,0,0,0.0016208000015467405,0,0.001994340001450231,0,411.47598012288404,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.46249898274739,0,1001.832708193919,0,0,0,0.06847870039443175,0,0,0 +2279,0,0,-0,-0,1.6530720462355342,7.690009991327922,0,0.001832500915043056,0,159.4589983622233,0,2.321041762828827,0,3.153919994831085,0,5.788709958394368,0,0.8352788984775543,0,22.54109462102254,0,4.366250832875569,0,0,358.8091583251953,0,1079.099904378255,166.0868533075399,2180.3999837239585,337.3399675993547,2.6571599786014605e-4,0,1.494920021893146e-4,0,0,0,35.33690039316813,0,1.2198937038580577,0,95.39620018005371,0,0.487226997812589,0,8.56755002339681,0,0.0068266900489106774,0,0,0,0.0013734999908289562,0,0.0018247499926170956,0,411.42898305257154,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.43980026245117,0,1001.832708193919,0,0,0,0.06728519996007283,0,0,0 +2280,0,0,-0,-0,1.6530720462355342,7.689240097999573,0,0.001752500907362749,0,159.45600128173828,0,2.2891817688941956,0,3.1328200101852417,0,5.77563997109731,0,0.8155489514271418,0,22.25789467493693,0,4.365870753924052,0,0,358.7711537679036,0,1078.37993367513,166.0868533075399,2179.4999796549478,337.3399675993547,2.281950000906363e-4,0,1.3799100027730068e-4,0,0,0,33.71389929453532,0,1.0991211632887523,0,92.77139981587727,0,0.46806999295949936,0,8.513839880625406,0,0.005682440047773222,0,0,0,0.0011639100072594981,0,0.00166955998671862,0,411.38198343912757,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.41719881693523,0,1001.832708193919,0,0,0,0.06611249968409538,0,0,0 +2281,0,0,-0,-0,1.6530720462355342,7.688470005989075,0,0.0016760008487229545,0,159.4520009358724,0,2.2577617168426514,0,3.1118600368499756,0,5.762589971224467,0,0.796289990345637,0,21.97819455464681,0,4.365510781606038,0,0,358.7341537475586,0,1077.6999104817705,166.0868533075399,2178.5999959309897,337.3399675993547,1.9596800120780244e-4,0,1.2737400053689876e-4,0,0,0,32.16530021031698,0,0.9902798434098562,0,90.21860059102376,0,0.4496629983186722,0,8.460469961166382,0,0.004729860035392146,0,0,0,9.862720132029306e-4,0,0.0015275399976720412,0,411.33498382568354,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.3945992787679,0,1001.832708193919,0,0,0,0.06496030030151208,0,0,0 +2282,0,0,-0,-0,1.6530720462355342,7.687700072924296,0,0.0016028308309614658,0,159.4490000406901,0,2.2267616788546243,0,3.0910500486691794,0,5.749579946200053,0,0.7774910430113474,0,21.701994736989338,0,4.36517071723938,0,0,358.69913991292316,0,1077.0399169921873,166.0868533075399,2177.7000122070312,337.3399675993547,1.6828900091544105e-4,0,1.1757200021141519e-4,0,0,0,30.687599976857502,0,0.8922070215145746,0,87.73560015360515,0,0.431977999707063,0,8.407419999440512,0,0.003936869965400547,0,0,0,8.357290062122047e-4,0,0.001397590017101417,0,411.2889836629231,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.3718999226888,0,1001.832708193919,0,0,0,0.06382809889813264,0,0,0 +2283,0,0,-0,-0,1.6530720462355342,7.686930020650228,0,0.0015328607890599717,0,159.44600041707358,0,2.196191688378652,0,3.070369998613993,0,5.736599961916606,0,0.7591420908768972,0,21.42929490407308,0,4.364840745925903,0,0,358.66613515218097,0,1076.4199117024737,166.0868533075399,2176.8000284830728,337.3399675993547,1.4451600266814543e-4,0,1.0852399888487223e-4,0,0,0,29.277599970499676,0,0.8038357595602671,0,85.32069905598958,0,0.4149859994649887,0,8.354700167973837,0,0.003276739987389495,0,0,0,7.081490136139715e-4,0,0.0012786900042556226,0,411.2429809570312,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.3492997487386,0,1001.832708193919,0,0,0,0.06271580047905445,0,0,0 +2284,0,0,-0,-0,1.6530720462355342,7.68615996837616,0,0.001465940741278852,0,159.44300079345703,0,2.1660516460736594,0,3.0498299996058145,0,5.723650058110555,0,0.7412311335404714,0,21.159995079040527,0,4.364530722300212,0,0,358.6351318359375,0,1075.8099263509112,166.0868533075399,2175.9100138346353,337.3399675993547,1.2409999969046717e-4,0,5.174597451211108e-5,0,0,0,27.932199954986572,0,0.7242072770992914,0,82.97200012207031,0,0.3986599991718928,0,8.3023099899292,0,0.0027272400135795274,0,0,0,6.000330079890167e-4,0,0.0011698799983908732,0,411.1969833374023,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.32669893900554,0,1001.832708193919,0,0,0,0.061622799995044865,0,0,0 +2285,0,0,-0,-0,1.6530720462355342,7.685390035311381,0,0.001401950711927687,0,159.44000116984049,0,2.136311630407969,0,3.0294300317764282,0,5.710719982783,0,0.7237261732419332,0,20.89409526189168,0,4.364230672518413,0,0,358.6051330566406,0,1075.2299194335935,166.0868533075399,2175.010009765625,337.3399675993547,9.829233749769628e-5,0,0,0,0,0,26.648500283559162,0,0.6524576246738434,0,80.68770027160645,0,0.3829749996463458,0,8.250229994455973,0,0.0022698399455597005,0,0,0,5.084129952592775e-4,0,0.0010703199950512499,0,411.151985168457,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.30409876505534,0,1001.832708193919,0,0,0,0.060548900005718075,0,0,0 +2286,0,0,-0,-0,1.6530720462355342,7.684620022773743,0,0.0013407506824781497,0,159.4360008239746,0,2.1069915890693665,0,3.0091699759165444,0,5.697830080986023,0,0.7066192229588827,0,20.631594975789387,0,4.363950729370117,0,0,358.57513427734375,0,1074.679941813151,166.0868533075399,2174.1199951171875,337.3399675993547,0,0,0,0,0,0,25.42360003789266,0,0.5878099749485651,0,78.46609942118327,0,0.36790499836206436,0,8.198479890823364,0,0.0018891100286661338,0,0,0,4.3077400187030435e-4,0,9.792290074983612e-4,0,411.10698445638013,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.28149859110515,0,1001.832708193919,0,0,0,0.05949370035280784,0,0,0 +2287,0,0,-0,-0,1.6530720462355342,7.683859904607137,0,0.0012822206578372668,0,159.43300247192383,0,2.0780715942382812,0,2.9890400171279907,0,5.684960047403972,0,0.6899202615022659,0,20.37229522069295,0,4.3636707464853925,0,0,358.547119140625,0,1074.139902750651,166.0868533075399,2173.2300008138022,337.3399675993547,0,0,0,0,0,0,24.254899978637695,0,0.5295613904794058,0,76.30530039469402,0,0.3534270003437996,0,8.147040128707886,0,0.001572210011848559,0,0,0,3.6498499927499023e-4,0,8.958789985626936e-4,0,411.0629806518554,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.2588996887207,0,1001.832708193919,0,0,0,0.05845700018107891,0,0,0 +2288,0,0,-0,-0,1.6530720462355342,7.6830900112787885,0,0.0012262506449284654,0,159.42999903361002,0,2.0495415329933167,0,2.9690500100453696,0,5.672129988670349,0,0.6736202985048294,0,20.116395155588787,0,4.36340069770813,0,0,358.52012125651044,0,1073.60991414388,166.0868533075399,2172.3399861653647,337.3399675993547,0,0,0,0,0,0,23.13980007171631,0,0.4770789792140325,0,74.20390065511067,0,0.3395159989595413,0,8.095920006434122,0,0.0013084400173587103,0,0,0,3.092379944670635e-4,0,8.196169947041199e-4,0,411.0189768473307,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.2363993326823,0,1001.832708193919,0,0,0,0.057438299991190434,0,0,0 +2289,0,0,-0,-0,1.6530720462355342,7.682320078214009,0,0.001172720609853665,0,159.4269994099935,0,2.021411577860514,0,2.949190000693003,0,5.659319996833801,0,0.6577093402544657,0,19.863595326741535,0,4.36314074198405,0,0,358.4941228230794,0,1073.099934895833,166.0868533075399,2171.4600423177085,337.3399675993547,0,0,0,0,0,0,22.075900077819824,0,0.4297928065061569,0,72.16010093688965,0,0.3261519993344943,0,8.045120000839233,0,0.0010888999871288736,0,0,0,2.620009981910698e-4,0,7.498390041291714e-4,0,410.974983215332,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.21380043029785,0,1001.832708193919,0,0,0,0.05643739985922972,0,0,0 +2290,0,0,-0,-0,1.6530720462355342,7.681550025939941,0,0.0011215305809552472,0,159.42400105794272,0,1.9936715066432953,0,2.9294599692026773,0,5.646539966265361,0,0.6421783715486526,0,19.613995393117268,0,4.362890720367432,0,0,358.46911875406903,0,1072.609903971354,166.0868533075399,2170.5700073242188,337.3399675993547,0,0,0,0,0,0,21.060800234476726,0,0.3871889685591062,0,70.17249997456868,0,0.31331299990415573,0,7.994630018870036,0,9.061829914571717e-4,0,0,0,2.2197600264917128e-4,0,6.859960024788355e-4,0,410.93198394775385,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.19119962056477,0,1001.832708193919,0,0,0,0.05545390024781227,0,0,0 +2291,0,0,-0,-0,1.6530720462355342,7.680780013402303,0,0.0010725805671730388,0,159.4200007120768,0,1.9663015007972717,0,2.9098700086275735,0,5.633800029754639,0,0.6270194053649902,0,19.367595354715984,0,4.362650632858276,0,0,358.4441197713216,0,1072.119934082031,166.0868533075399,2169.6799926757812,337.3399675993547,0,0,0,0,0,0,20.092300097147625,0,0.3488055194417636,0,68.23940022786458,0,0.3009780024488767,0,7.944459994633992,0,7.541100009499738e-4,0,0,0,1.8806200265923204e-4,0,6.275829994895806e-4,0,410.8889846801757,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.16869926452637,0,1001.832708193919,0,0,0,0.05448760061214367,0,0,0 +2292,0,0,-0,-0,1.6530720462355342,7.6800200541814165,0,0.0010257605269240837,0,159.41699981689453,0,1.9393114844957988,0,2.89040998617808,0,5.6210800011952715,0,0.612200453877449,0,19.124295393625896,0,4.362410704294841,0,0,358.42011006673175,0,1071.649912516276,166.0868533075399,2168.7900187174478,337.3399675993547,0,0,0,0,0,0,19.168199857076008,0,0.3142235154906909,0,66.35940106709798,0,0.28912700215975445,0,7.894589980443318,0,6.27547002901944e-4,0,0,0,1.5932700019523813e-4,0,5.741400042703996e-4,0,410.8459803263346,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.1461009979248,0,1001.832708193919,0,0,0,0.053538200135032334,0,0,0 +2293,0,0,-0,-0,1.6530720462355342,7.679250001907349,0,9.809824987314641e-4,0,159.41399892171225,0,1.9126914540926616,0,2.8710699677467346,0,5.608389973640442,0,0.5977134903271993,0,18.88399585088094,0,4.362180709838867,0,0,358.39611053466797,0,1071.1899210611978,166.0868533075399,2167.9099934895835,337.3399675993547,0,0,0,0,0,0,18.286500136057537,0,0.283067025244236,0,64.53099950154622,0,0.27774200091759366,0,7.845029989878337,0,5.222149945135849e-4,0,0,0,1.349809972452931e-4,0,5.2524299826473e-4,0,410.80398305257154,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.12359937032063,0,1001.832708193919,0,0,0,0.0526052995895346,0,0,0 +2294,0,0,-0,-0,1.6530720462355342,7.67848002910614,0,9.381634881719947e-4,0,159.41099802652994,0,1.8864414195219676,0,2.8518700202306113,0,5.595719973246257,0,0.5835735301176707,0,18.646695454915363,0,4.361950715382894,0,0,358.37310791015625,0,1070.7399495442705,166.0868533075399,2167.029988606771,337.3399675993547,0,0,0,0,0,0,17.44539992014567,0,0.254997082054615,0,62.75279998779297,0,0.26680399974187213,0,7.795780022939046,0,4.345560009824112e-4,0,0,0,1.1435300136023822e-4,0,4.8050700085392844e-4,0,410.761983235677,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.10109965006511,0,1001.832708193919,0,0,0,0.051688600331544876,0,0,0 +2295,0,0,-0,-0,1.6530720462355342,7.6777100165685015,0,8.972124536133682e-4,0,159.40799967447916,0,1.8605514168739319,0,2.8327999909718833,0,5.583089987436931,0,0.569770559668541,0,18.412495613098145,0,4.361730734507243,0,0,358.35011291503906,0,1070.2999369303384,166.0868533075399,2166.1399943033853,337.3399675993547,0,0,0,0,0,0,16.642800172170002,0,0.2297087386250496,0,61.02350044250488,0,0.2562960038582484,0,7.7468299468358355,0,3.61604996821067e-4,0,0,0,9.687589893777233e-5,0,4.3957799789495766e-4,0,410.7199834187825,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.07849884033203,0,1001.832708193919,0,0,0,0.05078800022602081,0,0,0 +2296,0,0,-0,-0,1.6530720462355342,7.676940004030864,0,8.580504412141939e-4,0,159.4049975077311,0,1.8350213865439098,0,2.8138500253359475,0,5.570490002632141,0,0.5562975953022639,0,18.181195894877117,0,4.361510713895162,0,0,358.3281071980794,0,1069.859924316406,166.0868533075399,2165.2699991861978,337.3399675993547,0,0,0,0,0,0,15.877099990844727,0,0.2069260353843371,0,59.3417002360026,0,0.24620099986592928,0,7.698190013567607,0,3.0089500069152564e-4,0,0,0,8.206880071763105e-5,0,4.021319982712157e-4,0,410.67898559570307,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.055999755859375,0,1001.832708193919,0,0,0,0.04990299977362156,0,0,0 +2297,0,0,-0,-0,1.6530720462355342,7.6761800448099775,0,8.205974202913543e-4,0,159.400998433431,0,1.8098313709100087,0,2.7950299978256226,0,5.557910005251567,0,0.5431466301282247,0,17.952695846557617,0,4.361290733019511,0,0,358.30610911051434,0,1069.4299316406248,166.0868533075399,2164.4000244140625,337.3399675993547,0,0,0,0,0,0,15.146600008010864,0,0.1864010045925776,0,57.70620059967041,0,0.2365030013024807,0,7.649850010871887,0,2.503740021590299e-4,0,0,0,6.952390018947578e-5,0,3.6787300147504237e-4,0,410.6379826863606,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.03350003560384,0,1001.832708193919,0,0,0,0.049033500564595066,0,0,0 +2298,0,0,-0,-0,1.6530720462355342,7.675409992535909,0,7.847794089078283e-4,0,159.39799880981445,0,1.7849913736184437,0,2.7763400077819824,0,5.545359929402669,0,0.5303096622228622,0,17.727195898691814,0,4.361080765724182,0,0,358.2841059366862,0,1069.0099487304685,166.0868533075399,2163.5199584960938,337.3399675993547,0,0,0,0,0,0,14.449600060780844,0,0.16791068265835443,0,56.11549949645996,0,0.22718600059549013,0,7.601800044377645,0,2.0833200323977508e-4,0,0,0,5.889580127889834e-5,0,3.365310064206521e-4,0,410.59698232014966,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,72.01100031534831,0,1001.832708193919,0,0,0,0.048179199608663716,0,0,0 +2299,0,0,-0,-0,1.6530720462355342,7.674639979998271,0,7.505253791653862e-4,0,159.39499791463217,0,1.7605013251304626,0,2.757770001888275,0,5.53284998734792,0,0.5177786896626154,0,17.504495938618977,0,4.360870718955994,0,0,358.26310475667316,0,1068.5899353027341,166.0868533075399,2162.6300659179688,337.3399675993547,0,0,0,0,0,0,13.784599939982096,0,0.15125309055050215,0,54.56860033671061,0,0.21823500220974287,0,7.5540599425633745,0,1.7334699320296446e-4,0,0,0,4.989169883629074e-5,0,3.078559966525063e-4,0,410.55697886149085,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,71.98850123087566,0,1001.832708193919,0,0,0,0.047339700162410736,0,0,0 +2300,0,0,-0,-0,1.6530720462355342,7.6738700071970625,0,7.177663695377609e-4,0,159.3919995625814,0,1.736331323782603,0,2.739329973856608,0,5.520349939664205,0,0.5055477172136307,0,17.28459596633911,0,4.360660711924235,0,0,358.2421112060547,0,1068.169932047526,166.0868533075399,2161.740030924479,337.3399675993547,0,0,0,0,0,0,13.150200128555298,0,0.13624626273910204,0,53.06419976552328,0,0.20963599905371666,0,7.506609956423442,0,1.442339998902753e-4,0,0,0,4.2263499684243776e-5,0,2.8162300198649365e-4,0,410.5169830322265,6.643287232292263,67.35805605877175,61.59749058642659,6.935219227236111,14.453331734499173,-0.22122698538334254,71.96599833170573,0,1001.832708193919,0,0,0,0.04651490040123463,0,0,0 diff --git a/inst/input/constraints/tgav_historical.csv b/inst/input/tables/tas_historical.csv similarity index 90% rename from inst/input/constraints/tgav_historical.csv rename to inst/input/tables/tas_historical.csv index 6529ca3d2..1154acf37 100644 --- a/inst/input/constraints/tgav_historical.csv +++ b/inst/input/tables/tas_historical.csv @@ -1,166 +1,166 @@ -; Temperature from HadCRUT4, -Date,tgav_constrain -1850,0 -1851,0.003 -1852,0.003 -1853,-0.002 -1854,-0.01 -1855,-0.022 -1856,-0.036 -1857,-0.048 -1858,-0.059 -1859,-0.066 -1860,-0.07 -1861,-0.068 -1862,-0.063 -1863,-0.054 -1864,-0.042 -1865,-0.028 -1866,-0.015 -1867,-0.004 -1868,0.004 -1869,0.008 -1870,0.009 -1871,0.009 -1872,0.01 -1873,0.013 -1874,0.021 -1875,0.032 -1876,0.045 -1877,0.058 -1878,0.066 -1879,0.068 -1880,0.062 -1881,0.049 -1882,0.031 -1883,0.011 -1884,-0.008 -1885,-0.024 -1886,-0.036 -1887,-0.045 -1888,-0.052 -1889,-0.058 -1890,-0.063 -1891,-0.066 -1892,-0.067 -1893,-0.063 -1894,-0.056 -1895,-0.047 -1896,-0.037 -1897,-0.029 -1898,-0.026 -1899,-0.03 -1900,-0.039 -1901,-0.054 -1902,-0.072 -1903,-0.09 -1904,-0.109 -1905,-0.126 -1906,-0.14 -1907,-0.151 -1908,-0.158 -1909,-0.159 -1910,-0.154 -1911,-0.142 -1912,-0.125 -1913,-0.106 -1914,-0.086 -1915,-0.067 -1916,-0.051 -1917,-0.036 -1918,-0.021 -1919,-0.007 -1920,0.006 -1921,0.019 -1922,0.031 -1923,0.043 -1924,0.054 -1925,0.064 -1926,0.074 -1927,0.083 -1928,0.092 -1929,0.101 -1930,0.11 -1931,0.12 -1932,0.132 -1933,0.145 -1934,0.16 -1935,0.178 -1936,0.198 -1937,0.219 -1938,0.24 -1939,0.259 -1940,0.274 -1941,0.286 -1942,0.294 -1943,0.297 -1944,0.295 -1945,0.29 -1946,0.281 -1947,0.271 -1948,0.261 -1949,0.253 -1950,0.247 -1951,0.242 -1952,0.238 -1953,0.235 -1954,0.233 -1955,0.234 -1956,0.238 -1957,0.244 -1958,0.252 -1959,0.258 -1960,0.262 -1961,0.261 -1962,0.255 -1963,0.247 -1964,0.239 -1965,0.231 -1966,0.226 -1967,0.223 -1968,0.221 -1969,0.22 -1970,0.219 -1971,0.217 -1972,0.215 -1973,0.215 -1974,0.219 -1975,0.227 -1976,0.24 -1977,0.259 -1978,0.281 -1979,0.303 -1980,0.324 -1981,0.341 -1982,0.356 -1983,0.367 -1984,0.379 -1985,0.392 -1986,0.407 -1987,0.423 -1988,0.441 -1989,0.458 -1990,0.475 -1991,0.49 -1992,0.506 -1993,0.524 -1994,0.545 -1995,0.568 -1996,0.594 -1997,0.62 -1998,0.646 -1999,0.67 -2000,0.692 -2001,0.713 -2002,0.731 -2003,0.746 -2004,0.757 -2005,0.764 -2006,0.769 -2007,0.77 -2008,0.77 -2009,0.769 -2010,0.768 -2011,0.768 -2012,0.768 -2013,0.768 +; Temperature from HadCRUT4, +Date,tas_constrain +1850,0 +1851,0.003 +1852,0.003 +1853,-0.002 +1854,-0.01 +1855,-0.022 +1856,-0.036 +1857,-0.048 +1858,-0.059 +1859,-0.066 +1860,-0.07 +1861,-0.068 +1862,-0.063 +1863,-0.054 +1864,-0.042 +1865,-0.028 +1866,-0.015 +1867,-0.004 +1868,0.004 +1869,0.008 +1870,0.009 +1871,0.009 +1872,0.01 +1873,0.013 +1874,0.021 +1875,0.032 +1876,0.045 +1877,0.058 +1878,0.066 +1879,0.068 +1880,0.062 +1881,0.049 +1882,0.031 +1883,0.011 +1884,-0.008 +1885,-0.024 +1886,-0.036 +1887,-0.045 +1888,-0.052 +1889,-0.058 +1890,-0.063 +1891,-0.066 +1892,-0.067 +1893,-0.063 +1894,-0.056 +1895,-0.047 +1896,-0.037 +1897,-0.029 +1898,-0.026 +1899,-0.03 +1900,-0.039 +1901,-0.054 +1902,-0.072 +1903,-0.09 +1904,-0.109 +1905,-0.126 +1906,-0.14 +1907,-0.151 +1908,-0.158 +1909,-0.159 +1910,-0.154 +1911,-0.142 +1912,-0.125 +1913,-0.106 +1914,-0.086 +1915,-0.067 +1916,-0.051 +1917,-0.036 +1918,-0.021 +1919,-0.007 +1920,0.006 +1921,0.019 +1922,0.031 +1923,0.043 +1924,0.054 +1925,0.064 +1926,0.074 +1927,0.083 +1928,0.092 +1929,0.101 +1930,0.11 +1931,0.12 +1932,0.132 +1933,0.145 +1934,0.16 +1935,0.178 +1936,0.198 +1937,0.219 +1938,0.24 +1939,0.259 +1940,0.274 +1941,0.286 +1942,0.294 +1943,0.297 +1944,0.295 +1945,0.29 +1946,0.281 +1947,0.271 +1948,0.261 +1949,0.253 +1950,0.247 +1951,0.242 +1952,0.238 +1953,0.235 +1954,0.233 +1955,0.234 +1956,0.238 +1957,0.244 +1958,0.252 +1959,0.258 +1960,0.262 +1961,0.261 +1962,0.255 +1963,0.247 +1964,0.239 +1965,0.231 +1966,0.226 +1967,0.223 +1968,0.221 +1969,0.22 +1970,0.219 +1971,0.217 +1972,0.215 +1973,0.215 +1974,0.219 +1975,0.227 +1976,0.24 +1977,0.259 +1978,0.281 +1979,0.303 +1980,0.324 +1981,0.341 +1982,0.356 +1983,0.367 +1984,0.379 +1985,0.392 +1986,0.407 +1987,0.423 +1988,0.441 +1989,0.458 +1990,0.475 +1991,0.49 +1992,0.506 +1993,0.524 +1994,0.545 +1995,0.568 +1996,0.594 +1997,0.62 +1998,0.646 +1999,0.67 +2000,0.692 +2001,0.713 +2002,0.731 +2003,0.746 +2004,0.757 +2005,0.764 +2006,0.769 +2007,0.77 +2008,0.77 +2009,0.769 +2010,0.768 +2011,0.768 +2012,0.768 +2013,0.768 \ No newline at end of file diff --git a/man/carboncycle.Rd b/man/carboncycle.Rd index 36536e91a..1181dbdc3 100644 --- a/man/carboncycle.Rd +++ b/man/carboncycle.Rd @@ -1,48 +1,80 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{carboncycle} -\alias{carboncycle} -\alias{LAND_CFLUX} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{NBP} \alias{NBP} -\alias{ATMOSPHERIC_CO2} +\alias{CONCENTRATIONS_CO2} \alias{NPP} -\alias{ATMOSPHERIC_C} +\alias{RH} +\alias{ATMOSPHERIC_CO2} \alias{FFI_EMISSIONS} +\alias{DACCS_UPTAKE} \alias{LUC_EMISSIONS} +\alias{LUC_UPTAKE} \alias{CO2_CONSTRAIN} +\alias{NBP_CONSTRAIN} \alias{VEG_C} \alias{DETRITUS_C} \alias{SOIL_C} +\alias{PERMAFROST_C} +\alias{THAWEDP_C} +\alias{FRAC_FROZEN} +\alias{FRAC_STATIC} +\alias{PERMAFROST_MU} +\alias{PERMAFROST_SIGMA} +\alias{FRAC_DECOMP_CH4} +\alias{EARTH_C} \alias{NPP_FLUX0} +\alias{carboncycle} \title{Identifiers for variables in the Hector carbon cycle component} \usage{ -LAND_CFLUX() - NBP() -ATMOSPHERIC_CO2() +CONCENTRATIONS_CO2() NPP() -ATMOSPHERIC_C() +RH() + +ATMOSPHERIC_CO2() FFI_EMISSIONS() +DACCS_UPTAKE() + LUC_EMISSIONS() +LUC_UPTAKE() + CO2_CONSTRAIN() +NBP_CONSTRAIN() + VEG_C(biome = "") DETRITUS_C(biome = "") SOIL_C(biome = "") +PERMAFROST_C(biome = "") + +THAWEDP_C(biome = "") + +FRAC_FROZEN(biome = "") + +FRAC_STATIC(biome = "") + +PERMAFROST_MU(biome = "") + +PERMAFROST_SIGMA(biome = "") + +FRAC_DECOMP_CH4(biome = "") + +EARTH_C() + NPP_FLUX0(biome = "") } \arguments{ -\item{biome}{Biome for which to retrieve parameter. If missing or -`""`, default to `"global"`.} +\item{biome}{Name of biome (leave empty for global)} } \description{ These identifiers correspond to variables that can be read and/or set in the @@ -50,32 +82,55 @@ carbon cycle } \section{Functions}{ \itemize{ -\item \code{CO2_CONSTRAIN}: Constrain atmospheric CO2 concentration (\code{"(ppmv CO2)"}) +\item \code{CO2_CONSTRAIN()}: Constrain atmospheric CO2 concentration (\code{"(ppmv CO2)"}) + +\item \code{NBP_CONSTRAIN()}: Constrain net biome production (land-atmosphere flux) (\code{"(PgC/yr)"}) + +\item \code{VEG_C()}: Vegetation C pool (`"Pg C"`) + +\item \code{DETRITUS_C()}: Vegetation detritus C pool (`"Pg C"`) -\item \code{VEG_C}: Vegetation C pool (`"Pg C"`) +\item \code{SOIL_C()}: Soil C pool (`"Pg C"`) -\item \code{DETRITUS_C}: Vegetation detritus C pool (`"Pg C"`) +\item \code{PERMAFROST_C()}: Permafrost C pool (`"Pg C"`) -\item \code{SOIL_C}: Soil C pool (`"Pg C"`) +\item \code{THAWEDP_C()}: Thawed permafrost C pool (`"Pg C"`) + +\item \code{FRAC_FROZEN()}: Fraction of permafrost still frozen (\code{"(unitless)"}) + +\item \code{FRAC_STATIC()}: Fraction of thawed permafrost that is static (\code{"(unitless)"}) + +\item \code{PERMAFROST_MU()}: Permafrost thaw mu parameter (\code{"(unitless)"}) + +\item \code{PERMAFROST_SIGMA()}: Permafrost thaw sigma parameter (\code{"(unitless)"}) + +\item \code{FRAC_DECOMP_CH4()}: Methane fraction of permafrost decomposition (\code{"(unitless)"}) + +\item \code{NPP_FLUX0()}: Initial net primary productivity (NPP)flux (`"Pg C year^-1"`) -\item \code{NPP_FLUX0}: Initial net primary productivity (NPP) -flux (`"Pg C year^-1"`) }} +\note{ +See Woodard et al. (2021) +See Woodard et al. (2021) +} \section{Output variables}{ These variables can be read using the \code{\link{GETDATA}} message type: \describe{ -\item{ATMOSPHERIC_CO2}{Atmospheric CO2 concentration} -\item{ATMOSPHERIC_C}{Atmospheric carbon pool} -\item{LAND_CFLUX}{Annual global C flux from atmosphere into the land. A - positive value means a net flux from atmosphere into land (i.e. land is a - net carbon sink), while a negative value means a net flux from land into - the atmosphere (i.e. land is a net carbon source)} -\item{NBP}{Net biome production (synonymous with \code{LAND_CFLUX}). Note - that despite the name, this is currently a globally-averaged variable.} +\item{CONCENTRATIONS_CO2}{Atmospheric CO2 concentration} +\item{ATMOSPHERIC_CO2}{Atmospheric CO2 in units of C} +\item{NBP}{Net biome production. Annual global C flux from atmosphere into + the land. A positive value means a net flux from atmosphere into land + (i.e. land is a net carbon sink), while a negative value means a net flux + from land into the atmosphere (i.e. land is a net carbon source). Note + that despite the name--which follows disciplinary convention, see Chapin + et al. 2006--this is currently a globally-averaged variable.} \item{FFI_EMISSIONS}{Fossil fuel and industrial emissions} \item{LUC_EMISSIONS}{Land use change emissions} +\item{NPP}{Net primary production} +\item{RH}{Heterotrophic respiration} +\item{EARTH_C}{Earth pool} } } @@ -85,13 +140,16 @@ These variables can be read using the \code{\link{GETDATA}} message type: \item{FFI_EMISSIONS}{Fossil fuel and industrial emissions (\code{"Pg C/yr"})} \item{LUC_EMISSIONS}{Land use change emissions (\code{"Pg C/yr"})} \item{CO2_CONSTRAIN}{Prescribed atmospheric CO2 concentration (\code{"ppmv CO2"})} +\item{NBP_CONSTRAIN}{Prescribed net biome production (land-atmosphere C flux) (\code{"Pg C/yr"})} +\item{DACCS_UPTAKE}{Direct air carbon capture and storage} +\item{LUC_UPTAKE}{Land use change uptake} } } \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } @@ -101,17 +159,19 @@ instead of the more natural looking \code{GETDATA}. \link{emissions} for other gas emissions Other capability identifiers: -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/concentrations.Rd b/man/concentrations.Rd index 7843729cd..b6e111d2e 100644 --- a/man/concentrations.Rd +++ b/man/concentrations.Rd @@ -1,20 +1,20 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{concentrations} -\alias{concentrations} -\alias{ATMOSPHERIC_N2O} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{CONCENTRATIONS_N2O} +\alias{CONCENTRATIONS_N2O} \alias{PREINDUSTRIAL_N2O} \alias{PREINDUSTRIAL_O3} -\alias{ATMOSPHERIC_O3} +\alias{CONCENTRATIONS_O3} +\alias{concentrations} \title{Identifiers for miscellaneous concentrations not elsewhere described} \usage{ -ATMOSPHERIC_N2O() +CONCENTRATIONS_N2O() PREINDUSTRIAL_N2O() PREINDUSTRIAL_O3() -ATMOSPHERIC_O3() +CONCENTRATIONS_O3() } \description{ All of these variables can be read using the \code{\link{GETDATA}} message @@ -22,36 +22,38 @@ type. } \section{Functions}{ \itemize{ -\item \code{ATMOSPHERIC_N2O}: Atmospheric N2O concentration +\item \code{CONCENTRATIONS_N2O()}: Atmospheric N2O concentration -\item \code{PREINDUSTRIAL_N2O}: Preindustrial atmospheric N2O concentration +\item \code{PREINDUSTRIAL_N2O()}: Preindustrial atmospheric N2O concentration -\item \code{PREINDUSTRIAL_O3}: Preindustrial ozone concentration +\item \code{PREINDUSTRIAL_O3()}: Preindustrial ozone concentration -\item \code{ATMOSPHERIC_O3}: Atmospheric ozone concentration -}} +\item \code{CONCENTRATIONS_O3()}: Atmospheric ozone concentration +}} \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/constraints.Rd b/man/constraints.Rd index e3fc708fe..08828a24a 100644 --- a/man/constraints.Rd +++ b/man/constraints.Rd @@ -1,46 +1,60 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{constraints} -\alias{constraints} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{FTOT_CONSTRAIN} +\alias{FTOT_CONSTRAIN} \alias{CH4_CONSTRAIN} \alias{N2O_CONSTRAIN} -\title{Identifiers for concentration constraints} +\alias{TAS_CONSTRAIN} +\alias{constraints} +\title{Identifiers for constraints} \usage{ +FTOT_CONSTRAIN() + CH4_CONSTRAIN() N2O_CONSTRAIN() + +TAS_CONSTRAIN() } \description{ -These identifiers correspond to concentration constraints. +These identifiers correspond to Hector's constraint capabilities } \section{Functions}{ \itemize{ -\item \code{CH4_CONSTRAIN}: CH4 concentration constraint \code{"ppbv CH4"} +\item \code{FTOT_CONSTRAIN()}: Constrain total radiative forcing -\item \code{N2O_CONSTRAIN}: N2O concentration constraint (\code{"pbbv N2O"}) -}} +\item \code{CH4_CONSTRAIN()}: CH4 concentration constraint \code{"ppbv CH4"} +\item \code{N2O_CONSTRAIN()}: N2O concentration constraint (\code{"pbbv N2O"}) + +\item \code{TAS_CONSTRAIN()}: Constrain global mean temperature (\code{"(degC)"}) + +}} \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ +haloconstrains + Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/create_biome.Rd b/man/create_biome.Rd index 07318543d..40ff39913 100644 --- a/man/create_biome.Rd +++ b/man/create_biome.Rd @@ -10,13 +10,14 @@ create_biome( veg_c0, detritus_c0, soil_c0, + permafrost_c0, npp_flux0, - warmingfactor = 1, - beta = 0.36, - q10_rh = 2, - f_nppv = 0.35, - f_nppd = 0.6, - f_litterd = 0.98 + warmingfactor, + beta, + q10_rh, + f_nppv, + f_nppd, + f_litterd ) } \arguments{ @@ -30,6 +31,8 @@ create_biome( \item{soil_c0}{Initial soil C pool} +\item{permafrost_c0}{Initial permafrost C pool} + \item{npp_flux0}{Initial net primary productivity} \item{warmingfactor}{Temperature multiplier (default = diff --git a/man/delta.Rd b/man/delta.Rd new file mode 100644 index 000000000..9ea673e9d --- /dev/null +++ b/man/delta.Rd @@ -0,0 +1,195 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{DELTA_CO2} +\alias{DELTA_CO2} +\alias{RF_N2O} +\alias{DELTA_N2O} +\alias{DELTA_CF4} +\alias{DELTA_C2F6} +\alias{DELTA_HFC23} +\alias{DELTA_HFC32} +\alias{DELTA_HFC4310} +\alias{DELTA_HFC125} +\alias{DELTA_HFC134A} +\alias{DELTA_HFC143A} +\alias{DELTA_HFC227EA} +\alias{DELTA_HFC245FA} +\alias{DELTA_SF6} +\alias{DELTA_CFC11} +\alias{DELTA_CFC12} +\alias{DELTA_CFC113} +\alias{DELTA_CFC114} +\alias{DELTA_CFC115} +\alias{DELTA_CCL4} +\alias{DELTA_CH3CCL3} +\alias{DELTA_HCFC22} +\alias{DELTA_HCFC141B} +\alias{DELTA_HCFC142B} +\alias{DELTA_HALON1211} +\alias{DELTA_HALON1301} +\alias{DELTA_HALON2402} +\alias{DELTA_CH3CL} +\alias{DELTA_CH3BR} +\alias{DELTA_CH4} +\alias{delta} +\title{Identifiers for Hector forcing component parameters} +\usage{ +DELTA_CO2() + +RF_N2O() + +DELTA_N2O() + +DELTA_CF4() + +DELTA_C2F6() + +DELTA_HFC23() + +DELTA_HFC32() + +DELTA_HFC4310() + +DELTA_HFC125() + +DELTA_HFC134A() + +DELTA_HFC143A() + +DELTA_HFC227EA() + +DELTA_HFC245FA() + +DELTA_SF6() + +DELTA_CFC11() + +DELTA_CFC12() + +DELTA_CFC113() + +DELTA_CFC114() + +DELTA_CFC115() + +DELTA_CCL4() + +DELTA_CH3CCL3() + +DELTA_HCFC22() + +DELTA_HCFC141B() + +DELTA_HCFC142B() + +DELTA_HALON1211() + +DELTA_HALON1301() + +DELTA_HALON2402() + +DELTA_CH3CL() + +DELTA_CH3BR() + +DELTA_CH4() +} +\description{ +These identifiers specify the tropospheric adjustments for the +stratospheric-temperature adjusted radiative forcings. +These values must be a number between -1 and 1, and +can be read and/or set by hectors forcing and halocarbon components. +} +\section{Functions}{ +\itemize{ +\item \code{DELTA_CO2()}: the foring tropospheric adjustments for N2O + +\item \code{RF_N2O()}: the foring tropospheric adjustments for N2O + +\item \code{DELTA_N2O()}: Radiative forcing due to N2O + +\item \code{DELTA_CF4()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_C2F6()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HFC23()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HFC32()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing ' +@export + +\item \code{DELTA_HFC4310()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HFC125()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HFC134A()}: the tropospheric adjustments used to convert from tratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HFC143A()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HFC227EA()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HFC245FA()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_SF6()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_CFC11()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_CFC12()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_CFC113()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_CFC114()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_CFC115()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_CCL4()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_CH3CCL3()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HCFC22()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HCFC141B()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HCFC142B()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HALON1211()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HALON1301()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_HALON2402()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_CH3CL()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_CH3BR()}: the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing + +\item \code{DELTA_CH4()}: Radiative forcing tropospheric adjustment for CH4 + +}} +\section{Note}{ + +Because these identifiers are provided as \code{#define} macros in the hector code, +these identifiers are provided in the R interface as functions. Therefore, +these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} +instead of the more natural looking \code{GETDATA}. +} + +\seealso{ +\link{haloforcings} for forcings from halocarbons and \link{forcings} forcing +values provided from the hector forcing component. + +Other capability identifiers: +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} +} +\concept{capability identifiers} diff --git a/man/emissions.Rd b/man/emissions.Rd index 58e4ee3bd..553da1a16 100644 --- a/man/emissions.Rd +++ b/man/emissions.Rd @@ -1,7 +1,6 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{emissions} -\alias{emissions} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{EMISSIONS_BC} \alias{EMISSIONS_BC} \alias{EMISSIONS_N2O} \alias{NAT_EMISSIONS_N2O} @@ -9,6 +8,8 @@ \alias{EMISSIONS_CO} \alias{EMISSIONS_NMVOC} \alias{EMISSIONS_OC} +\alias{EMISSIONS_NH3} +\alias{emissions} \title{Identifiers for miscellaneous emissions not elsewhere described} \usage{ EMISSIONS_BC() @@ -24,6 +25,8 @@ EMISSIONS_CO() EMISSIONS_NMVOC() EMISSIONS_OC() + +EMISSIONS_NH3() } \description{ All of these variables can be set using the \code{\link{SETDATA}} message @@ -31,42 +34,46 @@ type. } \section{Functions}{ \itemize{ -\item \code{EMISSIONS_BC}: Black carbon emissions (\code{"Tg"}) +\item \code{EMISSIONS_BC()}: Black carbon emissions -\item \code{EMISSIONS_N2O}: N2O emissions (\code{"Tg N"}) +\item \code{EMISSIONS_N2O()}: N2O emissions (\code{"Tg N"}) -\item \code{NAT_EMISSIONS_N2O}: Natural N2O emissions (\code{"Tg N"}) +\item \code{NAT_EMISSIONS_N2O()}: Natural N2O emissions (\code{"Tg N"}) -\item \code{EMISSIONS_NOX}: Emissions for NOx compounds (\code{"Tg N"}) +\item \code{EMISSIONS_NOX()}: Emissions for NOx compounds (\code{"Tg N"}) -\item \code{EMISSIONS_CO}: Emissions for carbon monoxide (\code{"Tg CO"}) +\item \code{EMISSIONS_CO()}: Emissions for carbon monoxide (\code{"Tg CO"}) -\item \code{EMISSIONS_NMVOC}: Emissions for non-methane volatile organic compounds (NMVOC) (\code{"Tg NMVOC"}) +\item \code{EMISSIONS_NMVOC()}: Emissions for non-methane volatile organic compounds (NMVOC) (\code{"Tg NMVOC"}) -\item \code{EMISSIONS_OC}: Emissions for organic carbon (\code{"Tg"}) -}} +\item \code{EMISSIONS_OC()}: Emissions for organic carbon (\code{"Tg"}) + +\item \code{EMISSIONS_NH3()}: Emissions for NH3 (\code{"Tg"}) +}} \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/fetchvars.Rd b/man/fetchvars.Rd index 8911b0e95..9323c0065 100644 --- a/man/fetchvars.Rd +++ b/man/fetchvars.Rd @@ -9,8 +9,10 @@ fetchvars(core, dates, vars = NULL, scenario = NULL) \arguments{ \item{core}{Hector core object} -\item{dates}{Vector of dates to fetch. This will be automatically trimmed to -dates that are between the start date and the latest date currently run.} +\item{dates}{Vector of dates to fetch; this will be automatically trimmed to +dates that are between the start date and the latest date currently run. +Set to \code{NA} to return data with no associated dates such as +model \link{parameters}.} \item{vars}{List (or vector) of capability strings defining the variables to be fetched in the result.} @@ -40,6 +42,7 @@ forcing, and global mean temperature. \link{ocean}, \link{so2}, \link{temperature}, \link{parameters} Other main user interface functions: +\code{\link{get_tracking_data}()}, \code{\link{newcore}()}, \code{\link{reset}()}, \code{\link{run}()}, diff --git a/man/figures/README-tas_plot-1.png b/man/figures/README-tas_plot-1.png new file mode 100644 index 000000000..f1fd80e28 Binary files /dev/null and b/man/figures/README-tas_plot-1.png differ diff --git a/man/forcings.Rd b/man/forcings.Rd index 217411419..6ebf9ea3c 100644 --- a/man/forcings.Rd +++ b/man/forcings.Rd @@ -1,30 +1,29 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{forcings} -\alias{forcings} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{RF_TOTAL} \alias{RF_TOTAL} -\alias{RF_T_ALBEDO} +\alias{RF_ALBEDO} \alias{RF_CO2} -\alias{RF_N2O} \alias{RF_H2O_STRAT} \alias{RF_O3_TROP} \alias{RF_BC} \alias{RF_OC} -\alias{RF_SO2D} -\alias{RF_SO2I} +\alias{RF_NH3} \alias{RF_SO2} +\alias{RF_ACI} \alias{RF_VOL} +\alias{RF_MISC} +\alias{Q_CO2} \alias{RF_CH4} +\alias{forcings} \title{Identifiers for capabilities in the Hector forcing component} \usage{ RF_TOTAL() -RF_T_ALBEDO() +RF_ALBEDO() RF_CO2() -RF_N2O() - RF_H2O_STRAT() RF_O3_TROP() @@ -33,74 +32,83 @@ RF_BC() RF_OC() -RF_SO2D() - -RF_SO2I() +RF_NH3() RF_SO2() +RF_ACI() + RF_VOL() +RF_MISC() + +Q_CO2() + RF_CH4() } \description{ These identifiers specify forcing values that can be provided by hector via -the forcing component. All of the values corresponding to these identifiers +the forcing component. All of the values corresponding to these identifiers are read-only (\emph{i.e.}, they can only appear in \code{\link{GETDATA}} messages.) } \section{Functions}{ \itemize{ -\item \code{RF_TOTAL}: Total radiative forcing +\item \code{RF_TOTAL()}: Total radiative forcing -\item \code{RF_T_ALBEDO}: Radiative forcing due to albedo +\item \code{RF_ALBEDO()}: Radiative forcing due to albedo -\item \code{RF_CO2}: Radiative forcing due to CO2 +\item \code{RF_CO2()}: Radiative forcing due to CO2 -\item \code{RF_N2O}: Radiative forcing due to N2O +\item \code{RF_H2O_STRAT()}: Radiative forcing due to stratospheric water vapor -\item \code{RF_H2O_STRAT}: Radiative forcing due to stratospheric water vapor +\item \code{RF_O3_TROP()}: Radiative forcing due to tropospheric ozone -\item \code{RF_O3_TROP}: Radiative forcing due to tropospheric ozone +\item \code{RF_BC()}: Radiative forcing due to black carbon aerosol-radiation interactions -\item \code{RF_BC}: Radiative forcing due to black carbon +\item \code{RF_OC()}: Radiative forcing due to organic carbon aerosol-radiation interactions -\item \code{RF_OC}: Radiative forcing due to organic carbon +\item \code{RF_NH3()}: Radiative forcing due to NH3 aerosol-radiation interactions -\item \code{RF_SO2D}: Direct contribution of SO2 to radiative forcing +\item \code{RF_SO2()}: Radiative forcing due to SO2 aerosol-radiation interactions -\item \code{RF_SO2I}: Indirect contribution of SO2 to radiative forcing +\item \code{RF_ACI()}: aerosol-cloud interactions, includes contributions from SO2, BC and OC -\item \code{RF_SO2}: Total contribution (direct and indirect) of SO2 to radiative forcing +\item \code{RF_VOL()}: Radiative forcing due to volcanic activity -\item \code{RF_VOL}: Radiative forcing due to volcanic activity +\item \code{RF_MISC()}: Radiative miscellaneous forcing read in from ini. -\item \code{RF_CH4}: Radiative forcing due to methane -}} +\item \code{Q_CO2()}: Radiative forcing efficiency for doubling of CO2 +\item \code{RF_CH4()}: Radiative forcing due to methane + +}} \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ -\link{haloforcings} for forcings from halocarbons. +\link{haloforcings} for forcings from halocarbons and \link{rho} for +parameters related to radiative forcing efficiency. Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/fxntable.Rd b/man/fxntable.Rd new file mode 100644 index 000000000..61785e3b9 --- /dev/null +++ b/man/fxntable.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/aadoc.R +\docType{data} +\name{fxntable} +\alias{fxntable} +\title{A data.frame containing information R hector function name and hector string names.} +\format{ +A data.frame of 2 columns and 239 rows. +\describe{ + \item{fxn}{String of the R hector function name} + \item{string}{String of variable name} +} +} +\usage{ +fxntable +} +\description{ +A data.frame containing information R hector function name and hector string names. +} +\keyword{datasets} diff --git a/man/get_tracking_data.Rd b/man/get_tracking_data.Rd new file mode 100644 index 000000000..d366656f9 --- /dev/null +++ b/man/get_tracking_data.Rd @@ -0,0 +1,36 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/hector.R +\name{get_tracking_data} +\alias{get_tracking_data} +\title{Retrieve the tracking data for a Hector instance} +\usage{ +get_tracking_data(core) +} +\arguments{ +\item{core}{Handle to the Hector instance.} +} +\value{ +A \code{\link{data.frame}} with the tracking data. Columns include +\code{year} (integer), \code{component} (character), \code{pool_name} (character), +\code{pool_value} (double), \code{pool_units} (character), +\code{source_name} (character), and \code{source_fraction} (double). The +fractions will always sum to 1 for a given pool and year. +} +\description{ +Retrieve the tracking data for a Hector instance +} +\note{ +The \code{pool_name}, \code{pool_value}, and \code{pool_units} names +differ from those used in the model's standard output stream (\code{variable}, +\code{value}, and \code{units} respectively). +} +\seealso{ +Other main user interface functions: +\code{\link{fetchvars}()}, +\code{\link{newcore}()}, +\code{\link{reset}()}, +\code{\link{run}()}, +\code{\link{setvar}()}, +\code{\link{shutdown}()} +} +\concept{main user interface functions} diff --git a/man/get_tracking_data_impl.Rd b/man/get_tracking_data_impl.Rd new file mode 100644 index 000000000..b45082450 --- /dev/null +++ b/man/get_tracking_data_impl.Rd @@ -0,0 +1,14 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R +\name{get_tracking_data_impl} +\alias{get_tracking_data_impl} +\title{Retrieve the tracking data for a Hector instance} +\usage{ +get_tracking_data_impl(core) +} +\arguments{ +\item{core}{Handle to the Hector instance.} +} +\description{ +Retrieve the tracking data for a Hector instance +} diff --git a/man/getfxn.Rd b/man/getfxn.Rd new file mode 100644 index 000000000..bd2bc759c --- /dev/null +++ b/man/getfxn.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/fxns.R +\name{getfxn} +\alias{getfxn} +\title{Get the hector function associated with a specific string} +\usage{ +getfxn(str) +} +\arguments{ +\item{str}{String name to find the Hector function for} +} +\value{ +Hector function name +} +\description{ +This function provides the Hector function that returns a the Hector string +} +\examples{ +getfxn("beta") +getfxn("q10_rh") +} +\seealso{ +getunits +} diff --git a/man/haloconstrain.Rd b/man/haloconstrain.Rd index 09496c41b..0a01db031 100644 --- a/man/haloconstrain.Rd +++ b/man/haloconstrain.Rd @@ -1,7 +1,6 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{haloconstrain} -\alias{haloconstrain} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{CF4_CONSTRAIN} \alias{CF4_CONSTRAIN} \alias{C2F6_CONSTRAIN} \alias{HFC23_CONSTRAIN} @@ -28,6 +27,7 @@ \alias{HALON2402_CONSTRAIN} \alias{CH3CL_CONSTRAIN} \alias{CH3BR_CONSTRAIN} +\alias{haloconstrain} \title{Identifiers for halocarbon concentration constraints} \usage{ CF4_CONSTRAIN() @@ -89,80 +89,82 @@ all cases, the expected input units are volumetric parts per trillion } \section{Functions}{ \itemize{ -\item \code{CF4_CONSTRAIN}: Concentration constraint for CF4 +\item \code{CF4_CONSTRAIN()}: Concentration constraint for CF4 -\item \code{C2F6_CONSTRAIN}: Concentration constraint for C2F6 +\item \code{C2F6_CONSTRAIN()}: Concentration constraint for C2F6 -\item \code{HFC23_CONSTRAIN}: Concentration constraint for HFC-23 +\item \code{HFC23_CONSTRAIN()}: Concentration constraint for HFC-23 -\item \code{HFC32_CONSTRAIN}: Concentration constraint for HFC-32 +\item \code{HFC32_CONSTRAIN()}: Concentration constraint for HFC-32 -\item \code{HFC4310_CONSTRAIN}: Concentration constraint for HFC-4310 +\item \code{HFC4310_CONSTRAIN()}: Concentration constraint for HFC-4310 -\item \code{HFC125_CONSTRAIN}: Concentration constraint for HFC-125 +\item \code{HFC125_CONSTRAIN()}: Concentration constraint for HFC-125 -\item \code{HFC134A_CONSTRAIN}: Concentration constraint for HFC-134a +\item \code{HFC134A_CONSTRAIN()}: Concentration constraint for HFC-134a -\item \code{HFC143A_CONSTRAIN}: Concentration constraint for HFC-143a +\item \code{HFC143A_CONSTRAIN()}: Concentration constraint for HFC-143a -\item \code{HFC227EA_CONSTRAIN}: Concentration constraint for HFC-227ea +\item \code{HFC227EA_CONSTRAIN()}: Concentration constraint for HFC-227ea -\item \code{HFC245FA_CONSTRAIN}: Concentration constraint for HFC-254fa +\item \code{HFC245FA_CONSTRAIN()}: Concentration constraint for HFC-254fa -\item \code{SF6_CONSTRAIN}: Concentration constraint for sulfur hexafluoride +\item \code{SF6_CONSTRAIN()}: Concentration constraint for sulfur hexafluoride -\item \code{CFC11_CONSTRAIN}: Concentration constraint for CFC-11 +\item \code{CFC11_CONSTRAIN()}: Concentration constraint for CFC-11 -\item \code{CFC12_CONSTRAIN}: Concentration constraint for CFC-12 +\item \code{CFC12_CONSTRAIN()}: Concentration constraint for CFC-12 -\item \code{CFC113_CONSTRAIN}: Concentration constraint for CFC-113 +\item \code{CFC113_CONSTRAIN()}: Concentration constraint for CFC-113 -\item \code{CFC114_CONSTRAIN}: Concentration constraint for CFC-114 +\item \code{CFC114_CONSTRAIN()}: Concentration constraint for CFC-114 -\item \code{CFC115_CONSTRAIN}: Concentration constraint for CFC-115 +\item \code{CFC115_CONSTRAIN()}: Concentration constraint for CFC-115 -\item \code{CCL4_CONSTRAIN}: Concentration constraint for carbon tetrachloride +\item \code{CCL4_CONSTRAIN()}: Concentration constraint for carbon tetrachloride -\item \code{CH3CCL3_CONSTRAIN}: Concentration constraint for trichloroethane +\item \code{CH3CCL3_CONSTRAIN()}: Concentration constraint for trichloroethane -\item \code{HCFC22_CONSTRAIN}: Concentration constraint for HCFC-22 +\item \code{HCFC22_CONSTRAIN()}: Concentration constraint for HCFC-22 -\item \code{HCFC141B_CONSTRAIN}: Concentration constraint for HCFC-141b +\item \code{HCFC141B_CONSTRAIN()}: Concentration constraint for HCFC-141b -\item \code{HCFC142B_CONSTRAIN}: Concentration constraint for HCFC-142b +\item \code{HCFC142B_CONSTRAIN()}: Concentration constraint for HCFC-142b -\item \code{HALON1211_CONSTRAIN}: Concentration constraint for halon-1211 +\item \code{HALON1211_CONSTRAIN()}: Concentration constraint for halon-1211 -\item \code{HALON1301_CONSTRAIN}: Concentration constraint for halon-1301 +\item \code{HALON1301_CONSTRAIN()}: Concentration constraint for halon-1301 -\item \code{HALON2402_CONSTRAIN}: Concentration constraint for halon-2402 +\item \code{HALON2402_CONSTRAIN()}: Concentration constraint for halon-2402 -\item \code{CH3CL_CONSTRAIN}: Concentration constraint for chloromethane +\item \code{CH3CL_CONSTRAIN()}: Concentration constraint for chloromethane -\item \code{CH3BR_CONSTRAIN}: Concentration constraint for bromomethane -}} +\item \code{CH3BR_CONSTRAIN()}: Concentration constraint for bromomethane +}} \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/haloemiss.Rd b/man/haloemiss.Rd index 1a8fa730a..0b00411f3 100644 --- a/man/haloemiss.Rd +++ b/man/haloemiss.Rd @@ -1,7 +1,6 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{haloemiss} -\alias{haloemiss} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{EMISSIONS_CF4} \alias{EMISSIONS_CF4} \alias{EMISSIONS_C2F6} \alias{EMISSIONS_HFC23} @@ -28,6 +27,7 @@ \alias{EMISSIONS_HALON2402} \alias{EMISSIONS_CH3CL} \alias{EMISSIONS_CH3BR} +\alias{haloemiss} \title{Identifiers for halocarbon emissions} \usage{ EMISSIONS_CF4() @@ -83,87 +83,89 @@ EMISSIONS_CH3CL() EMISSIONS_CH3BR() } \description{ -These identifiers correspond to emissions values for halocarbons. They are +These identifiers correspond to emissions values for halocarbons. They are (for now) write only, meaning they can only appear in \code{\link{SETDATA}} -messages. In all cases, the expected input units are gigagrams +messages. In all cases, the expected input units are gigagrams (\code{"Gg"}). } \section{Functions}{ \itemize{ -\item \code{EMISSIONS_CF4}: Emissions for CF4 +\item \code{EMISSIONS_CF4()}: Emissions for CF4 -\item \code{EMISSIONS_C2F6}: Emissions for C2F6 +\item \code{EMISSIONS_C2F6()}: Emissions for C2F6 -\item \code{EMISSIONS_HFC23}: Emissions for HFC-23 +\item \code{EMISSIONS_HFC23()}: Emissions for HFC-23 -\item \code{EMISSIONS_HFC32}: Emissions for HFC-32 +\item \code{EMISSIONS_HFC32()}: Emissions for HFC-32 -\item \code{EMISSIONS_HFC4310}: Emissions for HFC-4310 +\item \code{EMISSIONS_HFC4310()}: Emissions for HFC-4310 -\item \code{EMISSIONS_HFC125}: Emissions for HFC-125 +\item \code{EMISSIONS_HFC125()}: Emissions for HFC-125 -\item \code{EMISSIONS_HFC134A}: Emissions for HFC-134a +\item \code{EMISSIONS_HFC134A()}: Emissions for HFC-134a -\item \code{EMISSIONS_HFC143A}: Emissions for HFC-143a +\item \code{EMISSIONS_HFC143A()}: Emissions for HFC-143a -\item \code{EMISSIONS_HFC227EA}: Emissions for HFC-227ea +\item \code{EMISSIONS_HFC227EA()}: Emissions for HFC-227ea -\item \code{EMISSIONS_HFC245FA}: Emissions for HFC-254fa +\item \code{EMISSIONS_HFC245FA()}: Emissions for HFC-254fa -\item \code{EMISSIONS_SF6}: Emissions for sulfur hexafluoride +\item \code{EMISSIONS_SF6()}: Emissions for sulfur hexafluoride -\item \code{EMISSIONS_CFC11}: Emissions for CFC-11 +\item \code{EMISSIONS_CFC11()}: Emissions for CFC-11 -\item \code{EMISSIONS_CFC12}: Emissions for CFC-12 +\item \code{EMISSIONS_CFC12()}: Emissions for CFC-12 -\item \code{EMISSIONS_CFC113}: Emissions for CFC-113 +\item \code{EMISSIONS_CFC113()}: Emissions for CFC-113 -\item \code{EMISSIONS_CFC114}: Emissions for CFC-114 +\item \code{EMISSIONS_CFC114()}: Emissions for CFC-114 -\item \code{EMISSIONS_CFC115}: Emissions for CFC-115 +\item \code{EMISSIONS_CFC115()}: Emissions for CFC-115 -\item \code{EMISSIONS_CCL4}: Emissions for carbon tetrachloride +\item \code{EMISSIONS_CCL4()}: Emissions for carbon tetrachloride -\item \code{EMISSIONS_CH3CCL3}: Emissions for trichloroethane +\item \code{EMISSIONS_CH3CCL3()}: Emissions for trichloroethane -\item \code{EMISSIONS_HCFC22}: Emissions for HCFC-22 +\item \code{EMISSIONS_HCFC22()}: Emissions for HCFC-22 -\item \code{EMISSIONS_HCFC141B}: Emissions for HCFC-141b +\item \code{EMISSIONS_HCFC141B()}: Emissions for HcFC-141b -\item \code{EMISSIONS_HCFC142B}: Emissions for HCFC-142b +\item \code{EMISSIONS_HCFC142B()}: Emissions for HCFC-142b -\item \code{EMISSIONS_HALON1211}: Emissions for halon-1211 +\item \code{EMISSIONS_HALON1211()}: Emissions for halon-1211 -\item \code{EMISSIONS_HALON1301}: Emissions for halon-1301 +\item \code{EMISSIONS_HALON1301()}: Emissions for halon-1301 -\item \code{EMISSIONS_HALON2402}: Emissions for halon-2402 +\item \code{EMISSIONS_HALON2402()}: Emissions for halon-2402 -\item \code{EMISSIONS_CH3CL}: Emissions for chloromethane +\item \code{EMISSIONS_CH3CL()}: Emissions for chloromethane -\item \code{EMISSIONS_CH3BR}: Emissions for bromomethane -}} +\item \code{EMISSIONS_CH3BR()}: Emissions for bromomethane +}} \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/haloforcings.Rd b/man/haloforcings.Rd index 911df0382..e74b90f01 100644 --- a/man/haloforcings.Rd +++ b/man/haloforcings.Rd @@ -1,7 +1,6 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{haloforcings} -\alias{haloforcings} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{RF_CF4} \alias{RF_CF4} \alias{RF_C2F6} \alias{RF_HFC23} @@ -28,6 +27,7 @@ \alias{RF_HALON2402} \alias{RF_CH3CL} \alias{RF_CH3BR} +\alias{haloforcings} \title{Identifiers for halocarbon forcings} \usage{ RF_CF4() @@ -84,7 +84,7 @@ RF_CH3BR() } \description{ These identifiers specify forcing values that can be provided by hector via -one of the myriad halocarbon components. All of the values corresponding to +one of the myriad halocarbon components. All of the values corresponding to these identifiers are read-only (\emph{i.e.}, they can only appear in \code{\link{GETDATA}} messages.) The forcings returned are the \emph{relative} forcings, with the base year (typically 1750) values @@ -92,63 +92,63 @@ subtracted off. } \section{Functions}{ \itemize{ -\item \code{RF_CF4}: Radiative forcing due to CF4 +\item \code{RF_CF4()}: Radiative forcing due to CF4 -\item \code{RF_C2F6}: Radiative forcing due to C2F6 +\item \code{RF_C2F6()}: Radiative forcing due to C2F6 -\item \code{RF_HFC23}: Radiative forcing due to HFC-23 +\item \code{RF_HFC23()}: Radiative forcing due to HFC-23 -\item \code{RF_HFC32}: Radiative forcing due to HFC-32 +\item \code{RF_HFC32()}: Radiative forcing due to HFC-32 -\item \code{RF_HFC4310}: Radiative forcing due to HFC-4310 +\item \code{RF_HFC4310()}: Radiative forcing due to HFC-4310 -\item \code{RF_HFC125}: Radiative forcing due to HFC-125 +\item \code{RF_HFC125()}: Radiative forcing due to HFC-125 -\item \code{RF_HFC134A}: Radiative forcing due to HFC-134a +\item \code{RF_HFC134A()}: Radiative forcing due to HFC-134a -\item \code{RF_HFC143A}: Radiative forcing due to HFC-143a +\item \code{RF_HFC143A()}: Radiative forcing due to HFC-143a -\item \code{RF_HFC227EA}: Radiative forcing due to HFC227ea +\item \code{RF_HFC227EA()}: Radiative forcing due to HFC227ea -\item \code{RF_HFC245FA}: Radiative forcing due to HFC-245fa +\item \code{RF_HFC245FA()}: Radiative forcing due to HFC-245fa -\item \code{RF_SF6}: Radiative forcing due to sulfur hexafluoride +\item \code{RF_SF6()}: Radiative forcing due to sulfur hexafluoride -\item \code{RF_CFC11}: Radiative forcing due to CFC-11 +\item \code{RF_CFC11()}: Radiative forcing due to CFC-11 -\item \code{RF_CFC12}: Radiative forcing due to CFC-12 +\item \code{RF_CFC12()}: Radiative forcing due to CFC-12 -\item \code{RF_CFC113}: Radiative forcing due to CFC-113 +\item \code{RF_CFC113()}: Radiative forcing due to CFC-113 -\item \code{RF_CFC114}: Radiative forcing due to CFC-114 +\item \code{RF_CFC114()}: Radiative forcing due to CFC-114 -\item \code{RF_CFC115}: Radiative forcing due to CFC-115 +\item \code{RF_CFC115()}: Radiative forcing due to CFC-115 -\item \code{RF_CCL4}: Radiative forcing due to carbon tetrachloride +\item \code{RF_CCL4()}: Radiative forcing due to carbon tetrachloride -\item \code{RF_CH3CCL3}: Radiative forcing due to trichloroethane +\item \code{RF_CH3CCL3()}: Radiative forcing due to trichloroethane -\item \code{RF_HCFC22}: Radiative forcing due to HCFC-22 +\item \code{RF_HCFC22()}: Radiative forcing due to HCFC-22 -\item \code{RF_HCFC141B}: Radiative forcing due to HCFC-141b +\item \code{RF_HCFC141B()}: Radiative forcing due to HCFC-141b -\item \code{RF_HCFC142B}: Radiative forcing due to HCFC-142b +\item \code{RF_HCFC142B()}: Radiative forcing due to HCCFC-142b -\item \code{RF_HALON1211}: Radiative forcing due to halon-1211 +\item \code{RF_HALON1211()}: Radiative forcing due to halon-1211 -\item \code{RF_HALON1301}: Radiative forcing due to halon-1301 +\item \code{RF_HALON1301()}: Radiative forcing due to halon-1301 -\item \code{RF_HALON2402}: Radiative forcing due to halon-2402 +\item \code{RF_HALON2402()}: Radiative forcing due to halon-2402 -\item \code{RF_CH3CL}: Radiative forcing due to chloromethane +\item \code{RF_CH3CL()}: Radiative forcing due to chloromethane -\item \code{RF_CH3BR}: Radiative forcing due to bromomethane -}} +\item \code{RF_CH3BR()}: Radiative forcing due to bromomethane +}} \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } @@ -157,17 +157,19 @@ instead of the more natural looking \code{GETDATA}. \link{forcings} for forcings from other sources. Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/hector-package.Rd b/man/hector-package.Rd index ab8f5fdda..324f35c6a 100644 --- a/man/hector-package.Rd +++ b/man/hector-package.Rd @@ -6,11 +6,7 @@ \alias{hector-package} \title{hector: The Hector Simple Climate Model} \description{ -Provides an R interface for the Hector Simple Climate - Model. Using this interface you can set up and initialize the model, - change model parameters and emissions inputs, run Hector, and - retrieve model outputs. Note that the package authors are not - identical to the C++ model authors. +Provides an R interface for the Hector Simple Climate Model. Using this interface you can set up and initialize the model, change model parameters and emissions inputs, run Hector, and retrieve model outputs. Note that the package authors are not identical to the C++ model authors. } \details{ This package allows you to run the Hector Simple Climate Model (SCM) from R @@ -21,12 +17,8 @@ and receive the results back as R data frames. To run a scenario, you will need a scenario input file. Several examples are included in the \code{input} directory, which you can find with the expression \code{system.file('input', package='hector')}. The input files -have names like \code{'hector_rcpNN.ini'}, where \code{NN} is one of -\code{26}, \code{45}, \code{60}, or \code{85}. Example outputs for these -scenarios are in the \code{output} directory, which you can find in a similar -way. Their names are \code{'sample_outputstream_rcpNN.csv'} Note, however, -that these outputs were rounded to 4 significant digits, so you might see -some discrepancies with your outputs unless you similarly round them. +have names like \code{'hector_sspNNN.ini'}, where \code{NNN} is one of +\code{119}, \code{126}, \code{245}, \code{370}, \code{434}, \code{460}, or \code{ssp585}. There is a quickstart wrapper called \code{\link{runscenario}}, which takes an input file as an argument, runs the scenario, and returns the results in a @@ -66,15 +58,20 @@ carbon-cycle model: projections and sensitivities, Biogeosciences, 13, Authors: \itemize{ - \item Robert Link \email{robert.link@pnnl.gov} (\href{https://orcid.org/0000-0002-7071-248X}{ORCID}) + \item Ben Bond-Lamberty \email{bondlamberty@pnnl.gov} (\href{https://orcid.org/0000-0001-9525-4633}{ORCID}) } Other contributors: \itemize{ + \item Skylar Gering \email{sgering@g.hmc.edu} (\href{https://orcid.org/0000-0003-1974-3966}{ORCID}) [contributor] \item Corinne Hartin \email{hartin.corinne@epa.gov} (\href{https://orcid.org/0000-0003-1834-6539}{ORCID}) [contributor] - \item Ben Bond-Lamberty \email{bondlamberty@pnnl.gov} (\href{https://orcid.org/0000-0001-9525-4633}{ORCID}) [contributor] + \item Robert Link (\href{https://orcid.org/0000-0002-7071-248X}{ORCID}) [contributor] + \item Mat Nicholson (mnichol3) [contributor] \item Pralit Patel \email{pralit.patel@pnnl.gov} (\href{https://orcid.org/0000-0003-3992-1061}{ORCID}) [contributor] + \item Leeya Pressburger \email{leeya.pressburger@pnnl.gov} (\href{https://orcid.org/0000-0002-6850-2504}{ORCID}) [contributor, data contributor] \item Alexey Shiklomanov \email{alexey.shiklomanov@nasa.gov} (\href{https://orcid.org/0000-0003-4022-5979}{ORCID}) [contributor] + \item Benjamin Vega-Westhoff (\href{https://orcid.org/0000-0001-7881-8388}{ORCID}) [contributor] + \item Dawn Woodard \email{dawn.woodard@pnnl.gov} (\href{https://orcid.org/0000-0002-0468-4660}{ORCID}) [contributor] } } diff --git a/man/hectorutil.Rd b/man/hectorutil.Rd index 0328632d5..8a83efb4a 100644 --- a/man/hectorutil.Rd +++ b/man/hectorutil.Rd @@ -1,13 +1,13 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R, R/hector.R -\name{hectorutil} -\alias{hectorutil} +% Please edit documentation in R/RcppExports.R, R/aadoc.R, R/hector.R +\name{getdate} \alias{getdate} +\alias{hectorutil} \alias{isactive} \alias{startdate} \alias{enddate} \alias{getname} -\title{Utility functions for Hector instances} +\title{\strong{getdate}: Get the current date for a Hector instance} \usage{ getdate(core) @@ -23,10 +23,10 @@ getname(core) \item{core}{Hector instance to operate on} } \description{ -Utility functions for Hector instances - \strong{getdate}: Get the current date for a Hector instance +Utility functions for Hector instances + \strong{isactive}: Indicate whether a Hector instance is active \strong{startdate}: Report the start date for a Hector instance diff --git a/man/inputstable.Rd b/man/inputstable.Rd new file mode 100644 index 000000000..a1c0e8919 --- /dev/null +++ b/man/inputstable.Rd @@ -0,0 +1,28 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/aadoc.R +\docType{data} +\name{inputstable} +\alias{inputstable} +\title{A data.frame containing information on all of the Hector inputs listed in +an ini file created by save-input-params.R.} +\format{ +A data.frame of 8 columns and 222 rows. +\describe{ + \item{section}{String of the section of the ini file of a parameter} + \item{parameter}{String of the parameter name} + \item{biome.specific}{String of whether or not the parameter is biome-specific} + \item{time.variant}{String of whether or not the parameter is time-variant} + \item{required}{String of wheterh or not the parameter is required} + \item{default}{String of the default value of the parameter} + \item{units}{String of the parameter units} + \item{description}{String of a brief description of the parameter from the ini file} +} +} +\usage{ +inputstable +} +\description{ +A data.frame containing information on all of the Hector inputs listed in +an ini file created by save-input-params.R. +} +\keyword{datasets} diff --git a/man/loglevels.Rd b/man/loglevels.Rd index 206ff9f05..6617c72f5 100644 --- a/man/loglevels.Rd +++ b/man/loglevels.Rd @@ -1,11 +1,11 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{loglevels} -\alias{loglevels} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{LL_DEBUG} \alias{LL_DEBUG} \alias{LL_NOTICE} \alias{LL_WARNING} \alias{LL_SEVERE} +\alias{loglevels} \title{Hector logging levels} \usage{ LL_DEBUG() @@ -22,12 +22,12 @@ These functions return constants that can be used in } \section{Functions}{ \itemize{ -\item \code{LL_DEBUG}: Set logging at 'debug' level. +\item \code{LL_DEBUG()}: Set logging at 'debug' level. -\item \code{LL_NOTICE}: Set logging at 'notice' level. +\item \code{LL_NOTICE()}: Set logging at 'notice' level. -\item \code{LL_WARNING}: Set logging at 'warning' level. +\item \code{LL_WARNING()}: Set logging at 'warning' level. -\item \code{LL_SEVERE}: Set logging at 'severe' level. -}} +\item \code{LL_SEVERE()}: Set logging at 'severe' level. +}} diff --git a/man/methane.Rd b/man/methane.Rd index ea1bd815f..e1f65bc76 100644 --- a/man/methane.Rd +++ b/man/methane.Rd @@ -1,16 +1,16 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{methane} -\alias{methane} -\alias{ATMOSPHERIC_CH4} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{CONCENTRATIONS_CH4} +\alias{CONCENTRATIONS_CH4} \alias{PREINDUSTRIAL_CH4} \alias{EMISSIONS_CH4} \alias{NATURAL_CH4} \alias{LIFETIME_SOIL} \alias{LIFETIME_STRAT} +\alias{methane} \title{Identifiers for quantities in the methane component} \usage{ -ATMOSPHERIC_CH4() +CONCENTRATIONS_CH4() PREINDUSTRIAL_CH4() @@ -30,18 +30,19 @@ methane component. These variables can be read from the methane component. \describe{ -\item{ATMOSPHERIC_CH4}{Atmospheric methane concentration} +\item{CONCENTRATIONS_CH4}{Atmospheric methane concentration} \item{PREINDUSTRIAL_CH4}{Preindustrial methane concentration} } } \section{Input variables}{ -These variables can be set in the methane component. The expected units string is given after -each description. +These variables can be set in the methane component. The expected units +string is given after each description. \describe{ \item{EMISSIONS_CH4}{Methane emissions (\code{"Tg CH4"})} \item{PREINDUSTRIAL_CH4}{Preindustrial methane concentration (\code{"ppbv CH4"})} +\item{CH4_CONSTRAIN}{N2O concentration constraint (\code{"ppbv CH4"})} \item{NATURAL_CH4}{Natural methane emissions (\code{"Tg CH4"})} \item{LIFETIME_SOIL}{Time scale for methane loss into soil (\code{"Years"})} \item{LIFETIME_STRAT}{Time scale for methane loss into stratosphere (\code{"Years"})} @@ -51,24 +52,26 @@ each description. \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/methods.Rd b/man/methods.Rd index 2d27e5956..9e32fe07f 100644 --- a/man/methods.Rd +++ b/man/methods.Rd @@ -18,10 +18,10 @@ \description{ Hector instance object methods } -\section{Methods (by generic)}{ +\section{Functions}{ \itemize{ -\item \code{format}: Format method +\item \code{format(hcore)}: Format method -\item \code{print}: Print method -}} +\item \code{print(hcore)}: Print method +}} diff --git a/man/msgtype.Rd b/man/msgtype.Rd index dda8e97ce..f78aafdd4 100644 --- a/man/msgtype.Rd +++ b/man/msgtype.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{msgtype} -\alias{msgtype} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{GETDATA} \alias{GETDATA} \alias{SETDATA} \alias{BIOME_SPLIT_CHAR} +\alias{msgtype} \title{Message type identifiers} \usage{ GETDATA() @@ -19,17 +19,17 @@ it to the correct method in the recipient. } \section{Functions}{ \itemize{ -\item \code{GETDATA}: Message type for retrieving data from a component +\item \code{GETDATA()}: Message type for retrieving data from a component -\item \code{SETDATA}: Message type for setting data in a component +\item \code{SETDATA()}: Message type for setting data in a component -\item \code{BIOME_SPLIT_CHAR}: Character used to separate biome from variable name -}} +\item \code{BIOME_SPLIT_CHAR()}: Character used to separate biome from variable name +}} \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } diff --git a/man/newcore.Rd b/man/newcore.Rd index d0deb47de..7435ee3db 100644 --- a/man/newcore.Rd +++ b/man/newcore.Rd @@ -8,7 +8,7 @@ newcore( inifile, loglevel = 0, suppresslogging = TRUE, - name = "unnamed hector core" + name = "Unnamed Hector core" ) } \arguments{ @@ -31,6 +31,7 @@ simultaneously is supported. \seealso{ Other main user interface functions: \code{\link{fetchvars}()}, +\code{\link{get_tracking_data}()}, \code{\link{reset}()}, \code{\link{run}()}, \code{\link{setvar}()}, diff --git a/man/ocean.Rd b/man/ocean.Rd index 538002a0a..e9b69fa54 100644 --- a/man/ocean.Rd +++ b/man/ocean.Rd @@ -1,32 +1,39 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{ocean} -\alias{ocean} -\alias{OCEAN_CFLUX} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{OCEAN_UPTAKE} +\alias{OCEAN_UPTAKE} \alias{OCEAN_C} \alias{OCEAN_C_HL} \alias{OCEAN_C_LL} +\alias{OCEAN_C_ML} \alias{OCEAN_C_IO} \alias{OCEAN_C_DO} +\alias{OCEAN_PREIND_C_SURF} +\alias{OCEAN_PREIND_C_ID} \alias{TT} \alias{TU} \alias{TWI} \alias{TID} \alias{PH_HL} \alias{PH_LL} -\alias{ATM_OCEAN_FLUX_HL} -\alias{ATM_OCEAN_FLUX_LL} +\alias{PH} +\alias{HL_OCEAN_UPTAKE} +\alias{LL_OCEAN_UPTAKE} \alias{PCO2_HL} \alias{PCO2_LL} +\alias{PCO2} \alias{DIC_HL} +\alias{DIC} \alias{DIC_LL} -\alias{TEMP_HL} -\alias{TEMP_LL} +\alias{SST_HL} +\alias{SST_LL} \alias{CO3_LL} \alias{CO3_HL} +\alias{CO3} +\alias{ocean} \title{Identifiers for quantities in the ocean component} \usage{ -OCEAN_CFLUX() +OCEAN_UPTAKE() OCEAN_C() @@ -34,10 +41,16 @@ OCEAN_C_HL() OCEAN_C_LL() +OCEAN_C_ML() + OCEAN_C_IO() OCEAN_C_DO() +OCEAN_PREIND_C_SURF() + +OCEAN_PREIND_C_ID() + TT() TU() @@ -50,25 +63,33 @@ PH_HL() PH_LL() -ATM_OCEAN_FLUX_HL() +PH() -ATM_OCEAN_FLUX_LL() +HL_OCEAN_UPTAKE() + +LL_OCEAN_UPTAKE() PCO2_HL() PCO2_LL() +PCO2() + DIC_HL() +DIC() + DIC_LL() -TEMP_HL() +SST_HL() -TEMP_LL() +SST_LL() CO3_LL() CO3_HL() + +CO3() } \description{ These identifiers correspond to variables that can be read from the ocean @@ -76,72 +97,88 @@ component using the \code{\link{GETDATA}} message type. } \section{Functions}{ \itemize{ -\item \code{OCEAN_CFLUX}: Atmosphere-ocean carbon flux +\item \code{OCEAN_UPTAKE()}: Atmosphere-ocean carbon flux -\item \code{OCEAN_C}: Ocean total carbon pool +\item \code{OCEAN_C()}: Ocean total carbon pool -\item \code{OCEAN_C_HL}: Ocean surface high-latitude carbon pool +\item \code{OCEAN_C_HL()}: Ocean surface high-latitude carbon pool -\item \code{OCEAN_C_LL}: Ocean surface low-latitude carbon pool +\item \code{OCEAN_C_LL()}: Ocean surface low-latitude carbon pool -\item \code{OCEAN_C_IO}: Intermediate ocean carbon pool +\item \code{OCEAN_C_ML()}: Ocean surface or mixed layer carbon pool -\item \code{OCEAN_C_DO}: Deep ocean carbon pool +\item \code{OCEAN_C_IO()}: Intermediate ocean carbon pool -\item \code{TT}: Thermohaline overturning +\item \code{OCEAN_C_DO()}: Deep ocean carbon pool -\item \code{TU}: High-latitude overturning +\item \code{OCEAN_PREIND_C_SURF()}: Preindustrial surface ocean carbon pool -\item \code{TWI}: Warm-intermediate exchange +\item \code{OCEAN_PREIND_C_ID()}: Preindustrial intermediate+deep ocean carbon pool -\item \code{TID}: Intermediate-deep exchange +\item \code{TT()}: Thermohaline overturning -\item \code{PH_HL}: High-latitude Ph +\item \code{TU()}: High-latitude overturning -\item \code{PH_LL}: Low-latitude Ph +\item \code{TWI()}: Warm-intermediate exchange -\item \code{ATM_OCEAN_FLUX_HL}: Atmosphere-ocean carbon flux, high-latitude +\item \code{TID()}: Intermediate-deep exchange -\item \code{ATM_OCEAN_FLUX_LL}: Atmosphere-ocean carbon flux, low-latitude +\item \code{PH_HL()}: High-latitude pH -\item \code{PCO2_HL}: Partial pressure of CO2, high-latitude +\item \code{PH_LL()}: Low-latitude pH -\item \code{PCO2_LL}: Partial pressure of CO2, low-latitude +\item \code{PH()}: Ocean surface pH -\item \code{DIC_HL}: Dissolved inorganic carbon, high-latitude +\item \code{HL_OCEAN_UPTAKE()}: Atmosphere-ocean carbon flux, high-latitude -\item \code{DIC_LL}: Dissolved inorganic carbon, low-latitude +\item \code{LL_OCEAN_UPTAKE()}: Atmosphere-ocean carbon flux, low-latitude -\item \code{TEMP_HL}: Ocean temperature, high-latitude +\item \code{PCO2_HL()}: Partial pressure of CO2, high-latitude -\item \code{TEMP_LL}: Ocean temperature, low-latitude +\item \code{PCO2_LL()}: Partial pressure of CO2, low-latitude -\item \code{CO3_LL}: Carbonate concentration, low-latitude +\item \code{PCO2()}: Ocean surface partial pressure of CO2 -\item \code{CO3_HL}: Carbonate concentration, high-latitude -}} +\item \code{DIC_HL()}: Dissolved inorganic carbon, high-latitude + +\item \code{DIC()}: Ocean surface dissolved inorganic carbon + +\item \code{DIC_LL()}: Dissolved inorganic carbon, low-latitude + +\item \code{SST_HL()}: Absolute ocean surface temperature, high-latitude (deg C) + +\item \code{SST_LL()}: Absolute ocean surface temperature, low-latitude (deg C) +\item \code{CO3_LL()}: Carbonate concentration, low-latitude + +\item \code{CO3_HL()}: Carbonate concentration, high-latitude + +\item \code{CO3()}: Ocean surface carbonate concentration + +}} \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{parameters}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/parameters.Rd b/man/parameters.Rd index 277ef7d2c..e79a02865 100644 --- a/man/parameters.Rd +++ b/man/parameters.Rd @@ -1,7 +1,7 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{parameters} -\alias{parameters} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{TRACKING_DATE} +\alias{TRACKING_DATE} \alias{PREINDUSTRIAL_CO2} \alias{BETA} \alias{Q10_RH} @@ -9,14 +9,16 @@ \alias{F_NPPV} \alias{F_NPPD} \alias{F_LITTERD} -\alias{F_LUCV} -\alias{F_LUCD} \alias{ECS} \alias{AERO_SCALE} \alias{VOLCANIC_SCALE} +\alias{LO_WARMING_RATIO} \alias{DIFFUSIVITY} +\alias{parameters} \title{Identifiers for model parameters} \usage{ +TRACKING_DATE() + PREINDUSTRIAL_CO2() BETA(biome = "") @@ -31,83 +33,82 @@ F_NPPD(biome = "") F_LITTERD(biome = "") -F_LUCV() - -F_LUCD() - ECS() AERO_SCALE() VOLCANIC_SCALE() +LO_WARMING_RATIO() + DIFFUSIVITY() } \arguments{ -\item{biome}{Biome for which to retrieve parameter. If missing or -`""`, default to `"global"`.} +\item{biome}{Biome for which to retrieve parameter. If missing or `""`, default to `"global"`.} } \description{ These identifiers correspond to settable parameters that change the model -behavior and are subject to uncertainty. All of these can be set using the -\code{\link{SETDATA}} message type. Changing any of these parameters will +behavior and are subject to uncertainty. All of these can be set using the +\code{\link{SETDATA}} message type. Changing any of these parameters will typically invalidate the hector core's internal state; therefore, after setting one or more of these values you should call \code{\link{reset}} before -attempting to run the model again. This will rerun the spinup and produce a -new internally consistent state. Attempting to run the model without resetting -first will usually produce an error (often with a message about failing to conserve -mass). +attempting to run the model again. This will rerun the spinup and produce a +new internally consistent state. Attempting to run the model without resetting +first will usually produce an error (often with a message about failing to +conserve mass). } \section{Functions}{ \itemize{ -\item \code{PREINDUSTRIAL_CO2}: Preindustrial CO2 concentration (\code{"ppmv CO2"}) +\item \code{TRACKING_DATE()}: Start of carbon tracking (Year) -\item \code{BETA}: CO2 fertilization factor (\code{"(unitless)"}) +\item \code{PREINDUSTRIAL_CO2()}: Preindustrial CO2 concentration (\code{"ppmv CO2"}) -\item \code{Q10_RH}: Heterotrophic respiration temperature sensitivity factor (\code{"(unitless)"}) +\item \code{BETA()}: CO2 fertilization factor (\code{"(unitless)"}) -\item \code{WARMINGFACTOR}: Biome-specific warming factor (`(unitless)`) +\item \code{Q10_RH()}: Heterotrophic respiration temperature sensitivity factor (\code{"(unitless)"}) -\item \code{F_NPPV}: NPP fraction to vegetation (\code{"(unitless)"}) +\item \code{WARMINGFACTOR()}: Biome-specific warming factor (`(unitless)`) -\item \code{F_NPPD}: NPP fraction to detritus (\code{"(unitless)"}) +\item \code{F_NPPV()}: NPP fraction to vegetation (\code{"(unitless)"}) -\item \code{F_LITTERD}: Litter fraction to detritus (\code{"(unitless)"}) +\item \code{F_NPPD()}: NPP fraction to detritus (\code{"(unitless)"}) -\item \code{F_LUCV}: LUC fraction to vegetation (\code{"(unitless)"}) +\item \code{F_LITTERD()}: Litter fraction to detritus (\code{"(unitless)"}) -\item \code{F_LUCD}: LUC fraction to detritus (\code{"(unitless)"}) +\item \code{ECS()}: Equilibrium Climate Sensitivity (\code{"degC"}) -\item \code{ECS}: Equilibrium Climate Sensitivity (\code{"degC"}) +\item \code{AERO_SCALE()}: Aerosol forcing scaling factor (\code{"(unitless)"}) -\item \code{AERO_SCALE}: Aerosol forcing scaling factor (\code{"(unitless)"}) +\item \code{VOLCANIC_SCALE()}: Volcanic forcing scaling factor (\code{"(unitless)"}) -\item \code{VOLCANIC_SCALE}: Volcanic forcing scaling factor (\code{"(unitless)"}) +\item \code{LO_WARMING_RATIO()}: Land-Ocean Warming Ratio (\code{"(unitless)"}), by default set to 0 meaning that the land ocean warming ratio is an emergent property of Hector's temperature component otherwise the user defined land ocean warming ratio will be used. -\item \code{DIFFUSIVITY}: Ocean heat diffusivity (\code{"cm2/s"}) -}} +\item \code{DIFFUSIVITY()}: Ocean heat diffusivity (\code{"cm2/s"}) +}} \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{so2}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()} } \concept{capability identifiers} diff --git a/man/reset.Rd b/man/reset.Rd index ce078b590..fa498bbbc 100644 --- a/man/reset.Rd +++ b/man/reset.Rd @@ -9,20 +9,20 @@ reset(core, date = 0) \arguments{ \item{core}{Handle for the Hector instance that is to be reset.} -\item{date}{Date to reset to. The default is to reset to the model start date with -a rerun of the spinup.} +\item{date}{Date to reset to. The default is to reset to the model start +date with a rerun of the spinup.} } \description{ -Resetting the model returns it to its state at a previous time. If the requested time -is before the model start date (any value will do; conventionally zero is used), then -the spinup will be rerun, and the model will be -left ready to run at the start date. (By contrast, resetting \emph{to} the start -date leaves the model ready to run at the start date, but without having rerun the -spinup.) +Resetting the model returns it to its state at a previous time. If the +requested time is before the model start date, then the spinup will be +rerun, and the model will be left ready to run at the start date. (By +contrast, resetting \emph{to} the start date leaves the model ready to run +at the start date, but without having rerun the spinup.) } \seealso{ Other main user interface functions: \code{\link{fetchvars}()}, +\code{\link{get_tracking_data}()}, \code{\link{newcore}()}, \code{\link{run}()}, \code{\link{setvar}()}, diff --git a/man/rho.Rd b/man/rho.Rd new file mode 100644 index 000000000..0e5a85de8 --- /dev/null +++ b/man/rho.Rd @@ -0,0 +1,193 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{RHO_BC} +\alias{RHO_BC} +\alias{RHO_OC} +\alias{RHO_NH3} +\alias{RHO_SO2} +\alias{RHO_CF4} +\alias{RHO_C2F6} +\alias{RHO_HFC23} +\alias{RHO_HFC32} +\alias{RHO_HFC4310} +\alias{RHO_HFC125} +\alias{RHO_HFC134A} +\alias{RHO_HFC143A} +\alias{RHO_HFC227EA} +\alias{RHO_HFC245FA} +\alias{RHO_SF6} +\alias{RHO_CFC11} +\alias{RHO_CFC12} +\alias{RHO_CFC113} +\alias{RHO_CFC114} +\alias{RHO_CFC115} +\alias{RHO_CCL4} +\alias{RHO_CH3CCL3} +\alias{RHO_HCFC22} +\alias{RHO_HCFC141B} +\alias{RHO_HCFC142B} +\alias{RHO_HALON1211} +\alias{RHO_HALON1301} +\alias{RHO_HALON2402} +\alias{RHO_CH3CL} +\alias{RHO_CH3BR} +\alias{rho} +\title{Identifiers for Hector forcing component parameters} +\usage{ +RHO_BC() + +RHO_OC() + +RHO_NH3() + +RHO_SO2() + +RHO_CF4() + +RHO_C2F6() + +RHO_HFC23() + +RHO_HFC32() + +RHO_HFC4310() + +RHO_HFC125() + +RHO_HFC134A() + +RHO_HFC143A() + +RHO_HFC227EA() + +RHO_HFC245FA() + +RHO_SF6() + +RHO_CFC11() + +RHO_CFC12() + +RHO_CFC113() + +RHO_CFC114() + +RHO_CFC115() + +RHO_CCL4() + +RHO_CH3CCL3() + +RHO_HCFC22() + +RHO_HCFC141B() + +RHO_HCFC142B() + +RHO_HALON1211() + +RHO_HALON1301() + +RHO_HALON2402() + +RHO_CH3CL() + +RHO_CH3BR() +} +\description{ +These identifiers specify radiative forcing efficiency in hector these values +can be read and/or set by hectors forcing and halocarbon components. +the forcing component. +} +\section{Functions}{ +\itemize{ +\item \code{RHO_BC()}: a radiative forcing efficiency for BC aerosol-radiation interactions + +\item \code{RHO_OC()}: a radiative forcing efficiency for OC aerosol-radiation interactions + +\item \code{RHO_NH3()}: a radiative forcing efficiency for NH3 aerosol-radiation interactions + +\item \code{RHO_SO2()}: a radiative forcing efficiency for SO2 + +\item \code{RHO_CF4()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CF4 + +\item \code{RHO_C2F6()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for C2F6 + +\item \code{RHO_HFC23()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-23 + +\item \code{RHO_HFC32()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-32 + +\item \code{RHO_HFC4310()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-4310 + +\item \code{RHO_HFC125()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-125 + +\item \code{RHO_HFC134A()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-134a + +\item \code{RHO_HFC143A()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-143a + +\item \code{RHO_HFC227EA()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-227ea + +\item \code{RHO_HFC245FA()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-254fa + +\item \code{RHO_SF6()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for sulfur hexafluoride + +\item \code{RHO_CFC11()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-11 + +\item \code{RHO_CFC12()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-12 + +\item \code{RHO_CFC113()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-113 + +\item \code{RHO_CFC114()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-114 + +\item \code{RHO_CFC115()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-115 + +\item \code{RHO_CCL4()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for carbon tetrachloride + +\item \code{RHO_CH3CCL3()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for trichloroethane ' + +\item \code{RHO_HCFC22()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-22 + +\item \code{RHO_HCFC141B()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-141b + +\item \code{RHO_HCFC142B()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HCFC-142b + +\item \code{RHO_HALON1211()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for halon-1211 ' + +\item \code{RHO_HALON1301()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for halon-1301 + +\item \code{RHO_HALON2402()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for halon-2402 ' + +\item \code{RHO_CH3CL()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for chloromethane + +\item \code{RHO_CH3BR()}: a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for bromomethane + +}} +\section{Note}{ + +Because these identifiers are provided as \code{#define} macros in the hector code, +these identifiers are provided in the R interface as functions. Therefore, +these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} +instead of the more natural looking \code{GETDATA}. +} + +\seealso{ +\link{haloforcings} for forcings from halocarbons and \link{forcings} forcing +values provided from the hector forcing component. + +Other capability identifiers: +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{TRACKING_DATE}()} +} +\concept{capability identifiers} diff --git a/man/run.Rd b/man/run.Rd index 31a2b1b8f..2f45dba06 100644 --- a/man/run.Rd +++ b/man/run.Rd @@ -9,19 +9,20 @@ run(core, runtodate = -1) \arguments{ \item{core}{Handle to the Hector instance that is to be run.} -\item{runtodate}{Date to run to. The default is to run to the end date configured -in the input file used to initialize the core.} +\item{runtodate}{Date to run to. The default is to run to the end date +configured in the input file used to initialize the core.} } \value{ The Hector instance handle } \description{ -Run Hector up through the specified time. This function does not return the results -of the run. To get results, run \code{fetch}. +Run Hector up through the specified time. This function does not return the +results of the run. To get results, run \code{fetch}. } \seealso{ Other main user interface functions: \code{\link{fetchvars}()}, +\code{\link{get_tracking_data}()}, \code{\link{newcore}()}, \code{\link{reset}()}, \code{\link{setvar}()}, diff --git a/man/sendmessage.Rd b/man/sendmessage.Rd index 69b8e9bb8..0eda42c30 100644 --- a/man/sendmessage.Rd +++ b/man/sendmessage.Rd @@ -11,36 +11,29 @@ sendmessage(core, msgtype, capability, date, value, unit) \item{msgtype}{(String) type of message. Usually either GETDATA or SETDATA} -\item{capability}{(String) capability being targeted by the message. The core will use -this information to look up the component to route the message to.} +\item{capability}{(String) capability being targeted by the message} -\item{date}{(NumericVector) Date for which to set/get the variable. Use NA if there is -no applicable date.} +\item{date}{(NumericVector or NA) Date for which to set/get the variable} -\item{value}{(NumericVector) Numeric portion of the optional data (in case of setting -a value this will be the value to set). The length of this vector should match that of -the time, or it should be length 1 (in which case it will be recycled).} +\item{value}{(NumericVector) Numeric value of the optional data} \item{unit}{(String) Unit for the value vector.} } \description{ Messages are the mechanism used to get data from Hector model components and -to set values within components. -} -\details{ -A message comprises a type (e.g. GETDATA to retrieve data from a component, or SETDATA to -set data in a component), a capability, which identifies the information to be operated -on (e.g. Atmospheric CO2 concentration, or global total radiative forcing), and an optional +to set values within components. A message comprises a type (e.g. GETDATA +to retrieve data from a component, or SETDATA to set data in a component), +a capability, which identifies the information to be operated on (e.g. +Atmospheric CO2 concentration, or global total radiative forcing), and an optional structure of extra data (comprising a date and a numerical value with units). - -The arguments to this function are organized in a slightly more R-friendly way. The message -type and capability are each passed as a single string. The date portion of the extra -data is passed as a numeric vector (one message will be generated for each date). The value -portion of the extra data is a numeric vector with a length of either 1 or the same length -as the date vector. The units portion is a single string (we don't support sending a vector -of values with heterogeneous units in a single call. - -Either the date or the value (or both) may be NA. The date should be NA in cases where the -parameter being referenced doesn't change with time. The value should be NA in cases where -the optional data will be ignored. +The arguments to this function are organized in a slightly more R-friendly +way. The message type and capability are each passed as a single string. +The date portion of the extra data is passed as a numeric vector (one +message will be generated for each date). The value portion of the extra +data is a numeric vector with a length of either 1 or the same length as the +date vector.The units portion is a single string (we don't support sending a +vector of values with heterogeneous units in a single call. Either the date +or the value (or both) may be NA. The date should be NA in cases where the + parameter being referenced doesn't change with time. The value should be NA in cases + where the optional data will be ignored. } diff --git a/man/setvar.Rd b/man/setvar.Rd index e797b0e40..5d9fd4175 100644 --- a/man/setvar.Rd +++ b/man/setvar.Rd @@ -28,6 +28,7 @@ match (i.e., there is no attempt to convert units). \seealso{ Other main user interface functions: \code{\link{fetchvars}()}, +\code{\link{get_tracking_data}()}, \code{\link{newcore}()}, \code{\link{reset}()}, \code{\link{run}()}, diff --git a/man/shutdown.Rd b/man/shutdown.Rd index 2b6443b5f..ea0f30fdb 100644 --- a/man/shutdown.Rd +++ b/man/shutdown.Rd @@ -2,7 +2,7 @@ % Please edit documentation in R/RcppExports.R \name{shutdown} \alias{shutdown} -\title{Shutdown a hector instance} +\title{Shut down a hector instance} \usage{ shutdown(core) } @@ -13,18 +13,20 @@ shutdown(core) The Hector instance handle } \description{ -Shutting down an instance will free the instance itself and all of the objects it created. Any attempted -operation on the instance after that will raise an error. +Shutting down an instance will free the instance itself and all of the +objects it created. Any attempted operation on the instance after that will +raise an error. } \section{Caution}{ -This function should be called as \code{mycore <- shutdown(mycore)} so that the change -from active to inactive will be recorded in the caller. +This function should be called as \code{mycore <- shutdown(mycore)} so that +the change from active to inactive will be recorded in the caller. } \seealso{ Other main user interface functions: \code{\link{fetchvars}()}, +\code{\link{get_tracking_data}()}, \code{\link{newcore}()}, \code{\link{reset}()}, \code{\link{run}()}, diff --git a/man/so2.Rd b/man/so2.Rd index 7d889a560..f116e78a6 100644 --- a/man/so2.Rd +++ b/man/so2.Rd @@ -1,17 +1,11 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{so2} -\alias{so2} -\alias{NATURAL_SO2} -\alias{Y2000_SO2} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{EMISSIONS_SO2} \alias{EMISSIONS_SO2} \alias{VOLCANIC_SO2} +\alias{so2} \title{Identifiers for quantities in the SO2 component} \usage{ -NATURAL_SO2() - -Y2000_SO2() - EMISSIONS_SO2() VOLCANIC_SO2() @@ -43,24 +37,26 @@ These variables can be set using the \code{\link{SETDATA}} message type. \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{temperature}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{GLOBAL_TAS}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/split_biome.Rd b/man/split_biome.Rd index 526afc024..9ebb9985f 100644 --- a/man/split_biome.Rd +++ b/man/split_biome.Rd @@ -11,6 +11,7 @@ split_biome( fveg_c = rep(1/length(new_biomes), length(new_biomes)), fdetritus_c = fveg_c, fsoil_c = fveg_c, + fpermafrost_c = fveg_c, fnpp_flux0 = fveg_c, ... ) @@ -23,21 +24,22 @@ split_biome( \item{new_biomes}{Names of biomes to be created} \item{fveg_c}{Fractions of vegetation C distributed to each biome -in `new_biomes`. Must be the same length as `new_biomes`. Default +in \code{new_biomes}; must be the same length as it. Default is to split vegetation C evenly between all biomes.} \item{fdetritus_c}{Fractions of detritus C distributed to each -biome. Defaults to the same value as `fveg_c`.} +biome. Defaults to the same value as \code{fveg_c}.} \item{fsoil_c}{Fractions of soil C distributed to each biome. -Defaults to the same value as `fveg_c`.} +Defaults to the same value as \code{fveg_c}.} + +\item{fpermafrost_c}{Fraction of permafrost C distributed to each +biome. Defaults to the same value as \code{fveg_c}.} \item{fnpp_flux0}{Fraction of initial NPP flux distributed to each -biome. Defaults to the same value as `fveg_c`.} +biome. Defaults to the same value as \code{fveg_c}.} -\item{...}{Additional biome-specific parameters, as set by -[create_biome()]. Note that these are passed to [create_biome()] -via [base::mapply()], so they can be vectorized across biomes.} +\item{...}{Additional biome parameters passed to \code{\link{create_biome}}.} } \description{ Distributes vegetation, detritus, and soil C, and initial NPP flux diff --git a/man/temperature.Rd b/man/temperature.Rd index 9592aecab..1966e1f49 100644 --- a/man/temperature.Rd +++ b/man/temperature.Rd @@ -1,26 +1,23 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/aadoc.R, R/RcppExports.R -\name{temperature} -\alias{temperature} -\alias{GLOBAL_TEMP} -\alias{GLOBAL_TEMPEQ} -\alias{OCEAN_SURFACE_TEMP} -\alias{OCEAN_AIR_TEMP} -\alias{LAND_AIR_TEMP} +% Please edit documentation in R/RcppExports.R, R/aadoc.R +\name{GLOBAL_TAS} +\alias{GLOBAL_TAS} +\alias{SST} +\alias{OCEAN_TAS} +\alias{LAND_TAS} \alias{FLUX_MIXED} \alias{FLUX_INTERIOR} \alias{HEAT_FLUX} +\alias{temperature} \title{Identifiers for variables associated with the temperature component} \usage{ -GLOBAL_TEMP() +GLOBAL_TAS() -GLOBAL_TEMPEQ() +SST() -OCEAN_SURFACE_TEMP() +OCEAN_TAS() -OCEAN_AIR_TEMP() - -LAND_AIR_TEMP() +LAND_TAS() FLUX_MIXED() @@ -34,44 +31,44 @@ type. } \section{Functions}{ \itemize{ -\item \code{GLOBAL_TEMP}: Global mean temperature +\item \code{GLOBAL_TAS()}: Global mean air temperature anomaly -\item \code{GLOBAL_TEMPEQ}: Equilibrium global temperature +\item \code{SST()}: Average sea surface temperature anomaly -\item \code{OCEAN_SURFACE_TEMP}: Average ocean surface temperature anomaly +\item \code{OCEAN_TAS()}: Average air temperature anomaly over the ocean -\item \code{OCEAN_AIR_TEMP}: Average ocean air temperature anomaly +\item \code{LAND_TAS()}: Average air temperature anomaly over land, land surface temperature and air temperature over land are assumed to be equivalent. -\item \code{LAND_AIR_TEMP}: Average land temperature anomaly +\item \code{FLUX_MIXED()}: Heat flux into the mixed layer of the ocean -\item \code{FLUX_MIXED}: Heat flux into the mixed layer of the ocean +\item \code{FLUX_INTERIOR()}: Heat flux into the interior layer of the ocean -\item \code{FLUX_INTERIOR}: Heat flux into the interior layer of the ocean +\item \code{HEAT_FLUX()}: Total heat flux into the ocean -\item \code{HEAT_FLUX}: Total heat flux into the ocean }} - \section{Note}{ Because these identifiers are provided as \code{#define} macros in the hector code, -these identifiers are provided in the R interface as function. Therefore, +these identifiers are provided in the R interface as functions. Therefore, these objects must be called to use them; \emph{e.g.}, \code{GETDATA()} instead of the more natural looking \code{GETDATA}. } \seealso{ Other capability identifiers: -\code{\link{carboncycle}}, -\code{\link{concentrations}}, -\code{\link{constraints}}, -\code{\link{emissions}}, -\code{\link{forcings}}, -\code{\link{haloconstrain}}, -\code{\link{haloemiss}}, -\code{\link{haloforcings}}, -\code{\link{methane}}, -\code{\link{ocean}}, -\code{\link{parameters}}, -\code{\link{so2}} +\code{\link{CF4_CONSTRAIN}()}, +\code{\link{CONCENTRATIONS_CH4}()}, +\code{\link{CONCENTRATIONS_N2O}()}, +\code{\link{DELTA_CO2}()}, +\code{\link{EMISSIONS_BC}()}, +\code{\link{EMISSIONS_CF4}()}, +\code{\link{EMISSIONS_SO2}()}, +\code{\link{FTOT_CONSTRAIN}()}, +\code{\link{NBP}()}, +\code{\link{OCEAN_UPTAKE}()}, +\code{\link{RF_CF4}()}, +\code{\link{RF_TOTAL}()}, +\code{\link{RHO_BC}()}, +\code{\link{TRACKING_DATE}()} } \concept{capability identifiers} diff --git a/man/unitstable.Rd b/man/unitstable.Rd new file mode 100644 index 000000000..6f9030975 --- /dev/null +++ b/man/unitstable.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/aadoc.R +\docType{data} +\name{unitstable} +\alias{unitstable} +\title{A data.frame containing information on all of the Hector variable created by units-data.R +used within the getunits function.} +\format{ +A data.frame of 2 columns and 114 rows. +\describe{ + \item{variable}{String of the hector variable} + \item{units}{String of the unit value} +} +} +\usage{ +unitstable +} +\description{ +A data.frame containing information on all of the Hector variable created by units-data.R +used within the getunits function. +} +\keyword{datasets} diff --git a/misc/main-api.cpp b/misc/main-api.cpp index d12736f77..f9f021c7d 100644 --- a/misc/main-api.cpp +++ b/misc/main-api.cpp @@ -1,12 +1,12 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. */ /* * main-api.cpp - example main() using the API - * + * * */ @@ -100,7 +100,7 @@ int main (int argc, char * const argv[]) { tseries tempts; tseries cats; tseries forcts; - + for(double t=core.getStartDate()+5.0; t<=core.getEndDate(); t+=5.0) { read_and_set_co2(tlast, t, core, sim_gcam_emiss); core.run(t); @@ -108,20 +108,20 @@ int main (int argc, char * const argv[]) { // from components. Note you don't need to get the name // of the component; you just need to say what kind of // data you want, and the core takes care of the rest. - unitval temp = core.sendMessage(M_GETDATA, D_GLOBAL_TEMP); - unitval ca = core.sendMessage(M_GETDATA, D_ATMOSPHERIC_CO2); + unitval temp = core.sendMessage(M_GETDATA, D_GLOBAL_TAS); + unitval CO2_conc = core.sendMessage(M_GETDATA, D_CO2_CONC); unitval forc = core.sendMessage(M_GETDATA, D_RF_TOTAL); H_LOG(glog, Logger::NOTICE) << "t= " << t << "\t" << "temp= " << temp << "\t" - << "atmos. C= " << ca << "\t" + << "atmos. C= " << CO2_conc << "\t" << "RF= " << forc << endl; // Record the values we retrieved above for future reference tempts.set(t, temp); - cats.set(t, ca); + cats.set(t, CO2_conc); forcts.set(t, forc); - + tlast = t; } @@ -133,17 +133,17 @@ int main (int argc, char * const argv[]) { core.reset(0); // reset to start and rerun spinup. for(double newt = core.getStartDate()+5.0; newt<=core.getEndDate(); newt+=5.0) { core.run(newt); - unitval temp = core.sendMessage(M_GETDATA, D_GLOBAL_TEMP); - unitval ca = core.sendMessage(M_GETDATA, D_ATMOSPHERIC_CO2); + unitval temp = core.sendMessage(M_GETDATA, D_GLOBAL_TAS); + unitval CO2_conc = core.sendMessage(M_GETDATA, D_CO2_CONC); unitval forc = core.sendMessage(M_GETDATA, D_RF_TOTAL); H_LOG(glog, Logger::NOTICE) << "t= " << newt << ":\n" << "\ttemp old= " << tempts.get(newt) << "\ttemp new= " << temp << "\tdiff= " << temp-tempts.get(newt) << "\n" - << "\tca old= " << cats.get(newt) << "\tca new= " << ca << "\tdiff= " << ca-cats.get(newt) << "\n" + << "\tca old= " << cats.get(newt) << "\tca new= " << CO2_conc << "\tdiff= " << CO2_conc-cats.get(newt) << "\n" << "\tforc old= " << forcts.get(newt) << "\tforc new= " << forc << "\tdiff= " << forc-forcts.get(newt) << "\n"; } - + H_LOG(glog, Logger::NOTICE) << "Shutting down all components.\n"; core.shutDown(); @@ -176,18 +176,23 @@ void read_and_set_co2(double tstrt, double tend, Core &core, istream &sim_gcam_e t = atof(splitvec[0].c_str()); if(t>=tstrt && t>2010.0) { double ffi = atof(splitvec[1].c_str()); - double luc = atof(splitvec[2].c_str()); - double so2 = atof(splitvec[6].c_str()); - double bc = atof(splitvec[10].c_str()); - double oc = atof(splitvec[11].c_str()); - double cf4 = atof(splitvec[13].c_str()); - double hcf22 = atof(splitvec[32].c_str()); + double daccs = atof(splitvec[2].c_str()); + double luc = atof(splitvec[3].c_str()); + double so2 = atof(splitvec[7].c_str()); + double bc = atof(splitvec[11].c_str()); + double oc = atof(splitvec[12].c_str()); + double cf4 = atof(splitvec[14].c_str()); + double hcf22 = atof(splitvec[33].c_str()); // This is how you set annual emissions into the model core.sendMessage(M_SETDATA, D_FFI_EMISSIONS, message_data(t, unitval(ffi, U_PGC_YR))); + core.sendMessage(M_SETDATA, D_DACCS_UPTAKE, + message_data(t, unitval(daccs, U_PGC_YR))); core.sendMessage(M_SETDATA, D_LUC_EMISSIONS, message_data(t, unitval(luc, U_PGC_YR))); + core.sendMessage(M_SETDATA, D_LUC_UPTAKE, + message_data(t, unitval(luc, U_PGC_YR))); core.sendMessage(M_SETDATA, D_EMISSIONS_SO2, message_data(t, unitval(so2, U_GG_S))); core.sendMessage(M_SETDATA, D_EMISSIONS_BC, @@ -196,11 +201,12 @@ void read_and_set_co2(double tstrt, double tend, Core &core, istream &sim_gcam_e message_data(t, unitval(oc, U_TG))); core.sendMessage(M_SETDATA, D_EMISSIONS_CF4, message_data(t, unitval(cf4, U_GG))); - core.sendMessage(M_SETDATA, D_EMISSIONS_HCF22, + core.sendMessage(M_SETDATA, D_EMISSIONS_HFC22, message_data(t, unitval(hcf22, U_GG))); std::cout << "t= " << t << "\n" << "\t\tffi= " << ffi << "\n" + << "\t\tdaccs= " << daccs << "\n" << "\t\tluc= " << luc << "\n" << "\t\tSO2= " << so2 << "\n" << "\t\tBC= " << bc << "\n" diff --git a/old/svn_log.log b/old/svn_log.log deleted file mode 100644 index d135d2892..000000000 --- a/old/svn_log.log +++ /dev/null @@ -1,2005 +0,0 @@ ------------------------------------------------------------------------- -r480 | chartin | 2014-09-14 19:58:41 -0400 (Sun, 14 Sep 2014) | 1 line - -added ocean heat uptake (k) to the ini file. ------------------------------------------------------------------------- -r479 | rpl | 2014-09-12 10:04:56 -0400 (Fri, 12 Sep 2014) | 2 lines - -Remove redundant, outdated input files. - ------------------------------------------------------------------------- -r478 | rpl | 2014-09-11 10:31:51 -0400 (Thu, 11 Sep 2014) | 5 lines - -Fine-tune the linux installation instructions, fix misspellings, etc. -Having to follow the instructions myself exposed a few holes and -oversights. - - ------------------------------------------------------------------------- -r477 | rpl | 2014-09-11 10:16:28 -0400 (Thu, 11 Sep 2014) | 2 lines - -Fix case mismatch in #include that was causing code not to compile on linux. - ------------------------------------------------------------------------- -r476 | chartin | 2014-08-29 09:30:51 -0400 (Fri, 29 Aug 2014) | 1 line - -added ocean circulation to ini file for all 4 RCPs. and updated corresponding files. ------------------------------------------------------------------------- -r475 | chartin | 2014-08-23 20:54:39 -0400 (Sat, 23 Aug 2014) | 1 line - -updates to ocean_csys.hpp and .cpp for doxegen documentation ------------------------------------------------------------------------- -r474 | chartin | 2014-08-14 16:41:17 -0400 (Thu, 14 Aug 2014) | 1 line - -updates to add variable and add component within the user guide. ------------------------------------------------------------------------- -r473 | chartin | 2014-08-14 14:16:32 -0400 (Thu, 14 Aug 2014) | 3 lines - -some final updates to a few components (forcing, O3, simpleNbox) -final ini files updates - ------------------------------------------------------------------------- -r472 | chartin | 2014-07-29 14:24:10 -0400 (Tue, 29 Jul 2014) | 1 line - -a few more updates to RCP26 files ------------------------------------------------------------------------- -r471 | chartin | 2014-07-29 14:12:09 -0400 (Tue, 29 Jul 2014) | 1 line - -renamed the emissions file and added a few header lines. ------------------------------------------------------------------------- -r470 | chartin | 2014-07-29 14:09:42 -0400 (Tue, 29 Jul 2014) | 1 line - -updated emissions file for RCP26. There was an error in the OC emissions. ------------------------------------------------------------------------- -r469 | chartin | 2014-07-29 13:02:48 -0400 (Tue, 29 Jul 2014) | 1 line - -minor changes to ini files and to MAGICC comparison files ------------------------------------------------------------------------- -r468 | chartin | 2014-07-21 16:32:44 -0400 (Mon, 21 Jul 2014) | 3 lines - -updates to ozone component - still needs to be tweaked -updates to all ini files -updates and additional comparison files ------------------------------------------------------------------------- -r467 | bpbond | 2014-06-02 14:42:43 -0400 (Mon, 02 Jun 2014) | 1 line - -Fixed area and units bugs in esg_data script ------------------------------------------------------------------------- -r466 | bpbond | 2014-06-02 14:41:57 -0400 (Mon, 02 Jun 2014) | 1 line - -Updated hectorize script to handle to esg_data output format ------------------------------------------------------------------------- -r465 | chartin | 2014-06-02 13:48:35 -0400 (Mon, 02 Jun 2014) | 1 line - -updates to esg_data.R Now all files are loaded into one large results.csv file in order to help with issues of oddly numbered years in the data ------------------------------------------------------------------------- -r463 | chartin | 2014-05-06 15:00:49 -0400 (Tue, 06 May 2014) | 1 line - -minor updates to MAGICC aofluxes, historical data, lookup table and ocean component ------------------------------------------------------------------------- -r462 | chartin | 2014-05-02 13:15:08 -0400 (Fri, 02 May 2014) | 1 line - -updated CMIP5 temperature files and ini files ------------------------------------------------------------------------- -r461 | bpbond | 2014-05-01 14:02:28 -0400 (Thu, 01 May 2014) | 1 line - -Minor bugbase and user guide updates. ------------------------------------------------------------------------- -r460 | chartin | 2014-05-01 11:37:16 -0400 (Thu, 01 May 2014) | 1 line - -added CMIP5 files of atmospheric temperature, ocean-atmo flux and land-atmo flux for all RCPs ------------------------------------------------------------------------- -r459 | bpbond | 2014-05-01 06:16:59 -0400 (Thu, 01 May 2014) | 1 line - -User guide update. ------------------------------------------------------------------------- -r458 | bpbond | 2014-04-30 21:22:14 -0400 (Wed, 30 Apr 2014) | 1 line - -Incorporated README.linux file into user guide, and fleshed out skeleton outline. ------------------------------------------------------------------------- -r457 | bpbond | 2014-04-30 19:15:47 -0400 (Wed, 30 Apr 2014) | 1 line - -Added skeleton of user guide (currently R Markdown format). ------------------------------------------------------------------------- -r456 | chartin | 2014-04-30 15:23:29 -0400 (Wed, 30 Apr 2014) | 2 lines - -one more update/clean up to ini files. -and backend op.R to include all 4 RCPs ------------------------------------------------------------------------- -r455 | chartin | 2014-04-30 15:00:47 -0400 (Wed, 30 Apr 2014) | 1 line - -minor updates to rcp 45 and 85 ------------------------------------------------------------------------- -r454 | chartin | 2014-04-30 14:58:25 -0400 (Wed, 30 Apr 2014) | 1 line - -updates to rcp ini files and ocean_component.cpp ------------------------------------------------------------------------- -r453 | bpbond | 2014-04-30 14:35:58 -0400 (Wed, 30 Apr 2014) | 1 line - -Tweaks to ocean code so it builds; removed unused variables. ------------------------------------------------------------------------- -r452 | chartin | 2014-04-30 14:05:17 -0400 (Wed, 30 Apr 2014) | 1 line - -oceanbox code cleanup ------------------------------------------------------------------------- -r451 | chartin | 2014-04-30 14:04:43 -0400 (Wed, 30 Apr 2014) | 1 line - -updated ocean_component.cpp with new wind speed and temperature. Cleaned up some code that wasn't being used. ------------------------------------------------------------------------- -r450 | chartin | 2014-04-30 13:41:11 -0400 (Wed, 30 Apr 2014) | 1 line - -minor updates and clean up to code ------------------------------------------------------------------------- -r449 | bpbond | 2014-04-30 10:52:26 -0400 (Wed, 30 Apr 2014) | 1 line - -Changed soil RH formulation to use a lagged window of air temperatures, instead of running mean. This produces better-looking RCP4.5 outputs. ------------------------------------------------------------------------- -r448 | chartin | 2014-04-29 13:19:16 -0400 (Tue, 29 Apr 2014) | 1 line - -one more update to RCP ini file and an emission file ------------------------------------------------------------------------- -r447 | chartin | 2014-04-29 13:14:38 -0400 (Tue, 29 Apr 2014) | 1 line - -updated file names for 4 RCP cases to be more consistent with the data comparison. ------------------------------------------------------------------------- -r446 | bpbond | 2014-04-25 14:15:41 -0400 (Fri, 25 Apr 2014) | 1 line - -Backend work in preparation for next week- split op.R into separate files, cleaned up some code, better checks. ------------------------------------------------------------------------- -r445 | bpbond | 2014-04-24 18:57:20 -0400 (Thu, 24 Apr 2014) | 1 line - -Cleaned up RCP4.5 and 8.5 INI files, and tested them using new decomp (previous commit). ------------------------------------------------------------------------- -r444 | bpbond | 2014-04-24 14:56:37 -0400 (Thu, 24 Apr 2014) | 1 line - -Heterotrophic respiration from detritus continues to use current air temp, but soil RH now uses a running mean of previous temps, meaning it peaks later and lower than it otherwise would. For RCP8.5, the overall air-land flux now peaks at ~4 Pg C in 2100, then drops to -2 by 2300. This is more realistic and more consistent with CMIP5 results. ------------------------------------------------------------------------- -r443 | bpbond | 2014-04-21 12:37:48 -0400 (Mon, 21 Apr 2014) | 1 line - -Changed ocean wind speed per CH, so model behaves better under RCP8.5 ------------------------------------------------------------------------- -r442 | chartin | 2014-03-31 14:19:15 -0400 (Mon, 31 Mar 2014) | 1 line - -updates to units in BATS files and added atmo-land and atmo-ocean fluxes from IPCC report ------------------------------------------------------------------------- -r441 | chartin | 2014-03-31 14:12:35 -0400 (Mon, 31 Mar 2014) | 1 line - -added BATS comparison data for ocean chemistry ------------------------------------------------------------------------- -r440 | chartin | 2014-03-28 12:35:27 -0400 (Fri, 28 Mar 2014) | 1 line - -more updates to historical data sets and op.R to make the scenarios names consistent across all data ------------------------------------------------------------------------- -r439 | chartin | 2014-03-28 12:21:00 -0400 (Fri, 28 Mar 2014) | 1 line - -updated op.R to reflect changes in scenario names ------------------------------------------------------------------------- -r438 | chartin | 2014-03-28 09:56:27 -0400 (Fri, 28 Mar 2014) | 2 lines - -updated ini files and comparison data so that the scenarios now match between all data and models. -deleted CMIP areas file. Not needed for Hector. ------------------------------------------------------------------------- -r437 | rpl | 2014-03-19 10:23:09 -0400 (Wed, 19 Mar 2014) | 7 lines - -Optimization: Added a cached bisection search function to -h_interpolator. The linear interpolator now uses this function to -find the neighboring values to interpolate from. I haven't yet -changed the spline interpolator to use it. - -Run time 1.60s -> 1.23s. - ------------------------------------------------------------------------- -r436 | rpl | 2014-03-19 08:43:18 -0400 (Wed, 19 Mar 2014) | 4 lines - -Optimization: Removed from unitval class the string members and the -methods that referred to them. Run time on the RCP85 scenario went -from 2.44s to 1.60s (34% savings). - ------------------------------------------------------------------------- -r435 | bpbond | 2014-03-11 13:18:19 -0400 (Tue, 11 Mar 2014) | 1 line - -Xcode 5.1 project file update. ------------------------------------------------------------------------- -r434 | rpl | 2014-03-05 16:06:17 -0500 (Wed, 05 Mar 2014) | 9 lines - -* Added ability to specify additional compiler and linker flags - through environment variables. This allows users to tweak the build - options without having to edit the Makefile. These environment - variables are explained in the linux README. - -* Fixed the 'make clean' target to delete main.o in the top-level - source directory. Imagine my surprise when I rebuilt "cleanly" with - profiling turned on, and main() wasn't included! - ------------------------------------------------------------------------- -r433 | rpl | 2014-03-05 13:18:26 -0500 (Wed, 05 Mar 2014) | 14 lines - -Fixed remaining memory leaks: - -==14365== LEAK SUMMARY: -==14365== definitely lost: 0 bytes in 0 blocks -==14365== indirectly lost: 0 bytes in 0 blocks -==14365== possibly lost: 0 bytes in 0 blocks -==14365== still reachable: 240 bytes in 5 blocks -==14365== suppressed: 0 bytes in 0 blocks -==14365== Reachable blocks (those to which a pointer was found) are not shown. -==14365== To see them, rerun with: --leak-check=full --show-reachable=yes -==14365== -==14365== For counts of detected and suppressed errors, rerun with: -v -==14365== ERROR SUMMARY: 0 errors from 0 contexts - ------------------------------------------------------------------------- -r432 | rpl | 2014-03-03 13:29:05 -0500 (Mon, 03 Mar 2014) | 9 lines - -Took care of some memory leaks in h_reader and ocean_csys. There are -still leaks in logger and core. I didn't fix the one in logger -because it's not obvious what the intent was. (I think the logger -should hold the pointer and delete it when the logger is destroyed, -but it's not clear). The one in core is just puzzling. It looks like -all the objects being created are being destroyed at the end of the -calculation, but for some reason one of them (just one) is being -reported as a leak. - ------------------------------------------------------------------------- -r431 | rpl | 2014-03-03 11:18:36 -0500 (Mon, 03 Mar 2014) | 2 lines - -Fixed a bad delete in tseries.hpp (needed the array version of delete). - ------------------------------------------------------------------------- -r430 | rpl | 2014-02-21 13:24:27 -0500 (Fri, 21 Feb 2014) | 2 lines - -Added a file of build and installation instructions for linux. - ------------------------------------------------------------------------- -r429 | rpl | 2014-02-21 12:46:55 -0500 (Fri, 21 Feb 2014) | 4 lines - -Minor tweaks to some variables in the main Makefile (mostly tweaking -the names so that they make more sense for people who need to set them -in their environment). - ------------------------------------------------------------------------- -r428 | rpl | 2014-02-20 16:14:15 -0500 (Thu, 20 Feb 2014) | 2 lines - -Minor adjustments to include paths, etc. Fixed top-level Makefile. - ------------------------------------------------------------------------- -r427 | rpl | 2014-02-20 13:00:28 -0500 (Thu, 20 Feb 2014) | 2 lines - -Added include for limits.h, which appears to be needed to define INT_MAX. - ------------------------------------------------------------------------- -r426 | rpl | 2014-02-20 11:15:55 -0500 (Thu, 20 Feb 2014) | 4 lines - -* Added subdir Makefiles for new subdirs under source -* Fixed errors: #include "SimpleNbox.hpp" -> #include "simpleNbox.hpp" - (Mac disease strikes again!) - ------------------------------------------------------------------------- -r425 | bpbond | 2014-01-31 10:04:10 -0500 (Fri, 31 Jan 2014) | 1 line - -quicklook.R changes for MAGICC comparison. ------------------------------------------------------------------------- -r424 | bpbond | 2014-01-31 09:32:19 -0500 (Fri, 31 Jan 2014) | 1 line - -Forgot to commit reorganized header folder with r421, fixing that here. ------------------------------------------------------------------------- -r423 | bpbond | 2014-01-31 08:42:20 -0500 (Fri, 31 Jan 2014) | 2 lines - -Timeline update. - ------------------------------------------------------------------------- -r422 | bpbond | 2014-01-30 21:53:19 -0500 (Thu, 30 Jan 2014) | 1 line - -Rearranged header and source sub-folders into a much more logical structure: components, core, data, input, models, testing, visitors. ------------------------------------------------------------------------- -r421 | chartin | 2014-01-30 20:50:58 -0500 (Thu, 30 Jan 2014) | 1 line - -updated MAGICC6 comparison data, radiative forcing, atmospheric CO2 and global temperature ------------------------------------------------------------------------- -r420 | bpbond | 2014-01-30 17:43:45 -0500 (Thu, 30 Jan 2014) | 1 line - -Style guide update. ------------------------------------------------------------------------- -r419 | chartin | 2014-01-30 13:21:48 -0500 (Thu, 30 Jan 2014) | 1 line - -updated oceanbox.cpp in oceanbox::oscillating ------------------------------------------------------------------------- -r418 | bpbond | 2014-01-30 13:04:37 -0500 (Thu, 30 Jan 2014) | 1 line - -Changed all H_ASSERTs throughout code to Visual Studio-friendly form. ------------------------------------------------------------------------- -r417 | chartin | 2014-01-30 12:47:50 -0500 (Thu, 30 Jan 2014) | 1 line - -removed Ocean_csys_test folder and contents ------------------------------------------------------------------------- -r416 | chartin | 2014-01-30 12:41:03 -0500 (Thu, 30 Jan 2014) | 1 line - -more updates to ocean along with H_ASSERTs ------------------------------------------------------------------------- -r413 | bpbond | 2014-01-30 12:12:01 -0500 (Thu, 30 Jan 2014) | 1 line - -Bugbase update. ------------------------------------------------------------------------- -r412 | bpbond | 2014-01-30 12:07:10 -0500 (Thu, 30 Jan 2014) | 1 line - -Reorganization of documentation folder. Added an 'oldstuff' folder. ------------------------------------------------------------------------- -r411 | bpbond | 2014-01-30 11:52:05 -0500 (Thu, 30 Jan 2014) | 1 line - -Cleaned up ocean_csys and its header: spacing, changed many vars to consts, etc. ------------------------------------------------------------------------- -r410 | chartin | 2014-01-30 11:42:48 -0500 (Thu, 30 Jan 2014) | 2 lines - -added folder with the backend R scripts -This sets up one main Hector backend for plotting. ------------------------------------------------------------------------- -r409 | bpbond | 2014-01-30 11:05:42 -0500 (Thu, 30 Jan 2014) | 1 line - -Added comments and cleaned up ocean_component and simpleNbox header files. ------------------------------------------------------------------------- -r408 | bpbond | 2014-01-30 10:36:13 -0500 (Thu, 30 Jan 2014) | 1 line - -Cleaned up input directory and the RCP INI files. ------------------------------------------------------------------------- -r407 | chartin | 2014-01-30 10:12:29 -0500 (Thu, 30 Jan 2014) | 1 line - -updated ini files for all RCP cases ------------------------------------------------------------------------- -r406 | chartin | 2014-01-30 09:31:14 -0500 (Thu, 30 Jan 2014) | 1 line - -minor updates to files ------------------------------------------------------------------------- -r405 | bpbond | 2014-01-28 10:46:08 -0500 (Tue, 28 Jan 2014) | 1 line - -Many changes, including making much of ocean_csys private and modifying oceanbox. The ocean still destabilizes late in RCP8.5...very frustrating. ------------------------------------------------------------------------- -r404 | bpbond | 2014-01-27 10:56:02 -0500 (Mon, 27 Jan 2014) | 1 line - -Tweaks to quicklook.R. ------------------------------------------------------------------------- -r403 | chartin | 2014-01-27 10:31:36 -0500 (Mon, 27 Jan 2014) | 1 line - -RCP concentrations of CO2 from potsdam website through 2300 at least ------------------------------------------------------------------------- -r402 | bpbond | 2014-01-24 15:46:28 -0500 (Fri, 24 Jan 2014) | 1 line - -Fixed to bugs in forcing and slr in outputstream.spp. ------------------------------------------------------------------------- -r401 | chartin | 2014-01-24 14:23:57 -0500 (Fri, 24 Jan 2014) | 1 line - -fixed warmfactor initialization ------------------------------------------------------------------------- -r400 | bpbond | 2014-01-24 13:49:20 -0500 (Fri, 24 Jan 2014) | 1 line - -Added ability to have oceanboxes warm at different rates (this is currently specified directly by ocean_component, though this will need to change later). ------------------------------------------------------------------------- -r399 | bpbond | 2014-01-24 10:31:09 -0500 (Fri, 24 Jan 2014) | 1 line - -Many modifications to ocean_component that let it run, more or less smoothly, the RCP4.5 and 8.5 cases. Parameters controlling timestep-reduction code are in ocean_component.hpp. Also added quicklook.R to output dir. ------------------------------------------------------------------------- -r398 | chartin | 2014-01-24 09:41:39 -0500 (Fri, 24 Jan 2014) | 1 line - -updates to lookuptable, historical data formats, component_map and variable_map and main visual studio project files (added in simpleNbox) ------------------------------------------------------------------------- -r397 | bpbond | 2014-01-24 03:49:22 -0500 (Fri, 24 Jan 2014) | 1 line - -outputstream now includes biome-specific pools and fluxes from simpleNbox. ------------------------------------------------------------------------- -r396 | bpbond | 2014-01-23 22:05:13 -0500 (Thu, 23 Jan 2014) | 1 line - -Major commit: simpleNbox is now fully multi-biome. User specifies optional biomes in input (see hector_RCP8.5.ini for example); if none specified, model falls back to 'global'. Verified this runs on both new old and old inputs, producing same output with either 1 or 2 biomes. ------------------------------------------------------------------------- -r395 | bpbond | 2014-01-23 21:33:20 -0500 (Thu, 23 Jan 2014) | 1 line - -Bugbase update. ------------------------------------------------------------------------- -r394 | bpbond | 2014-01-23 20:20:43 -0500 (Thu, 23 Jan 2014) | 1 line - -Fixed compile warning about appending int to string. ------------------------------------------------------------------------- -r393 | bpbond | 2014-01-23 16:45:25 -0500 (Thu, 23 Jan 2014) | 1 line - -Number of ocean timesteps per year now included in outputstream. ------------------------------------------------------------------------- -r392 | bpbond | 2014-01-23 16:12:23 -0500 (Thu, 23 Jan 2014) | 1 line - -Added optional biome-specific beta, sigma, and warming parameters to simpleNbox. This means that high latitudes can warm faster than rest of global and respond differently, for example. ------------------------------------------------------------------------- -r391 | bpbond | 2014-01-23 10:49:12 -0500 (Thu, 23 Jan 2014) | 1 line - -simpleNbox now has its main variables in the biome map. Logic remains unchanged. Input is backwards-compatible, as it will assume 'global' unless instructed otherwise. ------------------------------------------------------------------------- -r390 | bpbond | 2014-01-22 22:15:53 -0500 (Wed, 22 Jan 2014) | 1 line - -simpleNbox now parses . in input files into maps for vegc, etc. Computational logic remains unchanged. ------------------------------------------------------------------------- -r389 | bpbond | 2014-01-22 13:48:55 -0500 (Wed, 22 Jan 2014) | 1 line - -Renamed simple6box variables, files, etc to simpleNbox in preparation for that change. Code logic same for now. ------------------------------------------------------------------------- -r388 | bpbond | 2014-01-22 13:30:14 -0500 (Wed, 22 Jan 2014) | 1 line - -Commented out many ocean debugging messages for cleaner runs. ------------------------------------------------------------------------- -r387 | bpbond | 2014-01-21 13:44:19 -0500 (Tue, 21 Jan 2014) | 1 line - -Tweaked oceanbox to fix a couple bugs. ------------------------------------------------------------------------- -r386 | bpbond | 2014-01-18 15:23:36 -0500 (Sat, 18 Jan 2014) | 1 line - -Shifted reduced-timestep logic from ocean::calcderivs to stashCvalues. Seems to work but needs further testing. ------------------------------------------------------------------------- -r385 | bpbond | 2014-01-18 14:44:43 -0500 (Sat, 18 Jan 2014) | 1 line - -General cleanup of csys and oceanbox: made more items private, added comments, added const to method variables, etc. ------------------------------------------------------------------------- -r384 | bpbond | 2014-01-18 06:44:45 -0500 (Sat, 18 Jan 2014) | 1 line - -CH is unreasonable and actually wants oceanbox flux outputs to be correct when timestep has been shortened. This commit fixes that issue. ------------------------------------------------------------------------- -r383 | bpbond | 2014-01-15 14:06:02 -0500 (Wed, 15 Jan 2014) | 1 line - -Notable improvement to ocean behavior, although it still can't make it all the way out to 2300. But pre-2100 instability greatly diminished. ------------------------------------------------------------------------- -r382 | bpbond | 2014-01-15 13:41:22 -0500 (Wed, 15 Jan 2014) | 1 line - -Oceanbox tweak that delays high-CO2 freakout. ------------------------------------------------------------------------- -r381 | bpbond | 2014-01-15 08:25:52 -0500 (Wed, 15 Jan 2014) | 1 line - -Many revisions to the adaptive-timestep code, which appears to work but doesn't help the RCP8.5 case. At the moment, actually the opposite. ------------------------------------------------------------------------- -r380 | chartin | 2014-01-07 14:59:09 -0500 (Tue, 07 Jan 2014) | 1 line - -deleted gsl lib and boost from repository. Adria needed them to get set up on a new computer and we were having issues downloading. ------------------------------------------------------------------------- -r379 | chartin | 2014-01-07 14:43:46 -0500 (Tue, 07 Jan 2014) | 1 line - -adding boost lib to repository ------------------------------------------------------------------------- -r378 | chartin | 2014-01-07 14:14:03 -0500 (Tue, 07 Jan 2014) | 2 lines - -GSL libraries added to repository for visual studio - ------------------------------------------------------------------------- -r377 | aschwarber | 2014-01-06 14:28:22 -0500 (Mon, 06 Jan 2014) | 1 line - -In o3_component.cpp a pre-industrial value of ozone was set to 25 DU. ------------------------------------------------------------------------- -r376 | chartin | 2014-01-06 13:59:28 -0500 (Mon, 06 Jan 2014) | 3 lines - -updated op.R with new normalization -minor updates to forcing and atmospheric components - ------------------------------------------------------------------------- -r375 | bpbond | 2013-12-20 10:44:57 -0500 (Fri, 20 Dec 2013) | 1 line - -If minor components such as ozone, bc, oc, etc are disabled via input, the model will now run OK; the respective outputs will not appear in the outputstream. ------------------------------------------------------------------------- -r374 | bpbond | 2013-12-19 10:36:35 -0500 (Thu, 19 Dec 2013) | 1 line - -Updated forcing component's dependencies. ------------------------------------------------------------------------- -r373 | bpbond | 2013-12-19 10:29:02 -0500 (Thu, 19 Dec 2013) | 1 line - -Tweaks so that new O3 component runs under Xcode 5. ------------------------------------------------------------------------- -r372 | chartin | 2013-12-17 16:45:40 -0500 (Tue, 17 Dec 2013) | 2 lines - -all components have been updated to include a pointer to the core for spinup purposes. - ------------------------------------------------------------------------- -r371 | aschwarber | 2013-12-17 15:27:41 -0500 (Tue, 17 Dec 2013) | 4 lines - -Added ozone component to Hector. Depends on CH4, NOX, NMVOC, CO. -Updated ini files. -Updated emissions files with ozone inputs. -Updated the mappings to include ozone. ------------------------------------------------------------------------- -r370 | bpbond | 2013-12-16 19:20:32 -0500 (Mon, 16 Dec 2013) | 1 line - -Scripts now more careful about handling NAs in data frames. ------------------------------------------------------------------------- -r369 | bpbond | 2013-12-16 12:38:15 -0500 (Mon, 16 Dec 2013) | 2 lines - -Added code to identify only complete (historical AND scenario) CMIP5 outputs. - ------------------------------------------------------------------------- -r368 | chartin | 2013-12-13 14:35:45 -0500 (Fri, 13 Dec 2013) | 2 lines - -updated comparison data -updated op_parser.R with skipping file if vtag is removed ------------------------------------------------------------------------- -r367 | bpbond | 2013-12-13 09:35:07 -0500 (Fri, 13 Dec 2013) | 1 line - -Backend optimizations, better error checking, etc. ------------------------------------------------------------------------- -r366 | bpbond | 2013-12-13 09:22:57 -0500 (Fri, 13 Dec 2013) | 2 lines - -Bugbase update-issues noted by Adria re INI file parsing. - ------------------------------------------------------------------------- -r365 | bpbond | 2013-12-12 12:56:51 -0500 (Thu, 12 Dec 2013) | 2 lines - -Tweaks and tucks to op_parser. - ------------------------------------------------------------------------- -r364 | bpbond | 2013-12-12 11:25:46 -0500 (Thu, 12 Dec 2013) | 1 line - -Tweaks to previous commit: error checking, streamlining of functions. ------------------------------------------------------------------------- -r363 | bpbond | 2013-12-12 10:59:03 -0500 (Thu, 12 Dec 2013) | 1 line - -Backend changes so that SCENARIO now required field in comparison data, and you can easily re-read a single comparison data file by itself. ------------------------------------------------------------------------- -r362 | aschwarber | 2013-12-12 10:03:55 -0500 (Thu, 12 Dec 2013) | 1 line - -This is a test commit for OzoneComponent using the RCP3PD.ini file. ------------------------------------------------------------------------- -r361 | bpbond | 2013-12-11 12:22:33 -0500 (Wed, 11 Dec 2013) | 2 lines - -Bugbase update re behavior of esg_data.R - ------------------------------------------------------------------------- -r360 | chartin | 2013-12-11 12:20:32 -0500 (Wed, 11 Dec 2013) | 2 lines - -fixed bug in esg_data.R -sign(0) returns 0 ------------------------------------------------------------------------- -r359 | chartin | 2013-12-04 12:06:32 -0500 (Wed, 04 Dec 2013) | 4 lines - -esg_data.R and esg_land_data.R have been combined into one script. User now sets the area directory and the corresponding area for land or ocean. -Deleted esg_land_data.R -Included in esg_data.R is the capability to process the data into latitude and longitude bands. -updated lookup table ------------------------------------------------------------------------- -r358 | chartin | 2013-11-19 09:46:59 -0500 (Tue, 19 Nov 2013) | 3 lines - -updated hector.vcxproj with new VS GSL library -added esg_land_data.R and accompanying land areas for K.C. -fixed minor issues in esg_data.R ------------------------------------------------------------------------- -r357 | chartin | 2013-11-18 14:09:28 -0500 (Mon, 18 Nov 2013) | 3 lines - -updated all atmosphere components with 1 year time step Assertions. -deleted old comparison files -updated CMIP5_lookuptable.csv, and mappings/component_map.csv and mappings/variable_map.csv ------------------------------------------------------------------------- -r356 | pralitp | 2013-11-14 03:56:34 -0500 (Thu, 14 Nov 2013) | 1 line - -Change setData to use message_data in preparation for triggering it through message passing. Note this implies all unitvals now have the ability to parse units from input (for error checking that users and the code are expecting the same units). A couple of examples of including these have been provided in hector_RCP45.ini and lawdome_co2.csv; no other input data has yet to include units information. ------------------------------------------------------------------------- -r355 | bpbond | 2013-11-13 21:39:07 -0500 (Wed, 13 Nov 2013) | 1 line - -Example of a 1-yr timestep assertion. ------------------------------------------------------------------------- -r354 | bpbond | 2013-11-13 18:13:35 -0500 (Wed, 13 Nov 2013) | 1 line - -Added code to solver and ocean so that the latter can signal when it needs a reduced timestep. This currently causes bad behavior and is disabled. Also slowdown code re-enabled in ocean_component. ------------------------------------------------------------------------- -r353 | bpbond | 2013-11-13 15:17:15 -0500 (Wed, 13 Nov 2013) | 1 line - -The backend scripts will now read ancillary (comparison) data only once per session. ------------------------------------------------------------------------- -r352 | bpbond | 2013-11-07 21:12:58 -0500 (Thu, 07 Nov 2013) | 1 line - -Shifted solver to new (v1.15+) GSL ODE library. ------------------------------------------------------------------------- -r351 | bpbond | 2013-11-07 14:00:28 -0500 (Thu, 07 Nov 2013) | 1 line - -More ocean prep for adaptive timestep. ------------------------------------------------------------------------- -r350 | bpbond | 2013-11-07 13:14:37 -0500 (Thu, 07 Nov 2013) | 1 line - -Added code to ocean calcderivs, in anticipation of adaptive timestep. ------------------------------------------------------------------------- -r349 | bpbond | 2013-11-07 07:41:05 -0500 (Thu, 07 Nov 2013) | 1 line - -Updates to bugbase and to-do lists. ------------------------------------------------------------------------- -r348 | bpbond | 2013-11-07 06:10:31 -0500 (Thu, 07 Nov 2013) | 2 lines - -Changed esg_hectorize so it computed median by default. Mean is also computed so you can use it if you want. - ------------------------------------------------------------------------- -r347 | bpbond | 2013-11-05 13:47:42 -0500 (Tue, 05 Nov 2013) | 1 line - -Fixed SO2 component so it doesn't crash if volcanic forcing not supplied. ------------------------------------------------------------------------- -r346 | bpbond | 2013-11-04 15:10:15 -0500 (Mon, 04 Nov 2013) | 1 line - -Fixed atmospheric constraint code to work with new simple6box & ocean logic. ------------------------------------------------------------------------- -r345 | bpbond | 2013-11-04 13:33:09 -0500 (Mon, 04 Nov 2013) | 1 line - -Minor tweaks and bugbase update. ------------------------------------------------------------------------- -r344 | bpbond | 2013-11-04 12:54:22 -0500 (Mon, 04 Nov 2013) | 1 line - -Oceanbox now makes more use of unitval class. ------------------------------------------------------------------------- -r343 | bpbond | 2013-11-04 11:44:50 -0500 (Mon, 04 Nov 2013) | 1 line - -Rewrite of ocean_component, carbon_cycle_solver, oceanbox, and ocean_csys to integrate the ocean into the variable-timestep solver. A number of things (e.g. ocean slowdown) remain commented out. ------------------------------------------------------------------------- -r342 | bpbond | 2013-10-30 11:55:34 -0400 (Wed, 30 Oct 2013) | 1 line - -NON-WORKING COMMIT. Simple6box has been rewritten to fully accomodate variable timesteps from the solver (many changes there too), but currently the ocean always runs at 1 yr. So we fail mass-balance check after exiting spinup. ------------------------------------------------------------------------- -r341 | bpbond | 2013-10-29 21:37:39 -0400 (Tue, 29 Oct 2013) | 1 line - -Fixed ocean-atmosphere constraint code so it works properly ------------------------------------------------------------------------- -r340 | chartin | 2013-10-29 15:40:23 -0400 (Tue, 29 Oct 2013) | 5 lines - -cleaned up repository - deleted old MAGICC files that are not needed for plotting. -updated lookuptable, and mapping tables with new variables and components -updated project files for visual studio with simple6box -updated ocean_component.cpp and oceanbox.cpp with default circulation/temp values. - ------------------------------------------------------------------------- -r339 | bpbond | 2013-10-29 14:05:24 -0400 (Tue, 29 Oct 2013) | 1 line - -Two-sided ocean slowdown (different rates on either side of temperature optimum). ------------------------------------------------------------------------- -r338 | bpbond | 2013-10-29 12:48:09 -0400 (Tue, 29 Oct 2013) | 1 line - -Tweak to protect atm-ocean constraint code in the case when constraint is 0. ------------------------------------------------------------------------- -r337 | bpbond | 2013-10-29 12:32:27 -0400 (Tue, 29 Oct 2013) | 1 line - -Changed from a logistic to linear ocean slowdown. ------------------------------------------------------------------------- -r336 | bpbond | 2013-10-28 11:35:11 -0400 (Mon, 28 Oct 2013) | 1 line - -Added ability to disable output on a per-component basis. ------------------------------------------------------------------------- -r335 | chartin | 2013-10-25 11:24:05 -0400 (Fri, 25 Oct 2013) | 1 line - -a few minor changes to esg_data.R ------------------------------------------------------------------------- -r334 | bpbond | 2013-10-25 10:31:01 -0400 (Fri, 25 Oct 2013) | 2 lines - -esg_data.R now writes a skip (error) file. Need to test this on C's machine. - ------------------------------------------------------------------------- -r333 | chartin | 2013-10-25 09:55:23 -0400 (Fri, 25 Oct 2013) | 1 line - - ------------------------------------------------------------------------- -r332 | bpbond | 2013-10-25 09:16:37 -0400 (Fri, 25 Oct 2013) | 1 line - -Changes to the output visitors, both behavior and output, as core now controls spinup. ------------------------------------------------------------------------- -r331 | bpbond | 2013-10-24 21:28:58 -0400 (Thu, 24 Oct 2013) | 1 line - -Formatting changes, and a few additions for component consistency. ------------------------------------------------------------------------- -r330 | bpbond | 2013-10-24 13:26:24 -0400 (Thu, 24 Oct 2013) | 1 line - -Replaced flt_t with double throughout code. ------------------------------------------------------------------------- -r329 | bpbond | 2013-10-24 13:16:11 -0400 (Thu, 24 Oct 2013) | 1 line - -Renamed simple5box to simple6box, and many other minor cosmetic/minor changes. ------------------------------------------------------------------------- -r328 | bpbond | 2013-10-24 10:44:35 -0400 (Thu, 24 Oct 2013) | 1 line - -Added ozone component (doesn't do anything yet). ------------------------------------------------------------------------- -r327 | bpbond | 2013-10-24 09:58:54 -0400 (Thu, 24 Oct 2013) | 1 line - -New spinup code and logic. Spinup is now controlled by the core, and components (optionally) havea run_spinup method; currently only the carbon cycle does this. ------------------------------------------------------------------------- -r326 | bpbond | 2013-10-23 10:23:21 -0400 (Wed, 23 Oct 2013) | 1 line - -Laying the groundwork for a rewrite of the spinup code: iModelComponent run() method now includes an in_spinup parameter. Simplified simple5box and oceanbox accordingly. ------------------------------------------------------------------------- -r325 | bpbond | 2013-10-23 09:57:41 -0400 (Wed, 23 Oct 2013) | 1 line - -Added the ability to constrain atmosphere-ocean C flux. This builds but needs to be tested carefully. ------------------------------------------------------------------------- -r324 | bpbond | 2013-10-23 09:10:23 -0400 (Wed, 23 Oct 2013) | 1 line - -Added ocean slowdown to outputstream, and circ_Topt and circ_T50 parameters to ocean inputs. ------------------------------------------------------------------------- -r323 | chartin | 2013-10-22 16:25:12 -0400 (Tue, 22 Oct 2013) | 5 lines - -added in a slowdown function into ocean_component.cpp. A logistic shape slowdown from a baseline circulation based on temperature. Ocean carbon transport between boxes as well as ocean heat fluxes now can be 'slowed down'. - -updated CMIP5_lookuptable.csv with new CMIP5 variables - -cleaned up/deleted a few nc files ------------------------------------------------------------------------- -r322 | chartin | 2013-10-22 11:54:50 -0400 (Tue, 22 Oct 2013) | 1 line - -updated esg_data.R. There are 2 ways lat/lon can be returned from each model, vector or a matrix. Code has been updated to account for this. ------------------------------------------------------------------------- -r321 | bpbond | 2013-10-22 11:23:39 -0400 (Tue, 22 Oct 2013) | 2 lines - -esg_data.R was assigning incorrect latitude and longitude values to data. I believe this commit fixes this issue, but need to test it on Corinne's machine with ESG data. - ------------------------------------------------------------------------- -r319 | bpbond | 2013-10-16 21:57:43 -0400 (Wed, 16 Oct 2013) | 1 line - -Added the ability to constrain the model's temperature to user-supplied values; this works identically to the existing CO2 and Ftot constraints. See line 100 in hector_RCP45.ini ------------------------------------------------------------------------- -r318 | bpbond | 2013-10-16 13:29:44 -0400 (Wed, 16 Oct 2013) | 2 lines - -Added a moving average routine to op_grapher. - ------------------------------------------------------------------------- -r317 | chartin | 2013-10-15 09:31:10 -0400 (Tue, 15 Oct 2013) | 2 lines - -updated R scripts, lookup table, and comparison data -added new variable to output in Hector output stream ------------------------------------------------------------------------- -r314 | chartin | 2013-09-26 13:41:48 -0400 (Thu, 26 Sep 2013) | 4 lines - -minor updates to multiple components - doxygen, variables, added more output variables. -updated rcp ini files and tested to make sure builds and runs -new vtags in mappings/variable_map.csv -in ocean component - begin to add in direct correlation between ocean heat uptake and ocean surface temperature, through specific heat capacity of sea-water. Still needs to be worked on. ------------------------------------------------------------------------- -r313 | chartin | 2013-09-23 15:47:23 -0400 (Mon, 23 Sep 2013) | 1 line - -updated variable map ------------------------------------------------------------------------- -r312 | bpbond | 2013-09-21 07:27:27 -0400 (Sat, 21 Sep 2013) | 2 lines - -Minor formatting and structural tweaks. - ------------------------------------------------------------------------- -r311 | chartin | 2013-09-20 16:09:41 -0400 (Fri, 20 Sep 2013) | 2 lines - -updated esg_data.R and esg_hectorize.R -now esg_hectorize.R calculates the CMIP5 model mean, stdev and min/max ------------------------------------------------------------------------- -r310 | bpbond | 2013-09-20 09:17:05 -0400 (Fri, 20 Sep 2013) | 1 line - -Tweaks to both scripts. esg_hectorize now summarizes data into global and latitudinal boxes. ------------------------------------------------------------------------- -r309 | bpbond | 2013-09-20 07:10:08 -0400 (Fri, 20 Sep 2013) | 2 lines - -Changed esg_data to allow it to produce global averages too. - ------------------------------------------------------------------------- -r308 | bpbond | 2013-09-20 06:48:45 -0400 (Fri, 20 Sep 2013) | 1 line - -Minor tweaks to ESG scripts; most importantly, esg_hectorize now checks for a mathematical operator at beginning on unit conversion field. ------------------------------------------------------------------------- -r307 | bpbond | 2013-09-20 06:33:53 -0400 (Fri, 20 Sep 2013) | 2 lines - -Changed esg_data script to output latitude bands (by default 5 degrees, but this can be changed). This makes for a cleaner separation of general- versus Hector-specific functions. - ------------------------------------------------------------------------- -r306 | bpbond | 2013-09-19 15:00:33 -0400 (Thu, 19 Sep 2013) | 1 line - -Added second-state ESG script for unit conversion, ctag and vtag, etc., so that Hector backend can process. ------------------------------------------------------------------------- -r305 | chartin | 2013-09-18 15:54:38 -0400 (Wed, 18 Sep 2013) | 3 lines - -added observational data of DIC and PH from Bermuda Time Series and Hawaii Time Series -updated esg_data.R, to account for potential years without 12 months - ------------------------------------------------------------------------- -r304 | chartin | 2013-09-17 14:46:17 -0400 (Tue, 17 Sep 2013) | 1 line - -updated esg_data.R to add in units and scenario ------------------------------------------------------------------------- -r303 | chartin | 2013-09-17 10:11:08 -0400 (Tue, 17 Sep 2013) | 1 line - -added a document Hector_experiments.txt. Ideas/experiments for future Hector work, data processing, model diagnostics, science questions, and ideas for Adria ------------------------------------------------------------------------- -r302 | chartin | 2013-09-16 11:04:09 -0400 (Mon, 16 Sep 2013) | 1 line - -updated R script for ESG data. Note that the directory and area locations are specific to CH's hard-drive. ------------------------------------------------------------------------- -r301 | bpbond | 2013-09-09 14:10:05 -0400 (Mon, 09 Sep 2013) | 1 line - -Bugbase update. ------------------------------------------------------------------------- -r300 | chartin | 2013-09-09 10:55:29 -0400 (Mon, 09 Sep 2013) | 6 lines - -updated doxygen for: -forcing_component -ocean_component -ocean_csys -oceanbox - ------------------------------------------------------------------------- -r299 | bpbond | 2013-08-28 11:56:13 -0400 (Wed, 28 Aug 2013) | 2 lines - -Code to-do list update. - ------------------------------------------------------------------------- -r298 | chartin | 2013-08-28 11:53:09 -0400 (Wed, 28 Aug 2013) | 1 line - -updated timeline.txt ------------------------------------------------------------------------- -r297 | bpbond | 2013-08-21 14:10:26 -0400 (Wed, 21 Aug 2013) | 1 line - -Fixes to ESG data script dealing with level processing. ------------------------------------------------------------------------- -r296 | chartin | 2013-08-21 10:44:41 -0400 (Wed, 21 Aug 2013) | 3 lines - -commit for debug: -need level information -also, now the area file is not being read in. it is opening the same variable file again. ------------------------------------------------------------------------- -r295 | bpbond | 2013-08-20 18:34:11 -0400 (Tue, 20 Aug 2013) | 2 lines - -Whoops, fix for the fix. - ------------------------------------------------------------------------- -r294 | bpbond | 2013-08-20 18:32:42 -0400 (Tue, 20 Aug 2013) | 2 lines - -Bug fixes to the ESG data-processing script. - ------------------------------------------------------------------------- -r293 | bpbond | 2013-08-15 15:52:43 -0400 (Thu, 15 Aug 2013) | 2 lines - -Added logic to skip files when cell area data can't be found. - ------------------------------------------------------------------------- -r292 | bpbond | 2013-08-15 13:02:29 -0400 (Thu, 15 Aug 2013) | 2 lines - -Minor tweaks and clarifications to ESG-reading R script. - ------------------------------------------------------------------------- -r291 | bpbond | 2013-08-14 14:42:50 -0400 (Wed, 14 Aug 2013) | 1 line - -Added R program to read and process Earth System Grid data. ------------------------------------------------------------------------- -r290 | chartin | 2013-08-14 10:32:55 -0400 (Wed, 14 Aug 2013) | 1 line - -added nc file for testing ------------------------------------------------------------------------- -r289 | chartin | 2013-07-26 10:26:04 -0400 (Fri, 26 Jul 2013) | 1 line - - ------------------------------------------------------------------------- -r288 | bpbond | 2013-07-22 16:38:03 -0400 (Mon, 22 Jul 2013) | 1 line - -Code cleanup (formatting only) in csys ------------------------------------------------------------------------- -r287 | bpbond | 2013-07-22 16:21:44 -0400 (Mon, 22 Jul 2013) | 1 line - -Changed mechanism by which the output file type for graphs is specified in the backend. ------------------------------------------------------------------------- -r286 | bpbond | 2013-07-22 16:15:00 -0400 (Mon, 22 Jul 2013) | 1 line - -Renamed many model data constants, for consistency and concision; other minor tweaks. ------------------------------------------------------------------------- -r285 | chartin | 2013-07-22 15:08:29 -0400 (Mon, 22 Jul 2013) | 5 lines - -beta tunned to adjust atmospheric CO2 in ini file - -allow user to specify file extension, i.e., png, jpeg, pdf - -small updates to ocean component ------------------------------------------------------------------------- -r284 | bpbond | 2013-07-22 14:58:22 -0400 (Mon, 22 Jul 2013) | 2 lines - -Fix to the fix for the ocean CMIP script. - ------------------------------------------------------------------------- -r283 | bpbond | 2013-07-22 14:39:30 -0400 (Mon, 22 Jul 2013) | 2 lines - -Tweaks to script calculating CESM ocean fluxes. - ------------------------------------------------------------------------- -r282 | bpbond | 2013-07-22 11:35:06 -0400 (Mon, 22 Jul 2013) | 1 line - -Warning messages added for CO2 constraint as well. ------------------------------------------------------------------------- -r281 | bpbond | 2013-07-22 11:29:33 -0400 (Mon, 22 Jul 2013) | 1 line - -Changed previous CH code so that that model can be constrained to a total radiative forcing (e.g. from MAGICC). In this case it will print warnings to both the forcing and global logfiles. See example line, currently commented out, in INI file. ------------------------------------------------------------------------- -r280 | bpbond | 2013-07-22 10:55:19 -0400 (Mon, 22 Jul 2013) | 1 line - -Added atmosphere-land C flux, equivalent to atmosphere-ocean, to model outputs, and fixed a logic problem in ocean code. ------------------------------------------------------------------------- -r279 | chartin | 2013-07-22 10:39:31 -0400 (Mon, 22 Jul 2013) | 7 lines - -updated all RCP ini files -allow for total forcing from MAGICC to be read in from file -added in ocean heat flux - -netcdf files for air-sea flux -R script to access these files - ------------------------------------------------------------------------- -r278 | bpbond | 2013-07-19 23:47:25 -0400 (Fri, 19 Jul 2013) | 1 line - -Remove all STRINGIFYs from getData and setData routines in main code, and a few other tweaks. ------------------------------------------------------------------------- -r277 | bpbond | 2013-07-16 23:00:09 -0400 (Tue, 16 Jul 2013) | 1 line - -Changed 4.5 INI file to include H0 units, taking advantage of Pralit's recent commit. ------------------------------------------------------------------------- -r276 | bpbond | 2013-07-16 22:46:49 -0400 (Tue, 16 Jul 2013) | 1 line - -Changed carbon_cycle_solver to use sendMessage() for getData. Also the core no longer has a getData method, so all model data requests are now routed through sendMessage. ------------------------------------------------------------------------- -r275 | bpbond | 2013-07-16 22:36:39 -0400 (Tue, 16 Jul 2013) | 1 line - -Changed simple5box component to use sendMessage() for getData. ------------------------------------------------------------------------- -r274 | bpbond | 2013-07-16 22:15:51 -0400 (Tue, 16 Jul 2013) | 1 line - -Changed halocarbon component to use sendMessage() for getData. ------------------------------------------------------------------------- -r273 | pralitp | 2013-07-16 14:52:10 -0400 (Tue, 16 Jul 2013) | 1 line - -Allow parsing of units with input data: part 1. This includes code to parse the units both directly from the ini as well as from a CSV. However none of the model components have been updated to use this (with the exception of H0 in halo_carbon_component as an example). ------------------------------------------------------------------------- -r272 | pralitp | 2013-07-16 12:02:40 -0400 (Tue, 16 Jul 2013) | 1 line - -Fix message data to use the Core::undefinedIndex as the default date. Had to reorganize Core::sendMessage to avoid circular includes. ------------------------------------------------------------------------- -r271 | bpbond | 2013-07-16 10:47:26 -0400 (Tue, 16 Jul 2013) | 1 line - -Changed forcing and dummy components to use sendMessage(). ------------------------------------------------------------------------- -r270 | bpbond | 2013-07-16 10:29:00 -0400 (Tue, 16 Jul 2013) | 1 line - -Changed CH4 and N2O components to use sendMessage(). ------------------------------------------------------------------------- -r269 | bpbond | 2013-07-16 10:20:21 -0400 (Tue, 16 Jul 2013) | 1 line - -Changed BC and OC components, and corresponding code in outputstreamvisitor, to use sendMessage(). ------------------------------------------------------------------------- -r268 | bpbond | 2013-07-16 08:44:01 -0400 (Tue, 16 Jul 2013) | 1 line - -Changed ocean component to use sendMessage(); streamlined some code; made ocean boxes private; added #defines for all ocean output variables. ------------------------------------------------------------------------- -r267 | bpbond | 2013-07-15 21:54:20 -0400 (Mon, 15 Jul 2013) | 1 line - -Changed SLR component to use sendMessage(), and added date checks in SO2 and Temperature components. ------------------------------------------------------------------------- -r266 | bpbond | 2013-07-15 18:53:56 -0400 (Mon, 15 Jul 2013) | 1 line - -Changed SO2 component to use new sendMessage() interface, along with SO2-related code in forcings. Added a double-only initialization for message_data. All this done at 35,000 ft ------------------------------------------------------------------------- -r265 | bpbond | 2013-07-15 07:36:20 -0400 (Mon, 15 Jul 2013) | 1 line - -Added default parameter to sendMessage() declarations throughout code. ------------------------------------------------------------------------- -r264 | bpbond | 2013-07-13 07:44:10 -0400 (Sat, 13 Jul 2013) | 1 line - -Added another constructor to unitval, along with many other tweaks, so that can now say unitval(x,u) to initialize something. Changed examples of this throughout the code. ------------------------------------------------------------------------- -r263 | bpbond | 2013-07-12 22:33:17 -0400 (Fri, 12 Jul 2013) | 1 line - -First part of reworking component communication. iModelComponent has a new sendMessage method, as does the core. All the model components have empty sendMessages currently, except for (as a demo), the temperature component, which now handles M_GETDATA. getData() in this component has been made private, and getData() requests elsewhere in the code for temperature data have been changed to use sendMessage(). ------------------------------------------------------------------------- -r262 | pralitp | 2013-07-12 16:54:23 -0400 (Fri, 12 Jul 2013) | 1 line - -Clean up unitval operators to allow x*y or y*x. ------------------------------------------------------------------------- -r261 | pralitp | 2013-07-12 15:58:20 -0400 (Fri, 12 Jul 2013) | 1 line - -Add a simple struct that holds data to be passed around in hector messages (generalizing getData, setData, etc). Also some includes for math.h to compile on older version of XCode/GCC. ------------------------------------------------------------------------- -r260 | bpbond | 2013-07-12 13:22:29 -0400 (Fri, 12 Jul 2013) | 1 line - -Fixed csvOutput. Its output is currently minimal (run name, year, CO2, forcing) but easy to add more. ------------------------------------------------------------------------- -r259 | bpbond | 2013-07-12 13:03:48 -0400 (Fri, 12 Jul 2013) | 1 line - -Removed all capabilities (CAP_xxx) from model. ------------------------------------------------------------------------- -r258 | bpbond | 2013-07-12 12:25:30 -0400 (Fri, 12 Jul 2013) | 2 lines - -Updated the code to-do list based on our discussion today. - ------------------------------------------------------------------------- -r257 | chartin | 2013-07-12 11:57:26 -0400 (Fri, 12 Jul 2013) | 4 lines - -added in simple ocean heat uptake with a constant k (ocean heat uptake efficiency) -deltaF = k * deltaT -heat flux is subtracted from the total radiative forcing, to calculate global atmospheric temperatures. -heat flux was added to outputstream ------------------------------------------------------------------------- -r256 | bpbond | 2013-07-10 14:41:35 -0400 (Wed, 10 Jul 2013) | 1 line - -Added code to-do list, as discussed this morning. ------------------------------------------------------------------------- -r255 | bpbond | 2013-07-09 14:56:37 -0400 (Tue, 09 Jul 2013) | 1 line - -Added backend option to clean directory; Xcode project file changes; timeline update. ------------------------------------------------------------------------- -r254 | bpbond | 2013-07-09 13:25:16 -0400 (Tue, 09 Jul 2013) | 1 line - -My bad! File-deletion bug fixed. ------------------------------------------------------------------------- -r253 | bpbond | 2013-07-09 09:43:18 -0400 (Tue, 09 Jul 2013) | 1 line - -Backend will now name output directories consistently for multiple-run analyses, and attempts to remove all old files in the output directory, if any exist; this latter behavior is controlled by a new flag REMOVEOLDFILES. ------------------------------------------------------------------------- -r252 | bpbond | 2013-07-08 17:08:58 -0400 (Mon, 08 Jul 2013) | 1 line - -Renamed confusing variable 'albedo' to 'Ftalbedo'. ------------------------------------------------------------------------- -r251 | bpbond | 2013-07-08 16:51:33 -0400 (Mon, 08 Jul 2013) | 1 line - -Added an optional terrestrial albedo time series (model assumes constant if nothing specified). ------------------------------------------------------------------------- -r250 | chartin | 2013-07-08 16:36:47 -0400 (Mon, 08 Jul 2013) | 1 line - -units problem fixed ------------------------------------------------------------------------- -r249 | chartin | 2013-07-08 16:34:42 -0400 (Mon, 08 Jul 2013) | 1 line - -units update ------------------------------------------------------------------------- -r248 | chartin | 2013-07-08 16:18:01 -0400 (Mon, 08 Jul 2013) | 4 lines - -reverted CH4 and N2O back to using concentrations to calculated radiative forcing. TODO: use emissions - -fixed sign issue in MAGICC6/RCP6_MAGICC_RF.csv - ------------------------------------------------------------------------- -r247 | chartin | 2013-07-02 11:37:11 -0400 (Tue, 02 Jul 2013) | 1 line - -updated timeline ------------------------------------------------------------------------- -r246 | chartin | 2013-07-02 11:23:48 -0400 (Tue, 02 Jul 2013) | 3 lines - -added historical volcanic radiative forcing csv file -added new time series of radiative forcing from volcanoes to the sulfur component -added this forcing to the forcing component. ------------------------------------------------------------------------- -r245 | chartin | 2013-07-01 11:07:18 -0400 (Mon, 01 Jul 2013) | 3 lines - -unitval issue when adding/subtracting -updated timeline.txt -CH4 and N2O allow for emissions to convert to concentrations ------------------------------------------------------------------------- -r244 | bpbond | 2013-06-27 15:01:31 -0400 (Thu, 27 Jun 2013) | 2 lines - -Timeline update. - ------------------------------------------------------------------------- -r243 | bpbond | 2013-06-27 14:51:49 -0400 (Thu, 27 Jun 2013) | 1 line - -Fixes for some subtle backend bugs (see previous commit) ------------------------------------------------------------------------- -r242 | chartin | 2013-06-27 14:13:33 -0400 (Thu, 27 Jun 2013) | 1 line - -problem in op.R - assigning ctags to files without ctag information ------------------------------------------------------------------------- -r241 | bpbond | 2013-06-27 11:37:00 -0400 (Thu, 27 Jun 2013) | 1 line - -Simplified halocarbon code, so that it now takes only emissions (and an optional preindustrial concentration) to run. ------------------------------------------------------------------------- -r240 | chartin | 2013-06-27 09:41:28 -0400 (Thu, 27 Jun 2013) | 1 line - -stratospheric water vapor from CH4 oxidation added to forcing component ------------------------------------------------------------------------- -r239 | bpbond | 2013-06-26 19:57:42 -0400 (Wed, 26 Jun 2013) | 1 line - -Further minor changes to backend, including changing older ancillary datasets to new ctag/vtag format. ------------------------------------------------------------------------- -r238 | bpbond | 2013-06-26 15:11:23 -0400 (Wed, 26 Jun 2013) | 1 line - -Minor changes throughout backend system, most focused on making both field- and tag-related code case-insensitive. ------------------------------------------------------------------------- -r237 | bpbond | 2013-06-26 12:09:16 -0400 (Wed, 26 Jun 2013) | 1 line - -Minor tweaks to previous commit. ------------------------------------------------------------------------- -r236 | bpbond | 2013-06-26 11:52:03 -0400 (Wed, 26 Jun 2013) | 1 line - -A number of changes to the R backend. First, you can now use 'calculated' variable tags, telling the system to sum up certain variables to produce a new tag. For an example of this, see the variable_map file. Second, IPCC forcings added to comparison data. Third, the parser now scans for all *.csv files, its original behavior. Fourth, many comparison data files renamed to *.csv1 until they're brought into new format. Finally, the backend generates an IPCC-style forcings summary. ------------------------------------------------------------------------- -r235 | bpbond | 2013-06-25 18:43:39 -0400 (Tue, 25 Jun 2013) | 2 lines - -Timeline update, specifically focusing on restart, code review, unit testing, and documentation. - ------------------------------------------------------------------------- -r234 | chartin | 2013-06-25 15:45:41 -0400 (Tue, 25 Jun 2013) | 1 line - -comparison data from MAGICC and updated ini files ------------------------------------------------------------------------- -r233 | bpbond | 2013-06-25 14:17:55 -0400 (Tue, 25 Jun 2013) | 1 line - -Added assertion in forcing to make sure that base year is >= model start year. ------------------------------------------------------------------------- -r232 | bpbond | 2013-06-25 14:12:54 -0400 (Tue, 25 Jun 2013) | 1 line - -Further significant changes to forcing and halocarbon components. The former now uses the core's getData interface for all queries, while the latter advertises its data capabilities and more gracefully handles requests. Finally, component_data.hpp has been created by splitting apart component_names.hpp. ------------------------------------------------------------------------- -r231 | bpbond | 2013-06-25 10:48:25 -0400 (Tue, 25 Jun 2013) | 1 line - -The forcing component now computes everything relative to a base year, which may or may not be the first year of the model run. This (i) ensures that everything is 0.0 in the base year, and (ii) gives the ocean-atmosphere time to smooth out if we're constraining the model to an atmospheric CO2 record. ------------------------------------------------------------------------- -r230 | chartin | 2013-06-25 09:38:26 -0400 (Tue, 25 Jun 2013) | 1 line - -updated op.R to plot multiple scenarios ------------------------------------------------------------------------- -r229 | chartin | 2013-06-25 09:30:54 -0400 (Tue, 25 Jun 2013) | 1 line - -updated version of Hector ------------------------------------------------------------------------- -r228 | bpbond | 2013-06-19 10:34:18 -0400 (Wed, 19 Jun 2013) | 1 line - -Minor changes to temperature component. ------------------------------------------------------------------------- -r227 | chartin | 2013-06-19 09:54:53 -0400 (Wed, 19 Jun 2013) | 1 line - -updated TAS ------------------------------------------------------------------------- -r226 | chartin | 2013-06-19 09:54:38 -0400 (Wed, 19 Jun 2013) | 1 line - -saving all plots to one file? ------------------------------------------------------------------------- -r225 | bpbond | 2013-06-19 08:08:30 -0400 (Wed, 19 Jun 2013) | 1 line - -Minor tweaks and improvements, including better error checking, to backend. ------------------------------------------------------------------------- -r224 | bpbond | 2013-06-18 16:54:37 -0400 (Tue, 18 Jun 2013) | 1 line - -The backend will now plot error regions including min, max stdev. ------------------------------------------------------------------------- -r223 | chartin | 2013-06-18 16:49:59 -0400 (Tue, 18 Jun 2013) | 1 line - -updated TAS with average and stdev ------------------------------------------------------------------------- -r222 | bpbond | 2013-06-18 16:11:11 -0400 (Tue, 18 Jun 2013) | 1 line - -Can now have an 'error' field in comparison (or model) data, which will display a ribbon (error region) in graphs. ------------------------------------------------------------------------- -r221 | bpbond | 2013-06-18 15:20:51 -0400 (Tue, 18 Jun 2013) | 1 line - -Improvements to op_grapher in how it labels figures and names files. ------------------------------------------------------------------------- -r220 | bpbond | 2013-06-18 15:03:53 -0400 (Tue, 18 Jun 2013) | 1 line - -Changed the atmospheric CO2 constraint code, so that surplus or excess carbon is now shuttled to the deep ocean using the getData interface. The model now tracks (+/- around 0.1 PgC) the atmospheric CO2 record. ------------------------------------------------------------------------- -r219 | bpbond | 2013-06-18 13:43:52 -0400 (Tue, 18 Jun 2013) | 1 line - -Changes to ocean_csys and unitval.hpp so that assertions don't fail under clang/llvm. ------------------------------------------------------------------------- -r218 | bpbond | 2013-06-18 13:16:07 -0400 (Tue, 18 Jun 2013) | 1 line - -Fixed problem in op_grapher; sorry Corinne ------------------------------------------------------------------------- -r217 | chartin | 2013-06-18 12:58:22 -0400 (Tue, 18 Jun 2013) | 1 line - -working copy of hector ------------------------------------------------------------------------- -r216 | bpbond | 2013-06-18 12:41:56 -0400 (Tue, 18 Jun 2013) | 1 line - -Timeline update. ------------------------------------------------------------------------- -r215 | bpbond | 2013-06-18 12:39:56 -0400 (Tue, 18 Jun 2013) | 1 line - -Changes to the backend parser and grapher: more robust, better error messages. ------------------------------------------------------------------------- -r214 | bpbond | 2013-06-13 22:41:44 -0400 (Thu, 13 Jun 2013) | 1 line - -Minor changes to op_grapher, parser, and readme. ------------------------------------------------------------------------- -r213 | bpbond | 2013-06-12 10:01:36 -0400 (Wed, 12 Jun 2013) | 2 lines - -Another brief documentation update, and another BBEdit test. - ------------------------------------------------------------------------- -r212 | bpbond | 2013-06-12 09:59:34 -0400 (Wed, 12 Jun 2013) | 2 lines - -Backend documentation update (and test commit using BBEdit). - ------------------------------------------------------------------------- -r211 | bpbond | 2013-06-11 14:15:12 -0400 (Tue, 11 Jun 2013) | 1 line - -You can now pass in a size parameter to op_graph, either a fixed number or a field name. ------------------------------------------------------------------------- -r210 | bpbond | 2013-06-11 11:29:17 -0400 (Tue, 11 Jun 2013) | 1 line - -If a run_name is supplied in the INI file, model will now write to outputstream_{run_name}.csv ------------------------------------------------------------------------- -r209 | bpbond | 2013-06-11 11:11:01 -0400 (Tue, 11 Jun 2013) | 1 line - -variable_map accidentally not included in last commit ------------------------------------------------------------------------- -r208 | bpbond | 2013-06-11 11:01:18 -0400 (Tue, 11 Jun 2013) | 1 line - -Extensive rewrite of the backend system. The old op.R has been split into three separate scripts; parser much more robust; tag system reworked; graphing function much more customizable. ------------------------------------------------------------------------- -r207 | chartin | 2013-06-11 10:24:46 -0400 (Tue, 11 Jun 2013) | 8 lines - -atmospheric component completed with added halocarbons. -Halocarbon component, may be simplified in the future since we have yearly values. - -added RCP 3, 4.5, 6 and 8.5 emissions and concentration files. -added 4 RCP hector.ini files (this input needs to be changed in the configuration properties) -added MAGICC6 inputs and outputs for each RCP case under comparison data - -low bias in hector atmospheric CO2 when compared against RCP cases. ------------------------------------------------------------------------- -r206 | chartin | 2013-06-03 14:49:33 -0400 (Mon, 03 Jun 2013) | 2 lines - -read me document on adding a variable to a component -updated the timeline ------------------------------------------------------------------------- -r205 | chartin | 2013-05-24 17:08:04 -0400 (Fri, 24 May 2013) | 1 line - -deleted old trial files of csys ------------------------------------------------------------------------- -r204 | chartin | 2013-05-24 17:01:57 -0400 (Fri, 24 May 2013) | 3 lines - -updated forcings and atmospheric components -defining variable names in component_names.hpp and then updating getData and setData within each atmo component. -added historical concentrations of SO2 ------------------------------------------------------------------------- -r203 | bpbond | 2013-05-24 12:19:28 -0400 (Fri, 24 May 2013) | 1 line - -Tweaked forcing component, specifically CH4 and N2O calculations, and made it use core->getData more. ------------------------------------------------------------------------- -r202 | chartin | 2013-05-24 11:39:47 -0400 (Fri, 24 May 2013) | 1 line - -SO2 component ------------------------------------------------------------------------- -r201 | chartin | 2013-05-24 11:32:32 -0400 (Fri, 24 May 2013) | 5 lines - -added new readme files under documentation -added in SO2 and CH4 and N2O -added emissions and data files -added in capability to average transports over a given time step to stabilize ocean carbon transports. (ocean component and ocean box) - ------------------------------------------------------------------------- -r200 | chartin | 2013-05-01 14:53:42 -0400 (Wed, 01 May 2013) | 2 lines - -added in more unitval variables in order to print to the output stream and then plot in R. -Updated R script --> capability to set x and y limits ------------------------------------------------------------------------- -r199 | bpbond | 2013-04-26 12:11:43 -0400 (Fri, 26 Apr 2013) | 1 line - -Added more ocean variables to output stream. ------------------------------------------------------------------------- -r198 | chartin | 2013-04-26 11:38:19 -0400 (Fri, 26 Apr 2013) | 1 line - -adding in capability to output of other variables ------------------------------------------------------------------------- -r197 | chartin | 2013-04-24 14:37:25 -0400 (Wed, 24 Apr 2013) | 1 line - -added in better assertions to csys and output of temperature. Now encountering problems in the fluxes around year 2036. Correction from earlier commit, not running out to 2100 w/o error. ------------------------------------------------------------------------- -r196 | chartin | 2013-04-24 11:21:15 -0400 (Wed, 24 Apr 2013) | 4 lines - -updated the Flux calculation in csys, using equations 7 & 8 from Takahashi et al 1992, Deep Sea Research. -1ppm = ~ 1uatm. Earlier versions of flux calculations did not make this assumption. -Added in ability to change the wind speed over each box. (ocean component variable U) For now, wind speed is constant over both surface boxes. -Runs out to 2100 with no assertions/errors. Fluxes and atmospheric PCO2 values are close to present day. Ocean chemistry is still turned off during spin up and turned on after boxes have equilibrated. ------------------------------------------------------------------------- -r195 | chartin | 2013-04-17 09:34:18 -0400 (Wed, 17 Apr 2013) | 1 line - -updated csys calculations (Kh) and added a sensitivity test of input parameters in csys. ------------------------------------------------------------------------- -r194 | chartin | 2013-04-15 15:22:34 -0400 (Mon, 15 Apr 2013) | 1 line - -corrected transports between boxes to include the atmosphere/ocean flux. ------------------------------------------------------------------------- -r193 | bpbond | 2013-04-08 10:43:42 -0400 (Mon, 08 Apr 2013) | 1 line - -Fixed an assertion problem comparing simple5box and ocean carbon, and increased precision of oceanbox chemistry equilibration. This results in surface flux convergence to (e.g.) +/-0.999xx pg C. ------------------------------------------------------------------------- -r192 | chartin | 2013-04-05 14:34:29 -0400 (Fri, 05 Apr 2013) | 1 line - - ------------------------------------------------------------------------- -r191 | bpbond | 2013-04-04 06:27:36 -0400 (Thu, 04 Apr 2013) | 1 line - -Further documentation updates throughout code. ------------------------------------------------------------------------- -r190 | bpbond | 2013-04-03 17:27:55 -0400 (Wed, 03 Apr 2013) | 1 line - -Documentation update for Simple5Box cpp and hpp files. ------------------------------------------------------------------------- -r189 | bpbond | 2013-04-03 14:26:44 -0400 (Wed, 03 Apr 2013) | 1 line - -A whole other commit, just because I misspelled 'implements'. No, I am not OCD, why do you ask? ------------------------------------------------------------------------- -r188 | bpbond | 2013-04-03 14:13:18 -0400 (Wed, 03 Apr 2013) | 1 line - -Starting to improve Doxygen documentation - examples in oceanbox.hpp and oceanbox.cpp ------------------------------------------------------------------------- -r187 | bpbond | 2013-04-03 11:04:44 -0400 (Wed, 03 Apr 2013) | 1 line - -Added capability to spin up without chemistry in the ocean surface boxes, and to equilibrate those boxes to a given flux using the gsl minimization algorithm. Alkalinity is set to produce a desired ocean-atmosphere flux; note this means that the ocean and atmosphere are disconnected from each other during spinup (we assume we 'know' preindustrial ocean C). ------------------------------------------------------------------------- -r186 | bpbond | 2013-03-19 14:11:38 -0400 (Tue, 19 Mar 2013) | 1 line - -More ocean experimentation... ------------------------------------------------------------------------- -r185 | chartin | 2013-03-19 10:25:16 -0400 (Tue, 19 Mar 2013) | 1 line - -updated bugbase ------------------------------------------------------------------------- -r184 | chartin | 2013-03-19 10:24:44 -0400 (Tue, 19 Mar 2013) | 1 line - -ocean component DIC updated. still not working properly ------------------------------------------------------------------------- -r183 | bpbond | 2013-03-07 14:42:39 -0500 (Thu, 07 Mar 2013) | 1 line - -Added a one-line ocean component, for testing purposes while the main ocean is being worked on. It can enabled or disabled via the ini file ------------------------------------------------------------------------- -r182 | bpbond | 2013-03-07 12:08:33 -0500 (Thu, 07 Mar 2013) | 1 line - -Tweaks to the previous commit to support VS ------------------------------------------------------------------------- -r181 | bpbond | 2013-03-06 22:14:24 -0500 (Wed, 06 Mar 2013) | 1 line - -Added the capability to disable a model component, by setting 'enable=0' in the ini file ------------------------------------------------------------------------- -r180 | bpbond | 2013-03-04 16:01:34 -0500 (Mon, 04 Mar 2013) | 1 line - -Fixed transport problem in the ocean boxes. ------------------------------------------------------------------------- -r179 | chartin | 2013-03-04 14:24:21 -0500 (Mon, 04 Mar 2013) | 1 line - -updates to ocean_component.cpp input values. Still not producing correct fluxes between surface and deep. ------------------------------------------------------------------------- -r178 | chartin | 2013-02-26 15:59:19 -0500 (Tue, 26 Feb 2013) | 1 line - -updated bugbase.csv #32 ------------------------------------------------------------------------- -r177 | chartin | 2013-02-25 16:21:18 -0500 (Mon, 25 Feb 2013) | 1 line - -updated documentation on oceanbox and oceancsys ------------------------------------------------------------------------- -r176 | bpbond | 2013-02-22 14:06:39 -0500 (Fri, 22 Feb 2013) | 1 line - -Updates to bugbase and timeline ------------------------------------------------------------------------- -r175 | bpbond | 2013-02-20 14:56:47 -0500 (Wed, 20 Feb 2013) | 1 line - -Minor tweaks to oceanbox ------------------------------------------------------------------------- -r174 | chartin | 2013-02-20 13:22:34 -0500 (Wed, 20 Feb 2013) | 1 line - -updated headers for ocean_csys.hpp and oceanbox.hpp to correspond with changes in the .cpp files ------------------------------------------------------------------------- -r173 | chartin | 2013-02-20 13:21:31 -0500 (Wed, 20 Feb 2013) | 12 lines - -added a cout statement in carbon-cycle-solver.cpp to show which carbon pool has the largest offset from equilibrium. - -set tgav temperature and name in temperature_component.cpp. this is used in the ocean_component.cpp to calculate temperature changes of the surface boxes. - -ocean_component.cpp changes --> -1. set each ocean box with a true/false to turn on or off the chemistry model. -2. included the actual transport values between boxes, volumes, areas and starting chemistry parameters. -3. rather than initbox to initialize the boxes, we swithced to setC that sets the carbon within oceanbox. -4. allow for ocean temperature to vary based on global surface temperature_component.cpp - - - ------------------------------------------------------------------------- -r172 | chartin | 2013-02-20 13:13:23 -0500 (Wed, 20 Feb 2013) | 3 lines - -since last update, new starting carbon parameters in the HL and LL boxes in ocean_csys.cpp and added an AddToDIC method which converts the fluxes between boxes into mol/kg to be added/subtracted to the DIC pool. - -oceanbox.cpp now determines whether to run the chemistry model or not. Also, added in temperature of boxes in order to calculate temperature/heat transport (not done yet). ------------------------------------------------------------------------- -r171 | chartin | 2013-02-20 13:05:45 -0500 (Wed, 20 Feb 2013) | 1 line - -Added the oceanbox_test to SVN. These are the simple test files for the oceanbox to test the connections between boxes which is then added to Hector ------------------------------------------------------------------------- -r170 | chartin | 2013-02-20 13:02:45 -0500 (Wed, 20 Feb 2013) | 1 line - -Added the ocean_csys_class to SVN. These are the simple test files for the surface chemistry which is then incorporated into hector ------------------------------------------------------------------------- -r169 | chartin | 2013-02-08 11:05:25 -0500 (Fri, 08 Feb 2013) | 1 line - -test commit2 in ocean_component.cpp ------------------------------------------------------------------------- -r168 | chartin | 2013-02-08 11:04:00 -0500 (Fri, 08 Feb 2013) | 1 line - -test commit message in ocean component.cpp ------------------------------------------------------------------------- -r167 | bpbond | 2013-02-08 11:00:34 -0500 (Fri, 08 Feb 2013) | 1 line - -Test commit. ------------------------------------------------------------------------- -r166 | bpbond | 2013-02-07 22:19:01 -0500 (Thu, 07 Feb 2013) | 1 line - -The backend script (renamed op.R) now maps both Hector output and comparison data to a single set of tags, using the files in the 'mappings' folder; this way when things change in the model, we don't have to do much extra work. Various other improvements made as well. ------------------------------------------------------------------------- -r165 | chartin | 2013-02-06 11:53:15 -0500 (Wed, 06 Feb 2013) | 1 line - -added 'multi' to map in core header file ------------------------------------------------------------------------- -r164 | bpbond | 2013-02-06 11:16:20 -0500 (Wed, 06 Feb 2013) | 1 line - -Fixed a spinup-to-main simulation bug that was causing a discontinuity in the carbon cycle; the model now smoothly transitions between these states. Improved debugging messages in the core and several components. ------------------------------------------------------------------------- -r163 | bpbond | 2013-02-05 11:17:03 -0500 (Tue, 05 Feb 2013) | 1 line - -Major change: components now register their dependencies on capabilities, not component names, with the core, not directly with the depFinder class. They also now do this step in init(), not prepareToRun(). Behind the scenes, the core maps capabilities to components. This means that prepareToRun() now happens in a guaranteed order, which is useful for e.g. carbon model spinup. ------------------------------------------------------------------------- -r162 | bpbond | 2013-02-05 10:01:40 -0500 (Tue, 05 Feb 2013) | 1 line - -A couple minor changes so that the new csys code builds on *nix. ------------------------------------------------------------------------- -r161 | chartin | 2013-02-05 09:45:31 -0500 (Tue, 05 Feb 2013) | 1 line - -added oceancsys to the oceanbox class. still fine tuning the input parameters to get a ~0 flux ------------------------------------------------------------------------- -r160 | bpbond | 2013-02-04 13:10:00 -0500 (Mon, 04 Feb 2013) | 1 line - -Timeline updated ------------------------------------------------------------------------- -r159 | chartin | 2013-02-01 16:29:12 -0500 (Fri, 01 Feb 2013) | 1 line - -updated csys test file ------------------------------------------------------------------------- -r158 | bpbond | 2013-02-01 10:19:57 -0500 (Fri, 01 Feb 2013) | 1 line - -Fixed a major problem found by CAH: the ocean was disconnected during spinup mode. ------------------------------------------------------------------------- -r157 | bpbond | 2013-02-01 05:40:10 -0500 (Fri, 01 Feb 2013) | 1 line - -Removed core pointer from prepareToRun() calls, and a variety of minor cleanup things related to last commit. ------------------------------------------------------------------------- -r156 | bpbond | 2013-01-31 16:20:13 -0500 (Thu, 31 Jan 2013) | 1 line - -The ocean (low latitude surface, high latitude surface, intermediate, deep) is now pumping carbon and connected to the global cycle. ------------------------------------------------------------------------- -r155 | chartin | 2013-01-31 14:34:18 -0500 (Thu, 31 Jan 2013) | 1 line - -oceanbox core ------------------------------------------------------------------------- -r154 | chartin | 2013-01-31 14:33:55 -0500 (Thu, 31 Jan 2013) | 1 line - -oceanbox header ------------------------------------------------------------------------- -r153 | chartin | 2013-01-31 14:29:07 -0500 (Thu, 31 Jan 2013) | 1 line - -this commit does not build. adding in ocean box model into component. ------------------------------------------------------------------------- -r152 | bpbond | 2013-01-23 09:50:15 -0500 (Wed, 23 Jan 2013) | 1 line - -Added a getData method to the core, which routes requests using getComponentByCapability. This means that (i) components register the data they provide, and then other components can request these data directly from the core. No storing of component pointers is necessary. ------------------------------------------------------------------------- -r151 | bpbond | 2013-01-14 15:29:41 -0500 (Mon, 14 Jan 2013) | 1 line - -Removed Boost Units from halocarbons component, and thus from entire project; the old h_units.hpp file can be found in the documentation folder. All component-finding is by capability now, and getComponentByName has been made private in the core. ------------------------------------------------------------------------- -r150 | bpbond | 2013-01-13 07:36:39 -0500 (Sun, 13 Jan 2013) | 1 line - -Minor cleanup, resolved a few TODOs, and expanded the bugbase. ------------------------------------------------------------------------- -r149 | bpbond | 2013-01-13 06:38:29 -0500 (Sun, 13 Jan 2013) | 1 line - -Model components now find and communicate by capability. A new method in the iModelComponent interface, getData(), has been defined for this purpose. A component will typically now registered its capabilities with the core during the init() phase; register its dependencies during the prepareToRun() phase; and request a datum based on capability (e.g. temperature) and name (e.g. tgav). The one exception to all this remains the halocarbon component. ------------------------------------------------------------------------- -r148 | bpbond | 2013-01-10 22:43:11 -0500 (Thu, 10 Jan 2013) | 1 line - -First steps towards defining model components by their capabilities (e.g. 'I am a carbon model') rather than name ('I am simple5box'). All model components now register their capabilities with core and find each other by those capabilities, although the class typing is still dependent on the specific components. ------------------------------------------------------------------------- -r147 | chartin | 2013-01-10 11:46:09 -0500 (Thu, 10 Jan 2013) | 1 line - - ------------------------------------------------------------------------- -r146 | chartin | 2013-01-10 10:38:31 -0500 (Thu, 10 Jan 2013) | 1 line - -so close! It can't find the lib in the linker. I copied the same input from the hector project. I have no idea why it isn't working on this project as well...Once that gets fixed, I think it will build successfully! ------------------------------------------------------------------------- -r145 | bpbond | 2013-01-09 22:40:01 -0500 (Wed, 09 Jan 2013) | 1 line - -Variety of improvements to the backend outputstream_plotter script, including reading multiple variables per line. ------------------------------------------------------------------------- -r144 | bpbond | 2013-01-09 17:31:25 -0500 (Wed, 09 Jan 2013) | 1 line - -Miscellaneous small changes in an attempt to get googletest 1.6 code working. (Which it's not, yet.) ------------------------------------------------------------------------- -r143 | chartin | 2013-01-09 12:18:11 -0500 (Wed, 09 Jan 2013) | 1 line - -copied back ------------------------------------------------------------------------- -r142 | chartin | 2013-01-09 12:17:18 -0500 (Wed, 09 Jan 2013) | 1 line - -test empty file ------------------------------------------------------------------------- -r141 | chartin | 2013-01-09 09:47:16 -0500 (Wed, 09 Jan 2013) | 1 line - -test ------------------------------------------------------------------------- -r140 | chartin | 2013-01-08 14:30:02 -0500 (Tue, 08 Jan 2013) | 1 line - - ------------------------------------------------------------------------- -r139 | bpbond | 2013-01-07 22:02:03 -0500 (Mon, 07 Jan 2013) | 1 line - -Upgraded backend outputstream_plotter.R to ggplot 0.9.3, and a few other small changes. ------------------------------------------------------------------------- -r138 | bpbond | 2013-01-07 20:57:55 -0500 (Mon, 07 Jan 2013) | 1 line - -Minor changes to last update (atmospheric CO2 constraint). ------------------------------------------------------------------------- -r137 | bpbond | 2013-01-07 20:17:07 -0500 (Mon, 07 Jan 2013) | 1 line - -Added the ability to constrain model [CO2] to an input record, i.e. force atmospheric CO2 to follow an ice core record (Law Dome data added to input folder). Currently any residual between model [CO2] and the constraining data is assigned to land-use change flux, but in the future we also will have the ability to spread it across all atmospheric fluxes. ------------------------------------------------------------------------- -r136 | chartin | 2013-01-07 16:42:57 -0500 (Mon, 07 Jan 2013) | 1 line - -Changes for compiling on visual studio. Google test still not working. H_ASSERT issues in the core.cpp. Along with numerous warning and odd logging messages. Help Ben. Updated ocean_csys.cpp. ------------------------------------------------------------------------- -r135 | bpbond | 2013-01-04 11:33:29 -0500 (Fri, 04 Jan 2013) | 1 line - -Finished removing Boost Units from carbon model. The only remaining code that uses it (aside from unit testing) is the halocarbon component; it's only half removed here, as this code is heavily templated and other issues (consult with PP). Timeline and bugbase both updated. ------------------------------------------------------------------------- -r134 | bpbond | 2013-01-03 14:52:50 -0500 (Thu, 03 Jan 2013) | 1 line - -Like r133, but now with 100% more files added. ------------------------------------------------------------------------- -r133 | bpbond | 2013-01-03 14:46:49 -0500 (Thu, 03 Jan 2013) | 1 line - -Added the (currently not compiling) ocean_csys chemistry model. ------------------------------------------------------------------------- -r132 | bpbond | 2013-01-03 12:34:54 -0500 (Thu, 03 Jan 2013) | 1 line - -Started a bugbase. ------------------------------------------------------------------------- -r131 | bpbond | 2013-01-03 12:06:33 -0500 (Thu, 03 Jan 2013) | 1 line - -Added a new ocean component in preparation for bigger and better things. Also carbon box model has been partially de-boostified. ------------------------------------------------------------------------- -r130 | bpbond | 2013-01-02 14:07:58 -0500 (Wed, 02 Jan 2013) | 1 line - -Unitval class now has overloaded operators for math and output; Boost units has been removed from SLR, BC, OC, Forcing and Temperature model components. ------------------------------------------------------------------------- -r129 | bpbond | 2012-12-31 16:53:13 -0500 (Mon, 31 Dec 2012) | 1 line - -Moved tseries.hpp into new headers/data folder, and created unitval.hpp (simple units facility) in preparation for removing Boost Units from the code. ------------------------------------------------------------------------- -r128 | bpbond | 2012-12-30 06:10:09 -0500 (Sun, 30 Dec 2012) | 1 line - -Upgraded Xcode project file to v4.5.2 (3.2-compatible). Now compiling on Mac OS X 10.8.2 with LLVM 4.1/clang instead of gcc--this required some minor modifications to the code. Also now using boost 1.5.2 and gsl 1.15. (Also local svn upgraded to 1.7.8.) ------------------------------------------------------------------------- -r127 | bpbond | 2012-11-27 07:56:16 -0500 (Tue, 27 Nov 2012) | 1 line - -SLR pubs ------------------------------------------------------------------------- -r125 | bpbond | 2012-11-15 13:10:08 -0500 (Thu, 15 Nov 2012) | 1 line - -Documentation (PDF) update. ------------------------------------------------------------------------- -r124 | bpbond | 2012-11-15 09:44:28 -0500 (Thu, 15 Nov 2012) | 1 line - -Timeline added (for Ben and Corinne) ------------------------------------------------------------------------- -r123 | chartin | 2012-11-14 16:27:07 -0500 (Wed, 14 Nov 2012) | 1 line - -test file ------------------------------------------------------------------------- -r122 | bpbond | 2012-11-14 10:34:55 -0500 (Wed, 14 Nov 2012) | 1 line - -Documentation update. ------------------------------------------------------------------------- -r121 | bpbond | 2012-10-18 12:28:16 -0400 (Thu, 18 Oct 2012) | 1 line - -Removed boost library from the repository. ------------------------------------------------------------------------- -r120 | bpbond | 2012-09-20 11:54:41 -0400 (Thu, 20 Sep 2012) | 1 line - -Documentation (addition and reorganization of PDFs) update. ------------------------------------------------------------------------- -r119 | bpbond | 2012-03-26 09:04:12 -0400 (Mon, 26 Mar 2012) | 1 line - -Documentation update (pdf folder). ------------------------------------------------------------------------- -r118 | bpbond | 2012-02-14 09:17:37 -0500 (Tue, 14 Feb 2012) | 1 line - -Moved logs to their own directory; this information (where logs are sent, and their extension) is now private to the logger. ------------------------------------------------------------------------- -r117 | bpbond | 2012-02-02 08:34:16 -0500 (Thu, 02 Feb 2012) | 1 line - -Added MAGICC output data set for sea level rise. ------------------------------------------------------------------------- -r116 | pralitp | 2012-02-01 15:42:33 -0500 (Wed, 01 Feb 2012) | 1 line - -Have the csv file reader be more careful with line endings where we may get a mix of unix and windows endings. Also a couple of memory leak fixes where delete was used instead of delete[]. ------------------------------------------------------------------------- -r115 | bpbond | 2012-02-01 15:12:19 -0500 (Wed, 01 Feb 2012) | 1 line - -...and we're back ------------------------------------------------------------------------- -r114 | pralitp | 2012-02-01 15:07:57 -0500 (Wed, 01 Feb 2012) | 1 line - -Remove lowercase outputstream_plotter.r to be added back later. ------------------------------------------------------------------------- -r113 | bpbond | 2012-02-01 14:49:07 -0500 (Wed, 01 Feb 2012) | 1 line - -Removing outputstream_plotter.[r|R] ------------------------------------------------------------------------- -r112 | bpbond | 2012-02-01 14:37:10 -0500 (Wed, 01 Feb 2012) | 1 line - -Added temperature derivative calculation to SLR; this component also now outputs values with and without ice melt. ------------------------------------------------------------------------- -r111 | bpbond | 2012-02-01 11:06:00 -0500 (Wed, 01 Feb 2012) | 1 line - -Added observational SLR data set. Note units don't currently match those outputted by Hector's slr component. ------------------------------------------------------------------------- -r110 | bpbond | 2012-02-01 11:00:56 -0500 (Wed, 01 Feb 2012) | 1 line - -Sea level rise component added. Somewhat bare-bones at the moment, but outputs good-looking rate of change numbers. ------------------------------------------------------------------------- -r109 | bpbond | 2012-01-30 14:30:37 -0500 (Mon, 30 Jan 2012) | 1 line - -Added a long-term CO2 record to observed data. ------------------------------------------------------------------------- -r108 | bpbond | 2012-01-30 14:29:25 -0500 (Mon, 30 Jan 2012) | 1 line - -Changed how observed data, for comparison with model output, are handled. ------------------------------------------------------------------------- -r107 | bpbond | 2012-01-28 16:44:25 -0500 (Sat, 28 Jan 2012) | 1 line - -Reworked the backend plotter outputstream.R ------------------------------------------------------------------------- -r106 | pralitp | 2011-06-06 18:21:25 -0400 (Mon, 06 Jun 2011) | 1 line - -Add boost units for halocarbons ------------------------------------------------------------------------- -r105 | pralitp | 2011-06-06 12:43:45 -0400 (Mon, 06 Jun 2011) | 1 line - -Changed the variable name for radiative efficiency for halocarbons from epsilon to rho to be consistent with the IPCC terminology. Also distiguished between parameter values which were provided from Bill and from IPCC in the input data. ------------------------------------------------------------------------- -r104 | bpbond | 2011-05-27 23:08:12 -0400 (Fri, 27 May 2011) | 1 line - -Minor miscellany; in particular, #defines to substitute for halocarbon component names. ------------------------------------------------------------------------- -r103 | bpbond | 2011-05-27 10:42:09 -0400 (Fri, 27 May 2011) | 1 line - -Added BC/OC (black carbon and organic carbon) components, associated emissions input file (bcoc_emiss.csv), and output. ------------------------------------------------------------------------- -r102 | pralitp | 2011-05-26 17:24:09 -0400 (Thu, 26 May 2011) | 1 line - -Add halocarbon data as well as make the switch from historical data to calculated more explicit. Especially in the tseries which will now allow interpolated to a certain date but not after. ------------------------------------------------------------------------- -r101 | bpbond | 2011-05-26 16:30:04 -0400 (Thu, 26 May 2011) | 1 line - -Line endings (CR not LF) screw up the table reader, and caused confusing silent failures. Now CSVTableReader will throw an error if it (mistakenly) detects zero rows of data. ------------------------------------------------------------------------- -r100 | bpbond | 2011-05-26 14:18:15 -0400 (Thu, 26 May 2011) | 1 line - -Radiative forcing components (in forcing_component) are now stuck into a map as they are calculated. This makes the calculation of Ftotal, and their output, independent of exactly which ones are calculated. I.e. visitors can be dumber, which is good. ------------------------------------------------------------------------- -r99 | bpbond | 2011-05-25 14:04:42 -0400 (Wed, 25 May 2011) | 1 line - -Fixed a failing test, and cleaned up a number of other small things. ------------------------------------------------------------------------- -r98 | bpbond | 2011-05-25 12:57:18 -0400 (Wed, 25 May 2011) | 1 line - -Added temperature feedback to the carbon cycle, using MAGICC 6 formulation. ------------------------------------------------------------------------- -r97 | bpbond | 2011-05-25 11:25:28 -0400 (Wed, 25 May 2011) | 1 line - -Added a global temperature component that computes, based on a 2xCO2 equilibrium climate sensitivity, delta T (in K) from atmospheric CO2. This variable now appears in output stream. ------------------------------------------------------------------------- -r96 | bpbond | 2011-05-20 11:02:50 -0400 (Fri, 20 May 2011) | 1 line - -Documentation update. ------------------------------------------------------------------------- -r95 | bpbond | 2011-05-19 11:31:50 -0400 (Thu, 19 May 2011) | 1 line - -Added CH4 and N2O model components (they don't do anything yet) and started forcing calculation for these gases in forcing.cpp ------------------------------------------------------------------------- -r94 | bpbond | 2011-05-13 16:18:06 -0400 (Fri, 13 May 2011) | 1 line - -Major carbon fluxes (NPP, RH, LUC, industrial emissions) now appear in outputstream.csv. ------------------------------------------------------------------------- -r93 | bpbond | 2011-05-13 09:33:52 -0400 (Fri, 13 May 2011) | 1 line - -Previous commit message was wrong! Should have been: Added a spinup (run pools to steady state before main model run) capability to the carbon box model. ------------------------------------------------------------------------- -r92 | bpbond | 2011-05-13 09:31:04 -0400 (Fri, 13 May 2011) | 1 line - -Added C fluxes from land use change to carbon model. Also tseries now has a 'name' attribute which makes reading logfiles easier. ------------------------------------------------------------------------- -r91 | bpbond | 2011-05-12 13:16:44 -0400 (Thu, 12 May 2011) | 1 line - -Added C fluxes from land use change to carbon model. Also tseries now has a 'name' attribute which makes reading logfiles easier. ------------------------------------------------------------------------- -r90 | bpbond | 2011-05-11 18:06:31 -0400 (Wed, 11 May 2011) | 1 line - -Added new carbon model, very similar to that of MAGICC, along with many other small changes. The new C model replaces the simple3box one (except just one box for ocean at the moment). Not 100% done, and no testing code or documentation written. ------------------------------------------------------------------------- -r89 | bpbond | 2011-05-09 11:50:13 -0400 (Mon, 09 May 2011) | 1 line - -Started to add units to halocarbon code; modified outputstream format; other minor changes. ------------------------------------------------------------------------- -r88 | pralitp | 2011-05-06 11:09:24 -0400 (Fri, 06 May 2011) | 1 line - -Add halocarbons. Unit tests are still to come. ------------------------------------------------------------------------- -r87 | bpbond | 2011-04-11 16:12:38 -0400 (Mon, 11 Apr 2011) | 1 line - -Minor changes to take advantage of new H_ASSERT functionality (see r85). ------------------------------------------------------------------------- -r86 | pralitp | 2011-04-11 15:27:49 -0400 (Mon, 11 Apr 2011) | 1 line - -Add a depency finder to sort model components and changes to get restart capabilities to work. ------------------------------------------------------------------------- -r85 | bpbond | 2011-04-11 00:35:09 -0400 (Mon, 11 Apr 2011) | 1 line - -Integrating ODE branch-step 3. Miscellaneous code formatting fixes. Changed H_ASSERT to accept an optional message parameter. ------------------------------------------------------------------------- -r84 | bpbond | 2011-04-04 14:44:23 -0400 (Mon, 04 Apr 2011) | 1 line - -Integrating ODE branch-step 2. Moved visitors into new folder; forcing component working; output visitors working (mostly). Need to QC output and update documentation. ------------------------------------------------------------------------- -r83 | bpbond | 2011-04-04 11:19:50 -0400 (Mon, 04 Apr 2011) | 1 line - -Integrating ODE branch-step 1. Code is integrated and runs, but I have not checked output or updated documentation; forcing component disabled for the moment. ------------------------------------------------------------------------- -r79 | bpbond | 2011-03-03 14:13:17 -0500 (Thu, 03 Mar 2011) | 1 line - -CSV table input now ignores comment lines (starting with ';') and missing values. ------------------------------------------------------------------------- -r78 | bpbond | 2011-03-03 13:45:13 -0500 (Thu, 03 Mar 2011) | 1 line - -Added a land-use change flux time series, read along with industrial emissions from emissions.csv. ------------------------------------------------------------------------- -r77 | bpbond | 2011-03-03 11:04:26 -0500 (Thu, 03 Mar 2011) | 1 line - -Changed line endings in emissions.csv to Unix style. This is what was messing up csv_table_reader. ------------------------------------------------------------------------- -r76 | bpbond | 2011-03-03 08:05:41 -0500 (Thu, 03 Mar 2011) | 1 line - -Added anthroEmissions to output stream. For fun, outputstream_plotter.r now graphs observed [CO2] along with modeled values. ------------------------------------------------------------------------- -r75 | bpbond | 2011-03-03 07:29:27 -0500 (Thu, 03 Mar 2011) | 1 line - -Fixed a bug in csv_table_reader.cpp in which the last variable in the header line would never be read. ------------------------------------------------------------------------- -r74 | bpbond | 2011-03-02 12:08:31 -0500 (Wed, 02 Mar 2011) | 1 line - -Added a forcing model component that calculated FCO2; this variable now appears in the output stream. New 'forcing' unit (just W/m2) supports this. ------------------------------------------------------------------------- -r73 | bpbond | 2011-03-01 15:45:12 -0500 (Tue, 01 Mar 2011) | 1 line - -Added 'csv_outstream_visitor' which writes a comma-delimited output stream (currently outputstream.csv) of all model variables. The intent is that these will be post-processed by some other program. ------------------------------------------------------------------------- -r69 | rpl | 2011-02-24 13:09:31 -0500 (Thu, 24 Feb 2011) | 4 lines - -Replaced (German) ß with (Greek) β - -:-) - ------------------------------------------------------------------------- -r68 | pralitp | 2011-02-24 12:12:36 -0500 (Thu, 24 Feb 2011) | 1 line - -Change some units around so that emissions and fluxes between the boxes are in Pg C/yr. I also hard coded the timestep being 1 year for the moment. ------------------------------------------------------------------------- -r67 | bpbond | 2011-02-24 10:45:12 -0500 (Thu, 24 Feb 2011) | 1 line - -Several small changes, most concerned with addition of h_util.hpp (utility header). ------------------------------------------------------------------------- -r66 | bpbond | 2011-02-22 16:11:00 -0500 (Tue, 22 Feb 2011) | 1 line - -Added CO2_ppmv unit to unit system and CSV output stream; testing code; CO2 fertilization effect in land component; other miscellany. ------------------------------------------------------------------------- -r65 | pralitp | 2011-02-18 15:18:38 -0500 (Fri, 18 Feb 2011) | 1 line - -Didn't mean to commit avisitor ------------------------------------------------------------------------- -r64 | pralitp | 2011-02-18 15:17:59 -0500 (Fri, 18 Feb 2011) | 1 line - -Removing duplicate file. ------------------------------------------------------------------------- -r63 | bpbond | 2011-02-18 14:22:02 -0500 (Fri, 18 Feb 2011) | 1 line - -A working three-pool model: atmosphere land, ocean, with emissions going into atmosphere and carbon flows to the other boxes. Also added a short R script to graph CSV output. ------------------------------------------------------------------------- -r62 | pralitp | 2011-02-18 14:13:13 -0500 (Fri, 18 Feb 2011) | 1 line - -Modifications to tseries to allow for boost units and potentially other non-double data types. Note some cleaning up may be in order. ------------------------------------------------------------------------- -r61 | bpbond | 2011-02-18 10:21:18 -0500 (Fri, 18 Feb 2011) | 1 line - -Created land and ocean components. Data (currently only carbonPool) are passed in to them, and they acquire pointers to each other from the core, but don't do anything yet. ------------------------------------------------------------------------- -r60 | pralitp | 2011-02-17 15:18:25 -0500 (Thu, 17 Feb 2011) | 1 line - -Made modifications so that model components have access to Core during prepareToRun. At this point they can query for other model components or start and end dates. ------------------------------------------------------------------------- -r59 | pralitp | 2011-02-04 15:59:18 -0500 (Fri, 04 Feb 2011) | 1 line - -Fix failing parser tests by storing the exception in valueHandler and rethrowing it on the other side of the C api. Also update the XCode project file and remove duplicate tseries header file. ------------------------------------------------------------------------- -r57 | rpl | 2011-02-04 15:02:33 -0500 (Fri, 04 Feb 2011) | 6 lines - -Merged all changes from linux-build branch. - -Currently two unit tests fail due to a known issue involving the -INIToCore functions. A fix is in the works. - - ------------------------------------------------------------------------- -r52 | bpbond | 2011-01-20 11:44:03 -0500 (Thu, 20 Jan 2011) | 1 line - -Renamed all C++ header files to *.hpp ------------------------------------------------------------------------- -r51 | bpbond | 2011-01-20 11:19:20 -0500 (Thu, 20 Jan 2011) | 1 line - -Last commit was incomplete--this adds source files. ------------------------------------------------------------------------- -r50 | bpbond | 2011-01-20 11:17:49 -0500 (Thu, 20 Jan 2011) | 1 line - -Atmosphere component now calculates running C pool using input data and send it to output stream; testing code for atmosphere added; documentation and other minor changes. ------------------------------------------------------------------------- -r49 | pralitp | 2011-01-19 15:55:47 -0500 (Wed, 19 Jan 2011) | 1 line - -Add the ability for the Core object to parse data and have it parse the start and end date. Also this information is no longer available in init for model components. Updated the documentation, tests, and input files accordingly. ------------------------------------------------------------------------- -r48 | pralitp | 2011-01-19 15:33:55 -0500 (Wed, 19 Jan 2011) | 1 line - -Some fixes to units and broken test cases ------------------------------------------------------------------------- -r47 | bpbond | 2011-01-19 12:28:49 -0500 (Wed, 19 Jan 2011) | 1 line - -Atmosphere added; old h_units.h removed; unit tests for scaled units beefed up. The atmosphere reads from new hector_atmosphere.ini file a pool (a_CarbonPool) and time series (a_AnthroEmissions) but doesn't do anything yet. Appropriate visitors, etc., added for this new component. ------------------------------------------------------------------------- -r46 | bpbond | 2011-01-18 16:06:16 -0500 (Tue, 18 Jan 2011) | 1 line - -Moved units setup (nb NOT unit testing) to its own header file; added SI scalings for carbon, CO2 and CH4. Started unit tests for these scalings. ------------------------------------------------------------------------- -r42 | pralitp | 2011-01-13 18:18:43 -0500 (Thu, 13 Jan 2011) | 1 line - -Added the ability to read time series data as discussed. Updated documentation and units tests for the changes. ------------------------------------------------------------------------- -r41 | bpbond | 2011-01-13 08:51:29 -0500 (Thu, 13 Jan 2011) | 1 line - -Added definitions of GHG molar masses, and conversions between them, in test_units.cpp (will later be broken out into separate header). Basic testing code also added. ------------------------------------------------------------------------- -r36 | pralitp | 2010-11-09 13:05:52 -0500 (Tue, 09 Nov 2010) | 1 line - -Updated the documenation for the core and a start for the wrapper for the changes already committed. ------------------------------------------------------------------------- -r35 | pralitp | 2010-11-05 15:29:39 -0400 (Fri, 05 Nov 2010) | 1 line - -Added some more infrustuctre to the core which now does a simple run. Also added a test class for Core. Still todo: update documentation. ------------------------------------------------------------------------- -r34 | pralitp | 2010-11-03 16:04:30 -0400 (Wed, 03 Nov 2010) | 1 line - -Add tests for units. Implemented the first cut of the Core interface which includes setData and the visitor pattern ------------------------------------------------------------------------- -r33 | bpbond | 2010-10-08 11:36:04 -0400 (Fri, 08 Oct 2010) | 1 line - -Added h_reader, a wrapper around INIH; upgraded main, which now opens a global log; added logging to tseries and h_reader; added input and output directories. The program now requires a configuration file to run. ------------------------------------------------------------------------- -r32 | bpbond | 2010-10-07 14:30:37 -0400 (Thu, 07 Oct 2010) | 1 line - -Added INIH, a simple, open source, INI-style file parser, and associated testing code. ------------------------------------------------------------------------- -r31 | bpbond | 2010-09-29 17:10:05 -0400 (Wed, 29 Sep 2010) | 1 line - -Broke apart time series tests, and added more; fixed a subtle (but dumb) bug in the h_exception macro. ------------------------------------------------------------------------- -r30 | pralitp | 2010-09-24 15:59:58 -0400 (Fri, 24 Sep 2010) | 1 line - -Adding the xcode project file and Google Test library (which is referenced to build from the xcode project file) ------------------------------------------------------------------------- -r29 | pralitp | 2010-09-24 11:32:31 -0400 (Fri, 24 Sep 2010) | 1 line - -Renamed testing.cpp to be testing_main.cpp which is more descriptive ------------------------------------------------------------------------- -r28 | pralitp | 2010-09-24 11:31:43 -0400 (Fri, 24 Sep 2010) | 1 line - -Changed testing to use Google C++ Testing Framework ------------------------------------------------------------------------- -r27 | bpbond | 2010-09-23 12:21:30 -0400 (Thu, 23 Sep 2010) | 1 line - -Spline_forsythe method now integrated into the interpolator and can be used/tested. ------------------------------------------------------------------------- -r26 | bpbond | 2010-09-23 10:46:55 -0400 (Thu, 23 Sep 2010) | 1 line - -testing adding source/foo ------------------------------------------------------------------------- -r25 | bpbond | 2010-09-23 10:46:15 -0400 (Thu, 23 Sep 2010) | 2 lines - -Test commit - ------------------------------------------------------------------------- -r24 | bpbond | 2010-09-23 09:48:03 -0400 (Thu, 23 Sep 2010) | 1 line - -(Very preliminary, non-o.o.) testing code rearranged. First tests using CO2 data. ------------------------------------------------------------------------- -r23 | bpbond | 2010-09-23 09:20:38 -0400 (Thu, 23 Sep 2010) | 1 line - -Added Bill's Forsythe spline code (but it is not linked to the interpolator yet); moved tseries testing code out of main and into a separate file; added long time series (Mauna Lao CO2) to testing code; and started changing the testing code to use asserts ------------------------------------------------------------------------- -r22 | pralitp | 2010-09-22 23:50:04 -0400 (Wed, 22 Sep 2010) | 1 line - -Addresed issues with the logger including documentation and log message formatting. ------------------------------------------------------------------------- -r21 | bpbond | 2010-09-22 11:30:20 -0400 (Wed, 22 Sep 2010) | 1 line - -Changed "h_spline" to "h_interpolator," reflecting its more general role; moved linear interpolation code into it from tseries.h. Changed all asserts to H_ASSERT as this will help us later in testing, I think...easier to catch. Updated spec documents. ------------------------------------------------------------------------- -r20 | bpbond | 2010-09-21 14:58:20 -0400 (Tue, 21 Sep 2010) | 1 line - -Abstracted spline out into its own class. ------------------------------------------------------------------------- -r19 | pralitp | 2010-09-17 15:26:20 -0400 (Fri, 17 Sep 2010) | 1 line - -Adding the logger. Still some things todo, see issues.txt for details. ------------------------------------------------------------------------- -r18 | bpbond | 2010-09-17 10:13:19 -0400 (Fri, 17 Sep 2010) | 1 line - -Added asserts; created h_units.h; minor changes to documentation files ------------------------------------------------------------------------- -r17 | bpbond | 2010-09-17 06:21:06 -0400 (Fri, 17 Sep 2010) | 1 line - -Changed exception handler so it just prints filename where exception was thrown, not full path. ------------------------------------------------------------------------- -r16 | bpbond | 2010-09-16 21:54:02 -0400 (Thu, 16 Sep 2010) | 1 line - -Added exception handler, which reports message/line/function/file. Throw an exception using H_THROW( message ) macro. ------------------------------------------------------------------------- -r15 | bpbond | 2010-09-16 18:01:01 -0400 (Thu, 16 Sep 2010) | 1 line - -Added linear interpolation to time series; added spec documents to documentation folder ------------------------------------------------------------------------- -r14 | bpbond | 2010-09-16 14:53:24 -0400 (Thu, 16 Sep 2010) | 1 line - -Added documentation folder; began to implement very simple linear interpolation in the time series. ------------------------------------------------------------------------- -r13 | bpbond | 2010-09-16 11:22:04 -0400 (Thu, 16 Sep 2010) | 1 line - -Bare-bones but working time series data type (no interpolation service yet); first exception defined. ------------------------------------------------------------------------- -r12 | bpbond | 2010-09-14 16:30:36 -0400 (Tue, 14 Sep 2010) | 1 line - -...and the files themselves ------------------------------------------------------------------------- -r11 | bpbond | 2010-09-14 16:27:22 -0400 (Tue, 14 Sep 2010) | 1 line - -Time series data type started, using ------------------------------------------------------------------------- -r10 | bpbond | 2010-09-14 15:18:13 -0400 (Tue, 14 Sep 2010) | 1 line - -headers folder added ------------------------------------------------------------------------- -r9 | bpbond | 2010-09-09 09:07:58 -0400 (Thu, 09 Sep 2010) | 1 line - -Comment fix (test) ------------------------------------------------------------------------- -r8 | bpbond | 2010-09-09 09:03:31 -0400 (Thu, 09 Sep 2010) | 1 line - -test ------------------------------------------------------------------------- -r7 | bpbond | 2010-09-09 06:30:35 -0400 (Thu, 09 Sep 2010) | 1 line - - ------------------------------------------------------------------------- -r6 | bpbond | 2010-09-09 06:13:11 -0400 (Thu, 09 Sep 2010) | 2 lines - -Remove - ------------------------------------------------------------------------- -r5 | bpbond | 2010-09-09 06:09:06 -0400 (Thu, 09 Sep 2010) | 1 line - - ------------------------------------------------------------------------- -r4 | bpbond | 2010-09-09 06:08:31 -0400 (Thu, 09 Sep 2010) | 1 line - -Remove foo ------------------------------------------------------------------------- -r3 | bpbond | 2010-09-08 21:07:48 -0400 (Wed, 08 Sep 2010) | 1 line - -test2 ------------------------------------------------------------------------- -r2 | bpbond | 2010-09-08 21:04:53 -0400 (Wed, 08 Sep 2010) | 1 line - -test ------------------------------------------------------------------------- -r1 | admin | 2010-09-08 15:00:49 -0400 (Wed, 08 Sep 2010) | 1 line - -Creating initial repository structure ------------------------------------------------------------------------- diff --git a/output/README.md b/output/README.md new file mode 100644 index 000000000..e626003d7 --- /dev/null +++ b/output/README.md @@ -0,0 +1,4 @@ +This directory is the location where Hector outputs will be written when running Hector via command line, Xcode, ect. Running Hector through the R interface will __not__ produce any csv outputs here. + +Included are example outputs from Hector driven with ssp245. + diff --git a/project_files/VS/hector-lib.vcxproj b/project_files/VS/hector-lib.vcxproj index 2cb0e665e..f2705625a 100644 --- a/project_files/VS/hector-lib.vcxproj +++ b/project_files/VS/hector-lib.vcxproj @@ -1,5 +1,5 @@  - + Debug @@ -19,111 +19,115 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {88489C16-7642-48BB-B36C-C4B9507A1DE2} Win32Proj hector + 10.0 StaticLibrary true - v140 + v142 Unicode StaticLibrary false - v140 + v142 true Unicode StaticLibrary true - v120 + v142 Unicode StaticLibrary false - v120 + v142 true Unicode @@ -165,7 +169,7 @@ Level3 Disabled WIN32;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - ..\..\headers;%(AdditionalIncludeDirectories) + ..\..\inst\include;%(AdditionalIncludeDirectories) Windows @@ -178,7 +182,8 @@ Level3 Disabled WIN32;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - ../../../../../../../libs/boost-lib;..\..\headers;%(AdditionalIncludeDirectories) + ../../libs/boost-lib;..\..\inst\include;%(AdditionalIncludeDirectories) + stdcpp17 Windows @@ -193,7 +198,7 @@ true true WIN32;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - ..\..\headers;%(AdditionalIncludeDirectories) + ..\..\inst\include;%(AdditionalIncludeDirectories) Windows @@ -210,7 +215,8 @@ true true _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - ../../../../../../../libs/boost-lib;..\..\headers;%(AdditionalIncludeDirectories) + $(BOOSTROOT);..\..\inst\include;%(AdditionalIncludeDirectories) + stdcpp17 Windows diff --git a/project_files/VS/hector-lib.vcxproj.filters b/project_files/VS/hector-lib.vcxproj.filters index f95cff711..247105a92 100644 --- a/project_files/VS/hector-lib.vcxproj.filters +++ b/project_files/VS/hector-lib.vcxproj.filters @@ -53,226 +53,235 @@ - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\components - + Header Files\core - + Header Files\core - + Header Files\core - + Header Files\core - + Header Files\core - + Header Files\data - + Header Files\data - + Header Files\data - + Header Files\data - + Header Files\input - + Header Files\input - + Header Files\input - - Header Files\input\inih - - - Header Files\input\inih - - + Header Files\models - + Header Files\models - + Header Files\models - + Header Files\models - + Header Files\visitors - + Header Files\visitors - - Header Files\visitors + + Header Files\components - + Header Files - + Header Files - + Header Files - - Header Files\components + + Header Files + + + Header Files + + + Header Files\visitors + + + Header Files\data - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\components - + Source Files\core - + Source Files\core - + Source Files\core - + Source Files\core - + Source Files\data - + Source Files\data - + Source Files\data - + Source Files\input - + Source Files\input - + Source Files\input - + Source Files\input\inih - - Source Files\input\inih - - + Source Files\models - + Source Files\models - + Source Files\models - + Source Files\models - + Source Files\visitors - + + Source Files\components + + + Source Files + + Source Files\visitors - - Source Files\components + + Source Files\models + + + Source Files \ No newline at end of file diff --git a/project_files/VS/hector.vcxproj b/project_files/VS/hector.vcxproj index 0307de221..5f93b9d23 100644 --- a/project_files/VS/hector.vcxproj +++ b/project_files/VS/hector.vcxproj @@ -1,5 +1,5 @@  - + Debug @@ -19,7 +19,7 @@ - + @@ -30,31 +30,32 @@ {1A212A99-F400-4BC1-A4A3-1767FA1843F1} Win32Proj hector + 10.0 Application true - v140 + v142 Unicode Application false - v140 + v142 true Unicode Application true - v140 + v142 Unicode Application false - v140 + v142 true Unicode @@ -93,8 +94,8 @@ false - ..\..\libs\boost-lib;$(IncludePath) - ..\..\libs\boost-lib\stage\lib;$(LibraryPath) + $(BOOSTROOT);$(IncludePath) + $(BOOSTLIB);$(LibraryPath) @@ -105,7 +106,7 @@ true false MultiThreadedDebugDLL - ..\..\headers;%(AdditionalIncludeDirectories) + ..\..\inst\include;%(AdditionalIncludeDirectories) Console @@ -120,7 +121,7 @@ Disabled _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) true - ..\..\headers;%(AdditionalIncludeDirectories) + ..\..\inst\include;%(AdditionalIncludeDirectories) Console @@ -139,7 +140,7 @@ true false MultiThreadedDLL - ..\..\headers;%(AdditionalIncludeDirectories) + ..\..\inst\include;%(AdditionalIncludeDirectories) Console @@ -158,7 +159,7 @@ true _CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true - ..\..\headers;%(AdditionalIncludeDirectories) + ..\..\inst\include;%(AdditionalIncludeDirectories) Console @@ -171,4 +172,4 @@ - + \ No newline at end of file diff --git a/project_files/Xcode/hector.xcodeproj/project.pbxproj b/project_files/Xcode/hector.xcodeproj/project.pbxproj index da38ace84..7324eb645 100644 --- a/project_files/Xcode/hector.xcodeproj/project.pbxproj +++ b/project_files/Xcode/hector.xcodeproj/project.pbxproj @@ -7,10 +7,19 @@ objects = { /* Begin PBXBuildFile section */ - 277D29DC2683669E003177A2 /* libboost_system.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 277D29DA2683669E003177A2 /* libboost_system.dylib */; }; - 277D29DD2683669E003177A2 /* libboost_filesystem.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 277D29DB2683669E003177A2 /* libboost_filesystem.dylib */; }; + 273FC39626A3570B00D5303E /* test_tseries.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC38B26A3570B00D5303E /* test_tseries.cpp */; }; + 273FC39726A3570B00D5303E /* testing_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC38C26A3570B00D5303E /* testing_main.cpp */; }; + 273FC39926A3570B00D5303E /* test_tracking.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC38E26A3570B00D5303E /* test_tracking.cpp */; }; + 273FC39B26A3570B00D5303E /* test_inih.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC39026A3570B00D5303E /* test_inih.cpp */; }; + 273FC39D26A3570B00D5303E /* test_hreader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC39226A3570B00D5303E /* test_hreader.cpp */; }; + 273FC39E26A3570B00D5303E /* test_ini_to_core_reader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC39326A3570B00D5303E /* test_ini_to_core_reader.cpp */; }; + 273FC39F26A3570B00D5303E /* test_unitval.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC39426A3570B00D5303E /* test_unitval.cpp */; }; + 273FC3A026A3570B00D5303E /* test_logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC39526A3570B00D5303E /* test_logger.cpp */; }; + 275CBFF227AC7CC0009E2AF5 /* h_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 275CBFF127AC7CC0009E2AF5 /* h_util.cpp */; }; 27808CF12615CEFA00BE8B90 /* libgtest.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 27808CF02615CEFA00BE8B90 /* libgtest.dylib */; }; - 27808CF42615D31A00BE8B90 /* test_tseries.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27A02A4B2615CAA100AF9BFA /* test_tseries.cpp */; }; + 27962905268F237300333AA3 /* csv_tracking_visitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27962904268F237200333AA3 /* csv_tracking_visitor.cpp */; }; + 27962908268F23CB00333AA3 /* simpleNbox-runtime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27962907268F23CB00333AA3 /* simpleNbox-runtime.cpp */; }; + 27962909268F241100333AA3 /* simpleNbox-runtime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27962907268F23CB00333AA3 /* simpleNbox-runtime.cpp */; }; 27A02A5E2615CBB800AF9BFA /* halocarbon_component.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C231261511C5005DE26D /* halocarbon_component.cpp */; }; 27A02A602615CBB800AF9BFA /* ocean_csys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C241261511C7005DE26D /* ocean_csys.cpp */; }; 27A02A612615CBB800AF9BFA /* core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C23D261511C6005DE26D /* core.cpp */; }; @@ -41,9 +50,6 @@ 27A02A7B2615CBB800AF9BFA /* forcing_component.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C230261511C5005DE26D /* forcing_component.cpp */; }; 27A02A7C2615CBB800AF9BFA /* dummy_model_component.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C249261511C7005DE26D /* dummy_model_component.cpp */; }; 27A02A7D2615CBB800AF9BFA /* oceanbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C23E261511C7005DE26D /* oceanbox.cpp */; }; - 27A02A7F2615CBB800AF9BFA /* libboost_filesystem.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B2C27A26155326005DE26D /* libboost_filesystem.dylib */; }; - 27A02A802615CBB800AF9BFA /* libboost_system.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 27B2C27C26155331005DE26D /* libboost_system.dylib */; }; - 27A02A892615CBDB00AF9BFA /* testing_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27A02A4D2615CAA100AF9BFA /* testing_main.cpp */; }; 27B2C24F261511C8005DE26D /* ch4_component.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C22C261511C5005DE26D /* ch4_component.cpp */; }; 27B2C250261511C8005DE26D /* h_reader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C22D261511C5005DE26D /* h_reader.cpp */; }; 27B2C251261511C8005DE26D /* ini.c in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C22E261511C5005DE26D /* ini.c */; }; @@ -75,6 +81,13 @@ 27B2C26E261511C8005DE26D /* carbon-cycle-model.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C24B261511C8005DE26D /* carbon-cycle-model.cpp */; }; 27B2C270261511C8005DE26D /* spline_forsythe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C24D261511C8005DE26D /* spline_forsythe.cpp */; }; 27B2C271261511C8005DE26D /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B2C24E261511C8005DE26D /* main.cpp */; }; + 27F2613726B55617004BDD47 /* csv_tracking_visitor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27962904268F237200333AA3 /* csv_tracking_visitor.cpp */; }; + 354045FC2913D50A00CA297D /* test_dependency_finder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC38F26A3570B00D5303E /* test_dependency_finder.cpp */; }; + 354045FB2913CF6600CA297D /* test_csv_file_reader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC39126A3570B00D5303E /* test_csv_file_reader.cpp */; }; + 354045FA2913C0F300CA297D /* test_core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 273FC38D26A3570B00D5303E /* test_core.cpp */; }; + 35ACB833285E4F4E0025928F /* h_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 275CBFF127AC7CC0009E2AF5 /* h_util.cpp */; }; + 954D62AE278E005500840656 /* nh3_component.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 954D62AD278E005500840656 /* nh3_component.cpp */; }; + 954D62AF278E005500840656 /* nh3_component.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 954D62AD278E005500840656 /* nh3_component.cpp */; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -119,21 +132,26 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ + 270FA77E2791BEEE00E6A50B /* nh3_component.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = nh3_component.hpp; path = ../../inst/include/nh3_component.hpp; sourceTree = ""; }; + 270FA77F2791BF2F00E6A50B /* nh3_component.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = nh3_component.cpp; path = ../../src/nh3_component.cpp; sourceTree = ""; }; + 273FC38B26A3570B00D5303E /* test_tseries.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_tseries.cpp; path = "../../../src/unit-testing/test_tseries.cpp"; sourceTree = ""; }; + 273FC38C26A3570B00D5303E /* testing_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = testing_main.cpp; path = "../../../src/unit-testing/testing_main.cpp"; sourceTree = ""; }; + 273FC38D26A3570B00D5303E /* test_core.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_core.cpp; path = "../../../src/unit-testing/test_core.cpp"; sourceTree = ""; }; + 273FC38E26A3570B00D5303E /* test_tracking.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_tracking.cpp; path = "../../../src/unit-testing/test_tracking.cpp"; sourceTree = ""; }; + 273FC38F26A3570B00D5303E /* test_dependency_finder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_dependency_finder.cpp; path = "../../../src/unit-testing/test_dependency_finder.cpp"; sourceTree = ""; }; + 273FC39026A3570B00D5303E /* test_inih.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_inih.cpp; path = "../../../src/unit-testing/test_inih.cpp"; sourceTree = ""; }; + 273FC39126A3570B00D5303E /* test_csv_file_reader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_csv_file_reader.cpp; path = "../../../src/unit-testing/test_csv_file_reader.cpp"; sourceTree = ""; }; + 273FC39226A3570B00D5303E /* test_hreader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_hreader.cpp; path = "../../../src/unit-testing/test_hreader.cpp"; sourceTree = ""; }; + 273FC39326A3570B00D5303E /* test_ini_to_core_reader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_ini_to_core_reader.cpp; path = "../../../src/unit-testing/test_ini_to_core_reader.cpp"; sourceTree = ""; }; + 273FC39426A3570B00D5303E /* test_unitval.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_unitval.cpp; path = "../../../src/unit-testing/test_unitval.cpp"; sourceTree = ""; }; + 273FC39526A3570B00D5303E /* test_logger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_logger.cpp; path = "../../../src/unit-testing/test_logger.cpp"; sourceTree = ""; }; 27585CF826150F1A00BA1EF5 /* hector */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = hector; sourceTree = BUILT_PRODUCTS_DIR; }; - 277D29DA2683669E003177A2 /* libboost_system.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libboost_system.dylib; path = ../../../../../../../../../usr/local/lib/libboost_system.dylib; sourceTree = ""; }; - 277D29DB2683669E003177A2 /* libboost_filesystem.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libboost_filesystem.dylib; path = ../../../../../../../../../usr/local/lib/libboost_filesystem.dylib; sourceTree = ""; }; + 275CBFF127AC7CC0009E2AF5 /* h_util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = h_util.cpp; path = ../../src/h_util.cpp; sourceTree = ""; }; 27808CF02615CEFA00BE8B90 /* libgtest.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libgtest.dylib; path = ../../../../../../../../../usr/local/lib/libgtest.dylib; sourceTree = ""; }; - 27A02A462615CAA100AF9BFA /* test_logger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_logger.cpp; path = ../../../src/Testing/test_logger.cpp; sourceTree = ""; }; - 27A02A472615CAA100AF9BFA /* test_restart.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_restart.cpp; path = ../../../src/Testing/test_restart.cpp; sourceTree = ""; }; - 27A02A482615CAA100AF9BFA /* test_csv_file_reader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_csv_file_reader.cpp; path = ../../../src/Testing/test_csv_file_reader.cpp; sourceTree = ""; }; - 27A02A492615CAA100AF9BFA /* test_dependency_finder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_dependency_finder.cpp; path = ../../../src/Testing/test_dependency_finder.cpp; sourceTree = ""; }; - 27A02A4A2615CAA100AF9BFA /* test_ini_to_core_reader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_ini_to_core_reader.cpp; path = ../../../src/Testing/test_ini_to_core_reader.cpp; sourceTree = ""; }; - 27A02A4B2615CAA100AF9BFA /* test_tseries.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_tseries.cpp; path = ../../../src/Testing/test_tseries.cpp; sourceTree = ""; }; - 27A02A4C2615CAA100AF9BFA /* test_units.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_units.cpp; path = ../../../src/Testing/test_units.cpp; sourceTree = ""; }; - 27A02A4D2615CAA100AF9BFA /* testing_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = testing_main.cpp; path = ../../../src/Testing/testing_main.cpp; sourceTree = ""; }; - 27A02A4E2615CAA100AF9BFA /* test_core.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_core.cpp; path = ../../../src/Testing/test_core.cpp; sourceTree = ""; }; - 27A02A4F2615CAA100AF9BFA /* test_hreader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_hreader.cpp; path = ../../../src/Testing/test_hreader.cpp; sourceTree = ""; }; - 27A02A502615CAA100AF9BFA /* test_inih.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_inih.cpp; path = ../../../src/Testing/test_inih.cpp; sourceTree = ""; }; + 27962903268F235500333AA3 /* csv_tracking_visitor.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = csv_tracking_visitor.hpp; path = ../../inst/include/csv_tracking_visitor.hpp; sourceTree = ""; }; + 27962904268F237200333AA3 /* csv_tracking_visitor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = csv_tracking_visitor.cpp; path = ../../src/csv_tracking_visitor.cpp; sourceTree = ""; }; + 27962906268F239A00333AA3 /* fluxpool.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = fluxpool.hpp; path = ../../inst/include/fluxpool.hpp; sourceTree = ""; }; + 27962907268F23CB00333AA3 /* simpleNbox-runtime.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "simpleNbox-runtime.cpp"; path = "../../src/simpleNbox-runtime.cpp"; sourceTree = ""; }; 27A02A882615CBB800AF9BFA /* hector-tests */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "hector-tests"; sourceTree = BUILT_PRODUCTS_DIR; }; 27B2C2012615112D005DE26D /* ocean_component.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ocean_component.hpp; path = ../../inst/include/ocean_component.hpp; sourceTree = ""; }; 27B2C2022615112D005DE26D /* csv_table_reader.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = csv_table_reader.hpp; path = ../../inst/include/csv_table_reader.hpp; sourceTree = ""; }; @@ -160,7 +178,6 @@ 27B2C2172615112E005DE26D /* temperature_component.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = temperature_component.hpp; path = ../../inst/include/temperature_component.hpp; sourceTree = ""; }; 27B2C2182615112E005DE26D /* dummy_model_component.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = dummy_model_component.hpp; path = ../../inst/include/dummy_model_component.hpp; sourceTree = ""; }; 27B2C2192615112E005DE26D /* oh_component.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = oh_component.hpp; path = ../../inst/include/oh_component.hpp; sourceTree = ""; }; - 27B2C21A2615112E005DE26D /* onelineocean_component.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = onelineocean_component.hpp; path = ../../inst/include/onelineocean_component.hpp; sourceTree = ""; }; 27B2C21B2615112E005DE26D /* ini_to_core_reader.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ini_to_core_reader.hpp; path = ../../inst/include/ini_to_core_reader.hpp; sourceTree = ""; }; 27B2C21C2615112E005DE26D /* avisitor.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = avisitor.hpp; path = ../../inst/include/avisitor.hpp; sourceTree = ""; }; 27B2C21D2615112E005DE26D /* so2_component.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = so2_component.hpp; path = ../../inst/include/so2_component.hpp; sourceTree = ""; }; @@ -207,10 +224,8 @@ 27B2C24B261511C8005DE26D /* carbon-cycle-model.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "carbon-cycle-model.cpp"; path = "../../src/carbon-cycle-model.cpp"; sourceTree = ""; }; 27B2C24D261511C8005DE26D /* spline_forsythe.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = spline_forsythe.cpp; path = ../../src/spline_forsythe.cpp; sourceTree = ""; }; 27B2C24E261511C8005DE26D /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = ../../src/main.cpp; sourceTree = ""; }; - 27B2C274261551A9005DE26D /* libboost_filesystem.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libboost_filesystem.a; path = ../../../../../../../../../usr/local/boost_1_73_0/stage/lib/libboost_filesystem.a; sourceTree = ""; }; - 27B2C276261551B7005DE26D /* libboost_system.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libboost_system.a; path = ../../../../../../../../../usr/local/boost_1_73_0/stage/lib/libboost_system.a; sourceTree = ""; }; - 27B2C27A26155326005DE26D /* libboost_filesystem.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libboost_filesystem.dylib; path = ../../../../../../../../../usr/local/boost_1_73_0/stage/lib/libboost_filesystem.dylib; sourceTree = ""; }; - 27B2C27C26155331005DE26D /* libboost_system.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libboost_system.dylib; path = ../../../../../../../../../usr/local/boost_1_73_0/stage/lib/libboost_system.dylib; sourceTree = ""; }; + 954D62AD278E005500840656 /* nh3_component.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = nh3_component.cpp; path = ../../src/nh3_component.cpp; sourceTree = ""; }; + 954D62B0278E007500840656 /* nh3_component.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = nh3_component.hpp; path = ../../inst/include/nh3_component.hpp; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -218,8 +233,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 277D29DC2683669E003177A2 /* libboost_system.dylib in Frameworks */, - 277D29DD2683669E003177A2 /* libboost_filesystem.dylib in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -227,8 +240,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 27A02A7F2615CBB800AF9BFA /* libboost_filesystem.dylib in Frameworks */, - 27A02A802615CBB800AF9BFA /* libboost_system.dylib in Frameworks */, 27808CF12615CEFA00BE8B90 /* libgtest.dylib in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; @@ -241,7 +252,7 @@ children = ( 27B2C22B26151149005DE26D /* Headers */, 27B2C272261511CD005DE26D /* Source */, - 27A02A452615CA7300AF9BFA /* Testing */, + 27A02A452615CA7300AF9BFA /* unit-testing */, 27585CF926150F1A00BA1EF5 /* Products */, 27B2C273261551A9005DE26D /* Frameworks */, ); @@ -256,27 +267,28 @@ name = Products; sourceTree = ""; }; - 27A02A452615CA7300AF9BFA /* Testing */ = { + 27A02A452615CA7300AF9BFA /* unit-testing */ = { isa = PBXGroup; children = ( - 27A02A4E2615CAA100AF9BFA /* test_core.cpp */, - 27A02A482615CAA100AF9BFA /* test_csv_file_reader.cpp */, - 27A02A492615CAA100AF9BFA /* test_dependency_finder.cpp */, - 27A02A4F2615CAA100AF9BFA /* test_hreader.cpp */, - 27A02A4A2615CAA100AF9BFA /* test_ini_to_core_reader.cpp */, - 27A02A502615CAA100AF9BFA /* test_inih.cpp */, - 27A02A462615CAA100AF9BFA /* test_logger.cpp */, - 27A02A472615CAA100AF9BFA /* test_restart.cpp */, - 27A02A4B2615CAA100AF9BFA /* test_tseries.cpp */, - 27A02A4C2615CAA100AF9BFA /* test_units.cpp */, - 27A02A4D2615CAA100AF9BFA /* testing_main.cpp */, + 273FC38D26A3570B00D5303E /* test_core.cpp */, + 273FC39126A3570B00D5303E /* test_csv_file_reader.cpp */, + 273FC38F26A3570B00D5303E /* test_dependency_finder.cpp */, + 273FC39426A3570B00D5303E /* test_unitval.cpp */, + 273FC39226A3570B00D5303E /* test_hreader.cpp */, + 273FC39326A3570B00D5303E /* test_ini_to_core_reader.cpp */, + 273FC39026A3570B00D5303E /* test_inih.cpp */, + 273FC39526A3570B00D5303E /* test_logger.cpp */, + 273FC38E26A3570B00D5303E /* test_tracking.cpp */, + 273FC38B26A3570B00D5303E /* test_tseries.cpp */, + 273FC38C26A3570B00D5303E /* testing_main.cpp */, ); - path = Testing; + path = "unit-testing"; sourceTree = ""; }; 27B2C22B26151149005DE26D /* Headers */ = { isa = PBXGroup; children = ( + 954D62B0278E007500840656 /* nh3_component.hpp */, 27B2C21C2615112E005DE26D /* avisitor.hpp */, 27B2C2042615112D005DE26D /* bc_component.hpp */, 27B2C22A2615112F005DE26D /* carbon-cycle-model.hpp */, @@ -287,8 +299,10 @@ 27B2C2202615112E005DE26D /* core.hpp */, 27B2C2112615112E005DE26D /* csv_outputstream_visitor.hpp */, 27B2C2022615112D005DE26D /* csv_table_reader.hpp */, + 27962903268F235500333AA3 /* csv_tracking_visitor.hpp */, 27B2C21E2615112E005DE26D /* dependency_finder.hpp */, 27B2C2182615112E005DE26D /* dummy_model_component.hpp */, + 27962906268F239A00333AA3 /* fluxpool.hpp */, 27B2C2062615112D005DE26D /* forcing_component.hpp */, 27B2C2292615112F005DE26D /* h_exception.hpp */, 27B2C2232615112E005DE26D /* h_interpolator.hpp */, @@ -304,13 +318,13 @@ 27B2C20F2615112D005DE26D /* logger.hpp */, 27B2C2152615112E005DE26D /* message_data.hpp */, 27B2C2262615112F005DE26D /* n2o_component.hpp */, + 270FA77E2791BEEE00E6A50B /* nh3_component.hpp */, 27B2C20C2615112D005DE26D /* o3_component.hpp */, 27B2C2272615112F005DE26D /* oc_component.hpp */, 27B2C2012615112D005DE26D /* ocean_component.hpp */, 27B2C2102615112D005DE26D /* ocean_csys.hpp */, 27B2C2162615112E005DE26D /* oceanbox.hpp */, 27B2C2192615112E005DE26D /* oh_component.hpp */, - 27B2C21A2615112E005DE26D /* onelineocean_component.hpp */, 27B2C2072615112D005DE26D /* simpleNbox.hpp */, 27B2C2242615112E005DE26D /* slr_component.hpp */, 27B2C21D2615112E005DE26D /* so2_component.hpp */, @@ -325,6 +339,7 @@ 27B2C272261511CD005DE26D /* Source */ = { isa = PBXGroup; children = ( + 954D62AD278E005500840656 /* nh3_component.cpp */, 27B2C23B261511C6005DE26D /* bc_component.cpp */, 27B2C24B261511C8005DE26D /* carbon-cycle-model.cpp */, 27B2C22F261511C5005DE26D /* carbon-cycle-solver.cpp */, @@ -332,11 +347,13 @@ 27B2C23D261511C6005DE26D /* core.cpp */, 27B2C23F261511C7005DE26D /* csv_outputstream_visitor.cpp */, 27B2C234261511C6005DE26D /* csv_table_reader.cpp */, + 27962904268F237200333AA3 /* csv_tracking_visitor.cpp */, 27B2C23C261511C6005DE26D /* dependency_finder.cpp */, 27B2C249261511C7005DE26D /* dummy_model_component.cpp */, 27B2C230261511C5005DE26D /* forcing_component.cpp */, 27B2C239261511C6005DE26D /* h_interpolator.cpp */, 27B2C22D261511C5005DE26D /* h_reader.cpp */, + 275CBFF127AC7CC0009E2AF5 /* h_util.cpp */, 27B2C231261511C5005DE26D /* halocarbon_component.cpp */, 27B2C240261511C7005DE26D /* ini_to_core_reader.cpp */, 27B2C22E261511C5005DE26D /* ini.c */, @@ -344,6 +361,7 @@ 27B2C246261511C7005DE26D /* logger.cpp */, 27B2C24E261511C8005DE26D /* main.cpp */, 27B2C23A261511C6005DE26D /* n2o_component.cpp */, + 270FA77F2791BF2F00E6A50B /* nh3_component.cpp */, 27B2C233261511C5005DE26D /* o3_component.cpp */, 27B2C24A261511C8005DE26D /* oc_component.cpp */, 27B2C237261511C6005DE26D /* ocean_component.cpp */, @@ -351,6 +369,7 @@ 27B2C23E261511C7005DE26D /* oceanbox.cpp */, 27B2C236261511C6005DE26D /* oh_component.cpp */, 27B2C245261511C7005DE26D /* simpleNbox.cpp */, + 27962907268F23CB00333AA3 /* simpleNbox-runtime.cpp */, 27B2C247261511C7005DE26D /* slr_component.cpp */, 27B2C232261511C5005DE26D /* so2_component.cpp */, 27B2C24D261511C8005DE26D /* spline_forsythe.cpp */, @@ -363,13 +382,7 @@ 27B2C273261551A9005DE26D /* Frameworks */ = { isa = PBXGroup; children = ( - 277D29DB2683669E003177A2 /* libboost_filesystem.dylib */, - 277D29DA2683669E003177A2 /* libboost_system.dylib */, 27808CF02615CEFA00BE8B90 /* libgtest.dylib */, - 27B2C27C26155331005DE26D /* libboost_system.dylib */, - 27B2C27A26155326005DE26D /* libboost_filesystem.dylib */, - 27B2C276261551B7005DE26D /* libboost_system.a */, - 27B2C274261551A9005DE26D /* libboost_filesystem.a */, ); name = Frameworks; sourceTree = ""; @@ -419,7 +432,7 @@ 27585CF026150F1A00BA1EF5 /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 1130; + LastUpgradeCheck = 1150; ORGANIZATIONNAME = "Bond-Lamberty, Benjamin"; TargetAttributes = { 27585CF726150F1A00BA1EF5 = { @@ -459,6 +472,8 @@ 27B2C26D261511C8005DE26D /* oc_component.cpp in Sources */, 27B2C257261511C8005DE26D /* csv_table_reader.cpp in Sources */, 27B2C25F261511C8005DE26D /* dependency_finder.cpp in Sources */, + 27962908268F23CB00333AA3 /* simpleNbox-runtime.cpp in Sources */, + 275CBFF227AC7CC0009E2AF5 /* h_util.cpp in Sources */, 27B2C266261511C8005DE26D /* unitval.cpp in Sources */, 27B2C25A261511C8005DE26D /* ocean_component.cpp in Sources */, 27B2C26A261511C8005DE26D /* slr_component.cpp in Sources */, @@ -477,8 +492,10 @@ 27B2C252261511C8005DE26D /* carbon-cycle-solver.cpp in Sources */, 27B2C269261511C8005DE26D /* logger.cpp in Sources */, 27B2C256261511C8005DE26D /* o3_component.cpp in Sources */, + 954D62AE278E005500840656 /* nh3_component.cpp in Sources */, 27B2C25D261511C8005DE26D /* n2o_component.cpp in Sources */, 27B2C250261511C8005DE26D /* h_reader.cpp in Sources */, + 27962905268F237300333AA3 /* csv_tracking_visitor.cpp in Sources */, 27B2C253261511C8005DE26D /* forcing_component.cpp in Sources */, 27B2C26C261511C8005DE26D /* dummy_model_component.cpp in Sources */, 27B2C261261511C8005DE26D /* oceanbox.cpp in Sources */, @@ -489,18 +506,24 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 27808CF42615D31A00BE8B90 /* test_tseries.cpp in Sources */, - 27A02A892615CBDB00AF9BFA /* testing_main.cpp in Sources */, 27A02A5E2615CBB800AF9BFA /* halocarbon_component.cpp in Sources */, 27A02A602615CBB800AF9BFA /* ocean_csys.cpp in Sources */, 27A02A612615CBB800AF9BFA /* core.cpp in Sources */, 27A02A622615CBB800AF9BFA /* INIReader.cpp in Sources */, + 27F2613726B55617004BDD47 /* csv_tracking_visitor.cpp in Sources */, 27A02A632615CBB800AF9BFA /* so2_component.cpp in Sources */, 27A02A642615CBB800AF9BFA /* oc_component.cpp in Sources */, + 273FC39F26A3570B00D5303E /* test_unitval.cpp in Sources */, + 354045FB2913CF6600CA297D /* test_csv_file_reader.cpp in Sources */, + 27962909268F241100333AA3 /* simpleNbox-runtime.cpp in Sources */, + 273FC39D26A3570B00D5303E /* test_hreader.cpp in Sources */, 27A02A652615CBB800AF9BFA /* csv_table_reader.cpp in Sources */, 27A02A662615CBB800AF9BFA /* dependency_finder.cpp in Sources */, 27A02A672615CBB800AF9BFA /* unitval.cpp in Sources */, + 273FC39626A3570B00D5303E /* test_tseries.cpp in Sources */, + 273FC39926A3570B00D5303E /* test_tracking.cpp in Sources */, 27A02A682615CBB800AF9BFA /* ocean_component.cpp in Sources */, + 35ACB833285E4F4E0025928F /* h_util.cpp in Sources */, 27A02A692615CBB800AF9BFA /* slr_component.cpp in Sources */, 27A02A6A2615CBB800AF9BFA /* spline_forsythe.cpp in Sources */, 27A02A6B2615CBB800AF9BFA /* oh_component.cpp in Sources */, @@ -508,8 +531,10 @@ 27A02A6D2615CBB800AF9BFA /* temperature_component.cpp in Sources */, 27A02A6E2615CBB800AF9BFA /* simpleNbox.cpp in Sources */, 27A02A702615CBB800AF9BFA /* h_interpolator.cpp in Sources */, + 273FC39B26A3570B00D5303E /* test_inih.cpp in Sources */, 27A02A712615CBB800AF9BFA /* ini_to_core_reader.cpp in Sources */, 27A02A722615CBB800AF9BFA /* bc_component.cpp in Sources */, + 273FC39E26A3570B00D5303E /* test_ini_to_core_reader.cpp in Sources */, 27A02A732615CBB800AF9BFA /* ch4_component.cpp in Sources */, 27A02A742615CBB800AF9BFA /* csv_outputstream_visitor.cpp in Sources */, 27A02A752615CBB800AF9BFA /* carbon-cycle-model.cpp in Sources */, @@ -518,6 +543,11 @@ 27A02A782615CBB800AF9BFA /* o3_component.cpp in Sources */, 27A02A792615CBB800AF9BFA /* n2o_component.cpp in Sources */, 27A02A7A2615CBB800AF9BFA /* h_reader.cpp in Sources */, + 354045FC2913D50A00CA297D /* test_dependency_finder.cpp in Sources */, + 273FC3A026A3570B00D5303E /* test_logger.cpp in Sources */, + 354045FA2913C0F300CA297D /* test_core.cpp in Sources */, + 273FC39726A3570B00D5303E /* testing_main.cpp in Sources */, + 954D62AF278E005500840656 /* nh3_component.cpp in Sources */, 27A02A7B2615CBB800AF9BFA /* forcing_component.cpp in Sources */, 27A02A7C2615CBB800AF9BFA /* dummy_model_component.cpp in Sources */, 27A02A7D2615CBB800AF9BFA /* oceanbox.cpp in Sources */, @@ -533,7 +563,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "c++14"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; @@ -578,15 +608,13 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = "${BOOSTROOT}"; + "HEADER_SEARCH_PATHS[arch=*]" = "${BOOSTROOT}"; LIBRARY_SEARCH_PATHS = "${BOOSTLIB}"; - MACOSX_DEPLOYMENT_TARGET = 10.14; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; - OTHER_LDFLAGS = ( - "-lboost_system", - "-lboost_filesystem", - ); + OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; SDKROOT = macosx; }; @@ -598,7 +626,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "c++14"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; @@ -638,13 +666,11 @@ GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = "${BOOSTROOT}"; LIBRARY_SEARCH_PATHS = "${BOOSTLIB}"; - MACOSX_DEPLOYMENT_TARGET = 10.14; + MACOSX_DEPLOYMENT_TARGET = 10.15; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; - OTHER_LDFLAGS = ( - "-lboost_system", - "-lboost_filesystem", - ); + ONLY_ACTIVE_ARCH = YES; + OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; SDKROOT = macosx; }; @@ -653,8 +679,10 @@ 27585D0026150F1A00BA1EF5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; LIBRARY_SEARCH_PATHS = "${BOOSTLIB}"; + "OTHER_LDFLAGS[arch=*]" = "$(inherited)"; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Debug; @@ -662,6 +690,7 @@ 27585D0126150F1A00BA1EF5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; LIBRARY_SEARCH_PATHS = "${BOOSTLIB}"; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -671,20 +700,15 @@ 27A02A862615CBB800AF9BFA /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; HEADER_SEARCH_PATHS = ( "${BOOSTROOT}", "${GTEST}", ); - LIBRARY_SEARCH_PATHS = ( - "${BOOSTLIB}", - "${GTESTLIB}", - ); - OTHER_LDFLAGS = ( - "-lboost_system", - "-lboost_filesystem", - "-lgtest", - ); + LIBRARY_SEARCH_PATHS = "${GTESTLIB}"; + ONLY_ACTIVE_ARCH = YES; + OTHER_LDFLAGS = "-lgtest"; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Debug; @@ -692,20 +716,15 @@ 27A02A872615CBB800AF9BFA /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_IDENTITY = "-"; CODE_SIGN_STYLE = Automatic; HEADER_SEARCH_PATHS = ( "${BOOSTROOT}", "${GTEST}", ); - LIBRARY_SEARCH_PATHS = ( - "${BOOSTLIB}", - "${GTESTLIB}", - ); - OTHER_LDFLAGS = ( - "-lboost_system", - "-lboost_filesystem", - "-lgtest", - ); + LIBRARY_SEARCH_PATHS = "${GTESTLIB}"; + ONLY_ACTIVE_ARCH = YES; + OTHER_LDFLAGS = "-lgtest"; PRODUCT_NAME = "$(TARGET_NAME)"; }; name = Release; diff --git a/project_files/Xcode/hector.xcodeproj/xcshareddata/xcschemes/hector.xcscheme b/project_files/Xcode/hector.xcodeproj/xcshareddata/xcschemes/hector.xcscheme index d2751090e..0a4af56f2 100644 --- a/project_files/Xcode/hector.xcodeproj/xcshareddata/xcschemes/hector.xcscheme +++ b/project_files/Xcode/hector.xcodeproj/xcshareddata/xcschemes/hector.xcscheme @@ -1,6 +1,6 @@ diff --git a/project_files/Xcode/hector.xcodeproj/xcshareddata/xcschemes/ssp245.xcscheme b/project_files/Xcode/hector.xcodeproj/xcshareddata/xcschemes/ssp245.xcscheme new file mode 100644 index 000000000..65b16ed60 --- /dev/null +++ b/project_files/Xcode/hector.xcodeproj/xcshareddata/xcschemes/ssp245.xcscheme @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/scripts/.gitignore b/scripts/.gitignore new file mode 100644 index 000000000..506eee358 --- /dev/null +++ b/scripts/.gitignore @@ -0,0 +1,2 @@ +*.png +*.html diff --git a/scripts/OutputDifferences.Rmd b/scripts/OutputDifferences.Rmd new file mode 100644 index 000000000..7580fe557 --- /dev/null +++ b/scripts/OutputDifferences.Rmd @@ -0,0 +1,166 @@ +```{r setup, include=FALSE} +# This is the leeyabot Rmarkdown that generates the comment +# and accompanying table and figure +# It is run by the `leeyabot.yml` GitHub Action +# Leeya Pressburger 2022 +knitr::opts_chunk$set(echo = TRUE) +``` + +## Differences in Hector outputs + +Hello, this is `leeyabot`! `r emo::ji("robot")` + +``` {r differences, echo = FALSE, message = FALSE, include = FALSE} +# Load packages +library(dplyr) +library(ggplot2) +library(hector) +library(emo) +library(here) + +# Set root directory +BASE_DIR <- here::here() + +# Read in comp-data +path <- file.path(BASE_DIR, "tests", "testthat", "compdata", "hector_comp.csv") +comp_data <- read.csv(path) + +# Variables of interest +vars <- c(CONCENTRATIONS_CO2(), RF_TOTAL(), RF_CO2(), GLOBAL_TAS()) + +# Organize data +compdata <- comp_data %>% + select(scenario, year, variable, value, units, version) %>% + filter(scenario == "hector_ssp245.ini") %>% + filter(variable %in% vars) %>% + mutate(scenario = "ssp245") %>% + arrange(variable) + +# Access compdata version and commit +version <- compdata$version[1] +commit <- comp_data$commit[1] + +# Run core for SSP 245 and retrieve outputs +ssp245 <- file.path(BASE_DIR, "inst", "input", "hector_ssp245.ini") + +core <- newcore(ssp245) +invisible(run(core)) +output <- fetchvars(core, core$strtdate:core$enddate, vars, "ssp245") +shutdown(core) + +output <- output %>% + mutate(version = "latest") %>% + arrange(variable) + +# Find differences between versions +compdata <- compdata %>% + mutate(diff = output$value - compdata$value) +``` + +```{r, check-any-change, echo=FALSE, results='asis'} +# If there are no differences in outputs, do nothing +# Otherwise, run summary table and graph code +zeros <- rep(0, length(compdata$diff)) +SAME <- isTRUE(all.equal(zeros, compdata$diff, tolerance = 1e-7)) +if (SAME) { + msg <- paste0("The current pull request's outputs do not differ from ", + version, " (", commit, ").", sep = "") + ggsave("same_plot.png", plot = ggplot(), height = 6, width = 9) + cat(msg) +} else { + cat("The current pull request's outputs differ from ", + version, " (", commit, ") as follows:", sep = "") +} +``` + +```{r summary-info, echo = FALSE, message = FALSE} +if(!SAME) { + # Organize data + output %>% + select(latest_version = value) -> new_values + + both_versions <- compdata %>% + select(year, variable, value, comp_version = value) %>% + cbind(new_values) + + # Define params + years <- both_versions$year + + # Compute linear regression + linear <- by(both_versions, both_versions$variable, + function(x) lm (both_versions$latest_version ~ both_versions$comp_version)) + + # Access R squared + squares <- as.data.frame(sapply(linear, function(x) summary(x)$r.squared)) + colnames(squares) <- "R squared" + + # Extract residuals... + resid <- as.data.frame(sapply(linear, function(x) summary(x)$residuals)) + + # ...and calculate RMSE + RMSE <- function(res) { + r <- sqrt(mean(res^2)) + } + + error <- as.data.frame(lapply(resid, RMSE)) + error <- t(error) + + # Find mean of data + mean <- both_versions %>% + group_by(variable) %>% + summarize(mean(comp_version)) + + # Divide RMSE by means to normalize + NRMSE <- as.data.frame(error[,1] / mean[,2]) + colnames(NRMSE) <- "NRMSE" + + # Table + summary_table <- cbind(squares, NRMSE) + knitr::kable(summary_table, digits = 3, + format.args = list(nsmall = 3, scientific = FALSE)) +} +``` + +``` {r plots, include = FALSE} +if(!SAME) { + # Plot of numerical differences between versions + + # Access units for legend + units <- compdata %>% group_by(variable) %>% slice(1) + units <- units$units + # Sort variables so that legend works + vars <- sort(vars) + + diff_plot <- ggplot(compdata, aes(year, diff, color = variable)) + + geom_hline(yintercept = 0, alpha = 0.5) + + geom_line() + + facet_grid(~variable, scales = "free") + + scale_color_viridis_d(breaks = vars, labels = units) + + ggtitle(paste0("Differences relative to ", version, " (", commit, ")", " in ", compdata$scenario)) + + labs(x = "Year", y = "Difference in value", col = "Units") + + theme_bw() + + # "Note that if an image is an output of your ML workflow (i.e., it is produced + # by your workflow), you will need to use the cml-publish function to include + # it a CML report." https://github.com/iterative/cml#cml-reports + # So instead of printing the graph, we save it to a file + ggsave("diff_plot.png", plot = diff_plot, height = 6, width = 9) + + # Plot of new commit values against comparison data + new_comp <- compdata %>% + mutate(new_value = output$value, + new_version = output$version) + + comp_plot <- ggplot(new_comp) + + geom_line(aes(year, value, color = version, linetype = units)) + + geom_line(aes(year, new_value, color = new_version, linetype = units)) + + scale_linetype_manual(values = c(5, 4, 1)) + + facet_wrap(~variable, scales = "free_y") + + scale_color_viridis_d(end = 0.5) + + ggtitle(paste0("Differences in output values relative to ", version, " (", commit, ")", " in ", compdata$scenario)) + + labs(x = "Year", y = "Value", color = "Version", linetype = "Units") + + theme_bw() + + ggsave("comp_plot.png", plot = comp_plot, height = 6, width = 9) +} +``` diff --git a/scripts/README.md b/scripts/README.md new file mode 100644 index 000000000..e5a6f472d --- /dev/null +++ b/scripts/README.md @@ -0,0 +1,7 @@ +Note on the scripts directory +====== + +This directory is home to various scripts. When adding a file, please update the `README.md` to include a short description to prevent future confusion. + +* OutputDifferences.md +This contains the code for `leeyabot` which produces a summary table and graphs that are automatically commented on PRs. diff --git a/scripts/R_outputs.R b/scripts/R_outputs.R new file mode 100644 index 000000000..91b6c96cb --- /dev/null +++ b/scripts/R_outputs.R @@ -0,0 +1,43 @@ +# This script parses information from rcpp_constants.cpp file to create a table of the +# R functions that can be used to fetch Hector outputs, their strings names, & units. + +# Load the hector package +devtools::load_all() + +# Load the inputs_params.csv, it will be used to seperate the inputs from the outputs. +input_params <- read.csv(file.path("data-raw", "input_params.csv")) + +# Read ini the contents of the rcpp file. +lines <- readLines(file.path("src", "rcpp_constants.cpp")) + +# Identify the lines of the script where the R function names are defined. +conditions <- (grepl("String ", x = lines) & !grepl(";", x = lines) & !grepl("// ", x = lines)) +string_names <- lines[conditions] + +# Clean up the selected lines of the cpp code so that the vector fxn_names only contains the names of +# the R functions. Evaluate the R functions and save the results. +removed_String <- gsub(pattern = "String |", replacement = "", x = string_names) +fxn_names <- unlist(lapply(removed_String, function(s){ unlist(strsplit(x = s, split = "\\("))[[1]]})) +fxn_vals <- sapply(fxn_names, function(n){tryCatch({match.fun(n)()}, error = function(e){NA})}, USE.NAMES = FALSE) + +# Store the R function names & results in a data frame. Clean up the data frame so that +# it only contains outputs. +func_df <- na.omit(data.frame(R_function = fxn_names, name = fxn_vals)) +func_df <- func_df[!(func_df$name %in% input_params$parameter), ] +outputs <- func_df[!grepl(pattern = "constrain|uptake|emissionns|getData|setData", x = func_df$name), ] +outputs <- outputs[!grepl(pattern = "PREFIX|BIOME_SPLIT|GET|SET|WARMINGFACTOR|LO_WARMING_RATIO", x = outputs$R_function), ] + +# Format the R function name to look more like the R function. +outputs$R_function <- unlist(lapply(outputs$R_function, function(s){paste0(s, "()")})) + +# Use fetchvars to get results for all of the Hector output in order to add the +# unit information to the output table. +path <- file.path("inst", "input", "hector_ssp245.ini") +hc <- newcore(path) +run(hc, runtodate = 1900) +hector_results <- fetchvars(hc, 1900, vars = outputs$name) + +# Format the Hector outputs into a nice kable that to be inserted +# the output article. +cbind(outputs, units = hector_results$units) %>% + knitr::kable(format = "markdown", row.names = FALSE) diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/CCSM4_pco2.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/CCSM4_pco2.csv deleted file mode 100644 index cf4712abf..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/CCSM4_pco2.csv +++ /dev/null @@ -1,98 +0,0 @@ -#global avg surface temperature from CCSM4 email communication 7/3/2014,,,,,,,,,,,, -,K,value,units,ctag,vtag,model,scenario,type,,,, -2005,278.613,5.463,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2006,278.631,5.481,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2007,278.845,5.695,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2008,278.667,5.517,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2009,278.63,5.48,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2010,278.868,5.718,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2011,278.961,5.811,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2012,278.877,5.727,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2013,279.056,5.906,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2014,278.917,5.767,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2015,279.081,5.931,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2016,279.151,6.001,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2017,279.104,5.954,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2018,278.875,5.725,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2019,278.969,5.819,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2020,279.311,6.161,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2021,279.491,6.341,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2022,279.178,6.028,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2023,279.179,6.029,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2024,279.257,6.107,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2025,279.301,6.151,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2026,279.415,6.265,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2027,279.327,6.177,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2028,279.414,6.264,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2029,279.3,6.15,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2030,279.514,6.364,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2031,279.468,6.318,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2032,279.355,6.205,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2033,279.325,6.175,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2034,279.439,6.289,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2035,279.335,6.185,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2036,279.21,6.06,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2037,279.679,6.529,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2038,279.512,6.362,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2039,279.559,6.409,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2040,279.592,6.442,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2041,279.72,6.57,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2042,279.879,6.729,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2043,279.843,6.693,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2044,279.705,6.555,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2045,279.634,6.484,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2046,279.937,6.787,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2047,280.145,6.995,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2048,279.801,6.651,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2049,279.601,6.451,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2050,279.793,6.643,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2051,280.256,7.106,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2054,279.938,6.788,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2055,279.949,6.799,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2056,279.922,6.772,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2059,280.293,7.143,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2060,280.391,7.241,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2061,280.402,7.252,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2062,280.359,7.209,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2063,280.277,7.127,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2064,280.348,7.198,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2065,280.325,7.175,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2066,280.416,7.266,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2067,280.347,7.197,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2068,280.451,7.301,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2069,280.483,7.333,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2070,280.337,7.187,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2071,280.437,7.287,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2072,280.654,7.504,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2073,280.697,7.547,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2074,280.516,7.366,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2075,280.5,7.35,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2076,280.56,7.41,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2077,280.72,7.57,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2078,280.604,7.454,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2079,280.911,7.761,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2080,280.659,7.509,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2081,280.584,7.434,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2082,280.626,7.476,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2083,280.594,7.444,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2084,280.495,7.345,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2085,280.71,7.56,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2086,281.133,7.983,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2087,280.847,7.697,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2088,280.756,7.606,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2089,280.678,7.528,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2090,280.752,7.602,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2091,280.688,7.538,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2092,280.823,7.673,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2093,281.005,7.855,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2094,280.805,7.655,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2095,280.52,7.37,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2096,280.62,7.47,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2097,281.028,7.878,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2098,280.658,7.508,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2099,280.511,7.361,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2100,280.815,7.665,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/CCSM4_temp.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/CCSM4_temp.csv deleted file mode 100644 index cf4712abf..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/CCSM4_temp.csv +++ /dev/null @@ -1,98 +0,0 @@ -#global avg surface temperature from CCSM4 email communication 7/3/2014,,,,,,,,,,,, -,K,value,units,ctag,vtag,model,scenario,type,,,, -2005,278.613,5.463,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2006,278.631,5.481,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2007,278.845,5.695,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2008,278.667,5.517,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2009,278.63,5.48,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2010,278.868,5.718,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2011,278.961,5.811,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2012,278.877,5.727,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2013,279.056,5.906,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2014,278.917,5.767,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2015,279.081,5.931,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2016,279.151,6.001,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2017,279.104,5.954,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2018,278.875,5.725,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2019,278.969,5.819,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2020,279.311,6.161,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2021,279.491,6.341,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2022,279.178,6.028,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2023,279.179,6.029,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2024,279.257,6.107,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2025,279.301,6.151,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2026,279.415,6.265,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2027,279.327,6.177,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2028,279.414,6.264,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2029,279.3,6.15,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2030,279.514,6.364,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2031,279.468,6.318,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2032,279.355,6.205,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2033,279.325,6.175,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2034,279.439,6.289,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2035,279.335,6.185,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2036,279.21,6.06,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2037,279.679,6.529,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2038,279.512,6.362,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2039,279.559,6.409,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2040,279.592,6.442,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2041,279.72,6.57,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2042,279.879,6.729,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2043,279.843,6.693,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2044,279.705,6.555,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2045,279.634,6.484,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2046,279.937,6.787,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2047,280.145,6.995,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2048,279.801,6.651,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2049,279.601,6.451,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2050,279.793,6.643,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2051,280.256,7.106,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2054,279.938,6.788,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2055,279.949,6.799,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2056,279.922,6.772,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2059,280.293,7.143,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2060,280.391,7.241,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2061,280.402,7.252,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2062,280.359,7.209,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2063,280.277,7.127,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2064,280.348,7.198,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2065,280.325,7.175,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2066,280.416,7.266,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2067,280.347,7.197,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2068,280.451,7.301,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2069,280.483,7.333,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2070,280.337,7.187,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2071,280.437,7.287,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2072,280.654,7.504,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2073,280.697,7.547,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2074,280.516,7.366,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2075,280.5,7.35,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2076,280.56,7.41,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2077,280.72,7.57,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2078,280.604,7.454,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2079,280.911,7.761,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2080,280.659,7.509,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2081,280.584,7.434,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2082,280.626,7.476,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2083,280.594,7.444,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2084,280.495,7.345,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2085,280.71,7.56,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2086,281.133,7.983,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2087,280.847,7.697,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2088,280.756,7.606,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2089,280.678,7.528,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2090,280.752,7.602,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2091,280.688,7.538,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2092,280.823,7.673,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2093,281.005,7.855,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2094,280.805,7.655,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2095,280.52,7.37,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2096,280.62,7.47,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2097,281.028,7.878,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2098,280.658,7.508,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2099,280.511,7.361,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2100,280.815,7.665,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/hist/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/hist/ensemble_mean_model.csv deleted file mode 100644 index 3e87f2651..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/hist/ensemble_mean_model.csv +++ /dev/null @@ -1,1873 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1850,"Simulated","ppmv CO2","global",288.617533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1851,"Simulated","ppmv CO2","global",288.4534 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1852,"Simulated","ppmv CO2","global",288.8388 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1853,"Simulated","ppmv CO2","global",289.0769 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1854,"Simulated","ppmv CO2","global",289.1285 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1855,"Simulated","ppmv CO2","global",288.8738 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1856,"Simulated","ppmv CO2","global",288.806966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1857,"Simulated","ppmv CO2","global",288.644833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1858,"Simulated","ppmv CO2","global",288.3537 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1859,"Simulated","ppmv CO2","global",288.122533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1860,"Simulated","ppmv CO2","global",288.0458 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1861,"Simulated","ppmv CO2","global",288.1408 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1862,"Simulated","ppmv CO2","global",288.743266666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1863,"Simulated","ppmv CO2","global",288.869433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1864,"Simulated","ppmv CO2","global",288.5819 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1865,"Simulated","ppmv CO2","global",288.436433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1866,"Simulated","ppmv CO2","global",288.4592 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1867,"Simulated","ppmv CO2","global",288.836366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1868,"Simulated","ppmv CO2","global",288.8973 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1869,"Simulated","ppmv CO2","global",288.9415 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1870,"Simulated","ppmv CO2","global",288.7341 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1871,"Simulated","ppmv CO2","global",289.331666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1872,"Simulated","ppmv CO2","global",289.752566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1873,"Simulated","ppmv CO2","global",289.875233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1874,"Simulated","ppmv CO2","global",290.404866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1875,"Simulated","ppmv CO2","global",290.598266666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1876,"Simulated","ppmv CO2","global",290.2969 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1877,"Simulated","ppmv CO2","global",290.058366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1878,"Simulated","ppmv CO2","global",290.5741 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1879,"Simulated","ppmv CO2","global",290.7713 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1880,"Simulated","ppmv CO2","global",290.890133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1881,"Simulated","ppmv CO2","global",290.8681 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1882,"Simulated","ppmv CO2","global",290.7926 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1883,"Simulated","ppmv CO2","global",291.4797 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1884,"Simulated","ppmv CO2","global",291.0582 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1885,"Simulated","ppmv CO2","global",290.148633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1886,"Simulated","ppmv CO2","global",289.7319 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1887,"Simulated","ppmv CO2","global",289.7105 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1888,"Simulated","ppmv CO2","global",289.577333333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1889,"Simulated","ppmv CO2","global",289.8144 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1890,"Simulated","ppmv CO2","global",289.901566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1891,"Simulated","ppmv CO2","global",289.7977 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1892,"Simulated","ppmv CO2","global",289.7867 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1893,"Simulated","ppmv CO2","global",289.700933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1894,"Simulated","ppmv CO2","global",290.040666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1895,"Simulated","ppmv CO2","global",289.733066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1896,"Simulated","ppmv CO2","global",289.5657 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1897,"Simulated","ppmv CO2","global",289.8857 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1898,"Simulated","ppmv CO2","global",290.235066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1899,"Simulated","ppmv CO2","global",290.583133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1900,"Simulated","ppmv CO2","global",290.948133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1901,"Simulated","ppmv CO2","global",291.069533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1902,"Simulated","ppmv CO2","global",291.325333333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1903,"Simulated","ppmv CO2","global",291.924 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1904,"Simulated","ppmv CO2","global",292.5151 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1905,"Simulated","ppmv CO2","global",292.2349 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1906,"Simulated","ppmv CO2","global",292.164833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1907,"Simulated","ppmv CO2","global",292.1939 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1908,"Simulated","ppmv CO2","global",292.734466666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1909,"Simulated","ppmv CO2","global",293.242633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1910,"Simulated","ppmv CO2","global",293.517633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1911,"Simulated","ppmv CO2","global",293.838433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1912,"Simulated","ppmv CO2","global",294.1648 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1913,"Simulated","ppmv CO2","global",294.799233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1914,"Simulated","ppmv CO2","global",295.163933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1915,"Simulated","ppmv CO2","global",295.1864 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1916,"Simulated","ppmv CO2","global",295.6219 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1917,"Simulated","ppmv CO2","global",296.215966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1918,"Simulated","ppmv CO2","global",296.525933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1919,"Simulated","ppmv CO2","global",296.747066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1920,"Simulated","ppmv CO2","global",296.817766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1921,"Simulated","ppmv CO2","global",297.063 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1922,"Simulated","ppmv CO2","global",297.393166666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1923,"Simulated","ppmv CO2","global",298.061866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1924,"Simulated","ppmv CO2","global",298.312533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1925,"Simulated","ppmv CO2","global",298.5587 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1926,"Simulated","ppmv CO2","global",299.078 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1927,"Simulated","ppmv CO2","global",299.7574 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1928,"Simulated","ppmv CO2","global",300.203933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1929,"Simulated","ppmv CO2","global",300.7766 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1930,"Simulated","ppmv CO2","global",300.907766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1931,"Simulated","ppmv CO2","global",300.604166666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1932,"Simulated","ppmv CO2","global",300.980666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1933,"Simulated","ppmv CO2","global",301.657766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1934,"Simulated","ppmv CO2","global",301.907433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1935,"Simulated","ppmv CO2","global",302.083766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1936,"Simulated","ppmv CO2","global",301.491833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1937,"Simulated","ppmv CO2","global",301.814066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1938,"Simulated","ppmv CO2","global",302.3909 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1939,"Simulated","ppmv CO2","global",303.020766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1940,"Simulated","ppmv CO2","global",303.246733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1941,"Simulated","ppmv CO2","global",303.2811 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1942,"Simulated","ppmv CO2","global",303.9517 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1943,"Simulated","ppmv CO2","global",304.592866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1944,"Simulated","ppmv CO2","global",304.801066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1945,"Simulated","ppmv CO2","global",305.308366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1946,"Simulated","ppmv CO2","global",305.658666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1947,"Simulated","ppmv CO2","global",305.684233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1948,"Simulated","ppmv CO2","global",306.428566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1949,"Simulated","ppmv CO2","global",306.8936 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1950,"Simulated","ppmv CO2","global",307.112833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1951,"Simulated","ppmv CO2","global",307.6232 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1952,"Simulated","ppmv CO2","global",308.4225 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1953,"Simulated","ppmv CO2","global",309.2584 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1954,"Simulated","ppmv CO2","global",309.719433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1955,"Simulated","ppmv CO2","global",310.198233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1956,"Simulated","ppmv CO2","global",310.516466666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1957,"Simulated","ppmv CO2","global",311.2354 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1958,"Simulated","ppmv CO2","global",312.166 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1959,"Simulated","ppmv CO2","global",313.174733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1960,"Simulated","ppmv CO2","global",314.0637 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1961,"Simulated","ppmv CO2","global",314.865333333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1962,"Simulated","ppmv CO2","global",316.241733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1963,"Simulated","ppmv CO2","global",317.528033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1964,"Simulated","ppmv CO2","global",318.084133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1965,"Simulated","ppmv CO2","global",318.765133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1966,"Simulated","ppmv CO2","global",319.3191 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1967,"Simulated","ppmv CO2","global",320.085633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1968,"Simulated","ppmv CO2","global",320.717966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1969,"Simulated","ppmv CO2","global",321.7016 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1970,"Simulated","ppmv CO2","global",322.417433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1971,"Simulated","ppmv CO2","global",323.570733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1972,"Simulated","ppmv CO2","global",324.9192 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1973,"Simulated","ppmv CO2","global",325.8786 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1974,"Simulated","ppmv CO2","global",327.431933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1975,"Simulated","ppmv CO2","global",329.704966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1976,"Simulated","ppmv CO2","global",331.21 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1977,"Simulated","ppmv CO2","global",332.5856 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1978,"Simulated","ppmv CO2","global",334.314933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1979,"Simulated","ppmv CO2","global",335.4854 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1980,"Simulated","ppmv CO2","global",336.941766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1981,"Simulated","ppmv CO2","global",338.804766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1982,"Simulated","ppmv CO2","global",340.389666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1983,"Simulated","ppmv CO2","global",341.8687 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1984,"Simulated","ppmv CO2","global",343.71 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1985,"Simulated","ppmv CO2","global",345.1661 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1986,"Simulated","ppmv CO2","global",346.742033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1987,"Simulated","ppmv CO2","global",348.593966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1988,"Simulated","ppmv CO2","global",350.231366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1989,"Simulated","ppmv CO2","global",352.217933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1990,"Simulated","ppmv CO2","global",354.494966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1991,"Simulated","ppmv CO2","global",356.067566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1992,"Simulated","ppmv CO2","global",357.653833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1993,"Simulated","ppmv CO2","global",360.0821 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1994,"Simulated","ppmv CO2","global",362.053566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1995,"Simulated","ppmv CO2","global",363.538966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1996,"Simulated","ppmv CO2","global",365.627766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1997,"Simulated","ppmv CO2","global",367.1302 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1998,"Simulated","ppmv CO2","global",368.7632 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1999,"Simulated","ppmv CO2","global",370.971066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2000,"Simulated","ppmv CO2","global",373.532266666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2001,"Simulated","ppmv CO2","global",375.8911 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2002,"Simulated","ppmv CO2","global",377.8793 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2003,"Simulated","ppmv CO2","global",379.9574 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2004,"Simulated","ppmv CO2","global",381.780666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2005,"Simulated","ppmv CO2","global",384.710133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1850,"Simulated","ppmv CO2","HL",288.574966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1851,"Simulated","ppmv CO2","HL",288.3834 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1852,"Simulated","ppmv CO2","HL",288.6578 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1853,"Simulated","ppmv CO2","HL",288.897533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1854,"Simulated","ppmv CO2","HL",288.950466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1855,"Simulated","ppmv CO2","HL",288.803866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1856,"Simulated","ppmv CO2","HL",288.8046 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1857,"Simulated","ppmv CO2","HL",288.637666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1858,"Simulated","ppmv CO2","HL",288.429 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1859,"Simulated","ppmv CO2","HL",288.178233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1860,"Simulated","ppmv CO2","HL",288.0812 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1861,"Simulated","ppmv CO2","HL",288.074966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1862,"Simulated","ppmv CO2","HL",288.517766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1863,"Simulated","ppmv CO2","HL",288.647366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1864,"Simulated","ppmv CO2","HL",288.523133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1865,"Simulated","ppmv CO2","HL",288.444433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1866,"Simulated","ppmv CO2","HL",288.4627 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1867,"Simulated","ppmv CO2","HL",288.695566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1868,"Simulated","ppmv CO2","HL",288.776833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1869,"Simulated","ppmv CO2","HL",288.840933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1870,"Simulated","ppmv CO2","HL",288.720833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1871,"Simulated","ppmv CO2","HL",289.121633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1872,"Simulated","ppmv CO2","HL",289.525833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1873,"Simulated","ppmv CO2","HL",289.649833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1874,"Simulated","ppmv CO2","HL",290.1163 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1875,"Simulated","ppmv CO2","HL",290.428166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1876,"Simulated","ppmv CO2","HL",290.236 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1877,"Simulated","ppmv CO2","HL",290.034066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1878,"Simulated","ppmv CO2","HL",290.417166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1879,"Simulated","ppmv CO2","HL",290.6464 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1880,"Simulated","ppmv CO2","HL",290.697 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1881,"Simulated","ppmv CO2","HL",290.7732 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1882,"Simulated","ppmv CO2","HL",290.688666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1883,"Simulated","ppmv CO2","HL",291.2397 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1884,"Simulated","ppmv CO2","HL",291.089 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1885,"Simulated","ppmv CO2","HL",290.323433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1886,"Simulated","ppmv CO2","HL",289.9526 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1887,"Simulated","ppmv CO2","HL",289.818966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1888,"Simulated","ppmv CO2","HL",289.664233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1889,"Simulated","ppmv CO2","HL",289.723633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1890,"Simulated","ppmv CO2","HL",289.8104 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1891,"Simulated","ppmv CO2","HL",289.7473 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1892,"Simulated","ppmv CO2","HL",289.748866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1893,"Simulated","ppmv CO2","HL",289.670566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1894,"Simulated","ppmv CO2","HL",289.872666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1895,"Simulated","ppmv CO2","HL",289.764733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1896,"Simulated","ppmv CO2","HL",289.5736 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1897,"Simulated","ppmv CO2","HL",289.833166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1898,"Simulated","ppmv CO2","HL",290.0738 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1899,"Simulated","ppmv CO2","HL",290.371466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1900,"Simulated","ppmv CO2","HL",290.755 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1901,"Simulated","ppmv CO2","HL",290.931366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1902,"Simulated","ppmv CO2","HL",291.149666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1903,"Simulated","ppmv CO2","HL",291.5737 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1904,"Simulated","ppmv CO2","HL",292.177766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1905,"Simulated","ppmv CO2","HL",292.150566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1906,"Simulated","ppmv CO2","HL",292.114733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1907,"Simulated","ppmv CO2","HL",292.232266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1908,"Simulated","ppmv CO2","HL",292.581566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1909,"Simulated","ppmv CO2","HL",293.033766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1910,"Simulated","ppmv CO2","HL",293.2688 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1911,"Simulated","ppmv CO2","HL",293.613533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1912,"Simulated","ppmv CO2","HL",293.9529 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1913,"Simulated","ppmv CO2","HL",294.4886 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1914,"Simulated","ppmv CO2","HL",294.9308 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1915,"Simulated","ppmv CO2","HL",295.0241 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1916,"Simulated","ppmv CO2","HL",295.380566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1917,"Simulated","ppmv CO2","HL",295.920666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1918,"Simulated","ppmv CO2","HL",296.314333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1919,"Simulated","ppmv CO2","HL",296.5209 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1920,"Simulated","ppmv CO2","HL",296.694166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1921,"Simulated","ppmv CO2","HL",296.8968 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1922,"Simulated","ppmv CO2","HL",297.2211 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1923,"Simulated","ppmv CO2","HL",297.701133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1924,"Simulated","ppmv CO2","HL",298.111 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1925,"Simulated","ppmv CO2","HL",298.3404 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1926,"Simulated","ppmv CO2","HL",298.832733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1927,"Simulated","ppmv CO2","HL",299.4305 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1928,"Simulated","ppmv CO2","HL",299.927033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1929,"Simulated","ppmv CO2","HL",300.418866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1930,"Simulated","ppmv CO2","HL",300.7059 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1931,"Simulated","ppmv CO2","HL",300.524633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1932,"Simulated","ppmv CO2","HL",300.844066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1933,"Simulated","ppmv CO2","HL",301.381266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1934,"Simulated","ppmv CO2","HL",301.686633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1935,"Simulated","ppmv CO2","HL",301.9293 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1936,"Simulated","ppmv CO2","HL",301.586733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1937,"Simulated","ppmv CO2","HL",301.727833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1938,"Simulated","ppmv CO2","HL",302.2499 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1939,"Simulated","ppmv CO2","HL",302.753766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1940,"Simulated","ppmv CO2","HL",303.044266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1941,"Simulated","ppmv CO2","HL",303.133733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1942,"Simulated","ppmv CO2","HL",303.6331 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1943,"Simulated","ppmv CO2","HL",304.347833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1944,"Simulated","ppmv CO2","HL",304.587566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1945,"Simulated","ppmv CO2","HL",305.025933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1946,"Simulated","ppmv CO2","HL",305.494866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1947,"Simulated","ppmv CO2","HL",305.5314 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1948,"Simulated","ppmv CO2","HL",306.1414 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1949,"Simulated","ppmv CO2","HL",306.6528 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1950,"Simulated","ppmv CO2","HL",306.896433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1951,"Simulated","ppmv CO2","HL",307.357533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1952,"Simulated","ppmv CO2","HL",308.086133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1953,"Simulated","ppmv CO2","HL",308.8735 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1954,"Simulated","ppmv CO2","HL",309.4233 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1955,"Simulated","ppmv CO2","HL",309.9241 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1956,"Simulated","ppmv CO2","HL",310.299033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1957,"Simulated","ppmv CO2","HL",310.8831 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1958,"Simulated","ppmv CO2","HL",311.813466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1959,"Simulated","ppmv CO2","HL",312.735733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1960,"Simulated","ppmv CO2","HL",313.648633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1961,"Simulated","ppmv CO2","HL",314.386866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1962,"Simulated","ppmv CO2","HL",315.660733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1963,"Simulated","ppmv CO2","HL",316.946 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1964,"Simulated","ppmv CO2","HL",317.654666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1965,"Simulated","ppmv CO2","HL",318.3942 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1966,"Simulated","ppmv CO2","HL",319.059933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1967,"Simulated","ppmv CO2","HL",319.826666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1968,"Simulated","ppmv CO2","HL",320.424533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1969,"Simulated","ppmv CO2","HL",321.326933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1970,"Simulated","ppmv CO2","HL",322.113433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1971,"Simulated","ppmv CO2","HL",323.112633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1972,"Simulated","ppmv CO2","HL",324.427533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1973,"Simulated","ppmv CO2","HL",325.431833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1974,"Simulated","ppmv CO2","HL",326.7708 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1975,"Simulated","ppmv CO2","HL",328.8116 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1976,"Simulated","ppmv CO2","HL",330.451766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1977,"Simulated","ppmv CO2","HL",331.869666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1978,"Simulated","ppmv CO2","HL",333.559766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1979,"Simulated","ppmv CO2","HL",334.927466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1980,"Simulated","ppmv CO2","HL",336.2948 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1981,"Simulated","ppmv CO2","HL",338.0178 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1982,"Simulated","ppmv CO2","HL",339.596733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1983,"Simulated","ppmv CO2","HL",341.0907 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1984,"Simulated","ppmv CO2","HL",342.873733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1985,"Simulated","ppmv CO2","HL",344.4674 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1986,"Simulated","ppmv CO2","HL",346.0156 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1987,"Simulated","ppmv CO2","HL",347.858133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1988,"Simulated","ppmv CO2","HL",349.468666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1989,"Simulated","ppmv CO2","HL",351.337266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1990,"Simulated","ppmv CO2","HL",353.5333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1991,"Simulated","ppmv CO2","HL",355.2462 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1992,"Simulated","ppmv CO2","HL",356.823266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1993,"Simulated","ppmv CO2","HL",359.102566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1994,"Simulated","ppmv CO2","HL",361.1851 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1995,"Simulated","ppmv CO2","HL",362.6913 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1996,"Simulated","ppmv CO2","HL",364.766033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1997,"Simulated","ppmv CO2","HL",366.395333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1998,"Simulated","ppmv CO2","HL",368.002833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1999,"Simulated","ppmv CO2","HL",370.035266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2000,"Simulated","ppmv CO2","HL",372.380266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2001,"Simulated","ppmv CO2","HL",374.767433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2002,"Simulated","ppmv CO2","HL",376.8003 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2003,"Simulated","ppmv CO2","HL",378.944433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2004,"Simulated","ppmv CO2","HL",380.8543 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2005,"Simulated","ppmv CO2","HL",383.508533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1850,"Simulated","ppmv CO2","LL",288.626466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1851,"Simulated","ppmv CO2","LL",288.468 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1852,"Simulated","ppmv CO2","LL",288.8766 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1853,"Simulated","ppmv CO2","LL",289.114333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1854,"Simulated","ppmv CO2","LL",289.1657 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1855,"Simulated","ppmv CO2","LL",288.8884 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1856,"Simulated","ppmv CO2","LL",288.807466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1857,"Simulated","ppmv CO2","LL",288.646333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1858,"Simulated","ppmv CO2","LL",288.338 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1859,"Simulated","ppmv CO2","LL",288.1109 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1860,"Simulated","ppmv CO2","LL",288.038433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1861,"Simulated","ppmv CO2","LL",288.154566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1862,"Simulated","ppmv CO2","LL",288.790366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1863,"Simulated","ppmv CO2","LL",288.915833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1864,"Simulated","ppmv CO2","LL",288.594133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1865,"Simulated","ppmv CO2","LL",288.434766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1866,"Simulated","ppmv CO2","LL",288.458466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1867,"Simulated","ppmv CO2","LL",288.865766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1868,"Simulated","ppmv CO2","LL",288.922466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1869,"Simulated","ppmv CO2","LL",288.9625 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1870,"Simulated","ppmv CO2","LL",288.736866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1871,"Simulated","ppmv CO2","LL",289.3755 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1872,"Simulated","ppmv CO2","LL",289.7999 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1873,"Simulated","ppmv CO2","LL",289.922266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1874,"Simulated","ppmv CO2","LL",290.4651 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1875,"Simulated","ppmv CO2","LL",290.6338 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1876,"Simulated","ppmv CO2","LL",290.309633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1877,"Simulated","ppmv CO2","LL",290.0634 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1878,"Simulated","ppmv CO2","LL",290.6069 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1879,"Simulated","ppmv CO2","LL",290.797333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1880,"Simulated","ppmv CO2","LL",290.930433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1881,"Simulated","ppmv CO2","LL",290.887933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1882,"Simulated","ppmv CO2","LL",290.814333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1883,"Simulated","ppmv CO2","LL",291.529833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1884,"Simulated","ppmv CO2","LL",291.051766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1885,"Simulated","ppmv CO2","LL",290.112166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1886,"Simulated","ppmv CO2","LL",289.685866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1887,"Simulated","ppmv CO2","LL",289.687833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1888,"Simulated","ppmv CO2","LL",289.559166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1889,"Simulated","ppmv CO2","LL",289.833366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1890,"Simulated","ppmv CO2","LL",289.9206 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1891,"Simulated","ppmv CO2","LL",289.808233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1892,"Simulated","ppmv CO2","LL",289.7946 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1893,"Simulated","ppmv CO2","LL",289.7073 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1894,"Simulated","ppmv CO2","LL",290.075733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1895,"Simulated","ppmv CO2","LL",289.726433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1896,"Simulated","ppmv CO2","LL",289.564 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1897,"Simulated","ppmv CO2","LL",289.8967 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1898,"Simulated","ppmv CO2","LL",290.2687 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1899,"Simulated","ppmv CO2","LL",290.627333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1900,"Simulated","ppmv CO2","LL",290.988433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1901,"Simulated","ppmv CO2","LL",291.0984 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1902,"Simulated","ppmv CO2","LL",291.362 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1903,"Simulated","ppmv CO2","LL",291.997133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1904,"Simulated","ppmv CO2","LL",292.585533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1905,"Simulated","ppmv CO2","LL",292.252533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1906,"Simulated","ppmv CO2","LL",292.175266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1907,"Simulated","ppmv CO2","LL",292.1859 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1908,"Simulated","ppmv CO2","LL",292.766333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1909,"Simulated","ppmv CO2","LL",293.286233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1910,"Simulated","ppmv CO2","LL",293.569566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1911,"Simulated","ppmv CO2","LL",293.8854 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1912,"Simulated","ppmv CO2","LL",294.209033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1913,"Simulated","ppmv CO2","LL",294.864066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1914,"Simulated","ppmv CO2","LL",295.2126 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1915,"Simulated","ppmv CO2","LL",295.2203 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1916,"Simulated","ppmv CO2","LL",295.6723 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1917,"Simulated","ppmv CO2","LL",296.277633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1918,"Simulated","ppmv CO2","LL",296.5701 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1919,"Simulated","ppmv CO2","LL",296.7943 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1920,"Simulated","ppmv CO2","LL",296.843566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1921,"Simulated","ppmv CO2","LL",297.097666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1922,"Simulated","ppmv CO2","LL",297.429066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1923,"Simulated","ppmv CO2","LL",298.1372 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1924,"Simulated","ppmv CO2","LL",298.354633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1925,"Simulated","ppmv CO2","LL",298.604266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1926,"Simulated","ppmv CO2","LL",299.1292 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1927,"Simulated","ppmv CO2","LL",299.8257 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1928,"Simulated","ppmv CO2","LL",300.261766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1929,"Simulated","ppmv CO2","LL",300.851233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1930,"Simulated","ppmv CO2","LL",300.949866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1931,"Simulated","ppmv CO2","LL",300.6208 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1932,"Simulated","ppmv CO2","LL",301.0092 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1933,"Simulated","ppmv CO2","LL",301.715433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1934,"Simulated","ppmv CO2","LL",301.953533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1935,"Simulated","ppmv CO2","LL",302.116 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1936,"Simulated","ppmv CO2","LL",301.472 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1937,"Simulated","ppmv CO2","LL",301.832133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1938,"Simulated","ppmv CO2","LL",302.420366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1939,"Simulated","ppmv CO2","LL",303.076533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1940,"Simulated","ppmv CO2","LL",303.289 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1941,"Simulated","ppmv CO2","LL",303.3119 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1942,"Simulated","ppmv CO2","LL",304.018233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1943,"Simulated","ppmv CO2","LL",304.644 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1944,"Simulated","ppmv CO2","LL",304.845666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1945,"Simulated","ppmv CO2","LL",305.367333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1946,"Simulated","ppmv CO2","LL",305.692833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1947,"Simulated","ppmv CO2","LL",305.716166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1948,"Simulated","ppmv CO2","LL",306.488533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1949,"Simulated","ppmv CO2","LL",306.943866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1950,"Simulated","ppmv CO2","LL",307.158033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1951,"Simulated","ppmv CO2","LL",307.678666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1952,"Simulated","ppmv CO2","LL",308.492766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1953,"Simulated","ppmv CO2","LL",309.338766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1954,"Simulated","ppmv CO2","LL",309.781266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1955,"Simulated","ppmv CO2","LL",310.255433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1956,"Simulated","ppmv CO2","LL",310.561866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1957,"Simulated","ppmv CO2","LL",311.308933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1958,"Simulated","ppmv CO2","LL",312.2396 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1959,"Simulated","ppmv CO2","LL",313.266366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1960,"Simulated","ppmv CO2","LL",314.150366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1961,"Simulated","ppmv CO2","LL",314.9652 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1962,"Simulated","ppmv CO2","LL",316.363033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1963,"Simulated","ppmv CO2","LL",317.6495 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1964,"Simulated","ppmv CO2","LL",318.1738 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1965,"Simulated","ppmv CO2","LL",318.842566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1966,"Simulated","ppmv CO2","LL",319.3732 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1967,"Simulated","ppmv CO2","LL",320.1397 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1968,"Simulated","ppmv CO2","LL",320.779233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1969,"Simulated","ppmv CO2","LL",321.779833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1970,"Simulated","ppmv CO2","LL",322.480866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1971,"Simulated","ppmv CO2","LL",323.666366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1972,"Simulated","ppmv CO2","LL",325.021866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1973,"Simulated","ppmv CO2","LL",325.9719 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1974,"Simulated","ppmv CO2","LL",327.57 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1975,"Simulated","ppmv CO2","LL",329.891466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1976,"Simulated","ppmv CO2","LL",331.368333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1977,"Simulated","ppmv CO2","LL",332.735066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1978,"Simulated","ppmv CO2","LL",334.4726 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1979,"Simulated","ppmv CO2","LL",335.601866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1980,"Simulated","ppmv CO2","LL",337.0768 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1981,"Simulated","ppmv CO2","LL",338.969033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1982,"Simulated","ppmv CO2","LL",340.555233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1983,"Simulated","ppmv CO2","LL",342.031133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1984,"Simulated","ppmv CO2","LL",343.884566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1985,"Simulated","ppmv CO2","LL",345.311933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1986,"Simulated","ppmv CO2","LL",346.893666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1987,"Simulated","ppmv CO2","LL",348.747533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1988,"Simulated","ppmv CO2","LL",350.3906 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1989,"Simulated","ppmv CO2","LL",352.401833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1990,"Simulated","ppmv CO2","LL",354.695766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1991,"Simulated","ppmv CO2","LL",356.239066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1992,"Simulated","ppmv CO2","LL",357.827266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1993,"Simulated","ppmv CO2","LL",360.286666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1994,"Simulated","ppmv CO2","LL",362.234866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1995,"Simulated","ppmv CO2","LL",363.715966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1996,"Simulated","ppmv CO2","LL",365.807733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1997,"Simulated","ppmv CO2","LL",367.283633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1998,"Simulated","ppmv CO2","LL",368.921966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1999,"Simulated","ppmv CO2","LL",371.166466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2000,"Simulated","ppmv CO2","LL",373.772766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2001,"Simulated","ppmv CO2","LL",376.1257 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2002,"Simulated","ppmv CO2","LL",378.104566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2003,"Simulated","ppmv CO2","LL",380.168866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2004,"Simulated","ppmv CO2","LL",381.974066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2005,"Simulated","ppmv CO2","LL",384.961 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1850,"Simulated","ppmv CO2","global",283.9229 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1851,"Simulated","ppmv CO2","global",284.0351 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1852,"Simulated","ppmv CO2","global",283.6682 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1853,"Simulated","ppmv CO2","global",283.9208 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1854,"Simulated","ppmv CO2","global",284.428 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1855,"Simulated","ppmv CO2","global",284.7773 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1856,"Simulated","ppmv CO2","global",285.0639 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1857,"Simulated","ppmv CO2","global",285.4244 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1858,"Simulated","ppmv CO2","global",285.4983 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1859,"Simulated","ppmv CO2","global",285.4399 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1860,"Simulated","ppmv CO2","global",285.8116 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1861,"Simulated","ppmv CO2","global",285.7951 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1862,"Simulated","ppmv CO2","global",286.0426 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1863,"Simulated","ppmv CO2","global",286.1184 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1864,"Simulated","ppmv CO2","global",286.0779 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1865,"Simulated","ppmv CO2","global",285.99 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1866,"Simulated","ppmv CO2","global",286.4302 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1867,"Simulated","ppmv CO2","global",286.6725 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1868,"Simulated","ppmv CO2","global",286.5956 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1869,"Simulated","ppmv CO2","global",286.5514 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1870,"Simulated","ppmv CO2","global",286.9672 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1871,"Simulated","ppmv CO2","global",287.5988 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1872,"Simulated","ppmv CO2","global",287.7669 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1873,"Simulated","ppmv CO2","global",287.6107 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1874,"Simulated","ppmv CO2","global",288.0605 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1875,"Simulated","ppmv CO2","global",288.2498 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1876,"Simulated","ppmv CO2","global",288.2283 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1877,"Simulated","ppmv CO2","global",288.3595 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1878,"Simulated","ppmv CO2","global",288.5756 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1879,"Simulated","ppmv CO2","global",288.6501 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1880,"Simulated","ppmv CO2","global",288.9465 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1881,"Simulated","ppmv CO2","global",289.5297 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1882,"Simulated","ppmv CO2","global",289.9898 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1883,"Simulated","ppmv CO2","global",289.8413 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1884,"Simulated","ppmv CO2","global",289.6494 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1885,"Simulated","ppmv CO2","global",289.9939 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1886,"Simulated","ppmv CO2","global",289.9902 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1887,"Simulated","ppmv CO2","global",290.1569 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1888,"Simulated","ppmv CO2","global",290.7355 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1889,"Simulated","ppmv CO2","global",291.4207 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1890,"Simulated","ppmv CO2","global",291.2178 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1891,"Simulated","ppmv CO2","global",291.1007 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1892,"Simulated","ppmv CO2","global",291.8337 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1893,"Simulated","ppmv CO2","global",291.9475 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1894,"Simulated","ppmv CO2","global",291.7609 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1895,"Simulated","ppmv CO2","global",292.2671 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1896,"Simulated","ppmv CO2","global",293.028 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1897,"Simulated","ppmv CO2","global",293.4843 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1898,"Simulated","ppmv CO2","global",293.1639 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1899,"Simulated","ppmv CO2","global",293.2214 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1900,"Simulated","ppmv CO2","global",293.5865 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1901,"Simulated","ppmv CO2","global",294.0375 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1902,"Simulated","ppmv CO2","global",293.8646 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1903,"Simulated","ppmv CO2","global",293.5003 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1904,"Simulated","ppmv CO2","global",294.0028 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1905,"Simulated","ppmv CO2","global",294.3061 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1906,"Simulated","ppmv CO2","global",294.2264 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1907,"Simulated","ppmv CO2","global",294.74 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1908,"Simulated","ppmv CO2","global",295.463 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1909,"Simulated","ppmv CO2","global",295.9045 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1910,"Simulated","ppmv CO2","global",295.8882 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1911,"Simulated","ppmv CO2","global",296.2473 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1912,"Simulated","ppmv CO2","global",296.5166 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1913,"Simulated","ppmv CO2","global",296.574 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1914,"Simulated","ppmv CO2","global",297.3224 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1915,"Simulated","ppmv CO2","global",298.0192 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1916,"Simulated","ppmv CO2","global",298.0182 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1917,"Simulated","ppmv CO2","global",297.9461 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1918,"Simulated","ppmv CO2","global",298.5976 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1919,"Simulated","ppmv CO2","global",299.3327 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1920,"Simulated","ppmv CO2","global",299.6497 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1921,"Simulated","ppmv CO2","global",299.6975 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1922,"Simulated","ppmv CO2","global",300.4253 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1923,"Simulated","ppmv CO2","global",300.7293 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1924,"Simulated","ppmv CO2","global",300.9647 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1925,"Simulated","ppmv CO2","global",301.4259 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1926,"Simulated","ppmv CO2","global",301.6245 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1927,"Simulated","ppmv CO2","global",301.9669 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1928,"Simulated","ppmv CO2","global",302.3702 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1929,"Simulated","ppmv CO2","global",302.7873 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1930,"Simulated","ppmv CO2","global",303.4911 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1931,"Simulated","ppmv CO2","global",303.5749 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1932,"Simulated","ppmv CO2","global",303.7261 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1933,"Simulated","ppmv CO2","global",304.2011 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1934,"Simulated","ppmv CO2","global",304.6839 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1935,"Simulated","ppmv CO2","global",305.2983 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1936,"Simulated","ppmv CO2","global",305.7233 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1937,"Simulated","ppmv CO2","global",306.532 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1938,"Simulated","ppmv CO2","global",307.0409 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1939,"Simulated","ppmv CO2","global",307.0923 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1940,"Simulated","ppmv CO2","global",307.6473 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1941,"Simulated","ppmv CO2","global",308.2826 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1942,"Simulated","ppmv CO2","global",309.0568 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1943,"Simulated","ppmv CO2","global",309.6407 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1944,"Simulated","ppmv CO2","global",310.1516 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1945,"Simulated","ppmv CO2","global",311.0573 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1946,"Simulated","ppmv CO2","global",311.4665 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1947,"Simulated","ppmv CO2","global",311.8318 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1948,"Simulated","ppmv CO2","global",311.8096 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1949,"Simulated","ppmv CO2","global",312.4875 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1950,"Simulated","ppmv CO2","global",313.6661 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1951,"Simulated","ppmv CO2","global",314.0217 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1952,"Simulated","ppmv CO2","global",314.6384 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1953,"Simulated","ppmv CO2","global",315.5313 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1954,"Simulated","ppmv CO2","global",316.085 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1955,"Simulated","ppmv CO2","global",316.4082 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1956,"Simulated","ppmv CO2","global",317.7786 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1957,"Simulated","ppmv CO2","global",318.963 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1958,"Simulated","ppmv CO2","global",319.4291 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1959,"Simulated","ppmv CO2","global",320.2538 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1960,"Simulated","ppmv CO2","global",321.7083 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1961,"Simulated","ppmv CO2","global",322.7569 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1962,"Simulated","ppmv CO2","global",323.8398 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1963,"Simulated","ppmv CO2","global",324.4192 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1964,"Simulated","ppmv CO2","global",325.4377 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1965,"Simulated","ppmv CO2","global",326.4018 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1966,"Simulated","ppmv CO2","global",327.6766 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1967,"Simulated","ppmv CO2","global",328.8535 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1968,"Simulated","ppmv CO2","global",329.9614 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1969,"Simulated","ppmv CO2","global",331.1119 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1970,"Simulated","ppmv CO2","global",332.5111 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1971,"Simulated","ppmv CO2","global",333.8336 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1972,"Simulated","ppmv CO2","global",334.9864 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1973,"Simulated","ppmv CO2","global",336.1915 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1974,"Simulated","ppmv CO2","global",338.0377 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1975,"Simulated","ppmv CO2","global",339.1646 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1976,"Simulated","ppmv CO2","global",340.6474 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1977,"Simulated","ppmv CO2","global",342.4848 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1978,"Simulated","ppmv CO2","global",344.4 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1979,"Simulated","ppmv CO2","global",345.6192 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1980,"Simulated","ppmv CO2","global",347.2443 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1981,"Simulated","ppmv CO2","global",349.0645 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1982,"Simulated","ppmv CO2","global",350.8126 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1983,"Simulated","ppmv CO2","global",352.7702 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1984,"Simulated","ppmv CO2","global",354.2856 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1985,"Simulated","ppmv CO2","global",355.6637 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1986,"Simulated","ppmv CO2","global",357.7089 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1987,"Simulated","ppmv CO2","global",359.3792 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1988,"Simulated","ppmv CO2","global",361.6479 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1989,"Simulated","ppmv CO2","global",363.8528 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1990,"Simulated","ppmv CO2","global",365.7562 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1991,"Simulated","ppmv CO2","global",367.747 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1992,"Simulated","ppmv CO2","global",369.5572 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1993,"Simulated","ppmv CO2","global",371.5824 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1994,"Simulated","ppmv CO2","global",373.0319 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1995,"Simulated","ppmv CO2","global",374.7251 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1996,"Simulated","ppmv CO2","global",377.2286 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1997,"Simulated","ppmv CO2","global",379.5032 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1998,"Simulated","ppmv CO2","global",381.6096 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1999,"Simulated","ppmv CO2","global",383.6204 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2000,"Simulated","ppmv CO2","global",385.3662 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2001,"Simulated","ppmv CO2","global",387.324 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2002,"Simulated","ppmv CO2","global",389.6233 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2003,"Simulated","ppmv CO2","global",392.2221 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2004,"Simulated","ppmv CO2","global",393.9981 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2005,"Simulated","ppmv CO2","global",396.082 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1850,"Simulated","ppmv CO2","HL",283.7856 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1851,"Simulated","ppmv CO2","HL",283.95 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1852,"Simulated","ppmv CO2","HL",283.6569 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1853,"Simulated","ppmv CO2","HL",283.7749 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1854,"Simulated","ppmv CO2","HL",284.2294 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1855,"Simulated","ppmv CO2","HL",284.5648 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1856,"Simulated","ppmv CO2","HL",284.821 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1857,"Simulated","ppmv CO2","HL",285.1399 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1858,"Simulated","ppmv CO2","HL",285.3459 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1859,"Simulated","ppmv CO2","HL",285.3016 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1860,"Simulated","ppmv CO2","HL",285.5935 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1861,"Simulated","ppmv CO2","HL",285.6592 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1862,"Simulated","ppmv CO2","HL",285.8189 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1863,"Simulated","ppmv CO2","HL",285.9592 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1864,"Simulated","ppmv CO2","HL",285.9968 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1865,"Simulated","ppmv CO2","HL",285.9498 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1866,"Simulated","ppmv CO2","HL",286.1833 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1867,"Simulated","ppmv CO2","HL",286.4751 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1868,"Simulated","ppmv CO2","HL",286.4724 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1869,"Simulated","ppmv CO2","HL",286.4602 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1870,"Simulated","ppmv CO2","HL",286.7672 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1871,"Simulated","ppmv CO2","HL",287.3145 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1872,"Simulated","ppmv CO2","HL",287.5335 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1873,"Simulated","ppmv CO2","HL",287.4843 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1874,"Simulated","ppmv CO2","HL",287.8034 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1875,"Simulated","ppmv CO2","HL",288.0758 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1876,"Simulated","ppmv CO2","HL",288.0714 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1877,"Simulated","ppmv CO2","HL",288.2362 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1878,"Simulated","ppmv CO2","HL",288.4396 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1879,"Simulated","ppmv CO2","HL",288.4512 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1880,"Simulated","ppmv CO2","HL",288.7873 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1881,"Simulated","ppmv CO2","HL",289.2309 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1882,"Simulated","ppmv CO2","HL",289.6901 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1883,"Simulated","ppmv CO2","HL",289.7045 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1884,"Simulated","ppmv CO2","HL",289.5746 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1885,"Simulated","ppmv CO2","HL",289.8307 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1886,"Simulated","ppmv CO2","HL",289.9082 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1887,"Simulated","ppmv CO2","HL",290.0028 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1888,"Simulated","ppmv CO2","HL",290.4874 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1889,"Simulated","ppmv CO2","HL",291.0661 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1890,"Simulated","ppmv CO2","HL",291.0889 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1891,"Simulated","ppmv CO2","HL",290.9436 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1892,"Simulated","ppmv CO2","HL",291.5424 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1893,"Simulated","ppmv CO2","HL",291.7854 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1894,"Simulated","ppmv CO2","HL",291.6627 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1895,"Simulated","ppmv CO2","HL",292.0714 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1896,"Simulated","ppmv CO2","HL",292.6543 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1897,"Simulated","ppmv CO2","HL",293.1137 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1898,"Simulated","ppmv CO2","HL",293.0172 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1899,"Simulated","ppmv CO2","HL",293.0968 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1900,"Simulated","ppmv CO2","HL",293.4176 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1901,"Simulated","ppmv CO2","HL",293.7295 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1902,"Simulated","ppmv CO2","HL",293.7948 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1903,"Simulated","ppmv CO2","HL",293.4755 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1904,"Simulated","ppmv CO2","HL",293.8797 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1905,"Simulated","ppmv CO2","HL",294.1655 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1906,"Simulated","ppmv CO2","HL",294.1163 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1907,"Simulated","ppmv CO2","HL",294.486 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1908,"Simulated","ppmv CO2","HL",295.1869 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1909,"Simulated","ppmv CO2","HL",295.563 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1910,"Simulated","ppmv CO2","HL",295.7184 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1911,"Simulated","ppmv CO2","HL",296.0491 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1912,"Simulated","ppmv CO2","HL",296.3027 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1913,"Simulated","ppmv CO2","HL",296.4141 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1914,"Simulated","ppmv CO2","HL",297.0279 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1915,"Simulated","ppmv CO2","HL",297.661 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1916,"Simulated","ppmv CO2","HL",297.8196 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1917,"Simulated","ppmv CO2","HL",297.7898 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1918,"Simulated","ppmv CO2","HL",298.3215 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1919,"Simulated","ppmv CO2","HL",299.0073 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1920,"Simulated","ppmv CO2","HL",299.3619 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1921,"Simulated","ppmv CO2","HL",299.465 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1922,"Simulated","ppmv CO2","HL",300.0658 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1923,"Simulated","ppmv CO2","HL",300.5092 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1924,"Simulated","ppmv CO2","HL",300.6945 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1925,"Simulated","ppmv CO2","HL",301.1859 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1926,"Simulated","ppmv CO2","HL",301.3908 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1927,"Simulated","ppmv CO2","HL",301.7826 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1928,"Simulated","ppmv CO2","HL",302.1094 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1929,"Simulated","ppmv CO2","HL",302.4799 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1930,"Simulated","ppmv CO2","HL",303.1562 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1931,"Simulated","ppmv CO2","HL",303.3457 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1932,"Simulated","ppmv CO2","HL",303.5306 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1933,"Simulated","ppmv CO2","HL",303.9301 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1934,"Simulated","ppmv CO2","HL",304.415 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1935,"Simulated","ppmv CO2","HL",304.9651 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1936,"Simulated","ppmv CO2","HL",305.4166 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1937,"Simulated","ppmv CO2","HL",306.1524 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1938,"Simulated","ppmv CO2","HL",306.7205 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1939,"Simulated","ppmv CO2","HL",306.8363 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1940,"Simulated","ppmv CO2","HL",307.3503 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1941,"Simulated","ppmv CO2","HL",307.9971 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1942,"Simulated","ppmv CO2","HL",308.5986 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1943,"Simulated","ppmv CO2","HL",309.3057 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1944,"Simulated","ppmv CO2","HL",309.7545 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1945,"Simulated","ppmv CO2","HL",310.5729 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1946,"Simulated","ppmv CO2","HL",311.0396 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1947,"Simulated","ppmv CO2","HL",311.5258 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1948,"Simulated","ppmv CO2","HL",311.647 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1949,"Simulated","ppmv CO2","HL",312.1331 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1950,"Simulated","ppmv CO2","HL",313.2076 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1951,"Simulated","ppmv CO2","HL",313.6561 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1952,"Simulated","ppmv CO2","HL",314.2367 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1953,"Simulated","ppmv CO2","HL",315.1079 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1954,"Simulated","ppmv CO2","HL",315.7059 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1955,"Simulated","ppmv CO2","HL",316.0293 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1956,"Simulated","ppmv CO2","HL",317.2125 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1957,"Simulated","ppmv CO2","HL",318.3634 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1958,"Simulated","ppmv CO2","HL",318.9539 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1959,"Simulated","ppmv CO2","HL",319.7529 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1960,"Simulated","ppmv CO2","HL",321.0973 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1961,"Simulated","ppmv CO2","HL",322.1316 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1962,"Simulated","ppmv CO2","HL",323.165 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1963,"Simulated","ppmv CO2","HL",323.8646 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1964,"Simulated","ppmv CO2","HL",324.9425 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1965,"Simulated","ppmv CO2","HL",325.8834 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1966,"Simulated","ppmv CO2","HL",327.078 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1967,"Simulated","ppmv CO2","HL",328.2335 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1968,"Simulated","ppmv CO2","HL",329.3129 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1969,"Simulated","ppmv CO2","HL",330.4412 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1970,"Simulated","ppmv CO2","HL",331.8669 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1971,"Simulated","ppmv CO2","HL",333.1666 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1972,"Simulated","ppmv CO2","HL",334.4094 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1973,"Simulated","ppmv CO2","HL",335.5266 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1974,"Simulated","ppmv CO2","HL",337.289 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1975,"Simulated","ppmv CO2","HL",338.4569 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1976,"Simulated","ppmv CO2","HL",339.8875 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1977,"Simulated","ppmv CO2","HL",341.6177 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1978,"Simulated","ppmv CO2","HL",343.4588 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1979,"Simulated","ppmv CO2","HL",344.842 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1980,"Simulated","ppmv CO2","HL",346.4109 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1981,"Simulated","ppmv CO2","HL",348.1573 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1982,"Simulated","ppmv CO2","HL",349.9238 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1983,"Simulated","ppmv CO2","HL",351.7809 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1984,"Simulated","ppmv CO2","HL",353.4765 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1985,"Simulated","ppmv CO2","HL",354.864 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1986,"Simulated","ppmv CO2","HL",356.7716 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1987,"Simulated","ppmv CO2","HL",358.5606 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1988,"Simulated","ppmv CO2","HL",360.5472 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1989,"Simulated","ppmv CO2","HL",362.7485 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1990,"Simulated","ppmv CO2","HL",364.6808 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1991,"Simulated","ppmv CO2","HL",366.721 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1992,"Simulated","ppmv CO2","HL",368.4471 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1993,"Simulated","ppmv CO2","HL",370.5676 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1994,"Simulated","ppmv CO2","HL",372.1369 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1995,"Simulated","ppmv CO2","HL",373.7725 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1996,"Simulated","ppmv CO2","HL",376.1237 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1997,"Simulated","ppmv CO2","HL",378.3334 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1998,"Simulated","ppmv CO2","HL",380.3654 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1999,"Simulated","ppmv CO2","HL",382.5054 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2000,"Simulated","ppmv CO2","HL",384.3293 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2001,"Simulated","ppmv CO2","HL",386.2489 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2002,"Simulated","ppmv CO2","HL",388.433 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2003,"Simulated","ppmv CO2","HL",390.9109 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2004,"Simulated","ppmv CO2","HL",392.8515 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2005,"Simulated","ppmv CO2","HL",394.9414 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1850,"Simulated","ppmv CO2","LL",283.9539 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1851,"Simulated","ppmv CO2","LL",284.0543 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1852,"Simulated","ppmv CO2","LL",283.6707 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1853,"Simulated","ppmv CO2","LL",283.9537 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1854,"Simulated","ppmv CO2","LL",284.4728 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1855,"Simulated","ppmv CO2","LL",284.8253 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1856,"Simulated","ppmv CO2","LL",285.1187 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1857,"Simulated","ppmv CO2","LL",285.4887 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1858,"Simulated","ppmv CO2","LL",285.5327 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1859,"Simulated","ppmv CO2","LL",285.4711 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1860,"Simulated","ppmv CO2","LL",285.8609 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1861,"Simulated","ppmv CO2","LL",285.8258 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1862,"Simulated","ppmv CO2","LL",286.0932 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1863,"Simulated","ppmv CO2","LL",286.1544 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1864,"Simulated","ppmv CO2","LL",286.0963 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1865,"Simulated","ppmv CO2","LL",285.9991 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1866,"Simulated","ppmv CO2","LL",286.486 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1867,"Simulated","ppmv CO2","LL",286.7171 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1868,"Simulated","ppmv CO2","LL",286.6234 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1869,"Simulated","ppmv CO2","LL",286.572 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1870,"Simulated","ppmv CO2","LL",287.0124 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1871,"Simulated","ppmv CO2","LL",287.663 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1872,"Simulated","ppmv CO2","LL",287.8196 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1873,"Simulated","ppmv CO2","LL",287.6393 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1874,"Simulated","ppmv CO2","LL",288.1185 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1875,"Simulated","ppmv CO2","LL",288.2892 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1876,"Simulated","ppmv CO2","LL",288.2638 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1877,"Simulated","ppmv CO2","LL",288.3873 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1878,"Simulated","ppmv CO2","LL",288.6063 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1879,"Simulated","ppmv CO2","LL",288.695 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1880,"Simulated","ppmv CO2","LL",288.9825 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1881,"Simulated","ppmv CO2","LL",289.5971 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1882,"Simulated","ppmv CO2","LL",290.0575 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1883,"Simulated","ppmv CO2","LL",289.8722 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1884,"Simulated","ppmv CO2","LL",289.6663 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1885,"Simulated","ppmv CO2","LL",290.0308 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1886,"Simulated","ppmv CO2","LL",290.0087 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1887,"Simulated","ppmv CO2","LL",290.1917 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1888,"Simulated","ppmv CO2","LL",290.7916 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1889,"Simulated","ppmv CO2","LL",291.5008 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1890,"Simulated","ppmv CO2","LL",291.2469 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1891,"Simulated","ppmv CO2","LL",291.1361 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1892,"Simulated","ppmv CO2","LL",291.8995 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1893,"Simulated","ppmv CO2","LL",291.9841 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1894,"Simulated","ppmv CO2","LL",291.7831 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1895,"Simulated","ppmv CO2","LL",292.3112 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1896,"Simulated","ppmv CO2","LL",293.1124 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1897,"Simulated","ppmv CO2","LL",293.5681 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1898,"Simulated","ppmv CO2","LL",293.197 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1899,"Simulated","ppmv CO2","LL",293.2495 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1900,"Simulated","ppmv CO2","LL",293.6246 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1901,"Simulated","ppmv CO2","LL",294.107 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1902,"Simulated","ppmv CO2","LL",293.8804 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1903,"Simulated","ppmv CO2","LL",293.5059 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1904,"Simulated","ppmv CO2","LL",294.0306 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1905,"Simulated","ppmv CO2","LL",294.3379 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1906,"Simulated","ppmv CO2","LL",294.2512 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1907,"Simulated","ppmv CO2","LL",294.7973 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1908,"Simulated","ppmv CO2","LL",295.5254 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1909,"Simulated","ppmv CO2","LL",295.9817 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1910,"Simulated","ppmv CO2","LL",295.9266 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1911,"Simulated","ppmv CO2","LL",296.2921 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1912,"Simulated","ppmv CO2","LL",296.565 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1913,"Simulated","ppmv CO2","LL",296.6102 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1914,"Simulated","ppmv CO2","LL",297.3889 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1915,"Simulated","ppmv CO2","LL",298.1001 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1916,"Simulated","ppmv CO2","LL",298.0631 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1917,"Simulated","ppmv CO2","LL",297.9814 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1918,"Simulated","ppmv CO2","LL",298.66 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1919,"Simulated","ppmv CO2","LL",299.4062 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1920,"Simulated","ppmv CO2","LL",299.7147 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1921,"Simulated","ppmv CO2","LL",299.75 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1922,"Simulated","ppmv CO2","LL",300.5065 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1923,"Simulated","ppmv CO2","LL",300.779 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1924,"Simulated","ppmv CO2","LL",301.0257 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1925,"Simulated","ppmv CO2","LL",301.4801 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1926,"Simulated","ppmv CO2","LL",301.6773 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1927,"Simulated","ppmv CO2","LL",302.0086 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1928,"Simulated","ppmv CO2","LL",302.4291 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1929,"Simulated","ppmv CO2","LL",302.8567 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1930,"Simulated","ppmv CO2","LL",303.5668 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1931,"Simulated","ppmv CO2","LL",303.6266 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1932,"Simulated","ppmv CO2","LL",303.7703 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1933,"Simulated","ppmv CO2","LL",304.2623 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1934,"Simulated","ppmv CO2","LL",304.7447 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1935,"Simulated","ppmv CO2","LL",305.3736 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1936,"Simulated","ppmv CO2","LL",305.7926 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1937,"Simulated","ppmv CO2","LL",306.6177 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1938,"Simulated","ppmv CO2","LL",307.1133 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1939,"Simulated","ppmv CO2","LL",307.1501 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1940,"Simulated","ppmv CO2","LL",307.7144 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1941,"Simulated","ppmv CO2","LL",308.3471 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1942,"Simulated","ppmv CO2","LL",309.1603 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1943,"Simulated","ppmv CO2","LL",309.7164 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1944,"Simulated","ppmv CO2","LL",310.2413 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1945,"Simulated","ppmv CO2","LL",311.1667 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1946,"Simulated","ppmv CO2","LL",311.563 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1947,"Simulated","ppmv CO2","LL",311.901 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1948,"Simulated","ppmv CO2","LL",311.8463 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1949,"Simulated","ppmv CO2","LL",312.5676 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1950,"Simulated","ppmv CO2","LL",313.7696 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1951,"Simulated","ppmv CO2","LL",314.1043 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1952,"Simulated","ppmv CO2","LL",314.7291 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1953,"Simulated","ppmv CO2","LL",315.627 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1954,"Simulated","ppmv CO2","LL",316.1706 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1955,"Simulated","ppmv CO2","LL",316.4938 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1956,"Simulated","ppmv CO2","LL",317.9065 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1957,"Simulated","ppmv CO2","LL",319.0984 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1958,"Simulated","ppmv CO2","LL",319.5364 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1959,"Simulated","ppmv CO2","LL",320.3669 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1960,"Simulated","ppmv CO2","LL",321.8464 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1961,"Simulated","ppmv CO2","LL",322.8981 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1962,"Simulated","ppmv CO2","LL",323.9923 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1963,"Simulated","ppmv CO2","LL",324.5444 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1964,"Simulated","ppmv CO2","LL",325.5496 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1965,"Simulated","ppmv CO2","LL",326.5189 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1966,"Simulated","ppmv CO2","LL",327.8119 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1967,"Simulated","ppmv CO2","LL",328.9936 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1968,"Simulated","ppmv CO2","LL",330.1078 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1969,"Simulated","ppmv CO2","LL",331.2634 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1970,"Simulated","ppmv CO2","LL",332.6566 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1971,"Simulated","ppmv CO2","LL",333.9843 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1972,"Simulated","ppmv CO2","LL",335.1167 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1973,"Simulated","ppmv CO2","LL",336.3417 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1974,"Simulated","ppmv CO2","LL",338.2069 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1975,"Simulated","ppmv CO2","LL",339.3245 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1976,"Simulated","ppmv CO2","LL",340.8191 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1977,"Simulated","ppmv CO2","LL",342.6806 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1978,"Simulated","ppmv CO2","LL",344.6126 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1979,"Simulated","ppmv CO2","LL",345.7948 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1980,"Simulated","ppmv CO2","LL",347.4326 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1981,"Simulated","ppmv CO2","LL",349.2694 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1982,"Simulated","ppmv CO2","LL",351.0134 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1983,"Simulated","ppmv CO2","LL",352.9936 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1984,"Simulated","ppmv CO2","LL",354.4683 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1985,"Simulated","ppmv CO2","LL",355.8443 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1986,"Simulated","ppmv CO2","LL",357.9206 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1987,"Simulated","ppmv CO2","LL",359.5641 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1988,"Simulated","ppmv CO2","LL",361.8966 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1989,"Simulated","ppmv CO2","LL",364.1023 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1990,"Simulated","ppmv CO2","LL",365.9991 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1991,"Simulated","ppmv CO2","LL",367.9787 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1992,"Simulated","ppmv CO2","LL",369.808 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1993,"Simulated","ppmv CO2","LL",371.8117 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1994,"Simulated","ppmv CO2","LL",373.2341 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1995,"Simulated","ppmv CO2","LL",374.9403 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1996,"Simulated","ppmv CO2","LL",377.4782 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1997,"Simulated","ppmv CO2","LL",379.7675 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1998,"Simulated","ppmv CO2","LL",381.8907 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1999,"Simulated","ppmv CO2","LL",383.8723 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2000,"Simulated","ppmv CO2","LL",385.6005 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2001,"Simulated","ppmv CO2","LL",387.5669 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2002,"Simulated","ppmv CO2","LL",389.8922 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2003,"Simulated","ppmv CO2","LL",392.5184 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2004,"Simulated","ppmv CO2","LL",394.2571 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2005,"Simulated","ppmv CO2","LL",396.3396 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1850,"Simulated","ppmv CO2","global",284.542666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1851,"Simulated","ppmv CO2","global",284.353266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1852,"Simulated","ppmv CO2","global",284.399666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1853,"Simulated","ppmv CO2","global",284.856733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1854,"Simulated","ppmv CO2","global",284.985366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1855,"Simulated","ppmv CO2","global",285.129233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1856,"Simulated","ppmv CO2","global",285.388466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1857,"Simulated","ppmv CO2","global",285.425433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1858,"Simulated","ppmv CO2","global",285.251366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1859,"Simulated","ppmv CO2","global",285.216566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1860,"Simulated","ppmv CO2","global",285.194 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1861,"Simulated","ppmv CO2","global",284.827833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1862,"Simulated","ppmv CO2","global",284.573233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1863,"Simulated","ppmv CO2","global",284.6772 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1864,"Simulated","ppmv CO2","global",284.778066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1865,"Simulated","ppmv CO2","global",285.0637 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1866,"Simulated","ppmv CO2","global",285.0827 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1867,"Simulated","ppmv CO2","global",285.3404 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1868,"Simulated","ppmv CO2","global",285.662433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1869,"Simulated","ppmv CO2","global",285.888366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1870,"Simulated","ppmv CO2","global",286.013533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1871,"Simulated","ppmv CO2","global",286.2667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1872,"Simulated","ppmv CO2","global",286.3327 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1873,"Simulated","ppmv CO2","global",286.6637 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1874,"Simulated","ppmv CO2","global",287.062666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1875,"Simulated","ppmv CO2","global",286.889533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1876,"Simulated","ppmv CO2","global",286.7041 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1877,"Simulated","ppmv CO2","global",286.612133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1878,"Simulated","ppmv CO2","global",286.64 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1879,"Simulated","ppmv CO2","global",286.702366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1880,"Simulated","ppmv CO2","global",286.8218 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1881,"Simulated","ppmv CO2","global",287.0223 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1882,"Simulated","ppmv CO2","global",287.533533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1883,"Simulated","ppmv CO2","global",287.911766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1884,"Simulated","ppmv CO2","global",288.394733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1885,"Simulated","ppmv CO2","global",288.722733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1886,"Simulated","ppmv CO2","global",288.861533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1887,"Simulated","ppmv CO2","global",289.221966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1888,"Simulated","ppmv CO2","global",289.544266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1889,"Simulated","ppmv CO2","global",289.7233 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1890,"Simulated","ppmv CO2","global",289.752333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1891,"Simulated","ppmv CO2","global",289.827433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1892,"Simulated","ppmv CO2","global",289.886933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1893,"Simulated","ppmv CO2","global",289.839266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1894,"Simulated","ppmv CO2","global",290.0819 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1895,"Simulated","ppmv CO2","global",290.301533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1896,"Simulated","ppmv CO2","global",290.644066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1897,"Simulated","ppmv CO2","global",290.825266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1898,"Simulated","ppmv CO2","global",290.889933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1899,"Simulated","ppmv CO2","global",290.751866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1900,"Simulated","ppmv CO2","global",290.825866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1901,"Simulated","ppmv CO2","global",290.738666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1902,"Simulated","ppmv CO2","global",290.739066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1903,"Simulated","ppmv CO2","global",290.621566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1904,"Simulated","ppmv CO2","global",290.565866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1905,"Simulated","ppmv CO2","global",290.8152 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1906,"Simulated","ppmv CO2","global",291.186666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1907,"Simulated","ppmv CO2","global",291.765833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1908,"Simulated","ppmv CO2","global",292.4634 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1909,"Simulated","ppmv CO2","global",293.246733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1910,"Simulated","ppmv CO2","global",294.105633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1911,"Simulated","ppmv CO2","global",294.8883 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1912,"Simulated","ppmv CO2","global",295.658533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1913,"Simulated","ppmv CO2","global",296.133666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1914,"Simulated","ppmv CO2","global",296.9209 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1915,"Simulated","ppmv CO2","global",297.4642 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1916,"Simulated","ppmv CO2","global",298.0284 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1917,"Simulated","ppmv CO2","global",298.783466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1918,"Simulated","ppmv CO2","global",299.541 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1919,"Simulated","ppmv CO2","global",300.413633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1920,"Simulated","ppmv CO2","global",300.803633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1921,"Simulated","ppmv CO2","global",301.178466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1922,"Simulated","ppmv CO2","global",301.771133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1923,"Simulated","ppmv CO2","global",302.3667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1924,"Simulated","ppmv CO2","global",303.191 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1925,"Simulated","ppmv CO2","global",304.061733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1926,"Simulated","ppmv CO2","global",304.439 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1927,"Simulated","ppmv CO2","global",304.927133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1928,"Simulated","ppmv CO2","global",305.565933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1929,"Simulated","ppmv CO2","global",306.295866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1930,"Simulated","ppmv CO2","global",306.615166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1931,"Simulated","ppmv CO2","global",306.781633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1932,"Simulated","ppmv CO2","global",306.942833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1933,"Simulated","ppmv CO2","global",307.161433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1934,"Simulated","ppmv CO2","global",307.243366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1935,"Simulated","ppmv CO2","global",307.446333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1936,"Simulated","ppmv CO2","global",307.599333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1937,"Simulated","ppmv CO2","global",308.108466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1938,"Simulated","ppmv CO2","global",308.2343 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1939,"Simulated","ppmv CO2","global",308.4404 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1940,"Simulated","ppmv CO2","global",308.991966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1941,"Simulated","ppmv CO2","global",309.380133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1942,"Simulated","ppmv CO2","global",309.914466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1943,"Simulated","ppmv CO2","global",310.630866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1944,"Simulated","ppmv CO2","global",311.336866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1945,"Simulated","ppmv CO2","global",312.098266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1946,"Simulated","ppmv CO2","global",312.944633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1947,"Simulated","ppmv CO2","global",313.746566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1948,"Simulated","ppmv CO2","global",314.448066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1949,"Simulated","ppmv CO2","global",315.1401 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1950,"Simulated","ppmv CO2","global",316.0536 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1951,"Simulated","ppmv CO2","global",316.9629 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1952,"Simulated","ppmv CO2","global",317.849166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1953,"Simulated","ppmv CO2","global",319.092433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1954,"Simulated","ppmv CO2","global",320.2294 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1955,"Simulated","ppmv CO2","global",321.190133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1956,"Simulated","ppmv CO2","global",322.3436 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1957,"Simulated","ppmv CO2","global",323.7005 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1958,"Simulated","ppmv CO2","global",324.858466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1959,"Simulated","ppmv CO2","global",326.088366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1960,"Simulated","ppmv CO2","global",327.090566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1961,"Simulated","ppmv CO2","global",327.954833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1962,"Simulated","ppmv CO2","global",328.787233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1963,"Simulated","ppmv CO2","global",329.6789 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1964,"Simulated","ppmv CO2","global",330.5571 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1965,"Simulated","ppmv CO2","global",331.082266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1966,"Simulated","ppmv CO2","global",331.4647 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1967,"Simulated","ppmv CO2","global",331.831366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1968,"Simulated","ppmv CO2","global",332.200533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1969,"Simulated","ppmv CO2","global",332.752133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1970,"Simulated","ppmv CO2","global",333.387033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1971,"Simulated","ppmv CO2","global",334.5051 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1972,"Simulated","ppmv CO2","global",335.954466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1973,"Simulated","ppmv CO2","global",337.166533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1974,"Simulated","ppmv CO2","global",338.350133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1975,"Simulated","ppmv CO2","global",339.477233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1976,"Simulated","ppmv CO2","global",340.765866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1977,"Simulated","ppmv CO2","global",342.021466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1978,"Simulated","ppmv CO2","global",343.100433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1979,"Simulated","ppmv CO2","global",344.310266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1980,"Simulated","ppmv CO2","global",345.8719 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1981,"Simulated","ppmv CO2","global",347.382633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1982,"Simulated","ppmv CO2","global",348.948333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1983,"Simulated","ppmv CO2","global",350.3276 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1984,"Simulated","ppmv CO2","global",351.698566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1985,"Simulated","ppmv CO2","global",352.879433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1986,"Simulated","ppmv CO2","global",354.362533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1987,"Simulated","ppmv CO2","global",355.955766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1988,"Simulated","ppmv CO2","global",357.755 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1989,"Simulated","ppmv CO2","global",359.341233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1990,"Simulated","ppmv CO2","global",361.264766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1991,"Simulated","ppmv CO2","global",362.9636 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1992,"Simulated","ppmv CO2","global",364.729466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1993,"Simulated","ppmv CO2","global",366.689733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1994,"Simulated","ppmv CO2","global",368.667066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1995,"Simulated","ppmv CO2","global",370.4921 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1996,"Simulated","ppmv CO2","global",372.335233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1997,"Simulated","ppmv CO2","global",374.314733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1998,"Simulated","ppmv CO2","global",376.249366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1999,"Simulated","ppmv CO2","global",378.211266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2000,"Simulated","ppmv CO2","global",379.994866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2001,"Simulated","ppmv CO2","global",381.915433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2002,"Simulated","ppmv CO2","global",383.854566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2003,"Simulated","ppmv CO2","global",385.626066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2004,"Simulated","ppmv CO2","global",387.6578 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2005,"Simulated","ppmv CO2","global",389.691066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1850,"Simulated","ppmv CO2","HL",284.7762 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1851,"Simulated","ppmv CO2","HL",284.672966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1852,"Simulated","ppmv CO2","HL",284.672533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1853,"Simulated","ppmv CO2","HL",285.0001 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1854,"Simulated","ppmv CO2","HL",285.134333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1855,"Simulated","ppmv CO2","HL",285.211466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1856,"Simulated","ppmv CO2","HL",285.4879 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1857,"Simulated","ppmv CO2","HL",285.563833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1858,"Simulated","ppmv CO2","HL",285.4767 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1859,"Simulated","ppmv CO2","HL",285.434566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1860,"Simulated","ppmv CO2","HL",285.454266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1861,"Simulated","ppmv CO2","HL",285.1816 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1862,"Simulated","ppmv CO2","HL",284.902666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1863,"Simulated","ppmv CO2","HL",284.958333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1864,"Simulated","ppmv CO2","HL",284.9844 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1865,"Simulated","ppmv CO2","HL",285.197533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1866,"Simulated","ppmv CO2","HL",285.2554 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1867,"Simulated","ppmv CO2","HL",285.430133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1868,"Simulated","ppmv CO2","HL",285.781333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1869,"Simulated","ppmv CO2","HL",285.973666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1870,"Simulated","ppmv CO2","HL",286.133166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1871,"Simulated","ppmv CO2","HL",286.368533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1872,"Simulated","ppmv CO2","HL",286.4726 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1873,"Simulated","ppmv CO2","HL",286.727 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1874,"Simulated","ppmv CO2","HL",287.160266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1875,"Simulated","ppmv CO2","HL",287.0705 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1876,"Simulated","ppmv CO2","HL",286.9443 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1877,"Simulated","ppmv CO2","HL",286.8543 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1878,"Simulated","ppmv CO2","HL",286.902666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1879,"Simulated","ppmv CO2","HL",286.968966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1880,"Simulated","ppmv CO2","HL",287.0319 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1881,"Simulated","ppmv CO2","HL",287.176066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1882,"Simulated","ppmv CO2","HL",287.595733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1883,"Simulated","ppmv CO2","HL",287.909866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1884,"Simulated","ppmv CO2","HL",288.334533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1885,"Simulated","ppmv CO2","HL",288.710266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1886,"Simulated","ppmv CO2","HL",288.939466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1887,"Simulated","ppmv CO2","HL",289.245533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1888,"Simulated","ppmv CO2","HL",289.617566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1889,"Simulated","ppmv CO2","HL",289.806166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1890,"Simulated","ppmv CO2","HL",289.897133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1891,"Simulated","ppmv CO2","HL",289.9933 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1892,"Simulated","ppmv CO2","HL",290.0749 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1893,"Simulated","ppmv CO2","HL",290.068233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1894,"Simulated","ppmv CO2","HL",290.254333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1895,"Simulated","ppmv CO2","HL",290.4294 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1896,"Simulated","ppmv CO2","HL",290.730133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1897,"Simulated","ppmv CO2","HL",290.912833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1898,"Simulated","ppmv CO2","HL",291.0499 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1899,"Simulated","ppmv CO2","HL",290.963666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1900,"Simulated","ppmv CO2","HL",291.0478 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1901,"Simulated","ppmv CO2","HL",291.003733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1902,"Simulated","ppmv CO2","HL",291.016233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1903,"Simulated","ppmv CO2","HL",290.9378 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1904,"Simulated","ppmv CO2","HL",290.833533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1905,"Simulated","ppmv CO2","HL",290.974766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1906,"Simulated","ppmv CO2","HL",291.2849 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1907,"Simulated","ppmv CO2","HL",291.7509 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1908,"Simulated","ppmv CO2","HL",292.340033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1909,"Simulated","ppmv CO2","HL",293.045333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1910,"Simulated","ppmv CO2","HL",293.870466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1911,"Simulated","ppmv CO2","HL",294.6437 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1912,"Simulated","ppmv CO2","HL",295.452 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1913,"Simulated","ppmv CO2","HL",295.9735 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1914,"Simulated","ppmv CO2","HL",296.714466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1915,"Simulated","ppmv CO2","HL",297.332533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1916,"Simulated","ppmv CO2","HL",297.926633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1917,"Simulated","ppmv CO2","HL",298.6347 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1918,"Simulated","ppmv CO2","HL",299.369 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1919,"Simulated","ppmv CO2","HL",300.195466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1920,"Simulated","ppmv CO2","HL",300.692566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1921,"Simulated","ppmv CO2","HL",301.0932 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1922,"Simulated","ppmv CO2","HL",301.689233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1923,"Simulated","ppmv CO2","HL",302.268166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1924,"Simulated","ppmv CO2","HL",303.0133 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1925,"Simulated","ppmv CO2","HL",303.868 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1926,"Simulated","ppmv CO2","HL",304.334833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1927,"Simulated","ppmv CO2","HL",304.839366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1928,"Simulated","ppmv CO2","HL",305.4692 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1929,"Simulated","ppmv CO2","HL",306.195633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1930,"Simulated","ppmv CO2","HL",306.614666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1931,"Simulated","ppmv CO2","HL",306.802266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1932,"Simulated","ppmv CO2","HL",307.0484 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1933,"Simulated","ppmv CO2","HL",307.287933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1934,"Simulated","ppmv CO2","HL",307.430133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1935,"Simulated","ppmv CO2","HL",307.590533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1936,"Simulated","ppmv CO2","HL",307.768466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1937,"Simulated","ppmv CO2","HL",308.1934 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1938,"Simulated","ppmv CO2","HL",308.368266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1939,"Simulated","ppmv CO2","HL",308.5292 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1940,"Simulated","ppmv CO2","HL",309.0249 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1941,"Simulated","ppmv CO2","HL",309.415433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1942,"Simulated","ppmv CO2","HL",309.886066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1943,"Simulated","ppmv CO2","HL",310.5526 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1944,"Simulated","ppmv CO2","HL",311.2146 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1945,"Simulated","ppmv CO2","HL",311.900933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1946,"Simulated","ppmv CO2","HL",312.719533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1947,"Simulated","ppmv CO2","HL",313.529566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1948,"Simulated","ppmv CO2","HL",314.287066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1949,"Simulated","ppmv CO2","HL",314.941166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1950,"Simulated","ppmv CO2","HL",315.838766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1951,"Simulated","ppmv CO2","HL",316.748766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1952,"Simulated","ppmv CO2","HL",317.5723 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1953,"Simulated","ppmv CO2","HL",318.7093 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1954,"Simulated","ppmv CO2","HL",319.8569 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1955,"Simulated","ppmv CO2","HL",320.847966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1956,"Simulated","ppmv CO2","HL",321.930633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1957,"Simulated","ppmv CO2","HL",323.243933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1958,"Simulated","ppmv CO2","HL",324.459166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1959,"Simulated","ppmv CO2","HL",325.663366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1960,"Simulated","ppmv CO2","HL",326.7367 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1961,"Simulated","ppmv CO2","HL",327.6558 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1962,"Simulated","ppmv CO2","HL",328.5506 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1963,"Simulated","ppmv CO2","HL",329.450433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1964,"Simulated","ppmv CO2","HL",330.380333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1965,"Simulated","ppmv CO2","HL",330.9994 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1966,"Simulated","ppmv CO2","HL",331.453333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1967,"Simulated","ppmv CO2","HL",331.897133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1968,"Simulated","ppmv CO2","HL",332.291133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1969,"Simulated","ppmv CO2","HL",332.7993 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1970,"Simulated","ppmv CO2","HL",333.387266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1971,"Simulated","ppmv CO2","HL",334.288033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1972,"Simulated","ppmv CO2","HL",335.586533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1973,"Simulated","ppmv CO2","HL",336.809433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1974,"Simulated","ppmv CO2","HL",337.941066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1975,"Simulated","ppmv CO2","HL",339.080866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1976,"Simulated","ppmv CO2","HL",340.362533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1977,"Simulated","ppmv CO2","HL",341.6588 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1978,"Simulated","ppmv CO2","HL",342.770333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1979,"Simulated","ppmv CO2","HL",343.968633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1980,"Simulated","ppmv CO2","HL",345.4147 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1981,"Simulated","ppmv CO2","HL",346.910333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1982,"Simulated","ppmv CO2","HL",348.3942 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1983,"Simulated","ppmv CO2","HL",349.7893 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1984,"Simulated","ppmv CO2","HL",351.250733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1985,"Simulated","ppmv CO2","HL",352.4952 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1986,"Simulated","ppmv CO2","HL",353.960566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1987,"Simulated","ppmv CO2","HL",355.465066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1988,"Simulated","ppmv CO2","HL",357.188733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1989,"Simulated","ppmv CO2","HL",358.751733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1990,"Simulated","ppmv CO2","HL",360.608166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1991,"Simulated","ppmv CO2","HL",362.313433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1992,"Simulated","ppmv CO2","HL",364.1033 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1993,"Simulated","ppmv CO2","HL",365.9692 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1994,"Simulated","ppmv CO2","HL",367.938433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1995,"Simulated","ppmv CO2","HL",369.8262 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1996,"Simulated","ppmv CO2","HL",371.653333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1997,"Simulated","ppmv CO2","HL",373.639666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1998,"Simulated","ppmv CO2","HL",375.5121 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1999,"Simulated","ppmv CO2","HL",377.505433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2000,"Simulated","ppmv CO2","HL",379.3333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2001,"Simulated","ppmv CO2","HL",381.240366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2002,"Simulated","ppmv CO2","HL",383.168633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2003,"Simulated","ppmv CO2","HL",384.959133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2004,"Simulated","ppmv CO2","HL",386.9909 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2005,"Simulated","ppmv CO2","HL",388.962533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1850,"Simulated","ppmv CO2","LL",284.493933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1851,"Simulated","ppmv CO2","LL",284.2865 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1852,"Simulated","ppmv CO2","LL",284.3427 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1853,"Simulated","ppmv CO2","LL",284.8268 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1854,"Simulated","ppmv CO2","LL",284.954266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1855,"Simulated","ppmv CO2","LL",285.1121 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1856,"Simulated","ppmv CO2","LL",285.367666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1857,"Simulated","ppmv CO2","LL",285.396533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1858,"Simulated","ppmv CO2","LL",285.2043 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1859,"Simulated","ppmv CO2","LL",285.171066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1860,"Simulated","ppmv CO2","LL",285.139666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1861,"Simulated","ppmv CO2","LL",284.753966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1862,"Simulated","ppmv CO2","LL",284.504466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1863,"Simulated","ppmv CO2","LL",284.6185 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1864,"Simulated","ppmv CO2","LL",284.735 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1865,"Simulated","ppmv CO2","LL",285.035766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1866,"Simulated","ppmv CO2","LL",285.0466 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1867,"Simulated","ppmv CO2","LL",285.321666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1868,"Simulated","ppmv CO2","LL",285.637566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1869,"Simulated","ppmv CO2","LL",285.870533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1870,"Simulated","ppmv CO2","LL",285.988566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1871,"Simulated","ppmv CO2","LL",286.245466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1872,"Simulated","ppmv CO2","LL",286.3035 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1873,"Simulated","ppmv CO2","LL",286.650466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1874,"Simulated","ppmv CO2","LL",287.042266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1875,"Simulated","ppmv CO2","LL",286.8518 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1876,"Simulated","ppmv CO2","LL",286.653866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1877,"Simulated","ppmv CO2","LL",286.561533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1878,"Simulated","ppmv CO2","LL",286.585166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1879,"Simulated","ppmv CO2","LL",286.6467 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1880,"Simulated","ppmv CO2","LL",286.7779 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1881,"Simulated","ppmv CO2","LL",286.990166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1882,"Simulated","ppmv CO2","LL",287.520533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1883,"Simulated","ppmv CO2","LL",287.912166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1884,"Simulated","ppmv CO2","LL",288.407266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1885,"Simulated","ppmv CO2","LL",288.725333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1886,"Simulated","ppmv CO2","LL",288.845266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1887,"Simulated","ppmv CO2","LL",289.217033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1888,"Simulated","ppmv CO2","LL",289.528966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1889,"Simulated","ppmv CO2","LL",289.706033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1890,"Simulated","ppmv CO2","LL",289.722066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1891,"Simulated","ppmv CO2","LL",289.792733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1892,"Simulated","ppmv CO2","LL",289.847666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1893,"Simulated","ppmv CO2","LL",289.791466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1894,"Simulated","ppmv CO2","LL",290.0459 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1895,"Simulated","ppmv CO2","LL",290.274833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1896,"Simulated","ppmv CO2","LL",290.6261 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1897,"Simulated","ppmv CO2","LL",290.807033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1898,"Simulated","ppmv CO2","LL",290.8565 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1899,"Simulated","ppmv CO2","LL",290.707633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1900,"Simulated","ppmv CO2","LL",290.779533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1901,"Simulated","ppmv CO2","LL",290.6833 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1902,"Simulated","ppmv CO2","LL",290.681233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1903,"Simulated","ppmv CO2","LL",290.5555 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1904,"Simulated","ppmv CO2","LL",290.509966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1905,"Simulated","ppmv CO2","LL",290.781866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1906,"Simulated","ppmv CO2","LL",291.166133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1907,"Simulated","ppmv CO2","LL",291.768966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1908,"Simulated","ppmv CO2","LL",292.489133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1909,"Simulated","ppmv CO2","LL",293.2888 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1910,"Simulated","ppmv CO2","LL",294.154733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1911,"Simulated","ppmv CO2","LL",294.939333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1912,"Simulated","ppmv CO2","LL",295.701633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1913,"Simulated","ppmv CO2","LL",296.167133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1914,"Simulated","ppmv CO2","LL",296.964 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1915,"Simulated","ppmv CO2","LL",297.491666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1916,"Simulated","ppmv CO2","LL",298.049633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1917,"Simulated","ppmv CO2","LL",298.8145 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1918,"Simulated","ppmv CO2","LL",299.5769 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1919,"Simulated","ppmv CO2","LL",300.4592 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1920,"Simulated","ppmv CO2","LL",300.826833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1921,"Simulated","ppmv CO2","LL",301.196333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1922,"Simulated","ppmv CO2","LL",301.788233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1923,"Simulated","ppmv CO2","LL",302.3873 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1924,"Simulated","ppmv CO2","LL",303.228133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1925,"Simulated","ppmv CO2","LL",304.102166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1926,"Simulated","ppmv CO2","LL",304.460766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1927,"Simulated","ppmv CO2","LL",304.945433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1928,"Simulated","ppmv CO2","LL",305.586166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1929,"Simulated","ppmv CO2","LL",306.316766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1930,"Simulated","ppmv CO2","LL",306.615233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1931,"Simulated","ppmv CO2","LL",306.777333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1932,"Simulated","ppmv CO2","LL",306.920766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1933,"Simulated","ppmv CO2","LL",307.135 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1934,"Simulated","ppmv CO2","LL",307.204333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1935,"Simulated","ppmv CO2","LL",307.4162 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1936,"Simulated","ppmv CO2","LL",307.563966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1937,"Simulated","ppmv CO2","LL",308.090733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1938,"Simulated","ppmv CO2","LL",308.206366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1939,"Simulated","ppmv CO2","LL",308.4219 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1940,"Simulated","ppmv CO2","LL",308.985066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1941,"Simulated","ppmv CO2","LL",309.372766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1942,"Simulated","ppmv CO2","LL",309.9204 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1943,"Simulated","ppmv CO2","LL",310.6472 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1944,"Simulated","ppmv CO2","LL",311.3624 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1945,"Simulated","ppmv CO2","LL",312.139466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1946,"Simulated","ppmv CO2","LL",312.991633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1947,"Simulated","ppmv CO2","LL",313.791833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1948,"Simulated","ppmv CO2","LL",314.481666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1949,"Simulated","ppmv CO2","LL",315.181666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1950,"Simulated","ppmv CO2","LL",316.098466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1951,"Simulated","ppmv CO2","LL",317.007566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1952,"Simulated","ppmv CO2","LL",317.907033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1953,"Simulated","ppmv CO2","LL",319.1724 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1954,"Simulated","ppmv CO2","LL",320.307166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1955,"Simulated","ppmv CO2","LL",321.2616 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1956,"Simulated","ppmv CO2","LL",322.4298 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1957,"Simulated","ppmv CO2","LL",323.7958 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1958,"Simulated","ppmv CO2","LL",324.941833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1959,"Simulated","ppmv CO2","LL",326.177133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1960,"Simulated","ppmv CO2","LL",327.164466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1961,"Simulated","ppmv CO2","LL",328.017266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1962,"Simulated","ppmv CO2","LL",328.836633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1963,"Simulated","ppmv CO2","LL",329.726566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1964,"Simulated","ppmv CO2","LL",330.594 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1965,"Simulated","ppmv CO2","LL",331.0996 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1966,"Simulated","ppmv CO2","LL",331.467133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1967,"Simulated","ppmv CO2","LL",331.817633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1968,"Simulated","ppmv CO2","LL",332.181633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1969,"Simulated","ppmv CO2","LL",332.742266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1970,"Simulated","ppmv CO2","LL",333.386966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1971,"Simulated","ppmv CO2","LL",334.550433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1972,"Simulated","ppmv CO2","LL",336.031266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1973,"Simulated","ppmv CO2","LL",337.2411 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1974,"Simulated","ppmv CO2","LL",338.4355 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1975,"Simulated","ppmv CO2","LL",339.56 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1976,"Simulated","ppmv CO2","LL",340.8501 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1977,"Simulated","ppmv CO2","LL",342.0972 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1978,"Simulated","ppmv CO2","LL",343.169366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1979,"Simulated","ppmv CO2","LL",344.3816 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1980,"Simulated","ppmv CO2","LL",345.967433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1981,"Simulated","ppmv CO2","LL",347.481233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1982,"Simulated","ppmv CO2","LL",349.064033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1983,"Simulated","ppmv CO2","LL",350.44 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1984,"Simulated","ppmv CO2","LL",351.792066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1985,"Simulated","ppmv CO2","LL",352.959633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1986,"Simulated","ppmv CO2","LL",354.4465 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1987,"Simulated","ppmv CO2","LL",356.0582 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1988,"Simulated","ppmv CO2","LL",357.873233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1989,"Simulated","ppmv CO2","LL",359.464333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1990,"Simulated","ppmv CO2","LL",361.401866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1991,"Simulated","ppmv CO2","LL",363.099366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1992,"Simulated","ppmv CO2","LL",364.8602 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1993,"Simulated","ppmv CO2","LL",366.840133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1994,"Simulated","ppmv CO2","LL",368.8192 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1995,"Simulated","ppmv CO2","LL",370.6311 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1996,"Simulated","ppmv CO2","LL",372.4776 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1997,"Simulated","ppmv CO2","LL",374.4557 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1998,"Simulated","ppmv CO2","LL",376.4033 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1999,"Simulated","ppmv CO2","LL",378.3586 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2000,"Simulated","ppmv CO2","LL",380.133 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2001,"Simulated","ppmv CO2","LL",382.056366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2002,"Simulated","ppmv CO2","LL",383.9978 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2003,"Simulated","ppmv CO2","LL",385.765333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2004,"Simulated","ppmv CO2","LL",387.797033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2005,"Simulated","ppmv CO2","LL",389.843133333333 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1850,"Simulated","ppmv CO2","global",279.2436 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1851,"Simulated","ppmv CO2","global",279.823 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1852,"Simulated","ppmv CO2","global",279.7383 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1853,"Simulated","ppmv CO2","global",279.5493 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1854,"Simulated","ppmv CO2","global",279.7808 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1855,"Simulated","ppmv CO2","global",279.7888 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1856,"Simulated","ppmv CO2","global",279.934 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1857,"Simulated","ppmv CO2","global",280.0207 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1858,"Simulated","ppmv CO2","global",280.3125 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1859,"Simulated","ppmv CO2","global",280.5158 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1860,"Simulated","ppmv CO2","global",280.6631 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1861,"Simulated","ppmv CO2","global",280.8736 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1862,"Simulated","ppmv CO2","global",280.7887 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1863,"Simulated","ppmv CO2","global",281.202 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1864,"Simulated","ppmv CO2","global",281.6083 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1865,"Simulated","ppmv CO2","global",281.7013 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1866,"Simulated","ppmv CO2","global",281.9819 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1867,"Simulated","ppmv CO2","global",282.3664 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1868,"Simulated","ppmv CO2","global",282.4269 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1869,"Simulated","ppmv CO2","global",282.4297 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1870,"Simulated","ppmv CO2","global",282.6963 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1871,"Simulated","ppmv CO2","global",283.1589 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1872,"Simulated","ppmv CO2","global",283.2903 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1873,"Simulated","ppmv CO2","global",283.1965 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1874,"Simulated","ppmv CO2","global",283.1632 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1875,"Simulated","ppmv CO2","global",283.6292 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1876,"Simulated","ppmv CO2","global",283.7691 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1877,"Simulated","ppmv CO2","global",283.6236 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1878,"Simulated","ppmv CO2","global",283.854 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1879,"Simulated","ppmv CO2","global",284.3049 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1880,"Simulated","ppmv CO2","global",284.5657 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1881,"Simulated","ppmv CO2","global",284.537 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1882,"Simulated","ppmv CO2","global",284.4935 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1883,"Simulated","ppmv CO2","global",284.561 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1884,"Simulated","ppmv CO2","global",284.8185 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1885,"Simulated","ppmv CO2","global",284.9509 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1886,"Simulated","ppmv CO2","global",284.8095 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1887,"Simulated","ppmv CO2","global",285.123 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1888,"Simulated","ppmv CO2","global",285.6384 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1889,"Simulated","ppmv CO2","global",285.4758 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1890,"Simulated","ppmv CO2","global",285.7652 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1891,"Simulated","ppmv CO2","global",286.1046 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1892,"Simulated","ppmv CO2","global",286.275 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1893,"Simulated","ppmv CO2","global",286.3165 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1894,"Simulated","ppmv CO2","global",287.0825 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1895,"Simulated","ppmv CO2","global",286.9654 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1896,"Simulated","ppmv CO2","global",287.017 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1897,"Simulated","ppmv CO2","global",287.713 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1898,"Simulated","ppmv CO2","global",287.9261 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1899,"Simulated","ppmv CO2","global",287.9171 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1900,"Simulated","ppmv CO2","global",288.1931 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1901,"Simulated","ppmv CO2","global",288.3693 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1902,"Simulated","ppmv CO2","global",288.6728 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1903,"Simulated","ppmv CO2","global",288.7832 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1904,"Simulated","ppmv CO2","global",288.851 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1905,"Simulated","ppmv CO2","global",289.1416 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1906,"Simulated","ppmv CO2","global",289.5593 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1907,"Simulated","ppmv CO2","global",290.0538 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1908,"Simulated","ppmv CO2","global",290.6339 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1909,"Simulated","ppmv CO2","global",291.2366 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1910,"Simulated","ppmv CO2","global",291.4115 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1911,"Simulated","ppmv CO2","global",292.216 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1912,"Simulated","ppmv CO2","global",292.6871 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1913,"Simulated","ppmv CO2","global",292.9659 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1914,"Simulated","ppmv CO2","global",293.6047 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1915,"Simulated","ppmv CO2","global",293.9486 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1916,"Simulated","ppmv CO2","global",294.0376 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1917,"Simulated","ppmv CO2","global",294.7268 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1918,"Simulated","ppmv CO2","global",295.2352 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1919,"Simulated","ppmv CO2","global",295.2798 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1920,"Simulated","ppmv CO2","global",295.7095 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1921,"Simulated","ppmv CO2","global",296.1326 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1922,"Simulated","ppmv CO2","global",296.3642 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1923,"Simulated","ppmv CO2","global",296.6309 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1924,"Simulated","ppmv CO2","global",296.7035 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1925,"Simulated","ppmv CO2","global",297.2934 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1926,"Simulated","ppmv CO2","global",297.6235 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1927,"Simulated","ppmv CO2","global",298.0233 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1928,"Simulated","ppmv CO2","global",298.4358 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1929,"Simulated","ppmv CO2","global",298.2329 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1930,"Simulated","ppmv CO2","global",298.6381 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1931,"Simulated","ppmv CO2","global",299.2894 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1932,"Simulated","ppmv CO2","global",299.6889 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1933,"Simulated","ppmv CO2","global",300.0163 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1934,"Simulated","ppmv CO2","global",300.6236 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1935,"Simulated","ppmv CO2","global",301.0181 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1936,"Simulated","ppmv CO2","global",301.149 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1937,"Simulated","ppmv CO2","global",301.833 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1938,"Simulated","ppmv CO2","global",302.1963 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1939,"Simulated","ppmv CO2","global",302.7319 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1940,"Simulated","ppmv CO2","global",303.1429 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1941,"Simulated","ppmv CO2","global",303.6972 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1942,"Simulated","ppmv CO2","global",304.126 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1943,"Simulated","ppmv CO2","global",304.2888 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1944,"Simulated","ppmv CO2","global",304.6127 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1945,"Simulated","ppmv CO2","global",305.0016 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1946,"Simulated","ppmv CO2","global",305.3943 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1947,"Simulated","ppmv CO2","global",305.8155 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1948,"Simulated","ppmv CO2","global",306.0731 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1949,"Simulated","ppmv CO2","global",306.6386 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1950,"Simulated","ppmv CO2","global",307.451 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1951,"Simulated","ppmv CO2","global",308.2051 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1952,"Simulated","ppmv CO2","global",308.4455 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1953,"Simulated","ppmv CO2","global",309.2283 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1954,"Simulated","ppmv CO2","global",310.2085 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1955,"Simulated","ppmv CO2","global",311.1634 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1956,"Simulated","ppmv CO2","global",312.1996 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1957,"Simulated","ppmv CO2","global",313.2736 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1958,"Simulated","ppmv CO2","global",314.2161 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1959,"Simulated","ppmv CO2","global",315.179 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1960,"Simulated","ppmv CO2","global",316.4955 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1961,"Simulated","ppmv CO2","global",317.4375 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1962,"Simulated","ppmv CO2","global",318.013 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1963,"Simulated","ppmv CO2","global",318.7876 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1964,"Simulated","ppmv CO2","global",320.0643 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1965,"Simulated","ppmv CO2","global",320.8047 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1966,"Simulated","ppmv CO2","global",321.9362 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1967,"Simulated","ppmv CO2","global",322.9595 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1968,"Simulated","ppmv CO2","global",323.7302 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1969,"Simulated","ppmv CO2","global",324.6028 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1970,"Simulated","ppmv CO2","global",325.6826 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1971,"Simulated","ppmv CO2","global",326.7125 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1972,"Simulated","ppmv CO2","global",327.8833 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1973,"Simulated","ppmv CO2","global",329.5002 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1974,"Simulated","ppmv CO2","global",330.7468 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1975,"Simulated","ppmv CO2","global",332.191 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1976,"Simulated","ppmv CO2","global",333.6079 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1977,"Simulated","ppmv CO2","global",335.0145 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1978,"Simulated","ppmv CO2","global",336.8021 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1979,"Simulated","ppmv CO2","global",338.4957 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1980,"Simulated","ppmv CO2","global",339.6572 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1981,"Simulated","ppmv CO2","global",341.1646 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1982,"Simulated","ppmv CO2","global",343.0393 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1983,"Simulated","ppmv CO2","global",344.3461 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1984,"Simulated","ppmv CO2","global",346.1373 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1985,"Simulated","ppmv CO2","global",347.9643 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1986,"Simulated","ppmv CO2","global",349.8008 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1987,"Simulated","ppmv CO2","global",351.2761 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1988,"Simulated","ppmv CO2","global",353.5586 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1989,"Simulated","ppmv CO2","global",355.3436 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1990,"Simulated","ppmv CO2","global",357.3821 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1991,"Simulated","ppmv CO2","global",359.3584 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1992,"Simulated","ppmv CO2","global",361.3248 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1993,"Simulated","ppmv CO2","global",363.0231 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1994,"Simulated","ppmv CO2","global",364.6789 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1995,"Simulated","ppmv CO2","global",366.4488 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1996,"Simulated","ppmv CO2","global",368.2953 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1997,"Simulated","ppmv CO2","global",370.1908 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1998,"Simulated","ppmv CO2","global",372.4689 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1999,"Simulated","ppmv CO2","global",374.2209 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2000,"Simulated","ppmv CO2","global",376.2558 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2001,"Simulated","ppmv CO2","global",377.797 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2002,"Simulated","ppmv CO2","global",379.4667 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2003,"Simulated","ppmv CO2","global",381.2698 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2004,"Simulated","ppmv CO2","global",383.4447 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2005,"Simulated","ppmv CO2","global",385.3799 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1850,"Simulated","ppmv CO2","HL",279.2695 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1851,"Simulated","ppmv CO2","HL",279.6505 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1852,"Simulated","ppmv CO2","HL",279.6161 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1853,"Simulated","ppmv CO2","HL",279.4237 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1854,"Simulated","ppmv CO2","HL",279.5893 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1855,"Simulated","ppmv CO2","HL",279.7028 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1856,"Simulated","ppmv CO2","HL",279.786 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1857,"Simulated","ppmv CO2","HL",279.8353 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1858,"Simulated","ppmv CO2","HL",280.0675 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1859,"Simulated","ppmv CO2","HL",280.2782 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1860,"Simulated","ppmv CO2","HL",280.4103 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1861,"Simulated","ppmv CO2","HL",280.7389 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1862,"Simulated","ppmv CO2","HL",280.6325 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1863,"Simulated","ppmv CO2","HL",280.9259 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1864,"Simulated","ppmv CO2","HL",281.3178 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1865,"Simulated","ppmv CO2","HL",281.4748 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1866,"Simulated","ppmv CO2","HL",281.7012 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1867,"Simulated","ppmv CO2","HL",282.0935 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1868,"Simulated","ppmv CO2","HL",282.2001 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1869,"Simulated","ppmv CO2","HL",282.2217 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1870,"Simulated","ppmv CO2","HL",282.5121 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1871,"Simulated","ppmv CO2","HL",282.8324 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1872,"Simulated","ppmv CO2","HL",283.0436 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1873,"Simulated","ppmv CO2","HL",283.0543 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1874,"Simulated","ppmv CO2","HL",283.0103 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1875,"Simulated","ppmv CO2","HL",283.3951 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1876,"Simulated","ppmv CO2","HL",283.5899 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1877,"Simulated","ppmv CO2","HL",283.4269 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1878,"Simulated","ppmv CO2","HL",283.6171 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1879,"Simulated","ppmv CO2","HL",284.1047 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1880,"Simulated","ppmv CO2","HL",284.3191 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1881,"Simulated","ppmv CO2","HL",284.3776 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1882,"Simulated","ppmv CO2","HL",284.3024 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1883,"Simulated","ppmv CO2","HL",284.405 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1884,"Simulated","ppmv CO2","HL",284.618 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1885,"Simulated","ppmv CO2","HL",284.7946 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1886,"Simulated","ppmv CO2","HL",284.7133 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1887,"Simulated","ppmv CO2","HL",284.8566 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1888,"Simulated","ppmv CO2","HL",285.3611 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1889,"Simulated","ppmv CO2","HL",285.3239 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1890,"Simulated","ppmv CO2","HL",285.5513 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1891,"Simulated","ppmv CO2","HL",285.8607 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1892,"Simulated","ppmv CO2","HL",286.0976 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1893,"Simulated","ppmv CO2","HL",286.1037 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1894,"Simulated","ppmv CO2","HL",286.7022 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1895,"Simulated","ppmv CO2","HL",286.8129 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1896,"Simulated","ppmv CO2","HL",286.8114 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1897,"Simulated","ppmv CO2","HL",287.4001 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1898,"Simulated","ppmv CO2","HL",287.6839 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1899,"Simulated","ppmv CO2","HL",287.6955 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1900,"Simulated","ppmv CO2","HL",287.9981 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1901,"Simulated","ppmv CO2","HL",288.1698 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1902,"Simulated","ppmv CO2","HL",288.4057 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1903,"Simulated","ppmv CO2","HL",288.5652 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1904,"Simulated","ppmv CO2","HL",288.6915 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1905,"Simulated","ppmv CO2","HL",288.955 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1906,"Simulated","ppmv CO2","HL",289.2914 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1907,"Simulated","ppmv CO2","HL",289.7438 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1908,"Simulated","ppmv CO2","HL",290.2608 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1909,"Simulated","ppmv CO2","HL",290.8865 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1910,"Simulated","ppmv CO2","HL",291.1235 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1911,"Simulated","ppmv CO2","HL",291.7758 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1912,"Simulated","ppmv CO2","HL",292.3368 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1913,"Simulated","ppmv CO2","HL",292.6315 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1914,"Simulated","ppmv CO2","HL",293.1805 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1915,"Simulated","ppmv CO2","HL",293.668 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1916,"Simulated","ppmv CO2","HL",293.7771 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1917,"Simulated","ppmv CO2","HL",294.349 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1918,"Simulated","ppmv CO2","HL",294.9502 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1919,"Simulated","ppmv CO2","HL",294.9998 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1920,"Simulated","ppmv CO2","HL",295.3609 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1921,"Simulated","ppmv CO2","HL",295.8082 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1922,"Simulated","ppmv CO2","HL",296.0881 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1923,"Simulated","ppmv CO2","HL",296.3424 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1924,"Simulated","ppmv CO2","HL",296.5177 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1925,"Simulated","ppmv CO2","HL",296.9748 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1926,"Simulated","ppmv CO2","HL",297.336 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1927,"Simulated","ppmv CO2","HL",297.6669 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1928,"Simulated","ppmv CO2","HL",298.1814 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1929,"Simulated","ppmv CO2","HL",298.0772 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1930,"Simulated","ppmv CO2","HL",298.3127 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1931,"Simulated","ppmv CO2","HL",298.9668 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1932,"Simulated","ppmv CO2","HL",299.3794 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1933,"Simulated","ppmv CO2","HL",299.7123 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1934,"Simulated","ppmv CO2","HL",300.2314 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1935,"Simulated","ppmv CO2","HL",300.6812 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1936,"Simulated","ppmv CO2","HL",300.8198 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1937,"Simulated","ppmv CO2","HL",301.533 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1938,"Simulated","ppmv CO2","HL",301.9303 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1939,"Simulated","ppmv CO2","HL",302.3547 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1940,"Simulated","ppmv CO2","HL",302.7687 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1941,"Simulated","ppmv CO2","HL",303.2532 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1942,"Simulated","ppmv CO2","HL",303.8532 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1943,"Simulated","ppmv CO2","HL",304.0253 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1944,"Simulated","ppmv CO2","HL",304.3445 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1945,"Simulated","ppmv CO2","HL",304.6877 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1946,"Simulated","ppmv CO2","HL",305.07 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1947,"Simulated","ppmv CO2","HL",305.4619 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1948,"Simulated","ppmv CO2","HL",305.7966 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1949,"Simulated","ppmv CO2","HL",306.3057 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1950,"Simulated","ppmv CO2","HL",307.0018 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1951,"Simulated","ppmv CO2","HL",307.7884 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1952,"Simulated","ppmv CO2","HL",308.116 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1953,"Simulated","ppmv CO2","HL",308.7645 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1954,"Simulated","ppmv CO2","HL",309.7138 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1955,"Simulated","ppmv CO2","HL",310.5847 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1956,"Simulated","ppmv CO2","HL",311.6041 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1957,"Simulated","ppmv CO2","HL",312.7111 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1958,"Simulated","ppmv CO2","HL",313.6085 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1959,"Simulated","ppmv CO2","HL",314.5319 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1960,"Simulated","ppmv CO2","HL",315.773 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1961,"Simulated","ppmv CO2","HL",316.8769 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1962,"Simulated","ppmv CO2","HL",317.4957 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1963,"Simulated","ppmv CO2","HL",318.2189 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1964,"Simulated","ppmv CO2","HL",319.4912 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1965,"Simulated","ppmv CO2","HL",320.2964 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1966,"Simulated","ppmv CO2","HL",321.3474 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1967,"Simulated","ppmv CO2","HL",322.3739 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1968,"Simulated","ppmv CO2","HL",323.1638 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1969,"Simulated","ppmv CO2","HL",324.1861 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1970,"Simulated","ppmv CO2","HL",325.1742 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1971,"Simulated","ppmv CO2","HL",326.1026 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1972,"Simulated","ppmv CO2","HL",327.3333 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1973,"Simulated","ppmv CO2","HL",328.7159 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1974,"Simulated","ppmv CO2","HL",330.0737 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1975,"Simulated","ppmv CO2","HL",331.4385 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1976,"Simulated","ppmv CO2","HL",332.8672 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1977,"Simulated","ppmv CO2","HL",334.2073 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1978,"Simulated","ppmv CO2","HL",335.9461 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1979,"Simulated","ppmv CO2","HL",337.6841 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1980,"Simulated","ppmv CO2","HL",338.9078 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1981,"Simulated","ppmv CO2","HL",340.3654 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1982,"Simulated","ppmv CO2","HL",342.1848 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1983,"Simulated","ppmv CO2","HL",343.484 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1984,"Simulated","ppmv CO2","HL",345.2198 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1985,"Simulated","ppmv CO2","HL",347.0947 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1986,"Simulated","ppmv CO2","HL",348.8846 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1987,"Simulated","ppmv CO2","HL",350.3203 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1988,"Simulated","ppmv CO2","HL",352.4796 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1989,"Simulated","ppmv CO2","HL",354.3609 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1990,"Simulated","ppmv CO2","HL",356.3415 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1991,"Simulated","ppmv CO2","HL",358.3893 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1992,"Simulated","ppmv CO2","HL",360.2037 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1993,"Simulated","ppmv CO2","HL",362.0347 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1994,"Simulated","ppmv CO2","HL",363.6977 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1995,"Simulated","ppmv CO2","HL",365.4908 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1996,"Simulated","ppmv CO2","HL",367.317 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1997,"Simulated","ppmv CO2","HL",369.1744 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1998,"Simulated","ppmv CO2","HL",371.3288 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1999,"Simulated","ppmv CO2","HL",373.1578 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2000,"Simulated","ppmv CO2","HL",375.122 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2001,"Simulated","ppmv CO2","HL",376.8572 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2002,"Simulated","ppmv CO2","HL",378.5051 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2003,"Simulated","ppmv CO2","HL",380.2494 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2004,"Simulated","ppmv CO2","HL",382.327 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2005,"Simulated","ppmv CO2","HL",384.2981 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1850,"Simulated","ppmv CO2","LL",279.2379 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1851,"Simulated","ppmv CO2","LL",279.8612 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1852,"Simulated","ppmv CO2","LL",279.7654 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1853,"Simulated","ppmv CO2","LL",279.5772 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1854,"Simulated","ppmv CO2","LL",279.8233 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1855,"Simulated","ppmv CO2","LL",279.8078 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1856,"Simulated","ppmv CO2","LL",279.9668 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1857,"Simulated","ppmv CO2","LL",280.0618 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1858,"Simulated","ppmv CO2","LL",280.3667 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1859,"Simulated","ppmv CO2","LL",280.5685 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1860,"Simulated","ppmv CO2","LL",280.7191 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1861,"Simulated","ppmv CO2","LL",280.9035 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1862,"Simulated","ppmv CO2","LL",280.8233 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1863,"Simulated","ppmv CO2","LL",281.2632 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1864,"Simulated","ppmv CO2","LL",281.6727 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1865,"Simulated","ppmv CO2","LL",281.7515 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1866,"Simulated","ppmv CO2","LL",282.0441 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1867,"Simulated","ppmv CO2","LL",282.4268 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1868,"Simulated","ppmv CO2","LL",282.4771 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1869,"Simulated","ppmv CO2","LL",282.4758 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1870,"Simulated","ppmv CO2","LL",282.7372 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1871,"Simulated","ppmv CO2","LL",283.2312 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1872,"Simulated","ppmv CO2","LL",283.345 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1873,"Simulated","ppmv CO2","LL",283.228 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1874,"Simulated","ppmv CO2","LL",283.1971 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1875,"Simulated","ppmv CO2","LL",283.6811 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1876,"Simulated","ppmv CO2","LL",283.8088 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1877,"Simulated","ppmv CO2","LL",283.6672 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1878,"Simulated","ppmv CO2","LL",283.9065 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1879,"Simulated","ppmv CO2","LL",284.3492 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1880,"Simulated","ppmv CO2","LL",284.6204 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1881,"Simulated","ppmv CO2","LL",284.5724 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1882,"Simulated","ppmv CO2","LL",284.5359 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1883,"Simulated","ppmv CO2","LL",284.5956 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1884,"Simulated","ppmv CO2","LL",284.8629 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1885,"Simulated","ppmv CO2","LL",284.9855 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1886,"Simulated","ppmv CO2","LL",284.8308 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1887,"Simulated","ppmv CO2","LL",285.182 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1888,"Simulated","ppmv CO2","LL",285.6999 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1889,"Simulated","ppmv CO2","LL",285.5094 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1890,"Simulated","ppmv CO2","LL",285.8127 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1891,"Simulated","ppmv CO2","LL",286.1587 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1892,"Simulated","ppmv CO2","LL",286.3143 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1893,"Simulated","ppmv CO2","LL",286.3637 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1894,"Simulated","ppmv CO2","LL",287.1667 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1895,"Simulated","ppmv CO2","LL",286.9992 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1896,"Simulated","ppmv CO2","LL",287.0626 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1897,"Simulated","ppmv CO2","LL",287.7823 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1898,"Simulated","ppmv CO2","LL",287.9797 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1899,"Simulated","ppmv CO2","LL",287.9661 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1900,"Simulated","ppmv CO2","LL",288.2364 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1901,"Simulated","ppmv CO2","LL",288.4135 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1902,"Simulated","ppmv CO2","LL",288.732 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1903,"Simulated","ppmv CO2","LL",288.8315 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1904,"Simulated","ppmv CO2","LL",288.8863 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1905,"Simulated","ppmv CO2","LL",289.183 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1906,"Simulated","ppmv CO2","LL",289.6187 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1907,"Simulated","ppmv CO2","LL",290.1224 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1908,"Simulated","ppmv CO2","LL",290.7166 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1909,"Simulated","ppmv CO2","LL",291.3142 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1910,"Simulated","ppmv CO2","LL",291.4754 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1911,"Simulated","ppmv CO2","LL",292.3135 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1912,"Simulated","ppmv CO2","LL",292.7647 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1913,"Simulated","ppmv CO2","LL",293.04 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1914,"Simulated","ppmv CO2","LL",293.6987 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1915,"Simulated","ppmv CO2","LL",294.0108 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1916,"Simulated","ppmv CO2","LL",294.0954 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1917,"Simulated","ppmv CO2","LL",294.8106 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1918,"Simulated","ppmv CO2","LL",295.2983 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1919,"Simulated","ppmv CO2","LL",295.3419 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1920,"Simulated","ppmv CO2","LL",295.7867 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1921,"Simulated","ppmv CO2","LL",296.2045 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1922,"Simulated","ppmv CO2","LL",296.4254 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1923,"Simulated","ppmv CO2","LL",296.6949 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1924,"Simulated","ppmv CO2","LL",296.7447 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1925,"Simulated","ppmv CO2","LL",297.364 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1926,"Simulated","ppmv CO2","LL",297.6872 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1927,"Simulated","ppmv CO2","LL",298.1023 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1928,"Simulated","ppmv CO2","LL",298.4922 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1929,"Simulated","ppmv CO2","LL",298.2674 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1930,"Simulated","ppmv CO2","LL",298.7102 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1931,"Simulated","ppmv CO2","LL",299.3609 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1932,"Simulated","ppmv CO2","LL",299.7575 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1933,"Simulated","ppmv CO2","LL",300.0837 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1934,"Simulated","ppmv CO2","LL",300.7105 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1935,"Simulated","ppmv CO2","LL",301.0928 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1936,"Simulated","ppmv CO2","LL",301.2219 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1937,"Simulated","ppmv CO2","LL",301.8995 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1938,"Simulated","ppmv CO2","LL",302.2552 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1939,"Simulated","ppmv CO2","LL",302.8155 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1940,"Simulated","ppmv CO2","LL",303.2258 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1941,"Simulated","ppmv CO2","LL",303.7956 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1942,"Simulated","ppmv CO2","LL",304.1865 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1943,"Simulated","ppmv CO2","LL",304.3472 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1944,"Simulated","ppmv CO2","LL",304.6721 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1945,"Simulated","ppmv CO2","LL",305.0711 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1946,"Simulated","ppmv CO2","LL",305.4661 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1947,"Simulated","ppmv CO2","LL",305.8939 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1948,"Simulated","ppmv CO2","LL",306.1343 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1949,"Simulated","ppmv CO2","LL",306.7124 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1950,"Simulated","ppmv CO2","LL",307.5505 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1951,"Simulated","ppmv CO2","LL",308.2974 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1952,"Simulated","ppmv CO2","LL",308.5185 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1953,"Simulated","ppmv CO2","LL",309.3311 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1954,"Simulated","ppmv CO2","LL",310.3181 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1955,"Simulated","ppmv CO2","LL",311.2917 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1956,"Simulated","ppmv CO2","LL",312.3315 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1957,"Simulated","ppmv CO2","LL",313.3983 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1958,"Simulated","ppmv CO2","LL",314.3507 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1959,"Simulated","ppmv CO2","LL",315.3225 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1960,"Simulated","ppmv CO2","LL",316.6556 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1961,"Simulated","ppmv CO2","LL",317.5617 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1962,"Simulated","ppmv CO2","LL",318.1277 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1963,"Simulated","ppmv CO2","LL",318.9137 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1964,"Simulated","ppmv CO2","LL",320.1913 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1965,"Simulated","ppmv CO2","LL",320.9173 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1966,"Simulated","ppmv CO2","LL",322.0668 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1967,"Simulated","ppmv CO2","LL",323.0893 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1968,"Simulated","ppmv CO2","LL",323.8557 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1969,"Simulated","ppmv CO2","LL",324.6952 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1970,"Simulated","ppmv CO2","LL",325.7953 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1971,"Simulated","ppmv CO2","LL",326.8477 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1972,"Simulated","ppmv CO2","LL",328.0052 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1973,"Simulated","ppmv CO2","LL",329.6741 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1974,"Simulated","ppmv CO2","LL",330.8961 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1975,"Simulated","ppmv CO2","LL",332.3578 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1976,"Simulated","ppmv CO2","LL",333.7721 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1977,"Simulated","ppmv CO2","LL",335.1934 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1978,"Simulated","ppmv CO2","LL",336.9919 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1979,"Simulated","ppmv CO2","LL",338.6756 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1980,"Simulated","ppmv CO2","LL",339.8234 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1981,"Simulated","ppmv CO2","LL",341.3417 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1982,"Simulated","ppmv CO2","LL",343.2287 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1983,"Simulated","ppmv CO2","LL",344.5372 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1984,"Simulated","ppmv CO2","LL",346.3407 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1985,"Simulated","ppmv CO2","LL",348.1571 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1986,"Simulated","ppmv CO2","LL",350.0039 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1987,"Simulated","ppmv CO2","LL",351.488 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1988,"Simulated","ppmv CO2","LL",353.7978 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1989,"Simulated","ppmv CO2","LL",355.5614 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1990,"Simulated","ppmv CO2","LL",357.6128 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1991,"Simulated","ppmv CO2","LL",359.5732 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1992,"Simulated","ppmv CO2","LL",361.5733 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1993,"Simulated","ppmv CO2","LL",363.2422 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1994,"Simulated","ppmv CO2","LL",364.8964 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1995,"Simulated","ppmv CO2","LL",366.6611 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1996,"Simulated","ppmv CO2","LL",368.5122 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1997,"Simulated","ppmv CO2","LL",370.4161 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1998,"Simulated","ppmv CO2","LL",372.7216 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1999,"Simulated","ppmv CO2","LL",374.4566 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2000,"Simulated","ppmv CO2","LL",376.5071 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2001,"Simulated","ppmv CO2","LL",378.0054 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2002,"Simulated","ppmv CO2","LL",379.6798 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2003,"Simulated","ppmv CO2","LL",381.496 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2004,"Simulated","ppmv CO2","LL",383.6925 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2005,"Simulated","ppmv CO2","LL",385.6197 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/hist/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/hist/summary.csv deleted file mode 100644 index 009f1a4e4..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/hist/summary.csv +++ /dev/null @@ -1,469 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -1850,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.839214474,279.2436,288.6175333,284.081675,284.2327833,1,CMIP5 -1850,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.82601363,279.2695,288.5749667,284.1015667,284.2809,1,CMIP5 -1850,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.842894671,279.2379,288.6264667,284.07805,284.2239167,1,CMIP5 -1851,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.525887653,279.823,288.4534,284.1661917,284.1941833,1,CMIP5 -1851,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.581427159,279.6505,288.3834,284.1642167,284.3114833,1,CMIP5 -1851,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.514991474,279.8612,288.468,284.1675,284.1704,1,CMIP5 -1852,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.73014305,279.7383,288.8388,284.1612417,284.0339333,1,CMIP5 -1852,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.714507413,279.6161,288.6578,284.1508333,284.1647167,1,CMIP5 -1852,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.7341469,279.7654,288.8766,284.16385,284.0067,1,CMIP5 -1853,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.908592753,279.5493,289.0769,284.3509333,284.3887667,1,CMIP5 -1853,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.902084596,279.4237,288.8975333,284.2740583,284.3875,1,CMIP5 -1853,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.909884341,279.5772,289.1143333,284.3680083,284.39025,1,CMIP5 -1854,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.825728569,279.7808,289.1285,284.5806667,284.7066833,1,CMIP5 -1854,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.846855994,279.5893,288.9504667,284.475875,284.6818667,1,CMIP5 -1854,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.821173448,279.8233,289.1657,284.6040167,284.7135333,1,CMIP5 -1855,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.729047402,279.7888,288.8738,284.6422833,284.9532667,1,CMIP5 -1855,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.742849501,279.7028,288.8038667,284.5707333,284.8881333,1,CMIP5 -1855,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.726254583,279.8078,288.8884,284.6584,284.9687,1,CMIP5 -1856,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.658308488,279.934,288.8069667,284.7983333,285.2261833,1,CMIP5 -1856,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.72505434,279.786,288.8046,284.724875,285.15445,1,CMIP5 -1856,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.644288104,279.9668,288.8074667,284.8151583,285.2431833,1,CMIP5 -1857,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.576806305,280.0207,288.6448333,284.8788417,285.4249167,1,CMIP5 -1857,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.654894854,279.8353,288.6376667,284.794175,285.3518667,1,CMIP5 -1857,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.560725335,280.0618,288.6463333,284.8983417,285.4426167,1,CMIP5 -1858,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.338969157,280.3125,288.3537,284.8539667,285.3748333,1,CMIP5 -1858,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.479395577,280.0675,288.429,284.829775,285.4113,1,CMIP5 -1858,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.309445872,280.3667,288.338,284.860425,285.3685,1,CMIP5 -1859,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.16092552,280.5158,288.1225333,284.8237,285.3282333,1,CMIP5 -1859,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.292081379,280.2782,288.1782333,284.79815,285.3680833,1,CMIP5 -1859,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.133263588,280.5685,288.1109,284.8303917,285.3210833,1,CMIP5 -1860,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.096317826,280.6631,288.0458,284.928625,285.5028,1,CMIP5 -1860,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.217901551,280.4103,288.0812,284.8848167,285.5238833,1,CMIP5 -1860,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.07160157,280.7191,288.0384333,284.939525,285.5002833,1,CMIP5 -1861,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.028792124,280.8736,288.1408,284.9093333,285.3114667,1,CMIP5 -1861,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.057782564,280.7389,288.0749667,284.9136667,285.4204,1,CMIP5 -1861,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.024471853,280.9035,288.1545667,284.9094583,285.2898833,1,CMIP5 -1862,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.317166279,280.7887,288.7432667,285.03695,285.3079167,1,CMIP5 -1862,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.272394785,280.6325,288.5177667,284.9679583,285.3607833,1,CMIP5 -1862,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.328722299,280.8233,288.7903667,285.0528333,285.2988333,1,CMIP5 -1863,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.191885546,281.202,288.8694333,285.2167583,285.3978,1,CMIP5 -1863,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.202246816,280.9259,288.6473667,285.1227,285.4587667,1,CMIP5 -1863,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.191084574,281.2632,288.9158333,285.2379833,285.38645,1,CMIP5 -1864,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.902363585,281.6083,288.5819,285.2615417,285.4279833,1,CMIP5 -1864,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.988642006,281.3178,288.5231333,285.2055333,285.4906,1,CMIP5 -1864,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.884403127,281.6727,288.5941333,285.2745333,285.41565,1,CMIP5 -1865,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.788056377,281.7013,288.4364333,285.2978583,285.52685,1,CMIP5 -1865,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.883742035,281.4748,288.4444333,285.2666417,285.5736667,1,CMIP5 -1865,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.767493614,281.7515,288.4347667,285.3052833,285.5174333,1,CMIP5 -1866,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.718625546,281.9819,288.4592,285.4885,285.75645,1,CMIP5 -1866,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.810440006,281.7012,288.4627,285.40065,285.71935,1,CMIP5 -1866,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.700199265,282.0441,288.4584667,285.5087917,285.7663,1,CMIP5 -1867,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.70687757,282.3664,288.8363667,285.8039167,286.00645,1,CMIP5 -1867,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.747791647,282.0935,288.6955667,285.673575,285.9526167,1,CMIP5 -1867,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.698330754,282.4268,288.8657667,285.8328333,286.0193833,1,CMIP5 -1868,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.682439764,282.4269,288.8973,285.8955583,286.1290167,1,CMIP5 -1868,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.724766155,282.2001,288.7768333,285.8076667,286.1268667,1,CMIP5 -1868,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.673500321,282.4771,288.9224667,285.9151333,286.1304833,1,CMIP5 -1869,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.689921616,282.4297,288.9415,285.9527417,286.2198833,1,CMIP5 -1869,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.738342109,282.2217,288.8409333,285.874125,286.2169333,1,CMIP5 -1869,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.679352368,282.4758,288.9625,285.9702083,286.2212667,1,CMIP5 -1870,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.535293398,282.6963,288.7341,286.1027833,286.4903667,1,CMIP5 -1870,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.592956319,282.5121,288.7208333,286.033325,286.4501833,1,CMIP5 -1870,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.523553929,282.7372,288.7368667,286.1187583,286.5004833,1,CMIP5 -1871,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.608408185,283.1589,289.3316667,286.5890167,286.93275,1,CMIP5 -1871,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.643987814,282.8324,289.1216333,286.4092667,286.8415167,1,CMIP5 -1871,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.60157393,283.2312,289.3755,286.6287917,286.9542333,1,CMIP5 -1872,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.719563776,283.2903,289.7525667,286.7856167,287.0498,1,CMIP5 -1872,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.713449937,283.0436,289.5258333,286.6438833,287.00305,1,CMIP5 -1872,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.721602801,283.345,289.7999,286.817,287.06155,1,CMIP5 -1873,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.775652821,283.1965,289.8752333,286.8365333,287.1372,1,CMIP5 -1873,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.745005735,283.0543,289.6498333,286.7288583,287.10565,1,CMIP5 -1873,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.782092369,283.228,289.9222667,286.8600083,287.1448833,1,CMIP5 -1874,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.017906987,283.1632,290.4048667,287.1728083,287.5615833,1,CMIP5 -1874,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.960750565,283.0103,290.1163,287.0225667,287.4818333,1,CMIP5 -1874,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.030537719,283.1971,290.4651,287.2057417,287.5803833,1,CMIP5 -1875,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.910726313,283.6292,290.5982667,287.3417,287.5696667,1,CMIP5 -1875,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.925459036,283.3951,290.4281667,287.2423917,287.57315,1,CMIP5 -1875,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.908246226,283.6811,290.6338,287.363975,287.5705,1,CMIP5 -1876,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.748050308,283.7691,290.2969,287.2496,287.4662,1,CMIP5 -1876,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.773349709,283.5899,290.236,287.2104,287.50785,1,CMIP5 -1876,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.743844818,283.8088,290.3096333,287.259025,287.4588333,1,CMIP5 -1877,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.747457381,283.6236,290.0583667,287.1634,287.4858167,1,CMIP5 -1877,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.795591423,283.4269,290.0340667,287.1378667,287.54525,1,CMIP5 -1877,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.738212452,283.6672,290.0634,287.1698583,287.4744167,1,CMIP5 -1878,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.864040546,283.854,290.5741,287.410925,287.6078,1,CMIP5 -1878,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.871077113,283.6171,290.4171667,287.3441333,287.6711333,1,CMIP5 -1878,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.863861825,283.9065,290.6069,287.4262167,287.5957333,1,CMIP5 -1879,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.758204601,284.3049,290.7713,287.6071667,287.6762333,1,CMIP5 -1879,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.745137509,284.1047,290.6464,287.5428167,287.7100833,1,CMIP5 -1879,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.76263767,284.3492,290.7973333,287.6220583,287.67085,1,CMIP5 -1880,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.725240809,284.5657,290.8901333,287.8060333,287.88415,1,CMIP5 -1880,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.710520318,284.3191,290.697,287.708825,287.9096,1,CMIP5 -1880,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.729430372,284.6204,290.9304333,287.8278083,287.8802,1,CMIP5 -1881,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.799630088,284.537,290.8681,287.989275,288.276,1,CMIP5 -1881,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.766315743,284.3776,290.7732,287.8894417,288.2034833,1,CMIP5 -1881,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.808233492,284.5724,290.8879333,288.0119,288.2936333,1,CMIP5 -1882,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.834740236,284.4935,290.7926,288.2023583,288.7616667,1,CMIP5 -1882,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.822639152,284.3024,290.6886667,288.069225,288.6429167,1,CMIP5 -1882,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.838323197,284.5359,290.8143333,288.2320667,288.7890167,1,CMIP5 -1883,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.973707237,284.561,291.4797,288.4484417,288.8765333,1,CMIP5 -1883,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.940340861,284.405,291.2397,288.3147667,288.8071833,1,CMIP5 -1883,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.980529944,284.5956,291.5298333,288.47745,288.8921833,1,CMIP5 -1884,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.672605725,284.8185,291.0582,288.4802083,289.0220667,1,CMIP5 -1884,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.763943498,284.618,291.089,288.4040333,288.9545667,1,CMIP5 -1884,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.652598102,284.8629,291.0517667,288.4970583,289.0367833,1,CMIP5 -1885,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.421225678,284.9509,290.1486333,288.4540417,289.3583167,1,CMIP5 -1885,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.506046195,284.7946,290.3234333,288.41475,289.2704833,1,CMIP5 -1885,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.404133368,284.9855,290.1121667,288.46345,289.3780667,1,CMIP5 -1886,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.408090424,284.8095,289.9902,288.3482833,289.2967167,1,CMIP5 -1886,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.487712972,284.7133,289.9526,288.3783917,289.4238333,1,CMIP5 -1886,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.39204707,284.8308,290.0087,288.3426583,289.2655667,1,CMIP5 -1887,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.318384339,285.123,290.1569,288.5530917,289.4662333,1,CMIP5 -1887,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.437677625,284.8566,290.0028,288.480975,289.53225,1,CMIP5 -1887,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.293226103,285.182,290.1917,288.5696417,289.4524333,1,CMIP5 -1888,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.226972888,285.6384,290.7355,288.873875,289.5608,1,CMIP5 -1888,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.315703778,285.3611,290.4874,288.782575,289.6409,1,CMIP5 -1888,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.209735024,285.6999,290.7916,288.8949083,289.5440667,1,CMIP5 -1889,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.544212515,285.4758,291.4207,289.10855,289.76885,1,CMIP5 -1889,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.51359121,285.3239,291.0661,288.97995,289.7649,1,CMIP5 -1889,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.553152106,285.5094,291.5008,289.1374,289.7697,1,CMIP5 -1890,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.356550118,285.7652,291.2178,289.159225,289.82695,1,CMIP5 -1890,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.428195603,285.5513,291.0889,289.0869333,289.8537667,1,CMIP5 -1890,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.341867553,285.8127,291.2469,289.1755667,289.8213333,1,CMIP5 -1891,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.15598763,286.1046,291.1007,289.2076083,289.8125667,1,CMIP5 -1891,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.243780933,285.8607,290.9436,289.136225,289.8703,1,CMIP5 -1891,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.138299689,286.1587,291.1361,289.2239417,289.8004833,1,CMIP5 -1892,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.314220552,286.275,291.8337,289.4455833,289.8368167,1,CMIP5 -1892,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.314323631,286.0976,291.5424,289.3659417,289.9118833,1,CMIP5 -1892,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.31723735,286.3143,291.8995,289.4640167,289.8211333,1,CMIP5 -1893,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.328863826,286.3165,291.9475,289.45105,289.7701,1,CMIP5 -1893,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.385740581,286.1037,291.7854,289.406975,289.8694,1,CMIP5 -1893,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.318704463,286.3637,291.9841,289.4616417,289.7493833,1,CMIP5 -1894,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.945390296,287.0825,291.7609,289.7414917,290.0612833,1,CMIP5 -1894,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.093829343,286.7022,291.6627,289.622975,290.0635,1,CMIP5 -1894,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.91479484,287.1667,291.7831,289.7678583,290.0608167,1,CMIP5 -1895,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.189096444,286.9654,292.2671,289.816775,290.0173,1,CMIP5 -1895,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.19664273,286.8129,292.0714,289.7696083,290.0970667,1,CMIP5 -1895,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.189243969,286.9992,292.3112,289.8279167,290.0006333,1,CMIP5 -1896,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.493610826,287.017,293.028,290.0636917,290.1048833,1,CMIP5 -1896,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.443637988,286.8114,292.6543,289.9423583,290.1518667,1,CMIP5 -1896,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.507596806,287.0626,293.1124,290.091275,290.09505,1,CMIP5 -1897,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.391267072,287.713,293.4843,290.4770667,290.3554833,1,CMIP5 -1897,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.374793447,287.4001,293.1137,290.31495,290.373,1,CMIP5 -1897,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.398377136,287.7823,293.5681,290.5135333,290.3518667,1,CMIP5 -1898,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.154994652,287.9261,293.1639,290.55375,290.5625,1,CMIP5 -1898,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.216835413,287.6839,293.0172,290.4562,290.56185,1,CMIP5 -1898,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.143480591,287.9797,293.197,290.575475,290.5626,1,CMIP5 -1899,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.167309221,287.9171,293.2214,290.618375,290.6675,1,CMIP5 -1899,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.223813412,287.6955,293.0968,290.5318583,290.6675667,1,CMIP5 -1899,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.15746332,287.9661,293.2495,290.6376417,290.6674833,1,CMIP5 -1900,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.202412631,288.1931,293.5865,290.8884,290.887,1,CMIP5 -1900,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.218544391,287.9981,293.4176,290.804625,290.9014,1,CMIP5 -1900,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.201539842,288.2364,293.6246,290.9072417,290.8839833,1,CMIP5 -1901,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.324404044,288.3693,294.0375,291.05375,290.9041,1,CMIP5 -1901,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.269953812,288.1698,293.7295,290.9586,290.96755,1,CMIP5 -1901,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.340269321,288.4135,294.107,291.07555,290.89085,1,CMIP5 -1902,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.13738003,288.6728,293.8646,291.15045,291.0322,1,CMIP5 -1902,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.200787808,288.4057,293.7948,291.0916,291.08295,1,CMIP5 -1902,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.126477571,288.732,293.8804,291.1639083,291.0216167,1,CMIP5 -1903,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.999237541,288.7832,293.5003,291.2072667,291.2727833,1,CMIP5 -1903,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.025925353,288.5652,293.4755,291.13805,291.25575,1,CMIP5 -1903,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.997977507,288.8315,293.5059,291.2225083,291.2763167,1,CMIP5 -1904,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.249679836,288.851,294.0028,291.4836917,291.5404833,1,CMIP5 -1904,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.191697459,288.6915,293.8797,291.395625,291.50565,1,CMIP5 -1904,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.265235398,288.8863,294.0306,291.5031,291.54775,1,CMIP5 -1905,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.189621399,289.1416,294.3061,291.62445,291.52505,1,CMIP5 -1905,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.18066609,288.955,294.1655,291.5614583,291.5626667,1,CMIP5 -1905,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.19295066,289.183,294.3379,291.638825,291.5172,1,CMIP5 -1906,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.95076469,289.5593,294.2264,291.7843,291.67575,1,CMIP5 -1906,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.998679393,289.2914,294.1163,291.7018333,291.6998167,1,CMIP5 -1906,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.941565625,289.6187,294.2512,291.802825,291.6707,1,CMIP5 -1907,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.936127799,290.0538,294.74,292.1883833,291.9798667,1,CMIP5 -1907,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.947245435,289.7438,294.486,292.0532417,291.9915833,1,CMIP5 -1907,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.936232385,290.1224,294.7973,292.2186417,291.9774333,1,CMIP5 -1908,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.991557783,290.6339,295.463,292.8236917,292.5989333,1,CMIP5 -1908,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.01920736,290.2608,295.1869,292.592325,292.4608,1,CMIP5 -1908,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.986958366,290.7166,295.5254,292.8743667,292.6277333,1,CMIP5 -1909,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.914927561,291.2366,295.9045,293.4076167,293.2446833,1,CMIP5 -1909,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.912170848,290.8865,295.563,293.13215,293.03955,1,CMIP5 -1909,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.916828423,291.3142,295.9817,293.4677333,293.2875167,1,CMIP5 -1910,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.845667656,291.4115,295.8882,293.7307417,293.8116333,1,CMIP5 -1910,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.893819872,291.1235,295.7184,293.4952917,293.5696333,1,CMIP5 -1910,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.835190277,291.4754,295.9266,293.781575,293.86215,1,CMIP5 -1911,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.702365916,292.216,296.2473,294.2975083,294.3633667,1,CMIP5 -1911,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.798878924,291.7758,296.0491,294.0205333,294.1286167,1,CMIP5 -1911,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.681469751,292.3135,296.2921,294.3575833,294.4123667,1,CMIP5 -1912,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.687615786,292.6871,296.5166,294.7567583,294.9116667,1,CMIP5 -1912,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.744925127,292.3368,296.3027,294.5111,294.70245,1,CMIP5 -1912,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.675256,292.7647,296.565,294.8100917,294.9553333,1,CMIP5 -1913,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.621178709,292.9659,296.574,295.1182,295.46645,1,CMIP5 -1913,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.708616736,292.6315,296.4141,294.876925,295.23105,1,CMIP5 -1913,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.601972288,293.04,296.6102,295.17035,295.5156,1,CMIP5 -1914,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.711646303,293.6047,297.3224,295.7529833,296.0424167,1,CMIP5 -1914,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.780273689,293.1805,297.0279,295.4634167,295.8226333,1,CMIP5 -1914,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.696955043,293.6987,297.3889,295.81605,296.0883,1,CMIP5 -1915,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.914474041,293.9486,298.0192,296.1546,296.3253,1,CMIP5 -1915,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.906171057,293.668,297.661,295.9214083,296.1783167,1,CMIP5 -1915,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.917555805,294.0108,298.1001,296.2057167,296.3559833,1,CMIP5 -1916,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.953954696,294.0376,298.0284,296.426525,296.82005,1,CMIP5 -1916,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.011929706,293.7771,297.9266333,296.225975,296.6000833,1,CMIP5 -1916,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.941499376,294.0954,298.0631,296.4701083,296.8609667,1,CMIP5 -1917,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.810263674,294.7268,298.7834667,296.9180833,297.0810333,1,CMIP5 -1917,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.920285517,294.349,298.6347,296.6735417,296.8552333,1,CMIP5 -1917,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.78582249,294.8106,298.8145,296.9710333,297.1295167,1,CMIP5 -1918,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.95328939,295.2352,299.541,297.4749333,297.5617667,1,CMIP5 -1918,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.983458251,294.9502,299.369,297.2387583,297.3179167,1,CMIP5 -1918,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.946667108,295.2983,299.5769,297.526325,297.61505,1,CMIP5 -1919,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.34933931,295.2798,300.4136333,297.9433,298.0398833,1,CMIP5 -1919,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.353457009,294.9998,300.1954667,297.6808667,297.7641,1,CMIP5 -1919,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.348351943,295.3419,300.4592,298.0004,298.10025,1,CMIP5 -1920,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.379463649,295.7095,300.8036333,298.24515,298.2337333,1,CMIP5 -1920,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.433908858,295.3609,300.6925667,298.0273833,298.0280333,1,CMIP5 -1920,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.36811732,295.7867,300.8268333,298.29295,298.2791333,1,CMIP5 -1921,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.329267499,296.1326,301.1784667,298.5178917,298.38025,1,CMIP5 -1921,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.403901701,295.8082,301.0932,298.3158,298.1809,1,CMIP5 -1921,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.313232544,296.2045,301.1963333,298.562125,298.4238333,1,CMIP5 -1922,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.53242186,296.3642,301.7711333,298.98845,298.9092333,1,CMIP5 -1922,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.568568834,296.0881,301.6892333,298.7660583,298.64345,1,CMIP5 -1922,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.525511097,296.4254,301.7882333,299.0373,298.9677833,1,CMIP5 -1923,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.583147614,296.6309,302.3667,299.4471917,299.3955833,1,CMIP5 -1923,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.679553519,296.3424,302.2681667,299.205225,299.1051667,1,CMIP5 -1923,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.562430584,296.6949,302.3873,299.4996,299.4581,1,CMIP5 -1924,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.866826159,296.7035,303.191,299.7929333,299.6386167,1,CMIP5 -1924,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.861539991,296.5177,303.0133,299.584125,299.40275,1,CMIP5 -1924,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.867781752,296.7447,303.2281333,299.8382917,299.6901667,1,CMIP5 -1925,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.026834231,297.2934,304.0617333,300.3349333,299.9923,1,CMIP5 -1925,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.068106436,296.9748,303.868,300.092275,299.76315,1,CMIP5 -1925,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.017393826,297.364,304.1021667,300.3876333,300.0421833,1,CMIP5 -1926,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.996122564,297.6235,304.439,300.69125,300.35125,1,CMIP5 -1926,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.070686995,297.336,304.3348333,300.4735917,300.1117667,1,CMIP5 -1926,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.97975909,297.6872,304.4607667,300.7386167,300.40325,1,CMIP5 -1927,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.980394449,298.0233,304.9271333,301.1686833,300.86215,1,CMIP5 -1927,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.104104608,297.6669,304.8393667,300.9298417,300.60655,1,CMIP5 -1927,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.953239364,298.1023,304.9454333,301.2205083,300.91715,1,CMIP5 -1928,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.070030768,298.4358,305.5659333,301.6439667,301.2870667,1,CMIP5 -1928,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.140528621,298.1814,305.4692,301.4217583,301.0182167,1,CMIP5 -1928,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.054621498,298.4922,305.5861667,301.6923083,301.3454333,1,CMIP5 -1929,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.403915143,298.2329,306.2958667,302.0231667,301.78195,1,CMIP5 -1929,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.442403419,298.0772,306.1956333,301.7929,301.4493833,1,CMIP5 -1929,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.396029366,298.2674,306.3167667,302.073025,301.8539667,1,CMIP5 -1930,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.432011155,298.6381,306.6151667,302.4130333,302.1994333,1,CMIP5 -1930,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.54715889,298.3127,306.6146667,302.1973667,301.93105,1,CMIP5 -1930,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.407465917,298.7102,306.6152333,302.460525,302.2583333,1,CMIP5 -1931,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.335380683,299.2894,306.7816333,302.562525,302.0895333,1,CMIP5 -1931,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.443727369,298.9668,306.8022667,302.40985,301.9351667,1,CMIP5 -1931,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.312248541,299.3609,306.7773333,302.5964083,302.1237,1,CMIP5 -1932,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.214801739,299.6889,306.9428333,302.834625,302.3533833,1,CMIP5 -1932,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.369933248,299.3794,307.0484,302.7006167,302.1873333,1,CMIP5 -1932,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.181685087,299.7575,306.9207667,302.8644417,302.38975,1,CMIP5 -1933,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.119593441,300.0163,307.1614333,303.25915,302.9294333,1,CMIP5 -1933,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.299315764,299.7123,307.2879333,303.0779,302.6556833,1,CMIP5 -1933,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.081594843,300.0837,307.135,303.2991083,302.9888667,1,CMIP5 -1934,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.953633301,300.6236,307.2433667,303.614575,303.2956667,1,CMIP5 -1934,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.174964312,300.2314,307.4301333,303.4407917,303.0508167,1,CMIP5 -1934,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.906903866,300.7105,307.2043333,303.6532667,303.3491167,1,CMIP5 -1935,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.950739092,301.0181,307.4463333,303.961625,303.6910333,1,CMIP5 -1935,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.106538596,300.6812,307.5905333,303.7915333,303.4472,1,CMIP5 -1935,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.918816355,301.0928,307.4162,303.99965,303.7448,1,CMIP5 -1936,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.180342261,301.149,307.5993333,303.9908667,303.6075667,1,CMIP5 -1936,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.271285526,300.8198,307.7684667,303.8979,303.5016667,1,CMIP5 -1936,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.163503335,301.2219,307.5639667,304.0126167,303.6323,1,CMIP5 -1937,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.238132883,301.8140667,308.1084667,304.5718833,304.1825,1,CMIP5 -1937,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.307614549,301.533,308.1934,304.4016583,303.9401167,1,CMIP5 -1937,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.225405261,301.8321333,308.0907333,304.6100167,304.2586,1,CMIP5 -1938,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.124599834,302.1963,308.2343,304.9656,304.7159,1,CMIP5 -1938,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.222723809,301.9303,308.3682667,304.8172417,304.4852,1,CMIP5 -1938,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.105653639,302.2552,308.2063667,304.9988083,304.7668333,1,CMIP5 -1939,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.878811779,302.7319,308.4404,305.3213417,305.0565333,1,CMIP5 -1939,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.044900957,302.3547,308.5292,305.1184917,304.7950333,1,CMIP5 -1939,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.84418972,302.8155,308.4219,305.3660083,305.1133167,1,CMIP5 -1940,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.009606883,303.1429,308.9919667,305.757225,305.4470167,1,CMIP5 -1940,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.126782389,302.7687,309.0249,305.5470417,305.1972833,1,CMIP5 -1940,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.985584967,303.2258,308.9850667,305.8035667,305.5017,1,CMIP5 -1941,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.121331886,303.2811,309.3801333,306.1602583,305.9899,1,CMIP5 -1941,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.235425511,303.1337333,309.4154333,305.9498667,305.62515,1,CMIP5 -1941,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.098309241,303.3119,309.3727667,306.2068417,306.07135,1,CMIP5 -1942,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.164934701,303.9517,309.9144667,306.7622417,306.5914,1,CMIP5 -1942,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.219421508,303.6331,309.8860667,306.4927417,306.2259,1,CMIP5 -1942,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.155666627,304.0182333,309.9204,306.8213583,306.6734,1,CMIP5 -1943,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.315061527,304.2888,310.6308667,307.2883083,307.1167833,1,CMIP5 -1943,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.356916096,304.0253,310.5526,307.0578583,306.8267667,1,CMIP5 -1943,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.307068686,304.3472,310.6472,307.3387,307.1802,1,CMIP5 -1944,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.519932033,304.6127,311.3368667,307.7255583,307.4763333,1,CMIP5 -1944,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.526945306,304.3445,311.2146,307.4752917,307.1710333,1,CMIP5 -1944,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.519514239,304.6721,311.3624,307.7803667,307.5434833,1,CMIP5 -1945,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.734578001,305.0016,312.0982667,308.3663833,308.1828333,1,CMIP5 -1945,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.725798043,304.6877,311.9009333,308.0468667,307.7994167,1,CMIP5 -1945,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.73772011,305.0711,312.1394667,308.43615,308.2670167,1,CMIP5 -1946,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.904592941,305.3943,312.9446333,308.866025,308.5625833,1,CMIP5 -1946,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.873995012,305.07,312.7195333,308.581,308.2672333,1,CMIP5 -1946,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.911836535,305.4661,312.9916333,308.9283917,308.6279167,1,CMIP5 -1947,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.138991838,305.6842333,313.7465667,309.269525,308.82365,1,CMIP5 -1947,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.141070123,305.4619,313.5295667,309.0121667,308.5286,1,CMIP5 -1947,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.138618899,305.7161667,313.7918333,309.325725,308.89745,1,CMIP5 -1948,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.117070781,306.0731,314.4480667,309.6898333,309.1190833,1,CMIP5 -1948,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.183972995,305.7966,314.2870667,309.4680167,308.8942,1,CMIP5 -1948,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.102559741,306.1343,314.4816667,309.7377,309.1674167,1,CMIP5 -1949,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.21191687,306.6386,315.1401,310.28995,309.69055,1,CMIP5 -1949,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.235428965,306.3057,314.9411667,310.0081917,309.39295,1,CMIP5 -1949,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.207003008,306.7124,315.1816667,310.3513833,309.7557333,1,CMIP5 -1950,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.484504063,307.1128333,316.0536,311.0708833,310.55855,1,CMIP5 -1950,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.503093602,306.8964333,315.8387667,310.73615,310.1047,1,CMIP5 -1950,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.481134073,307.1580333,316.0984667,311.14415,310.66005,1,CMIP5 -1951,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.543236363,307.6232,316.9629,311.703225,311.1134,1,CMIP5 -1951,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.585625301,307.3575333,316.7487667,311.3877,310.72225,1,CMIP5 -1951,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.53427703,307.6786667,317.0075667,311.7719833,311.20085,1,CMIP5 -1952,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.695653718,308.4225,317.8491667,312.3388917,311.54195,1,CMIP5 -1952,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.70663119,308.0861333,317.5723,312.0027833,311.17635,1,CMIP5 -1952,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.693402313,308.4927667,317.9070333,312.41185,311.6238,1,CMIP5 -1953,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.879967538,309.2283,319.0924333,313.2776083,312.39485,1,CMIP5 -1953,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.896686282,308.7645,318.7093,312.8638,311.9907,1,CMIP5 -1953,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.875975846,309.3311,319.1724,313.3673167,312.4828833,1,CMIP5 -1954,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.027812355,309.7194333,320.2294,314.0605833,313.14675,1,CMIP5 -1954,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.036814494,309.4233,319.8569,313.674975,312.70985,1,CMIP5 -1954,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.02535848,309.7812667,320.3071667,314.1442833,313.24435,1,CMIP5 -1955,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.09270142,310.1982333,321.1901333,314.7399917,313.7858,1,CMIP5 -1955,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.125415289,309.9241,320.8479667,314.3465167,313.307,1,CMIP5 -1955,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.085268259,310.2554333,321.2616,314.8256333,313.89275,1,CMIP5 -1956,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.403068598,310.5164667,322.3436,315.7095667,314.9891,1,CMIP5 -1956,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.363033674,310.2990333,321.9306333,315.2615667,314.4083,1,CMIP5 -1956,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.411712709,310.5618667,322.4298,315.8074167,315.119,1,CMIP5 -1957,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.647877191,311.2354,323.7005,316.793125,316.1183,1,CMIP5 -1957,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.618387608,310.8831,323.2439333,316.3003833,315.53725,1,CMIP5 -1957,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.654112045,311.3089333,323.7958,316.9003583,316.24835,1,CMIP5 -1958,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.686003293,312.166,324.8584667,317.6674167,316.8226,1,CMIP5 -1958,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.706282289,311.8134667,324.4591667,317.2087583,316.2812,1,CMIP5 -1958,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.681322208,312.2396,324.9418333,317.7671333,316.94355,1,CMIP5 -1959,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.771353393,313.1747333,326.0883667,318.673975,317.7164,1,CMIP5 -1959,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.814440025,312.7357333,325.6633667,318.170975,317.1424,1,CMIP5 -1959,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.761662097,313.2663667,326.1771333,318.783225,317.8447,1,CMIP5 -1960,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.791159437,314.0637,327.0905667,319.8395167,319.1019,1,CMIP5 -1960,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.85695298,313.6486333,326.7367,319.3139083,318.43515,1,CMIP5 -1960,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.77735838,314.1503667,327.1644667,319.9542083,319.251,1,CMIP5 -1961,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.817765205,314.8653333,327.9548333,320.7536417,320.0972,1,CMIP5 -1961,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.891795815,314.3868667,327.6558,320.2627917,319.50425,1,CMIP5 -1961,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.802521475,314.9652,328.0172667,320.8605667,320.2299,1,CMIP5 -1962,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.721089434,316.2417333,328.7872333,321.7204417,320.9264,1,CMIP5 -1962,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.839422399,315.6607333,328.5506,321.2180083,320.33035,1,CMIP5 -1962,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.696876388,316.3630333,328.8366333,321.8299167,321.06,1,CMIP5 -1963,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.588067833,317.5280333,329.6789,322.6034333,321.6034,1,CMIP5 -1963,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.737820121,316.946,329.4504333,322.1199833,321.04175,1,CMIP5 -1963,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.556311024,317.6495,329.7265667,322.7085417,321.72905,1,CMIP5 -1964,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.618061914,318.0841333,330.5571,323.5358083,322.751,1,CMIP5 -1964,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.746650396,317.6546667,330.3803333,323.117175,322.21685,1,CMIP5 -1964,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.590972019,318.1738,330.594,323.627175,322.87045,1,CMIP5 -1965,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.575638653,318.7651333,331.0822667,324.263475,323.60325,1,CMIP5 -1965,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.704820933,318.3942,330.9994,323.89335,323.0899,1,CMIP5 -1965,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.549064834,318.8425667,331.0996,324.3445917,323.7181,1,CMIP5 -1966,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.494746158,319.3191,331.4647,325.09915,324.8064,1,CMIP5 -1966,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.606777647,319.0599333,331.4533333,324.7346667,324.2127,1,CMIP5 -1966,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.473143016,319.3732,331.4671333,325.1797583,324.93935,1,CMIP5 -1967,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.365117202,320.0856333,331.8313667,325.9325,325.9065,1,CMIP5 -1967,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.487170676,319.8266667,331.8971333,325.5828,325.3037,1,CMIP5 -1967,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.342327347,320.1397,331.8176333,326.0100583,326.04145,1,CMIP5 -1968,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.338164986,320.7179667,332.2005333,326.652525,326.8458,1,CMIP5 -1968,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.456741685,320.4245333,332.2911333,326.2980917,326.23835,1,CMIP5 -1968,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.31673642,320.7792333,332.1816333,326.7310917,326.98175,1,CMIP5 -1969,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.248455141,321.7016,332.7521333,327.5421083,327.85735,1,CMIP5 -1969,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.336462731,321.3269333,332.7993,327.1883833,327.31365,1,CMIP5 -1969,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.233672419,321.7798333,332.7422667,327.620175,327.9793,1,CMIP5 -1970,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.320005551,322.4174333,333.3870333,328.4995417,329.09685,1,CMIP5 -1970,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.370877759,322.1134333,333.3872667,328.13545,328.52055,1,CMIP5 -1970,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.312864186,322.4808667,333.3869667,328.5799333,329.22595,1,CMIP5 -1971,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.374655777,323.5707333,334.5051,329.6554833,330.27305,1,CMIP5 -1971,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.424256778,323.1126333,334.2880333,329.1674667,329.6346,1,CMIP5 -1971,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.366774362,323.6663667,334.5504333,329.7622,330.416,1,CMIP5 -1972,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.388617858,324.9192,335.9544667,330.9358417,331.43485,1,CMIP5 -1972,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.417388036,324.4275333,335.5865333,330.4391917,330.87135,1,CMIP5 -1972,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.383930076,325.0218667,336.0312667,331.0437583,331.56095,1,CMIP5 -1973,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.411301325,325.8786,337.1665333,332.1842083,332.84585,1,CMIP5 -1973,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.444230642,325.4318333,336.8094333,331.6209417,332.12125,1,CMIP5 -1973,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.406471467,325.9719,337.2411,332.3072,333.0079,1,CMIP5 -1974,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.42942012,327.4319333,338.3501333,333.6416417,334.39225,1,CMIP5 -1974,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.482530896,326.7708,337.9410667,333.0186417,333.68135,1,CMIP5 -1974,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.420703214,327.57,338.4355,333.777125,334.5515,1,CMIP5 -1975,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.941155846,329.7049667,339.4772333,335.13445,335.6778,1,CMIP5 -1975,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.110799797,328.8116,339.0808667,334.4469667,334.9477,1,CMIP5 -1975,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.907541041,329.8914667,339.56,335.2834417,335.84115,1,CMIP5 -1976,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.889905523,331.21,340.7658667,336.5577917,337.12765,1,CMIP5 -1976,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.989831061,330.4517667,340.3625333,335.89225,336.37735,1,CMIP5 -1976,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.871329711,331.3683333,340.8501,336.7024083,337.2956,1,CMIP5 -1977,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.983697902,332.5856,342.4848,338.0265917,338.5179833,1,CMIP5 -1977,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.055989719,331.8696667,341.6588,337.3383667,337.9125,1,CMIP5 -1977,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.972152036,332.7350667,342.6806,338.1765667,338.6453,1,CMIP5 -1978,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.866257448,334.3149333,344.4,339.6543667,339.9512667,1,CMIP5 -1978,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.932923358,333.5597667,343.4588,338.93375,339.3582167,1,CMIP5 -1978,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.857290983,334.4726,344.6126,339.8116167,340.0806333,1,CMIP5 -1979,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.794969799,335.4854,345.6192,340.9776417,341.4029833,1,CMIP5 -1979,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.822977592,334.9274667,344.842,340.35555,340.8263667,1,CMIP5 -1979,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.792929018,335.6018667,345.7948,341.1134667,341.5286,1,CMIP5 -1980,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.927246669,336.9417667,347.2443,342.4287917,342.76455,1,CMIP5 -1980,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.93258296,336.2948,346.4109,341.75705,342.16125,1,CMIP5 -1980,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.929718973,337.0768,347.4326,342.5750583,342.8954167,1,CMIP5 -1981,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.901630443,338.8047667,349.0645,344.104125,344.2736167,1,CMIP5 -1981,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.937126517,338.0178,348.1573,343.3627083,343.6378667,1,CMIP5 -1981,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.898337186,338.9690333,349.2694,344.2653417,344.4114667,1,CMIP5 -1982,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.896641955,340.3896667,350.8126,345.797475,345.9938167,1,CMIP5 -1982,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.928913507,339.5967333,349.9238,345.0248833,345.2895,1,CMIP5 -1982,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.893644272,340.5552333,351.0134,345.9653417,346.1463667,1,CMIP5 -1983,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.076443145,341.8687,352.7702,347.32815,347.33685,1,CMIP5 -1983,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.068166427,341.0907,351.7809,346.536225,346.63665,1,CMIP5 -1983,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.082975719,342.0311333,352.9936,347.5004833,347.4886,1,CMIP5 -1984,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.878246947,343.71,354.2856,348.9578667,348.9179333,1,CMIP5 -1984,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.979927274,342.8737333,353.4765,348.2051917,348.2352667,1,CMIP5 -1984,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.860676081,343.8845667,354.4683,349.1214083,349.0663833,1,CMIP5 -1985,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.732128459,345.1661,355.6637,350.4183833,350.4218667,1,CMIP5 -1985,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.783445462,344.4674,354.864,349.730325,349.79495,1,CMIP5 -1985,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.725742519,345.3119333,355.8443,350.5682417,350.5583667,1,CMIP5 -1986,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.849792648,346.7420333,357.7089,352.1535667,352.0816667,1,CMIP5 -1986,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.855557875,346.0156,356.7716,351.4080917,351.4225833,1,CMIP5 -1986,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.854485091,346.8936667,357.9206,352.3161667,352.2252,1,CMIP5 -1987,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.804430265,348.5939667,359.3792,353.8012583,353.6159333,1,CMIP5 -1987,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.851322732,347.8581333,358.5606,353.051025,352.8926833,1,CMIP5 -1987,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.798919784,348.7475333,359.5641,353.9644583,353.7731,1,CMIP5 -1988,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.968349755,350.2313667,361.6479,355.7982167,355.6568,1,CMIP5 -1988,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.91545568,349.4686667,360.5472,354.92105,354.8341667,1,CMIP5 -1988,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.986431983,350.3906,361.8966,355.9895583,355.8355167,1,CMIP5 -1989,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.038378609,352.2179333,363.8528,357.6888917,357.3424167,1,CMIP5 -1989,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.999485937,351.3372667,362.7485,356.7996,356.5563167,1,CMIP5 -1989,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.053491237,352.4018333,364.1023,357.8824667,357.5128667,1,CMIP5 -1990,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.884966153,354.4949667,365.7562,359.7245083,359.3234333,1,CMIP5 -1990,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.886556329,353.5333,364.6808,358.7909417,358.4748333,1,CMIP5 -1990,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.891044651,354.6957667,365.9991,359.9273833,359.5073333,1,CMIP5 -1991,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.008667615,356.0675667,367.747,361.5341417,361.161,1,CMIP5 -1991,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.964361245,355.2462,366.721,360.6674833,360.3513667,1,CMIP5 -1991,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.024053206,356.2390667,367.9787,361.7225833,361.3362833,1,CMIP5 -1992,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.065421135,357.6538333,369.5572,363.316325,363.0271333,1,CMIP5 -1992,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.013056606,356.8232667,368.4471,362.3943417,362.1535,1,CMIP5 -1992,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.083696234,357.8272667,369.808,363.5171917,363.21675,1,CMIP5 -1993,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.95993282,360.0821,371.5824,365.3443333,364.8564167,1,CMIP5 -1993,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.971845765,359.1025667,370.5676,364.4185167,364.00195,1,CMIP5 -1993,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.963260232,360.2866667,371.8117,365.545175,365.0411667,1,CMIP5 -1994,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.794827183,362.0535667,373.0319,367.1078583,366.6729833,1,CMIP5 -1994,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.819177241,361.1851,372.1369,366.2395333,365.8180667,1,CMIP5 -1994,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.79424379,362.2348667,373.2341,367.2961417,366.8578,1,CMIP5 -1995,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.870886963,363.5389667,374.7251,368.8012417,368.47045,1,CMIP5 -1995,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.869056406,362.6913,373.7725,367.9452,367.6585,1,CMIP5 -1995,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.876421121,363.7159667,374.9403,368.9871167,368.6461,1,CMIP5 -1996,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.055979338,365.6277667,377.2286,370.871725,370.3152667,1,CMIP5 -1996,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.994036895,364.7660333,376.1237,369.9650167,369.4851667,1,CMIP5 -1996,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.075436,365.8077333,377.4782,371.0689333,370.4949,1,CMIP5 -1997,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.359755334,367.1302,379.5032,372.7847333,372.2527667,1,CMIP5 -1997,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.232733772,366.3953333,378.3334,371.8857,371.4070333,1,CMIP5 -1997,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.393515273,367.2836333,379.7675,372.9807333,372.4359,1,CMIP5 -1998,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.487723594,368.7632,381.6096,374.7727667,374.3591333,1,CMIP5 -1998,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.34632938,368.0028333,380.3654,373.8022833,373.42045,1,CMIP5 -1998,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.525203425,368.9219667,381.8907,374.9843917,374.56245,1,CMIP5 -1999,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.450687237,370.9710667,383.6204,376.7559083,376.2160833,1,CMIP5 -1999,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.418617888,370.0352667,382.5054,375.800975,375.3316167,1,CMIP5 -1999,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.464063339,371.1664667,383.8723,376.9634917,376.4076,1,CMIP5 -2000,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.12393111,373.5322667,385.3662,378.7872833,378.1253333,1,CMIP5 -2000,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.213049402,372.3802667,384.3293,377.7912167,377.22765,1,CMIP5 -2000,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.111710846,373.7727667,385.6005,379.0033417,378.32005,1,CMIP5 -2001,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.063052973,375.8911,387.324,380.7318833,379.8562167,1,CMIP5 -2001,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.087498178,374.7674333,386.2489,379.778475,379.0487833,1,CMIP5 -2001,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.064630025,376.1257,387.5669,380.9385917,380.0308833,1,CMIP5 -2002,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.258591131,377.8793,389.6233,382.7059667,381.6606333,1,CMIP5 -2002,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.218612681,376.8003,388.433,381.7267583,380.8368667,1,CMIP5 -2002,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.274482975,378.1045667,389.8922,382.9185917,381.8388,1,CMIP5 -2003,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.528084598,379.9574,392.2221,384.7688417,383.4479333,1,CMIP5 -2003,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.418706606,378.9444333,390.9109,383.7659667,382.6042667,1,CMIP5 -2003,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.55965462,380.1688667,392.5184,384.98715,383.6306667,1,CMIP5 -2004,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.445940749,381.7806667,393.9981,386.7203167,385.55125,1,CMIP5 -2004,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.405423268,380.8543,392.8515,385.755925,384.65895,1,CMIP5 -2004,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.461404659,381.9740667,394.2571,386.930175,385.7447667,1,CMIP5 -2005,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.232452954,384.7101333,396.082,388.965775,387.5354833,1,CMIP5 -2005,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.258830602,383.5085333,394.9414,387.9276417,386.6303167,1,CMIP5 -2005,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.233699885,384.961,396.3396,389.1908583,387.7314167,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/rcp85/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/rcp85/ensemble_mean_model.csv deleted file mode 100644 index d50c39470..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/rcp85/ensemble_mean_model.csv +++ /dev/null @@ -1,1426 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2006,"Simulated","ppmv CO2","global",387.725033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2007,"Simulated","ppmv CO2","global",389.917966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2008,"Simulated","ppmv CO2","global",392.239066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2009,"Simulated","ppmv CO2","global",394.654933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2010,"Simulated","ppmv CO2","global",397.7333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2011,"Simulated","ppmv CO2","global",401.064566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2012,"Simulated","ppmv CO2","global",403.6755 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2013,"Simulated","ppmv CO2","global",406.5956 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2014,"Simulated","ppmv CO2","global",410.0279 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2015,"Simulated","ppmv CO2","global",412.996233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2016,"Simulated","ppmv CO2","global",416.307766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2017,"Simulated","ppmv CO2","global",420.228533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2018,"Simulated","ppmv CO2","global",423.634833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2019,"Simulated","ppmv CO2","global",426.717966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2020,"Simulated","ppmv CO2","global",430.6733 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2021,"Simulated","ppmv CO2","global",434.5766 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2022,"Simulated","ppmv CO2","global",438.1823 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2023,"Simulated","ppmv CO2","global",441.4889 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2024,"Simulated","ppmv CO2","global",444.984366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2025,"Simulated","ppmv CO2","global",448.451833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2026,"Simulated","ppmv CO2","global",452.456633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2027,"Simulated","ppmv CO2","global",456.260233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2028,"Simulated","ppmv CO2","global",460.064466666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2029,"Simulated","ppmv CO2","global",463.622433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2030,"Simulated","ppmv CO2","global",467.946866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2031,"Simulated","ppmv CO2","global",473.4655 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2032,"Simulated","ppmv CO2","global",478.201933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2033,"Simulated","ppmv CO2","global",482.392366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2034,"Simulated","ppmv CO2","global",486.779833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2035,"Simulated","ppmv CO2","global",491.613533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2036,"Simulated","ppmv CO2","global",497.111 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2037,"Simulated","ppmv CO2","global",501.682433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2038,"Simulated","ppmv CO2","global",506.060866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2039,"Simulated","ppmv CO2","global",511.277 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2040,"Simulated","ppmv CO2","global",516.643433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2041,"Simulated","ppmv CO2","global",521.378566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2042,"Simulated","ppmv CO2","global",527.195733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2043,"Simulated","ppmv CO2","global",533.5082 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2044,"Simulated","ppmv CO2","global",539.341966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2045,"Simulated","ppmv CO2","global",545.113966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2046,"Simulated","ppmv CO2","global",551.353033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2047,"Simulated","ppmv CO2","global",557.4438 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2048,"Simulated","ppmv CO2","global",564.022966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2049,"Simulated","ppmv CO2","global",571.043766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2050,"Simulated","ppmv CO2","global",577.793333333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2051,"Simulated","ppmv CO2","global",584.047933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2052,"Simulated","ppmv CO2","global",591.224866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2053,"Simulated","ppmv CO2","global",598.7612 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2054,"Simulated","ppmv CO2","global",605.880633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2055,"Simulated","ppmv CO2","global",612.857766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2056,"Simulated","ppmv CO2","global",620.3911 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2057,"Simulated","ppmv CO2","global",628.008133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2058,"Simulated","ppmv CO2","global",634.700933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2059,"Simulated","ppmv CO2","global",642.700833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2060,"Simulated","ppmv CO2","global",650.795266666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2061,"Simulated","ppmv CO2","global",659.3961 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2062,"Simulated","ppmv CO2","global",667.032766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2063,"Simulated","ppmv CO2","global",674.786366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2064,"Simulated","ppmv CO2","global",683.549566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2065,"Simulated","ppmv CO2","global",692.347066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2066,"Simulated","ppmv CO2","global",700.8271 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2067,"Simulated","ppmv CO2","global",709.1602 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2068,"Simulated","ppmv CO2","global",718.128766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2069,"Simulated","ppmv CO2","global",727.2412 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2070,"Simulated","ppmv CO2","global",736.0871 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2071,"Simulated","ppmv CO2","global",744.436933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2072,"Simulated","ppmv CO2","global",753.534733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2073,"Simulated","ppmv CO2","global",763.2626 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2074,"Simulated","ppmv CO2","global",772.455 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2075,"Simulated","ppmv CO2","global",782.215033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2076,"Simulated","ppmv CO2","global",792.032366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2077,"Simulated","ppmv CO2","global",801.242466666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2078,"Simulated","ppmv CO2","global",810.3549 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2079,"Simulated","ppmv CO2","global",819.878666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2080,"Simulated","ppmv CO2","global",829.916366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2081,"Simulated","ppmv CO2","global",839.869033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2082,"Simulated","ppmv CO2","global",849.502066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2083,"Simulated","ppmv CO2","global",858.416166666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2084,"Simulated","ppmv CO2","global",868.373 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2085,"Simulated","ppmv CO2","global",878.676366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2086,"Simulated","ppmv CO2","global",888.685533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2087,"Simulated","ppmv CO2","global",899.366033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2088,"Simulated","ppmv CO2","global",910.040366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2089,"Simulated","ppmv CO2","global",920.2626 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2090,"Simulated","ppmv CO2","global",930.892366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2091,"Simulated","ppmv CO2","global",941.7719 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2092,"Simulated","ppmv CO2","global",952.1594 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2093,"Simulated","ppmv CO2","global",962.395366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2094,"Simulated","ppmv CO2","global",973.339666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2095,"Simulated","ppmv CO2","global",984.4902 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2096,"Simulated","ppmv CO2","global",995.376966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2097,"Simulated","ppmv CO2","global",1005.98613333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2098,"Simulated","ppmv CO2","global",1017.44346666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2099,"Simulated","ppmv CO2","global",1029.1412 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2100,"Simulated","ppmv CO2","global",1040.11356666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2006,"Simulated","ppmv CO2","HL",386.4236 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2007,"Simulated","ppmv CO2","HL",388.759266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2008,"Simulated","ppmv CO2","HL",391.158033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2009,"Simulated","ppmv CO2","HL",393.546333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2010,"Simulated","ppmv CO2","HL",396.399 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2011,"Simulated","ppmv CO2","HL",399.6568 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2012,"Simulated","ppmv CO2","HL",402.3799 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2013,"Simulated","ppmv CO2","HL",405.200933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2014,"Simulated","ppmv CO2","HL",408.543366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2015,"Simulated","ppmv CO2","HL",411.539033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2016,"Simulated","ppmv CO2","HL",414.7454 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2017,"Simulated","ppmv CO2","HL",418.607566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2018,"Simulated","ppmv CO2","HL",422.1018 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2019,"Simulated","ppmv CO2","HL",425.185366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2020,"Simulated","ppmv CO2","HL",428.9424 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2021,"Simulated","ppmv CO2","HL",432.872066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2022,"Simulated","ppmv CO2","HL",436.510433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2023,"Simulated","ppmv CO2","HL",439.9179 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2024,"Simulated","ppmv CO2","HL",443.4742 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2025,"Simulated","ppmv CO2","HL",446.913 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2026,"Simulated","ppmv CO2","HL",450.6897 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2027,"Simulated","ppmv CO2","HL",454.6061 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2028,"Simulated","ppmv CO2","HL",458.420333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2029,"Simulated","ppmv CO2","HL",462.030066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2030,"Simulated","ppmv CO2","HL",466.1059 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2031,"Simulated","ppmv CO2","HL",471.250566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2032,"Simulated","ppmv CO2","HL",476.001066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2033,"Simulated","ppmv CO2","HL",480.305033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2034,"Simulated","ppmv CO2","HL",484.812966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2035,"Simulated","ppmv CO2","HL",489.550733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2036,"Simulated","ppmv CO2","HL",494.824533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2037,"Simulated","ppmv CO2","HL",499.568833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2038,"Simulated","ppmv CO2","HL",504.028833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2039,"Simulated","ppmv CO2","HL",509.1186 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2040,"Simulated","ppmv CO2","HL",514.456733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2041,"Simulated","ppmv CO2","HL",519.2122 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2042,"Simulated","ppmv CO2","HL",524.795866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2043,"Simulated","ppmv CO2","HL",530.900033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2044,"Simulated","ppmv CO2","HL",536.7711 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2045,"Simulated","ppmv CO2","HL",542.514266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2046,"Simulated","ppmv CO2","HL",548.6762 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2047,"Simulated","ppmv CO2","HL",554.911466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2048,"Simulated","ppmv CO2","HL",561.328766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2049,"Simulated","ppmv CO2","HL",568.066766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2050,"Simulated","ppmv CO2","HL",574.8492 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2051,"Simulated","ppmv CO2","HL",581.2835 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2052,"Simulated","ppmv CO2","HL",588.240533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2053,"Simulated","ppmv CO2","HL",595.5963 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2054,"Simulated","ppmv CO2","HL",602.769566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2055,"Simulated","ppmv CO2","HL",609.827 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2056,"Simulated","ppmv CO2","HL",617.2659 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2057,"Simulated","ppmv CO2","HL",624.893 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2058,"Simulated","ppmv CO2","HL",631.652666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2059,"Simulated","ppmv CO2","HL",639.3901 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2060,"Simulated","ppmv CO2","HL",647.401766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2061,"Simulated","ppmv CO2","HL",655.863 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2062,"Simulated","ppmv CO2","HL",663.801366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2063,"Simulated","ppmv CO2","HL",671.4274 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2064,"Simulated","ppmv CO2","HL",679.999033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2065,"Simulated","ppmv CO2","HL",688.647566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2066,"Simulated","ppmv CO2","HL",697.188833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2067,"Simulated","ppmv CO2","HL",705.606 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2068,"Simulated","ppmv CO2","HL",714.427666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2069,"Simulated","ppmv CO2","HL",723.501433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2070,"Simulated","ppmv CO2","HL",732.4491 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2071,"Simulated","ppmv CO2","HL",740.813666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2072,"Simulated","ppmv CO2","HL",749.6928 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2073,"Simulated","ppmv CO2","HL",759.393333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2074,"Simulated","ppmv CO2","HL",768.642233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2075,"Simulated","ppmv CO2","HL",778.240833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2076,"Simulated","ppmv CO2","HL",788.0351 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2077,"Simulated","ppmv CO2","HL",797.3538 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2078,"Simulated","ppmv CO2","HL",806.545266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2079,"Simulated","ppmv CO2","HL",815.9676 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2080,"Simulated","ppmv CO2","HL",825.8558 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2081,"Simulated","ppmv CO2","HL",835.783466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2082,"Simulated","ppmv CO2","HL",845.6613 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2083,"Simulated","ppmv CO2","HL",854.698433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2084,"Simulated","ppmv CO2","HL",864.3457 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2085,"Simulated","ppmv CO2","HL",874.4521 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2086,"Simulated","ppmv CO2","HL",884.544266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2087,"Simulated","ppmv CO2","HL",895.025433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2088,"Simulated","ppmv CO2","HL",905.703766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2089,"Simulated","ppmv CO2","HL",915.981233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2090,"Simulated","ppmv CO2","HL",926.551133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2091,"Simulated","ppmv CO2","HL",937.359766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2092,"Simulated","ppmv CO2","HL",947.9622 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2093,"Simulated","ppmv CO2","HL",958.1803 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2094,"Simulated","ppmv CO2","HL",968.8669 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2095,"Simulated","ppmv CO2","HL",979.944533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2096,"Simulated","ppmv CO2","HL",990.883333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2097,"Simulated","ppmv CO2","HL",1001.54003333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2098,"Simulated","ppmv CO2","HL",1012.92933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2099,"Simulated","ppmv CO2","HL",1024.42636666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2100,"Simulated","ppmv CO2","HL",1035.6604 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2006,"Simulated","ppmv CO2","LL",387.996733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2007,"Simulated","ppmv CO2","LL",390.159866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2008,"Simulated","ppmv CO2","LL",392.464766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2009,"Simulated","ppmv CO2","LL",394.8864 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2010,"Simulated","ppmv CO2","LL",398.0119 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2011,"Simulated","ppmv CO2","LL",401.358466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2012,"Simulated","ppmv CO2","LL",403.946033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2013,"Simulated","ppmv CO2","LL",406.886766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2014,"Simulated","ppmv CO2","LL",410.337833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2015,"Simulated","ppmv CO2","LL",413.300466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2016,"Simulated","ppmv CO2","LL",416.634 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2017,"Simulated","ppmv CO2","LL",420.567 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2018,"Simulated","ppmv CO2","LL",423.954866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2019,"Simulated","ppmv CO2","LL",427.037933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2020,"Simulated","ppmv CO2","LL",431.034633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2021,"Simulated","ppmv CO2","LL",434.932533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2022,"Simulated","ppmv CO2","LL",438.5314 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2023,"Simulated","ppmv CO2","LL",441.8169 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2024,"Simulated","ppmv CO2","LL",445.299633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2025,"Simulated","ppmv CO2","LL",448.7731 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2026,"Simulated","ppmv CO2","LL",452.825533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2027,"Simulated","ppmv CO2","LL",456.605566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2028,"Simulated","ppmv CO2","LL",460.407733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2029,"Simulated","ppmv CO2","LL",463.9549 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2030,"Simulated","ppmv CO2","LL",468.331233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2031,"Simulated","ppmv CO2","LL",473.927933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2032,"Simulated","ppmv CO2","LL",478.661433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2033,"Simulated","ppmv CO2","LL",482.828166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2034,"Simulated","ppmv CO2","LL",487.190533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2035,"Simulated","ppmv CO2","LL",492.0442 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2036,"Simulated","ppmv CO2","LL",497.5884 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2037,"Simulated","ppmv CO2","LL",502.123766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2038,"Simulated","ppmv CO2","LL",506.4851 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2039,"Simulated","ppmv CO2","LL",511.727666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2040,"Simulated","ppmv CO2","LL",517.099966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2041,"Simulated","ppmv CO2","LL",521.830866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2042,"Simulated","ppmv CO2","LL",527.696766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2043,"Simulated","ppmv CO2","LL",534.052766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2044,"Simulated","ppmv CO2","LL",539.878733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2045,"Simulated","ppmv CO2","LL",545.656766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2046,"Simulated","ppmv CO2","LL",551.9119 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2047,"Simulated","ppmv CO2","LL",557.972533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2048,"Simulated","ppmv CO2","LL",564.585466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2049,"Simulated","ppmv CO2","LL",571.6653 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2050,"Simulated","ppmv CO2","LL",578.408033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2051,"Simulated","ppmv CO2","LL",584.625133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2052,"Simulated","ppmv CO2","LL",591.847933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2053,"Simulated","ppmv CO2","LL",599.421933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2054,"Simulated","ppmv CO2","LL",606.530166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2055,"Simulated","ppmv CO2","LL",613.4906 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2056,"Simulated","ppmv CO2","LL",621.0436 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2057,"Simulated","ppmv CO2","LL",628.6585 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2058,"Simulated","ppmv CO2","LL",635.337433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2059,"Simulated","ppmv CO2","LL",643.3921 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2060,"Simulated","ppmv CO2","LL",651.5038 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2061,"Simulated","ppmv CO2","LL",660.133766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2062,"Simulated","ppmv CO2","LL",667.707433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2063,"Simulated","ppmv CO2","LL",675.487666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2064,"Simulated","ppmv CO2","LL",684.2909 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2065,"Simulated","ppmv CO2","LL",693.1195 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2066,"Simulated","ppmv CO2","LL",701.586733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2067,"Simulated","ppmv CO2","LL",709.902266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2068,"Simulated","ppmv CO2","LL",718.9015 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2069,"Simulated","ppmv CO2","LL",728.022033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2070,"Simulated","ppmv CO2","LL",736.846633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2071,"Simulated","ppmv CO2","LL",745.193466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2072,"Simulated","ppmv CO2","LL",754.336866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2073,"Simulated","ppmv CO2","LL",764.070466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2074,"Simulated","ppmv CO2","LL",773.251066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2075,"Simulated","ppmv CO2","LL",783.0448 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2076,"Simulated","ppmv CO2","LL",792.866933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2077,"Simulated","ppmv CO2","LL",802.0544 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2078,"Simulated","ppmv CO2","LL",811.1503 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2079,"Simulated","ppmv CO2","LL",820.695266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2080,"Simulated","ppmv CO2","LL",830.7642 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2081,"Simulated","ppmv CO2","LL",840.722066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2082,"Simulated","ppmv CO2","LL",850.303966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2083,"Simulated","ppmv CO2","LL",859.1924 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2084,"Simulated","ppmv CO2","LL",869.213866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2085,"Simulated","ppmv CO2","LL",879.558366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2086,"Simulated","ppmv CO2","LL",889.550233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2087,"Simulated","ppmv CO2","LL",900.2723 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2088,"Simulated","ppmv CO2","LL",910.945766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2089,"Simulated","ppmv CO2","LL",921.1565 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2090,"Simulated","ppmv CO2","LL",931.798766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2091,"Simulated","ppmv CO2","LL",942.693133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2092,"Simulated","ppmv CO2","LL",953.035766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2093,"Simulated","ppmv CO2","LL",963.2754 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2094,"Simulated","ppmv CO2","LL",974.2735 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2095,"Simulated","ppmv CO2","LL",985.439333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2096,"Simulated","ppmv CO2","LL",996.315233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2097,"Simulated","ppmv CO2","LL",1006.91446666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2098,"Simulated","ppmv CO2","LL",1018.38596666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2099,"Simulated","ppmv CO2","LL",1030.12556666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2100,"Simulated","ppmv CO2","LL",1041.04336666667 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2006,"Simulated","ppmv CO2","global",397.5849 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2007,"Simulated","ppmv CO2","global",400.1924 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2008,"Simulated","ppmv CO2","global",403.3394 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2009,"Simulated","ppmv CO2","global",405.974 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2010,"Simulated","ppmv CO2","global",408.6471 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2011,"Simulated","ppmv CO2","global",411.6611 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2012,"Simulated","ppmv CO2","global",415.0536 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2013,"Simulated","ppmv CO2","global",418.3557 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2014,"Simulated","ppmv CO2","global",421.5208 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2015,"Simulated","ppmv CO2","global",425.0235 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2016,"Simulated","ppmv CO2","global",428.6396 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2017,"Simulated","ppmv CO2","global",432.4629 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2018,"Simulated","ppmv CO2","global",435.9357 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2019,"Simulated","ppmv CO2","global",439.9385 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2020,"Simulated","ppmv CO2","global",444.3049 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2021,"Simulated","ppmv CO2","global",448.6594 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2022,"Simulated","ppmv CO2","global",452.9583 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2023,"Simulated","ppmv CO2","global",457.5597 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2024,"Simulated","ppmv CO2","global",461.6181 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2025,"Simulated","ppmv CO2","global",466.0517 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2026,"Simulated","ppmv CO2","global",470.4007 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2027,"Simulated","ppmv CO2","global",475.8657 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2028,"Simulated","ppmv CO2","global",480.8614 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2029,"Simulated","ppmv CO2","global",485.5816 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2030,"Simulated","ppmv CO2","global",490.8057 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2031,"Simulated","ppmv CO2","global",495.9752 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2032,"Simulated","ppmv CO2","global",501.4305 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2033,"Simulated","ppmv CO2","global",507.0755 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2034,"Simulated","ppmv CO2","global",512.9777 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2035,"Simulated","ppmv CO2","global",518.4635 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2036,"Simulated","ppmv CO2","global",523.9535 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2037,"Simulated","ppmv CO2","global",530.5008 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2038,"Simulated","ppmv CO2","global",537.2632 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2039,"Simulated","ppmv CO2","global",543.1694 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2040,"Simulated","ppmv CO2","global",549.1965 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2041,"Simulated","ppmv CO2","global",556.4038 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2042,"Simulated","ppmv CO2","global",563.4965 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2043,"Simulated","ppmv CO2","global",569.82 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2044,"Simulated","ppmv CO2","global",576.3683 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2045,"Simulated","ppmv CO2","global",583.6641 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2046,"Simulated","ppmv CO2","global",590.7503 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2047,"Simulated","ppmv CO2","global",598.2731 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2048,"Simulated","ppmv CO2","global",605.8418 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2049,"Simulated","ppmv CO2","global",613.3175 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2050,"Simulated","ppmv CO2","global",620.4629 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2051,"Simulated","ppmv CO2","global",628.2155 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2052,"Simulated","ppmv CO2","global",636.3758 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2053,"Simulated","ppmv CO2","global",644.9045 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2054,"Simulated","ppmv CO2","global",653.28 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2055,"Simulated","ppmv CO2","global",661.3235 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2056,"Simulated","ppmv CO2","global",670.3555 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2057,"Simulated","ppmv CO2","global",678.9124 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2058,"Simulated","ppmv CO2","global",687.4831 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2059,"Simulated","ppmv CO2","global",696.8273 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2060,"Simulated","ppmv CO2","global",705.5871 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2061,"Simulated","ppmv CO2","global",714.6006 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2062,"Simulated","ppmv CO2","global",723.9965 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2063,"Simulated","ppmv CO2","global",733.3631 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2064,"Simulated","ppmv CO2","global",742.3715 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2065,"Simulated","ppmv CO2","global",751.5356 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2066,"Simulated","ppmv CO2","global",761.6527 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2067,"Simulated","ppmv CO2","global",771.6122 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2068,"Simulated","ppmv CO2","global",781.6223 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2069,"Simulated","ppmv CO2","global",791.3877 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2070,"Simulated","ppmv CO2","global",801.3596 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2071,"Simulated","ppmv CO2","global",811.6398 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2072,"Simulated","ppmv CO2","global",822.0872 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2073,"Simulated","ppmv CO2","global",832.1172 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2074,"Simulated","ppmv CO2","global",842.2373 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2075,"Simulated","ppmv CO2","global",852.5264 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2076,"Simulated","ppmv CO2","global",863.3348 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2077,"Simulated","ppmv CO2","global",874.1434 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2078,"Simulated","ppmv CO2","global",884.5393 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2079,"Simulated","ppmv CO2","global",895.0653 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2080,"Simulated","ppmv CO2","global",905.5481 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2081,"Simulated","ppmv CO2","global",916.6229 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2082,"Simulated","ppmv CO2","global",927.9983 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2083,"Simulated","ppmv CO2","global",938.9017 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2084,"Simulated","ppmv CO2","global",949.9079 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2085,"Simulated","ppmv CO2","global",960.6758 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2086,"Simulated","ppmv CO2","global",972.1195 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2087,"Simulated","ppmv CO2","global",983.5407 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2088,"Simulated","ppmv CO2","global",994.5426 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2089,"Simulated","ppmv CO2","global",1005.9824 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2090,"Simulated","ppmv CO2","global",1017.0815 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2091,"Simulated","ppmv CO2","global",1028.6499 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2092,"Simulated","ppmv CO2","global",1040.1685 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2093,"Simulated","ppmv CO2","global",1051.6808 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2094,"Simulated","ppmv CO2","global",1063.2268 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2095,"Simulated","ppmv CO2","global",1074.5491 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2096,"Simulated","ppmv CO2","global",1086.2766 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2097,"Simulated","ppmv CO2","global",1097.7172 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2098,"Simulated","ppmv CO2","global",1109.7597 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2099,"Simulated","ppmv CO2","global",1122.1158 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2100,"Simulated","ppmv CO2","global",1133.2752 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2006,"Simulated","ppmv CO2","HL",396.5728 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2007,"Simulated","ppmv CO2","HL",398.9636 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2008,"Simulated","ppmv CO2","HL",401.9872 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2009,"Simulated","ppmv CO2","HL",404.516 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2010,"Simulated","ppmv CO2","HL",407.2164 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2011,"Simulated","ppmv CO2","HL",410.1977 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2012,"Simulated","ppmv CO2","HL",413.3695 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2013,"Simulated","ppmv CO2","HL",416.6226 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2014,"Simulated","ppmv CO2","HL",419.8157 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2015,"Simulated","ppmv CO2","HL",423.3931 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2016,"Simulated","ppmv CO2","HL",426.8959 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2017,"Simulated","ppmv CO2","HL",430.5209 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2018,"Simulated","ppmv CO2","HL",434.0594 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2019,"Simulated","ppmv CO2","HL",437.9625 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2020,"Simulated","ppmv CO2","HL",442.1721 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2021,"Simulated","ppmv CO2","HL",446.3948 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2022,"Simulated","ppmv CO2","HL",450.7144 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2023,"Simulated","ppmv CO2","HL",455.1747 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2024,"Simulated","ppmv CO2","HL",459.4692 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2025,"Simulated","ppmv CO2","HL",463.8271 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2026,"Simulated","ppmv CO2","HL",468.0729 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2027,"Simulated","ppmv CO2","HL",473.1881 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2028,"Simulated","ppmv CO2","HL",478.1825 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2029,"Simulated","ppmv CO2","HL",482.841 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2030,"Simulated","ppmv CO2","HL",488.0878 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2031,"Simulated","ppmv CO2","HL",493.2543 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2032,"Simulated","ppmv CO2","HL",498.5998 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2033,"Simulated","ppmv CO2","HL",504.1491 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2034,"Simulated","ppmv CO2","HL",509.9394 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2035,"Simulated","ppmv CO2","HL",515.4736 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2036,"Simulated","ppmv CO2","HL",520.9851 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2037,"Simulated","ppmv CO2","HL",527.3175 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2038,"Simulated","ppmv CO2","HL",533.993 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2039,"Simulated","ppmv CO2","HL",540.0711 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2040,"Simulated","ppmv CO2","HL",546.0724 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2041,"Simulated","ppmv CO2","HL",553.0006 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2042,"Simulated","ppmv CO2","HL",560.0575 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2043,"Simulated","ppmv CO2","HL",566.5684 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2044,"Simulated","ppmv CO2","HL",572.9199 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2045,"Simulated","ppmv CO2","HL",580.1404 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2046,"Simulated","ppmv CO2","HL",587.1378 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2047,"Simulated","ppmv CO2","HL",594.4944 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2048,"Simulated","ppmv CO2","HL",602.1029 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2049,"Simulated","ppmv CO2","HL",609.4541 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2050,"Simulated","ppmv CO2","HL",616.8611 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2051,"Simulated","ppmv CO2","HL",624.3117 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2052,"Simulated","ppmv CO2","HL",632.3727 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2053,"Simulated","ppmv CO2","HL",640.7532 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2054,"Simulated","ppmv CO2","HL",649.1932 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2055,"Simulated","ppmv CO2","HL",657.1484 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2056,"Simulated","ppmv CO2","HL",666.0094 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2057,"Simulated","ppmv CO2","HL",674.7705 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2058,"Simulated","ppmv CO2","HL",683.3198 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2059,"Simulated","ppmv CO2","HL",692.5023 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2060,"Simulated","ppmv CO2","HL",701.3119 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2061,"Simulated","ppmv CO2","HL",710.1049 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2062,"Simulated","ppmv CO2","HL",719.3962 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2063,"Simulated","ppmv CO2","HL",728.7348 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2064,"Simulated","ppmv CO2","HL",737.7452 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2065,"Simulated","ppmv CO2","HL",746.8807 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2066,"Simulated","ppmv CO2","HL",756.8662 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2067,"Simulated","ppmv CO2","HL",766.6132 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2068,"Simulated","ppmv CO2","HL",776.5737 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2069,"Simulated","ppmv CO2","HL",786.5992 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2070,"Simulated","ppmv CO2","HL",796.4408 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2071,"Simulated","ppmv CO2","HL",806.6591 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2072,"Simulated","ppmv CO2","HL",817.1871 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2073,"Simulated","ppmv CO2","HL",827.111 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2074,"Simulated","ppmv CO2","HL",837.2298 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2075,"Simulated","ppmv CO2","HL",847.4624 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2076,"Simulated","ppmv CO2","HL",858.1162 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2077,"Simulated","ppmv CO2","HL",868.8911 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2078,"Simulated","ppmv CO2","HL",879.2467 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2079,"Simulated","ppmv CO2","HL",889.9468 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2080,"Simulated","ppmv CO2","HL",900.3597 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2081,"Simulated","ppmv CO2","HL",911.3903 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2082,"Simulated","ppmv CO2","HL",922.6801 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2083,"Simulated","ppmv CO2","HL",933.5411 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2084,"Simulated","ppmv CO2","HL",944.4245 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2085,"Simulated","ppmv CO2","HL",955.4323 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2086,"Simulated","ppmv CO2","HL",966.6704 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2087,"Simulated","ppmv CO2","HL",978.0716 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2088,"Simulated","ppmv CO2","HL",989.0506 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2089,"Simulated","ppmv CO2","HL",1000.674 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2090,"Simulated","ppmv CO2","HL",1011.7398 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2091,"Simulated","ppmv CO2","HL",1023.1716 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2092,"Simulated","ppmv CO2","HL",1034.5413 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2093,"Simulated","ppmv CO2","HL",1045.9936 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2094,"Simulated","ppmv CO2","HL",1057.4381 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2095,"Simulated","ppmv CO2","HL",1068.8781 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2096,"Simulated","ppmv CO2","HL",1080.5544 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2097,"Simulated","ppmv CO2","HL",1092.3418 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2098,"Simulated","ppmv CO2","HL",1104.0484 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2099,"Simulated","ppmv CO2","HL",1116.4512 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2100,"Simulated","ppmv CO2","HL",1127.9533 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2006,"Simulated","ppmv CO2","LL",397.8136 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2007,"Simulated","ppmv CO2","LL",400.47 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2008,"Simulated","ppmv CO2","LL",403.6449 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2009,"Simulated","ppmv CO2","LL",406.3034 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2010,"Simulated","ppmv CO2","LL",408.9703 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2011,"Simulated","ppmv CO2","LL",411.9917 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2012,"Simulated","ppmv CO2","LL",415.434 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2013,"Simulated","ppmv CO2","LL",418.7472 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2014,"Simulated","ppmv CO2","LL",421.906 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2015,"Simulated","ppmv CO2","LL",425.3918 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2016,"Simulated","ppmv CO2","LL",429.0335 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2017,"Simulated","ppmv CO2","LL",432.9015 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2018,"Simulated","ppmv CO2","LL",436.3596 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2019,"Simulated","ppmv CO2","LL",440.3849 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2020,"Simulated","ppmv CO2","LL",444.7867 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2021,"Simulated","ppmv CO2","LL",449.171 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2022,"Simulated","ppmv CO2","LL",453.4652 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2023,"Simulated","ppmv CO2","LL",458.0985 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2024,"Simulated","ppmv CO2","LL",462.1036 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2025,"Simulated","ppmv CO2","LL",466.5542 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2026,"Simulated","ppmv CO2","LL",470.9266 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2027,"Simulated","ppmv CO2","LL",476.4705 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2028,"Simulated","ppmv CO2","LL",481.4666 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2029,"Simulated","ppmv CO2","LL",486.2007 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2030,"Simulated","ppmv CO2","LL",491.4197 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2031,"Simulated","ppmv CO2","LL",496.5899 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2032,"Simulated","ppmv CO2","LL",502.0699 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2033,"Simulated","ppmv CO2","LL",507.7366 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2034,"Simulated","ppmv CO2","LL",513.6641 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2035,"Simulated","ppmv CO2","LL",519.1389 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2036,"Simulated","ppmv CO2","LL",524.6241 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2037,"Simulated","ppmv CO2","LL",531.2199 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2038,"Simulated","ppmv CO2","LL",538.0019 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2039,"Simulated","ppmv CO2","LL",543.8694 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2040,"Simulated","ppmv CO2","LL",549.9023 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2041,"Simulated","ppmv CO2","LL",557.1726 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2042,"Simulated","ppmv CO2","LL",564.2734 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2043,"Simulated","ppmv CO2","LL",570.5546 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2044,"Simulated","ppmv CO2","LL",577.1473 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2045,"Simulated","ppmv CO2","LL",584.4602 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2046,"Simulated","ppmv CO2","LL",591.5664 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2047,"Simulated","ppmv CO2","LL",599.1267 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2048,"Simulated","ppmv CO2","LL",606.6864 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2049,"Simulated","ppmv CO2","LL",614.1903 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2050,"Simulated","ppmv CO2","LL",621.2766 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2051,"Simulated","ppmv CO2","LL",629.0973 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2052,"Simulated","ppmv CO2","LL",637.2802 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2053,"Simulated","ppmv CO2","LL",645.8423 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2054,"Simulated","ppmv CO2","LL",654.2033 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2055,"Simulated","ppmv CO2","LL",662.2667 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2056,"Simulated","ppmv CO2","LL",671.3373 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2057,"Simulated","ppmv CO2","LL",679.848 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2058,"Simulated","ppmv CO2","LL",688.4236 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2059,"Simulated","ppmv CO2","LL",697.8044 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2060,"Simulated","ppmv CO2","LL",706.5529 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2061,"Simulated","ppmv CO2","LL",715.6163 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2062,"Simulated","ppmv CO2","LL",725.0357 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2063,"Simulated","ppmv CO2","LL",734.4086 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2064,"Simulated","ppmv CO2","LL",743.4166 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2065,"Simulated","ppmv CO2","LL",752.5872 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2066,"Simulated","ppmv CO2","LL",762.7341 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2067,"Simulated","ppmv CO2","LL",772.7415 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2068,"Simulated","ppmv CO2","LL",782.7628 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2069,"Simulated","ppmv CO2","LL",792.4694 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2070,"Simulated","ppmv CO2","LL",802.4708 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2071,"Simulated","ppmv CO2","LL",812.765 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2072,"Simulated","ppmv CO2","LL",823.1941 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2073,"Simulated","ppmv CO2","LL",833.2481 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2074,"Simulated","ppmv CO2","LL",843.3685 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2075,"Simulated","ppmv CO2","LL",853.6703 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2076,"Simulated","ppmv CO2","LL",864.5137 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2077,"Simulated","ppmv CO2","LL",875.3299 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2078,"Simulated","ppmv CO2","LL",885.7349 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2079,"Simulated","ppmv CO2","LL",896.2216 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2080,"Simulated","ppmv CO2","LL",906.7201 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2081,"Simulated","ppmv CO2","LL",917.805 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2082,"Simulated","ppmv CO2","LL",929.1998 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2083,"Simulated","ppmv CO2","LL",940.1127 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2084,"Simulated","ppmv CO2","LL",951.1466 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2085,"Simulated","ppmv CO2","LL",961.8604 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2086,"Simulated","ppmv CO2","LL",973.3505 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2087,"Simulated","ppmv CO2","LL",984.7762 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2088,"Simulated","ppmv CO2","LL",995.7832 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2089,"Simulated","ppmv CO2","LL",1007.1816 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2090,"Simulated","ppmv CO2","LL",1018.2882 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2091,"Simulated","ppmv CO2","LL",1029.8875 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2092,"Simulated","ppmv CO2","LL",1041.4397 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2093,"Simulated","ppmv CO2","LL",1052.9656 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2094,"Simulated","ppmv CO2","LL",1064.5345 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2095,"Simulated","ppmv CO2","LL",1075.8303 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2096,"Simulated","ppmv CO2","LL",1087.5693 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2097,"Simulated","ppmv CO2","LL",1098.9316 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2098,"Simulated","ppmv CO2","LL",1111.0499 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2099,"Simulated","ppmv CO2","LL",1123.3955 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2100,"Simulated","ppmv CO2","LL",1134.4775 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2006,"Simulated","ppmv CO2","global",387.3668 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2007,"Simulated","ppmv CO2","global",389.9797 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2008,"Simulated","ppmv CO2","global",392.3876 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2009,"Simulated","ppmv CO2","global",394.6141 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2010,"Simulated","ppmv CO2","global",397.1429 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2011,"Simulated","ppmv CO2","global",399.9856 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2012,"Simulated","ppmv CO2","global",402.9452 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2013,"Simulated","ppmv CO2","global",405.1241 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2014,"Simulated","ppmv CO2","global",407.5293 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2015,"Simulated","ppmv CO2","global",410.459 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2016,"Simulated","ppmv CO2","global",413.1846 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2017,"Simulated","ppmv CO2","global",416.0323 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2018,"Simulated","ppmv CO2","global",419.5546 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2019,"Simulated","ppmv CO2","global",423.1926 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2020,"Simulated","ppmv CO2","global",426.6933 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2021,"Simulated","ppmv CO2","global",431.0547 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2022,"Simulated","ppmv CO2","global",435.0698 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2023,"Simulated","ppmv CO2","global",438.9902 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2024,"Simulated","ppmv CO2","global",442.8606 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2025,"Simulated","ppmv CO2","global",447.3694 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2026,"Simulated","ppmv CO2","global",452.3492 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2027,"Simulated","ppmv CO2","global",457.0677 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2028,"Simulated","ppmv CO2","global",462.0225 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2029,"Simulated","ppmv CO2","global",466.7155 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2030,"Simulated","ppmv CO2","global",471.086 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2031,"Simulated","ppmv CO2","global",475.5194 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2032,"Simulated","ppmv CO2","global",479.8006 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2033,"Simulated","ppmv CO2","global",484.2881 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2034,"Simulated","ppmv CO2","global",489.045 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2035,"Simulated","ppmv CO2","global",493.8407 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2036,"Simulated","ppmv CO2","global",499.0871 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2037,"Simulated","ppmv CO2","global",504.1383 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2038,"Simulated","ppmv CO2","global",509.2559 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2039,"Simulated","ppmv CO2","global",514.385 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2040,"Simulated","ppmv CO2","global",520.2239 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2041,"Simulated","ppmv CO2","global",526.5123 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2042,"Simulated","ppmv CO2","global",532.2604 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2043,"Simulated","ppmv CO2","global",537.7576 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2044,"Simulated","ppmv CO2","global",543.0998 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2045,"Simulated","ppmv CO2","global",549.0451 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2046,"Simulated","ppmv CO2","global",554.9423 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2047,"Simulated","ppmv CO2","global",561.865 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2048,"Simulated","ppmv CO2","global",568.6024 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2049,"Simulated","ppmv CO2","global",575.562 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2050,"Simulated","ppmv CO2","global",581.996 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2051,"Simulated","ppmv CO2","global",588.6556 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2052,"Simulated","ppmv CO2","global",595.5404 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2053,"Simulated","ppmv CO2","global",602.3337 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2054,"Simulated","ppmv CO2","global",609.3506 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2055,"Simulated","ppmv CO2","global",617.0286 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2056,"Simulated","ppmv CO2","global",624.7797 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2057,"Simulated","ppmv CO2","global",632.5667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2058,"Simulated","ppmv CO2","global",640.1954 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2059,"Simulated","ppmv CO2","global",648.6892 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2060,"Simulated","ppmv CO2","global",656.9419 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2061,"Simulated","ppmv CO2","global",665.2304 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2062,"Simulated","ppmv CO2","global",674.1954 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2063,"Simulated","ppmv CO2","global",684.0911 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2064,"Simulated","ppmv CO2","global",693.6471 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2065,"Simulated","ppmv CO2","global",703.4755 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2066,"Simulated","ppmv CO2","global",713.2459 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2067,"Simulated","ppmv CO2","global",723.1547 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2068,"Simulated","ppmv CO2","global",733.4644 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2069,"Simulated","ppmv CO2","global",743.4357 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2070,"Simulated","ppmv CO2","global",753.4973 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2071,"Simulated","ppmv CO2","global",763.7454 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2072,"Simulated","ppmv CO2","global",774.3573 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2073,"Simulated","ppmv CO2","global",785.2749 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2074,"Simulated","ppmv CO2","global",796.5182 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2075,"Simulated","ppmv CO2","global",807.2547 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2076,"Simulated","ppmv CO2","global",817.6956 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2077,"Simulated","ppmv CO2","global",828.4289 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2078,"Simulated","ppmv CO2","global",839.3979 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2079,"Simulated","ppmv CO2","global",851.1563 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2080,"Simulated","ppmv CO2","global",863.1695 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2081,"Simulated","ppmv CO2","global",875.7397 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2082,"Simulated","ppmv CO2","global",887.5153 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2083,"Simulated","ppmv CO2","global",899.7326 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2084,"Simulated","ppmv CO2","global",912.9964 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2085,"Simulated","ppmv CO2","global",926.1566 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2086,"Simulated","ppmv CO2","global",939.2438 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2087,"Simulated","ppmv CO2","global",952.2349 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2088,"Simulated","ppmv CO2","global",964.3616 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2089,"Simulated","ppmv CO2","global",976.955 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2090,"Simulated","ppmv CO2","global",989.0416 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2091,"Simulated","ppmv CO2","global",1001.9392 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2092,"Simulated","ppmv CO2","global",1015.5943 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2093,"Simulated","ppmv CO2","global",1029.6502 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2094,"Simulated","ppmv CO2","global",1044.1236 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2095,"Simulated","ppmv CO2","global",1057.6924 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2096,"Simulated","ppmv CO2","global",1071.8081 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2097,"Simulated","ppmv CO2","global",1085.82 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2098,"Simulated","ppmv CO2","global",1099.6989 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2099,"Simulated","ppmv CO2","global",1113.0642 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2100,"Simulated","ppmv CO2","global",1126.9115 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2006,"Simulated","ppmv CO2","HL",386.7052 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2007,"Simulated","ppmv CO2","HL",389.0987 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2008,"Simulated","ppmv CO2","HL",391.5818 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2009,"Simulated","ppmv CO2","HL",393.6368 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2010,"Simulated","ppmv CO2","HL",396.1874 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2011,"Simulated","ppmv CO2","HL",398.8686 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2012,"Simulated","ppmv CO2","HL",401.8333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2013,"Simulated","ppmv CO2","HL",404.2227 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2014,"Simulated","ppmv CO2","HL",406.5601 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2015,"Simulated","ppmv CO2","HL",409.3726 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2016,"Simulated","ppmv CO2","HL",412.1167 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2017,"Simulated","ppmv CO2","HL",414.9118 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2018,"Simulated","ppmv CO2","HL",418.1884 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2019,"Simulated","ppmv CO2","HL",421.786 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2020,"Simulated","ppmv CO2","HL",425.1992 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2021,"Simulated","ppmv CO2","HL",429.3302 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2022,"Simulated","ppmv CO2","HL",433.3007 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2023,"Simulated","ppmv CO2","HL",437.2303 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2024,"Simulated","ppmv CO2","HL",441.1331 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2025,"Simulated","ppmv CO2","HL",445.3927 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2026,"Simulated","ppmv CO2","HL",450.2992 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2027,"Simulated","ppmv CO2","HL",455.0176 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2028,"Simulated","ppmv CO2","HL",459.7698 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2029,"Simulated","ppmv CO2","HL",464.6923 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2030,"Simulated","ppmv CO2","HL",469.0442 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2031,"Simulated","ppmv CO2","HL",473.7948 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2032,"Simulated","ppmv CO2","HL",478.0876 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2033,"Simulated","ppmv CO2","HL",482.4031 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2034,"Simulated","ppmv CO2","HL",487.062 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2035,"Simulated","ppmv CO2","HL",491.7677 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2036,"Simulated","ppmv CO2","HL",497.0026 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2037,"Simulated","ppmv CO2","HL",502.06 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2038,"Simulated","ppmv CO2","HL",507.1691 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2039,"Simulated","ppmv CO2","HL",512.1173 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2040,"Simulated","ppmv CO2","HL",517.8312 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2041,"Simulated","ppmv CO2","HL",523.9139 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2042,"Simulated","ppmv CO2","HL",529.8231 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2043,"Simulated","ppmv CO2","HL",535.3469 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2044,"Simulated","ppmv CO2","HL",540.7843 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2045,"Simulated","ppmv CO2","HL",546.5668 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2046,"Simulated","ppmv CO2","HL",552.4453 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2047,"Simulated","ppmv CO2","HL",558.9681 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2048,"Simulated","ppmv CO2","HL",565.81 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2049,"Simulated","ppmv CO2","HL",572.6157 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2050,"Simulated","ppmv CO2","HL",579.1371 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2051,"Simulated","ppmv CO2","HL",585.8708 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2052,"Simulated","ppmv CO2","HL",592.7268 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2053,"Simulated","ppmv CO2","HL",599.7501 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2054,"Simulated","ppmv CO2","HL",606.4372 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2055,"Simulated","ppmv CO2","HL",613.957 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2056,"Simulated","ppmv CO2","HL",621.5988 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2057,"Simulated","ppmv CO2","HL",629.6144 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2058,"Simulated","ppmv CO2","HL",636.8801 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2059,"Simulated","ppmv CO2","HL",645.1696 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2060,"Simulated","ppmv CO2","HL",653.6948 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2061,"Simulated","ppmv CO2","HL",661.8207 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2062,"Simulated","ppmv CO2","HL",670.5294 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2063,"Simulated","ppmv CO2","HL",680.1703 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2064,"Simulated","ppmv CO2","HL",689.6762 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2065,"Simulated","ppmv CO2","HL",699.4184 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2066,"Simulated","ppmv CO2","HL",709.3768 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2067,"Simulated","ppmv CO2","HL",719.1984 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2068,"Simulated","ppmv CO2","HL",729.3614 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2069,"Simulated","ppmv CO2","HL",739.3561 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2070,"Simulated","ppmv CO2","HL",749.4109 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2071,"Simulated","ppmv CO2","HL",759.6235 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2072,"Simulated","ppmv CO2","HL",770.2466 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2073,"Simulated","ppmv CO2","HL",780.9893 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2074,"Simulated","ppmv CO2","HL",792.3967 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2075,"Simulated","ppmv CO2","HL",803.1645 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2076,"Simulated","ppmv CO2","HL",813.8165 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2077,"Simulated","ppmv CO2","HL",824.4981 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2078,"Simulated","ppmv CO2","HL",835.2922 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2079,"Simulated","ppmv CO2","HL",846.7968 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2080,"Simulated","ppmv CO2","HL",858.6611 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2081,"Simulated","ppmv CO2","HL",871.077 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2082,"Simulated","ppmv CO2","HL",882.9516 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2083,"Simulated","ppmv CO2","HL",895.0401 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2084,"Simulated","ppmv CO2","HL",908.114 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2085,"Simulated","ppmv CO2","HL",921.5459 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2086,"Simulated","ppmv CO2","HL",934.4461 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2087,"Simulated","ppmv CO2","HL",947.5967 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2088,"Simulated","ppmv CO2","HL",959.9842 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2089,"Simulated","ppmv CO2","HL",972.6829 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2090,"Simulated","ppmv CO2","HL",984.9184 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2091,"Simulated","ppmv CO2","HL",997.6438 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2092,"Simulated","ppmv CO2","HL",1011.2668 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2093,"Simulated","ppmv CO2","HL",1024.9557 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2094,"Simulated","ppmv CO2","HL",1039.5983 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2095,"Simulated","ppmv CO2","HL",1053.0897 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2096,"Simulated","ppmv CO2","HL",1067.1963 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2097,"Simulated","ppmv CO2","HL",1081.3327 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2098,"Simulated","ppmv CO2","HL",1095.3438 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2099,"Simulated","ppmv CO2","HL",1108.9246 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2100,"Simulated","ppmv CO2","HL",1122.6577 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2006,"Simulated","ppmv CO2","LL",387.5049 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2007,"Simulated","ppmv CO2","LL",390.1636 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2008,"Simulated","ppmv CO2","LL",392.5558 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2009,"Simulated","ppmv CO2","LL",394.8181 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2010,"Simulated","ppmv CO2","LL",397.3424 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2011,"Simulated","ppmv CO2","LL",400.2188 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2012,"Simulated","ppmv CO2","LL",403.1774 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2013,"Simulated","ppmv CO2","LL",405.3122 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2014,"Simulated","ppmv CO2","LL",407.7317 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2015,"Simulated","ppmv CO2","LL",410.6859 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2016,"Simulated","ppmv CO2","LL",413.4075 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2017,"Simulated","ppmv CO2","LL",416.2663 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2018,"Simulated","ppmv CO2","LL",419.8399 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2019,"Simulated","ppmv CO2","LL",423.4863 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2020,"Simulated","ppmv CO2","LL",427.0053 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2021,"Simulated","ppmv CO2","LL",431.4148 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2022,"Simulated","ppmv CO2","LL",435.4392 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2023,"Simulated","ppmv CO2","LL",439.3577 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2024,"Simulated","ppmv CO2","LL",443.2213 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2025,"Simulated","ppmv CO2","LL",447.7821 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2026,"Simulated","ppmv CO2","LL",452.7772 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2027,"Simulated","ppmv CO2","LL",457.4958 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2028,"Simulated","ppmv CO2","LL",462.4928 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2029,"Simulated","ppmv CO2","LL",467.1379 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2030,"Simulated","ppmv CO2","LL",471.5123 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2031,"Simulated","ppmv CO2","LL",475.8795 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2032,"Simulated","ppmv CO2","LL",480.1583 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2033,"Simulated","ppmv CO2","LL",484.6817 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2034,"Simulated","ppmv CO2","LL",489.459 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2035,"Simulated","ppmv CO2","LL",494.2735 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2036,"Simulated","ppmv CO2","LL",499.5223 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2037,"Simulated","ppmv CO2","LL",504.5722 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2038,"Simulated","ppmv CO2","LL",509.6916 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2039,"Simulated","ppmv CO2","LL",514.8585 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2040,"Simulated","ppmv CO2","LL",520.7235 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2041,"Simulated","ppmv CO2","LL",527.0548 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2042,"Simulated","ppmv CO2","LL",532.7692 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2043,"Simulated","ppmv CO2","LL",538.261 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2044,"Simulated","ppmv CO2","LL",543.5833 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2045,"Simulated","ppmv CO2","LL",549.5626 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2046,"Simulated","ppmv CO2","LL",555.4636 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2047,"Simulated","ppmv CO2","LL",562.4699 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2048,"Simulated","ppmv CO2","LL",569.1855 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2049,"Simulated","ppmv CO2","LL",576.1772 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2050,"Simulated","ppmv CO2","LL",582.5929 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2051,"Simulated","ppmv CO2","LL",589.2371 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2052,"Simulated","ppmv CO2","LL",596.1278 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2053,"Simulated","ppmv CO2","LL",602.8732 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2054,"Simulated","ppmv CO2","LL",609.9589 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2055,"Simulated","ppmv CO2","LL",617.6699 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2056,"Simulated","ppmv CO2","LL",625.4439 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2057,"Simulated","ppmv CO2","LL",633.1831 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2058,"Simulated","ppmv CO2","LL",640.8876 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2059,"Simulated","ppmv CO2","LL",649.424 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2060,"Simulated","ppmv CO2","LL",657.6199 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2061,"Simulated","ppmv CO2","LL",665.9423 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2062,"Simulated","ppmv CO2","LL",674.9608 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2063,"Simulated","ppmv CO2","LL",684.9097 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2064,"Simulated","ppmv CO2","LL",694.4761 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2065,"Simulated","ppmv CO2","LL",704.3225 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2066,"Simulated","ppmv CO2","LL",714.0537 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2067,"Simulated","ppmv CO2","LL",723.9807 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2068,"Simulated","ppmv CO2","LL",734.321 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2069,"Simulated","ppmv CO2","LL",744.2875 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2070,"Simulated","ppmv CO2","LL",754.3505 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2071,"Simulated","ppmv CO2","LL",764.606 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2072,"Simulated","ppmv CO2","LL",775.2156 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2073,"Simulated","ppmv CO2","LL",786.1697 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2074,"Simulated","ppmv CO2","LL",797.3787 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2075,"Simulated","ppmv CO2","LL",808.1087 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2076,"Simulated","ppmv CO2","LL",818.5055 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2077,"Simulated","ppmv CO2","LL",829.2497 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2078,"Simulated","ppmv CO2","LL",840.2551 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2079,"Simulated","ppmv CO2","LL",852.0665 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2080,"Simulated","ppmv CO2","LL",864.1109 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2081,"Simulated","ppmv CO2","LL",876.7132 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2082,"Simulated","ppmv CO2","LL",888.4681 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2083,"Simulated","ppmv CO2","LL",900.7124 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2084,"Simulated","ppmv CO2","LL",914.0158 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2085,"Simulated","ppmv CO2","LL",927.1193 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2086,"Simulated","ppmv CO2","LL",940.2455 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2087,"Simulated","ppmv CO2","LL",953.2033 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2088,"Simulated","ppmv CO2","LL",965.2755 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2089,"Simulated","ppmv CO2","LL",977.847 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2090,"Simulated","ppmv CO2","LL",989.9025 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2091,"Simulated","ppmv CO2","LL",1002.8361 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2092,"Simulated","ppmv CO2","LL",1016.4979 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2093,"Simulated","ppmv CO2","LL",1030.6304 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2094,"Simulated","ppmv CO2","LL",1045.0684 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2095,"Simulated","ppmv CO2","LL",1058.6534 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2096,"Simulated","ppmv CO2","LL",1072.771 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2097,"Simulated","ppmv CO2","LL",1086.7569 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2098,"Simulated","ppmv CO2","LL",1100.6082 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2099,"Simulated","ppmv CO2","LL",1113.9285 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2100,"Simulated","ppmv CO2","LL",1127.7996 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2006,"Simulated","ppmv CO2","global",356.9636 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2007,"Simulated","ppmv CO2","global",358.0804 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2008,"Simulated","ppmv CO2","global",359.619 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2009,"Simulated","ppmv CO2","global",361.0838 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2010,"Simulated","ppmv CO2","global",362.7827 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2011,"Simulated","ppmv CO2","global",364.681 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2012,"Simulated","ppmv CO2","global",366.4689 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2013,"Simulated","ppmv CO2","global",367.8826 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2014,"Simulated","ppmv CO2","global",369.26 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2015,"Simulated","ppmv CO2","global",370.9555 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2016,"Simulated","ppmv CO2","global",372.937 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2017,"Simulated","ppmv CO2","global",375.1612 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2018,"Simulated","ppmv CO2","global",377.5038 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2019,"Simulated","ppmv CO2","global",379.4019 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2020,"Simulated","ppmv CO2","global",381.5057 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2021,"Simulated","ppmv CO2","global",383.6049 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2022,"Simulated","ppmv CO2","global",385.3841 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2023,"Simulated","ppmv CO2","global",388.1485 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2024,"Simulated","ppmv CO2","global",390.9015 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2025,"Simulated","ppmv CO2","global",393.1935 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2026,"Simulated","ppmv CO2","global",395.5386 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2027,"Simulated","ppmv CO2","global",398.5163 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2028,"Simulated","ppmv CO2","global",401.5114 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2029,"Simulated","ppmv CO2","global",404.1757 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2030,"Simulated","ppmv CO2","global",406.7464 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2031,"Simulated","ppmv CO2","global",409.7158 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2032,"Simulated","ppmv CO2","global",412.5824 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2033,"Simulated","ppmv CO2","global",415.1333 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2034,"Simulated","ppmv CO2","global",417.6207 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2035,"Simulated","ppmv CO2","global",420.2088 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2036,"Simulated","ppmv CO2","global",422.9388 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2037,"Simulated","ppmv CO2","global",425.8362 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2038,"Simulated","ppmv CO2","global",429.1766 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2039,"Simulated","ppmv CO2","global",432.6896 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2040,"Simulated","ppmv CO2","global",436.2168 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2041,"Simulated","ppmv CO2","global",439.98 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2042,"Simulated","ppmv CO2","global",443.2308 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2043,"Simulated","ppmv CO2","global",446.5578 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2044,"Simulated","ppmv CO2","global",450.2919 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2045,"Simulated","ppmv CO2","global",453.9559 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2046,"Simulated","ppmv CO2","global",458.296 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2047,"Simulated","ppmv CO2","global",462.1783 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2048,"Simulated","ppmv CO2","global",466.6179 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2049,"Simulated","ppmv CO2","global",470.7866 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2050,"Simulated","ppmv CO2","global",474.5485 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2051,"Simulated","ppmv CO2","global",478.6221 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2052,"Simulated","ppmv CO2","global",483.3812 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2053,"Simulated","ppmv CO2","global",487.8924 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2054,"Simulated","ppmv CO2","global",492.3244 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2055,"Simulated","ppmv CO2","global",496.819 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2056,"Simulated","ppmv CO2","global",501.0775 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2057,"Simulated","ppmv CO2","global",505.5576 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2058,"Simulated","ppmv CO2","global",510.2813 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2059,"Simulated","ppmv CO2","global",515.2222 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2060,"Simulated","ppmv CO2","global",520.7419 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2061,"Simulated","ppmv CO2","global",526.2248 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2062,"Simulated","ppmv CO2","global",531.4594 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2063,"Simulated","ppmv CO2","global",536.8848 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2064,"Simulated","ppmv CO2","global",542.2937 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2065,"Simulated","ppmv CO2","global",547.8545 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2066,"Simulated","ppmv CO2","global",553.458 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2067,"Simulated","ppmv CO2","global",559.2678 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2068,"Simulated","ppmv CO2","global",565.4422 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2069,"Simulated","ppmv CO2","global",571.4498 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2070,"Simulated","ppmv CO2","global",577.0843 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2071,"Simulated","ppmv CO2","global",582.8785 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2072,"Simulated","ppmv CO2","global",588.4496 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2073,"Simulated","ppmv CO2","global",594.4923 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2074,"Simulated","ppmv CO2","global",600.4433 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2075,"Simulated","ppmv CO2","global",606.2172 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2076,"Simulated","ppmv CO2","global",612.5488 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2077,"Simulated","ppmv CO2","global",619.2407 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2078,"Simulated","ppmv CO2","global",625.9894 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2079,"Simulated","ppmv CO2","global",632.6092 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2080,"Simulated","ppmv CO2","global",639.2751 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2081,"Simulated","ppmv CO2","global",645.684 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2082,"Simulated","ppmv CO2","global",651.772 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2083,"Simulated","ppmv CO2","global",658.4369 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2084,"Simulated","ppmv CO2","global",665.4794 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2085,"Simulated","ppmv CO2","global",672.6319 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2086,"Simulated","ppmv CO2","global",679.773 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2087,"Simulated","ppmv CO2","global",686.9411 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2088,"Simulated","ppmv CO2","global",694.0475 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2089,"Simulated","ppmv CO2","global",701.5208 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2090,"Simulated","ppmv CO2","global",709.2044 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2091,"Simulated","ppmv CO2","global",716.5251 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2092,"Simulated","ppmv CO2","global",723.3718 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2093,"Simulated","ppmv CO2","global",730.4244 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2094,"Simulated","ppmv CO2","global",737.876 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2095,"Simulated","ppmv CO2","global",744.9179 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2096,"Simulated","ppmv CO2","global",751.7006 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2097,"Simulated","ppmv CO2","global",759.2861 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2098,"Simulated","ppmv CO2","global",766.483 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2099,"Simulated","ppmv CO2","global",773.7771 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2100,"Simulated","ppmv CO2","global",781.3091 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2006,"Simulated","ppmv CO2","HL",356.0642 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2007,"Simulated","ppmv CO2","HL",357.3041 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2008,"Simulated","ppmv CO2","HL",358.7904 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2009,"Simulated","ppmv CO2","HL",360.3214 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2010,"Simulated","ppmv CO2","HL",361.8835 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2011,"Simulated","ppmv CO2","HL",363.6407 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2012,"Simulated","ppmv CO2","HL",365.4208 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2013,"Simulated","ppmv CO2","HL",366.9324 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2014,"Simulated","ppmv CO2","HL",368.361 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2015,"Simulated","ppmv CO2","HL",370.0199 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2016,"Simulated","ppmv CO2","HL",371.8545 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2017,"Simulated","ppmv CO2","HL",373.921 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2018,"Simulated","ppmv CO2","HL",376.1712 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2019,"Simulated","ppmv CO2","HL",378.1873 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2020,"Simulated","ppmv CO2","HL",380.2052 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2021,"Simulated","ppmv CO2","HL",382.4313 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2022,"Simulated","ppmv CO2","HL",384.2699 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2023,"Simulated","ppmv CO2","HL",386.6579 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2024,"Simulated","ppmv CO2","HL",389.3853 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2025,"Simulated","ppmv CO2","HL",391.7747 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2026,"Simulated","ppmv CO2","HL",394.1056 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2027,"Simulated","ppmv CO2","HL",396.9287 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2028,"Simulated","ppmv CO2","HL",399.833 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2029,"Simulated","ppmv CO2","HL",402.4184 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2030,"Simulated","ppmv CO2","HL",405.1318 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2031,"Simulated","ppmv CO2","HL",407.9982 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2032,"Simulated","ppmv CO2","HL",410.9316 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2033,"Simulated","ppmv CO2","HL",413.6506 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2034,"Simulated","ppmv CO2","HL",416.191 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2035,"Simulated","ppmv CO2","HL",418.7359 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2036,"Simulated","ppmv CO2","HL",421.4497 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2037,"Simulated","ppmv CO2","HL",424.1595 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2038,"Simulated","ppmv CO2","HL",427.3515 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2039,"Simulated","ppmv CO2","HL",430.6966 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2040,"Simulated","ppmv CO2","HL",434.1857 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2041,"Simulated","ppmv CO2","HL",437.7893 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2042,"Simulated","ppmv CO2","HL",441.1958 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2043,"Simulated","ppmv CO2","HL",444.5663 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2044,"Simulated","ppmv CO2","HL",448.2742 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2045,"Simulated","ppmv CO2","HL",451.8936 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2046,"Simulated","ppmv CO2","HL",455.9557 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2047,"Simulated","ppmv CO2","HL",459.9735 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2048,"Simulated","ppmv CO2","HL",464.1846 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2049,"Simulated","ppmv CO2","HL",468.449 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2050,"Simulated","ppmv CO2","HL",472.3857 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2051,"Simulated","ppmv CO2","HL",476.3138 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2052,"Simulated","ppmv CO2","HL",480.9662 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2053,"Simulated","ppmv CO2","HL",485.3363 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2054,"Simulated","ppmv CO2","HL",489.8095 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2055,"Simulated","ppmv CO2","HL",494.31 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2056,"Simulated","ppmv CO2","HL",498.733 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2057,"Simulated","ppmv CO2","HL",503.1301 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2058,"Simulated","ppmv CO2","HL",507.773 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2059,"Simulated","ppmv CO2","HL",512.5442 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2060,"Simulated","ppmv CO2","HL",517.8285 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2061,"Simulated","ppmv CO2","HL",523.242 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2062,"Simulated","ppmv CO2","HL",528.4838 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2063,"Simulated","ppmv CO2","HL",533.8999 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2064,"Simulated","ppmv CO2","HL",539.4022 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2065,"Simulated","ppmv CO2","HL",544.7925 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2066,"Simulated","ppmv CO2","HL",550.3416 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2067,"Simulated","ppmv CO2","HL",556.0286 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2068,"Simulated","ppmv CO2","HL",562.0823 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2069,"Simulated","ppmv CO2","HL",568.3169 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2070,"Simulated","ppmv CO2","HL",573.8887 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2071,"Simulated","ppmv CO2","HL",579.7841 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2072,"Simulated","ppmv CO2","HL",585.251 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2073,"Simulated","ppmv CO2","HL",591.2377 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2074,"Simulated","ppmv CO2","HL",597.16 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2075,"Simulated","ppmv CO2","HL",602.9556 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2076,"Simulated","ppmv CO2","HL",609.3001 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2077,"Simulated","ppmv CO2","HL",615.7593 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2078,"Simulated","ppmv CO2","HL",622.3309 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2079,"Simulated","ppmv CO2","HL",628.9599 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2080,"Simulated","ppmv CO2","HL",635.7155 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2081,"Simulated","ppmv CO2","HL",642.1364 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2082,"Simulated","ppmv CO2","HL",648.3713 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2083,"Simulated","ppmv CO2","HL",654.9361 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2084,"Simulated","ppmv CO2","HL",661.6596 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2085,"Simulated","ppmv CO2","HL",668.7385 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2086,"Simulated","ppmv CO2","HL",676.0031 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2087,"Simulated","ppmv CO2","HL",683.0345 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2088,"Simulated","ppmv CO2","HL",690.1664 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2089,"Simulated","ppmv CO2","HL",697.4187 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2090,"Simulated","ppmv CO2","HL",705.1622 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2091,"Simulated","ppmv CO2","HL",712.6354 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2092,"Simulated","ppmv CO2","HL",719.6788 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2093,"Simulated","ppmv CO2","HL",726.6489 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2094,"Simulated","ppmv CO2","HL",733.9935 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2095,"Simulated","ppmv CO2","HL",740.9629 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2096,"Simulated","ppmv CO2","HL",747.937 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2097,"Simulated","ppmv CO2","HL",755.2962 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2098,"Simulated","ppmv CO2","HL",762.5579 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2099,"Simulated","ppmv CO2","HL",770.0872 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2100,"Simulated","ppmv CO2","HL",777.4871 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2006,"Simulated","ppmv CO2","LL",357.1627 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2007,"Simulated","ppmv CO2","LL",358.2523 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2008,"Simulated","ppmv CO2","LL",359.8025 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2009,"Simulated","ppmv CO2","LL",361.2527 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2010,"Simulated","ppmv CO2","LL",362.9818 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2011,"Simulated","ppmv CO2","LL",364.9113 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2012,"Simulated","ppmv CO2","LL",366.7011 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2013,"Simulated","ppmv CO2","LL",368.0931 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2014,"Simulated","ppmv CO2","LL",369.459 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2015,"Simulated","ppmv CO2","LL",371.1627 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2016,"Simulated","ppmv CO2","LL",373.1767 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2017,"Simulated","ppmv CO2","LL",375.4359 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2018,"Simulated","ppmv CO2","LL",377.7989 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2019,"Simulated","ppmv CO2","LL",379.6709 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2020,"Simulated","ppmv CO2","LL",381.7937 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2021,"Simulated","ppmv CO2","LL",383.8648 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2022,"Simulated","ppmv CO2","LL",385.6308 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2023,"Simulated","ppmv CO2","LL",388.4786 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2024,"Simulated","ppmv CO2","LL",391.2373 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2025,"Simulated","ppmv CO2","LL",393.5077 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2026,"Simulated","ppmv CO2","LL",395.8559 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2027,"Simulated","ppmv CO2","LL",398.8679 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2028,"Simulated","ppmv CO2","LL",401.8832 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2029,"Simulated","ppmv CO2","LL",404.5648 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2030,"Simulated","ppmv CO2","LL",407.1039 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2031,"Simulated","ppmv CO2","LL",410.0962 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2032,"Simulated","ppmv CO2","LL",412.948 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2033,"Simulated","ppmv CO2","LL",415.4616 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2034,"Simulated","ppmv CO2","LL",417.9373 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2035,"Simulated","ppmv CO2","LL",420.535 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2036,"Simulated","ppmv CO2","LL",423.2685 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2037,"Simulated","ppmv CO2","LL",426.2076 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2038,"Simulated","ppmv CO2","LL",429.5807 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2039,"Simulated","ppmv CO2","LL",433.131 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2040,"Simulated","ppmv CO2","LL",436.6667 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2041,"Simulated","ppmv CO2","LL",440.4651 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2042,"Simulated","ppmv CO2","LL",443.6814 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2043,"Simulated","ppmv CO2","LL",446.9988 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2044,"Simulated","ppmv CO2","LL",450.7388 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2045,"Simulated","ppmv CO2","LL",454.4126 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2046,"Simulated","ppmv CO2","LL",458.8143 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2047,"Simulated","ppmv CO2","LL",462.6666 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2048,"Simulated","ppmv CO2","LL",467.1568 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2049,"Simulated","ppmv CO2","LL",471.3043 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2050,"Simulated","ppmv CO2","LL",475.0274 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2051,"Simulated","ppmv CO2","LL",479.1333 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2052,"Simulated","ppmv CO2","LL",483.916 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2053,"Simulated","ppmv CO2","LL",488.4584 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2054,"Simulated","ppmv CO2","LL",492.8813 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2055,"Simulated","ppmv CO2","LL",497.3747 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2056,"Simulated","ppmv CO2","LL",501.5966 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2057,"Simulated","ppmv CO2","LL",506.0952 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2058,"Simulated","ppmv CO2","LL",510.8368 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2059,"Simulated","ppmv CO2","LL",515.8152 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2060,"Simulated","ppmv CO2","LL",521.3871 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2061,"Simulated","ppmv CO2","LL",526.8853 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2062,"Simulated","ppmv CO2","LL",532.1183 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2063,"Simulated","ppmv CO2","LL",537.5458 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2064,"Simulated","ppmv CO2","LL",542.934 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2065,"Simulated","ppmv CO2","LL",548.5326 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2066,"Simulated","ppmv CO2","LL",554.1482 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2067,"Simulated","ppmv CO2","LL",559.9851 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2068,"Simulated","ppmv CO2","LL",566.1863 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2069,"Simulated","ppmv CO2","LL",572.1436 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2070,"Simulated","ppmv CO2","LL",577.792 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2071,"Simulated","ppmv CO2","LL",583.5638 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2072,"Simulated","ppmv CO2","LL",589.158 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2073,"Simulated","ppmv CO2","LL",595.2131 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2074,"Simulated","ppmv CO2","LL",601.1704 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2075,"Simulated","ppmv CO2","LL",606.9395 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2076,"Simulated","ppmv CO2","LL",613.2683 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2077,"Simulated","ppmv CO2","LL",620.0117 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2078,"Simulated","ppmv CO2","LL",626.7996 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2079,"Simulated","ppmv CO2","LL",633.4174 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2080,"Simulated","ppmv CO2","LL",640.0634 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2081,"Simulated","ppmv CO2","LL",646.4697 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2082,"Simulated","ppmv CO2","LL",652.5252 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2083,"Simulated","ppmv CO2","LL",659.2122 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2084,"Simulated","ppmv CO2","LL",666.3253 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2085,"Simulated","ppmv CO2","LL",673.4941 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2086,"Simulated","ppmv CO2","LL",680.6078 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2087,"Simulated","ppmv CO2","LL",687.8062 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2088,"Simulated","ppmv CO2","LL",694.9071 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2089,"Simulated","ppmv CO2","LL",702.4293 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2090,"Simulated","ppmv CO2","LL",710.0996 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2091,"Simulated","ppmv CO2","LL",717.3865 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2092,"Simulated","ppmv CO2","LL",724.1897 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2093,"Simulated","ppmv CO2","LL",731.2606 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2094,"Simulated","ppmv CO2","LL",738.7358 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2095,"Simulated","ppmv CO2","LL",745.7938 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2096,"Simulated","ppmv CO2","LL",752.534 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2097,"Simulated","ppmv CO2","LL",760.1697 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2098,"Simulated","ppmv CO2","LL",767.3522 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2099,"Simulated","ppmv CO2","LL",774.5943 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2100,"Simulated","ppmv CO2","LL",782.1556 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2006,"Simulated","ppmv CO2","global",387.092 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2007,"Simulated","ppmv CO2","global",389.5619 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2008,"Simulated","ppmv CO2","global",391.8357 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2009,"Simulated","ppmv CO2","global",394.4032 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2010,"Simulated","ppmv CO2","global",396.7407 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2011,"Simulated","ppmv CO2","global",399.3627 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2012,"Simulated","ppmv CO2","global",402.5565 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2013,"Simulated","ppmv CO2","global",405.9721 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2014,"Simulated","ppmv CO2","global",408.9693 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2015,"Simulated","ppmv CO2","global",412.3594 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2016,"Simulated","ppmv CO2","global",416.5741 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2017,"Simulated","ppmv CO2","global",420.0324 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2018,"Simulated","ppmv CO2","global",423.2899 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2019,"Simulated","ppmv CO2","global",427.26 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2020,"Simulated","ppmv CO2","global",431.5846 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2021,"Simulated","ppmv CO2","global",435.6829 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2022,"Simulated","ppmv CO2","global",439.9305 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2023,"Simulated","ppmv CO2","global",444.1734 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2024,"Simulated","ppmv CO2","global",448.6912 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2025,"Simulated","ppmv CO2","global",452.9911 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2026,"Simulated","ppmv CO2","global",457.3575 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2027,"Simulated","ppmv CO2","global",461.5758 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2028,"Simulated","ppmv CO2","global",466.4752 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2029,"Simulated","ppmv CO2","global",471.7164 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2030,"Simulated","ppmv CO2","global",476.5788 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2031,"Simulated","ppmv CO2","global",481.2158 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2032,"Simulated","ppmv CO2","global",486.1736 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2033,"Simulated","ppmv CO2","global",491.636 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2034,"Simulated","ppmv CO2","global",497.2255 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2035,"Simulated","ppmv CO2","global",502.6528 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2036,"Simulated","ppmv CO2","global",508.0091 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2037,"Simulated","ppmv CO2","global",514.1528 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2038,"Simulated","ppmv CO2","global",519.8133 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2039,"Simulated","ppmv CO2","global",525.847 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2040,"Simulated","ppmv CO2","global",531.7873 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2041,"Simulated","ppmv CO2","global",538.1027 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2042,"Simulated","ppmv CO2","global",544.8357 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2043,"Simulated","ppmv CO2","global",551.2558 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2044,"Simulated","ppmv CO2","global",557.7722 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2045,"Simulated","ppmv CO2","global",564.7165 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2046,"Simulated","ppmv CO2","global",572.1263 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2047,"Simulated","ppmv CO2","global",579.5154 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2048,"Simulated","ppmv CO2","global",586.6105 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2049,"Simulated","ppmv CO2","global",593.925 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2050,"Simulated","ppmv CO2","global",601.3416 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2051,"Simulated","ppmv CO2","global",608.8742 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2052,"Simulated","ppmv CO2","global",616.5262 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2053,"Simulated","ppmv CO2","global",624.8282 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2054,"Simulated","ppmv CO2","global",632.5265 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2055,"Simulated","ppmv CO2","global",640.6974 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2056,"Simulated","ppmv CO2","global",648.8981 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2057,"Simulated","ppmv CO2","global",657.8055 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2058,"Simulated","ppmv CO2","global",666.2678 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2059,"Simulated","ppmv CO2","global",674.1403 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2060,"Simulated","ppmv CO2","global",682.7734 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2061,"Simulated","ppmv CO2","global",691.9589 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2062,"Simulated","ppmv CO2","global",701.383 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2063,"Simulated","ppmv CO2","global",710.3484 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2064,"Simulated","ppmv CO2","global",718.7263 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2065,"Simulated","ppmv CO2","global",727.4593 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2066,"Simulated","ppmv CO2","global",736.6628 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2067,"Simulated","ppmv CO2","global",746.537 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2068,"Simulated","ppmv CO2","global",756.3266 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2069,"Simulated","ppmv CO2","global",765.9315 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2070,"Simulated","ppmv CO2","global",775.7276 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2071,"Simulated","ppmv CO2","global",784.338 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2072,"Simulated","ppmv CO2","global",794.0014 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2073,"Simulated","ppmv CO2","global",804.8431 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2074,"Simulated","ppmv CO2","global",814.9553 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2075,"Simulated","ppmv CO2","global",825.0519 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2076,"Simulated","ppmv CO2","global",834.7067 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2077,"Simulated","ppmv CO2","global",844.9497 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2078,"Simulated","ppmv CO2","global",854.8987 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2079,"Simulated","ppmv CO2","global",865.1015 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2080,"Simulated","ppmv CO2","global",875.5289 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2081,"Simulated","ppmv CO2","global",885.6575 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2082,"Simulated","ppmv CO2","global",896.0585 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2083,"Simulated","ppmv CO2","global",907.2833 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2084,"Simulated","ppmv CO2","global",917.7206 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2085,"Simulated","ppmv CO2","global",927.9204 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2086,"Simulated","ppmv CO2","global",938.5404 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2087,"Simulated","ppmv CO2","global",949.7239 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2088,"Simulated","ppmv CO2","global",960.3033 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2089,"Simulated","ppmv CO2","global",971.1628 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2090,"Simulated","ppmv CO2","global",982.2942 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2091,"Simulated","ppmv CO2","global",993.3028 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2092,"Simulated","ppmv CO2","global",1004.4194 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2093,"Simulated","ppmv CO2","global",1015.2414 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2094,"Simulated","ppmv CO2","global",1025.9037 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2095,"Simulated","ppmv CO2","global",1036.1827 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2096,"Simulated","ppmv CO2","global",1047.1569 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2097,"Simulated","ppmv CO2","global",1058.614 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2098,"Simulated","ppmv CO2","global",1069.6394 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2099,"Simulated","ppmv CO2","global",1080.7588 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2100,"Simulated","ppmv CO2","global",1091.2787 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2006,"Simulated","ppmv CO2","HL",386.0241 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2007,"Simulated","ppmv CO2","HL",388.4488 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2008,"Simulated","ppmv CO2","HL",390.627 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2009,"Simulated","ppmv CO2","HL",393.1538 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2010,"Simulated","ppmv CO2","HL",395.4392 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2011,"Simulated","ppmv CO2","HL",397.9208 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2012,"Simulated","ppmv CO2","HL",401.0108 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2013,"Simulated","ppmv CO2","HL",404.212 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2014,"Simulated","ppmv CO2","HL",407.3657 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2015,"Simulated","ppmv CO2","HL",410.6063 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2016,"Simulated","ppmv CO2","HL",414.6107 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2017,"Simulated","ppmv CO2","HL",418.2173 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2018,"Simulated","ppmv CO2","HL",421.5131 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2019,"Simulated","ppmv CO2","HL",425.292 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2020,"Simulated","ppmv CO2","HL",429.4443 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2021,"Simulated","ppmv CO2","HL",433.5574 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2022,"Simulated","ppmv CO2","HL",437.7719 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2023,"Simulated","ppmv CO2","HL",441.9937 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2024,"Simulated","ppmv CO2","HL",446.3676 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2025,"Simulated","ppmv CO2","HL",450.7701 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2026,"Simulated","ppmv CO2","HL",455.1446 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2027,"Simulated","ppmv CO2","HL",459.2604 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2028,"Simulated","ppmv CO2","HL",463.9837 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2029,"Simulated","ppmv CO2","HL",469.2057 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2030,"Simulated","ppmv CO2","HL",474.0829 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2031,"Simulated","ppmv CO2","HL",478.7577 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2032,"Simulated","ppmv CO2","HL",483.5216 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2033,"Simulated","ppmv CO2","HL",488.8727 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2034,"Simulated","ppmv CO2","HL",494.5081 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2035,"Simulated","ppmv CO2","HL",499.9699 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2036,"Simulated","ppmv CO2","HL",505.1407 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2037,"Simulated","ppmv CO2","HL",511.045 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2038,"Simulated","ppmv CO2","HL",516.7974 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2039,"Simulated","ppmv CO2","HL",522.7848 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2040,"Simulated","ppmv CO2","HL",528.5976 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2041,"Simulated","ppmv CO2","HL",534.8705 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2042,"Simulated","ppmv CO2","HL",541.536 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2043,"Simulated","ppmv CO2","HL",548.0167 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2044,"Simulated","ppmv CO2","HL",554.4968 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2045,"Simulated","ppmv CO2","HL",561.2579 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2046,"Simulated","ppmv CO2","HL",568.412 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2047,"Simulated","ppmv CO2","HL",575.7792 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2048,"Simulated","ppmv CO2","HL",583.1719 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2049,"Simulated","ppmv CO2","HL",590.4328 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2050,"Simulated","ppmv CO2","HL",597.7584 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2051,"Simulated","ppmv CO2","HL",605.1334 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2052,"Simulated","ppmv CO2","HL",612.6649 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2053,"Simulated","ppmv CO2","HL",620.8882 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2054,"Simulated","ppmv CO2","HL",628.6991 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2055,"Simulated","ppmv CO2","HL",636.7149 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2056,"Simulated","ppmv CO2","HL",645.005 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2057,"Simulated","ppmv CO2","HL",653.5986 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2058,"Simulated","ppmv CO2","HL",662.2368 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2059,"Simulated","ppmv CO2","HL",670.1186 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2060,"Simulated","ppmv CO2","HL",678.4756 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2061,"Simulated","ppmv CO2","HL",687.4359 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2062,"Simulated","ppmv CO2","HL",696.7732 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2063,"Simulated","ppmv CO2","HL",705.9086 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2064,"Simulated","ppmv CO2","HL",714.5581 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2065,"Simulated","ppmv CO2","HL",723.0733 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2066,"Simulated","ppmv CO2","HL",732.0742 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2067,"Simulated","ppmv CO2","HL",741.9671 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2068,"Simulated","ppmv CO2","HL",751.6623 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2069,"Simulated","ppmv CO2","HL",761.3427 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2070,"Simulated","ppmv CO2","HL",771.0986 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2071,"Simulated","ppmv CO2","HL",779.8355 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2072,"Simulated","ppmv CO2","HL",789.4533 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2073,"Simulated","ppmv CO2","HL",799.8929 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2074,"Simulated","ppmv CO2","HL",810.0487 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2075,"Simulated","ppmv CO2","HL",820.1851 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2076,"Simulated","ppmv CO2","HL",830.0743 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2077,"Simulated","ppmv CO2","HL",840.2148 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2078,"Simulated","ppmv CO2","HL",850.2231 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2079,"Simulated","ppmv CO2","HL",860.2999 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2080,"Simulated","ppmv CO2","HL",870.6933 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2081,"Simulated","ppmv CO2","HL",880.8497 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2082,"Simulated","ppmv CO2","HL",890.9247 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2083,"Simulated","ppmv CO2","HL",902.1482 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2084,"Simulated","ppmv CO2","HL",912.6677 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2085,"Simulated","ppmv CO2","HL",922.7922 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2086,"Simulated","ppmv CO2","HL",933.5036 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2087,"Simulated","ppmv CO2","HL",944.3538 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2088,"Simulated","ppmv CO2","HL",955.1208 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2089,"Simulated","ppmv CO2","HL",965.9239 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2090,"Simulated","ppmv CO2","HL",977.1604 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2091,"Simulated","ppmv CO2","HL",988.0673 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2092,"Simulated","ppmv CO2","HL",999.2026 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2093,"Simulated","ppmv CO2","HL",1010.0228 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2094,"Simulated","ppmv CO2","HL",1020.8533 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2095,"Simulated","ppmv CO2","HL",1031.159 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2096,"Simulated","ppmv CO2","HL",1041.9684 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2097,"Simulated","ppmv CO2","HL",1053.2393 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2098,"Simulated","ppmv CO2","HL",1064.2464 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2099,"Simulated","ppmv CO2","HL",1075.3511 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2100,"Simulated","ppmv CO2","HL",1086.1747 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2006,"Simulated","ppmv CO2","LL",387.3288 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2007,"Simulated","ppmv CO2","LL",389.8086 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2008,"Simulated","ppmv CO2","LL",392.1036 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2009,"Simulated","ppmv CO2","LL",394.6801 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2010,"Simulated","ppmv CO2","LL",397.0292 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2011,"Simulated","ppmv CO2","LL",399.6823 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2012,"Simulated","ppmv CO2","LL",402.8991 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2013,"Simulated","ppmv CO2","LL",406.3622 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2014,"Simulated","ppmv CO2","LL",409.3248 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2015,"Simulated","ppmv CO2","LL",412.748 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2016,"Simulated","ppmv CO2","LL",417.0093 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2017,"Simulated","ppmv CO2","LL",420.4348 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2018,"Simulated","ppmv CO2","LL",423.6838 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2019,"Simulated","ppmv CO2","LL",427.6963 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2020,"Simulated","ppmv CO2","LL",432.059 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2021,"Simulated","ppmv CO2","LL",436.154 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2022,"Simulated","ppmv CO2","LL",440.409 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2023,"Simulated","ppmv CO2","LL",444.6566 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2024,"Simulated","ppmv CO2","LL",449.2062 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2025,"Simulated","ppmv CO2","LL",453.4834 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2026,"Simulated","ppmv CO2","LL",457.848 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2027,"Simulated","ppmv CO2","LL",462.0891 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2028,"Simulated","ppmv CO2","LL",467.0275 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2029,"Simulated","ppmv CO2","LL",472.273 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2030,"Simulated","ppmv CO2","LL",477.132 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2031,"Simulated","ppmv CO2","LL",481.7606 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2032,"Simulated","ppmv CO2","LL",486.7614 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2033,"Simulated","ppmv CO2","LL",492.2484 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2034,"Simulated","ppmv CO2","LL",497.8278 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2035,"Simulated","ppmv CO2","LL",503.2475 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2036,"Simulated","ppmv CO2","LL",508.6449 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2037,"Simulated","ppmv CO2","LL",514.8417 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2038,"Simulated","ppmv CO2","LL",520.4817 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2039,"Simulated","ppmv CO2","LL",526.5257 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2040,"Simulated","ppmv CO2","LL",532.4943 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2041,"Simulated","ppmv CO2","LL",538.8192 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2042,"Simulated","ppmv CO2","LL",545.5671 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2043,"Simulated","ppmv CO2","LL",551.9737 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2044,"Simulated","ppmv CO2","LL",558.4982 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2045,"Simulated","ppmv CO2","LL",565.4831 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2046,"Simulated","ppmv CO2","LL",572.9496 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2047,"Simulated","ppmv CO2","LL",580.3436 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2048,"Simulated","ppmv CO2","LL",587.3728 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2049,"Simulated","ppmv CO2","LL",594.699 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2050,"Simulated","ppmv CO2","LL",602.1358 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2051,"Simulated","ppmv CO2","LL",609.7034 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2052,"Simulated","ppmv CO2","LL",617.382 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2053,"Simulated","ppmv CO2","LL",625.7015 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2054,"Simulated","ppmv CO2","LL",633.3748 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2055,"Simulated","ppmv CO2","LL",641.5802 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2056,"Simulated","ppmv CO2","LL",649.761 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2057,"Simulated","ppmv CO2","LL",658.7379 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2058,"Simulated","ppmv CO2","LL",667.1614 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2059,"Simulated","ppmv CO2","LL",675.0317 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2060,"Simulated","ppmv CO2","LL",683.726 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2061,"Simulated","ppmv CO2","LL",692.9614 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2062,"Simulated","ppmv CO2","LL",702.4048 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2063,"Simulated","ppmv CO2","LL",711.3325 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2064,"Simulated","ppmv CO2","LL",719.6502 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2065,"Simulated","ppmv CO2","LL",728.4315 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2066,"Simulated","ppmv CO2","LL",737.6798 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2067,"Simulated","ppmv CO2","LL",747.5499 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2068,"Simulated","ppmv CO2","LL",757.3605 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2069,"Simulated","ppmv CO2","LL",766.9486 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2070,"Simulated","ppmv CO2","LL",776.7537 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2071,"Simulated","ppmv CO2","LL",785.336 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2072,"Simulated","ppmv CO2","LL",795.0096 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2073,"Simulated","ppmv CO2","LL",805.9403 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2074,"Simulated","ppmv CO2","LL",816.0429 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2075,"Simulated","ppmv CO2","LL",826.1307 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2076,"Simulated","ppmv CO2","LL",835.7336 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2077,"Simulated","ppmv CO2","LL",845.9992 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2078,"Simulated","ppmv CO2","LL",855.9352 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2079,"Simulated","ppmv CO2","LL",866.1658 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2080,"Simulated","ppmv CO2","LL",876.6007 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2081,"Simulated","ppmv CO2","LL",886.7232 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2082,"Simulated","ppmv CO2","LL",897.1965 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2083,"Simulated","ppmv CO2","LL",908.4216 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2084,"Simulated","ppmv CO2","LL",918.8406 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2085,"Simulated","ppmv CO2","LL",929.0572 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2086,"Simulated","ppmv CO2","LL",939.6569 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2087,"Simulated","ppmv CO2","LL",950.9142 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2088,"Simulated","ppmv CO2","LL",961.4521 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2089,"Simulated","ppmv CO2","LL",972.3241 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2090,"Simulated","ppmv CO2","LL",983.4322 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2091,"Simulated","ppmv CO2","LL",994.4632 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2092,"Simulated","ppmv CO2","LL",1005.5758 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2093,"Simulated","ppmv CO2","LL",1016.3981 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2094,"Simulated","ppmv CO2","LL",1027.0232 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2095,"Simulated","ppmv CO2","LL",1037.2963 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2096,"Simulated","ppmv CO2","LL",1048.307 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2097,"Simulated","ppmv CO2","LL",1059.8053 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2098,"Simulated","ppmv CO2","LL",1070.8348 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2099,"Simulated","ppmv CO2","LL",1081.9574 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2100,"Simulated","ppmv CO2","LL",1092.4101 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/rcp85/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/rcp85/summary.csv deleted file mode 100644 index 5fbe73036..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/ESM_CO2/rcp85/summary.csv +++ /dev/null @@ -1,286 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,15.39604319,356.9636,397.5849,383.3464667,387.3668,1,CMIP5 -2006,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,15.34838752,356.0642,396.5728,382.35798,386.4236,1,CMIP5 -2006,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,15.40643732,357.1627,397.8136,383.5613467,387.5049,1,CMIP5 -2007,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,15.99824566,358.0804,400.1924,385.5464733,389.9179667,1,CMIP5 -2007,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,15.84056508,357.3041,398.9636,384.5148933,388.7592667,1,CMIP5 -2007,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,16.03276918,358.2523,400.47,385.7708733,390.1598667,1,CMIP5 -2008,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,16.52758728,359.619,403.3394,387.8841533,392.2390667,1,CMIP5 -2008,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,16.36832733,358.7904,401.9872,386.8288867,391.1580333,1,CMIP5 -2008,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,16.56295228,359.8025,403.6449,388.1143133,392.4647667,1,CMIP5 -2009,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,16.98201403,361.0838,405.974,390.1460067,394.6141,1,CMIP5 -2009,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,16.75280119,360.3214,404.516,389.0348667,393.5463333,1,CMIP5 -2009,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,17.0326831,361.2527,406.3034,390.38814,394.8181,1,CMIP5 -2010,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,17.39766125,362.7827,408.6471,392.60934,397.1429,1,CMIP5 -2010,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,17.21629655,361.8835,407.2164,391.4251,396.1874,1,CMIP5 -2010,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,17.43749236,362.9818,408.9703,392.86712,397.3424,1,CMIP5 -2011,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,17.86677335,364.681,411.6611,395.3509933,399.9856,1,CMIP5 -2011,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,17.71377788,363.6407,410.1977,394.05692,398.8686,1,CMIP5 -2011,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,17.89998098,364.9113,411.9917,395.6325133,400.2188,1,CMIP5 -2012,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,18.45511866,366.4689,415.0536,398.13994,402.9452,1,CMIP5 -2012,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,18.25789358,365.4208,413.3695,396.80286,401.8333,1,CMIP5 -2012,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,18.49862417,366.7011,415.434,398.4315267,403.1774,1,CMIP5 -2013,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,19.17546796,367.8826,418.3557,400.78602,405.9721,1,CMIP5 -2013,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,18.91309295,366.9324,416.6226,399.4381267,404.2227,1,CMIP5 -2013,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,19.23406626,368.0931,418.7472,401.0802933,406.3622,1,CMIP5 -2014,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,19.91156313,369.26,421.5208,403.46146,408.9693,1,CMIP5 -2014,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,19.62969023,368.361,419.8157,402.1291733,407.3657,1,CMIP5 -2014,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,19.9740136,369.459,421.906,403.7518667,409.3248,1,CMIP5 -2015,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,20.60727444,370.9555,425.0235,406.3587267,412.3594,1,CMIP5 -2015,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,20.34220832,370.0199,423.3931,404.9861867,410.6063,1,CMIP5 -2015,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,20.66582944,371.1627,425.3918,406.6577733,412.748,1,CMIP5 -2016,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,21.2904792,372.937,428.6396,409.5286133,416.3077667,1,CMIP5 -2016,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,21.03384914,371.8545,426.8959,408.04464,414.6107,1,CMIP5 -2016,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,21.34755033,373.1767,429.0335,409.8522,416.634,1,CMIP5 -2017,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,21.91601022,375.1612,432.4629,412.7834667,420.0324,1,CMIP5 -2017,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,21.6847103,373.921,430.5209,411.2357133,418.2173,1,CMIP5 -2017,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,21.96737604,375.4359,432.9015,413.1211,420.4348,1,CMIP5 -2018,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,22.37999517,377.5038,435.9357,415.9837667,423.2899,1,CMIP5 -2018,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,22.20472257,376.1712,434.0594,414.40678,421.5131,1,CMIP5 -2018,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,22.41855746,377.7989,436.3596,416.3274133,423.6838,1,CMIP5 -2019,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,23.19130336,379.4019,439.9385,419.3021933,426.7179667,1,CMIP5 -2019,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,22.92479789,378.1873,437.9625,417.6826333,425.1853667,1,CMIP5 -2019,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,23.25030148,379.6709,440.3849,419.6552667,427.0379333,1,CMIP5 -2020,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,24.09294349,381.5057,444.3049,422.95236,430.6733,1,CMIP5 -2020,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,23.7923789,380.2052,442.1721,421.19264,428.9424,1,CMIP5 -2020,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,24.15946329,381.7937,444.7867,423.3358667,431.0346333,1,CMIP5 -2021,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,25.00549136,383.6049,448.6594,426.7157,434.5766,1,CMIP5 -2021,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,24.61578015,382.4313,446.3948,424.9171533,432.8720667,1,CMIP5 -2021,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,25.0915936,383.8648,449.171,427.1074267,434.9325333,1,CMIP5 -2022,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,26.02145597,385.3841,452.9583,430.305,438.1823,1,CMIP5 -2022,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,25.60743202,384.2699,450.7144,428.5134667,436.5104333,1,CMIP5 -2022,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,26.11293992,385.6308,453.4652,430.69512,438.5314,1,CMIP5 -2023,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,26.65463038,388.1485,457.5597,434.07214,441.4889,1,CMIP5 -2023,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,26.37568028,386.6579,455.1747,432.1949,439.9179,1,CMIP5 -2023,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,26.71679049,388.4786,458.0985,434.48166,441.8169,1,CMIP5 -2024,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,27.21494811,390.9015,461.6181,437.8111533,444.9843667,1,CMIP5 -2024,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,26.9880867,389.3853,459.4692,435.96588,443.4742,1,CMIP5 -2024,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,27.26550497,391.2373,462.1036,438.2136067,445.2996333,1,CMIP5 -2025,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,28.06717375,393.1935,466.0517,441.6115067,448.4518333,1,CMIP5 -2025,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,27.77555734,391.7747,463.8271,439.73552,446.913,1,CMIP5 -2025,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,28.13176993,393.5077,466.5542,442.0201,448.7731,1,CMIP5 -2026,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,28.94831736,395.5386,470.4007,445.6205267,452.4566333,1,CMIP5 -2026,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,28.62263053,394.1056,468.0729,443.6624,450.6897,1,CMIP5 -2026,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,29.02003068,395.8559,470.9266,446.0466467,452.8255333,1,CMIP5 -2027,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,29.76006476,398.5163,475.8657,449.8571467,457.0677,1,CMIP5 -2027,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,29.42024091,396.9287,473.1881,447.80018,455.0176,1,CMIP5 -2027,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,29.83571015,398.8679,476.4705,450.3057733,457.4958,1,CMIP5 -2028,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,30.54988537,401.5114,480.8614,454.1869933,462.0225,1,CMIP5 -2028,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,30.21635138,399.833,478.1825,452.0378667,459.7698,1,CMIP5 -2028,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,30.62404519,401.8832,481.4666,454.6555667,462.4928,1,CMIP5 -2029,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,31.43586666,404.1757,485.5816,458.3623267,466.7155,1,CMIP5 -2029,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,31.13460061,402.4184,482.841,456.2374933,464.6923,1,CMIP5 -2029,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,31.50344081,404.5648,486.2007,458.82626,467.1379,1,CMIP5 -2030,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,32.44683656,406.7464,490.8057,462.6327533,471.086,1,CMIP5 -2030,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,32.07666002,405.1318,488.0878,460.49052,469.0442,1,CMIP5 -2030,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,32.52921088,407.1039,491.4197,463.0998267,471.5123,1,CMIP5 -2031,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,33.30673579,409.7158,495.9752,467.17834,475.5194,1,CMIP5 -2031,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,32.98940153,407.9982,493.2543,465.0111133,473.7948,1,CMIP5 -2031,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,33.37740198,410.0962,496.5899,467.6508267,475.8795,1,CMIP5 -2032,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,34.26424475,412.5824,501.4305,471.6378067,479.8006,1,CMIP5 -2032,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,33.87346368,410.9316,498.5998,469.4283333,478.0876,1,CMIP5 -2032,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,34.35148215,412.948,502.0699,472.1198067,480.1583,1,CMIP5 -2033,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,35.44159328,415.1333,507.0755,476.1050533,484.2881,1,CMIP5 -2033,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,34.93745949,413.6506,504.1491,473.8761067,482.4031,1,CMIP5 -2033,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,35.55407077,415.4616,507.7366,476.5912933,484.6817,1,CMIP5 -2034,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,36.74418025,417.6207,512.9777,480.7297467,489.045,1,CMIP5 -2034,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,36.19484761,416.191,509.9394,478.5026933,487.062,1,CMIP5 -2034,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,36.86687898,417.9373,513.6641,481.2157467,489.459,1,CMIP5 -2035,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,37.91632357,420.2088,518.4635,485.3558667,493.8407,1,CMIP5 -2035,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,37.39024557,418.7359,515.4736,483.0995667,491.7677,1,CMIP5 -2035,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,38.03352645,420.535,519.1389,485.84782,494.2735,1,CMIP5 -2036,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,39.07451957,422.9388,523.9535,490.2199,499.0871,1,CMIP5 -2036,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,38.53022366,421.4497,520.9851,487.8805267,497.0026,1,CMIP5 -2036,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,39.19550302,423.2685,524.6241,490.72964,499.5223,1,CMIP5 -2037,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,40.43076713,425.8362,530.5008,495.2621067,504.1383,1,CMIP5 -2037,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,39.89804577,424.1595,527.3175,492.8301667,502.06,1,CMIP5 -2037,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,40.5499663,426.2076,531.2199,495.7930333,504.5722,1,CMIP5 -2038,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,41.59020261,429.1766,537.2632,500.3139733,509.2559,1,CMIP5 -2038,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,41.11076778,427.3515,533.993,497.8679667,507.1691,1,CMIP5 -2038,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,41.69804752,429.5807,538.0019,500.8482,509.6916,1,CMIP5 -2039,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,42.56363449,432.6896,543.1694,505.4736,514.385,1,CMIP5 -2039,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,42.172384,430.6966,540.0711,502.95768,512.1173,1,CMIP5 -2039,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,42.65138815,433.131,543.8694,506.0224533,514.8585,1,CMIP5 -2040,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,43.59004008,436.2168,549.1965,510.8135867,520.2239,1,CMIP5 -2040,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,43.18680346,434.1857,546.0724,508.2287267,517.8312,1,CMIP5 -2040,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,43.68030859,436.6667,549.9023,511.3773533,520.7235,1,CMIP5 -2041,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,44.82840578,439.98,556.4038,516.4754733,526.5123,1,CMIP5 -2041,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,44.41242307,437.7893,553.0006,513.7573,523.9139,1,CMIP5 -2041,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,44.92192951,440.4651,557.1726,517.0685133,527.0548,1,CMIP5 -2042,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,46.31435874,443.2308,563.4965,522.2038267,532.2604,1,CMIP5 -2042,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,45.81663114,441.1958,560.0575,519.4816533,529.8231,1,CMIP5 -2042,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,46.42601603,443.6814,564.2734,522.7975733,532.7692,1,CMIP5 -2043,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,47.56018644,446.5578,569.82,527.77988,537.7576,1,CMIP5 -2043,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,47.08799595,444.5663,566.5684,525.0796667,535.3469,1,CMIP5 -2043,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,47.66569265,446.9988,570.5546,528.3681733,538.261,1,CMIP5 -2044,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,48.67397956,450.2919,576.3683,533.3748333,543.0998,1,CMIP5 -2044,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,48.16990409,448.2742,572.9199,530.64926,540.7843,1,CMIP5 -2044,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,48.78696841,450.7388,577.1473,533.9692667,543.5833,1,CMIP5 -2045,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,50.06634704,453.9559,583.6641,539.2991133,549.0451,1,CMIP5 -2045,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,49.53077246,451.8936,580.1404,536.4745933,546.5668,1,CMIP5 -2045,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,50.18642012,454.4126,584.4602,539.9150533,549.5626,1,CMIP5 -2046,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,51.19692847,458.296,590.7503,545.4935867,554.9423,1,CMIP5 -2046,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,50.72211551,455.9557,587.1378,542.5254,552.4453,1,CMIP5 -2046,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,51.30383682,458.8143,591.5664,546.14116,555.4636,1,CMIP5 -2047,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,52.661853,462.1783,598.2731,551.85512,561.865,1,CMIP5 -2047,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,52.07384084,459.9735,594.4944,548.8253333,558.9681,1,CMIP5 -2047,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,52.79370521,462.6666,599.1267,552.5158667,562.4699,1,CMIP5 -2048,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,53.86603466,466.6179,605.8418,558.3391133,568.6024,1,CMIP5 -2048,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,53.42325003,464.1846,602.1029,555.3196333,565.81,1,CMIP5 -2048,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,53.96555319,467.1568,606.6864,558.9973933,569.1855,1,CMIP5 -2049,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,55.21652259,470.7866,613.3175,564.9269733,575.562,1,CMIP5 -2049,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,54.68411869,468.449,609.4541,561.8036733,572.6157,1,CMIP5 -2049,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,55.33559627,471.3043,614.1903,565.60722,576.1772,1,CMIP5 -2050,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,56.6499855,474.5485,620.4629,571.2284667,581.996,1,CMIP5 -2050,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,56.09325662,472.3857,616.8611,568.1983,579.1371,1,CMIP5 -2050,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,56.77421238,475.0274,621.2766,571.8881467,582.5929,1,CMIP5 -2051,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,58.09560386,478.6221,628.2155,577.6830667,588.6556,1,CMIP5 -2051,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,57.52264194,476.3138,624.3117,574.58264,585.8708,1,CMIP5 -2051,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,58.22410052,479.1333,629.0973,578.3592467,589.2371,1,CMIP5 -2052,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,59.39032313,483.3812,636.3758,584.6096933,595.5404,1,CMIP5 -2052,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,58.81697762,480.9662,632.3727,581.3942267,592.7268,1,CMIP5 -2052,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,59.51896226,483.916,637.2802,585.3107867,596.1278,1,CMIP5 -2053,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,60.96544249,487.8924,644.9045,591.744,602.3337,1,CMIP5 -2053,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,60.41327967,485.3363,640.7532,588.46482,599.7501,1,CMIP5 -2053,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,61.08989959,488.4584,645.8423,592.4594667,602.8732,1,CMIP5 -2054,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,62.45792534,492.3244,653.28,598.6724267,609.3506,1,CMIP5 -2054,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,61.90319205,489.8095,649.1932,595.3817133,606.4372,1,CMIP5 -2054,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,62.5824482,492.8813,654.2033,599.3896933,609.9589,1,CMIP5 -2055,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,63.9402543,496.819,661.3235,605.7452533,617.0286,1,CMIP5 -2055,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,63.33851904,494.31,657.1484,602.39146,613.957,1,CMIP5 -2055,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,64.07516823,497.3747,662.2667,606.47642,617.6699,1,CMIP5 -2056,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,65.76152424,501.0775,670.3555,613.10038,624.7797,1,CMIP5 -2056,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,65.05706805,498.733,666.0094,609.72242,621.5988,1,CMIP5 -2056,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,65.91923255,501.5966,671.3373,613.83648,625.4439,1,CMIP5 -2057,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,67.48595574,505.5576,678.9124,620.5700667,632.5667,1,CMIP5 -2057,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,66.82900232,503.1301,674.7705,617.20132,629.6144,1,CMIP5 -2057,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,67.63313923,506.0952,679.848,621.30454,633.1831,1,CMIP5 -2058,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,69.01767294,510.2813,687.4831,627.7857067,640.1954,1,CMIP5 -2058,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,68.39841679,507.773,683.3198,624.3724733,636.8801,1,CMIP5 -2058,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,69.15628883,510.8368,688.4236,628.5293667,640.8876,1,CMIP5 -2059,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,70.61633204,515.2222,696.8273,635.5159667,648.6892,1,CMIP5 -2059,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,70.0201416,512.5442,692.5023,631.94496,645.1696,1,CMIP5 -2059,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,70.7496641,515.8152,697.8044,636.29348,649.424,1,CMIP5 -2060,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,71.93847616,520.7419,705.5871,643.3679133,656.9419,1,CMIP5 -2060,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,71.42723306,517.8285,701.3119,639.7425133,653.6948,1,CMIP5 -2060,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,72.05315327,521.3871,706.5529,644.15794,657.6199,1,CMIP5 -2061,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,73.42233096,526.2248,714.6006,651.48216,665.2304,1,CMIP5 -2061,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,72.8511077,523.242,710.1049,647.6933,661.8207,1,CMIP5 -2061,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,73.55037426,526.8853,715.6163,652.3078133,665.9423,1,CMIP5 -2062,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,75.1348995,531.4594,723.9965,659.6134133,674.1954,1,CMIP5 -2062,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,74.52125804,528.4838,719.3962,655.7967933,670.5294,1,CMIP5 -2062,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,75.27246618,532.1183,725.0357,660.4454067,674.9608,1,CMIP5 -2063,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,76.74933287,536.8848,733.3631,667.8947533,684.0911,1,CMIP5 -2063,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,76.1406626,533.8999,728.7348,664.0282,680.1703,1,CMIP5 -2063,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,76.885295,537.5458,734.4086,668.7368533,684.9097,1,CMIP5 -2064,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,78.22473121,542.2937,742.3715,676.1176333,693.6471,1,CMIP5 -2064,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,77.60774939,539.4022,737.7452,672.2761467,689.6762,1,CMIP5 -2064,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,78.36207179,542.934,743.4166,676.95356,694.4761,1,CMIP5 -2065,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,79.7384881,547.8545,751.5356,684.5343933,703.4755,1,CMIP5 -2065,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,79.15124436,544.7925,746.8807,680.5624933,699.4184,1,CMIP5 -2065,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,79.86890305,548.5326,752.5872,685.39866,704.3225,1,CMIP5 -2066,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,81.49021373,553.458,761.6527,693.1693,713.2459,1,CMIP5 -2066,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,80.88492902,550.3416,756.8662,689.1695267,709.3768,1,CMIP5 -2066,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,81.62494808,554.1482,762.7341,694.0405067,714.0537,1,CMIP5 -2067,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,83.21757491,559.2678,771.6122,701.94638,723.1547,1,CMIP5 -2067,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,82.6194742,556.0286,766.6132,697.88266,719.1984,1,CMIP5 -2067,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,83.35094749,559.9851,772.7415,702.8318933,723.9807,1,CMIP5 -2068,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,84.83005304,565.4422,781.6223,710.9968533,733.4644,1,CMIP5 -2068,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,84.24874425,562.0823,776.5737,706.8214733,729.3614,1,CMIP5 -2068,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,84.95939896,566.1863,782.7628,711.90642,734.321,1,CMIP5 -2069,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,86.42145846,571.4498,791.3877,719.88918,743.4357,1,CMIP5 -2069,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,85.80811186,568.3169,786.5992,715.8232667,739.3561,1,CMIP5 -2069,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,86.55740659,572.1436,792.4694,720.7742267,744.2875,1,CMIP5 -2070,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,88.24369008,577.0843,801.3596,728.75118,753.4973,1,CMIP5 -2070,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,87.62746262,573.8887,796.4408,724.65762,749.4109,1,CMIP5 -2070,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,88.38040733,577.792,802.4708,729.6427267,754.3505,1,CMIP5 -2071,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,89.90997712,582.8785,811.6398,737.4077267,763.7454,1,CMIP5 -2071,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,89.25191088,579.7841,806.6591,733.3431733,759.6235,1,CMIP5 -2071,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,90.05586929,583.5638,812.765,738.2928533,764.606,1,CMIP5 -2072,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,91.8902231,588.4496,822.0872,746.4860467,774.3573,1,CMIP5 -2072,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,91.28464261,585.251,817.1871,742.36616,770.2466,1,CMIP5 -2072,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,92.02414958,589.158,823.1941,747.3828333,775.2156,1,CMIP5 -2073,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,93.77363545,594.4923,832.1172,755.99802,785.2749,1,CMIP5 -2073,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,93.10554715,591.2377,827.111,751.7248467,780.9893,1,CMIP5 -2073,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,93.92119562,595.2131,833.2481,756.9283333,786.1697,1,CMIP5 -2074,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,95.64059826,600.4433,842.2373,765.32182,796.5182,1,CMIP5 -2074,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,95.00580758,597.16,837.2298,761.0954867,792.3967,1,CMIP5 -2074,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,95.78084473,601.1704,843.3685,766.2423133,797.3787,1,CMIP5 -2075,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,97.58968883,606.2172,852.5264,774.6530467,807.2547,1,CMIP5 -2075,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,96.94043001,602.9556,847.4624,770.4016867,803.1645,1,CMIP5 -2075,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,97.73296018,606.9395,853.6703,775.5788,808.1087,1,CMIP5 -2076,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,99.32344387,612.5488,863.3348,784.0636533,817.6956,1,CMIP5 -2076,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,98.68645303,609.3001,858.1162,779.86844,813.8165,1,CMIP5 -2076,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,99.46432539,613.2683,864.5137,784.9776067,818.5055,1,CMIP5 -2077,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,100.9909105,619.2407,874.1434,793.6010333,828.4289,1,CMIP5 -2077,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,100.4330562,615.7593,868.8911,789.34342,824.4981,1,CMIP5 -2077,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,101.1143086,620.0117,875.3299,794.52898,829.2497,1,CMIP5 -2078,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,102.5350918,625.9894,884.5393,803.03604,839.3979,1,CMIP5 -2078,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,102.0404254,622.3309,879.2467,798.7276333,835.2922,1,CMIP5 -2078,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,102.6442845,626.7996,885.7349,803.97502,840.2551,1,CMIP5 -2079,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,104.2749455,632.6092,895.0653,812.7621933,851.1563,1,CMIP5 -2079,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,103.7711573,628.9599,889.9468,808.3942,846.7968,1,CMIP5 -2079,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,104.3853578,633.4174,896.2216,813.7133133,852.0665,1,CMIP5 -2080,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,106.0533473,639.2751,905.5481,822.6875933,863.1695,1,CMIP5 -2080,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,105.4775464,635.7155,900.3597,818.25708,858.6611,1,CMIP5 -2080,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,106.1792754,640.0634,906.7201,823.65186,864.1109,1,CMIP5 -2081,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,108.0813859,645.684,916.6229,832.7146267,875.7397,1,CMIP5 -2081,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,107.4804808,642.1364,911.3903,828.2473733,871.077,1,CMIP5 -2081,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,108.212453,646.4697,917.805,833.6866333,876.7132,1,CMIP5 -2082,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,110.2622152,651.772,927.9983,842.5692333,887.5153,1,CMIP5 -2082,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,109.5559897,648.3713,922.6801,838.1178,882.9516,1,CMIP5 -2082,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,110.4168925,652.5252,929.1998,843.5387133,888.4681,1,CMIP5 -2083,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,112.2417652,658.4369,938.9017,852.5541333,899.7326,1,CMIP5 -2083,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,111.5578217,654.9361,933.5411,848.0727867,895.0401,1,CMIP5 -2083,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,112.3913928,659.2122,940.1127,853.53026,900.7124,1,CMIP5 -2084,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,114.1163541,665.4794,949.9079,862.89546,912.9964,1,CMIP5 -2084,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,113.5326953,661.6596,944.4245,858.2423,908.114,1,CMIP5 -2084,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,114.2431957,666.3253,951.1466,863.9084333,914.0158,1,CMIP5 -2085,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,115.8752474,672.6319,960.6758,873.2122133,926.1566,1,CMIP5 -2085,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,115.3893162,668.7385,955.4323,868.5922,921.5459,1,CMIP5 -2085,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,115.9802561,673.4941,961.8604,874.2178733,927.1193,1,CMIP5 -2086,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,117.8151776,679.773,972.1195,883.6724467,938.5404,1,CMIP5 -2086,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,117.2278616,676.0031,966.6704,879.0334933,933.5036,1,CMIP5 -2086,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,117.9423841,680.6078,973.3505,884.6821867,939.6569,1,CMIP5 -2087,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,119.8076825,686.9411,983.5407,894.3613267,949.7239,1,CMIP5 -2087,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,119.2555655,683.0345,978.0716,889.6164067,944.3538,1,CMIP5 -2087,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,119.9271424,687.8062,984.7762,895.39444,950.9142,1,CMIP5 -2088,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,121.579103,694.0475,994.5426,904.6590733,960.3033,1,CMIP5 -2088,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,121.0672217,690.1664,989.0506,900.0051533,955.1208,1,CMIP5 -2088,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,121.6898525,694.9071,995.7832,905.6727333,961.4521,1,CMIP5 -2089,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,123.3606368,701.5208,1005.9824,915.17672,971.1628,1,CMIP5 -2089,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,122.9873467,697.4187,1000.674,910.5361467,965.9239,1,CMIP5 -2089,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,123.440671,702.4293,1007.1816,916.1877,972.3241,1,CMIP5 -2090,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,124.9629403,709.2044,1017.0815,925.7028133,982.2942,1,CMIP5 -2090,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,124.5893034,705.1622,1011.7398,921.1063867,977.1604,1,CMIP5 -2090,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,125.04322,710.0996,1018.2882,926.7042533,983.4322,1,CMIP5 -2091,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,126.9027002,716.5251,1028.6499,936.43778,993.3028,1,CMIP5 -2091,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,126.4063035,712.6354,1023.1716,931.7755733,988.0673,1,CMIP5 -2091,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,127.0098154,717.3865,1029.8875,937.4532867,994.4632,1,CMIP5 -2092,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,129.1497429,723.3718,1040.1685,947.14268,1004.4194,1,CMIP5 -2092,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,128.5445222,719.6788,1034.5413,942.53034,999.2026,1,CMIP5 -2092,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,129.280908,724.1897,1041.4397,948.1477733,1005.5758,1,CMIP5 -2093,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,131.3357533,730.4244,1051.6808,957.8784333,1015.2414,1,CMIP5 -2093,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,130.7082244,726.6489,1045.9936,953.16026,1010.0228,1,CMIP5 -2093,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,131.4709657,731.2606,1052.9656,958.90602,1016.3981,1,CMIP5 -2094,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,133.4141635,737.876,1063.2268,968.8939533,1025.9037,1,CMIP5 -2094,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,132.8576714,733.9935,1057.4381,964.15002,1020.8533,1,CMIP5 -2094,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,133.5337487,738.7358,1064.5345,969.92708,1027.0232,1,CMIP5 -2095,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,135.4759692,744.9179,1074.5491,979.56646,1036.1827,1,CMIP5 -2095,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,134.9653272,740.9629,1068.8781,974.8068467,1031.159,1,CMIP5 -2095,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,135.5848299,745.7938,1075.8303,980.6026267,1037.2963,1,CMIP5 -2096,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,137.8795672,751.7006,1086.2766,990.4638333,1047.1569,1,CMIP5 -2096,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,137.2618372,747.937,1080.5544,985.7078867,1041.9684,1,CMIP5 -2096,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,138.0120074,752.534,1087.5693,991.4993067,1048.307,1,CMIP5 -2097,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,139.9261578,759.2861,1097.7172,1001.484687,1058.614,1,CMIP5 -2097,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,139.4685882,755.2962,1092.3418,996.7500067,1053.2393,1,CMIP5 -2097,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,140.022888,760.1697,1098.9316,1002.515593,1059.8053,1,CMIP5 -2098,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,142.1941943,766.483,1109.7597,1012.604893,1069.6394,1,CMIP5 -2098,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,141.672035,762.5579,1104.0484,1007.825167,1064.2464,1,CMIP5 -2098,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,142.3056622,767.3522,1111.0499,1013.646213,1070.8348,1,CMIP5 -2099,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,144.4111956,773.7771,1122.1158,1023.77142,1080.7588,1,CMIP5 -2099,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,143.8277029,770.0872,1116.4512,1019.048093,1075.3511,1,CMIP5 -2099,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,144.5364872,774.5943,1123.3955,1024.800253,1081.9574,1,CMIP5 -2100,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,146.3363934,781.3091,1133.2752,1034.577613,1091.2787,1,CMIP5 -2100,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,145.8858279,777.4871,1127.9533,1029.98664,1086.1747,1,CMIP5 -2100,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,146.4313877,782.1556,1134.4775,1035.577233,1092.4101,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/hist/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/hist/ensemble_mean_model.csv deleted file mode 100644 index eded35183..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/hist/ensemble_mean_model.csv +++ /dev/null @@ -1,4204 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.437009890277368 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.50394295263464 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",0.550668266141747 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.562809221705423 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.626484821776531 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.527967784148981 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.477351807075592 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",0.811527557747509 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.601967281016331 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.559575237009489 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.553699329756677 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.644667041529658 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.604986765910625 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.650278399027112 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.67342591568111 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.592762891766912 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.521316476120684 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.534547378810758 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.48793774579369 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.566780242660081 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.528592821630678 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.620339242385039 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.707943522566866 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.625737487393003 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.728290803004416 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",0.691461187062664 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.81191797940139 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.79168488542541 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.827476471730067 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",0.955634553961937 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",0.967683466700284 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",1.03302768313878 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",1.1552463619079 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",1.23112107793666 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",1.7924046297843 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",1.36620259481085 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",1.19336116248207 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",1.19235786900689 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",1.02046269028067 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.977919909472922 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",1.16698915888455 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",1.13343221230446 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",1.04234828645984 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",1.08710297641615 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.986992770858898 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",1.08907034511921 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",1.01255906624628 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",1.02713608858704 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",1.08763858562234 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.928858949245111 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.928920044337866 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.979481062506852 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",1.12753368119196 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",1.67226233043832 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",1.32859288257557 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",1.1948462267804 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",1.154456447713 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",1.25432974304158 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",1.19961180408984 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",1.16902354543608 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",1.12985769583387 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",1.18988530524862 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",1.31389612452463 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",1.29286004360465 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",1.26171333845239 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",1.23037598459584 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",1.2067336243696 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",1.22504342348236 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",1.22336200115666 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",1.22785913356509 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",1.34154168067578 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",1.175749608246 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",1.19358553354324 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",1.23716228876795 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",1.26040131466569 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",1.37366249238991 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",1.29475228401898 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",1.41661410341661 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",1.34259086216823 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",1.40840825876617 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",1.36266003987788 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",1.36129353741021 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",1.4038065443649 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",1.41348480742983 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",1.32081203566644 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",1.49786646820372 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",1.44112294679679 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",1.36221455260328 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",1.40713908158163 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",1.27795742977392 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",1.24374316402556 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",1.23171511432762 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",1.16083456196409 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",1.19151609068084 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",1.0467614864832 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",1.11089100441813 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",1.16298548273621 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",1.04634086411098 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",1.16098967413408 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",1.08989056674877 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",1.17262266001825 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",1.13464701752434 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",1.15873721278421 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",1.27722119388759 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",1.35834880729753 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.36305510369165 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",1.38840417801124 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",1.48758552472597 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",1.54297614999593 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",1.60760237903869 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",1.5863555867464 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",1.59641050506003 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",1.67391429905992 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",1.90829268306439 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",2.00813913923868 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",1.85741407712939 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",1.84735286255292 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.83372465500637 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",1.85585975393989 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",2.04214429435952 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.89412929317693 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",2.04640547698615 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",2.18182955324505 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",2.21804000110266 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",2.23546837677679 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",2.41248033621901 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",2.41124509482399 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",2.4609807689801 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",2.46945191040013 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",2.59594383073994 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",2.6357122006805 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",2.47606512070246 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",2.68787460393576 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",2.95952152810296 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",2.8179009687683 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",2.78478742849458 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",2.75426442687002 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",2.94029231454192 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",2.9979714179195 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",2.92921676135122 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",2.83582130667405 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",3.07624623732577 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",3.37406800669072 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",3.02230433944744 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",2.9907750029326 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",2.99473844702859 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",3.12845186069033 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",3.20110326365507 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",3.14785182036212 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",3.24829322001609 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",3.26988726721113 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",3.28391672811796 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",3.29911366555711 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",3.37768622349402 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",3.42972697014537 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",3.45422903703928 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2006,"Simulated","PgC/yr","global",3.54387181235094 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2007,"Simulated","PgC/yr","global",3.54509424778765 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2008,"Simulated","PgC/yr","global",3.76408627288636 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2009,"Simulated","PgC/yr","global",3.82843407905226 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2010,"Simulated","PgC/yr","global",3.90234633532864 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2011,"Simulated","PgC/yr","global",3.89553996848851 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2012,"Simulated","PgC/yr","global",3.90785396456381 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",0.77838409164321 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",0.75986870365316 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",0.728818142657338 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",0.777827843046206 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.778842395194635 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.779791461927234 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",0.746003346343408 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.789300246255869 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.764841066005616 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.731114661462068 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.723904000047774 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.789747698477581 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.719713688309731 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.73515899922563 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.764657065197447 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.745450589043789 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.724147919067834 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.719727936577441 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.700916920622264 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.702050837397531 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.699099464434496 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.720323816117743 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.764794358108158 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.709939754098555 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.744296101921763 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.732170448663405 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.770063669457183 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.749627879186177 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.779356559504233 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.840799902196518 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.825362611828668 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.845339721110694 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.919354942610995 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.907979257774857 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.923242549429752 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.890267056902312 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.911626531230328 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.923014294068233 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.90876376173338 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.865939319280664 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.880939820037738 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.862005098923838 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.906128398363451 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.910437508571999 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.93764264139586 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.940830762065407 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.929715320423593 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.936168842102118 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.924910445986265 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.874430248882263 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.840856423470412 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.877246970997474 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.936573549520702 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.912152584822915 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.872744612760654 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.898407724452667 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.956146800618643 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.952834125555874 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.939649665595739 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.921759880353461 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.89912353477614 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.945953722002396 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.988948766230072 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.957777236497802 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.937871085476156 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.936298303183559 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",0.966638715419237 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.955217266279528 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.949820381036838 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.983381751009367 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.995181203860627 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.940475121529002 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.903190330074237 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.979059807923941 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.945810767528356 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.995931927157957 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.962956906427462 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.973153476341095 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.914682926193104 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.907152575169539 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.926762720788503 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.958649305969135 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.997700788260491 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.965196149083189 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.946560735950577 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",1.0565319799925 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.994241573066909 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.976459263168479 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.994940493059783 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.936344067487129 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.950585163883103 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.953153815165145 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.889360357535287 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.9097885046958 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.912214107144416 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.934425741112728 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.926082483954609 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.907874235775117 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.92278481203466 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.900140162831123 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.898173430090265 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.906502627699451 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.909104210408188 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.941963074731065 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.992028090524327 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.988429034716533 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.994596553087592 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.998360171669459 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",1.01377613681544 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",1.03637379504335 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",1.02512945847643 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",1.01737264491973 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",1.04858408867347 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",1.05147233520539 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",1.07841316738121 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",1.06401260361816 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",1.08114572092161 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",1.08812491875517 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",1.07731595640819 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",1.12381890527407 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",1.08839233326304 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",1.12332691542084 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",1.14373628506298 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",1.15868130249944 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",1.16474917735592 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",1.19948994532912 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",1.2329665805705 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",1.25104225380872 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",1.2516593642115 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",1.24256142066173 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",1.25055309473716 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",1.21577326197699 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",1.26209268183165 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",1.27678330635589 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",1.30851589701399 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",1.25358467318068 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",1.28483631403404 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",1.31917407305765 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",1.31909584912434 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",1.27160108872273 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",1.32603664268665 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",1.34829564506814 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",1.33382704818576 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",1.35245406333277 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",1.36565286592 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",1.39369902397628 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",1.43006522678103 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",1.43309340828655 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",1.39217445933136 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",1.41564711217166 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",1.42494877764187 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",1.43624604982591 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",1.45241556905088 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",1.47619054937292 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",1.50410243401892 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",1.45422679751899 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2006,"Simulated","PgC/yr","HL",1.50791606307686 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2007,"Simulated","PgC/yr","HL",1.52151155253463 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2008,"Simulated","PgC/yr","HL",1.56988196806434 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2009,"Simulated","PgC/yr","HL",1.62113723318799 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2010,"Simulated","PgC/yr","HL",1.63070593572851 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2011,"Simulated","PgC/yr","HL",1.57675255824138 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2012,"Simulated","PgC/yr","HL",1.61866435668558 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",-0.330497405651074 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",-0.245519811457053 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",-0.168353806181275 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",-0.204495710615893 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",-0.141993516462491 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",-0.241174542237845 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",-0.25838774838704 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",0.0322458804734981 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",-0.152659540230535 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",-0.161732263480425 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",-0.160493226418028 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",-0.134597317554596 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",-0.105221165648157 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",-0.0752595085782537 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",-0.0812159590516741 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",-0.142749119210183 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",-0.193027377210632 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.175481350433843 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",-0.203443874450476 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",-0.125934054815255 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",-0.161111097865949 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",-0.0905114514128937 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",-0.0469281279480264 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",-0.0749051045713916 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",-0.00645645664200807 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",-0.0312474317673808 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",0.0515734320531633 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.0515146816907127 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.0579405816437578 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",0.125256949684766 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.152470477031395 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.197968218566295 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.246984793207338 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.333850603670615 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.878567923918698 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.485998801407391 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.292603421870359 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.280391814684766 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",0.122997691847124 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.122731646171708 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.296514563859854 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.281690550829581 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.147417655973976 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",0.187807331082221 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.0611887001424203 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.159847543419939 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.0944891707045744 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.102672776440193 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.174093144725397 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.0654461557535635 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.0985600182808725 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",0.113156369264427 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.202396562273795 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.769673011491878 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.465742883417008 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.307098237856248 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.209976017863249 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.312836544228182 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.271248613839489 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.258356431843658 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.241583326346195 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.255342620823711 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.336685036341094 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.346394658144927 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.334930695000628 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",0.305227634397505 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.251780537506815 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.281284402054475 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.284920678786632 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.256364778744579 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.358118992213722 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.246639213174621 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.301132590069806 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.269897346718679 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.325805853643618 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.389412608196202 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.343182362609493 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.454671409237168 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.438414785133289 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.511465168520955 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.446536530813229 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.41378184215811 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.417732645912926 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.459384658821667 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.385312512813119 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.453616046117427 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.458352135256706 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.397166637044177 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",0.423773444619039 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.352633502144319 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.304493035255767 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.289969054915313 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.282086904949464 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.292573071615833 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",0.14582744318794 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.187914022548601 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.248079378870193 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",0.149680594669404 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",0.249335510460899 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.200725031888297 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.285166247922743 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.239094781163979 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.26055772570229 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.346367426368073 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.377984178128476 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.38622078041563 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.40542845068603 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.500632499455234 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.540694659740149 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.582896183552464 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.572777645873619 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.590441494007521 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.637005328860688 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.867897240003035 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.940947228090716 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.804812325354964 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.777911590278965 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.757449281773363 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",0.790165758096446 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.930157119656882 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",0.817425381638045 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.934891495829551 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",1.04985101280612 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",1.0712486450022 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",1.08265594848176 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.22498054625191 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",1.19079091864548 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.22259526221063 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",1.23043568606678 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",1.36553745032648 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",1.3973292321365 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",1.27236054381071 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",1.43798715342342 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.69442616072103 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.52195414124062 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",1.54301089308161 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",1.48180483926978 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",1.63351746034356 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.69111530372228 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",1.66930660346237 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",1.52257607988619 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.74042853782659 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",2.05167720593088 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.68254080779104 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",1.63810337941015 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.61444467521302 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.71198889990281 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",1.78146023721194 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.76863934098035 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.84569692425426 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.85807376683424 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.86094276629243 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",1.86017983731832 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.91513004923134 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.93954992551375 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",2.0130867035738 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2006,"Simulated","PgC/yr","LL",2.04962691666712 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2007,"Simulated","PgC/yr","LL",2.03746133996886 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2008,"Simulated","PgC/yr","LL",2.20823225184033 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2009,"Simulated","PgC/yr","LL",2.22194389070835 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2010,"Simulated","PgC/yr","LL",2.28623284519334 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2011,"Simulated","PgC/yr","LL",2.33256156439893 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2012,"Simulated","PgC/yr","LL",2.30357992627132 -"CanESM2","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",-0.389169316302626 -"CanESM2","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.0636540728783858 -"CanESM2","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",-0.383692173315332 -"CanESM2","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.321743112089313 -"CanESM2","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.683665081460268 -"CanESM2","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",-0.311716790610791 -"CanESM2","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.24363782935209 -"CanESM2","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",0.93270389992513 -"CanESM2","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.0450082834571574 -"CanESM2","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.569518010645912 -"CanESM2","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.306810094222541 -"CanESM2","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.806137972018033 -"CanESM2","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.727383163154403 -"CanESM2","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",-0.00384445267106773 -"CanESM2","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",-0.0944173949752045 -"CanESM2","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",-0.0241780674838967 -"CanESM2","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",-0.095124422546612 -"CanESM2","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",-0.62275281545095 -"CanESM2","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",-0.0982913537353487 -"CanESM2","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.409046219549243 -"CanESM2","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.347761435265947 -"CanESM2","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.334235315499391 -"CanESM2","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.811712042574789 -"CanESM2","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.347546189215138 -"CanESM2","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.0317113361163332 -"CanESM2","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",-0.442166071453502 -"CanESM2","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.761210461535429 -"CanESM2","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.897420163428904 -"CanESM2","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.732637907504727 -"CanESM2","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",1.256980696452 -"CanESM2","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",1.19896268321043 -"CanESM2","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",1.22143624039146 -"CanESM2","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",1.25200724259293 -"CanESM2","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",1.15420930811986 -"CanESM2","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",1.41600389945249 -"CanESM2","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",1.92983191881775 -"CanESM2","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",1.17269586894077 -"CanESM2","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",1.53528414739108 -"CanESM2","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",1.31438721928236 -"CanESM2","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",1.42534734057961 -"CanESM2","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",1.12530134013442 -"CanESM2","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.862733422772875 -"CanESM2","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",0.673425748835582 -"CanESM2","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",0.651962228177426 -"CanESM2","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",1.19963143887533 -"CanESM2","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",0.976584835533506 -"CanESM2","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",1.03625612115933 -"CanESM2","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",1.23459094039649 -"CanESM2","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",1.08909673156635 -"CanESM2","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.952202003545622 -"CanESM2","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.748578080805925 -"CanESM2","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.613610629381334 -"CanESM2","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",1.11679773963107 -"CanESM2","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",2.03520667025468 -"CanESM2","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",0.804630135552377 -"CanESM2","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",1.46813301693524 -"CanESM2","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",1.16994118741662 -"CanESM2","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",1.73314495739027 -"CanESM2","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",1.20533367664578 -"CanESM2","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",1.2829508677947 -"CanESM2","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",0.873212144211932 -"CanESM2","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",0.76736743444096 -"CanESM2","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",1.5825761335136 -"CanESM2","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",1.09143002326754 -"CanESM2","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",1.57752353328056 -"CanESM2","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",1.1776791715322 -"CanESM2","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",1.25380276454119 -"CanESM2","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",1.39120202841372 -"CanESM2","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",1.40948693532575 -"CanESM2","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",1.62201535990897 -"CanESM2","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",1.48026500630212 -"CanESM2","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",1.60920394170346 -"CanESM2","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",1.79166443154006 -"CanESM2","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",1.93928625622543 -"CanESM2","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",1.29737665366348 -"CanESM2","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",1.847086679907 -"CanESM2","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",2.13880561949024 -"CanESM2","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",2.14455366946363 -"CanESM2","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",2.05801383876048 -"CanESM2","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",1.76044435108441 -"CanESM2","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",1.94320725493773 -"CanESM2","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",1.92368804784574 -"CanESM2","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",1.60356144251088 -"CanESM2","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",2.14731632801535 -"CanESM2","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",1.94406494137539 -"CanESM2","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",2.4151426885724 -"CanESM2","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",1.83490072305203 -"CanESM2","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",2.11639208832746 -"CanESM2","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",1.93183887656064 -"CanESM2","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",1.65871458874991 -"CanESM2","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",1.82338503705154 -"CanESM2","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",1.95683631846772 -"CanESM2","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",1.60210643714113 -"CanESM2","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.719980860379961 -"CanESM2","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",1.43310579980866 -"CanESM2","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",0.941188063665525 -"CanESM2","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",0.797608457316227 -"CanESM2","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",0.994503712748157 -"CanESM2","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.822487127522019 -"CanESM2","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",1.16639321501245 -"CanESM2","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.860687181511599 -"CanESM2","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",1.46662977060276 -"CanESM2","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",1.1727820342077 -"CanESM2","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",2.04784916710293 -"CanESM2","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",2.04189110739569 -"CanESM2","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.68344511218467 -"CanESM2","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",1.48188623688294 -"CanESM2","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",1.3867236627537 -"CanESM2","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",1.66609545604807 -"CanESM2","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",1.46889099052845 -"CanESM2","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",2.44521630527999 -"CanESM2","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",2.6542781543352 -"CanESM2","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",2.34207868671068 -"CanESM2","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",3.09887288307714 -"CanESM2","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",3.91844472655424 -"CanESM2","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",3.81635659959912 -"CanESM2","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",2.479010826545 -"CanESM2","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",2.98301569353021 -"CanESM2","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",3.02123033478476 -"CanESM2","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",3.75659796774978 -"CanESM2","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",3.7994807298785 -"CanESM2","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",3.50596778353658 -"CanESM2","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",3.91580228047086 -"CanESM2","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",4.6311616120566 -"CanESM2","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",3.91467168164912 -"CanESM2","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",4.19485095958481 -"CanESM2","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",4.24659312438451 -"CanESM2","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",3.96351827457484 -"CanESM2","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",4.1086651930377 -"CanESM2","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",5.7173388629485 -"CanESM2","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",5.37822806842288 -"CanESM2","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",5.52189366623795 -"CanESM2","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",5.00349472095438 -"CanESM2","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",5.25164199963532 -"CanESM2","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",5.06886868999465 -"CanESM2","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",5.59035394278314 -"CanESM2","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",5.32643688278346 -"CanESM2","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",5.48081286561326 -"CanESM2","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",6.22023229380386 -"CanESM2","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",5.60234978790876 -"CanESM2","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",5.64587806536791 -"CanESM2","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",5.48717554778805 -"CanESM2","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",6.41357427366805 -"CanESM2","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",4.67502880177587 -"CanESM2","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",5.19904197014037 -"CanESM2","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",6.03796077930442 -"CanESM2","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",5.54939524861377 -"CanESM2","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",5.97179044444055 -"CanESM2","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",5.99180008275184 -"CanESM2","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",6.565031288314 -"CanESM2","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",6.40850083957812 -"CanESM2","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",5.94871410696024 -"CanESM2","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",6.58758221152122 -"CanESM2","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",6.51819700085915 -"CanESM2","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",6.73329242399697 -"CanESM2","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",7.13502689563207 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",-2.03283652388139 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",-1.89037538956591 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",-1.94640080657124 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",-1.91448357272814 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",-1.6443351577624 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",-1.65938963114803 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",-2.03499456550016 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",-1.74167712617173 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",-1.73546142756227 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",-1.58546035087329 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",-1.54833561252446 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",-1.52656192402427 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",-1.48160454820874 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",-1.7457473893208 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",-1.78451076238893 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",-1.78045575932631 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",-1.72292430448343 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",-1.93671197863085 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",-1.8573784050832 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",-1.80465964976995 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",-1.66949874177409 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",-1.62683701374832 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",-1.50009801477537 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",-1.55115046816909 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",-1.82529725800702 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",-1.85812631519043 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",-1.81358510847205 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",-1.62996208041148 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",-1.66715525693069 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",-1.52982867727283 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",-1.67013608260266 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",-1.57668818969195 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",-1.57982559712068 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",-1.72290529572355 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",-1.72351895024399 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",-1.63207331337373 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",-1.53374033504498 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",-1.56594462438411 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",-1.56990481586604 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",-1.34827033891079 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",-1.51891715149158 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",-1.62375669894743 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",-1.71180471074066 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",-1.46507163783759 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",-1.43535507433306 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",-1.44592069376309 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",-1.44334907062705 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",-1.42423083621615 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",-1.36385553156435 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",-1.35809733698189 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",-1.7442728337051 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",-1.64374757808535 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",-1.46329337332716 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",-1.56950165101649 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",-1.60770066627827 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",-1.52398741474144 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",-1.77019155977804 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",-1.66421025928781 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",-1.51424063164659 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",-1.66436040526897 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",-1.73608340878206 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",-1.86187001248918 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",-1.68461521755451 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",-1.58311875695365 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",-1.5678761864153 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",-1.66218080048454 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",-1.74326115632076 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",-1.59165266174155 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",-1.61285631966412 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",-1.49085089998989 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",-1.36867138263358 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",-1.36471702979343 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",-1.3339017400635 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",-1.13218346734481 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",-1.36971961787723 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",-1.42094281836884 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",-1.35664703163402 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",-1.31824754527985 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",-1.34163060894225 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",-1.46912952704699 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",-1.3283855505479 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",-1.32320448580067 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",-1.39018545061928 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",-1.29634855820016 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",-1.21671953610893 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",-1.29992310075787 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",-1.35144291088659 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",-1.45398445519151 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",-1.40672605738187 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",-1.29330330842402 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",-1.40381685459397 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",-1.35153652819964 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",-1.41600176824241 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",-1.52292518002717 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",-1.50368861359797 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",-1.47520785170418 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",-1.60324717591434 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",-1.58724926427015 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",-1.54210180085585 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",-1.61524767473528 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",-1.59137864366722 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",-1.2830242137044 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",-1.40446802902266 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",-1.26821048476978 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",-1.36665917436284 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",-1.39175146723146 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",-1.51530213653064 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",-1.57862648606565 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",-1.70702714258399 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",-1.79300840788443 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",-1.53415103041547 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",-1.48232966770858 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",-1.52823512615681 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",-1.28887104948475 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",-1.07172310429803 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",-1.0697803625948 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",-1.3149316943618 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",-1.53404921909947 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",-1.43221225952586 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",-1.43208215070171 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",-1.29759842562973 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",-0.95276489167189 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",-1.04534654245708 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",-1.13306039153086 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",-1.11894693469442 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",-1.03170531894849 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",-1.11034751105703 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",-1.13789803798445 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",-0.889419509756845 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",-0.79532727628226 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",-0.828005988439898 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",-0.87282821296792 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",-1.08248932751686 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",-1.00295491796171 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",-1.06014305403327 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",-0.993865811419338 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",-0.839429324251496 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",-1.10151165560175 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",-0.883181584499708 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",-0.877130927042758 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",-1.0490268772229 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",-0.989487792135213 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",-0.88090690274179 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",-0.994333101806135 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",-0.935091588404488 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",-0.866353126062676 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",-0.620963272509423 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",-0.707220314111538 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",-0.721715571676474 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",-0.749844887144181 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",-0.570620247265753 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",-0.699013031569929 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",-0.644801849752756 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",-0.745523131135365 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",-0.692285765101051 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",-0.57615312335417 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",1.6436672980597 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",1.95402933899683 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",1.562708671979 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",2.23622635910183 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",2.3280005801375 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",1.34767274290044 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",2.27863276692815 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",2.67438127616849 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",1.78046984134835 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",2.15497797568758 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",1.85514578721787 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",2.33269986539607 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",2.20898761084249 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",1.74190323450796 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",1.69009313567126 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",1.75627776760172 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",1.62779968034224 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",1.31395913093976 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",1.75908685122812 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",2.21370642983453 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",2.01725984458869 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",1.96107229297591 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",2.31180977016212 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",1.89869690975505 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",1.85700907781335 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",1.41595983039025 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",2.57479564787202 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",2.52738215624906 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",2.39979330901738 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",2.78680929115751 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",2.86909884153046 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",2.79812444332941 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",2.8318328399729 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",2.87711487887294 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",3.13952327873416 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",3.5619049904963 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",2.70643632243931 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",3.10122862697916 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",2.88429210356363 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",2.77361757303729 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",2.64421872626939 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",2.48649012481593 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",2.38523081589216 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",2.11703398289553 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",2.63498666660648 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",2.42250535160511 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",2.47960529925401 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",2.65882161439685 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",2.45295218370294 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",2.31029941430436 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",2.49285087737719 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",2.25735819851106 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",2.58009099647324 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",3.60470833137263 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",2.41233100739739 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",2.99212039844041 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",2.9401331684672 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",3.39735509552666 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",2.71957437020448 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",2.94731153104528 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",2.60929544519286 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",2.62923768023382 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",3.26719120913921 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",2.67454892491011 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",3.14539970849412 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",2.83985987689345 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",2.99706413983919 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",2.98285477109959 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",3.02234344601889 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",3.11286637022515 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",2.8489364252802 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",2.97392102757985 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",3.12556614169858 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",3.0714694581586 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",2.66709614182397 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",3.2680294528473 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",3.49545274641731 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",3.46280125750803 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",3.39964452494841 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",3.229573979675 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",3.2715927471983 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",3.24689262569836 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",2.99374681881159 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",3.44366464673675 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",3.16078432525613 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",3.71506558096602 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",3.18634336208502 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",3.5703763724413 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",3.33856481616504 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",2.95201764362817 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",3.22720167412193 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",3.3083726811939 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",3.01810841881402 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",2.2429061373567 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",2.93679441722715 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",2.4163958445788 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",2.40085552689273 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",2.5817528810013 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",2.36458896975636 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",2.78164081699988 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",2.45206614872461 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",2.74965385432435 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",2.57725007096481 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",3.31605967943377 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",3.40855057987507 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",3.07519679794116 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",2.99718835921222 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",2.96535045978433 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",3.3731224560947 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",3.26189984314383 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",3.97936723579057 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",4.13660810078057 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",3.87031419479006 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",4.38774382959899 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",4.99016777309871 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",4.88613698772666 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",3.79394279671459 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",4.51706473108091 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",4.45344260258018 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",5.18867981359905 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",5.09707931003772 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",4.45873264104027 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",4.961148989671 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",5.76422211583091 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",5.03361857189799 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",5.22655629173949 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",5.35694054898414 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",5.10141674710737 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",4.99808462459066 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",6.51266602715392 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",6.20623409184219 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",6.39472191341067 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",6.08598385966219 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",6.25459658154553 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",6.12901174364947 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",6.58421979968262 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",6.16586601962099 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",6.58232464824032 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",7.10341391853231 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",6.47948030011665 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",6.69490495049124 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",6.47666327024334 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",7.29448133080611 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",5.6693619442029 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",6.13413375407214 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",6.90431359025312 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",6.170358588671 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",6.67901093947585 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",6.71351547799414 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",7.31487625537902 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",6.97912134141157 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",6.6477273808531 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",7.23238397140336 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",7.26372025214168 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",7.42557828485054 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",7.7111798640161 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.15469827975398 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.133202154376993 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",-0.132638516872142 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",-0.133215821077454 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.0992188672889159 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.186116771333266 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",-0.0838252539464229 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",-0.195575608611592 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",-0.0726538310443946 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.0405174960233871 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.100143670131287 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.115988717367846 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.211245050136142 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.0659646303369383 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.0117257898284004 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.113404697367073 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.0162386140430883 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.0581581882557008 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.0298358421102179 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.0283883676976273 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",-0.0535607557762414 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.256706759774273 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.141739969933409 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",-0.0794083813578893 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.221502136610569 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",0.251205685060323 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.290765202325969 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.398449576936944 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.381816405251542 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",0.346855049356047 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",0.242451138412428 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",0.409832343972687 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",0.474568087381993 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",0.403492475517934 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",0.792522506940378 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",0.522698334174332 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",0.393708712436145 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",0.404479894626252 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",0.196369643908384 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.261162445792116 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",0.462525104824807 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.534252162744181 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",0.423447908196268 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",0.266334950249146 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.182541334714291 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",-0.0665728896187955 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",0.0587223154839855 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",0.165522762075885 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",0.260497902482193 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.273042339057133 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.358861359600329 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.297826558675899 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",0.381740896731495 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",0.751541994494285 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",0.600737813258366 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",0.495207196750896 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",0.134000745240606 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",0.405851461906697 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",0.418926166459529 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",0.378260215902383 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",0.504057865858701 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",0.623967104032166 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",0.637758627024185 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",0.342736475282912 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",0.377463333376328 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",0.417059978511561 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",0.44044768912154 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",0.442997098203395 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",0.454124753497196 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",0.395372063771436 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",0.374486726015892 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",0.205823014506525 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",0.334214148653685 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",0.621450267253077 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",0.823381574914122 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",0.590520246326105 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",0.554033231102464 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",0.547123802905994 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",0.619788396477002 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",0.624970923181037 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",0.55961607824084 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",0.657708137465652 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",0.653735797087451 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",0.733463569235118 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",0.609449879245661 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",0.693685840318775 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",0.59562225338659 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",0.501253345034904 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",0.425803250131575 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",0.64447239362572 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",0.679140940463836 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",0.612038010645489 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",0.418949855406995 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.499086034120109 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",0.23068502042875 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",0.37943088268605 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",0.545057739463781 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",0.345791324503488 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.358485867005159 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",0.587593750200693 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.623411210990909 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",0.619042877966847 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",0.445527373904605 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",0.476786534534348 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",0.553610246723192 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",0.643807622537456 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",0.500760774372451 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",0.64873070971107 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",0.554297453978047 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",0.596296591165177 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",0.795703089805197 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",0.752661411151222 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",0.642657455804481 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",0.870502535877405 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",1.01077390495709 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",1.08970525013539 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",0.901557834891937 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",0.919912783057101 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",0.819451487418179 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",1.10806179274894 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.07222371801886 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",1.16202601230063 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",1.148809174063 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",0.984986207856968 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",1.22737334055557 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",1.17304934511424 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",1.35571049123591 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",1.36169081157936 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",1.44535037956053 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",1.41175421315193 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",1.59213985364682 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",1.66600495296416 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",1.76241213580046 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",1.85382641740162 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",1.61706677639623 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",1.5083345075274 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",1.50079162776455 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",1.52855780753477 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",1.69211062862835 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",1.64993291322186 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",1.53391173744042 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",1.69287254717906 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",1.86264713365758 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",1.87810872744595 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",1.63035422591957 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",1.78008659617183 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",1.802813180147 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",1.639524581929 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",1.8608864070815 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",1.93483122881821 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",1.84931982292456 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",1.89842313878973 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",2.07891355732148 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",1.96631475111385 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",2.11887271168645 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",2.0509754049038 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",0.254425556954494 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",0.309980186805117 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",0.203772515927696 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",0.237747222450429 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.29483707654575 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.318546438600992 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",0.24444915183166 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.2150297493469 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.3194027064351 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.33407258918122 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.311382172235406 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.301342636077903 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.338378602206282 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.315013823291753 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.273541498120641 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.36881524815533 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.255233498066645 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.286065095852531 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.264228734602144 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.333326077458598 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.249271614156506 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.323719609989053 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.312438043044357 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.232746938208522 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.336273497004423 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.37706193099404 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.360210028685764 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.34810248319044 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.336968789208351 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.34725353243043 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.325476218266378 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.371330109506738 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.337478261763065 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.317305258636368 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.375221942104888 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.367026138455844 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.324968447356804 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.366183994276392 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.287033672265834 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.351515643010897 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.280370029900238 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.373606740538641 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.353339296106712 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.320182400237939 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.360893409373717 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.30951733932722 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.381204245756699 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.328095560629341 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.368497721172332 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.32500979733369 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.401166074721605 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.320695105918417 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.352260282923866 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.399198802776031 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.403465677962888 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.348567032313475 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.371887398289867 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.377446502795527 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.377411108576629 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.362281100984836 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.396634423551069 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.459653660134368 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.434353259873858 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.370533399252506 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.438464604694981 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.44193493979212 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",0.355305206736174 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.379518766246197 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.373620523864269 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.388754955733425 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.395433232247219 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.4127712945718 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.352591593232493 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.453885253276571 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.462935793279098 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.372639525441449 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.423249855175249 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.412566416497026 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.438937832208227 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.399824497693761 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.388657111137914 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.476339311712532 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.418961028766095 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.4326194536414 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.40745926894037 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",0.466604029705941 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.423037830190889 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.425317354019529 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.452535848681086 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.447297504284188 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.394874752312493 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.443790753981068 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.336222617814757 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.399424781250534 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.376266752220434 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.366817516761762 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.458927738317932 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.386953253859908 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.415437091847067 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.432439930079201 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.407607312067491 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.415256717462298 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.425753485668738 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.445278672490893 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.420020302865324 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.434422686995542 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.396308728671402 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.381190122102042 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",0.411239643781894 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",0.430821155058161 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",0.465141125379663 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",0.443005104420241 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.44527288689742 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",0.497009535548939 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",0.441642937486212 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.527858319950732 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.412340097693495 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",0.543268758661486 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.468885425344233 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",0.491949013069101 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.519200689810875 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.479679981450055 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.478210951201275 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.576057588686623 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.572726958655423 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.540176699278819 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.593758441754909 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.614446192536251 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.621587997185997 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",0.566820548376826 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.607838364131224 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",0.607367008427631 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",0.578451973562167 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.642577109321514 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.605498602064653 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.582258723903351 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.611107734937409 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.625994917767821 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",0.672374447191718 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.674388344214109 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.664855047485555 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.666792030147649 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.618319307037868 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.669382274378729 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.649801613925031 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.703690843677797 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.739241613928573 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.655138483575496 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.690128731917378 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.742216259796626 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.703070594024513 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.734991074535053 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.760033845721469 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.695758624860834 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.772024658360236 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.748926186910012 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",-0.099727267530453 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",-0.176777890861139 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",-0.336410957274927 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",-0.370963034365717 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",-0.195618181638464 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",-0.132429753795156 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",-0.328274423850914 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",-0.41060528848247 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",-0.392056584589685 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",-0.29355514444693 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",-0.211238423232365 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",-0.185354032684501 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",-0.127133431622913 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",-0.249049201721506 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",-0.261815669882961 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",-0.255410542567713 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",-0.238994879077149 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.227906924519822 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",-0.234392843682812 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",-0.304937785815809 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",-0.302832354138536 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",-0.0670128949831141 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",-0.170698062136684 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",-0.312155384626284 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",-0.114771407063769 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",-0.125856261694085 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",-0.0694447780365366 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.0503471545681515 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.0448475934312026 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",-0.000398467136777204 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",-0.0830250545367431 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.0385022268963778 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.137089719075525 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.0861872319577674 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.41730064646419 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.155672134674562 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.0687402711867636 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.0382958686301163 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",-0.0906640399881026 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",-0.09035323355609 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.182155101753844 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.160645483201271 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.0701086080315527 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",-0.0538474080916195 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",-0.178352072546778 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",-0.376090313643102 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",-0.322481919611358 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",-0.162572862820808 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",-0.107999810252105 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",-0.0519673604826427 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",-0.0423047039289447 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",-0.0228684812454325 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.0294807030596069 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.352343129024382 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.197272089571936 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.146640109835039 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",-0.237886655170459 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.02840502838654 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.0415150653336124 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.0159790193964194 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.107423514446082 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.16431337496517 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.203405295164624 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",-0.0277969486413754 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",-0.0610012162165571 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",-0.024874957440128 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.0851424984311862 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.0634783194552631 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.0805042907635314 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.00661714972939579 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",-0.0209465943090694 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",-0.206948317993582 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",-0.0183773457399401 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.167565004655026 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.360445756996703 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.217880791836728 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.130783498806495 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.134557369325107 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.180850613718225 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.225146342643166 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.170958940369264 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.181368785892778 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.234774715941569 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.300844235324113 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.201990662847369 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.22708176269839 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.172584367723316 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.0759359670754471 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",-0.0267326468255327 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.197174829361943 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.28426621315631 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.168247182343043 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.0827271806127326 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.0996612003360157 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",-0.145581775378694 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.01261330270526 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.0861299995553135 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",-0.0411619545851617 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",-0.0569512196993762 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.15515386562729 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.215803937611594 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.203786198696189 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.0197739016078076 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.031507822830746 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.133589998352012 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.209384957497513 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.10445204065991 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.267540556964574 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.14305775668212 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.165475460103689 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.330561976240126 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.309656165345804 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.197384461926111 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.373493059170876 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.56913100284404 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.561846852475531 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.489217693790749 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.37664403810557 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",0.350565998992194 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.616112818524636 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",0.553023007109389 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.682345955929768 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",0.670598395027978 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",0.408928615460006 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",0.654646267498385 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",0.632873252022535 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",0.761951984718022 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",0.747244574756354 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",0.823761816895586 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",0.84493373714932 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",0.984301418214864 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",1.05863766795591 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",1.18395996722223 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.21124901219728 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.01156915119171 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",0.926075392281005 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",0.889683702254197 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",0.90256331775158 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.0197364901404 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",0.975544124406754 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",0.869056884790931 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.02607971578813 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",1.2443281395939 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.20872644659149 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",0.980552443985064 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.07639540609711 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.0635713955405 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",0.984385697480495 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.17075718433387 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.19261554467527 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.14624935512465 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.16343263804149 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",1.31887944677139 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.27055642829463 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.34684756950745 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",1.30204974927932 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",1.81011101533753 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.0671641255991246 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.0812941733451996 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.10460741140874 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.136592358236872 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.0974358481614761 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.123031419297665 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.0904440176065496 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.0950594655793547 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.125379723935475 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.101647841144605 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.120662298600811 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.0894760261421109 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.101366341613073 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.181056093300019 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.187469698361822 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",0.139832180490827 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.223018468244834 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.287081661509578 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.261216292049267 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",0.323456881911316 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",0.366478564245997 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",0.392000401080454 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",0.391128704241914 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",0.45122815477516 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",0.769788366668439 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",0.608611687727336 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",0.527817377744161 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",0.481911374384679 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",0.443486837393385 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.405769340080841 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",0.473268937443471 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.510620129907365 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",0.385832316355476 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",0.287379395136293 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.282156126036523 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",0.274716998115188 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",0.201292162405517 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",0.314672766427883 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",0.345255219524852 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.301125610072665 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.350577980076159 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.387537641664138 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",0.392108116216878 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",0.533771132968389 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",0.550145003275235 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",0.440055524366456 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",0.406825370380437 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",0.495614702781424 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",0.494670630177383 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",0.491536456818892 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",0.472044603676509 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",0.428149756807157 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",0.486034109886207 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",0.478772752072289 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",0.474325930918654 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",0.421364574657005 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",0.418801633219569 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",0.427577447046755 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",0.486799857410231 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",0.570516350391858 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",0.509097234641338 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",0.548553057492756 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",0.515347303954929 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",0.507903722493145 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",0.493730708401466 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",0.517584714976879 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",0.646033719462342 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",0.715828128525327 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",0.713380240704974 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",0.690603500157563 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",0.674567199961036 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",0.712539548947218 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",0.748813475383109 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",0.728793618557304 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",0.733363450992987 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",0.732592016146452 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",0.635744137604448 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",0.627534533425615 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",0.642845585338255 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",0.544197898549104 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",0.541236821603159 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",0.453203604970332 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",0.436352595824133 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.498856224352307 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",0.480180891847009 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",0.51316467927765 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",0.516186229890776 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",0.510378418700656 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.574674792188343 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",0.552584360111822 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.644965787064428 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",0.65386591934053 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",0.677889651213938 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",0.684001321368848 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",0.683876337870123 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",0.665955378243828 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",0.805023760494555 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",0.773567202620079 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",0.773200691376662 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",0.833500505364653 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",0.890681465072529 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",0.971992518757865 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",0.97688116231268 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",0.94564868035858 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",1.13529699016607 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",1.14515426671489 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",1.19534204421143 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.19629430380796 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",1.20349768762467 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",1.24714405812546 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.32088638632102 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",1.27925243361172 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",1.22544066210545 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",1.31540293597603 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",1.36869429453982 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",1.41000329015242 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",1.40722223531015 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",1.42127794837504 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",1.45083459653963 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",1.57190232785065 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",1.57653084519886 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",1.56039192093686 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",1.66430457774213 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",1.73517595470734 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",1.78835104421819 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",1.77246139897108 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",1.80307639364322 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",1.9148487925619 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",1.93389696575018 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",1.90653406464763 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",1.75915352295085 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",1.81318446276857 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",2.02310651789991 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",1.96453649846703 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",1.99303869869191 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",1.99535009077201 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",2.01953864033447 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",2.02619877018764 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",2.03949907839969 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",2.01651014109747 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",2.00491924022395 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",2.03007394663068 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",2.05073979614926 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",2.10150350678103 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",2.26098634972225 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",1.98369887676057 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.891107240852226 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.298035995822872 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.322790955513609 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.309993801299603 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.319933113622256 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.315321080144036 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.3010141880319 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.261519183346551 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.303925005715261 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.276959461493838 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.270165135733526 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.28889067081341 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.292575194886864 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.289594801367677 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.357532682000085 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.36263311763705 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.332276437073117 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.325708665823859 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.370142905285887 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.367551133227284 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.387068526484304 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.355822444442283 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.376666397722616 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.387742957394959 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.346352299879779 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.405171451659885 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.393541677483804 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.400758582620421 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.375586023566524 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.396127603440019 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.395289229053143 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.399709604199376 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.40428659715032 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.415849574193562 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.340280545157192 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.365095517615034 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.357541234631356 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.364091178877036 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.348638306348678 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.386258408258969 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.395664606565724 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.418259972729936 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.406945671560487 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.380660296090951 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.410855559272286 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.403632699772126 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.391699216968292 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.376139382418468 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.419085824909846 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.400936203089266 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.361404317437001 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.371234430340978 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.364555474885195 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.35782303841868 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.357745595605568 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.387189670717119 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.341597542111783 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",0.391770452808499 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.409359859237297 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.404443323216186 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.447550244826815 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.417771137526568 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.398832291883632 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.42409889379446 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.407263634573691 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.437266770291368 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.405239042707863 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.468563085509462 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.47008779953408 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.472345946799008 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.474714376094165 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.473140691940287 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.477570197110619 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.498446592650499 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.500007790684463 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.495485144833494 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",0.500986832399165 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.452011181819245 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.461635598528094 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.495818697453067 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.460727503957185 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.451115140323629 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.448790592883432 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.463092468895371 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.460900757892765 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.440078673365809 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.483574721655746 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.487342498557649 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.504787773301651 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.508964849544805 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.510468596992341 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.537071177646994 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.511652035768306 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.491833568238312 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.497388953337027 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.477385972711299 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.47490051310723 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.551248950287873 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.517028717786622 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",0.482189917130866 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",0.517470278952162 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",0.546643232043714 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",0.553383535487517 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.557286638833583 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",0.527712361639221 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",0.567888545513908 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.562730154071789 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.587475081562133 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",0.581950334370377 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.61571218913996 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",0.639538051595654 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.638019869327407 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.620112066840784 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.610605330007778 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.626342099372463 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.649900448513337 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.63755398548897 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.644004582081109 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.682508780672877 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.66589736943428 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",0.694007631025112 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.703365436595435 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",0.687223337465194 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",0.732917592427058 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.709526001552444 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.739528848573706 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.759626269013934 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.757184366481359 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.803712051904006 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",0.799743847516535 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.812886571338355 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.795241013456992 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.799331552949986 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.774014032209102 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.831223304522397 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.84078889933685 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.836728456445037 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.831796258643455 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.820571417275361 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.839009915945413 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.819241609417389 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.840328284207971 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.853943892756273 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.832018013576623 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.84095078585112 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.878382224654722 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.830680266567261 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",0.919003688099562 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",-0.230871885829457 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",-0.241496710582306 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",-0.205386405247224 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",-0.183340749940338 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",-0.217885237418596 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",-0.177982742475295 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",-0.171075186068497 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.208865543363548 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",-0.151579749576928 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",-0.168517263915132 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",-0.168228408062339 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",-0.20309921105827 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",-0.188228497062484 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",-0.176476585680814 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",-0.1751634007509 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",-0.19244423885988 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",-0.102690173772503 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",-0.0830612081169802 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",-0.106334834717762 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",-0.0636115918391755 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.010656127583153 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.015333970531131 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.003385737654606 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.10487590975867 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.36461693803585 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.215070013648591 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.1270588411622 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.106325361490259 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",0.0473592519704319 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.0104801050333454 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.0735593284632237 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.106333482034481 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",-0.0300172980848596 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",-0.0529011938297972 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",-0.0829393792769316 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",-0.0828242466056086 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",-0.162798978920021 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",-0.0339655313040541 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",-0.041003138546368 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",-0.0945390654792887 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",-0.0676819862720248 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",-0.0194080504462018 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.0114477869037709 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.122915593526682 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.14651226833529 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.048356284092168 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.0306860028624019 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.0765288721392232 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.0937344508152161 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.130132135645909 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.10081018111694 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.0635942711162338 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.128211031660326 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.121027131721092 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.087136303317474 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",0.0797671244167355 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.0270311376609464 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.018217608963476 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.0823565273748766 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.122966125909278 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.0913260960117549 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.1497207596482 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.0912484199134653 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.100640092208968 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.0564639664210271 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.11234563360774 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.177470552815474 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.245740348573781 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.241034266816373 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.215889102023779 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.201426502236117 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.234969352865507 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.250366892554223 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.228785800861213 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.237878267344414 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.231605194760535 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.183733001038377 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.165898932858808 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",0.14702685610933 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.0834704098824629 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.0901216521314182 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.00441297983179466 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",-0.0267398933559597 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.0379554750919624 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",0.0401022282918726 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.0295899757741344 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.0288437177992407 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",0.00559066319228808 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",0.0657098986873502 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.0421157535897192 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.107894542310963 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.142213891116213 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.1860560838472 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.186612398035672 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.206490368721545 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.191054812835398 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.253774813828169 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.256538471379068 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.291010735232104 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.316030216423778 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.344038200113847 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.418608962717708 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.419594508432737 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.417936311969792 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.567408452295617 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.582424222249323 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.607866822771526 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.614344204638278 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",0.587785331223891 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.607606083406947 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",0.68286661786426 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.659140379186117 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",0.614835247993597 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",0.68906103771252 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",0.718793692586808 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",0.772449246964356 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",0.763217995176449 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",0.738769249709435 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",0.784937103077099 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",0.877894561020856 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",0.87316540635147 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",0.873168362930644 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",0.931386730582017 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.02564999166978 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.04882172682264 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",1.01283482485095 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",1.04589181483439 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",1.11113656052444 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.13415323952512 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",1.09364733189388 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",0.963912637785004 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.01385322144568 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",1.24909209065786 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.13331322320716 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",1.15225001618964 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.15862192740851 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.18774229985735 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",1.20562709172758 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.20048940738306 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.19726866848924 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.16459112549037 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.17613009360501 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",1.2187218388567 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.2605524099017 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.38260386297029 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",1.15301872677461 -"inmcm4","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.236766785741651 -"inmcm4","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",-0.157444655390732 -"inmcm4","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",0.084062639220846 -"inmcm4","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.331769242734343 -"inmcm4","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",-0.0595484190680919 -"inmcm4","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.711230336961373 -"inmcm4","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.422750965468584 -"inmcm4","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",0.556987256773794 -"inmcm4","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.433353991193134 -"inmcm4","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.291434741986854 -"inmcm4","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.359099907661323 -"inmcm4","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.311300777179386 -"inmcm4","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",-0.0382496095664127 -"inmcm4","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.523221223469295 -"inmcm4","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.503445672791657 -"inmcm4","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.695819750142412 -"inmcm4","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.164811488730294 -"inmcm4","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.564188201836049 -"inmcm4","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",1.15219119680441 -"inmcm4","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.897593820462865 -"inmcm4","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.820535288209939 -"inmcm4","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",1.32205645133821 -"inmcm4","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",-0.227025990615474 -"inmcm4","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.544533182930146 -"inmcm4","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.34220740841471 -"inmcm4","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",1.03467946000226 -"inmcm4","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",1.22209391200441 -"inmcm4","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.801706854487451 -"inmcm4","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",1.11928990755703 -"inmcm4","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",1.42219264782181 -"inmcm4","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",1.6036300949234 -"inmcm4","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",0.825879472746852 -"inmcm4","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",1.25866816421814 -"inmcm4","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",1.07322049368559 -"inmcm4","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",1.48381808637517 -"inmcm4","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",-2.04062117517168 -"inmcm4","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",-0.14608644956081 -"inmcm4","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",0.199444208310036 -"inmcm4","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",-0.133236048971998 -"inmcm4","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.0238189860384997 -"inmcm4","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",0.241626329732878 -"inmcm4","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.467708059596325 -"inmcm4","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",0.207492531714431 -"inmcm4","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",1.08090276609791 -"inmcm4","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.52448983464782 -"inmcm4","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",0.742879695256458 -"inmcm4","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",0.273811740229839 -"inmcm4","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",0.613938804538842 -"inmcm4","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",0.944452917373395 -"inmcm4","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.47961774112498 -"inmcm4","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.420270067437093 -"inmcm4","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",1.14883915682081 -"inmcm4","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",1.43424011258905 -"inmcm4","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",0.749177051899138 -"inmcm4","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",1.13086952625295 -"inmcm4","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",1.6126648366379 -"inmcm4","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",1.02194285054582 -"inmcm4","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",0.983736563868355 -"inmcm4","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",1.33153790322094 -"inmcm4","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",0.97171046350046 -"inmcm4","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",1.00203203008834 -"inmcm4","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",1.16741704440547 -"inmcm4","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",1.09597038004602 -"inmcm4","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",0.998866100300143 -"inmcm4","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",0.330651896073142 -"inmcm4","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",1.09431698118294 -"inmcm4","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",1.10257392166334 -"inmcm4","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",0.839459461861067 -"inmcm4","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",0.520036671236746 -"inmcm4","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",1.04229112707341 -"inmcm4","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",0.779737282819864 -"inmcm4","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",0.600058342856227 -"inmcm4","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",0.503097444507062 -"inmcm4","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",0.696497470019124 -"inmcm4","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",1.49528517066809 -"inmcm4","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",1.33675561508362 -"inmcm4","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",0.446562331157155 -"inmcm4","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",1.15636925073081 -"inmcm4","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",0.907979888998292 -"inmcm4","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",0.855421638626887 -"inmcm4","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",1.57943691200152 -"inmcm4","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",1.31756878499343 -"inmcm4","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",1.04470336198186 -"inmcm4","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",0.904111790234663 -"inmcm4","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",1.33670991583368 -"inmcm4","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",1.50182816077924 -"inmcm4","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",0.859977282605966 -"inmcm4","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",1.22752755282309 -"inmcm4","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",1.3741124669527 -"inmcm4","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",0.761257420126345 -"inmcm4","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",1.13054014890896 -"inmcm4","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",1.16050960277599 -"inmcm4","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",0.657841502722184 -"inmcm4","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.90073347318234 -"inmcm4","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",1.18975940770449 -"inmcm4","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",1.05510759596914 -"inmcm4","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",1.39614636031458 -"inmcm4","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",1.30819015642308 -"inmcm4","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.864634493168052 -"inmcm4","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",0.658834204679155 -"inmcm4","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.768967797577383 -"inmcm4","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",1.18819192343132 -"inmcm4","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",1.26670780476505 -"inmcm4","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",1.30828155492297 -"inmcm4","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",1.12627092497892 -"inmcm4","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.06788590599116 -"inmcm4","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",0.669371080739407 -"inmcm4","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",1.31792638162426 -"inmcm4","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",0.975421356844271 -"inmcm4","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",0.638074406405787 -"inmcm4","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",0.863332293040816 -"inmcm4","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",1.45524006042089 -"inmcm4","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",1.73840403790424 -"inmcm4","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",1.00469138369087 -"inmcm4","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",1.36582262301233 -"inmcm4","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",2.08951937261484 -"inmcm4","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",1.45558394727674 -"inmcm4","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.38661463925691 -"inmcm4","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",1.70776040585236 -"inmcm4","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",1.65363535669652 -"inmcm4","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.53698116631963 -"inmcm4","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",1.82540512747185 -"inmcm4","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",2.14264475067809 -"inmcm4","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",2.53214174293783 -"inmcm4","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",1.91028234439819 -"inmcm4","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",1.73736437996794 -"inmcm4","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",2.22987547897669 -"inmcm4","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",2.08334311898452 -"inmcm4","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",2.71158441777924 -"inmcm4","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",2.15307903192221 -"inmcm4","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",2.39432879983552 -"inmcm4","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",2.37217837338627 -"inmcm4","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",2.46448743083522 -"inmcm4","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",3.03219093322531 -"inmcm4","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",2.68790877886301 -"inmcm4","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",2.57032460874969 -"inmcm4","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",2.35210612032835 -"inmcm4","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",2.75155183930153 -"inmcm4","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",2.42134848136661 -"inmcm4","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",3.10513493350926 -"inmcm4","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",3.06915248658234 -"inmcm4","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",2.82904976984269 -"inmcm4","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",2.87958628539645 -"inmcm4","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",2.44072267838159 -"inmcm4","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",2.88972580647841 -"inmcm4","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",3.416560469641 -"inmcm4","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",2.52362111778523 -"inmcm4","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",2.91388357248158 -"inmcm4","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",2.7005160594421 -"inmcm4","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",3.35279744867137 -"inmcm4","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",3.29670390432408 -"inmcm4","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",2.86741657513559 -"inmcm4","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",3.24209215815631 -"inmcm4","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",3.47246893202602 -"inmcm4","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",3.3601733076128 -"inmcm4","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",3.62406134146855 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",-0.193359782201523 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",-0.218069833450679 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",-0.225280792095271 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",-0.109834394443436 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.0536832674530338 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.143032048778299 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",-0.0406931425459589 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.0390911962232457 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",-0.104460080768391 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",-0.19578360351323 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",-0.116591391519046 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",-0.332772050407038 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.000631577771454476 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.0278151930724007 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",-0.0528055625823271 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",-0.172017228528259 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",-0.116884360886018 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",-0.148747031303615 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.0310034265361026 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.0165320444530125 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",-0.159421591239818 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",-0.0277071945666107 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",-0.310710824518736 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",-0.320678727352992 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",-0.118407598764037 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.128093722272268 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.0316431496604042 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.0505410661393407 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.0989469658941966 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.00104242914904607 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.0440386381980218 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",-0.0173362783682364 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.0539100247804859 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",-0.139966424472929 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.0507228742239725 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",-0.456812021348018 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",-0.184834552388269 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",-0.287251617017207 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",-0.196796379569437 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",-0.350646035166827 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",-0.202613997631609 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",-0.00582618678016373 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",-0.0676693747603937 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",-0.101943971699628 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",-0.0929477288264248 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.0114683377809082 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",-0.17479806543208 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",-0.115702720064431 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.0670944197993607 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.177271906742489 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",-0.056940411629725 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.0216990707842928 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.0150282610885781 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.0429627956898424 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.0431892264262377 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",-0.0633805638132089 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.0603270061879385 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.0427271172698381 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",-0.0149128025554902 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.293513398916658 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.0541879365808381 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",-0.180003067427668 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",-0.194296410974482 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.122673290502199 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",-0.0826920648931026 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",-0.021508238473091 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",-0.0589347485127078 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",-0.117228364402869 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",-0.0689575186445102 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",-0.0871880377043303 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.017347898134258 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",-0.129176096601584 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",-0.139303633706614 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",-0.0977311361456615 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",-0.0714804689364634 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",-0.0589768959480408 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",-0.113463216431793 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.105051519983292 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",-0.206424971484658 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.00125062115003817 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",-0.075348510279441 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.117177656844047 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",-0.0334408615381774 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.0765511044956733 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",-0.0428033504981014 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",-0.397345290381754 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",-0.0565995365114181 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",-0.217570321023771 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",-0.286423966523209 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",-0.101636099467063 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.114524121696374 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",-0.0313644643549174 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",-0.0760852653256247 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",-0.0517069446451851 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",-0.0174674304610548 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.0637402952677965 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.0992322689658348 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",-0.084095753255322 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",-0.156583979059119 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",-0.243018983731434 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",-0.295231955435659 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",-0.0216861618430469 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.15497314602186 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.0105203522336738 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.0319490451576251 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",-0.108509637982949 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",-0.347682822941275 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",-0.110689186373156 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",-0.278990925959979 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",-0.141849445372545 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",-0.102046435346455 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",-0.0361795166286598 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.0914291491682161 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",-0.122032931384787 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",-0.139384009484598 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.00552288510349407 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.145544221565377 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",-0.0187389353902764 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.029014022896978 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",-0.201109444199841 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.0197106125403327 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.0715754037999806 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.125369677834328 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.210166329875595 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.0858136050252009 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.186769002784833 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.111810270337207 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.267211130320482 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.15909886770867 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",-0.00401000016197618 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.0924828522405437 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",-0.00112977128616221 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",-0.0224097157349337 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.271384104576513 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.247101200051674 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.0214561042270205 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.0594520171797044 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.0845698603358091 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",-0.000211265394726815 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.15256235397442 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.146935705735473 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.145789336748023 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.252573491043766 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.0924814255532955 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.154004597270348 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.180007536568445 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.0218365656192147 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.0934793846889245 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.194235218123835 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.348930400778334 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.212809482865462 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.295803146005037 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.276486660114276 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.186916312540462 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.129069713862075 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.259334269700034 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",0.430126525094409 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",0.0606251463538483 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",0.309343436175777 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",0.441603669197193 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",-0.11323169511839 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",0.568198270097307 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",0.463444106920105 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",0.517896118416184 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",0.537814106112087 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",0.487218253528165 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",0.475691318095858 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",0.644072879796619 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",-0.0388811853980814 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",0.49540596693143 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",0.556251262785518 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",0.867836958794889 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",0.281695854131867 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",0.712935162058592 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",1.12118815226953 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",0.881061749446182 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",0.979956453435695 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",1.3497633548801 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",0.0836847534125646 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",0.865211897784615 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",0.460615027635647 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",0.906585774962555 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",1.19045051223188 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.751165779574559 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",1.02034275404854 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",1.42115033902032 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",1.55959158810021 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.843215777230212 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",1.20475896797892 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",1.21318661153147 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",1.43309443455846 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",-1.58380880959963 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.0387481658715495 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.486695881334225 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",0.0635602821407815 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.374465059880627 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.444240377302092 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.473534276171273 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.275161931106258 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",1.18284690062406 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.617437624393882 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.731411336499018 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.448609784850732 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.729641463411598 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.877358458650981 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.302345861724963 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.477210390412349 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",1.127139817623 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",1.41921206835645 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.706214303164247 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",1.08768043162408 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",1.67604506371017 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.96161587058853 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.941009442541156 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",1.34645072705045 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.678197119984231 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.94784405472634 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",1.347420347678 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",1.29026708376097 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.876192778597244 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.413344032330729 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",1.11582563578585 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",1.1615084526795 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.956687790734368 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.588994157550583 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",1.12947894246023 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.762389405251001 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.729234397454448 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.642401036422295 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.794228582532273 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",1.56676619838932 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",1.39573249618329 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.560025600857933 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",1.05131820220423 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",1.11440469024157 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.854171034434666 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",1.65478620424554 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",1.20039130749448 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",1.0781443728997 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.827560626167129 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",1.37951391691771 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",1.89917330840102 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.916576749791164 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",1.44509773616093 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",1.66053598662551 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.862893543599471 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",1.01601585839528 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",1.19187436954981 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.733926720701571 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.952440483561049 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",1.20722718144824 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.991367694394724 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",1.29691369242708 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",1.39228592676545 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",1.02121822732787 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.901853172179853 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",1.06419988885969 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",1.20987883665791 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",1.11173459379875 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",1.29776101856106 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",1.09432218733409 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",1.17639538079293 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",1.01705342040814 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",1.42861612667507 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",1.25441247354854 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.77992391209098 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.965378755684563 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",1.49142017266775 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",1.64697391552569 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",1.12672440458137 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",1.5052064503391 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",2.08399620005207 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",1.31003899747845 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",1.40535299634369 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",1.67874621907199 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",1.85474449536202 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",1.51727089918836 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",1.7538301851645 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",2.01727581849167 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",2.32197546098126 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",1.82446884347506 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.55059614868469 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",2.11806492242197 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.81613243549708 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",2.55248602248205 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",2.15708948355488 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",2.30184636969528 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",2.37330808935935 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",2.48689735028273 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",2.76080692753941 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",2.4408068850772 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",2.54886862900971 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",2.29265487085356 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",2.66698181560376 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",2.42156006120907 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",2.95257245817829 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",2.92221721781139 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",2.6832605715249 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",2.62701286921498 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",2.3482416005435 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",2.73572102689919 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",3.23655288992089 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",2.50178524898738 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",2.82040414014529 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",2.5062810275127 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",3.00386723349885 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",3.08389442066853 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",2.57161346363027 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",2.96560555706388 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",3.28555221700906 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",3.23110302022752 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",3.36472722508867 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.797308126201799 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.807820186599382 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",0.922045895445366 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.875015647397268 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.862946529787535 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.814079640511196 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.913667976733988 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",0.958798464135058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.951855611230594 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.877103196037792 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.724137403328725 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.756463967325082 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.755609615616218 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.837761778723292 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.855141679795995 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.972583647378579 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.905856408076743 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.93841809963069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.979239554050893 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.948463045438827 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.998847246257412 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",1.02599505758157 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",1.00665608626115 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",1.04246049934228 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",1.00124395648833 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",1.03938244947985 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",1.08182261323618 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",1.1418884885587 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",1.26002062528365 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",1.13745694933231 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",1.27598463835001 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",1.38611023640227 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",1.31087384560073 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",1.54625455015569 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",1.75263932121992 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",1.60146084803991 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",1.53500034748908 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",1.53963826044321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",1.51168045090063 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",1.4048109087389 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",1.42168289412967 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",1.49232961251167 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",1.2804031263752 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",1.43026239855415 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",1.26906557106666 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",1.32238974158357 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",1.31772698758575 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",1.30018449995144 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",1.29788980532275 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",1.39237138928703 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",1.30317922291394 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",1.41249196538421 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",1.43524314365322 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",1.77453269835016 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",1.67914695187957 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",1.58238125325444 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",1.5174807702474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",1.65488484608783 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",1.63974558141403 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",1.59951632203021 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",1.583570714504 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",1.61178609864053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",1.6208741622973 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",1.64678257286438 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",1.5486340132371 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",1.61766449351633 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",1.49125529529158 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",1.43133071788494 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",1.53263110398731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",1.46350236643992 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",1.51035213722655 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",1.54342434440586 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",1.66774038223099 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",1.64670686560065 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",1.70881282128952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",1.68973412747455 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",1.81325460835123 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",1.80857630617684 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",1.76935031605396 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",1.80532786992251 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",1.81814945234896 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",1.83783591511889 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",1.89401271267999 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",1.93301289385442 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",1.84436640669808 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",1.77397152244087 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",1.79260395269789 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",1.75861862479133 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",1.74473013884488 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",1.8053202245443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",1.82399134504864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",1.74944458280718 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",1.80676121101448 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",1.82957584334846 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",1.74998228199952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",1.69269489672034 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",1.63707206730456 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",1.6385118953841 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",1.57282738785095 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",1.51232497945186 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",1.60605100955771 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",1.79127633405819 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",1.79973438765974 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",1.90923499534955 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",1.82083846315097 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.80491033445239 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",1.89632975137699 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",1.96358539700405 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",1.94495950521864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",2.02786088964863 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",1.9222318808926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",2.03879712695599 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",2.22685515418168 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",2.25483028809981 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",2.30455690916598 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",2.34566355936136 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",2.36917399833883 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",2.37703303527023 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",2.42837573998708 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",2.50800068085131 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",2.42183675354321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",2.42169002406234 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",2.39072212357479 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",2.64075842609898 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",2.65513559844277 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",2.71274442425311 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",2.80051516808679 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",2.82783954388626 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",2.85946077669388 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",2.91371490321532 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",3.05347705052338 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",2.99347988063673 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",2.9972155617356 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",3.22338077966357 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",3.16199276875038 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",3.13065341099811 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",3.20304536071597 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",3.22605486009735 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",3.34342171248253 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",3.35079371050551 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",3.34405007504885 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",3.42837087414113 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",3.6723369522998 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",3.44710616948685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",3.31906255929731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",3.24624380698422 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",3.39897272167873 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",3.40456440200051 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",3.49871041306784 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",3.65701015705265 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",3.63549498159484 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",3.66840228543126 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",3.64044027994038 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",3.8576531975944 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",3.78786685455258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",3.84029844646956 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",0.317259520677736 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",0.302594910870857 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",0.308182568253671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",0.256481804037386 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.26026968942233 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.215210355971815 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",0.208221384216213 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.191324138597585 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.177816423268184 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.190775486944548 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.13093013006624 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.102270707678804 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.12521563971881 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.137004378949971 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.170381559112761 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.241033952627726 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.266581343077728 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.2710558707582 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.272625236740126 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.314349548742685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.350285305574097 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.31932450350349 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.334564863980786 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.331600845736046 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.296622731580924 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.317053546996091 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.321971650832243 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.286013075469569 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.324415077366782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.310610928028801 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.337396426237792 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.3616511272595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.379973295212324 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.402596082740663 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.406150711977176 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.398721773835241 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.421642333311431 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.454292129686532 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.453904770980342 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.414384665649022 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.435168563697327 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.4404342053049 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.435482818505257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.40967525735035 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.404049199731167 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.447650755472834 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.400946284079733 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.404991435416069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.404460108007602 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.443822000870806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.420164866745757 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.442837944238824 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.454181462338663 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.479871781392587 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.484365280316271 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.497276302317609 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.498215296603249 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.51475595014185 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.503775514736703 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.522054110007527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.521450014335049 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.497494556534616 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.49265687158428 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.465634728240481 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.435785146802993 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.44182964377945 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",0.404528154403466 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.362801898480897 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.422290930407258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.426502625297474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.415096550490734 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.459734158586736 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.532011550609977 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.516598444241773 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.524191686383572 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.513075755891524 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.570203601789571 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.558960452123632 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.51789495796947 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.540370084818782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.568356050187253 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.586679841138573 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.587746790234815 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.631668761741874 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.613433385127884 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",0.587448397593489 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.567544413007387 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.581424682354147 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.559070153948317 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.59598270299918 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.550052443268219 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.558959790050591 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.572267720242187 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.608028436915696 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.620468003141468 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.623378457838113 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.581750155621936 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.581265692869755 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.565774011305245 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.58611510203019 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.600282315671945 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.636793666850973 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.61438888526225 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.639843662636434 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.629473759724996 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.61151746528864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.618571209856737 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.651732701335554 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",0.655314010736294 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",0.619560825143625 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",0.624242647065595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",0.637329210377346 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.68950801431777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",0.670301873107638 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",0.655527161473611 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.674983832961492 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.718403686435282 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",0.733375410776254 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.747536003687601 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",0.709702207586777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.709006663075532 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.710173658764613 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.694268687299813 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.752106514579579 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.775715947261581 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.809381074024386 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.796715984571346 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.835175945446009 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.792562901536162 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",0.816678820094412 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.851541701356321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",0.830689205184617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",0.787363651141853 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.840237217979515 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.779861673929643 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.756384196082866 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.76341697500467 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.790221323904407 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",0.858900505273448 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.891730500458895 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.870073079792323 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.850507901889416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.885867016090897 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.852577569801479 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.828695721649545 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.791674344342593 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.822097290228913 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.875595274703223 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.87757248227604 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.914702779793671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.934270670356956 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.968162695068134 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.926836509654137 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.966365948376242 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.943833120022327 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.955106154929694 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",0.480048591910409 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",0.505225260901088 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",0.61386334836723 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",0.618533845989942 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",0.602676795372818 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",0.598869322875934 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",0.705446624918749 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",0.767474251110547 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",0.774039170924275 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",0.68632773007238 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",0.593207285164763 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",0.65419323816899 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",0.630393971318937 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",0.700757414604045 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",0.684760092801976 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",0.731549751889466 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",0.6392751206599 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",0.667362173578924 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",0.706614360331922 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",0.634113568168455 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",0.648561923103542 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",0.706670604129322 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",0.672091156293219 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",0.710859604100002 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",0.704621236619754 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",0.722328856181348 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",0.759850996412876 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.85587539738628 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.935605526222766 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",0.826846049417949 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.938588202460628 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",1.02445916019187 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.930900647993071 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",1.14365837385419 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",1.34648837171271 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",1.20273888849505 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",1.11335836009459 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",1.08534603107782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",1.05777582905491 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.990426122961944 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.986514345708449 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",1.05189554003668 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.844920310876883 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",1.02058730334796 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.865016304265237 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.874738953850164 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.916780769521376 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.895193131421963 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.893429740363462 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.948549465298812 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.883014425154834 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",0.969654041069123 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.98106165756046 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",1.29466093877663 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",1.19478163867568 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",1.08510490165468 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",1.01926542609906 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",1.14012886412446 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",1.13596982560525 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",1.07746208849363 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",1.06212059897125 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",1.11429133051432 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",1.12821727360641 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",1.18114790959865 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",1.112848677111 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",1.17583496402849 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",1.08672704889114 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",1.06852875505793 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",1.11034016145837 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",1.03699970860371 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",1.09525570186125 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",1.08369020099578 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",1.13572880190353 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",1.13010837614472 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",1.1846210063767 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",1.17665855506328 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",1.24305061535622 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",1.24961625407563 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",1.25145557426063 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",1.26495806076228 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",1.24979340089316 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",1.25115576944734 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",1.30626587373313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",1.3013442454406 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",1.23093310064912 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",1.18652261762453 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",1.22505928178203 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",1.17719401292996 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",1.18565971936441 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",1.20933776603007 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",1.27393879968436 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",1.19048467598713 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",1.23449356561171 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",1.22154727952006 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",1.1295142428879 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",1.0693163585201 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",1.05532201366689 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",1.05724620701082 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",1.00705345987204 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.92620974613559 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",1.00576866969856 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",1.15448295783819 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",1.18534551529322 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",1.26939140408739 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",1.19136491256073 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",1.19339283976558 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",1.27775832442354 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",1.31185276465635 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",1.28964576816842 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",1.40829986102593 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",1.29798962008993 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",1.40146786775169 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",1.53734744819022 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",1.58452817082392 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",1.64902965718567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",1.67068013609932 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",1.65077004326238 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",1.64365774020538 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",1.68083954202978 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",1.79829836961539 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",1.71282999906554 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",1.71151630465482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",1.696453327651 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",1.88865149282519 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",1.879419898109 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.90336326325953 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",2.0037990386462 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.99266361253228 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",2.06689760171564 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",2.09703645373698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",2.20193515330309 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",2.1627907389694 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",2.20985178495149 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",2.38314378792805 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",2.38213118813199 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",2.37426953162391 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",2.43962820728889 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",2.43583386539283 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",2.48452111831405 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",2.4590631880478 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",2.47397709784423 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",2.57786340905713 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",2.78646996207296 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",2.59452848851548 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",2.49036709015815 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",2.45456939321263 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",2.57687533663136 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",2.52896894214549 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",2.62113751364281 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",2.74230758608547 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",2.70122445228424 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",2.70023997438688 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",2.71360337378354 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",2.89128725614283 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",2.84403379716963 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",2.88519220462453 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.591405807963786 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.630642400478779 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",0.532104034576014 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.638187575342892 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.641811594345602 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.704283292142903 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.801281135035538 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",1.07849449294306 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",1.02723696426506 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.827094678510736 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.766259672499408 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.734015150372971 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.938933711449256 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.876739959640109 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.742888569344016 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.636120804354808 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.58751322398506 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.630201332091023 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.672403610979893 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.651951771589748 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.668594062360019 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.853726782302052 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.917767950232649 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.845821430177691 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.892286440981291 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",1.07332164203376 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",1.08991552678141 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",1.13678445716471 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",1.21837867812955 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",1.13523037189132 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",1.16368014059416 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",1.1149962791943 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",1.1114174498672 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",1.37931514108868 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",1.7673527744505 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",1.47478961482195 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",1.17247743935245 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",1.13533259812071 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",0.959058501953439 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",1.17615983505353 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",1.01482459866993 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",1.06624969902758 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",1.16822741200843 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",1.24180220774134 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",1.11896793170389 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",1.05065266743243 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",1.08148800071865 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",1.16608060758538 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",1.23067514802045 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",1.07984970075917 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",1.03773769400994 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",1.23582569892376 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",1.17508578957261 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",1.30895674597973 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",1.25268981042672 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",1.25395185139086 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",1.32919057064782 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",1.27424432078626 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",1.4662549307977 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",1.2419788924042 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",1.41116919868712 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",1.54622403882583 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",1.25484331557273 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",1.49390994015236 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",1.38772395873296 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",1.29412600906165 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",1.19593045214523 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",1.24484572971305 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",1.27673945559137 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",1.37223998173549 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",1.41943290547508 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",1.39658376183495 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",1.509319297899 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",1.51381494694364 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",1.67104816155185 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",1.55152452510598 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",1.4336099734675 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",1.51009684979065 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",1.44619795160982 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",1.65846248845823 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",1.66760602697302 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",1.74548660006491 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",1.65126971801574 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",1.66738779782783 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",1.63856504008245 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",1.4831827795774 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",1.57812371494614 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",1.55992782135453 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",1.51050076937034 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",1.66241966740624 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",1.68487566622918 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",1.45535151440615 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",1.23160735259788 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",1.50904204878604 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",1.51638244955666 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",1.40478153350905 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",1.28878017228855 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",1.06201425245673 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",1.36640520660985 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",1.36342794138671 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",1.35046097035408 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",1.4283660412891 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",1.36198782200933 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",1.46690216702932 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",1.55330053832362 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.52205104675303 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",1.539498871634 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",1.56371962646002 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",1.50505383208931 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",1.56680024363401 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",1.72073493355776 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",1.83644301753599 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",1.82285395138427 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",1.94175265160451 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",2.00158260277845 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",2.22174584463405 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",2.00176807878983 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.97595421367993 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",1.94706873716769 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",2.0811716458006 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",2.40625319950419 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",2.17633692137386 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",2.22320338589111 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",2.15873814260617 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",2.40089262114059 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",2.44003717252508 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",2.52957652110574 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",2.59295463909854 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",2.70122599271296 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",2.64909651235833 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",2.75544288228238 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",2.90367037884552 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",2.84887079440798 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",3.06616987924392 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",3.20433717839211 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",3.03571053692413 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",3.28209290361391 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",3.26262810751786 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",3.27144947527299 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",3.06199666898786 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",3.0995319747476 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",3.01066162634671 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",3.41493071575302 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",3.1478956488018 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",3.21567104922626 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",3.2571796156691 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",3.275760452393 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",3.37120447804116 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",3.6560291603498 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",3.54641015733478 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",3.39812047806261 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",3.34848473876273 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",3.61516868783113 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",3.6551076769291 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",3.6707884407583 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",3.77431353828958 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",0.89923059582938 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",0.900577664377963 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",0.885954406381343 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",0.884186877766141 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.930824091841001 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.875287124398815 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",0.862993048198247 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.94409560237492 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.980707554878817 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.946700289643382 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.956336834368992 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.886810647664727 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.955258940997249 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.960628407791703 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.933059053150818 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.874496846630137 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.860301571660087 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.91273871262815 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.893540577546216 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.871932159490203 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.877371534766166 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.940402471242098 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.984309401314653 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.91549963893075 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.915625419151421 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",1.04718859418374 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",1.0270851350919 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",1.03528222565097 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",1.04610152647059 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.930040878315206 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",1.06965417095727 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.999367431350484 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.967145309465752 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.998213941405559 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",1.03026569577039 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",1.01876309000288 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",1.02379916123065 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.967094483614364 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.99457970954456 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.996027237131536 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.892291490963844 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.943373398219472 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.93407089126444 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",1.03189744413279 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",1.0404106824967 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.987317300887891 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.980810857963043 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",1.03246762945115 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",1.07169069126249 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.986469591742013 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.920672958305952 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",1.02333530652919 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.972140830104513 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",1.01530307888518 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",1.0641507587783 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",1.03345322894835 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",1.08949863839123 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.962702818126921 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",1.09379314760319 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",1.06951839070447 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",1.15418416733966 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",1.12794628486697 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",1.06765370581378 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",1.06782746784 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",1.08227246838312 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",1.07766089393218 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",1.07458996663348 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",1.02493641259129 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",1.03061661432915 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",1.14924259182837 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",1.14032971915283 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",1.05452448931506 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",1.10817989107838 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",1.12126222669251 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",1.20560341512877 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",1.17049311882615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",1.05896688891048 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",1.05189255425263 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",1.06956618902319 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",1.16667273957803 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",1.17048009126135 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",1.18639060110059 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",1.17225541806675 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",1.15047094439916 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",1.11178669165857 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",1.13148299347883 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",1.11085999143319 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",1.16112996947443 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",1.16868751669411 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",1.20613249939764 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",1.16522732208958 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",1.14898947174899 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.995392739679923 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",1.13679025823855 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",1.07755749910454 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",1.12261635948398 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",1.1240955385488 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",1.05879110852915 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",1.12990904346729 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",1.12404333654621 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",1.13135537838988 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",1.14219669762887 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",1.15238975790414 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",1.13134547010116 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",1.16996825475434 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",1.12047121497652 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",1.15421737845555 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",1.13043418276934 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",1.14695478631205 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",1.15282150241069 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",1.13342501806757 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",1.16269382771042 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",1.20953177637524 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",1.20210175250109 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",1.22837266260284 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",1.2435731701607 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",1.23185964628428 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",1.21697005715665 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",1.27146913135562 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",1.19599026497375 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",1.31959956123766 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",1.22469457738992 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",1.31278642007962 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",1.1556255481179 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",1.28014044362195 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",1.27334069700236 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",1.36563062657585 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",1.40085101497534 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",1.41469500441297 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",1.39203089489142 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",1.41564133772896 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",1.4135536245987 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",1.42929495958242 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",1.41593289829883 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",1.53916265205879 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",1.48917524373284 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",1.58613427087788 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",1.58030526132242 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",1.53265070452909 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",1.53392786459617 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",1.57944562553272 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",1.50679695173106 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",1.44833722260388 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",1.41365701942634 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",1.50410143848268 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",1.61982896630162 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",1.58000342549018 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",1.62766027586886 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",1.68999845782525 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",1.60195294555965 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",1.54590404986703 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",1.53862384298803 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",1.59738146298065 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",1.68554981967768 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",1.74616909702832 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",1.65081411173464 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",-0.299735708935015 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",-0.261900603049608 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",-0.345792942068036 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",-0.238143955086432 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",-0.280690735502283 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",-0.16335325482828 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",-0.0543543357735129 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",0.142097632754102 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",0.0546882185120393 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",-0.111444196368884 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",-0.181712637777964 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",-0.145079770785976 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",-0.00827105070865427 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",-0.0756720347928886 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",-0.182001388834731 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",-0.230615242698841 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",-0.265087021701736 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.274378667081566 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",-0.213246129961011 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",-0.212273159575504 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",-0.20104388743613 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",-0.078624329957843 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",-0.0581561503389947 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",-0.061865704791943 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",-0.0156057887488994 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",0.0348858489424719 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",0.0713506758200617 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.110024203020356 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.180767336628792 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",0.212647505139841 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.102849662545072 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.123824648965406 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.152147529576031 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.38882679328305 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.7444642322803 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.463794854972297 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.157021987581375 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.176071541895801 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",-0.0271033752588715 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.188188418290723 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.129817219771334 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.130589105001481 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.241598095393719 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",0.218210277275641 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.0871621732601994 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.0715205372237083 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.108742946850191 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.142055731682507 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.167712610237559 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.101505957982853 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.124596836329361 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",0.220719576743497 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.210760439584298 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.301674474916737 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.19715263148881 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.228798832022733 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.248429656236993 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.319089378698931 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.381005304350027 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.181147012188939 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.266236400908216 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.427028769586953 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.195835020623983 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.434315081798311 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.31401446379882 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",0.225143723859094 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.130158311067048 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.228138905140718 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.254354811215624 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.232266075162334 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.288199804749264 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.350325571215725 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.409754358025092 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.401292456499481 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.474766088845031 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.390204212423634 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.382890041697997 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.466246937406107 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.384964368009964 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.500738799420889 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.506097542373968 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.568093800072616 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.488032251140406 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.525685854584302 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.53520511335639 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.360596076813044 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.475786279190082 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.407861534154636 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",0.351039184609387 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.465628762750356 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.528536753643571 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.315483900456263 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.244167787855112 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.381156948862359 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",0.447116802228052 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.291107611599742 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.173843158444188 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",0.0121130783952412 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",0.245578979334935 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.24841312329734 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.22823076714753 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.295269193773365 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.218916426187008 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.344479770792917 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.392497096999932 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.410297132523378 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.394310388588795 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.44203149037046 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.367114302682566 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.422946097654731 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.595813643819857 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.682349076042243 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.622420302213458 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.748467549656699 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.782188659443111 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.986923768919127 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.778922281967547 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.767892354159625 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",0.6851096904109 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.893693895727333 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",1.09585531391215 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.960281032194433 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",0.919867258696303 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",1.01108167723709 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",1.12956331642311 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.17537115587089 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",1.17340008823067 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.20180502038566 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",1.29618455714516 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",1.2665802426386 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",1.34937050416395 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",1.49940788679929 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",1.42912178833507 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.65926999437204 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.67521732761737 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",1.5563645525944 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",1.70634244152859 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",1.69268199461486 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.74865983573764 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",1.53830583721429 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",1.53071872413903 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.51391519700192 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",1.97535083125467 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.74310723840211 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",1.7212376382219 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.64811947962991 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.70609007093672 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",1.75419466049627 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.97681840179154 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.95454269822935 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.86199200406349 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.81964839530352 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",2.02770750983567 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.98030227117683 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.93595080554247 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",2.13368494152913 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",-0.515806914203808 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",-0.122899266106739 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",-0.357077170835317 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",-0.234036420742155 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.010697085058521 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",-0.0488651230909633 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",-0.089969210566666 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.0953521970301213 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.0577435513090003 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.132821515254612 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.0958799322994805 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.0965326641068451 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.0673119421608294 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",-0.113981610312466 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",-0.0623037969814048 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",-0.12593649371529 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",-0.137434463711959 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",-0.070928364133802 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.109107817870149 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",-0.0356978474344788 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.159688753776465 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.266583556718972 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.110807519767048 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.230460184785326 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",-0.198246677176494 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.175629320946828 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.0908379222433055 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.220793519612927 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",0.219113853674106 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",0.26795937438695 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",0.449635310153553 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",0.342816269603775 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",0.313840691484236 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",0.601485965182152 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",0.327348076388084 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",0.388261724742886 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",0.290924393283256 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",0.239516985516247 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.146757345617347 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",0.496041601300462 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.248744137530821 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",-0.0978781425877347 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",0.268204575263421 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.520360530666848 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",0.393635149627259 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",0.164941460872422 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",0.243618994222623 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",0.389853990090094 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.201607948753951 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.519655278634523 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.138706906789857 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",0.307596683683403 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",0.535127351249842 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",0.349360930875758 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",0.449666345350574 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",0.305591034075863 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",0.347171808485823 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",0.635368527430823 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",0.289941992377525 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",0.485820752481242 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",0.346674218433571 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",0.528245068110258 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",0.544150378384004 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",0.394274223665934 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",0.091518209198026 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",0.368493559339815 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",0.67710847132551 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",0.189298956035107 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",0.193129178567563 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",0.403357609694303 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",0.487696784501221 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",0.401692320354103 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",0.362248638739069 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",0.606533748697773 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",0.393857644605908 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",0.309753401676447 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",0.670366759372436 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",0.717459476053477 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",0.392471101538959 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",0.573755674343116 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",0.673237629196951 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",0.628848625856465 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",0.499779745141755 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",0.644393380164809 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",0.583330945424285 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",0.445490856251249 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",0.53678944579035 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",0.553501557086676 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",0.438525622419624 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",0.69053028123757 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",0.750346401797689 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",0.208799671063842 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.430991371942602 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",0.590363041849494 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",0.284979555653715 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",0.512741047498004 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",0.503919977344463 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.269199413067958 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",0.402262820299358 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.263768595889092 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",0.294723694718679 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",0.438339981737438 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",0.683732546189872 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",0.871603540862004 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",0.701818763654341 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",0.753647770880894 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",0.619517186451898 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",0.457155868631889 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",0.640397712648229 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",0.75328139581605 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",0.818567013451323 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",0.992572121054009 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",0.730470640104942 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",0.789417889248437 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",0.872341539591186 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",0.915030224894833 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.02921236593806 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",0.944753386142635 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",1.02908092275067 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.12092388333753 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",0.955791875483395 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",1.25231127582976 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",1.42667089209843 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",1.05534890813003 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",1.30300818296495 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",1.18752187904687 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",1.36594003192609 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",1.37683087588101 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",1.27966674820476 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",1.40399922427397 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",1.47315066363829 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",1.42254617749423 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",1.57688809168377 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",1.52460747670055 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",1.57250893410399 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",1.60937578156629 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",1.70392131449382 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",1.92663422412257 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",1.95496296940417 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",1.83999125643672 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",1.88832515279866 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",1.86577899496216 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",1.70969819693948 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",1.93078404072435 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",1.8274162966434 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",1.7013380907417 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",1.80470811682244 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",1.93281730252925 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",1.99888347818962 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",2.01924918523535 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",2.16022542670744 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",1.98727722730334 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",2.00151804693681 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",2.18544494728741 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",2.48499849454262 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",-0.135959213993067 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",-0.0663485888590433 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",-0.0904566421646536 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",-0.0810598777866365 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",-0.0554002622490224 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",-0.132275182078961 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",-0.0496688744633867 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.0092212467031992 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.0632895364978145 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.0423260172154202 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.0357221033918246 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",-0.00655703378835455 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.0711014042989997 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",-0.00476157380696327 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",-0.100273247623513 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.00142636295214638 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",-0.0437563986815167 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",-0.11641717767589 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",-0.119533597341014 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",-0.0516639253671511 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.0412314315403677 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.0942406771132444 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",-0.0054188769891162 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.0444638295013968 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",-0.0648608225723177 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",-0.0628276377386054 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.0168317351234685 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",-0.0231603279285293 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.00344791509796755 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.0248483805519683 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.0924784411212571 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.125198596704738 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.0472226450416296 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.04895561057108 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.030180316735154 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.0474812270691409 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",-0.0135905700370655 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.00853937805326535 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",-0.00935205992114064 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.0786066241545399 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.0209446712765955 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.0124878040472286 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.0266146629095129 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.112080419702229 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.113853831370517 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.0639767004564407 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.0789880685544238 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.0974841456501702 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.0927013765950503 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.0880533112244963 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.0652814168727224 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.0475068715677371 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.0291862245631385 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",-0.0815763411722985 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.0790566991182897 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.1030755046641 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.0668769811405687 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.0619777783544593 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.0864108896931631 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.0892929004237148 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.154924879694255 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.121232317655468 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.113006319228729 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.0134210325752398 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.0172175604585292 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",-0.0169418523201727 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.0342789171931641 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.0553491659359042 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.0210729988699803 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.086223758423694 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.121473015097551 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.108992044328261 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.0726677856879791 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.100087342525425 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.122754434257594 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.0575068246815185 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.0642207260779865 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.12903544460638 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.114173809550747 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.105274905786869 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.163807335244894 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.209742745570787 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.175562867991737 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.162025883395693 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",0.162408799201234 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.162800350756644 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.0733754617421355 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.0718693904683654 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.0711054331478229 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.188870505989339 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.214305679614034 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.163145097598769 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.159731121172953 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.156077445758893 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.108786765722354 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.137615578844675 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.075934288730133 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.0506418764876496 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.128635607635782 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.118413892669386 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.110786878962248 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.126661191444685 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.163232260867222 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.148509428411913 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.173947212029977 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.119028940234078 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.229772255078833 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",0.149245271374364 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",0.179464545325964 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",0.151903102943007 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",0.209090422396114 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.191663198893154 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",0.165921394839548 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",0.290366316546609 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.212768411036986 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.153658542442197 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",0.1549843840397 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.256857154712946 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",0.322034995137445 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.188851763083944 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.206185972729291 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.184605881926346 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.220771281305857 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.201946572763278 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.241299842565956 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.225953957398512 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.33809521271797 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.333533855180785 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",0.352530227716698 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.344654003434747 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",0.300088804593612 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",0.259333495400473 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.31038916969573 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.275448365191121 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.370488558594956 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.362527202985697 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.368705179905014 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",0.405984993902481 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.510311158341696 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.470488965569471 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.46216974308431 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.48967013964923 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.46275375099633 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.475076598207677 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.477120275565064 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.409107702075116 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.506600763742899 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.483240972764155 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.575056160268715 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.525119805276938 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.532370331819918 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.503385216879992 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.535487434637669 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.521045588112675 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.550633629037356 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",-0.379848800414121 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",-0.0565521095139622 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",-0.266621805347579 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",-0.152978635052589 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",0.0660961500766442 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",0.0834092134290993 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",-0.0403017948563848 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",0.0861294772784291 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",-0.00554723236154878 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",0.0904932228032847 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",0.0601558354309782 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",0.103087637522401 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",-0.00379201309411216 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",-0.109222962472954 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",0.0379680939530611 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",-0.12736401074034 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.0936797980057057 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",0.0454871701487984 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",0.228640044930182 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",0.0159648449145456 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",0.118455407648767 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",0.172340972659434 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",0.116224828186941 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",0.185994108571217 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",-0.133387203075385 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",0.238455560390084 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.0740043872953533 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.243952569702481 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",0.215664244102433 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.2431091122251 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.357155129323955 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.217615699310322 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.266616396711516 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.552529454734834 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.29716669117911 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.34077932465145 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.304513454024865 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",0.230976575709159 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.15610801392865 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.417432736332568 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.227797553280668 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",-0.110367661662456 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",0.241586967504668 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.408278040300153 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.27977937498014 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.100962333298219 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.164629513210611 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.292366913004834 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.108903273448549 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.431599789253071 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",0.0734238764551149 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.260088559315289 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.505940043189623 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.430935975759192 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.370607952535854 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.202513918178884 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.280292905657712 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.573388922120322 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.203529293016822 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.396525943381534 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.191746482771991 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.407010680971377 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.431142083426286 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.380851812655345 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",0.0742988971872323 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.385433506896959 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.64282730987692 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.133948349066864 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.172054508113698 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.317132574620852 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.366222031603142 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.292698964625954 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.289578471366281 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.506444784833594 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.271101797914662 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.252244974614083 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.606144781107952 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.588422322638684 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.278295283877719 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.468477318668647 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.509428613449903 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.419104101458652 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.324214797213481 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.48236563366636 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.420920533930553 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.282688255353869 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.463411454916656 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",0.481629479665146 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.367418499166386 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.501657465838819 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.536039199459936 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.0456520949155884 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.271258165446539 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",0.434283148819553 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.176190955708029 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.375123680734064 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",0.427983729714176 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",0.218554677163878 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.273621739405829 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.145352071873389 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.18393534988716 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.311676130078923 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.520498256396785 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.723089247639559 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.527869937601542 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.634617193499697 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.389743513759223 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.307909208227001 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.460931015785302 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.60137658550497 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.60947437610111 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.800907544312627 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.564546574820513 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.499050116925571 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.659570708636098 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.761369545451046 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.874226338695671 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",0.687894093787764 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.707044239011945 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",0.932069866310608 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.749603540611124 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",1.06770339184207 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",1.20589694072124 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",0.853399999206066 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.06170656660783 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",0.961565090414877 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.02784367571756 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",1.04329498995454 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",0.927133423492969 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",1.05934318581412 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",1.1730597590271 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",1.1632112122541 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.26649781031737 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.24915637094214 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",1.20201817600217 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",1.24684611068118 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",1.33521453149078 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.52064575558035 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",1.44464862393574 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",1.36949948915949 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.42615205443003 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",1.37610671760649 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.24694269346801 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",1.45570348971624 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.35029400199846 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.2922284305566 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",1.29810549313517 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.44957434606404 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.42382247761171 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.49412701980059 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.62785168313316 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",1.48389021022454 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.46602915545617 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.66439571218581 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",1.93436005461999 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.243448977721285 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.230393602256122 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",0.230883420897603 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.200615248814219 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.270914931530146 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.166156279563369 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.195343888941382 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",0.164543523208463 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.329036128060474 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.281951912458469 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.282538100069879 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.175096836706151 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.45139954546997 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.220058998477421 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.22754809768305 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.21742662196905 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.400721427975234 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.223542406397539 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.388655030520616 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.326011554904982 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.360532036264297 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.369211166946102 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.341463738285357 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.493366067558989 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.492800611806358 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",0.585786187946846 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.358364759642709 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.4340759131452 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.481780717574831 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",0.491995828387272 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",0.552444460843821 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",0.607730063085219 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",0.574360655533385 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",0.630172414124784 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",0.92829563207611 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",0.836376379726996 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",0.676737080232883 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",0.596804487420006 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",0.651496953459963 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.503371923291337 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",0.494962534596283 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.650460588343638 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",0.347015661719582 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",0.496625298017145 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.473384428680653 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",0.544078700181253 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",0.785702135216867 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",0.474060264494586 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",0.54043444948863 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.534861566373002 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.590031206898812 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.615204353820292 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",0.555356375711773 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",0.84401766444542 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",0.790637684542009 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",0.813585004427548 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",0.66043956100636 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",0.645672668078811 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",0.736567288176733 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",0.68122131293999 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",0.676796086292485 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",0.779806199620485 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",0.736441416177004 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",0.756368719359529 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",0.752460308334442 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",0.907779863055935 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",0.785602804552827 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",0.695781798570245 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",0.664655304751149 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",0.61166353459894 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",0.743279398323398 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",0.772014551970257 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",0.851286459173694 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",0.757210182221069 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",0.807863467049795 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",0.765944332066557 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",0.763167971659853 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",0.797683099187505 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",0.809900315219175 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",0.965335945567568 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",0.948871888002942 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",0.898307567908866 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",0.934042571676432 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",0.856683577134949 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",0.840773470280444 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",0.834790164707779 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",0.889770028987843 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",0.875577021250011 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",0.863398193330477 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",0.811510565525217 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",0.68987356055217 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",0.903748883459166 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",0.88968436768124 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.743135300513753 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",0.675910311930587 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",0.664493778510772 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",0.687080569093917 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",0.644002272600047 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.675305670686637 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",0.778999479709096 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.67271111273384 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",0.72510462067557 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",0.776131420696253 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",0.922850671363827 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",1.04689177457605 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.01328235588989 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",0.975826038287111 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",0.94984890532573 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",1.01877470370796 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",1.06001424380397 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",1.13760345310695 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",1.10825955740891 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",1.23588419658448 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",1.22474025293421 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",1.23265025443758 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",1.17105840805407 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",1.28164009237757 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.39833197947527 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",1.51396221314539 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",1.41562257751957 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.32674327635306 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",1.47496809283098 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",1.55442692849736 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",1.55317959963126 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",1.58765485819972 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",1.60566195839633 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",1.60439868194655 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",1.70114925477036 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",1.88630411858974 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",1.83595190135856 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",1.92999252407053 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",2.10332339370717 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",1.80504092774171 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",2.14645135553307 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",2.01454661272144 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",2.03353790665349 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",2.14620188975984 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",2.22482347728323 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",2.13301095983344 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",2.09246650656308 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",2.09305201070662 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",2.1873990548478 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",2.42091952261757 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",2.1402739450848 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",2.23318115024265 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",2.24399930754067 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",2.23872179645699 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",2.34372182649384 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",2.3631585136557 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",2.41695654807405 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",2.34395192734402 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",2.42377641832184 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",2.50847631345207 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",2.67280135476417 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",2.48747448486371 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",2.0913182805384 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",0.263013247290764 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",0.285695797617346 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",0.212474894586229 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",0.192095576698917 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.233630864086044 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.255453191478242 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",0.174183910592905 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.19203549385447 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.279186255447683 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.273117888158495 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.231163042098387 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.139490459248571 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.265927350349643 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.190734096039612 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.218343609817239 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.137647226512993 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.253437777990702 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.24355832013488 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.256205503581521 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.24397430447434 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.242711883915512 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.237164688495157 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.201256593516744 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.198947233648578 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.257479838585424 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.333672885043568 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.229568889347411 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.2467667099871 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.25959346114165 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.276061266710985 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.260199055364154 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.242586952448587 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.290777989267077 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.27717782042083 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.268255773329927 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.303294624436973 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.266769361203697 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.290753139138779 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.282721781920379 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.27492394782544 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.244622790699113 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.333116991077661 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.256737058038205 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.258570180516104 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.21758278739605 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.26082915930224 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.377994620720917 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.247702164131811 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.235466539659316 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.21585791616197 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.339184677541416 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.347186759266204 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.232609625936796 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.342677141805485 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.309830548592158 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.292940461048109 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.327101898378592 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.337311386362979 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.350096096547053 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.263642159784343 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.30451057866001 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.342317325564233 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.362258191872801 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.355354451777529 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.338964770926611 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.42589375363508 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",0.357916397881275 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.324900959960605 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.334926625078128 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.336607242659073 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.318233806703242 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.371531544887045 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.403302774329214 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.330992645520868 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.352545536248023 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.358172728656736 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.340040815523202 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.344084067562432 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.378343203342526 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.401404462816121 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.423598180481929 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.406501462419016 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.434135485912225 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.326884374652803 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.344198956854222 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",0.334270649773594 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.341567055937253 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.359470381931713 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.404695062339355 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.344757574121861 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.280283746045408 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.353702088452046 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.42807443749644 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.372427000537577 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.376334257696598 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.380012757510188 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.374978393847114 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.325445109687796 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.284905869908903 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.375909252420153 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.367293236361309 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.379082069143507 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.365698743197617 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.427921932599485 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.397273384296056 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.434557938093297 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.44117760377672 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.404853013839772 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",0.447531917747697 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",0.483040708609755 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",0.46518146606207 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",0.446303878873227 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.424906386551115 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",0.382096593953728 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",0.393284257878736 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.434970688511951 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.423887361084524 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",0.436054392394661 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.491391883575227 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",0.451212460037586 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.465229974874159 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.524267582075808 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.594946112734373 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.493435891730947 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.525004064987774 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.481444853795197 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.49440436590915 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.537472872171013 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.619603227022525 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",0.583644410549365 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.622762086824506 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",0.679193494269275 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",0.566536118454094 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.587132109035404 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.526001814659589 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.615466872105355 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.604265251258974 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.694610105370318 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",0.596606816171408 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.611659355872244 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.535167256842728 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.658605673593159 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.655995729296398 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.599413859430973 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.671773518289558 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.685407728407447 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.704172979399873 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.658346619515966 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.666460186405381 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.698530298212563 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.734590557675214 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.718269810399371 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.71886825595483 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.766536589047263 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.697499698713614 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.654484296835511 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",-0.0195643106645569 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",-0.0553023106052168 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",0.0184085114778114 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",0.00851960684308286 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",0.03728413290535 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",-0.0892968500301361 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",0.0211599644538281 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",-0.0274918476528798 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",0.0498498653173232 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",0.0088340219317288 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",0.0513750117615588 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",0.0356063255117698 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",0.185472201697901 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",0.0293248351533845 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",0.00920458129157757 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",0.079779424247773 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",0.147283613708811 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.0200159277951674 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",0.132449554299316 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",0.0820372676741351 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",0.117820224888529 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",0.132046489086525 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",0.140207203176074 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",0.294418790901757 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",0.235320807436434 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",0.252113414973659 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",0.128796000682989 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.187309248917737 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.222187276284077 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",0.215934533389306 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.292245339254323 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.365143074161222 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.283582731462308 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.352994533622622 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.660039826768435 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.533081745321367 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.409967704559939 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.306051291699173 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",0.368775118047443 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.228447964214293 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.250339831146703 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.317343512441944 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.0902786044953104 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",0.238055256098786 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.255801558561372 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.283249524427022 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.407707438866673 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.226358032329701 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.304967957049121 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.319003637287126 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.250846569382976 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",0.268017535010573 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.322746717888217 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.501340553595436 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.480807190833348 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.520644567458512 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.333337740807679 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.308361262309304 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.386471134249106 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.417579145406385 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.372285564135094 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.437488725995408 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.3741832649182 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.401014134067441 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.413495590969297 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",0.481886068512297 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.427686393179821 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.370880746221571 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.329728756902382 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.275056351960962 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.425045637801308 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.400482979380777 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.447983730254804 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.426217627420038 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.455318063767456 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.407771677384962 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.423127105522829 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.453599126281849 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.43155717569208 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.563931542826702 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.525273713293009 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.491806123499408 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.499907056041772 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.529799282994701 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.496574598126212 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.500519502005727 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.548202891804299 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.516106692640949 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",0.458703230210842 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.466753004476198 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.409589734032272 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.550046721371465 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.461609853604716 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.370708280818021 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",0.299576087811957 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.28448100492091 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.31210221131552 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",0.31855716505142 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",0.390399857385703 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.403090210585342 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.305417820458493 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.346022474348101 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.410432586024115 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.494928716210424 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.649618459422915 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.578724520589509 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.534648370664063 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.544995907314355 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.57124281635843 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.576973512290096 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.672422067617912 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.661955742998658 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.810977478546953 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.842643386217514 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.839366349768713 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.736088058901081 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.857753099600661 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.962277695235631 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",1.02256966250317 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.964409677673672 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",0.861512748507373 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.950701003467679 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",0.95948104275919 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",1.05974467712904 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",1.06265042850683 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.12421767085387 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",1.10999411959481 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.16367639871664 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",1.26670122357546 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",1.25230714472637 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",1.30723059340969 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",1.42412919418667 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",1.2385040990018 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.55931978571432 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.48854405350581 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",1.41807158911367 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",1.54193662950595 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",1.5302128576916 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.53640320299093 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",1.4808073330151 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",1.55788483480051 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.52879340928597 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",1.76492373832166 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.5408601740939 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",1.56140777978538 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.55859116782965 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.53454871544938 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",1.68537455538762 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.69669913761623 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.71842687174324 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.60936188213312 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.70550650007841 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",1.78960857588481 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.90626494997141 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.78997482264067 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",1.43683446855044 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/hist/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/hist/summary.csv deleted file mode 100644 index 6855b7655..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/hist/summary.csv +++ /dev/null @@ -1,469 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -1850,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.377304371,-0.389169316,0.797308126,0.295924079,0.243448978,1,CMIP5 -1850,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.983800204,-2.032836524,0.899230596,0.040873815,0.263013247,1,CMIP5 -1850,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.690581354,-0.330497406,1.643667298,0.257759675,-0.019564311,1,CMIP5 -1851,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.432639741,-0.515806914,0.807820187,0.212050475,0.181797878,1,CMIP5 -1851,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.868901068,-1.89037539,0.900577664,0.039289103,0.294145354,1,CMIP5 -1851,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.768991804,-0.3798488,1.954029339,0.175066291,-0.116040101,1,CMIP5 -1852,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.434873546,-0.383692173,0.922045895,0.210066787,0.15747303,1,CMIP5 -1852,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.873424017,-1.946400807,0.885954406,0.012646543,0.208123705,1,CMIP5 -1852,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.639231508,-0.345792942,1.562708672,0.199651769,-0.019071799,1,CMIP5 -1853,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.404381322,-0.357077171,0.875015647,0.304980882,0.326756177,1,CMIP5 -1853,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.863934872,-1.914483573,0.884186878,0.029195589,0.2149214,1,CMIP5 -1853,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.867424117,-0.370963034,2.236226359,0.278082372,-0.097988052,1,CMIP5 -1854,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.398743189,-0.234036421,0.86294653,0.361432123,0.448699877,1,CMIP5 -1854,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.784687812,-1.644335158,0.930824092,0.103336544,0.246950277,1,CMIP5 -1854,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.879532432,-0.280690736,2.32800058,0.260431093,-0.127612606,1,CMIP5 -1855,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.399408231,-0.311716791,0.814079641,0.3511018,0.357042278,1,CMIP5 -1855,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.780950292,-1.659389631,0.875287124,0.109066341,0.235331774,1,CMIP5 -1855,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.552254649,-0.241174542,1.347672743,0.244322761,-0.01160035,1,CMIP5 -1856,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.363234689,-0.083825254,0.913667977,0.365167903,0.333194397,1,CMIP5 -1856,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.894026836,-2.034994566,0.862993048,0.003485994,0.191202647,1,CMIP5 -1856,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.847702329,-0.328274424,2.278632767,0.363884521,0.052284589,1,CMIP5 -1857,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.503017728,-0.195575609,1.078494493,0.527188797,0.684257407,1,CMIP5 -1857,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.813237281,-1.741677126,0.944095602,0.072441303,0.191679816,1,CMIP5 -1857,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.965937164,-0.410605288,2.674381276,0.456962028,0.087171757,1,CMIP5 -1858,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.410847143,-0.072653831,1.027236964,0.426394578,0.38119506,1,CMIP5 -1858,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.821274727,-1.735461428,0.980707555,0.086406718,0.228501339,1,CMIP5 -1858,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.687759558,-0.392056585,1.780469841,0.342284319,0.070408848,1,CMIP5 -1859,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.547484949,0.040517496,1.810111015,0.590561093,0.559575237,1,CMIP5 -1859,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.766595355,-1.585460351,0.94670029,0.18321486,0.273117888,1,CMIP5 -1859,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.775704034,-0.293555144,2.154977976,0.409342537,0.008834022,1,CMIP5 -1860,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.261861764,0.067164126,0.766259672,0.365852647,0.306810094,1,CMIP5 -1860,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.70622457,-1.548335613,0.956336834,0.114350132,0.231163042,1,CMIP5 -1860,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.671645677,-0.230871886,1.855145787,0.253510717,0.051375012,1,CMIP5 -1861,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.315236797,0.081294173,0.806137972,0.413427174,0.311300777,1,CMIP5 -1861,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.708876108,-1.526561924,0.886810648,0.079871248,0.139490459,1,CMIP5 -1861,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.822154411,-0.241496711,2.332699865,0.335577813,0.035606326,1,CMIP5 -1862,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.347977764,-0.03824961,0.938933711,0.428049813,0.451399545,1,CMIP5 -1862,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.685148329,-1.481604548,0.955258941,0.136328669,0.26592735,1,CMIP5 -1862,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.759675807,-0.205386405,2.208987611,0.29367202,-0.008271051,1,CMIP5 -1863,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.349675193,-0.003844453,0.87673996,0.374898315,0.220058998,1,CMIP5 -1863,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.763196899,-1.745747389,0.960628408,0.11240467,0.190734096,1,CMIP5 -1863,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.637288595,-0.249049202,1.741903235,0.264475327,-0.003792013,1,CMIP5 -1864,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.376979881,-0.11398161,0.85514168,0.322579174,0.227548098,1,CMIP5 -1864,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.775919206,-1.784510762,0.933059053,0.092580663,0.21834361,1,CMIP5 -1864,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.644009813,-0.26181567,1.690093136,0.232018651,-0.081215959,1,CMIP5 -1865,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.36769741,-0.062303797,0.972583647,0.362740885,0.217426622,1,CMIP5 -1865,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.773923825,-1.780455759,0.874496847,0.068412424,0.241033953,1,CMIP5 -1865,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.685654879,-0.255410543,1.756277768,0.296294928,0.037968094,1,CMIP5 -1866,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.350537929,-0.125936494,0.905856408,0.273982304,0.164811489,1,CMIP5 -1866,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.745602182,-1.722924304,0.860301572,0.08698211,0.255233498,1,CMIP5 -1866,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.617280815,-0.265087022,1.62779968,0.188945088,-0.127364011,1,CMIP5 -1867,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.470550059,-0.622752815,0.9384181,0.253769755,0.223542406,1,CMIP5 -1867,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.820970095,-1.936711979,0.912738713,0.067539504,0.271055871,1,CMIP5 -1867,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.567024719,-0.274378667,1.313959131,0.188214251,-0.093679798,1,CMIP5 -1868,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.456260741,-0.098291354,1.152191197,0.407380332,0.388655031,1,CMIP5 -1868,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.789199543,-1.857378405,0.893540578,0.080187142,0.264228735,1,CMIP5 -1868,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.712408789,-0.234392844,1.759086851,0.329129277,0.04548717,1,CMIP5 -1869,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.341975462,0.028388368,0.948463045,0.448776742,0.40904622,1,CMIP5 -1869,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.77384854,-1.80465965,0.871932159,0.092015207,0.270165136,1,CMIP5 -1869,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.80331149,-0.304937786,2.21370643,0.3586552,0.082037268,1,CMIP5 -1870,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.37069187,-0.053560756,0.998847246,0.417362954,0.360532036,1,CMIP5 -1870,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.735274926,-1.669498742,0.877371535,0.091894024,0.249271614,1,CMIP5 -1870,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.765363729,-0.302832354,2.017259845,0.327371949,0.015964845,1,CMIP5 -1871,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.425556737,0.089476026,1.322056451,0.559048395,0.369211167,1,CMIP5 -1871,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.727621822,-1.626837014,0.940402471,0.135577501,0.292575195,1,CMIP5 -1871,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.760740452,-0.203099211,1.961072293,0.425417807,0.118455408,1,CMIP5 -1872,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.425200256,-0.227025991,1.006656086,0.452023024,0.341463738,1,CMIP5 -1872,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.715123341,-1.500098015,0.984309401,0.130043322,0.289594801,1,CMIP5 -1872,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.788814142,-0.188228497,2.31180977,0.324013669,0.083684753,1,CMIP5 -1873,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.358313972,-0.079408381,1.042460499,0.45688001,0.493366068,1,CMIP5 -1873,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.715778899,-1.551150468,0.915499639,0.096557669,0.232746938,1,CMIP5 -1873,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.699671848,-0.312155385,1.89869691,0.36222325,0.116224828,1,CMIP5 -1874,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.341687933,0.031711336,1.001243956,0.45866362,0.342207408,1,CMIP5 -1874,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.792523149,-1.825297258,0.915625419,0.112632187,0.296622732,1,CMIP5 -1874,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.632615365,-0.175163401,1.857009078,0.347951467,0.185994109,1,CMIP5 -1875,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.55953743,-0.442166071,1.073321642,0.463917338,0.585786188,1,CMIP5 -1875,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.819260892,-1.858126315,1.047188594,0.14939227,0.332276437,1,CMIP5 -1875,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.568242071,-0.192444239,1.41595983,0.316548732,0.034885849,1,CMIP5 -1876,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.412961741,0.175629321,1.222093912,0.668304249,0.761210462,1,CMIP5 -1876,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.804428739,-1.813585108,1.027085135,0.132204271,0.321971651,1,CMIP5 -1876,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.874247258,-0.102690174,2.574795648,0.53812643,0.128796001,1,CMIP5 -1877,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.3767653,0.090837922,1.141888489,0.664436658,0.791684885,1,CMIP5 -1877,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.746077196,-1.62996208,1.035282226,0.163705111,0.286013075,1,CMIP5 -1877,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.827236283,-0.083061208,2.527382156,0.502729089,0.110024203,1,CMIP5 -1878,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.409556498,0.22079352,1.260020625,0.722601169,0.732637908,1,CMIP5 -1878,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.762818635,-1.667155257,1.046101526,0.16917977,0.324415077,1,CMIP5 -1878,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.795056377,-0.106334835,2.399793309,0.55545579,0.222187276,1,CMIP5 -1879,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.462369477,0.219113854,1.422192648,0.809879648,0.955634554,1,CMIP5 -1879,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.714383337,-1.529828677,0.930040878,0.174055189,0.310610928,1,CMIP5 -1879,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.933174467,-0.063611592,2.786809291,0.637810984,0.215664244,1,CMIP5 -1880,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.501703002,0.242451138,1.603630095,0.848808285,0.967683467,1,CMIP5 -1880,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.771084616,-1.670136083,1.069654171,0.174740207,0.325476218,1,CMIP5 -1880,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.975667531,-0.083025055,2.869098842,0.676176033,0.243109112,1,CMIP5 -1881,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.378700249,0.392000401,1.386110236,0.82673867,0.825879473,1,CMIP5 -1881,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.738085571,-1.57668819,0.999367431,0.188377301,0.361651127,1,CMIP5 -1881,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.88147525,0.015333971,2.798124443,0.640414072,0.357155129,1,CMIP5 -1882,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.415606778,0.34281627,1.310873846,0.874565198,1.11141745,1,CMIP5 -1882,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.741176109,-1.579825597,0.967145309,0.209083976,0.337478262,1,CMIP5 -1882,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.905328397,0.003385738,2.83183284,0.667588741,0.246984793,1,CMIP5 -1883,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.463033425,0.313840691,1.54625455,0.909206034,1.073220494,1,CMIP5 -1883,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.793895311,-1.722905296,0.998213941,0.159330621,0.317305259,1,CMIP5 -1883,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.897623606,0.086187232,2.877114879,0.751923481,0.352994534,1,CMIP5 -1884,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.482228736,0.601485965,1.79240463,1.256034576,1.416003899,1,CMIP5 -1884,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.796662754,-1.72351895,1.030265696,0.198274184,0.375221942,1,CMIP5 -1884,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.865468502,0.364616938,3.139523279,1.059625012,0.744464232,1,CMIP5 -1885,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.176097576,-2.040621175,1.929831919,0.736299809,0.83637638,1,CMIP5 -1885,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.794727099,-1.632073313,1.01876309,0.145878816,0.367026138,1,CMIP5 -1885,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.340615961,-1.58380881,3.56190499,0.592402146,0.463794855,1,CMIP5 -1886,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.534142741,-0.14608645,1.535000347,0.768219252,0.67673708,1,CMIP5 -1886,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.747507198,-1.533740335,1.023799161,0.186496751,0.324968447,1,CMIP5 -1886,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.859738996,0.038748166,2.706436322,0.583857155,0.292603422,1,CMIP5 -1887,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.532609337,0.199444208,1.53963826,0.819575248,0.596804487,1,CMIP5 -1887,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.761149763,-1.565944624,0.967094484,0.167793028,0.366183994,1,CMIP5 -1887,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.967808401,0.038295869,3.101228627,0.653879986,0.304513454,1,CMIP5 -1888,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.551496353,-0.133236049,1.511680451,0.689247026,0.651496953,1,CMIP5 -1888,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.755941821,-1.569904816,0.99457971,0.173885498,0.287033672,1,CMIP5 -1888,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.95177463,-0.09066404,2.884292104,0.51755216,0.122997692,1,CMIP5 -1889,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.548622778,0.023818986,1.425347341,0.702790893,0.503371923,1,CMIP5 -1889,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.700809834,-1.348270339,0.996027237,0.176645734,0.351515643,1,CMIP5 -1889,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.897088741,-0.090353234,2.773617573,0.52823463,0.188188418,1,CMIP5 -1890,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.415454182,0.24162633,1.421682894,0.766358056,0.496041601,1,CMIP5 -1890,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.721753965,-1.518917151,0.892291491,0.165575308,0.28037003,1,CMIP5 -1890,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.811858881,0.073559328,2.644218726,0.602754692,0.296514564,1,CMIP5 -1891,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.395330695,0.248744138,1.492329613,0.774058892,0.650460588,1,CMIP5 -1891,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.753199113,-1.623756699,0.943373398,0.194242757,0.373606741,1,CMIP5 -1891,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.77078752,0.106333482,2.486490125,0.581813292,0.281690551,1,CMIP5 -1892,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.470229674,-0.097878143,1.280403126,0.603368317,0.423447908,1,CMIP5 -1892,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.784237888,-1.711804711,0.934070891,0.170513528,0.353339296,1,CMIP5 -1892,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.78124392,-0.110367662,2.385230816,0.434925674,0.147417656,1,CMIP5 -1893,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.458426705,0.26633495,1.430262399,0.756730755,0.651962228,1,CMIP5 -1893,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.722102237,-1.465071638,1.031897444,0.192293599,0.3201824,1,CMIP5 -1893,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.727743204,-0.053847408,2.117033983,0.566597713,0.238055256,1,CMIP5 -1894,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.415448465,0.182541335,1.269065571,0.728621107,0.524489835,1,CMIP5 -1894,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.716946528,-1.435355074,1.040410682,0.212161317,0.360893409,1,CMIP5 -1894,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.86118051,-0.178352073,2.634986667,0.518731068,0.255801559,1,CMIP5 -1895,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.450919439,-0.06657289,1.322389742,0.70304836,0.742879695,1,CMIP5 -1895,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.708769958,-1.445920694,0.987317301,0.220343114,0.309517339,1,CMIP5 -1895,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.820819023,-0.376090314,2.422505352,0.484904229,0.279779375,1,CMIP5 -1896,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.481934945,0.058722315,1.317726988,0.659166666,0.785702135,1,CMIP5 -1896,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.7187509,-1.443349071,0.980810858,0.208954675,0.377994621,1,CMIP5 -1896,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.842306592,-0.32248192,2.479605299,0.452401872,0.108742947,1,CMIP5 -1897,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.456172984,0.165522762,1.3001845,0.726645081,0.613938805,1,CMIP5 -1897,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.713269807,-1.424230836,1.032467629,0.204124272,0.328095561,1,CMIP5 -1897,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.870443469,-0.162572863,2.658821614,0.524759319,0.164629513,1,CMIP5 -1898,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.411397283,0.260497902,1.297889805,0.798421639,0.944452917,1,CMIP5 -1898,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.693562221,-1.363855532,1.071690691,0.243556328,0.368497721,1,CMIP5 -1898,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.793882451,-0.10799981,2.452952184,0.557097562,0.292366913,1,CMIP5 -1899,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.418711333,0.201607949,1.392371389,0.68261525,0.534861566,1,CMIP5 -1899,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.672016046,-1.358097337,0.986469592,0.239236679,0.325009797,1,CMIP5 -1899,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.765034003,-0.094539065,2.310299414,0.44550526,0.108903273,1,CMIP5 -1900,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.334252128,0.35057798,1.303179223,0.695312326,0.590031207,1,CMIP5 -1900,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.785926526,-1.744272834,0.920672958,0.180793893,0.401166075,1,CMIP5 -1900,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.798546514,-0.067681986,2.492850877,0.516521357,0.250846569,1,CMIP5 -1901,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.451697455,0.138706907,1.412491965,0.758835997,0.615204354,1,CMIP5 -1901,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.768399146,-1.643747578,1.023335307,0.206831185,0.347186759,1,CMIP5 -1901,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.765050561,-0.022868481,2.257358199,0.554132543,0.220719577,1,CMIP5 -1902,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.466266396,0.307596684,1.435243144,0.880633615,1.11679774,1,CMIP5 -1902,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.714356138,-1.463293373,0.97214083,0.214185312,0.352260283,1,CMIP5 -1902,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.856492112,0.011447787,2.580090996,0.668587277,0.260088559,1,CMIP5 -1903,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.574474467,0.533771133,2.03520667,1.133843738,0.844017664,1,CMIP5 -1903,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.752662894,-1.569501651,1.015303079,0.229189591,0.399198803,1,CMIP5 -1903,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.066615191,0.122915594,3.604708331,0.90660782,0.505940043,1,CMIP5 -1904,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.431283438,0.349360931,1.679146952,0.942978971,0.804630136,1,CMIP5 -1904,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.770214807,-1.607700666,1.064150759,0.210233533,0.403465678,1,CMIP5 -1904,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.733445534,0.146512268,2.412331007,0.734801791,0.465742883,1,CMIP5 -1905,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.491349019,0.440055524,1.612664837,1.034499028,1.194846227,1,CMIP5 -1905,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.740923621,-1.523987415,1.033453229,0.217114743,0.348567032,1,CMIP5 -1905,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.966579015,0.048356284,2.992120398,0.819490705,0.370607953,1,CMIP5 -1906,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.492553457,0.134000745,1.51748077,0.855540949,1.021942851,1,CMIP5 -1906,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.824179735,-1.77019156,1.089498638,0.223577818,0.371887398,1,CMIP5 -1906,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.955459595,-0.237886655,2.940133168,0.634230127,0.248429656,1,CMIP5 -1907,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.531624623,0.347171808,1.733144957,0.977183452,0.983736564,1,CMIP5 -1907,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.779322195,-1.664210259,0.962702818,0.223281161,0.377446503,1,CMIP5 -1907,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.058511815,0.028405028,3.397355096,0.756000822,0.312836544,1,CMIP5 -1908,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.448905447,0.418926166,1.639745581,1.014224056,1.199611804,1,CMIP5 -1908,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.751566814,-1.514240632,1.093793148,0.244276231,0.377411109,1,CMIP5 -1908,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.854464266,0.041515065,2.71957437,0.772150935,0.386471134,1,CMIP5 -1909,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.459554899,0.289941992,1.599516322,0.90068223,0.971710464,1,CMIP5 -1909,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.783852111,-1.664360405,1.069518391,0.246247094,0.361404317,1,CMIP5 -1909,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.919209702,0.015979019,2.947311531,0.656632642,0.258356432,1,CMIP5 -1910,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.411345471,0.472044604,1.583570715,0.904284566,0.873212144,1,CMIP5 -1910,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.818246416,-1.736083409,1.154184167,0.22828162,0.37123443,1,CMIP5 -1910,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.801691134,0.100810181,2.609295445,0.678236114,0.372285564,1,CMIP5 -1911,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.46129331,0.346674218,1.611786099,0.940141911,0.7798062,1,CMIP5 -1911,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.867340791,-1.861870012,1.127946285,0.205663647,0.364555475,1,CMIP5 -1911,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.836066244,0.063594271,2.62923768,0.736718178,0.42702877,1,CMIP5 -1912,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.444078158,0.48603411,1.620874162,1.028515482,1.09597038,1,CMIP5 -1912,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.812261353,-1.684615218,1.067653706,0.216223836,0.362258192,1,CMIP5 -1912,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.00969526,0.128211032,3.267191209,0.814556211,0.374183265,1,CMIP5 -1913,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.462776546,0.342736475,1.646782573,0.960653001,0.9988661,1,CMIP5 -1913,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.762296928,-1.583118757,1.067827468,0.247492637,0.357745596,1,CMIP5 -1913,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.820173413,-0.027796949,2.674548925,0.71533175,0.431142083,1,CMIP5 -1914,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.536702857,0.330651896,1.577523533,0.90053006,0.752460308,1,CMIP5 -1914,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.768606291,-1.567876186,1.082272468,0.220377836,0.387189671,1,CMIP5 -1914,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.977925908,-0.061001216,3.145399708,0.682335563,0.380851813,1,CMIP5 -1915,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.500980759,0.091518209,1.617664494,0.916876141,1.094316981,1,CMIP5 -1915,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.794222863,-1.6621808,1.077660894,0.222082622,0.425893754,1,CMIP5 -1915,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.915750427,-0.024874957,2.839859877,0.696996552,0.305227634,1,CMIP5 -1916,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.42320302,0.368493559,1.491255295,0.918182416,1.102573922,1,CMIP5 -1916,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.819310893,-1.743261156,1.074589967,0.192401237,0.357916398,1,CMIP5 -1916,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.946152046,0.027031138,2.99706414,0.728059114,0.385433507,1,CMIP5 -1917,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.397936114,0.427577447,1.431330718,0.93059402,0.839459462,1,CMIP5 -1917,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.767065639,-1.591652662,1.024936413,0.198014784,0.362801898,1,CMIP5 -1917,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.920719861,0.018217609,2.982854771,0.734766512,0.370880746,1,CMIP5 -1918,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.495936886,0.189298956,1.532631104,0.861903893,0.664655305,1,CMIP5 -1918,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.772215893,-1.61285632,1.030616614,0.209917081,0.373620524,1,CMIP5 -1918,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.945300052,0.080504291,3.022343446,0.654165687,0.284920679,1,CMIP5 -1919,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.514532627,0.193129179,1.62201536,0.944287677,1.042291127,1,CMIP5 -1919,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.761533033,-1.4908509,1.149242592,0.24167483,0.388754956,1,CMIP5 -1919,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.987950026,0.00661715,3.11286637,0.704963335,0.256364779,1,CMIP5 -1920,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.482828165,0.374486726,1.510352137,0.951283331,0.779737283,1,CMIP5 -1920,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.718256802,-1.368671383,1.140329719,0.268549547,0.395433232,1,CMIP5 -1920,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.878559424,-0.020946594,2.848936425,0.685050894,0.358118992,1,CMIP5 -1921,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.514171879,0.205823015,1.609203942,0.92656749,0.772014552,1,CMIP5 -1921,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.707018183,-1.36471703,1.054524489,0.251716532,0.398832292,1,CMIP5 -1921,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.933295959,-0.206948318,2.973921028,0.677031985,0.366222032,1,CMIP5 -1922,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.577566784,0.334214149,1.791664432,0.974216369,0.851286459,1,CMIP5 -1922,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.705855802,-1.33390174,1.108179891,0.262129078,0.403302774,1,CMIP5 -1922,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.96398344,-0.018377346,3.125566142,0.714237411,0.409754358,1,CMIP5 -1923,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.565147406,0.362248639,1.939286256,1.031364515,0.757210182,1,CMIP5 -1923,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.659490045,-1.132183467,1.121262227,0.294646133,0.407263635,1,CMIP5 -1923,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.933031837,0.100640092,3.071469458,0.738999713,0.401292456,1,CMIP5 -1924,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.458645967,0.493730708,1.708812821,1.129381513,1.260401315,1,CMIP5 -1924,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.733153801,-1.369719618,1.205603415,0.287471247,0.43726677,1,CMIP5 -1924,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.828100733,0.056463966,2.667096142,0.844191985,0.474766089,1,CMIP5 -1925,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.553021752,0.393857645,1.84708668,1.118518931,1.336755615,1,CMIP5 -1925,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.743526637,-1.420942818,1.170493119,0.273154091,0.372639525,1,CMIP5 -1925,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.009288018,0.112345634,3.268029453,0.847681914,0.390204212,1,CMIP5 -1926,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.649844591,0.309753402,2.138805619,1.04444146,0.763167972,1,CMIP5 -1926,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.715780883,-1.356647032,1.058966889,0.267930859,0.423249855,1,CMIP5 -1926,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.07094504,0.130783499,3.495452746,0.778691944,0.382890042,1,CMIP5 -1927,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.560184418,0.547123803,2.144553669,1.196356886,1.156369251,1,CMIP5 -1927,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.6929324,-1.318247545,1.051892554,0.295752163,0.412566416,1,CMIP5 -1927,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.02463733,0.134557369,3.462801258,0.902743965,0.466246937,1,CMIP5 -1928,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.520320684,0.619788396,2.058013839,1.153851254,0.907979889,1,CMIP5 -1928,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.710759894,-1.341630609,1.069566189,0.263638991,0.438937832,1,CMIP5 -1928,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.010162975,0.180850614,3.399644525,0.892305369,0.438414785,1,CMIP5 -1929,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.536759199,0.392471102,1.80532787,1.129049564,0.965335946,1,CMIP5 -1929,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.748242588,-1.469129527,1.16667274,0.28182596,0.401404463,1,CMIP5 -1929,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.953440187,0.215889102,3.22957398,0.849352146,0.511465169,1,CMIP5 -1930,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.553740232,0.559616078,1.943207255,1.236430059,1.36266004,1,CMIP5 -1930,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.71640508,-1.328385551,1.170480091,0.294726188,0.42359818,1,CMIP5 -1930,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.000381451,0.17095894,3.271592747,0.943882544,0.506097542,1,CMIP5 -1931,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.519160181,0.657708137,1.923688048,1.236407308,1.317568785,1,CMIP5 -1931,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.711409066,-1.323204486,1.186390601,0.338879025,0.476339312,1,CMIP5 -1931,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.958246085,0.181368786,3.246892626,0.899765358,0.509428613,1,CMIP5 -1932,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.475195126,0.628848626,1.894012713,1.173643806,1.044703362,1,CMIP5 -1932,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.739404705,-1.390185451,1.172255418,0.321706949,0.434135486,1,CMIP5 -1932,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.881751937,0.234774716,2.993746819,0.854230525,0.488032251,1,CMIP5 -1933,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.595123381,0.499779745,2.147316328,1.209337125,0.90411179,1,CMIP5 -1933,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.701799883,-1.296348558,1.150470944,0.32917921,0.432619454,1,CMIP5 -1933,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.015264854,0.228785801,3.443664647,0.882364905,0.525685855,1,CMIP5 -1934,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.524082587,0.609449879,1.944064941,1.212499836,1.320812036,1,CMIP5 -1934,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.676604136,-1.216719536,1.111786692,0.313491909,0.407459269,1,CMIP5 -1934,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.942825206,0.201990663,3.160784325,0.901173126,0.496574598,1,CMIP5 -1935,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.612116357,0.583330945,2.415142689,1.279598954,1.48318278,1,CMIP5 -1935,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.748154106,-1.299923101,1.131482993,0.282496143,0.46660403,1,CMIP5 -1935,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.156227786,0.227081763,3.715065581,0.999455625,0.453616046,1,CMIP5 -1936,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.543314768,0.445490856,1.834900723,1.119261766,0.889770029,1,CMIP5 -1936,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.717976435,-1.351442911,1.110859991,0.293779994,0.42303783,1,CMIP5 -1936,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.949228603,0.172584368,3.186343362,0.827702925,0.475786279,1,CMIP5 -1937,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.576998496,0.501253345,2.116392088,1.173981665,1.227527553,1,CMIP5 -1937,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.767064723,-1.453984455,1.161129969,0.263028659,0.425317354,1,CMIP5 -1937,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.092835445,0.075935967,3.570376372,0.913227704,0.463411455,1,CMIP5 -1938,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.551101445,0.42580325,1.931838877,1.161541102,1.374112467,1,CMIP5 -1938,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.764804128,-1.406726057,1.168687517,0.272718571,0.452535849,1,CMIP5 -1938,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.056505777,-0.026732647,3.338564816,0.891133341,0.45870323,1,CMIP5 -1939,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.536173404,0.438525622,1.805320225,1.067152868,0.811510566,1,CMIP5 -1939,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.717229953,-1.293303308,1.206132499,0.296378653,0.447297504,1,CMIP5 -1939,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.88621976,0.08347041,2.952017644,0.77303644,0.465628763,1,CMIP5 -1940,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.526533164,0.541236822,1.823991345,1.145257441,1.130540149,1,CMIP5 -1940,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.725979222,-1.403816855,1.165227322,0.299079593,0.394874752,1,CMIP5 -1940,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.966439396,0.090121652,3.227201674,0.848424576,0.501657466,1,CMIP5 -1941,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.512954857,0.453203605,1.956836318,1.141466004,1.160509603,1,CMIP5 -1941,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.71630154,-1.351536528,1.148989472,0.304310133,0.443790754,1,CMIP5 -1941,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.015079411,0.00441298,3.308372681,0.839436752,0.536039199,1,CMIP5 -1942,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.555109173,0.208799671,1.806761211,0.934770839,0.889684368,1,CMIP5 -1942,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.710721732,-1.416001768,0.99539274,0.261718712,0.428074437,1,CMIP5 -1942,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.963814009,-0.026739893,3.018108419,0.675114737,0.282086905,1,CMIP5 -1943,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.489021363,0.430991372,1.829575843,0.924768583,0.743135301,1,CMIP5 -1943,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.763923921,-1.52292518,1.136790258,0.274717637,0.399424781,1,CMIP5 -1943,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.71189819,0.037955475,2.242906137,0.652245227,0.370708281,1,CMIP5 -1944,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.523086476,0.23068502,1.749982282,0.990347855,1.046761486,1,CMIP5 -1944,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.748375122,-1.503688614,1.077557499,0.270871188,0.376334258,1,CMIP5 -1944,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.948239667,-0.145581775,2.936794417,0.721651086,0.434283149,1,CMIP5 -1945,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.475319795,0.284979556,1.692694897,0.894081332,0.941188064,1,CMIP5 -1945,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.747591148,-1.475207852,1.122616359,0.289793863,0.380012758,1,CMIP5 -1945,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.781594551,0.012613303,2.416395845,0.606552975,0.284481005,1,CMIP5 -1946,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.42821764,0.512741047,1.637072067,0.949295347,0.797608457,1,CMIP5 -1946,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.782949129,-1.603247176,1.124095539,0.28741972,0.458927738,1,CMIP5 -1946,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.784877549,0.028843718,2.400855527,0.66413482,0.312102211,1,CMIP5 -1947,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.425696785,0.345791325,1.638511895,0.894850319,0.994503713,1,CMIP5 -1947,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.774816983,-1.587249264,1.058791109,0.241078494,0.386953254,1,CMIP5 -1947,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.877319464,-0.041161955,2.581752881,0.656005366,0.318557165,1,CMIP5 -1948,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.443290535,0.269199413,1.572827388,0.851667737,0.822487128,1,CMIP5 -1948,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.777687086,-1.542101801,1.129909043,0.242192419,0.415437092,1,CMIP5 -1948,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.75917048,-0.05695122,2.36458897,0.611720929,0.24933551,1,CMIP5 -1949,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.392993945,0.40226282,1.512324979,0.901367924,0.77899948,1,CMIP5 -1949,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.802593538,-1.615247675,1.124043337,0.244387259,0.43243993,1,CMIP5 -1949,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.856080694,0.042115754,2.781640817,0.659202607,0.273621739,1,CMIP5 -1950,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.416891742,0.263768596,1.60605101,0.884849592,0.768967798,1,CMIP5 -1950,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.801969508,-1.591378644,1.131355378,0.241509572,0.407607312,1,CMIP5 -1950,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.767479686,0.107894542,2.452066149,0.645544455,0.285166248,1,CMIP5 -1951,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.488454289,0.294723695,1.791276334,1.033538689,1.134647018,1,CMIP5 -1951,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.698131171,-1.283024214,1.142196698,0.310840035,0.415256717,1,CMIP5 -1951,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.865103832,0.142213891,2.749653854,0.724926393,0.295269194,1,CMIP5 -1952,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.457234208,0.438339982,1.799734388,1.010870854,1.158737213,1,CMIP5 -1952,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.725221702,-1.404468029,1.152389758,0.315148329,0.425753486,1,CMIP5 -1952,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.815104132,0.019773902,2.577250071,0.697971448,0.31167613,1,CMIP5 -1953,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.552648618,0.476786535,2.047849167,1.197428906,1.277221194,1,CMIP5 -1953,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.693511676,-1.268210485,1.13134547,0.332142655,0.445278672,1,CMIP5 -1953,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.019124961,0.031507823,3.316059679,0.867511833,0.494928716,1,CMIP5 -1954,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.507164246,0.553610247,2.041891107,1.228514638,1.126270925,1,CMIP5 -1954,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.730388997,-1.366659174,1.169968255,0.322216563,0.420020303,1,CMIP5 -1954,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.006677772,0.133589998,3.40855058,0.908611892,0.649618459,1,CMIP5 -1955,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.448973259,0.643807623,1.804910334,1.162912403,1.067885906,1,CMIP5 -1955,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.737864173,-1.391751467,1.120471215,0.304220551,0.434557938,1,CMIP5 -1955,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.908656898,0.191054813,3.075196798,0.860948573,0.527869938,1,CMIP5 -1956,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.477214644,0.500760774,1.896329751,1.112305385,0.975826038,1,CMIP5 -1956,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.801898666,-1.515302137,1.154217378,0.268018267,0.441177604,1,CMIP5 -1956,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.886260135,0.104452041,2.997188359,0.846581262,0.534648371,1,CMIP5 -1957,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.465192833,0.619517186,1.963585397,1.190133844,1.317926382,1,CMIP5 -1957,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.795921273,-1.578626486,1.130434183,0.291561721,0.404853014,1,CMIP5 -1957,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.886311961,0.256538471,2.96535046,0.90081131,0.500632499,1,CMIP5 -1958,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.524704614,0.457155869,1.944959505,1.159770558,1.018774704,1,CMIP5 -1958,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.850770285,-1.707027143,1.146954786,0.257803735,0.447531918,1,CMIP5 -1958,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.012987799,0.143057757,3.373122456,0.904245575,0.54069466,1,CMIP5 -1959,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.523352645,0.596296591,2.02786089,1.159937551,1.060014244,1,CMIP5 -1959,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.869976625,-1.793008408,1.152821502,0.276077217,0.483040709,1,CMIP5 -1959,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.958869266,0.16547546,3.261899843,0.8861529,0.576973512,1,CMIP5 -1960,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.599621843,0.753281396,2.445216305,1.346126711,1.137603453,1,CMIP5 -1960,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.789618885,-1.53415103,1.133425018,0.308385398,0.465181466,1,CMIP5 -1960,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.142517731,0.330561976,3.979367236,1.039969526,0.601376586,1,CMIP5 -1961,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.631894896,0.752661411,2.654278154,1.470294374,1.45524006,1,CMIP5 -1961,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.772148968,-1.482329668,1.162693828,0.32785216,0.446303879,1,CMIP5 -1961,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.193872085,0.309656165,4.136608101,1.144664662,0.661955743,1,CMIP5 -1962,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.587589516,0.642657456,2.342078687,1.516900118,1.673914299,1,CMIP5 -1962,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.792100678,-1.528235126,1.209531776,0.34777189,0.445272887,1,CMIP5 -1962,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.118719642,0.197384462,3.870314195,1.171436131,0.800907544,1,CMIP5 -1963,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.796812331,0.73047064,3.098872883,1.553311333,1.224740253,1,CMIP5 -1963,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.73459997,-1.288871049,1.202101753,0.342856874,0.497009536,1,CMIP5 -1963,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.247693591,0.373493059,4.38774383,1.212664503,0.842643386,1,CMIP5 -1964,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.961890106,0.789417889,3.918444727,1.751853893,1.365822623,1,CMIP5 -1964,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.680802707,-1.071723104,1.228372663,0.382709771,0.441642937,1,CMIP5 -1964,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.41673102,0.499050117,4.990167773,1.37138841,0.83936635,1,CMIP5 -1965,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.92190742,0.87234154,3.8163566,1.84543988,1.857414077,1,CMIP5 -1965,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.672937782,-1.069780363,1.24357317,0.4062933,0.52785832,1,CMIP5 -1965,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.394797467,0.561846852,4.886136988,1.441386584,0.804812325,1,CMIP5 -1966,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.59472809,0.901557835,2.479010827,1.605162212,1.455583947,1,CMIP5 -1966,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.73796653,-1.314931694,1.231859646,0.382153629,0.423887361,1,CMIP5 -1966,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.028281565,0.489217694,3.793942797,1.225310319,0.778922282,1,CMIP5 -1967,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.679661796,0.919912783,2.983015694,1.677788185,1.398331979,1,CMIP5 -1967,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.811275424,-1.534049219,1.216970057,0.355771122,0.543268759,1,CMIP5 -1967,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.258418168,0.376644038,4.517064731,1.324323264,0.874226339,1,CMIP5 -1968,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.705888166,0.819451487,3.021230335,1.715773305,1.707760406,1,CMIP5 -1968,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.783672392,-1.43221226,1.271469131,0.39177439,0.491391884,1,CMIP5 -1968,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.261188793,0.350565999,4.453442603,1.326346544,0.790165758,1,CMIP5 -1969,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.8638161,1.029080923,3.756597968,1.871273255,1.653635357,1,CMIP5 -1969,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.793401842,-1.432082151,1.195990265,0.366783811,0.491949013,1,CMIP5 -1969,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.4580107,0.607606083,5.188679814,1.506749613,0.93015712,1,CMIP5 -1970,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.881770276,1.072223718,3.79948073,1.877717601,1.536981166,1,CMIP5 -1970,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.755058881,-1.297598426,1.319599561,0.405601449,0.51920069,1,CMIP5 -1970,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.409903245,0.553023007,5.09707931,1.474437016,0.932069866,1,CMIP5 -1971,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.786583082,0.955791875,3.505967784,1.871982639,1.825405127,1,CMIP5 -1971,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.644858763,-0.952764892,1.224694577,0.445250141,0.524267582,1,CMIP5 -1971,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.207734255,0.659140379,4.458732641,1.429004726,0.950701003,1,CMIP5 -1972,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.866609457,1.148809174,3.91580228,2.003910015,2.142644751,1,CMIP5 -1972,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.684155349,-1.045346542,1.31278642,0.455464756,0.594946113,1,CMIP5 -1972,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.357946342,0.614835248,4.96114899,1.550801609,1.049851013,1,CMIP5 -1973,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.088553105,0.984986208,4.631161612,2.162342173,2.158738143,1,CMIP5 -1973,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.685238415,-1.133060392,1.158681302,0.451125129,0.576057589,1,CMIP5 -1973,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.626022252,0.408928615,5.764222116,1.713423407,1.071248645,1,CMIP5 -1974,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.891854029,1.055348908,3.914671682,2.039502447,1.910282344,1,CMIP5 -1974,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.70901806,-1.118946935,1.280140444,0.459672254,0.572726959,1,CMIP5 -1974,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.365680041,0.654646267,5.033618572,1.582135218,1.082655948,1,CMIP5 -1975,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.956729133,1.173049345,4.19485096,2.109911117,1.73736438,1,CMIP5 -1975,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.681191407,-1.031705319,1.273340697,0.481972309,0.540176699,1,CMIP5 -1975,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.400687576,0.632873252,5.226556292,1.630234905,1.175371156,1,CMIP5 -1976,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.963352919,1.187521879,4.246593124,2.196962075,2.229875479,1,CMIP5 -1976,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.726363221,-1.110347511,1.365630627,0.483877478,0.593758442,1,CMIP5 -1976,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.450241622,0.761951985,5.356940549,1.715524967,1.173400088,1,CMIP5 -1977,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.865587974,1.361690812,3.963518275,2.19763271,2.083343119,1,CMIP5 -1977,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.732256043,-1.137898038,1.400851015,0.532100596,0.614446193,1,CMIP5 -1977,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.355858867,0.73876925,5.101416747,1.668016331,1.20180502,1,CMIP5 -1978,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.894958086,1.376830876,4.108665193,2.334412029,2.46945191,1,CMIP5 -1978,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.670243472,-0.88941951,1.414695004,0.552135453,0.621587997,1,CMIP5 -1978,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.336121253,0.784937103,4.998084625,1.784753736,1.266701224,1,CMIP5 -1979,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.352529892,1.279666748,5.717338863,2.458716481,2.153079032,1,CMIP5 -1979,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.655421622,-0.795327276,1.392030895,0.538770742,0.583644411,1,CMIP5 -1979,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.788428774,0.844933737,6.512666027,1.922353169,1.266580243,1,CMIP5 -1980,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.21876628,1.403999224,5.378228068,2.524427939,2.3943288,1,CMIP5 -1980,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.662591697,-0.828005988,1.415641338,0.562314765,0.622762087,1,CMIP5 -1980,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.668294994,0.873165406,6.206234092,1.964528439,1.349370504,1,CMIP5 -1981,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.240427731,1.473150664,5.521893666,2.563350928,2.372178373,1,CMIP5 -1981,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.679734863,-0.872828213,1.413553625,0.539992306,0.679193494,1,CMIP5 -1981,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.711172953,0.873168363,6.394721913,2.025731573,1.424129194,1,CMIP5 -1982,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.092964029,1.422546177,5.003494721,2.51736077,2.464487431,1,CMIP5 -1982,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.74388135,-1.082489328,1.42929496,0.501232381,0.578451974,1,CMIP5 -1982,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.6086867,0.931386731,6.08598386,2.018544883,1.429121788,1,CMIP5 -1983,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.133481688,1.576888092,5.251642,2.760582993,2.959521528,1,CMIP5 -1983,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.702074142,-1.002954918,1.415932898,0.561223,0.642577109,1,CMIP5 -1983,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.619197039,1.025649992,6.254596582,2.201662228,1.659269994,1,CMIP5 -1984,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.114088108,1.524607477,5.06886869,2.653953366,2.687908779,1,CMIP5 -1984,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.742114904,-1.060143054,1.539162652,0.551219556,0.605498602,1,CMIP5 -1984,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.594148808,1.011569151,6.129011744,2.105245843,1.521954141,1,CMIP5 -1985,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.258075321,1.508334508,5.590353943,2.666519186,2.570324609,1,CMIP5 -1985,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.721373564,-0.993865811,1.489175244,0.539397203,0.615466872,1,CMIP5 -1985,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.761188845,0.926075392,6.5842198,2.129525932,1.543010893,1,CMIP5 -1986,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.19065079,1.500791628,5.326436883,2.664154599,2.35210612,1,CMIP5 -1986,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.698984425,-0.839429324,1.586134271,0.576610534,0.611107735,1,CMIP5 -1986,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.613818847,0.889683702,6.16586602,2.090072737,1.54193663,1,CMIP5 -1987,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.200704384,1.528557808,5.480812866,2.781499042,2.751551839,1,CMIP5 -1987,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.77247422,-1.101511656,1.580305261,0.57397568,0.694610105,1,CMIP5 -1987,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.736420811,0.902563318,6.582324648,2.210051895,1.63351746,1,CMIP5 -1988,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.392949608,1.692110629,6.220232294,2.882230684,2.421348481,1,CMIP5 -1988,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.715521483,-0.883181584,1.532650705,0.589107146,0.672374447,1,CMIP5 -1988,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.870324077,1.01973649,7.103413919,2.29557877,1.691115304,1,CMIP5 -1989,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.20663641,1.649932913,5.602349788,2.85037648,2.929216761,1,CMIP5 -1989,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.693347736,-0.877130927,1.533927865,0.620215146,0.674388344,1,CMIP5 -1989,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.712762545,0.975544124,6.4794803,2.232597311,1.538305837,1,CMIP5 -1990,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.258279794,1.533911737,5.645878065,2.802282493,2.835821307,1,CMIP5 -1990,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.753892434,-1.049026877,1.579445626,0.593246273,0.664855047,1,CMIP5 -1990,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.806509676,0.869056885,6.69490495,2.211638657,1.530718724,1,CMIP5 -1991,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.179947515,1.692872547,5.487175548,2.823698364,2.82904977,1,CMIP5 -1991,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.728364735,-0.989487792,1.506796952,0.605422338,0.66679203,1,CMIP5 -1991,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.702152852,1.013853221,6.47666327,2.220778821,1.528793409,1,CMIP5 -1992,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.423259185,1.862647134,6.413574274,3.102994267,2.879586285,1,CMIP5 -1992,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.679715453,-0.880906903,1.448337223,0.61974412,0.655995729,1,CMIP5 -1992,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.887609611,1.24432814,7.294481331,2.485493654,1.975350831,1,CMIP5 -1993,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.957814541,1.709698197,4.675028802,2.71396389,2.440722678,1,CMIP5 -1993,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.721716532,-0.994333102,1.413657019,0.586623352,0.669382274,1,CMIP5 -1993,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.419040593,1.133313223,5.669361944,2.129735846,1.682540808,1,CMIP5 -1994,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.08013986,1.630354226,5.19904197,2.822403834,2.889725806,1,CMIP5 -1994,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.715008535,-0.935091588,1.504101438,0.617200407,0.671773518,1,CMIP5 -1994,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.578754771,0.980552444,6.134133754,2.207719624,1.638103379,1,CMIP5 -1995,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.321413448,1.780086596,6.037960779,2.977726157,2.994738447,1,CMIP5 -1995,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.716131168,-0.866353126,1.619828966,0.646867117,0.703690844,1,CMIP5 -1995,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.845166469,1.076395406,6.90431359,2.333544726,1.614444675,1,CMIP5 -1996,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.195448318,1.701338091,5.549395249,2.84873479,2.523621118,1,CMIP5 -1996,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.67216406,-0.620963273,1.580003425,0.657484199,0.739241614,1,CMIP5 -1996,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.583573293,1.063571396,6.170358589,2.193909887,1.706090071,1,CMIP5 -1997,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.314717382,1.639524582,5.971790444,2.964077717,2.913883572,1,CMIP5 -1997,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.691017264,-0.707220314,1.627660276,0.662585035,0.65834662,1,CMIP5 -1997,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.745553801,0.984385697,6.679010939,2.304170195,1.75419466,1,CMIP5 -1998,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.299135664,1.860886407,5.991800083,3.021252093,2.700516059,1,CMIP5 -1998,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.692041689,-0.721715572,1.689998458,0.67901165,0.690128732,1,CMIP5 -1998,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.716274014,1.170757184,6.713515478,2.344879093,1.768639341,1,CMIP5 -1999,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.446317154,1.934831229,6.565031288,3.192969296,3.24829322,1,CMIP5 -1999,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.673441792,-0.749844887,1.601952946,0.707381409,0.74221626,1,CMIP5 -1999,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.916878331,1.192615545,7.314876255,2.488158251,1.845696924,1,CMIP5 -2000,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.408925888,1.849319823,6.40850084,3.136238627,3.269887267,1,CMIP5 -2000,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.632358295,-0.570620247,1.54590405,0.705602442,0.734590558,1,CMIP5 -2000,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.824961221,1.146249355,6.979121341,2.433181708,1.858073767,1,CMIP5 -2001,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.250438301,1.898423139,5.948714107,3.069937041,2.867416575,1,CMIP5 -2001,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.660542214,-0.699013032,1.538623843,0.708821979,0.734991075,1,CMIP5 -2001,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.691293521,1.163432638,6.647727381,2.363676988,1.819648395,1,CMIP5 -2002,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.430703747,1.987277227,6.587582212,3.223311544,3.242092158,1,CMIP5 -2002,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.658512388,-0.64480185,1.597381463,0.713624854,0.760033846,1,CMIP5 -2002,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.866239498,1.218721839,7.232383971,2.512286702,1.860179837,1,CMIP5 -2003,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.419662829,1.966314751,6.518197001,3.291472299,3.377686223,1,CMIP5 -2003,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.711301452,-0.745523131,1.68554982,0.712025881,0.766536589,1,CMIP5 -2003,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.88692942,1.26055241,7.263720252,2.582154999,1.915130049,1,CMIP5 -2004,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.438230031,2.118872712,6.733292424,3.337180721,3.360173308,1,CMIP5 -2004,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.718464288,-0.692285765,1.746169097,0.72220453,0.772024658,1,CMIP5 -2004,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.910572548,1.34684757,7.425578285,2.617781978,1.935950806,1,CMIP5 -2005,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.608971426,1.983698877,7.135026896,3.382102257,3.454229037,1,CMIP5 -2005,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.651806355,-0.576153123,1.650814112,0.725339177,0.748926187,1,CMIP5 -2005,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,2.027775235,1.153018727,7.711179864,2.659348215,2.013086704,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp45/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp45/ensemble_mean_model.csv deleted file mode 100644 index 0afd1a893..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp45/ensemble_mean_model.csv +++ /dev/null @@ -1,7434 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",12.048399375097 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",13.2507117412993 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",12.6908699037694 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",12.4468176069609 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",13.4271871221414 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",14.207004499017 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",14.5617929122913 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",13.6434905597904 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",13.2289912757709 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",13.7128106835805 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",14.4377034077027 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",13.8723230035334 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",13.6902546308308 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",14.9611235669831 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",15.1035063488994 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",16.0655729823014 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",14.0857387029693 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",14.6063383551924 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",14.8144363903579 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",14.6288127701102 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",14.2254322386561 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",15.0360847048879 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",15.1589912612839 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",15.5542544310536 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",15.2844253889873 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",15.7264446260884 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",15.4505183584934 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",15.3297087738597 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",16.1420724330792 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",16.2275680527912 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",16.8392595180705 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",15.6035668830448 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",15.2540833281065 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",16.585541942254 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",15.7584818725388 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",15.2001463330457 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",16.9021206486845 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",17.8458379787958 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",16.2546846189384 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",16.1499320753332 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",17.4195444291699 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",16.5133004646729 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",16.9817735608147 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",17.3290865098678 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",15.9250982846146 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",16.0103954123431 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",17.3039388561386 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",17.1798173367139 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",15.8607036433531 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",16.2236942576273 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",17.0413051484779 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",16.8138237308168 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",15.8109333792062 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",15.7005926459658 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",15.8805800543242 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",15.8033042437719 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",15.5651666879265 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",16.4421314841 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",16.7621838002436 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",15.8799173472176 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",15.5810204347459 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",16.4114932859857 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",15.2489289395 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",15.2441587289263 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",15.7981978774195 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",14.6647430206261 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",14.7727946930879 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",15.0051151532203 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",14.7753766896165 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",14.8848418170906 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",14.4585834837844 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",13.6501608508846 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",12.611316237631 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",13.1156555546166 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",13.9629874185282 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",12.3051103380856 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",12.5614755408447 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",12.8271362512554 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",13.6645867360155 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",12.321208998401 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",12.4951167893906 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",13.2923022148316 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",13.3657458495069 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",12.9242356482993 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",12.4710416326696 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",12.8438944171937 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",12.8324219006897 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",13.1499946677801 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",12.355007060835 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",11.6084274867622 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",13.1544127151571 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",12.4239334021415 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",12.7809788613584 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",12.6587174039091 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",12.4175720542154 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",7.32413506452735 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",7.53754769069162 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",7.00327162971547 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",7.4575781099894 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",7.77006809277589 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",8.40554742736923 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",8.7205822828301 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",8.16620484158611 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",7.73214128066091 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",7.56482510236053 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",8.56243500618971 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",8.32367273063824 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",7.69641681664455 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",8.08357715694479 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",8.32972211095543 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",8.8108021237703 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",7.78610163985899 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",8.58859142833798 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",8.76622014407192 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",8.6019555483555 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",8.18720357962678 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",8.06271712720339 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",8.39497162724521 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",8.38894489318096 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",8.29630756473918 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",8.95232421996948 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",8.69567989693851 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",8.96844269050112 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",8.30352888864613 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",8.38370794718807 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",8.93099994204277 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",8.90520585994157 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",7.8561974542784 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",9.65568852853875 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",8.50388311920759 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",7.93777774972114 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",8.55900692965058 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",9.28298215917888 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",8.89594637326982 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",8.82504944765258 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",9.6739923624793 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",8.76625694423295 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",9.36090791555307 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",9.70823632770956 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",8.2735735575668 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",8.54376317063885 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",8.99858768394883 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",9.241092252799 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",8.38667177554188 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",8.23058813870085 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",9.58857635794447 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",9.60239906458408 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",9.14485983170265 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",8.63036527267152 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",8.86900582461343 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",8.95238649716508 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",8.1691969777561 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",8.85985107686154 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",9.03434328656298 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",9.20032616672139 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",8.68107872535401 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",9.09084285687221 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",8.52903744466317 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",9.25551508514158 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",8.79106025276792 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",8.8951141234742 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",8.37651210031568 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",9.56582253530077 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",8.91082496145286 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",8.31783565894238 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",9.28455041219513 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",8.12533967815187 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",7.98702202674401 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",7.67213437192725 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",8.9298591370508 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",8.00286024989547 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",8.24504777120446 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",8.01074114591937 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",8.49099173972023 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",8.38776728802796 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",8.01046089853921 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",8.21422622095009 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",8.31491429231283 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",8.48170960679554 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",7.76977369148765 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",8.08780068311852 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",7.86438407471702 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",8.75852324885318 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",8.07677478871727 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",7.67882350889006 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",8.44711179386306 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",8.00427564070436 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",9.13754509200231 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",8.06782951880509 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",8.22557199367415 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",4.80483543305171 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",5.79374594897421 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",5.7614276128396 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",5.07078870945733 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",5.74082594180505 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",5.89288432603197 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",5.93654906378337 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",5.5665438426009 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",5.5805110772006 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",6.22772373995058 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",5.96849581877108 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",5.63972424592148 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",6.07567853236008 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",6.96190747369288 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",6.86157265804866 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",7.34738338368998 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",6.38178365524891 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",6.11091681112421 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",6.14356983382375 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",6.12017076287833 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",6.1262148860018 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",7.05719959058115 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",6.85266788715953 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",7.25278172254984 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",7.07489054263168 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",6.86985944468994 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",6.84735111436616 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",6.45834518347353 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",7.923074581644 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",7.92939936712311 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",8.00061776928152 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",6.79370639219418 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",7.47791641466966 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",7.03414179451887 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",7.34329203808318 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",7.34381119755792 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",8.42952650822911 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",8.65790924122519 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",7.45214686683321 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",7.41748572474406 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",7.84784916435184 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",7.83774136655804 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",7.71949686669881 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",7.7239215812069 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",7.73619034737273 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",7.55525009378819 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",8.39748224613193 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",8.03495213078759 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",7.56062879677271 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",8.07628592155722 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",7.55472829898616 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",7.31426390806135 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",6.7645688960901 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",7.16104334450264 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",7.1055986937964 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",6.94644864385102 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",7.48000227621412 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",7.67462778437909 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",7.82200187436055 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",6.77875881584521 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",6.9918724625638 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",7.4166582319772 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",6.81037483725891 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",6.09040737654455 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",7.1001765079117 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",5.86739412288752 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",6.48570383366161 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",5.54652853188681 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",5.96225668142866 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",6.65521071982902 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",5.27840506346366 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",5.61342763262844 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",4.71360567317012 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",5.52656329239108 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",5.13335796747306 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",4.39264521038723 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",4.40987761549052 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",4.90547989965168 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",5.2678347657317 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",4.02976591417789 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",4.57465013619409 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",5.16904293421165 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",5.1431587496384 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",4.53865156550882 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",4.78759380430293 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",4.84632866112195 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",5.05483970874084 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",4.49127365161573 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",4.36963748554332 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",4.01688575208241 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",4.80225940063261 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",4.50974993119658 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",3.75012870085549 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",4.68132027862655 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",4.28554155661672 -"CanESM2","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",7.36088038769236 -"CanESM2","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",6.92567693773245 -"CanESM2","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",7.31491867118468 -"CanESM2","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",7.78987757652061 -"CanESM2","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",7.54498750981765 -"CanESM2","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",7.0817802366967 -"CanESM2","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",7.92380407041356 -"CanESM2","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",7.44335193434203 -"CanESM2","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",8.02989786844052 -"CanESM2","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",8.61605052171119 -"CanESM2","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",7.63969889168159 -"CanESM2","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",7.63215614420132 -"CanESM2","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",7.77251372662269 -"CanESM2","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",8.02152934263282 -"CanESM2","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",8.47663280248062 -"CanESM2","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",8.7147965415068 -"CanESM2","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",8.2122705441274 -"CanESM2","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",8.01532776076314 -"CanESM2","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",8.06764502914165 -"CanESM2","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",8.06407809458539 -"CanESM2","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",8.35356063661361 -"CanESM2","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",8.48927839655465 -"CanESM2","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",8.31950296256806 -"CanESM2","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",8.87476112288767 -"CanESM2","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",8.80889895084811 -"CanESM2","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",8.15576979272203 -"CanESM2","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",8.85794452381872 -"CanESM2","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",8.65558827999441 -"CanESM2","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",8.93674886601268 -"CanESM2","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",8.98688470702327 -"CanESM2","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",8.69015109151117 -"CanESM2","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",8.94605168446121 -"CanESM2","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",8.70926699078539 -"CanESM2","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",8.85379312715969 -"CanESM2","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",8.98359206634749 -"CanESM2","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",9.23460238489058 -"CanESM2","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",9.35264278438143 -"CanESM2","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",9.61425943006583 -"CanESM2","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",9.39233874628378 -"CanESM2","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",9.55609397550769 -"CanESM2","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",9.39454735793556 -"CanESM2","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",8.95062644291789 -"CanESM2","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",9.33115561339632 -"CanESM2","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",9.42027371744721 -"CanESM2","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",9.22553442082875 -"CanESM2","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",8.99530938397465 -"CanESM2","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",9.22629201562456 -"CanESM2","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",9.02044214568158 -"CanESM2","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",8.99952428490333 -"CanESM2","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",8.81001506623993 -"CanESM2","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",8.78806910475936 -"CanESM2","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",8.57884860644103 -"CanESM2","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",8.60956350486108 -"CanESM2","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",8.70967832019512 -"CanESM2","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",8.67168360425335 -"CanESM2","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",8.97823787653911 -"CanESM2","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",8.55370871443014 -"CanESM2","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",8.25126439391164 -"CanESM2","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",8.0132570759286 -"CanESM2","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",7.77763038818038 -"CanESM2","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",8.0037503753512 -"CanESM2","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",8.16097491461323 -"CanESM2","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",7.9528941508186 -"CanESM2","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",7.82070589133803 -"CanESM2","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",7.66814078289221 -"CanESM2","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",7.68128015051551 -"CanESM2","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",7.16360604519393 -"CanESM2","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",7.01022875056261 -"CanESM2","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",6.63877088647598 -"CanESM2","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",6.55010087746461 -"CanESM2","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",6.58390542571956 -"CanESM2","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",6.56533388058833 -"CanESM2","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",6.5872424079731 -"CanESM2","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",6.30156611132782 -"CanESM2","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",6.16161807574019 -"CanESM2","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",5.89433751766912 -"CanESM2","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",5.98972070785934 -"CanESM2","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",5.79794516664648 -"CanESM2","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",5.64372426792783 -"CanESM2","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",5.7399290028275 -"CanESM2","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",5.59976482990106 -"CanESM2","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",5.4594974903892 -"CanESM2","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",5.05341130511818 -"CanESM2","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",5.08014437442026 -"CanESM2","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",5.44725074769297 -"CanESM2","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",5.70186387513413 -"CanESM2","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",5.41817916151383 -"CanESM2","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",5.7512784413347 -"CanESM2","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",5.46814721755934 -"CanESM2","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",5.28313009039109 -"CanESM2","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",4.82365308035149 -"CanESM2","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",5.08422201699769 -"CanESM2","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",5.59382172154995 -"CanESM2","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",5.45019823709266 -"CanESM2","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",4.98974771774045 -"CanESM2","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",5.38499049326346 -"CanESM2","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",4.99057438735587 -"CanESM2","fgco2","ocean","fgco2","rcp45",2103,"Simulated","PgC/yr","global",4.98380839736331 -"CanESM2","fgco2","ocean","fgco2","rcp45",2104,"Simulated","PgC/yr","global",4.98036635453735 -"CanESM2","fgco2","ocean","fgco2","rcp45",2105,"Simulated","PgC/yr","global",5.09813056616074 -"CanESM2","fgco2","ocean","fgco2","rcp45",2106,"Simulated","PgC/yr","global",5.3236654227628 -"CanESM2","fgco2","ocean","fgco2","rcp45",2107,"Simulated","PgC/yr","global",4.52162877930067 -"CanESM2","fgco2","ocean","fgco2","rcp45",2108,"Simulated","PgC/yr","global",4.9464366917301 -"CanESM2","fgco2","ocean","fgco2","rcp45",2109,"Simulated","PgC/yr","global",4.66700286479128 -"CanESM2","fgco2","ocean","fgco2","rcp45",2110,"Simulated","PgC/yr","global",4.39692199125071 -"CanESM2","fgco2","ocean","fgco2","rcp45",2111,"Simulated","PgC/yr","global",4.02943002450913 -"CanESM2","fgco2","ocean","fgco2","rcp45",2112,"Simulated","PgC/yr","global",4.45317173367446 -"CanESM2","fgco2","ocean","fgco2","rcp45",2113,"Simulated","PgC/yr","global",4.69157623187031 -"CanESM2","fgco2","ocean","fgco2","rcp45",2114,"Simulated","PgC/yr","global",5.28659174155294 -"CanESM2","fgco2","ocean","fgco2","rcp45",2115,"Simulated","PgC/yr","global",5.0571123785177 -"CanESM2","fgco2","ocean","fgco2","rcp45",2116,"Simulated","PgC/yr","global",5.59680564234644 -"CanESM2","fgco2","ocean","fgco2","rcp45",2117,"Simulated","PgC/yr","global",4.19403699082332 -"CanESM2","fgco2","ocean","fgco2","rcp45",2118,"Simulated","PgC/yr","global",4.14459947395686 -"CanESM2","fgco2","ocean","fgco2","rcp45",2119,"Simulated","PgC/yr","global",4.11899666924353 -"CanESM2","fgco2","ocean","fgco2","rcp45",2120,"Simulated","PgC/yr","global",4.21636821153975 -"CanESM2","fgco2","ocean","fgco2","rcp45",2121,"Simulated","PgC/yr","global",3.60652612605917 -"CanESM2","fgco2","ocean","fgco2","rcp45",2122,"Simulated","PgC/yr","global",4.14149779173403 -"CanESM2","fgco2","ocean","fgco2","rcp45",2123,"Simulated","PgC/yr","global",4.38023875114802 -"CanESM2","fgco2","ocean","fgco2","rcp45",2124,"Simulated","PgC/yr","global",3.09644869114156 -"CanESM2","fgco2","ocean","fgco2","rcp45",2125,"Simulated","PgC/yr","global",3.99014539201651 -"CanESM2","fgco2","ocean","fgco2","rcp45",2126,"Simulated","PgC/yr","global",3.5956045057896 -"CanESM2","fgco2","ocean","fgco2","rcp45",2127,"Simulated","PgC/yr","global",3.96601488366003 -"CanESM2","fgco2","ocean","fgco2","rcp45",2128,"Simulated","PgC/yr","global",3.5056941581221 -"CanESM2","fgco2","ocean","fgco2","rcp45",2129,"Simulated","PgC/yr","global",3.98816561855745 -"CanESM2","fgco2","ocean","fgco2","rcp45",2130,"Simulated","PgC/yr","global",4.04710482250633 -"CanESM2","fgco2","ocean","fgco2","rcp45",2131,"Simulated","PgC/yr","global",3.34455095977875 -"CanESM2","fgco2","ocean","fgco2","rcp45",2132,"Simulated","PgC/yr","global",4.09417875502086 -"CanESM2","fgco2","ocean","fgco2","rcp45",2133,"Simulated","PgC/yr","global",3.69694562199385 -"CanESM2","fgco2","ocean","fgco2","rcp45",2134,"Simulated","PgC/yr","global",4.14834622586613 -"CanESM2","fgco2","ocean","fgco2","rcp45",2135,"Simulated","PgC/yr","global",3.47467176534375 -"CanESM2","fgco2","ocean","fgco2","rcp45",2136,"Simulated","PgC/yr","global",3.56016299572071 -"CanESM2","fgco2","ocean","fgco2","rcp45",2137,"Simulated","PgC/yr","global",3.41043942481417 -"CanESM2","fgco2","ocean","fgco2","rcp45",2138,"Simulated","PgC/yr","global",2.79792514651337 -"CanESM2","fgco2","ocean","fgco2","rcp45",2139,"Simulated","PgC/yr","global",3.48164386568517 -"CanESM2","fgco2","ocean","fgco2","rcp45",2140,"Simulated","PgC/yr","global",3.97133085949561 -"CanESM2","fgco2","ocean","fgco2","rcp45",2141,"Simulated","PgC/yr","global",3.97657441818159 -"CanESM2","fgco2","ocean","fgco2","rcp45",2142,"Simulated","PgC/yr","global",3.23323187446969 -"CanESM2","fgco2","ocean","fgco2","rcp45",2143,"Simulated","PgC/yr","global",4.1458779151748 -"CanESM2","fgco2","ocean","fgco2","rcp45",2144,"Simulated","PgC/yr","global",4.73378930248173 -"CanESM2","fgco2","ocean","fgco2","rcp45",2145,"Simulated","PgC/yr","global",3.9296754009361 -"CanESM2","fgco2","ocean","fgco2","rcp45",2146,"Simulated","PgC/yr","global",3.42487327683929 -"CanESM2","fgco2","ocean","fgco2","rcp45",2147,"Simulated","PgC/yr","global",3.72829779133037 -"CanESM2","fgco2","ocean","fgco2","rcp45",2148,"Simulated","PgC/yr","global",3.48258751684995 -"CanESM2","fgco2","ocean","fgco2","rcp45",2149,"Simulated","PgC/yr","global",3.95477574204221 -"CanESM2","fgco2","ocean","fgco2","rcp45",2150,"Simulated","PgC/yr","global",4.18121302773928 -"CanESM2","fgco2","ocean","fgco2","rcp45",2151,"Simulated","PgC/yr","global",3.35394346408177 -"CanESM2","fgco2","ocean","fgco2","rcp45",2152,"Simulated","PgC/yr","global",3.49010998752833 -"CanESM2","fgco2","ocean","fgco2","rcp45",2153,"Simulated","PgC/yr","global",3.70599386630879 -"CanESM2","fgco2","ocean","fgco2","rcp45",2154,"Simulated","PgC/yr","global",3.48807339445959 -"CanESM2","fgco2","ocean","fgco2","rcp45",2155,"Simulated","PgC/yr","global",4.12108506842698 -"CanESM2","fgco2","ocean","fgco2","rcp45",2156,"Simulated","PgC/yr","global",3.34573971514217 -"CanESM2","fgco2","ocean","fgco2","rcp45",2157,"Simulated","PgC/yr","global",3.77620006462532 -"CanESM2","fgco2","ocean","fgco2","rcp45",2158,"Simulated","PgC/yr","global",2.96539147612673 -"CanESM2","fgco2","ocean","fgco2","rcp45",2159,"Simulated","PgC/yr","global",3.30676146289784 -"CanESM2","fgco2","ocean","fgco2","rcp45",2160,"Simulated","PgC/yr","global",3.36505559716028 -"CanESM2","fgco2","ocean","fgco2","rcp45",2161,"Simulated","PgC/yr","global",3.68318079302002 -"CanESM2","fgco2","ocean","fgco2","rcp45",2162,"Simulated","PgC/yr","global",3.13189744292541 -"CanESM2","fgco2","ocean","fgco2","rcp45",2163,"Simulated","PgC/yr","global",3.19595598229595 -"CanESM2","fgco2","ocean","fgco2","rcp45",2164,"Simulated","PgC/yr","global",2.66043171806415 -"CanESM2","fgco2","ocean","fgco2","rcp45",2165,"Simulated","PgC/yr","global",2.83522276383199 -"CanESM2","fgco2","ocean","fgco2","rcp45",2166,"Simulated","PgC/yr","global",2.57455723384932 -"CanESM2","fgco2","ocean","fgco2","rcp45",2167,"Simulated","PgC/yr","global",3.2767512390489 -"CanESM2","fgco2","ocean","fgco2","rcp45",2168,"Simulated","PgC/yr","global",3.59160485091173 -"CanESM2","fgco2","ocean","fgco2","rcp45",2169,"Simulated","PgC/yr","global",3.58930755610444 -"CanESM2","fgco2","ocean","fgco2","rcp45",2170,"Simulated","PgC/yr","global",3.45324631605231 -"CanESM2","fgco2","ocean","fgco2","rcp45",2171,"Simulated","PgC/yr","global",3.29735391810989 -"CanESM2","fgco2","ocean","fgco2","rcp45",2172,"Simulated","PgC/yr","global",2.69091655277047 -"CanESM2","fgco2","ocean","fgco2","rcp45",2173,"Simulated","PgC/yr","global",3.13639064853054 -"CanESM2","fgco2","ocean","fgco2","rcp45",2174,"Simulated","PgC/yr","global",2.66165111145241 -"CanESM2","fgco2","ocean","fgco2","rcp45",2175,"Simulated","PgC/yr","global",3.25926249742067 -"CanESM2","fgco2","ocean","fgco2","rcp45",2176,"Simulated","PgC/yr","global",2.59664000803713 -"CanESM2","fgco2","ocean","fgco2","rcp45",2177,"Simulated","PgC/yr","global",2.48130789853028 -"CanESM2","fgco2","ocean","fgco2","rcp45",2178,"Simulated","PgC/yr","global",3.03445626875458 -"CanESM2","fgco2","ocean","fgco2","rcp45",2179,"Simulated","PgC/yr","global",3.09782963047892 -"CanESM2","fgco2","ocean","fgco2","rcp45",2180,"Simulated","PgC/yr","global",2.7590070562087 -"CanESM2","fgco2","ocean","fgco2","rcp45",2181,"Simulated","PgC/yr","global",2.17576323272095 -"CanESM2","fgco2","ocean","fgco2","rcp45",2182,"Simulated","PgC/yr","global",2.83600152671768 -"CanESM2","fgco2","ocean","fgco2","rcp45",2183,"Simulated","PgC/yr","global",2.39017871452953 -"CanESM2","fgco2","ocean","fgco2","rcp45",2184,"Simulated","PgC/yr","global",3.18378154533832 -"CanESM2","fgco2","ocean","fgco2","rcp45",2185,"Simulated","PgC/yr","global",2.77015595491702 -"CanESM2","fgco2","ocean","fgco2","rcp45",2186,"Simulated","PgC/yr","global",2.55619614409591 -"CanESM2","fgco2","ocean","fgco2","rcp45",2187,"Simulated","PgC/yr","global",2.07777781581812 -"CanESM2","fgco2","ocean","fgco2","rcp45",2188,"Simulated","PgC/yr","global",3.36050445783547 -"CanESM2","fgco2","ocean","fgco2","rcp45",2189,"Simulated","PgC/yr","global",2.99875294283713 -"CanESM2","fgco2","ocean","fgco2","rcp45",2190,"Simulated","PgC/yr","global",2.48990548535271 -"CanESM2","fgco2","ocean","fgco2","rcp45",2191,"Simulated","PgC/yr","global",2.88082607115466 -"CanESM2","fgco2","ocean","fgco2","rcp45",2192,"Simulated","PgC/yr","global",2.61172728557364 -"CanESM2","fgco2","ocean","fgco2","rcp45",2193,"Simulated","PgC/yr","global",3.09121460239052 -"CanESM2","fgco2","ocean","fgco2","rcp45",2194,"Simulated","PgC/yr","global",2.62652656567676 -"CanESM2","fgco2","ocean","fgco2","rcp45",2195,"Simulated","PgC/yr","global",2.54682425082777 -"CanESM2","fgco2","ocean","fgco2","rcp45",2196,"Simulated","PgC/yr","global",2.43980005954496 -"CanESM2","fgco2","ocean","fgco2","rcp45",2197,"Simulated","PgC/yr","global",2.66280310118603 -"CanESM2","fgco2","ocean","fgco2","rcp45",2198,"Simulated","PgC/yr","global",2.97675539806385 -"CanESM2","fgco2","ocean","fgco2","rcp45",2199,"Simulated","PgC/yr","global",2.90182648748345 -"CanESM2","fgco2","ocean","fgco2","rcp45",2200,"Simulated","PgC/yr","global",3.14376327141475 -"CanESM2","fgco2","ocean","fgco2","rcp45",2201,"Simulated","PgC/yr","global",2.17361066080186 -"CanESM2","fgco2","ocean","fgco2","rcp45",2202,"Simulated","PgC/yr","global",2.20508883597868 -"CanESM2","fgco2","ocean","fgco2","rcp45",2203,"Simulated","PgC/yr","global",2.63333990534406 -"CanESM2","fgco2","ocean","fgco2","rcp45",2204,"Simulated","PgC/yr","global",2.41059422311157 -"CanESM2","fgco2","ocean","fgco2","rcp45",2205,"Simulated","PgC/yr","global",1.96247411611612 -"CanESM2","fgco2","ocean","fgco2","rcp45",2206,"Simulated","PgC/yr","global",4.32150510049301 -"CanESM2","fgco2","ocean","fgco2","rcp45",2207,"Simulated","PgC/yr","global",2.99779035180246 -"CanESM2","fgco2","ocean","fgco2","rcp45",2208,"Simulated","PgC/yr","global",3.35779215705548 -"CanESM2","fgco2","ocean","fgco2","rcp45",2209,"Simulated","PgC/yr","global",2.95098324863145 -"CanESM2","fgco2","ocean","fgco2","rcp45",2210,"Simulated","PgC/yr","global",2.40349734245083 -"CanESM2","fgco2","ocean","fgco2","rcp45",2211,"Simulated","PgC/yr","global",2.5717775294147 -"CanESM2","fgco2","ocean","fgco2","rcp45",2212,"Simulated","PgC/yr","global",3.7161495359576 -"CanESM2","fgco2","ocean","fgco2","rcp45",2213,"Simulated","PgC/yr","global",2.44631871711889 -"CanESM2","fgco2","ocean","fgco2","rcp45",2214,"Simulated","PgC/yr","global",2.47908970553256 -"CanESM2","fgco2","ocean","fgco2","rcp45",2215,"Simulated","PgC/yr","global",2.66936186671973 -"CanESM2","fgco2","ocean","fgco2","rcp45",2216,"Simulated","PgC/yr","global",1.58988732437274 -"CanESM2","fgco2","ocean","fgco2","rcp45",2217,"Simulated","PgC/yr","global",2.34890093925793 -"CanESM2","fgco2","ocean","fgco2","rcp45",2218,"Simulated","PgC/yr","global",2.72861135030189 -"CanESM2","fgco2","ocean","fgco2","rcp45",2219,"Simulated","PgC/yr","global",2.38067535628211 -"CanESM2","fgco2","ocean","fgco2","rcp45",2220,"Simulated","PgC/yr","global",2.55253907804114 -"CanESM2","fgco2","ocean","fgco2","rcp45",2221,"Simulated","PgC/yr","global",3.84911800666684 -"CanESM2","fgco2","ocean","fgco2","rcp45",2222,"Simulated","PgC/yr","global",2.65504722446394 -"CanESM2","fgco2","ocean","fgco2","rcp45",2223,"Simulated","PgC/yr","global",2.63959563295944 -"CanESM2","fgco2","ocean","fgco2","rcp45",2224,"Simulated","PgC/yr","global",2.55501741572243 -"CanESM2","fgco2","ocean","fgco2","rcp45",2225,"Simulated","PgC/yr","global",2.9297031906942 -"CanESM2","fgco2","ocean","fgco2","rcp45",2226,"Simulated","PgC/yr","global",1.90019369629574 -"CanESM2","fgco2","ocean","fgco2","rcp45",2227,"Simulated","PgC/yr","global",2.86957300316192 -"CanESM2","fgco2","ocean","fgco2","rcp45",2228,"Simulated","PgC/yr","global",2.15380969529242 -"CanESM2","fgco2","ocean","fgco2","rcp45",2229,"Simulated","PgC/yr","global",1.54237398687665 -"CanESM2","fgco2","ocean","fgco2","rcp45",2230,"Simulated","PgC/yr","global",3.04356356089919 -"CanESM2","fgco2","ocean","fgco2","rcp45",2231,"Simulated","PgC/yr","global",1.99294780972251 -"CanESM2","fgco2","ocean","fgco2","rcp45",2232,"Simulated","PgC/yr","global",2.25127482282812 -"CanESM2","fgco2","ocean","fgco2","rcp45",2233,"Simulated","PgC/yr","global",2.37445583724153 -"CanESM2","fgco2","ocean","fgco2","rcp45",2234,"Simulated","PgC/yr","global",2.08010017810027 -"CanESM2","fgco2","ocean","fgco2","rcp45",2235,"Simulated","PgC/yr","global",1.57712313328987 -"CanESM2","fgco2","ocean","fgco2","rcp45",2236,"Simulated","PgC/yr","global",1.08829729079917 -"CanESM2","fgco2","ocean","fgco2","rcp45",2237,"Simulated","PgC/yr","global",2.89797835156475 -"CanESM2","fgco2","ocean","fgco2","rcp45",2238,"Simulated","PgC/yr","global",3.09264511962261 -"CanESM2","fgco2","ocean","fgco2","rcp45",2239,"Simulated","PgC/yr","global",2.62198935272686 -"CanESM2","fgco2","ocean","fgco2","rcp45",2240,"Simulated","PgC/yr","global",2.28715696339958 -"CanESM2","fgco2","ocean","fgco2","rcp45",2241,"Simulated","PgC/yr","global",2.30921077072755 -"CanESM2","fgco2","ocean","fgco2","rcp45",2242,"Simulated","PgC/yr","global",2.51620182353721 -"CanESM2","fgco2","ocean","fgco2","rcp45",2243,"Simulated","PgC/yr","global",2.40353132280564 -"CanESM2","fgco2","ocean","fgco2","rcp45",2244,"Simulated","PgC/yr","global",1.91799271755726 -"CanESM2","fgco2","ocean","fgco2","rcp45",2245,"Simulated","PgC/yr","global",2.81841752868498 -"CanESM2","fgco2","ocean","fgco2","rcp45",2246,"Simulated","PgC/yr","global",3.09047316218962 -"CanESM2","fgco2","ocean","fgco2","rcp45",2247,"Simulated","PgC/yr","global",2.98039296719372 -"CanESM2","fgco2","ocean","fgco2","rcp45",2248,"Simulated","PgC/yr","global",1.81460219601934 -"CanESM2","fgco2","ocean","fgco2","rcp45",2249,"Simulated","PgC/yr","global",1.86843153448149 -"CanESM2","fgco2","ocean","fgco2","rcp45",2250,"Simulated","PgC/yr","global",2.0882108988554 -"CanESM2","fgco2","ocean","fgco2","rcp45",2251,"Simulated","PgC/yr","global",2.28590303260152 -"CanESM2","fgco2","ocean","fgco2","rcp45",2252,"Simulated","PgC/yr","global",1.86253399322913 -"CanESM2","fgco2","ocean","fgco2","rcp45",2253,"Simulated","PgC/yr","global",2.67509229147303 -"CanESM2","fgco2","ocean","fgco2","rcp45",2254,"Simulated","PgC/yr","global",1.65665872157829 -"CanESM2","fgco2","ocean","fgco2","rcp45",2255,"Simulated","PgC/yr","global",1.98171925214964 -"CanESM2","fgco2","ocean","fgco2","rcp45",2256,"Simulated","PgC/yr","global",2.5935182718344 -"CanESM2","fgco2","ocean","fgco2","rcp45",2257,"Simulated","PgC/yr","global",1.44835636130587 -"CanESM2","fgco2","ocean","fgco2","rcp45",2258,"Simulated","PgC/yr","global",2.10016028559428 -"CanESM2","fgco2","ocean","fgco2","rcp45",2259,"Simulated","PgC/yr","global",2.29833427191272 -"CanESM2","fgco2","ocean","fgco2","rcp45",2260,"Simulated","PgC/yr","global",2.47541815604788 -"CanESM2","fgco2","ocean","fgco2","rcp45",2261,"Simulated","PgC/yr","global",2.76230426473546 -"CanESM2","fgco2","ocean","fgco2","rcp45",2262,"Simulated","PgC/yr","global",1.81811164249992 -"CanESM2","fgco2","ocean","fgco2","rcp45",2263,"Simulated","PgC/yr","global",2.4327622267139 -"CanESM2","fgco2","ocean","fgco2","rcp45",2264,"Simulated","PgC/yr","global",2.86235134218188 -"CanESM2","fgco2","ocean","fgco2","rcp45",2265,"Simulated","PgC/yr","global",3.06845054994148 -"CanESM2","fgco2","ocean","fgco2","rcp45",2266,"Simulated","PgC/yr","global",2.35692141710355 -"CanESM2","fgco2","ocean","fgco2","rcp45",2267,"Simulated","PgC/yr","global",1.00814359428618 -"CanESM2","fgco2","ocean","fgco2","rcp45",2268,"Simulated","PgC/yr","global",2.26274514226965 -"CanESM2","fgco2","ocean","fgco2","rcp45",2269,"Simulated","PgC/yr","global",1.66126941008227 -"CanESM2","fgco2","ocean","fgco2","rcp45",2270,"Simulated","PgC/yr","global",1.69134659194184 -"CanESM2","fgco2","ocean","fgco2","rcp45",2271,"Simulated","PgC/yr","global",2.33037161889546 -"CanESM2","fgco2","ocean","fgco2","rcp45",2272,"Simulated","PgC/yr","global",1.79760979039336 -"CanESM2","fgco2","ocean","fgco2","rcp45",2273,"Simulated","PgC/yr","global",3.02442482237008 -"CanESM2","fgco2","ocean","fgco2","rcp45",2274,"Simulated","PgC/yr","global",2.24215416136358 -"CanESM2","fgco2","ocean","fgco2","rcp45",2275,"Simulated","PgC/yr","global",2.97173410432163 -"CanESM2","fgco2","ocean","fgco2","rcp45",2276,"Simulated","PgC/yr","global",2.65406402239438 -"CanESM2","fgco2","ocean","fgco2","rcp45",2277,"Simulated","PgC/yr","global",2.28142876686627 -"CanESM2","fgco2","ocean","fgco2","rcp45",2278,"Simulated","PgC/yr","global",1.30566733660591 -"CanESM2","fgco2","ocean","fgco2","rcp45",2279,"Simulated","PgC/yr","global",1.27745857291149 -"CanESM2","fgco2","ocean","fgco2","rcp45",2280,"Simulated","PgC/yr","global",2.85560039267423 -"CanESM2","fgco2","ocean","fgco2","rcp45",2281,"Simulated","PgC/yr","global",2.61638537945786 -"CanESM2","fgco2","ocean","fgco2","rcp45",2282,"Simulated","PgC/yr","global",0.0387560987115501 -"CanESM2","fgco2","ocean","fgco2","rcp45",2283,"Simulated","PgC/yr","global",2.07713441729668 -"CanESM2","fgco2","ocean","fgco2","rcp45",2284,"Simulated","PgC/yr","global",2.3988955111213 -"CanESM2","fgco2","ocean","fgco2","rcp45",2285,"Simulated","PgC/yr","global",2.33913242283198 -"CanESM2","fgco2","ocean","fgco2","rcp45",2286,"Simulated","PgC/yr","global",1.61922551707341 -"CanESM2","fgco2","ocean","fgco2","rcp45",2287,"Simulated","PgC/yr","global",3.0628805570273 -"CanESM2","fgco2","ocean","fgco2","rcp45",2288,"Simulated","PgC/yr","global",1.71441139838372 -"CanESM2","fgco2","ocean","fgco2","rcp45",2289,"Simulated","PgC/yr","global",2.3363465907924 -"CanESM2","fgco2","ocean","fgco2","rcp45",2290,"Simulated","PgC/yr","global",1.92867480417815 -"CanESM2","fgco2","ocean","fgco2","rcp45",2291,"Simulated","PgC/yr","global",0.703778709684262 -"CanESM2","fgco2","ocean","fgco2","rcp45",2292,"Simulated","PgC/yr","global",1.48989483831603 -"CanESM2","fgco2","ocean","fgco2","rcp45",2293,"Simulated","PgC/yr","global",1.61992150158656 -"CanESM2","fgco2","ocean","fgco2","rcp45",2294,"Simulated","PgC/yr","global",1.9739371938427 -"CanESM2","fgco2","ocean","fgco2","rcp45",2295,"Simulated","PgC/yr","global",2.52340621581235 -"CanESM2","fgco2","ocean","fgco2","rcp45",2296,"Simulated","PgC/yr","global",2.03411027460975 -"CanESM2","fgco2","ocean","fgco2","rcp45",2297,"Simulated","PgC/yr","global",1.98987063791954 -"CanESM2","fgco2","ocean","fgco2","rcp45",2298,"Simulated","PgC/yr","global",2.55535109166559 -"CanESM2","fgco2","ocean","fgco2","rcp45",2299,"Simulated","PgC/yr","global",1.9724905220157 -"CanESM2","fgco2","ocean","fgco2","rcp45",2300,"Simulated","PgC/yr","global",2.49532563047272 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",-0.443188241322742 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",-0.500753069311245 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",-0.652876592472089 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",-0.509556082406524 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",-0.487676104086702 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",-0.623134252027588 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",-0.375335528141324 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",-0.2772378032864 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",-0.301440086776581 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",-0.139512414538454 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",-0.364338412515996 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",-0.522809610148861 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",-0.45863300800673 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",-0.327497478601287 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",-0.150888039357982 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",-0.131106566756558 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",-0.152384751955749 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",-0.413510027078971 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",-0.290293155584136 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",-0.242400694878848 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",-0.275138131498351 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",-0.284233245870416 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",-0.26194600238216 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",-0.241489713828967 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",-0.235219948069681 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",-0.352722096324015 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",-0.266025541009876 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",-0.313525436322627 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",-0.203363830872865 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",-0.243703803091392 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",-0.224335744478025 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",-0.333339865734697 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",-0.259107460429411 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",-0.165089905173605 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",-0.0836130060383951 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",-0.0471782724034781 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.0588795275636802 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",-0.0972083497652884 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",-0.0328889463879582 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.0685455582618616 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",0.0397399920625167 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.0672915374348386 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.0656755340872564 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.273711220526515 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",0.149912027781377 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.0426063670860112 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.154786351189302 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",0.0508961403471855 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",-0.0390860973575483 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",-0.118756763892988 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.0238137663331896 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.0351381391571058 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",-0.0511721813781909 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",0.0828797124400737 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",-0.0126527388017444 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.0974932588969754 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.000370455185956386 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",-0.0228769827992855 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",-0.155372689491495 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",-0.141573269310913 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",-0.0569463433189505 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.000367043561408709 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",0.0207367924960069 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",-0.0893045405822918 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",0.0632206618918591 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",-0.0725998845728122 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",-0.153411221671729 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",-0.125272740199913 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",-0.280974603357811 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",-0.130972229893231 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",-0.362556545298194 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",-0.190000181702231 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",-0.155526601396604 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",-0.257555831424835 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",-0.127276363013313 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",-0.245149623300803 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",-0.299926725424481 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",-0.390414944470019 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",-0.426884829382364 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",-0.363973716353974 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",-0.47335116235634 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",-0.244660517625182 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",-0.468214915819576 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",-0.536408626248736 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",-0.397542171170289 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",-0.460716845796367 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",-0.481338779270712 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",-0.281627104418797 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",-0.483133508087476 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",-0.485313544135216 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",-0.642796110431712 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",-0.39781897255169 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",-0.264910287447369 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",-0.442511887751391 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",-0.465478019312315 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",-0.449747009897779 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",-0.324516246546577 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2103,"Simulated","PgC/yr","HL",-0.357840153501197 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2104,"Simulated","PgC/yr","HL",-0.595350046732667 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2105,"Simulated","PgC/yr","HL",-0.647184330751898 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2106,"Simulated","PgC/yr","HL",-0.411348319722038 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2107,"Simulated","PgC/yr","HL",-0.483145201958081 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2108,"Simulated","PgC/yr","HL",-0.544017355120677 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2109,"Simulated","PgC/yr","HL",-0.552884626449608 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2110,"Simulated","PgC/yr","HL",-0.679347368096419 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2111,"Simulated","PgC/yr","HL",-0.789429485082756 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2112,"Simulated","PgC/yr","HL",-0.544867524394259 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2113,"Simulated","PgC/yr","HL",-0.510852211119956 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2114,"Simulated","PgC/yr","HL",-0.208895456297673 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2115,"Simulated","PgC/yr","HL",-0.458146692273003 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2116,"Simulated","PgC/yr","HL",-0.218944339343357 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2117,"Simulated","PgC/yr","HL",-0.710621505404431 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2118,"Simulated","PgC/yr","HL",-0.788798928357847 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2119,"Simulated","PgC/yr","HL",-0.720663637520561 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2120,"Simulated","PgC/yr","HL",-0.9058702478798 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2121,"Simulated","PgC/yr","HL",-0.928602468854519 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2122,"Simulated","PgC/yr","HL",-0.749904119501531 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2123,"Simulated","PgC/yr","HL",-0.426378509665729 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2124,"Simulated","PgC/yr","HL",-0.862069072419652 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2125,"Simulated","PgC/yr","HL",-0.864632435204542 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2126,"Simulated","PgC/yr","HL",-0.839328474984433 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2127,"Simulated","PgC/yr","HL",-0.571246657228037 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2128,"Simulated","PgC/yr","HL",-0.771849699606096 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2129,"Simulated","PgC/yr","HL",-0.737856944720478 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2130,"Simulated","PgC/yr","HL",-0.79584660024649 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2131,"Simulated","PgC/yr","HL",-0.841654974688123 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2132,"Simulated","PgC/yr","HL",-0.564659856537647 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2133,"Simulated","PgC/yr","HL",-0.579451275889334 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2134,"Simulated","PgC/yr","HL",-0.684382864888422 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2135,"Simulated","PgC/yr","HL",-0.738483105877004 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2136,"Simulated","PgC/yr","HL",-0.912851156890163 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2137,"Simulated","PgC/yr","HL",-0.830358363942377 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2138,"Simulated","PgC/yr","HL",-1.1382534155415 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2139,"Simulated","PgC/yr","HL",-0.801726377909146 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2140,"Simulated","PgC/yr","HL",-0.710254102235767 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2141,"Simulated","PgC/yr","HL",-0.730344337806208 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2142,"Simulated","PgC/yr","HL",-0.895729422813172 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2143,"Simulated","PgC/yr","HL",-0.816637721635977 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2144,"Simulated","PgC/yr","HL",-0.613724683669479 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2145,"Simulated","PgC/yr","HL",-0.831950969596517 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2146,"Simulated","PgC/yr","HL",-0.712452881650576 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2147,"Simulated","PgC/yr","HL",-0.849896831277802 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2148,"Simulated","PgC/yr","HL",-1.09086421225158 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2149,"Simulated","PgC/yr","HL",-0.620945275559626 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2150,"Simulated","PgC/yr","HL",-0.655264297728657 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2151,"Simulated","PgC/yr","HL",-0.72007711941474 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2152,"Simulated","PgC/yr","HL",-0.597163923640532 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2153,"Simulated","PgC/yr","HL",-0.915436248711212 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2154,"Simulated","PgC/yr","HL",-0.68346684502434 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2155,"Simulated","PgC/yr","HL",-0.679074345245124 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2156,"Simulated","PgC/yr","HL",-1.12676646839122 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2157,"Simulated","PgC/yr","HL",-0.770495698673454 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2158,"Simulated","PgC/yr","HL",-1.06574511470933 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2159,"Simulated","PgC/yr","HL",-0.841618649047522 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2160,"Simulated","PgC/yr","HL",-0.92479905817395 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2161,"Simulated","PgC/yr","HL",-0.96469945696707 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2162,"Simulated","PgC/yr","HL",-1.01392783241687 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2163,"Simulated","PgC/yr","HL",-0.927817486689416 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2164,"Simulated","PgC/yr","HL",-0.994378915239631 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2165,"Simulated","PgC/yr","HL",-1.17276443282011 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2166,"Simulated","PgC/yr","HL",-1.21762958463484 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2167,"Simulated","PgC/yr","HL",-1.09679988827443 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2168,"Simulated","PgC/yr","HL",-0.874544939520983 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2169,"Simulated","PgC/yr","HL",-0.61392878732593 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2170,"Simulated","PgC/yr","HL",-0.899245379908503 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2171,"Simulated","PgC/yr","HL",-0.807373439253231 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2172,"Simulated","PgC/yr","HL",-1.15163095470822 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2173,"Simulated","PgC/yr","HL",-1.06519002906422 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2174,"Simulated","PgC/yr","HL",-0.961994357835628 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2175,"Simulated","PgC/yr","HL",-1.02058197653231 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2176,"Simulated","PgC/yr","HL",-0.989267200950558 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2177,"Simulated","PgC/yr","HL",-1.12402189207957 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2178,"Simulated","PgC/yr","HL",-0.953806492095342 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2179,"Simulated","PgC/yr","HL",-0.983008326248634 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2180,"Simulated","PgC/yr","HL",-1.2542963379322 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2181,"Simulated","PgC/yr","HL",-1.21663286877004 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2182,"Simulated","PgC/yr","HL",-1.37802271385736 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2183,"Simulated","PgC/yr","HL",-1.30210229086603 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2184,"Simulated","PgC/yr","HL",-1.0895714175353 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2185,"Simulated","PgC/yr","HL",-1.18011083748833 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2186,"Simulated","PgC/yr","HL",-1.36436750746521 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2187,"Simulated","PgC/yr","HL",-1.35849610626305 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2188,"Simulated","PgC/yr","HL",-1.2857708468103 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2189,"Simulated","PgC/yr","HL",-1.1169056327371 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2190,"Simulated","PgC/yr","HL",-1.11871536288233 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2191,"Simulated","PgC/yr","HL",-0.886773825440309 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2192,"Simulated","PgC/yr","HL",-1.08487014981095 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2193,"Simulated","PgC/yr","HL",-1.07277512138919 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2194,"Simulated","PgC/yr","HL",-1.0519691545895 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2195,"Simulated","PgC/yr","HL",-1.00474781225069 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2196,"Simulated","PgC/yr","HL",-1.15278499874703 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2197,"Simulated","PgC/yr","HL",-1.15392303628211 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2198,"Simulated","PgC/yr","HL",-1.07934259816574 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2199,"Simulated","PgC/yr","HL",-1.19115947182904 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2200,"Simulated","PgC/yr","HL",-1.13487753608767 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2201,"Simulated","PgC/yr","HL",-1.50098691481187 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2202,"Simulated","PgC/yr","HL",-1.59925324637169 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2203,"Simulated","PgC/yr","HL",-1.3817309978033 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2204,"Simulated","PgC/yr","HL",-1.38587601878899 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2205,"Simulated","PgC/yr","HL",-1.19283874482207 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2206,"Simulated","PgC/yr","HL",-0.587096745078141 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2207,"Simulated","PgC/yr","HL",-0.792469227958119 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2208,"Simulated","PgC/yr","HL",-0.952769635568333 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2209,"Simulated","PgC/yr","HL",-1.26535334873341 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2210,"Simulated","PgC/yr","HL",-1.39496398082487 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2211,"Simulated","PgC/yr","HL",-1.29768275419449 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2212,"Simulated","PgC/yr","HL",-0.8040153908787 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2213,"Simulated","PgC/yr","HL",-1.15203377122971 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2214,"Simulated","PgC/yr","HL",-1.12771242788146 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2215,"Simulated","PgC/yr","HL",-0.979619923571677 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2216,"Simulated","PgC/yr","HL",-1.46077592349807 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2217,"Simulated","PgC/yr","HL",-1.38733858196718 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2218,"Simulated","PgC/yr","HL",-1.12486808046103 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2219,"Simulated","PgC/yr","HL",-0.927165698539863 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2220,"Simulated","PgC/yr","HL",-1.16402869680168 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2221,"Simulated","PgC/yr","HL",-0.923264590131826 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2222,"Simulated","PgC/yr","HL",-1.30018656946807 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2223,"Simulated","PgC/yr","HL",-1.22118253085279 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2224,"Simulated","PgC/yr","HL",-0.955504923131694 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2225,"Simulated","PgC/yr","HL",-1.14959406490633 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2226,"Simulated","PgC/yr","HL",-1.02181049642788 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2227,"Simulated","PgC/yr","HL",-1.16128362287852 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2228,"Simulated","PgC/yr","HL",-1.35084483160657 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2229,"Simulated","PgC/yr","HL",-1.34939296707596 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2230,"Simulated","PgC/yr","HL",-1.27066020967167 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2231,"Simulated","PgC/yr","HL",-1.43769744784408 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2232,"Simulated","PgC/yr","HL",-1.44753099780012 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2233,"Simulated","PgC/yr","HL",-1.44644628763242 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2234,"Simulated","PgC/yr","HL",-1.1750004501633 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2235,"Simulated","PgC/yr","HL",-1.27540850168419 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2236,"Simulated","PgC/yr","HL",-1.42440450263493 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2237,"Simulated","PgC/yr","HL",-1.3067236919422 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2238,"Simulated","PgC/yr","HL",-0.843854915196469 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2239,"Simulated","PgC/yr","HL",-1.20047343242805 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2240,"Simulated","PgC/yr","HL",-1.26884608395804 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2241,"Simulated","PgC/yr","HL",-1.1384032795428 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2242,"Simulated","PgC/yr","HL",-1.3266925932382 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2243,"Simulated","PgC/yr","HL",-1.06134797055598 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2244,"Simulated","PgC/yr","HL",-1.36490774770012 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2245,"Simulated","PgC/yr","HL",-1.0181101742662 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2246,"Simulated","PgC/yr","HL",-0.910380183976583 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2247,"Simulated","PgC/yr","HL",-1.30875966945632 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2248,"Simulated","PgC/yr","HL",-1.46649928527447 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2249,"Simulated","PgC/yr","HL",-1.46363909722082 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2250,"Simulated","PgC/yr","HL",-1.48346236421339 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2251,"Simulated","PgC/yr","HL",-1.19257791345289 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2252,"Simulated","PgC/yr","HL",-0.88340582483547 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2253,"Simulated","PgC/yr","HL",-1.0236903068615 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2254,"Simulated","PgC/yr","HL",-1.38062124118933 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2255,"Simulated","PgC/yr","HL",-1.26661811133435 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2256,"Simulated","PgC/yr","HL",-1.20043586275865 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2257,"Simulated","PgC/yr","HL",-1.43665719097172 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2258,"Simulated","PgC/yr","HL",-1.59752794431352 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2259,"Simulated","PgC/yr","HL",-1.1773748035077 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2260,"Simulated","PgC/yr","HL",-1.34684702069409 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2261,"Simulated","PgC/yr","HL",-1.06626951431102 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2262,"Simulated","PgC/yr","HL",-1.31075310118589 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2263,"Simulated","PgC/yr","HL",-1.34503646119634 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2264,"Simulated","PgC/yr","HL",-0.835011031608748 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2265,"Simulated","PgC/yr","HL",-1.12901791169138 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2266,"Simulated","PgC/yr","HL",-0.969342918820411 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2267,"Simulated","PgC/yr","HL",-1.02962880268294 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2268,"Simulated","PgC/yr","HL",-1.30639833694657 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2269,"Simulated","PgC/yr","HL",-1.38283743700716 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2270,"Simulated","PgC/yr","HL",-1.54003672965515 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2271,"Simulated","PgC/yr","HL",-1.04036543460368 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2272,"Simulated","PgC/yr","HL",-1.02516572500383 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2273,"Simulated","PgC/yr","HL",-1.15184824506983 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2274,"Simulated","PgC/yr","HL",-1.34104155301769 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2275,"Simulated","PgC/yr","HL",-1.1719923885544 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2276,"Simulated","PgC/yr","HL",-0.963711200498041 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2277,"Simulated","PgC/yr","HL",-1.26586539098248 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2278,"Simulated","PgC/yr","HL",-1.50658064878859 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2279,"Simulated","PgC/yr","HL",-1.66600451371493 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2280,"Simulated","PgC/yr","HL",-1.13984054746897 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2281,"Simulated","PgC/yr","HL",-1.06269417557488 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2282,"Simulated","PgC/yr","HL",-1.56734647895745 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2283,"Simulated","PgC/yr","HL",-1.60172148242194 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2284,"Simulated","PgC/yr","HL",-0.886640548489507 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2285,"Simulated","PgC/yr","HL",-1.17838512075389 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2286,"Simulated","PgC/yr","HL",-1.10504929197209 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2287,"Simulated","PgC/yr","HL",-0.936005518300208 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2288,"Simulated","PgC/yr","HL",-1.41802976738522 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2289,"Simulated","PgC/yr","HL",-1.3948493643059 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2290,"Simulated","PgC/yr","HL",-1.57065584433876 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2291,"Simulated","PgC/yr","HL",-1.77154343756822 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2292,"Simulated","PgC/yr","HL",-1.54995910326664 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2293,"Simulated","PgC/yr","HL",-1.19647777783214 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2294,"Simulated","PgC/yr","HL",-1.12101092773683 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2295,"Simulated","PgC/yr","HL",-1.37967503289332 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2296,"Simulated","PgC/yr","HL",-1.46175920385194 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2297,"Simulated","PgC/yr","HL",-1.66211327460194 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2298,"Simulated","PgC/yr","HL",-1.13786784955253 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2299,"Simulated","PgC/yr","HL",-1.39309793764318 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2300,"Simulated","PgC/yr","HL",-1.28575749423465 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",7.80406845609901 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",7.42642980391147 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",7.96779527919237 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",8.29943350624316 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",8.03266358402927 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",7.70491465606573 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",8.29913936235373 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",7.72058962375921 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",8.33133816173106 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",8.75556306141152 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",8.00403718210203 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",8.15496542716722 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",8.23114679804914 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",8.34902681080295 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",8.6275205764084 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",8.84590297539645 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",8.36465512511358 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",8.42883804244798 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",8.35793817587075 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",8.30647854634911 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",8.62869866914928 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",8.77351152810334 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",8.5814486540142 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",9.11625212238474 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",9.04411878588048 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",8.50849186633787 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",9.12397003323194 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",8.96911361126046 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",9.14011324158499 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",9.2305895124084 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",8.91448705149414 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",9.27939160593874 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",8.96837455340289 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",9.01888328836517 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",9.0672046244747 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",9.28178022121102 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",9.29376312363093 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",9.71146773893853 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",9.42522704635751 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",9.4875498971107 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",9.35480604072213 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",8.88333529816033 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",9.26547827756755 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",9.14656335623567 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",9.07562290500832 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",8.95270280972367 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",9.07150583879587 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",8.96954619811525 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",9.03861065233797 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",8.92877171044915 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",8.76425576245321 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",8.54371023954333 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",8.66073607816562 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",8.62679858686164 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",8.68433662115435 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",8.88074470787695 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",8.55333885296045 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",8.27414130400642 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",8.16862993749656 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",7.91920369482854 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",8.06069657768443 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",8.16060783142135 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",7.93215721518918 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",7.91001032333677 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",7.60491995725379 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",7.75387984678815 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",7.31701738014471 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",7.13550158424155 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",6.91974542934167 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",6.68107317071608 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",6.94646226658638 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",6.7553339773374 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",6.74276885587137 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",6.55912179689318 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",6.28889459350315 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",6.13948713493008 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",6.28964711636146 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",6.1883599671263 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",6.07060910459087 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",6.10390293092986 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",6.07311606015134 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",5.70415778189214 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",5.52162642149647 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",5.6165527802408 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",5.84479307695436 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",6.16258074908811 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",5.89951806397962 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",6.03290577498108 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",5.95128056119398 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",5.76844367803502 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",5.46644912423506 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",5.48204140544512 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",5.85873181814386 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",5.89270989409797 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",5.45522576164568 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",5.83473756611937 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",5.31509094738565 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2103,"Simulated","PgC/yr","LL",5.34164829074833 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2104,"Simulated","PgC/yr","LL",5.57571646736003 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2105,"Simulated","PgC/yr","LL",5.74531526348776 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2106,"Simulated","PgC/yr","LL",5.73501358968149 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2107,"Simulated","PgC/yr","LL",5.00477435936017 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2108,"Simulated","PgC/yr","LL",5.49045361724602 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2109,"Simulated","PgC/yr","LL",5.21988770271059 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2110,"Simulated","PgC/yr","LL",5.07626924621662 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2111,"Simulated","PgC/yr","LL",4.81885920634874 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2112,"Simulated","PgC/yr","LL",4.998039488391 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2113,"Simulated","PgC/yr","LL",5.20242871724288 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2114,"Simulated","PgC/yr","LL",5.49548734657229 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2115,"Simulated","PgC/yr","LL",5.51525908815316 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2116,"Simulated","PgC/yr","LL",5.81575001859574 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2117,"Simulated","PgC/yr","LL",4.90465828589366 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2118,"Simulated","PgC/yr","LL",4.93339847655956 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2119,"Simulated","PgC/yr","LL",4.83965978777495 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2120,"Simulated","PgC/yr","LL",5.12223800015444 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2121,"Simulated","PgC/yr","LL",4.53512888299036 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2122,"Simulated","PgC/yr","LL",4.89140142372055 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2123,"Simulated","PgC/yr","LL",4.80661696042865 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2124,"Simulated","PgC/yr","LL",3.95851772520674 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2125,"Simulated","PgC/yr","LL",4.85477804406456 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2126,"Simulated","PgC/yr","LL",4.4349331574068 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2127,"Simulated","PgC/yr","LL",4.5372619477204 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2128,"Simulated","PgC/yr","LL",4.27754341881705 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2129,"Simulated","PgC/yr","LL",4.72602276743771 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2130,"Simulated","PgC/yr","LL",4.84295112704056 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2131,"Simulated","PgC/yr","LL",4.18620662065755 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2132,"Simulated","PgC/yr","LL",4.65883857729732 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2133,"Simulated","PgC/yr","LL",4.27639747139484 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2134,"Simulated","PgC/yr","LL",4.83272957947109 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2135,"Simulated","PgC/yr","LL",4.21315463868964 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2136,"Simulated","PgC/yr","LL",4.47301445527681 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2137,"Simulated","PgC/yr","LL",4.24079771626699 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2138,"Simulated","PgC/yr","LL",3.93617862520995 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2139,"Simulated","PgC/yr","LL",4.2833703504757 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2140,"Simulated","PgC/yr","LL",4.6815854202743 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2141,"Simulated","PgC/yr","LL",4.70691858645695 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2142,"Simulated","PgC/yr","LL",4.12896140271897 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2143,"Simulated","PgC/yr","LL",4.962516066542 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2144,"Simulated","PgC/yr","LL",5.34751362610628 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2145,"Simulated","PgC/yr","LL",4.76162584140376 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2146,"Simulated","PgC/yr","LL",4.13732629736938 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2147,"Simulated","PgC/yr","LL",4.57819460173324 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2148,"Simulated","PgC/yr","LL",4.57345150781028 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2149,"Simulated","PgC/yr","LL",4.57572111902672 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2150,"Simulated","PgC/yr","LL",4.83647702193081 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2151,"Simulated","PgC/yr","LL",4.07402040673817 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2152,"Simulated","PgC/yr","LL",4.08727395007307 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2153,"Simulated","PgC/yr","LL",4.62143005534461 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2154,"Simulated","PgC/yr","LL",4.17154020048436 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2155,"Simulated","PgC/yr","LL",4.80015944950994 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2156,"Simulated","PgC/yr","LL",4.47250619891082 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2157,"Simulated","PgC/yr","LL",4.54669598239443 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2158,"Simulated","PgC/yr","LL",4.0311362758574 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2159,"Simulated","PgC/yr","LL",4.14837992509027 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2160,"Simulated","PgC/yr","LL",4.28985488621982 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2161,"Simulated","PgC/yr","LL",4.64788024764506 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2162,"Simulated","PgC/yr","LL",4.14582536790746 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2163,"Simulated","PgC/yr","LL",4.12377358447578 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2164,"Simulated","PgC/yr","LL",3.65481036641815 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2165,"Simulated","PgC/yr","LL",4.00798737933718 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2166,"Simulated","PgC/yr","LL",3.79218703647714 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2167,"Simulated","PgC/yr","LL",4.37355171881809 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2168,"Simulated","PgC/yr","LL",4.46614967549768 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2169,"Simulated","PgC/yr","LL",4.20323652775657 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2170,"Simulated","PgC/yr","LL",4.35249179389169 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2171,"Simulated","PgC/yr","LL",4.10472724610383 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2172,"Simulated","PgC/yr","LL",3.84254803572705 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2173,"Simulated","PgC/yr","LL",4.20158042748939 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2174,"Simulated","PgC/yr","LL",3.62364552737941 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2175,"Simulated","PgC/yr","LL",4.27984479605635 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2176,"Simulated","PgC/yr","LL",3.58590701808459 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2177,"Simulated","PgC/yr","LL",3.60532980753358 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2178,"Simulated","PgC/yr","LL",3.98826257561101 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2179,"Simulated","PgC/yr","LL",4.08083777454287 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2180,"Simulated","PgC/yr","LL",4.01330368403112 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2181,"Simulated","PgC/yr","LL",3.3923964667679 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2182,"Simulated","PgC/yr","LL",4.21402370018111 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2183,"Simulated","PgC/yr","LL",3.6922809980574 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2184,"Simulated","PgC/yr","LL",4.27335314851606 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2185,"Simulated","PgC/yr","LL",3.95026709341473 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2186,"Simulated","PgC/yr","LL",3.92056349142821 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2187,"Simulated","PgC/yr","LL",3.43627387851318 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2188,"Simulated","PgC/yr","LL",4.64627535231027 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2189,"Simulated","PgC/yr","LL",4.11565855093067 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2190,"Simulated","PgC/yr","LL",3.6086201985597 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2191,"Simulated","PgC/yr","LL",3.7676006088919 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2192,"Simulated","PgC/yr","LL",3.69659738421039 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2193,"Simulated","PgC/yr","LL",4.16398936943508 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2194,"Simulated","PgC/yr","LL",3.67849596648904 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2195,"Simulated","PgC/yr","LL",3.55157268855453 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2196,"Simulated","PgC/yr","LL",3.59258546880417 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2197,"Simulated","PgC/yr","LL",3.81672652620767 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2198,"Simulated","PgC/yr","LL",4.05609773216045 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2199,"Simulated","PgC/yr","LL",4.09298614475357 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2200,"Simulated","PgC/yr","LL",4.27864100602533 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2201,"Simulated","PgC/yr","LL",3.67459727983085 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2202,"Simulated","PgC/yr","LL",3.80434251848401 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2203,"Simulated","PgC/yr","LL",4.01507072831849 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2204,"Simulated","PgC/yr","LL",3.79647023424802 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2205,"Simulated","PgC/yr","LL",3.15531336270158 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2206,"Simulated","PgC/yr","LL",4.90860153980782 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2207,"Simulated","PgC/yr","LL",3.79025926559641 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2208,"Simulated","PgC/yr","LL",4.3105620660564 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2209,"Simulated","PgC/yr","LL",4.21633645629428 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2210,"Simulated","PgC/yr","LL",3.79846058893501 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2211,"Simulated","PgC/yr","LL",3.86946002065856 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2212,"Simulated","PgC/yr","LL",4.52016518973742 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2213,"Simulated","PgC/yr","LL",3.59835266137503 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2214,"Simulated","PgC/yr","LL",3.60680194933994 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2215,"Simulated","PgC/yr","LL",3.64898201240027 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2216,"Simulated","PgC/yr","LL",3.05066375623915 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2217,"Simulated","PgC/yr","LL",3.73623948427897 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2218,"Simulated","PgC/yr","LL",3.85347981467363 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2219,"Simulated","PgC/yr","LL",3.30784100331253 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2220,"Simulated","PgC/yr","LL",3.71656778196417 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2221,"Simulated","PgC/yr","LL",4.77238314428441 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2222,"Simulated","PgC/yr","LL",3.95523349773728 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2223,"Simulated","PgC/yr","LL",3.86077793989914 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2224,"Simulated","PgC/yr","LL",3.5105224528451 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2225,"Simulated","PgC/yr","LL",4.07929688537357 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2226,"Simulated","PgC/yr","LL",2.92200425180067 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2227,"Simulated","PgC/yr","LL",4.03085654520821 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2228,"Simulated","PgC/yr","LL",3.50465474688843 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2229,"Simulated","PgC/yr","LL",2.89176679098196 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2230,"Simulated","PgC/yr","LL",4.31422369284238 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2231,"Simulated","PgC/yr","LL",3.4306451289077 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2232,"Simulated","PgC/yr","LL",3.6988058339798 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2233,"Simulated","PgC/yr","LL",3.82090257291633 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2234,"Simulated","PgC/yr","LL",3.25510039706547 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2235,"Simulated","PgC/yr","LL",2.85253101153433 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2236,"Simulated","PgC/yr","LL",2.51270189177932 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2237,"Simulated","PgC/yr","LL",4.20470203188651 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2238,"Simulated","PgC/yr","LL",3.93650007839665 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2239,"Simulated","PgC/yr","LL",3.8224624268754 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2240,"Simulated","PgC/yr","LL",3.55600286344619 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2241,"Simulated","PgC/yr","LL",3.44761387455969 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2242,"Simulated","PgC/yr","LL",3.84289414314047 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2243,"Simulated","PgC/yr","LL",3.46487941917168 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2244,"Simulated","PgC/yr","LL",3.28290088239797 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2245,"Simulated","PgC/yr","LL",3.83652813733244 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2246,"Simulated","PgC/yr","LL",4.00085329954323 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2247,"Simulated","PgC/yr","LL",4.28915271487837 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2248,"Simulated","PgC/yr","LL",3.28110112384825 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2249,"Simulated","PgC/yr","LL",3.33207041873023 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2250,"Simulated","PgC/yr","LL",3.57167346923802 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2251,"Simulated","PgC/yr","LL",3.47848096639896 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2252,"Simulated","PgC/yr","LL",2.74594035883833 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2253,"Simulated","PgC/yr","LL",3.69878260211232 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2254,"Simulated","PgC/yr","LL",3.0372793558548 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2255,"Simulated","PgC/yr","LL",3.24833802715113 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2256,"Simulated","PgC/yr","LL",3.79395360664476 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2257,"Simulated","PgC/yr","LL",2.88501342934276 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2258,"Simulated","PgC/yr","LL",3.69768880786199 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2259,"Simulated","PgC/yr","LL",3.47570831413372 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2260,"Simulated","PgC/yr","LL",3.82226566718146 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2261,"Simulated","PgC/yr","LL",3.82857430450043 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2262,"Simulated","PgC/yr","LL",3.12886411864061 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2263,"Simulated","PgC/yr","LL",3.77779845047415 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2264,"Simulated","PgC/yr","LL",3.69736213935811 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2265,"Simulated","PgC/yr","LL",4.19746886106597 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2266,"Simulated","PgC/yr","LL",3.32626387422059 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2267,"Simulated","PgC/yr","LL",2.03777265903604 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2268,"Simulated","PgC/yr","LL",3.56914356628192 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2269,"Simulated","PgC/yr","LL",3.04410715429387 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2270,"Simulated","PgC/yr","LL",3.23138350509147 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2271,"Simulated","PgC/yr","LL",3.37073678036484 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2272,"Simulated","PgC/yr","LL",2.82277525637593 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2273,"Simulated","PgC/yr","LL",4.17627286377293 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2274,"Simulated","PgC/yr","LL",3.58319552726637 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2275,"Simulated","PgC/yr","LL",4.14372643979901 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2276,"Simulated","PgC/yr","LL",3.61777497670427 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2277,"Simulated","PgC/yr","LL",3.54729470610083 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2278,"Simulated","PgC/yr","LL",2.81224790157132 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2279,"Simulated","PgC/yr","LL",2.94346338555185 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2280,"Simulated","PgC/yr","LL",3.99544122266093 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2281,"Simulated","PgC/yr","LL",3.67908008201413 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2282,"Simulated","PgC/yr","LL",1.60610253847937 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2283,"Simulated","PgC/yr","LL",3.67885582337503 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2284,"Simulated","PgC/yr","LL",3.28553603993734 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2285,"Simulated","PgC/yr","LL",3.51751761555394 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2286,"Simulated","PgC/yr","LL",2.72427450887858 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2287,"Simulated","PgC/yr","LL",3.99888665084348 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2288,"Simulated","PgC/yr","LL",3.13244087799235 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2289,"Simulated","PgC/yr","LL",3.73119579843807 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2290,"Simulated","PgC/yr","LL",3.49933085627859 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2291,"Simulated","PgC/yr","LL",2.47532229113102 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2292,"Simulated","PgC/yr","LL",3.03985382606688 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2293,"Simulated","PgC/yr","LL",2.81639929405326 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2294,"Simulated","PgC/yr","LL",3.09494796272512 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2295,"Simulated","PgC/yr","LL",3.90308127409303 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2296,"Simulated","PgC/yr","LL",3.49586930802475 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2297,"Simulated","PgC/yr","LL",3.65198319038231 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2298,"Simulated","PgC/yr","LL",3.69321880691181 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2299,"Simulated","PgC/yr","LL",3.36558831406043 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2300,"Simulated","PgC/yr","LL",3.7810826779436 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.24263607327912 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.16196495713213 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",2.05838047877032 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",2.22673942285941 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",2.26466793331419 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",2.41037887695575 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",2.24427493844276 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",2.38362517191136 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.44039209006012 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",2.45382303993831 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.38543942639758 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",2.50821195220682 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",2.55274489565945 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",2.36137692245233 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",2.39423736481944 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",2.60368182716983 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",2.48877676525938 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",2.65189908528843 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",2.54317251087813 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",2.54182064642418 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",2.5794006560172 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",2.60726933604087 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",2.66792784714594 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",2.56691270847083 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.67190144030502 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",2.65498775959265 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",2.85244083118009 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",2.77138590852848 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",2.6813314636232 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",2.81616143591429 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",2.87001506908141 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",2.88548577400343 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",2.75527628535991 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",2.70457282664908 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",2.92138933500655 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",2.97178870963212 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",2.89509346442761 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",2.95389899872848 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",2.81883783142126 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",2.93967424133185 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",2.86976792958141 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",2.75956421262959 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",2.76742939874498 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",2.75171610988978 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",3.02453078449507 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",2.90664979855921 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",2.98722524780297 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",2.89926066917655 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",2.79172423659807 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",2.87431780194326 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",2.74440328625137 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",2.90609629719053 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",2.94984112758323 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",2.85255244256719 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",2.61931311582226 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",2.61018375991421 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",2.65118955575616 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",2.69783058775492 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",2.7283608576934 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",2.68421741520392 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",2.53501804626965 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",2.59793839630103 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",2.51859181120706 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",2.51516488606643 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",2.28792182414882 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",2.43243351482492 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",2.3530766797056 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",2.28492767785612 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",2.44933580662023 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",2.32660086423726 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",2.35384770938995 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",2.16800336095254 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",1.98600163312813 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",2.3168200622739 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",2.18283173095288 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",2.09164408880104 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",2.04831153720558 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",2.09603793299929 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",1.89600641059152 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",2.11480231273244 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",2.03777451115004 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",1.8766008348284 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",1.88351846304515 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",1.81106445055041 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",1.82147164295157 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",2.0396878492146 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",2.03101974444712 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",1.84536900759958 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",1.83290383788732 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",1.93572753659012 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",1.79634655304547 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",1.790988067573 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",1.82968988549554 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",1.95592236430486 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",1.83241980891265 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.718894872833151 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.744184382564769 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.757484100644705 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.760344395959396 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.790588585843187 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.845734991024885 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.81077094801815 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.783882742678135 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.803229256760662 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.86954185734661 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.832214739734894 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.828097949649325 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.86934582782656 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.848446392389886 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.841982012670105 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.893244753150322 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",0.821672537603234 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",0.871134256867991 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.897122121764788 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.875939022083388 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.946436818889507 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.926226549734259 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.923106923700334 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.863797103356249 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.868999032547166 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.917438743741243 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",0.917340218487677 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",0.922524620733658 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",0.869539985536957 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.957302673926666 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",0.964588097426171 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.954022752920617 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.942815547868509 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.930250940488762 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",0.981849585719483 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.951732508727599 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.972043004781553 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",0.969072102532806 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",0.924778790049721 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.991946126989153 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.01634380450325 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.9625854312617 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.981698309466597 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.978030073039754 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.0042750565171 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.00697692866932 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.991967908046936 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.05487977082194 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.02736910368996 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.0099946261594 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.946074708803858 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.946988151914648 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",0.964247428069278 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",0.979655484476837 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",0.9611466902964 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.92878565385929 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.966427575821781 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",0.96764646423508 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.95409643415515 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.02341192791847 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.936002330895166 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.930657463512547 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",0.93524220601143 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",0.985220034246943 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",0.963000973004723 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",0.885364264345595 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.90090368775791 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.922580945187769 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.972543969110571 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",0.911288487714182 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",0.972482369556527 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",0.875975947782912 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",0.830478551199241 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.965652306296305 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.841850135171807 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.822193751509409 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",0.898234487192365 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",0.850541287720909 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.809681895128982 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.870156661735448 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.912167217264129 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.844887741910016 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.771164136413279 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.8149998765184 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.801705944031938 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.792409686471292 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.878263469343706 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.771785747382675 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.829373332681249 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.807073783623938 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.842506119373017 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.856588594217041 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.843995399198954 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",0.7608451901239 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",0.776426814335669 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.52374102952249 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.41778068062594 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.30089696392184 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.46639528598724 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.47407923006754 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",1.56464359771495 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",1.4335040916657 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",1.59974252130515 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",1.63716251524537 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",1.584280666607 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",1.55322521031271 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",1.68011394144714 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",1.68339889535237 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",1.51293003406912 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",1.55225551439436 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",1.71043703998491 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",1.66710393526983 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",1.78076566533612 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",1.64605058722429 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",1.66588140155458 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",1.63296405159888 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",1.68104295082346 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",1.74482104290803 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",1.7031153998741 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",1.80290205038137 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",1.73754880788398 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",1.93510037525056 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",1.8488613745117 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",1.81179109108748 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",1.8588586391245 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",1.90542729265806 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",1.93146377337494 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",1.81246048157657 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",1.77432169206051 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",1.93953908324047 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",2.02005581246113 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",1.92305037771969 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",1.98482707942732 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",1.89405927906977 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",1.94772773418737 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",1.85342407958207 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",1.79697925233461 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",1.78573136091802 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",1.77368523829591 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",2.02025633898971 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",1.89967208441536 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",1.99525736509456 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",1.84438004252538 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",1.76435445799063 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",1.86432322920984 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",1.7983286893119 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",1.95910834122914 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",1.98559334263553 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",1.87289646485163 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",1.65816548947697 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",1.68139847370262 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",1.68476189451034 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",1.73018454377676 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",1.77426453715623 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",1.66080527107289 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",1.59901597591178 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",1.66728121234581 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",1.58334971977629 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",1.5299447584547 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",1.32492139826267 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.54706894901288 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",1.45217243336659 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",1.36234720456605 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.4767916662028 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.41531236374286 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.38136525678295 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.29202729775956 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.15552298052565 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.35116809278003 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.34098095763776 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.26945111056951 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.15007679625694 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.24549642458645 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.08632485980653 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.24464588211261 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.12560674740817 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.03171383313193 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.11235455943307 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",0.99606467249715 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.01976652068332 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.24727888261819 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.15275629566769 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.07358319106117 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.00353065295944 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.12865436315157 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",0.953839985434196 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",0.934399665034665 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",0.985694447915755 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.19507708046801 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.05599304272404 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.63520613180369 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",3.37836878674536 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",1.94881855229564 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",-17.0202265687296 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",11.6024459521385 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",3.97738633927642 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",3.33313956311456 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",3.68244681167824 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.92387086520421 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",3.24449844375924 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.5866718375101 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",3.10633196986973 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",2.73591513818158 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",3.36588949448339 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",3.13095635966139 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",2.74018591638113 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",-20.755348232195 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",15.4586267763869 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",5.07501321321971 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",3.47676493509668 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.28825427925294 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",3.11309537981391 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",3.36794536828479 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",3.35489564018666 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.99571812306413 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.20465258598143 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",3.32132866031717 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",-2.12516965533839 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",7.63634617564842 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.74933814181147 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",4.34731340282242 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",3.49488750875185 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",3.47668311500705 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",3.91705727572424 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",4.5194087088088 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",3.84208587331522 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",3.91907742526115 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",4.23257052247959 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",3.98216878113506 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",4.19279328256763 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",3.9982343285932 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",4.48375243566467 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",3.96691797738633 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",3.88005730927718 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",3.38194697517213 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",4.57758624972241 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",3.50006291751984 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",4.45482961017838 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",3.83225017662522 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",3.45721454325769 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",4.04689999598845 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",4.57300662949441 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",-26.8836614215043 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",22.2091875093084 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",7.48280904886482 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",4.803916751177 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",4.33583438996606 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",4.95741469650923 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",4.5418055178504 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",3.99821358547188 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",3.98449201072229 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.40582744325958 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",25.7292375766105 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",-4.22122403512051 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",11.7921072246914 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.9158927296156 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",5.21989469643699 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",4.86998820214644 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",-25.4931001883566 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",21.9755047237434 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",6.94680218451367 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",5.1458475153221 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",4.43219771242855 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",3.9919699059562 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",4.13347486998172 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",-2.48677987963287 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",7.22127631814376 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",4.17563641644922 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",3.43842473253358 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",4.51864812769393 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",3.34476032063324 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.46815077777299 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.17519913263412 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",3.60301909537347 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.4158193398832 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.43311218868579 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.43664428128741 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.31735980977231 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.0041744021867 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.18937359886575 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",-2.91852720667445 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",6.53885528438931 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.78295069163425 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",-29.7317380738207 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.393593521163348 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.504592050889517 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.291074898031408 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",-2.54213544258833 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",1.73293751152739 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.594061115526968 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.497836628923287 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.550009044686435 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.436708390806211 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.484597220489213 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.386344454929915 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.46396072139012 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.408635385234151 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.502728147901535 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.467638612150781 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.409273267261435 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",-3.10001198581366 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",2.3088954111926 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.758002304424838 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.519288467246138 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.640492248801694 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.46497090207499 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.503035212536364 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.501086109439503 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.447439473610599 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.628005527390102 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",0.49607255636591 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",-0.317414640782434 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.1405621533062 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.709359582869331 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",0.649313300074303 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.52199524888701 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.51927624662446 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.585050386436208 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",0.675017398376662 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.573852682429454 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.585352115306642 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",0.632175341203644 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",0.594775419470095 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.626234225732578 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",0.597174964354706 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.669691789146711 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.592497564437963 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.579524083616452 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",0.505126487936122 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.683706776753731 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.522768246238476 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",0.665371885444396 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",0.572383626006661 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",0.51636842715092 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.604443652431396 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.68302276618265 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",-4.01533482825145 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",3.31715694209569 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.11762989854604 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.717511426014017 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.647598798489366 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",0.740437828645488 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.678362578409115 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",0.597171866168929 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.595122416277166 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.658052937909539 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",-4.69095620073328 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",3.84291046245214 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",-0.630480633583396 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.76126525681893 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.734236121326255 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.779641755108655 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.727379836200826 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",-3.80764105980487 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",3.28225415809874 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.0375720895718 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",0.768582092490429 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.661991592639799 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.596239312249926 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.617374447137751 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",-0.371424624954456 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.07856745590004 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.623671681851788 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.513561987200874 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.67490379823149 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.49957230144437 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.518001859541348 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.474246698171152 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.538145747101832 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.510185653189216 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.512768507398991 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.513296059588313 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.495479770153831 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.448702500679194 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.476363791785722 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",-0.435910263725662 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.976641274737318 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",0.565020271142328 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",-4.44072262034841 -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",NA -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.17250395731581 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.0643257223231 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",2.38144257584567 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",2.45478574163542 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",2.33599413275953 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",2.204390803794 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",2.27471736906096 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",2.49901933917669 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.48567769115238 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",2.36325864009135 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.53104180162096 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",2.75011173055794 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",2.51620609870984 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",2.38176395149638 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",2.60136266873808 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",2.73163604953205 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",2.45638236321926 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",2.75006842461919 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",2.89436837104767 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",2.59302969441897 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",2.55399622841738 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",2.64328281744622 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",2.85774408279643 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",2.91429366139166 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.79605705230972 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",3.16504188452286 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",2.98655417871271 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",2.75966410894179 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",2.98960268887458 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",3.1804200512983 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",3.01887180531845 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",2.87810015326797 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",3.0098174452302 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",3.12722212443618 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",3.06063696435107 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",3.25493703595411 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",2.92324203589298 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",2.93316365438615 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",3.04526107683557 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",3.02218015111281 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",3.16261789158294 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",3.32841125919007 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",3.39309437686017 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",2.9411114337764 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",3.13732266483419 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",3.30082765546748 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",3.30135758340216 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",3.17477774333141 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",3.08994254895389 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",3.35801542684426 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",3.21927915391494 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",3.00702307255098 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",3.05523853719713 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",3.15800352984633 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",3.11230322853747 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",3.19537883424586 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",2.97797504432072 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",2.81195375072017 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",3.05506075492227 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",3.1068090724663 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",3.14653429385789 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",2.81993457937946 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",2.857447779005 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",2.78754857497569 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",2.80751831088839 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",2.91468569410033 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",2.7934393222754 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",2.65337424080449 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",2.67267045540667 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",2.58695888558447 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",2.39952394490297 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",2.63864680274024 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",2.65142775282076 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",2.37253408839321 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",2.56016504542905 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",2.2697656768541 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",2.24017176586962 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",2.16868733655614 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",2.23557677784246 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",2.22409842481428 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",2.33939478858122 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",2.43747704169579 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",2.2794411352744 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",2.11333550905629 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",2.19327599272532 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",2.03322863941207 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",1.97853779729311 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",2.33764545658179 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",2.38030978365842 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",2.1156181878803 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",2.39097102200022 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",2.32066838896257 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",2.23091113275734 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",1.95302718048059 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",2.16429634229308 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.443610995874048 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.401136946934383 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.469725535226766 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.49594858398357 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.467967064789027 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.475212127816923 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.472858744269756 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.471570023404137 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.493535966663603 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.499168840918762 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.538327858886755 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.527063312221102 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.497922184616436 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.462331615152442 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.466187132839404 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.537864976998438 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",0.509440320506511 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",0.581484727288527 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.569045463308383 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.558189200444815 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.537679377843664 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.610212592020352 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.624548366882673 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.659279617410826 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.626644555671421 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.649292459932518 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",0.623989337421115 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",0.602269428933889 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",0.610668606224867 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.672662844529681 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",0.636557370472563 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.634363145497529 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.628223436177714 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.667859243093725 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",0.673554441579396 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.738281674653585 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.67960950669634 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",0.682512820024027 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",0.732915781606264 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.70566893288654 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",0.752002448431354 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.748817044991462 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.730727222470367 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.707990381704023 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",0.721490016063338 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.794126417189165 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.754425195584931 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",0.736989519946064 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",0.75535044428528 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",0.792579128028366 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.790949426661932 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.729452236972354 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",0.659074617049309 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",0.759334559351452 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",0.740080492733666 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.732958532937938 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.693201339710709 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",0.719683643531074 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.689708435728542 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",0.761187975517766 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.72896068250416 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.729510440592584 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",0.675519629299603 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",0.705324346851728 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",0.695870636712811 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",0.729808154685441 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.716163440505789 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.714341443992873 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.669188654985877 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",0.698076365058215 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",0.676555276017084 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",0.679304409843395 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",0.661757134342732 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.642816577490549 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.688432420077958 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.62784966248674 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",0.612604091212626 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",0.616878022535281 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.666287058579141 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.619680380911065 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.654852880123556 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.634687300173027 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.664843814827956 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.59128388192273 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.595255120081772 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.595849518114915 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.614252850401613 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.656170960337432 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.662817676413998 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.588507792437493 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.583653713525585 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.633594308295791 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.617524443273232 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",0.580934625815912 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",0.598125468527204 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.72889287735669 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.66318925460657 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.91171698261659 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.95883716616253 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.86802717088895 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",1.72917841902892 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",1.80185893796029 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",2.02744847428008 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",1.99214197246168 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",1.86408959962573 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",1.99271402374402 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",2.22304935945014 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",2.01828403850816 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",1.91943241539416 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",2.13517511974229 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",2.19377117469844 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",1.94694217765375 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",2.16858349539373 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",2.3253226429416 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",2.03483964787054 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",2.01631718875229 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",2.03307025744055 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",2.23319625216213 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",2.25501357179659 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",2.16941301815002 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",2.51574990018592 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",2.36256502050397 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",2.15739413359363 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",2.37893381785705 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",2.50775763717697 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",2.38231385690601 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",2.24373709558801 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",2.38159467906713 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",2.45936267945363 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",2.38708288680127 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",2.51665492209622 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",2.24363255829783 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",2.25065107580757 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",2.31234549989194 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",2.31651150449295 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",2.41061539234488 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",2.57959411428396 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",2.66236732140647 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",2.23312075300811 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",2.41583257747486 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",2.50670161695863 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",2.54693201873181 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",2.43778831222503 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",2.33459258394157 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",2.56543608703048 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",2.42832962334002 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",2.27757039596526 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",2.3961640799162 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",2.39866910312889 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",2.3722231045906 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",2.46242039519122 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",2.28477378960854 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",2.09227030562882 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",2.3653517136374 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",2.34562030011706 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",2.41757389770656 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",2.09042348016908 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",2.18192845483475 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",2.08222407845553 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",2.1116484218259 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",2.18487776153067 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",2.07727598005396 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",1.93903218936392 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",2.00348233256982 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.88888236027867 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.72296812964229 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.95934242973171 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.98967082707451 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.72971659248575 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.87173340500077 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.64191591605616 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.6275672050419 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.55180864367764 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.56928960164563 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.60441800289559 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.68454293200036 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.80279009419313 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.61459780549522 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.52205229761718 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.59801993356179 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.43737902845196 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.36428520004927 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.68147456894618 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.71749153716262 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.52711074093615 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.80731713962039 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",1.68707408953559 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.61338691521737 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.37209258692467 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.5661709058221 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",4.29125101801663 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",4.56191564730427 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.91483338149669 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",4.06883914964643 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",4.31149880108605 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",4.50511812664103 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",4.53925554633733 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",4.30424904145909 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",4.60993469991843 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",4.58387462336137 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.72460543973668 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.94199738181186 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.64417776857374 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.63799890521316 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",5.08193102876915 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.76330657431407 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.54381445899302 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.9776747151229 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.92613723202517 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",5.23875250175082 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.91754124854167 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.65289700917609 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",5.34501454487656 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",5.11045144547781 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",5.23864525205 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",5.24963594527118 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",5.29289439176244 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",5.27760090457411 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",5.39103106949484 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",5.34082700431923 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",5.26259074868495 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",5.60025282540619 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",5.60616596562742 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",5.43655936786313 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",5.50193686459183 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",5.54939405683304 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",5.8203148048092 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",5.41454596658471 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",5.55391775316905 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",5.88550341400512 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",5.63978794646307 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",5.54261011307083 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",5.63011466374598 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",5.59508883234887 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",5.58656008002111 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",5.57907981357448 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",5.69473821108535 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",5.87367233133723 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",5.71567111164656 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",5.6411277673524 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",1.21284442104265 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",1.34273964790314 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",1.2118590259615 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",1.25299735982186 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",1.22881625708648 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",1.28427579822933 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",1.32953773167231 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.23234822331098 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",1.33397583109266 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",1.32228979841815 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.37137357012328 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.4621406011502 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.34104259432328 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.37767489000446 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.39304660034532 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.38282521407984 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.43774435901187 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.40156866840564 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.43970977068909 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.57588112347435 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.48866983723753 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.44550466373884 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.56458064325618 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.59625340954301 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.55079247215231 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.62203079003266 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.61050724422301 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.56462055727699 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.60858287887924 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.58520005656008 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.58371502852339 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.62042743532435 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.65117255447504 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.60670635374482 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.70896550890543 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.64512628801762 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.65547619176854 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.63333098717267 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.65454344922549 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.72521702617309 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.75324855806497 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.67719055140219 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.69299706979954 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.66656691106883 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.7094996773967 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.6745109335228 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.71684385722586 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.72288672674533 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.7135375042963 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.81445005664133 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",3.08545040653768 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",3.22749191176206 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",2.71103364748353 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",2.82411685885908 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",3.0899172862823 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",3.22840637032925 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",3.21789009680658 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",3.07920995153162 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",3.28400650534518 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",3.26952274659802 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",3.36154442232814 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",3.48898226141399 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",3.31119912991443 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",3.26897196319588 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",3.6965538148565 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",3.38886617793425 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",3.11590820161051 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",3.58419400082013 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",3.49524775202923 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",3.67294655305573 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",3.43847489637237 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",3.2170520627306 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",3.79004336788323 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",3.52494130219 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",3.69753810959669 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",3.63836710611234 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",3.69285249768758 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",3.72277400365834 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",3.79261412964776 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",3.76556644807908 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",3.68900755518174 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",3.98960089105826 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",3.96522806668179 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",3.83986423016763 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",3.80439008961168 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",3.91456521733048 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",4.17455343043112 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",3.79169967108057 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",3.90980449859381 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",4.17090481980786 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",3.89826571808536 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",3.87623306433615 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",3.94793636671463 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",3.93902764283458 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",3.88825410973739 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",3.91523986111492 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",3.98890516465556 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",4.16140051196186 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",4.01303553892201 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",3.83935034134746 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",1.11571797898075 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",1.25750721588638 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",1.1991042705932 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",1.20332738345587 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",1.37103373563664 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",1.30980873305456 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",1.37652214162713 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",1.42846060685156 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",1.31395318734368 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",1.63615141220567 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",1.23656055035057 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",1.61537847112677 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",1.47290382689625 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",1.57358824873745 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",1.81735245500075 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",1.51781513783872 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",1.56129740426713 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",1.55521930025902 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",1.60634496022349 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",1.62778046707832 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",1.7275336936593 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",1.49984205592367 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",1.72703343156579 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",1.82784991616545 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.00951904985831 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",1.95968747624183 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",1.71359069743258 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",1.89448128818892 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",1.89111457255642 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",1.70264927376689 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",1.99754653936967 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",1.94394128449479 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",1.76481850094347 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",1.86795131163524 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",2.17491599275404 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",2.00491696031001 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",1.97852853701751 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",1.81289191871364 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",1.86352294654385 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",2.08355462257763 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",2.02146260627079 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",2.0352206181221 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",2.10112170400265 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",2.01104879021498 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",2.13308539551409 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",2.00515502715837 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",1.92122842031374 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",1.89049688559852 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",1.9280841021225 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",1.98337834477288 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",1.79421493103615 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",1.97707439897079 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",1.78623164881727 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",1.7562046632884 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",2.02655852367345 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",1.83728894499083 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",1.71034462378404 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",1.93248994737688 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",1.64600866657546 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",1.82750407581141 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",1.81615407796004 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",1.87165904194241 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",1.72728597545223 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",1.71362930286745 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",1.75739660608997 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",1.67652626283912 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",1.32279479706447 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",1.35871924533746 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",1.33211447075372 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",1.16229720556553 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",1.31007221514754 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",1.26786087180619 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",1.45435311116198 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",1.22891442226288 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",1.05966530039118 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",1.0356932556095 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",1.20503921278033 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",1.24249147113825 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",1.02416551190174 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",1.05455538851838 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",1.06764584805842 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",1.08501684604549 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",1.10651235218035 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",1.14754671232614 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",1.02412690646688 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",0.90346208095343 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",1.2048423250625 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",0.83399996541821 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",0.801902924300492 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",1.01641498828393 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",0.976652677217066 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",1.02869666396347 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",1.0957737679037 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",1.17972852454459 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",0.984824643498863 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",-0.10956437763858 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",-0.0815154894637639 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",-0.159319092811825 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.072819561777525 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.104530038641015 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.0263602647878972 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.0151029529936557 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",-0.0141979251204256 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.0718511108560539 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",-0.0371986563232178 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.0113891178162923 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.149353482360919 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.0368638540747059 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.033746053589302 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.148084817762791 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.0104161898710967 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",0.0921673732524615 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",-0.0123035593664377 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.133677208516267 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.130111385663209 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.118779890254932 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.10778357527131 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.021072347050211 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.112562354467574 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.206987497475141 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.305445889048607 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",0.235543199862623 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",0.199608175485783 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",0.290241491759095 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.233422737137926 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",0.288977830722245 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.121162050870636 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.225385097754892 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.140766091227743 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",0.34146018496313 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.348356081479748 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.309794914693974 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",0.170986088639955 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",0.293234290483976 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.233239176256172 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",0.357404963869366 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.444252533317186 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.280723554590173 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.37286858635972 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",0.349514755001186 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.28617822182553 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.222432763877319 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",0.343340011298941 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",0.256446507994974 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",0.306327039461973 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.200410577989971 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.329418474758158 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",0.202576596394672 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",0.262370608185778 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",0.276835409301324 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.307744036379604 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.116692561578463 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",0.24105846255229 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.215441596063119 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",0.379356343546542 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.302179901696063 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.412154978626022 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",0.317873338919516 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",0.2237653693341 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",0.33054689418815 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",0.273905911444699 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.176997227524611 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.22394637025427 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.250831901341568 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",0.127586972636762 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",0.0851505185510049 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",0.164188459739592 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",0.0814521885955077 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.267364278702726 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.079816285871981 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.129633545561196 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",0.223200926895323 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",0.261772740794048 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.229944912964315 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.211025924145153 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.174091816579253 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.141839093307538 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.144980777070901 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.130808247933006 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.248674580988158 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.0754186791374647 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.171478415797294 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.132366188190114 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.138582414906208 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.189047577599929 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.135603085070114 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.220229480577289 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.191138629856883 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",0.252149001576482 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",0.171867849953244 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.22528243390263 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.3390221552156 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.35842330833009 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.13050785364455 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.26650369129213 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",1.28344847184237 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",1.36141965593823 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",1.44265836105374 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",1.2421020372221 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",1.67334945612475 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",1.22517148734651 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",1.46602433824603 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",1.43603977968359 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",1.53984201005939 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",1.66926867840161 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",1.5073987071536 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",1.46913005122422 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",1.56752330757564 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",1.47266795506233 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",1.49767045984007 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",1.60875405208158 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",1.3920577714108 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",1.70596141887833 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",1.71528778139832 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",1.80253235828073 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",1.65424082243375 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",1.47804794067538 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",1.69487335154211 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",1.60087315716323 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",1.46922624004365 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",1.70856905824355 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",1.82277944594422 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",1.53943353699056 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",1.72718620659689 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",1.83345640490148 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",1.65656121299573 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",1.66873371044694 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",1.64190625341006 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",1.57028774789309 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",1.85031580140378 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",1.66405735263634 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",1.59096702641651 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",1.82039844324944 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",1.63817992489826 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",1.78357130195653 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",1.71897721556842 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",1.69879601065796 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",1.54715631330162 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",1.67163782220084 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",1.67705206684546 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",1.59380393776231 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",1.64765518244012 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",1.58365535848441 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",1.49383344830317 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",1.74972337875597 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",1.52954453575963 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",1.59365108977526 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",1.69143031886837 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",1.43056624056124 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",1.44814771203683 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",1.5139751235618 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",1.45950458100544 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",1.40941260621595 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",1.48986467126019 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",1.42685045328992 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.40262009437778 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",1.14579752767298 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",1.13477283954519 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.08128263235402 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.03471037776281 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.22492165994699 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.1036724906773 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.37290038448255 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",0.961550215824759 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",0.979849018715425 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",0.906059676485868 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",0.981838282560639 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",0.980718802821026 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",0.794220672598032 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",0.843529433219412 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",0.893553944069791 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",0.943177887781703 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",0.961531505122896 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.01673848509271 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",0.775452257443715 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",0.82804342858693 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.03336399782173 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",0.70163366327181 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",0.663320602366887 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",0.827367471540765 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",0.84104960639508 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",0.808467159114866 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",0.904635027834185 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",0.927579487172539 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",0.812956805203362 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2005,"Simulated","PgC/yr","global",4.59401387609227 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.41986629061182 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.45792204601725 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",2.46312548745958 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",2.37950006043639 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",2.30285192322734 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",2.23956555400587 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",2.58986219507976 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",2.54858897456037 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.67804665321242 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",2.52257520726148 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.51436528202411 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",2.54057627099072 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",2.50831332875557 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",2.51175668147733 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",2.68205759154766 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",2.67049375132157 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",2.69026178359701 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",2.58141720913379 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",2.59002731089459 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",2.73885055202344 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",2.69461785985074 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",2.81910486449386 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",2.68489666625265 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",2.59343053130025 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.77721016639365 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",2.70020083833967 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",2.88849019912561 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",2.76244032742962 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",2.80807306411556 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",2.97362689450954 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",2.87207493520129 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",2.72402223454165 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",2.79761802245155 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",2.85147329738849 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",2.74166898725157 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",2.79112805361867 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",2.94562485760707 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",2.91483190477895 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",2.87747789158655 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",2.88915524893534 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",2.9738034767004 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",2.85474809438261 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",2.83681926882236 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",2.8580114250007 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",3.0005522387028 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",2.94704554159717 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",3.11734989158031 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",2.96781802841282 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",3.00922196561896 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",2.93613643144238 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",2.92290538014156 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",2.87755586294355 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",2.66102825790894 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",2.77448002226095 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",2.89596398302185 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",2.8151237387363 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",2.74525796294891 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",2.92630745390961 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",2.60757315949545 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",2.72104900323712 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",2.60614559567973 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",2.35493105651726 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",2.66265877658038 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",2.5541765395997 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",2.66967046552263 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",2.54631060564324 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",2.50338049378753 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",2.63482988195597 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",2.43563026437764 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",2.284810727182 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",2.52096303479168 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",2.48036633045805 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",2.3613281477043 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",2.19339848419694 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",2.0724786691367 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",2.24021913743957 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",2.16593192705507 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",2.16008980846787 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",2.10995651919022 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",2.25707929675384 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",2.34539217829804 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",2.15169871448924 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",2.25824886710888 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",2.10695691522081 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",1.90503632661061 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",2.24194482703206 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",1.97956433089173 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",1.97771939098853 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",2.18061118164847 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",1.98009981065233 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",2.14272398197068 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",1.95304948296034 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",1.99700812874592 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.55283368009267 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",1.85166034619172 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2005,"Simulated","PgC/yr","HL",1.64770411013066 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.893452790956557 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.963931524817511 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.962154778823284 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.967520742987223 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.953944613673565 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.906168965826376 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.976739902104619 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.00090108544542 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.983149864676458 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.994524503396477 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.945131073018138 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.01692951036257 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.969798918565886 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.08685737537815 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.11735436239939 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.09663606423334 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.03398858147845 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.02690866279038 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.0591417978726 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.09900175091257 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.00978481541655 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.12959887950249 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.08363498208975 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.06516689203724 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.02672786666098 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.06466257548866 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.12403443655378 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.02535854348131 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.02791910024013 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.12767958965374 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.125262659361 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.08714950006228 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.09769395615618 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.11219481617161 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.09211670230409 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.06503282863989 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.11170132573857 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.10357542385475 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.18789895512984 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.16238306386534 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.13397335191886 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.14119437097938 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.1307639499691 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.14182607482073 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.1541391573222 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.16360515187375 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.15574178329161 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.21159461550272 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.24584772330814 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.17490978171333 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",1.10122525460779 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.11364984609925 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",1.12225462316015 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.21714191710184 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.2310269515787 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.18521498065394 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.14632198016633 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.21949948419441 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",1.14235890014021 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.19722258626213 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",1.10031965004345 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",1.13413664582815 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.14571319160286 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.11751909979075 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.1273010364806 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.20073548031733 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",1.10228044000174 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",1.17806920309638 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",1.06509922881516 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.15258687279003 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.19268481993646 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.03890580315355 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.11368665489206 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.10677580404156 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.05639701671446 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.06944753811899 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.12619117920321 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.06317109763873 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.03523971956355 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.13240988040063 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.15122151918606 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.07100469440316 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.994455757562843 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.10088369066272 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.0573706453714 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.08866840407156 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.05372747705928 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.06882539734636 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.105037851628 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.985511401344726 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.12155651914353 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.988850536245625 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.962755267364849 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.68127733788061 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.04783211584578 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2005,"Simulated","PgC/yr","LL",2.94630940823072 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.52641322662567 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.49399037456471 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.50097022029848 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.41197911959749 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.34890639677699 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",1.33339691674949 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",1.6131221573899 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",1.54768803604041 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",1.69489669278281 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",1.52804997339658 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",1.5692333821115 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",1.52364698931451 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",1.53851491098552 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",1.4248991773428 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",1.56470285932001 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",1.57385762653036 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",1.65627275407741 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",1.55450845838741 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",1.53088481107417 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",1.63984828043005 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",1.684833695369 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",1.68950624990507 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",1.60126105741373 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",1.52826350411462 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",1.75048231363888 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",1.63553805177302 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",1.76445553193926 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",1.73708205332856 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",1.78015342142385 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",1.84594697004534 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",1.74681171093365 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",1.63687334341257 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",1.6999248097815 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",1.7392782312567 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",1.64955185057185 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",1.7260953664738 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",1.83392354807536 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",1.81125644108278 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",1.68957968128322 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",1.72677170811467 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",1.83982994300485 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",1.71355309384503 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",1.70605439745247 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",1.71618599523271 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",1.8464126795752 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",1.78344044179848 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",1.96160815405053 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",1.75622348796753 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",1.76337435151621 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",1.76122744990762 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",1.82167983197093 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",1.76390576280546 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",1.53877385321374 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",1.55733749885094 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",1.6649376566993 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",1.62990895691629 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",1.59893540837148 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",1.70680803528087 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",1.46521397015037 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",1.52382573674817 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",1.50582538707759 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",1.22079376316338 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",1.51694540985584 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",1.43665689366815 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",1.54237005833848 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.34557493109453 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",1.40109968120293 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",1.45676066584184 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.37053097144029 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.13222392668442 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.32827797673045 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.44146085172302 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.24764162769889 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.08662304085227 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.01608157391187 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.17077153540464 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.03974097071185 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.096918893031 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.07471652936593 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.1246691905559 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.19417005757171 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.08069442326888 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.26379266608287 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.00607365003169 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",0.847666128399763 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.15327650956002 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",0.925836632428944 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",0.908894564185853 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.0755725846428 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",0.994588402767368 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.02116766305122 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",0.964199310020499 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.03425197519502 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.87155650134654 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",0.803827982124194 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2005,"Simulated","PgC/yr","global",4.60791714368785 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.34724743793966 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.23467170471634 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",2.3294275429517 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",2.39401763912776 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",2.40553647382793 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",2.37484299181187 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",2.38144733774566 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",2.42872750600768 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.42480055887686 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",2.5263490782723 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.51615117009076 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",2.48678893433176 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",2.51633549208544 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",2.56568419458325 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",2.58736281176466 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",2.55692904316567 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",2.57675784723406 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",2.59924283730977 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",2.60400424995616 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",2.64846340305544 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",2.76507157406907 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",2.7346455452739 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",2.67352345452806 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",2.70250586658107 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.77928099390464 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",2.84153653592103 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",2.78916615667996 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",2.80946364886857 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",2.87396516728981 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",2.81496062953728 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",2.86172939742837 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",2.85714686024805 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",2.91032561899923 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",2.86192919903069 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",2.96538113684708 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",2.97888508789742 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",2.97397031247163 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",2.96820329864742 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",2.93152436834378 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",2.99295318464842 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",2.83220003923873 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",2.8697716269163 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",2.8837210466754 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",2.88597304292766 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",2.96566836956663 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",3.02762062593703 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",2.91850773827472 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",2.91195011782325 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",2.91257962186729 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",2.87556157349257 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",2.87426271974778 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",2.83404440582314 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",2.86475537406265 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",2.85523226211047 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",2.8421032615563 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",2.79869758175476 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",2.80995297646565 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",2.83799399904661 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",2.76809095753713 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",2.71465965185389 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",2.6214661073526 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",2.60849878270045 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",2.65764682361774 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",2.61581375728869 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",2.61917770535644 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",2.64746525502204 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",2.58254091398471 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",2.44794371893668 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",2.38842978742902 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",2.37950894687781 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",2.3117125653044 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",2.24817221585386 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",2.20071087885057 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",2.17745563496505 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",2.20898386915609 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",2.15922151714301 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",2.16073049222854 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",2.18470811780392 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",2.08289787837561 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",2.07319101774755 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",2.19556448262898 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",2.10651459976547 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",2.05395273204469 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",2.0445781096621 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",2.049764064881 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",1.99030345202188 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",2.03700141504099 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",2.05082040477274 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",2.06488104837933 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",2.00874826450347 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",2.03580289208647 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",2.01332191524237 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",1.96934750318975 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",2.69969425384667 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",2.05757467357312 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",2.03332672818283 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",2.0334712045208 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2103,"Simulated","PgC/yr","global",2.10518765339941 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2104,"Simulated","PgC/yr","global",2.14246598851001 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2105,"Simulated","PgC/yr","global",2.12739343721879 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2106,"Simulated","PgC/yr","global",2.07181017941416 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2107,"Simulated","PgC/yr","global",2.00697011624064 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2108,"Simulated","PgC/yr","global",2.08810848630297 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2109,"Simulated","PgC/yr","global",1.73246048753596 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2110,"Simulated","PgC/yr","global",1.90574265537404 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2111,"Simulated","PgC/yr","global",1.7475433585656 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2112,"Simulated","PgC/yr","global",1.81327091924383 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2113,"Simulated","PgC/yr","global",1.95429473139718 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2114,"Simulated","PgC/yr","global",1.89493444932832 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2115,"Simulated","PgC/yr","global",1.85526996136591 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2116,"Simulated","PgC/yr","global",1.69524751076873 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2117,"Simulated","PgC/yr","global",1.96742831850175 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2118,"Simulated","PgC/yr","global",1.92804934330249 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2119,"Simulated","PgC/yr","global",1.78868700903586 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2120,"Simulated","PgC/yr","global",1.80124498406374 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2121,"Simulated","PgC/yr","global",1.7742508416143 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2122,"Simulated","PgC/yr","global",1.66946880417845 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2123,"Simulated","PgC/yr","global",1.81577288249354 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2124,"Simulated","PgC/yr","global",1.62744338939149 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2125,"Simulated","PgC/yr","global",1.56040522193306 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2126,"Simulated","PgC/yr","global",1.67454267557165 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2127,"Simulated","PgC/yr","global",1.86515971069165 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2128,"Simulated","PgC/yr","global",1.60822459652789 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2129,"Simulated","PgC/yr","global",1.77039125944265 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2130,"Simulated","PgC/yr","global",1.74079539627204 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2131,"Simulated","PgC/yr","global",1.73896421602008 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2132,"Simulated","PgC/yr","global",1.68552861044584 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2133,"Simulated","PgC/yr","global",1.62914385295672 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2134,"Simulated","PgC/yr","global",1.67302108747249 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2135,"Simulated","PgC/yr","global",1.77061370713763 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2136,"Simulated","PgC/yr","global",1.67854558744367 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2137,"Simulated","PgC/yr","global",1.7064616265259 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2138,"Simulated","PgC/yr","global",1.63523364526617 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2139,"Simulated","PgC/yr","global",1.54665359716048 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2140,"Simulated","PgC/yr","global",1.65913071954995 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2141,"Simulated","PgC/yr","global",1.53476525849274 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2142,"Simulated","PgC/yr","global",1.65860211961497 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2143,"Simulated","PgC/yr","global",1.74749749306148 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2144,"Simulated","PgC/yr","global",1.59786931233534 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2145,"Simulated","PgC/yr","global",1.76513965922099 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2146,"Simulated","PgC/yr","global",1.75240166208944 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2147,"Simulated","PgC/yr","global",1.70127653128521 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2148,"Simulated","PgC/yr","global",1.52784644719634 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2149,"Simulated","PgC/yr","global",1.35030452066316 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2150,"Simulated","PgC/yr","global",1.64764714395607 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2151,"Simulated","PgC/yr","global",1.46552440019897 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2152,"Simulated","PgC/yr","global",1.45003905937068 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2153,"Simulated","PgC/yr","global",1.58811601288436 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2154,"Simulated","PgC/yr","global",1.53262333945037 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2155,"Simulated","PgC/yr","global",1.42299790477952 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2156,"Simulated","PgC/yr","global",1.32385503107514 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2157,"Simulated","PgC/yr","global",1.51738796561952 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2158,"Simulated","PgC/yr","global",1.50498937321846 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2159,"Simulated","PgC/yr","global",1.42823574534995 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2160,"Simulated","PgC/yr","global",1.50767709175986 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2161,"Simulated","PgC/yr","global",1.48700436241567 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2162,"Simulated","PgC/yr","global",1.44270287198679 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2163,"Simulated","PgC/yr","global",1.44164452547924 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2164,"Simulated","PgC/yr","global",1.36900503333022 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2165,"Simulated","PgC/yr","global",1.7003489014644 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2166,"Simulated","PgC/yr","global",1.39029236042962 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2167,"Simulated","PgC/yr","global",1.39660345379644 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2168,"Simulated","PgC/yr","global",1.38738448746845 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2169,"Simulated","PgC/yr","global",1.30971010960474 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2170,"Simulated","PgC/yr","global",1.55650780072052 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2171,"Simulated","PgC/yr","global",1.32308219733073 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2172,"Simulated","PgC/yr","global",1.38231520262566 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2173,"Simulated","PgC/yr","global",1.52435378905765 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2174,"Simulated","PgC/yr","global",1.51235995973044 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2175,"Simulated","PgC/yr","global",1.44469343486557 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2176,"Simulated","PgC/yr","global",1.38244362603719 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2177,"Simulated","PgC/yr","global",1.41042961001321 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2178,"Simulated","PgC/yr","global",1.46002053970465 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2179,"Simulated","PgC/yr","global",1.51515431556891 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2180,"Simulated","PgC/yr","global",1.33708493573837 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2181,"Simulated","PgC/yr","global",1.31873529417782 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2182,"Simulated","PgC/yr","global",1.26102617025726 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2183,"Simulated","PgC/yr","global",1.23551004367806 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2184,"Simulated","PgC/yr","global",1.37413279669077 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2185,"Simulated","PgC/yr","global",1.33668590585253 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2186,"Simulated","PgC/yr","global",1.30625987705736 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2187,"Simulated","PgC/yr","global",1.30974221545762 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2188,"Simulated","PgC/yr","global",1.38335520293156 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2189,"Simulated","PgC/yr","global",1.2453642472381 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2190,"Simulated","PgC/yr","global",1.17156321119727 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2191,"Simulated","PgC/yr","global",1.19282301899419 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2192,"Simulated","PgC/yr","global",1.28659160225338 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2193,"Simulated","PgC/yr","global",1.20092860020968 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2194,"Simulated","PgC/yr","global",1.32912383086085 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2195,"Simulated","PgC/yr","global",1.46788418038591 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2196,"Simulated","PgC/yr","global",1.39678806245052 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2197,"Simulated","PgC/yr","global",1.36302761150587 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2198,"Simulated","PgC/yr","global",1.39753911008047 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2199,"Simulated","PgC/yr","global",2.8728290214209 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2200,"Simulated","PgC/yr","global",1.39803560416256 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2201,"Simulated","PgC/yr","global",1.33194341272659 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2202,"Simulated","PgC/yr","global",1.29614768003665 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2203,"Simulated","PgC/yr","global",1.31750495202982 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2204,"Simulated","PgC/yr","global",1.31582627457905 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2205,"Simulated","PgC/yr","global",1.06178171914865 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2206,"Simulated","PgC/yr","global",1.34905239240071 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2207,"Simulated","PgC/yr","global",1.54387185433564 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2208,"Simulated","PgC/yr","global",1.30637568745526 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2209,"Simulated","PgC/yr","global",1.27590493979357 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2210,"Simulated","PgC/yr","global",1.43261819426855 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2211,"Simulated","PgC/yr","global",1.31260422291467 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2212,"Simulated","PgC/yr","global",1.29467310407921 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2213,"Simulated","PgC/yr","global",1.34890332951232 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2214,"Simulated","PgC/yr","global",1.27901232769766 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2215,"Simulated","PgC/yr","global",1.19089552118357 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2216,"Simulated","PgC/yr","global",1.16206446529415 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2217,"Simulated","PgC/yr","global",1.1935178813816 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2218,"Simulated","PgC/yr","global",1.25332764539083 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2219,"Simulated","PgC/yr","global",1.33105132867147 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2220,"Simulated","PgC/yr","global",1.24313633037551 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2221,"Simulated","PgC/yr","global",1.14982869543272 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2222,"Simulated","PgC/yr","global",1.30498825595565 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2223,"Simulated","PgC/yr","global",1.28787927628153 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2224,"Simulated","PgC/yr","global",1.28686564864049 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2225,"Simulated","PgC/yr","global",1.17712440357174 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2226,"Simulated","PgC/yr","global",1.02913029609361 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2227,"Simulated","PgC/yr","global",1.15482574210652 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2228,"Simulated","PgC/yr","global",1.12166945451488 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2229,"Simulated","PgC/yr","global",1.17404224169492 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2230,"Simulated","PgC/yr","global",1.1944007923359 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2231,"Simulated","PgC/yr","global",1.2919418133089 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2232,"Simulated","PgC/yr","global",1.29159896866561 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2233,"Simulated","PgC/yr","global",1.24080521612864 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2234,"Simulated","PgC/yr","global",1.09924947879127 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2235,"Simulated","PgC/yr","global",1.11437294079206 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2236,"Simulated","PgC/yr","global",1.30080990853038 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2237,"Simulated","PgC/yr","global",1.12723683873241 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2238,"Simulated","PgC/yr","global",1.33277701826396 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2239,"Simulated","PgC/yr","global",1.16155765147364 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2240,"Simulated","PgC/yr","global",1.13307414144168 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2241,"Simulated","PgC/yr","global",1.29295314767473 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2242,"Simulated","PgC/yr","global",1.25988067929188 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2243,"Simulated","PgC/yr","global",1.17065851412852 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2244,"Simulated","PgC/yr","global",1.21052939685946 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2245,"Simulated","PgC/yr","global",1.07238433307216 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2246,"Simulated","PgC/yr","global",0.925398808029617 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2247,"Simulated","PgC/yr","global",1.20944123777423 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2248,"Simulated","PgC/yr","global",0.90796739386154 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2249,"Simulated","PgC/yr","global",0.878104937448236 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2250,"Simulated","PgC/yr","global",1.14995597220665 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2251,"Simulated","PgC/yr","global",1.15908664743921 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2252,"Simulated","PgC/yr","global",1.22056362252317 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2253,"Simulated","PgC/yr","global",1.113887913086 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2254,"Simulated","PgC/yr","global",1.25657377644487 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2255,"Simulated","PgC/yr","global",1.04872507142724 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2256,"Simulated","PgC/yr","global",1.20761005752227 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2257,"Simulated","PgC/yr","global",1.05374482152558 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2258,"Simulated","PgC/yr","global",1.05027016559726 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2259,"Simulated","PgC/yr","global",1.16862437902082 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2260,"Simulated","PgC/yr","global",1.11470156712907 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2261,"Simulated","PgC/yr","global",1.21886545223315 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2262,"Simulated","PgC/yr","global",1.31401688044154 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2263,"Simulated","PgC/yr","global",1.12957517679618 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2264,"Simulated","PgC/yr","global",1.00648798733878 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2265,"Simulated","PgC/yr","global",0.917145769218382 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2266,"Simulated","PgC/yr","global",1.07536260958215 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2267,"Simulated","PgC/yr","global",1.0633388530135 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2268,"Simulated","PgC/yr","global",0.887013394313336 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2269,"Simulated","PgC/yr","global",0.938679279411134 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2270,"Simulated","PgC/yr","global",0.854756987912524 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2271,"Simulated","PgC/yr","global",1.09336562259532 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2272,"Simulated","PgC/yr","global",1.26337448406817 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2273,"Simulated","PgC/yr","global",1.15357705375687 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2274,"Simulated","PgC/yr","global",1.09266044046948 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2275,"Simulated","PgC/yr","global",1.2051642795151 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2276,"Simulated","PgC/yr","global",1.26087022754325 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2277,"Simulated","PgC/yr","global",1.30507310713827 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2278,"Simulated","PgC/yr","global",0.929862897545553 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2279,"Simulated","PgC/yr","global",0.961051555010468 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2280,"Simulated","PgC/yr","global",0.96710901213951 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2281,"Simulated","PgC/yr","global",1.10384841288931 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2282,"Simulated","PgC/yr","global",0.955018177271088 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2283,"Simulated","PgC/yr","global",1.12816228994178 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2284,"Simulated","PgC/yr","global",0.8697054730151 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2285,"Simulated","PgC/yr","global",1.17418213148248 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2286,"Simulated","PgC/yr","global",1.13578387542505 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2287,"Simulated","PgC/yr","global",1.08921915169541 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2288,"Simulated","PgC/yr","global",1.14831513379678 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2289,"Simulated","PgC/yr","global",0.979925324619338 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2290,"Simulated","PgC/yr","global",1.05901958382683 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2291,"Simulated","PgC/yr","global",1.00147362643717 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2292,"Simulated","PgC/yr","global",1.19050107784815 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2293,"Simulated","PgC/yr","global",1.18413265260118 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2294,"Simulated","PgC/yr","global",0.920794484734837 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2295,"Simulated","PgC/yr","global",1.07413077680527 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2296,"Simulated","PgC/yr","global",1.21796304843961 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2297,"Simulated","PgC/yr","global",1.06672533251016 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2298,"Simulated","PgC/yr","global",1.0534082833891 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2299,"Simulated","PgC/yr","global",2.86912859254855 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2005,"Simulated","PgC/yr","HL",1.79075128880333 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.931245903214827 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.889543976834547 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.894548844936645 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.920099560206111 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.923046925051159 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.965885413127146 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.94969482202108 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.960695102687731 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.966485676124636 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.994328595814144 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.0073047327832 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.02690482854113 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.01591009625869 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.0261285509486 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.03740097309446 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.06041512949454 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.04381436393621 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.02679904837061 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.0441887670984 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.04161923368546 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.09189589465603 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.08100978439944 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.04440384592699 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.05606208376516 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.10230804659635 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.10724159766237 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.09010060893895 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.10291733135678 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.12493268838131 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.12145186669338 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.12591804533008 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.12363964420734 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.16344014382951 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.12832094678144 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.18304244991935 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.20802127563579 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.13652384941199 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.18682938002399 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.15687396943229 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.20285194079522 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.17139566972013 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.17112190432358 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.17824129322454 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.16599767829774 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.17241377566838 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.18305805756925 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.22820927457598 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.20557313004326 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.20126230616445 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.2111468654078 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",1.19711252075421 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.15733561304215 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",1.18750353126 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.18586535954459 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.19423489413672 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.15582825688943 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.16437421205593 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.20272901927511 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",1.17498452701932 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.17640883784413 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",1.21655117206425 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",1.15631714622337 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.16408326020098 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.15061097137881 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.15375767207611 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.15651246739111 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",1.14467009537125 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",1.08134313854022 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",1.12573282853683 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.09604504854287 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.09684036205521 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.14109377832255 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.12293463854207 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.07136173067167 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.10629710929975 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.08764867420598 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.09988200432303 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.07077734597697 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.07075560352827 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.08210529707375 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.10048226732052 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.06665809923428 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.07176193607587 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.04569174769608 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.03833035000415 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.04561799478402 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.06192857533724 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.09022226741226 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.05166789879675 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.04169916650514 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.07758652155908 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.06079034461539 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.01683748838054 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.22741290551737 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.01196271410009 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",1.02140592870021 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",1.04578958871522 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2103,"Simulated","PgC/yr","HL",1.06145263223312 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2104,"Simulated","PgC/yr","HL",0.973824429191579 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2105,"Simulated","PgC/yr","HL",0.983235571424427 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2106,"Simulated","PgC/yr","HL",1.06844052893916 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2107,"Simulated","PgC/yr","HL",1.01680031871721 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2108,"Simulated","PgC/yr","HL",1.04759321956302 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2109,"Simulated","PgC/yr","HL",0.916760154652323 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2110,"Simulated","PgC/yr","HL",1.0143121164972 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2111,"Simulated","PgC/yr","HL",0.994153708939472 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2112,"Simulated","PgC/yr","HL",0.991425347389893 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2113,"Simulated","PgC/yr","HL",0.944057844098299 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2114,"Simulated","PgC/yr","HL",1.02965200046645 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2115,"Simulated","PgC/yr","HL",1.07807739568088 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2116,"Simulated","PgC/yr","HL",0.972449332083627 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2117,"Simulated","PgC/yr","HL",0.986212933631265 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2118,"Simulated","PgC/yr","HL",1.02894722034525 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2119,"Simulated","PgC/yr","HL",0.995501019017555 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2120,"Simulated","PgC/yr","HL",0.978611917915536 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2121,"Simulated","PgC/yr","HL",0.918574070309879 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2122,"Simulated","PgC/yr","HL",0.987034996670739 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2123,"Simulated","PgC/yr","HL",0.936778544449159 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2124,"Simulated","PgC/yr","HL",0.8836098671492 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2125,"Simulated","PgC/yr","HL",0.962649351867884 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2126,"Simulated","PgC/yr","HL",0.991667491507315 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2127,"Simulated","PgC/yr","HL",1.04673452816599 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2128,"Simulated","PgC/yr","HL",0.91801472100734 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2129,"Simulated","PgC/yr","HL",1.00123290588651 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2130,"Simulated","PgC/yr","HL",0.980927984898565 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2131,"Simulated","PgC/yr","HL",1.00490259818168 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2132,"Simulated","PgC/yr","HL",1.00608444912737 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2133,"Simulated","PgC/yr","HL",0.951788412329906 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2134,"Simulated","PgC/yr","HL",0.94946693228911 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2135,"Simulated","PgC/yr","HL",0.938845430339671 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2136,"Simulated","PgC/yr","HL",0.962858115462413 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2137,"Simulated","PgC/yr","HL",0.974333617492148 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2138,"Simulated","PgC/yr","HL",0.982977188133706 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2139,"Simulated","PgC/yr","HL",0.937633807576268 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2140,"Simulated","PgC/yr","HL",0.950756863954869 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2141,"Simulated","PgC/yr","HL",0.861805168289416 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2142,"Simulated","PgC/yr","HL",0.907386362518063 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2143,"Simulated","PgC/yr","HL",0.86188040979237 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2144,"Simulated","PgC/yr","HL",0.911688841266141 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2145,"Simulated","PgC/yr","HL",0.976731782517969 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2146,"Simulated","PgC/yr","HL",0.918868360217118 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2147,"Simulated","PgC/yr","HL",0.965242206538041 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2148,"Simulated","PgC/yr","HL",0.982117414125126 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2149,"Simulated","PgC/yr","HL",0.930535304056529 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2150,"Simulated","PgC/yr","HL",0.968617608925976 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2151,"Simulated","PgC/yr","HL",0.890434469945952 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2152,"Simulated","PgC/yr","HL",0.881659362000668 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2153,"Simulated","PgC/yr","HL",0.878690480250998 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2154,"Simulated","PgC/yr","HL",0.875645635257338 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2155,"Simulated","PgC/yr","HL",0.935493664970649 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2156,"Simulated","PgC/yr","HL",0.869489905965267 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2157,"Simulated","PgC/yr","HL",0.8716242746426 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2158,"Simulated","PgC/yr","HL",0.853053336492527 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2159,"Simulated","PgC/yr","HL",0.903601011221945 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2160,"Simulated","PgC/yr","HL",0.873022467463689 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2161,"Simulated","PgC/yr","HL",0.868949141494393 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2162,"Simulated","PgC/yr","HL",0.864506825420679 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2163,"Simulated","PgC/yr","HL",0.87265221431246 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2164,"Simulated","PgC/yr","HL",0.864003050177876 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2165,"Simulated","PgC/yr","HL",0.96365040668417 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2166,"Simulated","PgC/yr","HL",0.900166967374873 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2167,"Simulated","PgC/yr","HL",0.812821867254519 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2168,"Simulated","PgC/yr","HL",0.822712245534963 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2169,"Simulated","PgC/yr","HL",0.807528257629393 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2170,"Simulated","PgC/yr","HL",0.876308734833735 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2171,"Simulated","PgC/yr","HL",0.832426158132218 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2172,"Simulated","PgC/yr","HL",0.835468657467512 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2173,"Simulated","PgC/yr","HL",0.813646095517099 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2174,"Simulated","PgC/yr","HL",0.840045939114871 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2175,"Simulated","PgC/yr","HL",0.843594018045557 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2176,"Simulated","PgC/yr","HL",0.826560207865913 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2177,"Simulated","PgC/yr","HL",0.828037250895134 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2178,"Simulated","PgC/yr","HL",0.856687302606442 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2179,"Simulated","PgC/yr","HL",0.834858786292486 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2180,"Simulated","PgC/yr","HL",0.809110674849802 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2181,"Simulated","PgC/yr","HL",0.86660294182313 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2182,"Simulated","PgC/yr","HL",0.796441774017811 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2183,"Simulated","PgC/yr","HL",0.794994141935788 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2184,"Simulated","PgC/yr","HL",0.882948211054874 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2185,"Simulated","PgC/yr","HL",0.814310999446085 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2186,"Simulated","PgC/yr","HL",0.813401425306053 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2187,"Simulated","PgC/yr","HL",0.848589187752489 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2188,"Simulated","PgC/yr","HL",0.835382950719543 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2189,"Simulated","PgC/yr","HL",0.815240421464594 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2190,"Simulated","PgC/yr","HL",0.826112006682847 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2191,"Simulated","PgC/yr","HL",0.815246195392879 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2192,"Simulated","PgC/yr","HL",0.794951920085209 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2193,"Simulated","PgC/yr","HL",0.799776398037238 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2194,"Simulated","PgC/yr","HL",0.877878702021281 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2195,"Simulated","PgC/yr","HL",0.854960717614186 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2196,"Simulated","PgC/yr","HL",0.910415329208941 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2197,"Simulated","PgC/yr","HL",0.824118557942701 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2198,"Simulated","PgC/yr","HL",0.880375565133712 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2199,"Simulated","PgC/yr","HL",1.44258611979049 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2200,"Simulated","PgC/yr","HL",0.737228695980511 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2201,"Simulated","PgC/yr","HL",0.809420482189305 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2202,"Simulated","PgC/yr","HL",0.812535336063412 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2203,"Simulated","PgC/yr","HL",0.80240227235977 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2204,"Simulated","PgC/yr","HL",0.894283695323715 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2205,"Simulated","PgC/yr","HL",0.774189415280737 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2206,"Simulated","PgC/yr","HL",0.790800104778298 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2207,"Simulated","PgC/yr","HL",0.853069395230568 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2208,"Simulated","PgC/yr","HL",0.788642820823086 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2209,"Simulated","PgC/yr","HL",0.786593256717428 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2210,"Simulated","PgC/yr","HL",0.790585025949709 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2211,"Simulated","PgC/yr","HL",0.683041461644153 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2212,"Simulated","PgC/yr","HL",0.769305393693277 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2213,"Simulated","PgC/yr","HL",0.682029039406558 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2214,"Simulated","PgC/yr","HL",0.736390754638255 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2215,"Simulated","PgC/yr","HL",0.786218673119986 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2216,"Simulated","PgC/yr","HL",0.692149653077336 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2217,"Simulated","PgC/yr","HL",0.744049509636827 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2218,"Simulated","PgC/yr","HL",0.785803491589295 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2219,"Simulated","PgC/yr","HL",0.821283198284605 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2220,"Simulated","PgC/yr","HL",0.79559499134787 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2221,"Simulated","PgC/yr","HL",0.814177838225029 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2222,"Simulated","PgC/yr","HL",0.757792541564952 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2223,"Simulated","PgC/yr","HL",0.735360108439512 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2224,"Simulated","PgC/yr","HL",0.717035464417816 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2225,"Simulated","PgC/yr","HL",0.771310390289991 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2226,"Simulated","PgC/yr","HL",0.747857415340305 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2227,"Simulated","PgC/yr","HL",0.741250237030508 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2228,"Simulated","PgC/yr","HL",0.797522761653782 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2229,"Simulated","PgC/yr","HL",0.778492074464074 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2230,"Simulated","PgC/yr","HL",0.780557516872514 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2231,"Simulated","PgC/yr","HL",0.826249498350116 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2232,"Simulated","PgC/yr","HL",0.877604259992519 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2233,"Simulated","PgC/yr","HL",0.785018598213151 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2234,"Simulated","PgC/yr","HL",0.664081324640669 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2235,"Simulated","PgC/yr","HL",0.735112370829065 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2236,"Simulated","PgC/yr","HL",0.810782407523358 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2237,"Simulated","PgC/yr","HL",0.715842426486078 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2238,"Simulated","PgC/yr","HL",0.797451670161782 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2239,"Simulated","PgC/yr","HL",0.742727280059728 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2240,"Simulated","PgC/yr","HL",0.802881508407365 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2241,"Simulated","PgC/yr","HL",0.814767861521578 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2242,"Simulated","PgC/yr","HL",0.814696770029578 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2243,"Simulated","PgC/yr","HL",0.70736846498787 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2244,"Simulated","PgC/yr","HL",0.697915281339701 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2245,"Simulated","PgC/yr","HL",0.712339997675889 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2246,"Simulated","PgC/yr","HL",0.71645464331947 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2247,"Simulated","PgC/yr","HL",0.724809337111555 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2248,"Simulated","PgC/yr","HL",0.682892061249798 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2249,"Simulated","PgC/yr","HL",0.694747559934742 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2250,"Simulated","PgC/yr","HL",0.703411339325295 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2251,"Simulated","PgC/yr","HL",0.725400623454916 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2252,"Simulated","PgC/yr","HL",0.713429826639546 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2253,"Simulated","PgC/yr","HL",0.646334614753176 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2254,"Simulated","PgC/yr","HL",0.72902033518338 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2255,"Simulated","PgC/yr","HL",0.63618928145193 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2256,"Simulated","PgC/yr","HL",0.746108095505429 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2257,"Simulated","PgC/yr","HL",0.612870189464336 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2258,"Simulated","PgC/yr","HL",0.691287172539873 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2259,"Simulated","PgC/yr","HL",0.643938975820979 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2260,"Simulated","PgC/yr","HL",0.712248516999635 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2261,"Simulated","PgC/yr","HL",0.736370365454002 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2262,"Simulated","PgC/yr","HL",0.64570363265286 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2263,"Simulated","PgC/yr","HL",0.701606084560165 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2264,"Simulated","PgC/yr","HL",0.703753444576138 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2265,"Simulated","PgC/yr","HL",0.631081700578713 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2266,"Simulated","PgC/yr","HL",0.726245421337009 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2267,"Simulated","PgC/yr","HL",0.748479014807159 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2268,"Simulated","PgC/yr","HL",0.613634874091485 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2269,"Simulated","PgC/yr","HL",0.694600324763493 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2270,"Simulated","PgC/yr","HL",0.576749215858954 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2271,"Simulated","PgC/yr","HL",0.710173150651956 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2272,"Simulated","PgC/yr","HL",0.771106137576934 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2273,"Simulated","PgC/yr","HL",0.718488148687087 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2274,"Simulated","PgC/yr","HL",0.719913587232268 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2275,"Simulated","PgC/yr","HL",0.794733052116183 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2276,"Simulated","PgC/yr","HL",0.793993267554761 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2277,"Simulated","PgC/yr","HL",0.726012479417791 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2278,"Simulated","PgC/yr","HL",0.741341356836243 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2279,"Simulated","PgC/yr","HL",0.652911479939482 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2280,"Simulated","PgC/yr","HL",0.630577384030134 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2281,"Simulated","PgC/yr","HL",0.667554342503659 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2282,"Simulated","PgC/yr","HL",0.678389118929099 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2283,"Simulated","PgC/yr","HL",0.73266476654231 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2284,"Simulated","PgC/yr","HL",0.584668338936095 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2285,"Simulated","PgC/yr","HL",0.757098948429804 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2286,"Simulated","PgC/yr","HL",0.719065721950774 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2287,"Simulated","PgC/yr","HL",0.68295792011929 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2288,"Simulated","PgC/yr","HL",0.734416973341328 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2289,"Simulated","PgC/yr","HL",0.666171847550094 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2290,"Simulated","PgC/yr","HL",0.698685198589358 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2291,"Simulated","PgC/yr","HL",0.70601087010003 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2292,"Simulated","PgC/yr","HL",0.780494003661387 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2293,"Simulated","PgC/yr","HL",0.756893973975712 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2294,"Simulated","PgC/yr","HL",0.618128794649239 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2295,"Simulated","PgC/yr","HL",0.689730196690967 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2296,"Simulated","PgC/yr","HL",0.728039489116088 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2297,"Simulated","PgC/yr","HL",0.723306852710832 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2298,"Simulated","PgC/yr","HL",0.733325159589824 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2299,"Simulated","PgC/yr","HL",1.53963150964606 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2005,"Simulated","PgC/yr","LL",2.81716631981714 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.4160011784054 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.34512757940921 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.43487859825384 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.47391824551779 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.48248990961347 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",1.40895732176632 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",1.43175269212009 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",1.46803214083753 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",1.45831480231233 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",1.53202082348024 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",1.508846460257 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",1.45988439802032 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",1.50042528217641 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",1.53955575246071 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",1.54996247635842 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",1.49651385353691 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",1.53294354671886 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",1.57244383095036 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",1.55981580786356 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",1.60684401610852 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",1.67317573943568 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",1.65363550477919 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",1.62911932805058 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",1.64644406073205 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",1.67697267309741 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",1.734295042667 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",1.69906561434702 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",1.70654619444562 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",1.74903204392039 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",1.69350850156492 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",1.7358110141449 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",1.73350758775656 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",1.74688562541297 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",1.73360807280035 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",1.78233848802503 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",1.77086411053709 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",1.83744632182195 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",1.78137421808562 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",1.77465041597303 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",1.79010144075871 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",1.66080400152065 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",1.69864966423788 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",1.70547974860832 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",1.71997544082627 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",1.79325464210868 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",1.84456264363683 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",1.69029829427665 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",1.7063771090354 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",1.71131730162079 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",1.66441469968055 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",1.67715045432872 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",1.67670865830688 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",1.67725190557485 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",1.66936696979524 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",1.64786824298725 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",1.64286911205888 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",1.64557882653291 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",1.63526485806022 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",1.59310655118011 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",1.538250896195 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",1.40491545581036 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",1.45218110828139 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",1.49356379622978 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",1.465203100374 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",1.46542001280026 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.49095287594544 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",1.43787068536293 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",1.36660094340566 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.26269699262466 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.28346382115699 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.21487263364816 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.10707836574887 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.07777600908852 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.10609419204116 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.10268639637352 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.07157274848882 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.06084819233001 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.1139303346024 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.01214236695498 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",0.99108550863401 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.09508238392545 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.03985621449644 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",0.982191157110455 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",0.998886481429922 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.01143411648169 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",0.944685621773408 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",0.975073241061706 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",0.96059824972898 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.01321316070283 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",0.967048906438893 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",0.958216512640657 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",0.952531522978322 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",0.952510000821109 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.47228174029747 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.0456116161546 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",1.01192110661818 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",0.987681988411741 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2103,"Simulated","PgC/yr","LL",1.04373525120236 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2104,"Simulated","PgC/yr","LL",1.1686410592359 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2105,"Simulated","PgC/yr","LL",1.1441574918364 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2106,"Simulated","PgC/yr","LL",1.00336924967055 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2107,"Simulated","PgC/yr","LL",0.990169959447799 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2108,"Simulated","PgC/yr","LL",1.04051489878948 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2109,"Simulated","PgC/yr","LL",0.815700193427323 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2110,"Simulated","PgC/yr","LL",0.891430456816244 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2111,"Simulated","PgC/yr","LL",0.753389997496779 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2112,"Simulated","PgC/yr","LL",0.821844950475096 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2113,"Simulated","PgC/yr","LL",1.01023701593241 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2114,"Simulated","PgC/yr","LL",0.865282605879037 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2115,"Simulated","PgC/yr","LL",0.777192682104387 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2116,"Simulated","PgC/yr","LL",0.722798195498118 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2117,"Simulated","PgC/yr","LL",0.981216162325024 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2118,"Simulated","PgC/yr","LL",0.899102103428399 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2119,"Simulated","PgC/yr","LL",0.793186422746744 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2120,"Simulated","PgC/yr","LL",0.822633371587882 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2121,"Simulated","PgC/yr","LL",0.85567633231329 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2122,"Simulated","PgC/yr","LL",0.682433256788884 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2123,"Simulated","PgC/yr","LL",0.878994659685801 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2124,"Simulated","PgC/yr","LL",0.74383338673152 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2125,"Simulated","PgC/yr","LL",0.597755766453128 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2126,"Simulated","PgC/yr","LL",0.682875197741076 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2127,"Simulated","PgC/yr","LL",0.81842565699956 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2128,"Simulated","PgC/yr","LL",0.690209253254202 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2129,"Simulated","PgC/yr","LL",0.769158226512023 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2130,"Simulated","PgC/yr","LL",0.759867031530689 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2131,"Simulated","PgC/yr","LL",0.734061022982823 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2132,"Simulated","PgC/yr","LL",0.679443730116004 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2133,"Simulated","PgC/yr","LL",0.67735567023017 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2134,"Simulated","PgC/yr","LL",0.723553862351439 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2135,"Simulated","PgC/yr","LL",0.831767945169238 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2136,"Simulated","PgC/yr","LL",0.715687042865776 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2137,"Simulated","PgC/yr","LL",0.732128135193451 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2138,"Simulated","PgC/yr","LL",0.652256631937483 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2139,"Simulated","PgC/yr","LL",0.609019366899708 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2140,"Simulated","PgC/yr","LL",0.708373760703048 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2141,"Simulated","PgC/yr","LL",0.672960029285921 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2142,"Simulated","PgC/yr","LL",0.751215752361851 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2143,"Simulated","PgC/yr","LL",0.88561672069156 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2144,"Simulated","PgC/yr","LL",0.686179996238836 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2145,"Simulated","PgC/yr","LL",0.788407779193294 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2146,"Simulated","PgC/yr","LL",0.833533390092378 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2147,"Simulated","PgC/yr","LL",0.736034201409944 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2148,"Simulated","PgC/yr","LL",0.545729441792248 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2149,"Simulated","PgC/yr","LL",0.419769410381066 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2150,"Simulated","PgC/yr","LL",0.679029809031792 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2151,"Simulated","PgC/yr","LL",0.575090495244994 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2152,"Simulated","PgC/yr","LL",0.568379447003344 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2153,"Simulated","PgC/yr","LL",0.709425955055773 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2154,"Simulated","PgC/yr","LL",0.656977303350287 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2155,"Simulated","PgC/yr","LL",0.487503673030918 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2156,"Simulated","PgC/yr","LL",0.454364671792506 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2157,"Simulated","PgC/yr","LL",0.645763945425599 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2158,"Simulated","PgC/yr","LL",0.65193604599971 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2159,"Simulated","PgC/yr","LL",0.524635215595621 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2160,"Simulated","PgC/yr","LL",0.634654454252902 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2161,"Simulated","PgC/yr","LL",0.618055387841967 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2162,"Simulated","PgC/yr","LL",0.578195869578932 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2163,"Simulated","PgC/yr","LL",0.568992792251379 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2164,"Simulated","PgC/yr","LL",0.505002080583742 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2165,"Simulated","PgC/yr","LL",0.736698852002451 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2166,"Simulated","PgC/yr","LL",0.490124883370227 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2167,"Simulated","PgC/yr","LL",0.583781485330174 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2168,"Simulated","PgC/yr","LL",0.564672225229267 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2169,"Simulated","PgC/yr","LL",0.502181542700845 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2170,"Simulated","PgC/yr","LL",0.680198817247919 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2171,"Simulated","PgC/yr","LL",0.490656487899951 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2172,"Simulated","PgC/yr","LL",0.546846275081793 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2173,"Simulated","PgC/yr","LL",0.710707912325925 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2174,"Simulated","PgC/yr","LL",0.672314026398656 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2175,"Simulated","PgC/yr","LL",0.601099889386293 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2176,"Simulated","PgC/yr","LL",0.555883938568036 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2177,"Simulated","PgC/yr","LL",0.582392279599827 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2178,"Simulated","PgC/yr","LL",0.60333326610468 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2179,"Simulated","PgC/yr","LL",0.680295340862094 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2180,"Simulated","PgC/yr","LL",0.527973831175424 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2181,"Simulated","PgC/yr","LL",0.4521326477574 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2182,"Simulated","PgC/yr","LL",0.464584483846755 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2183,"Simulated","PgC/yr","LL",0.440515707113582 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2184,"Simulated","PgC/yr","LL",0.491184227620298 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2185,"Simulated","PgC/yr","LL",0.52237459197113 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2186,"Simulated","PgC/yr","LL",0.492858656282624 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2187,"Simulated","PgC/yr","LL",0.461152533120512 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2188,"Simulated","PgC/yr","LL",0.547972287293607 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2189,"Simulated","PgC/yr","LL",0.43012362118138 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2190,"Simulated","PgC/yr","LL",0.345450961857343 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2191,"Simulated","PgC/yr","LL",0.377576610077264 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2192,"Simulated","PgC/yr","LL",0.491639212304135 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2193,"Simulated","PgC/yr","LL",0.401152043893539 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2194,"Simulated","PgC/yr","LL",0.451245384144813 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2195,"Simulated","PgC/yr","LL",0.612923500711514 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2196,"Simulated","PgC/yr","LL",0.486372153465743 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2197,"Simulated","PgC/yr","LL",0.53890911606548 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2198,"Simulated","PgC/yr","LL",0.517163186387757 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2199,"Simulated","PgC/yr","LL",1.43024261447649 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2200,"Simulated","PgC/yr","LL",0.660807522682768 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2201,"Simulated","PgC/yr","LL",0.522523193891653 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2202,"Simulated","PgC/yr","LL",0.483612582950758 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2203,"Simulated","PgC/yr","LL",0.515102759888964 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2204,"Simulated","PgC/yr","LL",0.421542778163427 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2205,"Simulated","PgC/yr","LL",0.287592253366538 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2206,"Simulated","PgC/yr","LL",0.558252583614597 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2207,"Simulated","PgC/yr","LL",0.690802791354182 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2208,"Simulated","PgC/yr","LL",0.517733245770777 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2209,"Simulated","PgC/yr","LL",0.48931124437626 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2210,"Simulated","PgC/yr","LL",0.642033341554795 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2211,"Simulated","PgC/yr","LL",0.629562954380433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2212,"Simulated","PgC/yr","LL",0.525367693592683 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2213,"Simulated","PgC/yr","LL",0.666873920720435 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2214,"Simulated","PgC/yr","LL",0.542621555332215 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2215,"Simulated","PgC/yr","LL",0.404676363563879 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2216,"Simulated","PgC/yr","LL",0.469914539077983 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2217,"Simulated","PgC/yr","LL",0.449468924514951 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2218,"Simulated","PgC/yr","LL",0.467524540959617 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2219,"Simulated","PgC/yr","LL",0.509767583785313 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2220,"Simulated","PgC/yr","LL",0.447541737319409 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2221,"Simulated","PgC/yr","LL",0.335650771481137 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2222,"Simulated","PgC/yr","LL",0.547196040330357 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2223,"Simulated","PgC/yr","LL",0.552519525385645 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2224,"Simulated","PgC/yr","LL",0.569830393063479 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2225,"Simulated","PgC/yr","LL",0.40581348710265 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2226,"Simulated","PgC/yr","LL",0.28127300017542 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2227,"Simulated","PgC/yr","LL",0.41357508715304 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2228,"Simulated","PgC/yr","LL",0.324146683271109 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2229,"Simulated","PgC/yr","LL",0.39555029256315 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2230,"Simulated","PgC/yr","LL",0.413843401543997 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2231,"Simulated","PgC/yr","LL",0.465692621315204 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2232,"Simulated","PgC/yr","LL",0.413995191932255 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2233,"Simulated","PgC/yr","LL",0.455786148681146 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2234,"Simulated","PgC/yr","LL",0.43516826024016 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2235,"Simulated","PgC/yr","LL",0.379260507522561 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2236,"Simulated","PgC/yr","LL",0.490027780034645 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2237,"Simulated","PgC/yr","LL",0.411394368462406 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2238,"Simulated","PgC/yr","LL",0.535325568191447 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2239,"Simulated","PgC/yr","LL",0.418829875221663 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2240,"Simulated","PgC/yr","LL",0.330192694439315 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2241,"Simulated","PgC/yr","LL",0.47818523114348 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2242,"Simulated","PgC/yr","LL",0.445183817118867 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2243,"Simulated","PgC/yr","LL",0.463290449047302 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2244,"Simulated","PgC/yr","LL",0.512613629410094 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2245,"Simulated","PgC/yr","LL",0.360044385442396 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2246,"Simulated","PgC/yr","LL",0.208944058898434 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2247,"Simulated","PgC/yr","LL",0.484631443322612 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2248,"Simulated","PgC/yr","LL",0.225075290134357 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2249,"Simulated","PgC/yr","LL",0.18335737828268 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2250,"Simulated","PgC/yr","LL",0.446544809740766 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2251,"Simulated","PgC/yr","LL",0.433686395705014 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2252,"Simulated","PgC/yr","LL",0.507134102676233 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2253,"Simulated","PgC/yr","LL",0.467553430409706 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2254,"Simulated","PgC/yr","LL",0.527553339915272 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2255,"Simulated","PgC/yr","LL",0.412535646671257 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2256,"Simulated","PgC/yr","LL",0.461501911888138 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2257,"Simulated","PgC/yr","LL",0.440874651284415 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2258,"Simulated","PgC/yr","LL",0.358983012167402 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2259,"Simulated","PgC/yr","LL",0.524684975016342 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2260,"Simulated","PgC/yr","LL",0.40245303534987 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2261,"Simulated","PgC/yr","LL",0.482495556420744 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2262,"Simulated","PgC/yr","LL",0.668313368972675 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2263,"Simulated","PgC/yr","LL",0.427969086574271 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2264,"Simulated","PgC/yr","LL",0.302734479883039 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2265,"Simulated","PgC/yr","LL",0.286064204359343 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2266,"Simulated","PgC/yr","LL",0.349117216652031 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2267,"Simulated","PgC/yr","LL",0.314859739580089 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2268,"Simulated","PgC/yr","LL",0.273378643922951 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2269,"Simulated","PgC/yr","LL",0.244078944319054 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2270,"Simulated","PgC/yr","LL",0.278007912594003 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2271,"Simulated","PgC/yr","LL",0.383192467961877 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2272,"Simulated","PgC/yr","LL",0.492268306650379 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2273,"Simulated","PgC/yr","LL",0.435088451926538 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2274,"Simulated","PgC/yr","LL",0.372746951040045 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2275,"Simulated","PgC/yr","LL",0.410431451206276 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2276,"Simulated","PgC/yr","LL",0.466877378629539 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2277,"Simulated","PgC/yr","LL",0.579060427436433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2278,"Simulated","PgC/yr","LL",0.188521439951191 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2279,"Simulated","PgC/yr","LL",0.308139995517341 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2280,"Simulated","PgC/yr","LL",0.336531658158253 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2281,"Simulated","PgC/yr","LL",0.436294079211506 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2282,"Simulated","PgC/yr","LL",0.276629141848972 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2283,"Simulated","PgC/yr","LL",0.395497441294928 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2284,"Simulated","PgC/yr","LL",0.285037034647331 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2285,"Simulated","PgC/yr","LL",0.417082788143061 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2286,"Simulated","PgC/yr","LL",0.416718143378398 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2287,"Simulated","PgC/yr","LL",0.406261225268906 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2288,"Simulated","PgC/yr","LL",0.413898281837142 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2289,"Simulated","PgC/yr","LL",0.313753534516328 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2290,"Simulated","PgC/yr","LL",0.360334342765861 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2291,"Simulated","PgC/yr","LL",0.295462744421108 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2292,"Simulated","PgC/yr","LL",0.410006901896279 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2293,"Simulated","PgC/yr","LL",0.427238927462834 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2294,"Simulated","PgC/yr","LL",0.302665589655905 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2295,"Simulated","PgC/yr","LL",0.384400607372939 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2296,"Simulated","PgC/yr","LL",0.489923236941014 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2297,"Simulated","PgC/yr","LL",0.343418555226529 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2298,"Simulated","PgC/yr","LL",0.320083126072528 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2299,"Simulated","PgC/yr","LL",1.32949684098753 -"inmcm4","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.62871124015065 -"inmcm4","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",3.67780822933107 -"inmcm4","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.58864670772222 -"inmcm4","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",4.00936428506441 -"inmcm4","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",4.26947527591205 -"inmcm4","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",3.99783436430282 -"inmcm4","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",3.85145281183548 -"inmcm4","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",3.78743501754739 -"inmcm4","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",4.08715926073024 -"inmcm4","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",4.27273134747077 -"inmcm4","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.1958457868789 -"inmcm4","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.34931643549425 -"inmcm4","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.16064593960731 -"inmcm4","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.32587157779025 -"inmcm4","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",4.20173870515954 -"inmcm4","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.15905560570916 -"inmcm4","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.17928209373565 -"inmcm4","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.1375129792842 -"inmcm4","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.38116881270722 -"inmcm4","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.01279858369792 -"inmcm4","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.63672244585391 -"inmcm4","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.64653521729875 -"inmcm4","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",4.15894706999054 -"inmcm4","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",5.00600894482464 -"inmcm4","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.95298410511128 -"inmcm4","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.36635882828069 -"inmcm4","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",4.40630111521551 -"inmcm4","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",5.02564134260182 -"inmcm4","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",4.92035826809295 -"inmcm4","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.72572973249419 -"inmcm4","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",4.35096046601109 -"inmcm4","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",4.86190549996715 -"inmcm4","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",4.90891174846251 -"inmcm4","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",4.9259529987677 -"inmcm4","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",5.42946390723866 -"inmcm4","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",5.01748059904256 -"inmcm4","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",4.96923247342989 -"inmcm4","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",5.12436314729956 -"inmcm4","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",4.70207351575919 -"inmcm4","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",4.76709212362111 -"inmcm4","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",4.75643163108976 -"inmcm4","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",4.84975521188752 -"inmcm4","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",4.68398461014897 -"inmcm4","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",5.40015583576647 -"inmcm4","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",5.11073220352166 -"inmcm4","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",5.36517762985713 -"inmcm4","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",5.34105870821642 -"inmcm4","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",5.24840919135537 -"inmcm4","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",5.08174973920535 -"inmcm4","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",4.97404117700555 -"inmcm4","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",4.91594486302933 -"inmcm4","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",5.33138760444641 -"inmcm4","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",4.82357868151795 -"inmcm4","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",5.22031786241302 -"inmcm4","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",5.29835275914106 -"inmcm4","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",4.87590432270713 -"inmcm4","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",4.85789881822806 -"inmcm4","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",5.0474661618952 -"inmcm4","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",5.26903669030014 -"inmcm4","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",4.89429827081075 -"inmcm4","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",5.02602407382013 -"inmcm4","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.52215899616208 -"inmcm4","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.90486850732346 -"inmcm4","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",5.06857464544566 -"inmcm4","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",4.70005932131778 -"inmcm4","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",4.50955857047048 -"inmcm4","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.55374631772536 -"inmcm4","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",4.62474809988658 -"inmcm4","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",3.87236250364867 -"inmcm4","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",4.3528387051839 -"inmcm4","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",4.34885373058853 -"inmcm4","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",4.61040996021574 -"inmcm4","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",4.51771817154849 -"inmcm4","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",4.38796886109932 -"inmcm4","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",4.23496777227717 -"inmcm4","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",4.5113408412184 -"inmcm4","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",3.98176993546524 -"inmcm4","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",3.97611008335932 -"inmcm4","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",3.98035211623564 -"inmcm4","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",4.02645351958205 -"inmcm4","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",3.98369044644426 -"inmcm4","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",4.0976460961118 -"inmcm4","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.81962556920997 -"inmcm4","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.95114001318835 -"inmcm4","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",4.0169035188244 -"inmcm4","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.7054459932177 -"inmcm4","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.62973033342446 -"inmcm4","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.88451964661579 -"inmcm4","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.34399577313161 -"inmcm4","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.71424995371996 -"inmcm4","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.25233907247565 -"inmcm4","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",3.50717179995443 -"inmcm4","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",3.62576363852907 -"inmcm4","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.34358790732583 -"inmcm4","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.36055032642486 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.117074883795166 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",-0.00218567283197227 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.253995537261179 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.387245204114499 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.590688743030436 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.437933683143488 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.353501472343627 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.228203782053824 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.428457213904733 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.456308211670363 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.412923855682176 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.534844938224503 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.421866090707983 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.419778658184802 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.348288391516634 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.294062931342268 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",0.301391978437405 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",0.231916778589827 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.45201078903268 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.424944984923661 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.369808335700762 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.550309540435097 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.317041018650089 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.337716982787378 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.455008723044273 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.307977429263169 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",0.408974338465023 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",0.587502245656036 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",0.407999893885485 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.368227463095715 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",0.340571388623999 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.410381945919924 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.438280385333808 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.480821105055216 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",0.649132384538699 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.535908765619592 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.539287607937457 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",0.463063317955644 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",0.362883745845994 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.509542553932291 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",0.45429898911079 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.40160042807208 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.498821772767046 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.392454675250864 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",0.431708341930377 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.527147358905247 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.372806269712355 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",0.430084840597914 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",0.467511316259525 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",0.455184566544867 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.402008838783137 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.568776202018003 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",0.411610100183603 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",0.46731948698615 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",0.519825015521276 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.644316541570819 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.428217599203044 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",0.425431605598325 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.581119453175532 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",0.415419183246323 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.425842594659831 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.339348391061217 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",0.453828869878997 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",0.511497803022473 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",0.422868209582335 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",0.296291313689971 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.288169853556966 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.359880827023534 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.250285290965655 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",0.0959856960259827 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",0.225901658883292 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",0.456162792705063 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",0.471586828868599 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.551940433038847 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.354574925580391 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.168887317351704 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",0.157000021687504 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",0.11100579061924 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.223333621836494 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.192114782714913 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.233909327816499 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.137458428613578 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.24710927888308 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.292560440590858 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.227783167150644 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.0767783087372032 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.178389191936879 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.166986024541909 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.115036886844587 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.188983805820173 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.0959361401303608 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.0943177611207886 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.170863777671577 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",0.0493988568906145 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",0.168296651641938 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",3.51163688255228 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",3.67999369417696 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",3.33465054440155 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",3.62211928098439 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",3.67878627870082 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",3.55990050149663 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",3.49795154636768 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",3.55923079355568 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",3.6587018346109 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",3.81642290766034 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",3.78292198115342 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",3.8144710487194 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",3.73878046311517 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",3.90609291858846 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",3.85344999206504 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",3.8649922628386 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",3.87788947895356 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",3.90559694647567 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",3.92915804831121 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",3.58785352859708 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",4.26691311593831 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",4.09622494420616 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",3.84190675070026 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",4.66829237913795 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",4.49797497325136 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",4.05838159258648 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",3.99732752256123 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",4.43813899520566 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",4.51235816452225 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",4.3575022767506 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",4.01038876859216 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",4.45152344811244 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",4.47063147743629 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",4.44513113434566 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",4.78033160588496 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",4.48157198165422 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",4.42994526413684 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",4.66130023999796 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",4.33918916163493 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",4.25754885185966 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",4.30213295949367 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",4.44815549658333 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",4.18516312935532 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",5.00770133420183 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",4.67902323565262 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",4.83803034206693 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",4.96825262470631 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",4.81832442855233 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",4.61423821298244 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",4.51885724332311 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",4.51393537525274 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",4.76261152200396 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",4.41196894417408 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",4.7529987865733 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",4.77852727680928 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",4.23158747794011 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",4.42968126332534 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",4.62203400165157 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",4.68791773358139 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",4.47887956161336 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",4.60018114036106 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",4.18281138683225 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",4.4510400936855 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",4.55707621374445 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",4.27719070635382 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",4.21326659809469 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",4.26557661183007 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",4.26486710964915 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",3.62207754556199 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",4.2568529379558 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",4.12295114400609 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",4.15424688726397 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",4.04613176081443 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",3.83602787968819 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",3.88039263370676 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",4.34245325990364 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",3.82476999214173 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",3.86510388082876 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",3.75701787211578 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",3.83433808037632 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",3.74978114398866 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",3.96018784957516 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",3.57251624615815 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",3.65857954011733 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",3.78912114726768 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",3.62866688934619 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",3.45134084426889 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",3.71753325074517 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",3.22895801363405 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",3.52526689503741 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",3.15640340825765 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",3.41285399067117 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",3.45490000226811 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",3.29418853767364 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",3.19225316551398 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.98285089940545 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",4.01400388497501 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",4.13146894314431 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",4.1357094251414 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",4.25435372498063 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",4.37866911925541 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",4.36265475480931 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",4.2888529149744 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",4.480131396885 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",4.49059475339174 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.50380349571156 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.6322076228098 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.5311280002211 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.46573916546291 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",4.62101718311233 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.61601602459601 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.81571677870843 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.70804205208493 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.74617047994891 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.66897185263191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.64089671098867 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.89067160335879 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",4.88410314230867 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",4.77029898468702 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.95258179102977 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",5.10315751494758 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",5.12721613011717 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",5.13717404217534 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",5.13338224348554 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.9969902406749 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",5.24924293062062 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",5.1376099831856 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",5.25100136760976 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",5.30814091650146 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",5.14531173641032 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",5.15275941595501 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",5.21541869623884 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",5.3848221293333 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",5.36563300227747 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",5.3726269788221 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",5.22469315782034 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",5.27418115041499 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",5.25574343275328 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",5.21387958121058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",5.41985302063011 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",5.45692847140375 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",5.43134773093526 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",5.31054573546685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",5.35114578282302 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",5.25813628168208 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",5.31900353164825 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",5.22426571167476 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",5.17945105304575 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",5.30457539011637 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",5.36128980964377 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",5.19579401430296 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",5.16683695125366 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",5.26730108228313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",5.06463948169888 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",5.08979895410519 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",5.09387841980353 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.98007619283294 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.8273053186553 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",4.77566349173359 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",4.84024106691467 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",4.84755244249424 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.83607163287674 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",4.67925025276671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",4.47446648053285 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",4.59711765359042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",4.54331774490931 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",4.43292504771784 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",4.46035457964527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",4.30273120708324 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",4.10699601025638 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",4.17817023399311 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",4.13558779412436 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",3.97056500829424 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",4.07400929230619 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",4.02868918922861 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",4.01545998200751 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",3.97161026278032 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.98368030710257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.83306712855411 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",3.88244584629853 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.88016188608976 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.83977536874127 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.76100210241643 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.82511477682128 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.8504677004642 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.79612720948517 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",3.66861040961597 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",3.79762462245044 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.82138784800723 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.93429348062367 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",3.85130444463536 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",3.70993136207947 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2103,"Simulated","PgC/yr","global",3.70602990240923 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2104,"Simulated","PgC/yr","global",3.74454561887665 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2105,"Simulated","PgC/yr","global",3.74790649624896 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2106,"Simulated","PgC/yr","global",3.92088201994212 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2107,"Simulated","PgC/yr","global",4.05823162568054 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2108,"Simulated","PgC/yr","global",3.82291151782698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2109,"Simulated","PgC/yr","global",3.56510164185849 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2110,"Simulated","PgC/yr","global",3.83199175591143 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2111,"Simulated","PgC/yr","global",3.56701993675573 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2112,"Simulated","PgC/yr","global",3.81298179327434 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2113,"Simulated","PgC/yr","global",3.67993367810664 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2114,"Simulated","PgC/yr","global",3.52480509284958 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2115,"Simulated","PgC/yr","global",3.71114689998939 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2116,"Simulated","PgC/yr","global",3.65423748470452 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2117,"Simulated","PgC/yr","global",3.68223655869584 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2118,"Simulated","PgC/yr","global",3.65656816666905 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2119,"Simulated","PgC/yr","global",3.41557812277058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2120,"Simulated","PgC/yr","global",3.52192765050371 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2121,"Simulated","PgC/yr","global",3.41778060950445 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2122,"Simulated","PgC/yr","global",3.30946799576939 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2123,"Simulated","PgC/yr","global",3.2734157900597 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2124,"Simulated","PgC/yr","global",3.43670407897387 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2125,"Simulated","PgC/yr","global",3.31220334219694 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2126,"Simulated","PgC/yr","global",3.33496340146085 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2127,"Simulated","PgC/yr","global",3.22971511709465 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2128,"Simulated","PgC/yr","global",3.26438188760078 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2129,"Simulated","PgC/yr","global",3.3787938141774 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2130,"Simulated","PgC/yr","global",3.07023561659964 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2131,"Simulated","PgC/yr","global",3.13748250994187 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2132,"Simulated","PgC/yr","global",3.34364206412398 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2133,"Simulated","PgC/yr","global",3.18518812547419 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2134,"Simulated","PgC/yr","global",3.22857680522729 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2135,"Simulated","PgC/yr","global",3.19394092513818 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2136,"Simulated","PgC/yr","global",3.15182647508736 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2137,"Simulated","PgC/yr","global",2.9452282769835 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2138,"Simulated","PgC/yr","global",2.97475024853415 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2139,"Simulated","PgC/yr","global",3.21690795019615 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2140,"Simulated","PgC/yr","global",2.90297790909777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2141,"Simulated","PgC/yr","global",2.98750953528626 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2142,"Simulated","PgC/yr","global",3.010011659568 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2143,"Simulated","PgC/yr","global",2.96094068760319 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2144,"Simulated","PgC/yr","global",2.93454945981801 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2145,"Simulated","PgC/yr","global",2.83986260903261 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2146,"Simulated","PgC/yr","global",3.26079087662164 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2147,"Simulated","PgC/yr","global",3.05456336352208 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2148,"Simulated","PgC/yr","global",2.89397644157673 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2149,"Simulated","PgC/yr","global",2.92481743393434 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2150,"Simulated","PgC/yr","global",2.76342581662549 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2151,"Simulated","PgC/yr","global",2.64360961159038 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2152,"Simulated","PgC/yr","global",2.8996541002259 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2153,"Simulated","PgC/yr","global",2.78718518088015 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2154,"Simulated","PgC/yr","global",2.80061633420255 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2155,"Simulated","PgC/yr","global",2.69712108100251 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2156,"Simulated","PgC/yr","global",2.81393628202366 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2157,"Simulated","PgC/yr","global",2.80829569187492 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2158,"Simulated","PgC/yr","global",2.66404207793146 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2159,"Simulated","PgC/yr","global",2.66257014956022 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2160,"Simulated","PgC/yr","global",2.85775588309425 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2161,"Simulated","PgC/yr","global",2.83883395814568 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2162,"Simulated","PgC/yr","global",2.73712108200798 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2163,"Simulated","PgC/yr","global",3.04038466210768 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2164,"Simulated","PgC/yr","global",2.72691334370212 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2165,"Simulated","PgC/yr","global",2.89346211613327 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2166,"Simulated","PgC/yr","global",2.64956373947191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2167,"Simulated","PgC/yr","global",2.69728480021274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2168,"Simulated","PgC/yr","global",2.64206354621828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2169,"Simulated","PgC/yr","global",2.67239948025753 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2170,"Simulated","PgC/yr","global",2.76876831424993 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2171,"Simulated","PgC/yr","global",2.72671255599146 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2172,"Simulated","PgC/yr","global",2.7802873507585 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2173,"Simulated","PgC/yr","global",2.61544681838883 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2174,"Simulated","PgC/yr","global",2.96740914092819 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2175,"Simulated","PgC/yr","global",3.04249602211133 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2176,"Simulated","PgC/yr","global",2.86860150851167 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2177,"Simulated","PgC/yr","global",2.81872120762081 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2178,"Simulated","PgC/yr","global",2.67865324518421 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2179,"Simulated","PgC/yr","global",2.68321421525793 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2180,"Simulated","PgC/yr","global",2.85324279316692 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2181,"Simulated","PgC/yr","global",2.54565146564204 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2182,"Simulated","PgC/yr","global",2.47236549577145 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2183,"Simulated","PgC/yr","global",2.75363509894946 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2184,"Simulated","PgC/yr","global",2.50337175186014 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2185,"Simulated","PgC/yr","global",2.62577966288363 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2186,"Simulated","PgC/yr","global",2.63901620657878 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2187,"Simulated","PgC/yr","global",2.64905868115356 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2188,"Simulated","PgC/yr","global",2.52726548942886 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2189,"Simulated","PgC/yr","global",2.65188669883218 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2190,"Simulated","PgC/yr","global",2.49822077482125 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2191,"Simulated","PgC/yr","global",2.56296863342617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2192,"Simulated","PgC/yr","global",2.43008269294785 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2193,"Simulated","PgC/yr","global",2.76661370766245 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2194,"Simulated","PgC/yr","global",2.54762227424823 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2195,"Simulated","PgC/yr","global",2.60793890253094 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2196,"Simulated","PgC/yr","global",2.47952126087526 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2197,"Simulated","PgC/yr","global",2.81145578153657 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2198,"Simulated","PgC/yr","global",2.71018463836232 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2199,"Simulated","PgC/yr","global",2.85892662989949 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2200,"Simulated","PgC/yr","global",2.57955369832681 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2201,"Simulated","PgC/yr","global",2.59244735839298 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2202,"Simulated","PgC/yr","global",2.65138627407638 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2203,"Simulated","PgC/yr","global",2.55789179338814 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2204,"Simulated","PgC/yr","global",2.78988809236982 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2205,"Simulated","PgC/yr","global",2.68107814292066 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2206,"Simulated","PgC/yr","global",2.58261339413312 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2207,"Simulated","PgC/yr","global",2.58340882237151 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2208,"Simulated","PgC/yr","global",2.63977611083759 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2209,"Simulated","PgC/yr","global",2.68104416346193 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2210,"Simulated","PgC/yr","global",2.76360652556508 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2211,"Simulated","PgC/yr","global",2.63186353051668 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2212,"Simulated","PgC/yr","global",2.44664459003572 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2213,"Simulated","PgC/yr","global",2.59486607804602 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2214,"Simulated","PgC/yr","global",2.35973749077802 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2215,"Simulated","PgC/yr","global",2.5785466707318 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2216,"Simulated","PgC/yr","global",2.75702223317624 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2217,"Simulated","PgC/yr","global",2.63438264402505 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2218,"Simulated","PgC/yr","global",2.55067733649198 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2219,"Simulated","PgC/yr","global",2.81105729515695 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2220,"Simulated","PgC/yr","global",2.91798601820929 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2221,"Simulated","PgC/yr","global",2.71198709419572 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2222,"Simulated","PgC/yr","global",2.30763925794477 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2223,"Simulated","PgC/yr","global",2.65481047680358 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2224,"Simulated","PgC/yr","global",2.59071595051874 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2225,"Simulated","PgC/yr","global",2.38528386565757 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2226,"Simulated","PgC/yr","global",2.57204732698977 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2227,"Simulated","PgC/yr","global",2.18711102879724 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2228,"Simulated","PgC/yr","global",2.30620439807397 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2229,"Simulated","PgC/yr","global",2.58592948040074 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2230,"Simulated","PgC/yr","global",2.51763540192136 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2231,"Simulated","PgC/yr","global",2.31739290712037 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2232,"Simulated","PgC/yr","global",2.30601442200926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2233,"Simulated","PgC/yr","global",2.25284429170525 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2234,"Simulated","PgC/yr","global",2.38031205303742 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2235,"Simulated","PgC/yr","global",2.30292383578593 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2236,"Simulated","PgC/yr","global",2.55947956082321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2237,"Simulated","PgC/yr","global",2.07767709292417 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2238,"Simulated","PgC/yr","global",2.11275161693503 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2239,"Simulated","PgC/yr","global",2.23293696245359 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2240,"Simulated","PgC/yr","global",2.37603990836288 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2241,"Simulated","PgC/yr","global",2.29840920133775 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2242,"Simulated","PgC/yr","global",2.41306361768801 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2243,"Simulated","PgC/yr","global",2.1423075679444 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2244,"Simulated","PgC/yr","global",2.32084027766034 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2245,"Simulated","PgC/yr","global",2.09576806565477 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2246,"Simulated","PgC/yr","global",2.29242418303918 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2247,"Simulated","PgC/yr","global",2.42591248664949 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2248,"Simulated","PgC/yr","global",2.47247670127274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2249,"Simulated","PgC/yr","global",2.30809489159589 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2250,"Simulated","PgC/yr","global",2.14730254837732 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2251,"Simulated","PgC/yr","global",2.43030355942957 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2252,"Simulated","PgC/yr","global",2.20316168948334 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2253,"Simulated","PgC/yr","global",2.34025181571875 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2254,"Simulated","PgC/yr","global",2.53108972305653 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2255,"Simulated","PgC/yr","global",2.4200834649569 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2256,"Simulated","PgC/yr","global",2.37067424292567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2257,"Simulated","PgC/yr","global",2.49649554503041 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2258,"Simulated","PgC/yr","global",2.19032054312612 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2259,"Simulated","PgC/yr","global",2.09595649719862 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2260,"Simulated","PgC/yr","global",2.22164497051016 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2261,"Simulated","PgC/yr","global",2.3698463797494 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2262,"Simulated","PgC/yr","global",2.56811961046506 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2263,"Simulated","PgC/yr","global",2.23788097369842 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2264,"Simulated","PgC/yr","global",2.47486761955046 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2265,"Simulated","PgC/yr","global",2.44847484724444 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2266,"Simulated","PgC/yr","global",2.40494252705218 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2267,"Simulated","PgC/yr","global",2.16419188388565 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2268,"Simulated","PgC/yr","global",2.37039622917244 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2269,"Simulated","PgC/yr","global",2.44988345026077 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2270,"Simulated","PgC/yr","global",2.51521359322661 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2271,"Simulated","PgC/yr","global",2.15322733036268 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2272,"Simulated","PgC/yr","global",2.42544449683157 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2273,"Simulated","PgC/yr","global",2.55862852983418 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2274,"Simulated","PgC/yr","global",2.6126821260651 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2275,"Simulated","PgC/yr","global",2.43212454951319 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2276,"Simulated","PgC/yr","global",2.47678745896856 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2277,"Simulated","PgC/yr","global",2.39019080840196 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2278,"Simulated","PgC/yr","global",2.56805319606846 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2279,"Simulated","PgC/yr","global",2.39360728852491 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2280,"Simulated","PgC/yr","global",2.38758211268422 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2281,"Simulated","PgC/yr","global",2.40028270764398 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2282,"Simulated","PgC/yr","global",2.25602754917966 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2283,"Simulated","PgC/yr","global",2.39267594245161 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2284,"Simulated","PgC/yr","global",2.13997843050073 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2285,"Simulated","PgC/yr","global",2.08632023160772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2286,"Simulated","PgC/yr","global",2.46561748417238 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2287,"Simulated","PgC/yr","global",2.40840534280066 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2288,"Simulated","PgC/yr","global",2.3543687362991 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2289,"Simulated","PgC/yr","global",2.31324432411393 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2290,"Simulated","PgC/yr","global",2.26598816414932 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2291,"Simulated","PgC/yr","global",1.96076149804769 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2292,"Simulated","PgC/yr","global",2.01536957726421 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2293,"Simulated","PgC/yr","global",2.06592174472537 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2294,"Simulated","PgC/yr","global",2.32459037428715 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2295,"Simulated","PgC/yr","global",2.02291301710168 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2296,"Simulated","PgC/yr","global",1.93495255462344 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2297,"Simulated","PgC/yr","global",1.97852348783698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2298,"Simulated","PgC/yr","global",2.00879609652133 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2299,"Simulated","PgC/yr","global",1.98613025302935 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2300,"Simulated","PgC/yr","global",2.04251298670394 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.992398453444507 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",1.06313530265174 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",1.09544446704506 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",1.10861647915864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",1.11761860353591 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",1.15194502172555 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",1.12868508544772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.15512276542379 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",1.20943130661155 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",1.22100496405902 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.19794475314851 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.27724131021665 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.19184485353218 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.22353766930402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.1960712243748 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.21967536966793 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.32880328277402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.25553165934352 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.26615869027447 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.23227510239683 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.26156893788474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.30995675297284 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.33309075744103 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.35531254939763 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.41483857097697 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.43001921614416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.45431053808094 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.46579433290631 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.41463801801835 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.43359861748718 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.49474995941586 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.49475851119263 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.53513800112416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.59724183167441 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.54650682972462 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.50994329431634 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.50379925649728 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.56061877865839 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.59074806756471 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.58599590038215 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.52230337039764 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.51861962358474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.52513359471538 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.484526586142 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.58633997146557 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.57851971643216 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.61538077091318 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.59900667012391 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.55932187412368 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.57854392347771 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",1.61531759811053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.52280385623696 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",1.56709819785219 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.60819017492799 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.64874021763348 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.56657295323979 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.664878385936 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.68794728655517 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",1.62073073487887 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.62252784938911 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",1.67211532703404 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",1.6378156676298 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.57405079237238 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.57567983688258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.56597991510664 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.61807147713074 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",1.59646251653258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",1.57911199593995 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",1.51085881719313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.53034500610408 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.49203890824547 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.48067456243122 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.50574733745403 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.47898820722344 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.41564892079259 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.45392412190929 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.46353631900731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.42046053661694 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.40535265051829 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.4317545371706 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.41086633962971 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.35889319212761 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.40954281424149 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.343299785799 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.34121260053774 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.33320710298477 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.33897555228503 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.29509397183119 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.34315481938944 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.34969492861199 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.33619146618233 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.30409906174395 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.32620954267056 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.32532815793493 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.3456715935019 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",1.3438606858033 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",1.28150443990623 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2103,"Simulated","PgC/yr","HL",1.41572126606549 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2104,"Simulated","PgC/yr","HL",1.33224516602918 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2105,"Simulated","PgC/yr","HL",1.33433428233681 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2106,"Simulated","PgC/yr","HL",1.39915702617481 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2107,"Simulated","PgC/yr","HL",1.44564696751176 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2108,"Simulated","PgC/yr","HL",1.38313706549645 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2109,"Simulated","PgC/yr","HL",1.27621337285479 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2110,"Simulated","PgC/yr","HL",1.42472325251087 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2111,"Simulated","PgC/yr","HL",1.4257919487443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2112,"Simulated","PgC/yr","HL",1.4183074888813 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2113,"Simulated","PgC/yr","HL",1.41972956660028 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2114,"Simulated","PgC/yr","HL",1.36252535241606 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2115,"Simulated","PgC/yr","HL",1.40357084644712 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2116,"Simulated","PgC/yr","HL",1.36069113422915 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2117,"Simulated","PgC/yr","HL",1.40852122174628 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2118,"Simulated","PgC/yr","HL",1.31862135803115 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2119,"Simulated","PgC/yr","HL",1.35134624912137 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2120,"Simulated","PgC/yr","HL",1.33296103250459 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2121,"Simulated","PgC/yr","HL",1.3092720591031 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2122,"Simulated","PgC/yr","HL",1.40856425649394 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2123,"Simulated","PgC/yr","HL",1.42651802217909 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2124,"Simulated","PgC/yr","HL",1.35421274952447 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2125,"Simulated","PgC/yr","HL",1.25435668659384 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2126,"Simulated","PgC/yr","HL",1.27732703488225 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2127,"Simulated","PgC/yr","HL",1.25809408890942 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2128,"Simulated","PgC/yr","HL",1.2260894781149 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2129,"Simulated","PgC/yr","HL",1.31009716763025 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2130,"Simulated","PgC/yr","HL",1.14505808278191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2131,"Simulated","PgC/yr","HL",1.13460091496551 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2132,"Simulated","PgC/yr","HL",1.21215228887754 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2133,"Simulated","PgC/yr","HL",1.34340909681669 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2134,"Simulated","PgC/yr","HL",1.32064785326368 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2135,"Simulated","PgC/yr","HL",1.32121861539764 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2136,"Simulated","PgC/yr","HL",1.26330681065102 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2137,"Simulated","PgC/yr","HL",1.16507586117191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2138,"Simulated","PgC/yr","HL",1.15871747720588 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2139,"Simulated","PgC/yr","HL",1.24619829154801 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2140,"Simulated","PgC/yr","HL",1.08063561726986 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2141,"Simulated","PgC/yr","HL",1.15612380606836 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2142,"Simulated","PgC/yr","HL",1.06787140076987 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2143,"Simulated","PgC/yr","HL",1.18343100863808 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2144,"Simulated","PgC/yr","HL",1.12283256666446 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2145,"Simulated","PgC/yr","HL",1.11671639108587 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2146,"Simulated","PgC/yr","HL",1.15043908142139 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2147,"Simulated","PgC/yr","HL",1.11776301821794 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2148,"Simulated","PgC/yr","HL",1.137907418077 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2149,"Simulated","PgC/yr","HL",0.952637036282985 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2150,"Simulated","PgC/yr","HL",0.946902656157952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2151,"Simulated","PgC/yr","HL",0.847895977765981 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2152,"Simulated","PgC/yr","HL",1.06958120439786 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2153,"Simulated","PgC/yr","HL",1.00523708419565 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2154,"Simulated","PgC/yr","HL",1.04664589080787 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2155,"Simulated","PgC/yr","HL",0.987866218650202 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2156,"Simulated","PgC/yr","HL",1.02422368382453 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2157,"Simulated","PgC/yr","HL",1.11167911870009 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2158,"Simulated","PgC/yr","HL",1.00310989868816 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2159,"Simulated","PgC/yr","HL",0.892527976632054 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2160,"Simulated","PgC/yr","HL",1.10338417108959 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2161,"Simulated","PgC/yr","HL",1.09852483083354 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2162,"Simulated","PgC/yr","HL",0.956941614503557 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2163,"Simulated","PgC/yr","HL",1.20463610468133 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2164,"Simulated","PgC/yr","HL",1.06638946061345 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2165,"Simulated","PgC/yr","HL",1.09103623301403 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2166,"Simulated","PgC/yr","HL",1.02661928477732 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2167,"Simulated","PgC/yr","HL",0.963175859774429 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2168,"Simulated","PgC/yr","HL",1.01495797161788 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2169,"Simulated","PgC/yr","HL",1.01847854501258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2170,"Simulated","PgC/yr","HL",1.10021918609057 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2171,"Simulated","PgC/yr","HL",1.10126250285744 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2172,"Simulated","PgC/yr","HL",1.03058124019926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2173,"Simulated","PgC/yr","HL",1.06384682427283 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2174,"Simulated","PgC/yr","HL",1.13343704573245 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2175,"Simulated","PgC/yr","HL",1.16999809836684 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2176,"Simulated","PgC/yr","HL",1.07372026435822 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2177,"Simulated","PgC/yr","HL",1.12170952526892 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2178,"Simulated","PgC/yr","HL",1.00989890599451 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2179,"Simulated","PgC/yr","HL",1.04618161208797 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2180,"Simulated","PgC/yr","HL",1.10140677960759 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2181,"Simulated","PgC/yr","HL",0.970723216576313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2182,"Simulated","PgC/yr","HL",0.937556667595101 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2183,"Simulated","PgC/yr","HL",1.08451012387765 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2184,"Simulated","PgC/yr","HL",0.985207167799901 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2185,"Simulated","PgC/yr","HL",0.918221927892244 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2186,"Simulated","PgC/yr","HL",0.891293210410875 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2187,"Simulated","PgC/yr","HL",0.875216421796517 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2188,"Simulated","PgC/yr","HL",0.883172884564892 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2189,"Simulated","PgC/yr","HL",0.80232714554711 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2190,"Simulated","PgC/yr","HL",0.807587591720403 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2191,"Simulated","PgC/yr","HL",0.970776458283348 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2192,"Simulated","PgC/yr","HL",0.964158486512552 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2193,"Simulated","PgC/yr","HL",0.951508477612109 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2194,"Simulated","PgC/yr","HL",1.05185640563933 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2195,"Simulated","PgC/yr","HL",0.938294327308111 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2196,"Simulated","PgC/yr","HL",1.04112723614864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2197,"Simulated","PgC/yr","HL",1.13418849863381 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2198,"Simulated","PgC/yr","HL",0.992819076723268 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2199,"Simulated","PgC/yr","HL",1.0587121719773 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2200,"Simulated","PgC/yr","HL",1.13067730460719 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2201,"Simulated","PgC/yr","HL",0.997597864759346 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2202,"Simulated","PgC/yr","HL",0.997096896158439 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2203,"Simulated","PgC/yr","HL",1.08994353663287 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2204,"Simulated","PgC/yr","HL",1.13966080818018 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2205,"Simulated","PgC/yr","HL",0.960864121406806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2206,"Simulated","PgC/yr","HL",1.03479671442308 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2207,"Simulated","PgC/yr","HL",1.06320157892177 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2208,"Simulated","PgC/yr","HL",1.07758263296026 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2209,"Simulated","PgC/yr","HL",1.04574574733608 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2210,"Simulated","PgC/yr","HL",1.10800902714367 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2211,"Simulated","PgC/yr","HL",1.13843045577927 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2212,"Simulated","PgC/yr","HL",0.925837147180815 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2213,"Simulated","PgC/yr","HL",1.05164150776482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2214,"Simulated","PgC/yr","HL",0.979287683087198 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2215,"Simulated","PgC/yr","HL",0.948833978390856 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2216,"Simulated","PgC/yr","HL",1.05304013706361 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2217,"Simulated","PgC/yr","HL",1.06048818290937 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2218,"Simulated","PgC/yr","HL",1.1210706247845 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2219,"Simulated","PgC/yr","HL",1.16554151921064 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2220,"Simulated","PgC/yr","HL",1.01578611464647 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2221,"Simulated","PgC/yr","HL",1.04164227380167 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2222,"Simulated","PgC/yr","HL",0.931537871926271 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2223,"Simulated","PgC/yr","HL",0.914894183270688 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2224,"Simulated","PgC/yr","HL",0.964018347718906 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2225,"Simulated","PgC/yr","HL",0.954270701511274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2226,"Simulated","PgC/yr","HL",0.949589017521188 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2227,"Simulated","PgC/yr","HL",0.927374260090647 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2228,"Simulated","PgC/yr","HL",0.877749954632824 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2229,"Simulated","PgC/yr","HL",0.933314710449644 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2230,"Simulated","PgC/yr","HL",0.826092809075833 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2231,"Simulated","PgC/yr","HL",0.909471253338621 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2232,"Simulated","PgC/yr","HL",0.739582207602308 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2233,"Simulated","PgC/yr","HL",0.768818801358561 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2234,"Simulated","PgC/yr","HL",0.82602742936305 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2235,"Simulated","PgC/yr","HL",0.82383569173408 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2236,"Simulated","PgC/yr","HL",0.816491370664722 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2237,"Simulated","PgC/yr","HL",0.707053179786678 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2238,"Simulated","PgC/yr","HL",0.650123450050646 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2239,"Simulated","PgC/yr","HL",0.791871908777074 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2240,"Simulated","PgC/yr","HL",0.949463775370961 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2241,"Simulated","PgC/yr","HL",0.873920137955293 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2242,"Simulated","PgC/yr","HL",0.833545268741863 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2243,"Simulated","PgC/yr","HL",0.684585179418014 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2244,"Simulated","PgC/yr","HL",0.672730209894121 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2245,"Simulated","PgC/yr","HL",0.683187377710527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2246,"Simulated","PgC/yr","HL",0.777568648320883 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2247,"Simulated","PgC/yr","HL",0.829635727435664 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2248,"Simulated","PgC/yr","HL",0.850246612924754 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2249,"Simulated","PgC/yr","HL",0.959345491369364 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2250,"Simulated","PgC/yr","HL",0.843852918396544 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2251,"Simulated","PgC/yr","HL",0.905713437104282 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2252,"Simulated","PgC/yr","HL",0.749096473063041 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2253,"Simulated","PgC/yr","HL",1.00050188263476 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2254,"Simulated","PgC/yr","HL",1.00051374477674 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2255,"Simulated","PgC/yr","HL",0.956257196497581 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2256,"Simulated","PgC/yr","HL",0.894261504544004 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2257,"Simulated","PgC/yr","HL",0.865051669573152 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2258,"Simulated","PgC/yr","HL",0.731430985014418 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2259,"Simulated","PgC/yr","HL",0.64277057720451 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2260,"Simulated","PgC/yr","HL",0.77900810545719 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2261,"Simulated","PgC/yr","HL",0.851721932350773 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2262,"Simulated","PgC/yr","HL",0.87377972329788 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2263,"Simulated","PgC/yr","HL",0.856793963571193 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2264,"Simulated","PgC/yr","HL",0.909912911229619 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2265,"Simulated","PgC/yr","HL",0.93365098838164 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2266,"Simulated","PgC/yr","HL",0.998507387599209 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2267,"Simulated","PgC/yr","HL",0.83414444484383 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2268,"Simulated","PgC/yr","HL",0.909774427618575 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2269,"Simulated","PgC/yr","HL",0.975980076520635 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2270,"Simulated","PgC/yr","HL",0.967168711938268 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2271,"Simulated","PgC/yr","HL",0.869409489500758 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2272,"Simulated","PgC/yr","HL",0.960476256950377 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2273,"Simulated","PgC/yr","HL",1.07127280101722 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2274,"Simulated","PgC/yr","HL",0.916984403033395 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2275,"Simulated","PgC/yr","HL",1.01334582376342 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2276,"Simulated","PgC/yr","HL",1.02761873920523 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2277,"Simulated","PgC/yr","HL",0.944406089066427 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2278,"Simulated","PgC/yr","HL",1.06346364950044 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2279,"Simulated","PgC/yr","HL",0.93655445452952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2280,"Simulated","PgC/yr","HL",0.950120607000234 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2281,"Simulated","PgC/yr","HL",0.920514907523709 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2282,"Simulated","PgC/yr","HL",0.985598066757768 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2283,"Simulated","PgC/yr","HL",1.04682658157526 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2284,"Simulated","PgC/yr","HL",0.850365510208339 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2285,"Simulated","PgC/yr","HL",0.826227154730372 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2286,"Simulated","PgC/yr","HL",0.974851241985992 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2287,"Simulated","PgC/yr","HL",0.964867180530025 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2288,"Simulated","PgC/yr","HL",0.89815752852562 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2289,"Simulated","PgC/yr","HL",0.807848282980237 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2290,"Simulated","PgC/yr","HL",0.788974235768301 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2291,"Simulated","PgC/yr","HL",0.730995120262528 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2292,"Simulated","PgC/yr","HL",0.701114660474051 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2293,"Simulated","PgC/yr","HL",0.65548100026993 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2294,"Simulated","PgC/yr","HL",0.853489943233601 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2295,"Simulated","PgC/yr","HL",0.728719795912151 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2296,"Simulated","PgC/yr","HL",0.545709841825094 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2297,"Simulated","PgC/yr","HL",0.697162912011498 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2298,"Simulated","PgC/yr","HL",0.720516986799828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2299,"Simulated","PgC/yr","HL",0.60470772222247 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2300,"Simulated","PgC/yr","HL",0.80792111101473 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",2.99045215429538 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",2.950868150282 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",3.03602485407482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",3.02709319103763 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",3.13673497655595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",3.22672399518258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",3.23396929579058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",3.13373016225197 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",3.27070009002154 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",3.26958969790857 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",3.3058583837966 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",3.35496683086978 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",3.33928337483035 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",3.24220129444582 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",3.42494563847124 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",3.39634027570045 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",3.48691351091437 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",3.45251038526869 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",3.48001169921192 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",3.43669689187812 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",3.37932758420102 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",3.58071516124336 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",3.55101272725899 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",3.41498699752436 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",3.53774289132229 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",3.67313841565034 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",3.67290529991112 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",3.67137973976734 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",3.71874441767825 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",3.56339133159402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",3.75449295416175 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",3.64285113075015 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",3.71586361460425 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",3.71089935943369 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",3.59880525977156 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",3.64281655984461 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",3.71161932232899 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",3.82420375795416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",3.77488439664074 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",3.7866315269121 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",3.70238952487699 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",3.75556148059094 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",3.73060985022271 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",3.72935356254506 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",3.83351284647392 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",3.87840903486321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",3.81596636750631 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",3.71153907976841 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",3.79182445752209 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",3.67959239140206 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",3.70368640958134 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",3.70146150221989 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",3.61235324877397 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",3.69638592239018 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",3.71254924797172 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",3.62922067903726 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",3.50195851527617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",3.57935357502772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",3.44390920740193 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",3.46727152760789 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",3.42176289501119 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",3.34226027867848 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",3.25325446929212 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",3.1999835583256 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",3.27426121045695 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",3.22948110419087 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",3.23960879369422 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",3.10013834281165 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",2.96360768755749 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",3.06677297866086 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",3.05127855252698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",2.95225035217526 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",2.95460719987348 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",2.823743001486 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",2.69134689966933 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",2.72424603234166 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",2.67205094258257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",2.5501041348401 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",2.66865665055373 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",2.59693439095429 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",2.60459359093601 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",2.61271743657483 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",2.57413757464361 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",2.48976743824301 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",2.5412327330144 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",2.54695501079278 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",2.50079999741168 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",2.46590843878857 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",2.48195948821816 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",2.5007724041201 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",2.45993623556459 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",2.36451133849634 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",2.47141472769837 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",2.49605966021648 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",2.58862246690272 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",2.50744490605457 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",2.42842659956375 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2103,"Simulated","PgC/yr","LL",2.29030790280442 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2104,"Simulated","PgC/yr","LL",2.4123006993662 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2105,"Simulated","PgC/yr","LL",2.41357189376459 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2106,"Simulated","PgC/yr","LL",2.52172491019458 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2107,"Simulated","PgC/yr","LL",2.61258486190953 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2108,"Simulated","PgC/yr","LL",2.43977473718212 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2109,"Simulated","PgC/yr","LL",2.28888827552717 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2110,"Simulated","PgC/yr","LL",2.40726793671308 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2111,"Simulated","PgC/yr","LL",2.1412280088374 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2112,"Simulated","PgC/yr","LL",2.394673977838 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2113,"Simulated","PgC/yr","LL",2.26020520750998 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2114,"Simulated","PgC/yr","LL",2.162280104493 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2115,"Simulated","PgC/yr","LL",2.30757559437777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2116,"Simulated","PgC/yr","LL",2.29354551568336 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2117,"Simulated","PgC/yr","LL",2.27371640545695 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2118,"Simulated","PgC/yr","LL",2.33794724497407 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2119,"Simulated","PgC/yr","LL",2.06423194173884 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2120,"Simulated","PgC/yr","LL",2.18896630625962 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2121,"Simulated","PgC/yr","LL",2.1085093426353 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2122,"Simulated","PgC/yr","LL",1.90090376005892 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2123,"Simulated","PgC/yr","LL",1.84689829664064 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2124,"Simulated","PgC/yr","LL",2.08249045449497 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2125,"Simulated","PgC/yr","LL",2.05784552197686 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2126,"Simulated","PgC/yr","LL",2.05763619355797 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2127,"Simulated","PgC/yr","LL",1.97161997459058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2128,"Simulated","PgC/yr","LL",2.03829297899482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2129,"Simulated","PgC/yr","LL",2.06869634601822 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2130,"Simulated","PgC/yr","LL",1.92517824470844 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2131,"Simulated","PgC/yr","LL",2.00288095380291 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2132,"Simulated","PgC/yr","LL",2.13149106571599 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2133,"Simulated","PgC/yr","LL",1.8417792653058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2134,"Simulated","PgC/yr","LL",1.90792831433426 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2135,"Simulated","PgC/yr","LL",1.87272308024708 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2136,"Simulated","PgC/yr","LL",1.88851912960274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2137,"Simulated","PgC/yr","LL",1.78015171012551 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2138,"Simulated","PgC/yr","LL",1.81603313843859 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2139,"Simulated","PgC/yr","LL",1.97071034746119 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2140,"Simulated","PgC/yr","LL",1.82234217011843 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2141,"Simulated","PgC/yr","LL",1.83138642647185 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2142,"Simulated","PgC/yr","LL",1.94214145858158 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2143,"Simulated","PgC/yr","LL",1.77750909741908 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2144,"Simulated","PgC/yr","LL",1.81171716703806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2145,"Simulated","PgC/yr","LL",1.72314587270305 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2146,"Simulated","PgC/yr","LL",2.11035143272159 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2147,"Simulated","PgC/yr","LL",1.936800412257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2148,"Simulated","PgC/yr","LL",1.75606879269571 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2149,"Simulated","PgC/yr","LL",1.97217945236472 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2150,"Simulated","PgC/yr","LL",1.8165228400731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2151,"Simulated","PgC/yr","LL",1.79571305792059 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2152,"Simulated","PgC/yr","LL",1.83007209773259 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2153,"Simulated","PgC/yr","LL",1.78194812855677 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2154,"Simulated","PgC/yr","LL",1.75397170253549 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2155,"Simulated","PgC/yr","LL",1.70925407763081 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2156,"Simulated","PgC/yr","LL",1.78971230991222 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2157,"Simulated","PgC/yr","LL",1.69661698441487 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2158,"Simulated","PgC/yr","LL",1.66093219794985 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2159,"Simulated","PgC/yr","LL",1.77004305047843 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2160,"Simulated","PgC/yr","LL",1.75437132951702 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2161,"Simulated","PgC/yr","LL",1.7403095343955 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2162,"Simulated","PgC/yr","LL",1.78017962058137 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2163,"Simulated","PgC/yr","LL",1.83574806952741 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2164,"Simulated","PgC/yr","LL",1.66052495902581 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2165,"Simulated","PgC/yr","LL",1.80242552255321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2166,"Simulated","PgC/yr","LL",1.62294479887697 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2167,"Simulated","PgC/yr","LL",1.73410833856782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2168,"Simulated","PgC/yr","LL",1.62710599411322 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2169,"Simulated","PgC/yr","LL",1.65392033024535 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2170,"Simulated","PgC/yr","LL",1.66854921508352 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2171,"Simulated","PgC/yr","LL",1.62545039661831 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2172,"Simulated","PgC/yr","LL",1.74970647741834 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2173,"Simulated","PgC/yr","LL",1.55160059908862 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2174,"Simulated","PgC/yr","LL",1.8339719496095 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2175,"Simulated","PgC/yr","LL",1.87249852794317 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2176,"Simulated","PgC/yr","LL",1.79488208753042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2177,"Simulated","PgC/yr","LL",1.69701153676806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2178,"Simulated","PgC/yr","LL",1.66875473753117 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2179,"Simulated","PgC/yr","LL",1.63703196714018 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2180,"Simulated","PgC/yr","LL",1.75183528400566 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2181,"Simulated","PgC/yr","LL",1.5749286655533 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2182,"Simulated","PgC/yr","LL",1.53480992257893 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2183,"Simulated","PgC/yr","LL",1.66912518539976 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2184,"Simulated","PgC/yr","LL",1.51816387297684 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2185,"Simulated","PgC/yr","LL",1.7075578831092 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2186,"Simulated","PgC/yr","LL",1.7477235663957 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2187,"Simulated","PgC/yr","LL",1.77384267844567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2188,"Simulated","PgC/yr","LL",1.64409331247096 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2189,"Simulated","PgC/yr","LL",1.84955993920334 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2190,"Simulated","PgC/yr","LL",1.69063399760567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2191,"Simulated","PgC/yr","LL",1.59219255115541 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2192,"Simulated","PgC/yr","LL",1.46592311156272 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2193,"Simulated","PgC/yr","LL",1.81510575011002 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2194,"Simulated","PgC/yr","LL",1.49576700081197 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2195,"Simulated","PgC/yr","LL",1.66964406614721 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2196,"Simulated","PgC/yr","LL",1.43839325283508 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2197,"Simulated","PgC/yr","LL",1.6772674265663 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2198,"Simulated","PgC/yr","LL",1.71736587102733 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2199,"Simulated","PgC/yr","LL",1.80021425325541 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2200,"Simulated","PgC/yr","LL",1.4488774349791 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2201,"Simulated","PgC/yr","LL",1.59485038774685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2202,"Simulated","PgC/yr","LL",1.65428950945686 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2203,"Simulated","PgC/yr","LL",1.46794788826914 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2204,"Simulated","PgC/yr","LL",1.65022726947318 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2205,"Simulated","PgC/yr","LL",1.72021400618141 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2206,"Simulated","PgC/yr","LL",1.54781619500638 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2207,"Simulated","PgC/yr","LL",1.52020641088244 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2208,"Simulated","PgC/yr","LL",1.56219388574188 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2209,"Simulated","PgC/yr","LL",1.63529771290604 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2210,"Simulated","PgC/yr","LL",1.65559749491069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2211,"Simulated","PgC/yr","LL",1.49343394043409 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2212,"Simulated","PgC/yr","LL",1.52080775434036 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2213,"Simulated","PgC/yr","LL",1.54322492501858 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2214,"Simulated","PgC/yr","LL",1.38044987782738 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2215,"Simulated","PgC/yr","LL",1.62971181576421 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2216,"Simulated","PgC/yr","LL",1.70398153878878 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2217,"Simulated","PgC/yr","LL",1.57389471002966 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2218,"Simulated","PgC/yr","LL",1.42960780252684 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2219,"Simulated","PgC/yr","LL",1.64551547706237 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2220,"Simulated","PgC/yr","LL",1.90219905894191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2221,"Simulated","PgC/yr","LL",1.6703443648577 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2222,"Simulated","PgC/yr","LL",1.37610092134266 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2223,"Simulated","PgC/yr","LL",1.73991625069939 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2224,"Simulated","PgC/yr","LL",1.6266974865321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2225,"Simulated","PgC/yr","LL",1.43101347457616 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2226,"Simulated","PgC/yr","LL",1.62245763455663 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2227,"Simulated","PgC/yr","LL",1.25973664880075 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2228,"Simulated","PgC/yr","LL",1.42845459323728 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2229,"Simulated","PgC/yr","LL",1.6526136134486 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2230,"Simulated","PgC/yr","LL",1.69154235607798 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2231,"Simulated","PgC/yr","LL",1.40792264698622 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2232,"Simulated","PgC/yr","LL",1.56643246906026 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2233,"Simulated","PgC/yr","LL",1.48402557949749 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2234,"Simulated","PgC/yr","LL",1.55428507747883 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2235,"Simulated","PgC/yr","LL",1.4790879661257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2236,"Simulated","PgC/yr","LL",1.74298893815738 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2237,"Simulated","PgC/yr","LL",1.37062286005299 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2238,"Simulated","PgC/yr","LL",1.46262714045791 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2239,"Simulated","PgC/yr","LL",1.44106504465446 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2240,"Simulated","PgC/yr","LL",1.42657571209555 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2241,"Simulated","PgC/yr","LL",1.424488771192 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2242,"Simulated","PgC/yr","LL",1.57951866688402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2243,"Simulated","PgC/yr","LL",1.4577225121703 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2244,"Simulated","PgC/yr","LL",1.64811114945669 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2245,"Simulated","PgC/yr","LL",1.41258115579949 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2246,"Simulated","PgC/yr","LL",1.51485521530119 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2247,"Simulated","PgC/yr","LL",1.5962776269666 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2248,"Simulated","PgC/yr","LL",1.62223054493855 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2249,"Simulated","PgC/yr","LL",1.34874867460682 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2250,"Simulated","PgC/yr","LL",1.30345000475756 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2251,"Simulated","PgC/yr","LL",1.52458962110843 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2252,"Simulated","PgC/yr","LL",1.45406497379649 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2253,"Simulated","PgC/yr","LL",1.33974882125134 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2254,"Simulated","PgC/yr","LL",1.53057641388888 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2255,"Simulated","PgC/yr","LL",1.4638260214025 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2256,"Simulated","PgC/yr","LL",1.47641363699215 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2257,"Simulated","PgC/yr","LL",1.63144480134126 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2258,"Simulated","PgC/yr","LL",1.45888967668779 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2259,"Simulated","PgC/yr","LL",1.45318579443712 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2260,"Simulated","PgC/yr","LL",1.44263691078181 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2261,"Simulated","PgC/yr","LL",1.51812454460723 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2262,"Simulated","PgC/yr","LL",1.69433974494869 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2263,"Simulated","PgC/yr","LL",1.38108674368366 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2264,"Simulated","PgC/yr","LL",1.56495448355715 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2265,"Simulated","PgC/yr","LL",1.51482349887408 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2266,"Simulated","PgC/yr","LL",1.40643451222643 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2267,"Simulated","PgC/yr","LL",1.33004740052829 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2268,"Simulated","PgC/yr","LL",1.46062139360775 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2269,"Simulated","PgC/yr","LL",1.47390296462248 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2270,"Simulated","PgC/yr","LL",1.54804455328154 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2271,"Simulated","PgC/yr","LL",1.28381753637921 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2272,"Simulated","PgC/yr","LL",1.46496908143538 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2273,"Simulated","PgC/yr","LL",1.48735580434358 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2274,"Simulated","PgC/yr","LL",1.69569720802881 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2275,"Simulated","PgC/yr","LL",1.41877854565592 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2276,"Simulated","PgC/yr","LL",1.44916922610847 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2277,"Simulated","PgC/yr","LL",1.44578444900777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2278,"Simulated","PgC/yr","LL",1.50459051083274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2279,"Simulated","PgC/yr","LL",1.45705266122983 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2280,"Simulated","PgC/yr","LL",1.43746078987818 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2281,"Simulated","PgC/yr","LL",1.47976796632284 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2282,"Simulated","PgC/yr","LL",1.27042939816941 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2283,"Simulated","PgC/yr","LL",1.34584852451229 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2284,"Simulated","PgC/yr","LL",1.28961276193994 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2285,"Simulated","PgC/yr","LL",1.26009238024717 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2286,"Simulated","PgC/yr","LL",1.49076722324305 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2287,"Simulated","PgC/yr","LL",1.44353892596869 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2288,"Simulated","PgC/yr","LL",1.45621154158299 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2289,"Simulated","PgC/yr","LL",1.50539610808122 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2290,"Simulated","PgC/yr","LL",1.47701371179299 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2291,"Simulated","PgC/yr","LL",1.22976716250015 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2292,"Simulated","PgC/yr","LL",1.31425515714389 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2293,"Simulated","PgC/yr","LL",1.4104409312984 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2294,"Simulated","PgC/yr","LL",1.47109923246635 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2295,"Simulated","PgC/yr","LL",1.29419261401399 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2296,"Simulated","PgC/yr","LL",1.38924294007813 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2297,"Simulated","PgC/yr","LL",1.28136141626416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2298,"Simulated","PgC/yr","LL",1.28827940334443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2299,"Simulated","PgC/yr","LL",1.38142293781098 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2300,"Simulated","PgC/yr","LL",1.23459173852575 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.79097546018584 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",3.78883629880687 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.96249604523714 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",3.85585769210483 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",4.19416027223581 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",3.97768949685081 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",4.27412938382972 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",4.30647319497558 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",4.55042099630418 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",4.48755281957522 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.74293161972385 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.55594883643078 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.6843649335656 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.57100945925124 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",4.41360733930115 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.51870580514477 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.53045188621847 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.75141721728058 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.87306213500356 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.87048741874454 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.8437656634972 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.74041405073633 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",4.65013680698123 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",4.83540980569198 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.72835288740898 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.900769294554 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",5.00263662277682 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",4.70023488531212 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",4.8949912420495 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",5.14637282223512 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",5.1079204311226 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",4.8520906308854 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",5.43550558106681 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",5.37783162796057 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",5.37562759670585 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",5.4253658016784 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",5.19992599371024 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",5.34376876510728 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",5.29195781315236 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",5.30826640882063 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",5.41919235183599 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",5.31088282714263 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",5.31683849954502 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",5.14156318430436 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",4.94345985088233 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",5.06404522730136 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",5.04689177872747 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",5.12132687211138 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",5.03638594789732 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",5.16493487382535 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",5.21641838735981 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",5.0684440226857 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",4.95486768188961 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",5.16483911353258 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",5.07911666176778 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",5.17488931071161 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",5.10212075532618 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",5.38881317121291 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",5.12502445502925 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",4.81463754476362 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",5.0200124823533 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.79524299643458 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.78897687534109 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",4.69298027087383 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",4.85131528141807 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",4.69936377555202 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.58877608260308 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",4.59911356066044 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",4.69839072741573 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",4.4190826657188 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",4.45416954589647 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",4.38223657629157 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",4.45551327903705 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",4.22929812160157 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",4.01519509668152 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",4.02367606067569 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",4.04191376288716 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",4.00373011840275 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",3.97583298278762 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",3.78898920637115 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",3.78322505455431 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",4.02194774184315 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.70931200921812 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.68941240257071 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",3.66711261052048 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.67302658085988 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.85713346632795 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.74780455787277 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.86598820436812 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.75982401913714 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.80980934744589 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",3.94578896318925 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",3.81470393402348 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.50850730882727 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.78204658514481 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",3.71045649916889 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",3.5418025448175 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2103,"Simulated","PgC/yr","global",3.52973365888589 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2104,"Simulated","PgC/yr","global",3.68247441490693 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2105,"Simulated","PgC/yr","global",3.80194619179222 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2106,"Simulated","PgC/yr","global",3.63268060718374 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2107,"Simulated","PgC/yr","global",3.5203630508814 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2108,"Simulated","PgC/yr","global",3.71999545994616 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2109,"Simulated","PgC/yr","global",3.49171373361171 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2110,"Simulated","PgC/yr","global",3.35779450868391 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2111,"Simulated","PgC/yr","global",3.52341502408346 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2112,"Simulated","PgC/yr","global",3.51468230319054 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2113,"Simulated","PgC/yr","global",3.60925485943295 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2114,"Simulated","PgC/yr","global",3.28110904841973 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2115,"Simulated","PgC/yr","global",3.28307367894251 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2116,"Simulated","PgC/yr","global",3.248919689359 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2117,"Simulated","PgC/yr","global",3.19001011957177 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2118,"Simulated","PgC/yr","global",3.50183806779161 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2119,"Simulated","PgC/yr","global",3.22160020454222 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2120,"Simulated","PgC/yr","global",3.27691412978776 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2121,"Simulated","PgC/yr","global",3.13158398481098 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2122,"Simulated","PgC/yr","global",2.84955447737416 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2123,"Simulated","PgC/yr","global",3.13279797820006 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2124,"Simulated","PgC/yr","global",3.12405290114032 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2125,"Simulated","PgC/yr","global",3.04025028879362 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2126,"Simulated","PgC/yr","global",3.4005622910548 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2127,"Simulated","PgC/yr","global",3.30685930005164 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2128,"Simulated","PgC/yr","global",3.15036072479953 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2129,"Simulated","PgC/yr","global",3.08040474188422 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2130,"Simulated","PgC/yr","global",3.18332388880674 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2131,"Simulated","PgC/yr","global",3.04478500201287 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2132,"Simulated","PgC/yr","global",3.11022789500085 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2133,"Simulated","PgC/yr","global",3.1396293939251 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2134,"Simulated","PgC/yr","global",2.87562598934313 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2135,"Simulated","PgC/yr","global",2.94070283088936 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2136,"Simulated","PgC/yr","global",2.65997689905099 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2137,"Simulated","PgC/yr","global",2.88060552456753 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2138,"Simulated","PgC/yr","global",3.16725160482871 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2139,"Simulated","PgC/yr","global",3.44996070144008 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2140,"Simulated","PgC/yr","global",3.15618974649212 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2141,"Simulated","PgC/yr","global",3.06579975271487 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2142,"Simulated","PgC/yr","global",3.25652182098881 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2143,"Simulated","PgC/yr","global",3.21318256590295 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2144,"Simulated","PgC/yr","global",3.1074261341767 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2145,"Simulated","PgC/yr","global",2.94125576935411 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2146,"Simulated","PgC/yr","global",2.96696740796474 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2147,"Simulated","PgC/yr","global",2.84817213121229 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2148,"Simulated","PgC/yr","global",2.6356259833103 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2149,"Simulated","PgC/yr","global",2.91916912118134 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2150,"Simulated","PgC/yr","global",2.88448536094585 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2151,"Simulated","PgC/yr","global",2.79998616969524 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2152,"Simulated","PgC/yr","global",3.30730257753595 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2153,"Simulated","PgC/yr","global",2.79870885095126 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2154,"Simulated","PgC/yr","global",3.23017229526662 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2155,"Simulated","PgC/yr","global",3.0176493151774 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2156,"Simulated","PgC/yr","global",2.90424287167494 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2157,"Simulated","PgC/yr","global",2.9017639157087 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2158,"Simulated","PgC/yr","global",2.79326595947149 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2159,"Simulated","PgC/yr","global",2.86053447610564 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2160,"Simulated","PgC/yr","global",2.7493258857745 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2161,"Simulated","PgC/yr","global",2.55700678294038 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2162,"Simulated","PgC/yr","global",2.5170639292064 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2163,"Simulated","PgC/yr","global",2.68130055392324 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2164,"Simulated","PgC/yr","global",2.89447686633253 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2165,"Simulated","PgC/yr","global",2.91518116834344 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2166,"Simulated","PgC/yr","global",2.63832271671657 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2167,"Simulated","PgC/yr","global",2.95924789275023 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2168,"Simulated","PgC/yr","global",2.56610709979589 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2169,"Simulated","PgC/yr","global",2.73180793027971 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2170,"Simulated","PgC/yr","global",2.63648164786189 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2171,"Simulated","PgC/yr","global",2.46802693670031 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2172,"Simulated","PgC/yr","global",2.68448381139765 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2173,"Simulated","PgC/yr","global",2.68425058874911 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2174,"Simulated","PgC/yr","global",2.49096616038296 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2175,"Simulated","PgC/yr","global",2.46928881023578 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2176,"Simulated","PgC/yr","global",2.54707551386689 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2177,"Simulated","PgC/yr","global",2.49535259960049 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2178,"Simulated","PgC/yr","global",2.89688014077707 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2179,"Simulated","PgC/yr","global",2.716999064358 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2180,"Simulated","PgC/yr","global",2.74975371805029 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2181,"Simulated","PgC/yr","global",2.67398570317175 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2182,"Simulated","PgC/yr","global",2.53302964124569 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2183,"Simulated","PgC/yr","global",2.51131676711893 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2184,"Simulated","PgC/yr","global",2.92348760148142 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2185,"Simulated","PgC/yr","global",2.54924093210033 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2186,"Simulated","PgC/yr","global",2.51153454455895 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2187,"Simulated","PgC/yr","global",2.62048041184302 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2188,"Simulated","PgC/yr","global",2.70832503525742 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2189,"Simulated","PgC/yr","global",2.48845476947884 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2190,"Simulated","PgC/yr","global",2.33237939293997 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2191,"Simulated","PgC/yr","global",2.1879358029318 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2192,"Simulated","PgC/yr","global",2.20500739190058 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2193,"Simulated","PgC/yr","global",2.47825475377724 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2194,"Simulated","PgC/yr","global",2.40393241041546 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2195,"Simulated","PgC/yr","global",2.57385596090658 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2196,"Simulated","PgC/yr","global",2.76546303962828 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2197,"Simulated","PgC/yr","global",2.91236396231077 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2198,"Simulated","PgC/yr","global",2.76770105034173 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2199,"Simulated","PgC/yr","global",2.76809026959624 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2200,"Simulated","PgC/yr","global",2.56714038424538 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2201,"Simulated","PgC/yr","global",2.51644457634505 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2202,"Simulated","PgC/yr","global",2.53044256881986 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2203,"Simulated","PgC/yr","global",2.5965202598777 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2204,"Simulated","PgC/yr","global",2.4555750095976 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2205,"Simulated","PgC/yr","global",2.28704770595601 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2206,"Simulated","PgC/yr","global",2.30122949641212 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2207,"Simulated","PgC/yr","global",2.33057230354401 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2208,"Simulated","PgC/yr","global",2.46849647103909 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2209,"Simulated","PgC/yr","global",2.51546998368792 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2210,"Simulated","PgC/yr","global",2.50118625485563 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2211,"Simulated","PgC/yr","global",2.43651562229327 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2212,"Simulated","PgC/yr","global",2.14492244174556 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2213,"Simulated","PgC/yr","global",1.99678281334036 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2214,"Simulated","PgC/yr","global",2.41964482103515 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2215,"Simulated","PgC/yr","global",2.45150519715457 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2216,"Simulated","PgC/yr","global",2.451168491609 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2217,"Simulated","PgC/yr","global",2.44282035640804 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2218,"Simulated","PgC/yr","global",2.57671332448137 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2219,"Simulated","PgC/yr","global",2.64632487924686 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2220,"Simulated","PgC/yr","global",2.43163802544505 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2221,"Simulated","PgC/yr","global",2.52338256400883 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2222,"Simulated","PgC/yr","global",2.46497805253996 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2223,"Simulated","PgC/yr","global",2.52535800617757 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2224,"Simulated","PgC/yr","global",2.49084414323571 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2225,"Simulated","PgC/yr","global",2.7087883915128 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2226,"Simulated","PgC/yr","global",2.53686932008188 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2227,"Simulated","PgC/yr","global",2.36431853962281 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2228,"Simulated","PgC/yr","global",2.54254543421019 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2229,"Simulated","PgC/yr","global",2.69285820345308 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2230,"Simulated","PgC/yr","global",2.61272691716979 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2231,"Simulated","PgC/yr","global",2.40183186205777 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2232,"Simulated","PgC/yr","global",2.2995984823932 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2233,"Simulated","PgC/yr","global",2.08432316614707 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2234,"Simulated","PgC/yr","global",2.20166041521594 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2235,"Simulated","PgC/yr","global",2.11535876813193 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2236,"Simulated","PgC/yr","global",2.30021474621285 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2237,"Simulated","PgC/yr","global",2.4811924324363 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2238,"Simulated","PgC/yr","global",2.58820455961462 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2239,"Simulated","PgC/yr","global",2.63654497321679 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2240,"Simulated","PgC/yr","global",2.84361579470113 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2241,"Simulated","PgC/yr","global",2.51187433914623 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2242,"Simulated","PgC/yr","global",2.53960157746773 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2243,"Simulated","PgC/yr","global",2.37816208001249 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2244,"Simulated","PgC/yr","global",2.27048271982644 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2245,"Simulated","PgC/yr","global",2.39277170274439 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2246,"Simulated","PgC/yr","global",2.57398570065808 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2247,"Simulated","PgC/yr","global",2.35400731841991 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2248,"Simulated","PgC/yr","global",2.69464984764052 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2249,"Simulated","PgC/yr","global",2.36870343431948 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2250,"Simulated","PgC/yr","global",2.42097928705062 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2251,"Simulated","PgC/yr","global",2.27629166274796 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2252,"Simulated","PgC/yr","global",2.47427143450189 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2253,"Simulated","PgC/yr","global",2.17638896504791 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2254,"Simulated","PgC/yr","global",2.33229135525145 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2255,"Simulated","PgC/yr","global",2.50884090019439 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2256,"Simulated","PgC/yr","global",2.15780837920747 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2257,"Simulated","PgC/yr","global",2.29159631986292 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2258,"Simulated","PgC/yr","global",2.10768558854296 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2259,"Simulated","PgC/yr","global",2.10712647199481 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2260,"Simulated","PgC/yr","global",2.35499890080641 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2261,"Simulated","PgC/yr","global",2.54279255754639 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2262,"Simulated","PgC/yr","global",2.35790877809015 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2263,"Simulated","PgC/yr","global",2.39608778901201 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2264,"Simulated","PgC/yr","global",2.31499581075924 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2265,"Simulated","PgC/yr","global",2.41164265850486 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2266,"Simulated","PgC/yr","global",2.3976307653424 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2267,"Simulated","PgC/yr","global",2.34220717911642 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2268,"Simulated","PgC/yr","global",2.44583680563052 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2269,"Simulated","PgC/yr","global",2.34688398825398 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2270,"Simulated","PgC/yr","global",2.09675501447872 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2271,"Simulated","PgC/yr","global",2.14446063001103 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2272,"Simulated","PgC/yr","global",2.07621752071975 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2273,"Simulated","PgC/yr","global",1.89590706750404 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2274,"Simulated","PgC/yr","global",2.07147275266473 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2275,"Simulated","PgC/yr","global",1.9478971838777 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2276,"Simulated","PgC/yr","global",2.20070744585072 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2277,"Simulated","PgC/yr","global",2.21899920629198 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2278,"Simulated","PgC/yr","global",1.9432404535112 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2279,"Simulated","PgC/yr","global",2.26954365114888 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2280,"Simulated","PgC/yr","global",2.39184653475449 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2281,"Simulated","PgC/yr","global",2.25119319891527 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2282,"Simulated","PgC/yr","global",2.04563755238601 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2283,"Simulated","PgC/yr","global",1.93257090347082 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2284,"Simulated","PgC/yr","global",2.30645769949357 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2285,"Simulated","PgC/yr","global",2.35738518552158 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2286,"Simulated","PgC/yr","global",2.43523984807014 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2287,"Simulated","PgC/yr","global",2.08829104021391 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2288,"Simulated","PgC/yr","global",2.3125261219181 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2289,"Simulated","PgC/yr","global",2.45597040693552 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2290,"Simulated","PgC/yr","global",2.35015373889606 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2291,"Simulated","PgC/yr","global",2.29162257671739 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2292,"Simulated","PgC/yr","global",2.28609164754909 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2293,"Simulated","PgC/yr","global",2.09495101412447 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2294,"Simulated","PgC/yr","global",1.95490158593808 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2295,"Simulated","PgC/yr","global",2.06765933068302 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2296,"Simulated","PgC/yr","global",2.05330146484987 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2297,"Simulated","PgC/yr","global",2.39097388047354 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2298,"Simulated","PgC/yr","global",2.08525142317866 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2299,"Simulated","PgC/yr","global",2.27346827863189 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2300,"Simulated","PgC/yr","global",2.32814431676586 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.709241055322909 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.743461679757902 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.739843726453442 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.742507466987782 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.797481874343181 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.789372858911644 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.946275617815518 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.03712252184282 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",1.10121919224602 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",1.16844250258461 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.17947815672046 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.16607531559982 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.19216513136568 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.16977106248658 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.11759391372876 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.16365323172539 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.18048754224398 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.30775949806853 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.33709264414324 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.40643707098645 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.36540592187128 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.30337298830916 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.23754251413024 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.23215186025892 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.20251388472165 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.29197843541242 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.22070489324644 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.17349522334134 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.39413851252519 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.4038453308953 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.37134085495494 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.35616172703846 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.52361930953226 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.59313780641246 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.53116749392545 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.52403751900306 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.48519727992556 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.51309896891321 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.52740719491721 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.49438216404848 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.49929833224053 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.46273700374238 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.48639508040196 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.32593588581367 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.28811303230894 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.38255278603791 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.45047651448097 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.40901474202548 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.32942639005777 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.4484478123383 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",1.43466124471774 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.38113567386673 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",1.34306123260647 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.46185313623285 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.55928435665137 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.56164354358692 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.52754071298044 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.62938216744231 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",1.59914280889294 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.41664596141254 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",1.54817973657377 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",1.55911773493609 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.59222386975232 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.61410731479867 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.58485113471496 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.57170595035272 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",1.45193528208096 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",1.43903671992644 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",1.39314981678419 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.33116488351753 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.41948322025633 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.41030743963773 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.35892229575502 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.3495953417921 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.24357841335263 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.28742778671167 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.30383368080008 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.19849813586515 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.22634685900953 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.17128169247478 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.23244041375922 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.23391545732147 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.17878711798407 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.23608236721141 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.17142845199883 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.19064291509927 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.26914519141622 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.23918473113531 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.21008441407996 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.27474577761425 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.32358056097086 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.30575176157216 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.2226549742155 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.20596466458329 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.32245172643622 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",1.25034866192282 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",1.18339514634837 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2103,"Simulated","PgC/yr","HL",1.14508346224848 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2104,"Simulated","PgC/yr","HL",1.22025164907723 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2105,"Simulated","PgC/yr","HL",1.33695471225973 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2106,"Simulated","PgC/yr","HL",1.1765101384511 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2107,"Simulated","PgC/yr","HL",1.20480245053284 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2108,"Simulated","PgC/yr","HL",1.22573030349024 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2109,"Simulated","PgC/yr","HL",1.04962439190037 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2110,"Simulated","PgC/yr","HL",1.04706658305257 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2111,"Simulated","PgC/yr","HL",1.15665401622857 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2112,"Simulated","PgC/yr","HL",1.12051531102149 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2113,"Simulated","PgC/yr","HL",1.19803523646409 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2114,"Simulated","PgC/yr","HL",1.04705444504682 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2115,"Simulated","PgC/yr","HL",1.03854901338208 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2116,"Simulated","PgC/yr","HL",1.11213788014465 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2117,"Simulated","PgC/yr","HL",1.07505103117032 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2118,"Simulated","PgC/yr","HL",1.06298916382117 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2119,"Simulated","PgC/yr","HL",1.03252221766401 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2120,"Simulated","PgC/yr","HL",1.07346040068969 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2121,"Simulated","PgC/yr","HL",0.966993262582443 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2122,"Simulated","PgC/yr","HL",0.987904839577584 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2123,"Simulated","PgC/yr","HL",1.02725542662407 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2124,"Simulated","PgC/yr","HL",1.05430111034266 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2125,"Simulated","PgC/yr","HL",1.05179433629175 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2126,"Simulated","PgC/yr","HL",1.13972977412193 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2127,"Simulated","PgC/yr","HL",1.05138578205279 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2128,"Simulated","PgC/yr","HL",0.942837803550921 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2129,"Simulated","PgC/yr","HL",0.979526581109437 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2130,"Simulated","PgC/yr","HL",1.0807390661825 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2131,"Simulated","PgC/yr","HL",0.911087539149588 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2132,"Simulated","PgC/yr","HL",1.00289334563105 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2133,"Simulated","PgC/yr","HL",1.06451165595135 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2134,"Simulated","PgC/yr","HL",0.980300654839694 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2135,"Simulated","PgC/yr","HL",0.957488376489789 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2136,"Simulated","PgC/yr","HL",0.807938490432052 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2137,"Simulated","PgC/yr","HL",0.908758973092176 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2138,"Simulated","PgC/yr","HL",1.00231210067394 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2139,"Simulated","PgC/yr","HL",1.08853166587326 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2140,"Simulated","PgC/yr","HL",1.05799354686421 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2141,"Simulated","PgC/yr","HL",0.97946892558213 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2142,"Simulated","PgC/yr","HL",1.07753077057206 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2143,"Simulated","PgC/yr","HL",1.15160901965732 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2144,"Simulated","PgC/yr","HL",1.12482733756377 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2145,"Simulated","PgC/yr","HL",1.08978243219293 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2146,"Simulated","PgC/yr","HL",1.16218122266457 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2147,"Simulated","PgC/yr","HL",1.02399692380804 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2148,"Simulated","PgC/yr","HL",0.932319669842005 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2149,"Simulated","PgC/yr","HL",0.943078356755762 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2150,"Simulated","PgC/yr","HL",1.05543022074107 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2151,"Simulated","PgC/yr","HL",1.00820537832878 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2152,"Simulated","PgC/yr","HL",1.1873011014256 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2153,"Simulated","PgC/yr","HL",1.08971125934104 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2154,"Simulated","PgC/yr","HL",1.16238812048984 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2155,"Simulated","PgC/yr","HL",1.13078268456619 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2156,"Simulated","PgC/yr","HL",1.07642041890981 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2157,"Simulated","PgC/yr","HL",1.07520965283636 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2158,"Simulated","PgC/yr","HL",0.877762920229873 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2159,"Simulated","PgC/yr","HL",0.947469832062944 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2160,"Simulated","PgC/yr","HL",0.859239220002053 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2161,"Simulated","PgC/yr","HL",0.781177222257265 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2162,"Simulated","PgC/yr","HL",0.687724784950462 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2163,"Simulated","PgC/yr","HL",0.834194100321893 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2164,"Simulated","PgC/yr","HL",0.968780032201428 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2165,"Simulated","PgC/yr","HL",0.936088796490791 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2166,"Simulated","PgC/yr","HL",0.783103854806128 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2167,"Simulated","PgC/yr","HL",0.88785070646224 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2168,"Simulated","PgC/yr","HL",0.787552158049316 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2169,"Simulated","PgC/yr","HL",0.83066718206055 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2170,"Simulated","PgC/yr","HL",0.757254040517573 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2171,"Simulated","PgC/yr","HL",0.782635989857263 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2172,"Simulated","PgC/yr","HL",0.768195349245097 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2173,"Simulated","PgC/yr","HL",0.812606657097555 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2174,"Simulated","PgC/yr","HL",0.758767980870975 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2175,"Simulated","PgC/yr","HL",0.758944533681868 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2176,"Simulated","PgC/yr","HL",0.835901145312209 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2177,"Simulated","PgC/yr","HL",0.745767624986418 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2178,"Simulated","PgC/yr","HL",0.934916927208492 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2179,"Simulated","PgC/yr","HL",0.860385985681552 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2180,"Simulated","PgC/yr","HL",0.986582348678493 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2181,"Simulated","PgC/yr","HL",0.923164027278397 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2182,"Simulated","PgC/yr","HL",0.927133706885806 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2183,"Simulated","PgC/yr","HL",0.802563836659212 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2184,"Simulated","PgC/yr","HL",0.929400479459405 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2185,"Simulated","PgC/yr","HL",0.883376472024952 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2186,"Simulated","PgC/yr","HL",0.926989981863189 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2187,"Simulated","PgC/yr","HL",0.897424558496649 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2188,"Simulated","PgC/yr","HL",0.857829832016351 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2189,"Simulated","PgC/yr","HL",0.756390311063035 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2190,"Simulated","PgC/yr","HL",0.627934072086671 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2191,"Simulated","PgC/yr","HL",0.633940729749752 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2192,"Simulated","PgC/yr","HL",0.553755132726448 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2193,"Simulated","PgC/yr","HL",0.745410657271894 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2194,"Simulated","PgC/yr","HL",0.722424584748768 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2195,"Simulated","PgC/yr","HL",0.844316369525137 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2196,"Simulated","PgC/yr","HL",0.980790037162386 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2197,"Simulated","PgC/yr","HL",1.03456333367618 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2198,"Simulated","PgC/yr","HL",1.01021145964254 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2199,"Simulated","PgC/yr","HL",0.934606304606828 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2200,"Simulated","PgC/yr","HL",0.861636752001219 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2201,"Simulated","PgC/yr","HL",0.788823338287742 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2202,"Simulated","PgC/yr","HL",0.802406594312011 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2203,"Simulated","PgC/yr","HL",0.788792441545836 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2204,"Simulated","PgC/yr","HL",0.710769616455964 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2205,"Simulated","PgC/yr","HL",0.736805087059724 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2206,"Simulated","PgC/yr","HL",0.606088144512636 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2207,"Simulated","PgC/yr","HL",0.721820167235228 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2208,"Simulated","PgC/yr","HL",0.704155782641673 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2209,"Simulated","PgC/yr","HL",0.740316556950114 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2210,"Simulated","PgC/yr","HL",0.674517807104407 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2211,"Simulated","PgC/yr","HL",0.709365745745602 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2212,"Simulated","PgC/yr","HL",0.600545765569448 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2213,"Simulated","PgC/yr","HL",0.540520292639924 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2214,"Simulated","PgC/yr","HL",0.661071655372346 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2215,"Simulated","PgC/yr","HL",0.815328880750502 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2216,"Simulated","PgC/yr","HL",0.800780377405432 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2217,"Simulated","PgC/yr","HL",0.657895635822651 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2218,"Simulated","PgC/yr","HL",0.793581436541293 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2219,"Simulated","PgC/yr","HL",0.814822670738022 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2220,"Simulated","PgC/yr","HL",0.779755420402046 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2221,"Simulated","PgC/yr","HL",0.858008591737379 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2222,"Simulated","PgC/yr","HL",0.805923857341509 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2223,"Simulated","PgC/yr","HL",0.873941103601586 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2224,"Simulated","PgC/yr","HL",0.81703951196979 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2225,"Simulated","PgC/yr","HL",0.98509158088152 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2226,"Simulated","PgC/yr","HL",0.856857963965141 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2227,"Simulated","PgC/yr","HL",0.870571703551211 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2228,"Simulated","PgC/yr","HL",0.912571410352385 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2229,"Simulated","PgC/yr","HL",0.807367176570555 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2230,"Simulated","PgC/yr","HL",0.795836071109143 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2231,"Simulated","PgC/yr","HL",0.712780939181303 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2232,"Simulated","PgC/yr","HL",0.732155679130378 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2233,"Simulated","PgC/yr","HL",0.556085905693995 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2234,"Simulated","PgC/yr","HL",0.590919775283073 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2235,"Simulated","PgC/yr","HL",0.550783252364348 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2236,"Simulated","PgC/yr","HL",0.707085455847419 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2237,"Simulated","PgC/yr","HL",0.816935511329624 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2238,"Simulated","PgC/yr","HL",0.78470855433888 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2239,"Simulated","PgC/yr","HL",0.775939948640401 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2240,"Simulated","PgC/yr","HL",0.867059957797054 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2241,"Simulated","PgC/yr","HL",0.648649785807228 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2242,"Simulated","PgC/yr","HL",0.697220015811271 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2243,"Simulated","PgC/yr","HL",0.687395679476408 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2244,"Simulated","PgC/yr","HL",0.767967485773539 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2245,"Simulated","PgC/yr","HL",0.82011594469959 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2246,"Simulated","PgC/yr","HL",0.728109861123271 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2247,"Simulated","PgC/yr","HL",0.798103395410275 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2248,"Simulated","PgC/yr","HL",0.851988140885947 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2249,"Simulated","PgC/yr","HL",0.660915240616446 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2250,"Simulated","PgC/yr","HL",0.66779252432824 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2251,"Simulated","PgC/yr","HL",0.755911411563489 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2252,"Simulated","PgC/yr","HL",0.781583293722317 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2253,"Simulated","PgC/yr","HL",0.726902681278794 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2254,"Simulated","PgC/yr","HL",0.696024422245008 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2255,"Simulated","PgC/yr","HL",0.768999767989726 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2256,"Simulated","PgC/yr","HL",0.768924733045097 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2257,"Simulated","PgC/yr","HL",0.660336478433239 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2258,"Simulated","PgC/yr","HL",0.513285918104698 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2259,"Simulated","PgC/yr","HL",0.707989185548175 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2260,"Simulated","PgC/yr","HL",0.793091778354833 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2261,"Simulated","PgC/yr","HL",0.740935595243305 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2262,"Simulated","PgC/yr","HL",0.779855558949474 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2263,"Simulated","PgC/yr","HL",0.736342739386199 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2264,"Simulated","PgC/yr","HL",0.67816969165221 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2265,"Simulated","PgC/yr","HL",0.737855852148301 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2266,"Simulated","PgC/yr","HL",0.727745720950806 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2267,"Simulated","PgC/yr","HL",0.685685599984654 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2268,"Simulated","PgC/yr","HL",0.780830461502121 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2269,"Simulated","PgC/yr","HL",0.720917540989541 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2270,"Simulated","PgC/yr","HL",0.539656563185386 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2271,"Simulated","PgC/yr","HL",0.586879474551306 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2272,"Simulated","PgC/yr","HL",0.508732786630042 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2273,"Simulated","PgC/yr","HL",0.428080428112942 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2274,"Simulated","PgC/yr","HL",0.534328254525406 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2275,"Simulated","PgC/yr","HL",0.515111032787299 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2276,"Simulated","PgC/yr","HL",0.493722487338981 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2277,"Simulated","PgC/yr","HL",0.486170440853057 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2278,"Simulated","PgC/yr","HL",0.420056654585414 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2279,"Simulated","PgC/yr","HL",0.616113033806122 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2280,"Simulated","PgC/yr","HL",0.705082133171324 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2281,"Simulated","PgC/yr","HL",0.552843127112682 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2282,"Simulated","PgC/yr","HL",0.481103099316678 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2283,"Simulated","PgC/yr","HL",0.552466297206934 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2284,"Simulated","PgC/yr","HL",0.798063119300291 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2285,"Simulated","PgC/yr","HL",0.772237305159466 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2286,"Simulated","PgC/yr","HL",0.7480997772728 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2287,"Simulated","PgC/yr","HL",0.726522265144074 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2288,"Simulated","PgC/yr","HL",0.716960551115414 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2289,"Simulated","PgC/yr","HL",0.811436442997858 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2290,"Simulated","PgC/yr","HL",0.7307653257446 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2291,"Simulated","PgC/yr","HL",0.715013228784024 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2292,"Simulated","PgC/yr","HL",0.684561179270283 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2293,"Simulated","PgC/yr","HL",0.602552674474515 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2294,"Simulated","PgC/yr","HL",0.535422054361638 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2295,"Simulated","PgC/yr","HL",0.586510644694801 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2296,"Simulated","PgC/yr","HL",0.578434181187773 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2297,"Simulated","PgC/yr","HL",0.672476966955997 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2298,"Simulated","PgC/yr","HL",0.675812987490563 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2299,"Simulated","PgC/yr","HL",0.676101265127098 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2300,"Simulated","PgC/yr","HL",0.655344723569023 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",3.0817342516551 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",3.04537453962128 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",3.22265160594223 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",3.11335045485102 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",3.3966783728134 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",3.18831667061482 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",3.32785372599431 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",3.26935214186955 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",3.4492020447573 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",3.31911014136985 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",3.56345349579115 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",3.38987456487071 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",3.49219937065578 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",3.40123792637409 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",3.29601423915157 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",3.35505246522296 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",3.34996388165815 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",3.44365801329925 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",3.53596930871855 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",3.46404913861396 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",3.478359590524 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",3.43704196660503 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",3.41259367593497 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",3.60325761180864 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",3.52583908190103 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",3.60879149401002 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",3.78193273823641 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",3.52673982843083 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",3.50085288062727 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",3.74252698054336 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",3.73657824747544 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",3.4959292224834 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",3.91188635800168 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",3.78469460470876 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",3.84446103994649 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",3.90132859374678 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",3.71472816651387 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",3.83067073744099 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",3.76455086752547 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",3.81388386690255 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",3.91989412151729 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",3.84814648877616 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",3.83044364782292 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",3.81562700173628 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",3.65534740302974 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",3.68149315687849 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",3.59641447549634 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",3.71231137476843 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",3.70696017918718 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",3.71648779388969 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",3.7817563949017 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",3.68730741229548 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",3.61180582324213 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",3.70298674519939 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",3.51983199060724 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",3.61324574903273 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",3.57458088707687 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",3.75943056753355 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",3.5258822162419 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",3.39799143289557 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",3.47183361848275 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",3.23612601283376 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",3.19675197156782 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",3.07887216127309 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",3.26646467834586 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",3.12765836944688 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",3.13684217807957 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",3.16007763257711 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",3.30524118212513 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",3.0879176862836 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",3.0346861036867 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",2.97192944370145 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",3.09659149476843 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",2.87970314830679 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",2.77161610204519 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",2.73624847985122 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",2.73808042068084 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",2.80523170880583 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",2.74948691652509 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",2.61770643055853 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",2.55078476936578 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",2.78803252471503 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",2.53052431573075 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",2.45332906946996 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",2.49568318622674 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",2.48238258535574 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",2.58798813836062 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",2.50861968251456 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",2.65590315805031 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",2.48507721300263 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",2.48622915363511 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",2.64003733255502 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",2.59204910968721 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",2.30254156306758 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",2.45959496680894 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",2.46010750427096 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",2.35840687777133 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2103,"Simulated","PgC/yr","LL",2.38465031821556 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2104,"Simulated","PgC/yr","LL",2.46222235563036 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2105,"Simulated","PgC/yr","LL",2.46499056538813 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2106,"Simulated","PgC/yr","LL",2.45617086133862 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2107,"Simulated","PgC/yr","LL",2.31556052206587 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2108,"Simulated","PgC/yr","LL",2.49426482760657 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2109,"Simulated","PgC/yr","LL",2.44208876770375 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2110,"Simulated","PgC/yr","LL",2.31072820723207 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2111,"Simulated","PgC/yr","LL",2.36676098467094 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2112,"Simulated","PgC/yr","LL",2.39416651500432 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2113,"Simulated","PgC/yr","LL",2.41121980353044 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2114,"Simulated","PgC/yr","LL",2.2340543790329 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2115,"Simulated","PgC/yr","LL",2.24452460594899 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2116,"Simulated","PgC/yr","LL",2.13678263441429 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2117,"Simulated","PgC/yr","LL",2.11496046390857 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2118,"Simulated","PgC/yr","LL",2.43884861751064 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2119,"Simulated","PgC/yr","LL",2.18907794808303 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2120,"Simulated","PgC/yr","LL",2.20345310150436 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2121,"Simulated","PgC/yr","LL",2.16459032904337 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2122,"Simulated","PgC/yr","LL",1.86165024121598 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2123,"Simulated","PgC/yr","LL",2.10554322237239 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2124,"Simulated","PgC/yr","LL",2.06975060005521 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2125,"Simulated","PgC/yr","LL",1.9884563227553 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2126,"Simulated","PgC/yr","LL",2.26083192410959 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2127,"Simulated","PgC/yr","LL",2.25547311658583 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2128,"Simulated","PgC/yr","LL",2.20752422208763 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2129,"Simulated","PgC/yr","LL",2.1008783702737 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2130,"Simulated","PgC/yr","LL",2.10258471405198 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2131,"Simulated","PgC/yr","LL",2.13369726038546 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2132,"Simulated","PgC/yr","LL",2.10733329751822 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2133,"Simulated","PgC/yr","LL",2.07511828817856 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2134,"Simulated","PgC/yr","LL",1.89532420620251 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2135,"Simulated","PgC/yr","LL",1.98321550034038 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2136,"Simulated","PgC/yr","LL",1.85203889514591 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2137,"Simulated","PgC/yr","LL",1.97184579555157 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2138,"Simulated","PgC/yr","LL",2.16494047839861 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2139,"Simulated","PgC/yr","LL",2.36142881894595 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2140,"Simulated","PgC/yr","LL",2.09819642919765 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2141,"Simulated","PgC/yr","LL",2.08633067948892 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2142,"Simulated","PgC/yr","LL",2.17899085560638 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2143,"Simulated","PgC/yr","LL",2.06157283649031 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2144,"Simulated","PgC/yr","LL",1.98259893299744 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2145,"Simulated","PgC/yr","LL",1.85147307408635 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2146,"Simulated","PgC/yr","LL",1.80478649338695 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2147,"Simulated","PgC/yr","LL",1.82417411094804 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2148,"Simulated","PgC/yr","LL",1.70330661321997 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2149,"Simulated","PgC/yr","LL",1.97609072215538 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2150,"Simulated","PgC/yr","LL",1.82905590340813 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2151,"Simulated","PgC/yr","LL",1.79178148961658 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2152,"Simulated","PgC/yr","LL",2.12000083850419 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2153,"Simulated","PgC/yr","LL",1.7089978088998 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2154,"Simulated","PgC/yr","LL",2.06778418157467 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2155,"Simulated","PgC/yr","LL",1.88686733807908 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2156,"Simulated","PgC/yr","LL",1.82782150006518 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2157,"Simulated","PgC/yr","LL",1.82655538029513 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2158,"Simulated","PgC/yr","LL",1.91550219712707 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2159,"Simulated","PgC/yr","LL",1.91306510686828 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2160,"Simulated","PgC/yr","LL",1.89008718975884 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2161,"Simulated","PgC/yr","LL",1.77582939543957 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2162,"Simulated","PgC/yr","LL",1.82933881393791 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2163,"Simulated","PgC/yr","LL",1.84710635640245 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2164,"Simulated","PgC/yr","LL",1.92569712545589 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2165,"Simulated","PgC/yr","LL",1.97909236481665 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2166,"Simulated","PgC/yr","LL",1.85521814979897 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2167,"Simulated","PgC/yr","LL",2.07139731695053 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2168,"Simulated","PgC/yr","LL",1.77855573951356 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2169,"Simulated","PgC/yr","LL",1.90114099893367 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2170,"Simulated","PgC/yr","LL",1.87922748511789 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2171,"Simulated","PgC/yr","LL",1.68539063787658 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2172,"Simulated","PgC/yr","LL",1.91628876451929 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2173,"Simulated","PgC/yr","LL",1.87164472172549 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2174,"Simulated","PgC/yr","LL",1.73219900965606 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2175,"Simulated","PgC/yr","LL",1.71034385406616 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2176,"Simulated","PgC/yr","LL",1.71117482445632 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2177,"Simulated","PgC/yr","LL",1.74958468633825 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2178,"Simulated","PgC/yr","LL",1.96196422552256 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2179,"Simulated","PgC/yr","LL",1.85661367259162 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2180,"Simulated","PgC/yr","LL",1.76317073505319 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2181,"Simulated","PgC/yr","LL",1.75082162699537 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2182,"Simulated","PgC/yr","LL",1.6058953163221 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2183,"Simulated","PgC/yr","LL",1.70875295808254 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2184,"Simulated","PgC/yr","LL",1.99408662289508 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2185,"Simulated","PgC/yr","LL",1.66586473669331 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2186,"Simulated","PgC/yr","LL",1.58454381759463 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2187,"Simulated","PgC/yr","LL",1.72305579805007 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2188,"Simulated","PgC/yr","LL",1.8504962081315 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2189,"Simulated","PgC/yr","LL",1.73206453200513 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2190,"Simulated","PgC/yr","LL",1.70444459862452 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2191,"Simulated","PgC/yr","LL",1.55399455500654 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2192,"Simulated","PgC/yr","LL",1.65125234439723 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2193,"Simulated","PgC/yr","LL",1.73284348745485 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2194,"Simulated","PgC/yr","LL",1.68150727854177 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2195,"Simulated","PgC/yr","LL",1.72953863575045 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2196,"Simulated","PgC/yr","LL",1.7846719353166 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2197,"Simulated","PgC/yr","LL",1.87780024589814 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2198,"Simulated","PgC/yr","LL",1.75748968863004 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2199,"Simulated","PgC/yr","LL",1.83348478528915 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2200,"Simulated","PgC/yr","LL",1.70550392728985 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2201,"Simulated","PgC/yr","LL",1.72762169489619 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2202,"Simulated","PgC/yr","LL",1.72803654576273 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2203,"Simulated","PgC/yr","LL",1.80772724050818 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2204,"Simulated","PgC/yr","LL",1.74480565510198 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2205,"Simulated","PgC/yr","LL",1.55024186735141 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2206,"Simulated","PgC/yr","LL",1.69514026756883 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2207,"Simulated","PgC/yr","LL",1.60875106341868 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2208,"Simulated","PgC/yr","LL",1.76434043688485 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2209,"Simulated","PgC/yr","LL",1.77515446987076 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2210,"Simulated","PgC/yr","LL",1.82666829077563 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2211,"Simulated","PgC/yr","LL",1.72714975446086 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2212,"Simulated","PgC/yr","LL",1.54437559699397 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2213,"Simulated","PgC/yr","LL",1.45626228786636 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2214,"Simulated","PgC/yr","LL",1.75857312177997 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2215,"Simulated","PgC/yr","LL",1.63617562360833 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2216,"Simulated","PgC/yr","LL",1.65038838892287 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2217,"Simulated","PgC/yr","LL",1.78492566673344 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2218,"Simulated","PgC/yr","LL",1.78313178561635 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2219,"Simulated","PgC/yr","LL",1.8315031429236 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2220,"Simulated","PgC/yr","LL",1.65188286696809 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2221,"Simulated","PgC/yr","LL",1.66537376640171 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2222,"Simulated","PgC/yr","LL",1.6590545854652 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2223,"Simulated","PgC/yr","LL",1.65141726981818 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2224,"Simulated","PgC/yr","LL",1.67380526138346 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2225,"Simulated","PgC/yr","LL",1.72369773853469 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2226,"Simulated","PgC/yr","LL",1.68001153183948 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2227,"Simulated","PgC/yr","LL",1.49374729873389 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2228,"Simulated","PgC/yr","LL",1.62997315912356 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2229,"Simulated","PgC/yr","LL",1.8854908451427 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2230,"Simulated","PgC/yr","LL",1.81689075062752 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2231,"Simulated","PgC/yr","LL",1.68905071356456 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2232,"Simulated","PgC/yr","LL",1.56744358875639 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2233,"Simulated","PgC/yr","LL",1.52823701022557 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2234,"Simulated","PgC/yr","LL",1.61074031772674 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2235,"Simulated","PgC/yr","LL",1.56457515508896 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2236,"Simulated","PgC/yr","LL",1.59312882008356 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2237,"Simulated","PgC/yr","LL",1.6642573481676 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2238,"Simulated","PgC/yr","LL",1.8034962691323 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2239,"Simulated","PgC/yr","LL",1.8606035991215 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2240,"Simulated","PgC/yr","LL",1.97655505064821 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2241,"Simulated","PgC/yr","LL",1.8632246446575 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2242,"Simulated","PgC/yr","LL",1.84238187742081 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2243,"Simulated","PgC/yr","LL",1.69076593794243 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2244,"Simulated","PgC/yr","LL",1.50251498784295 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2245,"Simulated","PgC/yr","LL",1.57265523205838 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2246,"Simulated","PgC/yr","LL",1.84587575903076 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2247,"Simulated","PgC/yr","LL",1.5559038839183 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2248,"Simulated","PgC/yr","LL",1.84266225063642 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2249,"Simulated","PgC/yr","LL",1.70778751004145 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2250,"Simulated","PgC/yr","LL",1.75318640380036 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2251,"Simulated","PgC/yr","LL",1.52038021690298 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2252,"Simulated","PgC/yr","LL",1.69268795342503 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2253,"Simulated","PgC/yr","LL",1.44948639037953 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2254,"Simulated","PgC/yr","LL",1.63626696691839 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2255,"Simulated","PgC/yr","LL",1.73984013127434 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2256,"Simulated","PgC/yr","LL",1.38888264146621 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2257,"Simulated","PgC/yr","LL",1.63125957740696 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2258,"Simulated","PgC/yr","LL",1.59440001448196 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2259,"Simulated","PgC/yr","LL",1.39913719667798 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2260,"Simulated","PgC/yr","LL",1.56190590058376 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2261,"Simulated","PgC/yr","LL",1.80185716417948 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2262,"Simulated","PgC/yr","LL",1.57805336795175 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2263,"Simulated","PgC/yr","LL",1.65974473491902 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2264,"Simulated","PgC/yr","LL",1.63682517603545 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2265,"Simulated","PgC/yr","LL",1.67378623152719 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2266,"Simulated","PgC/yr","LL",1.66988511099321 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2267,"Simulated","PgC/yr","LL",1.65652234592509 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2268,"Simulated","PgC/yr","LL",1.66500712450437 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2269,"Simulated","PgC/yr","LL",1.62596674005159 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2270,"Simulated","PgC/yr","LL",1.55709769023455 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2271,"Simulated","PgC/yr","LL",1.55758231724073 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2272,"Simulated","PgC/yr","LL",1.56748418578309 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2273,"Simulated","PgC/yr","LL",1.46782736584614 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2274,"Simulated","PgC/yr","LL",1.53714552027098 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2275,"Simulated","PgC/yr","LL",1.43278578852282 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2276,"Simulated","PgC/yr","LL",1.70698445010713 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2277,"Simulated","PgC/yr","LL",1.73282953222692 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2278,"Simulated","PgC/yr","LL",1.52318268040203 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2279,"Simulated","PgC/yr","LL",1.65343062861084 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2280,"Simulated","PgC/yr","LL",1.68676332484171 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2281,"Simulated","PgC/yr","LL",1.69834996999191 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2282,"Simulated","PgC/yr","LL",1.56453455806227 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2283,"Simulated","PgC/yr","LL",1.38010480310047 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2284,"Simulated","PgC/yr","LL",1.50839521342833 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2285,"Simulated","PgC/yr","LL",1.5851489670238 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2286,"Simulated","PgC/yr","LL",1.68713884733864 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2287,"Simulated","PgC/yr","LL",1.3617689022622 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2288,"Simulated","PgC/yr","LL",1.59556464168527 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2289,"Simulated","PgC/yr","LL",1.64453353647919 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2290,"Simulated","PgC/yr","LL",1.61938875306989 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2291,"Simulated","PgC/yr","LL",1.5766096361899 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2292,"Simulated","PgC/yr","LL",1.60153113595237 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2293,"Simulated","PgC/yr","LL",1.49239871625336 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2294,"Simulated","PgC/yr","LL",1.41948011302349 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2295,"Simulated","PgC/yr","LL",1.48114953388756 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2296,"Simulated","PgC/yr","LL",1.47486714400649 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2297,"Simulated","PgC/yr","LL",1.71849624448937 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2298,"Simulated","PgC/yr","LL",1.40943869220187 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2299,"Simulated","PgC/yr","LL",1.59736740340195 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2300,"Simulated","PgC/yr","LL",1.67279921631567 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.16679133761504 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.94177472836012 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.10901853517433 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",3.37606773487496 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",3.38689482604216 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",3.59535417177177 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",3.29871040804049 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",3.37222496699706 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",3.58147974096506 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",3.36534412660478 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",3.73731880581369 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",3.59701144264515 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",3.75717053231471 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",3.95575575624232 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",3.78573026737503 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",3.9799831103149 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",3.98213771690239 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",3.82714504948023 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.03208906575241 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.00809802337007 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",3.96000164406238 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.16175313573504 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",3.92556964072564 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",4.43034994532861 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.34862934708939 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.22806868300398 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",4.21919695523444 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",4.60480975355982 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",4.52732732053641 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.34781847364249 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",4.28660756778691 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",4.24951898858603 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",4.45355019303512 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",4.26482364570099 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",4.25900698017521 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",4.25405370180528 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",4.50103339756486 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",4.34824785043913 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",4.28892434906377 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",4.35254625196814 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",4.40338261126592 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",4.53963869624166 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",4.35120560786926 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",4.27003640357393 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",4.25080557445511 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",4.5975118925377 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",4.37893747975331 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",4.31591639546008 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",4.55034222574077 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",4.35462363251306 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",4.48315247967003 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",4.34930430270138 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",4.39083492387043 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",4.55773584705566 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",4.08420428831502 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",4.30777059249063 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",4.38752501568622 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",4.19065266538264 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",4.09118552256264 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",4.08807640208909 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",4.01872432682661 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",3.97132761546454 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.01568779883307 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",3.96756670719177 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",3.67884015734396 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",3.95363821815527 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",3.99796133302336 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",3.84243117234498 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",3.79959697557748 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",3.77184348040151 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",3.74111832710775 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",3.77021401090345 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",3.7324813665076 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",3.70647472441438 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",3.40563140848858 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",3.55321655390818 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",3.29550861631587 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",3.45604148003142 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",3.47356406908877 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",3.3612635025158 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",3.11591327625428 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",3.20756359904614 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.03998154216551 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",2.992101395777 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",2.94325746837732 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.26801923420546 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.12823546360549 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.08787867828338 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.16761765627046 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",2.86839917628016 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",2.95960931062942 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",2.82838373006618 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",2.84852891552893 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.20110904640879 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.07692184736467 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.740034900043987 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.564510785138769 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.75298753149685 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.722106237961628 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.702186667072688 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.870261080949547 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.840552760151691 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.797186148384936 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.868099964198717 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.779106037094483 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.929739240165305 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.971996051997341 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.975020346475175 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.04910328524448 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.954013044752878 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.10502500877582 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.10662805312597 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.06890175193969 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.08688531091169 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.12494706243866 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.03747424814577 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.20520245299502 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.11071773347203 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.2537732347266 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.2361518848807 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.18875986902559 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.22907101370884 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.21891233048835 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.22960370664296 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.2363618172074 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.18897255998997 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.24516821624196 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.26222845918574 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.14733285540475 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.12455395657066 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.10492790472983 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.15461345194393 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.0698703096257 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.09673199221168 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.15972658686563 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.23131654477238 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.25894374931184 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.12953302170159 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.15979279416972 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.19829896222536 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.22035785662753 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.19449728365206 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.26467481907167 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.33010611837971 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.27448508635442 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",1.3965967345531 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.31755431698032 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",1.34001183452584 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.45077113698414 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.35441026798165 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.36311983883399 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.41112289293304 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.30743784091619 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",1.32915659529363 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.33036405100187 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",1.2493475523123 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",1.27534771235389 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.29526811083413 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.29360658336537 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.31547292485816 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.24577759930331 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",1.28898724458663 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",1.31599899706187 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",1.34606097520904 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.37404128537029 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.30638266200734 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.35149880178453 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.35885995054368 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.33564684214029 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.30528279316823 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.35841912024398 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.22123096545015 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.25034286878371 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.30569520949993 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.16082480052214 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.20757984693919 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.22966218976156 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.09883434998014 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.14886003721897 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.15006473428955 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.19599246526931 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.14151433683078 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.19862696424435 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.18082795813249 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.15692629376662 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.16260577700202 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.01473921165063 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.02299277969609 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.15686505201034 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.14235075577238 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",2.42675704684091 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",2.37726419667122 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",2.35603195170966 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",2.65396084405437 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",2.68470801714759 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",2.72509317810965 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",2.45815757833251 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",2.57503895550195 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",2.71338093590811 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",2.58623739158439 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",2.80757872441165 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",2.62501516402074 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",2.78214976181549 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",2.90665196208985 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",2.83171619409607 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",2.8749583708118 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",2.87551023664344 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",2.75824318772039 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",2.94520391356522 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",2.88315135826171 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",2.92252666818473 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",2.95654951386942 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",2.81485066681841 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",3.17657778661451 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",3.11247635011999 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",3.03930909010161 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",2.99012579226046 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",3.38589732491167 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",3.29772312024402 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",3.11145634982427 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",3.09763433089166 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",3.00435124414585 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",3.19132211924734 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",3.11749008291683 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",3.13445329678998 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",3.14912531596901 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",3.34642052242191 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",3.2783786370238 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",3.19219241800712 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",3.19281913460673 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",3.17206517336593 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",3.2806939362025 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",3.22167347133029 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",3.11024224499467 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",3.05250692974878 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",3.37715374028721 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",3.18443965456544 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",3.05124207863581 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",3.22023735151095 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",3.08013954970023 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",3.08655641723223 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",3.03174916253672 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",3.05082342179801 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",3.10696403508904 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",2.7297935526067 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",2.94465077907649 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",2.97640145992334 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",2.88321479111592 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",2.76202886045971 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",2.75771288905919 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",2.76937692229153 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",2.69598003534091 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",2.72041944541138 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",2.67395995433005 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",2.36336732697064 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",2.70786100893465 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",2.7089748898546 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",2.52643289663413 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",2.45353586057469 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",2.3978024862077 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",2.43473689990067 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",2.41871502958403 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",2.37362188218241 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",2.37082829928295 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",2.10034934026958 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",2.19479705421871 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",2.07427716853172 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",2.20569862454344 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",2.167868538949 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",2.20043750361516 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.90833301594413 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.97790109581457 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.94114683142755 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.84324202692391 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.79319350495132 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",2.07202657086431 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.98672079986408 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.88925241339742 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.98678930734663 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.71147295887112 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.79700328217524 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",1.81364552580608 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.82553537999941 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",2.04424298071983 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.93457138176002 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.93977851063871 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",3.86292068229281 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.64737289840827 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",3.82250406566264 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",3.95536653646221 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",3.97037293953327 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",3.90761611257281 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",4.19921817410655 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",4.25799798797905 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",4.16150704137648 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.14158230765683 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.40527612611402 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.30985729518416 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.30519037566081 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",4.31705119134811 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.2961717386219 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.31934605494556 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.215920128114 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.44016813068266 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.46238022319007 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.48191524286268 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.47758657583408 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",4.64194619692464 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",4.73442314244855 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.71135550163432 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.67640560281935 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",4.48968593725856 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",4.77296248453579 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",4.65986661039414 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.7860546250732 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",4.63215456448569 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",4.60456098735908 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",4.93321697471551 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",4.58568692699869 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",4.81987451396914 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",4.90801689582824 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",4.69860643811218 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",4.92757764627701 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",4.85723399275855 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",5.02859828159682 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",4.98536521709442 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",4.83292269776397 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",4.93896405077912 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",4.88096848952121 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",4.75750740105571 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",4.88825726792219 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",4.79080838596604 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",4.91987556728419 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",4.88971802552627 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",4.6532050196617 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",4.74327238521118 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",4.88967299666802 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",4.63453144493211 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",4.72315359855476 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",4.6936677372658 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",4.73670782094712 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",4.68485119403119 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",4.63257644200291 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",4.65189221402045 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",4.67314690723212 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",4.48801558104046 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.51336629217974 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.39657376319855 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",4.37058996775453 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",4.05482724347822 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",4.41189804856657 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.45931450842392 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",4.12911842690363 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",3.94999630905756 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",3.97858695375981 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",3.86222541527905 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",3.8879765616221 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",4.04126444416049 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",3.7433015203405 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",3.67985317877114 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",3.59358699933929 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",3.5253645266793 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",3.40630179276113 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",3.46229356982673 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",3.46707466966923 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",3.35789898648488 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",3.32966535630165 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.40484532361975 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.37246689424579 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",3.31114509411326 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.58001240674915 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.45255339894008 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.14751397562231 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.42716998827278 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.39075933185372 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.3693400688863 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",3.24286365509127 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",3.46122949502156 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.2292515384526 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.10939275864743 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",3.0488316245847 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",3.03320500259698 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2103,"Simulated","PgC/yr","global",3.46698568406839 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2104,"Simulated","PgC/yr","global",3.4967095550367 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2105,"Simulated","PgC/yr","global",3.0874647767933 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2106,"Simulated","PgC/yr","global",2.90531178794046 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2107,"Simulated","PgC/yr","global",2.98142985647218 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2108,"Simulated","PgC/yr","global",2.95165130760457 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2109,"Simulated","PgC/yr","global",3.06888876458993 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2110,"Simulated","PgC/yr","global",3.14991015415084 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2111,"Simulated","PgC/yr","global",2.83146606857706 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2112,"Simulated","PgC/yr","global",3.41399315059722 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2113,"Simulated","PgC/yr","global",3.06122420964566 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2114,"Simulated","PgC/yr","global",2.832871612224 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2115,"Simulated","PgC/yr","global",2.89619987683802 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2116,"Simulated","PgC/yr","global",3.1289846004507 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2117,"Simulated","PgC/yr","global",2.71853530024901 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2118,"Simulated","PgC/yr","global",2.92735019770888 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2119,"Simulated","PgC/yr","global",2.98881780557289 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2120,"Simulated","PgC/yr","global",2.75987822482041 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2121,"Simulated","PgC/yr","global",2.89623525665522 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2122,"Simulated","PgC/yr","global",3.02130291045629 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2123,"Simulated","PgC/yr","global",2.92913687847746 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2124,"Simulated","PgC/yr","global",2.719596694765 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2125,"Simulated","PgC/yr","global",2.44217872358134 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2126,"Simulated","PgC/yr","global",2.90414264579936 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2127,"Simulated","PgC/yr","global",2.58218791745526 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2128,"Simulated","PgC/yr","global",2.96532239060525 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2129,"Simulated","PgC/yr","global",2.36403274825466 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2130,"Simulated","PgC/yr","global",2.30254423413503 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2131,"Simulated","PgC/yr","global",2.73874682491111 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2132,"Simulated","PgC/yr","global",2.80772138671551 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2133,"Simulated","PgC/yr","global",3.0367156453673 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2134,"Simulated","PgC/yr","global",2.48845391630508 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2135,"Simulated","PgC/yr","global",2.46003105770562 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2136,"Simulated","PgC/yr","global",2.7354854490347 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2137,"Simulated","PgC/yr","global",2.526964847327 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2138,"Simulated","PgC/yr","global",2.85557258947816 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2139,"Simulated","PgC/yr","global",2.57589513451423 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2140,"Simulated","PgC/yr","global",2.46084479350122 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2141,"Simulated","PgC/yr","global",2.74533872812483 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2142,"Simulated","PgC/yr","global",2.387738833952 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2143,"Simulated","PgC/yr","global",2.35265331250442 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2144,"Simulated","PgC/yr","global",2.4596193652873 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2145,"Simulated","PgC/yr","global",2.35828352795971 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2146,"Simulated","PgC/yr","global",2.10329636088067 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2147,"Simulated","PgC/yr","global",2.16638500764184 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2148,"Simulated","PgC/yr","global",2.56849110367843 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2149,"Simulated","PgC/yr","global",2.10800670108877 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2150,"Simulated","PgC/yr","global",2.15909033260466 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2151,"Simulated","PgC/yr","global",2.44509916667382 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2152,"Simulated","PgC/yr","global",2.45762362196253 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2153,"Simulated","PgC/yr","global",2.39161453210888 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2154,"Simulated","PgC/yr","global",2.58176335964886 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2155,"Simulated","PgC/yr","global",2.33397437719647 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2156,"Simulated","PgC/yr","global",2.32240517697215 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2157,"Simulated","PgC/yr","global",2.07146256626846 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2158,"Simulated","PgC/yr","global",2.8048331070932 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2159,"Simulated","PgC/yr","global",2.48890259671412 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2160,"Simulated","PgC/yr","global",2.39063515444185 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2161,"Simulated","PgC/yr","global",2.00207309569872 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2162,"Simulated","PgC/yr","global",2.49529991093323 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2163,"Simulated","PgC/yr","global",2.21115334178758 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2164,"Simulated","PgC/yr","global",2.04039747859358 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2165,"Simulated","PgC/yr","global",1.94901623528718 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2166,"Simulated","PgC/yr","global",2.08761666916715 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2167,"Simulated","PgC/yr","global",2.1896713600533 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2168,"Simulated","PgC/yr","global",2.12052633185695 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2169,"Simulated","PgC/yr","global",2.3386557702814 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2170,"Simulated","PgC/yr","global",2.43978736957334 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2171,"Simulated","PgC/yr","global",2.34344169464442 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2172,"Simulated","PgC/yr","global",2.28352597421666 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2173,"Simulated","PgC/yr","global",2.34777250590437 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2174,"Simulated","PgC/yr","global",2.28080012011877 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2175,"Simulated","PgC/yr","global",2.17875186192666 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2176,"Simulated","PgC/yr","global",2.50686589481053 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2177,"Simulated","PgC/yr","global",2.27207899517904 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2178,"Simulated","PgC/yr","global",2.12193991637143 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2179,"Simulated","PgC/yr","global",2.57122017412334 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2180,"Simulated","PgC/yr","global",2.33405800221894 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2181,"Simulated","PgC/yr","global",1.98918197684994 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2182,"Simulated","PgC/yr","global",2.37002480274949 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2183,"Simulated","PgC/yr","global",2.12264108002138 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2184,"Simulated","PgC/yr","global",2.43762759255064 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2185,"Simulated","PgC/yr","global",2.18488382751678 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2186,"Simulated","PgC/yr","global",2.36160601442946 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2187,"Simulated","PgC/yr","global",2.06247930904674 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2188,"Simulated","PgC/yr","global",2.22257619822257 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2189,"Simulated","PgC/yr","global",2.03653786217179 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2190,"Simulated","PgC/yr","global",2.27577136155588 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2191,"Simulated","PgC/yr","global",1.86056508411433 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2192,"Simulated","PgC/yr","global",2.07660389697698 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2193,"Simulated","PgC/yr","global",2.16721482517253 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2194,"Simulated","PgC/yr","global",2.11618587155594 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2195,"Simulated","PgC/yr","global",2.06958904413038 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2196,"Simulated","PgC/yr","global",2.07598957469651 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2197,"Simulated","PgC/yr","global",2.25787882309387 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2198,"Simulated","PgC/yr","global",2.26172879047461 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2199,"Simulated","PgC/yr","global",2.15836504635206 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2200,"Simulated","PgC/yr","global",1.9070557720883 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2201,"Simulated","PgC/yr","global",2.11862547076921 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2202,"Simulated","PgC/yr","global",2.14633430033065 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2203,"Simulated","PgC/yr","global",1.9139467955747 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2204,"Simulated","PgC/yr","global",1.56775785735289 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2205,"Simulated","PgC/yr","global",1.84996239616898 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2206,"Simulated","PgC/yr","global",2.0593546279186 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2207,"Simulated","PgC/yr","global",1.90812842381885 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2208,"Simulated","PgC/yr","global",2.0266910157757 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2209,"Simulated","PgC/yr","global",2.43491782018785 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2210,"Simulated","PgC/yr","global",2.01897660745265 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2211,"Simulated","PgC/yr","global",2.06293603032332 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2212,"Simulated","PgC/yr","global",2.208835963761 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2213,"Simulated","PgC/yr","global",2.26377760352517 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2214,"Simulated","PgC/yr","global",1.92890602555615 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2215,"Simulated","PgC/yr","global",1.8658736648678 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2216,"Simulated","PgC/yr","global",2.36644983303881 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2217,"Simulated","PgC/yr","global",1.94107185815233 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2218,"Simulated","PgC/yr","global",1.50188996513333 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2219,"Simulated","PgC/yr","global",1.78808309588664 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2220,"Simulated","PgC/yr","global",2.09745065017517 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2221,"Simulated","PgC/yr","global",1.84987233845247 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2222,"Simulated","PgC/yr","global",2.35858586457941 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2223,"Simulated","PgC/yr","global",1.75375180781482 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2224,"Simulated","PgC/yr","global",1.91280499238325 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2225,"Simulated","PgC/yr","global",1.57938077057241 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2226,"Simulated","PgC/yr","global",2.33217965556034 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2227,"Simulated","PgC/yr","global",2.08608890433353 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2228,"Simulated","PgC/yr","global",1.75801990030791 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2229,"Simulated","PgC/yr","global",2.04494217693024 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2230,"Simulated","PgC/yr","global",1.78102321418178 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2231,"Simulated","PgC/yr","global",2.19609922956909 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2232,"Simulated","PgC/yr","global",2.18881259539946 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2233,"Simulated","PgC/yr","global",2.17088467712024 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2234,"Simulated","PgC/yr","global",1.93369194991917 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2235,"Simulated","PgC/yr","global",1.9601431877965 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2236,"Simulated","PgC/yr","global",1.96259404422434 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2237,"Simulated","PgC/yr","global",2.35400578642556 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2238,"Simulated","PgC/yr","global",2.24632570460465 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2239,"Simulated","PgC/yr","global",2.11189526463372 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2240,"Simulated","PgC/yr","global",1.7559276665726 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2241,"Simulated","PgC/yr","global",1.88145525799727 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2242,"Simulated","PgC/yr","global",1.96448686444452 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2243,"Simulated","PgC/yr","global",1.53163072192348 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2244,"Simulated","PgC/yr","global",1.99198019875574 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2245,"Simulated","PgC/yr","global",1.69737406910704 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2246,"Simulated","PgC/yr","global",1.68876873265996 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2247,"Simulated","PgC/yr","global",2.17473303632747 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2248,"Simulated","PgC/yr","global",2.08643626981149 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2249,"Simulated","PgC/yr","global",1.8387888066279 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2250,"Simulated","PgC/yr","global",1.81675039685948 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2251,"Simulated","PgC/yr","global",1.85675692924483 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2252,"Simulated","PgC/yr","global",2.24094314786976 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2253,"Simulated","PgC/yr","global",2.0742511391332 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2254,"Simulated","PgC/yr","global",1.80515064133849 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2255,"Simulated","PgC/yr","global",1.58361107098804 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2256,"Simulated","PgC/yr","global",1.9238306299615 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2257,"Simulated","PgC/yr","global",1.86117136552726 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2258,"Simulated","PgC/yr","global",1.81552014412503 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2259,"Simulated","PgC/yr","global",1.56993516346683 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2260,"Simulated","PgC/yr","global",1.93009768212638 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2261,"Simulated","PgC/yr","global",1.29810559522721 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2262,"Simulated","PgC/yr","global",1.48463876626674 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2263,"Simulated","PgC/yr","global",2.00646501755201 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2264,"Simulated","PgC/yr","global",2.22517822296026 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2265,"Simulated","PgC/yr","global",1.99814111146902 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2266,"Simulated","PgC/yr","global",1.86873943006098 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2267,"Simulated","PgC/yr","global",2.22045340919059 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2268,"Simulated","PgC/yr","global",1.96395295083951 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2269,"Simulated","PgC/yr","global",1.68738087892162 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2270,"Simulated","PgC/yr","global",2.01537912331284 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2271,"Simulated","PgC/yr","global",1.6909204688151 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2272,"Simulated","PgC/yr","global",1.61909783172613 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2273,"Simulated","PgC/yr","global",1.95816191803332 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2274,"Simulated","PgC/yr","global",1.74861369345331 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2275,"Simulated","PgC/yr","global",1.79207136618915 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2276,"Simulated","PgC/yr","global",1.87197346698774 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2277,"Simulated","PgC/yr","global",1.9181988063327 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2278,"Simulated","PgC/yr","global",2.0591069691982 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2279,"Simulated","PgC/yr","global",1.99739813530782 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2280,"Simulated","PgC/yr","global",1.66783352991877 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2281,"Simulated","PgC/yr","global",2.00421679098632 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2282,"Simulated","PgC/yr","global",1.64128580163089 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2283,"Simulated","PgC/yr","global",1.61400796256989 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2284,"Simulated","PgC/yr","global",1.76818677323231 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2285,"Simulated","PgC/yr","global",2.12830185077334 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2286,"Simulated","PgC/yr","global",1.78179192111912 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2287,"Simulated","PgC/yr","global",1.55638501511403 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2288,"Simulated","PgC/yr","global",1.83742346731869 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2289,"Simulated","PgC/yr","global",2.10096772563953 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2290,"Simulated","PgC/yr","global",1.58315386725941 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2291,"Simulated","PgC/yr","global",1.91830816213132 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2292,"Simulated","PgC/yr","global",2.01494009194486 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2293,"Simulated","PgC/yr","global",2.140020611134 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2294,"Simulated","PgC/yr","global",1.37885214793542 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2295,"Simulated","PgC/yr","global",1.74672569775365 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2296,"Simulated","PgC/yr","global",1.9201639943608 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2297,"Simulated","PgC/yr","global",1.81896163543446 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2298,"Simulated","PgC/yr","global",1.74522527186968 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2299,"Simulated","PgC/yr","global",1.86749631193846 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2300,"Simulated","PgC/yr","global",1.65794487101144 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",1.77795176795972 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",1.77839562259693 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",1.6701266508539 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",1.70416914556033 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",1.70739640363658 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",1.85557687977002 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",1.78575225173983 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.85169760125008 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",1.82594302308263 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",1.82653577728085 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.78697363181116 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.82161933946501 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.78688785171902 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.84035949142397 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.88575917858663 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.92038277607769 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.88437339431732 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.7846078443929 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.91895662470619 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.92142947668866 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.88525009438204 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.90474272582309 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.8442772104344 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",2.01396949880886 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.9537078372862 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.9905997906898 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.87976548960294 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",2.06232956245627 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.93294070633708 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",2.02706999961898 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.92023149118792 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.98041214327596 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",2.110063752533 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",2.02754211122771 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.99382420472021 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",2.10224996595785 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.97467203308872 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",2.13421795858565 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",2.05931010321287 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",2.05672348939697 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",2.12132424743081 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",2.06959921884265 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",2.12901518957454 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",2.096004533046 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",2.05225475944172 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",2.09784885089876 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",2.11384725092867 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",2.03535195283605 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",2.03864526617042 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",2.03575553211448 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",2.00502139666232 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",2.10821980165389 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",2.07784566735849 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",2.03066707539728 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",2.03096661764418 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",2.07144894955685 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",2.11758322623585 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",2.13352749765147 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",2.06868196818892 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",2.10685319175811 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",2.12464912049962 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",2.00124964142366 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",2.17320890955943 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.9811102189135 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.89194369387156 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.98887317963727 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",2.00488946963291 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",2.05693697632148 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",2.09438186728159 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.9644753948203 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.9152812917957 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.96588016997632 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.99649586468093 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.91114659961102 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.91576551353508 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.86681196174214 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.89368351597572 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.80931517148889 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.80035183993563 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.87188436336188 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.9187889177453 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.80766947812756 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.81941272687013 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.83987132471778 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.86985811831904 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.91146283915927 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.86807095661323 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.78658656634726 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.8669637970924 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.85859377019784 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.85156374760897 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.7637070432895 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.82857743521725 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.78847547149925 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.75680830552615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",1.72962858516476 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",1.61335977120288 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2103,"Simulated","PgC/yr","HL",1.83884627555253 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2104,"Simulated","PgC/yr","HL",1.74545157178699 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2105,"Simulated","PgC/yr","HL",1.80132468709827 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2106,"Simulated","PgC/yr","HL",1.67234574055309 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2107,"Simulated","PgC/yr","HL",1.83680076439274 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2108,"Simulated","PgC/yr","HL",1.6245850366297 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2109,"Simulated","PgC/yr","HL",1.72133397135654 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2110,"Simulated","PgC/yr","HL",1.74616166581178 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2111,"Simulated","PgC/yr","HL",1.7817046240551 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2112,"Simulated","PgC/yr","HL",1.8317929501365 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2113,"Simulated","PgC/yr","HL",1.72944170383033 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2114,"Simulated","PgC/yr","HL",1.64861181108023 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2115,"Simulated","PgC/yr","HL",1.65061548724321 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2116,"Simulated","PgC/yr","HL",1.6881255160273 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2117,"Simulated","PgC/yr","HL",1.57028431169192 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2118,"Simulated","PgC/yr","HL",1.77146275628355 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2119,"Simulated","PgC/yr","HL",1.7787244309929 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2120,"Simulated","PgC/yr","HL",1.62830147058969 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2121,"Simulated","PgC/yr","HL",1.7731529452007 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2122,"Simulated","PgC/yr","HL",1.67682758981655 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2123,"Simulated","PgC/yr","HL",1.74605735355 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2124,"Simulated","PgC/yr","HL",1.63296882503637 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2125,"Simulated","PgC/yr","HL",1.69559388864852 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2126,"Simulated","PgC/yr","HL",1.81939960756192 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2127,"Simulated","PgC/yr","HL",1.59512384104757 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2128,"Simulated","PgC/yr","HL",1.75129415936773 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2129,"Simulated","PgC/yr","HL",1.62048850970527 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2130,"Simulated","PgC/yr","HL",1.44321601348786 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2131,"Simulated","PgC/yr","HL",1.45345017481263 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2132,"Simulated","PgC/yr","HL",1.66197313841651 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2133,"Simulated","PgC/yr","HL",1.88140375174774 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2134,"Simulated","PgC/yr","HL",1.64238913053505 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2135,"Simulated","PgC/yr","HL",1.65252998880773 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2136,"Simulated","PgC/yr","HL",1.58011443502118 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2137,"Simulated","PgC/yr","HL",1.51172219691465 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2138,"Simulated","PgC/yr","HL",1.72698417299801 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2139,"Simulated","PgC/yr","HL",1.73170079365804 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2140,"Simulated","PgC/yr","HL",1.50764906456081 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2141,"Simulated","PgC/yr","HL",1.65225063011193 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2142,"Simulated","PgC/yr","HL",1.62939138234868 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2143,"Simulated","PgC/yr","HL",1.45205393179411 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2144,"Simulated","PgC/yr","HL",1.47345858772751 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2145,"Simulated","PgC/yr","HL",1.59202942743487 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2146,"Simulated","PgC/yr","HL",1.51931992774969 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2147,"Simulated","PgC/yr","HL",1.45790367536115 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2148,"Simulated","PgC/yr","HL",1.51013879733146 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2149,"Simulated","PgC/yr","HL",1.53495906057016 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2150,"Simulated","PgC/yr","HL",1.40180899970492 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2151,"Simulated","PgC/yr","HL",1.52247544247615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2152,"Simulated","PgC/yr","HL",1.69951729575062 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2153,"Simulated","PgC/yr","HL",1.60112386032683 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2154,"Simulated","PgC/yr","HL",1.69970582846651 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2155,"Simulated","PgC/yr","HL",1.40688369491001 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2156,"Simulated","PgC/yr","HL",1.57400157134264 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2157,"Simulated","PgC/yr","HL",1.46652498746681 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2158,"Simulated","PgC/yr","HL",1.57096275423886 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2159,"Simulated","PgC/yr","HL",1.59966651619455 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2160,"Simulated","PgC/yr","HL",1.64500904721025 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2161,"Simulated","PgC/yr","HL",1.44915383073239 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2162,"Simulated","PgC/yr","HL",1.55553389732341 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2163,"Simulated","PgC/yr","HL",1.52899014230826 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2164,"Simulated","PgC/yr","HL",1.42872982015184 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2165,"Simulated","PgC/yr","HL",1.25147356251871 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2166,"Simulated","PgC/yr","HL",1.45066567045262 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2167,"Simulated","PgC/yr","HL",1.4180024462331 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2168,"Simulated","PgC/yr","HL",1.52374645573448 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2169,"Simulated","PgC/yr","HL",1.64891098635346 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2170,"Simulated","PgC/yr","HL",1.52265186506138 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2171,"Simulated","PgC/yr","HL",1.51206568425688 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2172,"Simulated","PgC/yr","HL",1.49383938716004 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2173,"Simulated","PgC/yr","HL",1.5149324824593 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2174,"Simulated","PgC/yr","HL",1.49773224370526 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2175,"Simulated","PgC/yr","HL",1.4322365286673 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2176,"Simulated","PgC/yr","HL",1.39313677000445 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2177,"Simulated","PgC/yr","HL",1.49134167271236 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2178,"Simulated","PgC/yr","HL",1.44082371222294 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2179,"Simulated","PgC/yr","HL",1.51510312520944 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2180,"Simulated","PgC/yr","HL",1.7167321217075 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2181,"Simulated","PgC/yr","HL",1.38563454406344 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2182,"Simulated","PgC/yr","HL",1.56652741888633 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2183,"Simulated","PgC/yr","HL",1.47971319498077 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2184,"Simulated","PgC/yr","HL",1.55718059986231 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2185,"Simulated","PgC/yr","HL",1.60593983910428 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2186,"Simulated","PgC/yr","HL",1.46333066527621 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2187,"Simulated","PgC/yr","HL",1.37765837164541 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2188,"Simulated","PgC/yr","HL",1.4881723964738 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2189,"Simulated","PgC/yr","HL",1.46219919375066 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2190,"Simulated","PgC/yr","HL",1.33171473778082 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2191,"Simulated","PgC/yr","HL",1.3592573033448 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2192,"Simulated","PgC/yr","HL",1.42437265018808 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2193,"Simulated","PgC/yr","HL",1.45760642669961 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2194,"Simulated","PgC/yr","HL",1.38865354458978 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2195,"Simulated","PgC/yr","HL",1.45258815369416 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2196,"Simulated","PgC/yr","HL",1.19015639301735 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2197,"Simulated","PgC/yr","HL",1.46239928613672 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2198,"Simulated","PgC/yr","HL",1.62664843775523 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2199,"Simulated","PgC/yr","HL",1.58103425449051 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2200,"Simulated","PgC/yr","HL",1.46078313415471 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2201,"Simulated","PgC/yr","HL",1.32018396678519 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2202,"Simulated","PgC/yr","HL",1.50161959564564 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2203,"Simulated","PgC/yr","HL",1.47930034961752 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2204,"Simulated","PgC/yr","HL",1.2099740713744 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2205,"Simulated","PgC/yr","HL",1.2817621002088 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2206,"Simulated","PgC/yr","HL",1.36627705067129 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2207,"Simulated","PgC/yr","HL",1.29500562900144 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2208,"Simulated","PgC/yr","HL",1.43147469135698 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2209,"Simulated","PgC/yr","HL",1.52844133320538 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2210,"Simulated","PgC/yr","HL",1.38294664551843 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2211,"Simulated","PgC/yr","HL",1.37105890089871 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2212,"Simulated","PgC/yr","HL",1.54982782394279 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2213,"Simulated","PgC/yr","HL",1.28386128126582 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2214,"Simulated","PgC/yr","HL",1.39849137436582 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2215,"Simulated","PgC/yr","HL",1.45376558867015 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2216,"Simulated","PgC/yr","HL",1.34682625422704 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2217,"Simulated","PgC/yr","HL",1.2678269178176 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2218,"Simulated","PgC/yr","HL",1.36346309667536 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2219,"Simulated","PgC/yr","HL",1.24123802504273 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2220,"Simulated","PgC/yr","HL",1.30802456991646 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2221,"Simulated","PgC/yr","HL",1.19002428250111 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2222,"Simulated","PgC/yr","HL",1.732817953211 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2223,"Simulated","PgC/yr","HL",1.40729598981277 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2224,"Simulated","PgC/yr","HL",1.42548430513619 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2225,"Simulated","PgC/yr","HL",1.34646873014247 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2226,"Simulated","PgC/yr","HL",1.47951805673907 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2227,"Simulated","PgC/yr","HL",1.47266564939982 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2228,"Simulated","PgC/yr","HL",1.27634199104979 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2229,"Simulated","PgC/yr","HL",1.43512809759151 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2230,"Simulated","PgC/yr","HL",1.22671082240063 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2231,"Simulated","PgC/yr","HL",1.51976167228837 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2232,"Simulated","PgC/yr","HL",1.42624559198603 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2233,"Simulated","PgC/yr","HL",1.43334102762912 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2234,"Simulated","PgC/yr","HL",1.38151709964061 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2235,"Simulated","PgC/yr","HL",1.46005239786175 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2236,"Simulated","PgC/yr","HL",1.22864403962162 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2237,"Simulated","PgC/yr","HL",1.4420094041062 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2238,"Simulated","PgC/yr","HL",1.57587754067325 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2239,"Simulated","PgC/yr","HL",1.4747907020996 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2240,"Simulated","PgC/yr","HL",1.35066131242141 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2241,"Simulated","PgC/yr","HL",1.32010470047545 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2242,"Simulated","PgC/yr","HL",1.41180260979803 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2243,"Simulated","PgC/yr","HL",1.31882487984937 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2244,"Simulated","PgC/yr","HL",1.51692432372187 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2245,"Simulated","PgC/yr","HL",1.38693555741816 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2246,"Simulated","PgC/yr","HL",1.21253949246165 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2247,"Simulated","PgC/yr","HL",1.44432491613355 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2248,"Simulated","PgC/yr","HL",1.43328350450851 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2249,"Simulated","PgC/yr","HL",1.28984010781643 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2250,"Simulated","PgC/yr","HL",1.42726669618447 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2251,"Simulated","PgC/yr","HL",1.34958598786526 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2252,"Simulated","PgC/yr","HL",1.27529721705052 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2253,"Simulated","PgC/yr","HL",1.37143899386315 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2254,"Simulated","PgC/yr","HL",1.47260234644412 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2255,"Simulated","PgC/yr","HL",1.19401924946617 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2256,"Simulated","PgC/yr","HL",1.19431347059505 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2257,"Simulated","PgC/yr","HL",1.23382800123285 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2258,"Simulated","PgC/yr","HL",1.39821036428857 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2259,"Simulated","PgC/yr","HL",1.41833740143782 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2260,"Simulated","PgC/yr","HL",1.42183420166456 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2261,"Simulated","PgC/yr","HL",1.16212116531989 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2262,"Simulated","PgC/yr","HL",1.01820547353225 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2263,"Simulated","PgC/yr","HL",1.48715899872214 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2264,"Simulated","PgC/yr","HL",1.49908004620115 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2265,"Simulated","PgC/yr","HL",1.47083234075674 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2266,"Simulated","PgC/yr","HL",1.43744636192129 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2267,"Simulated","PgC/yr","HL",1.36258318559115 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2268,"Simulated","PgC/yr","HL",1.46942508852854 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2269,"Simulated","PgC/yr","HL",1.21141875491554 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2270,"Simulated","PgC/yr","HL",1.44543079124658 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2271,"Simulated","PgC/yr","HL",1.3233111327967 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2272,"Simulated","PgC/yr","HL",1.27935025759669 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2273,"Simulated","PgC/yr","HL",1.35159296679115 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2274,"Simulated","PgC/yr","HL",1.44861107669483 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2275,"Simulated","PgC/yr","HL",1.27969264401794 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2276,"Simulated","PgC/yr","HL",1.21081159700132 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2277,"Simulated","PgC/yr","HL",1.32830518554084 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2278,"Simulated","PgC/yr","HL",1.44468766959273 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2279,"Simulated","PgC/yr","HL",1.40495983551725 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2280,"Simulated","PgC/yr","HL",1.25674312073526 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2281,"Simulated","PgC/yr","HL",1.35117847004644 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2282,"Simulated","PgC/yr","HL",1.18854299333776 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2283,"Simulated","PgC/yr","HL",1.21776776614187 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2284,"Simulated","PgC/yr","HL",1.2150853722017 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2285,"Simulated","PgC/yr","HL",1.44550014926761 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2286,"Simulated","PgC/yr","HL",1.33069500973358 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2287,"Simulated","PgC/yr","HL",1.21840574984321 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2288,"Simulated","PgC/yr","HL",1.39785724388787 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2289,"Simulated","PgC/yr","HL",1.34076595952475 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2290,"Simulated","PgC/yr","HL",1.37272707139649 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2291,"Simulated","PgC/yr","HL",1.4263609134575 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2292,"Simulated","PgC/yr","HL",1.32252177246217 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2293,"Simulated","PgC/yr","HL",1.41877997166723 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2294,"Simulated","PgC/yr","HL",1.34379624449102 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2295,"Simulated","PgC/yr","HL",1.1361372286173 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2296,"Simulated","PgC/yr","HL",1.16749283395628 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2297,"Simulated","PgC/yr","HL",1.31526560235765 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2298,"Simulated","PgC/yr","HL",1.25903028404767 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2299,"Simulated","PgC/yr","HL",1.37422625052558 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2300,"Simulated","PgC/yr","HL",1.24989841984279 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",2.17301432124819 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",2.0958502355267 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.98784761869638 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",2.12897831885367 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",2.25841510773034 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",2.12671720275856 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",2.13318686506173 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",2.35900478273894 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",2.443176595529 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",2.34626673256591 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",2.36553753769007 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",2.59447943007049 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",2.53360568832835 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",2.47601631879588 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",2.44291800453521 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",2.38780213339171 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",2.44658048831826 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",2.44208846950877 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",2.53296054378717 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",2.55268588256534 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",2.60799947362677 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",2.58438327345249 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",2.8083106332628 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",2.73265499500503 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",2.76927805557784 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",2.69787050751172 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",2.62118628136632 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",2.72325685634447 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",2.7384355256392 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",2.77122904020617 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",2.72335149531642 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",2.63623565516418 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",2.83598386842714 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",2.57074193205892 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",2.83789930790169 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",2.81856185561419 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",2.73579896385725 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",2.80644540131796 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",2.81037180786786 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",2.98399922055801 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",2.87689545180401 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",2.77591744599032 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",2.82296190133826 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",2.7977426147283 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",2.71780200818184 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",2.8031930197467 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",2.69007723254451 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",2.89662034626777 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",2.86325411041045 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",2.63001214305097 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",2.75034537372905 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",2.79434049919672 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",2.5697075680838 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",2.7048764573226 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",2.67514560206857 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",2.67803808895777 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",2.58060526791964 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",2.51263849073984 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",2.59610873105708 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",2.57954291213591 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",2.37711681584972 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",2.52457277612292 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",2.23776737221146 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",2.40197931797857 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",2.17502706558122 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",2.43553127726441 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",2.46701184271348 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",2.08586826771523 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.86999188523706 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",2.0271223477415 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.95965853448775 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.93527900213594 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",2.05799509106085 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.845033411193 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.77712217331599 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.73946386013922 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.6447604625973 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.60941747187515 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.67418518521436 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.60814984282832 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.45273443399397 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.5345429383718 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.59796882215565 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.54539531813656 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.45449658499283 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.68171453741471 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.59742853581813 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.37357755365701 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.57318540799397 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.54512299782713 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.53069961861887 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",1.49140889425455 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.64518256129848 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.45330209009991 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.36499824204531 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",1.33144703809399 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",1.43093592412133 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2103,"Simulated","PgC/yr","LL",1.64076518731194 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2104,"Simulated","PgC/yr","LL",1.76288411765327 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2105,"Simulated","PgC/yr","LL",1.29904238750942 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2106,"Simulated","PgC/yr","LL",1.2448773047982 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2107,"Simulated","PgC/yr","LL",1.15807617255127 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2108,"Simulated","PgC/yr","LL",1.3384136660785 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2109,"Simulated","PgC/yr","LL",1.3596794429588 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2110,"Simulated","PgC/yr","LL",1.41598429949639 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2111,"Simulated","PgC/yr","LL",1.06290948836122 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2112,"Simulated","PgC/yr","LL",1.59484529176685 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2113,"Simulated","PgC/yr","LL",1.34400269719666 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2114,"Simulated","PgC/yr","LL",1.19605639152701 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2115,"Simulated","PgC/yr","LL",1.25729073885429 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2116,"Simulated","PgC/yr","LL",1.45254293447796 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2117,"Simulated","PgC/yr","LL",1.15945123682542 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2118,"Simulated","PgC/yr","LL",1.1687658443746 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2119,"Simulated","PgC/yr","LL",1.22293865815676 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2120,"Simulated","PgC/yr","LL",1.14329343183825 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2121,"Simulated","PgC/yr","LL",1.13603089044849 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2122,"Simulated","PgC/yr","LL",1.3562311187273 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2123,"Simulated","PgC/yr","LL",1.19569623025629 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2124,"Simulated","PgC/yr","LL",1.09846255094223 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2125,"Simulated","PgC/yr","LL",0.759534933170419 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2126,"Simulated","PgC/yr","LL",1.09814704327095 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2127,"Simulated","PgC/yr","LL",0.998753729275846 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2128,"Simulated","PgC/yr","LL",1.2266363760735 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2129,"Simulated","PgC/yr","LL",0.755868939303434 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2130,"Simulated","PgC/yr","LL",0.869963417883629 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2131,"Simulated","PgC/yr","LL",1.29527868890097 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2132,"Simulated","PgC/yr","LL",1.15772427552881 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2133,"Simulated","PgC/yr","LL",1.16911467562755 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2134,"Simulated","PgC/yr","LL",0.858395869624721 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2135,"Simulated","PgC/yr","LL",0.819984043619164 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2136,"Simulated","PgC/yr","LL",1.16664286563339 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2137,"Simulated","PgC/yr","LL",1.02618303582234 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2138,"Simulated","PgC/yr","LL",1.14113992869623 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2139,"Simulated","PgC/yr","LL",0.857279529638683 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2140,"Simulated","PgC/yr","LL",0.964209304864905 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2141,"Simulated","PgC/yr","LL",1.10507274989717 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2142,"Simulated","PgC/yr","LL",0.77072085977201 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2143,"Simulated","PgC/yr","LL",0.911236006728631 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2144,"Simulated","PgC/yr","LL",0.99682922578708 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2145,"Simulated","PgC/yr","LL",0.778300375070647 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2146,"Simulated","PgC/yr","LL",0.595727535684815 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2147,"Simulated","PgC/yr","LL",0.719501448386338 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2148,"Simulated","PgC/yr","LL",1.06920351317324 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2149,"Simulated","PgC/yr","LL",0.584949356428572 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2150,"Simulated","PgC/yr","LL",0.767744797339978 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2151,"Simulated","PgC/yr","LL",0.933814199549531 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2152,"Simulated","PgC/yr","LL",0.771069424436308 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2153,"Simulated","PgC/yr","LL",0.802571005957544 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2154,"Simulated","PgC/yr","LL",0.894807081080971 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2155,"Simulated","PgC/yr","LL",0.937302778667691 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2156,"Simulated","PgC/yr","LL",0.760329500651825 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2157,"Simulated","PgC/yr","LL",0.616209675218497 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2158,"Simulated","PgC/yr","LL",1.24492808993667 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2159,"Simulated","PgC/yr","LL",0.901132963237078 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2160,"Simulated","PgC/yr","LL",0.758153204179939 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2161,"Simulated","PgC/yr","LL",0.564135713904408 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2162,"Simulated","PgC/yr","LL",0.95120471046994 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2163,"Simulated","PgC/yr","LL",0.69382616188477 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2164,"Simulated","PgC/yr","LL",0.622609402431591 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2165,"Simulated","PgC/yr","LL",0.706846351715958 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2166,"Simulated","PgC/yr","LL",0.648033962304653 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2167,"Simulated","PgC/yr","LL",0.78224402102013 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2168,"Simulated","PgC/yr","LL",0.608546451082699 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2169,"Simulated","PgC/yr","LL",0.702402052275423 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2170,"Simulated","PgC/yr","LL",0.928337535548773 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2171,"Simulated","PgC/yr","LL",0.842637814323298 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2172,"Simulated","PgC/yr","LL",0.800866971285125 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2173,"Simulated","PgC/yr","LL",0.844122846416964 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2174,"Simulated","PgC/yr","LL",0.794292761798393 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2175,"Simulated","PgC/yr","LL",0.757253600769101 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2176,"Simulated","PgC/yr","LL",1.12350255668279 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2177,"Simulated","PgC/yr","LL",0.791912658300997 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2178,"Simulated","PgC/yr","LL",0.692039484729802 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2179,"Simulated","PgC/yr","LL",1.06701362068004 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2180,"Simulated","PgC/yr","LL",0.630677574731877 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2181,"Simulated","PgC/yr","LL",0.614141880328538 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2182,"Simulated","PgC/yr","LL",0.815265424454299 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2183,"Simulated","PgC/yr","LL",0.654244011690865 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2184,"Simulated","PgC/yr","LL",0.892002968330371 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2185,"Simulated","PgC/yr","LL",0.591432392595847 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2186,"Simulated","PgC/yr","LL",0.909011724299136 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2187,"Simulated","PgC/yr","LL",0.69520709110929 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2188,"Simulated","PgC/yr","LL",0.74563300136817 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2189,"Simulated","PgC/yr","LL",0.585627824551429 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2190,"Simulated","PgC/yr","LL",0.953607607297201 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2191,"Simulated","PgC/yr","LL",0.511857545681828 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2192,"Simulated","PgC/yr","LL",0.663066896468876 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2193,"Simulated","PgC/yr","LL",0.720624053205731 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2194,"Simulated","PgC/yr","LL",0.737937253416659 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2195,"Simulated","PgC/yr","LL",0.628134718861591 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2196,"Simulated","PgC/yr","LL",0.894294964277824 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2197,"Simulated","PgC/yr","LL",0.806386822647731 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2198,"Simulated","PgC/yr","LL",0.647644476282061 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2199,"Simulated","PgC/yr","LL",0.5896118586819 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2200,"Simulated","PgC/yr","LL",0.457771639800664 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2201,"Simulated","PgC/yr","LL",0.8081480405863 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2202,"Simulated","PgC/yr","LL",0.656211569247152 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2203,"Simulated","PgC/yr","LL",0.446321523843571 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2204,"Simulated","PgC/yr","LL",0.367328906548539 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2205,"Simulated","PgC/yr","LL",0.577983394915694 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2206,"Simulated","PgC/yr","LL",0.703353907062324 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2207,"Simulated","PgC/yr","LL",0.622939972361785 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2208,"Simulated","PgC/yr","LL",0.606210867890417 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2209,"Simulated","PgC/yr","LL",0.917745301878264 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2210,"Simulated","PgC/yr","LL",0.646546264324453 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2211,"Simulated","PgC/yr","LL",0.702195579363378 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2212,"Simulated","PgC/yr","LL",0.67088660814421 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2213,"Simulated","PgC/yr","LL",0.989003782455698 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2214,"Simulated","PgC/yr","LL",0.54124401282713 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2215,"Simulated","PgC/yr","LL",0.423606837632139 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2216,"Simulated","PgC/yr","LL",1.02916962850618 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2217,"Simulated","PgC/yr","LL",0.682729542482062 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2218,"Simulated","PgC/yr","LL",0.149642076093814 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2219,"Simulated","PgC/yr","LL",0.556324533065982 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2220,"Simulated","PgC/yr","LL",0.799046837254158 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2221,"Simulated","PgC/yr","LL",0.668702180718396 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2222,"Simulated","PgC/yr","LL",0.639241202044474 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2223,"Simulated","PgC/yr","LL",0.357677597530142 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2224,"Simulated","PgC/yr","LL",0.498451202186216 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2225,"Simulated","PgC/yr","LL",0.243820782734437 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2226,"Simulated","PgC/yr","LL",0.863612076511124 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2227,"Simulated","PgC/yr","LL",0.624732114584147 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2228,"Simulated","PgC/yr","LL",0.491565617152334 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2229,"Simulated","PgC/yr","LL",0.620813927851061 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2230,"Simulated","PgC/yr","LL",0.56365705397726 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2231,"Simulated","PgC/yr","LL",0.687933086407429 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2232,"Simulated","PgC/yr","LL",0.77322772617409 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2233,"Simulated","PgC/yr","LL",0.74830621908996 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2234,"Simulated","PgC/yr","LL",0.562823831141114 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2235,"Simulated","PgC/yr","LL",0.511490852989101 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2236,"Simulated","PgC/yr","LL",0.742999505355734 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2237,"Simulated","PgC/yr","LL",0.922529101968881 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2238,"Simulated","PgC/yr","LL",0.682524935690591 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2239,"Simulated","PgC/yr","LL",0.648389458273938 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2240,"Simulated","PgC/yr","LL",0.415910556503321 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2241,"Simulated","PgC/yr","LL",0.571468234815686 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2242,"Simulated","PgC/yr","LL",0.563586674572767 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2243,"Simulated","PgC/yr","LL",0.223516991009867 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2244,"Simulated","PgC/yr","LL",0.486976959955992 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2245,"Simulated","PgC/yr","LL",0.321552835581951 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2246,"Simulated","PgC/yr","LL",0.485589499309465 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2247,"Simulated","PgC/yr","LL",0.741276276300271 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2248,"Simulated","PgC/yr","LL",0.664062205206279 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2249,"Simulated","PgC/yr","LL",0.558833398882962 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2250,"Simulated","PgC/yr","LL",0.400799111980676 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2251,"Simulated","PgC/yr","LL",0.51762932332188 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2252,"Simulated","PgC/yr","LL",0.974685172588212 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2253,"Simulated","PgC/yr","LL",0.713115850371874 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2254,"Simulated","PgC/yr","LL",0.34434296638229 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2255,"Simulated","PgC/yr","LL",0.398947787077263 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2256,"Simulated","PgC/yr","LL",0.738285151609323 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2257,"Simulated","PgC/yr","LL",0.63662090217038 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2258,"Simulated","PgC/yr","LL",0.428332787984972 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2259,"Simulated","PgC/yr","LL",0.163251293554649 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2260,"Simulated","PgC/yr","LL",0.519328026221232 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2261,"Simulated","PgC/yr","LL",0.145512217969943 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2262,"Simulated","PgC/yr","LL",0.474178705178746 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2263,"Simulated","PgC/yr","LL",0.530900239781574 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2264,"Simulated","PgC/yr","LL",0.737433000978786 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2265,"Simulated","PgC/yr","LL",0.538751942095313 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2266,"Simulated","PgC/yr","LL",0.442621006745972 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2267,"Simulated","PgC/yr","LL",0.867829375713304 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2268,"Simulated","PgC/yr","LL",0.506015788520264 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2269,"Simulated","PgC/yr","LL",0.485314246524848 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2270,"Simulated","PgC/yr","LL",0.58110394839786 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2271,"Simulated","PgC/yr","LL",0.378090157425292 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2272,"Simulated","PgC/yr","LL",0.349906271695397 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2273,"Simulated","PgC/yr","LL",0.616872947788112 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2274,"Simulated","PgC/yr","LL",0.311652532761296 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2275,"Simulated","PgC/yr","LL",0.522241440319719 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2276,"Simulated","PgC/yr","LL",0.670186946223408 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2277,"Simulated","PgC/yr","LL",0.600030143256077 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2278,"Simulated","PgC/yr","LL",0.625491625657632 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2279,"Simulated","PgC/yr","LL",0.603213744954767 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2280,"Simulated","PgC/yr","LL",0.420935619325249 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2281,"Simulated","PgC/yr","LL",0.663257107473064 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2282,"Simulated","PgC/yr","LL",0.461943752226095 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2283,"Simulated","PgC/yr","LL",0.405784053210271 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2284,"Simulated","PgC/yr","LL",0.562351302752994 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2285,"Simulated","PgC/yr","LL",0.693762047313631 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2286,"Simulated","PgC/yr","LL",0.461493883873513 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2287,"Simulated","PgC/yr","LL",0.34762973788984 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2288,"Simulated","PgC/yr","LL",0.450548553531599 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2289,"Simulated","PgC/yr","LL",0.770148360638872 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2290,"Simulated","PgC/yr","LL",0.221594753524655 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2291,"Simulated","PgC/yr","LL",0.503077981559992 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2292,"Simulated","PgC/yr","LL",0.702328340512762 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2293,"Simulated","PgC/yr","LL",0.73190995055234 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2294,"Simulated","PgC/yr","LL",0.0462851619885188 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2295,"Simulated","PgC/yr","LL",0.619074170299089 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2296,"Simulated","PgC/yr","LL",0.7611748532717 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2297,"Simulated","PgC/yr","LL",0.513872689312745 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2298,"Simulated","PgC/yr","LL",0.495930073291181 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2299,"Simulated","PgC/yr","LL",0.503960523297013 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2300,"Simulated","PgC/yr","LL",0.417839192116214 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.99053174981652 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",3.86866655060004 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.86106741527969 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",3.95316683993385 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",4.03974117576758 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",4.00776130311178 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",4.01064144809672 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",4.0436097001284 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",3.89983070290562 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",3.99888245971906 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.17992533723985 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.11195915416614 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.28277505806926 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.34451696345093 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",4.22407098935231 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.15678261322754 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.25727283888926 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.41744054529792 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.55246097244305 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.48390678649565 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.47972180967918 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.45198250683881 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",4.52414382314227 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",4.51220789935443 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.41816218518836 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.62462923787138 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",4.52888633359262 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",4.67153636529791 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",4.87284502913447 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.82200950796362 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",4.58474500294898 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",4.6039005329296 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",4.64094524852015 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",4.68426555841717 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",4.76658756437799 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",4.76277890940068 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",4.92938685092045 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",4.78038692272736 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",4.91033288507255 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",4.79726741613488 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",4.72742122750956 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",4.81879527043681 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",4.67429677151585 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",4.92979845293203 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",5.00544929901681 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",4.81136184501723 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",4.96344718465299 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",4.86288051861769 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",4.88065477639321 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",4.75143205758266 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",4.73685065541128 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",4.64118151876576 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",4.85194526881126 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",4.66670993080105 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",4.65645248794356 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",4.73020355019825 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",4.4733360984709 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",4.54147814785865 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",4.59168076411819 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",4.41249383748599 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",4.41765543362085 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.15548579961702 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.23645326077609 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",4.20368225698114 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",4.30748668065819 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",4.05889937848854 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.03746186280993 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",4.23309309162698 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",4.06959568530904 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",3.90520718736341 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",3.84135809350167 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",3.79020023984642 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",3.41464654625699 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",3.95854332439164 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",3.8449930203572 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",3.44977544157544 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",3.46020875074697 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",3.50005022182402 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",3.6321937112726 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",3.4369179569201 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",3.44232223787739 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",3.48676777145542 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.24212222673176 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.30049273745492 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",3.3691848368036 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.37594847349524 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.51725785864853 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.31679538440201 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.32888739622541 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.25606324031889 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.31358435416359 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",3.24016684990271 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",3.19287752060828 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.09330244123725 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.22282397241725 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",1.83718991853409 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",1.90736129707852 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",1.88640370108082 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",1.85944773251904 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",1.80972992659842 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",1.88793023050709 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",1.84569786666806 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.8974743977114 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",1.89159580416121 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",1.83647637517173 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.8660158016858 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.88892932181456 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.90664905971787 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.90961993374858 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.95614279305954 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.94206213563282 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.91660890860903 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.94065398593289 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.98803964594438 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",2.0970196115616 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.99581567340624 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.99345712760543 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.93697525897585 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",2.02039499871496 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.92796645918643 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.97914745345043 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",2.04526434968894 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",2.04227780363772 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",2.10441391338105 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",2.12104108756886 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",2.05314131242574 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",2.07568383478328 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",2.04970018449392 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",2.06260133580565 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",2.0214353223621 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",2.03245452521101 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",2.09748156302327 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",2.10327871803832 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",2.25345874642936 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",2.17316398892263 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",2.11938209225495 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",2.25574238370357 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",2.20126476126828 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",2.15792397512156 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",2.2658296610472 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",2.13916643228869 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",2.27386912771095 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",2.23859747312393 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",2.22301752573515 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",2.18725966536901 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",2.1873127450099 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",2.17506021011841 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",2.26291578466251 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",2.20955609969022 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",2.18921642907259 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",2.2514176523297 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",2.10447548203305 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",2.17467671204512 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",2.22273160464669 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",2.13996953005395 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",2.24536414783632 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",2.03434860083256 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",2.08148602723349 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",2.15454852041854 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",2.16280982080116 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",2.10770214582707 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",2.1136105908449 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",2.11580952457969 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",2.11251541512598 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",2.05471868263283 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",2.01782441420809 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",2.07630409230926 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.94537480896796 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.98453825536227 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",2.07517635983345 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.98094348565796 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",2.12468847048488 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.96694622576894 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",2.06263855685436 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.96361041754637 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.96397535173823 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",2.00219539846938 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.88384281830094 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.9184740656213 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.95977636967178 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.96960552510619 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.96482126770239 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.97411514900773 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.95251173516488 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.92417476308155 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.93141868813278 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.93779878633927 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.97011458591523 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.84569142994535 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.81811623000177 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",2.15334159370502 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.96130427093644 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.97466392623089 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",2.09371956488949 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",2.23001090627635 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",2.11983169864903 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",2.16494326027265 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",2.14613489895443 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",2.00823471547471 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",2.16240600244655 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",2.31390985923425 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",2.22302969652561 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",2.37612606870364 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",2.4348969026763 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",2.26792768722961 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",2.21472072872292 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",2.34066358827713 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",2.47678592622966 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",2.56442104649428 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",2.3868866894597 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",2.48390613358304 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",2.45852517133965 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",2.58716811448307 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",2.49181267023141 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",2.49019632668062 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",2.64548224204703 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",2.48362240196875 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",2.62925879487582 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",2.76843069610421 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",2.70096787871267 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",2.53160393314037 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",2.52821724552031 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",2.59124537749405 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",2.62166423062451 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",2.74515190712752 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",2.73032373112955 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",2.83190538545535 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",2.67710882990271 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",2.65687342653065 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",2.62410396949764 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",2.608038494205 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",2.56305357484157 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",2.47303210843372 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",2.77187518907648 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",2.73961936127992 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",2.67219537496468 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",2.68957845927798 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",2.62428312196328 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",2.65763769271409 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",2.56417217459621 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",2.54953771271748 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",2.46612150063988 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",2.58902935857185 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",2.45715416958909 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",2.46723612903444 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",2.47878528539663 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",2.36886068607638 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",2.36680175650828 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",2.36894893852251 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",2.27252431588604 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",2.17229115893704 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",2.12113783485168 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",2.15496676250042 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",2.04913398784477 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",2.14467652728222 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.95119671828172 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",1.92385125658757 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",2.11728340926716 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.95708050886489 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.85048832191033 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.82353381855252 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.71389603968218 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.46927173184094 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.97400512172056 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.76981631964499 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.46883223465924 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.33551972221267 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.53310384359889 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.56955563394647 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.47330786921204 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.47834673087601 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.48457161716345 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.3582787484079 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.38201870054182 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.40940864146882 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.40634266323798 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.55243598318486 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.34268030506016 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.37637597151525 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.33188853119062 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.38216533198106 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",1.3023678673306 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.2227627930127 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.24761110761751 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.40470756604239 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.80047087499666 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.76726914489605 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",2.74392302150729 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",2.70383649171107 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",2.7670356267065 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",2.91464646121289 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",2.9286632481511 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",2.90493666098035 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.9745296379168 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",3.00115071152476 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.85262403007012 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",2.88367511460069 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",3.09992662747544 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",3.11469978552515 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",2.9130072774336 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",3.06843014971506 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",3.04206651567215 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",3.13240160340566 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",3.07650418350766 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",3.14784683819601 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",3.09977740365675 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",3.30282545636077 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",3.25559213085139 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",3.25028728105283 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",3.25773708085583 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",3.27504248737069 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",3.43950536137027 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",3.32347529899514 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",3.37489144788014 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",3.46415463016799 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",3.5262203476093 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",3.34160200606931 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",3.37648848447399 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",3.53297870574863 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",3.53012522738372 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",3.35045633234893 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",3.52814772700788 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",3.58674598411275 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",3.4357702094507 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",3.44317900118138 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",3.39904748069702 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",3.44199432353687 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",3.44230530141856 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",3.53284884685298 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",3.49313708527314 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",3.34620857952548 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",3.48717952365698 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",3.44100671246207 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",3.45648042508041 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",3.51503197854737 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",3.32119821186881 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",3.51340190767304 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",3.23792904281694 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",3.38170448344921 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",3.42394963260732 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",3.36493559921375 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",3.38637712546632 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",3.31439201097845 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",3.19579324851833 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",3.32572732563283 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",3.09385971099978 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",3.1047872231573 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",3.19793819852277 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",3.02908062610729 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",3.09872258490789 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",3.00617078304339 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",2.99103652613473 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",3.03960033576795 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",2.87087376136123 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",2.83105150580878 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",2.7822815167009 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",2.8256008495309 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",2.67363062911533 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",2.53889405108808 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",2.66154805625441 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",2.49098067504622 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",2.40641519526412 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",2.57174151700845 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",2.47067484457401 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",2.48640827498365 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",2.44650742062594 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",2.54296182403861 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",2.44603127134189 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",2.59813476799247 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",2.40130741203527 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",2.32828798283469 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",2.49503705686556 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",2.52668389755775 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",2.49745653313186 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",2.52344995541085 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",2.32687889990559 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",2.57969252658413 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",2.46166218157075 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",2.67454419783735 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",2.29902986235457 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",2.29010263283528 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",2.29410319811176 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.833370838899343 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.762614183522361 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.766854874937112 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.806499169684548 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.814811367393991 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.879534717991576 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.784419320072381 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.911845331382907 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.813504012356596 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.831292619265624 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.836654970580966 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.788006248865255 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.851319780197804 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.856289125032043 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.801251026835564 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.91342161246627 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",0.834259486295547 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",0.956903039353146 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.854995897122379 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.900166792320827 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.810707692097597 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.959562854112862 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.971199352204464 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.928632273873881 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.900401847301512 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.902986941469974 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.03925057751773 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",0.940764583086943 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",0.934279040013788 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.972476070097382 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.01029456124032 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.950923860195659 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.99523963865047 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.989009405114627 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.04149287608076 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.951558389499059 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.995975951356078 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.02369899277463 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.02340062102869 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.04580113941972 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.05467229480952 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.01773172806222 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.971323602845956 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.05063295751653 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.04575518370301 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.931538036821207 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.03677781954569 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.05239152960953 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",0.972840481910305 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.10135836700873 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.93042080228593 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.07395973890893 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",0.966476125764194 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.02652731182897 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",0.97062320368193 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.02146758741852 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.06585246965477 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.04824257942186 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.955930820635062 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.00113967185139 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.990139745539486 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.974178644298536 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.09321331194305 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",0.938975884468536 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.05307116359786 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.0330423006021 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.89493311701229 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.984889049595129 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.905348214277393 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",0.982111962654608 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",0.898668295543164 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.04757843421213 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.006396665431 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.865540351219719 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.933786462813134 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.911893159369563 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",0.829901012080916 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",0.906377452125476 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.873934928806535 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.90153133669458 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.911419985693745 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.914749732679367 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.891435546557476 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.973395354638063 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.82948655959868 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.832537678775915 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.887027712498965 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.866560738337176 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.908663153309851 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.921872358151295 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.773663639884504 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.907363457558575 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.897305623439351 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.01066561110121 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",0.793986449260891 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",0.774081836906621 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",0.85070465441924 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.96710066771351 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",2.00465549378989 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.97706781156923 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.89733744307079 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.95222407329719 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",2.03511114002464 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",2.14424395310806 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",1.99309159159119 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",2.16102541821753 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",2.16985797225552 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",2.01596941804412 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",2.09566975043295 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",2.24860683820454 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",2.25841023681756 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",2.11175554048765 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",2.15500850722851 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",2.20780714338384 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",2.17549894742107 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",2.22150845389844 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",2.24768056334053 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",2.28906935347223 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",2.34326321536414 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",2.28439244053439 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",2.3216546567688 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",2.3573356171684 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",2.37205524868936 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",2.4002552799833 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",2.38271128525252 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",2.44061315332075 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",2.49167841527972 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",2.51592530698668 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",2.39067763664571 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",2.3812492049494 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",2.54396934429201 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",2.48863217242152 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",2.39889881051718 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",2.53217193556379 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",2.56304711842627 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",2.41237049012931 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",2.39737859580836 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",2.34437552032636 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",2.42426285172016 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",2.47098159794697 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",2.48221607184675 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",2.44738193595671 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",2.41467067478115 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",2.45040201833236 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",2.38861483415044 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",2.48364036478618 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",2.41367463863031 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",2.39077743404215 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",2.43944174504608 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",2.27145269073434 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",2.35517689290374 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",2.45332617893861 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",2.34346862359758 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",2.32052394257811 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",2.26614889512179 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",2.23986245468185 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",2.32458850644267 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",2.10371942780763 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",2.13060852825324 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",2.10472515302609 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",2.0901043499948 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",2.04565090777642 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.97312823667691 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",2.09610382066211 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",2.05471115490336 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.96552522531929 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.84893958142628 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.88361384770067 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.7780223888306 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.66723371409175 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.67335429810425 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.72776228839045 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.57908742146278 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.57651400510419 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.66536469294878 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.59673993375085 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.5848776082696 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.53508839651555 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.62821196317843 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.55459636525192 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.62474037025191 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.57182158965816 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.49574981309121 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.60800928829405 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.66012290736898 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.58879296049289 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.6015776852111 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.55321470421 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",1.67232919475056 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.56435616306068 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.66387935888338 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.50504356674768 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",1.5160203114489 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",1.44339881185971 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp45/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp45/summary.csv deleted file mode 100644 index 8d780b946..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp45/summary.csv +++ /dev/null @@ -1,889 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,valuemean,value,model -2005,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.009831095,4.594013876,4.607917144,4.60096551,4.60096551,CMIP5 -2005,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.10114963,1.64770411,1.790751289,1.719227699,1.719227699,CMIP5 -2005,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.091317954,2.81716632,2.946309408,2.881737864,2.881737864,CMIP5 -2006,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.582597526,1.115717979,12.04839938,3.87086367,3.397751289,CMIP5 -2006,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.751954601,-0.443188241,7.324135065,1.148267923,0.786702869,CMIP5 -2006,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.694080543,1.225282434,7.804068456,2.761248131,2.173014321,CMIP5 -2007,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.801949455,1.257507216,13.25071174,3.950896517,3.528088508,CMIP5 -2007,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.812598991,-0.500753069,7.537547691,1.163668804,0.753399283,CMIP5 -2007,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.743857002,1.339022155,7.426429804,2.788139219,2.095850236,CMIP5 -2008,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.737206195,1.199104271,12.6908699,3.834057152,3.348832621,CMIP5 -2008,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.68844467,-0.652876592,7.00327163,1.121473726,0.762169488,CMIP5 -2008,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.829970912,1.300896964,7.967795279,2.789072062,1.987847619,CMIP5 -2009,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,5.903476705,-17.02022657,12.44681761,2.737511534,3.5992859,CMIP5 -2009,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.992795253,-2.542135443,7.45757811,1.012888014,0.783421783,CMIP5 -2009,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.831628311,1.130507854,8.299433506,2.81150239,2.128978319,CMIP5 -2010,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.393315033,1.371033736,13.42718712,4.652076939,3.997553856,CMIP5 -2010,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.820205107,-0.487676104,7.770068093,1.314008536,0.868929146,CMIP5 -2010,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.838971237,1.266503691,8.032663584,2.909398063,2.258415108,CMIP5 -2011,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.983620248,1.309808733,14.2070045,4.197037751,3.973879639,CMIP5 -2011,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.991696844,-0.623134252,8.405547427,1.297041645,0.874897899,CMIP5 -2011,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.796791843,1.283448472,7.704914656,2.875168298,2.126717203,CMIP5 -2012,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.1217471,1.376522142,14.56179291,4.241167765,3.592296187,CMIP5 -2012,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.055461017,-0.375335528,8.720582283,1.317667054,0.893414189,CMIP5 -2012,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.899891282,1.361419656,8.299139362,2.937036152,2.16494326,CMIP5 -2013,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.855312726,1.428460607,13.64349056,4.204044411,3.734940915,CMIP5 -2013,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.921586539,-0.277237803,8.166204842,1.297051743,0.936270217,CMIP5 -2013,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.716526665,1.442658361,7.720589624,2.899166419,2.359004783,CMIP5 -2014,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.828125977,1.313953187,13.22899128,4.247944663,3.740655222,CMIP5 -2014,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.810275821,-0.301440087,7.732141281,1.291117988,0.91729282,CMIP5 -2014,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.851534369,1.242102037,8.331338162,2.994993027,2.443176596,CMIP5 -2015,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.963126546,1.636151412,13.71281068,4.339822182,3.682113293,CMIP5 -2015,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.762147978,-0.139512415,7.564825102,1.291983208,0.931935227,CMIP5 -2015,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.995396488,1.528049973,8.755563061,3.073632728,2.346266733,CMIP5 -2016,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.079946148,1.23656055,14.43770341,4.307891824,3.939450557,CMIP5 -2016,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.011872421,-0.364338413,8.562435006,1.343744534,0.937435157,CMIP5 -2016,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.840156481,1.225171487,8.004037182,3.022566492,2.365537538,CMIP5 -2017,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.902979054,1.615378471,13.872323,4.374329412,3.854485298,CMIP5 -2017,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.953081077,-0.52280961,8.323672731,1.357751628,0.994462781,CMIP5 -2017,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.806008616,1.459884398,8.154965427,3.048926496,2.59447943,CMIP5 -2018,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.890938926,1.472903827,13.69025463,4.327202081,3.958908236,CMIP5 -2018,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.809660454,-0.458633008,7.696416817,1.293940986,0.972409633,CMIP5 -2018,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.860447926,1.43603978,8.231146798,3.087029262,2.533605688,CMIP5 -2019,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.170243568,1.573588249,14.96112357,4.466468399,4.130473066,CMIP5 -2019,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.890705018,-0.327497479,8.083577157,1.347653246,1.037615918,CMIP5 -2019,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.007012317,1.424899177,8.349026811,3.14280488,2.476016319,CMIP5 -2020,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.22388284,1.817352455,15.10350635,4.521976399,3.993734486,CMIP5 -2020,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.94203962,-0.150888039,8.329722111,1.36935301,0.995707009,CMIP5 -2020,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.034493956,1.549962476,8.627520576,3.1923826,2.442918005,CMIP5 -2021,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.463693716,1.517815138,16.06557298,4.572472679,4.068382862,CMIP5 -2021,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.058819768,-0.131106567,8.810802124,1.414290889,1.078525597,CMIP5 -2021,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.139450048,1.496513854,8.845902975,3.220867046,2.387802133,CMIP5 -2022,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,6.980527496,-20.75534823,14.0857387,2.936639095,4.080709905,CMIP5 -2022,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.121542309,-3.100011986,7.78610164,1.126567818,1.038901473,CMIP5 -2022,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.922302473,1.469130051,8.364655125,3.114671185,2.446580488,CMIP5 -2023,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,4.085088443,1.5552193,15.45862678,5.274105877,4.176716554,CMIP5 -2023,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.016729675,-0.413510027,8.588591428,1.495365198,1.047905207,CMIP5 -2023,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.889866855,1.554508458,8.428838042,3.161477033,2.476785926,CMIP5 -2024,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.092653138,1.60634496,14.81443639,4.701423315,4.410668472,CMIP5 -2024,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.036401815,-0.290293156,8.766220144,1.455059627,1.051665282,CMIP5 -2024,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.881972498,1.472667955,8.357938176,3.182715372,2.564421046,CMIP5 -2025,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.071611404,1.627780467,14.62881277,4.575802674,4.010448304,CMIP5 -2025,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.003369298,-0.242400695,8.601955548,1.454175321,1.070310492,CMIP5 -2025,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.865448159,1.49767046,8.306478546,3.140245581,2.552685883,CMIP5 -2026,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.979692364,1.727533694,14.22543224,4.640513083,4.383988044,CMIP5 -2026,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.905176432,-0.275138131,8.18720358,1.404489702,1.023629532,CMIP5 -2026,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.929476063,1.608754052,8.628698669,3.215835673,2.607999474,CMIP5 -2027,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.186471669,1.499842056,15.0360847,4.641704291,4.306867821,CMIP5 -2027,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.868465376,-0.284233246,8.062717127,1.423149704,1.105304332,CMIP5 -2027,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.073962668,1.392057771,8.773511528,3.263585277,2.584383273,CMIP5 -2028,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.185929714,1.727033432,15.15899126,4.677688652,4.042258355,CMIP5 -2028,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.956751575,-0.261946002,8.394971627,1.415515737,1.064019414,CMIP5 -2028,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.980553177,1.601261057,8.581448654,3.295916934,2.808310633,CMIP5 -2029,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.304072716,1.827849916,15.55425443,4.814896333,4.471278922,CMIP5 -2029,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.95345773,-0.241489714,8.388944893,1.446475884,1.060614488,CMIP5 -2029,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.159258716,1.528263504,9.116252122,3.410089104,2.732654995,CMIP5 -2030,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.23250307,2.00951905,15.28442539,4.795716207,4.383395766,CMIP5 -2030,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.922970963,-0.235219948,8.296307565,1.436348486,1.064517957,CMIP5 -2030,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.09396177,1.676972673,9.044118786,3.42064621,2.769278056,CMIP5 -2031,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.242564739,1.959687476,15.72644463,4.864524318,4.297213756,CMIP5 -2031,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.081208614,-0.352722096,8.95232422,1.499074303,1.085952087,CMIP5 -2031,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.953942655,1.635538052,8.508491866,3.359274642,2.697870508,CMIP5 -2032,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.258587064,1.713590697,15.45051836,4.835397278,4.312749035,CMIP5 -2032,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.015392673,-0.266025541,8.695679897,1.487786447,1.107067523,CMIP5 -2032,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.077215875,1.478047941,9.123970033,3.390050896,2.621186281,CMIP5 -2033,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.650977789,-2.125169655,15.32970877,4.52318736,4.638173059,CMIP5 -2033,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.121225693,-0.317414641,8.968442691,1.452867335,1.064137937,CMIP5 -2033,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.003883409,1.694873352,8.969113611,3.403491515,2.723256856,CMIP5 -2034,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.438164944,1.891114573,16.14207243,5.233371729,4.76635582,CMIP5 -2034,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.906138781,-0.203363831,8.303528889,1.51191411,1.132747421,CMIP5 -2034,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.212303083,1.600873157,9.140113242,3.543582896,2.768430696,CMIP5 -2035,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.394611603,1.702649274,16.22756805,5.067597889,4.737533937,CMIP5 -2035,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.936122393,-0.243703803,8.383707947,1.506856493,1.124565728,CMIP5 -2035,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.22721751,1.46922624,9.230589512,3.535973706,2.77122904,CMIP5 -2036,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.505473745,1.997546539,16.83925952,5.031087739,4.349136934,CMIP5 -2036,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.063486236,-0.224335744,8.930999942,1.528768666,1.125590352,CMIP5 -2036,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.168729975,1.708569058,8.914487051,3.496868023,2.723351495,CMIP5 -2037,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.289164984,1.943941284,15.60356688,4.91154024,4.426709761,CMIP5 -2037,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.074691219,-0.333339866,8.90520586,1.509257251,1.105394572,CMIP5 -2037,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.1038926,1.636873343,9.279391606,3.438723048,2.636235655,CMIP5 -2038,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.199715873,1.764818501,15.25408333,4.955229679,4.547247721,CMIP5 -2038,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.817710171,-0.25910746,7.856197454,1.483710419,1.13056705,CMIP5 -2038,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.13757376,1.539433537,8.968374553,3.512666679,2.835983868,CMIP5 -2039,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.477273933,1.867951312,16.58554194,5.055361303,4.425255286,CMIP5 -2039,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.238669234,-0.165089905,9.655688529,1.597464616,1.120257881,CMIP5 -2039,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.073511888,1.727186207,9.018883288,3.474749126,2.621664231,CMIP5 -2040,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.269088785,2.174915993,15.75848187,5.122088091,4.642998137,CMIP5 -2040,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.938736719,-0.083613006,8.503883119,1.561524341,1.108335329,CMIP5 -2040,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.114220225,1.649551851,9.067204624,3.549106004,2.837899308,CMIP5 -2041,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.185666783,2.00491696,15.20014633,5.043674759,4.508416306,CMIP5 -2041,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.811633824,-0.047178272,7.93777775,1.511380199,1.084980367,CMIP5 -2041,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.147366843,1.656561213,9.281780221,3.556867661,2.818561856,CMIP5 -2042,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.566234026,1.978528537,16.90212065,5.172022903,4.599819918,CMIP5 -2042,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.953719281,0.058879528,8.55900693,1.551213407,1.124112588,CMIP5 -2042,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.297562977,1.66873371,9.293763124,3.647147943,2.831905385,CMIP5 -2043,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.793168546,1.812891919,17.84583798,5.261632257,4.564317387,CMIP5 -2043,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.144720834,-0.09720835,9.282982159,1.589506437,1.086722867,CMIP5 -2043,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.41308914,1.641906253,9.711467739,3.684816429,2.806445401,CMIP5 -2044,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.441290397,1.863522947,16.25468462,5.098228736,4.495498932,CMIP5 -2044,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.048526243,-0.032888946,8.895946373,1.58262616,1.126802981,CMIP5 -2044,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.206519316,1.570287748,9.425227046,3.53190224,2.810371808,CMIP5 -2045,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.409304527,2.083554623,16.14993208,5.173838541,4.559819188,CMIP5 -2045,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.018842704,0.068545558,8.825049448,1.597904458,1.161054825,CMIP5 -2045,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.191525606,1.726771708,9.487549897,3.58424892,2.983999221,CMIP5 -2046,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.680474348,2.021462606,17.41954443,5.20171873,4.565401919,CMIP5 -2046,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.219772594,0.039739992,9.673992362,1.656116999,1.152684511,CMIP5 -2046,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.238866428,1.660804002,9.354806041,3.563696196,2.876895452,CMIP5 -2047,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.435119961,2.035220618,16.51330046,5.150385965,4.679216983,CMIP5 -2047,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.000071658,0.067291537,8.766256944,1.602086015,1.156158138,CMIP5 -2047,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.1619609,1.590967026,8.883335298,3.53818961,2.775917446,CMIP5 -2048,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.575180786,2.101121704,16.98177356,5.159717868,4.51275119,CMIP5 -2048,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.150460165,0.065675534,9.360907916,1.622232465,1.130148486,CMIP5 -2048,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.193802686,1.705479749,9.265478278,3.556520566,2.822961901,CMIP5 -2049,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.67687026,2.01104879,17.32908651,5.190101123,4.575502447,CMIP5 -2049,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.224216808,0.273711221,9.708236328,1.641376422,1.150809434,CMIP5 -2049,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.218026568,1.638179925,9.146563356,3.57369453,2.797742615,CMIP5 -2050,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.335358924,2.133085396,15.92509828,5.085077728,4.504156488,CMIP5 -2050,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.888049306,0.149912028,8.273573558,1.556765276,1.163276466,CMIP5 -2050,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.155927309,1.783571302,9.075622905,3.578972575,2.739619361,CMIP5 -2051,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.314831392,2.005155027,16.01039541,5.179947526,4.704436869,CMIP5 -2051,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.947628555,0.042606367,8.543763171,1.578478941,1.173331605,CMIP5 -2051,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.120756415,1.718977216,8.95270281,3.589446141,2.80319302,CMIP5 -2052,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.638410825,1.92122842,17.30393886,5.21314823,4.584872933,CMIP5 -2052,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.06632702,0.154786351,8.998587684,1.612713631,1.175119533,CMIP5 -2052,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.264118325,1.690298294,9.071505839,3.649727728,2.690077233,CMIP5 -2053,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.594118719,1.890496886,17.17981734,5.224564116,4.658855064,CMIP5 -2053,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.113286191,0.05089614,9.241092253,1.64135913,1.208583873,CMIP5 -2053,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.222699035,1.547156313,8.969546198,3.577383958,2.896620346,CMIP5 -2054,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.313921744,1.928084102,15.86070364,5.086636163,4.715498501,CMIP5 -2054,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.92058788,-0.039086097,8.386671776,1.565040742,1.223555015,CMIP5 -2054,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.153410636,1.671637822,9.038610652,3.546356258,2.86325411,CMIP5 -2055,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.378572028,1.983378345,16.22369426,5.05192914,4.503914326,CMIP5 -2055,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.885857375,-0.118756764,8.230588139,1.563665141,1.193028324,CMIP5 -2055,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.202023195,1.6644147,8.92877171,3.531986496,2.630012143,CMIP5 -2056,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.692707362,1.794214931,17.04130515,5.077812016,4.48315248,CMIP5 -2056,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.286520034,0.023813766,9.588576358,1.628263042,1.101225255,CMIP5 -2056,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.183181355,1.593803938,8.764255762,3.458205123,2.649941543,CMIP5 -2057,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.605740494,1.977074399,16.81382373,5.105675405,4.573006629,CMIP5 -2057,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.276980142,0.035138139,9.602399065,1.649660939,1.113649846,CMIP5 -2057,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.114862127,1.647655182,8.54371024,3.433282559,2.630231,CMIP5 -2058,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,8.903993249,-26.88366142,15.81093338,2.861804567,4.390834924,CMIP5 -2058,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.617157709,-4.015334828,9.144859832,1.278868571,1.122254623,CMIP5 -2058,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.06689742,1.538773853,8.660736078,3.337420326,2.579368463,CMIP5 -2059,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,5.567680123,1.756204663,22.20918751,6.202331175,4.666709931,CMIP5 -2059,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.063340058,0.082879712,8.630365273,1.779310285,1.217141917,CMIP5 -2059,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.137276168,1.493833448,8.626798587,3.39689203,2.581015313,CMIP5 -2060,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.467155899,2.026558524,15.88058005,5.208556546,4.656452488,CMIP5 -2060,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.087426158,-0.012652739,8.869005825,1.643358235,1.194234894,CMIP5 -2060,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.135643808,1.647868243,8.684336621,3.372804512,2.571190866,CMIP5 -2061,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.428262996,1.837288945,15.80330424,5.015222463,4.73020355,CMIP5 -2061,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.108961146,0.097493259,8.952386497,1.637193981,1.155828257,CMIP5 -2061,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.141028069,1.529544536,8.880744708,3.335166536,2.578411687,CMIP5 -2062,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.362029295,1.710344624,15.56516669,4.893891728,4.387525016,CMIP5 -2062,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.938804372,0.000370455,8.169196978,1.548256978,1.14632198,CMIP5 -2062,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.167628174,1.59365109,8.553338853,3.328118154,2.474732977,CMIP5 -2063,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.525712915,1.932489947,16.44213148,5.0160044,4.541478148,CMIP5 -2063,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.100813532,-0.022876983,8.859851077,1.622311646,1.202729019,CMIP5 -2063,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.156287646,1.635264858,8.274141304,3.342453516,2.439720124,CMIP5 -2064,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.614897005,1.646008667,16.7621838,4.940772878,4.541805518,CMIP5 -2064,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.152846384,-0.155372689,9.034343287,1.607427804,1.1423589,CMIP5 -2064,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.182125587,1.430566241,8.168629937,3.303128069,2.482528835,CMIP5 -2065,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.381284741,1.827504076,15.87991735,4.800545319,4.088076402,CMIP5 -2065,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.189016957,-0.141573269,9.200326167,1.615095458,1.176408838,CMIP5 -2065,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.976088254,1.448147712,7.919203695,3.178080255,2.462581606,CMIP5 -2066,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.353214092,1.816154078,15.58102043,4.763516731,4.018724327,CMIP5 -2066,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.065825219,-0.056946343,8.681078725,1.583927117,1.10031965,CMIP5 -2066,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.062645015,1.404915456,8.060696578,3.172154061,2.397345357,CMIP5 -2067,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.571081627,1.871659042,16.41149329,4.751580174,4.1554858,CMIP5 -2067,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.155196495,0.000367044,9.090842857,1.59556306,1.134136646,CMIP5 -2067,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.146349986,1.220793763,8.160607831,3.121496219,2.327590652,CMIP5 -2068,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.399871035,1.727285975,15.24892894,4.713804141,4.12607053,CMIP5 -2068,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.584609248,-4.690956201,8.529037445,1.224035304,1.145713192,CMIP5 -2068,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.0158014,1.409412606,7.932157215,3.074761236,2.209847914,CMIP5 -2069,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,6.35278511,1.713629303,25.72923758,6.072571548,4.203682257,CMIP5 -2069,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.259246312,-0.089304541,9.255515085,1.817405799,1.150610971,CMIP5 -2069,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.929703333,1.436656894,7.910010323,3.003958625,2.246041834,CMIP5 -2070,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,4.107291451,-4.221224035,15.79819788,4.061219458,3.678840157,CMIP5 -2070,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.143474087,-0.630480634,8.791060253,1.49941829,1.127301036,CMIP5 -2070,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.020487628,1.324921398,7.604919957,3.008781802,2.159851796,CMIP5 -2071,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.653562312,1.676526263,14.66474302,5.05617553,4.058899378,CMIP5 -2071,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.103562304,-0.072599885,8.895114123,1.646104649,1.20073548,CMIP5 -2071,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.865059823,1.345574931,7.753879847,2.945035135,2.310204519,CMIP5 -2072,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.172837617,1.322794797,14.77279469,4.524792929,4.037461863,CMIP5 -2072,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.002420464,-0.153411222,8.3765121,1.509155998,1.10228044,CMIP5 -2072,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.890044013,1.145797528,7.31701738,2.939636208,2.281557832,CMIP5 -2073,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.227978529,1.358719245,15.00511515,4.517492554,4.129118427,CMIP5 -2073,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.286347258,-0.12527274,9.565822535,1.612809116,1.081343139,CMIP5 -2073,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.74866499,1.13477284,7.135501584,2.803637341,2.101575838,CMIP5 -2074,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.16608977,1.332114471,14.77537669,4.353173267,3.872362504,CMIP5 -2074,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.141526868,-0.280974603,8.910824961,1.536881812,1.065099229,CMIP5 -2074,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.754080066,1.081282632,6.919745429,2.729560472,1.984503779,CMIP5 -2075,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,8.332835172,-25.49310019,14.88484182,2.302516486,3.77184348,CMIP5 -2075,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.416339676,-3.80764106,8.317835659,1.179843268,1.096045049,CMIP5 -2075,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.874703784,1.034710378,6.681073171,2.75905522,1.958002354,CMIP5 -2076,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,5.530168743,1.310072215,21.97550472,5.432495832,3.841358094,CMIP5 -2076,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.272946967,-0.362556545,9.284550412,1.700236121,1.19268482,CMIP5 -2076,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.708338007,1.214872634,6.946462267,2.671980849,1.921636191,CMIP5 -2077,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.005919717,1.267860872,13.65016085,4.37766065,3.79020024,CMIP5 -2077,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.927730472,-0.190000182,8.125339678,1.510719085,1.047578434,CMIP5 -2077,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.728652437,1.103672491,6.755333977,2.656905871,1.947310716,CMIP5 -2078,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.711763179,1.454353111,12.61131624,4.152922447,3.732481367,CMIP5 -2078,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.900836771,-0.155526601,7.987022027,1.470251362,1.113686655,CMIP5 -2078,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.633412143,1.077776009,6.742768856,2.568952802,2.023832959,CMIP5 -2079,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.813757248,1.228914422,13.11565555,4.067050259,3.74330152,CMIP5 -2079,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.821826774,-0.257555831,7.672134372,1.440529124,1.071361731,CMIP5 -2079,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.692957902,0.961550216,6.559121797,2.551680885,1.909519266,CMIP5 -2080,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.014421125,1.0596653,13.96298742,4.009992304,3.679853179,CMIP5 -2080,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.144340048,-0.127276363,8.929859137,1.494361896,1.056397017,CMIP5 -2080,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.600478598,0.979849019,6.288894594,2.460856405,1.824427789,CMIP5 -2081,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.638207947,1.035693256,12.30511034,3.862014214,3.553216554,CMIP5 -2081,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.927115052,-0.245149623,8.00286025,1.409344347,1.069447538,CMIP5 -2081,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.552218505,0.906059676,6.139487135,2.384073691,1.690689888,CMIP5 -2082,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.146954906,-2.48677988,12.56147554,3.382091326,3.295508616,CMIP5 -2082,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.03493355,-0.371424625,8.245047771,1.368512206,1.099882004,CMIP5 -2082,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.558851317,0.981838283,6.289647116,2.316112064,1.636163834,CMIP5 -2083,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.874863804,1.242491471,12.82713625,4.038860842,3.45604148,CMIP5 -2083,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.925349156,-0.390414944,8.010741146,1.414998689,1.070777346,CMIP5 -2083,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.576980473,0.980718803,6.188359967,2.379766952,1.637391082,CMIP5 -2084,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.958441526,1.024165512,13.66458674,3.860098074,3.473564069,CMIP5 -2084,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.053026694,-0.426884829,8.49099174,1.42648943,1.03523972,CMIP5 -2084,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.624456376,0.794220673,6.070609105,2.361332045,1.635462559,CMIP5 -2085,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.63085771,1.054555389,12.321209,3.721272366,3.436917957,CMIP5 -2085,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.027650283,-0.363973716,8.387767288,1.409715709,1.082105297,CMIP5 -2085,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.48047977,0.843529433,6.103902931,2.275554899,1.606283923,CMIP5 -2086,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.665315837,1.067645848,12.49511679,3.782954597,3.357898986,CMIP5 -2086,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.93522829,-0.473351162,8.010460899,1.405587295,1.100482267,CMIP5 -2086,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.52428088,0.893553944,6.07311606,2.280027453,1.609815664,CMIP5 -2087,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.853213037,1.085016846,13.29230221,3.760802048,3.329665356,CMIP5 -2087,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.983172569,-0.244660518,8.214226221,1.394183921,1.066658099,CMIP5 -2087,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.555807431,0.943177888,5.704157782,2.339828471,1.715501029,CMIP5 -2088,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.860242327,1.106512352,13.36574585,3.674305315,3.242122227,CMIP5 -2088,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.017615913,-0.468214916,8.314914292,1.369391487,0.994455758,CMIP5 -2088,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.486874488,0.961531505,5.521626421,2.266315841,1.606283314,CMIP5 -2089,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.765672454,1.147546712,12.92423565,3.609325079,3.175199133,CMIP5 -2089,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.062278424,-0.536408626,8.481709607,1.3903839,1.045691748,CMIP5 -2089,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.445151122,0.996064672,5.61655278,2.192292314,1.585067844,CMIP5 -2090,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.69156403,1.024126906,12.47104163,3.607089546,3.311145094,CMIP5 -2090,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.879145412,-0.397542171,7.769773691,1.346754927,1.03833035,CMIP5 -2090,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.556006024,0.775452257,5.844793077,2.209977373,1.584920762,CMIP5 -2091,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.781395727,0.903462081,12.84389442,3.665407136,3.375948473,CMIP5 -2091,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.976369283,-0.460716846,8.087800683,1.349697374,1.045617995,CMIP5 -2091,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.57647085,0.828043429,6.162580749,2.280957925,1.588732175,CMIP5 -2092,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.751854009,1.204842325,12.8324219,3.655626787,3.433112189,CMIP5 -2092,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.910472587,-0.481338779,7.864384075,1.35489392,1.053727477,CMIP5 -2092,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.545347174,0.925836632,5.899518064,2.263599766,1.602718912,CMIP5 -2093,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.865945258,0.833999965,13.14999467,3.657044657,3.147513976,CMIP5 -2093,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.119300216,-0.281627104,8.758523249,1.415781127,1.068825397,CMIP5 -2093,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.549238401,0.701633663,6.032905775,2.200575587,1.670798738,CMIP5 -2094,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.65548516,0.801902924,12.35500706,3.590490213,3.31735981,CMIP5 -2094,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.96569783,-0.483133508,8.076774789,1.363589533,1.051667899,CMIP5 -2094,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.475790031,0.663320602,5.951280561,2.191857921,1.653142249,CMIP5 -2095,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.476973324,1.016414988,11.60842749,3.48770361,3.004174402,CMIP5 -2095,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.867785941,-0.485313544,7.678823509,1.328602926,0.985511401,CMIP5 -2095,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.418182485,0.827367472,5.768443678,2.137948429,1.573350342,CMIP5 -2096,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.821603613,0.976652677,13.15441272,3.555841652,3.189373599,CMIP5 -2096,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.071493369,-0.64279611,8.447111794,1.367769697,1.077586522,CMIP5 -2096,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.432167989,0.841049606,5.466449124,2.158282226,1.675108993,CMIP5 -2097,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.137209609,-2.918527207,12.4239334,3.113935378,2.82838373,CMIP5 -2097,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.984063499,-0.435910264,8.004275641,1.283891783,0.988850536,CMIP5 -2097,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.424425678,0.808467159,5.482041405,2.145401231,1.679701642,CMIP5 -2098,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.864097505,1.095773768,12.78097886,3.81591844,3.192877521,CMIP5 -2098,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.202859748,-0.264910287,9.137545092,1.461349735,0.976641275,CMIP5 -2098,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.407376721,0.904635028,5.858731818,2.133967116,1.629284738,CMIP5 -2099,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.657074656,1.179728525,12.6587174,3.740317508,3.229251538,CMIP5 -2099,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.954574566,-0.442511888,8.067829519,1.40502308,1.156865052,CMIP5 -2099,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.433871842,0.927579487,5.892709894,2.279603062,1.76771793,CMIP5 -2100,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,8.986746578,-29.73173807,12.41757205,1.290094423,3.076921847,CMIP5 -2100,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.493888178,-4.44072262,8.225571994,1.018217869,1.011962714,CMIP5 -2100,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.381832843,0.803827982,5.455225762,2.105365645,1.535607236,CMIP5 -2101,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.221649725,2.033326728,5.384990493,3.38650207,3.379644062,CMIP5 -2101,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.754763505,-0.44974701,1.729628585,0.944929781,1.135877295,CMIP5 -2101,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.769245907,1.011921107,5.834737566,2.443613072,1.988063908,CMIP5 -2102,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.073796506,2.033471205,4.990574387,3.267181283,3.287503774,CMIP5 -2102,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.670436996,-0.324516247,1.613359771,0.941706226,1.114592368,CMIP5 -2102,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.569548677,0.987681988,5.315090947,2.327323525,1.900902845,CMIP5 -2103,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.021590443,2.105187653,4.983808397,3.558349059,3.529733659,CMIP5 -2103,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.828086664,-0.357840154,1.838846276,1.020652697,1.145083462,CMIP5 -2103,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.65704134,1.043735251,5.341648291,2.54022139,2.290307903,CMIP5 -2104,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.008432874,2.142465989,4.980366355,3.609312386,3.682474415,CMIP5 -2104,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.899928077,-0.595350047,1.745451572,0.935284554,1.220251649,CMIP5 -2104,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.705102985,1.168641059,5.575716467,2.67635294,2.412300699,CMIP5 -2105,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.087951486,2.127393437,5.098130566,3.572568294,3.747906496,CMIP5 -2105,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.945200321,-0.647184331,1.801324687,0.961732984,1.334334282,CMIP5 -2105,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.854525501,1.144157492,5.745315263,2.61341552,2.413571894,CMIP5 -2106,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.213339281,2.071810179,5.323665423,3.570870003,3.632680607,CMIP5 -2106,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.811991092,-0.41134832,1.672345741,0.981021023,1.176510138,CMIP5 -2106,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.886823357,1.00336925,5.73501359,2.592231183,2.456170861,CMIP5 -2107,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.977237133,2.006970116,4.521628779,3.417724686,3.520363051,CMIP5 -2107,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.886100349,-0.483145202,1.836800764,1.00418106,1.204802451,CMIP5 -2107,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.609801988,0.990169959,5.004774359,2.416233175,2.315560522,CMIP5 -2108,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.06522339,2.088108486,4.946436692,3.505820693,3.71999546,CMIP5 -2108,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.860272999,-0.544017355,1.624585037,0.947405654,1.225730303,CMIP5 -2108,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.761209771,1.040514899,5.490453617,2.560684349,2.439774737,CMIP5 -2109,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.059032072,1.732460488,4.667002865,3.305033498,3.491713734,CMIP5 -2109,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.858499501,-0.552884626,1.721333971,0.882209453,1.049624392,CMIP5 -2109,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.699630044,0.815700193,5.219887703,2.425248876,2.288888276,CMIP5 -2110,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.928980686,1.905742655,4.396921991,3.328472213,3.357794509,CMIP5 -2110,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.938056232,-0.679347368,1.746161666,0.91058325,1.047066583,CMIP5 -2110,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.613415674,0.891430457,5.076269246,2.420336029,2.310728207,CMIP5 -2111,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.888055081,1.747543359,4.029430025,3.139774882,3.523415024,CMIP5 -2111,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.997724869,-0.789429485,1.781704624,0.913774963,1.156654016,CMIP5 -2111,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.602439078,0.753389997,4.818859206,2.228629537,2.141228009,CMIP5 -2112,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.976059496,1.813270919,4.453171734,3.40161998,3.514682303,CMIP5 -2112,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.902965766,-0.544867524,1.83179295,0.963434715,1.120515311,CMIP5 -2112,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.571657634,0.82184495,4.998039488,2.440714045,2.394166515,CMIP5 -2113,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.999393519,1.954294731,4.691576232,3.399256742,3.609254859,CMIP5 -2113,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.869430306,-0.510852211,1.729441704,0.956082428,1.198035236,CMIP5 -2113,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.65147217,1.010237016,5.202428717,2.445618688,2.260205208,CMIP5 -2114,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.241907719,1.894934449,5.286591742,3.364062389,3.281109048,CMIP5 -2114,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.709526742,-0.208895456,1.648611811,0.975789631,1.047054445,CMIP5 -2114,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.835108275,0.865282606,5.495487347,2.390632166,2.162280104,CMIP5 -2115,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.171402333,1.855269961,5.057112379,3.360560559,3.283073679,CMIP5 -2115,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.822105781,-0.458146692,1.650615487,0.94253321,1.078077396,CMIP5 -2115,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.848970505,0.777192682,5.515259088,2.420368542,2.244524606,CMIP5 -2116,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.402856632,1.695247511,5.596805642,3.464838986,3.248919689,CMIP5 -2116,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.724794907,-0.218944339,1.688125516,0.982891905,1.11213788,CMIP5 -2116,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.963614401,0.722798195,5.815750019,2.48428386,2.136782634,CMIP5 -2117,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.8601637,1.967428319,4.194036991,3.150449458,3.19001012,CMIP5 -2117,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.912994313,-0.710621505,1.570284312,0.865889599,1.075051031,CMIP5 -2117,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.569900188,0.981216162,4.904658286,2.286800511,2.114960464,CMIP5 -2118,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.848381815,1.928049343,4.144599474,3.23168105,3.501838068,CMIP5 -2118,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.978218473,-0.788798928,1.771462756,0.878644314,1.062989164,CMIP5 -2118,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.595481775,0.899102103,4.933398477,2.355612457,2.337947245,CMIP5 -2119,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.849177065,1.788687009,4.118996669,3.106735962,3.221600205,CMIP5 -2119,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.952407512,-0.720663638,1.778724431,0.887486056,1.032522218,CMIP5 -2119,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.574622893,0.793186423,4.839659788,2.221818952,2.064231942,CMIP5 -2120,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.90234162,1.801244984,4.216368212,3.11526664,3.27691413,CMIP5 -2120,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.998060265,-0.905870248,1.628301471,0.821492915,1.073460401,CMIP5 -2120,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.696112022,0.822633372,5.122238,2.296116842,2.188966306,CMIP5 -2121,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.718840741,1.774250842,3.606526126,2.965275364,3.131583985,CMIP5 -2121,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.029087876,-0.928602469,1.773152945,0.807877974,0.966993263,CMIP5 -2121,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.448592639,0.855676332,4.535128883,2.159987155,2.108509343,CMIP5 -2122,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.893332723,1.669468804,4.141497792,2.998258396,3.02130291,CMIP5 -2122,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.947681001,-0.74990412,1.67682759,0.862085513,0.98790484,CMIP5 -2122,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.615830976,0.682433257,4.891401424,2.13852396,1.861650241,CMIP5 -2123,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.914931252,1.815772882,4.380238751,3.106272456,3.132797978,CMIP5 -2123,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.830816079,-0.42637851,1.746057354,0.942046167,1.027255427,CMIP5 -2123,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.555330205,0.87899466,4.80661696,2.166749874,1.846898297,CMIP5 -2124,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.703497385,1.627443389,3.436704079,2.800849151,3.096448691,CMIP5 -2124,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.979071973,-0.862069072,1.632968825,0.812604696,1.05430111,CMIP5 -2124,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.248773905,0.743833387,3.958517725,1.990610943,2.0697506,CMIP5 -2125,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.918874249,1.560405222,3.990145392,2.869036594,3.040250289,CMIP5 -2125,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.983284581,-0.864632435,1.695593889,0.819952366,1.051794336,CMIP5 -2125,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.706233311,0.597755766,4.854778044,2.051674118,1.988456323,CMIP5 -2126,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.773271372,1.674542676,3.595604506,2.981963104,3.334963401,CMIP5 -2126,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.009496765,-0.839328475,1.819399608,0.877759087,1.139729774,CMIP5 -2126,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.456990864,0.682875198,4.434933157,2.106884703,2.057636194,CMIP5 -2127,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.797189528,1.865159711,3.966014884,2.989987386,3.229715117,CMIP5 -2127,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.839280693,-0.571246657,1.595123841,0.876018317,1.051385782,CMIP5 -2127,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.486165006,0.818425657,4.537261948,2.116306885,1.971619975,CMIP5 -2128,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.747539888,1.608224597,3.505694158,2.898796752,3.150360725,CMIP5 -2128,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.947453558,-0.7718497,1.751294159,0.813277292,0.942837804,CMIP5 -2128,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.369910897,0.690209253,4.277543419,2.08804125,2.038292979,CMIP5 -2129,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.867155226,1.770391259,3.988165619,2.916357636,3.080404742,CMIP5 -2129,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.917211718,-0.737856945,1.62048851,0.834697644,1.001232906,CMIP5 -2129,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.618142787,0.755868939,4.726022767,2.08412493,2.068696346,CMIP5 -2130,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.883309659,1.740795396,4.047104823,2.868800792,3.070235617,CMIP5 -2130,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.892581925,-0.7958466,1.443216013,0.770818909,1.080739066,CMIP5 -2130,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.647975767,0.759867032,4.842951127,2.100108907,1.925178245,CMIP5 -2131,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.632434715,1.738964216,3.34455096,2.800905903,3.044785002,CMIP5 -2131,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.903536782,-0.841654975,1.453450175,0.73247725,1.004902598,CMIP5 -2131,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.310707626,0.734061023,4.186206621,2.070424909,2.002880954,CMIP5 -2132,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.879194544,1.68552861,4.094178755,3.008259742,3.110227895,CMIP5 -2132,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.842395246,-0.564659857,1.661973138,0.863688673,1.006084449,CMIP5 -2132,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.536516748,0.67944373,4.658838577,2.146966189,2.107333298,CMIP5 -2133,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.774693956,1.629143853,3.696945622,2.937524528,3.139629394,CMIP5 -2133,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.91829465,-0.579451276,1.881403752,0.932332328,1.064511656,CMIP5 -2133,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.383121849,0.67735567,4.276397471,2.007953074,1.841779265,CMIP5 -2134,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.913823583,1.673021087,4.148346226,2.882804805,2.875625989,CMIP5 -2134,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.898644381,-0.684382865,1.642389131,0.841684341,0.980300655,CMIP5 -2134,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.655813015,0.723553862,4.832729579,2.043586366,1.895324206,CMIP5 -2135,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.670869065,1.770613707,3.474671765,2.767992057,2.940702831,CMIP5 -2135,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.922770754,-0.738483106,1.652529989,0.826319861,0.957488376,CMIP5 -2135,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.383487703,0.819984044,4.213154639,1.944169042,1.87272308,CMIP5 -2136,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.702477548,1.678545587,3.560162996,2.757199481,2.735485449,CMIP5 -2136,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.970288647,-0.912851157,1.580114435,0.740273339,0.962858115,CMIP5 -2136,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.457071155,0.715687043,4.473014455,2.019180478,1.852038895,CMIP5 -2137,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.635286448,1.706461627,3.410439425,2.69393994,2.880605525,CMIP5 -2137,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.911795952,-0.830358364,1.511722197,0.745906457,0.974333617,CMIP5 -2137,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.379649346,0.732128135,4.240797716,1.950221279,1.78015171,CMIP5 -2138,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.604229207,1.635233645,3.167251605,2.686146647,2.855572589,CMIP5 -2138,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.096007434,-1.138253416,1.726984173,0.746547505,1.002312101,CMIP5 -2138,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.259675876,0.652256632,3.936178625,1.942109761,1.816033138,CMIP5 -2139,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.816594279,1.546653597,3.481643866,2.85421225,3.21690795,CMIP5 -2139,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.965232111,-0.801726378,1.731700794,0.840467636,1.088531666,CMIP5 -2139,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.46497163,0.609019367,4.28337035,2.016361683,1.970710347,CMIP5 -2140,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.854630337,1.65913072,3.971330859,2.830094806,2.902977909,CMIP5 -2140,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.858358258,-0.710254102,1.507649065,0.777356198,1.057993547,CMIP5 -2140,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.57782866,0.708373761,4.68158542,2.054941417,1.82234217,CMIP5 -2141,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.876744693,1.534765258,3.976574418,2.861997539,2.987509535,CMIP5 -2141,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.898587184,-0.730344338,1.65225063,0.783860838,0.979468926,CMIP5 -2141,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.572640554,0.672960029,4.706918586,2.080533694,1.831386426,CMIP5 -2142,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.684059833,1.65860212,3.256521821,2.709221262,3.01001166,CMIP5 -2142,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.963662014,-0.895729423,1.629391382,0.757290099,1.067871401,CMIP5 -2142,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.380946891,0.751215752,4.128961403,1.954406066,1.942141459,CMIP5 -2143,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.905619146,1.747497493,4.145877915,2.884030395,2.960940688,CMIP5 -2143,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.909333146,-0.816637722,1.452053932,0.76646733,1.15160902,CMIP5 -2143,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.672230795,0.885616721,4.962516067,2.119690146,1.777509097,CMIP5 -2144,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.148288979,1.597869312,4.733789302,2.966650715,2.93454946,CMIP5 -2144,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.817664232,-0.613724684,1.473458588,0.80381653,1.122832567,CMIP5 -2144,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.85997335,0.686179996,5.347513626,2.16496779,1.811717167,CMIP5 -2145,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.799728281,1.765139659,3.929675401,2.766843393,2.839862609,CMIP5 -2145,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.936142225,-0.83195097,1.592029427,0.788661813,1.089782432,CMIP5 -2145,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.634312378,0.778300375,4.761625841,1.980590588,1.723145873,CMIP5 -2146,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.735728081,1.752401662,3.424873277,2.701665917,2.966967408,CMIP5 -2146,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.876463508,-0.712452882,1.519319928,0.807671142,1.150439081,CMIP5 -2146,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.40511149,0.595727536,4.137326297,1.89634503,1.804786493,CMIP5 -2147,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.788552423,1.701276531,3.728297791,2.699738965,2.848172131,CMIP5 -2147,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.910659894,-0.849896831,1.457903675,0.743001799,1.023996924,CMIP5 -2147,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.574075379,0.719501448,4.578194602,1.958940955,1.824174111,CMIP5 -2148,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.709718693,1.527846447,3.482587517,2.621705499,2.635625983,CMIP5 -2148,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.023313732,-1.090864212,1.510138797,0.694323817,0.982117414,CMIP5 -2148,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.559379075,0.545729442,4.573451508,1.929551974,1.703306613,CMIP5 -2149,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.978949877,1.350304521,3.954775742,2.651414704,2.919169121,CMIP5 -2149,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.807243262,-0.620945276,1.534959061,0.748052896,0.943078357,CMIP5 -2149,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.665139568,0.41976941,4.575721119,1.905742012,1.972179452,CMIP5 -2150,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.952416379,1.647647144,4.181213028,2.727172336,2.763425817,CMIP5 -2150,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.803004256,-0.655264298,1.401809,0.743499038,0.968617609,CMIP5 -2150,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.686037496,0.679029809,4.836477022,1.985766074,1.81652284,CMIP5 -2151,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.689985938,1.4655244,3.353943464,2.541632562,2.643609612,CMIP5 -2151,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.843465327,-0.720077119,1.522475442,0.70978683,0.89043447,CMIP5 -2151,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.361628372,0.575090495,4.074020407,1.83408393,1.79178149,CMIP5 -2152,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.81423384,1.450039059,3.490109988,2.720945869,2.8996541,CMIP5 -2152,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.862979828,-0.597163924,1.699517296,0.848179008,1.069581204,CMIP5 -2152,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.403755614,0.568379447,4.08727395,1.875359152,1.830072098,CMIP5 -2153,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.766538375,1.588116013,3.705993866,2.654323689,2.787185181,CMIP5 -2153,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.960931362,-0.915436249,1.60112386,0.731865287,1.005237084,CMIP5 -2153,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.587082453,0.709425955,4.621430055,1.924874591,1.708997809,CMIP5 -2154,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.755887411,1.532623339,3.488073394,2.726649745,2.800616334,CMIP5 -2154,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.895263809,-0.683466845,1.699705828,0.820183726,1.046645891,CMIP5 -2154,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.393241047,0.656977303,4.1715402,1.909016094,1.753971703,CMIP5 -2155,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.985314399,1.422997905,4.121085068,2.718565549,2.697121081,CMIP5 -2155,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.823032378,-0.679074345,1.406883695,0.756390384,0.987866219,CMIP5 -2155,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.684398536,0.487503673,4.80015945,1.964217463,1.709254078,CMIP5 -2156,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.771891478,1.323855031,3.345739715,2.542035815,2.813936282,CMIP5 -2156,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.045840459,-1.126766468,1.574001571,0.683473822,1.024223684,CMIP5 -2156,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.582422656,0.454364672,4.472506199,1.860946836,1.78971231,CMIP5 -2157,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.861418521,1.517387966,3.776200065,2.615022041,2.808295692,CMIP5 -2157,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.8770229,-0.770495699,1.466524987,0.750908467,1.075209653,CMIP5 -2157,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.602133627,0.616209675,4.546695982,1.866368394,1.696616984,CMIP5 -2158,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.591958619,1.504989373,2.965391476,2.546504399,2.793265959,CMIP5 -2158,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.001214678,-1.065745115,1.570962754,0.647828759,0.87776292,CMIP5 -2158,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.283151829,0.651936046,4.031136276,1.900886961,1.660932198,CMIP5 -2159,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.697115082,1.428235745,3.306761463,2.549400886,2.66257015,CMIP5 -2159,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.91183182,-0.841618649,1.599666516,0.700329337,0.903601011,CMIP5 -2159,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.409773966,0.524635216,4.148379925,1.851451252,1.77004305,CMIP5 -2160,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.690596245,1.507677092,3.365055597,2.574089922,2.749325886,CMIP5 -2160,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.968297836,-0.924799058,1.645009047,0.71117117,0.873022467,CMIP5 -2160,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.468983354,0.634654454,4.289854886,1.865424213,1.75437133,CMIP5 -2161,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.835335095,1.487004362,3.683180793,2.513619798,2.557006783,CMIP5 -2161,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.937038528,-0.964699457,1.449153831,0.646621114,0.868949141,CMIP5 -2161,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.659438939,0.564135714,4.647880248,1.869242056,1.740309534,CMIP5 -2162,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.626003608,1.442702872,3.131897443,2.464817047,2.517063929,CMIP5 -2162,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.964670823,-1.013927832,1.555533897,0.610155858,0.864506825,CMIP5 -2162,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.387551186,0.57819587,4.145825368,1.856948876,1.780179621,CMIP5 -2163,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.709189074,1.441644525,3.195955982,2.514087813,2.681300554,CMIP5 -2163,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.953868025,-0.927817487,1.528990142,0.702531015,0.872652214,CMIP5 -2163,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.42666178,0.568992792,4.123773584,1.813889393,1.83574807,CMIP5 -2164,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.630951763,1.369005033,2.894476866,2.338244888,2.660431718,CMIP5 -2164,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.952602372,-0.994378915,1.42872982,0.66670469,0.968780032,CMIP5 -2164,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.270740009,0.505002081,3.654810366,1.673728787,1.660524959,CMIP5 -2165,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.586096507,1.700348901,2.915181168,2.458646237,2.835222764,CMIP5 -2165,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.006536114,-1.172764433,1.251473563,0.613896913,0.963650407,CMIP5 -2165,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.343690808,0.706846352,4.007987379,1.846610094,1.802425523,CMIP5 -2166,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.543050633,1.39029236,2.649563739,2.268070544,2.574557234,CMIP5 -2166,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.040719601,-1.217629585,1.45066567,0.588585239,0.900166967,CMIP5 -2166,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.320609044,0.490124883,3.792187036,1.681701766,1.622944799,CMIP5 -2167,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.736016933,1.396603454,3.276751239,2.503911749,2.6972848,CMIP5 -2167,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.975738317,-1.096799888,1.418002446,0.597010198,0.887850706,CMIP5 -2167,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.5130068,0.583781485,4.373551719,1.909016576,1.734108339,CMIP5 -2168,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.804777917,1.387384487,3.591604851,2.461537263,2.5661071,CMIP5 -2168,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.904087285,-0.87454494,1.523746456,0.654884778,0.822712246,CMIP5 -2168,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.587757618,0.564672225,4.466149675,1.809006017,1.627105994,CMIP5 -2169,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.822928216,1.30971011,3.589307556,2.528376169,2.67239948,CMIP5 -2169,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.82908976,-0.613928787,1.648910986,0.738331237,0.830667182,CMIP5 -2169,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.474439981,0.502181543,4.203236528,1.79257629,1.65392033,CMIP5 -2170,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.683405056,1.556507801,3.453246316,2.57095829,2.636481648,CMIP5 -2170,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.925310899,-0.89924538,1.522651865,0.671437689,0.876308735,CMIP5 -2170,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.457801798,0.680198817,4.352491794,1.901760969,1.668549215,CMIP5 -2171,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.720161739,1.323082197,3.297353918,2.431723461,2.468026937,CMIP5 -2171,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.882575023,-0.807373439,1.512065684,0.684203379,0.832426158,CMIP5 -2171,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.411885206,0.490656488,4.104727246,1.749772517,1.625450397,CMIP5 -2172,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.581605559,1.382315203,2.780287351,2.364305778,2.684483811,CMIP5 -2172,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.016880565,-1.151630955,1.493839387,0.595290736,0.835468657,CMIP5 -2172,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.299286691,0.546846275,3.842548036,1.771251305,1.749706477,CMIP5 -2173,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.595812826,1.524353789,3.136390649,2.46164287,2.615446818,CMIP5 -2173,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.988944923,-1.065190029,1.514932482,0.627968406,0.813646096,CMIP5 -2173,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.407855361,0.710707912,4.201580427,1.835931301,1.551600599,CMIP5 -2174,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.547561735,1.51235996,2.967409141,2.382637299,2.49096616,CMIP5 -2174,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.948521264,-0.961994358,1.497732244,0.65359777,0.840045939,CMIP5 -2174,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.182259255,0.672314026,3.623645527,1.731284655,1.73219901,CMIP5 -2175,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.722213715,1.444693435,3.259262497,2.478898525,2.46928881,CMIP5 -2175,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.964574718,-1.020581977,1.432236529,0.63683824,0.843594018,CMIP5 -2175,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.472908195,0.601099889,4.279844796,1.844208134,1.710343854,CMIP5 -2176,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.57549798,1.382443626,2.868601509,2.38032531,2.547075514,CMIP5 -2176,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.933046498,-0.989267201,1.39313677,0.628010237,0.835901145,CMIP5 -2176,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.139341632,0.555883939,3.585907018,1.754270085,1.711174824,CMIP5 -2177,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.532006621,1.41042961,2.818721208,2.295578062,2.481307899,CMIP5 -2177,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.013827137,-1.124021892,1.491341673,0.612566836,0.828037251,CMIP5 -2177,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.194291684,0.58239228,3.605329808,1.685246194,1.697011537,CMIP5 -2178,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.648186333,1.46002054,3.034456269,2.438390022,2.678653245,CMIP5 -2178,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.92880638,-0.953806492,1.440823712,0.657704071,0.934916927,CMIP5 -2178,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.368399756,0.603333266,3.988262576,1.782870858,1.668754738,CMIP5 -2179,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.594059001,1.515154316,3.09782963,2.51688348,2.683214215,CMIP5 -2179,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.955301505,-0.983008326,1.515103125,0.654704237,0.860385986,CMIP5 -2179,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.323091279,0.680295341,4.080837775,1.864358475,1.637031967,CMIP5 -2180,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.630586989,1.337084936,2.853242793,2.406629301,2.749753718,CMIP5 -2180,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.129627629,-1.254296338,1.716732122,0.671907117,0.986582349,CMIP5 -2180,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.4025117,0.527973831,4.013303684,1.737392222,1.751835284,CMIP5 -2181,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.53576871,1.318735294,2.673985703,2.140663535,2.175763233,CMIP5 -2181,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.028266765,-1.216632869,1.385634544,0.585898372,0.923164027,CMIP5 -2181,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.174338291,0.452132648,3.392396467,1.556884257,1.574928666,CMIP5 -2182,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.603226446,1.26102617,2.836001527,2.294489527,2.472365496,CMIP5 -2182,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.129355749,-1.378022714,1.566527419,0.569927371,0.927133707,CMIP5 -2182,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.471550466,0.464584484,4.2140237,1.726915769,1.534809923,CMIP5 -2183,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.586469925,1.235510044,2.753635099,2.202656341,2.390178715,CMIP5 -2183,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.084176567,-1.302102291,1.479713195,0.571935801,0.802563837,CMIP5 -2183,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.287212477,0.440515707,3.692280998,1.632983772,1.669125185,CMIP5 -2184,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.692310133,1.374132797,3.183781545,2.484480258,2.503371752,CMIP5 -2184,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.011648741,-1.089571418,1.5571806,0.653033008,0.929400479,CMIP5 -2184,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.48039997,0.491184228,4.273353149,1.833758168,1.518163873,CMIP5 -2185,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.576694171,1.336685906,2.770155955,2.293349257,2.549240932,CMIP5 -2185,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.04974494,-1.180110837,1.605939839,0.60834768,0.883376472,CMIP5 -2185,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.385628624,0.522374592,3.950267093,1.68749934,1.665864737,CMIP5 -2186,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.550791625,1.306259877,2.639016207,2.274922557,2.511534545,CMIP5 -2186,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.098508508,-1.364367507,1.463330665,0.546129555,0.89129321,CMIP5 -2186,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.325195841,0.492858656,3.920563491,1.730940251,1.584543818,CMIP5 -2187,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.545237302,1.309742215,2.649058681,2.143907687,2.077777816,CMIP5 -2187,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.077102369,-1.358496106,1.377658372,0.528078487,0.875216422,CMIP5 -2187,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.175934344,0.461152533,3.436273879,1.617906396,1.723055798,CMIP5 -2188,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.722964827,1.383355203,3.360504458,2.440405277,2.527265489,CMIP5 -2188,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.065042618,-1.285770847,1.488172396,0.555757443,0.857829832,CMIP5 -2188,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.640857279,0.547972287,4.646275352,1.886894032,1.644093312,CMIP5 -2189,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.676020651,1.245364247,2.998752943,2.284199304,2.488454769,CMIP5 -2189,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.973025063,-1.116905633,1.462199194,0.543850288,0.802327146,CMIP5 -2189,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.475138737,0.430123621,4.115658551,1.742606894,1.732064532,CMIP5 -2190,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.557482964,1.171563211,2.498220775,2.153568045,2.332379393,CMIP5 -2190,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.93930645,-1.118715363,1.331714738,0.494926609,0.807587592,CMIP5 -2190,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.227503799,0.345450962,3.608620199,1.660551473,1.690633998,CMIP5 -2191,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.652917948,1.192823019,2.880826071,2.137023722,2.187935803,CMIP5 -2191,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.861628198,-0.886773825,1.359257303,0.578489372,0.815246195,CMIP5 -2191,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.357506766,0.37757661,3.767600609,1.560644374,1.553994555,CMIP5 -2192,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.510295499,1.286591602,2.611727286,2.122002574,2.205007392,CMIP5 -2192,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.95746597,-1.08487015,1.42437265,0.530473608,0.79495192,CMIP5 -2192,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.276952678,0.491639212,3.696597384,1.59369579,1.465923112,CMIP5 -2193,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.723320781,1.2009286,3.091214602,2.340845298,2.478254754,CMIP5 -2193,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.963777891,-1.072775121,1.457606427,0.576305368,0.799776398,CMIP5 -2193,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.475591559,0.401152044,4.163989369,1.766742941,1.732843487,CMIP5 -2194,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.526710373,1.329123831,2.626526566,2.204678191,2.40393241,CMIP5 -2194,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.954899232,-1.051969155,1.388653545,0.597768816,0.877878702,CMIP5 -2194,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.264914882,0.451245384,3.678495966,1.608990577,1.495767001,CMIP5 -2195,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.491250713,1.46788418,2.607938903,2.253218468,2.546824251,CMIP5 -2195,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.94071802,-1.004747812,1.452588154,0.617082351,0.854960718,CMIP5 -2195,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.198097467,0.612923501,3.551572689,1.638362722,1.669644066,CMIP5 -2196,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.527007471,1.396788062,2.76546304,2.231512399,2.43980006,CMIP5 -2196,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.981874256,-1.152784999,1.190156393,0.593940799,0.980790037,CMIP5 -2196,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.200114136,0.486372153,3.592585469,1.639263555,1.438393253,CMIP5 -2197,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.631739065,1.363027612,2.912363962,2.401505856,2.662803101,CMIP5 -2197,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.039981774,-1.153923036,1.462399286,0.660269328,1.034563334,CMIP5 -2197,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.289371146,0.538909116,3.816726526,1.743418027,1.677267427,CMIP5 -2198,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.629586585,1.39753911,2.976755398,2.422781797,2.710184638,CMIP5 -2198,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.029354986,-1.079342598,1.626648438,0.686142388,0.992819077,CMIP5 -2198,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.418951529,0.517163186,4.056097732,1.739152191,1.717365871,CMIP5 -2199,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.313506493,2.158365046,2.901826487,2.712007491,2.85892663,CMIP5 -2199,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.125458545,-1.191159472,1.581034254,0.765155876,1.058712172,CMIP5 -2199,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.298961356,0.589611859,4.092986145,1.949307931,1.800214253,CMIP5 -2200,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.675938189,1.398035604,3.143763271,2.319109746,2.567140384,CMIP5 -2200,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.0147705,-1.134877536,1.460783134,0.61108967,0.861636752,CMIP5 -2200,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.527661778,0.45777164,4.278641006,1.710320306,1.448877435,CMIP5 -2201,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.500185561,1.331943413,2.592447358,2.146614296,2.173610661,CMIP5 -2201,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.129377072,-1.500986915,1.320183967,0.483007747,0.809420482,CMIP5 -2201,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.23356908,0.522523194,3.67459728,1.665548119,1.594850388,CMIP5 -2202,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.530795602,1.29614768,2.651386274,2.165879932,2.205088836,CMIP5 -2202,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.208955946,-1.599253246,1.501619596,0.502881035,0.812535336,CMIP5 -2202,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.32232793,0.483612583,3.804342518,1.665298545,1.654289509,CMIP5 -2203,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.577418504,1.317504952,2.633339905,2.203840741,2.557891793,CMIP5 -2203,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.118848372,-1.381730998,1.47930035,0.55574152,0.802402272,CMIP5 -2203,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.448137863,0.446321524,4.015070728,1.650434028,1.467947888,CMIP5 -2204,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.631811637,1.315826275,2.789888092,2.107928291,2.410594223,CMIP5 -2204,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.080358034,-1.385876019,1.209974071,0.513762435,0.894283695,CMIP5 -2204,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.392491954,0.367328907,3.796470234,1.596074969,1.650227269,CMIP5 -2205,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.601137622,1.061781719,2.681078143,1.968468816,1.962474116,CMIP5 -2205,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.977211381,-1.192838745,1.2817621,0.512156396,0.774189415,CMIP5 -2205,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.129426907,0.287592253,3.155313363,1.458268977,1.550241867,CMIP5 -2206,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.104589994,1.349052392,4.3215051,2.522751002,2.301229496,CMIP5 -2206,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.743803787,-0.587096745,1.366277051,0.642173054,0.790800105,CMIP5 -2206,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.764116216,0.558252584,4.90860154,1.882632899,1.547816195,CMIP5 -2207,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.567835381,1.543871854,2.997790352,2.272754351,2.330572304,CMIP5 -2207,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.823329844,-0.792469228,1.295005629,0.628125508,0.853069395,CMIP5 -2207,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.282001471,0.622939972,3.790259266,1.646591901,1.520206411,CMIP5 -2208,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.759416596,1.306375687,3.357792157,2.359826288,2.468496471,CMIP5 -2208,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.918760241,-0.952769636,1.431474691,0.609817258,0.788642821,CMIP5 -2208,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.534492215,0.517733246,4.310562066,1.7522081,1.562193886,CMIP5 -2209,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.643563517,1.27590494,2.950983249,2.371664031,2.515469984,CMIP5 -2209,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.071137881,-1.265353349,1.528441333,0.567148709,0.786593257,CMIP5 -2209,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.445897237,0.489311244,4.216336456,1.806769037,1.635297713,CMIP5 -2210,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.516852607,1.432618194,2.763606526,2.223976985,2.403497342,CMIP5 -2210,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.101624693,-1.394963981,1.382946646,0.512218905,0.790585026,CMIP5 -2210,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.289345846,0.642033342,3.798460589,1.713861196,1.655597495,CMIP5 -2211,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.544718459,1.312604223,2.631863531,2.203139387,2.436515622,CMIP5 -2211,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.057493077,-1.297682754,1.371058901,0.520842762,0.709365746,CMIP5 -2211,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.312458531,0.629562954,3.869460021,1.68436045,1.49343394,CMIP5 -2212,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.873306069,1.294673104,3.716149536,2.362245127,2.208835964,CMIP5 -2212,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.867168108,-0.804015391,1.549827824,0.608300148,0.769305394,CMIP5 -2212,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.614979559,0.525367694,4.52016519,1.756320569,1.520807754,CMIP5 -2213,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.490385866,1.34890333,2.594866078,2.130129708,2.263777604,CMIP5 -2213,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.959293021,-1.152033771,1.283861281,0.48120367,0.682029039,CMIP5 -2213,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.145476258,0.666873921,3.598352661,1.650743515,1.456262288,CMIP5 -2214,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.504086641,1.279012328,2.479089706,2.093278074,2.359737491,CMIP5 -2214,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.970041608,-1.127712428,1.398491374,0.529505808,0.736390755,CMIP5 -2214,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.258353498,0.541244013,3.606801949,1.565938103,1.380449878,CMIP5 -2215,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.621469209,1.190895521,2.669361867,2.151236584,2.451505197,CMIP5 -2215,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.925570572,-0.979619924,1.453765589,0.604905439,0.815328881,CMIP5 -2215,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.322877934,0.404676364,3.648982012,1.548630531,1.629711816,CMIP5 -2216,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.663309318,1.162064465,2.757022233,2.065318469,2.366449833,CMIP5 -2216,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.117371514,-1.460775923,1.346826254,0.4864041,0.800780377,CMIP5 -2216,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.964219667,0.469914539,3.050663756,1.58082357,1.650388389,CMIP5 -2217,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.572554261,1.193517881,2.634382644,2.112138736,2.348900939,CMIP5 -2217,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.065986465,-1.387338582,1.267826918,0.468584333,0.74404951,CMIP5 -2217,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.299343652,0.449468925,3.736239484,1.645451666,1.57389471,CMIP5 -2218,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.688773115,1.253327645,2.72861135,2.122243924,2.550677336,CMIP5 -2218,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.987523941,-1.12486808,1.363463097,0.587810114,0.793581437,CMIP5 -2218,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.458315117,0.149642076,3.853479815,1.536677204,1.429607803,CMIP5 -2219,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.618389304,1.331051329,2.811057295,2.191438391,2.380675356,CMIP5 -2219,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.888213841,-0.927165699,1.241238025,0.623143943,0.821283198,CMIP5 -2219,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.145186489,0.509767584,3.307841003,1.570190348,1.645515477,CMIP5 -2220,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.633987939,1.24313633,2.917986018,2.24855002,2.431638025,CMIP5 -2220,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.980116392,-1.164028697,1.30802457,0.54702648,0.795594991,CMIP5 -2220,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.27377924,0.447541737,3.716567782,1.703447656,1.651882867,CMIP5 -2221,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.009536204,1.149828695,3.849118007,2.41683774,2.523382564,CMIP5 -2221,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.862536489,-0.92326459,1.190024283,0.596117679,0.858008592,CMIP5 -2221,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.752970378,0.335650771,4.772383144,1.822490846,1.665373766,CMIP5 -2222,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.527588418,1.304988256,2.655047224,2.218247731,2.358585865,CMIP5 -2222,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.125851444,-1.300186569,1.732817953,0.585577131,0.805923857,CMIP5 -2222,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.380755519,0.54719604,3.955233498,1.635365249,1.376100921,CMIP5 -2223,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.61911512,1.287879276,2.654810477,2.17227904,2.525358006,CMIP5 -2223,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.017862081,-1.221182531,1.40729599,0.542061771,0.873941104,CMIP5 -2223,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.393614784,0.357677598,3.86077794,1.632461717,1.65141727,CMIP5 -2224,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.564406551,1.286865649,2.590715951,2.16724963,2.490844143,CMIP5 -2224,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.907486755,-0.955504923,1.425484305,0.593614541,0.817039512,CMIP5 -2224,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.21737441,0.498451202,3.510522453,1.575861359,1.626697487,CMIP5 -2225,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.749574859,1.177124404,2.929703191,2.156056124,2.385283866,CMIP5 -2225,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.989916153,-1.149594065,1.34646873,0.581509468,0.954270702,CMIP5 -2225,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.537316355,0.243820783,4.079296885,1.576728474,1.431013475,CMIP5 -2226,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.642440109,1.029130296,2.572047327,2.074084059,2.332179656,CMIP5 -2226,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.950505491,-1.021810496,1.479518057,0.602402391,0.856857964,CMIP5 -2226,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.994531016,0.281273,2.922004252,1.473871699,1.622457635,CMIP5 -2227,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.624099289,1.154825742,2.869573003,2.132383444,2.187111029,CMIP5 -2227,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.007414332,-1.161283623,1.472665649,0.570115645,0.870571704,CMIP5 -2227,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.4481534,0.413575087,4.030856545,1.564529539,1.259736649,CMIP5 -2228,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.556556366,1.121669455,2.542545434,1.976449776,2.153809695,CMIP5 -2228,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.052345935,-1.350844832,1.276341991,0.502668257,0.877749955,CMIP5 -2228,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.268590281,0.324146683,3.504654747,1.47575896,1.428454593,CMIP5 -2229,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.655112794,1.174042242,2.692858203,2.008029218,2.044942177,CMIP5 -2229,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.078460915,-1.349392967,1.435128098,0.520981818,0.807367177,CMIP5 -2229,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.012559639,0.395550293,2.891766791,1.489247094,1.652613613,CMIP5 -2230,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.735721665,1.194400792,3.043563561,2.229869977,2.517635402,CMIP5 -2230,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.991452453,-1.27066021,1.226710822,0.471707402,0.795836071,CMIP5 -2230,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.563278263,0.413843402,4.314223693,1.760031451,1.691542356,CMIP5 -2231,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.445544903,1.291941813,2.401831862,2.040042724,2.19609923,CMIP5 -2231,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.130683376,-1.437697448,1.519761672,0.506113183,0.826249498,CMIP5 -2231,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.171994407,0.465692621,3.430645129,1.536248839,1.407922647,CMIP5 -2232,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.436254275,1.291598969,2.306014422,2.067459858,2.251274823,CMIP5 -2232,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.10665892,-1.447530998,1.426245592,0.465611348,0.739582208,CMIP5 -2232,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.274485503,0.413995192,3.698805834,1.603980962,1.566432469,CMIP5 -2233,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.451052899,1.240805216,2.374455837,2.024662638,2.170884677,CMIP5 -2233,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.093607821,-1.446446288,1.433341028,0.419363609,0.768818801,CMIP5 -2233,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.321489523,0.455786149,3.820902573,1.607451506,1.484025579,CMIP5 -2234,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.497208506,1.099249479,2.380312053,1.939002815,2.080100178,CMIP5 -2234,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.963736798,-1.17500045,1.3815171,0.457509036,0.664081325,CMIP5 -2234,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.129868638,0.43516826,3.255100397,1.483623577,1.554285077,CMIP5 -2235,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.473500297,1.114372941,2.302923836,1.813984373,1.960143188,CMIP5 -2235,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.028110641,-1.275408502,1.460052398,0.458875042,0.735112371,CMIP5 -2235,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.995673817,0.379260508,2.852531012,1.357389099,1.479087966,CMIP5 -2236,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.632501916,1.088297291,2.559479561,1.84227911,1.962594044,CMIP5 -2236,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.054486787,-1.424404503,1.22864404,0.427719754,0.810782408,CMIP5 -2236,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.814156766,0.49002778,2.512701892,1.416369387,1.59312882,CMIP5 -2237,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.662377891,1.127236839,2.897978352,2.1876181,2.354005786,CMIP5 -2237,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.041443727,-1.306723692,1.442009404,0.475023366,0.715842426,CMIP5 -2237,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.470304727,0.411394368,4.204702032,1.714701142,1.37062286,CMIP5 -2238,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.648376913,1.332777018,3.09264512,2.274540804,2.246325705,CMIP5 -2238,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.882102029,-0.843854915,1.575877541,0.59286126,0.784708554,CMIP5 -2238,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.365599421,0.535325568,3.936500078,1.684094798,1.46262714,CMIP5 -2239,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.601000042,1.161557651,2.636544973,2.152984841,2.232936962,CMIP5 -2239,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.007550902,-1.200473432,1.474790702,0.516971281,0.775939949,CMIP5 -2239,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.353321496,0.418829875,3.822462427,1.638270081,1.441065045,CMIP5 -2240,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.654856983,1.133074141,2.843615795,2.079162895,2.287156963,CMIP5 -2240,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.033541377,-1.268846084,1.350661312,0.540244094,0.867059958,CMIP5 -2240,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.322395387,0.330192694,3.556002863,1.541047375,1.426575712,CMIP5 -2241,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.485635418,1.292953148,2.511874339,2.058780543,2.298409201,CMIP5 -2241,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.95103317,-1.13840328,1.3201047,0.503807841,0.814767862,CMIP5 -2241,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.206323728,0.478185231,3.447613875,1.556996151,1.424488771,CMIP5 -2242,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.543410227,1.259880679,2.539601577,2.138646912,2.413063618,CMIP5 -2242,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.050762583,-1.326692593,1.41180261,0.486114414,0.81469677,CMIP5 -2242,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.367710497,0.445183817,3.842894143,1.654713036,1.579518667,CMIP5 -2243,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.548940072,1.170658514,2.403531323,1.925258041,2.142307568,CMIP5 -2243,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.896541555,-1.061347971,1.31882488,0.467365247,0.687395679,CMIP5 -2243,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.284048261,0.223516991,3.464879419,1.460035062,1.457722512,CMIP5 -2244,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.444281386,1.210529397,2.320840278,1.942365062,1.991980199,CMIP5 -2244,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.07750424,-1.364907748,1.516924324,0.458125911,0.697915281,CMIP5 -2244,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.140277561,0.48697696,3.282900882,1.486623522,1.502514988,CMIP5 -2245,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.667855636,1.072384333,2.818417529,2.01534314,2.095768066,CMIP5 -2245,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.904296177,-1.018110174,1.386935557,0.516893741,0.712339998,CMIP5 -2245,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.428331092,0.321552836,3.836528137,1.500672349,1.412581156,CMIP5 -2246,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.835241892,0.925398808,3.090473162,2.114210117,2.292424183,CMIP5 -2246,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.817419391,-0.910380184,1.212539492,0.504858492,0.728109861,CMIP5 -2246,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.500676401,0.208944059,4.0008533,1.611223566,1.514855215,CMIP5 -2247,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.644483838,1.209441238,2.980392967,2.228897409,2.354007318,CMIP5 -2247,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.050166346,-1.308759669,1.444324916,0.497622741,0.798103395,CMIP5 -2247,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.510456201,0.484631443,4.289152715,1.733448389,1.555903884,CMIP5 -2248,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.696426145,0.907967394,2.694649848,1.995226482,2.08643627,CMIP5 -2248,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.119572387,-1.466499285,1.433283505,0.470382207,0.850246613,CMIP5 -2248,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.18588067,0.22507529,3.281101124,1.527026283,1.622230545,CMIP5 -2249,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.59664064,0.878104937,2.368703434,1.852424721,1.868431534,CMIP5 -2249,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.08729002,-1.463639097,1.289840108,0.428241861,0.69474756,CMIP5 -2249,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.226235589,0.183357378,3.332070419,1.426159476,1.348748675,CMIP5 -2250,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.483337937,1.149955972,2.420979287,1.924639821,2.088210899,CMIP5 -2250,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.113377369,-1.483462364,1.427266696,0.431772223,0.703411339,CMIP5 -2250,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.295420598,0.400799112,3.571673469,1.49513076,1.303450005,CMIP5 -2251,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.517416348,1.159086647,2.430303559,2.001668366,2.276291663,CMIP5 -2251,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.983250736,-1.192577913,1.349585988,0.508806709,0.755911412,CMIP5 -2251,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.226515026,0.433686396,3.478480966,1.494953305,1.520380217,CMIP5 -2252,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.487513898,1.220563623,2.474271435,2.000294778,2.203161689,CMIP5 -2252,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.821292989,-0.883405825,1.275297217,0.527200197,0.749096473,CMIP5 -2252,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.844126026,0.507134103,2.745940359,1.474902512,1.454064974,CMIP5 -2253,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.584055062,1.113887913,2.675092291,2.075974425,2.176388965,CMIP5 -2253,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.921225743,-1.023690307,1.371438994,0.544297573,0.726902681,CMIP5 -2253,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.278897818,0.46755343,3.698782602,1.533737419,1.339748821,CMIP5 -2254,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.516241625,1.256573776,2.531089723,1.916352844,1.805150641,CMIP5 -2254,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.098182583,-1.380621241,1.472602346,0.503507921,0.729020335,CMIP5 -2254,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.075636455,0.344342966,3.037279356,1.415203809,1.530576414,CMIP5 -2255,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.606682288,1.048725071,2.5088409,1.908595952,1.981719252,CMIP5 -2255,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.986504461,-1.266618111,1.194019249,0.457769477,0.768999768,CMIP5 -2255,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.172521298,0.398947787,3.248338027,1.452697523,1.463826021,CMIP5 -2256,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.532776662,1.207610058,2.593518272,2.050688316,2.157808379,CMIP5 -2256,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.956557634,-1.200435863,1.194313471,0.480634388,0.768924733,CMIP5 -2256,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.314156842,0.461501912,3.793953607,1.57180739,1.388882641,CMIP5 -2257,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.592976122,1.053744822,2.496495545,1.830272883,1.861171366,CMIP5 -2257,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.048463966,-1.436657191,1.233828001,0.38708583,0.660336478,CMIP5 -2257,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.975299626,0.440874651,2.885013429,1.445042672,1.631259577,CMIP5 -2258,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.47050978,1.050270166,2.190320543,1.852791345,2.100160286,CMIP5 -2258,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.138003013,-1.597527944,1.398210364,0.347337299,0.691287173,CMIP5 -2258,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.3500495,0.358983012,3.697688808,1.50765886,1.458889677,CMIP5 -2259,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.466449675,1.168624379,2.298334272,1.847995357,2.095956497,CMIP5 -2259,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.965312928,-1.177374804,1.418337401,0.447132267,0.643938976,CMIP5 -2259,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.285210804,0.163251294,3.475708314,1.403193515,1.399137197,CMIP5 -2260,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.544962467,1.114701567,2.475418156,2.019372255,2.221644971,CMIP5 -2260,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.056582068,-1.346847021,1.421834202,0.471867116,0.779008105,CMIP5 -2260,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.374227801,0.402453035,3.822265667,1.549717908,1.442636911,CMIP5 -2261,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.725943975,1.218865452,2.762304265,2.03838285,2.36984638,CMIP5 -2261,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.884322515,-1.066269514,1.162121165,0.484975909,0.740935595,CMIP5 -2261,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.446405845,0.145512218,3.828574305,1.555312758,1.518124545,CMIP5 -2262,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.542748755,1.31401688,2.56811961,1.908559136,1.818111642,CMIP5 -2262,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.966691872,-1.310753101,1.018205474,0.401358257,0.779855559,CMIP5 -2262,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.053646972,0.474178705,3.128864119,1.508749861,1.578053368,CMIP5 -2263,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.536240146,1.129575177,2.432762227,2.040554237,2.237880974,CMIP5 -2263,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.07257285,-1.345036461,1.487158999,0.487373065,0.736342739,CMIP5 -2263,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.351020723,0.427969087,3.77779845,1.555499851,1.381086744,CMIP5 -2264,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.698192969,1.006487987,2.862351342,2.176776197,2.314995811,CMIP5 -2264,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.863153232,-0.835011032,1.499080046,0.591181012,0.703753445,CMIP5 -2264,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.30649294,0.30273448,3.697362139,1.587861856,1.564954484,CMIP5 -2265,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.797233412,0.917145769,3.06845055,2.168770987,2.411642659,CMIP5 -2265,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.981561937,-1.129017912,1.470832341,0.528880594,0.737855852,CMIP5 -2265,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.549461465,0.286064204,4.197468861,1.642178948,1.514823499,CMIP5 -2266,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.574351538,1.07536261,2.404942527,2.02071935,2.356921417,CMIP5 -2266,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.915690697,-0.969342919,1.437446362,0.584120395,0.727745721,CMIP5 -2266,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.20382192,0.349117217,3.326263874,1.438864344,1.406434512,CMIP5 -2267,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.664262349,1.008143594,2.342207179,1.759666984,2.164191884,CMIP5 -2267,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.906867775,-1.029628803,1.362583186,0.520252689,0.748479015,CMIP5 -2267,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.673131897,0.31485974,2.037772659,1.241406304,1.330047401,CMIP5 -2268,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.641103707,0.887013394,2.445836806,1.985988904,2.262745142,CMIP5 -2268,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.056212499,-1.306398337,1.469425089,0.493453303,0.780830462,CMIP5 -2268,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.304090125,0.273378644,3.569143566,1.494833303,1.460621394,CMIP5 -2269,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.611109393,0.938679279,2.44988345,1.816819401,1.687380879,CMIP5 -2269,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.042683223,-1.382837437,1.211418755,0.444015852,0.720917541,CMIP5 -2269,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.110090924,0.244078944,3.044107154,1.37467401,1.473902965,CMIP5 -2270,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.621541437,0.854756988,2.515213593,1.834690262,2.015379123,CMIP5 -2270,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.143357807,-1.54003673,1.445430791,0.397793711,0.576749216,CMIP5 -2270,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.153512526,0.278007913,3.231383505,1.439127522,1.548044553,CMIP5 -2271,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.500485121,1.093365623,2.330371619,1.882469134,2.14446063,CMIP5 -2271,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.899755404,-1.040365435,1.323311133,0.489881563,0.710173151,CMIP5 -2271,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.224764262,0.378090157,3.37073678,1.394683852,1.283817536,CMIP5 -2272,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.442031957,1.263374484,2.425444497,1.836348825,1.79760979,CMIP5 -2272,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.897095932,-1.025165725,1.279350258,0.498899943,0.771106138,CMIP5 -2272,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.995605601,0.349906272,2.822775256,1.33948062,1.464969081,CMIP5 -2273,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.710764459,1.153577054,3.024424822,2.118139878,1.958161918,CMIP5 -2273,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.978738589,-1.151848245,1.351592967,0.48351722,0.718488149,CMIP5 -2273,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.498680212,0.435088452,4.176272864,1.636683487,1.467827366,CMIP5 -2274,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.57331994,1.09266044,2.612682126,1.953516635,2.071472753,CMIP5 -2274,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.06100508,-1.341041553,1.448611077,0.455759154,0.719913587,CMIP5 -2274,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.328744698,0.311652533,3.583195527,1.500087548,1.53714552,CMIP5 -2275,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.667898313,1.20516428,2.971734104,2.069798297,1.947897184,CMIP5 -2275,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.968651612,-1.171992389,1.279692644,0.486178033,0.794733052,CMIP5 -2275,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.508885765,0.410431451,4.14372644,1.585592733,1.418778546,CMIP5 -2276,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.551130465,1.260870228,2.654064022,2.092880524,2.200707446,CMIP5 -2276,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.867723597,-0.9637112,1.210811597,0.512486978,0.793993268,CMIP5 -2276,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.250254593,0.466877379,3.617774977,1.582198596,1.449169226,CMIP5 -2277,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.437730589,1.305073107,2.390190808,2.022778139,2.218999206,CMIP5 -2277,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.004657997,-1.265865391,1.328305186,0.443805761,0.726012479,CMIP5 -2277,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.211799807,0.579060427,3.547294706,1.580999852,1.445784449,CMIP5 -2278,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.646438464,0.929862898,2.568053196,1.761186171,1.943240454,CMIP5 -2278,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.148717823,-1.506580649,1.44468767,0.432593736,0.741341357,CMIP5 -2278,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.007988385,0.18852144,2.812247902,1.330806832,1.504590511,CMIP5 -2279,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.629812096,0.961051555,2.393607289,1.779811841,1.997398135,CMIP5 -2279,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.191245501,-1.666004514,1.404959836,0.388906858,0.65291148,CMIP5 -2279,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.033990704,0.308139996,2.943463386,1.393060083,1.457052661,CMIP5 -2280,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.741356368,0.967109012,2.855600393,2.053994316,2.387582113,CMIP5 -2280,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.938291098,-1.139840547,1.256743121,0.480536539,0.705082133,CMIP5 -2280,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.479494112,0.336531658,3.995441223,1.575426523,1.43746079,CMIP5 -2281,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.586961777,1.103848413,2.616385379,2.075185298,2.251193199,CMIP5 -2281,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.918316469,-1.062694176,1.35117847,0.485879334,0.667554343,CMIP5 -2281,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.282383234,0.436294079,3.679080082,1.591349841,1.479767966,CMIP5 -2282,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.902502478,0.038756099,2.256027549,1.387345036,1.641285802,CMIP5 -2282,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.10773769,-1.567346479,1.188542993,0.35325736,0.678389119,CMIP5 -2282,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.625601206,0.276629142,1.606102538,1.035927878,1.270429398,CMIP5 -2283,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.481514076,1.12816229,2.392675942,1.828910303,1.932570903,CMIP5 -2283,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.143174171,-1.601721482,1.217767766,0.389600786,0.732664767,CMIP5 -2283,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.340289906,0.395497441,3.678855823,1.441218129,1.345848525,CMIP5 -2284,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.622599287,0.869705473,2.398895511,1.896644777,2.139978431,CMIP5 -2284,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.814267764,-0.886640548,1.215085372,0.512308358,0.798063119,CMIP5 -2284,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.175055819,0.285037035,3.28553604,1.386186471,1.289612762,CMIP5 -2285,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.48661245,1.174182131,2.357385186,2.017064364,2.128301851,CMIP5 -2285,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.994305577,-1.178385121,1.445500149,0.524535687,0.772237305,CMIP5 -2285,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.220427519,0.417082788,3.517517616,1.49472076,1.26009238,CMIP5 -2286,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.566229037,1.135783875,2.465617484,1.887531729,1.781791921,CMIP5 -2286,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.948108944,-1.105049292,1.33069501,0.533532492,0.748099777,CMIP5 -2286,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.959476659,0.416718143,2.724274509,1.356078521,1.490767223,CMIP5 -2287,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.761938557,1.089219152,3.062880557,2.041036221,2.08829104,CMIP5 -2287,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.847672127,-0.936005518,1.21840575,0.531349519,0.726522265,CMIP5 -2287,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.482420076,0.347629738,3.998886651,1.511617088,1.361768902,CMIP5 -2288,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.494085627,1.148315134,2.354368736,1.873408972,1.837423467,CMIP5 -2288,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.088544327,-1.418029767,1.397857244,0.465872506,0.734416973,CMIP5 -2288,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.108618248,0.413898282,3.132440878,1.409732779,1.456211542,CMIP5 -2289,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.604763141,0.979925325,2.455970407,2.037290874,2.313244324,CMIP5 -2289,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.060929515,-1.394849364,1.34076596,0.446274634,0.807848283,CMIP5 -2289,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.312989695,0.313753535,3.731195798,1.593005468,1.505396108,CMIP5 -2290,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.530436723,1.059019584,2.350153739,1.837398032,1.928674804,CMIP5 -2290,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.137927711,-1.570655844,1.372727071,0.404099197,0.730765326,CMIP5 -2290,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.315720658,0.221594754,3.499330856,1.435532483,1.477013712,CMIP5 -2291,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.683406761,0.70377871,2.291622577,1.575188915,1.918308162,CMIP5 -2291,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.231258398,-1.771543438,1.426360913,0.361367339,0.715013229,CMIP5 -2291,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.876323015,0.295462744,2.475322291,1.216047963,1.229767163,CMIP5 -2292,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.446239981,1.190501078,2.286091648,1.799359447,2.014940092,CMIP5 -2292,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.114569084,-1.549959103,1.322521772,0.387746503,0.70111466,CMIP5 -2292,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.025060425,0.410006902,3.039853826,1.413595072,1.314255157,CMIP5 -2293,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.413171438,1.184132653,2.140020611,1.820989505,2.065921745,CMIP5 -2293,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.975841914,-1.196477778,1.418779972,0.447445969,0.655481,CMIP5 -2293,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.922562194,0.427238927,2.816399294,1.375677564,1.410440931,CMIP5 -2294,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.556745748,0.920794485,2.324590374,1.710615157,1.954901586,CMIP5 -2294,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.930756952,-1.121010928,1.343796244,0.445965222,0.618128795,CMIP5 -2294,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.206895392,0.046285162,3.094947963,1.266895612,1.419480113,CMIP5 -2295,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.533046964,1.074130777,2.523406216,1.886967008,2.022913017,CMIP5 -2295,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.990523087,-1.379675033,1.136137229,0.352284567,0.689730197,CMIP5 -2295,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.399239665,0.384400607,3.903081274,1.53637964,1.294192614,CMIP5 -2296,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.348294541,1.217963048,2.053301465,1.832098267,1.934952555,CMIP5 -2296,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.021859231,-1.461759204,1.167492834,0.311583428,0.578434181,CMIP5 -2296,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.178987182,0.489923237,3.495869308,1.522215496,1.38924294,CMIP5 -2297,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.485595643,1.066725333,2.39097388,1.849010995,1.978523488,CMIP5 -2297,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.155876935,-1.662113275,1.315265602,0.349219812,0.697162912,CMIP5 -2297,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.326337638,0.343418555,3.65198319,1.501826419,1.281361416,CMIP5 -2298,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.551310338,1.053408283,2.555351092,1.889606433,2.008796097,CMIP5 -2298,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.919279373,-1.13786785,1.259030284,0.450163514,0.720516987,CMIP5 -2298,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.345958793,0.320083126,3.693218807,1.44139002,1.288279403,CMIP5 -2299,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.40650782,1.867496312,2.869128593,2.193742792,1.986130253,CMIP5 -2299,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.1675521,-1.393097938,1.53963151,0.560313762,0.676101265,CMIP5 -2299,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.052762357,0.503960523,3.365588314,1.635567204,1.381422938,CMIP5 -2300,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.366610671,1.657944871,2.49532563,2.130981951,2.185328652,CMIP5 -2300,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.123722847,-1.285757494,1.24989842,0.35685169,0.731632917,CMIP5 -2300,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.433960634,0.417839192,3.781082678,1.776578206,1.453695477,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp85/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp85/ensemble_mean_model.csv deleted file mode 100644 index 3c2d3fa56..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp85/ensemble_mean_model.csv +++ /dev/null @@ -1,4966 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",3.49303482578043 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",3.4207531948618 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",3.76550880142162 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",3.82116669771308 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",3.98755131250535 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",4.05546291015175 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",3.88717981204048 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",4.03039364602116 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",3.9081447665337 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",4.06787508524073 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",4.27002033860508 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",4.17169779146932 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",4.31417528284735 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",4.37598644210529 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",4.71665374647563 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",4.57858950847912 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",4.5645989990288 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",4.49069421289476 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",4.79906008818067 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",4.62907699910416 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",4.79023198067284 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",4.9522145472971 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",5.01761457637056 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",5.01212402174646 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",5.13350209606905 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",5.24934799640305 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",5.11568260508497 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",5.27680076952352 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",5.37781897088289 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",5.65154953118294 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",5.55094112048939 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",5.60249950937785 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",5.7319997627566 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",5.77013590659462 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",5.81195696493545 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",6.01377726710777 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",6.00945685692397 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",5.99727038685014 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",5.9277132235613 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",6.09283004848119 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",6.13854571889211 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",6.26170702290894 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",6.32819555843848 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",6.39354756516829 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",6.35988390226896 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",6.32501808003358 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",6.38890540528203 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",6.59759450334122 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",6.66959600392189 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",6.84262851182024 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",6.91553283246155 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",7.14842999395519 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",7.01402505854488 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",7.05393162611883 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",6.97653881709094 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",7.06088526147949 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",7.05482484171074 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",7.11466068189983 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",7.20251755960926 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",7.14412559121927 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",7.19792822430102 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",7.16884749373079 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",7.33397712460898 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",7.10680102498896 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",7.38323364249177 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",7.47091924050884 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",7.59672017268169 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",7.23604675994636 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",7.26352354423866 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",7.49355697330591 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",7.48891801490922 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",7.41415042733426 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",7.3170380432585 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",7.36707572459801 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",7.36134345751087 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",7.58597917515176 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",7.35979713804531 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",7.45980206795365 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",7.35914723566124 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",7.30817471936532 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",7.48814325443165 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",7.6756785101126 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",7.50489825013147 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",7.13775622770637 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",7.28803414843811 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",7.59676819502534 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",7.44095169732586 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",7.38947014418724 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",7.40673097524018 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",7.35256337234669 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",7.2284464236912 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",7.39703526405705 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",7.38796704483096 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",7.17807578743571 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",7.02500456704828 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2101,"Simulated","PgC/yr","global",6.98221025587612 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2102,"Simulated","PgC/yr","global",6.99923097521081 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2103,"Simulated","PgC/yr","global",6.86798430926795 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2104,"Simulated","PgC/yr","global",6.95467744551623 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2105,"Simulated","PgC/yr","global",7.06511763069993 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2106,"Simulated","PgC/yr","global",7.02832931397371 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2107,"Simulated","PgC/yr","global",7.00439497789807 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2108,"Simulated","PgC/yr","global",7.01110209856133 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2109,"Simulated","PgC/yr","global",6.83648485332249 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2110,"Simulated","PgC/yr","global",6.90221463582235 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2111,"Simulated","PgC/yr","global",6.86146607648972 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2112,"Simulated","PgC/yr","global",7.11472951392573 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2113,"Simulated","PgC/yr","global",6.91268030524868 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2114,"Simulated","PgC/yr","global",7.00212672253296 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2115,"Simulated","PgC/yr","global",7.07268915354889 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2116,"Simulated","PgC/yr","global",7.05770458158501 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2117,"Simulated","PgC/yr","global",7.03377184625416 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2118,"Simulated","PgC/yr","global",7.03076564754161 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2119,"Simulated","PgC/yr","global",6.93233104827066 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2120,"Simulated","PgC/yr","global",6.96545846166588 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2121,"Simulated","PgC/yr","global",7.00634948728467 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2122,"Simulated","PgC/yr","global",6.50487776445431 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2123,"Simulated","PgC/yr","global",6.74477978514183 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2124,"Simulated","PgC/yr","global",6.73182975980396 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2125,"Simulated","PgC/yr","global",6.92137074870472 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2126,"Simulated","PgC/yr","global",6.76929199008607 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2127,"Simulated","PgC/yr","global",6.58808287780875 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2128,"Simulated","PgC/yr","global",6.55994338517407 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2129,"Simulated","PgC/yr","global",6.62272459577376 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2130,"Simulated","PgC/yr","global",6.57188494129528 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2131,"Simulated","PgC/yr","global",6.44124015539284 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2132,"Simulated","PgC/yr","global",6.49049187104127 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2133,"Simulated","PgC/yr","global",6.60526367162227 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2134,"Simulated","PgC/yr","global",6.46395952617411 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2135,"Simulated","PgC/yr","global",6.40183782242723 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2136,"Simulated","PgC/yr","global",6.35462225414961 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2137,"Simulated","PgC/yr","global",6.26146851193547 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2138,"Simulated","PgC/yr","global",6.25415630974222 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2139,"Simulated","PgC/yr","global",6.31304610976139 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2140,"Simulated","PgC/yr","global",6.42904408085029 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2141,"Simulated","PgC/yr","global",6.41497513490534 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2142,"Simulated","PgC/yr","global",6.29387879166551 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2143,"Simulated","PgC/yr","global",6.49855962477463 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2144,"Simulated","PgC/yr","global",6.22889175474745 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2145,"Simulated","PgC/yr","global",6.22278171189026 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2146,"Simulated","PgC/yr","global",6.28235663067885 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2147,"Simulated","PgC/yr","global",6.30700970116447 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2148,"Simulated","PgC/yr","global",6.17557414733658 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2149,"Simulated","PgC/yr","global",6.01351634570726 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2150,"Simulated","PgC/yr","global",6.36994138177426 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2151,"Simulated","PgC/yr","global",6.21197988605837 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2152,"Simulated","PgC/yr","global",6.36191364666061 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2153,"Simulated","PgC/yr","global",6.2956412116775 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2154,"Simulated","PgC/yr","global",6.22959448170954 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2155,"Simulated","PgC/yr","global",6.13140959862558 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2156,"Simulated","PgC/yr","global",6.05851808394257 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2157,"Simulated","PgC/yr","global",5.93168627212602 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2158,"Simulated","PgC/yr","global",5.8319822822379 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2159,"Simulated","PgC/yr","global",5.70337684519584 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2160,"Simulated","PgC/yr","global",5.86077968098059 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2161,"Simulated","PgC/yr","global",5.75666243771095 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2162,"Simulated","PgC/yr","global",5.90052297258613 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2163,"Simulated","PgC/yr","global",5.98098280862852 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2164,"Simulated","PgC/yr","global",5.74903969102875 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2165,"Simulated","PgC/yr","global",5.95082957905009 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2166,"Simulated","PgC/yr","global",5.64455427645778 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2167,"Simulated","PgC/yr","global",5.77067215609872 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2168,"Simulated","PgC/yr","global",5.75889867818029 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2169,"Simulated","PgC/yr","global",5.61736722697219 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2170,"Simulated","PgC/yr","global",5.4989185156123 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2171,"Simulated","PgC/yr","global",5.58025075756436 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2172,"Simulated","PgC/yr","global",5.43538175347251 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2173,"Simulated","PgC/yr","global",5.26867538897778 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2174,"Simulated","PgC/yr","global",5.29741516090809 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2175,"Simulated","PgC/yr","global",5.2232558563527 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2176,"Simulated","PgC/yr","global",5.18547027562334 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2177,"Simulated","PgC/yr","global",5.30864438559847 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2178,"Simulated","PgC/yr","global",5.28263068204274 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2179,"Simulated","PgC/yr","global",5.34940895237898 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2180,"Simulated","PgC/yr","global",5.37358340017288 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2181,"Simulated","PgC/yr","global",5.24805459461405 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2182,"Simulated","PgC/yr","global",5.25255909044851 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2183,"Simulated","PgC/yr","global",4.99964621612116 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2184,"Simulated","PgC/yr","global",5.16814221328928 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2185,"Simulated","PgC/yr","global",5.29190219585696 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2186,"Simulated","PgC/yr","global",5.18100739915337 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2187,"Simulated","PgC/yr","global",5.21640306791371 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2188,"Simulated","PgC/yr","global",4.80514772061083 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2189,"Simulated","PgC/yr","global",5.14305374022123 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2190,"Simulated","PgC/yr","global",4.99894829139343 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2191,"Simulated","PgC/yr","global",5.08045341378263 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2192,"Simulated","PgC/yr","global",4.91341729586149 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2193,"Simulated","PgC/yr","global",5.1292169022706 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2194,"Simulated","PgC/yr","global",5.07275863358495 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2195,"Simulated","PgC/yr","global",5.0913945044111 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2196,"Simulated","PgC/yr","global",4.86920952704121 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2197,"Simulated","PgC/yr","global",4.76652174886757 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2198,"Simulated","PgC/yr","global",4.55140726122788 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2199,"Simulated","PgC/yr","global",4.80117787353568 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2200,"Simulated","PgC/yr","global",4.7596241395745 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2201,"Simulated","PgC/yr","global",4.73905456904401 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2202,"Simulated","PgC/yr","global",4.66468556692134 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2203,"Simulated","PgC/yr","global",4.57720486423718 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2204,"Simulated","PgC/yr","global",4.60727965732099 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2205,"Simulated","PgC/yr","global",4.29152634483677 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2206,"Simulated","PgC/yr","global",4.44135925851734 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2207,"Simulated","PgC/yr","global",4.37891740581279 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2208,"Simulated","PgC/yr","global",4.36104989248506 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2209,"Simulated","PgC/yr","global",4.43651540478775 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2210,"Simulated","PgC/yr","global",4.36606182441743 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2211,"Simulated","PgC/yr","global",4.07653031231142 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2212,"Simulated","PgC/yr","global",4.22595343532617 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2213,"Simulated","PgC/yr","global",4.07306149835504 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2214,"Simulated","PgC/yr","global",4.15792498331022 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2215,"Simulated","PgC/yr","global",4.02934515818478 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2216,"Simulated","PgC/yr","global",4.21625132116389 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2217,"Simulated","PgC/yr","global",4.14370556735518 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2218,"Simulated","PgC/yr","global",4.12190182259285 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2219,"Simulated","PgC/yr","global",4.13992780965463 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2220,"Simulated","PgC/yr","global",4.19016718483748 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2221,"Simulated","PgC/yr","global",3.94239430202556 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2222,"Simulated","PgC/yr","global",4.04540703139124 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2223,"Simulated","PgC/yr","global",3.91917069663596 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2224,"Simulated","PgC/yr","global",3.89513071140429 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2225,"Simulated","PgC/yr","global",3.99875492527912 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2226,"Simulated","PgC/yr","global",4.04658517955547 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2227,"Simulated","PgC/yr","global",3.91393305968843 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2228,"Simulated","PgC/yr","global",3.88410638204682 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2229,"Simulated","PgC/yr","global",3.85515531180444 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2230,"Simulated","PgC/yr","global",3.74755965010968 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2231,"Simulated","PgC/yr","global",3.67243989868127 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2232,"Simulated","PgC/yr","global",3.68321131036218 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2233,"Simulated","PgC/yr","global",3.90510975441496 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2234,"Simulated","PgC/yr","global",3.56218379914824 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2235,"Simulated","PgC/yr","global",3.78287688237538 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2236,"Simulated","PgC/yr","global",3.56939995665419 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2237,"Simulated","PgC/yr","global",3.52038355048966 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2238,"Simulated","PgC/yr","global",3.56288012313118 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2239,"Simulated","PgC/yr","global",3.67414949411524 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2240,"Simulated","PgC/yr","global",3.55732874020513 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2241,"Simulated","PgC/yr","global",3.53086842885345 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2242,"Simulated","PgC/yr","global",3.5316319841175 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2243,"Simulated","PgC/yr","global",3.32690312866473 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2244,"Simulated","PgC/yr","global",3.43648051240749 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2245,"Simulated","PgC/yr","global",3.37723694779009 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2246,"Simulated","PgC/yr","global",3.53030976892231 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2247,"Simulated","PgC/yr","global",3.2889334622847 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2248,"Simulated","PgC/yr","global",3.30630954696241 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2249,"Simulated","PgC/yr","global",3.32277000562117 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2250,"Simulated","PgC/yr","global",3.26137824149778 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2251,"Simulated","PgC/yr","global",3.15940279475497 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2252,"Simulated","PgC/yr","global",3.21520155658781 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2253,"Simulated","PgC/yr","global",3.23647065259081 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2254,"Simulated","PgC/yr","global",3.40955278357761 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2255,"Simulated","PgC/yr","global",3.2012926851217 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2256,"Simulated","PgC/yr","global",3.03346900076469 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2257,"Simulated","PgC/yr","global",3.17282183831583 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2258,"Simulated","PgC/yr","global",3.14775737641961 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2259,"Simulated","PgC/yr","global",3.20286941873824 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2260,"Simulated","PgC/yr","global",3.27940582930435 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2261,"Simulated","PgC/yr","global",3.12299545528839 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2262,"Simulated","PgC/yr","global",2.97570772582131 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2263,"Simulated","PgC/yr","global",3.14580286703301 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2264,"Simulated","PgC/yr","global",2.91043575633093 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2265,"Simulated","PgC/yr","global",3.13182836503058 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2266,"Simulated","PgC/yr","global",3.20611092693468 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2267,"Simulated","PgC/yr","global",2.90876938100624 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2268,"Simulated","PgC/yr","global",2.86720284108676 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2269,"Simulated","PgC/yr","global",3.0118941625071 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2270,"Simulated","PgC/yr","global",2.9335537125645 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2271,"Simulated","PgC/yr","global",2.87536023652827 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2272,"Simulated","PgC/yr","global",3.0493996128985 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2273,"Simulated","PgC/yr","global",3.02935028442422 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2274,"Simulated","PgC/yr","global",2.78038324600019 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2275,"Simulated","PgC/yr","global",3.06003015903803 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2276,"Simulated","PgC/yr","global",2.97631120660653 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2277,"Simulated","PgC/yr","global",3.10767312617415 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2278,"Simulated","PgC/yr","global",2.97611431499756 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2279,"Simulated","PgC/yr","global",3.03232126675143 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2280,"Simulated","PgC/yr","global",2.70854021915356 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2281,"Simulated","PgC/yr","global",2.9006984257833 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2282,"Simulated","PgC/yr","global",3.0007641839936 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2283,"Simulated","PgC/yr","global",2.75191399993911 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2284,"Simulated","PgC/yr","global",2.71885541856979 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2285,"Simulated","PgC/yr","global",2.67947869752079 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2286,"Simulated","PgC/yr","global",3.05473329453333 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2287,"Simulated","PgC/yr","global",2.87215874695154 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2288,"Simulated","PgC/yr","global",2.71484395213015 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2289,"Simulated","PgC/yr","global",3.07741104595011 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2290,"Simulated","PgC/yr","global",2.86983766700841 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2291,"Simulated","PgC/yr","global",2.68808110001347 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2292,"Simulated","PgC/yr","global",2.80477219359572 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2293,"Simulated","PgC/yr","global",2.55824789171873 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2294,"Simulated","PgC/yr","global",2.67404737045387 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2295,"Simulated","PgC/yr","global",2.69145547002734 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2296,"Simulated","PgC/yr","global",2.55370657875414 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2297,"Simulated","PgC/yr","global",2.4977557461664 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2298,"Simulated","PgC/yr","global",2.95409767117838 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2299,"Simulated","PgC/yr","global",2.66970775133261 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2300,"Simulated","PgC/yr","global",2.82662235995691 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",1.46166958302975 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.4852066833326 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.56062040533438 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",1.64269722121721 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.65274791151575 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.60132195025776 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.55223563004518 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.62607402205086 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.54401673856151 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.59330715813207 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.64562481561427 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.56273358384666 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.62863842716041 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",1.67276323635025 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.79505272116307 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.73625766907698 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.6472782751843 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.64241385997263 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.74421301478772 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.72433668133294 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.77000398345157 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.79519567563711 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.77481631228061 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",1.84588506750609 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.85679008771087 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.94401071695563 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.9342051723492 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.98057988680569 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.97250508210873 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.95892950248199 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.99417896192024 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",2.05288852440007 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",2.03963338925772 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",2.10822237974542 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",2.07013421245437 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",2.14632923019545 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",2.1132079524123 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",2.0789973898448 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.02953400951456 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",2.18777725224367 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",2.18863186522807 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.12387037462847 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",2.25158476942246 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",2.23049855988442 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",2.31578859603423 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",2.23129995417354 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.29262827277087 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",2.20851838949685 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",2.27136570553516 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.3978962674372 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.36981010100007 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",2.46856843015154 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",2.48274866474173 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.59187133480013 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.51894502064663 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",2.52748605508369 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.50134888182232 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.47944910563401 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.60973017016288 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.64426768801259 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",2.67640130607311 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.60399557266765 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",2.66355153886507 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",2.52785717055986 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",2.49552653009551 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.53347938602301 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.61746528106015 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",2.5356616356079 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.57784792551413 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",2.77928833028173 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",2.57207766016994 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",2.60987170924608 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",2.52661785434729 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",2.53285689713507 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.51372477617979 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",2.57323403447974 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",2.62227930835819 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",2.77497138824391 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.67959640933743 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",2.73398280205978 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",2.79632227586755 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",2.75275286604022 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",2.76357664281124 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.6461631794149 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",2.61225437817279 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.71846643852412 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",2.91839435664857 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",2.82245888297258 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",2.85328071680994 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",2.67398806470443 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",2.71865978091178 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",2.7599940055371 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",2.72394796413856 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",2.54872201297176 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",2.65801254838284 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2101,"Simulated","PgC/yr","HL",2.65229889867193 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2102,"Simulated","PgC/yr","HL",2.70113044853473 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2103,"Simulated","PgC/yr","HL",2.60781769407058 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2104,"Simulated","PgC/yr","HL",2.64423654941428 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2105,"Simulated","PgC/yr","HL",2.6276195779676 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2106,"Simulated","PgC/yr","HL",2.72259060433061 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2107,"Simulated","PgC/yr","HL",2.72396013649972 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2108,"Simulated","PgC/yr","HL",2.70659470638103 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2109,"Simulated","PgC/yr","HL",2.69659553630878 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2110,"Simulated","PgC/yr","HL",2.70954862704756 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2111,"Simulated","PgC/yr","HL",2.58065860862846 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2112,"Simulated","PgC/yr","HL",2.67334094801601 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2113,"Simulated","PgC/yr","HL",2.81241385423737 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2114,"Simulated","PgC/yr","HL",2.79641399319347 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2115,"Simulated","PgC/yr","HL",2.84792204711972 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2116,"Simulated","PgC/yr","HL",2.82591045505567 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2117,"Simulated","PgC/yr","HL",2.8822339516708 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2118,"Simulated","PgC/yr","HL",2.82775669085703 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2119,"Simulated","PgC/yr","HL",2.84033272147815 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2120,"Simulated","PgC/yr","HL",2.77425633279555 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2121,"Simulated","PgC/yr","HL",2.80897275604644 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2122,"Simulated","PgC/yr","HL",2.64546539173469 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2123,"Simulated","PgC/yr","HL",2.71325157254243 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2124,"Simulated","PgC/yr","HL",2.71767976429965 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2125,"Simulated","PgC/yr","HL",2.86973038906028 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2126,"Simulated","PgC/yr","HL",2.83482685114139 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2127,"Simulated","PgC/yr","HL",2.64825144704854 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2128,"Simulated","PgC/yr","HL",2.59325785165923 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2129,"Simulated","PgC/yr","HL",2.73305430567394 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2130,"Simulated","PgC/yr","HL",2.70970573542992 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2131,"Simulated","PgC/yr","HL",2.68712685472038 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2132,"Simulated","PgC/yr","HL",2.65243307772281 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2133,"Simulated","PgC/yr","HL",2.71340500090863 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2134,"Simulated","PgC/yr","HL",2.59306649081873 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2135,"Simulated","PgC/yr","HL",2.68950584363093 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2136,"Simulated","PgC/yr","HL",2.57504913168279 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2137,"Simulated","PgC/yr","HL",2.45404652021448 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2138,"Simulated","PgC/yr","HL",2.5546907161106 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2139,"Simulated","PgC/yr","HL",2.60813332622613 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2140,"Simulated","PgC/yr","HL",2.62956715575253 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2141,"Simulated","PgC/yr","HL",2.68870416626365 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2142,"Simulated","PgC/yr","HL",2.68165382145093 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2143,"Simulated","PgC/yr","HL",2.56244734094852 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2144,"Simulated","PgC/yr","HL",2.56823996946786 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2145,"Simulated","PgC/yr","HL",2.62191979908684 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2146,"Simulated","PgC/yr","HL",2.42417667825078 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2147,"Simulated","PgC/yr","HL",2.55877808175546 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2148,"Simulated","PgC/yr","HL",2.59873909419551 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2149,"Simulated","PgC/yr","HL",2.60780325708409 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2150,"Simulated","PgC/yr","HL",2.67179279352389 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2151,"Simulated","PgC/yr","HL",2.75041803732363 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2152,"Simulated","PgC/yr","HL",2.67030125466505 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2153,"Simulated","PgC/yr","HL",2.74087773695914 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2154,"Simulated","PgC/yr","HL",2.62128938401024 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2155,"Simulated","PgC/yr","HL",2.64337938872638 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2156,"Simulated","PgC/yr","HL",2.67540062475484 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2157,"Simulated","PgC/yr","HL",2.518346876481 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2158,"Simulated","PgC/yr","HL",2.50379467718014 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2159,"Simulated","PgC/yr","HL",2.47729884388192 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2160,"Simulated","PgC/yr","HL",2.46406097650772 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2161,"Simulated","PgC/yr","HL",2.52885162415847 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2162,"Simulated","PgC/yr","HL",2.58111238292922 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2163,"Simulated","PgC/yr","HL",2.73665845688873 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2164,"Simulated","PgC/yr","HL",2.76039824115874 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2165,"Simulated","PgC/yr","HL",2.70712830872472 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2166,"Simulated","PgC/yr","HL",2.53758911484301 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2167,"Simulated","PgC/yr","HL",2.61839830669665 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2168,"Simulated","PgC/yr","HL",2.56875064248007 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2169,"Simulated","PgC/yr","HL",2.52131693260302 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2170,"Simulated","PgC/yr","HL",2.51157055133337 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2171,"Simulated","PgC/yr","HL",2.52064235733245 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2172,"Simulated","PgC/yr","HL",2.3609919330381 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2173,"Simulated","PgC/yr","HL",2.4911294769366 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2174,"Simulated","PgC/yr","HL",2.40258149416953 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2175,"Simulated","PgC/yr","HL",2.45705422573264 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2176,"Simulated","PgC/yr","HL",2.32481227874502 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2177,"Simulated","PgC/yr","HL",2.3675367002456 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2178,"Simulated","PgC/yr","HL",2.49611986193231 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2179,"Simulated","PgC/yr","HL",2.50462834238023 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2180,"Simulated","PgC/yr","HL",2.55903370133973 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2181,"Simulated","PgC/yr","HL",2.54768509764818 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2182,"Simulated","PgC/yr","HL",2.44766140909284 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2183,"Simulated","PgC/yr","HL",2.41516941407364 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2184,"Simulated","PgC/yr","HL",2.55022713958258 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2185,"Simulated","PgC/yr","HL",2.52186100883887 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2186,"Simulated","PgC/yr","HL",2.55161252412901 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2187,"Simulated","PgC/yr","HL",2.51090560072047 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2188,"Simulated","PgC/yr","HL",2.43032938219779 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2189,"Simulated","PgC/yr","HL",2.39134498943188 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2190,"Simulated","PgC/yr","HL",2.45223708457476 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2191,"Simulated","PgC/yr","HL",2.53571457122502 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2192,"Simulated","PgC/yr","HL",2.45984311182815 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2193,"Simulated","PgC/yr","HL",2.56888793539078 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2194,"Simulated","PgC/yr","HL",2.57384746486636 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2195,"Simulated","PgC/yr","HL",2.55997946549372 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2196,"Simulated","PgC/yr","HL",2.48730226012667 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2197,"Simulated","PgC/yr","HL",2.34123930474204 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2198,"Simulated","PgC/yr","HL",2.28739840364637 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2199,"Simulated","PgC/yr","HL",2.31382827973181 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2200,"Simulated","PgC/yr","HL",2.28039193594945 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2201,"Simulated","PgC/yr","HL",2.36255027834421 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2202,"Simulated","PgC/yr","HL",2.24886608671221 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2203,"Simulated","PgC/yr","HL",2.18024397607905 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2204,"Simulated","PgC/yr","HL",2.2071887713492 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2205,"Simulated","PgC/yr","HL",2.20516561169383 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2206,"Simulated","PgC/yr","HL",2.12927122296549 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2207,"Simulated","PgC/yr","HL",2.22098656733657 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2208,"Simulated","PgC/yr","HL",2.16903181606371 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2209,"Simulated","PgC/yr","HL",2.13912149392221 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2210,"Simulated","PgC/yr","HL",2.18656737616041 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2211,"Simulated","PgC/yr","HL",2.02781544196626 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2212,"Simulated","PgC/yr","HL",2.11678294657595 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2213,"Simulated","PgC/yr","HL",2.06113544062222 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2214,"Simulated","PgC/yr","HL",2.14665392085232 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2215,"Simulated","PgC/yr","HL",2.11685881152455 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2216,"Simulated","PgC/yr","HL",2.03477322021855 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2217,"Simulated","PgC/yr","HL",2.09712769716914 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2218,"Simulated","PgC/yr","HL",2.14690218040427 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2219,"Simulated","PgC/yr","HL",2.18581212361242 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2220,"Simulated","PgC/yr","HL",2.14255834594064 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2221,"Simulated","PgC/yr","HL",2.01657808799411 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2222,"Simulated","PgC/yr","HL",2.05879240263881 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2223,"Simulated","PgC/yr","HL",2.05842411794431 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2224,"Simulated","PgC/yr","HL",2.11639965873863 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2225,"Simulated","PgC/yr","HL",2.1652694241539 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2226,"Simulated","PgC/yr","HL",2.12063677273352 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2227,"Simulated","PgC/yr","HL",1.97041624831875 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2228,"Simulated","PgC/yr","HL",2.07988597220917 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2229,"Simulated","PgC/yr","HL",2.14782303367962 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2230,"Simulated","PgC/yr","HL",2.07312493328253 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2231,"Simulated","PgC/yr","HL",2.00436128356616 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2232,"Simulated","PgC/yr","HL",2.03736763161374 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2233,"Simulated","PgC/yr","HL",1.95231538112372 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2234,"Simulated","PgC/yr","HL",1.96829995594664 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2235,"Simulated","PgC/yr","HL",2.02865816566767 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2236,"Simulated","PgC/yr","HL",1.98193922816082 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2237,"Simulated","PgC/yr","HL",1.98449174398737 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2238,"Simulated","PgC/yr","HL",2.06674038831723 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2239,"Simulated","PgC/yr","HL",2.01478195702821 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2240,"Simulated","PgC/yr","HL",1.97729108466829 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2241,"Simulated","PgC/yr","HL",2.00030477344145 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2242,"Simulated","PgC/yr","HL",1.8824177202727 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2243,"Simulated","PgC/yr","HL",1.85429871676826 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2244,"Simulated","PgC/yr","HL",1.85969984818345 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2245,"Simulated","PgC/yr","HL",1.90090159222689 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2246,"Simulated","PgC/yr","HL",1.95124109948218 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2247,"Simulated","PgC/yr","HL",1.92577538763155 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2248,"Simulated","PgC/yr","HL",1.89600886919858 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2249,"Simulated","PgC/yr","HL",1.85423332571182 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2250,"Simulated","PgC/yr","HL",1.86153362854548 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2251,"Simulated","PgC/yr","HL",1.89305919470454 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2252,"Simulated","PgC/yr","HL",1.7980083402986 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2253,"Simulated","PgC/yr","HL",1.8715684664667 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2254,"Simulated","PgC/yr","HL",1.82930602853371 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2255,"Simulated","PgC/yr","HL",1.83598667326108 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2256,"Simulated","PgC/yr","HL",1.75779680368128 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2257,"Simulated","PgC/yr","HL",1.78221937248868 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2258,"Simulated","PgC/yr","HL",1.77299810121773 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2259,"Simulated","PgC/yr","HL",1.8401595285122 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2260,"Simulated","PgC/yr","HL",1.85940629612487 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2261,"Simulated","PgC/yr","HL",1.8334293451057 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2262,"Simulated","PgC/yr","HL",1.83488691458456 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2263,"Simulated","PgC/yr","HL",1.77070573422611 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2264,"Simulated","PgC/yr","HL",1.77910154956379 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2265,"Simulated","PgC/yr","HL",1.82260075600585 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2266,"Simulated","PgC/yr","HL",1.81617714625358 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2267,"Simulated","PgC/yr","HL",1.78897927910265 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2268,"Simulated","PgC/yr","HL",1.69031549805877 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2269,"Simulated","PgC/yr","HL",1.68900031689761 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2270,"Simulated","PgC/yr","HL",1.65962869250679 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2271,"Simulated","PgC/yr","HL",1.7479454004119 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2272,"Simulated","PgC/yr","HL",1.75806742640837 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2273,"Simulated","PgC/yr","HL",1.77195863819066 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2274,"Simulated","PgC/yr","HL",1.7390751460673 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2275,"Simulated","PgC/yr","HL",1.76083819550124 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2276,"Simulated","PgC/yr","HL",1.75108303880843 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2277,"Simulated","PgC/yr","HL",1.77836696172195 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2278,"Simulated","PgC/yr","HL",1.75329501160079 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2279,"Simulated","PgC/yr","HL",1.65920265986633 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2280,"Simulated","PgC/yr","HL",1.71435732673234 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2281,"Simulated","PgC/yr","HL",1.72047011665789 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2282,"Simulated","PgC/yr","HL",1.60240359193163 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2283,"Simulated","PgC/yr","HL",1.69030785494827 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2284,"Simulated","PgC/yr","HL",1.65369226027891 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2285,"Simulated","PgC/yr","HL",1.72335468317365 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2286,"Simulated","PgC/yr","HL",1.84220505134271 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2287,"Simulated","PgC/yr","HL",1.70357940862428 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2288,"Simulated","PgC/yr","HL",1.66494744817555 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2289,"Simulated","PgC/yr","HL",1.5823978917548 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2290,"Simulated","PgC/yr","HL",1.55923049153728 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2291,"Simulated","PgC/yr","HL",1.54273411138949 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2292,"Simulated","PgC/yr","HL",1.60623165797605 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2293,"Simulated","PgC/yr","HL",1.54821988317643 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2294,"Simulated","PgC/yr","HL",1.55670798199636 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2295,"Simulated","PgC/yr","HL",1.53824619013915 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2296,"Simulated","PgC/yr","HL",1.58662877803003 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2297,"Simulated","PgC/yr","HL",1.47243617801115 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2298,"Simulated","PgC/yr","HL",1.63201102043507 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2299,"Simulated","PgC/yr","HL",1.63082831985579 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2300,"Simulated","PgC/yr","HL",1.62876354770997 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",2.044457271287 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",1.94920315118616 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",2.21876875337166 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",2.19347087189682 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",2.34950500026839 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",2.46785781625203 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",2.34835994797391 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",2.41848880092739 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",2.37736047265643 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",2.48812616423088 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",2.63821102780434 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",2.62176259536253 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",2.69896731807588 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",2.71716824712489 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",2.93650835068148 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",2.85670650705626 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",2.93035352989034 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",2.86144088322893 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",3.06874014919412 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",2.91879100528272 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",3.03454538268787 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",3.17128228338097 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",3.25656693782013 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",3.18112525304695 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",3.29143371430358 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",3.32109438996369 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",3.1974498248263 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",3.31247026192302 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",3.4211606285679 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",3.70750539751731 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",3.57247092209977 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",3.56608814498304 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",3.70828413849088 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",3.67878948882513 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",3.75799311180399 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",3.88424665685284 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",3.91254618289248 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",3.93407158482868 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",3.91340266619675 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",3.92227846856221 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",3.96702642704367 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",4.15360670304531 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",4.09417993839532 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",4.18011156714585 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",4.06257306913458 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",4.11098150549182 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",4.11431651971198 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",4.40523886250605 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",4.41516879816907 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",4.46315953420715 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",4.56351434180156 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",4.69854618188585 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",4.55054981990818 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",4.4829179452033 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",4.47753132405277 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",4.55323785981696 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",4.57292643448215 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",4.65415794639219 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",4.61351320177149 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",4.52128180890141 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",4.54330001815421 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",4.58558130471937 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",4.69162579678737 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",4.5986630989421 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",4.90616695850681 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",4.95624619614068 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",4.99902029002245 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",4.71987129849551 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",4.70574064164171 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",4.73682703258677 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",4.93619789848769 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",4.8244268272807 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",4.80954378278576 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",4.85330217363413 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",4.86641954485566 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",5.03185390690822 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",4.75800720586801 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",4.70741539591821 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",4.70093115847158 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",4.5965561500136 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",4.71465860933907 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",4.94457298753681 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",4.76360597134468 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",4.51306220451368 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",4.69631141929502 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",4.89963396739517 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",4.5474177263478 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",4.59052518988493 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",4.57739595966381 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",4.699887566507 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",4.53213279353317 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",4.65956433254205 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",4.68600858397799 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",4.64920088456041 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",4.38895513839198 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2101,"Simulated","PgC/yr","LL",4.35190367064934 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2102,"Simulated","PgC/yr","LL",4.32080278537143 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2103,"Simulated","PgC/yr","LL",4.28178272369559 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2104,"Simulated","PgC/yr","LL",4.33238375731176 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2105,"Simulated","PgC/yr","LL",4.45887975301905 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2106,"Simulated","PgC/yr","LL",4.32869429077029 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2107,"Simulated","PgC/yr","LL",4.30347810462602 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2108,"Simulated","PgC/yr","LL",4.32726198715223 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2109,"Simulated","PgC/yr","LL",4.16296872439427 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2110,"Simulated","PgC/yr","LL",4.21576630826923 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2111,"Simulated","PgC/yr","LL",4.30201944767552 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2112,"Simulated","PgC/yr","LL",4.46334400753422 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2113,"Simulated","PgC/yr","LL",4.12493295968503 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2114,"Simulated","PgC/yr","LL",4.22988642379005 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2115,"Simulated","PgC/yr","LL",4.24954600978956 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2116,"Simulated","PgC/yr","LL",4.256271380228 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2117,"Simulated","PgC/yr","LL",4.17695443791966 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2118,"Simulated","PgC/yr","LL",4.22758973086799 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2119,"Simulated","PgC/yr","LL",4.11704408961941 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2120,"Simulated","PgC/yr","LL",4.21513251062407 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2121,"Simulated","PgC/yr","LL",4.22173270273342 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2122,"Simulated","PgC/yr","LL",3.88260879724176 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2123,"Simulated","PgC/yr","LL",4.05511639372096 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2124,"Simulated","PgC/yr","LL",4.03784310197381 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2125,"Simulated","PgC/yr","LL",4.07717413297242 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2126,"Simulated","PgC/yr","LL",3.9598728149531 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2127,"Simulated","PgC/yr","LL",3.96284283551898 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2128,"Simulated","PgC/yr","LL",3.98891945796739 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2129,"Simulated","PgC/yr","LL",3.91390074417985 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2130,"Simulated","PgC/yr","LL",3.88618757978698 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2131,"Simulated","PgC/yr","LL",3.77812837545402 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2132,"Simulated","PgC/yr","LL",3.86140227062808 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2133,"Simulated","PgC/yr","LL",3.91583244344763 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2134,"Simulated","PgC/yr","LL",3.89338731020932 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2135,"Simulated","PgC/yr","LL",3.73649274553361 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2136,"Simulated","PgC/yr","LL",3.80208750764095 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2137,"Simulated","PgC/yr","LL",3.82831566175089 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2138,"Simulated","PgC/yr","LL",3.72194043536078 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2139,"Simulated","PgC/yr","LL",3.72805440848664 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2140,"Simulated","PgC/yr","LL",3.82263388327703 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2141,"Simulated","PgC/yr","LL",3.7503822693956 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2142,"Simulated","PgC/yr","LL",3.63656090892485 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2143,"Simulated","PgC/yr","LL",3.9580359876821 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2144,"Simulated","PgC/yr","LL",3.68340527500183 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2145,"Simulated","PgC/yr","LL",3.62446472933534 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2146,"Simulated","PgC/yr","LL",3.87855170171277 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2147,"Simulated","PgC/yr","LL",3.77062558170863 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2148,"Simulated","PgC/yr","LL",3.60020912215846 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2149,"Simulated","PgC/yr","LL",3.4296727549457 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2150,"Simulated","PgC/yr","LL",3.72212227335461 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2151,"Simulated","PgC/yr","LL",3.48718890299386 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2152,"Simulated","PgC/yr","LL",3.71558532924311 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2153,"Simulated","PgC/yr","LL",3.5800119281772 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2154,"Simulated","PgC/yr","LL",3.63188055708368 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2155,"Simulated","PgC/yr","LL",3.51221798047782 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2156,"Simulated","PgC/yr","LL",3.40800109201447 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2157,"Simulated","PgC/yr","LL",3.43613590972637 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2158,"Simulated","PgC/yr","LL",3.3510304579478 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2159,"Simulated","PgC/yr","LL",3.2488638587482 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2160,"Simulated","PgC/yr","LL",3.41886657097908 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2161,"Simulated","PgC/yr","LL",3.25124883533394 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2162,"Simulated","PgC/yr","LL",3.34326544854464 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2163,"Simulated","PgC/yr","LL",3.27037213101831 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2164,"Simulated","PgC/yr","LL",3.01569352632762 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2165,"Simulated","PgC/yr","LL",3.26937333971887 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2166,"Simulated","PgC/yr","LL",3.13084836541978 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2167,"Simulated","PgC/yr","LL",3.17706288685147 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2168,"Simulated","PgC/yr","LL",3.21419868525792 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2169,"Simulated","PgC/yr","LL",3.11975493012958 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2170,"Simulated","PgC/yr","LL",3.01122531881259 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2171,"Simulated","PgC/yr","LL",3.08340446102982 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2172,"Simulated","PgC/yr","LL",3.09610676726542 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2173,"Simulated","PgC/yr","LL",2.80173872625495 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2174,"Simulated","PgC/yr","LL",2.91757216365742 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2175,"Simulated","PgC/yr","LL",2.78999041065363 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2176,"Simulated","PgC/yr","LL",2.88249851351433 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2177,"Simulated","PgC/yr","LL",2.96327279510654 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2178,"Simulated","PgC/yr","LL",2.81074234228274 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2179,"Simulated","PgC/yr","LL",2.86896212430702 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2180,"Simulated","PgC/yr","LL",2.83950832230655 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2181,"Simulated","PgC/yr","LL",2.72549590017562 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2182,"Simulated","PgC/yr","LL",2.82846100534812 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2183,"Simulated","PgC/yr","LL",2.60822884148847 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2184,"Simulated","PgC/yr","LL",2.64330117396494 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2185,"Simulated","PgC/yr","LL",2.79464704449561 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2186,"Simulated","PgC/yr","LL",2.65476750890916 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2187,"Simulated","PgC/yr","LL",2.73013935735138 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2188,"Simulated","PgC/yr","LL",2.39933915191058 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2189,"Simulated","PgC/yr","LL",2.77469888950589 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2190,"Simulated","PgC/yr","LL",2.57104033641715 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2191,"Simulated","PgC/yr","LL",2.57014037011435 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2192,"Simulated","PgC/yr","LL",2.47825552356584 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2193,"Simulated","PgC/yr","LL",2.5861104895724 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2194,"Simulated","PgC/yr","LL",2.52492463998211 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2195,"Simulated","PgC/yr","LL",2.55716135388814 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2196,"Simulated","PgC/yr","LL",2.40713578531266 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2197,"Simulated","PgC/yr","LL",2.44852764690801 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2198,"Simulated","PgC/yr","LL",2.28700807238925 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2199,"Simulated","PgC/yr","LL",2.51007453715272 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2200,"Simulated","PgC/yr","LL",2.50155186944194 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2201,"Simulated","PgC/yr","LL",2.40015478754956 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2202,"Simulated","PgC/yr","LL",2.43790988926833 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2203,"Simulated","PgC/yr","LL",2.41822790293625 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2204,"Simulated","PgC/yr","LL",2.42169336615197 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2205,"Simulated","PgC/yr","LL",2.10879761477025 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2206,"Simulated","PgC/yr","LL",2.33293666016398 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2207,"Simulated","PgC/yr","LL",2.18037326567463 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2208,"Simulated","PgC/yr","LL",2.21370232521025 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2209,"Simulated","PgC/yr","LL",2.31840806799035 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2210,"Simulated","PgC/yr","LL",2.20143880195976 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2211,"Simulated","PgC/yr","LL",2.06899090612111 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2212,"Simulated","PgC/yr","LL",2.1304165710366 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2213,"Simulated","PgC/yr","LL",2.03272740301839 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2214,"Simulated","PgC/yr","LL",2.03316750367013 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2215,"Simulated","PgC/yr","LL",1.93427135302622 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2216,"Simulated","PgC/yr","LL",2.20147701429179 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2217,"Simulated","PgC/yr","LL",2.06774439349674 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2218,"Simulated","PgC/yr","LL",1.99699755489757 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2219,"Simulated","PgC/yr","LL",1.97666859425411 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2220,"Simulated","PgC/yr","LL",2.06935194677552 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2221,"Simulated","PgC/yr","LL",1.94628583728516 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2222,"Simulated","PgC/yr","LL",2.007455874876 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2223,"Simulated","PgC/yr","LL",1.88192704646921 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2224,"Simulated","PgC/yr","LL",1.80087869021963 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2225,"Simulated","PgC/yr","LL",1.85610736901208 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2226,"Simulated","PgC/yr","LL",1.94774581190229 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2227,"Simulated","PgC/yr","LL",1.96334830237281 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2228,"Simulated","PgC/yr","LL",1.82583134303951 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2229,"Simulated","PgC/yr","LL",1.73007650962233 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2230,"Simulated","PgC/yr","LL",1.69631657310133 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2231,"Simulated","PgC/yr","LL",1.68909839534628 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2232,"Simulated","PgC/yr","LL",1.66734635475111 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2233,"Simulated","PgC/yr","LL",1.97236904806668 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2234,"Simulated","PgC/yr","LL",1.61464627820618 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2235,"Simulated","PgC/yr","LL",1.77531332242053 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2236,"Simulated","PgC/yr","LL",1.6084163504176 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2237,"Simulated","PgC/yr","LL",1.5570207638284 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2238,"Simulated","PgC/yr","LL",1.51842762613808 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2239,"Simulated","PgC/yr","LL",1.6805454213032 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2240,"Simulated","PgC/yr","LL",1.60095308667087 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2241,"Simulated","PgC/yr","LL",1.55190953500185 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2242,"Simulated","PgC/yr","LL",1.66872990470416 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2243,"Simulated","PgC/yr","LL",1.49224427269329 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2244,"Simulated","PgC/yr","LL",1.59620421616536 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2245,"Simulated","PgC/yr","LL",1.4965609485468 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2246,"Simulated","PgC/yr","LL",1.59965518504825 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2247,"Simulated","PgC/yr","LL",1.38401113636623 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2248,"Simulated","PgC/yr","LL",1.4306446757837 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2249,"Simulated","PgC/yr","LL",1.4881871771643 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2250,"Simulated","PgC/yr","LL",1.41977656148585 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2251,"Simulated","PgC/yr","LL",1.28704404965686 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2252,"Simulated","PgC/yr","LL",1.43626584159294 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2253,"Simulated","PgC/yr","LL",1.38505868133068 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2254,"Simulated","PgC/yr","LL",1.59927306172788 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2255,"Simulated","PgC/yr","LL",1.38500597466581 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2256,"Simulated","PgC/yr","LL",1.29461957859978 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2257,"Simulated","PgC/yr","LL",1.40954751549964 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2258,"Simulated","PgC/yr","LL",1.39362878503985 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2259,"Simulated","PgC/yr","LL",1.38247078408517 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2260,"Simulated","PgC/yr","LL",1.43984989480465 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2261,"Simulated","PgC/yr","LL",1.30944214219677 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2262,"Simulated","PgC/yr","LL",1.1611226883634 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2263,"Simulated","PgC/yr","LL",1.39393711902939 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2264,"Simulated","PgC/yr","LL",1.15095069734192 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2265,"Simulated","PgC/yr","LL",1.32891158890273 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2266,"Simulated","PgC/yr","LL",1.40931297084094 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2267,"Simulated","PgC/yr","LL",1.13956342239502 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2268,"Simulated","PgC/yr","LL",1.19524445613879 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2269,"Simulated","PgC/yr","LL",1.34083383649814 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2270,"Simulated","PgC/yr","LL",1.29162452236809 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2271,"Simulated","PgC/yr","LL",1.1466441675214 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2272,"Simulated","PgC/yr","LL",1.31024104346966 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2273,"Simulated","PgC/yr","LL",1.2765701812123 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2274,"Simulated","PgC/yr","LL",1.06065996387265 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2275,"Simulated","PgC/yr","LL",1.31811462860246 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2276,"Simulated","PgC/yr","LL",1.24422844927649 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2277,"Simulated","PgC/yr","LL",1.34836957190908 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2278,"Simulated","PgC/yr","LL",1.24185493639037 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2279,"Simulated","PgC/yr","LL",1.390540174478 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2280,"Simulated","PgC/yr","LL",1.01334782614488 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2281,"Simulated","PgC/yr","LL",1.19896159367931 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2282,"Simulated","PgC/yr","LL",1.41498684331506 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2283,"Simulated","PgC/yr","LL",1.08027909750686 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2284,"Simulated","PgC/yr","LL",1.08335861616903 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2285,"Simulated","PgC/yr","LL",0.97550905259562 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2286,"Simulated","PgC/yr","LL",1.23272772323344 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2287,"Simulated","PgC/yr","LL",1.18712855211421 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2288,"Simulated","PgC/yr","LL",1.06827818521412 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2289,"Simulated","PgC/yr","LL",1.51111852938611 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2290,"Simulated","PgC/yr","LL",1.32692322997021 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2291,"Simulated","PgC/yr","LL",1.16190656823679 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2292,"Simulated","PgC/yr","LL",1.21576513727574 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2293,"Simulated","PgC/yr","LL",1.02702770924731 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2294,"Simulated","PgC/yr","LL",1.13415321501195 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2295,"Simulated","PgC/yr","LL",1.16968936613935 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2296,"Simulated","PgC/yr","LL",0.984687127684157 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2297,"Simulated","PgC/yr","LL",1.04130989776264 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2298,"Simulated","PgC/yr","LL",1.33930139021681 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2299,"Simulated","PgC/yr","LL",1.05685559680175 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2300,"Simulated","PgC/yr","LL",1.21537313145571 -"CanESM2","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",7.45447253465649 -"CanESM2","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",6.56552996394724 -"CanESM2","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",7.1222431519188 -"CanESM2","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",7.11500255106887 -"CanESM2","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",7.07447100667114 -"CanESM2","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",8.11171431841381 -"CanESM2","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",7.87290885203118 -"CanESM2","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",7.6126774907131 -"CanESM2","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",7.83085164540789 -"CanESM2","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",8.20911761284485 -"CanESM2","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",8.47865491211943 -"CanESM2","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",8.71748221505794 -"CanESM2","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",9.07960138635424 -"CanESM2","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",9.04822180991187 -"CanESM2","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",8.7367529756213 -"CanESM2","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",8.752711932817 -"CanESM2","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",9.29149753123376 -"CanESM2","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",8.87651027557799 -"CanESM2","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",9.35552008485151 -"CanESM2","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",9.85689788047126 -"CanESM2","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",9.76248329750968 -"CanESM2","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",10.3918984015949 -"CanESM2","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",9.83725946360993 -"CanESM2","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",10.1296342351822 -"CanESM2","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",10.3805645606277 -"CanESM2","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",10.5877076894515 -"CanESM2","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",10.7939372480804 -"CanESM2","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",10.5756476715902 -"CanESM2","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",11.1051391416164 -"CanESM2","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",11.0133912923361 -"CanESM2","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",10.870631020302 -"CanESM2","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",11.2415021940659 -"CanESM2","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",11.4548052370456 -"CanESM2","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",11.7050557325729 -"CanESM2","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",11.604014869012 -"CanESM2","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",11.71462816564 -"CanESM2","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",12.2904559159537 -"CanESM2","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",12.6874266760772 -"CanESM2","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",12.6053769314712 -"CanESM2","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",12.5738097389059 -"CanESM2","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",12.7181360039473 -"CanESM2","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",12.8232010328059 -"CanESM2","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",13.1965526610601 -"CanESM2","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",13.4219995029726 -"CanESM2","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",13.3460996455326 -"CanESM2","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",13.485196278263 -"CanESM2","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",13.6692606185645 -"CanESM2","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",13.7768011998294 -"CanESM2","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",13.8387501719267 -"CanESM2","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",14.2020725820163 -"CanESM2","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",14.1377951200319 -"CanESM2","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",14.1962613842884 -"CanESM2","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",14.6887782174832 -"CanESM2","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",14.4158123561136 -"CanESM2","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",14.7151001801976 -"CanESM2","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",14.9220505679925 -"CanESM2","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",15.1457616265346 -"CanESM2","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",15.0637386205685 -"CanESM2","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",15.3624025430559 -"CanESM2","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",15.0977457140203 -"CanESM2","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",14.9901004064159 -"CanESM2","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",15.0894010301665 -"CanESM2","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",15.1780485341559 -"CanESM2","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",15.4418408138363 -"CanESM2","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",15.3616182096202 -"CanESM2","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",15.4171855596727 -"CanESM2","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",15.418941397023 -"CanESM2","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",15.8682931526167 -"CanESM2","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",15.5838341325507 -"CanESM2","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",15.5779382624633 -"CanESM2","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",15.277979744163 -"CanESM2","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",15.6539807259825 -"CanESM2","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",15.817262458459 -"CanESM2","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",15.7741018372978 -"CanESM2","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",15.8102346526179 -"CanESM2","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",15.6227945590351 -"CanESM2","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",15.7858646106127 -"CanESM2","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",15.6138215171447 -"CanESM2","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",15.7569267176329 -"CanESM2","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",15.6828517723628 -"CanESM2","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",15.4078448614844 -"CanESM2","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",15.5744065337828 -"CanESM2","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",15.4687955910272 -"CanESM2","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",15.5198173723049 -"CanESM2","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",15.5576993403153 -"CanESM2","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",15.6789924953441 -"CanESM2","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",15.486001905772 -"CanESM2","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",15.5504776793352 -"CanESM2","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",15.7040154058057 -"CanESM2","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",15.3964542009075 -"CanESM2","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",15.4665718274795 -"CanESM2","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",15.3382575512695 -"CanESM2","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",15.1742895270368 -"CanESM2","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",15.7356360756507 -"CanESM2","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",14.9478689529896 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",-0.424690382505146 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",-0.655721801755657 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",-0.587241997879404 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",-0.619480755109476 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",-0.541133261809834 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",-0.455551797505107 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",-0.489347853193618 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",-0.5078669567055 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",-0.539356045600993 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",-0.468482000506791 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",-0.289010047705349 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",-0.218501060370869 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",-0.178373253115338 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",-0.10008308565746 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",-0.276947038925885 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",-0.33206730390262 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",-0.169143599517931 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",-0.171443332698223 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",-0.11892049035588 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.0403182995783385 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.0758232693191241 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",0.0983516155386864 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.0590612659047143 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.020033321419269 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.0381046913403781 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.178302121207957 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.238838104617988 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",0.0958414938685066 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",0.219370480575266 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",0.283892066828599 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.185092262550475 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",0.24344701232772 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",0.17776050756526 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.340934601770833 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",0.250323542346672 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",0.320584118695395 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.499975335687213 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",0.63273185119021 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",0.535952044461743 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",0.504083384137336 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.58278373044494 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.622734039673027 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",0.599519036006341 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",0.775446999597099 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",0.655500348044379 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",0.784037267182614 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",0.836200688044996 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",0.84257276936661 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",0.99891378167332 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",1.01084683754691 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.895352299632912 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",0.977276372380069 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.08209787312496 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",1.04342927846342 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",1.09048236176193 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",1.12820579311165 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",1.19351674051142 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",1.11361592301064 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",1.20328180253593 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",1.17381975073433 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.17683521016775 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",1.28809188937438 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",1.33715900551918 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.31779269518093 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",1.4125688459219 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",1.37402375843841 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",1.53584665824028 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.52684032107993 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",1.51623565573301 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",1.51032691708017 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",1.39502339563978 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.46448067440224 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.62078592502806 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.70901294427033 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",1.62435582321163 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.59591603133259 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.70983387057388 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",1.66381664857934 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",1.58971317110022 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.75953590583787 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",1.81074497416245 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.70250395343386 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",1.69637818981222 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",1.80892537472216 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.70142675720003 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",1.85279079182891 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.82675678575497 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",1.80842341739981 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",1.76685746310443 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.73273013747808 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.84368217891515 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.7730405183985 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.84694252956221 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",1.99609328769415 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.78281954671954 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",7.87916276523098 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",7.2212522087486 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",7.70948536004962 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",7.73448341839694 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",7.61560415086985 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",8.56726621527608 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",8.36225664815062 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",8.12054414407606 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",8.37020763626418 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",8.67759975888226 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",8.76766506271122 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",8.93598326140934 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",9.25797504814061 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",9.1483048928808 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",9.01369907343204 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",9.08477910551213 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",9.46064037760186 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",9.04795365602107 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",9.47444086547389 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",9.81658103451099 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",9.68665819060159 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",10.293547393854 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",9.77819857577931 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",10.1095997429579 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",10.3424594831651 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",10.409407087553 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",10.5550983955695 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",10.4798062836802 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",10.8857703665812 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",10.7294967058697 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",10.6855401161272 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",10.9980533009284 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",11.2770443233218 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",11.3641192590989 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",11.3536905212012 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",11.3940475938443 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",11.790479973404 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",12.0546955280829 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",12.0694273767808 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",12.0697270204593 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",12.1353527789998 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",12.2004664882164 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",12.5970354142625 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",12.6465505838884 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",12.6905982046219 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",12.7011596960481 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",12.8330579124606 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",12.9342293764781 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",12.8398321353686 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",13.1912269321684 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",13.2424470363952 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",13.2189837984844 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",13.6066809958733 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",13.3723880865028 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",13.6246178940433 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",13.7938482991297 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",13.952246016296 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",13.9501219598411 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",14.1591215290875 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",13.9239258957236 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",13.8132644509022 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",13.8013109439065 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",13.8408904601688 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",14.1240518398339 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",13.9490504492187 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",14.0431632184817 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",13.8830928068571 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",14.341452810951 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",14.0675993501079 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",14.0676126254608 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",13.8829543638918 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",14.1895012258296 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",14.1964764755091 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",14.0650865154627 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",14.1858808474613 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",14.0268762570222 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",14.0760329921213 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",13.9500043781445 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",14.1672138048849 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",13.9233171259718 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",13.5970999840785 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",13.8719054773683 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",13.7724180866829 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",13.7108925156919 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",13.856274697635 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",13.8262022304874 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",13.6592438072162 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",13.7420554582517 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",13.9371576295503 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",13.6637270835192 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",13.6228920981738 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",13.5652163795072 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",13.3273486072639 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",13.7395483130433 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",13.1650498328407 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",2.42710691832019 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",2.12961701603231 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",2.21765106705275 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",2.34071059357168 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",2.3636729281298 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",2.44076450764769 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",2.37602193088815 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",2.25414685174252 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",2.4649978453487 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",2.49742209219275 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",2.599182066043 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",2.62630704978324 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",2.64666815568693 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",2.80633849495785 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",2.75542889684839 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",2.94116732835723 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",2.97243901679573 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",2.73561787563827 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",2.79239732159578 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",2.87050137583949 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",2.86871103807908 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",3.07280157052381 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",3.03213060884317 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",3.13351247064732 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",3.35412490505786 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",3.12278183300191 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",3.17558313023353 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",3.27733171516672 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",3.35747552445425 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",3.41092029549925 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",3.49102879914393 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",3.46655287750973 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",3.50968042859827 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",3.55253350678588 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",3.62475746315619 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",3.69438019087206 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",3.58039990902615 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",3.61801977982884 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",3.7289022762369 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",3.83999546761039 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",3.99060934004239 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",3.82055686398783 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",3.90903280498984 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",4.08532412980491 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",4.02147216635876 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",4.10685373859803 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",4.06546413625146 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",4.15203471143085 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",4.15411774435947 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",4.29093508267595 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",4.29260355902391 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",4.45297203891005 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",4.42044301402912 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",4.2510009839285 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",4.30043457838815 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",4.41376796974556 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",4.45952294399776 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",4.68059549065716 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",4.38682406978643 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",4.6463592671103 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",4.66645956681352 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",4.64092333700188 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",4.47037088748879 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",4.41715389478481 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",4.66526714719829 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",4.64418853952039 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",4.81202245453342 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",4.71898639114421 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",4.83286303384496 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",4.61392021467408 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",4.84699440212178 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",4.75116805405508 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",4.70110009691569 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",4.79205084959288 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",4.8502630213154 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",4.58340247254435 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",4.7259131304946 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",4.81426607119246 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",4.74045905535207 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",4.85324236201593 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",4.80262090350786 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",4.73989074839123 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",4.4533626787649 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",4.58714373179559 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",4.761162967659 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",4.68999931946613 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",4.78323241112033 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",4.67451836451878 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",4.56963668850487 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",4.77552211427683 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",4.80191592954241 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",4.76267997141018 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",4.67669023100039 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",4.6736744457653 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",4.65289308882243 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.79692585267106 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.732798334608519 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.761029648457002 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.771157329832722 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.826525969869617 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.831026821263131 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.785608721342952 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.790287054324499 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.830293582372596 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.871663298341807 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",0.87878332193377 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.852991146227995 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.886418093180379 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.910398697470828 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",0.882617298597183 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.904938969041305 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.911878958577527 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.893201701528297 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.964712487685856 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.967277887897902 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.949828197652181 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",0.965443684602224 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.958865634987136 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.954058997962084 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.995532684449308 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.971842550984141 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.04577971294586 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.02806745885514 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.06627415683938 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.03303711348454 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.08214114694101 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.10677263049725 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.05505095632296 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.06735589265445 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.08812770470567 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.13893508494661 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.14653735477105 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",1.18399771119718 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",1.15636826923447 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",1.12844614430781 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",1.18600088785519 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",1.21763123786948 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.14722396858477 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.20790905853046 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.20385625030213 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.24521507574245 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",1.21276827639031 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.26450067092899 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",1.23543180734293 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",1.24851150270635 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",1.23834706579562 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",1.32502070129616 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.27618859073295 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",1.30100725525452 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",1.30484293356307 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",1.32385983898211 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",1.36815468294582 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",1.42393767357414 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",1.32075093331256 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",1.31301695615433 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.42872933612197 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",1.43271731167049 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",1.37795496779674 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.38264657361037 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",1.39448083489632 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",1.44427794841803 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",1.43509314861401 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.4261991599643 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",1.54127206168858 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",1.45372582256059 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",1.4461034733235 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.42027522274077 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.47408039122366 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.52943218497367 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",1.46471113308653 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.41138259540718 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.42824334627018 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",1.39753188463113 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",1.44098781754115 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.45960994128786 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",1.53165776665139 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.44004374481785 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",1.42613858139734 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",1.44522389295098 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.51069349853491 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",1.41636228974289 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.50947461012161 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",1.47030427049498 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",1.46987018081994 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.47424732261182 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.49081930429468 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.4839604832316 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.52257421473316 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",1.48873257686033 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.510016754263 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",1.63018089837867 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",1.39681839293637 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",1.4566217973556 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",1.56955310711976 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",1.5371462763938 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",1.60973784846356 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",1.59041367845425 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",1.46386012692797 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",1.6347038856342 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",1.62575865875101 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",1.72039846169163 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",1.77331615323608 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",1.76024996088168 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",1.89593957854782 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",1.872812185586 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",2.0362277441904 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",2.06056023377802 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",1.84241643250889 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",1.82768499811289 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",1.90322343829817 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",1.91888194461612 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",2.1073575069287 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",2.07326509089012 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",2.17945309067659 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",2.35859206032075 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",2.15093957453191 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",2.12980291594794 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",2.24926441570772 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",2.29120158454034 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",2.37788232487837 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",2.40888740735872 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",2.35977971985712 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",2.45462876787103 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",2.48517757984434 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",2.53662958714856 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",2.55544420665532 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",2.43386313180127 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",2.43402297178781 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",2.57253352303462 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",2.71154974987521 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",2.80460859003986 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",2.60292540120296 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",2.7618092540071 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",2.87741425081887 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",2.81761569003559 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",2.86163852851079 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",2.85269523908197 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",2.88753454378494 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",2.91868590407116 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",3.04242336565273 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",3.05425636829278 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",3.12795132063328 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",3.14425403053335 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",2.94999419816234 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",2.99559121832317 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",3.08990843510914 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",3.09136830698622 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",3.25665738397833 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",3.06607290257058 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",3.33334279715794 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",3.23773039211739 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",3.20820649351233 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",3.09241550107986 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",3.03450789577374 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",3.27078627006143 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",3.19991031384722 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",3.37692873966992 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",3.29278800202712 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",3.29159162394603 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",3.16019443646393 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",3.40089020674333 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",3.33089288609149 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",3.2270201442919 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",3.26261893111274 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",3.38555138039846 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",3.17202065801365 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",3.29766941834338 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",3.41673470868198 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",3.29947125091895 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",3.39363250262714 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",3.27096257841022 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",3.29984711706912 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",3.02722403602339 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",3.14191939800265 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",3.25046915468118 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",3.27363723418502 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",3.27375735635673 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",3.20421436875755 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",3.0997671717336 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",3.3012740522217 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",3.31109694594009 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",3.27871917702986 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",3.15411567333939 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",3.18494154128937 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",3.14287650046752 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2005,"Simulated","PgC/yr","global",4.61699736686587 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",2.34878106573365 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",2.22159602281071 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",2.29633500841078 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",2.33907879165601 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",2.38360932294608 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",2.38358209030301 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",2.43202896232607 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",2.50489262212646 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",2.57303012838676 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",2.60189930997648 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",2.62981964894973 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",2.60964542030344 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",2.63861923257443 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",2.75419342312956 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",2.74695985981114 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",2.82620771112554 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",2.89658202068986 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",2.8854493162025 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",2.95971015392213 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",3.06021895967105 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",3.0547391785664 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",3.12825154859068 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",3.19123807207898 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",3.17642924743644 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",3.19003668253045 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",3.23453625460524 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",3.36729882948849 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",3.34126642932855 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",3.42535022473355 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",3.40837138842736 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",3.41312506126993 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",3.49733355351425 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",3.51387466091549 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",3.4917408286057 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",3.58135571714808 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",3.70665454121411 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",3.75502630847418 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",3.81241724045991 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",3.77864847639265 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",3.78827105915689 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",3.83930331231527 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",3.88061523185377 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",3.98728893467514 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",3.96658094622466 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",4.01243097073636 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",4.14487420704718 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",4.18179565120385 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",4.17623073225718 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",4.21236013648959 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",4.22900960114431 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",4.23783240418047 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",4.21937612532285 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",4.25725644517501 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",4.31157524836295 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",4.45645692273154 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",4.54696504196665 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",4.65123510571276 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",4.64745578817333 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",4.71273071365778 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",4.72667325359126 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",4.64830687993414 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",4.61544481955143 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",4.60354931439868 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",4.59548357883989 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",4.69922934254205 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",4.83667621869289 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",4.8722661299331 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",4.72596749814662 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",4.83212206079324 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",4.75400106758317 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",4.76342585536089 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",4.70046513121866 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",4.62037192133146 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",4.75726325156366 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",4.72939508460134 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",4.79740646072531 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",4.79741563382613 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",4.93974603952809 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",4.92096411559121 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",4.83827205157684 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",4.70282605804321 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",4.77663827380067 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",4.774000433995 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",4.8618139548631 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",4.80863777604653 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",4.79771977945033 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",4.83782400293348 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",4.768619837043 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",4.9399071421113 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",4.93275413008449 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",4.87390696834296 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",4.79950308758236 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",4.88161036641921 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",4.99460376238943 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",4.54055361780956 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2101,"Simulated","PgC/yr","global",4.78268621383761 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2102,"Simulated","PgC/yr","global",4.87828139079835 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2103,"Simulated","PgC/yr","global",5.00837659995766 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2104,"Simulated","PgC/yr","global",4.91805595597065 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2105,"Simulated","PgC/yr","global",4.87913219589976 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2106,"Simulated","PgC/yr","global",4.70218652092014 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2107,"Simulated","PgC/yr","global",4.39836080861997 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2108,"Simulated","PgC/yr","global",4.54430942927814 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2109,"Simulated","PgC/yr","global",4.62951148300544 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2110,"Simulated","PgC/yr","global",4.81988313767839 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2111,"Simulated","PgC/yr","global",4.80994293629813 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2112,"Simulated","PgC/yr","global",4.66575899091096 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2113,"Simulated","PgC/yr","global",4.86338542169799 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2114,"Simulated","PgC/yr","global",4.61996228504779 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2115,"Simulated","PgC/yr","global",4.42773537073321 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2116,"Simulated","PgC/yr","global",4.63701049292895 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2117,"Simulated","PgC/yr","global",4.47209533967983 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2118,"Simulated","PgC/yr","global",4.82143912490564 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2119,"Simulated","PgC/yr","global",4.59984682157865 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2120,"Simulated","PgC/yr","global",4.7355284491397 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2121,"Simulated","PgC/yr","global",4.84331697037057 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2122,"Simulated","PgC/yr","global",4.74852902628233 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2123,"Simulated","PgC/yr","global",4.82029478057787 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2124,"Simulated","PgC/yr","global",4.80507889958627 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2125,"Simulated","PgC/yr","global",4.54166069641525 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2126,"Simulated","PgC/yr","global",4.79500912815687 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2127,"Simulated","PgC/yr","global",4.53897412451145 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2128,"Simulated","PgC/yr","global",4.35861261611254 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2129,"Simulated","PgC/yr","global",4.7061298076368 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2130,"Simulated","PgC/yr","global",4.77579033529326 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2131,"Simulated","PgC/yr","global",4.48936714189357 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2132,"Simulated","PgC/yr","global",4.69015141263923 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2133,"Simulated","PgC/yr","global",4.48556374496448 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2134,"Simulated","PgC/yr","global",4.56417607238743 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2135,"Simulated","PgC/yr","global",4.37789447404432 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2136,"Simulated","PgC/yr","global",4.59363663232089 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2137,"Simulated","PgC/yr","global",4.37332856310924 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2138,"Simulated","PgC/yr","global",4.4486408675108 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2139,"Simulated","PgC/yr","global",4.24162232811773 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2140,"Simulated","PgC/yr","global",4.28978569399345 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2141,"Simulated","PgC/yr","global",4.29685586145345 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2142,"Simulated","PgC/yr","global",4.43558639840083 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2143,"Simulated","PgC/yr","global",4.45669714330936 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2144,"Simulated","PgC/yr","global",4.73186494199817 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2145,"Simulated","PgC/yr","global",4.81358695060041 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2146,"Simulated","PgC/yr","global",4.67363180469304 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2147,"Simulated","PgC/yr","global",4.43595102915858 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2148,"Simulated","PgC/yr","global",4.35726531692904 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2149,"Simulated","PgC/yr","global",4.4795771500393 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2150,"Simulated","PgC/yr","global",4.30415764970925 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2151,"Simulated","PgC/yr","global",4.54062298938455 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2152,"Simulated","PgC/yr","global",4.48125124093966 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2153,"Simulated","PgC/yr","global",4.41664967838756 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2154,"Simulated","PgC/yr","global",4.43421731310287 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2155,"Simulated","PgC/yr","global",4.33655245526874 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2156,"Simulated","PgC/yr","global",4.46982041067551 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2157,"Simulated","PgC/yr","global",4.55672407460564 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2158,"Simulated","PgC/yr","global",4.19829318637619 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2159,"Simulated","PgC/yr","global",4.16730645179316 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2160,"Simulated","PgC/yr","global",4.25405990619729 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2161,"Simulated","PgC/yr","global",4.31102142240071 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2162,"Simulated","PgC/yr","global",4.07500671130339 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2163,"Simulated","PgC/yr","global",4.22107916882267 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2164,"Simulated","PgC/yr","global",4.37278620352302 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2165,"Simulated","PgC/yr","global",4.14989131987904 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2166,"Simulated","PgC/yr","global",4.16253758600235 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2167,"Simulated","PgC/yr","global",4.19360343857998 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2168,"Simulated","PgC/yr","global",4.05563541563858 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2169,"Simulated","PgC/yr","global",4.14673921310844 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2170,"Simulated","PgC/yr","global",4.19385684549024 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2171,"Simulated","PgC/yr","global",3.89628374803914 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2172,"Simulated","PgC/yr","global",4.08652812593817 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2173,"Simulated","PgC/yr","global",3.84472174830817 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2174,"Simulated","PgC/yr","global",4.00747892958847 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2175,"Simulated","PgC/yr","global",3.98625810747006 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2176,"Simulated","PgC/yr","global",4.13862331215452 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2177,"Simulated","PgC/yr","global",4.06316309150217 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2178,"Simulated","PgC/yr","global",4.0317371947172 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2179,"Simulated","PgC/yr","global",3.96186797901699 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2180,"Simulated","PgC/yr","global",4.03394791201575 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2181,"Simulated","PgC/yr","global",4.00905555629258 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2182,"Simulated","PgC/yr","global",3.99097881448154 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2183,"Simulated","PgC/yr","global",3.91582589270679 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2184,"Simulated","PgC/yr","global",3.82965951675538 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2185,"Simulated","PgC/yr","global",3.81865982222996 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2186,"Simulated","PgC/yr","global",3.73196369970597 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2187,"Simulated","PgC/yr","global",3.82917334241171 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2188,"Simulated","PgC/yr","global",4.03790725165885 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2189,"Simulated","PgC/yr","global",3.79206012311594 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2190,"Simulated","PgC/yr","global",3.64972341090718 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2191,"Simulated","PgC/yr","global",3.66916923801618 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2192,"Simulated","PgC/yr","global",3.84803323770559 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2193,"Simulated","PgC/yr","global",3.88167558497713 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2194,"Simulated","PgC/yr","global",3.7057664703906 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2195,"Simulated","PgC/yr","global",3.63019273261556 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2196,"Simulated","PgC/yr","global",3.56909988112859 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2197,"Simulated","PgC/yr","global",3.91263021370727 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2198,"Simulated","PgC/yr","global",3.70340439692846 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2199,"Simulated","PgC/yr","global",3.78761690240438 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2200,"Simulated","PgC/yr","global",3.6450428362118 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2201,"Simulated","PgC/yr","global",3.64740376303634 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2202,"Simulated","PgC/yr","global",3.27517079797977 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2203,"Simulated","PgC/yr","global",3.4879775639927 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2204,"Simulated","PgC/yr","global",3.39563425127402 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2205,"Simulated","PgC/yr","global",3.56967778648049 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2206,"Simulated","PgC/yr","global",3.54808430714111 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2207,"Simulated","PgC/yr","global",3.31516895748465 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2208,"Simulated","PgC/yr","global",3.2457056514959 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2209,"Simulated","PgC/yr","global",3.39707786801618 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2210,"Simulated","PgC/yr","global",3.29522319638075 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2211,"Simulated","PgC/yr","global",3.35547326922952 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2212,"Simulated","PgC/yr","global",3.32666973264257 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2213,"Simulated","PgC/yr","global",3.43009185788128 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2214,"Simulated","PgC/yr","global",3.30322787348718 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2215,"Simulated","PgC/yr","global",3.19375150170471 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2216,"Simulated","PgC/yr","global",3.44851373761082 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2217,"Simulated","PgC/yr","global",3.33884931726147 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2218,"Simulated","PgC/yr","global",3.24759760354082 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2219,"Simulated","PgC/yr","global",3.27351161336825 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2220,"Simulated","PgC/yr","global",3.33056486057991 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2221,"Simulated","PgC/yr","global",3.13000418416684 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2222,"Simulated","PgC/yr","global",3.06219088968878 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2223,"Simulated","PgC/yr","global",3.18772936101384 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2224,"Simulated","PgC/yr","global",3.25382957891304 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2225,"Simulated","PgC/yr","global",3.30552000205554 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2226,"Simulated","PgC/yr","global",3.1574283157174 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2227,"Simulated","PgC/yr","global",3.07474313152865 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2228,"Simulated","PgC/yr","global",2.98195607005761 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2229,"Simulated","PgC/yr","global",3.18240322934798 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2230,"Simulated","PgC/yr","global",3.17313381096547 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2231,"Simulated","PgC/yr","global",2.81146023159477 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2232,"Simulated","PgC/yr","global",3.11634314376489 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2233,"Simulated","PgC/yr","global",3.01953367758259 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2234,"Simulated","PgC/yr","global",3.22493775123066 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2235,"Simulated","PgC/yr","global",2.82955761288266 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2236,"Simulated","PgC/yr","global",3.00598615430334 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2237,"Simulated","PgC/yr","global",2.88629438811589 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2238,"Simulated","PgC/yr","global",3.07936522770627 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2239,"Simulated","PgC/yr","global",2.8044370762765 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2240,"Simulated","PgC/yr","global",3.00664661756266 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2241,"Simulated","PgC/yr","global",3.07971151226237 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2242,"Simulated","PgC/yr","global",2.62743062950392 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2243,"Simulated","PgC/yr","global",2.85195832509455 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2244,"Simulated","PgC/yr","global",2.6784628826623 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2245,"Simulated","PgC/yr","global",2.79157868219664 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2246,"Simulated","PgC/yr","global",2.52650817423971 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2247,"Simulated","PgC/yr","global",2.78146763181353 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2248,"Simulated","PgC/yr","global",2.60658934443209 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2249,"Simulated","PgC/yr","global",2.49540218934597 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2250,"Simulated","PgC/yr","global",2.65885881956409 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2251,"Simulated","PgC/yr","global",2.69469124465733 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2252,"Simulated","PgC/yr","global",2.6101313079877 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2253,"Simulated","PgC/yr","global",2.26456225375091 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2254,"Simulated","PgC/yr","global",2.47117603007013 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2255,"Simulated","PgC/yr","global",2.53485110943902 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2256,"Simulated","PgC/yr","global",2.49090278339186 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2257,"Simulated","PgC/yr","global",2.52398327823794 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2258,"Simulated","PgC/yr","global",2.59519405993363 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2259,"Simulated","PgC/yr","global",2.43934995676172 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2260,"Simulated","PgC/yr","global",2.51601873344762 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2261,"Simulated","PgC/yr","global",2.60006841638392 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2262,"Simulated","PgC/yr","global",2.43777562333282 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2263,"Simulated","PgC/yr","global",2.5436446732163 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2264,"Simulated","PgC/yr","global",2.63903460204611 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2265,"Simulated","PgC/yr","global",2.55166310997396 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2266,"Simulated","PgC/yr","global",2.43671154363725 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2267,"Simulated","PgC/yr","global",2.54919783912755 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2268,"Simulated","PgC/yr","global",2.46930013095165 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2269,"Simulated","PgC/yr","global",2.34344174773536 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2270,"Simulated","PgC/yr","global",2.46981153132258 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2271,"Simulated","PgC/yr","global",2.56909773472733 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2272,"Simulated","PgC/yr","global",2.42793403278641 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2273,"Simulated","PgC/yr","global",2.4750459319802 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2274,"Simulated","PgC/yr","global",2.49251266258645 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2275,"Simulated","PgC/yr","global",2.45322541839542 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2276,"Simulated","PgC/yr","global",2.51357639535326 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2277,"Simulated","PgC/yr","global",2.32909845795964 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2278,"Simulated","PgC/yr","global",2.53307038124158 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2279,"Simulated","PgC/yr","global",2.33143645203212 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2280,"Simulated","PgC/yr","global",2.32403031975445 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2281,"Simulated","PgC/yr","global",2.28216428759431 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2282,"Simulated","PgC/yr","global",2.53521918010958 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2283,"Simulated","PgC/yr","global",2.40865790804266 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2284,"Simulated","PgC/yr","global",2.32342030854966 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2285,"Simulated","PgC/yr","global",2.32317492810263 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2286,"Simulated","PgC/yr","global",2.37008043252788 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2287,"Simulated","PgC/yr","global",2.34044902359157 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2288,"Simulated","PgC/yr","global",2.30434828529924 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2289,"Simulated","PgC/yr","global",2.22030548218855 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2290,"Simulated","PgC/yr","global",2.27931718642611 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2291,"Simulated","PgC/yr","global",2.41630254094175 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2292,"Simulated","PgC/yr","global",2.26427444771256 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2293,"Simulated","PgC/yr","global",2.26035753366077 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2294,"Simulated","PgC/yr","global",2.25264983569352 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2295,"Simulated","PgC/yr","global",2.2353505141773 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2296,"Simulated","PgC/yr","global",2.32874414694032 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2297,"Simulated","PgC/yr","global",2.16575878477702 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2298,"Simulated","PgC/yr","global",2.4356165047264 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2299,"Simulated","PgC/yr","global",2.1435369480312 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2005,"Simulated","PgC/yr","HL",1.78181482662779 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.945700707130434 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.857431327396449 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.891291402099205 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.903577464420661 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.943220940258782 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.943805054300603 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.944230069552903 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.979842666816381 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.00968801190016 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.998392854911681 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.03100693393422 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.02127452672293 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.03717691761174 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",1.08680468828256 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.05120296224343 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.08061079693323 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.09582996971428 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.07182111884079 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.08784634103209 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.13695896903879 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.13806530782863 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.14224860908822 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.14586286265011 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",1.19485509523031 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.17990089162693 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.16315870993446 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.24952950476566 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.20767461439466 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.23203572000231 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.24677525075643 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.23698875807629 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.26595317311739 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.29046264161665 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.27709604274737 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.30780179336314 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.32137129168103 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.3183222515676 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",1.37411725427825 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",1.34524116229637 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",1.33904709051179 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",1.32323112811198 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",1.37869625006056 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.41727091764268 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.38294933465652 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.40143781389329 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.43652160052179 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",1.48083045552242 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.45158853105315 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",1.5113079555357 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",1.48478113062449 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",1.45891591669879 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",1.49168656841722 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.46384802428274 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",1.51918034588079 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",1.56882769377719 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",1.58441572133622 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",1.55955011874473 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",1.5629884479292 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",1.57126018661102 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",1.60931023867793 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.63659313243268 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",1.5729552856506 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",1.61374921669936 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.59031324777283 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",1.6278759442055 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",1.67750353444106 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",1.72948517328164 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.66293289108925 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",1.6326736726304 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",1.65840134978001 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",1.62134513511902 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.63946006826109 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.6326663198936 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.72228937004855 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",1.722001485593 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.69549929009463 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.6963997973629 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",1.72262759594132 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",1.73580081332189 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.69209240175401 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",1.70258854630734 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.75210309385321 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",1.74408175420191 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",1.73264247455039 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.76724495012583 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",1.77154580495658 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.74165102061186 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",1.74910326745664 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",1.78391825065822 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.807008686064 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.77567948651997 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.74635023138541 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.77178240068979 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",1.83676083633656 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.68783913672279 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2101,"Simulated","PgC/yr","HL",1.89377630313829 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2102,"Simulated","PgC/yr","HL",1.79263656660577 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2103,"Simulated","PgC/yr","HL",1.75452178338973 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2104,"Simulated","PgC/yr","HL",1.83990916095119 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2105,"Simulated","PgC/yr","HL",1.7976905582071 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2106,"Simulated","PgC/yr","HL",1.64345900979491 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2107,"Simulated","PgC/yr","HL",1.61011150655382 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2108,"Simulated","PgC/yr","HL",1.74332631688178 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2109,"Simulated","PgC/yr","HL",1.911116131517 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2110,"Simulated","PgC/yr","HL",1.79298625013749 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2111,"Simulated","PgC/yr","HL",1.89040035944458 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2112,"Simulated","PgC/yr","HL",1.71111447316011 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2113,"Simulated","PgC/yr","HL",1.68045509440587 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2114,"Simulated","PgC/yr","HL",1.75132068146187 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2115,"Simulated","PgC/yr","HL",1.73633300711797 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2116,"Simulated","PgC/yr","HL",1.96421281514867 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2117,"Simulated","PgC/yr","HL",1.75136597071185 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2118,"Simulated","PgC/yr","HL",1.80950401547673 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2119,"Simulated","PgC/yr","HL",1.79144785912025 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2120,"Simulated","PgC/yr","HL",1.90292978382146 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2121,"Simulated","PgC/yr","HL",1.89189075468296 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2122,"Simulated","PgC/yr","HL",2.02425264754217 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2123,"Simulated","PgC/yr","HL",1.90847816803213 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2124,"Simulated","PgC/yr","HL",1.88586963009402 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2125,"Simulated","PgC/yr","HL",1.72953366525746 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2126,"Simulated","PgC/yr","HL",1.87499840574628 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2127,"Simulated","PgC/yr","HL",1.85079842882482 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2128,"Simulated","PgC/yr","HL",1.77199495342475 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2129,"Simulated","PgC/yr","HL",1.84037287956653 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2130,"Simulated","PgC/yr","HL",1.92543186495682 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2131,"Simulated","PgC/yr","HL",1.9077871009906 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2132,"Simulated","PgC/yr","HL",1.93850079075776 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2133,"Simulated","PgC/yr","HL",1.85443239493873 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2134,"Simulated","PgC/yr","HL",2.00754253821697 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2135,"Simulated","PgC/yr","HL",1.8476011160374 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2136,"Simulated","PgC/yr","HL",1.93386360460445 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2137,"Simulated","PgC/yr","HL",1.76076899335805 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2138,"Simulated","PgC/yr","HL",1.81725912290354 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2139,"Simulated","PgC/yr","HL",1.83733434980693 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2140,"Simulated","PgC/yr","HL",1.78851127528192 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2141,"Simulated","PgC/yr","HL",1.91290424493254 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2142,"Simulated","PgC/yr","HL",1.86748327721378 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2143,"Simulated","PgC/yr","HL",1.84134362125932 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2144,"Simulated","PgC/yr","HL",1.8832370796669 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2145,"Simulated","PgC/yr","HL",2.04335532840018 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2146,"Simulated","PgC/yr","HL",2.09167769508178 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2147,"Simulated","PgC/yr","HL",1.84789883421456 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2148,"Simulated","PgC/yr","HL",1.83251311968956 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2149,"Simulated","PgC/yr","HL",1.84154570874927 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2150,"Simulated","PgC/yr","HL",1.73458152205999 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2151,"Simulated","PgC/yr","HL",1.87930539537583 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2152,"Simulated","PgC/yr","HL",1.91857171641407 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2153,"Simulated","PgC/yr","HL",2.0045635520928 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2154,"Simulated","PgC/yr","HL",1.85264067281802 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2155,"Simulated","PgC/yr","HL",1.87081591644536 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2156,"Simulated","PgC/yr","HL",1.94595637565483 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2157,"Simulated","PgC/yr","HL",2.00277182997208 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2158,"Simulated","PgC/yr","HL",1.81919338887877 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2159,"Simulated","PgC/yr","HL",1.90691740304278 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2160,"Simulated","PgC/yr","HL",1.89539300305789 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2161,"Simulated","PgC/yr","HL",1.89919116525739 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2162,"Simulated","PgC/yr","HL",1.84147714335089 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2163,"Simulated","PgC/yr","HL",1.84403571532186 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2164,"Simulated","PgC/yr","HL",1.84829759613669 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2165,"Simulated","PgC/yr","HL",1.91144813239335 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2166,"Simulated","PgC/yr","HL",1.98705411457074 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2167,"Simulated","PgC/yr","HL",1.9381543550607 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2168,"Simulated","PgC/yr","HL",1.98000811771134 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2169,"Simulated","PgC/yr","HL",1.84306858233425 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2170,"Simulated","PgC/yr","HL",2.09908275810636 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2171,"Simulated","PgC/yr","HL",1.93548571758182 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2172,"Simulated","PgC/yr","HL",2.01721025938795 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2173,"Simulated","PgC/yr","HL",1.94961560270499 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2174,"Simulated","PgC/yr","HL",1.8812667266399 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2175,"Simulated","PgC/yr","HL",2.02959894426289 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2176,"Simulated","PgC/yr","HL",2.05447555340517 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2177,"Simulated","PgC/yr","HL",1.9175486484962 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2178,"Simulated","PgC/yr","HL",1.98203079696342 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2179,"Simulated","PgC/yr","HL",1.89635652734033 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2180,"Simulated","PgC/yr","HL",1.88016246285553 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2181,"Simulated","PgC/yr","HL",2.09412981025001 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2182,"Simulated","PgC/yr","HL",1.90144480164084 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2183,"Simulated","PgC/yr","HL",1.96979367770594 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2184,"Simulated","PgC/yr","HL",1.99393591534456 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2185,"Simulated","PgC/yr","HL",1.83895826713688 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2186,"Simulated","PgC/yr","HL",1.92636651959784 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2187,"Simulated","PgC/yr","HL",1.83393675388215 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2188,"Simulated","PgC/yr","HL",1.93829148585746 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2189,"Simulated","PgC/yr","HL",1.92016495975001 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2190,"Simulated","PgC/yr","HL",1.89148657970306 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2191,"Simulated","PgC/yr","HL",1.80488126414413 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2192,"Simulated","PgC/yr","HL",1.9354406087671 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2193,"Simulated","PgC/yr","HL",1.94158623368467 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2194,"Simulated","PgC/yr","HL",1.94096914509929 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2195,"Simulated","PgC/yr","HL",1.83893481055322 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2196,"Simulated","PgC/yr","HL",1.70859649912239 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2197,"Simulated","PgC/yr","HL",2.07185868624601 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2198,"Simulated","PgC/yr","HL",1.8240867930997 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2199,"Simulated","PgC/yr","HL",1.89765746555688 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2200,"Simulated","PgC/yr","HL",1.93195640391805 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2201,"Simulated","PgC/yr","HL",1.87996578842334 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2202,"Simulated","PgC/yr","HL",1.74103244343559 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2203,"Simulated","PgC/yr","HL",1.88771548279239 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2204,"Simulated","PgC/yr","HL",1.75700475298722 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2205,"Simulated","PgC/yr","HL",1.93699776505126 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2206,"Simulated","PgC/yr","HL",1.82625923361665 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2207,"Simulated","PgC/yr","HL",1.69108110723679 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2208,"Simulated","PgC/yr","HL",1.61567649080831 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2209,"Simulated","PgC/yr","HL",1.82419505425503 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2210,"Simulated","PgC/yr","HL",1.74770259365074 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2211,"Simulated","PgC/yr","HL",1.81184967384221 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2212,"Simulated","PgC/yr","HL",1.76389142551303 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2213,"Simulated","PgC/yr","HL",1.77993879613236 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2214,"Simulated","PgC/yr","HL",1.79117810840822 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2215,"Simulated","PgC/yr","HL",1.71264727068433 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2216,"Simulated","PgC/yr","HL",1.8182677560007 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2217,"Simulated","PgC/yr","HL",1.74010248011131 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2218,"Simulated","PgC/yr","HL",1.81105575870312 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2219,"Simulated","PgC/yr","HL",1.81752616708669 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2220,"Simulated","PgC/yr","HL",1.81765247176791 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2221,"Simulated","PgC/yr","HL",1.76049852090499 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2222,"Simulated","PgC/yr","HL",1.7517984740274 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2223,"Simulated","PgC/yr","HL",1.75601253949862 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2224,"Simulated","PgC/yr","HL",1.68151587329285 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2225,"Simulated","PgC/yr","HL",1.91223663447467 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2226,"Simulated","PgC/yr","HL",1.64557172624117 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2227,"Simulated","PgC/yr","HL",1.68892797329253 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2228,"Simulated","PgC/yr","HL",1.65534319768601 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2229,"Simulated","PgC/yr","HL",1.65671270130094 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2230,"Simulated","PgC/yr","HL",1.77725933253794 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2231,"Simulated","PgC/yr","HL",1.57507585103063 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2232,"Simulated","PgC/yr","HL",1.78383096510174 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2233,"Simulated","PgC/yr","HL",1.71900707225419 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2234,"Simulated","PgC/yr","HL",1.81670879536395 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2235,"Simulated","PgC/yr","HL",1.61530912462122 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2236,"Simulated","PgC/yr","HL",1.71940475156477 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2237,"Simulated","PgC/yr","HL",1.60381269210146 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2238,"Simulated","PgC/yr","HL",1.76197249653481 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2239,"Simulated","PgC/yr","HL",1.61354212213098 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2240,"Simulated","PgC/yr","HL",1.744767814165 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2241,"Simulated","PgC/yr","HL",1.79557657871402 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2242,"Simulated","PgC/yr","HL",1.57412549852209 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2243,"Simulated","PgC/yr","HL",1.68848590690826 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2244,"Simulated","PgC/yr","HL",1.548303228188 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2245,"Simulated","PgC/yr","HL",1.59075332936924 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2246,"Simulated","PgC/yr","HL",1.51024095163229 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2247,"Simulated","PgC/yr","HL",1.52259300814968 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2248,"Simulated","PgC/yr","HL",1.4754562815542 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2249,"Simulated","PgC/yr","HL",1.55987327829339 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2250,"Simulated","PgC/yr","HL",1.56096617465645 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2251,"Simulated","PgC/yr","HL",1.59166380568557 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2252,"Simulated","PgC/yr","HL",1.49159657633185 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2253,"Simulated","PgC/yr","HL",1.40221688823233 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2254,"Simulated","PgC/yr","HL",1.53091323880732 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2255,"Simulated","PgC/yr","HL",1.58748745118345 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2256,"Simulated","PgC/yr","HL",1.56445182298756 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2257,"Simulated","PgC/yr","HL",1.49592612036876 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2258,"Simulated","PgC/yr","HL",1.48103191148896 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2259,"Simulated","PgC/yr","HL",1.4611663503564 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2260,"Simulated","PgC/yr","HL",1.49466668226176 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2261,"Simulated","PgC/yr","HL",1.5264362791639 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2262,"Simulated","PgC/yr","HL",1.4898752239621 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2263,"Simulated","PgC/yr","HL",1.51977695506429 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2264,"Simulated","PgC/yr","HL",1.53119056780023 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2265,"Simulated","PgC/yr","HL",1.47649865604477 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2266,"Simulated","PgC/yr","HL",1.52287250236569 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2267,"Simulated","PgC/yr","HL",1.57121579953733 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2268,"Simulated","PgC/yr","HL",1.43594583161069 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2269,"Simulated","PgC/yr","HL",1.50674610110298 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2270,"Simulated","PgC/yr","HL",1.52666326671958 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2271,"Simulated","PgC/yr","HL",1.48981189118624 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2272,"Simulated","PgC/yr","HL",1.52296398304195 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2273,"Simulated","PgC/yr","HL",1.513743741313 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2274,"Simulated","PgC/yr","HL",1.48198027920965 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2275,"Simulated","PgC/yr","HL",1.41462975143196 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2276,"Simulated","PgC/yr","HL",1.44994165333651 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2277,"Simulated","PgC/yr","HL",1.40791467283735 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2278,"Simulated","PgC/yr","HL",1.44640602443869 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2279,"Simulated","PgC/yr","HL",1.31103158449716 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2280,"Simulated","PgC/yr","HL",1.40503113696513 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2281,"Simulated","PgC/yr","HL",1.43239919616208 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2282,"Simulated","PgC/yr","HL",1.51149858538671 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2283,"Simulated","PgC/yr","HL",1.4727376635086 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2284,"Simulated","PgC/yr","HL",1.40118299419892 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2285,"Simulated","PgC/yr","HL",1.36012242494635 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2286,"Simulated","PgC/yr","HL",1.40819723445276 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2287,"Simulated","PgC/yr","HL",1.47647718424896 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2288,"Simulated","PgC/yr","HL",1.3537844560428 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2289,"Simulated","PgC/yr","HL",1.39921209986614 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2290,"Simulated","PgC/yr","HL",1.36525779284943 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2291,"Simulated","PgC/yr","HL",1.45587851465956 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2292,"Simulated","PgC/yr","HL",1.44288681514942 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2293,"Simulated","PgC/yr","HL",1.44802073957044 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2294,"Simulated","PgC/yr","HL",1.2367485536379 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2295,"Simulated","PgC/yr","HL",1.27107491815843 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2296,"Simulated","PgC/yr","HL",1.36699754961559 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2297,"Simulated","PgC/yr","HL",1.30680777552195 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2298,"Simulated","PgC/yr","HL",1.45098691479122 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2299,"Simulated","PgC/yr","HL",1.32204210486475 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2005,"Simulated","PgC/yr","LL",2.83518285337698 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",1.40307991290716 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",1.36416466419501 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",1.40504371917154 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",1.4355015572152 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",1.44038836712107 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",1.43977724413843 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",1.48779870839313 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",1.52504967356756 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",1.56334244641952 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",1.60350651166142 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",1.59881294222436 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",1.5883707103905 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",1.60144222035325 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",1.66738915359687 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",1.69575685441964 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",1.74559719458711 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",1.80075188919772 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",1.81362846783754 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",1.87186365707173 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",1.92326006611437 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",1.91667370628523 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",1.98600307238495 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",2.04537499867697 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",1.9815740008396 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",2.01013590833354 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",2.07137743616139 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",2.11776915861218 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",2.13359241285093 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",2.19331458749268 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",2.16159609694056 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",2.17613647601693 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",2.23138030279377 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",2.22341251516315 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",2.21464471199162 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",2.27355382736081 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",2.38528353402785 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",2.43670385657851 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",2.43830026440155 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",2.43340741573103 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",2.44922414810395 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",2.51607182348285 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",2.50191864999589 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",2.57001804051158 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",2.58363183153995 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",2.61099347417193 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",2.708352370274 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",2.70096551180277 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",2.72464230024494 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",2.70105271156433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",2.74422842951278 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",2.7789163014189 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",2.72768921933706 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",2.79340861192865 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",2.79239506566968 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",2.88762879971591 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",2.96254885412918 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",3.09168493757577 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",3.08446764761593 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",3.1414706873108 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",3.11736297262316 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",3.01171406040871 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",3.0424892959224 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",2.98980034969394 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",3.0051704550333 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",3.07135338319946 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",3.15917272200765 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",3.1427808576894 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",3.06303486411793 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",3.1994481420697 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",3.09559998947407 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",3.14208036098993 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",3.06100487299298 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",2.98770562301193 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",3.03497344943823 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",3.00739368662707 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",3.10190735837635 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",3.10101579516333 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",3.21711877519036 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",3.18516308196277 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",3.14617947443478 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",3.00023775051608 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",3.02453532396433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",3.02991803722332 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",3.12917213922334 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",3.04139313936302 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",3.02617400313993 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",3.09617294746412 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",3.01951686898908 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",3.15598884373325 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",3.1257452610594 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",3.09822709364768 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",3.05315254654248 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",3.10982828519329 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",3.1578425029304 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",2.85271411180951 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2101,"Simulated","PgC/yr","LL",2.88891022557477 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2102,"Simulated","PgC/yr","LL",3.08564544827339 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2103,"Simulated","PgC/yr","LL",3.25385547916715 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2104,"Simulated","PgC/yr","LL",3.07814675188083 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2105,"Simulated","PgC/yr","LL",3.08144246807655 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2106,"Simulated","PgC/yr","LL",3.05872801716911 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2107,"Simulated","PgC/yr","LL",2.78824933296174 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2108,"Simulated","PgC/yr","LL",2.80098291365463 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2109,"Simulated","PgC/yr","LL",2.71839483588799 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2110,"Simulated","PgC/yr","LL",3.02689744714507 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2111,"Simulated","PgC/yr","LL",2.91954270469212 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2112,"Simulated","PgC/yr","LL",2.95464483585327 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2113,"Simulated","PgC/yr","LL",3.18293042989614 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2114,"Simulated","PgC/yr","LL",2.86864123280024 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2115,"Simulated","PgC/yr","LL",2.69140204100087 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2116,"Simulated","PgC/yr","LL",2.67279781486522 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2117,"Simulated","PgC/yr","LL",2.72072918075134 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2118,"Simulated","PgC/yr","LL",3.01193580384669 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2119,"Simulated","PgC/yr","LL",2.80839948284794 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2120,"Simulated","PgC/yr","LL",2.83259995296062 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2121,"Simulated","PgC/yr","LL",2.95142641584508 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2122,"Simulated","PgC/yr","LL",2.72427610955653 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2123,"Simulated","PgC/yr","LL",2.91181695074869 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2124,"Simulated","PgC/yr","LL",2.9192093648834 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2125,"Simulated","PgC/yr","LL",2.81212709149148 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2126,"Simulated","PgC/yr","LL",2.92001131282901 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2127,"Simulated","PgC/yr","LL",2.68817685757626 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2128,"Simulated","PgC/yr","LL",2.58661739678322 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2129,"Simulated","PgC/yr","LL",2.8657571188031 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2130,"Simulated","PgC/yr","LL",2.85035778584283 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2131,"Simulated","PgC/yr","LL",2.58157961776108 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2132,"Simulated","PgC/yr","LL",2.75164958816723 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2133,"Simulated","PgC/yr","LL",2.63113130497825 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2134,"Simulated","PgC/yr","LL",2.55663323943876 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2135,"Simulated","PgC/yr","LL",2.53029359733625 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2136,"Simulated","PgC/yr","LL",2.65977244106441 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2137,"Simulated","PgC/yr","LL",2.6125599297223 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2138,"Simulated","PgC/yr","LL",2.63138251758772 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2139,"Simulated","PgC/yr","LL",2.40428825103513 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2140,"Simulated","PgC/yr","LL",2.50127467613355 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2141,"Simulated","PgC/yr","LL",2.38395162409651 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2142,"Simulated","PgC/yr","LL",2.56810302746557 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2143,"Simulated","PgC/yr","LL",2.6153532206991 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2144,"Simulated","PgC/yr","LL",2.84862828364689 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2145,"Simulated","PgC/yr","LL",2.77023159164896 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2146,"Simulated","PgC/yr","LL",2.58195450427059 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2147,"Simulated","PgC/yr","LL",2.58805124106186 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2148,"Simulated","PgC/yr","LL",2.52475242689284 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2149,"Simulated","PgC/yr","LL",2.63803095591747 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2150,"Simulated","PgC/yr","LL",2.56957551983798 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2151,"Simulated","PgC/yr","LL",2.66131836481497 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2152,"Simulated","PgC/yr","LL",2.5626787675058 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2153,"Simulated","PgC/yr","LL",2.41208550395202 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2154,"Simulated","PgC/yr","LL",2.58157671915405 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2155,"Simulated","PgC/yr","LL",2.46573485531052 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2156,"Simulated","PgC/yr","LL",2.52386352073626 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2157,"Simulated","PgC/yr","LL",2.55395299413623 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2158,"Simulated","PgC/yr","LL",2.37910032212679 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2159,"Simulated","PgC/yr","LL",2.26038980352362 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2160,"Simulated","PgC/yr","LL",2.35866610875141 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2161,"Simulated","PgC/yr","LL",2.41183042653317 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2162,"Simulated","PgC/yr","LL",2.23352937835764 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2163,"Simulated","PgC/yr","LL",2.37704231113385 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2164,"Simulated","PgC/yr","LL",2.52448768745055 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2165,"Simulated","PgC/yr","LL",2.23844348347973 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2166,"Simulated","PgC/yr","LL",2.17548380633348 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2167,"Simulated","PgC/yr","LL",2.25544961093824 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2168,"Simulated","PgC/yr","LL",2.07562776027309 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2169,"Simulated","PgC/yr","LL",2.30367083752758 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2170,"Simulated","PgC/yr","LL",2.09477305972143 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2171,"Simulated","PgC/yr","LL",1.96079654408149 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2172,"Simulated","PgC/yr","LL",2.06931749276377 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2173,"Simulated","PgC/yr","LL",1.89510541290847 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2174,"Simulated","PgC/yr","LL",2.1262123177961 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2175,"Simulated","PgC/yr","LL",1.9566582994417 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2176,"Simulated","PgC/yr","LL",2.08414869874571 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2177,"Simulated","PgC/yr","LL",2.14561462706798 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2178,"Simulated","PgC/yr","LL",2.04970551758323 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2179,"Simulated","PgC/yr","LL",2.0655125879327 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2180,"Simulated","PgC/yr","LL",2.15378580029203 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2181,"Simulated","PgC/yr","LL",1.91492512159299 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2182,"Simulated","PgC/yr","LL",2.08953334440938 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2183,"Simulated","PgC/yr","LL",1.94603200606129 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2184,"Simulated","PgC/yr","LL",1.83572358304242 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2185,"Simulated","PgC/yr","LL",1.97970125914615 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2186,"Simulated","PgC/yr","LL",1.80559739395338 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2187,"Simulated","PgC/yr","LL",1.99523682663693 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2188,"Simulated","PgC/yr","LL",2.0996166320724 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2189,"Simulated","PgC/yr","LL",1.87189433399615 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2190,"Simulated","PgC/yr","LL",1.75823801985497 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2191,"Simulated","PgC/yr","LL",1.8642883891434 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2192,"Simulated","PgC/yr","LL",1.91259270913433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2193,"Simulated","PgC/yr","LL",1.94008986164508 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2194,"Simulated","PgC/yr","LL",1.76479756756907 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2195,"Simulated","PgC/yr","LL",1.79125798496459 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2196,"Simulated","PgC/yr","LL",1.86050280835921 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2197,"Simulated","PgC/yr","LL",1.84077199029034 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2198,"Simulated","PgC/yr","LL",1.87931670040353 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2199,"Simulated","PgC/yr","LL",1.88995941922379 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2200,"Simulated","PgC/yr","LL",1.71308545191049 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2201,"Simulated","PgC/yr","LL",1.76743819857549 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2202,"Simulated","PgC/yr","LL",1.53413801436675 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2203,"Simulated","PgC/yr","LL",1.60026297039227 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2204,"Simulated","PgC/yr","LL",1.63862989927414 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2205,"Simulated","PgC/yr","LL",1.63268099144152 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2206,"Simulated","PgC/yr","LL",1.72182571831522 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2207,"Simulated","PgC/yr","LL",1.62408758779309 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2208,"Simulated","PgC/yr","LL",1.63002876600696 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2209,"Simulated","PgC/yr","LL",1.57288176216282 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2210,"Simulated","PgC/yr","LL",1.54751991683254 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2211,"Simulated","PgC/yr","LL",1.54362418898113 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2212,"Simulated","PgC/yr","LL",1.56277818425057 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2213,"Simulated","PgC/yr","LL",1.65015379463222 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2214,"Simulated","PgC/yr","LL",1.51204966257828 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2215,"Simulated","PgC/yr","LL",1.48110413390144 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2216,"Simulated","PgC/yr","LL",1.63024616153438 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2217,"Simulated","PgC/yr","LL",1.59874699891438 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2218,"Simulated","PgC/yr","LL",1.43654288179155 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2219,"Simulated","PgC/yr","LL",1.45598480535953 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2220,"Simulated","PgC/yr","LL",1.51291151506922 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2221,"Simulated","PgC/yr","LL",1.36950486455086 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2222,"Simulated","PgC/yr","LL",1.31039260513881 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2223,"Simulated","PgC/yr","LL",1.43171670108277 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2224,"Simulated","PgC/yr","LL",1.57231363518449 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2225,"Simulated","PgC/yr","LL",1.39328213803681 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2226,"Simulated","PgC/yr","LL",1.51185642210946 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2227,"Simulated","PgC/yr","LL",1.38581532632161 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2228,"Simulated","PgC/yr","LL",1.32661321009157 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2229,"Simulated","PgC/yr","LL",1.52569050727229 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2230,"Simulated","PgC/yr","LL",1.39587445892603 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2231,"Simulated","PgC/yr","LL",1.23638537039013 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2232,"Simulated","PgC/yr","LL",1.33251284160464 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2233,"Simulated","PgC/yr","LL",1.30052671300321 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2234,"Simulated","PgC/yr","LL",1.4082283220977 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2235,"Simulated","PgC/yr","LL",1.21424870848445 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2236,"Simulated","PgC/yr","LL",1.28658151457081 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2237,"Simulated","PgC/yr","LL",1.2824819180248 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2238,"Simulated","PgC/yr","LL",1.31739274112182 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2239,"Simulated","PgC/yr","LL",1.19089559782755 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2240,"Simulated","PgC/yr","LL",1.26187861923921 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2241,"Simulated","PgC/yr","LL",1.28413509023555 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2242,"Simulated","PgC/yr","LL",1.05330548542067 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2243,"Simulated","PgC/yr","LL",1.16347187669496 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2244,"Simulated","PgC/yr","LL",1.13016011847742 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2245,"Simulated","PgC/yr","LL",1.20082525931787 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2246,"Simulated","PgC/yr","LL",1.01626805096429 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2247,"Simulated","PgC/yr","LL",1.2588746961514 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2248,"Simulated","PgC/yr","LL",1.13113308423793 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2249,"Simulated","PgC/yr","LL",0.935528511522377 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2250,"Simulated","PgC/yr","LL",1.09789282499386 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2251,"Simulated","PgC/yr","LL",1.10302722425041 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2252,"Simulated","PgC/yr","LL",1.11853477187321 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2253,"Simulated","PgC/yr","LL",0.862345060892269 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2254,"Simulated","PgC/yr","LL",0.940262709767998 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2255,"Simulated","PgC/yr","LL",0.947363234174555 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2256,"Simulated","PgC/yr","LL",0.926451040499557 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2257,"Simulated","PgC/yr","LL",1.02805765196699 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2258,"Simulated","PgC/yr","LL",1.11416174006381 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2259,"Simulated","PgC/yr","LL",0.978183253166893 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2260,"Simulated","PgC/yr","LL",1.02135220769894 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2261,"Simulated","PgC/yr","LL",1.07363245033585 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2262,"Simulated","PgC/yr","LL",0.947900249437406 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2263,"Simulated","PgC/yr","LL",1.02386819860298 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2264,"Simulated","PgC/yr","LL",1.10784470913809 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2265,"Simulated","PgC/yr","LL",1.07516484725359 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2266,"Simulated","PgC/yr","LL",0.913839297922253 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2267,"Simulated","PgC/yr","LL",0.977982283079321 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2268,"Simulated","PgC/yr","LL",1.03335437321735 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2269,"Simulated","PgC/yr","LL",0.83669606022532 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2270,"Simulated","PgC/yr","LL",0.943148756169825 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2271,"Simulated","PgC/yr","LL",1.07928570025118 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2272,"Simulated","PgC/yr","LL",0.90496946378318 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2273,"Simulated","PgC/yr","LL",0.961302345532184 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2274,"Simulated","PgC/yr","LL",1.01053267384971 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2275,"Simulated","PgC/yr","LL",1.03859505473175 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2276,"Simulated","PgC/yr","LL",1.06363515468145 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2277,"Simulated","PgC/yr","LL",0.921183788420696 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2278,"Simulated","PgC/yr","LL",1.08666362135073 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2279,"Simulated","PgC/yr","LL",1.02040532940172 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2280,"Simulated","PgC/yr","LL",0.918999398161154 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2281,"Simulated","PgC/yr","LL",0.849765492853024 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2282,"Simulated","PgC/yr","LL",1.02372036964433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2283,"Simulated","PgC/yr","LL",0.935920596433613 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2284,"Simulated","PgC/yr","LL",0.922237915178109 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2285,"Simulated","PgC/yr","LL",0.963052621078521 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2286,"Simulated","PgC/yr","LL",0.961882743280284 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2287,"Simulated","PgC/yr","LL",0.863971469298093 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2288,"Simulated","PgC/yr","LL",0.950563489578684 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2289,"Simulated","PgC/yr","LL",0.821093148431152 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2290,"Simulated","PgC/yr","LL",0.914059205575771 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2291,"Simulated","PgC/yr","LL",0.960423970981162 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2292,"Simulated","PgC/yr","LL",0.821387260424696 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2293,"Simulated","PgC/yr","LL",0.812336359966339 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2294,"Simulated","PgC/yr","LL",1.01590089407353 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2295,"Simulated","PgC/yr","LL",0.964275736625917 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2296,"Simulated","PgC/yr","LL",0.961746991850939 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2297,"Simulated","PgC/yr","LL",0.858950695437211 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2298,"Simulated","PgC/yr","LL",0.984629755206729 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2299,"Simulated","PgC/yr","LL",0.821494412264656 -"inmcm4","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",4.0638777778448 -"inmcm4","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",3.33486506299222 -"inmcm4","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",3.89832995994973 -"inmcm4","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",4.01421411796503 -"inmcm4","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",3.89993400362287 -"inmcm4","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",4.33849028318183 -"inmcm4","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",3.63686969874741 -"inmcm4","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",3.79344218395291 -"inmcm4","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",4.25526052421608 -"inmcm4","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",4.35058230471778 -"inmcm4","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",4.26017662102911 -"inmcm4","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",4.29144290536152 -"inmcm4","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",4.8351074597983 -"inmcm4","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",4.82385858942388 -"inmcm4","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",4.90742766532048 -"inmcm4","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",4.76694017361504 -"inmcm4","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",4.92945584627613 -"inmcm4","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",4.26108260865931 -"inmcm4","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",5.0018743051857 -"inmcm4","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",5.40635722398427 -"inmcm4","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",5.40414538028684 -"inmcm4","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",4.74220431210004 -"inmcm4","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",5.14867400579005 -"inmcm4","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",5.07989320717626 -"inmcm4","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",4.72425250423966 -"inmcm4","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",4.63022743995521 -"inmcm4","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",5.54084440417169 -"inmcm4","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",5.69375295201269 -"inmcm4","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",5.08218730952359 -"inmcm4","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",5.59074227270743 -"inmcm4","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",5.79083186867484 -"inmcm4","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",6.19965164629337 -"inmcm4","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",5.15558487486327 -"inmcm4","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",5.93310620105321 -"inmcm4","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",6.48824240970791 -"inmcm4","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",5.93993823892027 -"inmcm4","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",6.13974449953801 -"inmcm4","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",6.55060246370417 -"inmcm4","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",6.89286014129382 -"inmcm4","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",6.544077753293 -"inmcm4","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",6.59442347447823 -"inmcm4","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",7.06754209677201 -"inmcm4","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",6.99399143894501 -"inmcm4","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",6.34889397180739 -"inmcm4","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",5.85148048576059 -"inmcm4","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",7.9791804392248 -"inmcm4","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",6.32084262970874 -"inmcm4","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",7.91468166033103 -"inmcm4","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",7.3599556024446 -"inmcm4","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",6.41038231261091 -"inmcm4","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",8.24763839807524 -"inmcm4","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",6.6958758093603 -"inmcm4","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",7.6065144807205 -"inmcm4","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",7.3467565165787 -"inmcm4","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",6.86816312414128 -"inmcm4","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",8.58138459036229 -"inmcm4","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",7.19109801637214 -"inmcm4","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",8.66102695820721 -"inmcm4","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",7.52155500514426 -"inmcm4","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",7.25718827164531 -"inmcm4","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",9.30264556994262 -"inmcm4","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",7.26936140934991 -"inmcm4","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",9.09783866889944 -"inmcm4","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",8.15171795739924 -"inmcm4","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",8.5036421688339 -"inmcm4","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",8.55710914879051 -"inmcm4","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",7.4227155248779 -"inmcm4","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",9.42790607156577 -"inmcm4","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",7.84758830652152 -"inmcm4","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",9.67934677221724 -"inmcm4","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",8.69854033000735 -"inmcm4","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",9.59125347057589 -"inmcm4","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",9.03387457123005 -"inmcm4","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",8.54512794793568 -"inmcm4","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",9.37845148575451 -"inmcm4","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",8.97126431384033 -"inmcm4","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",9.45194844696282 -"inmcm4","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",8.8260800817216 -"inmcm4","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",8.7616018674903 -"inmcm4","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",9.07758133387924 -"inmcm4","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",9.35026875831227 -"inmcm4","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",8.9880679280458 -"inmcm4","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",9.3474034153406 -"inmcm4","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",9.06976219221333 -"inmcm4","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",8.95186383975663 -"inmcm4","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",9.23288109497372 -"inmcm4","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",9.68451878482998 -"inmcm4","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",9.3399110233118 -"inmcm4","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",9.06653125524209 -"inmcm4","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",9.47068628192229 -"inmcm4","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",9.372003321587 -"inmcm4","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",8.92838585009642 -"inmcm4","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",9.54804825719486 -"inmcm4","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",9.64653585323663 -"inmcm4","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",9.24765794744404 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.359143762575296 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.326198803773398 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.200206849652804 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.448020705768469 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.416309057931147 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.327833477957805 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.296857175668422 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.204391340540839 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.312983038824065 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.410176193554127 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",0.368100952033704 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.304355362552987 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.452849612378622 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.37039757472328 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",0.415288374933565 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.468743423993892 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.571718271769876 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.393555459002383 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.360350430585237 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.636373503288857 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.583766043965996 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",0.390420356746925 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.22579457139466 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.311374663814234 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.14410979926581 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.301654282623042 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.600315959825418 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",0.591529113386647 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",0.410236355064594 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",0.369314667534872 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.462754087791843 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",0.621244430416639 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",0.390461610354103 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.557693420449775 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",0.71492312159524 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",0.702874661838999 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.689356370437032 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",0.848945777913048 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",0.876360003112686 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",0.856629606029912 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.779774995308433 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.962631093452483 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",0.916593271072634 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",0.708914877489901 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",0.707632405976771 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.07438986553673 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",0.667876476629873 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",0.788910434727854 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",0.716013420054934 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",0.583800593862008 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.860644957128519 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",0.778212514936586 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",0.834865406113287 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",0.874273601929686 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",0.724581794265695 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",0.900502301593062 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",0.671648775226192 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",0.952067419774571 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",0.747524128447296 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",0.732169192075781 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.25855748460896 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",0.849969726821198 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",1.09197094968556 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",0.920305064378427 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",0.903850203705544 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",0.924681900209927 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",0.859980430272902 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.11153994203025 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",0.819696282864101 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",1.05370307232756 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",1.08979808781751 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.28995921472236 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.14252621394137 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.01057328547366 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",1.14148473225017 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.15623134980584 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.19420701411301 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",0.98810605533472 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",1.07049139965846 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.12798019205059 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",1.17045971892135 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.13311523480401 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",1.01897956738622 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",0.995588084556474 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.12838138338039 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",1.07431973440453 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.19520913298736 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",1.13751699468984 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",1.03490294408663 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.14859238498679 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.20363243201288 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.12852731801578 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.2009346179935 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",1.20741040298018 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.14310221743158 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",3.7047340643433 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",3.00866680707564 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",3.69812336755229 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",3.56619381495911 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",3.4836256199787 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",4.01065665176854 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",3.34001306088523 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",3.58905123816104 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",3.94227752981527 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",3.94040622994549 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",3.89207564020704 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",3.98708778520325 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",4.38225720578522 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",4.4534607481851 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",4.49213977884414 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",4.29819624151035 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",4.35773715982554 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",3.8675264765108 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",4.64152444391561 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",4.76998316231048 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",4.82037917016246 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",4.35178452388085 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",4.92287942641144 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",4.76851854016136 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",4.58014231405842 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",4.32857283488407 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",4.94052865713348 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",5.10222333063255 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",4.67195053744148 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",5.2214274617565 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",5.32807699546571 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",5.57840800024491 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",4.76512341207812 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",5.37541272920491 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",5.77331921702381 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",5.23706368629082 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",5.45038798908092 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",5.70165658497745 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",6.01649987629437 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",5.68744810012594 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",5.81464796171008 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",6.10491103041174 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",6.07739768113339 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",5.63997939538976 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",5.14384810564054 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",6.90479078325616 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",5.65296687648806 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",7.12577110957989 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",6.64394245203041 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",5.82658235133602 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",7.38699311842486 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",5.91766360189622 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",6.77164896223074 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",6.47248363087055 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",6.14358132574981 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",7.68088231591984 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",6.51944956935541 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",7.7089595786963 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",6.77403079308159 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",6.52501882176869 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",8.04408822648542 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",6.41939132061284 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",8.00586731488164 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",7.23141316960402 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",7.59979233136562 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",7.63242651991418 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",6.56273502593871 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",8.31636623990336 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",7.02789280871467 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",8.62564319058065 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",7.60874215299385 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",8.30129392886714 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",7.89134822757068 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",7.53455404259627 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",8.23696605466101 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",7.81503258122156 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",8.25774155969868 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",7.83797444585953 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",7.6911104061832 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",7.94960117133857 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",8.1798089083791 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",7.8549529980494 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",8.32842486520531 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",8.07417364249351 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",7.82348254837214 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",8.1585616960091 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",8.48930909503671 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",8.20239359544856 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",8.0316277764189 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",8.32209466927651 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",8.16837146145717 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",7.79985932869859 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",8.34711359912264 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",8.43912564666164 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",8.10455605941453 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",3.98429541253157 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",4.11144925000072 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",4.09574687876657 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",4.13845210804299 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",4.30416027500085 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",4.41762579642587 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",4.43771885430989 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",4.44825712007792 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",4.56595192572385 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",4.57913711410069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",4.68169909057636 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",4.66529396235489 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",4.8446186251373 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",4.93204352501038 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",4.99121604947253 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",5.12369925613889 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",5.1207488351828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",5.02467500467298 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",5.14657862963855 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",5.18205743198222 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",5.31449970884603 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",5.42069555675446 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",5.523199227568 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",5.52491094280139 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",5.61345368964055 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",5.54217675526721 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",5.54382630353634 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",5.63260458980531 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",5.74857030435828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",5.9212431019646 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",5.89401049644571 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",6.02253934360268 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",6.12401011609695 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",6.16428735859522 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",6.27166437882464 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",6.432118858107 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",6.27408734591003 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",6.54529787091411 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",6.51852437421825 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",6.67205090522237 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",6.75021871937352 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",6.91590796595095 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",6.98449627565248 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",7.01722930605286 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",7.0189846540003 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",7.03334908404706 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",7.2562381158294 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",7.12846299484784 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",7.32719378986568 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",7.38979167544567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",7.37526005101676 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",7.45122267552255 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",7.62835566321705 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",7.70924723988936 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",7.78211155556757 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",7.69863869842261 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",7.75058827112393 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",7.67911788551397 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",7.87676442689424 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",7.89114430214952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",7.94215442004307 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",8.26182776192679 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",8.00729033951187 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",7.96950633979772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",7.99470558361595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",8.21007588789444 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",8.28985502342365 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",8.15994460236524 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",8.34229729827651 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",8.3373988503968 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",8.3989750354337 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",8.44101805139515 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",8.19997703830859 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",8.43582073873072 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",8.23031837817081 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",8.2631873264061 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",8.39004229909053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",8.37405573601975 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",8.21823327477027 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",8.45732973610511 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",8.50949554172561 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",8.48193202261434 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",8.5169312512337 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",8.5231765212957 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",8.06246525788079 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",8.26475655959096 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",8.35748573019741 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",8.39276799226277 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",8.41868427988618 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",8.35358658730845 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",8.55248303218759 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",8.2420941912709 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",8.40300855163671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",8.42588174705297 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",8.23989595196937 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2101,"Simulated","PgC/yr","global",7.99522145358026 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2102,"Simulated","PgC/yr","global",8.11823172773574 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2103,"Simulated","PgC/yr","global",8.54486082178671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2104,"Simulated","PgC/yr","global",8.53823482733488 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2105,"Simulated","PgC/yr","global",8.21569099344913 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2106,"Simulated","PgC/yr","global",8.21784251099491 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2107,"Simulated","PgC/yr","global",8.39416810041442 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2108,"Simulated","PgC/yr","global",8.33975154178345 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2109,"Simulated","PgC/yr","global",8.47131073885056 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2110,"Simulated","PgC/yr","global",8.30021489703336 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2111,"Simulated","PgC/yr","global",8.11708878230582 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2112,"Simulated","PgC/yr","global",8.17418662913455 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2113,"Simulated","PgC/yr","global",8.28807496314259 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2114,"Simulated","PgC/yr","global",8.3114651869138 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2115,"Simulated","PgC/yr","global",8.24177795062661 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2116,"Simulated","PgC/yr","global",8.43156403926469 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2117,"Simulated","PgC/yr","global",8.60533190215454 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2118,"Simulated","PgC/yr","global",8.40747260302702 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2119,"Simulated","PgC/yr","global",8.14711117861227 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2120,"Simulated","PgC/yr","global",8.51138487685689 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2121,"Simulated","PgC/yr","global",8.0625949976323 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2122,"Simulated","PgC/yr","global",7.75705324927702 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2123,"Simulated","PgC/yr","global",8.04670187807302 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2124,"Simulated","PgC/yr","global",7.49758455791429 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2125,"Simulated","PgC/yr","global",8.00863407265245 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2126,"Simulated","PgC/yr","global",7.9458987247167 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2127,"Simulated","PgC/yr","global",8.14631420585303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2128,"Simulated","PgC/yr","global",8.16134393825646 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2129,"Simulated","PgC/yr","global",7.95372017830738 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2130,"Simulated","PgC/yr","global",8.10293942678759 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2131,"Simulated","PgC/yr","global",7.82215325863602 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2132,"Simulated","PgC/yr","global",8.01655283105677 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2133,"Simulated","PgC/yr","global",7.55081338001064 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2134,"Simulated","PgC/yr","global",7.72077090996049 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2135,"Simulated","PgC/yr","global",7.7377050365735 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2136,"Simulated","PgC/yr","global",8.00502143838139 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2137,"Simulated","PgC/yr","global",7.93997703177303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2138,"Simulated","PgC/yr","global",7.79386072568297 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2139,"Simulated","PgC/yr","global",7.61802783841501 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2140,"Simulated","PgC/yr","global",8.01977315703161 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2141,"Simulated","PgC/yr","global",8.04819697425702 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2142,"Simulated","PgC/yr","global",7.9261350359042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2143,"Simulated","PgC/yr","global",7.802415826678 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2144,"Simulated","PgC/yr","global",7.62445304515617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2145,"Simulated","PgC/yr","global",7.69141111309922 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2146,"Simulated","PgC/yr","global",8.16331938042521 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2147,"Simulated","PgC/yr","global",8.00427543481024 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2148,"Simulated","PgC/yr","global",7.62628793592745 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2149,"Simulated","PgC/yr","global",7.8488518460706 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2150,"Simulated","PgC/yr","global",7.61656363264803 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2151,"Simulated","PgC/yr","global",7.69350857241521 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2152,"Simulated","PgC/yr","global",7.84552340363617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2153,"Simulated","PgC/yr","global",7.70669414692226 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2154,"Simulated","PgC/yr","global",7.58621379792112 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2155,"Simulated","PgC/yr","global",7.69888968306094 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2156,"Simulated","PgC/yr","global",7.59413718988799 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2157,"Simulated","PgC/yr","global",7.69104042809492 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2158,"Simulated","PgC/yr","global",7.98633736964392 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2159,"Simulated","PgC/yr","global",7.60626785665365 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2160,"Simulated","PgC/yr","global",8.02915766572376 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2161,"Simulated","PgC/yr","global",7.67666557253241 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2162,"Simulated","PgC/yr","global",7.70541528365744 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2163,"Simulated","PgC/yr","global",7.82965962997306 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2164,"Simulated","PgC/yr","global",7.54876688988275 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2165,"Simulated","PgC/yr","global",7.37772356177449 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2166,"Simulated","PgC/yr","global",7.51863483259587 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2167,"Simulated","PgC/yr","global",7.64479438476703 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2168,"Simulated","PgC/yr","global",7.24223819270353 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2169,"Simulated","PgC/yr","global",7.40688102640424 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2170,"Simulated","PgC/yr","global",7.26319116257148 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2171,"Simulated","PgC/yr","global",7.23466231792818 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2172,"Simulated","PgC/yr","global",7.43224669234419 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2173,"Simulated","PgC/yr","global",7.62520368228988 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2174,"Simulated","PgC/yr","global",7.10068594572888 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2175,"Simulated","PgC/yr","global",7.1077397724565 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2176,"Simulated","PgC/yr","global",7.11390858873637 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2177,"Simulated","PgC/yr","global",7.12482835115465 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2178,"Simulated","PgC/yr","global",7.04981251793067 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2179,"Simulated","PgC/yr","global",7.44466309546733 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2180,"Simulated","PgC/yr","global",6.70546313866707 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2181,"Simulated","PgC/yr","global",7.17863327952852 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2182,"Simulated","PgC/yr","global",7.22306914441876 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2183,"Simulated","PgC/yr","global",6.84287606976039 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2184,"Simulated","PgC/yr","global",7.4003121792239 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2185,"Simulated","PgC/yr","global",7.1401901555411 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2186,"Simulated","PgC/yr","global",6.92140877696265 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2187,"Simulated","PgC/yr","global",7.06068285568171 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2188,"Simulated","PgC/yr","global",6.97806643534877 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2189,"Simulated","PgC/yr","global",7.18009902981635 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2190,"Simulated","PgC/yr","global",6.52102727025769 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2191,"Simulated","PgC/yr","global",7.09876765083164 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2192,"Simulated","PgC/yr","global",6.85817609331279 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2193,"Simulated","PgC/yr","global",6.74341973858635 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2194,"Simulated","PgC/yr","global",7.0436946708389 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2195,"Simulated","PgC/yr","global",6.82514805942983 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2196,"Simulated","PgC/yr","global",6.83361048917379 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2197,"Simulated","PgC/yr","global",6.7454708622768 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2198,"Simulated","PgC/yr","global",6.81425300934517 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2199,"Simulated","PgC/yr","global",6.37952444795029 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2200,"Simulated","PgC/yr","global",6.26848575491279 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2201,"Simulated","PgC/yr","global",6.81548244794276 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2202,"Simulated","PgC/yr","global",6.26228450369505 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2203,"Simulated","PgC/yr","global",6.48840853440031 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2204,"Simulated","PgC/yr","global",6.43513492119926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2205,"Simulated","PgC/yr","global",6.21982717001525 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2206,"Simulated","PgC/yr","global",6.46758839332556 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2207,"Simulated","PgC/yr","global",6.4055280010018 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2208,"Simulated","PgC/yr","global",6.38420125708785 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2209,"Simulated","PgC/yr","global",6.20478044788245 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2210,"Simulated","PgC/yr","global",6.24078168440405 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2211,"Simulated","PgC/yr","global",6.38359271587246 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2212,"Simulated","PgC/yr","global",6.49216480911053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2213,"Simulated","PgC/yr","global",6.11300965246419 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2214,"Simulated","PgC/yr","global",5.83622533783819 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2215,"Simulated","PgC/yr","global",6.0565033571215 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2216,"Simulated","PgC/yr","global",6.09425608028841 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2217,"Simulated","PgC/yr","global",6.11123808704782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2218,"Simulated","PgC/yr","global",5.67031290799775 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2219,"Simulated","PgC/yr","global",5.99206749172852 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2220,"Simulated","PgC/yr","global",6.07624078907952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2221,"Simulated","PgC/yr","global",5.94700764041439 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2222,"Simulated","PgC/yr","global",5.89963100782338 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2223,"Simulated","PgC/yr","global",6.1403785619482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2224,"Simulated","PgC/yr","global",5.93831198802189 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2225,"Simulated","PgC/yr","global",5.88724395059642 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2226,"Simulated","PgC/yr","global",5.92358343718445 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2227,"Simulated","PgC/yr","global",5.77105736956173 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2228,"Simulated","PgC/yr","global",5.8446985792281 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2229,"Simulated","PgC/yr","global",5.98428619567997 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2230,"Simulated","PgC/yr","global",5.90951903031303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2231,"Simulated","PgC/yr","global",5.60354327159855 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2232,"Simulated","PgC/yr","global",5.82147053014627 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2233,"Simulated","PgC/yr","global",5.65727560749242 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2234,"Simulated","PgC/yr","global",5.43888344816848 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2235,"Simulated","PgC/yr","global",5.54537507181992 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2236,"Simulated","PgC/yr","global",5.77831043947916 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2237,"Simulated","PgC/yr","global",5.84406532567909 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2238,"Simulated","PgC/yr","global",5.88347840876109 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2239,"Simulated","PgC/yr","global",5.64174390581233 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2240,"Simulated","PgC/yr","global",5.76707713932808 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2241,"Simulated","PgC/yr","global",5.5526204191331 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2242,"Simulated","PgC/yr","global",5.52071988547154 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2243,"Simulated","PgC/yr","global",5.46196631229029 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2244,"Simulated","PgC/yr","global",5.44700299428346 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2245,"Simulated","PgC/yr","global",5.38745862642637 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2246,"Simulated","PgC/yr","global",5.42520208246817 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2247,"Simulated","PgC/yr","global",5.41466381670015 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2248,"Simulated","PgC/yr","global",5.18468311742933 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2249,"Simulated","PgC/yr","global",5.195578167514 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2250,"Simulated","PgC/yr","global",5.05575115033019 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2251,"Simulated","PgC/yr","global",5.2514095072447 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2252,"Simulated","PgC/yr","global",5.20767485482093 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2253,"Simulated","PgC/yr","global",5.05570172566295 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2254,"Simulated","PgC/yr","global",5.13593958388498 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2255,"Simulated","PgC/yr","global",4.92821697460142 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2256,"Simulated","PgC/yr","global",5.19174621128207 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2257,"Simulated","PgC/yr","global",4.8938668308698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2258,"Simulated","PgC/yr","global",4.90321118201981 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2259,"Simulated","PgC/yr","global",4.96916994497211 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2260,"Simulated","PgC/yr","global",4.95159947576838 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2261,"Simulated","PgC/yr","global",4.83722616221304 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2262,"Simulated","PgC/yr","global",4.89627782791858 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2263,"Simulated","PgC/yr","global",4.71461282991633 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2264,"Simulated","PgC/yr","global",4.97999858066017 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2265,"Simulated","PgC/yr","global",4.81844478866194 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2266,"Simulated","PgC/yr","global",4.63536500955995 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2267,"Simulated","PgC/yr","global",4.7513183679461 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2268,"Simulated","PgC/yr","global",4.94675585837888 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2269,"Simulated","PgC/yr","global",4.85323512083617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2270,"Simulated","PgC/yr","global",4.71381431263624 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2271,"Simulated","PgC/yr","global",4.81717055895966 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2272,"Simulated","PgC/yr","global",4.87588397459878 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2273,"Simulated","PgC/yr","global",4.4708055799852 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2274,"Simulated","PgC/yr","global",4.76961785099162 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2275,"Simulated","PgC/yr","global",4.50384905907667 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2276,"Simulated","PgC/yr","global",4.76487926102001 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2277,"Simulated","PgC/yr","global",4.77423287929513 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2278,"Simulated","PgC/yr","global",4.76668635041596 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2279,"Simulated","PgC/yr","global",4.99176010694238 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2280,"Simulated","PgC/yr","global",4.84571021524892 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2281,"Simulated","PgC/yr","global",4.76185972275583 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2282,"Simulated","PgC/yr","global",4.45717672799384 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2283,"Simulated","PgC/yr","global",4.58413170840339 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2284,"Simulated","PgC/yr","global",4.56836678407476 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2285,"Simulated","PgC/yr","global",4.42753273929595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2286,"Simulated","PgC/yr","global",4.64851814912913 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2287,"Simulated","PgC/yr","global",4.46518970217008 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2288,"Simulated","PgC/yr","global",4.38876372140892 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2289,"Simulated","PgC/yr","global",4.60754818902907 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2290,"Simulated","PgC/yr","global",4.59453868989906 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2291,"Simulated","PgC/yr","global",4.37026345065274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2292,"Simulated","PgC/yr","global",4.70970743169279 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2293,"Simulated","PgC/yr","global",4.28160795379144 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2294,"Simulated","PgC/yr","global",4.64826330318867 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2295,"Simulated","PgC/yr","global",4.38040014099944 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2296,"Simulated","PgC/yr","global",4.29044570210224 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2297,"Simulated","PgC/yr","global",4.47967421871303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2298,"Simulated","PgC/yr","global",4.48263352066401 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2299,"Simulated","PgC/yr","global",4.5326713626817 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2300,"Simulated","PgC/yr","global",4.32281885914428 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",1.00963076641297 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.06272109320556 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.07320164047622 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",1.1004970498699 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.17895925697469 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.21809404958943 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.16819650107037 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.21079365982497 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.23122240626189 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.21570975905108 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.25256812386037 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.28949428219041 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.29610363321848 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",1.29058290958101 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.33981279881794 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.3372845073932 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.35617938231955 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.36484467703728 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.39190739534348 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.3800096669357 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.42811258371841 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.47080015682264 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.51636947180311 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",1.47748950834315 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.51521836126928 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.48745991454266 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.4846507938031 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.45866435798392 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.58825667291882 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.63532530747303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.61785278612944 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.59609603151809 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.68475154274614 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.64811676552001 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.70921190020615 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.73071465325402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.71644932406579 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",1.80146922670829 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",1.77172973330476 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",1.81614352393112 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",1.90489675989863 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",1.9575536357473 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.96804770034254 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.99363889234952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.99787540118558 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.95739432442185 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.08744643529042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",2.0307938796743 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",2.05411843703956 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.05615775993725 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.08806257701405 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",2.08622022084602 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",2.21898552082916 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.2027385932365 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.26373172729479 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",2.1746361443924 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.2074815879488 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.21772854757474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.26819582373864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.27094977172479 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",2.27663428947393 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.41485927823611 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",2.33889115544893 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",2.36539069787476 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",2.35860575955898 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.38983277936022 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.40080277791951 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",2.41784991733436 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.46092245832547 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",2.40319975819114 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",2.46869691997356 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",2.48731517250752 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",2.52532347542963 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",2.58406742322947 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.46364799234362 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",2.48243424591171 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",2.49817317037741 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",2.51511534362891 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.48985842954162 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",2.56081734908131 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",2.6180380461256 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",2.63850493072831 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",2.66782897329871 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.65745194390662 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",2.5332754554118 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.50463493429013 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",2.52093558635142 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",2.56158225034131 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",2.64567925075124 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",2.65877809000062 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",2.71461691646998 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",2.61082827760861 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",2.72554960445478 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",2.66352184333829 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",2.62804914223074 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2101,"Simulated","PgC/yr","HL",2.53211820690915 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2102,"Simulated","PgC/yr","HL",2.48013305933317 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2103,"Simulated","PgC/yr","HL",2.7025581525882 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2104,"Simulated","PgC/yr","HL",2.73296496044415 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2105,"Simulated","PgC/yr","HL",2.69669908204047 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2106,"Simulated","PgC/yr","HL",2.68791420037974 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2107,"Simulated","PgC/yr","HL",2.73943672441842 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2108,"Simulated","PgC/yr","HL",2.78603645953465 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2109,"Simulated","PgC/yr","HL",2.8510134112184 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2110,"Simulated","PgC/yr","HL",2.69820336716203 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2111,"Simulated","PgC/yr","HL",2.63468987276231 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2112,"Simulated","PgC/yr","HL",2.62084592547821 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2113,"Simulated","PgC/yr","HL",2.69880226740023 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2114,"Simulated","PgC/yr","HL",2.80299380529333 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2115,"Simulated","PgC/yr","HL",2.73793326688817 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2116,"Simulated","PgC/yr","HL",2.82650291551873 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2117,"Simulated","PgC/yr","HL",2.86781075599222 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2118,"Simulated","PgC/yr","HL",2.88657225078721 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2119,"Simulated","PgC/yr","HL",2.78764750393404 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2120,"Simulated","PgC/yr","HL",2.9772569469195 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2121,"Simulated","PgC/yr","HL",2.88043428197102 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2122,"Simulated","PgC/yr","HL",2.57585778648891 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2123,"Simulated","PgC/yr","HL",2.57153555298725 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2124,"Simulated","PgC/yr","HL",2.4112057385057 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2125,"Simulated","PgC/yr","HL",2.60969496028775 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2126,"Simulated","PgC/yr","HL",2.5512656351142 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2127,"Simulated","PgC/yr","HL",2.62320069859349 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2128,"Simulated","PgC/yr","HL",2.72368655850422 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2129,"Simulated","PgC/yr","HL",2.81503250008606 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2130,"Simulated","PgC/yr","HL",2.72066998821186 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2131,"Simulated","PgC/yr","HL",2.75191100809927 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2132,"Simulated","PgC/yr","HL",2.7308968097828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2133,"Simulated","PgC/yr","HL",2.61762025045045 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2134,"Simulated","PgC/yr","HL",2.53952956287389 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2135,"Simulated","PgC/yr","HL",2.47715207546676 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2136,"Simulated","PgC/yr","HL",2.69547038482217 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2137,"Simulated","PgC/yr","HL",2.73492083455232 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2138,"Simulated","PgC/yr","HL",2.64953713656706 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2139,"Simulated","PgC/yr","HL",2.46904499108159 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2140,"Simulated","PgC/yr","HL",2.57807683463082 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2141,"Simulated","PgC/yr","HL",2.73278675245065 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2142,"Simulated","PgC/yr","HL",2.69082345966673 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2143,"Simulated","PgC/yr","HL",2.57024175191993 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2144,"Simulated","PgC/yr","HL",2.56118376512985 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2145,"Simulated","PgC/yr","HL",2.57187983096849 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2146,"Simulated","PgC/yr","HL",2.9191241752955 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2147,"Simulated","PgC/yr","HL",2.85288376755879 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2148,"Simulated","PgC/yr","HL",2.79950412864053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2149,"Simulated","PgC/yr","HL",2.78381851484781 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2150,"Simulated","PgC/yr","HL",2.65601248677031 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2151,"Simulated","PgC/yr","HL",2.53060619760211 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2152,"Simulated","PgC/yr","HL",2.64247750690527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2153,"Simulated","PgC/yr","HL",2.7249505662847 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2154,"Simulated","PgC/yr","HL",2.70015372399486 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2155,"Simulated","PgC/yr","HL",2.751485074443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2156,"Simulated","PgC/yr","HL",2.73411200198741 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2157,"Simulated","PgC/yr","HL",2.78955096392647 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2158,"Simulated","PgC/yr","HL",2.94570364924782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2159,"Simulated","PgC/yr","HL",2.81515663878122 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2160,"Simulated","PgC/yr","HL",2.85757896887347 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2161,"Simulated","PgC/yr","HL",2.83318985323128 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2162,"Simulated","PgC/yr","HL",2.7417095659949 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2163,"Simulated","PgC/yr","HL",2.84649200407695 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2164,"Simulated","PgC/yr","HL",2.88071014573804 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2165,"Simulated","PgC/yr","HL",2.76182941397869 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2166,"Simulated","PgC/yr","HL",2.60394044210772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2167,"Simulated","PgC/yr","HL",2.80415243311481 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2168,"Simulated","PgC/yr","HL",2.67693482245237 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2169,"Simulated","PgC/yr","HL",2.7861799086935 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2170,"Simulated","PgC/yr","HL",2.58544681103051 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2171,"Simulated","PgC/yr","HL",2.53418994379946 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2172,"Simulated","PgC/yr","HL",2.54887886180195 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2173,"Simulated","PgC/yr","HL",2.76719220560955 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2174,"Simulated","PgC/yr","HL",2.56603620879172 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2175,"Simulated","PgC/yr","HL",2.56105024706661 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2176,"Simulated","PgC/yr","HL",2.68851696271068 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2177,"Simulated","PgC/yr","HL",2.58327355627393 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2178,"Simulated","PgC/yr","HL",2.54352048399136 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2179,"Simulated","PgC/yr","HL",2.66635710216977 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2180,"Simulated","PgC/yr","HL",2.5575991913412 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2181,"Simulated","PgC/yr","HL",2.65199453100367 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2182,"Simulated","PgC/yr","HL",2.64232964392615 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2183,"Simulated","PgC/yr","HL",2.48224700337984 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2184,"Simulated","PgC/yr","HL",2.75378660585124 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2185,"Simulated","PgC/yr","HL",2.64246702408212 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2186,"Simulated","PgC/yr","HL",2.4741070912064 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2187,"Simulated","PgC/yr","HL",2.4225956017184 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2188,"Simulated","PgC/yr","HL",2.47743152546275 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2189,"Simulated","PgC/yr","HL",2.51698928619827 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2190,"Simulated","PgC/yr","HL",2.55643752901828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2191,"Simulated","PgC/yr","HL",2.70507292668835 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2192,"Simulated","PgC/yr","HL",2.59917296448609 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2193,"Simulated","PgC/yr","HL",2.58621785025933 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2194,"Simulated","PgC/yr","HL",2.7073283888475 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2195,"Simulated","PgC/yr","HL",2.60484224076211 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2196,"Simulated","PgC/yr","HL",2.58251631023346 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2197,"Simulated","PgC/yr","HL",2.56028693202327 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2198,"Simulated","PgC/yr","HL",2.569801197484 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2199,"Simulated","PgC/yr","HL",2.38637441324498 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2200,"Simulated","PgC/yr","HL",2.40993593758611 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2201,"Simulated","PgC/yr","HL",2.45886423875974 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2202,"Simulated","PgC/yr","HL",2.42321601933042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2203,"Simulated","PgC/yr","HL",2.47856836004664 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2204,"Simulated","PgC/yr","HL",2.40439024827772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2205,"Simulated","PgC/yr","HL",2.28153983691095 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2206,"Simulated","PgC/yr","HL",2.35686830058835 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2207,"Simulated","PgC/yr","HL",2.33153379981658 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2208,"Simulated","PgC/yr","HL",2.34065330422671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2209,"Simulated","PgC/yr","HL",2.40620736291107 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2210,"Simulated","PgC/yr","HL",2.359127900704 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2211,"Simulated","PgC/yr","HL",2.38483178305981 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2212,"Simulated","PgC/yr","HL",2.4730422570657 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2213,"Simulated","PgC/yr","HL",2.3751558614316 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2214,"Simulated","PgC/yr","HL",2.29593689104793 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2215,"Simulated","PgC/yr","HL",2.3092307659806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2216,"Simulated","PgC/yr","HL",2.46963285676911 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2217,"Simulated","PgC/yr","HL",2.37958154384589 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2218,"Simulated","PgC/yr","HL",2.13862999172538 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2219,"Simulated","PgC/yr","HL",2.18674808101527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2220,"Simulated","PgC/yr","HL",2.2890549176521 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2221,"Simulated","PgC/yr","HL",2.22715081246917 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2222,"Simulated","PgC/yr","HL",2.34282131757172 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2223,"Simulated","PgC/yr","HL",2.38047368726843 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2224,"Simulated","PgC/yr","HL",2.22312292560692 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2225,"Simulated","PgC/yr","HL",2.29746738322735 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2226,"Simulated","PgC/yr","HL",2.25671871860961 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2227,"Simulated","PgC/yr","HL",2.31799661304141 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2228,"Simulated","PgC/yr","HL",2.22352154875026 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2229,"Simulated","PgC/yr","HL",2.25805058887678 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2230,"Simulated","PgC/yr","HL",2.35440400955756 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2231,"Simulated","PgC/yr","HL",2.16947956092739 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2232,"Simulated","PgC/yr","HL",2.24562099512619 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2233,"Simulated","PgC/yr","HL",2.08557807896233 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2234,"Simulated","PgC/yr","HL",1.92372604821437 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2235,"Simulated","PgC/yr","HL",2.05316298288248 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2236,"Simulated","PgC/yr","HL",2.10409129636701 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2237,"Simulated","PgC/yr","HL",2.11684475418008 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2238,"Simulated","PgC/yr","HL",2.26511959790666 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2239,"Simulated","PgC/yr","HL",2.23918343825902 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2240,"Simulated","PgC/yr","HL",2.15180496937446 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2241,"Simulated","PgC/yr","HL",2.12128726428416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2242,"Simulated","PgC/yr","HL",2.08102715439782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2243,"Simulated","PgC/yr","HL",2.12984897215738 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2244,"Simulated","PgC/yr","HL",2.13546666190896 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2245,"Simulated","PgC/yr","HL",2.09644600792783 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2246,"Simulated","PgC/yr","HL",2.10305929001459 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2247,"Simulated","PgC/yr","HL",2.17853203044213 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2248,"Simulated","PgC/yr","HL",2.05368850335866 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2249,"Simulated","PgC/yr","HL",2.05428740359685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2250,"Simulated","PgC/yr","HL",2.08201612600258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2251,"Simulated","PgC/yr","HL",2.13930034067923 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2252,"Simulated","PgC/yr","HL",1.97441987749692 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2253,"Simulated","PgC/yr","HL",1.9404078060698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2254,"Simulated","PgC/yr","HL",1.90582524837248 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2255,"Simulated","PgC/yr","HL",1.92015775038797 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2256,"Simulated","PgC/yr","HL",1.99053639049373 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2257,"Simulated","PgC/yr","HL",1.88934404347567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2258,"Simulated","PgC/yr","HL",1.96751390395336 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2259,"Simulated","PgC/yr","HL",1.9460897720791 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2260,"Simulated","PgC/yr","HL",1.89878548090191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2261,"Simulated","PgC/yr","HL",1.93342928035551 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2262,"Simulated","PgC/yr","HL",2.05813377210041 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2263,"Simulated","PgC/yr","HL",1.95150966750973 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2264,"Simulated","PgC/yr","HL",1.89993583281038 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2265,"Simulated","PgC/yr","HL",1.9929121292553 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2266,"Simulated","PgC/yr","HL",1.99665339366362 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2267,"Simulated","PgC/yr","HL",1.78407249893468 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2268,"Simulated","PgC/yr","HL",1.8693218512654 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2269,"Simulated","PgC/yr","HL",1.88263117456902 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2270,"Simulated","PgC/yr","HL",1.89243868321409 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2271,"Simulated","PgC/yr","HL",1.85518769529839 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2272,"Simulated","PgC/yr","HL",1.9275575200745 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2273,"Simulated","PgC/yr","HL",1.83811724539523 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2274,"Simulated","PgC/yr","HL",1.87204986805745 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2275,"Simulated","PgC/yr","HL",1.87824769931108 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2276,"Simulated","PgC/yr","HL",1.85419265469075 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2277,"Simulated","PgC/yr","HL",1.88427946057696 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2278,"Simulated","PgC/yr","HL",1.86215573818953 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2279,"Simulated","PgC/yr","HL",1.91844049843827 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2280,"Simulated","PgC/yr","HL",1.94755736731964 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2281,"Simulated","PgC/yr","HL",1.82621731007731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2282,"Simulated","PgC/yr","HL",1.76941640872048 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2283,"Simulated","PgC/yr","HL",1.79065902223604 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2284,"Simulated","PgC/yr","HL",1.8308269936242 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2285,"Simulated","PgC/yr","HL",1.76074545879552 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2286,"Simulated","PgC/yr","HL",1.79268082778453 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2287,"Simulated","PgC/yr","HL",1.83393184032201 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2288,"Simulated","PgC/yr","HL",1.81818526063677 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2289,"Simulated","PgC/yr","HL",1.78241648874127 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2290,"Simulated","PgC/yr","HL",1.82898477538805 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2291,"Simulated","PgC/yr","HL",1.80622849738285 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2292,"Simulated","PgC/yr","HL",1.88722678906379 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2293,"Simulated","PgC/yr","HL",1.81902167957838 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2294,"Simulated","PgC/yr","HL",1.87898315211395 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2295,"Simulated","PgC/yr","HL",1.75211312979795 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2296,"Simulated","PgC/yr","HL",1.78829762839035 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2297,"Simulated","PgC/yr","HL",1.83445129179531 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2298,"Simulated","PgC/yr","HL",1.72821725857119 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2299,"Simulated","PgC/yr","HL",1.81017803893527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2300,"Simulated","PgC/yr","HL",1.82205287065039 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",2.97466466837504 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",3.04872791745915 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",3.02254505539069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",3.03795511582847 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",3.12520098067474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",3.19953191640362 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",3.26952245908311 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",3.23746317740053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",3.33472921306226 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",3.36342718780019 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",3.42913093819209 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",3.37579976601407 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",3.54851505862443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",3.64146068258584 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",3.65140346531917 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",3.78641458655069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",3.76456958021746 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",3.65982988567258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",3.75467088331781 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",3.80204761347103 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",3.88638698493734 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",3.94989564140926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",4.00682979970647 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",4.04742143460899 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",4.09823559113191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",4.05471716433608 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",4.05917522533004 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",4.17394016531873 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",4.16031351957709 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",4.28591754852911 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",4.27615808674445 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",4.42644352210575 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",4.43925886164203 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",4.51617088020877 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",4.56245244213402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",4.70140432943342 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",4.5576378884994 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",4.74382885665837 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",4.74679434259274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",4.85590741527121 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",4.845322374889 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",4.95835401213637 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",5.0164483573371 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",5.023590579557 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",5.02110845197172 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",5.07595471787257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",5.16879155448901 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",5.09766905252612 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",5.27307548397639 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",5.33363387839895 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",5.28719754030941 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",5.36500237629917 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",5.40936985184861 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",5.50650838747338 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",5.51837952897472 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",5.52400253433627 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",5.54310660703903 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",5.4613895497658 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",5.60856867825638 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",5.6201946517762 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",5.66551996342423 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",5.8469683742381 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",5.66839918067687 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",5.60411569189076 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",5.6360998056411 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",5.82024284410187 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",5.88905258420021 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",5.7420951535351 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",5.88137498869076 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",5.93419901519936 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",5.9302779133163 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",5.95370303204793 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",5.67465334293782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",5.85175311443125 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",5.76667030991358 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",5.78075303787699 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",5.89186932009146 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",5.85894037397764 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",5.7283749443335 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",5.89651228785544 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",5.89145764086762 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",5.84342723515176 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",5.84910257261804 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",5.86572483489979 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",5.52918943882511 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",5.76012150204482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",5.83655016226246 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",5.83118564578183 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",5.77300439757083 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",5.69480849803486 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",5.83786607682308 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",5.63126590498594 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",5.67745834375103 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",5.7623603646342 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",5.61184752249055 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2101,"Simulated","PgC/yr","LL",5.46310255399378 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2102,"Simulated","PgC/yr","LL",5.63809857487729 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2103,"Simulated","PgC/yr","LL",5.84230288781087 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2104,"Simulated","PgC/yr","LL",5.80527078752241 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2105,"Simulated","PgC/yr","LL",5.51899324183921 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2106,"Simulated","PgC/yr","LL",5.52992779724813 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2107,"Simulated","PgC/yr","LL",5.65473066925145 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2108,"Simulated","PgC/yr","LL",5.5537151175773 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2109,"Simulated","PgC/yr","LL",5.62029804732856 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2110,"Simulated","PgC/yr","LL",5.60201289277366 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2111,"Simulated","PgC/yr","LL",5.4823988282448 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2112,"Simulated","PgC/yr","LL",5.55334086373746 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2113,"Simulated","PgC/yr","LL",5.58927176967681 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2114,"Simulated","PgC/yr","LL",5.50847226863975 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2115,"Simulated","PgC/yr","LL",5.50384547625359 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2116,"Simulated","PgC/yr","LL",5.60506020708997 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2117,"Simulated","PgC/yr","LL",5.73751942459658 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2118,"Simulated","PgC/yr","LL",5.52089876477971 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2119,"Simulated","PgC/yr","LL",5.35946468812654 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2120,"Simulated","PgC/yr","LL",5.53412578353982 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2121,"Simulated","PgC/yr","LL",5.18215971134973 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2122,"Simulated","PgC/yr","LL",5.18119553196572 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2123,"Simulated","PgC/yr","LL",5.47516621420765 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2124,"Simulated","PgC/yr","LL",5.08637863880508 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2125,"Simulated","PgC/yr","LL",5.39893895330213 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2126,"Simulated","PgC/yr","LL",5.39463439981536 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2127,"Simulated","PgC/yr","LL",5.52311384004877 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2128,"Simulated","PgC/yr","LL",5.43765709885552 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2129,"Simulated","PgC/yr","LL",5.13868790770175 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2130,"Simulated","PgC/yr","LL",5.38226879921544 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2131,"Simulated","PgC/yr","LL",5.07024258935085 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2132,"Simulated","PgC/yr","LL",5.28565675628062 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2133,"Simulated","PgC/yr","LL",4.93319337051352 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2134,"Simulated","PgC/yr","LL",5.18124120362075 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2135,"Simulated","PgC/yr","LL",5.26055256989803 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2136,"Simulated","PgC/yr","LL",5.30955064380488 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2137,"Simulated","PgC/yr","LL",5.2050551657487 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2138,"Simulated","PgC/yr","LL",5.14432328246987 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2139,"Simulated","PgC/yr","LL",5.14898305994022 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2140,"Simulated","PgC/yr","LL",5.44169650301169 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2141,"Simulated","PgC/yr","LL",5.3154105708769 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2142,"Simulated","PgC/yr","LL",5.23531136855033 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2143,"Simulated","PgC/yr","LL",5.23217397958105 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2144,"Simulated","PgC/yr","LL",5.06326878135888 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2145,"Simulated","PgC/yr","LL",5.11953118572999 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2146,"Simulated","PgC/yr","LL",5.24419450545406 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2147,"Simulated","PgC/yr","LL",5.15139223974316 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2148,"Simulated","PgC/yr","LL",4.82678348891725 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2149,"Simulated","PgC/yr","LL",5.06503221470595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2150,"Simulated","PgC/yr","LL",4.9605506918777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2151,"Simulated","PgC/yr","LL",5.16290276546832 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2152,"Simulated","PgC/yr","LL",5.20304561292729 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2153,"Simulated","PgC/yr","LL",4.98174360846964 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2154,"Simulated","PgC/yr","LL",4.88605895386339 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2155,"Simulated","PgC/yr","LL",4.9474035985139 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2156,"Simulated","PgC/yr","LL",4.86002484183806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2157,"Simulated","PgC/yr","LL",4.90148836132171 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2158,"Simulated","PgC/yr","LL",5.04063467031926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2159,"Simulated","PgC/yr","LL",4.79110885170891 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2160,"Simulated","PgC/yr","LL",5.17157911126731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2161,"Simulated","PgC/yr","LL",4.84347521017437 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2162,"Simulated","PgC/yr","LL",4.96370584204616 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2163,"Simulated","PgC/yr","LL",4.98316704171814 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2164,"Simulated","PgC/yr","LL",4.66805545782472 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2165,"Simulated","PgC/yr","LL",4.61589335314982 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2166,"Simulated","PgC/yr","LL",4.91469381291139 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2167,"Simulated","PgC/yr","LL",4.8406422989053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2168,"Simulated","PgC/yr","LL",4.56530311460227 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2169,"Simulated","PgC/yr","LL",4.62070156349903 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2170,"Simulated","PgC/yr","LL",4.67774419197694 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2171,"Simulated","PgC/yr","LL",4.70047218364078 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2172,"Simulated","PgC/yr","LL",4.88336813218776 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2173,"Simulated","PgC/yr","LL",4.8580114830454 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2174,"Simulated","PgC/yr","LL",4.53464982213328 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2175,"Simulated","PgC/yr","LL",4.54668937786255 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2176,"Simulated","PgC/yr","LL",4.42539180538293 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2177,"Simulated","PgC/yr","LL",4.5415551226427 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2178,"Simulated","PgC/yr","LL",4.50629279898673 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2179,"Simulated","PgC/yr","LL",4.77830556441493 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2180,"Simulated","PgC/yr","LL",4.14786418760962 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2181,"Simulated","PgC/yr","LL",4.52663825264641 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2182,"Simulated","PgC/yr","LL",4.58074013400309 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2183,"Simulated","PgC/yr","LL",4.36062939854753 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2184,"Simulated","PgC/yr","LL",4.64652507844838 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2185,"Simulated","PgC/yr","LL",4.49772302038281 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2186,"Simulated","PgC/yr","LL",4.44730151322746 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2187,"Simulated","PgC/yr","LL",4.63808724018121 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2188,"Simulated","PgC/yr","LL",4.5006345883911 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2189,"Simulated","PgC/yr","LL",4.66311023251042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2190,"Simulated","PgC/yr","LL",3.96459017925154 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2191,"Simulated","PgC/yr","LL",4.39369440813363 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2192,"Simulated","PgC/yr","LL",4.25900235415878 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2193,"Simulated","PgC/yr","LL",4.15720277240658 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2194,"Simulated","PgC/yr","LL",4.33636633181177 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2195,"Simulated","PgC/yr","LL",4.22030577577582 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2196,"Simulated","PgC/yr","LL",4.25109354589574 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2197,"Simulated","PgC/yr","LL",4.1851842730562 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2198,"Simulated","PgC/yr","LL",4.24445085740275 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2199,"Simulated","PgC/yr","LL",3.99315018753157 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2200,"Simulated","PgC/yr","LL",3.85854947686679 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2201,"Simulated","PgC/yr","LL",4.3566191735043 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2202,"Simulated","PgC/yr","LL",3.83906924733855 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2203,"Simulated","PgC/yr","LL",4.00983937147452 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2204,"Simulated","PgC/yr","LL",4.03074557156542 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2205,"Simulated","PgC/yr","LL",3.93828711192435 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2206,"Simulated","PgC/yr","LL",4.11071917684066 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2207,"Simulated","PgC/yr","LL",4.07399409156658 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2208,"Simulated","PgC/yr","LL",4.04354759020232 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2209,"Simulated","PgC/yr","LL",3.79857244455307 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2210,"Simulated","PgC/yr","LL",3.88165425968465 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2211,"Simulated","PgC/yr","LL",3.99876145781508 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2212,"Simulated","PgC/yr","LL",4.01912213535978 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2213,"Simulated","PgC/yr","LL",3.73785324784509 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2214,"Simulated","PgC/yr","LL",3.54028908609033 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2215,"Simulated","PgC/yr","LL",3.74727302669544 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2216,"Simulated","PgC/yr","LL",3.62462306576404 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2217,"Simulated","PgC/yr","LL",3.73165585798866 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2218,"Simulated","PgC/yr","LL",3.53168378508805 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2219,"Simulated","PgC/yr","LL",3.80532043158405 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2220,"Simulated","PgC/yr","LL",3.78718497856509 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2221,"Simulated","PgC/yr","LL",3.71985734710539 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2222,"Simulated","PgC/yr","LL",3.55681080729816 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2223,"Simulated","PgC/yr","LL",3.75990504528305 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2224,"Simulated","PgC/yr","LL",3.71518868903545 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2225,"Simulated","PgC/yr","LL",3.58977686163169 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2226,"Simulated","PgC/yr","LL",3.6668655406974 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2227,"Simulated","PgC/yr","LL",3.45306003095043 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2228,"Simulated","PgC/yr","LL",3.6211761244662 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2229,"Simulated","PgC/yr","LL",3.72623615492486 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2230,"Simulated","PgC/yr","LL",3.55511461277656 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2231,"Simulated","PgC/yr","LL",3.43406315977127 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2232,"Simulated","PgC/yr","LL",3.57584954416109 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2233,"Simulated","PgC/yr","LL",3.57169722952443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2234,"Simulated","PgC/yr","LL",3.51515698925188 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2235,"Simulated","PgC/yr","LL",3.49221205722662 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2236,"Simulated","PgC/yr","LL",3.67421867715756 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2237,"Simulated","PgC/yr","LL",3.72722063282222 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2238,"Simulated","PgC/yr","LL",3.61835843708215 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2239,"Simulated","PgC/yr","LL",3.40255986705586 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2240,"Simulated","PgC/yr","LL",3.61527179439623 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2241,"Simulated","PgC/yr","LL",3.43133300972603 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2242,"Simulated","PgC/yr","LL",3.43969219125397 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2243,"Simulated","PgC/yr","LL",3.33211768245439 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2244,"Simulated","PgC/yr","LL",3.31153625857704 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2245,"Simulated","PgC/yr","LL",3.29101192426848 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2246,"Simulated","PgC/yr","LL",3.32214223180114 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2247,"Simulated","PgC/yr","LL",3.23613108746209 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2248,"Simulated","PgC/yr","LL",3.1309936689213 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2249,"Simulated","PgC/yr","LL",3.14129008981685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2250,"Simulated","PgC/yr","LL",2.9737347427323 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2251,"Simulated","PgC/yr","LL",3.11210970822265 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2252,"Simulated","PgC/yr","LL",3.23325504185216 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2253,"Simulated","PgC/yr","LL",3.11529403750404 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2254,"Simulated","PgC/yr","LL",3.23011511556871 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2255,"Simulated","PgC/yr","LL",3.00805952880303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2256,"Simulated","PgC/yr","LL",3.20121003256178 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2257,"Simulated","PgC/yr","LL",3.00452251285222 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2258,"Simulated","PgC/yr","LL",2.93569786603313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2259,"Simulated","PgC/yr","LL",3.02307916002315 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2260,"Simulated","PgC/yr","LL",3.05281394476316 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2261,"Simulated","PgC/yr","LL",2.90379621499327 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2262,"Simulated","PgC/yr","LL",2.83814447954183 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2263,"Simulated","PgC/yr","LL",2.76310214435297 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2264,"Simulated","PgC/yr","LL",3.08006343027518 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2265,"Simulated","PgC/yr","LL",2.82553275946757 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2266,"Simulated","PgC/yr","LL",2.63871158590201 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2267,"Simulated","PgC/yr","LL",2.96724683040359 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2268,"Simulated","PgC/yr","LL",3.07743477279667 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2269,"Simulated","PgC/yr","LL",2.97060369704844 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2270,"Simulated","PgC/yr","LL",2.82137537020257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2271,"Simulated","PgC/yr","LL",2.96198317216115 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2272,"Simulated","PgC/yr","LL",2.94832734730657 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2273,"Simulated","PgC/yr","LL",2.63268800206612 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2274,"Simulated","PgC/yr","LL",2.89756837736682 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2275,"Simulated","PgC/yr","LL",2.62560128359365 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2276,"Simulated","PgC/yr","LL",2.91068756027477 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2277,"Simulated","PgC/yr","LL",2.88995262889023 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2278,"Simulated","PgC/yr","LL",2.90453076744503 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2279,"Simulated","PgC/yr","LL",3.07331924921545 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2280,"Simulated","PgC/yr","LL",2.89815322828265 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2281,"Simulated","PgC/yr","LL",2.93564204512143 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2282,"Simulated","PgC/yr","LL",2.68775913743515 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2283,"Simulated","PgC/yr","LL",2.79347252629217 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2284,"Simulated","PgC/yr","LL",2.73753997276296 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2285,"Simulated","PgC/yr","LL",2.66678696717586 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2286,"Simulated","PgC/yr","LL",2.8558371712384 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2287,"Simulated","PgC/yr","LL",2.6312582255322 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2288,"Simulated","PgC/yr","LL",2.57057835719383 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2289,"Simulated","PgC/yr","LL",2.82513186382895 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2290,"Simulated","PgC/yr","LL",2.76555445849677 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2291,"Simulated","PgC/yr","LL",2.56403462395341 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2292,"Simulated","PgC/yr","LL",2.82248163918001 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2293,"Simulated","PgC/yr","LL",2.46258646021353 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2294,"Simulated","PgC/yr","LL",2.76928050435313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2295,"Simulated","PgC/yr","LL",2.62828829929804 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2296,"Simulated","PgC/yr","LL",2.50214826272794 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2297,"Simulated","PgC/yr","LL",2.64522360271532 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2298,"Simulated","PgC/yr","LL",2.75441691795438 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2299,"Simulated","PgC/yr","LL",2.722492431087 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2300,"Simulated","PgC/yr","LL",2.50076542650613 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",3.87087095606386 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",3.98118790638182 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",3.8478633537273 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",3.76056151055561 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",3.78742872931395 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",4.10433057649253 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",4.0720352360832 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",4.25524693916286 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",4.35712526702085 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",4.38644709461188 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",4.42059183455665 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",4.49992303375951 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",4.58033599767615 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",4.79075692441375 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",4.7201377371674 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",4.57851608132171 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",4.7028026988552 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",4.92355667644647 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",5.10744595663129 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",5.04252023966492 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",5.00377397925284 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",5.13487657217565 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",5.31740051305126 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",5.37665205781976 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",5.41578427987401 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",5.42051123787503 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",5.26288182291997 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",5.5643838005756 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",5.42526124636302 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",5.60710385772861 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",5.66540014743272 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",5.652194362634 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",5.82545147169246 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",5.80912743845964 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",5.95758972835512 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",5.83648193379123 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",6.13733367329136 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",6.2833392101228 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",6.32187748009437 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",6.32773230378309 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",6.31271249926613 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",6.3019967031173 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",6.78146237763463 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",6.74752509207253 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",6.52181365161061 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",6.54431467929181 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",6.74006852756877 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",6.91666634906342 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",6.7241551146386 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",6.93060814127146 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",6.94838221095164 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",7.12706851377675 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",7.15433348744967 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",7.0437908567826 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",7.16619215890562 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",7.16431702859403 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",7.20714858577701 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",7.40688587983596 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",7.346728397324 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",7.55146067830216 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",7.62789019643681 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",7.62844501629744 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",7.39120672418027 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",7.3954855378301 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",7.76687551984328 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",7.63961002891314 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",7.56753866098809 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",7.32667179337661 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",7.70326957727003 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",7.64134095966675 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",7.58167718642208 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",7.54251708936033 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",7.58150618397228 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",7.93744215462105 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",7.87838948730984 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",7.64839708896675 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",7.79981627388758 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",7.64891331266316 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",7.73395031147624 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",8.0155420289738 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",7.85321567525655 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",7.79534876787936 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",7.805763835582 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",7.59063471286765 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",7.83438181923389 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",7.76165753286416 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",7.85864004450267 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",7.79975623540991 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",7.73095267605531 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",7.84118064077244 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",7.66228205904413 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",7.33460062483421 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",7.62884330726985 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",7.68560807973549 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",7.8556933345762 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2101,"Simulated","PgC/yr","global",7.80905737492859 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2102,"Simulated","PgC/yr","global",7.59156638138724 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2103,"Simulated","PgC/yr","global",7.46709053543751 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2104,"Simulated","PgC/yr","global",7.9291541644131 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2105,"Simulated","PgC/yr","global",7.57553449967523 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2106,"Simulated","PgC/yr","global",7.27756728739256 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2107,"Simulated","PgC/yr","global",7.97355905134578 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2108,"Simulated","PgC/yr","global",7.84898189046498 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2109,"Simulated","PgC/yr","global",7.48941680826405 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2110,"Simulated","PgC/yr","global",7.41826799587538 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2111,"Simulated","PgC/yr","global",7.60291847818783 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2112,"Simulated","PgC/yr","global",7.10156395403843 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2113,"Simulated","PgC/yr","global",8.11995430222426 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2114,"Simulated","PgC/yr","global",7.50564810349119 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2115,"Simulated","PgC/yr","global",7.65886361822167 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2116,"Simulated","PgC/yr","global",8.01003725105222 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2117,"Simulated","PgC/yr","global",7.0157920199317 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2118,"Simulated","PgC/yr","global",7.1851471639993 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2119,"Simulated","PgC/yr","global",7.71330833237154 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2120,"Simulated","PgC/yr","global",7.41934064760594 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2121,"Simulated","PgC/yr","global",7.16129312633913 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2122,"Simulated","PgC/yr","global",7.20857825202658 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2123,"Simulated","PgC/yr","global",7.55009962745564 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2124,"Simulated","PgC/yr","global",7.13795209602836 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2125,"Simulated","PgC/yr","global",6.8815963732931 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2126,"Simulated","PgC/yr","global",7.56776380527936 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2127,"Simulated","PgC/yr","global",7.46214379372358 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2128,"Simulated","PgC/yr","global",7.25080245568096 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2129,"Simulated","PgC/yr","global",7.17979194621406 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2130,"Simulated","PgC/yr","global",7.2074477060497 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2131,"Simulated","PgC/yr","global",7.44019061715115 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2132,"Simulated","PgC/yr","global",7.0604461737583 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2133,"Simulated","PgC/yr","global",6.98154757322938 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2134,"Simulated","PgC/yr","global",7.57964499116444 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2135,"Simulated","PgC/yr","global",6.95779645867379 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2136,"Simulated","PgC/yr","global",7.02049110292523 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2137,"Simulated","PgC/yr","global",7.0059966350879 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2138,"Simulated","PgC/yr","global",7.22178457288314 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2139,"Simulated","PgC/yr","global",6.9491895140532 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2140,"Simulated","PgC/yr","global",7.35479338747204 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2141,"Simulated","PgC/yr","global",7.03491159478114 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2142,"Simulated","PgC/yr","global",7.2732702477763 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2143,"Simulated","PgC/yr","global",7.2405004961818 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2144,"Simulated","PgC/yr","global",6.80635475932382 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2145,"Simulated","PgC/yr","global",7.35846002307274 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2146,"Simulated","PgC/yr","global",7.07294329009735 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2147,"Simulated","PgC/yr","global",7.00364387724412 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2148,"Simulated","PgC/yr","global",6.80874289698481 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2149,"Simulated","PgC/yr","global",7.18117336725836 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2150,"Simulated","PgC/yr","global",6.71529032619872 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2151,"Simulated","PgC/yr","global",7.03790762202856 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2152,"Simulated","PgC/yr","global",6.64886793575323 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2153,"Simulated","PgC/yr","global",6.89921552225857 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2154,"Simulated","PgC/yr","global",7.03109057452357 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2155,"Simulated","PgC/yr","global",6.83935447973012 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2156,"Simulated","PgC/yr","global",7.14540276389592 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2157,"Simulated","PgC/yr","global",6.94361719284424 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2158,"Simulated","PgC/yr","global",6.72900000536362 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2159,"Simulated","PgC/yr","global",6.96382710933283 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2160,"Simulated","PgC/yr","global",6.67873654233735 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2161,"Simulated","PgC/yr","global",7.00110939579381 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2162,"Simulated","PgC/yr","global",6.66059795332845 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2163,"Simulated","PgC/yr","global",7.73392511675793 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2164,"Simulated","PgC/yr","global",6.73862009929493 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2165,"Simulated","PgC/yr","global",6.70094059397721 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2166,"Simulated","PgC/yr","global",6.76917539596743 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2167,"Simulated","PgC/yr","global",6.86888536987734 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2168,"Simulated","PgC/yr","global",6.45232018582062 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2169,"Simulated","PgC/yr","global",7.00396872829295 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2170,"Simulated","PgC/yr","global",6.5709422801973 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2171,"Simulated","PgC/yr","global",6.00506783486365 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2172,"Simulated","PgC/yr","global",6.54016344740704 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2173,"Simulated","PgC/yr","global",6.45572308096583 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2174,"Simulated","PgC/yr","global",6.50932028767641 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2175,"Simulated","PgC/yr","global",6.56196706384313 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2176,"Simulated","PgC/yr","global",6.45824308885456 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2177,"Simulated","PgC/yr","global",6.73796396450322 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2178,"Simulated","PgC/yr","global",6.08377988726552 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2179,"Simulated","PgC/yr","global",6.50688712115718 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2180,"Simulated","PgC/yr","global",6.26141712490487 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2181,"Simulated","PgC/yr","global",6.74957497723877 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2182,"Simulated","PgC/yr","global",6.59402761092013 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2183,"Simulated","PgC/yr","global",6.28474850617459 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2184,"Simulated","PgC/yr","global",6.75737944327833 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2185,"Simulated","PgC/yr","global",6.18040055986449 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2186,"Simulated","PgC/yr","global",6.04598941797568 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2187,"Simulated","PgC/yr","global",6.34747048937569 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2188,"Simulated","PgC/yr","global",6.44691029013608 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2189,"Simulated","PgC/yr","global",6.04200436402018 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2190,"Simulated","PgC/yr","global",6.0873902367934 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2191,"Simulated","PgC/yr","global",6.2716949618014 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2192,"Simulated","PgC/yr","global",6.72130167877565 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2193,"Simulated","PgC/yr","global",6.20214949840128 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2194,"Simulated","PgC/yr","global",6.10756798981182 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2195,"Simulated","PgC/yr","global",5.98066058551636 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2196,"Simulated","PgC/yr","global",5.62236756856111 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2197,"Simulated","PgC/yr","global",6.19251975542891 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2198,"Simulated","PgC/yr","global",5.76128642079588 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2199,"Simulated","PgC/yr","global",5.93744896332741 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2200,"Simulated","PgC/yr","global",5.81996223944814 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2201,"Simulated","PgC/yr","global",6.10256335385156 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2202,"Simulated","PgC/yr","global",6.12931371200158 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2203,"Simulated","PgC/yr","global",5.29981459967164 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2204,"Simulated","PgC/yr","global",5.84801521814051 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2205,"Simulated","PgC/yr","global",6.28920475496825 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2206,"Simulated","PgC/yr","global",5.97419090348934 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2207,"Simulated","PgC/yr","global",5.53726463463417 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2208,"Simulated","PgC/yr","global",5.70520619418728 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2209,"Simulated","PgC/yr","global",5.91367211799568 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2210,"Simulated","PgC/yr","global",5.35064574794661 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2211,"Simulated","PgC/yr","global",5.04021197462155 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2212,"Simulated","PgC/yr","global",6.01064819694015 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2213,"Simulated","PgC/yr","global",6.23365522561765 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2214,"Simulated","PgC/yr","global",5.15764723694853 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2215,"Simulated","PgC/yr","global",5.58240124051348 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2216,"Simulated","PgC/yr","global",5.91070503787143 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2217,"Simulated","PgC/yr","global",5.32083664378232 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2218,"Simulated","PgC/yr","global",5.56654304154046 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2219,"Simulated","PgC/yr","global",5.1750364171022 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2220,"Simulated","PgC/yr","global",5.32507418097874 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2221,"Simulated","PgC/yr","global",5.12980332081234 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2222,"Simulated","PgC/yr","global",5.31587221215979 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2223,"Simulated","PgC/yr","global",5.38820624842466 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2224,"Simulated","PgC/yr","global",5.16002733374197 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2225,"Simulated","PgC/yr","global",5.14080322761444 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2226,"Simulated","PgC/yr","global",5.54757624317438 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2227,"Simulated","PgC/yr","global",5.03666112751351 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2228,"Simulated","PgC/yr","global",5.1469609239807 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2229,"Simulated","PgC/yr","global",5.26415978480185 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2230,"Simulated","PgC/yr","global",5.27660865593563 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2231,"Simulated","PgC/yr","global",5.21575697852559 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2232,"Simulated","PgC/yr","global",5.18318503227271 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2233,"Simulated","PgC/yr","global",4.87698557979705 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2234,"Simulated","PgC/yr","global",5.05160266758636 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2235,"Simulated","PgC/yr","global",4.92885560815889 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2236,"Simulated","PgC/yr","global",5.46870980611564 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2237,"Simulated","PgC/yr","global",4.65625572480842 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2238,"Simulated","PgC/yr","global",5.23986832394721 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2239,"Simulated","PgC/yr","global",5.13526146170215 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2240,"Simulated","PgC/yr","global",4.8949022408617 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2241,"Simulated","PgC/yr","global",5.01052026712343 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2242,"Simulated","PgC/yr","global",5.22467269245992 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2243,"Simulated","PgC/yr","global",4.85000525283524 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2244,"Simulated","PgC/yr","global",4.8092058909099 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2245,"Simulated","PgC/yr","global",5.03606449514164 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2246,"Simulated","PgC/yr","global",4.48329666390698 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2247,"Simulated","PgC/yr","global",4.4900123964809 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2248,"Simulated","PgC/yr","global",4.84354361167576 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2249,"Simulated","PgC/yr","global",4.51263135688609 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2250,"Simulated","PgC/yr","global",4.59068566632275 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2251,"Simulated","PgC/yr","global",4.75002188942878 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2252,"Simulated","PgC/yr","global",4.60288687873613 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2253,"Simulated","PgC/yr","global",4.55569663528572 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2254,"Simulated","PgC/yr","global",4.13766479698871 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2255,"Simulated","PgC/yr","global",4.9120132069983 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2256,"Simulated","PgC/yr","global",4.65538248659299 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2257,"Simulated","PgC/yr","global",4.59984903897748 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2258,"Simulated","PgC/yr","global",4.98785306151296 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2259,"Simulated","PgC/yr","global",4.17850275507827 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2260,"Simulated","PgC/yr","global",4.44911654414502 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2261,"Simulated","PgC/yr","global",4.25714083149872 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2262,"Simulated","PgC/yr","global",4.38262982675917 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2263,"Simulated","PgC/yr","global",4.09315537877794 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2264,"Simulated","PgC/yr","global",4.67811241097032 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2265,"Simulated","PgC/yr","global",4.54503605309403 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2266,"Simulated","PgC/yr","global",4.29165545135057 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2267,"Simulated","PgC/yr","global",4.63443120211671 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2268,"Simulated","PgC/yr","global",4.38126287927645 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2269,"Simulated","PgC/yr","global",4.35068667634833 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2270,"Simulated","PgC/yr","global",4.22636039053495 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2271,"Simulated","PgC/yr","global",3.97962958625153 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2272,"Simulated","PgC/yr","global",4.46542181535357 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2273,"Simulated","PgC/yr","global",4.68533471819959 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2274,"Simulated","PgC/yr","global",4.05588756587854 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2275,"Simulated","PgC/yr","global",3.86123906886015 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2276,"Simulated","PgC/yr","global",4.44306981175088 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2277,"Simulated","PgC/yr","global",4.1233311465023 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2278,"Simulated","PgC/yr","global",4.28525974530496 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2279,"Simulated","PgC/yr","global",4.20439434857444 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2280,"Simulated","PgC/yr","global",3.93993343135342 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2281,"Simulated","PgC/yr","global",4.403235353931 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2282,"Simulated","PgC/yr","global",4.19759177463103 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2283,"Simulated","PgC/yr","global",4.41252094777242 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2284,"Simulated","PgC/yr","global",4.3672958923501 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2285,"Simulated","PgC/yr","global",4.1647818186988 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2286,"Simulated","PgC/yr","global",3.81886530506943 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2287,"Simulated","PgC/yr","global",4.26406884297583 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2288,"Simulated","PgC/yr","global",4.22656784491762 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2289,"Simulated","PgC/yr","global",4.19902626540113 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2290,"Simulated","PgC/yr","global",4.08176790216015 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2291,"Simulated","PgC/yr","global",4.27985306596744 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2292,"Simulated","PgC/yr","global",3.95039138368296 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2293,"Simulated","PgC/yr","global",4.16518225390256 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2294,"Simulated","PgC/yr","global",3.84017682041174 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2295,"Simulated","PgC/yr","global",3.88406709182153 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2296,"Simulated","PgC/yr","global",4.03094640292624 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2297,"Simulated","PgC/yr","global",4.4072043261514 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2298,"Simulated","PgC/yr","global",4.14738942219812 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2299,"Simulated","PgC/yr","global",4.05415073848874 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2300,"Simulated","PgC/yr","global",4.17486828294775 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",1.72725188028022 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.73090987368546 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.73679732379568 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",1.74027320652401 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.73094326828818 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.79775375819298 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.80760067056701 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.83621819371349 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.84552675573385 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.91545367767071 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.92448710119231 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.95314765199998 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.81952557126942 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",1.94445101855138 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.90515245191026 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.90376134652293 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.9965596263537 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.93812283308004 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",2.0188232758729 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.95314691805267 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.98777161646469 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.98270875616002 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",2.10156831239142 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",2.04942952100587 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",2.17554359596033 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",2.10053766687792 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",2.12686197164665 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",2.13057546981739 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",2.15412930696846 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",2.1685966929046 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",2.26307488639015 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",2.28626771320691 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",2.29493003461865 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",2.20949590689074 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",2.37794690687302 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",2.22955376950579 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",2.32061956670553 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",2.35394462791404 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.35772766759264 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",2.31629817667325 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",2.37486753918023 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.34491588330656 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",2.46716710181219 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",2.491075619002 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",2.44287115218482 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",2.47011408375849 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.44530345357827 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",2.52588472167628 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",2.50015326284918 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.5270290372798 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.56881770366522 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",2.48251549975351 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",2.62470292910716 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.566406503257 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.7040031839147 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",2.66013698791799 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.63571122135973 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.65738688733825 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.67078436157967 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.754007289542 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",2.9237488441298 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.78288903372096 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",2.83637241658292 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",2.68807157309023 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",2.77462377780524 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.76981238619849 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.81378170179261 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",2.70855191412702 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.86021185098194 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",2.77506047645615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",2.73906650758933 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",2.74337863153679 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",2.84349904498678 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",2.93950210575735 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.91893506719429 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",2.83941004102231 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",3.00384267946893 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",2.79901725068175 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.9585397816081 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",2.96022299802579 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",3.02290879577804 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",2.9727673502599 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",3.04915842140773 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.81398876667813 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",3.12384123018584 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.99186374189565 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",3.06150708493967 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",3.14692295572818 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",3.02537669361615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",2.99464631964396 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",3.03275102923796 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",2.77402194100904 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",3.04700520347984 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",3.04372812872976 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",3.2200837412671 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2101,"Simulated","PgC/yr","HL",2.91537634016306 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2102,"Simulated","PgC/yr","HL",2.93789017397239 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2103,"Simulated","PgC/yr","HL",2.97392882188185 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2104,"Simulated","PgC/yr","HL",3.25920772019126 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2105,"Simulated","PgC/yr","HL",2.88758083800653 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2106,"Simulated","PgC/yr","HL",2.99789311906741 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2107,"Simulated","PgC/yr","HL",3.14379267044059 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2108,"Simulated","PgC/yr","HL",3.00954086291595 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2109,"Simulated","PgC/yr","HL",3.06365388082857 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2110,"Simulated","PgC/yr","HL",2.88325146629723 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2111,"Simulated","PgC/yr","HL",3.18485977487445 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2112,"Simulated","PgC/yr","HL",2.7887896948828 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2113,"Simulated","PgC/yr","HL",3.23013239740865 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2114,"Simulated","PgC/yr","HL",3.10192464600201 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2115,"Simulated","PgC/yr","HL",3.29206470650126 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2116,"Simulated","PgC/yr","HL",3.44946888199706 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2117,"Simulated","PgC/yr","HL",3.0490061273404 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2118,"Simulated","PgC/yr","HL",2.86431562563608 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2119,"Simulated","PgC/yr","HL",3.11710909846241 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2120,"Simulated","PgC/yr","HL",3.20569195190414 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2121,"Simulated","PgC/yr","HL",3.00166102108268 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2122,"Simulated","PgC/yr","HL",3.12754858154784 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2123,"Simulated","PgC/yr","HL",3.07494107305988 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2124,"Simulated","PgC/yr","HL",3.03963453759458 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2125,"Simulated","PgC/yr","HL",3.07078784870556 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2126,"Simulated","PgC/yr","HL",3.12269902468084 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2127,"Simulated","PgC/yr","HL",3.32095562502162 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2128,"Simulated","PgC/yr","HL",3.23614342589759 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2129,"Simulated","PgC/yr","HL",2.93724613520572 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2130,"Simulated","PgC/yr","HL",2.972500376925 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2131,"Simulated","PgC/yr","HL",3.43561654390875 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2132,"Simulated","PgC/yr","HL",3.15553949717631 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2133,"Simulated","PgC/yr","HL",2.88636432033615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2134,"Simulated","PgC/yr","HL",3.37896865546576 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2135,"Simulated","PgC/yr","HL",3.23624250878477 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2136,"Simulated","PgC/yr","HL",3.11825405626983 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2137,"Simulated","PgC/yr","HL",2.90106711987275 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2138,"Simulated","PgC/yr","HL",3.36248786856475 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2139,"Simulated","PgC/yr","HL",2.87590832343619 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2140,"Simulated","PgC/yr","HL",3.31298220490602 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2141,"Simulated","PgC/yr","HL",3.07025390203576 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2142,"Simulated","PgC/yr","HL",3.1512844376324 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2143,"Simulated","PgC/yr","HL",3.35535665299018 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2144,"Simulated","PgC/yr","HL",3.15212939447585 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2145,"Simulated","PgC/yr","HL",3.17401570333304 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2146,"Simulated","PgC/yr","HL",3.15382756507003 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2147,"Simulated","PgC/yr","HL",3.28441881037383 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2148,"Simulated","PgC/yr","HL",3.1716239525286 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2149,"Simulated","PgC/yr","HL",3.10050721025485 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2150,"Simulated","PgC/yr","HL",3.20348185305953 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2151,"Simulated","PgC/yr","HL",3.21776905493047 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2152,"Simulated","PgC/yr","HL",3.0522813672222 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2153,"Simulated","PgC/yr","HL",3.08303559448203 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2154,"Simulated","PgC/yr","HL",3.19441576888252 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2155,"Simulated","PgC/yr","HL",3.21497822027488 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2156,"Simulated","PgC/yr","HL",3.34317771477425 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2157,"Simulated","PgC/yr","HL",3.47551667211582 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2158,"Simulated","PgC/yr","HL",3.02392164306922 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2159,"Simulated","PgC/yr","HL",3.2892766241481 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2160,"Simulated","PgC/yr","HL",3.23028927864668 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2161,"Simulated","PgC/yr","HL",3.22539293263852 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2162,"Simulated","PgC/yr","HL",3.12695133192234 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2163,"Simulated","PgC/yr","HL",3.61642905150092 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2164,"Simulated","PgC/yr","HL",3.3115455030419 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2165,"Simulated","PgC/yr","HL",3.21758189836579 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2166,"Simulated","PgC/yr","HL",3.16518906946672 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2167,"Simulated","PgC/yr","HL",3.22608100824393 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2168,"Simulated","PgC/yr","HL",2.90838824431442 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2169,"Simulated","PgC/yr","HL",3.38395307515142 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2170,"Simulated","PgC/yr","HL",3.40697883721118 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2171,"Simulated","PgC/yr","HL",3.03043909520376 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2172,"Simulated","PgC/yr","HL",3.10887696191917 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2173,"Simulated","PgC/yr","HL",3.23297552581024 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2174,"Simulated","PgC/yr","HL",3.31256660724034 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2175,"Simulated","PgC/yr","HL",3.38945492769236 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2176,"Simulated","PgC/yr","HL",3.07114014341554 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2177,"Simulated","PgC/yr","HL",3.56214263853574 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2178,"Simulated","PgC/yr","HL",2.77441992393921 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2179,"Simulated","PgC/yr","HL",3.36345667901718 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2180,"Simulated","PgC/yr","HL",3.13214217428962 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2181,"Simulated","PgC/yr","HL",3.31416569494734 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2182,"Simulated","PgC/yr","HL",3.48192678445591 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2183,"Simulated","PgC/yr","HL",3.17947902364007 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2184,"Simulated","PgC/yr","HL",3.33588686565922 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2185,"Simulated","PgC/yr","HL",3.26865086980004 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2186,"Simulated","PgC/yr","HL",3.1052108950935 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2187,"Simulated","PgC/yr","HL",3.34026302650969 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2188,"Simulated","PgC/yr","HL",3.47831576367867 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2189,"Simulated","PgC/yr","HL",3.29335828863945 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2190,"Simulated","PgC/yr","HL",3.1368623729428 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2191,"Simulated","PgC/yr","HL",3.22020484257365 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2192,"Simulated","PgC/yr","HL",3.57820782777107 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2193,"Simulated","PgC/yr","HL",3.3969136672551 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2194,"Simulated","PgC/yr","HL",3.17301936985639 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2195,"Simulated","PgC/yr","HL",3.33046482988852 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2196,"Simulated","PgC/yr","HL",2.7633859435307 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2197,"Simulated","PgC/yr","HL",3.4109421526984 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2198,"Simulated","PgC/yr","HL",3.12723206676935 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2199,"Simulated","PgC/yr","HL",3.15094865673695 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2200,"Simulated","PgC/yr","HL",3.07665025286374 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2201,"Simulated","PgC/yr","HL",3.06496672908371 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2202,"Simulated","PgC/yr","HL",3.23316543467734 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2203,"Simulated","PgC/yr","HL",2.81735859401982 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2204,"Simulated","PgC/yr","HL",3.28929864256747 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2205,"Simulated","PgC/yr","HL",3.4487119988311 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2206,"Simulated","PgC/yr","HL",3.44205693157548 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2207,"Simulated","PgC/yr","HL",3.22309200781399 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2208,"Simulated","PgC/yr","HL",3.06870710807477 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2209,"Simulated","PgC/yr","HL",3.3289648250687 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2210,"Simulated","PgC/yr","HL",3.11236412908744 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2211,"Simulated","PgC/yr","HL",2.75417398732534 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2212,"Simulated","PgC/yr","HL",3.06538783135423 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2213,"Simulated","PgC/yr","HL",3.40163937051313 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2214,"Simulated","PgC/yr","HL",3.10591823681587 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2215,"Simulated","PgC/yr","HL",3.21358005064467 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2216,"Simulated","PgC/yr","HL",3.37526956101102 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2217,"Simulated","PgC/yr","HL",3.13069996782066 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2218,"Simulated","PgC/yr","HL",3.02533357421154 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2219,"Simulated","PgC/yr","HL",3.03133084118838 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2220,"Simulated","PgC/yr","HL",2.85685138146849 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2221,"Simulated","PgC/yr","HL",3.03315561769395 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2222,"Simulated","PgC/yr","HL",2.86544682193139 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2223,"Simulated","PgC/yr","HL",2.95026452566026 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2224,"Simulated","PgC/yr","HL",2.93508282550228 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2225,"Simulated","PgC/yr","HL",2.88666432130011 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2226,"Simulated","PgC/yr","HL",3.19935064712459 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2227,"Simulated","PgC/yr","HL",2.79532090852944 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2228,"Simulated","PgC/yr","HL",3.03819783573047 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2229,"Simulated","PgC/yr","HL",3.01816933100791 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2230,"Simulated","PgC/yr","HL",3.08358880726879 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2231,"Simulated","PgC/yr","HL",2.87926062778579 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2232,"Simulated","PgC/yr","HL",3.06803004167904 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2233,"Simulated","PgC/yr","HL",2.9157368917803 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2234,"Simulated","PgC/yr","HL",3.09709160294955 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2235,"Simulated","PgC/yr","HL",2.86050368678205 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2236,"Simulated","PgC/yr","HL",3.26565911706767 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2237,"Simulated","PgC/yr","HL",2.92529288578837 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2238,"Simulated","PgC/yr","HL",2.92625619163595 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2239,"Simulated","PgC/yr","HL",3.07458602604748 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2240,"Simulated","PgC/yr","HL",2.9499149832527 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2241,"Simulated","PgC/yr","HL",2.84755135158563 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2242,"Simulated","PgC/yr","HL",3.17699919915814 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2243,"Simulated","PgC/yr","HL",2.86382021120018 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2244,"Simulated","PgC/yr","HL",2.67389565598055 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2245,"Simulated","PgC/yr","HL",3.14429634178375 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2246,"Simulated","PgC/yr","HL",2.77370432530958 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2247,"Simulated","PgC/yr","HL",2.72470508529643 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2248,"Simulated","PgC/yr","HL",2.72997134075007 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2249,"Simulated","PgC/yr","HL",2.84786786636413 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2250,"Simulated","PgC/yr","HL",2.54074091620119 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2251,"Simulated","PgC/yr","HL",2.72062011804218 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2252,"Simulated","PgC/yr","HL",3.01825740468541 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2253,"Simulated","PgC/yr","HL",2.79364200405222 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2254,"Simulated","PgC/yr","HL",2.44224261805513 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2255,"Simulated","PgC/yr","HL",2.9318984116004 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2256,"Simulated","PgC/yr","HL",2.86167616761369 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2257,"Simulated","PgC/yr","HL",2.91564331349796 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2258,"Simulated","PgC/yr","HL",2.97673341804954 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2259,"Simulated","PgC/yr","HL",2.77038780089145 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2260,"Simulated","PgC/yr","HL",2.71906231487151 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2261,"Simulated","PgC/yr","HL",2.60900324563342 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2262,"Simulated","PgC/yr","HL",3.01935006874681 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2263,"Simulated","PgC/yr","HL",2.5459149695237 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2264,"Simulated","PgC/yr","HL",2.76754467248986 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2265,"Simulated","PgC/yr","HL",2.68442266228298 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2266,"Simulated","PgC/yr","HL",2.48116705505372 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2267,"Simulated","PgC/yr","HL",2.76763274616735 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2268,"Simulated","PgC/yr","HL",2.74340560410053 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2269,"Simulated","PgC/yr","HL",2.78763648016811 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2270,"Simulated","PgC/yr","HL",2.8116558234021 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2271,"Simulated","PgC/yr","HL",2.24652171393544 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2272,"Simulated","PgC/yr","HL",2.76654283440837 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2273,"Simulated","PgC/yr","HL",2.89196800806668 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2274,"Simulated","PgC/yr","HL",2.59273823924227 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2275,"Simulated","PgC/yr","HL",2.54661185249687 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2276,"Simulated","PgC/yr","HL",2.54367046689883 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2277,"Simulated","PgC/yr","HL",2.80056404464274 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2278,"Simulated","PgC/yr","HL",2.3467966232947 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2279,"Simulated","PgC/yr","HL",2.52435645988494 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2280,"Simulated","PgC/yr","HL",2.3981204579332 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2281,"Simulated","PgC/yr","HL",2.50250207773584 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2282,"Simulated","PgC/yr","HL",2.62160328611987 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2283,"Simulated","PgC/yr","HL",2.72283434534042 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2284,"Simulated","PgC/yr","HL",2.47380161854306 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2285,"Simulated","PgC/yr","HL",2.65711706995751 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2286,"Simulated","PgC/yr","HL",2.324621047453 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2287,"Simulated","PgC/yr","HL",2.63158148331942 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2288,"Simulated","PgC/yr","HL",2.51913754403295 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2289,"Simulated","PgC/yr","HL",2.6183217159425 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2290,"Simulated","PgC/yr","HL",2.5357647534228 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2291,"Simulated","PgC/yr","HL",2.82600082362389 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2292,"Simulated","PgC/yr","HL",2.35957226067565 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2293,"Simulated","PgC/yr","HL",2.58869785928725 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2294,"Simulated","PgC/yr","HL",2.20255258182816 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2295,"Simulated","PgC/yr","HL",2.3847368369473 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2296,"Simulated","PgC/yr","HL",2.66483122318499 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2297,"Simulated","PgC/yr","HL",2.73220043048139 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2298,"Simulated","PgC/yr","HL",2.45755835534104 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2299,"Simulated","PgC/yr","HL",2.39899679102426 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2300,"Simulated","PgC/yr","HL",2.49837444979405 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",2.1544122093296 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",2.2609165979279 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",2.12199547339274 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",2.03140420582924 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",2.06746076551361 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",2.31767954263489 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",2.27569316267046 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",2.43025948664378 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",2.52274708816168 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",2.48279922276677 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",2.50794342023936 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",2.55876676974899 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",2.77130812817334 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",2.8577050675903 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",2.82610809176259 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",2.68610906043892 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",2.71832318899921 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",2.99653821786984 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",3.10022609734517 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",3.10042337294867 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",3.02747049932178 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",3.16335740066703 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",3.22791006582585 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",3.33866876501772 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",3.25289786462179 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",3.33186275669687 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",3.14844931885548 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",3.44575165099386 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",3.28355555976074 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",3.45076174041976 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",3.41543652227451 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",3.37929598716432 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",3.54367766104076 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",3.61195057085752 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",3.59341199590132 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",3.61940216803397 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",3.82958999296338 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",3.94235521608637 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",3.97708105407594 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",4.02393578716555 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",3.95096602959062 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",3.96991648401629 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",4.32753938644105 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",4.26999400403638 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",4.09238997726662 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",4.08788596196772 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",4.30785847910511 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",4.40438578735058 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",4.23767946041666 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",4.41717049053795 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",4.39354940290502 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",4.65735353780266 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",4.54382409387331 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",4.49117949954666 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",4.47716626698162 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",4.51871588586893 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",4.58565140927456 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",4.76358645028894 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",4.69027101609345 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",4.81226864859749 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",4.72054526788596 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",4.86053052546254 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",4.57076198866874 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",4.72183200245295 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",5.00690280285974 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",4.88462080912542 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",4.76915104411387 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",4.63286470410297 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",4.85868573198114 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",4.88115337937377 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",4.85722260458849 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",4.81386196011587 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",4.75367823867157 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",5.01396695785995 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",4.97537469576749 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",4.82450062464351 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",4.81289113310314 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",4.86499855129322 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",4.79198347364721 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",5.07141992286477 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",4.84732416788841 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",4.83919188101698 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",4.77397229991029 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",4.79200124622411 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",4.72861357348057 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",4.78665614372379 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",4.81453331920797 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",4.67120104108818 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",4.72283126558871 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",4.86328660782409 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",4.64698012898514 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",4.57597335252794 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",4.59949047058605 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",4.65939960571737 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",4.65462189273434 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2101,"Simulated","PgC/yr","LL",4.90968458568758 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2102,"Simulated","PgC/yr","LL",4.67028664200708 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2103,"Simulated","PgC/yr","LL",4.51035211118348 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2104,"Simulated","PgC/yr","LL",4.68922909877315 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2105,"Simulated","PgC/yr","LL",4.70408208559634 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2106,"Simulated","PgC/yr","LL",4.29743575138671 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2107,"Simulated","PgC/yr","LL",4.84780269452123 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2108,"Simulated","PgC/yr","LL",4.85633219848619 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2109,"Simulated","PgC/yr","LL",4.44382491273195 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2110,"Simulated","PgC/yr","LL",4.55137477316594 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2111,"Simulated","PgC/yr","LL",4.43715219873779 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2112,"Simulated","PgC/yr","LL",4.32872392869091 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2113,"Simulated","PgC/yr","LL",4.90847827203102 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2114,"Simulated","PgC/yr","LL",4.42214459049564 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2115,"Simulated","PgC/yr","LL",4.38688290931278 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2116,"Simulated","PgC/yr","LL",4.58163791709789 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2117,"Simulated","PgC/yr","LL",3.98552169515644 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2118,"Simulated","PgC/yr","LL",4.33740272230177 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2119,"Simulated","PgC/yr","LL",4.61441365908797 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2120,"Simulated","PgC/yr","LL",4.23327186134741 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2121,"Simulated","PgC/yr","LL",4.17763614232981 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2122,"Simulated","PgC/yr","LL",4.10022679504721 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2123,"Simulated","PgC/yr","LL",4.49322912197674 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2124,"Simulated","PgC/yr","LL",4.11674462801077 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2125,"Simulated","PgC/yr","LL",3.82999654065979 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2126,"Simulated","PgC/yr","LL",4.46358846255044 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2127,"Simulated","PgC/yr","LL",4.16190474589372 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2128,"Simulated","PgC/yr","LL",4.03488325021669 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2129,"Simulated","PgC/yr","LL",4.25986274657902 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2130,"Simulated","PgC/yr","LL",4.25257421279555 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2131,"Simulated","PgC/yr","LL",4.02649103940822 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2132,"Simulated","PgC/yr","LL",3.92464484321335 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2133,"Simulated","PgC/yr","LL",4.11232991991076 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2134,"Simulated","PgC/yr","LL",4.22177655861357 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2135,"Simulated","PgC/yr","LL",3.74228887369704 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2136,"Simulated","PgC/yr","LL",3.92166704795507 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2137,"Simulated","PgC/yr","LL",4.12218303653977 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2138,"Simulated","PgC/yr","LL",3.88085232512225 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2139,"Simulated","PgC/yr","LL",4.09037634430474 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2140,"Simulated","PgC/yr","LL",4.06263246314725 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2141,"Simulated","PgC/yr","LL",3.98357559798675 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2142,"Simulated","PgC/yr","LL",4.14131210536321 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2143,"Simulated","PgC/yr","LL",3.9065954584361 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2144,"Simulated","PgC/yr","LL",3.67436874953159 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2145,"Simulated","PgC/yr","LL",4.20385247050341 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2146,"Simulated","PgC/yr","LL",3.93881403014061 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2147,"Simulated","PgC/yr","LL",3.74036810244942 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2148,"Simulated","PgC/yr","LL",3.65745636536102 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2149,"Simulated","PgC/yr","LL",4.09963630117997 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2150,"Simulated","PgC/yr","LL",3.53263156018786 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2151,"Simulated","PgC/yr","LL",3.84054545367412 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2152,"Simulated","PgC/yr","LL",3.61598983327068 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2153,"Simulated","PgC/yr","LL",3.83546427394066 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2154,"Simulated","PgC/yr","LL",3.85685668043132 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2155,"Simulated","PgC/yr","LL",3.64509998127675 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2156,"Simulated","PgC/yr","LL",3.82371571198611 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2157,"Simulated","PgC/yr","LL",3.49128366004828 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2158,"Simulated","PgC/yr","LL",3.72405687569223 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2159,"Simulated","PgC/yr","LL",3.69581314080965 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2160,"Simulated","PgC/yr","LL",3.4696060036985 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2161,"Simulated","PgC/yr","LL",3.79626507834734 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2162,"Simulated","PgC/yr","LL",3.55378670277701 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2163,"Simulated","PgC/yr","LL",4.14073760681517 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2164,"Simulated","PgC/yr","LL",3.44895338072098 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2165,"Simulated","PgC/yr","LL",3.50434783700727 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2166,"Simulated","PgC/yr","LL",3.62432606046194 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2167,"Simulated","PgC/yr","LL",3.66358790438881 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2168,"Simulated","PgC/yr","LL",3.56221890188349 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2169,"Simulated","PgC/yr","LL",3.64216617314628 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2170,"Simulated","PgC/yr","LL",3.1870966759363 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2171,"Simulated","PgC/yr","LL",2.99493024397553 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2172,"Simulated","PgC/yr","LL",3.45145398228971 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2173,"Simulated","PgC/yr","LL",3.24431859744153 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2174,"Simulated","PgC/yr","LL",3.21903932838456 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2175,"Simulated","PgC/yr","LL",3.19548622085824 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2176,"Simulated","PgC/yr","LL",3.4070296490901 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2177,"Simulated","PgC/yr","LL",3.20024082949131 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2178,"Simulated","PgC/yr","LL",3.32692908935161 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2179,"Simulated","PgC/yr","LL",3.16623611380914 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2180,"Simulated","PgC/yr","LL",3.15016215095346 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2181,"Simulated","PgC/yr","LL",3.45729227379878 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2182,"Simulated","PgC/yr","LL",3.13595430867145 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2183,"Simulated","PgC/yr","LL",3.12659571399447 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2184,"Simulated","PgC/yr","LL",3.44358161935533 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2185,"Simulated","PgC/yr","LL",2.93416136043705 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2186,"Simulated","PgC/yr","LL",2.96176528255151 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2187,"Simulated","PgC/yr","LL",3.03005329905863 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2188,"Simulated","PgC/yr","LL",2.99266957219485 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2189,"Simulated","PgC/yr","LL",2.77154894659023 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2190,"Simulated","PgC/yr","LL",2.97176502293988 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2191,"Simulated","PgC/yr","LL",3.07325132445269 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2192,"Simulated","PgC/yr","LL",3.16770235140274 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2193,"Simulated","PgC/yr","LL",2.82890816125195 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2194,"Simulated","PgC/yr","LL",2.95611626898634 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2195,"Simulated","PgC/yr","LL",2.67357894941553 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2196,"Simulated","PgC/yr","LL",2.87723935116688 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2197,"Simulated","PgC/yr","LL",2.80540970439957 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2198,"Simulated","PgC/yr","LL",2.65576016382346 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2199,"Simulated","PgC/yr","LL",2.80813823926694 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2200,"Simulated","PgC/yr","LL",2.76440303773632 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2201,"Simulated","PgC/yr","LL",3.05807976418871 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2202,"Simulated","PgC/yr","LL",2.91828733907141 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2203,"Simulated","PgC/yr","LL",2.5018185459279 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2204,"Simulated","PgC/yr","LL",2.58191244095006 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2205,"Simulated","PgC/yr","LL",2.86454040066302 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2206,"Simulated","PgC/yr","LL",2.55666116370169 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2207,"Simulated","PgC/yr","LL",2.33723870781912 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2208,"Simulated","PgC/yr","LL",2.65770892687969 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2209,"Simulated","PgC/yr","LL",2.60819408334374 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2210,"Simulated","PgC/yr","LL",2.26054781695739 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2211,"Simulated","PgC/yr","LL",2.30521207994505 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2212,"Simulated","PgC/yr","LL",2.96590407139527 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2213,"Simulated","PgC/yr","LL",2.85568299265439 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2214,"Simulated","PgC/yr","LL",2.07426499657677 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2215,"Simulated","PgC/yr","LL",2.39171076736471 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2216,"Simulated","PgC/yr","LL",2.55939503034213 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2217,"Simulated","PgC/yr","LL",2.21263783711481 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2218,"Simulated","PgC/yr","LL",2.56221820418145 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2219,"Simulated","PgC/yr","LL",2.16545564429596 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2220,"Simulated","PgC/yr","LL",2.48794260651936 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2221,"Simulated","PgC/yr","LL",2.11849472005941 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2222,"Simulated","PgC/yr","LL",2.47024911759438 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2223,"Simulated","PgC/yr","LL",2.45850055563983 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2224,"Simulated","PgC/yr","LL",2.24574548197835 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2225,"Simulated","PgC/yr","LL",2.27448240586968 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2226,"Simulated","PgC/yr","LL",2.37103148552185 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2227,"Simulated","PgC/yr","LL",2.26093703639133 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2228,"Simulated","PgC/yr","LL",2.13063116850464 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2229,"Simulated","PgC/yr","LL",2.26745246307999 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2230,"Simulated","PgC/yr","LL",2.21512111042106 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2231,"Simulated","PgC/yr","LL",2.35663303235268 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2232,"Simulated","PgC/yr","LL",2.13726122831425 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2233,"Simulated","PgC/yr","LL",1.98234123006078 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2234,"Simulated","PgC/yr","LL",1.97714141837656 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2235,"Simulated","PgC/yr","LL",2.08879674407263 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2236,"Simulated","PgC/yr","LL",2.22666439911251 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2237,"Simulated","PgC/yr","LL",1.75253647907224 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2238,"Simulated","PgC/yr","LL",2.3341822689081 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2239,"Simulated","PgC/yr","LL",2.08293046075496 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2240,"Simulated","PgC/yr","LL",1.96639656270199 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2241,"Simulated","PgC/yr","LL",2.18313980261807 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2242,"Simulated","PgC/yr","LL",2.07081400645873 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2243,"Simulated","PgC/yr","LL",2.00679940606533 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2244,"Simulated","PgC/yr","LL",2.15407097585327 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2245,"Simulated","PgC/yr","LL",1.91490496430121 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2246,"Simulated","PgC/yr","LL",1.72992976126542 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2247,"Simulated","PgC/yr","LL",1.78513627255108 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2248,"Simulated","PgC/yr","LL",2.13284118844118 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2249,"Simulated","PgC/yr","LL",1.68580267441433 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2250,"Simulated","PgC/yr","LL",2.06773490751217 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2251,"Simulated","PgC/yr","LL",2.04873913301542 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2252,"Simulated","PgC/yr","LL",1.60723766531933 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2253,"Simulated","PgC/yr","LL",1.78246905307399 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2254,"Simulated","PgC/yr","LL",1.71299871588912 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2255,"Simulated","PgC/yr","LL",2.00131301157872 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2256,"Simulated","PgC/yr","LL",1.81463830587762 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2257,"Simulated","PgC/yr","LL",1.70577949515553 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2258,"Simulated","PgC/yr","LL",2.03263984423767 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2259,"Simulated","PgC/yr","LL",1.4289471727671 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2260,"Simulated","PgC/yr","LL",1.74989858434702 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2261,"Simulated","PgC/yr","LL",1.66719878523805 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2262,"Simulated","PgC/yr","LL",1.38628232467981 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2263,"Simulated","PgC/yr","LL",1.56594574879695 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2264,"Simulated","PgC/yr","LL",1.93050573229714 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2265,"Simulated","PgC/yr","LL",1.8799391965236 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2266,"Simulated","PgC/yr","LL",1.82819300595884 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2267,"Simulated","PgC/yr","LL",1.88681051906453 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2268,"Simulated","PgC/yr","LL",1.65806412502991 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2269,"Simulated","PgC/yr","LL",1.58375920261595 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2270,"Simulated","PgC/yr","LL",1.43587314598197 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2271,"Simulated","PgC/yr","LL",1.74897618760632 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2272,"Simulated","PgC/yr","LL",1.71917424204472 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2273,"Simulated","PgC/yr","LL",1.81455299750854 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2274,"Simulated","PgC/yr","LL",1.48239419894043 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2275,"Simulated","PgC/yr","LL",1.33374303287124 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2276,"Simulated","PgC/yr","LL",1.91747487891982 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2277,"Simulated","PgC/yr","LL",1.34400269719666 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2278,"Simulated","PgC/yr","LL",1.95481728454233 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2279,"Simulated","PgC/yr","LL",1.6983323411233 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2280,"Simulated","PgC/yr","LL",1.55928636423547 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2281,"Simulated","PgC/yr","LL",1.91846125693733 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2282,"Simulated","PgC/yr","LL",1.59527983127187 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2283,"Simulated","PgC/yr","LL",1.70963036825364 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2284,"Simulated","PgC/yr","LL",1.91099410875609 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2285,"Simulated","PgC/yr","LL",1.52737303653908 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2286,"Simulated","PgC/yr","LL",1.51118310761918 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2287,"Simulated","PgC/yr","LL",1.65176596809376 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2288,"Simulated","PgC/yr","LL",1.72563368511617 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2289,"Simulated","PgC/yr","LL",1.59996112802526 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2290,"Simulated","PgC/yr","LL",1.56462613496271 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2291,"Simulated","PgC/yr","LL",1.47507234157529 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2292,"Simulated","PgC/yr","LL",1.60788280986051 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2293,"Simulated","PgC/yr","LL",1.59549976691091 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2294,"Simulated","PgC/yr","LL",1.65328818930457 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2295,"Simulated","PgC/yr","LL",1.51676414107774 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2296,"Simulated","PgC/yr","LL",1.38613436797718 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2297,"Simulated","PgC/yr","LL",1.6950533006867 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2298,"Simulated","PgC/yr","LL",1.70754697792745 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2299,"Simulated","PgC/yr","LL",1.67243858522028 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2300,"Simulated","PgC/yr","LL",1.69457477405388 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",7.27302539808949 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",7.85985647477791 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",8.28348805512674 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",7.96865994233726 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",8.88642662726951 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",8.9201808270305 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",9.46568831068427 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",8.77728770574235 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",8.77540163292333 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",9.25660578574757 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",9.04358681118861 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",9.89765261323351 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",8.75612558077303 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",9.29319993423605 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",11.213556376961 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",10.8525588446019 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",9.85201147661318 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",11.2500272974613 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",11.0852110042769 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",11.4535851009282 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",11.6470074023676 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",10.2652074719634 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",10.4376011454207 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",11.8233032954505 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",12.2899950706673 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",12.3208933477023 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",12.2250493568994 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",12.8486742570571 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",11.714178065922 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",12.1978136895129 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",12.1229412766976 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",13.517494162878 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",13.3102201227678 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",12.0226702063195 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",13.0542482073305 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",13.8977209663919 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",13.9429958420474 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",13.8751519885576 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",13.2052709528386 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",14.5713444817518 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",13.3313856707367 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",16.1297791822064 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",15.2166027398337 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",14.2338823541343 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",14.7999209898179 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",14.8775432123694 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",15.2930725524957 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",15.6479805684392 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",16.4659747999455 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",15.4942878831873 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",15.4713309653902 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",16.3471853013443 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",16.6982139176601 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",16.2221545333421 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",15.6197864611446 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",16.9140112269524 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",17.2386371058017 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",16.4718737693794 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",15.8260336013534 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",16.8113896967999 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",17.334560966597 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",16.268581818887 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",17.7710961147076 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",18.0142203713777 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",18.0795540251084 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",17.4456258959394 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",17.5415155267379 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",18.1952628240051 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",18.2643389573767 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",17.678823453562 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",18.2137584322303 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",18.1470898086277 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",17.1025728688583 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",17.9114162812427 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",17.7831678935492 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",17.6039510407467 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",19.254042262406 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",18.8721838290486 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",18.109779112208 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",18.9663619600114 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",18.9116738352592 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",18.4775804269143 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",18.1062306025485 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",18.3654885976705 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",17.4970849910014 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",18.8699588792621 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",17.3468951754134 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",18.1453098487985 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",18.1105892221303 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",18.4004260143179 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",18.4264864518172 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",19.0266409842271 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",17.7015179413843 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",17.1738511320185 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",18.2708997067471 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",2.15784617466817 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",2.01717629049718 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.88805694073488 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",2.17905018119184 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",2.07563138357454 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",2.11731945885391 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",2.19398845195878 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",2.16319578523598 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",2.24337688351061 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",2.1875212737609 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",2.10711070627069 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",2.28356902970521 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",2.22279822439123 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",2.56792868299115 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",2.45030031074188 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",2.62750309537199 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",2.83039066708649 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",2.88728677083661 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",2.92239030580021 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",2.91369149568897 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",2.97575153262636 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",2.80041428016872 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",2.93325068088875 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",3.07235807238571 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",3.27146378122663 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",3.29722564194068 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",3.17930298855998 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",3.52018388748816 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",3.32426272089094 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",3.54112163965482 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",3.43452530648742 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",3.56433306389647 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",3.47932435372764 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",3.65561626818903 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",3.58074274032057 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",3.66248457959583 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",3.58168514061051 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",3.90546094877424 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",3.79622309211757 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",3.90480932626893 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",4.09210875638457 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",4.24013391716794 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",4.30588823330883 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",4.02202605526888 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",4.23594391439185 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",4.28546722479558 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",4.61108229003076 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",4.41158070300112 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",4.37119236938557 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",4.31861939559004 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",4.77105036006472 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",4.60418945519634 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",4.55627418097507 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",4.41899903985595 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",4.35799175863279 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",4.74190776968601 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",4.72120999677534 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",4.54188068063596 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",4.44707661280663 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",4.42174216040251 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",4.72565749554143 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",4.56082853181865 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",5.57366010588208 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",4.89445925453853 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",5.20381178391533 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",5.09453714211722 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",5.21270502977412 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",5.78271707131623 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",5.65148870677867 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",5.23484442989412 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",5.51766261058686 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",5.40490038704661 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",5.3013397038838 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",5.19570679108716 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",5.16198707811065 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",5.69009558854502 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",6.5135870329802 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",5.52244117562582 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",6.11384290107214 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",5.96477374294155 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",6.47038200853523 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",5.99578361716613 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",5.99131860166602 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",6.21602676894147 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",6.10147258351162 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",6.07432514913707 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",5.44367542945949 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",5.93638962714564 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",5.96796354020546 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",6.26418552576553 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",6.16419475299472 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",6.32552212158815 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",5.83582605717258 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",5.76949894382944 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",5.38498210879955 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",5.11517119632302 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",5.84267137983708 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",6.3954223954849 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",5.78959237767923 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",6.81078343103998 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",6.80285301841341 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",7.27168711389661 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",6.61408196155528 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",6.53201749924204 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",7.06907477785795 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",6.93646757736899 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",7.61406826406763 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",6.53330881110195 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",6.72526516826972 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",8.76325179236262 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",8.22504421275557 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",7.02161303058209 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",8.36273070200388 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",8.16281205988989 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",8.53986932801628 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",8.67124509797316 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",7.46476866053094 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",7.50432414087694 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",8.75093362373039 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",9.01852202960855 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",9.02365154141707 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",9.0457236056912 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",9.32845619254422 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",8.38988302086524 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",8.65665916550618 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",8.68840882502062 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",9.95312661457672 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",9.83087212300801 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",8.36702477270632 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",9.47346558868994 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",10.2351966435121 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",10.3612758134392 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",9.96966158768192 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",9.40901686086652 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",10.6665063946563 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",9.23925426228429 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",11.8896211487856 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",10.9106869963185 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",10.2118236090994 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",10.5639547916008 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",10.5920507242895 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",10.6819692988277 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",11.2363834700647 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",12.0947533297327 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",11.175632897149 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",10.7002427620958 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",11.7429601869851 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",12.1419050462628 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",11.8031119466225 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",11.2617750847222 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",12.1720775088683 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",12.5173996048983 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",11.9299637788443 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",11.3789203468676 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",12.3896109196443 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",12.6088731623045 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",11.7077267863498 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",12.1974111738537 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",13.1197381549601 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",12.8757120857568 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",12.351055071142 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",12.3287734222204 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",12.4125106984015 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",12.6128137400071 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",12.4439387372358 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",12.6960777605328 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",12.7421574081291 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",11.8011899491646 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",12.7156744079805 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",12.6211488345105 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",11.9138247951651 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",12.7404189179662 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",13.3497114286797 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",11.9959105056914 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",13.0015497987169 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",12.4412633940407 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",12.4817702148369 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",12.1148811825079 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",12.1494288453568 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",11.3955905358744 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",12.7956063223605 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",11.9031910303352 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",12.2088948672077 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",12.1425907840493 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",12.1362163201186 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",12.2622665152097 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",12.7010807488905 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",11.8656686176519 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",11.4043216198038 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",12.8858919114887 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",2.76775554619817 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",2.78609754565197 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",2.77652671722005 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",2.75581877981658 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",2.96665608803327 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",2.77908744351319 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",2.96342100677325 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",2.98772626340881 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",3.06659162113982 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",3.25444732216607 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",3.28977463734808 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",3.22738996823325 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",3.22519945370402 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",3.23626593766215 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",3.27319028943802 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",3.3733354193586 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",3.38580642979334 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",3.66641555570628 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",3.52806343263702 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",3.51826705980739 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",3.63275020656594 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",3.8546391902702 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",3.78649972167452 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",3.78696334071424 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",3.72212046548705 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",3.8600271953265 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",3.88449420602506 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",4.00988094356562 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",3.99016859102878 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",4.08764363979673 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",4.11454721345838 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",4.23493438351647 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",4.26291214085002 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",4.30235393262048 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",4.52635483204871 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",4.47832640558177 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",4.44979617838515 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",4.41972928759002 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",4.55883550354454 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",4.72086295369415 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",4.63902564983378 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",4.71946298367001 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",4.75774515828459 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",4.87512051325413 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",4.93547072633713 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",4.97081968466842 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",4.97289514877256 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",5.06694716261573 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",5.04586559610899 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",5.16762539747635 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",5.06398432939133 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",5.12323871565316 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",5.19693249982062 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",5.31511548599204 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",5.53786222187545 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",5.45505211541084 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",5.48451755447875 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",5.55738548163441 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",5.60912969509789 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",5.66294025976056 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",5.66719598637585 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",5.48337958047215 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",5.54567767698988 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",5.60178127636255 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",5.74535053752015 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",5.79680199891187 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",5.78993314679993 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",5.60024005631156 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",5.74003315747728 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",5.74114493188213 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",5.74695099145336 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",5.87469569315175 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",5.85055219057919 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",5.86843171010639 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",5.69309600137903 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",5.8393376219155 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",5.89823432665774 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",5.67344971740314 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",5.72088010948223 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",5.98293194356173 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",5.91038182896648 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",5.76275162953706 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",5.80566771632268 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",5.77203198412346 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",5.90811955031071 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",5.88459002970968 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",5.83548855868395 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",5.91350072068829 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",5.78948205800452 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",5.92561632782968 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",5.80985851349015 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",5.72591271124517 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",5.78020170341812 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",5.85340339071786 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",5.84035598904453 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.808977033847339 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.779303087151008 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.784824070792199 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.777044618983947 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.838785443566654 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.766152773709504 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.812298100308692 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.815957366803805 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.851485220777982 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.960139172841754 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",0.947835806238693 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.876185907893835 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.932851008668423 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.882213766069769 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",0.880762076040614 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.945733417302108 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.952361933716158 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.987663072821202 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.91504384926635 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.996993785378161 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.91841274371436 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.04959606038233 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.05082052492327 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",1.1233262208372 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.986309762067091 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.10286111894535 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.05074971907826 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.11151883556196 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.08521957032982 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.06561503178507 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.10162576119748 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.16155286682712 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.15048536859101 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.15765463060509 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.22306969984243 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.191759729631 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.25890835062669 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",1.18858810435216 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",1.17579182013572 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",1.22251380587652 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",1.22708282535626 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",1.26644100321554 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.34195577733623 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.34973063357281 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.23186426237103 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.4619619828734 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",1.33971279794777 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.35084310233006 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",1.26601480649459 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",1.33984232498636 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",1.28162238912954 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",1.4013753276057 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.39100924977176 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",1.44942696541681 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",1.48145197253907 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",1.49352011395509 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",1.55575470718296 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",1.54070250789484 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",1.51879269443452 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",1.58146233511397 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.59300641115307 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",1.47882960317816 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",1.5496528092412 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.46406011665103 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",1.46867509184748 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",1.67042051802499 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",1.60194701073701 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.46108678177949 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",1.54086199125248 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",1.56899999577234 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",1.61150937414749 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.57819011787742 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.58700425413722 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.72705327959152 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",1.55488188897807 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.66420662429954 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.73390238344581 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",1.52365055410413 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",1.57984809801273 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.71195767768206 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",1.61100539312084 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.65444324718001 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",1.74552747771141 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",1.66546530031849 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.71089388794326 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",1.60305573495438 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.77878239597808 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",1.7634893546931 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",1.64718343538337 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.68365457299473 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.67097828426084 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.72904809810972 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.7291927735142 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",1.60224316980029 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.72522696536795 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",1.95877872753885 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",2.00679387101256 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",1.99170314820194 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",1.97877405637626 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",2.12787136665196 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",2.01293480206705 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",2.15112319111483 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",2.17176962529599 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",2.21510591801834 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",2.29430823233175 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",2.34193871982114 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",2.35120340627477 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",2.2923481339532 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",2.35405296106039 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",2.39242845116377 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",2.42760170442035 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",2.43344421219229 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",2.67875299497982 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",2.61301945355825 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",2.52127367231025 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",2.71433803361004 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",2.80504320899618 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",2.7356791739392 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",2.6636370805934 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",2.73581094525877 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",2.75716661918936 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",2.83374513399258 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",2.89836152591812 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",2.90494815408291 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",3.02202794042429 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",3.0129211857728 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",3.07338193659819 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",3.11242694127379 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",3.14469928768638 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",3.30328607078437 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",3.28656661570764 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",3.19088804191464 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",3.23114127332184 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",3.38304453757889 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",3.49834928673317 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",3.41194315064788 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",3.4530218906159 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",3.41578874158434 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",3.52538953663357 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",3.70360733962665 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",3.50885708056182 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",3.63318235166582 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",3.71610429903669 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",3.77985061269039 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",3.82778339908937 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",3.78236201901624 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",3.72186348082714 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",3.80592292473604 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",3.86568800050666 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",4.05641051416387 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",3.96153128844912 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",3.92876286177463 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",4.01668339912817 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",4.09033678441837 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",4.08147806989783 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",4.0741899532377 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",4.0045497797537 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",3.99602533806587 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",4.13772116959034 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",4.27667499497972 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",4.12638205376031 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",4.1879861145643 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",4.13915321378386 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",4.19917020531248 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",4.17214545792026 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",4.13544133198049 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",4.29650560966768 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",4.26354824617469 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",4.14137782370831 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",4.13821434313195 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",4.1751306596525 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",4.16433219379539 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",4.14979956127941 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",4.14103192399444 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",4.27097491650172 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",4.29937648040205 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",4.10830806703098 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",4.06014080519571 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",4.10656597267378 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",4.19722560944212 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",4.28153406238872 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",4.05670603072613 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",4.15001078295342 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",4.14229828513175 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",4.24196197243486 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",4.13888095098388 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",3.99686441132135 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",4.05100982787518 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",4.2511607732287 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",4.1151282017253 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp85/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp85/summary.csv deleted file mode 100644 index 526605dfb..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_fgco2/rcp85/summary.csv +++ /dev/null @@ -1,886 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.914687648,2.348781066,7.454472535,4.187024493,3.870870956,1,CMIP5 -2006,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.758377668,-0.424690383,2.157846175,0.982495042,0.945700707,1,CMIP5 -2006,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.107425265,1.403079913,7.879162765,3.207182413,2.154412209,1,CMIP5 -2007,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.948941697,2.129617016,7.859856475,4.045661382,3.420753195,1,CMIP5 -2007,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.798052613,-0.655721802,2.01717629,0.926224855,0.857431327,1,CMIP5 -2007,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.050944078,1.364164664,7.221252209,3.122134999,2.260916598,1,CMIP5 -2008,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.097044657,2.217651067,8.283488055,4.255965888,3.847863354,1,CMIP5 -2008,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.780409683,-0.587241998,1.888056941,0.923198476,0.891291402,1,CMIP5 -2008,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.250184052,1.405043719,7.70948536,3.33552323,2.218768753,1,CMIP5 -2009,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.001803539,2.339078792,7.968659942,4.250407233,3.821166698,1,CMIP5 -2009,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.821563638,-0.619480755,2.179050181,0.993648558,0.903577464,1,CMIP5 -2009,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.151678827,1.435501557,7.734483418,3.259658725,2.193470872,1,CMIP5 -2010,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.189521607,2.363672928,8.886426627,4.405990033,3.899934004,1,CMIP5 -2010,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.784443096,-0.541133262,2.075631384,1.013554441,0.94322094,1,CMIP5 -2010,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.271972805,1.440388367,7.615604151,3.395287329,2.349505,1,CMIP5 -2011,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.359235673,2.38358209,8.920180827,4.616804306,4.104330576,1,CMIP5 -2011,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.786477462,-0.455551798,2.117319459,1.016417283,0.943805054,1,CMIP5 -2011,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.483281577,1.439777244,8.567266215,3.603143895,2.467857816,1,CMIP5 -2012,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.46081664,2.376021931,9.465688311,4.571541407,3.887179812,1,CMIP5 -2012,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.806797961,-0.489347853,2.193988452,1.007963052,0.94423007,1,CMIP5 -2012,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.506153434,1.487798708,8.362256648,3.566318663,2.348359948,1,CMIP5 -2013,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.238151508,2.254146852,8.777287706,4.518230091,4.030393646,1,CMIP5 -2013,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.827045249,-0.507866957,2.163195785,1.013210348,0.979842667,1,CMIP5 -2013,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.325073617,1.463860127,8.120544144,3.507840915,2.430259487,1,CMIP5 -2014,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.222911277,2.464997845,8.775401633,4.644150595,4.255260524,1,CMIP5 -2014,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.828465117,-0.539356046,2.243376884,1.036581844,1.009688012,1,CMIP5 -2014,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.348451489,1.563342446,8.370207636,3.610276854,2.522747088,1,CMIP5 -2015,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.370744898,2.497422092,9.256605786,4.800392636,4.350582305,1,CMIP5 -2015,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.799783847,-0.468482001,2.187521274,1.075986821,0.998392855,1,CMIP5 -2015,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.497887062,1.603506512,8.677599759,3.727222972,2.488126164,1,CMIP5 -2016,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.347336665,2.599182066,9.043586811,4.852611773,4.270020339,1,CMIP5 -2016,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.754717308,-0.289010048,2.107110706,1.096278635,1.031006934,1,CMIP5 -2016,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.473894345,1.598812942,8.767665063,3.759182643,2.638211028,1,CMIP5 -2017,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.594169616,2.60964542,9.897652613,4.967426107,4.291442905,1,CMIP5 -2017,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.780020467,-0.21850106,2.28356903,1.102805603,1.021274527,1,CMIP5 -2017,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.625028632,1.58837071,8.935983261,3.86737319,2.621762595,1,CMIP5 -2018,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.390421954,2.638619233,9.079601386,4.991161242,4.580335998,1,CMIP5 -2018,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.726506813,-0.178373253,2.222798224,1.121998693,1.037176918,1,CMIP5 -2018,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.528686556,1.60144222,9.257975048,3.871819098,2.771308128,1,CMIP5 -2019,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.452804326,2.754193423,9.293199934,5.117873898,4.790756924,1,CMIP5 -2019,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.808539418,-0.100083086,2.567928683,1.180606388,1.086804688,1,CMIP5 -2019,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.494036899,1.667389154,9.148304893,3.940082944,2.857705068,1,CMIP5 -2020,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.845912008,2.74695986,11.21355638,5.340147066,4.720137737,1,CMIP5 -2020,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.824766215,-0.276947039,2.450300311,1.160360217,1.051202962,1,CMIP5 -2020,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.80216236,1.695756854,9.013699073,4.182678672,2.936508351,1,CMIP5 -2021,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.727249908,2.826207711,10.85255884,5.310414028,4.578589508,1,CMIP5 -2021,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.857729445,-0.332067304,2.627503095,1.18586288,1.080610797,1,CMIP5 -2021,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.69580739,1.745597195,9.084779106,4.127408484,2.856706507,1,CMIP5 -2022,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.563635629,2.896582021,9.852011477,5.301771428,4.702802699,1,CMIP5 -2022,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.860555563,-0.1691436,2.830390667,1.243672609,1.09582997,1,CMIP5 -2022,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.572397487,1.800751889,9.460640378,4.060888134,2.93035353,1,CMIP5 -2023,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.854858827,2.735617876,11.2500273,5.346003203,4.490694213,1,CMIP5 -2023,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.887181978,-0.171443333,2.887286771,1.223051796,1.071821119,1,CMIP5 -2023,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.692368159,1.813628468,9.047953656,4.125646413,2.996538218,1,CMIP5 -2024,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.844783197,2.792397322,11.085211,5.53065122,5.001874305,1,CMIP5 -2024,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.903985197,-0.11892049,2.922390306,1.254040734,1.087846341,1,CMIP5 -2024,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.736693346,1.827684998,9.474440865,4.279442512,3.100226097,1,CMIP5 -2025,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.000893814,2.870501376,11.4535851,5.668831363,5.04252024,1,CMIP5 -2025,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.827125566,0.0403183,2.913691496,1.305456356,1.136958969,1,CMIP5 -2025,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.888395387,1.903223438,9.816581035,4.36616141,3.100423373,1,CMIP5 -2026,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.01460624,2.868711038,11.6470074,5.719815797,5.003773979,1,CMIP5 -2026,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.853136422,0.075823269,2.975751533,1.314170587,1.138065308,1,CMIP5 -2026,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.862358533,1.916673706,9.686658191,4.408508779,3.034545383,1,CMIP5 -2027,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.775737394,3.072801571,10.3918984,5.66253213,4.952214547,1,CMIP5 -2027,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.826327164,0.098351616,2.80041428,1.299464355,1.142248609,1,CMIP5 -2027,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.7610611,1.986003072,10.29354739,4.365893299,3.171282283,1,CMIP5 -2028,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.682860428,3.032130609,10.43760115,5.699068593,5.148674006,1,CMIP5 -2028,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.89985161,0.059061266,2.933250681,1.307378849,1.145862863,1,CMIP5 -2028,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.631509062,2.045374999,9.778198576,4.39455869,3.256566938,1,CMIP5 -2029,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.049316944,3.133512471,11.8233033,5.893713647,5.079893207,1,CMIP5 -2029,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.921717896,0.020033321,3.072358072,1.338756719,1.194855095,1,CMIP5 -2029,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.914888086,1.981574001,10.10959974,4.557881281,3.338668765,1,CMIP5 -2030,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.195784254,3.190036683,12.28999507,5.980426028,5.133502096,1,CMIP5 -2030,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.007456683,0.038104691,3.271463781,1.351441517,1.179900892,1,CMIP5 -2030,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.989055981,2.010135908,10.34245948,4.632025546,3.291433714,1,CMIP5 -2031,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.249835854,3.122781833,12.32089335,5.99646775,5.249347996,1,CMIP5 -2031,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.963075588,0.178302121,3.297225642,1.394116969,1.16315871,1,CMIP5 -2031,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.014968507,2.071377436,10.40940709,4.605421045,3.331862757,1,CMIP5 -2032,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.216543829,3.17558313,12.22504936,6.101066434,5.262881823,1,CMIP5 -2032,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.88274962,0.238838105,3.179302989,1.434470436,1.249529505,1,CMIP5 -2032,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.062871778,2.117769159,10.5550984,4.669749137,3.197449825,1,CMIP5 -2033,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.291599674,3.277331715,12.84867426,6.246704792,5.564383801,1,CMIP5 -2033,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.996986154,0.095841494,3.520183887,1.458292791,1.207674614,1,CMIP5 -2033,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.052226736,2.133592413,10.47980628,4.791540693,3.445751651,1,CMIP5 -2034,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.118922846,3.357475524,11.71417807,6.13623882,5.377818971,1,CMIP5 -2034,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.950273702,0.219370481,3.324262721,1.450254452,1.23203572,1,CMIP5 -2034,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.981604281,2.193314587,10.88577037,4.689121995,3.421160629,1,CMIP5 -2035,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.165166241,3.408371388,12.19781369,6.320975452,5.607103858,1,CMIP5 -2035,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.004118658,0.283892067,3.54112164,1.478067475,1.246775251,1,CMIP5 -2035,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.946579751,2.161596097,10.72949671,4.845919376,3.707505398,1,CMIP5 -2036,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.106056709,3.413125061,12.12294128,6.323717445,5.665400147,1,CMIP5 -2036,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.986690842,0.185092263,3.434525306,1.48647044,1.236988758,1,CMIP5 -2036,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.947826109,2.176136476,10.68554012,4.840448504,3.572470922,1,CMIP5 -2037,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.478878806,3.466552878,13.51749416,6.603855781,5.652194363,1,CMIP5 -2037,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.990709808,0.243447012,3.564333064,1.544283938,1.265953173,1,CMIP5 -2037,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.243622584,2.231380303,10.9980533,5.06288417,3.566088145,1,CMIP5 -2038,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.477959131,3.509680429,13.31022012,6.54317098,5.731999763,1,CMIP5 -2038,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.013531924,0.177760508,3.479324354,1.506984489,1.290462642,1,CMIP5 -2038,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.252593515,2.223412515,11.27704432,5.039414305,3.708284138,1,CMIP5 -2039,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.193673412,3.491740829,12.02267021,6.527890124,5.809127438,1,CMIP5 -2039,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.006049399,0.340934602,3.655616268,1.558020657,1.277096043,1,CMIP5 -2039,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.029115846,2.214644712,11.36411926,4.97310992,3.678789489,1,CMIP5 -2040,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.351473442,3.581355717,13.05424821,6.768909397,5.957589728,1,CMIP5 -2040,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.990913883,0.250323542,3.58074274,1.591364625,1.307801793,1,CMIP5 -2040,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.177615932,2.273553827,11.35369052,5.180866929,3.757993112,1,CMIP5 -2041,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.562429641,3.694380191,13.89772097,6.857114063,5.939938239,1,CMIP5 -2041,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.991472091,0.320584119,3.66248458,1.604956347,1.321371292,1,CMIP5 -2041,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.292962219,2.385283534,11.39404759,5.255406159,3.884246657,1,CMIP5 -2042,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.672428787,3.580399909,13.94299584,6.95325517,6.137333673,1,CMIP5 -2042,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.945864613,0.499975336,3.581685141,1.627229072,1.318322252,1,CMIP5 -2042,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.414263212,2.433863132,11.79047997,5.329263652,3.912546183,1,CMIP5 -2043,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.703535066,3.61801978,13.87515199,7.087694989,6.28333921,1,CMIP5 -2043,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.996398115,0.632731851,3.905460949,1.707583655,1.374117254,1,CMIP5 -2043,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.395440613,2.434022972,12.05469553,5.383303763,3.942355216,1,CMIP5 -2044,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.51395243,3.728902276,13.20527095,7.059778818,6.32187748,1,CMIP5 -2044,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.978700647,0.535952044,3.796223092,1.671658645,1.345241162,1,CMIP5 -2044,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.287429756,2.433407416,12.06942738,5.391245295,3.977081054,1,CMIP5 -2045,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.791003574,3.788271059,14.57134448,7.236774968,6.327732304,1,CMIP5 -2045,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.019730496,0.504083384,3.904809326,1.697305368,1.339047091,1,CMIP5 -2045,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.464911522,2.449224148,12.06972702,5.542769597,4.023935787,1,CMIP5 -2046,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.511651335,3.839303312,13.33138567,7.146040043,6.312712499,1,CMIP5 -2046,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.070561227,0.58278373,4.092108756,1.739930943,1.323231128,1,CMIP5 -2046,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.235394589,2.516071823,12.13535278,5.409465933,3.967026427,1,CMIP5 -2047,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.193093799,3.820556864,16.12977918,7.54675212,6.301996703,1,CMIP5 -2047,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.076369422,0.62273404,4.240133917,1.790511937,1.37869625,1,CMIP5 -2047,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.73334169,2.50191865,12.20046649,5.759415756,4.153606703,1,CMIP5 -2048,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.986136974,3.909032805,15.21660274,7.572818661,6.781462378,1,CMIP5 -2048,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.115547686,0.599519036,4.305888233,1.823916753,1.417270918,1,CMIP5 -2048,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.595397555,2.570018041,12.59703541,5.752322646,4.327539386,1,CMIP5 -2049,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.787812747,3.966580946,14.23388235,7.454455931,6.393547565,1,CMIP5 -2049,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.037127796,0.708914877,4.022026055,1.795798892,1.382949335,1,CMIP5 -2049,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.460887528,2.583631832,12.64655058,5.662053929,4.269994004,1,CMIP5 -2050,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.928534945,4.012430971,14.79992099,7.429728577,6.359883902,1,CMIP5 -2050,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.117612222,0.655500348,4.235943914,1.799196683,1.401437814,1,CMIP5 -2050,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.541872144,2.610993474,12.6905982,5.634076567,4.092389977,1,CMIP5 -2051,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.90078697,4.106853739,14.87754321,7.718572156,6.544314679,1,CMIP5 -2051,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.054060842,0.784037267,4.285467225,1.882933487,1.461961983,1,CMIP5 -2051,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.562767975,2.70835237,12.7011597,5.839074596,4.110981505,1,CMIP5 -2052,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.047100245,4.065464136,15.29307255,7.654282532,6.388905405,1,CMIP5 -2052,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.196168759,0.667876477,4.61108229,1.885983238,1.480830456,1,CMIP5 -2052,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.566583188,2.700965512,12.83305791,5.771755972,4.307858479,1,CMIP5 -2053,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.088979471,4.152034711,15.64798057,7.930822209,6.916666349,1,CMIP5 -2053,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.1216964,0.788910435,4.411580703,1.875021467,1.451588531,1,CMIP5 -2053,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.67889598,2.7246423,12.93422938,6.059106534,4.405238863,1,CMIP5 -2054,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.299465284,4.154117744,16.4659748,7.977552107,6.724155115,1,CMIP5 -2054,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.108696817,0.71601342,4.371192369,1.880501283,1.511307956,1,CMIP5 -2054,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.803052551,2.701052712,12.83983214,6.100448988,4.415168798,1,CMIP5 -2055,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.121460383,4.229009601,15.49428788,7.884149021,6.842628512,1,CMIP5 -2055,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.115056882,0.583800594,4.318619396,1.885276094,1.484781131,1,CMIP5 -2055,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.672670113,2.74422843,13.19122693,6.002426809,4.463159534,1,CMIP5 -2056,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.072665517,4.237832404,15.47133097,8.076706652,6.948382211,1,CMIP5 -2056,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.22626705,0.860644957,4.77105036,1.948069263,1.458915917,1,CMIP5 -2056,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.63033797,2.778916301,13.24244704,6.132164321,4.563514342,1,CMIP5 -2057,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.281414211,4.219376125,16.3471853,8.084625618,7.127068514,1,CMIP5 -2057,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.163841147,0.778212515,4.604189455,1.957229455,1.491686568,1,CMIP5 -2057,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.758227614,2.727689219,13.2189838,6.130890412,4.698546182,1,CMIP5 -2058,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.419677933,4.257256445,16.69821392,8.296094754,7.154333487,1,CMIP5 -2058,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.150411537,0.834865406,4.556274181,1.992302271,1.463848024,1,CMIP5 -2058,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.923497727,2.793408612,13.606681,6.307507149,4.55054982,1,CMIP5 -2059,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.266812993,4.251000984,16.22215453,8.185487205,7.053931626,1,CMIP5 -2059,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.105037627,0.874273602,4.41899904,1.996370324,1.519180346,1,CMIP5 -2059,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.822376658,2.792395066,13.37238809,6.192962973,4.4911795,1,CMIP5 -2060,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.15790931,4.300434578,15.61978646,8.15807178,6.976538817,1,CMIP5 -2060,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.10603675,0.724581794,4.357991759,2.001650938,1.568827694,1,CMIP5 -2060,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.75782833,2.8876288,13.62461789,6.160297995,4.477531324,1,CMIP5 -2061,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.445930222,4.41376797,16.91401123,8.528563611,7.164317029,1,CMIP5 -2061,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.177185879,0.900502302,4.74190777,2.059407858,1.584415721,1,CMIP5 -2061,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.968857583,2.962548854,13.7938483,6.472972554,4.55323786,1,CMIP5 -2062,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.565977482,4.459522944,17.23863711,8.464814895,7.191098016,1,CMIP5 -2062,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.187957488,0.671648775,4.721209997,2.046041857,1.559550119,1,CMIP5 -2062,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.028523855,3.091368307,13.95224602,6.422510639,4.585651409,1,CMIP5 -2063,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.307959621,4.647455788,16.47187377,8.586971173,7.40688588,1,CMIP5 -2063,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.104624441,0.95206742,4.541880681,2.054417466,1.562988448,1,CMIP5 -2063,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.909788518,3.084467648,13.95012196,6.536220855,4.76358645,1,CMIP5 -2064,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.252846857,4.38682407,15.8260336,8.427187335,7.346728397,1,CMIP5 -2064,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.115115257,0.747524128,4.447076613,2.039710746,1.571260187,1,CMIP5 -2064,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.855864725,3.066072903,14.15912153,6.391367327,4.690271016,1,CMIP5 -2065,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.39304882,4.646359267,16.8113897,8.532114115,7.257188272,1,CMIP5 -2065,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.117123694,0.732169192,4.42174216,2.055638376,1.609310239,1,CMIP5 -2065,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.947410785,3.117362973,13.9239259,6.480498287,4.812268649,1,CMIP5 -2066,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.475192505,4.64830688,17.33456097,8.81969358,7.627890196,1,CMIP5 -2066,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.137337809,1.17683521,4.725657496,2.188462612,1.636593132,1,CMIP5 -2066,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.021936659,3.01171406,13.81326445,6.635469499,4.720545268,1,CMIP5 -2067,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.285957846,4.61544482,16.26858182,8.491801363,7.269361409,1,CMIP5 -2067,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.129436944,0.849969727,4.560828532,2.109459581,1.572955286,1,CMIP5 -2067,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.809799646,3.042489296,13.80131094,6.386306092,4.860530525,1,CMIP5 -2068,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.649639562,4.470370887,17.77109611,8.822117265,7.391206724,1,CMIP5 -2068,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.387334902,1.09197095,5.573660106,2.264773574,1.613749217,1,CMIP5 -2068,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.976014957,2.98980035,13.84089046,6.561466345,4.691625797,1,CMIP5 -2069,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.770389545,4.417153895,18.01422037,8.743776755,7.395485538,1,CMIP5 -2069,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.203310788,0.920305064,4.894459255,2.127877377,1.590313248,1,CMIP5 -2069,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.179362022,3.005170455,14.12405184,6.619690386,4.721832002,1,CMIP5 -2070,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.691855722,4.665267147,18.07955403,8.911052909,7.76687552,1,CMIP5 -2070,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.288109126,0.903850204,5.203811784,2.182224308,1.627875944,1,CMIP5 -2070,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.02342602,3.071353383,13.94905045,6.732504342,5.006902803,1,CMIP5 -2071,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.527381683,4.64418854,17.4456259,8.89091028,7.639610029,1,CMIP5 -2071,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.239094241,0.9246819,5.094537142,2.208729928,1.677503534,1,CMIP5 -2071,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.956733964,3.159172722,14.04316322,6.685913305,4.956246196,1,CMIP5 -2072,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.551629678,4.812022455,17.54151553,8.812389782,7.567538661,1,CMIP5 -2072,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.277213257,0.85998043,5.21270503,2.245234135,1.729485173,1,CMIP5 -2072,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.879998217,3.142780858,13.88309281,6.571057876,4.99902029,1,CMIP5 -2073,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.830527811,4.718986391,18.19526282,9.028813239,7.326671793,1,CMIP5 -2073,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.425155067,1.111539942,5.782717071,2.292597737,1.662932891,1,CMIP5 -2073,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.094644267,3.063034864,14.34145281,6.740015221,4.719871298,1,CMIP5 -2074,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.756012774,4.832122061,18.26433896,8.934430008,7.703269577,1,CMIP5 -2074,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.416474218,0.819696283,5.651488707,2.289023401,1.632673673,1,CMIP5 -2074,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.992027124,3.199448142,14.06759935,6.649368581,4.858685732,1,CMIP5 -2075,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.629574924,4.613920215,17.67882345,9.057496832,7.64134096,1,CMIP5 -2075,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.270370905,1.053703072,5.23484443,2.270838906,1.65840135,1,CMIP5 -2075,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.039942775,3.095599989,14.06761263,6.790812652,4.881153379,1,CMIP5 -2076,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.674823557,4.763425855,18.21375843,9.001913332,7.581677186,1,CMIP5 -2076,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.350443797,1.089798088,5.517662611,2.273475907,1.621345135,1,CMIP5 -2076,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.962061244,3.142080361,13.88295436,6.732209399,4.936197898,1,CMIP5 -2077,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.735683165,4.700465131,18.14708981,9.124037606,7.542517089,1,CMIP5 -2077,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.295047401,1.289959215,5.404900387,2.293092355,1.639460068,1,CMIP5 -2077,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.077423543,3.061004873,14.18950123,6.834816417,4.824426827,1,CMIP5 -2078,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.54321285,4.620371921,17.10257287,8.913806153,7.581506184,1,CMIP5 -2078,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.266996376,1.142526214,5.301339704,2.294871465,1.63266632,1,CMIP5 -2078,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.933467134,2.987705623,14.19647648,6.622796003,4.809543783,1,CMIP5 -2079,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.678675754,4.757263252,17.91141628,9.043192277,7.937442155,1,CMIP5 -2079,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.234387738,1.010573285,5.195706791,2.327832698,1.72705328,1,CMIP5 -2079,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.029470497,3.034973449,14.06508652,6.71925638,5.013966958,1,CMIP5 -2080,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.670912969,4.729395085,17.78316789,9.079406607,7.878389487,1,CMIP5 -2080,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.226282486,1.141484732,5.161987078,2.285081109,1.722001486,1,CMIP5 -2080,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.058402354,3.007393687,14.18588085,6.798179966,4.975374696,1,CMIP5 -2081,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.601854366,4.583402473,17.60395104,8.990635562,7.648397089,1,CMIP5 -2081,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.380052236,1.15623135,5.690095589,2.345378867,1.69549929,1,CMIP5 -2081,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.889089922,3.101907358,14.02687626,6.649099987,5.031853907,1,CMIP5 -2082,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,5.009700042,4.72591313,19.25404226,9.273674902,7.799816274,1,CMIP5 -2082,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.6235529,1.194207014,6.513587033,2.488940956,1.733902383,1,CMIP5 -2082,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.064967987,3.101015795,14.07603299,6.788886504,4.812891133,1,CMIP5 -2083,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.882728598,4.814266071,18.87218383,9.135813153,7.648913313,1,CMIP5 -2083,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.359069765,0.988106055,5.522441176,2.323030877,1.722627596,1,CMIP5 -2083,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.114181283,3.217118775,13.95000438,6.816966402,4.864998551,1,CMIP5 -2084,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.731949128,4.740459055,18.10977911,9.035771311,7.733950311,1,CMIP5 -2084,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.526766756,1.0704914,6.113842901,2.406519869,1.735800813,1,CMIP5 -2084,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.933752328,3.185163082,14.1672138,6.633465617,4.791983474,1,CMIP5 -2085,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.888889743,4.838272052,18.96636196,9.242476434,8.015542029,1,CMIP5 -2085,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.459052547,1.127980192,5.964773743,2.441219223,1.759535906,1,CMIP5 -2085,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.039358403,3.146179474,13.92331713,6.805527039,5.071419923,1,CMIP5 -2086,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.853846926,4.702826058,18.91167384,9.215163413,7.853215675,1,CMIP5 -2086,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.610109862,1.170459719,6.470382009,2.526011947,1.810744974,1,CMIP5 -2086,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.904465667,3.000237751,13.59709998,6.693576613,4.847324168,1,CMIP5 -2087,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.780247556,4.739890748,18.47758043,9.141366093,7.795348768,1,CMIP5 -2087,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.475041169,1.133115235,5.995783617,2.449113115,1.752103094,1,CMIP5 -2087,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.957014283,3.024535324,13.87190548,6.696501256,4.944572988,1,CMIP5 -2088,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.709709885,4.453362679,18.1062306,9.087005975,7.805763836,1,CMIP5 -2088,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.487617881,1.018979567,5.991318602,2.455887579,1.745527478,1,CMIP5 -2088,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.938039769,3.027224036,13.77241809,6.635520873,4.7739723,1,CMIP5 -2089,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.78152994,4.587143732,18.3654886,9.047513922,7.590634713,1,CMIP5 -2089,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.543632172,0.995588085,6.216026769,2.442386198,1.808925375,1,CMIP5 -2089,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.903826425,3.129172139,13.71089252,6.609215644,4.792001246,1,CMIP5 -2090,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.547767258,4.761162968,17.49708499,8.963272188,7.834381819,1,CMIP5 -2090,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.500840607,1.128381383,6.101472584,2.465498236,1.76724495,1,CMIP5 -2090,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.791287866,3.041393139,13.8562747,6.502061124,4.728613573,1,CMIP5 -2091,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.895309676,4.689999319,18.86995888,9.197480432,7.761657533,1,CMIP5 -2091,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.49997429,1.074319734,6.074325149,2.445262736,1.852790792,1,CMIP5 -2091,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.014184221,3.026174003,13.82620223,6.756458574,4.899633967,1,CMIP5 -2092,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.492053116,4.783232411,17.34689518,9.070115368,7.858640045,1,CMIP5 -2092,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.29228242,1.195209133,5.443675429,2.444042934,1.826756786,1,CMIP5 -2092,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.86184231,3.096172947,13.65924381,6.630764608,4.814533319,1,CMIP5 -2093,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.705043554,4.674518365,18.14530985,9.108259094,7.799756235,1,CMIP5 -2093,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.45064912,1.137516995,5.936389627,2.488465669,1.808423417,1,CMIP5 -2093,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.932777994,3.019516869,13.74205546,6.624444202,4.671201041,1,CMIP5 -2094,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.727547245,4.569636689,18.11058922,9.081836634,7.730952676,1,CMIP5 -2094,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.475793497,1.034902944,5.96796354,2.466114719,1.783918251,1,CMIP5 -2094,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.953665976,3.099767172,13.93715763,6.62029579,4.722831266,1,CMIP5 -2095,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.711505297,4.775522114,18.40042601,9.16097663,7.841180641,1,CMIP5 -2095,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.544451824,1.148592385,6.264185526,2.493092345,1.807008686,1,CMIP5 -2095,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.863662376,3.125745261,13.66372708,6.672111337,4.863286608,1,CMIP5 -2096,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.751432832,4.80191593,18.42648645,9.132661614,7.662282059,1,CMIP5 -2096,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.505997776,1.203632432,6.164194753,2.512779352,1.843682179,1,CMIP5 -2096,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.899428848,3.098227094,13.6228921,6.624301563,4.646980129,1,CMIP5 -2097,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.910627548,4.762679971,19.02664098,9.061678915,7.397035264,1,CMIP5 -2097,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.556860759,1.128527318,6.325522122,2.481254777,1.773040518,1,CMIP5 -2097,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.974335335,3.053152547,13.56521638,6.584632909,4.659564333,1,CMIP5 -2098,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.541328223,4.676690231,17.70151794,9.020241881,7.628843307,1,CMIP5 -2098,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.401820558,1.200934618,5.835826057,2.489306152,1.84694253,1,CMIP5 -2098,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.792566966,3.109828285,13.32734861,6.535338001,4.686008584,1,CMIP5 -2099,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.508625962,4.673674446,17.17385113,9.040807808,7.68560808,1,CMIP5 -2099,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.378155827,1.207410403,5.769498944,2.4618568,1.996093288,1,CMIP5 -2099,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.787079589,3.157842503,13.73954831,6.583100139,4.659399606,1,CMIP5 -2100,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.689446124,4.540553618,18.27089971,8.95786924,7.855693335,1,CMIP5 -2100,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.29490908,1.143102217,5.384982109,2.41557024,1.782819547,1,CMIP5 -2100,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.9791438,2.852714112,13.16504983,6.546849019,4.654621893,1,CMIP5 -2101,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.473706664,4.782686214,7.995221454,6.892293825,7.395633815,1,CMIP5 -2101,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.433689932,1.893776303,2.91537634,2.498392437,2.592208553,1,CMIP5 -2101,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.106891252,2.888910226,5.463102554,4.403400259,4.630794128,1,CMIP5 -2102,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.421209024,4.878281391,8.118231728,6.896827619,7.295398678,1,CMIP5 -2102,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.49363068,1.792636567,2.937890174,2.477947562,2.590631754,1,CMIP5 -2102,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.054584651,3.085645448,5.638098575,4.428708363,4.495544714,1,CMIP5 -2103,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.481625447,5.0083766,8.544860822,6.972078067,7.167537422,1,CMIP5 -2103,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.526821882,1.754521783,2.973928822,2.509706613,2.655187923,1,CMIP5 -2103,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.064465367,3.253855479,5.842302888,4.4720733,4.396067417,1,CMIP5 -2104,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.5850466,4.918055956,8.538234827,7.085030598,7.441915805,1,CMIP5 -2104,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.586081146,1.839909161,3.25920772,2.619079598,2.688600755,1,CMIP5 -2104,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.123542988,3.078146752,5.805270788,4.476257599,4.510806428,1,CMIP5 -2105,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.448444197,4.879132196,8.215690993,6.93386883,7.320326065,1,CMIP5 -2105,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.482497582,1.797690558,2.887580838,2.502397514,2.66215933,1,CMIP5 -2105,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.013245263,3.081442468,5.518993242,4.440849387,4.581480919,1,CMIP5 -2106,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.493445182,4.702186521,8.217842511,6.806481408,7.152948301,1,CMIP5 -2106,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.596027422,1.64345901,2.997893119,2.512964233,2.705252402,1,CMIP5 -2106,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.009001785,3.058728017,5.529927797,4.303696464,4.313065021,1,CMIP5 -2107,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.79321854,4.398360809,8.3941681,6.942620735,7.488977015,1,CMIP5 -2107,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.658800346,1.610111507,3.14379267,2.554325259,2.73169843,1,CMIP5 -2107,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.208570059,2.788249333,5.654730669,4.3985652,4.5756404,1,CMIP5 -2108,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.686206633,4.544309429,8.339751542,6.93603624,7.430041995,1,CMIP5 -2108,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.560243347,1.743326317,3.009540863,2.561374586,2.746315583,1,CMIP5 -2108,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.169115356,2.800982914,5.553715118,4.384573054,4.591797093,1,CMIP5 -2109,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.629731649,4.629511483,8.471310739,6.856680971,7.162950831,1,CMIP5 -2109,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.502702756,1.911116132,3.063653881,2.63059474,2.773804474,1,CMIP5 -2109,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.192746233,2.718394836,5.620298047,4.23637163,4.303396819,1,CMIP5 -2110,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.477581459,4.819883138,8.300214897,6.860145167,7.160241316,1,CMIP5 -2110,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.492673578,1.79298625,2.883251466,2.520997428,2.703875997,1,CMIP5 -2110,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.060927776,3.026897447,5.602012893,4.349012855,4.383570541,1,CMIP5 -2111,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.453082481,4.809942936,8.117088782,6.847854068,7.232192277,1,CMIP5 -2111,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.530464722,1.890400359,3.184859775,2.572652154,2.607674241,1,CMIP5 -2111,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.052247946,2.919542705,5.482398828,4.285278295,4.369585823,1,CMIP5 -2112,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.486405313,4.665758991,8.174186629,6.764059772,7.108146734,1,CMIP5 -2112,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.49658536,1.711114473,2.788789695,2.44852276,2.647093437,1,CMIP5 -2112,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.065496361,2.954644836,5.553340864,4.325013409,4.396033968,1,CMIP5 -2113,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.578787361,4.863385422,8.288074963,7.046023748,7.516317304,1,CMIP5 -2113,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.657620041,1.680455094,3.230132397,2.605450903,2.755608061,1,CMIP5 -2113,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.035900331,3.18293043,5.58927177,4.451403358,4.516705616,1,CMIP5 -2114,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.587616817,4.619962285,8.311465187,6.859800574,7.253887413,1,CMIP5 -2114,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.591967564,1.751320681,3.101924646,2.613163281,2.799703899,1,CMIP5 -2114,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.083471344,2.868641233,5.508472269,4.257286129,4.326015507,1,CMIP5 -2115,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.684068717,4.427735371,8.241777951,6.850266523,7.365776386,1,CMIP5 -2115,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.656731571,1.736333007,3.292064707,2.653563257,2.792927657,1,CMIP5 -2115,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.156576847,2.691402041,5.503845476,4.207919109,4.31821446,1,CMIP5 -2116,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.698229916,4.637010493,8.431564039,7.034079091,7.533870916,1,CMIP5 -2116,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.610257096,1.964212815,3.449468882,2.766523767,2.826206685,1,CMIP5 -2116,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.215240363,2.672797815,5.605060207,4.27894183,4.418954649,1,CMIP5 -2117,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.710579461,4.47209534,8.605331902,6.781747777,7.024781933,1,CMIP5 -2117,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.596520052,1.751365971,3.049006127,2.637604201,2.875022354,1,CMIP5 -2117,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.237026714,2.720729181,5.737519425,4.155181185,4.081238067,1,CMIP5 -2118,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.492791308,4.821439125,8.407472603,6.861206135,7.107956406,1,CMIP5 -2118,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.525581679,1.809504015,2.886572251,2.597037146,2.846036158,1,CMIP5 -2118,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.025302484,3.011935804,5.520898765,4.274456755,4.282496227,1,CMIP5 -2119,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.580901928,4.599846822,8.147111179,6.848149345,7.32281969,1,CMIP5 -2119,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.580077347,1.791447859,3.117109098,2.634134296,2.813990113,1,CMIP5 -2119,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.073477917,2.808399483,5.359464688,4.22483048,4.365728874,1,CMIP5 -2120,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.586951629,4.735528449,8.511384877,6.907928109,7.192399555,1,CMIP5 -2120,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.569364161,1.902929784,3.205691952,2.715033754,2.87575664,1,CMIP5 -2120,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.10317017,2.832599953,5.534125784,4.203782527,4.224202186,1,CMIP5 -2121,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.365268024,4.84331697,8.062594998,6.768388645,7.083821307,1,CMIP5 -2121,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.508820465,1.891890755,3.001661021,2.645739703,2.844703519,1,CMIP5 -2121,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.914096619,2.951426416,5.182159711,4.133238743,4.199684423,1,CMIP5 -2122,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.308682026,4.748529026,7.757053249,6.554759573,6.856728008,1,CMIP5 -2122,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.451760222,2.024252648,3.127548582,2.593281102,2.610661589,1,CMIP5 -2122,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.007207628,2.72427611,5.181195532,3.972076808,3.991417796,1,CMIP5 -2123,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.418782776,4.820294781,8.046701878,6.790469018,7.147439706,1,CMIP5 -2123,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.48753298,1.908478168,3.074941073,2.567051592,2.642393563,1,CMIP5 -2123,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.062679092,2.911816951,5.475166214,4.23383217,4.274172758,1,CMIP5 -2124,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.200170273,4.8050789,7.497584558,6.543111328,6.934890928,1,CMIP5 -2124,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.490880463,1.88586963,3.039634538,2.513597418,2.564442751,1,CMIP5 -2124,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.886373564,2.919209365,5.086378639,4.040043933,4.077293865,1,CMIP5 -2125,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.46094036,4.541660696,8.008634073,6.588315473,6.901483561,1,CMIP5 -2125,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.591209526,1.729533665,3.070787849,2.569936716,2.739712675,1,CMIP5 -2125,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.064492725,2.812127091,5.398938953,4.02955918,3.953585337,1,CMIP5 -2126,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.404724565,4.795009128,7.945898725,6.769490912,7.168527898,1,CMIP5 -2126,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.534257921,1.874998406,3.122699025,2.595947479,2.693046243,1,CMIP5 -2126,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.031456033,2.920011313,5.3946344,4.184526748,4.211730639,1,CMIP5 -2127,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.565695441,4.538974125,8.146314206,6.68387875,7.025113336,1,CMIP5 -2127,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.60096583,1.850798429,3.320955625,2.61080155,2.635726073,1,CMIP5 -2127,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.160476784,2.688176858,5.52311384,4.08400957,4.062373791,1,CMIP5 -2128,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.621271119,4.358612616,8.161343938,6.582675599,6.90537292,1,CMIP5 -2128,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.606688138,1.771994953,3.236143426,2.581270697,2.658472205,1,CMIP5 -2128,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.164083342,2.586617397,5.437657099,4.012019301,4.011901354,1,CMIP5 -2129,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.385039751,4.706129808,7.953720178,6.615591632,6.901258271,1,CMIP5 -2129,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.501109049,1.84037288,2.937246135,2.581426455,2.774043403,1,CMIP5 -2129,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.939879287,2.865757119,5.138687908,4.044552129,4.086881745,1,CMIP5 -2130,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.407089424,4.775790335,8.102939427,6.664515602,6.889666324,1,CMIP5 -2130,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.454279781,1.925431865,2.972500377,2.582076991,2.715187862,1,CMIP5 -2130,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.04476615,2.850357786,5.382268799,4.092847094,4.069380896,1,CMIP5 -2131,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.49095465,4.489367142,7.822153259,6.548237793,6.940715386,1,CMIP5 -2131,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.624904359,1.907787101,3.435616544,2.695610377,2.719518931,1,CMIP5 -2131,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.021991593,2.581579618,5.070242589,3.864110405,3.902309707,1,CMIP5 -2132,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.399175928,4.690151413,8.016552831,6.564410572,6.775469022,1,CMIP5 -2132,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.50484057,1.938500791,3.155539497,2.619342544,2.691664944,1,CMIP5 -2132,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.037365056,2.751649588,5.285656756,3.955838365,3.893023557,1,CMIP5 -2133,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.337863214,4.485563745,7.55081338,6.405797092,6.793405622,1,CMIP5 -2133,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.456114583,1.854432395,2.88636432,2.517955492,2.665512626,1,CMIP5 -2133,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.952686877,2.631131305,4.933193371,3.89812176,4.014081182,1,CMIP5 -2134,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.458039962,4.564176072,7.72077091,6.582137875,7.021802259,1,CMIP5 -2134,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.565082921,2.007542538,3.378968655,2.629776812,2.566298027,1,CMIP5 -2134,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.085324845,2.556633239,5.181241204,3.963259578,4.057581934,1,CMIP5 -2135,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.435921787,4.377894474,7.737705037,6.368808448,6.679817141,1,CMIP5 -2135,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.573998859,1.847601116,3.236242509,2.562625386,2.58332896,1,CMIP5 -2135,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.118260539,2.530293597,5.26055257,3.817406947,3.73939081,1,CMIP5 -2136,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.436568192,4.593636632,8.005021438,6.493442857,6.687556679,1,CMIP5 -2136,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.490090418,1.933863605,3.118254056,2.580659294,2.635259758,1,CMIP5 -2136,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.085186293,2.659772441,5.309550644,3.92326941,3.861877278,1,CMIP5 -2137,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.512752109,4.373328563,7.939977032,6.395192685,6.633732574,1,CMIP5 -2137,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.503008262,1.760768993,2.90106712,2.462700867,2.594483677,1,CMIP5 -2137,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.0658501,2.61255993,5.205055166,3.942028448,3.975249349,1,CMIP5 -2138,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.465576485,4.448640868,7.793860726,6.429610619,6.737970441,1,CMIP5 -2138,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.632063733,1.817259123,3.362487869,2.595993711,2.602113926,1,CMIP5 -2138,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.029164203,2.631382518,5.144323282,3.84462464,3.80139638,1,CMIP5 -2139,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.459932395,4.241622328,7.618027838,6.280471448,6.631117812,1,CMIP5 -2139,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.440493292,1.83733435,2.875908323,2.447605248,2.538589159,1,CMIP5 -2139,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.132826961,2.404288251,5.14898306,3.842925516,3.909215376,1,CMIP5 -2140,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.625657148,4.289785694,8.019773157,6.52334908,6.891918734,1,CMIP5 -2140,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.623471041,1.788511275,3.312982205,2.577284368,2.603821995,1,CMIP5 -2140,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.204529283,2.501274676,5.441696503,3.957059381,3.942633173,1,CMIP5 -2141,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.584677166,4.296855861,8.048196974,6.448734891,6.724943365,1,CMIP5 -2141,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.489467281,1.912904245,3.070253902,2.601162266,2.710745459,1,CMIP5 -2141,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.200585213,2.383951624,5.315410571,3.858330016,3.866978934,1,CMIP5 -2142,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.520398263,4.435586398,7.926135036,6.482217618,6.78357452,1,CMIP5 -2142,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.533976393,1.867483277,3.151284438,2.597811249,2.686238641,1,CMIP5 -2142,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.108234353,2.568103027,5.235311369,3.895321853,3.888936507,1,CMIP5 -2143,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.462841501,4.456697143,7.802415827,6.499543273,6.86953006,1,CMIP5 -2143,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.618377572,1.841343621,3.355356653,2.582347342,2.566344546,1,CMIP5 -2143,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.0685304,2.615353221,5.23217398,3.928039662,3.932315723,1,CMIP5 -2144,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.22004108,4.731864942,7.624453045,6.347891125,6.517623257,1,CMIP5 -2144,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.51874221,1.88323708,3.152129394,2.541197552,2.564711867,1,CMIP5 -2144,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.91817213,2.848628284,5.063268781,3.817417772,3.678887012,1,CMIP5 -2145,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.300691313,4.813586951,7.691411113,6.52155995,6.790620867,1,CMIP5 -2145,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.462092106,2.043355328,3.174015703,2.602792665,2.596899815,1,CMIP5 -2145,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.987993465,2.770231592,5.119531186,3.929519994,3.9141586,1,CMIP5 -2146,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.468405561,4.673631805,8.16331938,6.548062776,6.67764996,1,CMIP5 -2146,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.479221132,2.091677695,3.153827565,2.647201528,2.671650427,1,CMIP5 -2146,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.087136295,2.581954504,5.244194505,3.910878685,3.908682866,1,CMIP5 -2147,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.50538256,4.435951029,8.004275435,6.437720011,6.655326789,1,CMIP5 -2147,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.604028751,1.847898834,3.28441881,2.635994873,2.705830925,1,CMIP5 -2147,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.04862825,2.588051241,5.15139224,3.812609291,3.755496842,1,CMIP5 -2148,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.389734725,4.357265317,7.626287936,6.241967574,6.492158522,1,CMIP5 -2148,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.564385248,1.83251312,3.171623953,2.600595074,2.699121611,1,CMIP5 -2148,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.940481267,2.524752427,4.826783489,3.652300351,3.628832744,1,CMIP5 -2149,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.477082638,4.47957715,7.848851846,6.380779677,6.597344856,1,CMIP5 -2149,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.534948831,1.841545709,3.10050721,2.583418673,2.695810886,1,CMIP5 -2149,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.029100053,2.638030956,5.065032215,3.808093057,3.764654528,1,CMIP5 -2150,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.400555935,4.30415765,7.616563633,6.251488248,6.542615854,1,CMIP5 -2150,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.610173005,1.734581522,3.203481853,2.566467164,2.66390264,1,CMIP5 -2150,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.982393673,2.56957552,4.960550692,3.696220011,3.627376917,1,CMIP5 -2151,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.362517535,4.540622989,7.693508572,6.371004767,6.624943754,1,CMIP5 -2151,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.556285444,1.879305395,3.217769055,2.594524671,2.640512117,1,CMIP5 -2151,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.041316068,2.661318365,5.162902765,3.787988872,3.663867178,1,CMIP5 -2152,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.39251587,4.481251241,7.845523404,6.334389057,6.505390791,1,CMIP5 -2152,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.473379396,1.918571716,3.052281367,2.570907961,2.656389381,1,CMIP5 -2152,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.085948058,2.562678768,5.203045613,3.774324886,3.665787581,1,CMIP5 -2153,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.400164544,4.416649678,7.706694147,6.32955014,6.597428367,1,CMIP5 -2153,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.453667328,2.004563552,3.083035594,2.638356862,2.732914152,1,CMIP5 -2153,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.054247992,2.412085504,4.981743608,3.702326329,3.707738101,1,CMIP5 -2154,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.375172277,4.434217313,7.586213798,6.320279042,6.630342528,1,CMIP5 -2154,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.554410199,1.852640673,3.194415769,2.592124887,2.660721554,1,CMIP5 -2154,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.945293188,2.581576719,4.886058954,3.739093228,3.744368619,1,CMIP5 -2155,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.428513864,4.336552455,7.698889683,6.251551554,6.485382039,1,CMIP5 -2155,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.557706818,1.870815916,3.21497822,2.62016465,2.697432232,1,CMIP5 -2155,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.017272451,2.465734855,4.947403599,3.642614104,3.578658981,1,CMIP5 -2156,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.389989913,4.469820411,7.59413719,6.316969612,6.601960424,1,CMIP5 -2156,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.571973192,1.945956376,3.343177715,2.674661679,2.704756313,1,CMIP5 -2156,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.969711852,2.523863521,4.860024842,3.653901292,3.615858402,1,CMIP5 -2157,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.35676366,4.556724075,7.691040428,6.280766992,6.437651732,1,CMIP5 -2157,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.61333046,2.00277183,3.475516672,2.696546586,2.65394892,1,CMIP5 -2157,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.970684216,2.553952994,4.901488361,3.595715231,3.463709785,1,CMIP5 -2158,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.592939622,4.198293186,7.98633737,6.186403211,6.280491144,1,CMIP5 -2158,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.552344104,1.819193389,3.023921643,2.57315334,2.724749163,1,CMIP5 -2158,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.101688462,2.379100322,5.04063467,3.623705582,3.537543667,1,CMIP5 -2159,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.517370389,4.167306452,7.606267857,6.110194566,6.333601977,1,CMIP5 -2159,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.581621016,1.906917403,3.289276624,2.622162377,2.646227741,1,CMIP5 -2159,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.049603734,2.260389804,4.791108852,3.499043914,3.4723385,1,CMIP5 -2160,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.578673548,4.254059906,8.029157666,6.205683449,6.269758112,1,CMIP5 -2160,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.570964707,1.895393003,3.230289279,2.611830557,2.660819973,1,CMIP5 -2160,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.163399481,2.358666109,5.171579111,3.604679449,3.444236287,1,CMIP5 -2161,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.481706455,4.311021422,7.676665573,6.186364707,6.378885917,1,CMIP5 -2161,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.559706156,1.899191165,3.225392933,2.621656394,2.681020739,1,CMIP5 -2161,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.019111358,2.411830427,4.84347521,3.575704888,3.523756957,1,CMIP5 -2162,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.530921606,4.075006711,7.705415284,6.08538573,6.280560463,1,CMIP5 -2162,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.538676265,1.841477143,3.126951332,2.572812606,2.661410974,1,CMIP5 -2162,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.121252102,2.233529378,4.963705842,3.523571843,3.448526076,1,CMIP5 -2163,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.706819123,4.221079169,7.82965963,6.441411681,6.857453963,1,CMIP5 -2163,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.725829116,1.844035715,3.616429052,2.760903807,2.79157523,1,CMIP5 -2163,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.121807886,2.377042311,4.983167042,3.692829773,3.705554869,1,CMIP5 -2164,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.36786702,4.372786204,7.54876689,6.102303221,6.243829895,1,CMIP5 -2164,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.615274672,1.848297596,3.311545503,2.700237872,2.820554193,1,CMIP5 -2164,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.91719803,2.524487687,4.668055458,3.414297513,3.232323454,1,CMIP5 -2165,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.391248245,4.14989132,7.377723562,6.044846264,6.325885087,1,CMIP5 -2165,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.542640618,1.911448132,3.217581898,2.649496938,2.734478861,1,CMIP5 -2165,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.975596428,2.238443483,4.615893353,3.407014503,3.386860588,1,CMIP5 -2166,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.460392724,4.162537586,7.518634833,6.023725523,6.206864836,1,CMIP5 -2166,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.481743684,1.987054115,3.165189069,2.573443185,2.570764778,1,CMIP5 -2166,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.140387746,2.175483806,4.914693813,3.461338011,3.377587213,1,CMIP5 -2167,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.49653598,4.193603439,7.644794385,6.119488837,6.319778763,1,CMIP5 -2167,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.53644246,1.938154355,3.226081008,2.646696526,2.71127537,1,CMIP5 -2167,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.076456603,2.255449611,4.840642299,3.484185675,3.420325396,1,CMIP5 -2168,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.35722575,4.055635416,7.242238193,5.877273118,6.105609432,1,CMIP5 -2168,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.395268101,1.980008118,2.908388244,2.533520457,2.622842732,1,CMIP5 -2168,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.027032924,2.07562776,4.565303115,3.354337116,3.388208794,1,CMIP5 -2169,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.478805644,4.146739213,7.406881026,6.043739049,6.310667978,1,CMIP5 -2169,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.638711665,1.843068582,3.383953075,2.633629625,2.653748421,1,CMIP5 -2169,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.970802083,2.303670838,4.620701563,3.421573376,3.380960552,1,CMIP5 -2170,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.339018164,4.193856845,7.263191163,5.881727201,6.034930398,1,CMIP5 -2170,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.547678197,2.099082758,3.406978837,2.650769739,2.548508681,1,CMIP5 -2170,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.069853627,2.09477306,4.677744192,3.242709812,3.099160997,1,CMIP5 -2171,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.380124887,3.896283748,7.234662318,5.679066165,5.792659296,1,CMIP5 -2171,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.447783189,1.935485718,3.030439095,2.505189278,2.527416151,1,CMIP5 -2171,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.131632768,1.960796544,4.700472184,3.184900858,3.039167353,1,CMIP5 -2172,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.444454621,4.086528126,7.432246692,5.873580005,5.9877726,1,CMIP5 -2172,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.456510763,2.017210259,3.108876962,2.508989504,2.454935397,1,CMIP5 -2172,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.163845331,2.069317493,4.883368132,3.375061594,3.273780375,1,CMIP5 -2173,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.619336497,3.844721748,7.625203682,5.798580975,5.862199235,1,CMIP5 -2173,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.53635978,1.949615603,3.232975526,2.610228203,2.629160841,1,CMIP5 -2173,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.239936554,1.895105413,4.858011483,3.199793555,3.023028662,1,CMIP5 -2174,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.371170066,4.00747893,7.100685946,5.728725081,5.903367724,1,CMIP5 -2174,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.591706266,1.881266727,3.312566607,2.540612759,2.484308851,1,CMIP5 -2174,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.002403199,2.126212318,4.534649822,3.199368408,3.068305746,1,CMIP5 -2175,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.400874222,3.986258107,7.107739772,5.7198052,5.89261146,1,CMIP5 -2175,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.568683227,2.029598944,3.389454928,2.609289586,2.509052236,1,CMIP5 -2175,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.080646647,1.956658299,4.546689378,3.122206077,2.992738316,1,CMIP5 -2176,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.325945234,4.138623312,7.113908589,5.724061316,5.821856682,1,CMIP5 -2176,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.442001529,2.054475553,3.071140143,2.534736235,2.506664621,1,CMIP5 -2176,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.981559551,2.084148699,4.425391805,3.199767167,3.144764081,1,CMIP5 -2177,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.401508718,4.063163092,7.124828351,5.808649948,6.023304175,1,CMIP5 -2177,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.694152884,1.917548648,3.562142639,2.607625386,2.475405128,1,CMIP5 -2177,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.99446741,2.145614627,4.541555123,3.212670844,3.081756812,1,CMIP5 -2178,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.277444817,4.031737195,7.049812518,5.61199007,5.683205285,1,CMIP5 -2178,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.334221865,1.982030797,2.774419924,2.449022767,2.519820173,1,CMIP5 -2178,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.031888925,2.049705518,4.506292799,3.173417437,3.068835716,1,CMIP5 -2179,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.503926074,3.961867979,7.444663095,5.815706787,5.928148037,1,CMIP5 -2179,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.603114725,1.896356527,3.363456679,2.607699663,2.585492722,1,CMIP5 -2179,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.138313858,2.065512588,4.778305564,3.219754098,3.017599119,1,CMIP5 -2180,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.178012633,4.033947912,6.705463139,5.593602894,5.817500263,1,CMIP5 -2180,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.512005444,1.880162463,3.132142174,2.532234382,2.558316446,1,CMIP5 -2180,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.828806373,2.1537858,4.147864188,3.072830115,2.994835237,1,CMIP5 -2181,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.45079222,4.009055556,7.17863328,5.796329602,5.998814786,1,CMIP5 -2181,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.503509071,2.09412981,3.314165695,2.651993783,2.599839814,1,CMIP5 -2181,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.109808821,1.914925122,4.526638253,3.156087887,3.091394087,1,CMIP5 -2182,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.44025451,3.990978814,7.223069144,5.765158665,5.923293351,1,CMIP5 -2182,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.655598338,1.901444802,3.481926784,2.61834066,2.544995527,1,CMIP5 -2182,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.044811089,2.089533344,4.580740134,3.158672198,2.982207657,1,CMIP5 -2183,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.313854829,3.915825893,6.84287607,5.510774171,5.642197361,1,CMIP5 -2183,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.499925633,1.969793678,3.179479024,2.51167228,2.448708209,1,CMIP5 -2183,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.021639489,1.946032006,4.360629399,3.01037149,2.867412278,1,CMIP5 -2184,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.608163045,3.829659517,7.400312179,5.788873338,5.962760828,1,CMIP5 -2184,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.55416632,1.993935915,3.335886866,2.658459132,2.652006873,1,CMIP5 -2184,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.198555445,1.835723583,4.646525078,3.142282864,3.043441397,1,CMIP5 -2185,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.411489165,3.818659822,7.140190156,5.607788183,5.736151378,1,CMIP5 -2185,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.585971453,1.838958267,3.26865087,2.567984292,2.582164016,1,CMIP5 -2185,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.051991025,1.979701259,4.49772302,3.051558171,2.864404202,1,CMIP5 -2186,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.359244658,3.7319637,6.921408777,5.470092323,5.613498409,1,CMIP5 -2186,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.482303209,1.92636652,3.105210895,2.514324258,2.512859808,1,CMIP5 -2186,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.101160691,1.805597394,4.447301513,2.967357925,2.808266396,1,CMIP5 -2187,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.411212065,3.829173342,7.060682856,5.613432439,5.781936779,1,CMIP5 -2187,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.619917387,1.833936754,3.340263027,2.526925246,2.466750601,1,CMIP5 -2187,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.114733594,1.995236827,4.63808724,3.098379181,2.880096328,1,CMIP5 -2188,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.376456094,4.037907252,6.978066435,5.567007924,5.626029005,1,CMIP5 -2188,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.645930297,1.938291486,3.478315764,2.581092039,2.453880454,1,CMIP5 -2188,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.068242574,2.099616632,4.500634588,2.998064986,2.696004362,1,CMIP5 -2189,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.432339743,3.792060123,7.18009903,5.539304314,5.592529052,1,CMIP5 -2189,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.569797707,1.92016496,3.293358289,2.530464381,2.454167138,1,CMIP5 -2189,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.174713869,1.871894334,4.663110233,3.020313101,2.773123918,1,CMIP5 -2190,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.28116108,3.649723411,6.52102727,5.314272302,5.543169264,1,CMIP5 -2190,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.510230689,1.89148658,3.136862373,2.509255892,2.504337307,1,CMIP5 -2190,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.91694913,1.75823802,3.964590179,2.81640839,2.77140268,1,CMIP5 -2191,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.491746919,3.669169238,7.098767651,5.530021316,5.676074188,1,CMIP5 -2191,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.585247331,1.804881264,3.220204843,2.566468401,2.620393749,1,CMIP5 -2191,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.06769819,1.864288389,4.393694408,2.975343623,2.821695847,1,CMIP5 -2192,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.45833644,3.848033238,6.858176093,5.585232076,5.817359487,1,CMIP5 -2192,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.685740747,1.935440609,3.578207828,2.643166128,2.529508038,1,CMIP5 -2192,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.009878077,1.912592709,4.259002354,2.954388235,2.822978937,1,CMIP5 -2193,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.264263512,3.881675585,6.743419739,5.489115431,5.6656832,1,CMIP5 -2193,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.596530939,1.941586234,3.396913667,2.623401422,2.577552893,1,CMIP5 -2193,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.931601601,1.940089862,4.157202772,2.878077821,2.707509325,1,CMIP5 -2194,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.43209739,3.70576647,7.043694671,5.482446941,5.590163312,1,CMIP5 -2194,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.50822251,1.940969145,3.17301937,2.598791092,2.640587927,1,CMIP5 -2194,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.079441861,1.764797568,4.336366332,2.895551202,2.740520454,1,CMIP5 -2195,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.365570819,3.630192733,6.825148059,5.38184897,5.536027545,1,CMIP5 -2195,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.609191397,1.838934811,3.33046483,2.583555337,2.582410853,1,CMIP5 -2195,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.018059335,1.791257985,4.220305776,2.810576016,2.615370152,1,CMIP5 -2196,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.367980579,3.569099881,6.833610489,5.223571866,5.245788548,1,CMIP5 -2196,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.465537414,1.708596499,2.763385944,2.385450253,2.534909285,1,CMIP5 -2196,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.022909976,1.860502808,4.251093546,2.848992873,2.642187568,1,CMIP5 -2197,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.297673497,3.912630214,6.745470862,5.404285645,5.479520752,1,CMIP5 -2197,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.578801416,2.071858686,3.410942153,2.596081769,2.450763118,1,CMIP5 -2197,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.993448569,1.84077199,4.185184273,2.819973404,2.626968676,1,CMIP5 -2198,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.363952085,3.703404397,6.814253009,5.207587772,5.156346841,1,CMIP5 -2198,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.545033357,1.824086793,3.127232067,2.452129615,2.428599801,1,CMIP5 -2198,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.034989322,1.8793167,4.244450857,2.766633949,2.471384118,1,CMIP5 -2199,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.167075729,3.787616902,6.379524448,5.226442047,5.369313418,1,CMIP5 -2199,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.522285718,1.897657466,3.150948657,2.437202204,2.350101346,1,CMIP5 -2199,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.882402742,1.889959419,3.993150188,2.800330596,2.659106388,1,CMIP5 -2200,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.171081133,3.645042836,6.268485755,5.123278743,5.28979319,1,CMIP5 -2200,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.479193132,1.931956404,3.076650253,2.424733633,2.345163937,1,CMIP5 -2200,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.886832073,1.713085452,3.858549477,2.709397459,2.632977454,1,CMIP5 -2201,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.412302943,3.647403763,6.815482448,5.326126033,5.420808961,1,CMIP5 -2201,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.486677846,1.879965788,3.064966729,2.441586759,2.410707259,1,CMIP5 -2201,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.107428208,1.767438199,4.356619174,2.895572981,2.729117276,1,CMIP5 -2202,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.405787755,3.275170798,6.262284504,5.082863645,5.396999639,1,CMIP5 -2202,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.619475011,1.741032443,3.233165435,2.411569996,2.336041053,1,CMIP5 -2202,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.961215823,1.534138014,3.839069247,2.682351123,2.678098614,1,CMIP5 -2203,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.260270322,3.487977564,6.488408534,4.963351391,4.938509732,1,CMIP5 -2203,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.398811532,1.887715483,2.817358594,2.340971603,2.329406168,1,CMIP5 -2203,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.004252159,1.60026297,4.009839371,2.632537198,2.460023224,1,CMIP5 -2204,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.352343967,3.395634251,6.435134921,5.071516012,5.227647438,1,CMIP5 -2204,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.643079263,1.757004753,3.289298643,2.414470604,2.30578951,1,CMIP5 -2204,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.997456111,1.638629899,4.030745572,2.668245319,2.501802904,1,CMIP5 -2205,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.373986305,3.569677786,6.289204755,5.092559014,5.255676757,1,CMIP5 -2205,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.670225997,1.936997765,3.448711999,2.468103803,2.243352724,1,CMIP5 -2205,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.005447463,1.632680991,3.938287112,2.63607653,2.486669008,1,CMIP5 -2206,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.351112378,3.548084307,6.467588393,5.107805716,5.207775081,1,CMIP5 -2206,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.703385004,1.826259234,3.442056932,2.438613922,2.243069762,1,CMIP5 -2206,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.016648022,1.721825718,4.110719177,2.68053568,2.444798912,1,CMIP5 -2207,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.348529726,3.315168957,6.405528001,4.90921975,4.95809102,1,CMIP5 -2207,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.635698362,1.691081107,3.223092008,2.366673371,2.276260184,1,CMIP5 -2207,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.058568452,1.624087588,4.073994092,2.553923413,2.258805987,1,CMIP5 -2208,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.399530346,3.245705651,6.384201257,4.924040749,5.033128043,1,CMIP5 -2208,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.599445812,1.615676491,3.068707108,2.29851718,2.25484256,1,CMIP5 -2208,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.02826305,1.630028766,4.04354759,2.636246902,2.435705626,1,CMIP5 -2209,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.31308695,3.397077868,6.204780448,4.98801146,5.175093761,1,CMIP5 -2209,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.648125014,1.824195054,3.328964825,2.424622184,2.272664428,1,CMIP5 -2209,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.925258669,1.572881762,3.798572445,2.57451409,2.463301076,1,CMIP5 -2210,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.268992188,3.295223196,6.240781684,4.813178113,4.858353786,1,CMIP5 -2210,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.568842823,1.747702594,3.112364129,2.3514405,2.272847638,1,CMIP5 -2210,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.993260866,1.547519917,3.88165426,2.472790199,2.230993309,1,CMIP5 -2211,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.309696728,3.355473269,6.383592716,4.713952068,4.558371143,1,CMIP5 -2211,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.413762803,1.811849674,2.754173987,2.244667722,2.206323613,1,CMIP5 -2211,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.061902759,1.543624189,3.998761458,2.479147158,2.187101493,1,CMIP5 -2212,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.488442091,3.326669733,6.492164809,5.013859044,5.118300816,1,CMIP5 -2212,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.555200071,1.763891426,3.065387831,2.354776115,2.294912602,1,CMIP5 -2212,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.068453616,1.562778184,4.019122135,2.669555241,2.548160321,1,CMIP5 -2213,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.42347973,3.430091858,6.233655226,4.962454559,5.093035575,1,CMIP5 -2213,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.707842712,1.779938796,3.401639371,2.404467367,2.218145651,1,CMIP5 -2213,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.927410671,1.650153795,3.737853248,2.56910436,2.444205198,1,CMIP5 -2214,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.112881372,3.303227873,5.836225338,4.613756358,4.65778611,1,CMIP5 -2214,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.555894872,1.791178108,3.105918237,2.334921789,2.221295406,1,CMIP5 -2214,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.871958339,1.512049663,3.540289086,2.289942812,2.05371625,1,CMIP5 -2215,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.333708454,3.193751502,6.056503357,4.715500314,4.805873199,1,CMIP5 -2215,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.634412466,1.712647271,3.213580051,2.338079225,2.213044789,1,CMIP5 -2215,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.979109346,1.481104134,3.747273027,2.38858982,2.16299106,1,CMIP5 -2216,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.293687424,3.448513738,6.09425608,4.917431544,5.06347818,1,CMIP5 -2216,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.689300183,1.818267756,3.375269561,2.424485848,2.252203038,1,CMIP5 -2216,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.839410622,1.630246162,3.624623066,2.503935318,2.380436022,1,CMIP5 -2217,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.229626063,3.338849317,6.111238087,4.728657404,4.732271106,1,CMIP5 -2217,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.590366592,1.74010248,3.130699968,2.336877922,2.238354621,1,CMIP5 -2217,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.923901687,1.598746999,3.731655858,2.402696272,2.140191115,1,CMIP5 -2218,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.172845492,3.247597604,5.670312908,4.651588844,4.844222432,1,CMIP5 -2218,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.520618358,1.811055759,3.025333574,2.280480376,2.142766086,1,CMIP5 -2218,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.893750035,1.436542882,3.531683785,2.381860606,2.27960788,1,CMIP5 -2219,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.187659838,3.273511613,5.992067492,4.645135833,4.657482113,1,CMIP5 -2219,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.514255446,1.817526167,3.031330841,2.305354303,2.186280102,1,CMIP5 -2219,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.014996017,1.455984805,3.805320432,2.350857369,2.071062119,1,CMIP5 -2220,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.213303297,3.330564861,6.076240789,4.730511754,4.757620683,1,CMIP5 -2220,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.434145432,1.817652472,2.856851381,2.276529279,2.215806632,1,CMIP5 -2220,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.968109437,1.512911515,3.787184979,2.464347762,2.278647277,1,CMIP5 -2221,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.248029129,3.130004184,5.94700764,4.537302362,4.536098811,1,CMIP5 -2221,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.550031187,1.760498521,3.033155618,2.25934576,2.12186445,1,CMIP5 -2221,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.006536675,1.369504865,3.719857347,2.288535692,2.032390279,1,CMIP5 -2222,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.274423483,3.06219089,5.899631008,4.580775285,4.680639622,1,CMIP5 -2222,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.473309898,1.751798474,2.865446822,2.254714754,2.20080686,1,CMIP5 -2222,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.943082431,1.310392605,3.556810807,2.336227101,2.238852496,1,CMIP5 -2223,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.346378949,3.187729361,6.140378562,4.658871217,4.653688473,1,CMIP5 -2223,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.510832583,1.756012539,2.950264526,2.286293718,2.219448903,1,CMIP5 -2223,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.009551362,1.431716701,3.759905045,2.383012337,2.170213801,1,CMIP5 -2224,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.212146272,3.253829579,5.938311988,4.561824903,4.527579023,1,CMIP5 -2224,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.519808546,1.681515873,2.935082826,2.239030321,2.169761292,1,CMIP5 -2224,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.962610102,1.572313635,3.715188689,2.333531624,2.023312086,1,CMIP5 -2225,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.152604898,3.305520002,5.887243951,4.583080526,4.569779076,1,CMIP5 -2225,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.413015089,1.912236634,2.886664321,2.315409441,2.231368404,1,CMIP5 -2225,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.945425709,1.393282138,3.589776862,2.278412194,2.065294887,1,CMIP5 -2226,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.293332235,3.157428316,5.923583437,4.668793294,4.797080711,1,CMIP5 -2226,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.650904067,1.645571726,3.199350647,2.305569466,2.188677746,1,CMIP5 -2226,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.930321403,1.511856422,3.666865541,2.374374815,2.159388649,1,CMIP5 -2227,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.192764271,3.074743132,5.77105737,4.449098672,4.475297094,1,CMIP5 -2227,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.476811163,1.688927973,2.795320909,2.193165436,2.144206431,1,CMIP5 -2227,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.870911416,1.385815326,3.453060031,2.265790174,2.112142669,1,CMIP5 -2228,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.278735608,2.98195607,5.844698579,4.464430489,4.515533653,1,CMIP5 -2228,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.578650759,1.655343198,3.038197836,2.249237139,2.15170376,1,CMIP5 -2228,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.987360651,1.32661321,3.621176124,2.226062962,1.978231256,1,CMIP5 -2229,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.280427268,3.182403229,5.984286196,4.57150113,4.559657548,1,CMIP5 -2229,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.56301229,1.656712701,3.018169331,2.270188914,2.202936811,1,CMIP5 -2229,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.993137356,1.525690507,3.726236155,2.312363909,1.998764486,1,CMIP5 -2230,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.279811519,3.173133811,5.90951903,4.526705287,4.512084153,1,CMIP5 -2230,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.559687022,1.777259333,3.083588807,2.322094271,2.213764471,1,CMIP5 -2230,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.954970308,1.395874459,3.555114613,2.215606689,1.955718842,1,CMIP5 -2231,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.309548987,2.811460232,5.603543272,4.325800095,4.444098439,1,CMIP5 -2231,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.542755451,1.575075851,2.879260628,2.157044331,2.086920422,1,CMIP5 -2231,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.954858269,1.23638537,3.43406316,2.179044989,2.022865714,1,CMIP5 -2232,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.262945338,3.116343144,5.82147053,4.451052504,4.433198171,1,CMIP5 -2232,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.555929346,1.783830965,3.068030042,2.283712408,2.141494313,1,CMIP5 -2232,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.98847668,1.332512842,3.575849544,2.178242492,1.902303792,1,CMIP5 -2233,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.148024948,3.019533678,5.657275607,4.364726155,4.391047667,1,CMIP5 -2233,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.520902497,1.719007072,2.915736892,2.168159356,2.01894673,1,CMIP5 -2233,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.96429859,1.300526713,3.57169723,2.206733555,1.977355139,1,CMIP5 -2234,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.089432257,3.224937751,5.438883448,4.319401917,4.306893233,1,CMIP5 -2234,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.600469042,1.816708795,3.097091603,2.201456601,1.946013002,1,CMIP5 -2234,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.953688212,1.408228322,3.515156989,2.128793252,1.795893848,1,CMIP5 -2235,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.207314428,2.829557613,5.545375072,4.271666294,4.355866245,1,CMIP5 -2235,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.521012588,1.615309125,2.860503687,2.13940849,2.040910574,1,CMIP5 -2235,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.969722144,1.214248708,3.492212057,2.142642708,1.932055033,1,CMIP5 -2236,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.373885634,3.005986154,5.778310439,4.455601589,4.519054881,1,CMIP5 -2236,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.684343258,1.719404752,3.265659117,2.267773598,2.043015262,1,CMIP5 -2236,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.058037807,1.286581515,3.674218677,2.198970235,1.917540375,1,CMIP5 -2237,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.303323807,2.886294388,5.844065326,4.226749747,4.088319638,1,CMIP5 -2237,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.556075597,1.603812692,2.925292886,2.157610519,2.050668249,1,CMIP5 -2237,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.115065081,1.282481918,3.727220633,2.079814948,1.654778621,1,CMIP5 -2238,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.334675703,3.079365228,5.883478409,4.441398021,4.401374224,1,CMIP5 -2238,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.493019634,1.761972497,2.926256192,2.255022169,2.165929993,1,CMIP5 -2238,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.044549049,1.317392741,3.618358437,2.197090268,1.926304948,1,CMIP5 -2239,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.307104066,2.804437076,5.641743906,4.313897984,4.404705478,1,CMIP5 -2239,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.616340539,1.613542122,3.074586026,2.235523386,2.126982698,1,CMIP5 -2239,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.948490521,1.190895598,3.402559867,2.089232837,1.881737941,1,CMIP5 -2240,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.255704207,3.006646618,5.767077139,4.306488684,4.226115491,1,CMIP5 -2240,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.52325567,1.744767814,2.949914983,2.205944713,2.064548027,1,CMIP5 -2240,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.043215973,1.261878619,3.615271794,2.111125016,1.783674825,1,CMIP5 -2241,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.176774076,3.079711512,5.552620419,4.293430157,4.270694348,1,CMIP5 -2241,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.457764046,1.795576579,2.847551352,2.191179992,2.060796019,1,CMIP5 -2241,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.956514596,1.28413509,3.43133301,2.112629359,1.867524669,1,CMIP5 -2242,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.379760565,2.62743063,5.520719885,4.226113798,4.378152338,1,CMIP5 -2242,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.697479935,1.574125499,3.176999199,2.178642393,1.981722437,1,CMIP5 -2242,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.011629002,1.053305485,3.439692191,2.058135397,1.869771956,1,CMIP5 -2243,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.234326301,2.851958325,5.461966312,4.122708255,4.088454191,1,CMIP5 -2243,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.519413238,1.688485907,2.863820211,2.134113452,1.992073844,1,CMIP5 -2243,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.954318558,1.163471877,3.332117682,1.998658309,1.749521839,1,CMIP5 -2244,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.262036436,2.678462883,5.447002994,4.09278807,4.122843202,1,CMIP5 -2244,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.477629127,1.548303228,2.673895656,2.054341349,1.997583255,1,CMIP5 -2244,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.940624687,1.130160118,3.311536259,2.047992892,1.875137596,1,CMIP5 -2245,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.259480141,2.791578682,5.387458626,4.148084688,4.206650721,1,CMIP5 -2245,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.673774898,1.590753329,3.144296342,2.183099318,1.9986738,1,CMIP5 -2245,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.924436139,1.200825259,3.291011924,1.975825774,1.705732956,1,CMIP5 -2246,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.245828102,2.526508174,5.425202082,3.991329172,4.006803216,1,CMIP5 -2246,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.523729709,1.510240952,2.773704325,2.084561417,2.027150195,1,CMIP5 -2246,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.986820778,1.016268051,3.322142232,1.916998807,1.664792473,1,CMIP5 -2247,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.18766821,2.781467632,5.414663817,3.993769327,3.889472929,1,CMIP5 -2247,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.503186932,1.522593008,2.724705085,2.087901378,2.052153709,1,CMIP5 -2247,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.908239545,1.258874696,3.236131087,1.916038298,1.584573704,1,CMIP5 -2248,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.229765976,2.606589344,5.184683117,3.985281405,4.074926579,1,CMIP5 -2248,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.5214355,1.475456282,2.729971341,2.038781249,1.974848686,1,CMIP5 -2248,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.888497969,1.131133084,3.130993669,1.956403154,1.781742932,1,CMIP5 -2249,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.205345667,2.495402189,5.195578168,3.88159543,3.917700681,1,CMIP5 -2249,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.551295777,1.559873278,2.847867866,2.079065468,1.954260365,1,CMIP5 -2249,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.940920285,0.935528512,3.14129009,1.812702113,1.586994926,1,CMIP5 -2250,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.119642641,2.65885882,5.05575115,3.891668469,3.926031954,1,CMIP5 -2250,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.412528372,1.560966175,2.540740916,2.011314211,1.971774877,1,CMIP5 -2250,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.827569607,1.097892825,2.973734743,1.889784759,1.743755734,1,CMIP5 -2251,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.229332471,2.694691245,5.251409507,3.963881359,3.954712342,1,CMIP5 -2251,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.478601415,1.591663806,2.720620118,2.086160865,2.016179768,1,CMIP5 -2251,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.913165131,1.103027224,3.112109708,1.887730029,1.667891591,1,CMIP5 -2252,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.202282764,2.610131308,5.207674855,3.90897365,3.909044218,1,CMIP5 -2252,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.662534615,1.491596576,3.018257405,2.07057055,1.886214109,1,CMIP5 -2252,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.944905614,1.118534772,3.233255042,1.84882333,1.521751753,1,CMIP5 -2253,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.26768576,2.264562254,5.055701726,3.778107817,3.896083644,1,CMIP5 -2253,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.579437319,1.402216888,2.793642004,2.001958791,1.905988136,1,CMIP5 -2253,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.962795782,0.862345061,3.115294038,1.786291708,1.583763867,1,CMIP5 -2254,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.1278967,2.47117603,5.135939584,3.788583299,3.77360879,1,CMIP5 -2254,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.379627949,1.530913239,2.442242618,1.927071783,1.867565638,1,CMIP5 -2254,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.968205433,0.94026271,3.230115116,1.870662401,1.656135889,1,CMIP5 -2255,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.215604752,2.534851109,4.928216975,3.894093494,4.056652946,1,CMIP5 -2255,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.592423602,1.587487451,2.931898412,2.068882572,1.878072212,1,CMIP5 -2255,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.893331138,0.947363234,3.008059529,1.835435437,1.693159493,1,CMIP5 -2256,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.286155629,2.490902783,5.191746211,3.842875121,3.844425744,1,CMIP5 -2256,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.572518065,1.564451823,2.861676168,2.043615296,1.874166597,1,CMIP5 -2256,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.996955405,0.92645104,3.201210033,1.809229739,1.554628942,1,CMIP5 -2257,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.133997617,2.523983278,4.893866831,3.797630247,3.886335439,1,CMIP5 -2257,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.619257224,1.49592612,2.915643313,2.020783212,1.835781708,1,CMIP5 -2257,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.857792069,1.028057652,3.004522513,1.786976794,1.557663505,1,CMIP5 -2258,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.219009871,2.59519406,4.987853062,3.90850392,4.025484279,1,CMIP5 -2258,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.649639074,1.481031911,2.976733418,2.049569334,1.870256003,1,CMIP5 -2258,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.808368918,1.11416174,2.935697866,1.869032059,1.713134315,1,CMIP5 -2259,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.106964173,2.439349957,4.969169945,3.697473019,3.690686087,1,CMIP5 -2259,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.551426971,1.46116635,2.770387801,2.004450863,1.89312465,1,CMIP5 -2259,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.902923422,0.978183253,3.02307916,1.703170093,1.405708978,1,CMIP5 -2260,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.105615379,2.516018733,4.951599476,3.799035146,3.864261187,1,CMIP5 -2260,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.517115794,1.494666682,2.719062315,1.992980194,1.879095889,1,CMIP5 -2260,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.87693256,1.021352208,3.052813945,1.815978658,1.59487424,1,CMIP5 -2261,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.024108885,2.600068416,4.837226162,3.704357716,3.690068143,1,CMIP5 -2261,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.456413037,1.526436279,2.609003246,1.975574538,1.883429313,1,CMIP5 -2261,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.814276496,1.07363245,2.903796215,1.738517398,1.488320464,1,CMIP5 -2262,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.156428247,2.437775623,4.896277828,3.673097751,3.679168776,1,CMIP5 -2262,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.655615044,1.489875224,3.019350069,2.100561495,1.946510343,1,CMIP5 -2262,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.855456436,0.947900249,2.83814448,1.583362436,1.273702507,1,CMIP5 -2263,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.967019971,2.543644673,4.71461283,3.624303937,3.619479123,1,CMIP5 -2263,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.436775562,1.519776955,2.54591497,1.946976832,1.861107701,1,CMIP5 -2263,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.752391579,1.023868199,2.763102144,1.686713303,1.479941434,1,CMIP5 -2264,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.197584915,2.639034602,4.979998581,3.801895338,3.794274084,1,CMIP5 -2264,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.53777088,1.531190568,2.767544672,1.994443156,1.839518691,1,CMIP5 -2264,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.922810059,1.107844709,3.08006343,1.817341142,1.540728215,1,CMIP5 -2265,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.09411341,2.55166311,4.818444789,3.761743079,3.838432209,1,CMIP5 -2265,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.507894323,1.476498656,2.684422662,1.994108551,1.907756443,1,CMIP5 -2265,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.775322005,1.075164847,2.825532759,1.777387098,1.604425393,1,CMIP5 -2266,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.008554237,2.436711544,4.63536501,3.642460733,3.748883189,1,CMIP5 -2266,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.401908068,1.522872502,2.481167055,1.954217524,1.90641527,1,CMIP5 -2266,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.730327728,0.913839298,2.638711586,1.697514215,1.618752988,1,CMIP5 -2267,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.144311394,2.549197839,4.751318368,3.710929198,3.771600292,1,CMIP5 -2267,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.53613741,1.5712158,2.767632746,1.977975081,1.786525889,1,CMIP5 -2267,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.907165832,0.977982283,2.96724683,1.742900764,1.513186971,1,CMIP5 -2268,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.186325414,2.469300131,4.946755858,3.666130427,3.62423286,1,CMIP5 -2268,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.56767319,1.435945832,2.743405604,1.934747196,1.779818675,1,CMIP5 -2268,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.929434901,1.033354373,3.077434773,1.741024432,1.426654291,1,CMIP5 -2269,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.162267198,2.343441748,4.853235121,3.639814427,3.681290419,1,CMIP5 -2269,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.568529923,1.506746101,2.78763648,1.966503518,1.785815746,1,CMIP5 -2269,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.913068098,0.83669606,2.970603697,1.682973199,1.46229652,1,CMIP5 -2270,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.057290461,2.469811531,4.713814313,3.585884987,3.579957052,1,CMIP5 -2270,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.579439707,1.526663267,2.811655823,1.972596616,1.776033688,1,CMIP5 -2270,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.825252973,0.943148756,2.82137537,1.623005449,1.363748834,1,CMIP5 -2271,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.033954434,2.569097735,4.817170559,3.560314529,3.427494911,1,CMIP5 -2271,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.314372882,1.489811891,2.246521714,1.834866675,1.801566548,1,CMIP5 -2271,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.872124694,1.0792857,2.961983172,1.734222307,1.447810178,1,CMIP5 -2272,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.15613141,2.427934033,4.875883975,3.704659859,3.757410714,1,CMIP5 -2272,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.541225755,1.522963983,2.766542834,1.993782941,1.842812473,1,CMIP5 -2272,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.883358005,0.904969464,2.948327347,1.720678024,1.514707643,1,CMIP5 -2273,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.081734216,2.475045932,4.685334718,3.665134129,3.750077932,1,CMIP5 -2273,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.608330681,1.513743741,2.891968008,2.003946908,1.805037942,1,CMIP5 -2273,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.731367807,0.961302346,2.632688002,1.671278382,1.545561589,1,CMIP5 -2274,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.072597902,2.492512663,4.769617851,3.524600331,3.418135406,1,CMIP5 -2274,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.475907027,1.481980279,2.592738239,1.921460883,1.805562507,1,CMIP5 -2274,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.88227358,1.010532674,2.897568377,1.612788804,1.271527081,1,CMIP5 -2275,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.898854275,2.453225418,4.503849059,3.469585926,3.460634614,1,CMIP5 -2275,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.473824971,1.414629751,2.546611852,1.900081875,1.819542947,1,CMIP5 -2275,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.710779832,1.038595055,2.625601284,1.5790135,1.325928831,1,CMIP5 -2276,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.097700276,2.513576395,4.764879261,3.674459169,3.709690509,1,CMIP5 -2276,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.462290836,1.449941653,2.543670467,1.899721953,1.802637847,1,CMIP5 -2276,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.836165701,1.063635155,2.91068756,1.784006511,1.580851664,1,CMIP5 -2277,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.081541627,2.329098458,4.774232879,3.583583902,3.615502136,1,CMIP5 -2277,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.591559546,1.407914673,2.800564045,1.967781285,1.831323211,1,CMIP5 -2277,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.866206906,0.921183788,2.889952629,1.625877172,1.346186135,1,CMIP5 -2278,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.057011406,2.533070381,4.76668635,3.640282698,3.63068703,1,CMIP5 -2278,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.373798466,1.446406024,2.346796623,1.852163349,1.807725375,1,CMIP5 -2278,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.829516828,1.086663621,2.904530767,1.796966652,1.59833611,1,CMIP5 -2279,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.187070395,2.331436452,4.991760107,3.639978044,3.618357808,1,CMIP5 -2279,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.511953403,1.311031584,2.52435646,1.853257801,1.788821579,1,CMIP5 -2279,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.89573577,1.020405329,3.073319249,1.795649274,1.544436258,1,CMIP5 -2280,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.155498328,2.32403032,4.845710215,3.454553546,3.324236825,1,CMIP5 -2280,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.418446052,1.405031137,2.398120458,1.866266572,1.830957347,1,CMIP5 -2280,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.911912993,0.918999398,2.898153228,1.597446704,1.286317095,1,CMIP5 -2281,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.186049691,2.282164288,4.761859723,3.586989448,3.65196689,1,CMIP5 -2281,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.453074247,1.432399196,2.502502078,1.870397175,1.773343713,1,CMIP5 -2281,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.921200533,0.849765493,2.935642045,1.725707597,1.558711425,1,CMIP5 -2282,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.926240328,2.53521918,4.457176728,3.547687967,3.599177979,1,CMIP5 -2282,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.508265149,1.511498585,2.621603286,1.876230468,1.68591,1,CMIP5 -2282,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.712668729,1.02372037,2.687759137,1.680436545,1.505133337,1,CMIP5 -2283,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.118409045,2.408657908,4.584131708,3.539306141,3.582217474,1,CMIP5 -2283,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.551987669,1.472737664,2.722834345,1.919134722,1.740483439,1,CMIP5 -2283,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.845369442,0.935920596,2.793472526,1.629825647,1.394954733,1,CMIP5 -2284,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.13842211,2.323420309,4.568366784,3.494484601,3.543075655,1,CMIP5 -2284,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.45791539,1.401182994,2.473801619,1.839875967,1.742259627,1,CMIP5 -2284,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.836829074,0.922237915,2.737539973,1.663532653,1.497176362,1,CMIP5 -2285,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.051889033,2.323174928,4.427532739,3.398742046,3.422130258,1,CMIP5 -2285,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.551620637,1.360122425,2.65711707,1.875334909,1.742050071,1,CMIP5 -2285,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.800237588,0.963052621,2.666786967,1.533180419,1.251441045,1,CMIP5 -2286,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.981978331,2.370080433,4.648518149,3.473049295,3.4367993,1,CMIP5 -2286,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.375739411,1.408197234,2.324621047,1.84192604,1.81744294,1,CMIP5 -2286,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.840747064,0.961882743,2.855837171,1.640407686,1.371955415,1,CMIP5 -2287,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.041359781,2.340449024,4.465189702,3.485466579,3.568113795,1,CMIP5 -2287,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.502331212,1.476477184,2.631581483,1.911392479,1.768755624,1,CMIP5 -2287,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.769694565,0.863971469,2.631258226,1.583531054,1.41944726,1,CMIP5 -2288,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.053638397,2.304348285,4.388763721,3.408630951,3.470705899,1,CMIP5 -2288,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.492865345,1.353784456,2.519137544,1.839013677,1.741566354,1,CMIP5 -2288,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.743975374,0.95056349,2.570578357,1.578763429,1.396955935,1,CMIP5 -2289,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.084555368,2.220305482,4.607548189,3.526072746,3.638218656,1,CMIP5 -2289,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.538401496,1.3992121,2.618321716,1.845587049,1.68240719,1,CMIP5 -2289,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.83339211,0.821093148,2.825131864,1.689326167,1.555539829,1,CMIP5 -2290,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.067087001,2.279317186,4.59453869,3.456365361,3.475802785,1,CMIP5 -2290,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.512240108,1.365257793,2.535764753,1.822309453,1.694107633,1,CMIP5 -2290,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.795304974,0.914059206,2.765554458,1.642790757,1.445774682,1,CMIP5 -2291,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.030222341,2.416302541,4.370263451,3.438625039,3.483967083,1,CMIP5 -2291,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.63005704,1.455878515,2.826000824,1.907710487,1.674481304,1,CMIP5 -2291,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.714545313,0.960423971,2.564034624,1.540359376,1.318489455,1,CMIP5 -2292,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.10427401,2.264274448,4.709707432,3.432286364,3.377581789,1,CMIP5 -2292,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.401458002,1.442886815,2.359572261,1.823979381,1.746729224,1,CMIP5 -2292,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.865497563,0.82138726,2.822481639,1.616879212,1.411823974,1,CMIP5 -2293,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.055474302,2.260357534,4.281607954,3.316348908,3.361715073,1,CMIP5 -2293,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.516168199,1.44802074,2.588697859,1.85099004,1.683620781,1,CMIP5 -2293,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.737031853,0.81233636,2.46258646,1.474362574,1.311263738,1,CMIP5 -2294,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.093433884,2.252649836,4.648263303,3.353784332,3.257112095,1,CMIP5 -2294,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.415661165,1.236748554,2.202552582,1.718748067,1.717845567,1,CMIP5 -2294,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.800164955,1.015900894,2.769280504,1.643155701,1.393720702,1,CMIP5 -2295,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.002028736,2.235350514,4.380400141,3.297818304,3.287761281,1,CMIP5 -2295,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.474826228,1.271074918,2.384736837,1.736542769,1.64517966,1,CMIP5 -2295,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.741610506,0.964275737,2.628288299,1.569754386,1.343226754,1,CMIP5 -2296,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.002588889,2.328744147,4.290445702,3.300960708,3.292326491,1,CMIP5 -2296,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.568741729,1.36699755,2.664831223,1.851688795,1.687463203,1,CMIP5 -2296,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.722426592,0.961746992,2.502148263,1.458679188,1.185410748,1,CMIP5 -2297,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.227047654,2.165758785,4.479674219,3.387598269,3.452480036,1,CMIP5 -2297,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.636500792,1.306807776,2.73220043,1.836473919,1.653443735,1,CMIP5 -2297,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.807559934,0.858950695,2.645223603,1.560134374,1.368181599,1,CMIP5 -2298,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.96876311,2.435616505,4.482633521,3.50493428,3.550743547,1,CMIP5 -2298,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.442109991,1.450986915,2.457558355,1.817193387,1.68011414,1,CMIP5 -2298,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.764560948,0.984629755,2.754416918,1.69647376,1.523424184,1,CMIP5 -2299,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.127370163,2.143536948,4.532671363,3.3500167,3.361929245,1,CMIP5 -2299,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.452991322,1.322042105,2.398996791,1.790511314,1.720503179,1,CMIP5 -2299,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.848979579,0.821494412,2.722492431,1.568320256,1.364647091,1,CMIP5 -2300,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.824445309,2.82662236,4.322818859,3.774769834,4.174868283,1,CMIP5 -2300,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.456617046,1.628763548,2.49837445,1.983063623,1.822052871,1,CMIP5 -2300,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.649591017,1.215373131,2.500765427,1.803571111,1.694574774,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/hist/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/hist/ensemble_mean_model.csv deleted file mode 100644 index 049473b52..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/hist/ensemble_mean_model.csv +++ /dev/null @@ -1,3676 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","nbp","carbon_cycle","nbp","historical",1850,"Simulated","PgC/yr","global",1.07853170632141 -"CanESM2","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",0.216924373328587 -"CanESM2","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",-1.17303525122983 -"CanESM2","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",0.288690543475905 -"CanESM2","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",-1.73540958352177 -"CanESM2","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",0.195862250236495 -"CanESM2","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",1.24733320052201 -"CanESM2","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",-0.0314606318511002 -"CanESM2","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",0.780971164672569 -"CanESM2","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",0.791066764574793 -"CanESM2","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",0.018782150809042 -"CanESM2","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",-0.73772144237282 -"CanESM2","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-0.189123002724875 -"CanESM2","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",0.69335103451818 -"CanESM2","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",1.00329867272325 -"CanESM2","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",1.94744099914523 -"CanESM2","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",1.30312123733478 -"CanESM2","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",0.394092047679905 -"CanESM2","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",-0.6538443230192 -"CanESM2","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",-1.37195963171191 -"CanESM2","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-1.34893029013356 -"CanESM2","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",1.74618771123711 -"CanESM2","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",-0.846774904551715 -"CanESM2","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",0.853470589812454 -"CanESM2","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",0.132715292893258 -"CanESM2","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",0.152122854776864 -"CanESM2","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",1.36267044821917 -"CanESM2","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",-0.135584578137515 -"CanESM2","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",-0.0183342382116779 -"CanESM2","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",1.17556910070766 -"CanESM2","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-1.36962856869444 -"CanESM2","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",-1.35702947776337 -"CanESM2","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",1.24913779572064 -"CanESM2","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",0.386416597850325 -"CanESM2","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",0.615488661958704 -"CanESM2","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",-1.04469616286219 -"CanESM2","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",2.21553901673283 -"CanESM2","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",2.29924841820324 -"CanESM2","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",1.8299499729573 -"CanESM2","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",-0.543695756042931 -"CanESM2","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",0.0258036521072326 -"CanESM2","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",-0.390109888486753 -"CanESM2","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",1.60375668513012 -"CanESM2","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",1.35838999056108 -"CanESM2","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",1.02931894568367 -"CanESM2","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-0.200485414760494 -"CanESM2","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",-0.368453732653394 -"CanESM2","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-0.227451284556787 -"CanESM2","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",-0.899451253428238 -"CanESM2","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",0.863084170513057 -"CanESM2","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",0.0515697583158076 -"CanESM2","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-0.0927873370020554 -"CanESM2","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",1.24718556985545 -"CanESM2","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",0.615007125352185 -"CanESM2","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",0.528402272331285 -"CanESM2","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",3.29516454414865 -"CanESM2","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",0.14808433812812 -"CanESM2","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",-0.99991911394301 -"CanESM2","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",-0.661391338206584 -"CanESM2","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",1.10332644833315 -"CanESM2","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",-0.0562554253396547 -"CanESM2","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",1.02397848397836 -"CanESM2","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",0.0451315857995986 -"CanESM2","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",-0.061830791817774 -"CanESM2","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",1.95587068076765 -"CanESM2","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",-0.164435013966205 -"CanESM2","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",0.0524948931195106 -"CanESM2","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-1.24186106596139 -"CanESM2","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",0.3251111268837 -"CanESM2","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",-1.41081104663053 -"CanESM2","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",-0.317303864246235 -"CanESM2","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",0.425459056081911 -"CanESM2","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",-0.381164097144959 -"CanESM2","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",-0.7059459654795 -"CanESM2","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",0.662277801056396 -"CanESM2","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",0.667465376634521 -"CanESM2","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",0.452439146347102 -"CanESM2","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",0.761334659674264 -"CanESM2","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",-0.809673282941008 -"CanESM2","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",0.606119013776556 -"CanESM2","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",0.101217977380075 -"CanESM2","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",0.260493251853436 -"CanESM2","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",-1.21581618065096 -"CanESM2","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",0.60830600607064 -"CanESM2","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",0.889508539653201 -"CanESM2","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",0.298276619473201 -"CanESM2","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",-0.672692203280649 -"CanESM2","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",-0.401707288945005 -"CanESM2","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-2.00602662848309 -"CanESM2","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",0.600959106984075 -"CanESM2","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",2.02095744519556 -"CanESM2","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",-1.3899242664242 -"CanESM2","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-1.29345797829474 -"CanESM2","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",0.0615205764711988 -"CanESM2","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",1.36437271556179 -"CanESM2","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-2.13195792121259 -"CanESM2","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",1.82085080324132 -"CanESM2","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-0.266319525957836 -"CanESM2","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-0.280809533872795 -"CanESM2","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-0.695516538461183 -"CanESM2","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-0.393923300260485 -"CanESM2","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",-0.802271174975183 -"CanESM2","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",-0.251102305140944 -"CanESM2","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",0.818625901394797 -"CanESM2","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-1.01592435786154 -"CanESM2","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-0.385322329551124 -"CanESM2","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-0.00940359070407265 -"CanESM2","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",0.0675634103000719 -"CanESM2","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",1.27643504748453 -"CanESM2","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",-0.743886916485407 -"CanESM2","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",0.680522887866894 -"CanESM2","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-1.35237463569711 -"CanESM2","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",0.555500739956824 -"CanESM2","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",1.58554949812135 -"CanESM2","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",-0.704118216976689 -"CanESM2","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",-0.272954105027206 -"CanESM2","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",0.447069375032818 -"CanESM2","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",1.25577804689107 -"CanESM2","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",-0.202683206567692 -"CanESM2","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",1.50337825592169 -"CanESM2","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",1.87282134069988 -"CanESM2","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",-0.145815208148278 -"CanESM2","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",0.800320429068286 -"CanESM2","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",-1.3209448416728 -"CanESM2","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",-1.46349515930396 -"CanESM2","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",1.18040129325529 -"CanESM2","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",0.664259738693158 -"CanESM2","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",-0.457667227740486 -"CanESM2","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",1.64412094238061 -"CanESM2","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",1.32076298375321 -"CanESM2","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",-1.28762279226752 -"CanESM2","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",-1.83546384716798 -"CanESM2","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",-0.881971884173928 -"CanESM2","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",1.82420873210925 -"CanESM2","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",2.11789143232142 -"CanESM2","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",0.550307659577279 -"CanESM2","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",-1.05479459398899 -"CanESM2","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",1.69419211100645 -"CanESM2","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",-0.862993188467797 -"CanESM2","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",-1.75586374296076 -"CanESM2","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",0.0399681078033914 -"CanESM2","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",-0.624283925454696 -"CanESM2","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",2.45906155456571 -"CanESM2","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",1.45074926571082 -"CanESM2","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",1.49379935450485 -"CanESM2","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",1.21439004778906 -"CanESM2","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",-1.04952335250731 -"CanESM2","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",-0.38529108956175 -"CanESM2","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",0.0969022323683809 -"CanESM2","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",-0.529820117426684 -"CanESM2","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",-1.44013458652072 -"CanESM2","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",1.87104687069594 -"CanESM2","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",1.84644233871629 -"CanESM2","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",-2.55544110426948 -"CanESM2","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",0.725809898243895 -"CanESM2","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",0.179535350250257 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1850,"Simulated","PgC/yr","HL",0.0443364066662342 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",0.0382547465499658 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",0.387915521355935 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",0.21729353356745 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",0.0575566550912861 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",0.0133629209302547 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",0.130372561371746 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",0.225431013908472 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",0.270363666600523 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",0.00705722065180762 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.0892716467454159 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",0.180634259057427 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",0.148618610907157 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",0.0738204443292868 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",-0.0301842493049565 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",0.150922169003872 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",0.0987108362164392 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",-0.0259052605903466 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",0.0539220363582546 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",0.113822270690218 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",-0.0989934121224494 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",0.195047561357222 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",0.0893695351137257 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",0.197977407178255 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",0.30274968454762 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.229867395449408 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",0.112003776549355 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.0204668351395263 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",0.0660986775222515 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",0.0921108639974215 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",0.187428623738721 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.126382158014267 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",0.0884528076270249 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",0.0663462697981159 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",0.271611425152331 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",0.116505518956813 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",0.314069230940869 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",0.103445260081149 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.0324412644416976 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",0.14926068413809 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",-0.0167603669554366 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",0.0831142655444703 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",0.0252781626404196 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",0.0819225959440698 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.110944759441844 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",-0.0255228124302763 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",0.0128731667795202 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",0.122314726541499 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",0.0431602763927885 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",0.0752763052720369 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",0.011164136452394 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",0.0908010481656491 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",-0.0824090802954336 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",0.0888640927056779 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",0.142858862650068 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",0.0088783388566792 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",-0.000981084295863015 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",0.334926644282068 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",-0.00440420969373644 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",0.0524819637006706 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",0.0912565827878921 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",0.0242039674176454 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",-0.0443206300509841 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",0.144758424920059 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",0.103489300121959 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",0.0662030360255161 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",0.252543148888576 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",-0.0882826658062732 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",0.0290787359171367 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",0.0132300617131358 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",0.0662881802896508 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",-0.0706346889164171 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",-0.00642120466308042 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.30982196605982 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",-0.00232843168947988 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.283947920828114 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.105301532519227 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",0.0622276607415206 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.315383307959177 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.0202590300535902 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.15571839007613 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",0.0513760835440567 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",0.191524708189965 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.180106367620627 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",-5.61433554441404e-05 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.104593407562735 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.0915479389165493 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",0.0199047857469356 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.0191113771541667 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",0.0062296235391816 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.0740800666215983 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",0.0832757882985603 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",0.01662001120645 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.110232727841984 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",0.0161766377482835 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.0161290856184156 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",0.0679530755495074 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.0426197905045958 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.104301610755814 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.0320788601962264 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.172028551671044 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",-0.00581106254564802 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",0.121812241067926 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",0.0654230116040387 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.13335228774878 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.0460532847341343 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.0340230876811064 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",0.0743542874233363 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",-0.0107427524505662 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",0.142531921612727 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",-0.0393605989210654 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.199631120991283 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.109033446121974 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.0714443160252624 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.0900586469982149 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.230454542719438 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.137895969612135 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",0.0301964204718187 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",-0.00424881531277013 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.187697792244749 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",-0.0886004876376884 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",-0.106501162391736 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",-0.0021542177348347 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",0.11193265118881 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",-0.0222060588740631 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.113371207313001 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",-0.0831049168301922 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",0.000895943921700618 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.135034278324415 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.126961669380288 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.145389261688845 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.0344414452846725 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.267241819538609 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.089154708072513 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.109728678043933 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",-0.0750634949034818 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.0682133669170131 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.125888698387292 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.16732229120404 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.132148619251709 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.0810044836273164 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.0872281999660715 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.172300392365593 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.222350891798281 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.0233646475963646 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.0753620085807276 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.0751363505791694 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.0450900943097418 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",0.220315702873907 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.0812478736219364 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",0.206396082485206 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",0.187607989794645 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.286106227923861 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",0.205497493382505 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",0.366012219007214 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",0.140726079883841 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1850,"Simulated","PgC/yr","LL",1.03419548104659 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",0.178669846186758 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",-1.56095084984129 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",0.0713966557616248 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",-1.79296636078291 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",0.182499289167966 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",1.11696064255069 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",-0.25689151165035 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",0.510607533071461 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",0.78400968821513 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",-0.0704897986934442 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",-0.91835561763119 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-0.337741572121057 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",0.619530723209783 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",1.03348326767855 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",1.79651903562872 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",1.20441036119058 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",0.41999744469718 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",-0.707766489331317 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",-1.48578224943506 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-1.24993678448689 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",1.55114036883082 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",-0.936144250352786 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",0.655493280473794 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-0.170034129945544 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",-0.0777447883184079 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",1.25066667241189 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",-0.156051225435029 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",-0.0844331253552772 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",1.08345819325838 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-1.55705692451039 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",-1.4834114112041 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",1.16068474331738 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",0.320070294241707 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",0.343877243227181 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",-1.16120178386113 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",1.90146977819727 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",2.19580306854082 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",1.79750883317577 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",-0.692956495615776 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",0.0425640199914631 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",-0.473224309366223 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",1.57847833530133 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",1.27646759706418 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",0.91837414230011 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-0.174962650050886 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",-0.381326743194029 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",-0.349766216845827 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",-0.942611249535141 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",0.787807751045966 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",0.0404054169759758 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-0.183588031336724 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",1.32959467072578 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",0.526143116243572 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",0.385543554036538 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",3.28628611435192 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",0.149065641986519 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",-1.33484598851023 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",-0.656987444071279 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",1.0508445288357 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",-0.147511943935815 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",0.999774278974138 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",0.089451846757987 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",-0.206589183840066 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",1.85238118882392 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-0.230637903709266 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",-0.200048378756972 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-1.15357817727896 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",0.296032194118052 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",-1.42404141765273 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",-0.383591801839226 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",0.496093827595028 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",-0.374742953426584 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",-1.01576828116227 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",0.664606299714646 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",0.38351731190976 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",0.347137390661066 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",0.699106951856362 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",-1.12505648180285 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",0.585859832509817 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",-0.0545004010566376 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",0.20911705590239 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-1.40734097615069 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",0.428199718286335 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",0.889564635750191 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",0.193683185405969 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",-0.581144306705526 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",-0.421612122444672 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-2.02513793939859 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",0.594728932963524 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",1.94687725502029 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",-1.47320006008441 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-1.31007784076615 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",-0.0487121340325283 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",1.34819610257374 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-2.14808653964551 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",1.75289791445473 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-0.308939470115525 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-0.3851110988345 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-0.727595390760897 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-0.56595208412735 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",-0.796460182074657 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",-0.372914600543233 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",0.753202961519743 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-1.14927647501185 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-0.431375599769353 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-0.0434267745073394 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-0.00679104780894089 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",1.28717786329724 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",-0.886418822253494 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",0.719883717476832 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-1.55200605641928 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",0.446467144498172 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",1.51410525452905 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",-0.794176670623478 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",-0.503408564600441 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",0.309173716683295 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",1.22558171556701 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",-0.198434491501819 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",1.31568051509431 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",1.96142188817673 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-0.0393139786161824 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",0.802474843974968 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",-1.43287728548918 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",-1.44128920988957 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",1.06703011229809 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",0.747364625988536 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",-0.458563274216886 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",1.50908716126166 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",1.1938014217026 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",-1.43301183420517 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",-1.86990499330449 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",-1.14921355501569 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",1.73505384080589 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",2.0081629814666 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",0.625371365009038 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",-1.12300796216475 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",1.56830302211515 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",-1.03031538959775 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",-1.88801232485604 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",-0.0410366663621609 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",-0.711512065600214 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",2.28676111993109 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",1.22839834356772 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",1.4704348540095 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",1.139027888243 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",-1.12465966263417 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",-0.430381290826644 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",-0.123413553467279 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",-0.611068249885237 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",-1.64653070277296 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",1.68343892309263 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",1.56033616353194 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",-2.76093893339818 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",0.359797644457029 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",0.0388093410835246 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",-0.152764137459067 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-1.65300417340047 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",-2.77478984459606 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",0.782590732631515 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",7.15198564971274 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",-1.88199261405247 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",-3.63444633951009 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",-2.71172866905748 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",-2.00737503704199 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-1.80904213876868 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",-0.587943158796438 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",-2.92140498662214 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",-3.00790740568494 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",-0.471118647556175 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",0.992798994149612 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",-1.77666706785589 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",-2.454265865346 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",0.616034528643601 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",-4.23411623251805 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-2.26545873693136 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",1.96865588704737 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",-2.27565205060823 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",-0.11229053754169 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",6.2128045793102 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",5.12649041722023 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",0.827916957886945 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",0.234686530342539 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",4.48674859264872 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",1.05638600119221 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",-6.42029971755565 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",-3.06474353405144 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",2.07400234425512 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",-0.187588981586878 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",0.0905486997246573 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-0.891702941243544 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",-0.586001169274253 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-2.47530073404608 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",-4.21212750000065 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",1.17542096716732 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",1.52793332447742 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-3.21185893180634 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",-8.08305163924109 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",-0.64657313021366 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",-0.223673505027713 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",-2.36520908584152 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",-3.37922583961201 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",-0.433552820254676 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",-1.23140891274988 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",-1.54812097551716 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",-1.10800451056334 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",-5.38633707620536 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",-3.19406044422001 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",6.68298223136362 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",0.559476677579628 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",-5.28061261225719 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",-3.47146109281468 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-3.73356131538847 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",-1.37426328984358 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",3.80755734123088 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",1.58538198461733 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",-3.11590151861498 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",2.56375752838384 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",-0.8752360025071 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",-5.79764379765128 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",-6.18529855692193 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",-3.12936499273134 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",0.34552856214032 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",-1.62297756989627 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",-1.15689172016749 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",-1.56293867888783 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",3.92679675255368 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",-0.498039965901278 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",-1.77927451009516 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",2.78865545354266 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",-3.14230086595043 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",-4.22928900601588 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",-1.11263034794253 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-0.331358778408127 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",1.18179737788951 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",-7.56690997609148 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",-5.10915518895834 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-0.503744168041236 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",-0.970003740016682 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",5.12815847249606 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-1.34601589168228 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-1.25243107398933 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-3.37839422478308 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-0.726645252487029 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-2.90191592420949 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-3.07813623243768 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",-1.38145683854081 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",-3.13768918371727 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",-3.96261892323127 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-3.51909798480466 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-5.56557982981762 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-2.62632005673292 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-5.08265450364567 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",-4.12455861936806 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",-3.43281432708951 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",-1.36120532849003 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-1.84031053462866 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",-0.750741171514881 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",1.59334698877289 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",3.28752783854253 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",-3.81822195692878 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",0.747432566985616 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",2.91286203428857 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",3.4565065027478 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",-1.21604076722358 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",-3.79358717722841 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",-1.96300187133423 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",1.17236763782829 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",-0.187018432689737 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",1.41924496597646 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",-5.29945021624485 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",-3.31458668699958 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",4.58632843639086 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",3.97606148633646 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",0.799525434602492 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",4.36013563707867 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",-2.57881989058523 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",2.48001857987443 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",6.46923630931695 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",-2.93134093400766 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",-3.25367451999379 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",-1.71391312332762 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",3.77827227435364 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",-1.32491893336441 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",0.973923106926112 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",-5.11090849681818 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",1.32402748087274 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",9.3811058748445 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",3.54643028494627 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",1.08151733698096 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",-4.78309300882624 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",-0.301714685554449 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",1.49640128902274 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",-0.558451394616454 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",2.17172593362088 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",0.940182707837699 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",-1.87085830487285 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",-1.59476765070115 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",2.35561093171341 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",8.05358159034193 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",0.891794627984839 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",0.0710760209083971 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",-0.117410175615747 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",0.138613374511223 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",0.170311440006419 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",0.548799168985764 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",-0.0339680372930485 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",-0.209891535335093 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",-0.284917578277051 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",-0.210224560845836 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",0.037238928663534 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",-0.561970368066356 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",-0.385649070561242 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.477207750745826 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",0.164525036293698 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.130380423839192 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",-0.397628833198866 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.410050925533879 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",0.264092648561635 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",-0.0895998254978121 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",0.00707572640975702 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.0579040489398934 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",0.1817719705994 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",-0.0148139634198328 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",0.486455354614159 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",0.592798786028144 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",0.378418704143502 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",-0.114336132851183 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.211603600966238 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",0.237272219226815 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",0.0363601848339291 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",0.424827353354996 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",0.324083197599629 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",-0.0559825604110265 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",-0.329669096352076 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",0.36808103105452 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",0.0847753105181633 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",-0.568355611278667 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-0.225832645786836 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",-0.073782674376588 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",-0.0994754899741052 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",-0.419646923491823 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",-0.170672675925954 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",-0.485312075033407 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.280586373870532 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",-1.03648727981973 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",-0.59884782299869 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",-1.02407618627424 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",-0.65737594920115 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",0.418837472036184 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",0.111504330994148 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",-0.363005832853225 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",0.159670051694437 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",0.837148488498393 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",0.539478438030362 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",0.410599378686892 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",0.309388517538446 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",0.64884267212235 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",-0.0378456456745363 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",0.323400380855743 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.032655376353713 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",-0.197911742971011 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",0.850764395393026 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.742150159840361 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",0.691478439264447 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.126713278781462 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.413577375265148 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",-0.0473624820744057 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.368054574506759 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.747262813378935 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.274531807778768 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",0.955289162096912 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",0.142446720196513 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.551239413935944 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.521563490756937 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",-0.0689875588640574 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.414559240178103 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",-0.514966000633378 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.0360147336636764 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",-0.286241862261526 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",-0.221571774180318 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",-0.0123800799316986 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",-0.284737614299363 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.526873527977678 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",0.848873792654185 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",-0.0667965702655312 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",0.421162972857875 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.0450722665585485 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",-0.156596722364869 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",-0.198918786194025 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.172052013310937 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",-0.11529730814926 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",-0.130846237438526 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",-0.168880081319659 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.326783251794109 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.192996562293981 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.22439459864699 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",-0.560596411170299 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.0213255113802115 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",-0.187262714959283 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",-0.0536831891460567 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.498557292994812 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.516883654449143 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.46212454587652 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.324642946806742 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.357204417279134 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.347731784122546 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",0.145689609243414 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.287796912740681 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.0693547103487653 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",-0.430845177544477 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",-0.783095680571601 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",-0.10144671086747 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",0.230960697630734 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",0.199691644379672 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",-0.15910310868445 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.113333726955642 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",-0.115936308093822 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",-0.00504313227087922 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.594431957639338 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.50291013826287 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.537949903551884 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.642641435686036 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.683715077451936 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.475552284291014 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",-0.144793683520994 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.219409560793289 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.145972753757368 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.864730479964759 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.166327202819519 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.421089845770807 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.482683661603088 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.962235938103826 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.637724382242141 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.340090895317645 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.565062811508519 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.39394661682685 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.538453172488497 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",0.866781605577652 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.0809532311605144 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",0.579499465912892 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",0.0480092406245466 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.274163883406148 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",0.973807556470942 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",1.05796197045756 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",0.407754556641184 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",-0.223840105364817 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-1.5355931977624 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",-2.91340332868556 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",0.612279283664127 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",6.60318620505888 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",-1.84802407353902 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",-3.42455395738989 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",-2.42681156457494 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",-1.79715054747558 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-1.84628007813566 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",-0.0259726416794599 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",-2.53575620374623 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",-2.53069992835121 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-0.635643708097743 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",0.862418446329276 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",-1.37903879535395 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",-2.86431707009188 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",0.351941943968454 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",-4.14451722069088 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-2.27253353511405 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",1.91075152324639 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",-2.45742458464033 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",-0.0974765712321772 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",5.72634989958778 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",4.53369176186403 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",0.449498293155775 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",0.349022653016189 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",4.27514509895245 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",0.819113860316442 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",-6.45666043185716 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",-3.48957089279221 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",1.74991974263812 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",-0.131606482599558 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",0.420217790480532 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-1.25978412741686 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",-0.67077656106228 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",-1.90694489267799 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",-3.98629487681396 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",1.24920371379981 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",1.62740865501327 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-2.79221269472326 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",-7.91237995142015 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",-0.161260960830471 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",0.0569129296943065 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",-1.32872124978001 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",-2.78037712892568 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",0.590523268825825 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",-0.574032939958423 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",-1.96695800367486 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",-1.21950884830693 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",-5.02333092846896 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",-3.35373069744163 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",5.84583456511415 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",0.0199983166139093 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-5.69121167039681 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",-3.78084959574801 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-4.38240475008365 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",-1.33641712122539 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",3.48415663939334 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",1.61803697445097 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",-2.91798885644914 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",1.71299293470264 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",-1.61738658218024 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",-6.48912234930507 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-6.31201109280748 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",-3.54294239723415 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",0.392891087166953 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",-1.99103300788974 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",-1.90415450003261 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",-1.83747093443655 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",2.9715072236619 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-0.640486639092668 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",-2.33051285899015 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",2.26709174494565 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",-3.07331328315205 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",-3.81472900118918 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",-0.597664471056449 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-0.367373418483814 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",1.46803894573939 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",-7.34533885949953 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",-5.09677542662122 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-0.219006484420542 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",-1.49687781108242 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",4.27928479330465 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-1.27921931709395 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-1.67359437388345 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-3.42346691063095 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-0.570048500535365 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-2.70299618400582 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-3.25018851019655 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",-1.26615954519969 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",-3.00684345533851 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",-3.79373942643604 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-3.84588095517246 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-5.7585757875826 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-2.85071521722037 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-4.52205813237632 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",-4.14588356896931 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",-3.24555184271813 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",-1.30752213332352 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-2.33886830162943 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",-1.26762489472094 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",1.13122242476213 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",2.96288559225052 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",-4.17542658884738 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",0.399700930270937 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",2.7671725923002 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",3.16870983171615 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",-1.28539555224387 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",-3.36274308872534 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-1.17990664652071 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",1.27381424261826 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",-0.417979182245475 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",1.21955330052059 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",-5.14034777493583 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",-3.4279213109206 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",4.70226530853356 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",3.98110485139552 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",0.205093466053376 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",3.85722610421751 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",-3.1167702392896 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",1.83737783393005 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",5.78552248347671 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",-3.40689370920002 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",-3.10888161045754 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",-1.93332249533521 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",3.63230052562344 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",-2.18964917011304 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",0.807595885260741 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",-5.53199800281692 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",0.841343769845553 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",8.41887030970075 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",2.90870503129439 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",0.741426339362518 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",-5.34815597308213 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",-0.695661146301251 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",0.957948220406897 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",-1.42523238187257 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",2.09077249839064 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",0.360683163636061 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",-1.91886831388311 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",-1.86893103798358 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",1.38180296250455 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",6.99562057523411 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",0.484040154595277 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",-3.31145010315704 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",-1.96411547602691 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",-3.66360583688525 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-1.86103648297919 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",-1.42406759136967 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",-0.971566090091092 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",3.99283131961994 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",5.04907447537918 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",-1.03659267079996 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",2.73917289596957 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",-2.16931245564584 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-0.551792111796827 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",-1.47108568149607 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",-4.68084469892466 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",-3.12484966197815 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",-5.53476051852812 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",-1.73823300684212 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",0.667262051511262 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",2.51219175563486 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",0.168600355818795 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",4.46032343448105 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",7.37424066253454 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",5.47666631590078 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",1.12987916956224 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",0.915139740969727 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",2.78947750848122 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",-3.85601923334622 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",4.18097076103913 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",6.62142394361882 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",1.89547738440603 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",0.285350061019992 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",3.34878055113101 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",2.05117258698675 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",-3.4666430032134 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",0.490761711627288 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",1.53578639293958 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-1.18186329028534 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",-5.27340664352227 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-1.278060634187 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",-0.512346724875471 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",-5.66104713490805 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",-5.40412647178917 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-2.15965396634369 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",-0.550118579738705 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",2.20227121876504 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",6.43446344523416 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",0.31262641523213 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",-0.910551012360445 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",-0.922881674680976 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",1.34062653577222 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",2.29128787259906 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",-2.30614162985731 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",-1.8081317611716 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",2.65708206494797 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",-3.34275855113143 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",-4.27093137362827 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",-1.32712630083256 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",-3.36505853109522 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-4.45065413099566 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",0.33187220280931 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",-1.10383235460606 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",-5.81338077134766 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",-4.9944603565502 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",-2.28417226871279 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",-3.34722220681431 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",-2.48564826442521 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",-1.50250428212172 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",0.493441911834133 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",2.49240823490692 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",0.852875502413733 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",-3.7660415287977 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",-3.70387441278746 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",-1.30780836507855 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",0.113303121643261 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",-2.95461052909255 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",-0.858289189524363 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",2.37683795533674 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",-2.8095742745544 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",-2.65463429528069 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-3.32855493179219 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",-2.88479699326179 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",3.46369868196345 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",0.0958078724391476 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-5.47742885858806 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",-4.79135641001915 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",-4.23372350516541 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-5.69493377425398 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-5.63073890839746 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-8.46006103175514 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-6.0273527991148 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-4.11582437574899 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-5.79209207235085 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",1.04918811773382 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",-2.32759758875797 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",-2.48594976658893 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-3.24983664598207 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-4.53529270959289 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-7.81618681315269 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-4.77896481184715 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",-8.69320581416235 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",-7.39294003022394 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",-1.29885027929805 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-2.46024044343051 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",-2.19686967699967 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",-4.86418343122169 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",-4.05201148502267 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",1.71611798198718 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",4.01559579871551 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",4.10970171416265 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",-2.30224912713285 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",-4.31801650445187 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",1.27621140482957 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",-0.732044478607225 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",-3.78552837332691 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",-5.39176838190088 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",-2.87006939477206 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",2.95618564363766 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",2.76311631809966 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",-1.64959125005629 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",-1.74029003420941 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",1.73833294453411 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",1.97928967736154 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",6.1838250624942 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",2.78204017359458 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",2.67778798845399 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",2.57395409383026 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",-0.687801961821095 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",1.97283607522494 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",1.58966157207179 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",4.29934886748237 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",3.65896249443866 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",6.16253933950911 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",1.96397029491299 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",6.83505686691157 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",8.1469691521982 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",9.50311896744046 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",-0.41741808963853 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",3.88944038155644 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",6.49569339905668 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",1.49834440887104 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",-0.364496691440751 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",4.97378350948333 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",4.54266815147833 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",6.29674407753936 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",1.48952927304018 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",9.79458996074267 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",7.82927322159308 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",0.2943233069916 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.165477643729524 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",0.207169458687417 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",0.139816138022517 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",-0.122651110314703 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",0.0743635555146605 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",-0.147672062925065 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",-0.44780397179088 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",-0.386808030756359 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",-0.207976075392569 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",0.021916235421582 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",-0.328549759723184 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",-0.316713281735182 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",0.045990925304179 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.154595182944943 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",-0.0182339204027977 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.284277015846413 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",0.108332043567303 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",-0.0347792672393367 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",0.414470019629637 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",-0.0766148966455296 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",0.0928376419454123 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.107980704798625 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",-0.175498840049173 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",-0.185588401559775 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",-0.078202570232626 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",-0.260486809730567 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",-0.148161883040163 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",-0.289353812217771 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",-0.0811138942898333 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",0.0221367112813432 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",-0.0213207299144412 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",-0.253561790594005 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",-0.372419182079969 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",-0.404786580158951 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.0363895932855884 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",-0.0542975668772525 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",0.0244266735533785 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",-0.124595811819116 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-0.0875489746541266 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",-0.0362086685623269 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",0.119476492991216 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",0.168331277226684 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",0.346954796257682 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",-0.327855498643598 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.168952086733074 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",0.0123379421563246 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",0.128170903492409 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",-0.107789009886686 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",-0.0104840097013229 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",-0.14669648578128 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",-0.013841468170494 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",-0.233463267168387 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",-0.208458882921493 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",-0.503295589472987 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",-0.275609195988498 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",-0.489439080358545 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",-0.305081139372392 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",-0.0802528487801131 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",-0.193707463976956 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",-0.146080317884611 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.180517308557857 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",0.246608382522218 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",0.194722889464488 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.181078879769247 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",0.100746993424548 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.34704542565731 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.218503005582418 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",0.159652494559699 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.41455166509376 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.549719572070281 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.303207386880918 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",0.179464540296531 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",0.499873409799435 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.227351068467986 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.334090763716794 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.359836202255087 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",0.298186600908134 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",0.360773721822839 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.568506486057604 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",0.277614261413331 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.288759111803678 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",-0.0365137160608489 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",0.224128595510833 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.374528766640563 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",0.260711724136018 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.136167516523993 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",0.479380706798252 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.217039210985397 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.188490664181865 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.445140686367758 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.103559367031646 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.525471606600798 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",0.224594748900019 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",0.364737969893018 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.358634070422819 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.221582802507889 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.154669525387456 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",0.147533699784364 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.0847493536456622 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",0.0363553535059333 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",-0.337909809117481 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",-0.0468906656925595 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",-0.293506707885082 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",-0.435706470598024 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.0823373475442458 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",-0.341031403163329 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",-0.40707701570531 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",-0.128181467517073 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",-0.326424720385769 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",-0.316843541275768 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.0158188067927015 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",-0.47154539077288 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",-0.108670127795691 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",-0.301573499448033 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",-0.0254527052012853 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.115794083167082 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.000447097513927911 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",-0.191059580661018 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.0797561665635247 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.365232312072804 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.348096365529752 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.70641058828559 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.47816990704831 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.178979287391528 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.509523066963899 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",0.415275165347025 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.695554796396321 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.682378432898311 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.517090388581532 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.414228439045674 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",1.09618557502876 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.890455408270042 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.934099276661478 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.600465933707786 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.730889276869243 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",1.04778729359983 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",1.37626585902004 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.945236271751436 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",1.06609984977311 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",1.04398868401893 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",1.16266797688396 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",1.59185457825429 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",1.18491510554817 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",1.11131680978598 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",1.4105270827422 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",1.69230212522017 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",-3.21318084136739 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",-2.12276111080497 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",-3.85932164486859 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-1.99459572215375 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",-1.29954694715301 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",-1.04264507994741 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",4.12901334341493 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",5.4790306467953 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",-0.652205175691765 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",2.93791035395897 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",-2.1857268944997 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-0.226089752648898 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",-1.15485555044598 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",-4.71498159324958 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",-2.96469581069701 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-5.5034325632243 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",-2.01471207795739 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",0.558700161652388 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",2.54048084866944 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",-0.241007379321688 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",4.52522492675127 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",7.26482897012588 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",5.35687167250054 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",1.30042721669579 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",1.09616623962656 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",2.85997060607918 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",-3.58955959798386 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",4.31718338028874 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",6.89115941671883 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",1.970996992841 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",0.262807924034705 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",3.36176729786292 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",2.29657331987007 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",-3.09061091226025 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",0.889222130511838 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",1.49616198822851 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-1.12541036425326 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",-5.28482663810721 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",-1.15197149740038 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",-0.424676606653356 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",-5.61166920253749 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",-5.50907317929705 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-2.32064621398222 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",-0.891338893053828 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",2.52065749108001 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",6.58577604084269 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",0.29969242085997 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",-1.03490022477526 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",-0.814240402771184 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",1.34774928864188 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",2.43060373971627 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",-2.28692392727102 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",-1.5732820079794 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",2.85649480320948 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",-2.83781143521324 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",-3.98854265087259 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-0.840712789789563 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",-3.05575300657521 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-4.36070585740802 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",0.522318498535797 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",-0.956951193006962 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",-5.62116109592916 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",-5.22590967588049 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",-2.4709209870127 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",-3.51794051101114 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",-2.57913059190403 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-1.84152107217961 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",0.276527974853664 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",2.32878432682667 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",0.441539122978385 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",-4.29970711393899 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",-3.99431163958698 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",-1.48184329004855 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-0.380490239973381 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",-3.1719583931468 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",-1.18606746062463 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",2.01585252520705 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",-3.09720622262578 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",-3.00443095164508 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-3.8818222928455 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",-3.15193703375179 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",3.17027000033579 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",0.131626579203415 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-5.68552152235649 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",-5.14958892047605 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",-4.48092855253025 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-5.81565983538811 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-6.09047081390097 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-8.65397570610769 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-6.19893605262418 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-4.5453977050605 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-5.88038874065853 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",0.527869152421163 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",-2.54373413242232 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",-2.8400664394319 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-3.59608839451849 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-4.74314028093508 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-7.95007160518435 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-4.91311759024519 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",-8.75594941460935 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",-7.41103334645443 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",-0.962107771976322 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-2.40802241344051 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",-1.90180397553991 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",-4.4223031501688 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",-4.12354671525865 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",2.04868352593029 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",4.40783074479224 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",4.22635900079809 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",-1.97443007020965 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",-3.99480353530586 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",1.25752100671186 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-0.264729460130748 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",-3.66912546470411 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",-5.081047017582 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",-2.8380302603885 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",2.83474556178748 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",2.7560223387097 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",-1.45698829370784 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",-1.81484231478008 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",1.37355745266413 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",1.63085231602405 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",5.47150383224445 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",2.30324948179013 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",2.4946363860372 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",2.06470934814705 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",-1.09614363139663 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",1.28137154515592 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",0.912128546527732 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",3.77847757629924 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",3.24118926190748 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",5.06544812347831 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",1.0801036087532 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",5.89637281806668 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",7.53452246660837 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",8.75863814640874 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",-1.62852001144718 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",2.38539991987503 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",5.54683147309492 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",0.442189910487955 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",-1.39433911022559 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",3.81391751314623 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",2.96010832755617 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",5.11173000763285 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",0.388750377110361 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",8.37840831950843 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",6.13962933052824 -"inmcm4","nbp","carbon_cycle","nbp","historical",1850,"Simulated","PgC/yr","global",0.019700796059543 -"inmcm4","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",-2.1106183822983 -"inmcm4","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",11.1692117965213 -"inmcm4","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",2.41877644844377 -"inmcm4","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",-3.35879278653125 -"inmcm4","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",5.35226763975168 -"inmcm4","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",-4.28584715387682 -"inmcm4","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",7.8498534493966 -"inmcm4","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",-0.506255842474038 -"inmcm4","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",1.30940805375373 -"inmcm4","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",9.52780131267301 -"inmcm4","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",7.37291952147605 -"inmcm4","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",4.75140034923357 -"inmcm4","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",8.88783095107457 -"inmcm4","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",2.72244495634393 -"inmcm4","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",-9.67621571680958 -"inmcm4","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",7.40789174856715 -"inmcm4","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",0.0402544955848071 -"inmcm4","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",-4.73779333626436 -"inmcm4","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",5.09881591053373 -"inmcm4","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",4.27261172383655 -"inmcm4","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",8.96895989055939 -"inmcm4","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",11.4707923622493 -"inmcm4","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",11.9333310709878 -"inmcm4","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",13.1021749327686 -"inmcm4","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",1.91686120932665 -"inmcm4","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",-3.14810044007102 -"inmcm4","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",14.4850006955104 -"inmcm4","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",15.9129231137188 -"inmcm4","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",8.5043300224806 -"inmcm4","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-0.623894815457163 -"inmcm4","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",3.06568624188394 -"inmcm4","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",9.97818555989173 -"inmcm4","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",14.7490899914343 -"inmcm4","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",3.95215764076985 -"inmcm4","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",-4.26155914243077 -"inmcm4","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",-4.61746159348452 -"inmcm4","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",-2.71493769431209 -"inmcm4","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",2.48521579785473 -"inmcm4","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",8.16564907288665 -"inmcm4","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",0.122247357336489 -"inmcm4","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",9.3828936218918 -"inmcm4","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",8.19986043969468 -"inmcm4","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",3.34625226482562 -"inmcm4","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",-2.73566912629545 -"inmcm4","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",3.13859853374532 -"inmcm4","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",9.31502102404066 -"inmcm4","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-2.91693564366882 -"inmcm4","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",-1.40649221728856 -"inmcm4","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",4.88713589343122 -"inmcm4","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",12.2781214230237 -"inmcm4","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",8.19939555888748 -"inmcm4","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",11.854080957741 -"inmcm4","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",4.64105308801182 -"inmcm4","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",3.65351274103885 -"inmcm4","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",-6.91097277168934 -"inmcm4","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",-3.49050204470668 -"inmcm4","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",6.05370039153107 -"inmcm4","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",5.39643935935619 -"inmcm4","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",-3.87377455435732 -"inmcm4","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",10.1147849137553 -"inmcm4","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",5.82812864207223 -"inmcm4","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",1.29025737737327 -"inmcm4","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",-4.72111875340128 -"inmcm4","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",10.3544559029204 -"inmcm4","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",10.6511029411894 -"inmcm4","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",0.284143996573006 -"inmcm4","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",1.84345508214413 -"inmcm4","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",9.48881084248024 -"inmcm4","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",1.2067078405228 -"inmcm4","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",6.44252090777004 -"inmcm4","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",4.18386935576877 -"inmcm4","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",4.10422996516791 -"inmcm4","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",17.2672656776611 -"inmcm4","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",6.50618062384245 -"inmcm4","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",-4.43544225874862 -"inmcm4","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",10.9093225137033 -"inmcm4","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",10.681791508801 -"inmcm4","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",1.25490214640607 -"inmcm4","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",7.33304915577622 -"inmcm4","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",10.5562559964319 -"inmcm4","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",-3.75129374320924 -"inmcm4","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",1.14169273148103 -"inmcm4","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",0.205041068772157 -"inmcm4","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",14.6222981748769 -"inmcm4","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",4.10930665661262 -"inmcm4","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",0.470983292729985 -"inmcm4","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",2.85437780771036 -"inmcm4","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-2.08076949559105 -"inmcm4","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",0.21721531587641 -"inmcm4","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",14.653932589944 -"inmcm4","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",-7.59611056645511 -"inmcm4","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-5.65025623716665 -"inmcm4","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",8.82711333533562 -"inmcm4","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",4.65440916186018 -"inmcm4","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-5.85176839412277 -"inmcm4","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",7.49585073617436 -"inmcm4","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",10.8634971696358 -"inmcm4","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",4.56122388448623 -"inmcm4","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-0.651000261968296 -"inmcm4","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",2.22786968651141 -"inmcm4","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",1.86006210447468 -"inmcm4","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",6.80977513687364 -"inmcm4","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",4.73706625624757 -"inmcm4","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",0.805950665052309 -"inmcm4","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",10.1713636425845 -"inmcm4","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",5.81064011565052 -"inmcm4","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",7.11998414775676 -"inmcm4","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",-1.80467855363771 -"inmcm4","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",12.6713800228166 -"inmcm4","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",2.39656190191288 -"inmcm4","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-0.997129599415735 -"inmcm4","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",4.94328352171946 -"inmcm4","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",19.6047314166158 -"inmcm4","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",6.18637480017127 -"inmcm4","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",1.33441912375631 -"inmcm4","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",5.40648174994217 -"inmcm4","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",12.6361584651887 -"inmcm4","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",5.64017041480975 -"inmcm4","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",0.952514071455845 -"inmcm4","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",7.5377060946634 -"inmcm4","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",1.85456396399368 -"inmcm4","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",3.7944456204893 -"inmcm4","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",-1.59398475945178 -"inmcm4","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",9.17037070671671 -"inmcm4","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",16.4202013722519 -"inmcm4","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",9.14566928915492 -"inmcm4","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",9.10782573943112 -"inmcm4","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",12.7727449503795 -"inmcm4","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",6.59630959141129 -"inmcm4","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",7.66491131733655 -"inmcm4","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",2.6616308255585 -"inmcm4","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",4.97569810007891 -"inmcm4","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",9.30040060308343 -"inmcm4","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",11.01884939703 -"inmcm4","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",7.7806344666471 -"inmcm4","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",5.90460877348505 -"inmcm4","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",10.9405901715938 -"inmcm4","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",9.39955372749791 -"inmcm4","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",18.9501502855648 -"inmcm4","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",10.6282916099544 -"inmcm4","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",8.90108085837181 -"inmcm4","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",14.3685118601645 -"inmcm4","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",3.91305296110541 -"inmcm4","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",5.00816737029802 -"inmcm4","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",8.37409905310039 -"inmcm4","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",1.93341836554985 -"inmcm4","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",17.6442051916787 -"inmcm4","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",2.70911301125718 -"inmcm4","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",8.66407851024183 -"inmcm4","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",16.9549108155779 -"inmcm4","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",6.82201967910341 -"inmcm4","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",9.28378714641645 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1850,"Simulated","PgC/yr","HL",0.260696483319115 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",-0.295203742998992 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",1.24274421676813 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",0.369623965538291 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",0.0323266006694348 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",0.222593852193972 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",-0.157401908126303 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",0.263456963378065 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",0.697772973597484 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",0.518094083340725 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.264861349651254 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",-0.310464395352557 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",0.546004708059745 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",-0.108934611514332 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",1.09919020062949 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",0.674704611413848 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",0.852577979381474 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",0.962103473668148 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",0.365281602389448 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",0.0452532858758483 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",-0.0643185205384864 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",-0.274616771601628 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",-0.10341543372022 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",0.567324129661836 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",0.888329697138042 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.375649917396415 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",-1.24340565692984 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.112713251110475 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",-0.152782888718208 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",-0.248064956590334 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",0.969330938086904 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.556011748863762 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",0.793415863018899 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",0.527635173782755 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",0.925063673338338 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",1.01160963872229 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",0.952165745455925 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",0.403127974960925 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.545518388283026 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",-0.138425676489701 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",0.269308445540842 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",0.686687485446839 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",0.737064160072222 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",1.28659051361224 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.865480871979846 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",0.809625673517254 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",-0.584898408038676 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",-0.134355556226918 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-1.04552188516517 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",-0.0348410634637927 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",0.0134242647429426 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",0.284848724693308 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",0.232119693865807 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",-0.123597619581499 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",0.855483732974657 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",0.985544426396252 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",-0.224052981269252 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",-0.533080880229564 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",0.571814453976021 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",0.0238746317131686 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",0.205819327963035 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",0.493271122404783 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",-0.798622511751149 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",-0.247770731710876 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",-0.535331700557416 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",0.762922000439948 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",0.0667384070086109 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",-0.051929927371235 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",0.497399889607481 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",0.270401604131443 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.624392439935116 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",-0.000931944008981042 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",-0.44068747827493 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.407895832550829 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",-0.439718799441023 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.182311835146807 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.59522174058811 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",0.949963019579524 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",1.44801473045842 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.907568043535045 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.780855006842896 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",-0.258942987910108 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",0.256225906020877 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",-0.152012613641959 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.358558563893839 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.669026354148852 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.0742740436977452 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",0.262650843790059 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.31141581676565 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",0.275063172983643 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.969287935989137 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",1.15907288503819 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",-0.212561236458124 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",-0.0772635665090122 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",-0.0603369506480786 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.152563408274474 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",-0.0634796118509325 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.4191097611777 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.566374688608509 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.603553397030447 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.292371262717135 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.0376999956939465 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",0.780628114195468 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",0.950051004134823 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",1.17788686862829 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.567975102207636 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.322734987368634 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",1.07155088519835 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.762161825198503 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",1.15673408015504 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",0.286821445928364 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.0222752677047171 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.415822646875373 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.741582492331663 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.339094739392097 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.991115178416831 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.411141642206616 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",1.43285366191021 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.800243860582084 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",1.73545829226171 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.384206203217876 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",0.513350555885083 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",0.511543336144721 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",0.287175364509327 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",1.20779680798493 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",1.45304767334837 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",-0.34848305922364 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",0.623533246705392 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.642920968810428 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",1.00813127824831 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",1.23599684813826 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",1.0179538626856 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.183048755306434 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",1.2609875738372 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",1.37986291239426 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",0.807900497252895 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.430212789657697 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.412391815035774 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",-0.370254568669359 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.469469461290806 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.0902159398106707 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",1.02674383095939 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",1.01134257306247 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.785062422619141 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",1.47291153052276 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.445723533158802 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",1.07512713202645 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.312052643884553 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",1.05321529994591 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.482381124053854 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",0.764264118543936 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",0.787039670390805 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.637894815725384 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",0.112157958232207 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",1.44986240611971 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",1.01441184779059 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1850,"Simulated","PgC/yr","LL",-0.11012550018227 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",-1.77674861379552 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",9.55932722459183 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",2.02077499569755 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",-3.07413294147286 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",4.76400870948958 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",-3.82503402892206 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",7.01804029875835 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",-0.803727933238812 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",0.937737825260698 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",8.54515890001736 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",6.86571354738553 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",4.05803476710826 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",8.14607487506828 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",1.93888271303531 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",-9.14184282273091 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",6.32622722281594 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",-0.435967368360766 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",-4.49330310674096 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",4.62035187634468 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",3.92189981714763 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",8.3013326951264 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",10.4952038013522 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",10.5868649872899 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",11.4934322028728 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",1.560810645871 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",-2.25560781752151 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",13.1335354816132 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",14.5641104338102 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",7.86523315691131 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-1.04423981663717 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",2.51824138172431 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",8.69559921505404 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",13.1701705259907 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",3.14410077238279 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",-4.37718055518531 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",-4.67203731546851 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",-2.67003918854468 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",1.99486334100599 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",7.50299893578199 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",-0.0209851658815006 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",8.20600071353534 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",7.10407664325245 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",2.41481482510271 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",-2.91604082704604 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",2.46004422420056 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",8.76885074435091 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",-2.58993259087526 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",-0.767043441162629 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",4.46695795613801 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",11.1728997581495 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",7.32579853368895 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",10.6793706285657 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",4.28649506646715 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",2.90635676700707 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",-6.776724923397 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",-3.06811437438498 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",5.77389245062175 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",4.63267933347027 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",-3.53888298010716 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",9.10862404429742 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",5.06432460177011 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",1.56711953590871 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",-4.17696642519677 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",9.69092836410299 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",9.32328406097244 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",0.22593488739801 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",1.70401542364653 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",8.39542517005951 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",0.965902465583496 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",6.1727789499109 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",3.80995977201539 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",3.95347210652316 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",15.521844749369 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",6.14002415792692 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-4.12812456017063 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",9.64077805728925 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",9.25934540255495 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",0.431298471570723 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",6.23106890472455 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",9.22811381180091 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",-3.28843237439283 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",0.913668461908797 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",0.261368472006326 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",13.1377802947884 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",3.41296236041352 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",0.465326442372149 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",2.46994834638415 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-2.04756424761645 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",0.0626583209519711 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",12.8665722609988 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",-7.48579962093659 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-5.04026093882316 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",8.07523209828214 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",4.26758032743415 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-5.40310497071468 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",6.85631583326968 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",9.68556733209785 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",3.87487015062571 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-0.889236923991168 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",1.88489987814865 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",1.67510641649117 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",5.8169729296206 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",3.84650069342734 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",0.155215000737208 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",8.98223546112757 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",5.13217400311915 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",5.95651354012059 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",-2.01759867703179 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",10.96933432032 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",2.04122486704063 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-0.91885026257688 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",4.29669879132957 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",17.6839553202884 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",5.14595705202062 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",1.01304971952848 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",4.21884849348032 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",11.1123866454049 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",4.28297672350433 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",0.678548631323924 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",6.61106717849209 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",1.43733192057733 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",3.31385352912347 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",-2.04467029784711 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",7.6360304792332 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",15.1221403082532 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",8.02102787557529 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",7.97704461151326 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",11.1346288301187 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",5.39891583591343 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",6.47901133226041 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",2.33355091266067 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",3.91103723152692 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",7.79037623449915 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",9.63603081307302 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",6.8730988859861 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",5.17369151062095 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",10.1435246091114 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",8.32787537138929 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",17.2101986418314 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",9.17291400674097 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",7.6078174517521 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",12.6971893677421 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",2.83937170612967 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",4.34108903779159 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",7.0966555114115 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",1.60712842461183 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",19.4559328277074 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",18.8542219432323 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",15.6900066954257 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",2.08008439502454 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",7.57547229351925 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",15.3827150982957 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",5.49937155358261 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",7.9547719362614 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1850,"Simulated","PgC/yr","global",-2.86391126913609 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",-1.96574116784791 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",-0.573522940631612 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",-3.68781997092485 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",0.650331272114794 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",2.01322749544491 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",2.70864038061611 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",4.2577099106133 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",-1.39832354451387 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",-1.39734343350173 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",2.25787146461306 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",0.42247951145728 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-4.20892088743078 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",0.564360420183213 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",-2.31729729028469 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",-2.85167395737558 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",1.65215272446716 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",1.45022146288223 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",-3.01356694948702 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",0.0202157950462465 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-2.7766491887784 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",0.201469840463395 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",-0.0373566647242784 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",-1.10305775315008 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",-3.59334374158316 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",-2.73338920249913 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",-1.69307788233574 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",3.35048560621147 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",-2.44107988720821 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",-0.283004025088178 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",2.90006070499113 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",-1.80064914122406 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",-3.28529235166087 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",0.0382372524823133 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",6.27382716508757 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",6.10454012069605 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",5.29914092100782 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",1.15192144826553 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",2.29635386013666 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",1.16576172252421 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",3.01223365425442 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",-0.0358401684153606 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",1.93106533034744 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",-1.72183163042618 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",1.55969776630104 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-0.370687282923973 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",-0.341568794976615 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",0.242401004045585 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",-1.19988940460168 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",2.1357697301917 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",-0.0395240838680993 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-0.0292741002767833 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",1.97815385180808 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",4.63909961649094 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",-1.77113878046366 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",0.0846123273395757 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",0.989091886565619 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",-2.14079104299392 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",-1.44790778852527 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",-0.714067015043721 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",0.92919832572979 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",0.161321216002317 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",0.24288033506307 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",0.760565823688075 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",-1.58394422632734 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",0.06923732514138 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",2.50940777571725 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-0.565013890084158 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",1.28465313490892 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",0.816461174527451 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",4.17820029494434 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",-0.171114524058297 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",0.346306284188333 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",-3.19195559923175 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",2.66010118439526 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",0.383417277690261 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",0.101586270352717 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",1.39338288522808 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",4.02288291576632 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",-0.673475093846814 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",1.68883264715025 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",2.10107584873916 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",-1.06079983895446 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",3.46943184754409 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",0.213287958776185 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",2.46361289569265 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",-1.81763179788418 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",-2.5880955202032 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",2.43199113783569 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",2.76395740000271 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",3.27717083050858 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",1.64710234830086 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-0.120277793835822 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",3.04664272546349 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",-4.14190653428411 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-1.8979382430553 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-2.95087917677179 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",0.311516633052704 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-2.93334898134676 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-3.17688635220323 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-4.58813359451516 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",-0.214213214029197 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",0.604059125536766 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",-2.81954231711428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-0.690512043230416 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-1.61909955571262 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-1.46625368855237 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-2.43935620718536 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",1.15089801031949 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",-1.2510883008038 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",-4.17648558327507 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-1.31416641809245 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",4.22768212008971 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",3.7550465617007 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",1.87898643623415 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",4.18783632837516 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",3.89868446339216 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",0.89932008819957 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",2.70656293993155 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",1.77449919171812 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",4.64033362977043 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",1.52666146180482 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",3.43105917426325 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",3.12636253574656 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",5.57061306438364 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",2.1768646030922 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",-0.164285027625387 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",4.79081327257964 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",6.12819879831402 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",1.65218967033035 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",5.18518223714959 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",5.15946485989088 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",1.35165578763853 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",4.43375949577435 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",4.53167163677016 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",10.0893942948494 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",7.28107837239006 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",2.77129686463588 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",3.09478706746347 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",3.29340111067174 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",4.71017715662929 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",3.9047407965881 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",7.52589538922498 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",6.42731953123119 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",6.26307586527716 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",7.85081103745336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",5.42224775449973 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",6.13864233211313 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",4.50423096825132 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",5.27185562351741 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",5.66909497064696 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",6.79947553286741 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",2.03428191064422 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",8.43256161805186 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",8.44449261160703 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",5.93151516305174 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1850,"Simulated","PgC/yr","HL",0.0606219692184303 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",-0.550054407082422 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",-0.317656957321184 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",-0.19324928422573 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",-0.54219549267269 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",-0.057711716045106 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",-0.333521637758831 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",-0.0174621896130316 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",-0.224584819472031 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",0.335992242809035 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.177812337090884 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",-0.268384116853616 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",0.138429113336728 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",0.0694848850875808 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",-0.235659518617565 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",0.158712880607383 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",-0.484564833364012 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",0.0986926141883035 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",-0.173064721440052 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",-0.0664194622742857 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",0.0721113838023172 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",0.0114211419831744 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",0.166814476874261 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.421370380578745 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",-0.238141941303581 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.00531714406202389 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",-0.166394858477628 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.176114407166445 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",0.0915265203402349 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",0.085411382159272 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",0.0151749425684849 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.189306868438963 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",-0.169265037620299 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",0.0173188278904222 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",0.683322749141269 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",-0.279871505140572 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",0.295534663788572 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",-0.165463048584088 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.399220017731466 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",-0.506176684720806 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",0.0355246101660842 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",0.0987211961512358 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",-0.0130104589907044 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",-0.617401183980968 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.275552897853249 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",-0.234971802186106 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",0.0537477107205437 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",0.106955245665954 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-0.314834058440213 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",0.391898791659461 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",-0.232117624472189 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",0.243361468389518 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",0.178854354213139 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",0.18639579405657 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.0881518855872573 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",-0.0945101944634263 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",0.28206157739853 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",-0.203301140751853 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",0.286638156095254 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",0.353296686420866 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",0.0270519969876212 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",0.134873462724664 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",-0.234494174358416 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",-0.0561963812279595 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",0.357453541761693 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",0.190936876112829 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",-0.00143843757753428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",0.570274963121387 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",0.539747627630451 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",-0.0824855867539794 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",0.170776256673658 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",0.147162659622383 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",0.218000957993652 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.296031048225735 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",0.223464058604568 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",-0.0708528201659343 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.103392672115673 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",0.348385759984076 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.258260713094883 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.543275508936415 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.473115551121481 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",-0.123685621378364 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",-0.049087405143115 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.0592496899927015 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.207836284834854 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.185241606578599 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.333916848267024 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",0.370853126538729 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.0628859502924698 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",0.141955044927151 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.363526208370263 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",0.777550920973988 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",-0.365236503565203 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.208844714992168 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",-0.0557231024068695 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.144376032428306 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",0.536144051645943 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.409349930422424 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.24883262510998 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.19715325868153 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.144598463464215 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.6334616314278 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",0.344537914439161 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",-0.201717942966683 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.106772548514931 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.262670949820937 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.479459046163547 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",0.193972394282079 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.343383989359354 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",0.254443616727363 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",0.182726335043958 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.218752140766127 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.35375471796496 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.421068818517376 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.155478395143199 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.660443658487327 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.276067033040257 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",0.592061459892962 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.244158804083436 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.337849035384637 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.590253006890167 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",0.560336822184609 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",0.826794061856815 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",0.368540956527866 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",0.730788103591866 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.466269884304977 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.118348364983023 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",0.78717334346847 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.767473572952192 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.396174554185894 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.725326314971768 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.219118220218933 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.676000951138453 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",1.00954144269126 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.817851858009228 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",1.57540737806184 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.600495315890814 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.525555802737467 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",1.25320488277484 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.512271941381651 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.823744553006221 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.59263626250724 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",1.0685064598318 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.962934251716285 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.844925532000699 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.857537218671102 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.806438237620822 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.908184316069075 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",1.39408908079632 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.669771555564527 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",1.04546892150453 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",1.46879097103193 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.936723153376964 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",1.18018088787795 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",0.879565252952276 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",1.73039863587353 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1850,"Simulated","PgC/yr","LL",-2.89273804256183 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",-1.42591638100268 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",-0.267365440907114 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",-3.46832688433031 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",1.15667936199235 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",2.04777048335638 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",2.99712825673542 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",4.23183997214921 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",-1.17198496495171 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",-1.70122253062479 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",2.06721415884658 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",0.672118173307881 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-4.29794997008173 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",0.493021238813733 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",-2.07133533247923 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",-2.97339963048161 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",2.09401897541651 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",1.34243792230062 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",-2.81987704521028 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",0.0828359652010746 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-2.81721185934533 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",0.188662017257382 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",-0.194762248654545 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",-0.693533506902184 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-3.33233023910531 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",-2.71120662111262 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",-1.51884252084407 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",3.15055736406391 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",-2.50334648629518 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",-0.360971035239322 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",2.85683702542937 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",-1.96177477054208 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",-3.09249125395164 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",0.0214760031715768 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",5.56506567500827 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",6.30847791040237 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",4.96686302857567 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",1.29695274711024 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",1.89590095640742 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",1.63291134113467 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",2.94864617079626 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",-0.128856545789394 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",1.92414659532609 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",-1.1207365508475 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",1.28354572089638 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-0.144754709796132 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",-0.389004541341532 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",0.138826663057707 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",-0.890166306478054 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",1.74383956153624 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",0.180412210193249 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-0.259160123110445 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",1.7892957407862 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",4.41661814439675 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",-1.67013017338815 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",0.173160064526566 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",0.712464451815475 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",-1.9271918823918 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",-1.70460362715878 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",-1.0411153621158 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",0.894361356876828 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",0.0321485109368793 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",0.46225329986146 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",0.806146162960493 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",-1.90626414853511 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-0.112045089770583 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",2.48578683361204 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-1.09876954594697 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",0.761356839859212 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",0.886349886741851 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",3.97508077699533 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",-0.308601561829659 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",0.13666813247158 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",-3.44017189421458 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",2.42226127363375 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",0.446614872406855 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",0.00278344347376961 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",1.04999945400501 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",3.73856483503945 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",-1.18061412697335 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",1.22453523993497 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",2.19714384634461 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-1.00381105647588 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",3.37885253659791 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",0.01458822175213 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",2.26388103979123 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",-1.48370962946073 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",-2.91309292497262 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",2.34830103800769 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",2.6021768808839 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",2.90071373691685 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",0.895277502171964 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",0.226369924176341 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",2.81878159741258 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",-4.04796855131102 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-2.0155980267901 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-3.42860128268243 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-0.0787582944778828 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-3.13949913632504 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-3.33173261238309 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-4.67922244354523 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",-0.811224359338354 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",0.272172827799716 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",-2.60068388954658 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-0.784625868056436 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-1.85142198271016 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-1.90514236932439 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-2.59853558688283 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",0.814659503638068 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",-1.47929222051796 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",-4.30773532629749 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-1.50798488109941 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",3.85100474236691 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",3.31940686412428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",1.71322545843777 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",3.52148128713151 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",3.59876032992744 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",0.330380416855295 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",2.44868708641947 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",1.43728748220367 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",4.03586207127114 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",0.981482228944855 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",2.61489984565221 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",2.74666379909033 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",4.82395832167314 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",1.71418348114895 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",-0.274586924755029 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",3.99859110514642 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",5.34129497537693 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",1.26102987602435 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",4.44753096428368 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",4.90085364179364 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",0.698821083775768 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",3.43477027820143 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",3.7130127853212 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",8.49889121317268 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",6.64063025993697 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",2.24662372537119 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",1.87866468165773 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",2.77609501882386 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",3.88416786978713 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",3.30533743507814 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",6.44035261512003 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",5.45256621088393 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",5.40157327974525 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",6.96157366254192 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",4.60551865222161 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",5.21854739642054 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",3.14082551787976 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",4.58588586990928 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",4.62382737950234 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",5.3425653667386 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",4.26150775099706 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",7.23236890333009 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",7.52851093304257 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",4.23581086424082 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1850,"Simulated","PgC/yr","global",5.89303786794054 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",4.19965470534426 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",0.957031791850874 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",-11.359184770681 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",-15.7196135641043 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",-6.25454354281559 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",-4.53677157364457 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",3.61704465200335 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",1.32063393265643 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",0.130113511074997 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",-6.92010995690029 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",1.502573400369 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",7.39379706534092 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",4.95829230505724 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",2.03091176490365 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",6.57103993570738 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",13.0871326815032 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",4.59416504255909 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",-1.95886474701113 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",-10.1455135430506 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-16.3594305193878 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",-6.63644613440001 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",2.44622753616298 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",0.464953844150144 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",-2.17748746308285 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",1.69788489496259 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",-8.1632314243876 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",-0.83075490188718 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",5.51346093016166 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",-9.29124750352478 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-4.98030399107557 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",-1.44338760185498 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",9.26682653023073 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",3.33042631633519 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",14.8339560232117 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",8.20983617564824 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",6.07519156600367 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",15.1528568783714 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",9.68089584111712 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",-1.01106769860465 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",7.75459668072729 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",1.59392125401068 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",6.43067402268943 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",-2.64756546561779 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",-6.64826418707155 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",6.44976979560303 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",-6.09507381520421 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-0.310005631437439 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",7.56927456081292 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",1.91606853531584 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",-13.3564260221553 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-19.7786884477472 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",-11.7920893040546 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",-10.7543780726857 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",-0.954130997104224 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",-8.20314067302554 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",1.12058202863931 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",0.2660919479136 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",-6.66893130422306 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",-9.44934371222197 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",-7.87398024274457 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",3.60224474445252 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",4.66596116004105 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",-5.54593323329698 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",-4.87077631185241 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",-7.63560555268549 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",-10.5083412700889 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-5.65526147886048 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",-13.4501952255924 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",11.9586823516554 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",5.43559334441145 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",8.39681488160666 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",6.08360155476517 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",6.81967580922379 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",-0.356915805697853 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",9.43085106529528 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",16.093669084515 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",12.6934345539507 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",2.84462843807738 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",5.9504940619577 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",3.28865139797774 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",-2.25829669531322 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",-8.1214355976626 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",-5.49173391960915 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",-3.98121694790853 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",2.79475876480759 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",-0.302050480086872 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-19.5727410274165 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",-14.6622822422972 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",-19.7739116899309 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",-10.016927082641 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-7.8178058924916 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",-7.14930587360656 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",-15.9837248462769 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-1.2293341682601 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-3.95074058970589 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-4.38720115389836 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-4.70345468805942 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-1.37641777893708 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-9.75269035026312 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",-1.30404105217171 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",2.10198573953729 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",-1.57830173845204 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-4.20608000752483 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-11.0077907040185 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-3.87234868643106 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-5.76278838814306 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",3.49764339829045 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",3.32123145962272 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",2.72088306892274 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",4.03579422054816 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",7.79348463602739 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",-5.09396991873694 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",4.22154737450118 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",1.24460435324713 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",-10.2862477650045 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",-2.96146922093384 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",-8.61843392758136 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",4.12512441672163 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",-0.329944172396758 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",-2.36702181488981 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",3.67813407696566 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",-3.14912664466953 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",-9.14908025422592 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",-11.1436999180771 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",-6.8326566887981 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",-8.21489921726637 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",0.240795718187348 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",0.606729785308697 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",-3.05958575648464 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",-5.03059183169629 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",-9.43734874259427 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",3.29265454619486 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",-2.89237349953727 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",-1.02038269801371 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",4.28465365276372 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",5.90694514903075 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",0.518341269842796 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",10.4013338533231 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",7.6135134498689 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",1.55036815941022 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",0.00877113738578757 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",6.43443913718372 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",8.36681459084969 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",10.7932451196183 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",2.30393483665884 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",-1.92179260301562 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",-11.7987124315589 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",11.0474233188704 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",-0.629863607329875 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",2.15109145322366 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",-11.4531228493944 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",10.1149149513146 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",4.66847016414661 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",10.6894286414072 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1850,"Simulated","PgC/yr","HL",0.387085754881657 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",-0.274903661453729 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",0.220142447391873 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",-1.74660364984283 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",-0.563879602586834 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",-1.1814169942733 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",-0.210051053842579 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",-0.212155811955948 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",-0.219544814430837 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",-0.54503331536067 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",-0.938049562713018 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",-0.676431448941429 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",-0.476048420158105 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",-0.500812421016022 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",-0.371644750431665 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",-0.125767249322998 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",-0.0901501805549041 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",0.0788602430335497 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",-0.969428557327357 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",-0.495279461556647 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",0.147862306328427 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",-0.266439347462278 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",-1.10805534673442 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.737687924594873 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",-0.468764204162509 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.0474802205560789 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",-0.772129395740827 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",-0.430364904356732 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",-0.0406274848352379 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",0.346437379422763 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",-0.438414739485231 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",-0.746917302117534 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",-0.261650171989273 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",-0.0986152168285554 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",-0.0313384634708372 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",0.236219115738784 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",-0.292226211036941 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",-0.0448389178878156 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.0537219333150833 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",-0.514019351058608 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",-0.0711055157442674 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",-0.0879789169188878 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",-0.567725755306373 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",0.198554321371104 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.467429371095165 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",-0.303011551100746 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",-0.0175804598890856 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",-0.968902124723274 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-0.389067863921303 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",0.451319700007692 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",-0.570364585547103 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",-0.508636126255486 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",0.0471918354973462 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",0.578700833348325 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.0572929242961822 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",0.523753492719327 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",0.249798937857602 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",0.534136854958272 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",0.118856203204481 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",0.316182367033289 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",-0.156765490097149 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",-0.0238353987463911 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",0.373507682908171 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",0.803698961735852 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",0.020751012062015 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",0.141962038589833 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",-0.734369871284496 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",0.178299639413447 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",-0.221942346856313 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",-0.510106248335067 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.363684367175732 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",-0.550577109053059 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",-0.417998877476446 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",-0.117226067837326 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",-0.16660997425409 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",-0.0320878868143909 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",-0.34938040159039 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",-0.187063283816982 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",-0.495922014914559 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",-0.714888253522428 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.290379391009531 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",0.128294542523865 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",-0.560422926654063 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",-0.289713224579668 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.456764596598733 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",-0.13133723963521 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.295908461257056 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",-0.53821997179986 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",-0.926015507844278 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",-0.165580083175929 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",-0.266917331598735 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",-0.238038211241715 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",0.277464874137952 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",-0.326583230725564 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",0.178761205519876 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.045473165000418 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",-0.484113812134008 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.14039849208558 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.324655292850981 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",1.08705221373617 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.341223890936842 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.769136647221679 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",-0.0311253346614165 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",-0.145904227062001 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.435837303231574 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.28710745263967 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.300824147235549 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",-0.0121042718106969 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",-0.152112742619851 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",-0.24065890108717 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",0.598143558991886 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.453309031869347 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.476214822865148 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",-0.187892630464068 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.498345271698419 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.257455434767569 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.281131400830155 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",0.41103357685261 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.276627304585809 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.078818378445985 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.735277724450798 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",1.33153584909761 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",0.499910957269189 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",-0.0550189576872217 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",1.17494062313927 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.194876849325549 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.811699070512831 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",0.83554938438667 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.552898968527953 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.274682254179083 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",1.00878765905773 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.97483539520243 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.211504091170102 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.828092654065409 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",-0.182874519313477 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",1.06999385275796 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",1.0137527935869 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",1.10442143386159 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.948825735348889 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.723856498249397 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.560568494297619 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.749764482993125 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.532130577244982 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.895968846089665 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.701083218257368 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.32273346659502 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.53723933481178 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.902337986096951 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",0.523318734394583 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",1.12222791251937 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",-0.350528830289746 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",0.711459079873458 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.534064904539034 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",0.874484839826157 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",0.482103089607174 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",1.34692657159439 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1850,"Simulated","PgC/yr","LL",5.36182501491259 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",4.24600633159821 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",0.74941911563414 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",-9.56336087124129 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",-14.664186786751 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",-5.09622492506955 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",-4.1956681964556 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",3.63797706255787 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",1.43789599733733 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",0.54547961563259 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",-5.92328688533649 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",1.96515114039672 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",7.46927688624531 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",5.14899527840898 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",2.23749039061555 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",6.40874326764455 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",12.6401967223388 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",4.3520127255686 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",-1.1336294925192 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",-9.36300224040447 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-15.8278728014927 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",-6.16897551712944 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",3.20456722248471 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",1.01574115383255 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-1.7298925733986 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",1.5942458485908 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",-7.24535713952803 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",-0.465936234636358 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",5.32721513540715 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",-9.19184619435105 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-4.445512089424 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",-0.810166426170216 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",9.10297576217331 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",3.27507227842018 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",14.2727034388006 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",7.70358545116874 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",6.06088816623353 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",14.5894373237872 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",9.25738835429408 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",-0.574592123188447 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",7.50341708685388 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",1.59889340776012 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",6.61489371785271 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",-2.69626555219001 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",-6.74651690446181 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",6.42900465643084 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",-5.8409666775477 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",0.449750674078928 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",7.57072220582908 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",1.49225101800303 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",-12.3892671127137 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-18.6056974953837 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",-11.3631198437184 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",-10.7764296969104 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",-0.872273543597518 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",-8.2834845467313 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",0.883634450761334 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",-0.156503661113181 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",-6.49743806918662 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",-9.32036125092306 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",-7.44228432029394 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",3.47846985146792 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",4.19365110521578 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",-5.94712741359185 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",-4.69455899185634 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-7.4437891555131 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",-9.52704923731914 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-5.56963597294878 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",-12.5258239235426 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",11.7673177852624 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",5.64585301614847 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",8.38792357033196 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",5.93395112431219 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",6.67907740143963 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-0.31807373385103 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",9.3282114081229 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",15.6028527022324 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",12.5750949695201 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",3.28391102321315 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",5.49162403787407 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",3.05988350315127 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-1.73679805066422 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",-7.57740282265965 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",-5.6274011551235 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",-3.72276807406192 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",2.91275958241028 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",0.125114328556997 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-18.0858574245403 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",-13.9558764163557 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",-18.7875949514497 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",-9.4379566057766 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-7.72334123660995 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",-6.61519175771928 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",-15.4908349505961 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-1.21590126882967 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-3.42132203758824 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-4.32237904740678 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-4.76830656187588 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-2.16077306621126 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-9.63105716754137 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",-1.84597644035738 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",2.04304332731075 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",-1.40344578204612 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-4.37634022967738 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-10.7948722441896 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-3.95161612285855 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-5.52601970122542 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",3.47696501624877 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",3.37582971134763 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",2.15202612834148 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",3.52678557323023 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",7.11850658238941 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",-4.74797332419318 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",3.67046207747888 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",0.99685500614486 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",-10.0971941799271 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",-3.16171334738432 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",-8.49172659814592 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",3.90151615350217 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",-0.88420019429377 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-3.30090461774812 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",3.14728768562829 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",-2.98239712944842 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",-9.69449175985651 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",-10.854260679209 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",-7.1892418209004 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",-8.53533355612344 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",-0.195276785004776 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",0.37086364605671 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",-3.71713192729946 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",-5.58415743323335 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",-9.2280793267012 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",2.52382287867688 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",-2.63713524098359 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",-1.80562796288535 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",3.33343220979293 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",4.82174883545021 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",-0.2341478362811 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",9.43237634148912 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",6.88055767338144 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",0.910728270435228 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",-0.402121375384312 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",5.48924903268734 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",7.49571994119269 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",10.118292475303 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",1.79852157481682 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",-2.54211507548761 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",-11.7368205898086 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",9.74561890232446 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",-0.334567978555979 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",1.51729701107587 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",-11.4131612695296 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",9.04104866614756 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",4.11227823843145 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",9.22839333298919 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",0.435949220259461 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",-1.4198837108321 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",-1.82780413354457 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",-0.311714329755998 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",-1.71734091323211 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",-1.4722001651895 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",-0.809059726238779 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",-1.28345319695751 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",-1.08347765919 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",-0.13000711774647 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",-1.28105277373918 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-0.565442425780491 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",-1.37098347226983 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",-0.202818631005067 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",-1.19118995556759 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",0.242956029946289 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",1.16241286553172 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",1.14903641345016 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",0.261729453134277 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-1.25384770917491 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",-0.429749588035322 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",-1.54254898867293 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",-0.452962258022173 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",-0.919427560169911 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",-1.65022461035417 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",0.348499211058917 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",-0.633705456335409 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",0.904702830435339 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",0.273052765635399 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-0.910625633043533 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",0.847014659038724 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",1.08736324675697 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",1.30289271627544 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",2.39276174557581 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",4.4609266917374 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",4.23333446419515 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",2.80953428184125 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",1.70499376545761 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",1.23240459328742 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",1.46565212334995 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",-0.212743318572639 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",-0.284778052111097 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",2.98100135563833 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",1.34292572101518 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-2.27257007949209 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",1.05129207434769 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",1.650710389227 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",0.175592012013983 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",1.26771428318544 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",-0.675590854949189 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-2.1188371516322 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",2.03624670055328 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",2.23413564112264 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",0.758232940140094 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",1.62527294851492 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",0.903809286846395 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",1.24222166957489 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",0.264605682281696 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",-1.35549758173186 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",1.95537577800105 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",2.3656482068985 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",3.1309252624026 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",-0.471198268225343 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",1.4602059309405 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",1.86403969867174 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",0.634163729185977 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",0.420894257403718 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",-0.0520740796535705 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",1.8452455253266 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",0.662072207992278 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",0.876277849655302 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",0.399282888303986 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",0.779845917779141 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",1.70340613715466 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",0.328612356957757 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",1.4514889346899 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",1.85594392030422 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",-0.581784059233526 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",1.30512697738263 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",1.82051584191269 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",1.20961802536486 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",1.81473957723601 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",2.50682165979443 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",0.990732338567662 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",0.839750978058354 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",1.90891151137595 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",1.36456829577761 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",2.13958248316526 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",0.516996277866572 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",0.715389656364808 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",0.938496311175955 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",1.60518647468488 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",1.34532743106496 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",-0.25436057368277 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-0.564406204754392 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-0.572111268922532 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-0.465932393072999 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-0.0115924227368983 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",1.67681859083304 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",2.55750995065818 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",3.24312409663489 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",0.871110577962909 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",0.574021570211875 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",0.238382309260774 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-1.33427274462928 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-2.22417074007221 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-1.28688517643793 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",-1.1028883856542 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",0.954575752720803 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",-0.067686353125445 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",1.03256787246271 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",-1.15020308701463 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",-0.116107520423817 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",1.6066796817301 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",3.60869843507404 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",2.2493443803368 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",1.72892722191108 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",0.555405623022731 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",1.37317269427622 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",1.73156200930746 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",0.0214843266647106 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",1.82162090842143 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",0.330797557615868 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",0.222943388070772 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",3.57628797643563 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",2.43273877314742 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",3.33778824380493 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",-0.0476353154165018 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",0.139796897121774 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",0.862421731150307 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",-0.938682740882451 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",1.78114201658384 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",3.75429376254425 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",2.50217941533414 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",2.33453905656514 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",3.9768753901233 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",2.80864475960059 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",2.24858354124126 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",2.81432612045775 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",3.13804787448513 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",4.87751102890311 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",4.01974617992085 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",4.40177748408185 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",3.78165501627592 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",1.55163852262865 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",2.8823142516439 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",3.80346520083487 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",4.81557904823428 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",4.94451955964701 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",5.50366551913666 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",3.39951111436293 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",1.56568460962664 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",4.41377718736453 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",6.78006076729207 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",5.33841544978831 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",0.113455714350969 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",-0.206630043179334 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",0.0296866951644062 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",0.144757158085126 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",0.232140171686575 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",0.213301846667868 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",-0.01624781837169 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",-0.139879344690501 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",-0.217853811453732 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.105387366829581 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",0.0959632464518407 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",0.0850076696932533 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",0.0925043458256757 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",-0.0104606269247158 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",0.0934481198190597 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",0.18171200081324 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",0.0612601508894247 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",0.0801419884942118 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",0.137454742901683 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",-0.124801183712305 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",0.226634108875509 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",-0.383939952651659 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.121434557766004 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",0.114503807728004 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",-0.149384278322952 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",0.113571670143364 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.00965738516896108 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",-0.113027092046938 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",-0.20237802943089 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",-0.280283115200632 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.168235260488012 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",0.219395066915626 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",-0.114218147017112 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",-0.501819397980856 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",-0.169963456752032 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",0.166083633099802 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",0.0147925585951669 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.20017702750633 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",0.1466114883537 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",0.362742732182228 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",0.136029064101072 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",-0.232143525538719 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",-0.163075052742845 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.382329228704482 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",0.259776846600775 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",0.250394080678169 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",0.274880875986379 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",0.124436080451492 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",0.134006195471267 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",0.413555633642403 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",-0.0602188818724049 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",-0.188817384474193 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",-0.208595458863711 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.518059624981128 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",-0.389919433565831 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",-0.0238416016474569 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",-0.454261191297161 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",0.0382647407199208 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",-0.0870563192386706 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",0.518439339371717 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",0.364212011060714 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",0.322399098919729 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",0.0904794065567215 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",0.570168571565556 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",-0.285120536549867 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",0.193072168796147 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",-0.320915821354032 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",0.309075848366979 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",-0.116950544940975 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.0271379629331402 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",0.635300671845656 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",0.0817162575267777 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.105178290603304 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",0.724542886092271 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.519512280418551 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.191698518449669 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",0.281312543661387 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.579662014608922 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.168663882792044 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.24434349809854 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",0.204366047162326 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",0.701242654508755 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.479570526134724 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.172409260719189 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.291150033606886 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",0.573461762731865 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",0.29696931704429 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.41612060143444 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",0.335009291342685 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.669175453420244 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",0.830363628946749 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",0.285904754672982 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.239511967863506 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",0.439182563696058 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.585387186038766 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",0.202926719641684 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.623098482827027 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.231662699796965 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.829867258829405 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.495240889909795 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.511049199081754 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",0.115131386374017 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",0.00017504958811071 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.411570736451657 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.358779645505026 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.181579713219099 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",-0.0409186293396774 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.226377378784852 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",-0.194308107057191 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",-0.112885967781495 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.420219592033312 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",-0.243635427001065 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.115231360331847 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.523875496238525 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.53686452813412 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.45107036553108 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",0.395585693853664 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.641237865058878 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.571026282796526 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.128184899722576 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",0.301905895761267 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",0.763087396408884 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",0.491850291211645 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",0.398622825699744 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.925179945457061 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.637309191821069 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",0.875640049615107 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.573763609424845 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.653549127182023 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.400286628002595 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.173150928665969 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.258871802308673 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.575185059455361 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.355834671683082 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",0.813741646080671 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.657829517436001 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.529112463451898 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.408075439238745 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.632071058050429 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",1.27969699070644 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.851467816474093 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.852349442129048 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.730036204265189 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.286666487404763 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.896829687462298 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.48207658278475 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.770507867187803 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",1.1142015941088 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.902457451360302 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",1.39583709914971 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",1.14979004830943 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.625518797517887 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",1.05855302113529 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",1.08597994905279 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",0.785125704668222 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",0.322493533260163 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",-1.21325364624714 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",-1.85749139666909 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",-0.45647151502942 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",-1.94948081216947 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",-1.68550162324233 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",-0.792811988379534 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",-1.14357396528835 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",-0.865623915981526 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",-0.235394557589175 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",-1.37701648201176 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-0.650450094468471 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",-1.46348808652411 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",-0.192358133992567 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",-1.28463805425223 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",0.0612440014780956 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",1.10115266568041 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",1.06889441011041 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",0.124274680689314 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-1.12904645127988 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",-0.656383782475594 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",-1.15860914424572 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",-0.331527730620558 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-1.03393137363629 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",-1.50084063804305 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",0.234927453160188 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",-0.643362802063851 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",1.01772994804144 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",0.475430792598277 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-0.630342480102106 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",0.678779378896994 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",0.867968129666439 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",1.41711081932476 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",2.89458175001852 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",4.63089069205059 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",4.06725090877374 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",2.79474097673519 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",1.50481635913443 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",1.08579300256374 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",1.1029094102766 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",-0.348772404393136 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",-0.0526345833807787 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",3.1440763558771 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",0.960596505045428 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-2.5323460185046 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",0.800897886051987 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",1.37582995511434 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",0.0511559944019874 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",1.13370814557976 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",-1.08914635671646 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-2.05861758253263 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",2.22506320697143 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",2.44273229059907 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",1.27629246390034 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",2.01519148822687 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",0.927650959366923 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",1.69648325231849 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",0.226340870108822 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",-1.26844123780738 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",1.43693543188173 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",2.00143646775672 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",2.80852628590527 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",-0.561677733971114 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",0.890037266578547 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",2.14916104183615 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",0.441091571652796 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",0.741810163460212 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",-0.361149947466275 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",1.96219548164188 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",0.689210148704358 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",0.24097716005706 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",0.317566615300855 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",0.674667622035917 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",0.978864015045786 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-0.190899930625732 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",1.25979039003615 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",1.57463049558292 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",-1.16144627359957 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",1.13646323206378 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",1.57617258547958 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",1.00525192549852 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",1.11349649611362 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",2.0272503415007 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",0.818323106814173 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",0.548600916999492 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",1.33544985050197 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",1.06759897558322 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",1.72346126565995 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",0.181987151445073 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",0.0462142218107114 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",0.108132541932344 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",1.31928226923705 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",1.10581541350029 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",-0.693543144764955 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-1.14979342059486 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-0.775038052498105 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-1.08903073289672 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-0.243255133672117 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",0.846951590922047 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",2.06226802932471 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",2.73207497347118 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",0.755979217289464 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",0.573846416704707 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-0.173188547494167 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-1.69305272782594 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-2.40574978797933 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-1.24596649569615 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",-1.32926568811539 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",1.14888383776683 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",0.0451996162079132 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",0.612348358541155 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",-0.906567653792675 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",-0.231338900667976 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",1.08280416633023 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",3.07183385583387 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",1.7982730375976 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",1.33334149360654 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",-0.0858324470987367 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",0.802146570629277 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",1.60337710562054 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-0.280421738911462 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",1.0585327775529 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",-0.161052918950502 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",-0.175679463838761 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",2.65110669404688 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",1.79542985050377 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",2.46214866415694 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",-0.621399017151514 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",-0.513752319135116 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",0.46213497515713 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",-1.11183364648723 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",1.52227055169655 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",3.17910852960108 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",2.14634419274226 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",1.52079694059975 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",3.3190462739974 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",2.27953282465323 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",1.84050865430595 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",2.18225473876433 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",1.85835001546723 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",4.02604247406316 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",3.1673960210265 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",3.67174238193202 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",3.49498806431559 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",0.654808638389013 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",2.40023856149129 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",3.03295765101824 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",3.70137658256771 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",4.0420612456284 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",4.10782854838568 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",2.24972084251792 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",0.940165855109764 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",3.35522415071889 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",5.69408068644339 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",4.55328972591899 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1850,"Simulated","PgC/yr","global",-0.0638769565172548 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",-0.933494619225661 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",0.998276264738918 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",0.00903555219077912 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",-2.451155572884 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",-1.32515003963736 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",1.67660158232224 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",0.259333937111945 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",-1.08269454693721 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",-1.59314269932595 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",-0.81397960314114 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",0.611453552379979 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-0.744992945028887 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",-0.926704183425018 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",1.81018070864031 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",0.0986701862997894 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",-1.63903637413105 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",1.03543384087479 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",1.03825412706016 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",-1.23781961730595 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-1.39922405518814 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",-0.125017485803532 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",0.0327764967316129 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",-0.377845476968748 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",0.4303741919291 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",-1.84161213219493 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",0.396925198825257 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",-1.25273019947125 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",-0.380230140578829 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",-0.665449356663317 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-0.751693296397418 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",-1.37948173016043 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",-0.975396105902636 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",-0.853717615661883 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",0.407822197809801 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",-0.951607059492355 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",0.369907751579121 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",-0.642743897279311 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",-0.583235890940993 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",-1.88584037106134 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",1.02975964770706 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",-0.300976431046594 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",-1.90120620133893 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",1.25649218970232 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",-1.57424185941321 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-2.33667434617391 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",0.682443141321234 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-0.824370520655278 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",0.779865915620348 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",-1.00967918432881 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",-0.308899839446118 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",0.0371325133599387 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",0.367608668179547 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",-0.728324751247036 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",0.592972570266908 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",-2.47629395539529 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",-0.146293884364109 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",-1.46832315797548 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",0.65296992810967 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",0.264288259148054 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",-2.51251594035764 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",0.148565282887313 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",-0.570650452314556 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",0.609788277306345 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",-3.54479023064112 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",-1.27911448185167 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",2.24998255812017 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-0.951862352338361 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",-2.47645964640435 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",1.56572453722197 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",-1.77433675656271 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",-1.63659122525941 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",0.342250704864981 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",1.33971138376316 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",-1.42171508145071 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",-1.39257984572462 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",1.03010068162863 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",-0.100050858913969 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",-0.244974478633108 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",-0.381616153912913 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",-0.297996566724337 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",-1.52061652735693 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",-1.27207953116387 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",1.60457682673697 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",-3.12678881373265 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",-0.593937921476035 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",-0.623223566030735 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",0.701817085367626 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-2.61779407713702 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",-1.85770989848344 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",0.72251237499505 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",-1.61354730579475 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-1.98647433363518 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",2.09239593064394 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",-1.63940153781122 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-2.10499970788691 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-0.242149044765902 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-0.243935451227717 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-0.522315489399186 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",0.272997493352708 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-1.28150815390497 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",-0.51550156730017 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",0.0936584354382085 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",-2.0629704943544 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-2.60426532581432 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-0.109675688765513 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",0.654194111196065 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-2.38304530760416 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",-3.67766959395974 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",-1.31818683476512 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",-1.29168737300364 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-1.84345403710153 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",1.25655010112296 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",-0.589228918652378 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",-2.99138386901371 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",0.109689764458031 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",-0.559743157966341 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",-2.24651913343553 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",-0.42112975967866 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",0.807782598537042 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",-1.00813745361922 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",-2.04502599720758 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",-1.23977091045154 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",0.505261862939936 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",0.396748890722407 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",-1.38444441717952 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",-1.03076408912513 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",1.52670382199192 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",-1.01638757895021 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",-1.54456306065836 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",1.49325901137957 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",-1.96764990462467 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",-1.00796709752349 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",0.449397128420366 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",-1.98711940251513 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",-0.202919044096255 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",0.713966579688658 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",-2.09322599433984 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",-2.78704824722248 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",0.926633081069671 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",-2.00915308941966 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",0.720406007934175 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",0.222764001030553 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",0.599613079834107 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",1.04626794162191 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",-1.36579034426475 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",0.754408376835285 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",0.798561974315089 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",2.49423845254211 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",-1.59989517097306 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",-0.456778582441695 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",1.58300208784104 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",-0.768624665413085 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",-1.68149992331839 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",-0.122065000714035 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",2.30985492381337 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1850,"Simulated","PgC/yr","HL",0.0137776392796165 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",-0.0108913935002181 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",-0.0426853980196112 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",0.0522416585284591 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",-0.0579749483547254 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",-0.0741254149176353 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",0.0060854406864056 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",-0.0591326035634046 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",-0.0369252856484036 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",-0.00227834486873763 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.0576385003453528 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",0.0253716464290784 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",-0.0573465719295947 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",-0.0776279436529887 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",-0.0018477094928036 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",-0.03134433038444 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",-0.107194551561563 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",-0.0617039818201321 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",0.0708553676750668 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",0.0427622795967963 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",-0.167030255661711 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",-0.0523562374432628 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",0.0311404207330056 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.0198025805497094 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",-0.043871625069641 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.00350446170788552 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",-0.0777418520041688 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.0167953505151556 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",0.0675559614077637 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",-0.0416131084757018 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",-0.127938524720374 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.000255097213101519 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",-0.00748740554708996 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",-0.0276954409340215 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",-0.0734487287566702 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",-0.023808527636695 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",-0.0869358040717278 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",-0.0577215044599701 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",-0.025041679562902 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",-0.111974358225045 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",-0.00473980317009801 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",-0.0287362693820112 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",-0.0813726333212578 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",-0.0448093645647415 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",-0.184493394250097 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",-0.082332501415935 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",-0.0250076440857667 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",0.00371159006471279 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-0.0886816018881257 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",-0.00961675992516062 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",-0.0478172214305086 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",-0.0355696392411413 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",-0.0459120627112312 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",-0.112398824998742 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.0692109998954634 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",-0.118862854245018 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",0.0152412726697138 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",0.00776551160572118 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",0.0347518431698327 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",-0.140706610056303 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",-0.0146380394649716 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",0.0288832015339033 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",-0.125110116511252 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",0.0598293774781356 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",-0.0433937756005234 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",-0.0418298171458635 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",0.0301274031824285 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",0.0250984121609469 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",-0.0175018446869338 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",0.0244745664135161 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.0851341162350555 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",-0.13977408929549 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",-0.0318294685885959 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.0106115148212256 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",-0.0601892077495114 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.0348357802425349 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.0102555125934919 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",-0.0480556505310848 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.017674806369395 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.0485501474710301 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",-0.00897288764933833 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",-0.127386796632907 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",-0.00110919270095827 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.0129176530944116 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.00328422528996519 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.037665587888784 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.0627296234597958 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",-0.0178582871542637 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",-0.0264258336706465 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",-0.155963419393625 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.00471405061146033 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",-0.0366080507445923 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",-0.0109230965821412 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.0331705083708413 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",-0.0449424860214829 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.0170052019433932 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",-0.0240951469378511 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",-0.0374982676872424 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",-0.0463957723233196 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.00548499177844809 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.0243359171801216 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.105319539050404 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",-0.134901220063037 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",-0.0291344792166052 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",-0.094476583567757 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.0847577842675528 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",-0.0363210495137202 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",0.0129449858508056 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.0108738305642696 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",0.0113723858718843 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",-0.0552803904758489 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.000298185940563215 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.0464632951647154 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.0391077078485419 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.110471479370007 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.00724596474119591 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.0303047526833829 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",-0.0206187031274532 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.0446086619567241 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.0868969988463834 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.0158336077578266 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",-0.00178134614337776 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",0.0655432792691997 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",-0.000521570508921333 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",0.0537350037180669 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.0620997892876574 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.0249339841294686 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",-0.0365014602833907 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.081363362050289 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.140216398892561 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.0313525520775633 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",-0.0397445392063171 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.0579322655223405 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.0790349027549214 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.0851509677904643 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",0.0551563653604355 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.0466398866372257 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.0696336590628702 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.0285787248319032 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.0565868816540122 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.0441617167241693 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.0415980062167022 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.0473170975871137 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",-0.0480285655916821 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",-0.0807291837920678 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.114571101279706 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.106570140208293 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.0875265997790005 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",0.00179404107896884 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.0418695261743527 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",0.112563754495191 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",0.13120813463884 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",-0.0269035023791351 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",-0.0516622915577267 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",0.0128334040638498 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",0.801571055563737 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1850,"Simulated","PgC/yr","LL",-0.0776545926197187 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",-0.92260320399644 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",1.04096159607107 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",-0.0432060977518075 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",-2.39318019736532 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",-1.25102457147747 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",1.67051525876205 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",0.318466535152593 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",-1.04576926623864 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",-1.59086501157929 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",-0.871618170019668 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",0.586081831466198 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-0.687646299986302 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",-0.849076323065507 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",1.8120286377136 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",0.130014529662982 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",-1.53184107584458 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",1.09713777604339 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",0.967398632593139 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",-1.2805819717489 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-1.23219369596305 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",-0.0726612290232297 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",0.00163607486271399 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",-0.358042899870668 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",0.474245688982312 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",-1.84511659668976 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",0.474667090991083 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",-1.26952556823191 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",-0.447786120227861 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",-0.623836290936979 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-0.623754775985908 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",-1.37973733766011 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",-0.96790866071188 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",-0.826022209294433 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",0.481270855532901 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",-0.927798564012071 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",0.456843629653874 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",-0.585022400478524 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",-0.558194104966399 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",-1.77386673517559 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",1.0344995279547 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",-0.272240183359863 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",-1.8198337930448 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",1.30130151839138 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",-1.38974826913097 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-2.25434272116945 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",0.707450745829115 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",-0.828082074988555 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",0.868547597945135 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",-1.00006242410984 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",-0.261082643360767 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",0.0727021445245188 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",0.413520737701573 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",-0.615925916791716 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",0.662183478670721 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",-2.35743082132752 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",-0.161535110205142 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",-1.47608827320296 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",0.618218080343173 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",0.40499485324725 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",-2.49787752644437 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",0.119682094797059 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",-0.445540310897369 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",0.549958856209999 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",-3.5013976857243 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-1.23728475898151 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",2.21985623427669 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-0.976960770924655 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",-2.45895841717185 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",1.54125019257167 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",-1.68920180408847 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",-1.49681730139064 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",0.3740801434432 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",1.32909930189994 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",-1.36152618647483 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-1.42741502430867 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",1.01984514141158 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",-0.0519952004358594 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",-0.262649205328371 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",-0.43016624873614 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",-0.289023703552302 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",-1.39323010322843 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-1.27097031868135 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",1.59165909098957 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",-3.13007403817098 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",-0.63160338839926 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",-0.560493906429264 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",0.719675486415422 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-2.59136819585269 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",-1.70174641513706 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",0.717798272154477 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",-1.57694030895198 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-1.97555105345448 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",2.059225689821 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",-1.59446009746662 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-2.12200537095888 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-0.218053942685839 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-0.206437206185311 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-0.475919840150281 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",0.26751244788584 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-1.3058441003578 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",-0.620821159564225 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",0.228559626452618 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",-2.03383621879257 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-2.50978871759853 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-0.194433438277352 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",0.690515257537263 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-2.39598910513003 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",-3.68854231781933 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",-1.32955889346575 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",-1.23640692592199 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-1.84375230768637 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",1.21008681489481 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",-0.628336732702521 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",-3.1018545892774 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",0.102443789655467 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",-0.590047882809369 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",-2.22590071933999 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",-0.465738372554 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",0.720885568621233 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",-1.02397106214183 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-2.04324401863837 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",-1.30531405564365 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",0.505783415318704 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",0.34301386060412 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",-1.4465440417443 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",-1.05569802431778 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",1.56320523722861 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",-1.09775091596615 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",-1.68477971675893 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",1.46190677872655 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",-1.92790497195658 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",-1.06589937682135 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",0.370362324220821 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",-2.072270715755 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",-0.25807528158755 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",0.667326690187766 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",-2.16285897882791 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",-2.81562649298891 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",0.870046208838826 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",-2.05331552664799 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",0.678808051292977 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",0.175446907395937 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",0.647641685476814 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",1.12699713719172 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",-1.48036155294814 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",0.647838164163403 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",0.711035428354348 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",2.49244407429379 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",-1.64176510671367 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",-0.569342426796553 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",1.45179444739733 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",-0.741721132504257 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",-1.62983811298419 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",-0.13489842091888 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",1.50828338667303 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/hist/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/hist/summary.csv deleted file mode 100644 index 4506bf6a3..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/hist/summary.csv +++ /dev/null @@ -1,469 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -1850,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.193556195,-2.863911269,5.893037868,0.812696429,0.019700796,1,CMIP5 -1850,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.162879215,0.013777639,0.387085755,0.153303651,0.060621969,1,CMIP5 -1850,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.000262815,-2.892738043,5.361825015,0.663100472,-0.077654593,1,CMIP5 -1851,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.3263853,-2.110618382,4.199654705,-0.026220978,-0.358285123,1,CMIP5 -1851,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.252934512,-0.550054407,0.113455714,-0.163223791,-0.142897527,1,CMIP5 -1851,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.197330396,-1.776748614,4.246006332,0.103650252,-0.371966679,1,CMIP5 -1852,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.771950295,-1.419883711,11.1692118,1.659679658,0.191754426,1,CMIP5 -1852,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.568168134,-0.317656957,1.242744217,0.213971631,0.088728525,1,CMIP5 -1852,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.135258407,-1.56095085,9.559327225,1.384689667,0.241026837,1,CMIP5 -1853,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.868187748,-11.35918477,2.418776448,-2.359717722,-0.909384291,1,CMIP5 -1853,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.775393484,-1.74660365,0.369623966,-0.211834514,0.040964177,1,CMIP5 -1853,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.08777246,-9.563360871,2.020774996,-2.1400356,-0.950348747,1,CMIP5 -1854,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.005409072,-15.71961356,0.650331272,-3.821059094,-2.093282578,1,CMIP5 -1854,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.315164282,-0.563879603,0.144757158,-0.154901605,-0.012824174,1,CMIP5 -1854,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.655064803,-14.66418679,1.156679362,-3.537376407,-2.093073279,1,CMIP5 -1855,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.900274795,-6.254543543,5.35226764,-0.289279518,-0.564643895,1,CMIP5 -1855,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.527093643,-1.181416994,0.232140172,-0.14085953,-0.022174398,1,CMIP5 -1855,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.405195008,-5.096224925,4.764008709,-0.217075304,-0.534262641,1,CMIP5 -1856,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.136844542,-4.536771574,2.708640381,-0.777040622,-0.112433482,1,CMIP5 -1856,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.210763645,-0.333521638,0.213301847,-0.058535792,-0.075658234,1,CMIP5 -1856,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.017723493,-4.195668196,2.997128257,-0.653599948,-0.28427049,1,CMIP5 -1857,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.326667706,-0.809059726,7.849853449,2.523903599,1.938189295,1,CMIP5 -1857,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.180924565,-0.212155812,0.263456963,0.030648259,-0.016855004,1,CMIP5 -1857,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.091619358,-0.792811988,7.018040299,2.359436728,1.978221799,1,CMIP5 -1858,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.148990123,-1.398323545,1.320633933,-0.361520339,-0.794475195,1,CMIP5 -1858,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.36316939,-0.224584819,0.697772974,0.057867063,-0.088402315,1,CMIP5 -1858,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.089067139,-1.171984965,1.437895997,-0.369425433,-0.9247486,1,CMIP5 -1859,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.59120139,-3.311450103,1.309408054,-0.736403652,-1.083477659,1,CMIP5 -1859,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.363031886,-0.545033315,0.518094083,0.05575734,0.007057221,1,CMIP5 -1859,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.558276827,-3.213180841,0.937737825,-0.729095024,-0.865623916,1,CMIP5 -1860,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.962266562,-6.920109957,9.527801313,0.282320396,-0.130007118,1,CMIP5 -1860,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.414452741,-0.938049563,0.26486135,-0.011085817,0.105387367,1,CMIP5 -1860,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.423970842,-5.923286885,8.5451589,0.198403219,-0.235394558,1,CMIP5 -1861,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.178628089,-3.663605837,7.372919521,0.509285224,0.134857687,1,CMIP5 -1861,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.306935525,-0.676431449,0.207169459,-0.084383166,0.048223834,1,CMIP5 -1861,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.111226005,-3.859321645,6.865713547,0.463816355,0.181120863,1,CMIP5 -1862,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.798452441,-4.208920887,7.393797065,0.365334687,-0.655217685,1,CMIP5 -1862,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.290105554,-0.47604842,0.546004708,0.050883884,0.111718392,1,CMIP5 -1862,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.733341141,-4.29794997,7.469276886,0.25291685,-0.669048197,1,CMIP5 -1863,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.920323677,-2.774789845,8.887830951,1.075911202,-0.181171882,1,CMIP5 -1863,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.206355727,-0.500812421,0.138613375,-0.05445038,-0.004071529,1,CMIP5 -1863,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.756348788,-2.913403329,8.146074875,0.985263429,-0.178027542,1,CMIP5 -1864,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.683421347,-2.31729729,2.722444956,0.607218103,0.892944703,1,CMIP5 -1864,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.44355992,-0.37164475,1.099190201,0.086758543,-0.006154168,1,CMIP5 -1864,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.538335455,-2.071335332,2.237490391,0.540978218,0.822881276,1,CMIP5 -1865,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.512194204,-9.676215717,7.15198565,0.755361058,1.023055593,1,CMIP5 -1865,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.300788981,-0.147672063,0.674704611,0.165225413,0.122185144,1,CMIP5 -1865,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.278212347,-9.141842823,6.603186205,0.708449484,0.963266783,1,CMIP5 -1866,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.110827534,-1.881992614,13.08713268,3.152662489,1.477636981,1,CMIP5 -1866,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.418438877,-0.484564833,0.852577979,-0.003835095,-0.062059109,1,CMIP5 -1866,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.882070972,-1.848024074,12.64019672,3.053157848,1.649214668,1,CMIP5 -1867,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.332011106,-3.63444634,4.594165043,0.500692593,0.714762944,1,CMIP5 -1867,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.39823683,-0.386808031,0.962103474,0.064575959,0.017677445,1,CMIP5 -1867,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.199766163,-3.424553957,4.352012726,0.475001504,0.75856761,1,CMIP5 -1868,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.528304768,-4.737793336,2.739172896,-1.018666824,-1.306354535,1,CMIP5 -1868,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.396435731,-0.969428557,0.365281602,-0.133148242,-0.059571343,1,CMIP5 -1868,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.422212537,-4.493303107,2.937910354,-0.825898038,-0.920697991,1,CMIP5 -1869,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.216792764,-10.14551354,5.098815911,-1.443902391,-1.304889625,1,CMIP5 -1869,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.210111517,-0.495279462,0.137454743,-0.051339334,0.032339258,1,CMIP5 -1869,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.872468266,-9.36300224,4.620351876,-1.410597673,-1.383182111,1,CMIP5 -1870,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.930588291,-16.35943052,4.272611724,-2.653288036,-1.374077173,1,CMIP5 -1870,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.150787594,-0.32854976,0.147862306,-0.065810064,-0.081655966,1,CMIP5 -1870,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.727134128,-15.8278728,3.921899817,-2.550841451,-1.24106524,1,CMIP5 -1871,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.308420391,-6.636446134,8.968959891,0.208296924,-0.277383537,1,CMIP5 -1871,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.272517922,-0.561970368,0.226634109,-0.129874149,-0.159397792,1,CMIP5 -1871,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.976703184,-6.168975517,8.301332695,0.245285795,-0.049316935,1,CMIP5 -1872,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.916231524,-4.680844699,11.47079236,0.490108269,-0.442065785,1,CMIP5 -1872,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.41988649,-1.108055347,0.166814477,-0.205968056,-0.036137506,1,CMIP5 -1872,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.61630559,-4.714981593,10.4952038,0.520144207,-0.56545325,1,CMIP5 -1873,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.786366873,-3.124849662,11.93333107,0.648141619,-0.415403867,1,CMIP5 -1873,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.410466066,-0.737687925,0.56732413,-0.145849605,-0.13801487,1,CMIP5 -1873,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.239921796,-2.964695811,10.58686499,0.672449943,-0.344785315,1,CMIP5 -1874,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.620204206,-5.534760519,13.10217493,0.121140811,-0.695273104,1,CMIP5 -1874,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.403242792,-0.468764204,0.888329697,0.087637067,0.048134944,1,CMIP5 -1874,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.045318187,-5.503432563,11.4934322,-0.054698337,-0.834787541,1,CMIP5 -1875,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.808336791,-2.733389202,1.916861209,-0.400473875,-0.749050878,1,CMIP5 -1875,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.172766327,-0.149384278,0.375649917,0.115886538,0.088930322,1,CMIP5 -1875,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.717968689,-2.711206621,1.594245849,-0.516518223,-0.789292713,1,CMIP5 -1876,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.096908347,-8.163231424,1.362670448,-1.500714988,-0.672289336,1,CMIP5 -1876,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.492296503,-1.243405657,0.11357167,-0.290424138,-0.122068355,1,CMIP5 -1876,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.718899314,-7.24535714,1.250666672,-1.234985612,-0.572055671,1,CMIP5 -1877,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.448163313,-2.454265865,14.4850007,1.880079632,-0.384645017,1,CMIP5 -1877,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.235806906,-0.430364904,0.410050926,0.035081748,0.018631093,1,CMIP5 -1877,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.025805897,-2.86431707,13.13353548,1.678172599,-0.31099373,1,CMIP5 -1878,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.850026283,-2.441079887,15.91292311,2.534509687,0.392317442,1,CMIP5 -1878,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.189741078,-0.152782889,0.41447002,0.074663295,0.066827319,1,CMIP5 -1878,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.447865911,-2.503346486,14.56411043,2.248053044,0.133754409,1,CMIP5 -1879,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.324500127,-9.291247504,8.504330022,-0.007567724,-0.00497563,1,CMIP5 -1879,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.189610935,-0.248064957,0.346437379,-0.016788899,-0.059114003,1,CMIP5 -1879,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.153483136,-9.191846194,7.865233157,-0.046477959,0.057229879,1,CMIP5 -1880,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.709750258,-4.980303991,7.374240663,-0.078412959,-0.831159465,1,CMIP5 -1880,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.422266825,-0.438414739,0.969330938,0.053151437,0.011125334,1,CMIP5 -1880,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.58851335,-4.445512089,7.26482897,-0.056471703,-0.837291148,1,CMIP5 -1881,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.657627701,-1.800649141,5.476666316,0.672184394,-0.255007409,1,CMIP5 -1881,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.365631863,-0.746917302,0.556011749,0.057394823,0.117181431,1,CMIP5 -1881,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.531032173,-1.961774771,5.356871673,0.603694251,-0.065693524,1,CMIP5 -1882,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.981059699,-3.285292352,9.97818556,2.021881474,1.108621208,1,CMIP5 -1882,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.336050095,-0.261650172,0.793415863,0.083641782,0.040482701,1,CMIP5 -1882,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.661815609,-3.092491254,9.102975762,1.826228821,1.014326436,1,CMIP5 -1883,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.116726431,-0.853717616,14.74908999,2.469524308,0.650778169,1,CMIP5 -1883,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.2196337,-0.185588402,0.527635174,0.021296138,-0.021254702,1,CMIP5 -1883,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.566519707,-0.826022209,13.17017053,2.297070923,0.708118267,1,CMIP5 -1884,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.661383282,0.407822198,14.83395602,4.68478694,3.370817575,1,CMIP5 -1884,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.469636438,-0.501819398,0.925063673,0.210205505,0.120136481,1,CMIP5 -1884,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.449875062,0.343877243,14.27270344,4.41099003,3.019341261,1,CMIP5 -1885,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.812350091,-4.261559142,8.209836176,1.723488976,1.754659816,1,CMIP5 -1885,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.452423057,-0.279871505,1.011609639,0.152875345,0.046348496,1,CMIP5 -1885,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.688522611,-4.377180555,7.703585451,1.640113164,1.802946599,1,CMIP5 -1886,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.469647719,-4.617461593,6.075191566,2.323067481,3.198254889,1,CMIP5 -1886,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.390358008,-0.292226211,0.952165745,0.19736851,0.230809148,1,CMIP5 -1886,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.46302116,-4.672037315,6.060888166,2.193494984,2.984360343,1,CMIP5 -1887,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.58342515,-2.714937694,15.15285688,3.113998739,1.725584933,1,CMIP5 -1887,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.207062812,-0.289353812,0.403127975,-0.018793453,-0.051280211,1,CMIP5 -1887,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.411389202,-2.670039189,14.58943732,3.107756825,1.746377908,1,CMIP5 -1888,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.04033216,-0.583235891,9.680895841,2.974549915,2.095915622,1,CMIP5 -1888,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.217015784,-0.081113894,0.545518388,0.167065832,0.12694948,1,CMIP5 -1888,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.927168494,-0.558194105,9.257388354,2.767303229,1.933448975,1,CMIP5 -1889,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.086152526,-1.885840371,8.165649073,1.058118453,0.670868031,1,CMIP5 -1889,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.290008137,-0.514019351,0.237272219,-0.089414371,-0.044918823,1,CMIP5 -1889,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.836101167,-1.773866735,7.502998936,1.032776214,0.540960892,1,CMIP5 -1890,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.991146835,-6.420299718,7.754596681,1.292346744,1.247705886,1,CMIP5 -1890,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.155376696,-0.071105516,0.362742732,0.073751195,0.015392403,1,CMIP5 -1890,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.945248831,-6.456660432,7.503417087,1.189519739,1.068704469,1,CMIP5 -1891,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.670158524,-3.064743534,9.382893622,1.127946765,-0.124291743,1,CMIP5 -1891,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.297567077,-0.253561791,0.686687485,0.132387798,0.090917731,1,CMIP5 -1891,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.400803741,-3.489570893,8.206000714,0.923600388,-0.200548365,1,CMIP5 -1892,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.933564708,-3.466643003,8.19986044,1.823341446,1.767411008,1,CMIP5 -1892,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.408229868,-0.567725755,0.73706416,-0.022530754,-0.047191546,1,CMIP5 -1892,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.621715935,-3.090610912,7.104076643,1.751054468,1.664199039,1,CMIP5 -1893,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.097151095,-2.647565466,3.346252265,0.609488929,0.873626951,1,CMIP5 -1893,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.569254031,-0.617401184,1.286590514,0.035126586,-0.050395962,1,CMIP5 -1893,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.895517187,-2.696265552,3.144076356,0.63465923,1.082844864,1,CMIP5 -1894,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.882933052,-6.648264187,1.559697766,-0.674987206,0.559933823,1,CMIP5 -1894,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.381041315,-0.329669096,0.865480872,0.202995529,0.193248829,1,CMIP5 -1894,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.86153584,-6.746516904,1.496161988,-0.746676232,0.669295966,1,CMIP5 -1895,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.018119619,-2.336674346,6.449769796,0.291798122,-0.631195112,1,CMIP5 -1895,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.367988214,-0.303011551,0.809625674,0.092168415,-0.03991019,1,CMIP5 -1895,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.965029959,-2.532346019,6.429004656,0.174681036,-0.650186507,1,CMIP5 -1896,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.683844535,-6.095073815,9.315021024,-0.201968489,-0.355011264,1,CMIP5 -1896,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.24246124,-0.584898408,0.250394081,-0.025158696,0.01864992,1,CMIP5 -1896,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.474886842,-5.840966678,8.768850744,-0.286212723,-0.385165642,1,CMIP5 -1897,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.472081057,-2.916935644,1.650710389,-0.767376632,-0.567188076,1,CMIP5 -1897,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.412287851,-0.968902125,0.274880876,-0.161043333,-0.060442111,1,CMIP5 -1897,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.28943553,-2.589932591,1.375829955,-0.607786248,-0.588924146,1,CMIP5 -1898,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.383860638,-4.2121275,7.569274561,0.036803174,-0.705898989,1,CMIP5 -1898,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.365573777,-1.045521885,0.12443608,-0.247986334,-0.157257124,1,CMIP5 -1898,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.298036796,-3.986294877,7.570722206,0.184954165,-0.595860024,1,CMIP5 -1899,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.048023423,-5.661047135,4.887135893,0.696808408,1.221567625,1,CMIP5 -1899,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.202888961,-0.073782674,0.4513197,0.112256478,0.032829773,1,CMIP5 -1899,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.90094282,-5.611669203,4.466957956,0.532754565,1.19145593,1,CMIP5 -1900,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,7.139933246,-13.35642602,12.27812142,-0.740867846,-0.174211962,1,CMIP5 -1900,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.282276668,-0.570364586,0.413555634,-0.049019299,-0.018326542,1,CMIP5 -1900,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.630739333,-12.38926711,11.17289976,-0.778430406,-0.110338613,1,CMIP5 -1901,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,7.856251929,-19.77868845,8.199395559,-2.394321483,-1.105812244,1,CMIP5 -1901,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.295113666,-0.508636126,0.284848725,-0.029591132,0.027615704,1,CMIP5 -1901,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,7.300533017,-18.6056975,7.325798534,-2.352677683,-1.158888853,1,CMIP5 -1902,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,7.110144186,-11.7920893,11.85408096,-0.367747972,0.807397119,1,CMIP5 -1902,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.196238852,-0.188817384,0.346954796,0.039663685,0.000639886,1,CMIP5 -1902,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.707372185,-11.36311984,10.67937063,-0.466249213,0.871557704,1,CMIP5 -1903,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.917593986,-10.75437807,4.641053088,0.275286342,1.408639172,1,CMIP5 -1903,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.332005199,-0.485312075,0.578700833,-0.050474845,-0.117998222,1,CMIP5 -1903,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.871847476,-10.7764297,4.416618144,0.329878692,1.484437703,1,CMIP5 -1904,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.669578918,-1.77113878,6.434463445,1.127330086,0.560687421,1,CMIP5 -1904,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.403473462,-0.518059625,0.855483733,-0.022988912,-0.078681443,1,CMIP5 -1904,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.583082003,-1.670130173,6.585776041,1.16633269,0.523863516,1,CMIP5 -1905,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.028472974,-8.203140673,3.295164544,-1.829742531,-1.140298379,1,CMIP5 -1905,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.596867755,-1.03648728,0.985544426,-0.013658195,-0.042815928,1,CMIP5 -1905,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.067455685,-8.283484547,3.286286114,-1.621503932,-0.577780593,1,CMIP5 -1906,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.877989979,-3.490502045,1.120582029,-0.595625655,0.000895227,1,CMIP5 -1906,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.283923719,-0.598847823,0.282061577,-0.02155635,0.007130094,1,CMIP5 -1906,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.604577714,-3.068114374,0.927650959,-0.546513917,-0.006234734,1,CMIP5 -1907,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.583493319,-2.140791043,6.053700392,0.199568275,-0.678217247,1,CMIP5 -1907,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.496919085,-1.024076186,0.534136855,-0.180709925,-0.155545075,1,CMIP5 -1907,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.513827533,-1.927191882,5.773892451,0.294003595,-0.485372032,1,CMIP5 -1908,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.36466639,-6.668931304,5.396439359,-0.29437473,-0.198392828,1,CMIP5 -1908,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.346479858,-0.657375949,0.571814454,0.047257654,0.036508292,1,CMIP5 -1908,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.133798117,-6.497438069,4.632679333,-0.326009313,-0.173846035,1,CMIP5 -1909,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.655255216,-9.449343712,2.291287873,-1.660237657,-1.034782298,1,CMIP5 -1909,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.231264017,-0.146696486,0.418837472,0.098776713,0.038178298,1,CMIP5 -1909,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.609267802,-9.320361251,2.43060374,-1.656164464,-1.1547783,1,CMIP5 -1910,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.0957305,-7.873980243,10.11478491,-0.107192341,-0.582129968,1,CMIP5 -1910,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.201327105,-0.15676549,0.518439339,0.096103323,0.05915429,1,CMIP5 -1910,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.684588773,-7.44228432,9.108624044,-0.269273217,-0.683510396,1,CMIP5 -1911,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.412466427,-5.386337076,5.828128642,0.741927217,0.59264985,1,CMIP5 -1911,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.282800092,-0.363005833,0.493271122,0.053142408,0.026543584,1,CMIP5 -1911,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.098999855,-5.023330928,5.064324602,0.637402859,0.559728187,1,CMIP5 -1912,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.459483901,-3.194060444,4.66596116,1.033440861,0.766568856,1,CMIP5 -1912,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.374973971,-0.798622512,0.373507683,-0.069428685,-0.084715373,1,CMIP5 -1912,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.372377617,-3.353730697,4.193651105,1.022278234,1.014686418,1,CMIP5 -1913,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.880786383,-5.545933233,6.682982231,-0.761187908,-0.26651453,1,CMIP5 -1913,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.468751169,-0.503295589,0.837148488,0.141081495,0.075154392,1,CMIP5 -1913,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.606058161,-5.947127414,5.845834565,-0.816029076,-0.384133459,1,CMIP5 -1914,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.935652988,-4.870776312,10.3544559,0.007445881,-0.512233774,1,CMIP5 -1914,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.387587607,-0.535331701,0.570168572,0.092125774,0.062120156,1,CMIP5 -1914,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.654396047,-4.694558992,9.690928364,-0.204677293,-0.943132916,1,CMIP5 -1915,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.416034543,-7.635605553,10.65110294,-0.38781425,-0.721774748,1,CMIP5 -1915,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.389641343,-0.48943908,0.762922,0.094529237,0.104082537,1,CMIP5 -1915,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.064748243,-7.443789156,9.323284061,-0.510404533,-0.535675347,1,CMIP5 -1916,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.289231357,-10.50834127,2.509407776,-1.451833493,0.168319445,1,CMIP5 -1916,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.344351866,-0.734369871,0.309388518,-0.023627475,0.048432905,1,CMIP5 -1916,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.966552063,-9.527049237,2.485786834,-1.398878836,0.012943254,1,CMIP5 -1917,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.574332215,-5.655261479,1.843455082,-1.791733112,-1.096861709,1,CMIP5 -1917,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.338378346,-0.320915821,0.648842672,0.110141803,-0.013415758,1,CMIP5 -1917,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.610459568,-5.569635973,1.704015424,-1.887028686,-1.126173862,1,CMIP5 -1918,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.912219976,-2.476459646,9.488810842,1.075378613,0.325111127,1,CMIP5 -1918,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.297946856,-0.221942347,0.539747628,0.1130381,0.005788446,1,CMIP5 -1918,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.524901834,-2.458958417,8.39542517,0.831229602,0.296032194,1,CMIP5 -1919,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.357813721,-13.45019523,3.807557341,-0.840392776,1.011584508,1,CMIP5 -1919,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.26028268,-0.510106248,0.323400381,-0.028014511,-0.034627763,1,CMIP5 -1919,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.004605103,-12.52582392,3.484156639,-0.758370234,0.926126176,1,CMIP5 -1920,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.427128589,-5.813380771,11.95868235,2.115229544,1.123727096,1,CMIP5 -1920,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.254244835,-0.62439244,0.170776257,-0.134557142,-0.058894746,1,CMIP5 -1920,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.290375317,-5.621161096,11.76731779,2.066058742,1.153623562,1,CMIP5 -1921,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.489468224,-4.994460357,5.435593344,0.125391498,0.127172266,1,CMIP5 -1921,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.348939477,-0.550577109,0.635300672,0.008655267,-0.035783316,1,CMIP5 -1921,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.481557556,-5.225909676,5.645853016,0.030445798,-0.033812201,1,CMIP5 -1922,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.315436803,-2.284172269,8.396814882,1.685913236,0.372794586,1,CMIP5 -1922,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.407217724,-0.440687478,0.850764395,0.056033434,0.037647526,1,CMIP5 -1922,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.323414845,-2.470920987,8.38792357,1.504629945,0.345823379,1,CMIP5 -1923,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.788650608,-3.347222207,17.26726568,2.168758095,0.036949976,1,CMIP5 -1923,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.264630826,-0.117226068,0.74215016,0.241942703,0.238554964,1,CMIP5 -1923,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.349109406,-3.517940511,15.52184475,1.733536941,-0.17055033,1,CMIP5 -1924,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.337898865,-5.797643798,6.819675809,1.080829302,1.182841969,1,CMIP5 -1924,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.404341996,-0.439718799,0.724542886,0.133923246,0.049209281,1,CMIP5 -1924,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.391275592,-6.489122349,6.679077401,0.806881753,0.821735157,1,CMIP5 -1925,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.49128794,-6.185298557,0.667465377,-1.561655717,-0.874747826,1,CMIP5 -1925,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.201957874,-0.07085282,0.51951228,0.173928227,0.154512557,1,CMIP5 -1925,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.402119493,-6.312011093,0.446614872,-1.673489154,-0.872744379,1,CMIP5 -1926,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.893229658,-3.129364993,10.90932251,2.592483191,0.761771297,1,CMIP5 -1926,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.27934254,-0.349380402,0.595221741,0.161071244,0.148500025,1,CMIP5 -1926,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.680175912,-3.542942397,9.640778057,2.291516426,0.683491266,1,CMIP5 -1927,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.915254355,-0.100050859,16.09366908,4.190501,1.624663403,1,CMIP5 -1927,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.355246919,-0.187063284,0.94996302,0.189882508,0.110940078,1,CMIP5 -1927,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.603912917,-0.0519952,15.6028527,3.856951902,1.312314975,1,CMIP5 -1928,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.675387314,-1.62297757,12.69343455,1.945585716,0.303950512,1,CMIP5 -1928,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.547346371,-0.495922015,1.44801473,0.363209975,0.341718941,1,CMIP5 -1928,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.768162419,-1.991033008,12.57509497,1.580789054,0.084324633,1,CMIP5 -1929,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.281746888,-3.766041529,7.333049156,0.763862386,0.11225143,1,CMIP5 -1929,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.517874226,-0.714888254,0.907568044,0.283801343,0.355969696,1,CMIP5 -1929,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.239773449,-4.299707114,6.231068905,0.427832625,0.077846792,1,CMIP5 -1930,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.51660321,-3.703874413,10.556256,1.819063358,0.895025312,1,CMIP5 -1930,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.232907068,-0.008972888,0.780855007,0.314147268,0.282455599,1,CMIP5 -1930,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.185487396,-3.99431164,9.228113812,1.418142375,0.585017419,1,CMIP5 -1931,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.620334946,-3.751293743,3.926796753,0.52586458,0.735055639,1,CMIP5 -1931,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.373596996,-0.258942988,0.955289162,0.126096871,0.089835313,1,CMIP5 -1931,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.320125477,-3.288432374,3.059883503,0.409924723,0.607184491,1,CMIP5 -1932,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.35598282,-2.258296695,1.814739577,-0.404412098,-0.779419902,1,CMIP5 -1932,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.379185045,-0.560422927,0.701242655,0.147586734,0.166985714,1,CMIP5 -1932,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.056660029,-1.736798051,1.113496496,-0.55159154,-0.822148848,1,CMIP5 -1933,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.716245984,-8.121435598,3.469431848,-0.557642903,0.406673537,1,CMIP5 -1933,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.289317235,-0.289713225,0.551239414,0.13358861,0.119678029,1,CMIP5 -1933,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.53727373,-7.577402823,3.378852537,-0.674067989,0.344784095,1,CMIP5 -1934,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.994161551,-5.49173392,14.62229817,1.253458818,0.551398249,1,CMIP5 -1934,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.195001385,-5.61E-05,0.521563491,0.25680638,0.270963524,1,CMIP5 -1934,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.550071398,-5.627401155,13.13778029,0.897975669,0.416455664,1,CMIP5 -1935,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.797291974,-3.981216948,4.109306657,0.296291171,0.569013799,1,CMIP5 -1935,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.258770196,-0.13133724,0.669026354,0.180898549,0.144917507,1,CMIP5 -1935,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.528465261,-3.722768074,3.41296236,0.12591191,0.371142051,1,CMIP5 -1936,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.34534455,-4.229289006,2.794758765,-0.62221966,-0.647957885,1,CMIP5 -1936,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.335175639,-0.41455924,0.573461763,-0.050160974,-0.082910991,1,CMIP5 -1936,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.222407845,-3.814729001,2.912759582,-0.602968399,-0.570819107,1,CMIP5 -1937,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.896100042,-2.654634295,2.854377808,-0.267294343,-0.351878885,1,CMIP5 -1937,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.37287404,-0.538219972,0.370853127,0.030013442,0.141277815,1,CMIP5 -1937,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.890049651,-3.004430952,2.469948346,-0.319307917,-0.148248897,1,CMIP5 -1938,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.96473866,-19.57274103,2.431991138,-3.170708915,-2.043398062,1,CMIP5 -1938,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.452061926,-0.926015508,0.568506486,0.057701703,0.049450342,1,CMIP5 -1938,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.415648367,-18.08585742,2.348301038,-3.115920152,-2.036351094,1,CMIP5 -1939,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.497167385,-14.66228224,2.7639574,-1.765482957,0.367105797,1,CMIP5 -1939,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.237823237,-0.286241862,0.335009291,0.053510754,0.074092334,1,CMIP5 -1939,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.247628046,-13.95587642,2.602176881,-1.737496204,0.122322736,1,CMIP5 -1940,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,9.928928424,-19.77391169,14.65393259,-0.310895011,1.37173491,1,CMIP5 -1940,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.428685969,-0.266917332,0.969287936,0.235131715,0.181419589,1,CMIP5 -1940,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,9.201979856,-18.78759495,12.86657226,-0.560561008,1.332337764,1,CMIP5 -1941,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.24098688,-10.01692708,1.647102348,-2.880532235,-1.501735786,1,CMIP5 -1941,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.521799306,-0.238038211,1.159072885,0.315840396,0.035447854,1,CMIP5 -1941,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.872293701,-9.437956606,0.895277502,-2.991954425,-1.525070185,1,CMIP5 -1942,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.275337657,-7.817805892,1.605186475,-2.655532348,-1.639966156,1,CMIP5 -1942,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.258681253,-0.365236504,0.285904755,-0.008667527,0.002848457,1,CMIP5 -1942,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.224390322,-7.723341237,1.319282269,-2.55101336,-1.642814447,1,CMIP5 -1943,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.893792935,-7.149305874,8.827113335,0.307791747,0.703424004,1,CMIP5 -1943,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.266297739,-0.326583231,0.526873528,0.136164427,0.159538721,1,CMIP5 -1943,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.645583454,-6.615191758,8.075232098,0.093585522,0.52855164,1,CMIP5 -1944,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.704050762,-15.98372485,5.128158472,-1.888272081,-0.946881056,1,CMIP5 -1944,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.31832207,-0.060336951,0.848873793,0.197837923,0.097468922,1,CMIP5 -1944,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.37096328,-15.49083495,4.279284793,-2.051584259,-1.144001621,1,CMIP5 -1945,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.025000113,-5.851768394,-0.564406205,-2.602669288,-2.001468975,1,CMIP5 -1945,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.199902705,-0.06679657,0.585387186,0.128788128,0.090820341,1,CMIP5 -1945,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.879214451,-5.815659835,-1.149793421,-2.643671094,-2.068801699,1,CMIP5 -1946,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.035399892,-5.630738908,7.495850736,-0.660293565,-0.912271171,1,CMIP5 -1946,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.34187095,-0.484113812,0.536144052,0.141984869,0.135439898,1,CMIP5 -1946,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.927270701,-6.090470814,6.856315833,-0.874733344,-1.224316213,1,CMIP5 -1947,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.556894253,-8.460061032,10.86349717,-0.753353747,-0.36612596,1,CMIP5 -1947,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.230363263,-0.037498268,0.623098483,0.232398708,0.178718852,1,CMIP5 -1947,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.232047731,-8.653975706,9.685567332,-1.049677504,-0.698985102,1,CMIP5 -1948,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.264045578,-6.027352799,4.561223884,-1.33053691,-0.624480371,1,CMIP5 -1948,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.222939906,-0.156596722,0.566374689,0.182665636,0.210076682,1,CMIP5 -1948,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.141288398,-6.198936053,3.874870151,-1.488275772,-0.52298417,1,CMIP5 -1949,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.931158895,-4.115824376,1.676818591,-1.370968143,-1.035967159,1,CMIP5 -1949,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.445008377,-0.198918786,1.087052214,0.375176485,0.321146973,1,CMIP5 -1949,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.848637355,-4.545397705,0.846951591,-1.65540848,-1.525004995,1,CMIP5 -1950,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.174481889,-9.75269035,2.557509951,-2.512638008,-2.179822193,1,CMIP5 -1950,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.15013912,0.024335917,0.49524089,0.218176295,0.172040282,1,CMIP5 -1950,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.010092893,-9.631057168,2.062268029,-2.670685642,-2.278016305,1,CMIP5 -1951,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.65506667,-1.381456839,3.243124097,0.241861309,-0.364857391,1,CMIP5 -1951,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.337827833,-0.115297308,0.769136647,0.307628781,0.308184369,1,CMIP5 -1951,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.568299338,-1.84597644,2.732074973,-0.050698893,-0.708640671,1,CMIP5 -1952,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.033445251,-3.137689184,6.809775137,0.595524992,0.34885878,1,CMIP5 -1952,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.301176871,-0.13490122,0.780628114,0.161228952,0.118471814,1,CMIP5 -1952,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.753833279,-3.006843455,5.81697293,0.399154468,0.250366227,1,CMIP5 -1953,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.784471058,-3.962618923,4.737066256,-0.847458689,-1.820636116,1,CMIP5 -1953,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.386219287,-0.201717943,0.950051004,0.104343788,-0.014479715,1,CMIP5 -1953,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.506916395,-3.793739426,3.846500693,-0.937277711,-1.718641,1,CMIP5 -1954,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.862485376,-4.206080008,0.805950665,-1.780172924,-1.810094842,1,CMIP5 -1954,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.37804524,-0.094476584,1.177886869,0.35704506,0.342708661,1,CMIP5 -1954,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.774216546,-4.37634023,0.155215001,-2.034996773,-1.829532596,1,CMIP5 -1955,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.034028329,-11.0077907,10.17136364,-1.79820874,-1.47668615,1,CMIP5 -1955,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.163608764,0.046053285,0.567975102,0.252740448,0.242126876,1,CMIP5 -1955,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.674738133,-10.79487224,8.982235461,-2.060579575,-1.772237355,1,CMIP5 -1956,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.920622627,-7.816186813,5.810640116,-1.443731169,-1.845212214,1,CMIP5 -1956,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.164421618,-0.03632105,0.479459046,0.207670507,0.202987156,1,CMIP5 -1956,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.800796949,-7.950071605,5.132174003,-1.660504077,-2.155446079,1,CMIP5 -1957,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.130323218,-5.762788388,7.119984148,-1.818268355,-2.411200757,1,CMIP5 -1957,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.452155204,-0.560596411,1.071550885,0.110842118,0.043649637,1,CMIP5 -1957,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.695025806,-5.526019701,5.95651354,-1.906495515,-2.497262346,1,CMIP5 -1958,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.837084294,-8.693205814,3.497643398,-1.684753064,-1.45378347,1,CMIP5 -1958,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.286438556,-0.152112743,0.762161825,0.160752049,0.053037433,1,CMIP5 -1958,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.816078566,-8.755949415,3.476965016,-1.79480466,-1.673432183,1,CMIP5 -1959,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.877509793,-7.39294003,12.67138002,0.351033853,-0.997487609,1,CMIP5 -1959,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.452836363,-0.240658901,1.15673408,0.122400954,0.02386387,1,CMIP5 -1959,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.386201589,-7.411033346,10.96933432,0.142774093,-1.107988858,1,CMIP5 -1960,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.253474073,-4.176485583,2.720883069,-0.299743382,-0.679686863,1,CMIP5 -1960,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.287948315,-0.337909809,0.598143559,0.058571423,-0.046521894,1,CMIP5 -1960,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.105077249,-4.307735326,2.152026128,-0.356929729,-0.458454078,1,CMIP5 -1961,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.135892634,-2.460240443,4.035794221,-0.592414197,-1.333270527,1,CMIP5 -1961,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.217492679,-0.046890666,0.498557293,0.220768996,0.209191631,1,CMIP5 -1961,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.994271719,-2.408022413,3.526785573,-0.803793786,-1.529995469,1,CMIP5 -1962,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.478815146,-2.196869677,7.793484636,1.834835898,0.906025421,1,CMIP5 -1962,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.319183343,-0.293506708,0.516883654,0.172628806,0.231394082,1,CMIP5 -1962,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.185778747,-1.901803976,7.118506582,1.605845944,0.82827698,1,CMIP5 -1963,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.345033733,-5.093969919,3.755046562,-0.532792391,-0.11610752,1,CMIP5 -1963,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.377525681,-0.435706471,0.741582492,0.153370017,0.093337838,1,CMIP5 -1963,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.021537278,-4.747973324,3.319406864,-0.580745366,-0.231338901,1,CMIP5 -1964,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,7.36471566,-4.052011485,19.60473142,2.856494897,1.742833059,1,CMIP5 -1964,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.181405505,0.082337348,0.523875496,0.26553804,0.240060671,1,CMIP5 -1964,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.769314037,-4.123546715,17.68395532,2.38671933,1.398014812,1,CMIP5 -1965,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.093523511,-3.818221957,6.1863748,1.6202682,1.480361168,1,CMIP5 -1965,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.406900889,-0.341031403,0.991115178,0.33746904,0.307329926,1,CMIP5 -1965,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.882962654,-4.175426589,5.145957052,1.27605242,1.522769266,1,CMIP5 -1966,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.545287765,-10.28624777,4.015595799,0.230819348,1.040925845,1,CMIP5 -1966,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.278353056,-0.407077016,0.451070366,0.191033242,0.278599217,1,CMIP5 -1966,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.457879616,-10.09719418,4.407830745,0.104943302,0.706375325,1,CMIP5 -1967,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.887935342,-2.961469221,5.40648175,1.388135313,1.492352634,1,CMIP5 -1967,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.499510077,-0.128181468,1.432853662,0.357327531,0.270637652,1,CMIP5 -1967,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.729893445,-3.161713347,4.226359001,1.089258706,1.279461605,1,CMIP5 -1968,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.993154434,-8.618433928,12.63615847,0.976267189,0.176361208,1,CMIP5 -1968,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.357958224,-0.32642472,0.800243861,0.245499984,0.260393054,1,CMIP5 -1968,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.503159806,-8.491726598,11.11238665,0.689202698,-0.142133469,1,CMIP5 -1969,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.051044837,-4.318016504,5.640170415,1.211258788,1.438275475,1,CMIP5 -1969,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.616526261,-0.316843541,1.735458292,0.343782244,0.137297396,1,CMIP5 -1969,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.664361702,-3.994803535,4.282976724,0.897536741,1.058913543,1,CMIP5 -1970,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.464726913,-3.793587177,4.64033363,0.667721707,1.114362738,1,CMIP5 -1970,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.38157575,-0.430845178,0.735277724,0.168766073,0.072009254,1,CMIP5 -1970,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.255522844,-3.362743089,4.035862071,0.533227045,0.968034819,1,CMIP5 -1971,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.227640919,-2.367021815,7.537706095,0.229117814,-0.438929843,1,CMIP5 -1971,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.661461535,-0.783095681,1.331535849,0.168025693,0.150062275,1,CMIP5 -1971,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.958124209,-3.300904618,6.611067178,0.060503618,-0.2725756,1,CMIP5 -1972,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.463049872,-3.785528373,3.678134077,0.966595863,1.496994273,1,CMIP5 -1972,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.387435156,-0.108670128,0.826794062,0.306825997,0.282727118,1,CMIP5 -1972,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.196469971,-3.669125465,3.147287686,0.669987724,1.16617351,1,CMIP5 -1973,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.038986209,-5.391768382,3.79444562,-0.286498841,0.071889562,1,CMIP5 -1973,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.256207339,-0.301573499,0.491850291,0.141668242,0.171446674,1,CMIP5 -1973,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.7828027,-5.081047018,3.313853529,-0.438631599,-0.289516051,1,CMIP5 -1974,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.1902781,-9.149080254,5.570613064,-0.933384907,-0.620275886,1,CMIP5 -1974,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.513844405,-0.025452705,1.207796808,0.464739531,0.299157235,1,CMIP5 -1974,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.160670775,-9.69449176,4.823958322,-1.225954439,-0.808484337,1,CMIP5 -1975,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.161512741,-11.14369992,9.170370707,0.154064459,1.678632948,1,CMIP5 -1975,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.537293644,-0.159103109,1.453047673,0.39644204,0.155335466,1,CMIP5 -1975,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.650347986,-10.85426068,7.636030479,-0.192257021,1.390606797,1,CMIP5 -1976,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.839208235,-6.832656689,16.42020137,1.367252964,0.249987356,1,CMIP5 -1976,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.381313429,-0.348483059,0.811699071,0.159310432,0.069133856,1,CMIP5 -1976,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.499534084,-7.189241821,15.12214031,1.05918863,0.236388851,1,CMIP5 -1977,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.212336312,-8.214899217,9.145669289,1.633143171,2.432246033,1,CMIP5 -1977,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.471932529,-0.191059581,0.87564005,0.347411827,0.312214595,1,CMIP5 -1977,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.969562469,-8.535333556,8.021027876,1.287044133,2.012676951,1,CMIP5 -1978,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.804388468,-1.740290034,9.107825739,2.28658622,0.94245833,1,CMIP5 -1978,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.309074449,-0.005043132,0.767473573,0.353520974,0.343966623,1,CMIP5 -1978,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.52114373,-1.814842315,7.977044612,1.884907821,0.656905188,1,CMIP5 -1979,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.405088231,-1.544563061,12.77274495,2.185689951,1.060144209,1,CMIP5 -1979,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.296343383,0.126961669,1.008131278,0.444922444,0.380703433,1,CMIP5 -1979,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.962648437,-1.684779717,11.13462883,1.667555332,0.782332534,1,CMIP5 -1980,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.268874131,-3.059585756,6.596309591,2.016173667,1.736274344,1,CMIP5 -1980,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.415746889,0.031352552,1.235996848,0.549768221,0.451598383,1,CMIP5 -1980,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.078990793,-3.717131927,5.398915836,1.513552902,1.546379547,1,CMIP5 -1981,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.753195259,-5.030591832,7.664911317,0.832124128,-1.387073294,1,CMIP5 -1981,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.41643437,-0.039744539,1.017953863,0.453014476,0.378534062,1,CMIP5 -1981,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.535055042,-5.584157433,6.479011332,0.40509969,-1.49086932,1,CMIP5 -1982,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.085203533,-9.437348743,2.782040174,-0.033850043,1.566398902,1,CMIP5 -1982,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.225445033,0.057932266,0.676000951,0.346926378,0.263056811,1,CMIP5 -1982,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.84712194,-9.228079327,2.333550913,-0.343490299,1.110545818,1,CMIP5 -1983,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.880813282,0.449397128,6.469236309,3.484629508,3.523474154,1,CMIP5 -1983,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.44284301,0.079034903,1.260987574,0.588086338,0.629450068,1,CMIP5 -1983,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.593175151,0.370362324,5.785522483,2.929289244,2.851465704,1,CMIP5 -1984,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.200032896,-2.931340934,9.300400603,1.651907918,2.310035424,1,CMIP5 -1984,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.487288111,-0.182874519,1.379862912,0.44382874,0.415693478,1,CMIP5 -1984,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.754987851,-3.406893709,7.790376234,1.200788235,2.036436165,1,CMIP5 -1985,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.302189431,-3.25367452,11.0188494,2.353539023,0.173694308,1,CMIP5 -1985,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.608588604,-0.144793684,1.575407378,0.564702216,0.611587831,1,CMIP5 -1985,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.742489396,-3.10888161,9.636030813,1.751545231,0.183648042,1,CMIP5 -1986,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.558854609,-1.713913123,7.780634467,2.905167102,2.974855733,1,CMIP5 -1986,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.338863363,0.046639887,1.013752794,0.466513503,0.515354053,1,CMIP5 -1986,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.27649106,-1.933322495,6.873098886,2.382321926,2.30020891,1,CMIP5 -1987,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.587906319,-2.093225994,5.906945149,2.795049439,2.789970812,1,CMIP5 -1987,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.345957377,0.069633659,1.104421434,0.449419382,0.468973809,1,CMIP5 -1987,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.353527812,-2.162858979,5.173691511,2.308933751,2.263078275,1,CMIP5 -1988,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.323399183,-2.787048247,10.94059017,2.015836319,1.383462406,1,CMIP5 -1988,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.534071721,-0.370254569,1.253204883,0.477196672,0.462582914,1,CMIP5 -1988,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.170642843,-2.815626493,10.14352461,1.421429579,0.803180409,1,CMIP5 -1989,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.195782678,-1.755863743,10.40133385,3.714033719,3.053863616,1,CMIP5 -1989,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.244823933,0.056586882,0.723856498,0.388370013,0.44184895,1,CMIP5 -1989,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.843216265,-1.888012325,9.432376341,3.218677563,2.479174879,1,CMIP5 -1990,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,7.338836615,-5.110908497,18.95015029,4.186791828,3.924112516,1,CMIP5 -1990,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.47953417,0.044161717,1.279696991,0.54958345,0.49082917,1,CMIP5 -1990,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.861694981,-5.531998003,17.21019864,3.409046516,2.871258943,1,CMIP5 -1991,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.522077558,-0.624283925,10.62829161,3.043128932,1.757169227,1,CMIP5 -1991,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.366441553,0.041598006,1.026743831,0.590322209,0.671200373,1,CMIP5 -1991,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.125200412,-0.711512066,9.172914007,2.412970694,0.99541594,1,CMIP5 -1992,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.765623998,0.008771137,9.381105875,4.919185233,5.427401523,1,CMIP5 -1992,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.398587705,0.047317098,1.06850646,0.69753522,0.893224359,1,CMIP5 -1992,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.368175416,-0.402121375,8.41887031,4.198861983,4.53188442,1,CMIP5 -1993,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.352112632,0.59961308,14.36851186,5.671976224,5.414548508,1,CMIP5 -1993,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.345261149,-0.048028566,0.962934252,0.598314296,0.683880293,1,CMIP5 -1993,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.880415715,0.647641685,12.69718937,4.953751815,4.562154296,1,CMIP5 -1994,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.307265594,1.046267942,9.503118967,4.431162754,3.847353989,1,CMIP5 -1994,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.504557553,-0.080729184,1.472911531,0.539900301,0.520587057,1,CMIP5 -1994,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.015343861,0.741426339,8.758638146,3.916143684,3.167179885,1,CMIP5 -1995,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.109494616,-4.783093009,10.79324512,2.481493832,1.383014285,1,CMIP5 -1995,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.366372268,0.075362009,1.047787294,0.54070089,0.505393172,1,CMIP5 -1995,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.037530148,-5.348155973,10.11829248,1.844719271,0.896918263,1,CMIP5 -1996,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.116968826,-1.049523353,8.374099053,2.784400827,2.593124544,1,CMIP5 -1996,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.455107592,0.075136351,1.376265859,0.606600032,0.509657959,1,CMIP5 -1996,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.720748004,-1.124659663,7.096655511,2.139231447,2.091960747,1,CMIP5 -1997,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.992084956,-1.921792603,6.495693399,2.294887359,1.714909827,1,CMIP5 -1997,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.374422542,0.045090094,0.945236272,0.563673619,0.65448052,1,CMIP5 -1997,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.75149184,-2.542115075,5.546831473,1.762744028,1.282538323,1,CMIP5 -1998,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.646782161,-11.79871243,4.815579048,0.150304469,1.498344409,1,CMIP5 -1998,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.483670958,0.001794041,1.394089081,0.779976989,0.959998453,1,CMIP5 -1998,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,8.589994381,-11.73682059,19.45593283,1.993412798,1.467316992,1,CMIP5 -1999,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.459588096,-1.599895171,11.04742332,2.991616065,2.171725934,1,CMIP5 -1999,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.449200229,0.041869526,1.122227913,0.55311217,0.57607634,1,CMIP5 -1999,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.950392582,-1.641765107,18.85422194,4.458923499,3.066416872,1,CMIP5 -2000,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.238249826,-1.440134587,17.64420519,4.02551939,2.956983109,1,CMIP5 -2000,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.594033883,-0.35052883,1.395837099,0.614521074,0.671881792,1,CMIP5 -2000,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.573604213,-1.646530703,15.6900067,3.255727774,2.087300338,1,CMIP5 -2001,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.501368063,-1.870858305,6.799475533,2.64813124,2.430102232,1,CMIP5 -2001,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.607022092,0.048009241,1.591854578,0.759469964,0.749249375,1,CMIP5 -2001,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.003724189,-1.918868314,5.342565367,1.920767625,1.881761659,1,CMIP5 -2002,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.018930387,-11.45312285,8.66407851,0.823839535,1.706063474,1,CMIP5 -2002,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.386292511,-0.026903502,1.184915106,0.556560423,0.579791851,1,CMIP5 -2002,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.801730137,-11.41316127,7.575472294,0.678174829,1.250251009,1,CMIP5 -2003,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.570751588,-2.555441104,16.95491082,4.940545469,3.38469406,1,CMIP5 -2003,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.505189869,-0.051662292,1.180180888,0.683042034,0.924146198,1,CMIP5 -2003,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.131006072,-2.760938933,15.3827151,4.048891639,2.368513557,1,CMIP5 -2004,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.624171506,-0.122065001,9.794589961,5.645869959,6.801040223,1,CMIP5 -2004,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.513238221,0.012833404,1.449862406,0.843105672,0.968763612,1,CMIP5 -2004,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.182552247,-0.134898421,8.37840832,4.804146191,5.59672612,1,CMIP5 -2005,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.896996142,0.17953535,10.68942864,5.306700566,5.634965306,1,CMIP5 -2005,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.574103742,0.14072608,1.730398636,0.989902072,0.907991452,1,CMIP5 -2005,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.41433226,0.038809341,9.228393333,4.267878509,4.394550295,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/rcp85/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/rcp85/ensemble_mean_model.csv deleted file mode 100644 index 7e858f8e8..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/rcp85/ensemble_mean_model.csv +++ /dev/null @@ -1,3459 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",0.0308151866453465 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",-0.326880577898618 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",0.634005739366679 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",0.0481539502090761 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",-1.23980630472428 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",1.04117133008812 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",1.10064424912206 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",0.501604107548998 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",-0.0149339053211042 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",-0.500447783954739 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",-0.12347401500729 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",1.07253057514365 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",1.55032591142271 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",-1.5138351586876 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",-0.816471471400652 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",1.07234464733872 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",-0.777266732523967 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",0.566115978957238 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",0.229542079561251 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",0.903863276162071 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",0.443306259320246 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",-0.361488984538779 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",-0.0777029585292574 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",1.12521065608893 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",1.52042007228674 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",0.195445320244452 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",-1.71523373989336 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",2.39835993875926 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",2.93500613864227 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",1.16533625075944 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",1.62173702026961 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",0.0159155037513245 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",1.84760111389365 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",1.5162119395474 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",0.575896817467062 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",1.00825704780262 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",1.11857535956151 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",0.348350976443988 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",0.851955048165322 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",1.99132259929387 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",2.32823209210401 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",-0.73268022180155 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",1.32214248505939 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",1.07504135657578 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",0.817649292997894 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",-0.097679146130851 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",2.04648324156622 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",3.16274781675629 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",1.523799235339 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",0.889235712557551 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",2.28813434960527 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",1.4216927939481 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",0.438589760904208 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",2.48847306510775 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",1.29668901682478 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",2.46534449232526 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",0.770404584127278 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",0.406336772247491 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",1.25524513127999 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",3.5937546895708 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",2.67135700440212 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",1.69552581082048 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",0.950916050527436 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",2.33753686985303 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",2.29825044371268 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",2.03220480655971 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",1.97208175793027 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",3.19947805023093 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",1.56809010830412 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",2.630738165368 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",1.43754250390101 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",2.33108505598203 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",0.508253746802742 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",-0.603131392996862 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",2.27399762704077 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",2.95942007773104 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",3.18123828387054 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",0.307567540823061 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",0.457215969150442 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",2.35882722825367 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",2.81152504557354 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",0.673302460869126 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",0.997267594910974 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",0.226527694057399 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",2.10102701791454 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",2.41485442793668 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",1.639658028385 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",-0.00686034670832045 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",0.935708301443675 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",1.49642110063662 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",1.98486936981059 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",1.31976806569827 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",0.276657131215422 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",1.03133432716075 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",2.00790829894489 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.225422724933724 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.0903245654881588 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.242796318198726 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.322222556805217 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.360042009924693 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.249178855983831 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.143480802497045 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.266228477927303 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.492640843428289 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.302950946144843 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",0.258563558616226 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.260802604304896 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.173935654929726 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.251666604813244 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",0.0898059232934948 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.257777011823027 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.223343140313953 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.416464398621831 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.155808946402819 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.350442748103448 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.439341263171875 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",0.359191945444876 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.368174774508159 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.296559505325116 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.382755412291721 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.241105208417165 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.321173686967677 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",0.503368536129885 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",0.400052961604364 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",0.578450403927111 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.33903882265914 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",0.493478798980798 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",0.511347218920099 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.577527013473984 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",0.142755467192744 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",0.347848353467201 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.241553777766581 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",0.536525457625401 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",0.654052955598622 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",0.252864655079241 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.514564009085765 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.431473522384779 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",0.73887374077111 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",0.16540680227702 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",0.388382890384602 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",0.494642456336692 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",0.643417305193042 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",0.407223253185428 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",0.514295262030423 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",0.724108668298031 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.489179229535445 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",0.450083159828588 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",0.283671825059844 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",0.836979614090056 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",0.681211351237871 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",0.723599159757762 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",0.811729583171856 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",0.450026755233734 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",0.339300062068408 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",0.777289104267386 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",0.59419070350955 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",0.934609354829 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",0.723181704627714 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",0.366781186460969 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",0.405031176130817 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",0.741390724963384 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",0.615580587340375 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",0.591288239757551 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",0.646116912459276 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",0.763781787574306 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",0.473717185211477 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",0.509256025512283 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",0.661553977605522 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",0.728237501312618 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",0.623966355706548 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",0.336692424855851 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",0.759743552008971 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",0.533476686467164 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",0.472930855145293 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",0.464632083225664 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",0.592492380608372 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",0.586602951797047 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",0.582683082524359 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",0.468312241305878 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",0.464047092556143 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",0.56791902700112 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.0353595200115 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",0.656871740494533 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",0.532676813741111 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",0.981420667304038 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",0.226006970951451 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",0.713329033355245 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",0.46547838554679 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",0.594814299373204 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",0.638502181011992 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",-0.194607715434154 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",-0.417204981275366 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",0.391209600831218 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",-0.274068484290826 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",-1.59984835078239 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",0.791992702651844 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",0.957163521455918 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",0.235375587785644 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",-0.50757497024467 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",-0.803398729898286 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",-0.382038292761436 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",0.811727729789351 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",1.37639040646577 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",-1.76550208854177 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",-0.906277400415612 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",0.814567699937537 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",-1.00061012481146 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",0.149651202512547 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",0.0737331685263214 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",0.553420531533346 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",0.00396502439425261 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",-0.720680632231924 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",-0.445877783221105 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",0.828651558570488 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",1.13766475473904 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",-0.0456597157416408 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",-2.03640740576673 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",1.89499191972624 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",2.53495327671467 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",0.586885971411667 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",1.28269792763154 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",-0.477563037016859 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",1.33625354395733 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",0.938684552042102 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",0.433141040641316 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",0.660408519243224 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",0.877021811321002 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",-0.188174704760724 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",0.19790263122294 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",1.73845774872 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",1.81366766499343 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",-1.16415388681127 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",0.583268524102802 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",0.90963430464393 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",0.429266457087567 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",-0.59232123170605 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",1.40306558370431 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",2.75552453997224 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",1.00950364269515 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",0.165127088874428 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",1.79895521856466 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",0.971609329762213 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",0.154918053338357 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",1.65149358400987 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",0.615477813101772 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",1.74174497251264 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",-0.0413247036711469 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",-0.0436902453372858 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",0.915944828928894 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",2.81646559046665 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",2.07716622871099 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",0.760916798676774 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",0.227734401399136 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",1.97075542017909 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",1.89321889864492 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",1.29081396835455 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",1.35650122001449 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",2.60818991650953 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",0.921973038324149 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",1.86695584471965 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",0.963825455516393 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",1.82182908583212 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",-0.153300125789033 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",-1.33136880701345 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",1.65003130626492 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",2.62272762953103 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",2.42149457690388 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",-0.225909029496989 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",-0.0157146682796259 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",1.89419538557857 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",2.21903256154292 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",0.0866997197381125 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",0.414584645563865 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",-0.241784723993526 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",1.63697998499705 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",1.84693560155894 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",0.604298707726421 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",-0.663732499598764 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",0.403031320583602 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",0.515000181881244 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",1.75886203275406 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",0.606439105463828 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",-0.188821338139199 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",0.43652019576506 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",1.36940636673967 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",2.41975465421499 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",2.01512819656898 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",-0.272131395487103 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",2.03590087335975 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",-0.793102215386069 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",2.47353294933235 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",2.7021562515585 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",1.77269397573315 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",-0.416441983228055 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",-1.96647631626748 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",-0.969569434400024 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",7.94952035605163 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",0.0142656076366208 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",1.11268214290866 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",2.53797103452967 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",0.429628949435147 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",0.873228867142418 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",6.83367019495035 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",-5.09430032832935 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",-0.622164189433951 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",9.3181975105414 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",-1.85092689414694 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",-1.64412664488814 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",6.45167588555013 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",9.33344002914674 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",-3.96815229849534 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",-1.02805479813229 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",8.43311966019906 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",2.63169579514354 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",7.46548513774821 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",-4.21520463572163 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",0.366611204458233 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",6.30638296284587 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",1.02255938439619 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",1.65748556394864 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",6.42782285595974 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",2.67272802468169 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",-3.3313557094205 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",-0.0088330266634774 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",-0.0637453999095322 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",7.38817552090464 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",9.72652521716492 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",-0.654227042864543 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",0.978950918281609 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",1.51362568892542 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",8.50093085235241 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",3.0421226455809 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",7.31821210313986 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",13.6060663015477 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",2.52873480174877 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",-0.852195285273793 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",2.8541471319952 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",8.44252157253002 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",2.98231232800996 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",1.58889728644934 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",0.372962361113078 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",13.6541278479184 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",2.98171555992189 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",4.81478123344899 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",4.27497795688818 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",7.72036623584957 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",-0.48087476024561 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",-2.86334154275376 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",3.41574611635489 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",11.9942294749883 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",4.15156599456683 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",3.53250998566275 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",5.66486370232471 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",6.25256927986344 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",11.2464420642285 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",-1.45840244293604 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",7.7196086138294 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",0.040949116311436 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",-0.765604074840472 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",-0.141277349058041 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",8.66992881902953 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",3.53528793307004 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",0.613240174135245 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",7.96180637938505 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",8.06425103165781 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",2.83960754507312 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",1.73902403066699 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",1.93930165297933 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",1.84578921955582 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",4.1113492944644 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",3.74658565827021 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",2.27311860117773 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",3.0277197845011 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",4.68198666126852 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",2.34227614074272 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",-1.65364437205021 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",11.4013653118473 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",6.08099121611552 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",-4.84512311066009 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",4.65792291302709 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.0916772590261752 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.486012430387607 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.829880369478792 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.418390980634653 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.536135103281346 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.194498342960117 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.569662980908451 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.0586089821686493 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.781720237352636 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.643776094593922 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",-0.03981511270687 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.37673678114093 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.511619693238546 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.727125813358208 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",0.706303023947779 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.456689360266934 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.712188268133875 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.423724799021921 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.173587176789585 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.0407077685188929 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.62567922139657 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",-0.0188925048225929 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.216269703650363 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.124744762995789 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.38552821715955 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.341605755625371 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.323079037843056 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",-0.136228777490714 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",0.424111540242555 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.39299223353841 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.857223954750732 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.01324178406943 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",0.631132837410214 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.0581566941077772 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",-0.275627049403137 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",0.475990749548842 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.153819884728967 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",0.283809524549216 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",-0.323631949964793 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",-0.350371790871547 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.207970106259143 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.380346167690459 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",-0.0752291341040921 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.06907074787116 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",0.547614866892754 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",0.619623347340648 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",0.256408329401365 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.23663611712587 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",0.837556038239737 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",0.796451778221934 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.615503260239966 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",0.695685922152112 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",0.689534923430084 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",0.10854975886492 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",0.137580290910862 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",-0.223735771154837 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",0.284520581428352 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",0.0259144382336675 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",0.44166679737227 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",-0.640870630573571 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",-0.227135526721437 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",-0.620807946698239 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",-0.187464408977884 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",-0.330015112325033 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",0.30777734350629 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",0.195037997081515 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",0.402506647717992 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",-0.602513095289556 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",-0.0595989029517647 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",-0.140550945053953 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",0.216830671642261 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",0.0699548875389728 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",-0.162195641305989 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",-0.360842638493077 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",0.0269866061812141 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",-0.125013222639413 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",0.182881599829517 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",-0.102053606237221 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",-0.935226180956998 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",-0.885239357977041 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",0.488418192646324 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",-0.97826771425295 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",-1.1275266387803 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",-0.852480206557899 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",0.0986638684870207 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",-0.91734452731671 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",-0.555999214416183 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",-0.961505856291468 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",-0.167772087044741 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",-0.712469480428049 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",-0.495213363716633 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",-0.824571521316377 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",-0.298882295431709 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",-1.42592914917734 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",-0.58493316519957 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",2.32807782179913 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",1.52911681182463 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",-1.10201181303049 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",1.61750984200574 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",-1.32923789202732 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",2.27903483527186 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",2.13249332677326 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",1.71408522656054 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",-1.19816234456973 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",-2.61025234423947 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",-0.929754239980697 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",7.57278339686794 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",-0.49735392040655 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",0.385556340784799 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",1.83166723244009 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",-0.0270602916247799 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",0.161040535546782 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",6.40994495799227 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",-5.26788760118617 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",-0.662871934678394 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",8.69251761251095 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",-1.83203570064185 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",-1.86039726197974 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",6.32693077679206 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",7.94791156303293 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",-4.30975881824767 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",-1.35113355762537 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",8.56934826496694 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",2.20758347472344 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",6.07249364891367 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",-5.07242898853529 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",-0.646630616883998 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",5.67525083426916 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",0.96440270805651 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",1.93311269137691 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",5.95183276994608 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",2.51890763462003 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",-3.61516478732932 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",0.314799037955933 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",0.286626431307985 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",7.18020478647138 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",9.34617889116504 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",-0.578997819504109 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",-0.0901197692089061 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",0.966010724269403 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",7.88130667392123 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",2.78571401711493 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",6.08157553775857 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",12.7685115491464 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",1.73228309739355 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",-1.46769801430716 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",2.1584618117118 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",7.75298663920096 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",2.87376218203958 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",1.45131757026291 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",0.596698192701005 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",13.3696130024223 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",2.95580077483369 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",4.3731143685552 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",4.91584836063206 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",7.9475011340395 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",0.139933208322049 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",-2.67587771112085 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",3.74576119499714 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",11.6864515680403 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",3.95652762895546 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",3.13000231268461 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",6.26737792322872 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",6.31216713450147 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",11.3869918219856 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",-1.67523346730767 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",7.64965294463944 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",0.203144780663195 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",-0.404761532872598 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",-0.168263954703565 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",8.79494259367809 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",3.35240630995487 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",0.715293813954086 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",8.89703319978669 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",8.94948943446055 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",2.35118903908057 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",2.71729170121446 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",3.06682771829112 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",2.69826903857038 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",4.01268559221857 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",4.663930191528 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",2.8291185222629 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",3.98922557585646 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",4.84975880249294 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",3.05474563284254 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",-1.15843124447664 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",12.2259375325878 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",6.37987218311949 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",-3.41919477753007 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",5.24285667768629 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2005,"Simulated","PgC/yr","global",1.20592178755099 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",8.23084820433629 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",4.9461645117558 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",5.2108423465704 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",3.80529994979146 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",2.93351028402919 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",6.6329374091984 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",11.0404132291244 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",11.6556360956519 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",6.01260465005744 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",5.37482747521043 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",6.06179571136039 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",2.72413016196496 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",7.38045726957298 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",5.91971797445259 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",7.81130116704642 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",10.8002768299152 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",7.17907944203206 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",5.29391430029932 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",10.2467881099043 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",8.24247690323583 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",8.8222279885894 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",9.32315551506841 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",10.524470114694 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",1.22107912481902 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",6.40820661634585 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",7.88661131615316 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",6.61252371127893 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",6.57844542750044 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",9.11669912347014 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",5.82919948030881 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",3.55098526755929 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",10.9112124939922 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",10.8336367151808 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",6.66400817839627 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",16.2468959235795 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",11.476527107195 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",10.1288120331569 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",5.86873660078165 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",10.7256589654886 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",7.80216859130242 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",10.9470086872581 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",9.10174225142626 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",11.8812373585369 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",9.08694249135422 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",8.68278374056884 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",11.503376095395 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",13.1232188906649 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",15.8674073718486 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",10.9035204419914 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",10.1625841362667 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",11.9500589708826 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",12.0101563109346 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",9.03928179717641 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",3.10602847888872 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",14.7681500012353 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",13.0283488640919 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",11.2258967811355 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",6.23573555507786 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",18.1497626647367 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",14.3790839197869 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",5.91476299531578 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",5.5037396176353 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",6.80338606939801 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",11.2061163570684 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",10.9405189708167 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",14.1773494668375 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",13.3604472437945 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",8.10061187073567 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",12.7914213294477 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",16.010142928003 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",7.84843628408681 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",10.0179556650472 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",7.79025931615962 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",6.78037064012213 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",4.18108698636301 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",13.2808058179061 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",8.81103081139411 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",5.31452559467485 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",13.5682746116181 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",11.4227100903249 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",6.92486312905327 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",4.34417926723895 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",6.71574895787723 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",12.8567504177297 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",8.72874301397298 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",6.70688808396303 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",13.8519936305208 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",2.01983526365506 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",10.9542885214146 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",16.3552597504721 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",13.0075173180357 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",4.60487093941327 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",11.5400425710169 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",8.62244349361147 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",11.4500885941296 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2101,"Simulated","PgC/yr","global",-4.70915574003402 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2102,"Simulated","PgC/yr","global",-2.08582229183282 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2103,"Simulated","PgC/yr","global",18.0007046922611 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2105,"Simulated","PgC/yr","global",5.98119968278292 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2106,"Simulated","PgC/yr","global",8.08691942833419 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2107,"Simulated","PgC/yr","global",4.84084184714419 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2108,"Simulated","PgC/yr","global",2.44119348561157 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2109,"Simulated","PgC/yr","global",-10.170994720835 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2110,"Simulated","PgC/yr","global",13.8474711650921 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2111,"Simulated","PgC/yr","global",9.82302334006492 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2112,"Simulated","PgC/yr","global",7.63689497424391 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2113,"Simulated","PgC/yr","global",18.0301430787958 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2114,"Simulated","PgC/yr","global",12.540495278977 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2115,"Simulated","PgC/yr","global",-2.45743124920071 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2116,"Simulated","PgC/yr","global",10.0456515403973 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2117,"Simulated","PgC/yr","global",1.17013275279982 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2118,"Simulated","PgC/yr","global",13.644545771223 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2119,"Simulated","PgC/yr","global",9.87879701763564 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2120,"Simulated","PgC/yr","global",8.67019360219649 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2121,"Simulated","PgC/yr","global",17.7006422747575 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2122,"Simulated","PgC/yr","global",7.92827869801226 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2123,"Simulated","PgC/yr","global",6.92119149466056 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2124,"Simulated","PgC/yr","global",14.2991219693893 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2125,"Simulated","PgC/yr","global",-3.33047083989945 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2126,"Simulated","PgC/yr","global",13.3467242101371 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2127,"Simulated","PgC/yr","global",-4.21763924747984 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2128,"Simulated","PgC/yr","global",-0.722961570086399 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2129,"Simulated","PgC/yr","global",14.2756468669467 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2130,"Simulated","PgC/yr","global",7.00966751976481 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2131,"Simulated","PgC/yr","global",4.17181670975084 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2132,"Simulated","PgC/yr","global",-0.496114993742595 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2133,"Simulated","PgC/yr","global",6.52407248627262 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2134,"Simulated","PgC/yr","global",10.3902286591133 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2135,"Simulated","PgC/yr","global",1.33178890692281 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2136,"Simulated","PgC/yr","global",-3.71515172781274 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2137,"Simulated","PgC/yr","global",2.77363812830331 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2138,"Simulated","PgC/yr","global",2.87514586757792 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2139,"Simulated","PgC/yr","global",8.16042852730081 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2140,"Simulated","PgC/yr","global",-3.45104274960152 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2141,"Simulated","PgC/yr","global",-6.00906802203576 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2142,"Simulated","PgC/yr","global",6.37383215237058 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2143,"Simulated","PgC/yr","global",0.88917810027426 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2144,"Simulated","PgC/yr","global",10.5508705562576 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2145,"Simulated","PgC/yr","global",19.5790204608209 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2146,"Simulated","PgC/yr","global",5.45065239391776 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2147,"Simulated","PgC/yr","global",3.98579827995165 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2148,"Simulated","PgC/yr","global",10.3552388041671 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2149,"Simulated","PgC/yr","global",-0.459078607902954 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2150,"Simulated","PgC/yr","global",2.58783525827437 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2151,"Simulated","PgC/yr","global",4.91640037258322 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2152,"Simulated","PgC/yr","global",10.3702057303047 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2153,"Simulated","PgC/yr","global",3.73656775185297 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2154,"Simulated","PgC/yr","global",6.71542039009309 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2155,"Simulated","PgC/yr","global",-1.14564950626747 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2156,"Simulated","PgC/yr","global",-2.80403366456412 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2157,"Simulated","PgC/yr","global",6.72950416463469 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2158,"Simulated","PgC/yr","global",7.99537248083132 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2159,"Simulated","PgC/yr","global",-2.16487964190098 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2160,"Simulated","PgC/yr","global",-2.1307793731708 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2161,"Simulated","PgC/yr","global",8.5727750639367 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2162,"Simulated","PgC/yr","global",6.58237336085131 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2163,"Simulated","PgC/yr","global",-1.02186125175461 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2164,"Simulated","PgC/yr","global",12.0611080451372 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2165,"Simulated","PgC/yr","global",0.467238510400069 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2166,"Simulated","PgC/yr","global",-2.12622527086043 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2167,"Simulated","PgC/yr","global",2.29292053677685 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2168,"Simulated","PgC/yr","global",-3.88615175451423 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2169,"Simulated","PgC/yr","global",-4.95404933424759 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2170,"Simulated","PgC/yr","global",12.7564234312265 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2171,"Simulated","PgC/yr","global",-5.29413026223332 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2172,"Simulated","PgC/yr","global",-3.18445322537739 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2173,"Simulated","PgC/yr","global",-18.6294153266519 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2174,"Simulated","PgC/yr","global",-5.39913843479205 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2175,"Simulated","PgC/yr","global",0.597512057553076 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2176,"Simulated","PgC/yr","global",-0.0266961445260573 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2177,"Simulated","PgC/yr","global",10.4767212126002 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2178,"Simulated","PgC/yr","global",-3.45701568562356 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2179,"Simulated","PgC/yr","global",12.9375209853749 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2180,"Simulated","PgC/yr","global",7.00503941932436 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2181,"Simulated","PgC/yr","global",-8.01041662240905 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2182,"Simulated","PgC/yr","global",-0.846860017466894 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2183,"Simulated","PgC/yr","global",-0.253088565389726 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2184,"Simulated","PgC/yr","global",-3.97763274716203 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2185,"Simulated","PgC/yr","global",-13.1797023872553 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2186,"Simulated","PgC/yr","global",3.20586924941762 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2187,"Simulated","PgC/yr","global",2.83052982110034 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2188,"Simulated","PgC/yr","global",7.8067850289941 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2189,"Simulated","PgC/yr","global",0.588887897222414 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2190,"Simulated","PgC/yr","global",1.74051323509093 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2191,"Simulated","PgC/yr","global",-5.43268050023658 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2192,"Simulated","PgC/yr","global",4.33944982153337 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2193,"Simulated","PgC/yr","global",5.27720077699337 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2194,"Simulated","PgC/yr","global",3.46157783120894 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2195,"Simulated","PgC/yr","global",3.59186119115746 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2196,"Simulated","PgC/yr","global",6.04889671122769 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2197,"Simulated","PgC/yr","global",0.51653702985716 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2198,"Simulated","PgC/yr","global",1.99621859957224 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2199,"Simulated","PgC/yr","global",0.910797940903235 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2200,"Simulated","PgC/yr","global",9.53375338896906 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2201,"Simulated","PgC/yr","global",2.50606088990801 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2202,"Simulated","PgC/yr","global",-12.4019193024938 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2203,"Simulated","PgC/yr","global",5.51786199989695 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2204,"Simulated","PgC/yr","global",-6.17175934565247 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2205,"Simulated","PgC/yr","global",5.98356440563571 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2206,"Simulated","PgC/yr","global",-6.90656882069333 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2207,"Simulated","PgC/yr","global",-7.00482225089911 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2208,"Simulated","PgC/yr","global",0.411442311659321 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2209,"Simulated","PgC/yr","global",-1.97855556765142 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2210,"Simulated","PgC/yr","global",-12.3533298781615 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2211,"Simulated","PgC/yr","global",-11.399017819457 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2212,"Simulated","PgC/yr","global",-4.94016503292622 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2213,"Simulated","PgC/yr","global",-0.0586643180032769 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2214,"Simulated","PgC/yr","global",11.0718238266914 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2215,"Simulated","PgC/yr","global",-7.61859169763234 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2216,"Simulated","PgC/yr","global",0.663168024531441 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2217,"Simulated","PgC/yr","global",-0.878429228417094 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2218,"Simulated","PgC/yr","global",3.76101609057178 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2219,"Simulated","PgC/yr","global",8.97303577554334 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2220,"Simulated","PgC/yr","global",7.22636782641516 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2221,"Simulated","PgC/yr","global",8.07167903084623 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2222,"Simulated","PgC/yr","global",6.79195697777328 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2223,"Simulated","PgC/yr","global",-7.24271336988942 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2224,"Simulated","PgC/yr","global",5.97427603165477 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2225,"Simulated","PgC/yr","global",3.89594363751077 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2226,"Simulated","PgC/yr","global",0.820492070734324 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2227,"Simulated","PgC/yr","global",-5.79572176106437 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2228,"Simulated","PgC/yr","global",-4.50797412818696 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2229,"Simulated","PgC/yr","global",1.36965921951543 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2230,"Simulated","PgC/yr","global",2.80399023087907 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2231,"Simulated","PgC/yr","global",-8.80382939916896 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2232,"Simulated","PgC/yr","global",-2.2793772703159 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2233,"Simulated","PgC/yr","global",4.38700809800941 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2234,"Simulated","PgC/yr","global",-7.30783011571115 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2235,"Simulated","PgC/yr","global",-3.50761592870819 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2236,"Simulated","PgC/yr","global",2.39463740120171 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2237,"Simulated","PgC/yr","global",1.77651171672335 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2238,"Simulated","PgC/yr","global",6.32722941696567 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2239,"Simulated","PgC/yr","global",-1.71378543223443 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2240,"Simulated","PgC/yr","global",-1.45659704870688 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2241,"Simulated","PgC/yr","global",2.69278069328803 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2242,"Simulated","PgC/yr","global",-4.01067773821097 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2243,"Simulated","PgC/yr","global",-11.8794185059481 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2244,"Simulated","PgC/yr","global",-6.80871755423803 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2245,"Simulated","PgC/yr","global",-13.9463905784687 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2246,"Simulated","PgC/yr","global",-0.958422654830854 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2247,"Simulated","PgC/yr","global",3.31890621909082 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2248,"Simulated","PgC/yr","global",8.87602100968903 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2249,"Simulated","PgC/yr","global",-1.86741037626046 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2250,"Simulated","PgC/yr","global",-0.914701503130835 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2251,"Simulated","PgC/yr","global",-2.5227732067227 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2252,"Simulated","PgC/yr","global",-4.36341395509661 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2253,"Simulated","PgC/yr","global",-8.15932820727951 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2254,"Simulated","PgC/yr","global",-8.00415251983166 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2255,"Simulated","PgC/yr","global",-4.58584589951871 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2256,"Simulated","PgC/yr","global",0.195736153800145 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2257,"Simulated","PgC/yr","global",4.36024651339788 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2258,"Simulated","PgC/yr","global",4.08763096753665 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2259,"Simulated","PgC/yr","global",4.93767483498329 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2260,"Simulated","PgC/yr","global",-11.2003344488279 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2261,"Simulated","PgC/yr","global",0.0317197006256268 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2262,"Simulated","PgC/yr","global",-12.1488103071855 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2263,"Simulated","PgC/yr","global",1.20620603688983 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2264,"Simulated","PgC/yr","global",-12.7075701874739 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2265,"Simulated","PgC/yr","global",18.9868745546231 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2266,"Simulated","PgC/yr","global",3.29731485165538 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2267,"Simulated","PgC/yr","global",-10.4788333766177 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2268,"Simulated","PgC/yr","global",6.96317899886504 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2269,"Simulated","PgC/yr","global",2.55301913806834 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2270,"Simulated","PgC/yr","global",7.51803628211885 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2271,"Simulated","PgC/yr","global",17.4725189089387 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2272,"Simulated","PgC/yr","global",-4.72700054997004 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2273,"Simulated","PgC/yr","global",-4.86508427802275 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2274,"Simulated","PgC/yr","global",-4.01547796473662 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2275,"Simulated","PgC/yr","global",7.4835402842582 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2276,"Simulated","PgC/yr","global",2.0267396109232 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2277,"Simulated","PgC/yr","global",-14.6991365567807 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2278,"Simulated","PgC/yr","global",2.75729580213905 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2279,"Simulated","PgC/yr","global",3.25607858933679 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2280,"Simulated","PgC/yr","global",10.7852998496838 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2281,"Simulated","PgC/yr","global",-7.49904450116647 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2282,"Simulated","PgC/yr","global",-6.67135611228117 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2283,"Simulated","PgC/yr","global",9.60496371993797 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2284,"Simulated","PgC/yr","global",9.0626201639439 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2285,"Simulated","PgC/yr","global",3.24818491924249 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2286,"Simulated","PgC/yr","global",7.19298340916083 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2287,"Simulated","PgC/yr","global",4.17352671001786 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2288,"Simulated","PgC/yr","global",-3.17084561271635 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2289,"Simulated","PgC/yr","global",-1.25447919964871 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2290,"Simulated","PgC/yr","global",-6.17158239360226 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2291,"Simulated","PgC/yr","global",2.49099905312526 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2292,"Simulated","PgC/yr","global",-12.594777733361 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2293,"Simulated","PgC/yr","global",-6.52356415129202 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2294,"Simulated","PgC/yr","global",-8.30707029996361 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2295,"Simulated","PgC/yr","global",14.146092227714 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2296,"Simulated","PgC/yr","global",3.73968532524664 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2297,"Simulated","PgC/yr","global",-1.86557329224829 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2298,"Simulated","PgC/yr","global",-0.262678723049027 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2299,"Simulated","PgC/yr","global",0.00711581301140989 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2005,"Simulated","PgC/yr","HL",-2.3654648762037 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",1.72460734904801 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.67152605956312 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.78738083019269 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",1.91207935984592 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.79356402004174 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.96393231811544 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.81491094933929 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.74602297460281 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.74127886976603 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",2.00362024519114 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.76137858202063 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.9350734944707 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",2.06798088827499 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",2.24885271617052 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",2.05732928152625 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",2.43576123707734 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",2.06240603275221 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.92011358652373 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.90117915240281 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",2.41006319368959 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",2.05565829961929 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.95651041360797 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",2.82573950605294 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",2.46114393981434 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",2.36313770584166 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",2.61478925140884 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",2.26797074160325 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",2.44543965938874 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",2.68868347529784 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",2.59615021871835 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",2.59012714457076 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",2.85498108748591 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",3.13136283420971 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",2.44782190714433 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",2.88928399546494 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",2.78152484926336 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",3.02827668883276 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",3.28908823698246 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.80261211724242 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",3.32163656881379 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",3.30593823253312 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.90192779367398 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",3.02144746824464 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",2.98811435879762 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",3.13542403956039 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",3.57514960989511 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",3.73723222138768 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",3.62128294637794 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",3.37585371667707 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",3.57123926543796 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",3.26730663268147 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",4.25585803903691 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",4.17462490294246 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",3.75104438266639 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",4.14186137801614 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",3.93818261844002 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",3.61959909803069 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",4.18431536402841 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",4.11721048228684 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",3.20783267867044 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",4.01483048627934 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",4.45456779441925 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",3.97637788795672 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",4.00859816318168 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",3.92870358833204 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",3.91063489258565 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",3.42354614970591 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",3.98292848615645 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",4.06083741562943 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",4.34907577519166 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",4.17589348881022 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",4.32077035896431 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",4.65409091950684 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",3.58569407155039 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",3.95306028650838 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",4.11835642313892 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",3.84061813225083 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",4.03865973564588 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",4.05556969934224 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",4.31331233813321 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",4.03101887592636 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",4.11929319028326 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",3.9330360423217 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",3.81440896764127 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",4.31349216732798 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",4.21717971369155 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",4.27735176614157 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",4.86423600586085 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",4.57295484603218 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",4.4454386411965 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",4.21150644118686 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",4.29713222514368 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",3.86793034957815 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",3.72071126059384 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",3.98441376996603 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2101,"Simulated","PgC/yr","HL",4.85244778831031 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2102,"Simulated","PgC/yr","HL",4.58551505000047 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2103,"Simulated","PgC/yr","HL",3.16254995685161 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2104,"Simulated","PgC/yr","HL",5.40247832945134 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2105,"Simulated","PgC/yr","HL",4.23369992206199 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2106,"Simulated","PgC/yr","HL",4.04568436059334 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2107,"Simulated","PgC/yr","HL",3.6189760162056 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2108,"Simulated","PgC/yr","HL",4.27866173529683 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2109,"Simulated","PgC/yr","HL",3.59189178317124 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2110,"Simulated","PgC/yr","HL",4.5020411969937 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2111,"Simulated","PgC/yr","HL",4.100888161273 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2112,"Simulated","PgC/yr","HL",4.73738419089543 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2113,"Simulated","PgC/yr","HL",3.88429856841995 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2114,"Simulated","PgC/yr","HL",4.78699297110493 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2115,"Simulated","PgC/yr","HL",4.36576828852279 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2116,"Simulated","PgC/yr","HL",3.53337430979786 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2117,"Simulated","PgC/yr","HL",2.39689653645356 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2118,"Simulated","PgC/yr","HL",2.86795422142112 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2119,"Simulated","PgC/yr","HL",3.80224529080958 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2120,"Simulated","PgC/yr","HL",3.71106662209351 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2121,"Simulated","PgC/yr","HL",3.26063286276968 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2122,"Simulated","PgC/yr","HL",2.28793328707038 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2123,"Simulated","PgC/yr","HL",4.74739744162388 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2124,"Simulated","PgC/yr","HL",5.06057412265768 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2125,"Simulated","PgC/yr","HL",2.5166874596632 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2126,"Simulated","PgC/yr","HL",2.71623255551434 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2127,"Simulated","PgC/yr","HL",4.37419242101119 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2128,"Simulated","PgC/yr","HL",4.564417097609 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2129,"Simulated","PgC/yr","HL",4.17277168408582 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2130,"Simulated","PgC/yr","HL",2.10077247859448 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2131,"Simulated","PgC/yr","HL",5.06346944793594 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2132,"Simulated","PgC/yr","HL",3.57744826340995 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2133,"Simulated","PgC/yr","HL",1.79628357921163 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2134,"Simulated","PgC/yr","HL",3.46745299007883 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2135,"Simulated","PgC/yr","HL",4.52501117882703 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2136,"Simulated","PgC/yr","HL",2.35530106555108 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2137,"Simulated","PgC/yr","HL",2.80167324331253 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2138,"Simulated","PgC/yr","HL",1.81595283003388 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2139,"Simulated","PgC/yr","HL",4.1935235217091 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2140,"Simulated","PgC/yr","HL",3.0106025639221 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2141,"Simulated","PgC/yr","HL",2.79346671167404 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2142,"Simulated","PgC/yr","HL",3.8006200562459 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2143,"Simulated","PgC/yr","HL",2.03173371820682 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2144,"Simulated","PgC/yr","HL",2.56137870144012 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2145,"Simulated","PgC/yr","HL",3.54544920066727 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2146,"Simulated","PgC/yr","HL",3.07420942923471 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2147,"Simulated","PgC/yr","HL",3.5098324861736 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2148,"Simulated","PgC/yr","HL",3.57613302729082 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2149,"Simulated","PgC/yr","HL",3.35462860472946 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2150,"Simulated","PgC/yr","HL",2.89100245528901 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2151,"Simulated","PgC/yr","HL",2.59946396665441 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2152,"Simulated","PgC/yr","HL",3.08781324447144 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2153,"Simulated","PgC/yr","HL",3.15843871534423 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2154,"Simulated","PgC/yr","HL",2.72389102194164 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2155,"Simulated","PgC/yr","HL",4.33905725749935 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2156,"Simulated","PgC/yr","HL",2.07894888906726 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2157,"Simulated","PgC/yr","HL",2.95443897194179 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2158,"Simulated","PgC/yr","HL",3.80484265641783 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2159,"Simulated","PgC/yr","HL",3.92746660424746 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2160,"Simulated","PgC/yr","HL",3.18707895998863 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2161,"Simulated","PgC/yr","HL",4.70630007501823 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2162,"Simulated","PgC/yr","HL",3.87138999241324 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2163,"Simulated","PgC/yr","HL",3.11073808090023 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2164,"Simulated","PgC/yr","HL",3.49772749836782 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2165,"Simulated","PgC/yr","HL",3.31104222148648 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2166,"Simulated","PgC/yr","HL",4.02446602045641 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2167,"Simulated","PgC/yr","HL",1.84207426207394 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2168,"Simulated","PgC/yr","HL",3.20004772986807 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2169,"Simulated","PgC/yr","HL",1.73180089305082 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2170,"Simulated","PgC/yr","HL",4.40743448722572 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2171,"Simulated","PgC/yr","HL",1.70145746277756 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2172,"Simulated","PgC/yr","HL",2.09228122993798 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2173,"Simulated","PgC/yr","HL",1.96294596626844 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2174,"Simulated","PgC/yr","HL",2.66210050673863 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2175,"Simulated","PgC/yr","HL",3.96683941639942 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2176,"Simulated","PgC/yr","HL",2.78505491892954 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2177,"Simulated","PgC/yr","HL",4.54367127937299 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2178,"Simulated","PgC/yr","HL",1.73562922335638 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2179,"Simulated","PgC/yr","HL",4.36351101829545 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2180,"Simulated","PgC/yr","HL",4.29323166219085 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2181,"Simulated","PgC/yr","HL",3.68887013152474 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2182,"Simulated","PgC/yr","HL",3.06428646931535 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2183,"Simulated","PgC/yr","HL",2.33764590171034 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2184,"Simulated","PgC/yr","HL",3.56664346325511 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2185,"Simulated","PgC/yr","HL",2.43092082204419 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2186,"Simulated","PgC/yr","HL",4.01228579030973 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2187,"Simulated","PgC/yr","HL",2.82400185943195 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2188,"Simulated","PgC/yr","HL",2.34981078241948 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2189,"Simulated","PgC/yr","HL",2.36617448672083 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2190,"Simulated","PgC/yr","HL",5.13655985789698 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2191,"Simulated","PgC/yr","HL",3.26689904492076 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2192,"Simulated","PgC/yr","HL",3.1480552722985 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2193,"Simulated","PgC/yr","HL",2.76238410064367 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2194,"Simulated","PgC/yr","HL",3.89548860936025 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2195,"Simulated","PgC/yr","HL",2.64170020133208 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2196,"Simulated","PgC/yr","HL",4.46789020330097 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2197,"Simulated","PgC/yr","HL",3.94786329802164 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2198,"Simulated","PgC/yr","HL",2.10906267971606 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2199,"Simulated","PgC/yr","HL",2.09803516223213 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2200,"Simulated","PgC/yr","HL",3.17422756816101 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2201,"Simulated","PgC/yr","HL",3.84553070468892 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2202,"Simulated","PgC/yr","HL",2.92954429102794 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2203,"Simulated","PgC/yr","HL",3.50916433418631 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2204,"Simulated","PgC/yr","HL",3.37701470599733 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2205,"Simulated","PgC/yr","HL",2.94707124191977 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2206,"Simulated","PgC/yr","HL",2.55388667107092 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2207,"Simulated","PgC/yr","HL",3.98600815516993 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2208,"Simulated","PgC/yr","HL",2.49140031469917 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2209,"Simulated","PgC/yr","HL",1.15159546448016 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2210,"Simulated","PgC/yr","HL",2.8439326526312 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2211,"Simulated","PgC/yr","HL",2.13509622870194 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2212,"Simulated","PgC/yr","HL",3.3142234676602 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2213,"Simulated","PgC/yr","HL",1.96555145804951 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2214,"Simulated","PgC/yr","HL",3.22712594351515 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2215,"Simulated","PgC/yr","HL",1.65766040098002 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2216,"Simulated","PgC/yr","HL",2.24851382466705 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2217,"Simulated","PgC/yr","HL",1.80865342005741 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2218,"Simulated","PgC/yr","HL",2.31266514355849 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2219,"Simulated","PgC/yr","HL",3.07563301432475 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2220,"Simulated","PgC/yr","HL",2.88556694858159 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2221,"Simulated","PgC/yr","HL",3.52736395160588 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2222,"Simulated","PgC/yr","HL",4.3039130649066 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2223,"Simulated","PgC/yr","HL",2.03165456326418 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2224,"Simulated","PgC/yr","HL",2.7583505092321 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2225,"Simulated","PgC/yr","HL",3.95922188180558 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2226,"Simulated","PgC/yr","HL",2.10910782512061 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2227,"Simulated","PgC/yr","HL",4.35476183889431 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2228,"Simulated","PgC/yr","HL",2.34967233651221 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2229,"Simulated","PgC/yr","HL",1.56569800804103 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2230,"Simulated","PgC/yr","HL",1.47392010932194 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2231,"Simulated","PgC/yr","HL",1.19444447278222 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2232,"Simulated","PgC/yr","HL",2.26452479287421 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2233,"Simulated","PgC/yr","HL",2.54832024269032 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2234,"Simulated","PgC/yr","HL",1.93236446922853 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2235,"Simulated","PgC/yr","HL",1.80083303211248 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2236,"Simulated","PgC/yr","HL",2.82640991531047 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2237,"Simulated","PgC/yr","HL",2.01468621151127 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2238,"Simulated","PgC/yr","HL",2.62888312001192 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2239,"Simulated","PgC/yr","HL",1.30243980469191 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2240,"Simulated","PgC/yr","HL",2.645389784761 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2241,"Simulated","PgC/yr","HL",3.5327001384233 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2242,"Simulated","PgC/yr","HL",1.20634209269644 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2243,"Simulated","PgC/yr","HL",3.65839397376211 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2244,"Simulated","PgC/yr","HL",2.67386208850049 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2245,"Simulated","PgC/yr","HL",3.03224527086177 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2246,"Simulated","PgC/yr","HL",2.70667858403482 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2247,"Simulated","PgC/yr","HL",1.8759601017573 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2248,"Simulated","PgC/yr","HL",2.66425033090314 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2249,"Simulated","PgC/yr","HL",2.19263254194984 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2250,"Simulated","PgC/yr","HL",2.19040958222996 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2251,"Simulated","PgC/yr","HL",1.71227911721675 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2252,"Simulated","PgC/yr","HL",2.7235130044209 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2253,"Simulated","PgC/yr","HL",3.09920493488538 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2254,"Simulated","PgC/yr","HL",3.40107419692706 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2255,"Simulated","PgC/yr","HL",4.89357224215868 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2256,"Simulated","PgC/yr","HL",5.04942320773466 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2257,"Simulated","PgC/yr","HL",4.79329526957964 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2258,"Simulated","PgC/yr","HL",5.13507607893421 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2259,"Simulated","PgC/yr","HL",5.79484606944726 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2260,"Simulated","PgC/yr","HL",4.50642933031563 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2261,"Simulated","PgC/yr","HL",4.32239258383436 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2262,"Simulated","PgC/yr","HL",2.50435223029424 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2263,"Simulated","PgC/yr","HL",2.6105787652538 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2264,"Simulated","PgC/yr","HL",2.95198908132172 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2265,"Simulated","PgC/yr","HL",4.22330444024172 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2266,"Simulated","PgC/yr","HL",3.60424055616157 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2267,"Simulated","PgC/yr","HL",1.61369419440012 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2268,"Simulated","PgC/yr","HL",3.81938850576276 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2269,"Simulated","PgC/yr","HL",4.09576867239741 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2270,"Simulated","PgC/yr","HL",3.6365255397997 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2271,"Simulated","PgC/yr","HL",3.18116792168665 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2272,"Simulated","PgC/yr","HL",0.915153029493041 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2273,"Simulated","PgC/yr","HL",1.49613104642017 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2274,"Simulated","PgC/yr","HL",3.11168312470207 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2275,"Simulated","PgC/yr","HL",2.41523068717868 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2276,"Simulated","PgC/yr","HL",2.57657976108971 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2277,"Simulated","PgC/yr","HL",2.18540355880446 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2278,"Simulated","PgC/yr","HL",3.23499027298718 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2279,"Simulated","PgC/yr","HL",4.54269312894114 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2280,"Simulated","PgC/yr","HL",2.66334471408793 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2281,"Simulated","PgC/yr","HL",1.67729925389655 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2282,"Simulated","PgC/yr","HL",0.330282575785899 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2283,"Simulated","PgC/yr","HL",1.33844507063406 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2284,"Simulated","PgC/yr","HL",2.24418949685021 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2285,"Simulated","PgC/yr","HL",2.53036862402639 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2286,"Simulated","PgC/yr","HL",2.26102241238948 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2287,"Simulated","PgC/yr","HL",0.581017443913767 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2288,"Simulated","PgC/yr","HL",2.09673256682628 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2289,"Simulated","PgC/yr","HL",1.07612920236252 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2290,"Simulated","PgC/yr","HL",0.595877806243709 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2291,"Simulated","PgC/yr","HL",1.82070092271474 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2292,"Simulated","PgC/yr","HL",0.963433932870147 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2293,"Simulated","PgC/yr","HL",1.80222320960315 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2294,"Simulated","PgC/yr","HL",1.13305063520049 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2295,"Simulated","PgC/yr","HL",2.48272968830194 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2296,"Simulated","PgC/yr","HL",1.4524742363461 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2297,"Simulated","PgC/yr","HL",0.946979335820981 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2298,"Simulated","PgC/yr","HL",0.689569268176844 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2299,"Simulated","PgC/yr","HL",2.2752934767054 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2005,"Simulated","PgC/yr","LL",4.14772290679615 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",6.50834321289012 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",3.28397449040185 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",3.43363258440616 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",1.90836046029135 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",1.15567848217021 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",4.67799631393024 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",9.22198786946672 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",9.90374074313297 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",4.27898083281119 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",3.38373186665711 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",4.30820971747722 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",0.80709190667765 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",5.32099107784621 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",3.68519433931941 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",5.7613134883921 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",8.36947028852255 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",5.12560389640738 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",3.38546148124077 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",8.34510073494442 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",9.4082736365576 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",6.77145482468672 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",7.36906493997031 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",7.70930605154483 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",3.93117008311552 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",4.05967544514928 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",5.28606698522775 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",4.68337738429791 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",4.14824779518838 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",9.68775630700299 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",7.07920860286209 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",9.6507404300792 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",8.06624786519017 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",7.71599110507643 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",4.23125249267296 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",14.4332306359681 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",11.0287061279941 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",7.23722130083806 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",2.60732177319936 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",7.93284378092182 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",4.50396472396414 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",7.65673374450044 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",6.21478077363524 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",8.94668200085405 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",5.99304860802384 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",5.56630527920557 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",7.76158229843526 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",9.40188955753877 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",12.2539469889317 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",7.67673888978028 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",9.14439679044253 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",8.69550737755422 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",7.77947132734049 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",4.89595210533272 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",-0.604819839275735 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",12.0612226163218 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",10.9144214602749 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",10.913332128895 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",10.276363665599 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",15.5005698786945 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",10.9929822262001 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",1.93672156289847 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",5.48123393583212 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",2.86116531831107 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",7.22148592703513 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",10.2643371071918 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",10.2705300710454 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",9.94824325890692 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",7.51132320602008 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",12.0837580570876 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",11.6777934437534 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",3.70671874065247 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",5.72798302100427 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",3.1765641825467 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",3.22392476301632 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",0.268201830576874 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",9.0053012575428 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",8.35795303639421 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",1.517127950591 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",11.2960739450221 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",10.0062858684353 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",2.9284037959462 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",0.23621089100598 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",2.81653073595393 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",9.05986522019337 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",4.44905970916934 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",2.52715990698773 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",11.5916964922161 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",-2.78744110961573 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",6.30504715001866 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",11.9269409757598 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",8.48890609781638 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",0.351267363683095 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",7.6934881361274 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",4.92826127960352 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",13.1062831417727 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2101,"Simulated","PgC/yr","LL",-9.48859172707644 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2102,"Simulated","PgC/yr","LL",-6.60803517695899 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2103,"Simulated","PgC/yr","LL",14.8350000649345 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2105,"Simulated","PgC/yr","LL",1.78690794414755 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2106,"Simulated","PgC/yr","LL",4.07318579123276 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2107,"Simulated","PgC/yr","LL",1.25620517896245 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2108,"Simulated","PgC/yr","LL",-1.78896609070183 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2109,"Simulated","PgC/yr","LL",-13.692754879111 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2110,"Simulated","PgC/yr","LL",9.36930814304397 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2111,"Simulated","PgC/yr","LL",5.75060661512461 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2112,"Simulated","PgC/yr","LL",2.94133463778531 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2113,"Simulated","PgC/yr","LL",14.1517974009302 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2114,"Simulated","PgC/yr","LL",7.7841508648126 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2115,"Simulated","PgC/yr","LL",-6.76179467716045 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2116,"Simulated","PgC/yr","LL",6.53299782107362 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2117,"Simulated","PgC/yr","LL",-1.19911750236202 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2118,"Simulated","PgC/yr","LL",10.7801911426177 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2119,"Simulated","PgC/yr","LL",6.10109171313039 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2120,"Simulated","PgC/yr","LL",4.98541806233191 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2121,"Simulated","PgC/yr","LL",14.438839542985 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2122,"Simulated","PgC/yr","LL",5.65033538871548 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2123,"Simulated","PgC/yr","LL",2.21746723445997 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2124,"Simulated","PgC/yr","LL",9.26843804044561 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2125,"Simulated","PgC/yr","LL",-5.80715464935976 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2126,"Simulated","PgC/yr","LL",10.632879368375 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2127,"Simulated","PgC/yr","LL",-8.52608262305998 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2128,"Simulated","PgC/yr","LL",-5.22762817594971 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2129,"Simulated","PgC/yr","LL",10.1215397871923 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2130,"Simulated","PgC/yr","LL",4.91871920744819 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2131,"Simulated","PgC/yr","LL",-0.837344241984102 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2132,"Simulated","PgC/yr","LL",-4.02689972279045 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2133,"Simulated","PgC/yr","LL",4.7349112905903 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2134,"Simulated","PgC/yr","LL",6.94183019706213 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2135,"Simulated","PgC/yr","LL",-3.1389193221755 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2136,"Simulated","PgC/yr","LL",-6.03157369435149 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2137,"Simulated","PgC/yr","LL",0.000895194112756387 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2138,"Simulated","PgC/yr","LL",1.07534993093189 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2139,"Simulated","PgC/yr","LL",4.00055570841373 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2140,"Simulated","PgC/yr","LL",-6.41507413057129 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2141,"Simulated","PgC/yr","LL",-8.75256242978584 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2142,"Simulated","PgC/yr","LL",2.60616926343257 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2143,"Simulated","PgC/yr","LL",-1.11887384640009 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2144,"Simulated","PgC/yr","LL",7.99664338202698 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2145,"Simulated","PgC/yr","LL",16.0314971570711 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2146,"Simulated","PgC/yr","LL",2.4023918331205 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2147,"Simulated","PgC/yr","LL",0.510977248012389 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2148,"Simulated","PgC/yr","LL",6.79962456150715 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2149,"Simulated","PgC/yr","LL",-3.76996614652898 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2150,"Simulated","PgC/yr","LL",-0.272654468505895 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2151,"Simulated","PgC/yr","LL",2.33813686382124 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2152,"Simulated","PgC/yr","LL",7.29666956954423 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2153,"Simulated","PgC/yr","LL",0.609275321212873 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2154,"Simulated","PgC/yr","LL",4.00998081664957 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2155,"Simulated","PgC/yr","LL",-5.42680158210829 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2156,"Simulated","PgC/yr","LL",-4.84980921798806 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2157,"Simulated","PgC/yr","LL",3.79641215292047 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2158,"Simulated","PgC/yr","LL",4.21963717129964 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2159,"Simulated","PgC/yr","LL",-6.03721725250158 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2160,"Simulated","PgC/yr","LL",-5.27222091542901 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2161,"Simulated","PgC/yr","LL",3.90565083108894 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2162,"Simulated","PgC/yr","LL",2.74433967645483 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2163,"Simulated","PgC/yr","LL",-4.09060158154812 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2164,"Simulated","PgC/yr","LL",8.57879549602215 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2165,"Simulated","PgC/yr","LL",-2.80284648040937 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2166,"Simulated","PgC/yr","LL",-6.09442300447295 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2167,"Simulated","PgC/yr","LL",0.46873712434024 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2168,"Simulated","PgC/yr","LL",-7.03617150312587 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2169,"Simulated","PgC/yr","LL",-6.65191266474503 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2170,"Simulated","PgC/yr","LL",8.37429235329736 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2171,"Simulated","PgC/yr","LL",-6.96121652540626 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2172,"Simulated","PgC/yr","LL",-5.24247585963699 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2174,"Simulated","PgC/yr","LL",-8.01440568367454 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2175,"Simulated","PgC/yr","LL",-3.32034742535564 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2176,"Simulated","PgC/yr","LL",-2.7762893288736 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2177,"Simulated","PgC/yr","LL",5.96557440008184 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2178,"Simulated","PgC/yr","LL",-5.16226306279748 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2179,"Simulated","PgC/yr","LL",8.5983217364891 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2180,"Simulated","PgC/yr","LL",2.74950727186937 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2181,"Simulated","PgC/yr","LL",-11.6331163647234 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2182,"Simulated","PgC/yr","LL",-3.87016022513207 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2183,"Simulated","PgC/yr","LL",-2.56041407650299 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2184,"Simulated","PgC/yr","LL",-7.48936909794537 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2185,"Simulated","PgC/yr","LL",-15.5479896276086 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2186,"Simulated","PgC/yr","LL",-0.763139820885941 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2187,"Simulated","PgC/yr","LL",0.0356054254288695 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2188,"Simulated","PgC/yr","LL",5.46804427617967 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2189,"Simulated","PgC/yr","LL",-1.74863086404383 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2190,"Simulated","PgC/yr","LL",-3.33495451249528 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2191,"Simulated","PgC/yr","LL",-8.64498046806227 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2192,"Simulated","PgC/yr","LL",1.22095700017913 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2193,"Simulated","PgC/yr","LL",2.53721873868452 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2194,"Simulated","PgC/yr","LL",-0.392736336192358 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2195,"Simulated","PgC/yr","LL",0.975088642206251 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2196,"Simulated","PgC/yr","LL",1.62322906671565 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2197,"Simulated","PgC/yr","LL",-3.38239518284828 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2198,"Simulated","PgC/yr","LL",-0.0908445359894678 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2199,"Simulated","PgC/yr","LL",-1.16276506388042 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2200,"Simulated","PgC/yr","LL",6.37691604115145 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2201,"Simulated","PgC/yr","LL",-1.29662788338696 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2202,"Simulated","PgC/yr","LL",-15.2643733711778 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2203,"Simulated","PgC/yr","LL",2.0400128970857 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2204,"Simulated","PgC/yr","LL",-9.49099507737298 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2205,"Simulated","PgC/yr","LL",3.059543382893 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2206,"Simulated","PgC/yr","LL",-9.41136808082337 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2207,"Simulated","PgC/yr","LL",-10.923305553176 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2208,"Simulated","PgC/yr","LL",-2.04928370970946 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2209,"Simulated","PgC/yr","LL",-3.11075121984248 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2210,"Simulated","PgC/yr","LL",-15.1313783991097 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2211,"Simulated","PgC/yr","LL",-13.4795392646637 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2212,"Simulated","PgC/yr","LL",-8.20037243151153 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2213,"Simulated","PgC/yr","LL",-1.99909317772772 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2214,"Simulated","PgC/yr","LL",7.85905615411475 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2215,"Simulated","PgC/yr","LL",-9.23684012971878 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2216,"Simulated","PgC/yr","LL",-1.55836476050769 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2217,"Simulated","PgC/yr","LL",-2.66198112453554 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2218,"Simulated","PgC/yr","LL",1.46868893532428 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2219,"Simulated","PgC/yr","LL",5.91489090669541 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2220,"Simulated","PgC/yr","LL",4.36007625285536 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2221,"Simulated","PgC/yr","LL",4.56971168606651 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2222,"Simulated","PgC/yr","LL",2.52639189404068 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2223,"Simulated","PgC/yr","LL",-9.23110765545325 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2224,"Simulated","PgC/yr","LL",3.23659890533775 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2225,"Simulated","PgC/yr","LL",-0.0223385002872839 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2226,"Simulated","PgC/yr","LL",-1.26378540856206 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2227,"Simulated","PgC/yr","LL",-10.0811823315054 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2228,"Simulated","PgC/yr","LL",-6.81692920667822 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2229,"Simulated","PgC/yr","LL",-0.179436905230428 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2230,"Simulated","PgC/yr","LL",1.34205146550958 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2231,"Simulated","PgC/yr","LL",-9.96189743988299 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2232,"Simulated","PgC/yr","LL",-4.50963315901271 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2233,"Simulated","PgC/yr","LL",1.86051348905648 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2234,"Simulated","PgC/yr","LL",-9.19804001364191 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2235,"Simulated","PgC/yr","LL",-5.27711522454759 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2236,"Simulated","PgC/yr","LL",-0.401616048667212 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2237,"Simulated","PgC/yr","LL",-0.216845876377751 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2238,"Simulated","PgC/yr","LL",3.71652494597423 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2239,"Simulated","PgC/yr","LL",-2.9955460088105 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2240,"Simulated","PgC/yr","LL",-4.06485775095057 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2241,"Simulated","PgC/yr","LL",-0.801503463443223 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2242,"Simulated","PgC/yr","LL",-5.19203034761835 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2243,"Simulated","PgC/yr","LL",-15.4627216880888 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2244,"Simulated","PgC/yr","LL",-9.43220191122315 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2245,"Simulated","PgC/yr","LL",-16.9065232642215 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2246,"Simulated","PgC/yr","LL",-3.62839338450149 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2247,"Simulated","PgC/yr","LL",1.45879832507236 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2248,"Simulated","PgC/yr","LL",6.22426145444323 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2249,"Simulated","PgC/yr","LL",-4.02767904639042 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2250,"Simulated","PgC/yr","LL",-3.07506970575542 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2251,"Simulated","PgC/yr","LL",-4.20721637452769 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2252,"Simulated","PgC/yr","LL",-7.04180721573637 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2253,"Simulated","PgC/yr","LL",-11.1994999291481 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2254,"Simulated","PgC/yr","LL",-11.3427294076204 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2255,"Simulated","PgC/yr","LL",-9.40618087155983 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2256,"Simulated","PgC/yr","LL",-4.78998174820136 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2257,"Simulated","PgC/yr","LL",-0.382625658554737 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2258,"Simulated","PgC/yr","LL",-0.992022324113377 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2259,"Simulated","PgC/yr","LL",-0.795409048284289 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2260,"Simulated","PgC/yr","LL",-15.6225222537799 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2261,"Simulated","PgC/yr","LL",-4.23581205876874 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2262,"Simulated","PgC/yr","LL",-14.5920890831127 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2263,"Simulated","PgC/yr","LL",-1.37409787958337 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2264,"Simulated","PgC/yr","LL",-15.5914408410765 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2265,"Simulated","PgC/yr","LL",14.7715296495949 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2266,"Simulated","PgC/yr","LL",-0.269055850251754 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2267,"Simulated","PgC/yr","LL",-12.0467881310533 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2268,"Simulated","PgC/yr","LL",3.17556845281285 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2269,"Simulated","PgC/yr","LL",-1.49684003898818 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2270,"Simulated","PgC/yr","LL",3.90962982725454 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2271,"Simulated","PgC/yr","LL",14.2897089111458 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2272,"Simulated","PgC/yr","LL",-5.61914152327789 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2273,"Simulated","PgC/yr","LL",-6.33048744540646 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2274,"Simulated","PgC/yr","LL",-7.07794377112005 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2275,"Simulated","PgC/yr","LL",5.08098981052244 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2276,"Simulated","PgC/yr","LL",-0.521972248721582 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2277,"Simulated","PgC/yr","LL",-16.8213730077956 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2278,"Simulated","PgC/yr","LL",-0.443218199211133 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2279,"Simulated","PgC/yr","LL",-1.23671764315752 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2280,"Simulated","PgC/yr","LL",8.12983841535482 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2281,"Simulated","PgC/yr","LL",-9.13697033341903 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2282,"Simulated","PgC/yr","LL",-6.98137825458057 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2283,"Simulated","PgC/yr","LL",8.26040388532775 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2284,"Simulated","PgC/yr","LL",6.82513433350673 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2285,"Simulated","PgC/yr","LL",0.742155748402881 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2286,"Simulated","PgC/yr","LL",4.94337904599143 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2287,"Simulated","PgC/yr","LL",3.58984563328167 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2288,"Simulated","PgC/yr","LL",-5.2332952707186 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2289,"Simulated","PgC/yr","LL",-2.3139111451357 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2290,"Simulated","PgC/yr","LL",-6.74502745145177 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2291,"Simulated","PgC/yr","LL",0.687440955253549 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2292,"Simulated","PgC/yr","LL",-13.5156418227092 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2293,"Simulated","PgC/yr","LL",-8.28717548161251 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2294,"Simulated","PgC/yr","LL",-9.40571929231355 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2295,"Simulated","PgC/yr","LL",11.6608581927383 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2296,"Simulated","PgC/yr","LL",2.29666795669147 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2297,"Simulated","PgC/yr","LL",-2.79602609131973 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2298,"Simulated","PgC/yr","LL",-0.942851320002264 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2299,"Simulated","PgC/yr","LL",-2.23927652694964 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",-0.213744473946671 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",11.8532991858646 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",18.6692271569511 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",8.67011391781489 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",5.83583858570167 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",15.0966889313228 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",14.1449025833173 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",16.8905031078953 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",6.97872955148471 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",14.2586423484228 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",15.5847236981723 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",13.0925073422798 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",12.0586880305209 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",16.4377027673465 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",13.2220627063346 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",11.1319441199081 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",17.9382221949311 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",19.3070307557562 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",13.7628236430748 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",7.61406558226813 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",4.8004074726666 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",18.1375096800659 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",14.6175303315809 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",8.81771276980872 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",10.5267690411489 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",19.90860904045 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",13.8652405846443 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",5.42216383641064 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",13.6775461651756 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",9.83686501167126 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",14.8676281629338 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",11.5816575875538 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",19.8733006192803 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",13.0200309767116 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",17.6212024389349 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",14.2012914992218 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",2.03898974055508 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",13.8754164877113 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",18.9023753375585 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",14.2774579567336 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",12.8274480701388 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",15.9919174620924 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",18.4269583044517 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",12.6353815190646 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",19.1935773186219 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",13.7077827206528 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",11.3247168394057 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",8.67833217402244 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",13.4457475866348 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",5.57075035904676 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",5.53143495486417 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",10.0611965427829 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",10.0173674515934 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",3.0552063164206 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",14.8149711621598 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",16.574464588205 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",-6.41475352889849 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",12.7627315143075 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",13.8206297215784 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",1.66870493899209 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",7.23310621656474 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",7.25269877099966 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",3.45970409337573 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",9.96889598666828 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",5.77785073719392 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",1.47099515315036 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",9.55061586107617 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",3.24804820503483 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",2.05745628611443 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",3.63392501235625 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",5.11323043272514 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",3.62584992013431 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",13.8430501668751 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",-1.6311863232581 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",-6.82262128955979 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",1.19489262939144 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",3.53065552120951 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",-3.96008474325387 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",-2.20430553791395 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",6.78672895235894 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",1.5853041961716 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",8.39513772464836 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",6.99056873051927 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",1.39050417812275 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",-8.86748718786124 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",-2.99931284442141 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",15.5953483962054 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",10.5016896063218 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",-1.14370330075756 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",8.80260173069856 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",-4.74864806182485 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.861709135352029 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.02665273441018 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.77525871410474 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.984166944725022 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.31401679891431 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.22214168540118 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.01647962629439 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.0709211307929 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.29072805097962 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.12935702093858 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.26431344660923 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.54241055904459 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.21800924038749 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.719031286955381 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.47664139668697 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.99771507274928 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.61565812569413 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",2.1270959369542 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.54021547169872 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.0758895705362 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.37979246816831 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.59498797918661 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.46783784880334 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",2.28214000045275 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.44285334709224 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.95165105587625 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.51193771064661 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",2.11206330888221 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.65882006678496 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.90636956401917 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.592557873794866 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.62683612493668 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.76803379586283 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.38120418177263 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.32856678502057 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.8227986648202 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.45356935669234 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",0.933432390799145 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.12750643724275 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",1.61399462349104 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",2.32356177112671 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.22237726926413 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.71350062899803 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",2.88277010356066 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",2.36240935701396 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",2.11953888408874 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.33673880209835 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",2.45361624056047 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",3.01934137116587 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.09762874945943 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.77690855774885 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",1.84313186725903 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.28983321127411 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.6474156617629 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.88829247822125 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",2.58811350567405 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.49515598409476 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.15759432606976 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.16959870115163 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.17881218350673 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.98301740838621 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.65035621310625 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",3.22033091286005 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.9819151967224 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",2.89130545415031 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.94619819776683 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.62785508254118 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",2.23942137704087 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.46077580693012 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",3.14820055202683 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",2.59167419253256 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",2.61823930424514 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.48354153592732 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",2.54346884093587 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.87708647103344 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.29710424360771 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",2.23809934544307 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",2.04497041747556 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.32988845476067 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",2.49239536258154 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",2.48748774817389 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",2.78840030255998 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",2.41953594644605 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.39494016106608 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.96874467264713 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.75182616968362 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",2.86391707859233 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",2.36141974294824 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",2.43127608495349 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.72280464208527 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.73323321661081 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",2.13239877458935 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.57775800050044 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",2.61090914402711 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",2.04184456103986 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",-0.617921510480333 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",10.2883559908113 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",16.1266577146779 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",7.41086713501694 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",4.66816501712849 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",13.1454997036326 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",12.3799061538409 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",14.8530944513182 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",5.7202317548986 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",12.4280202229791 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",13.5691511482453 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",11.1633217521561 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",10.3813640631281 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",14.6136641866174 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",11.3135937063954 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",9.15452423523369 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",15.5394629776946 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",16.5345548308165 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",11.7747365818037 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",6.40425516119158 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",3.69306965430471 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",15.7310893813405 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",12.5885210899167 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",6.90764864269188 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",8.87606740742718 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",17.1684928883986 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",12.3731173692469 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",3.89947468920523 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",11.6388283223656 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",8.02020065401959 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",13.2462086253357 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",9.74618782456358 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",17.2265442216097 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",19.1473553252745 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",11.2023774801244 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",15.1490515223245 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",12.4720459086594 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",0.81143594127312 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",11.8410124062511 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",16.0696138949001 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",11.9082215062999 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",10.8379346834954 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",13.1448647050346 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",15.6176380660585 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",10.4635930673852 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",16.3282664553661 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",11.275925960749 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",8.82818930854044 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",6.87137815909622 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",10.8785255437738 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",4.1668753827578 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",3.7359844238573 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",7.74210308429255 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",7.89531803829727 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",1.72194386005544 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",12.4235646273883 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",14.0210872068198 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",-6.81490040278678 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",10.3187921762233 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",11.0020374109567 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",0.545803301228277 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",5.16558633018587 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",5.1564590538863 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",1.85923877613983 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",7.97680996693736 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",4.05203608515393 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",-0.207136012409826 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",7.4229175259484 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",1.67124339788014 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",1.14458974539587 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",2.05932431559807 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",3.24237707941486 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",2.66423140387244 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",11.5049602776297 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",-2.48979238399174 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",-7.35666821501237 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",-0.136379006833064 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",1.9927939614412 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",-4.97550433857897 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",-3.19563110746492 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",5.00298161611871 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",0.476335250008242 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",6.29215736066651 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",4.95820294671467 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",0.106069529492024 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",-9.26836795048448 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",-3.57724272840118 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",13.3484791928602 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",8.51450397813629 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",-1.81641812955271 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",6.73238505260663 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",-5.32677389706867 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",8.87251486050175 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",12.4279949103514 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",2.9081471034433 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",5.50246774688721 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",11.4615687478165 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",9.47760404635625 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",11.4111474574707 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",10.3250454934557 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",9.5915576360824 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",10.4725857684325 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",12.9658241254593 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",10.0700506688377 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",11.2038468198064 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",12.4596294705666 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",9.98836746744398 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",13.1737018478546 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",9.65499888455466 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",8.90078166318782 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",9.16828231394938 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",13.2536593449782 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",15.2293132380626 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",10.5772158899477 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",15.0685311689129 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",9.7889269683338 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",12.3859256908513 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",9.61517770554143 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",10.2389907224009 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",15.3600078885322 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",16.0548441528065 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",13.2036670073648 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",12.1272908407501 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",12.0624343619524 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",12.3796203618416 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",10.8387491671462 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",14.6782959852807 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",13.8312731954045 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",9.35419628371453 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",13.1578990458066 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",12.2085915800695 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",12.9613766800415 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",14.9254412885882 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",15.5670879770886 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",14.6911214011842 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",11.0061908755974 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",11.9820083387336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",12.4334265957094 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",14.3991107360893 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",12.02277453287 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",12.6187244436052 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",14.6102619745702 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",12.4566125378704 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",12.1238828663888 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",14.1807984884653 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",11.0133092548983 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",15.2916609908671 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",14.1708775321839 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",13.3270795960264 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",15.1713989888407 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",13.0104937653299 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",15.1077791776334 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",15.6618070624744 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",16.4997155116672 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",12.2468490482129 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",13.1070512961721 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",14.4259401891922 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",15.2485224057986 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",6.87111817312074 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",10.9859331209896 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",14.4467086975691 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",13.0152141489823 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",15.7963504637864 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",11.7741967059992 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",14.5565135188846 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",12.3194822558547 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",16.8980033116124 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",18.111380127987 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",15.1417390750869 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",8.91086623896994 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",13.2891780468481 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",12.8110513894343 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",12.0924630640576 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",9.79067278102 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",12.755557791343 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",11.3825346291603 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",10.7568528165418 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",8.07247216750658 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",15.2894647496602 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",13.2635325772854 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",10.913566148777 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",8.98804696089207 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",8.60300779198128 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",9.45223017446706 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",15.1716557062863 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",14.6667131354363 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",13.2072838411414 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2101,"Simulated","PgC/yr","global",9.63344668417413 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2102,"Simulated","PgC/yr","global",10.6683335580092 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2103,"Simulated","PgC/yr","global",8.11544948307787 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2104,"Simulated","PgC/yr","global",3.90645234453323 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2105,"Simulated","PgC/yr","global",16.8589443220032 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2106,"Simulated","PgC/yr","global",5.67856683896871 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2107,"Simulated","PgC/yr","global",9.17672342486162 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2108,"Simulated","PgC/yr","global",8.98290564106254 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2109,"Simulated","PgC/yr","global",12.0092544382182 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2111,"Simulated","PgC/yr","global",9.96821159547771 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2112,"Simulated","PgC/yr","global",3.34391699100686 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2113,"Simulated","PgC/yr","global",14.2715670744232 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2114,"Simulated","PgC/yr","global",-0.862930960024565 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2115,"Simulated","PgC/yr","global",13.5205466890486 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2116,"Simulated","PgC/yr","global",16.528538915311 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2117,"Simulated","PgC/yr","global",6.97418426203141 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2118,"Simulated","PgC/yr","global",8.53891181348066 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2119,"Simulated","PgC/yr","global",8.61655121239582 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2120,"Simulated","PgC/yr","global",0.333070173994314 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2121,"Simulated","PgC/yr","global",-14.2773229074489 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2122,"Simulated","PgC/yr","global",6.38408429170933 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2123,"Simulated","PgC/yr","global",10.8404422957822 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2124,"Simulated","PgC/yr","global",8.30577966318783 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2125,"Simulated","PgC/yr","global",-3.44405690320603 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2126,"Simulated","PgC/yr","global",-0.852949303137743 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2127,"Simulated","PgC/yr","global",7.47547098877752 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2128,"Simulated","PgC/yr","global",11.4053665291417 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2129,"Simulated","PgC/yr","global",10.4483008343034 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2130,"Simulated","PgC/yr","global",0.228866431334136 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2131,"Simulated","PgC/yr","global",11.2085694824126 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2132,"Simulated","PgC/yr","global",-3.34503984496212 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2133,"Simulated","PgC/yr","global",-13.60392261691 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2134,"Simulated","PgC/yr","global",11.8433841354574 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2135,"Simulated","PgC/yr","global",1.37454681708778 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2136,"Simulated","PgC/yr","global",10.9810982534215 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2137,"Simulated","PgC/yr","global",1.34811390195042 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2138,"Simulated","PgC/yr","global",-0.181108138749895 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2139,"Simulated","PgC/yr","global",0.908376302154831 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2140,"Simulated","PgC/yr","global",-6.32748473073237 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2141,"Simulated","PgC/yr","global",-1.08354956254205 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2142,"Simulated","PgC/yr","global",5.72684955904495 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2143,"Simulated","PgC/yr","global",7.16501473953405 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2144,"Simulated","PgC/yr","global",9.22925304241908 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2145,"Simulated","PgC/yr","global",1.70536098766252 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2146,"Simulated","PgC/yr","global",6.20488773942797 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2147,"Simulated","PgC/yr","global",1.73810553244669 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2148,"Simulated","PgC/yr","global",-9.15038944313149 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2149,"Simulated","PgC/yr","global",-0.585813982079954 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2150,"Simulated","PgC/yr","global",-1.3322446616956 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2151,"Simulated","PgC/yr","global",1.83166436222326 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2152,"Simulated","PgC/yr","global",1.90295754501592 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2153,"Simulated","PgC/yr","global",-2.28878496383799 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2154,"Simulated","PgC/yr","global",-5.21950778604153 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2155,"Simulated","PgC/yr","global",-4.80002853070067 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2156,"Simulated","PgC/yr","global",-5.19729683394942 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2157,"Simulated","PgC/yr","global",5.12680477045435 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2158,"Simulated","PgC/yr","global",4.8977602589872 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2159,"Simulated","PgC/yr","global",6.19637303171279 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2160,"Simulated","PgC/yr","global",-11.0011712787134 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2161,"Simulated","PgC/yr","global",9.09349710361606 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2162,"Simulated","PgC/yr","global",-3.85954021409865 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2163,"Simulated","PgC/yr","global",-3.68066217912838 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2164,"Simulated","PgC/yr","global",4.89612423825296 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2165,"Simulated","PgC/yr","global",-5.40595141148686 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2166,"Simulated","PgC/yr","global",-6.88911279252412 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2167,"Simulated","PgC/yr","global",12.7056410613742 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2168,"Simulated","PgC/yr","global",6.17103481874814 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2169,"Simulated","PgC/yr","global",-6.37037839529267 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2170,"Simulated","PgC/yr","global",-6.72295775459133 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2171,"Simulated","PgC/yr","global",-12.3306303617429 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2172,"Simulated","PgC/yr","global",-5.4280754952214 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2173,"Simulated","PgC/yr","global",2.85263138609436 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2174,"Simulated","PgC/yr","global",6.41975662187827 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2175,"Simulated","PgC/yr","global",-4.39328031576374 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2176,"Simulated","PgC/yr","global",-13.6505162300335 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2177,"Simulated","PgC/yr","global",-1.095481253189 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2178,"Simulated","PgC/yr","global",-1.18704709762865 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2179,"Simulated","PgC/yr","global",-6.11103291376634 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2180,"Simulated","PgC/yr","global",-12.7213626254211 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2181,"Simulated","PgC/yr","global",10.9503291594354 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2182,"Simulated","PgC/yr","global",0.225002558962872 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2183,"Simulated","PgC/yr","global",-14.3259193188164 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2184,"Simulated","PgC/yr","global",2.81344732213697 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2185,"Simulated","PgC/yr","global",-0.134594090607253 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2186,"Simulated","PgC/yr","global",2.19245921600547 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2187,"Simulated","PgC/yr","global",6.76356227706233 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2188,"Simulated","PgC/yr","global",-9.5196008755583 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2189,"Simulated","PgC/yr","global",-5.68925808164302 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2190,"Simulated","PgC/yr","global",-18.0093226772281 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2191,"Simulated","PgC/yr","global",-7.58911249588573 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2192,"Simulated","PgC/yr","global",-1.72117746343348 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2193,"Simulated","PgC/yr","global",-7.0058075615336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2194,"Simulated","PgC/yr","global",-8.49833142110899 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2195,"Simulated","PgC/yr","global",-13.4127575353634 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2196,"Simulated","PgC/yr","global",-16.2986434156743 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2197,"Simulated","PgC/yr","global",-5.57979269039134 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2198,"Simulated","PgC/yr","global",-1.55255906409426 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2199,"Simulated","PgC/yr","global",-14.9021187432539 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2200,"Simulated","PgC/yr","global",-18.8451249709181 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2201,"Simulated","PgC/yr","global",-7.55335651470579 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2202,"Simulated","PgC/yr","global",-4.73577651089108 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2203,"Simulated","PgC/yr","global",-0.648198010467127 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2204,"Simulated","PgC/yr","global",-4.04938296620225 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2205,"Simulated","PgC/yr","global",1.84413318888118 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2206,"Simulated","PgC/yr","global",-3.05123979894612 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2207,"Simulated","PgC/yr","global",-2.46436682724045 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2208,"Simulated","PgC/yr","global",-10.1643699989113 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2209,"Simulated","PgC/yr","global",-14.1102927512473 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2210,"Simulated","PgC/yr","global",-10.0032259782717 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2211,"Simulated","PgC/yr","global",-2.19221148031907 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2212,"Simulated","PgC/yr","global",7.32092896331326 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2213,"Simulated","PgC/yr","global",-15.9017708460545 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2214,"Simulated","PgC/yr","global",-16.2791945556183 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2215,"Simulated","PgC/yr","global",-16.3152770974758 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2216,"Simulated","PgC/yr","global",-16.1182146196541 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2217,"Simulated","PgC/yr","global",-3.97743505338124 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2218,"Simulated","PgC/yr","global",-11.4191528592228 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2219,"Simulated","PgC/yr","global",-8.10338443341532 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2220,"Simulated","PgC/yr","global",6.1597966271558 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2221,"Simulated","PgC/yr","global",-14.7397521309152 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2222,"Simulated","PgC/yr","global",1.90775621743504 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2223,"Simulated","PgC/yr","global",-17.52562679289 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2224,"Simulated","PgC/yr","global",1.96804446626216 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2225,"Simulated","PgC/yr","global",-12.3613061526783 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2226,"Simulated","PgC/yr","global",-16.2540349053887 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2227,"Simulated","PgC/yr","global",-8.80282431847259 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2229,"Simulated","PgC/yr","global",-6.17742286037614 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2230,"Simulated","PgC/yr","global",-7.25241395928957 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2231,"Simulated","PgC/yr","global",-15.7062478685698 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2232,"Simulated","PgC/yr","global",-7.02643236176341 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2233,"Simulated","PgC/yr","global",-5.66861558600704 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2234,"Simulated","PgC/yr","global",-14.0413128406432 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2235,"Simulated","PgC/yr","global",3.2745831722794 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2236,"Simulated","PgC/yr","global",-11.068140347707 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2237,"Simulated","PgC/yr","global",2.99852035794064 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2238,"Simulated","PgC/yr","global",8.86048399514656 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2240,"Simulated","PgC/yr","global",-19.0817608116329 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2241,"Simulated","PgC/yr","global",-5.86115930056176 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2242,"Simulated","PgC/yr","global",-4.29265458423148 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2243,"Simulated","PgC/yr","global",-7.49973139063898 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2244,"Simulated","PgC/yr","global",-12.0612033247185 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2245,"Simulated","PgC/yr","global",-19.3931034398583 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2246,"Simulated","PgC/yr","global",-11.2452295379806 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2247,"Simulated","PgC/yr","global",11.4433843049651 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2248,"Simulated","PgC/yr","global",-3.81915447119487 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2250,"Simulated","PgC/yr","global",-2.85886338641339 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2251,"Simulated","PgC/yr","global",-17.5637845232894 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2252,"Simulated","PgC/yr","global",-3.21272968434272 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2253,"Simulated","PgC/yr","global",-9.05942057734915 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2254,"Simulated","PgC/yr","global",-7.08976582912536 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2255,"Simulated","PgC/yr","global",-14.3830819154443 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2256,"Simulated","PgC/yr","global",-13.4541342210128 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2257,"Simulated","PgC/yr","global",-7.89926470587771 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2258,"Simulated","PgC/yr","global",-9.49480961151169 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2259,"Simulated","PgC/yr","global",2.96727348798792 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2260,"Simulated","PgC/yr","global",-14.3785937169698 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2261,"Simulated","PgC/yr","global",7.74753464132147 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2262,"Simulated","PgC/yr","global",-11.0371331700742 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2263,"Simulated","PgC/yr","global",2.51585241583378 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2264,"Simulated","PgC/yr","global",-12.8619815835748 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2265,"Simulated","PgC/yr","global",2.90056663274032 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2266,"Simulated","PgC/yr","global",-12.8221009640836 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2267,"Simulated","PgC/yr","global",-19.4071954178641 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2268,"Simulated","PgC/yr","global",-15.0224668093012 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2269,"Simulated","PgC/yr","global",5.18814509161205 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2270,"Simulated","PgC/yr","global",-9.3291098281195 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2272,"Simulated","PgC/yr","global",-2.11478442627797 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2273,"Simulated","PgC/yr","global",-13.1440318798928 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2274,"Simulated","PgC/yr","global",-14.0732659181695 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2275,"Simulated","PgC/yr","global",0.373451412612886 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2276,"Simulated","PgC/yr","global",-19.4704323648288 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2277,"Simulated","PgC/yr","global",0.662277762555995 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2278,"Simulated","PgC/yr","global",-6.33346095199855 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2279,"Simulated","PgC/yr","global",-2.31144634445084 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2280,"Simulated","PgC/yr","global",-6.08470536672937 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2281,"Simulated","PgC/yr","global",-7.33977778823274 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2282,"Simulated","PgC/yr","global",-12.4885248623401 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2283,"Simulated","PgC/yr","global",0.849709274267697 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2284,"Simulated","PgC/yr","global",-9.27682633757516 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2285,"Simulated","PgC/yr","global",-12.3647599742283 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2286,"Simulated","PgC/yr","global",-1.87215466889078 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2287,"Simulated","PgC/yr","global",3.08233062758987 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2288,"Simulated","PgC/yr","global",-15.5793846757047 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2289,"Simulated","PgC/yr","global",-13.6508170519384 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2290,"Simulated","PgC/yr","global",-2.5654896388188 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2291,"Simulated","PgC/yr","global",0.838875824874699 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2292,"Simulated","PgC/yr","global",-4.45108799038024 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2293,"Simulated","PgC/yr","global",-1.6925189488017 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2294,"Simulated","PgC/yr","global",-4.72426806218629 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2295,"Simulated","PgC/yr","global",-9.4375521031598 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2296,"Simulated","PgC/yr","global",1.88781510335277 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2297,"Simulated","PgC/yr","global",-8.29691909071566 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2298,"Simulated","PgC/yr","global",-8.25053460511966 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2299,"Simulated","PgC/yr","global",-9.55086704959048 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2300,"Simulated","PgC/yr","global",-11.5484178013074 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.923511575912308 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.66054712709991 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.897761569457146 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",1.35655156572496 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.10376810816415 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.6132646544509 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.55180050860792 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.24403180741708 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.28032154633211 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.6959893199465 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.86225157502623 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.636936628619131 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.69198825817016 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",2.40044208938703 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.16746125351857 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.3049293918918 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",2.08317916664152 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.89889511413185 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.28673557788793 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.80290877255924 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.67396434697723 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",2.03603350547948 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.79649539699883 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",1.70536713876024 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.57237230596947 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.3891231226617 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",2.05441763104034 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.78174453845498 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",2.41989942343703 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.69864806933923 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",2.47451293633529 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.27429471971088 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",2.23837477917119 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",2.26365538446701 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.90363380630143 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",2.30723243060402 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.79186290319713 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",2.18692578812601 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.05333676927142 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",2.47916664065522 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",1.94538259323352 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.19242018700677 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",2.69284453545199 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.78031446846333 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",2.54647504959709 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",2.14944046113386 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.08491719003352 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.90263210131186 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",1.87659957950056 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.09759255199162 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.54830534967663 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",2.33297201402102 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",2.34716192360177 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.1702379209161 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.81009591575671 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",2.01380838102209 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.55452717457761 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.34064912829271 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.34705135193117 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.39825419892121 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",2.34486710588429 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.22050174692233 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",2.58689909024487 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.87535836329833 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",3.22526418531132 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.42656193147612 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.2919233199671 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.20521857807382 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.31901031795421 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",2.2903886551519 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",2.40498041140334 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.99011375396012 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",2.3398066115224 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.83644150854695 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.32763417937787 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",2.03833393560213 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",2.15597862159875 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",2.26100837010326 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.68192789718545 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.83304119278852 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",2.55727739888571 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.37940127070011 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",2.57449691393043 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.58236944194563 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.60908516192331 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.09063688689309 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.94329747538178 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",2.4521985236139 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",2.31687162714407 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",0.850737996329555 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.86848826915648 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",2.16029543583195 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.94048587905874 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",0.995977930978506 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",2.20872458845592 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2101,"Simulated","PgC/yr","HL",1.40310916344701 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2102,"Simulated","PgC/yr","HL",1.41704717079071 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2103,"Simulated","PgC/yr","HL",2.36422319797617 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2104,"Simulated","PgC/yr","HL",1.19426646503333 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2105,"Simulated","PgC/yr","HL",1.89989011339057 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2106,"Simulated","PgC/yr","HL",1.40770229752417 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2107,"Simulated","PgC/yr","HL",3.25652448031382 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2108,"Simulated","PgC/yr","HL",3.05625345524458 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2109,"Simulated","PgC/yr","HL",-0.0652564990355101 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2110,"Simulated","PgC/yr","HL",1.6137087633428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2111,"Simulated","PgC/yr","HL",1.60577675841052 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2112,"Simulated","PgC/yr","HL",1.23056341989786 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2113,"Simulated","PgC/yr","HL",1.45597218904051 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2114,"Simulated","PgC/yr","HL",0.669004526858506 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2115,"Simulated","PgC/yr","HL",1.67921617333342 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2116,"Simulated","PgC/yr","HL",3.69963334365943 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2117,"Simulated","PgC/yr","HL",-0.67527642607571 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2118,"Simulated","PgC/yr","HL",-0.191604042880698 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2119,"Simulated","PgC/yr","HL",1.36444829268191 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2120,"Simulated","PgC/yr","HL",0.600292943736747 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2121,"Simulated","PgC/yr","HL",-0.364463760410285 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2122,"Simulated","PgC/yr","HL",2.24947531481738 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2123,"Simulated","PgC/yr","HL",1.18068415297807 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2124,"Simulated","PgC/yr","HL",1.54493653708989 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2125,"Simulated","PgC/yr","HL",0.983692521846871 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2126,"Simulated","PgC/yr","HL",0.0043579815895404 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2127,"Simulated","PgC/yr","HL",-1.05457647020977 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2128,"Simulated","PgC/yr","HL",0.179532386208671 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2129,"Simulated","PgC/yr","HL",2.14518283226422 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2130,"Simulated","PgC/yr","HL",-0.948328829784231 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2131,"Simulated","PgC/yr","HL",-0.646619631074828 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2132,"Simulated","PgC/yr","HL",0.614573234907193 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2133,"Simulated","PgC/yr","HL",-0.216324340631168 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2134,"Simulated","PgC/yr","HL",1.57766371071533 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2135,"Simulated","PgC/yr","HL",1.24418071837493 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2136,"Simulated","PgC/yr","HL",1.47545117093901 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2137,"Simulated","PgC/yr","HL",-0.764804347069816 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2138,"Simulated","PgC/yr","HL",3.2395852210855 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2139,"Simulated","PgC/yr","HL",1.71244744298649 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2140,"Simulated","PgC/yr","HL",-1.29858489584933 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2141,"Simulated","PgC/yr","HL",-1.28032081744832 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2142,"Simulated","PgC/yr","HL",0.554657238229493 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2143,"Simulated","PgC/yr","HL",2.81703787784003 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2144,"Simulated","PgC/yr","HL",1.7588131984956 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2145,"Simulated","PgC/yr","HL",0.441541471648336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2146,"Simulated","PgC/yr","HL",0.298031834223227 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2147,"Simulated","PgC/yr","HL",0.731364616653435 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2148,"Simulated","PgC/yr","HL",0.146202425690732 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2149,"Simulated","PgC/yr","HL",2.0119562873173 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2150,"Simulated","PgC/yr","HL",1.02694710979616 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2151,"Simulated","PgC/yr","HL",0.583611417815794 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2152,"Simulated","PgC/yr","HL",0.304428518344901 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2153,"Simulated","PgC/yr","HL",0.155660975672816 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2154,"Simulated","PgC/yr","HL",-0.49254642668999 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2155,"Simulated","PgC/yr","HL",-1.69789659015402 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2156,"Simulated","PgC/yr","HL",-1.60387903658062 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2157,"Simulated","PgC/yr","HL",0.724147792493736 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2158,"Simulated","PgC/yr","HL",-0.0215738143133673 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2159,"Simulated","PgC/yr","HL",1.12585780601377 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2160,"Simulated","PgC/yr","HL",-1.15890802093396 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2161,"Simulated","PgC/yr","HL",0.842491696707977 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2162,"Simulated","PgC/yr","HL",-1.3951958179397 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2163,"Simulated","PgC/yr","HL",0.092992393103542 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2164,"Simulated","PgC/yr","HL",-0.239108723041259 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2165,"Simulated","PgC/yr","HL",-0.399688964553244 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2166,"Simulated","PgC/yr","HL",-1.04448434528398 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2167,"Simulated","PgC/yr","HL",0.233228730059076 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2168,"Simulated","PgC/yr","HL",-0.0157117897743209 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2169,"Simulated","PgC/yr","HL",-1.16189965155258 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2170,"Simulated","PgC/yr","HL",0.534513805870037 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2171,"Simulated","PgC/yr","HL",-2.64148563444298 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2172,"Simulated","PgC/yr","HL",-1.63102995767592 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2173,"Simulated","PgC/yr","HL",0.871320508282778 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2174,"Simulated","PgC/yr","HL",-0.926867575536445 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2175,"Simulated","PgC/yr","HL",-1.63151597738562 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2176,"Simulated","PgC/yr","HL",-1.46612058379471 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2177,"Simulated","PgC/yr","HL",-0.403846226125302 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2178,"Simulated","PgC/yr","HL",-3.19866860077394 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2179,"Simulated","PgC/yr","HL",0.852025205098798 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2180,"Simulated","PgC/yr","HL",-3.56509597410854 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2181,"Simulated","PgC/yr","HL",2.34399025868757 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2182,"Simulated","PgC/yr","HL",-1.33906214501362 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2183,"Simulated","PgC/yr","HL",-1.01204435187094 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2184,"Simulated","PgC/yr","HL",-1.32868692162465 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2185,"Simulated","PgC/yr","HL",0.386464388661037 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2186,"Simulated","PgC/yr","HL",0.804262908252279 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2187,"Simulated","PgC/yr","HL",1.85444158524002 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2188,"Simulated","PgC/yr","HL",-1.77495593352061 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2189,"Simulated","PgC/yr","HL",0.162705550015784 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2190,"Simulated","PgC/yr","HL",-1.90246569714311 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2191,"Simulated","PgC/yr","HL",0.0378027413040572 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2192,"Simulated","PgC/yr","HL",-3.24978084750916 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2193,"Simulated","PgC/yr","HL",0.0117692457040063 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2194,"Simulated","PgC/yr","HL",-0.576290800604713 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2195,"Simulated","PgC/yr","HL",-1.21817064618428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2196,"Simulated","PgC/yr","HL",-1.27203107635299 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2197,"Simulated","PgC/yr","HL",-3.53850046245954 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2198,"Simulated","PgC/yr","HL",-1.32849216387655 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2199,"Simulated","PgC/yr","HL",-0.200662114954417 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2200,"Simulated","PgC/yr","HL",-2.98707072164239 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2201,"Simulated","PgC/yr","HL",-0.798108796655183 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2202,"Simulated","PgC/yr","HL",-2.19760881913856 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2203,"Simulated","PgC/yr","HL",-0.536750312884502 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2204,"Simulated","PgC/yr","HL",-2.80280744232067 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2205,"Simulated","PgC/yr","HL",-0.952398042194723 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2206,"Simulated","PgC/yr","HL",-1.45263215197133 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2207,"Simulated","PgC/yr","HL",-0.843966082833925 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2208,"Simulated","PgC/yr","HL",0.144103094605129 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2209,"Simulated","PgC/yr","HL",-1.40530456141585 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2210,"Simulated","PgC/yr","HL",-5.95260730065822 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2211,"Simulated","PgC/yr","HL",-3.6651396472859 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2212,"Simulated","PgC/yr","HL",-1.35362903328942 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2213,"Simulated","PgC/yr","HL",-2.12879635850057 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2214,"Simulated","PgC/yr","HL",0.247397676942099 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2215,"Simulated","PgC/yr","HL",0.862338910696074 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2216,"Simulated","PgC/yr","HL",-2.03050637971664 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2217,"Simulated","PgC/yr","HL",-3.04080111894336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2218,"Simulated","PgC/yr","HL",0.903878872422959 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2219,"Simulated","PgC/yr","HL",-0.133653000273482 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2220,"Simulated","PgC/yr","HL",-0.601795902107177 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2221,"Simulated","PgC/yr","HL",-2.52743514729236 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2222,"Simulated","PgC/yr","HL",-2.92380943993224 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2223,"Simulated","PgC/yr","HL",-1.9733610160931 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2224,"Simulated","PgC/yr","HL",-1.09082531874431 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2225,"Simulated","PgC/yr","HL",-4.06373703547854 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2226,"Simulated","PgC/yr","HL",-0.66893863576409 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2227,"Simulated","PgC/yr","HL",-1.99095627073043 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2228,"Simulated","PgC/yr","HL",-1.44405173202142 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2229,"Simulated","PgC/yr","HL",0.88628595021375 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2230,"Simulated","PgC/yr","HL",-2.77266372439269 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2231,"Simulated","PgC/yr","HL",-0.313669890113575 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2232,"Simulated","PgC/yr","HL",-2.96745208561015 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2233,"Simulated","PgC/yr","HL",2.33139806236966 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2234,"Simulated","PgC/yr","HL",-0.2443389307043 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2235,"Simulated","PgC/yr","HL",-2.94614535472537 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2236,"Simulated","PgC/yr","HL",-3.25709592520345 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2237,"Simulated","PgC/yr","HL",0.904171883705652 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2238,"Simulated","PgC/yr","HL",-0.289187616652847 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2239,"Simulated","PgC/yr","HL",-4.12901003644301 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2240,"Simulated","PgC/yr","HL",-1.96811101194638 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2241,"Simulated","PgC/yr","HL",-0.707876773922068 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2242,"Simulated","PgC/yr","HL",-1.25152961627697 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2243,"Simulated","PgC/yr","HL",-4.05538985834073 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2244,"Simulated","PgC/yr","HL",-0.649788817784154 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2245,"Simulated","PgC/yr","HL",-3.24921814922498 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2246,"Simulated","PgC/yr","HL",0.625674134995285 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2247,"Simulated","PgC/yr","HL",0.893199558717727 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2248,"Simulated","PgC/yr","HL",0.296418377070568 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2249,"Simulated","PgC/yr","HL",-0.650845116169424 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2250,"Simulated","PgC/yr","HL",1.25354395951292 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2251,"Simulated","PgC/yr","HL",-4.61384312333705 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2252,"Simulated","PgC/yr","HL",-1.52365313048633 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2253,"Simulated","PgC/yr","HL",-0.182460749714509 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2254,"Simulated","PgC/yr","HL",0.593403534174525 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2255,"Simulated","PgC/yr","HL",-1.0496629188195 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2256,"Simulated","PgC/yr","HL",0.168604902151371 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2257,"Simulated","PgC/yr","HL",-0.550548374540945 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2258,"Simulated","PgC/yr","HL",-1.19095325088753 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2259,"Simulated","PgC/yr","HL",0.00967794108667524 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2260,"Simulated","PgC/yr","HL",-0.38181090300625 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2261,"Simulated","PgC/yr","HL",-1.46518003215495 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2262,"Simulated","PgC/yr","HL",-3.5262202284028 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2263,"Simulated","PgC/yr","HL",0.874502231793253 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2264,"Simulated","PgC/yr","HL",-1.45383014536494 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2265,"Simulated","PgC/yr","HL",-0.372403345733959 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2266,"Simulated","PgC/yr","HL",2.05648496412766 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2267,"Simulated","PgC/yr","HL",-4.35050324187763 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2268,"Simulated","PgC/yr","HL",-1.57151309776041 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2269,"Simulated","PgC/yr","HL",-1.28755046996269 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2270,"Simulated","PgC/yr","HL",-0.439598267470079 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2271,"Simulated","PgC/yr","HL",-2.47073469433289 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2272,"Simulated","PgC/yr","HL",-1.29489499456201 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2273,"Simulated","PgC/yr","HL",-0.654373205255859 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2274,"Simulated","PgC/yr","HL",-0.945991445253535 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2275,"Simulated","PgC/yr","HL",-0.487188547742679 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2276,"Simulated","PgC/yr","HL",-2.18796626973308 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2277,"Simulated","PgC/yr","HL",0.332274211466727 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2278,"Simulated","PgC/yr","HL",-0.199960229022124 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2279,"Simulated","PgC/yr","HL",-0.510034389633757 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2280,"Simulated","PgC/yr","HL",-2.3154879870497 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2281,"Simulated","PgC/yr","HL",0.779340622226535 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2282,"Simulated","PgC/yr","HL",-3.36866470883339 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2283,"Simulated","PgC/yr","HL",-1.16077717051937 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2284,"Simulated","PgC/yr","HL",-0.466719450106837 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2285,"Simulated","PgC/yr","HL",1.31233630894336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2286,"Simulated","PgC/yr","HL",-0.352234548218688 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2287,"Simulated","PgC/yr","HL",-0.481747284490044 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2288,"Simulated","PgC/yr","HL",0.121050687048591 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2289,"Simulated","PgC/yr","HL",-0.938001421171745 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2290,"Simulated","PgC/yr","HL",1.27298649722203 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2291,"Simulated","PgC/yr","HL",-1.82909275642166 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2292,"Simulated","PgC/yr","HL",-0.928117757009268 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2293,"Simulated","PgC/yr","HL",-0.886031132441537 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2294,"Simulated","PgC/yr","HL",-0.683189188475994 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2295,"Simulated","PgC/yr","HL",1.08570826300048 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2296,"Simulated","PgC/yr","HL",-0.935450619467983 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2297,"Simulated","PgC/yr","HL",-1.81874260663499 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2298,"Simulated","PgC/yr","HL",-3.86300535585542 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2299,"Simulated","PgC/yr","HL",-2.63246992509501 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2300,"Simulated","PgC/yr","HL",-1.92653956243987 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",7.91070644357722 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",10.7336811665199 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",2.03007022966319 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",4.16462889228235 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",10.3034934348515 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",7.8573879989482 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",9.82981113409119 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",9.04561931623376 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",8.28510963806452 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",8.76421921243723 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",11.4130909924908 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",9.36736890299424 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",9.49198450442417 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",10.0651901963844 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",8.78471675900123 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",11.8083175565196 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",7.58855783615442 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",7.01614886861892 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",7.8599827526181 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",11.4164828876037 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",13.4944228228156 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",8.54618536763071 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",16.048912279042 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",8.0784966469363 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",10.7754311725016 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",8.20559021935519 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",8.19393901355066 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",13.5218745883977 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",13.6062128071319 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",11.465595351565 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",9.66610105527875 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",10.737089303398 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",10.3210833762318 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",8.58982446648397 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",14.6254689482124 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",11.9762015494878 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",7.56628412088319 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",10.9584595140394 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",10.1449535049507 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",14.628807947847 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",15.3643270365599 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",15.4433717567607 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",14.1156324782668 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",11.6399346560335 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",9.72113671539723 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",10.2766526778891 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",12.2837954502604 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",10.1035264686635 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",10.7181674275352 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",13.9269602330871 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",12.4769388997428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",12.5994716045361 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",14.4238713307534 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",11.1519558926885 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",12.4815674735806 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",12.6486600097236 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",12.5062106209531 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",12.8065194316136 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",11.0777560471301 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",12.6890496581337 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",13.288057040132 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",16.4035020564506 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",9.67817406411342 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",11.2028033722359 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",13.4800771740205 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",13.2921394297464 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",11.779643049403 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",9.73663948021633 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",12.3544874037751 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",12.8898515388428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",13.364403322746 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",9.77467984509338 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",13.7478127954827 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",10.3469112945256 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",14.5282448641952 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",16.0031681157375 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",12.9518212255148 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",6.68363724684993 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",10.6202476911588 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",10.9497811438591 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",11.5419268190554 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",8.38853434514597 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",10.193547768811 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",8.82674594775652 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",9.12785303019919 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",6.01473151909862 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",13.299237849301 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",10.8121404149844 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",8.61356323286681 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",8.09392178489738 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",6.75009920822254 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",7.7628609478247 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",13.017796702125 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",13.5786849905819 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",13.0883946070403 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2101,"Simulated","PgC/yr","LL",8.21044799961638 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2102,"Simulated","PgC/yr","LL",9.22184949138867 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2103,"Simulated","PgC/yr","LL",5.7985155887254 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2104,"Simulated","PgC/yr","LL",2.73799550319406 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2105,"Simulated","PgC/yr","LL",14.8941507622351 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2106,"Simulated","PgC/yr","LL",4.29059411854983 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2107,"Simulated","PgC/yr","LL",6.00526360159788 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2108,"Simulated","PgC/yr","LL",6.00279836503072 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2109,"Simulated","PgC/yr","LL",11.9514221029783 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2111,"Simulated","PgC/yr","LL",8.35019214681743 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2112,"Simulated","PgC/yr","LL",2.14672852943971 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2113,"Simulated","PgC/yr","LL",12.7523948467257 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2114,"Simulated","PgC/yr","LL",-1.48710128314205 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2115,"Simulated","PgC/yr","LL",11.7977016973973 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2116,"Simulated","PgC/yr","LL",12.8647948849095 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2117,"Simulated","PgC/yr","LL",7.54344743091514 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2118,"Simulated","PgC/yr","LL",8.63512977290484 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2119,"Simulated","PgC/yr","LL",7.24024176975316 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2120,"Simulated","PgC/yr","LL",-0.238018063798997 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2121,"Simulated","PgC/yr","LL",-13.7904701454787 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2122,"Simulated","PgC/yr","LL",4.19291833787539 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2123,"Simulated","PgC/yr","LL",9.61580140607958 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2124,"Simulated","PgC/yr","LL",6.76185418573727 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2125,"Simulated","PgC/yr","LL",-4.34017144816721 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2126,"Simulated","PgC/yr","LL",-0.848579859460929 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2127,"Simulated","PgC/yr","LL",8.39849603425509 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2128,"Simulated","PgC/yr","LL",11.1220174909162 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2129,"Simulated","PgC/yr","LL",8.31531800431132 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2130,"Simulated","PgC/yr","LL",1.12354157392057 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2131,"Simulated","PgC/yr","LL",11.7085752307154 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2132,"Simulated","PgC/yr","LL",-3.89301809540121 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2133,"Simulated","PgC/yr","LL",-13.2638813922154 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2134,"Simulated","PgC/yr","LL",10.2332865394576 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2135,"Simulated","PgC/yr","LL",0.184085351222986 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2136,"Simulated","PgC/yr","LL",9.47626006145938 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2137,"Simulated","PgC/yr","LL",2.05806429461412 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2138,"Simulated","PgC/yr","LL",-3.24338743605937 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2139,"Simulated","PgC/yr","LL",-0.720342915063015 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2140,"Simulated","PgC/yr","LL",-5.03625838442122 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2141,"Simulated","PgC/yr","LL",0.138197184917161 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2142,"Simulated","PgC/yr","LL",5.14522921532883 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2143,"Simulated","PgC/yr","LL",4.42925840785287 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2144,"Simulated","PgC/yr","LL",7.47384400488924 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2145,"Simulated","PgC/yr","LL",1.27076215678546 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2146,"Simulated","PgC/yr","LL",5.86123031150194 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2147,"Simulated","PgC/yr","LL",1.02905940713449 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2148,"Simulated","PgC/yr","LL",-9.19757770978116 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2149,"Simulated","PgC/yr","LL",-2.48294096908417 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2150,"Simulated","PgC/yr","LL",-2.2902943200798 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2151,"Simulated","PgC/yr","LL",1.26143468665645 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2152,"Simulated","PgC/yr","LL",1.59607738164917 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2153,"Simulated","PgC/yr","LL",-2.41322824036859 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2154,"Simulated","PgC/yr","LL",-4.70168416822203 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2155,"Simulated","PgC/yr","LL",-3.14632928142659 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2156,"Simulated","PgC/yr","LL",-3.62856748067879 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2157,"Simulated","PgC/yr","LL",4.3908497060806 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2158,"Simulated","PgC/yr","LL",4.86940717018046 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2159,"Simulated","PgC/yr","LL",5.06982221155109 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2160,"Simulated","PgC/yr","LL",-9.79552795040426 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2161,"Simulated","PgC/yr","LL",8.20611803282535 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2162,"Simulated","PgC/yr","LL",-2.50150530663075 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2163,"Simulated","PgC/yr","LL",-3.73197440961192 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2164,"Simulated","PgC/yr","LL",5.07353718610021 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2165,"Simulated","PgC/yr","LL",-4.97409675959244 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2166,"Simulated","PgC/yr","LL",-5.83263119690315 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2167,"Simulated","PgC/yr","LL",12.3585601361238 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2168,"Simulated","PgC/yr","LL",6.12446147693954 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2169,"Simulated","PgC/yr","LL",-5.20800583239953 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2170,"Simulated","PgC/yr","LL",-7.16158597398227 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2171,"Simulated","PgC/yr","LL",-9.70949093083053 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2172,"Simulated","PgC/yr","LL",-3.83136874462405 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2173,"Simulated","PgC/yr","LL",2.00011543248744 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2174,"Simulated","PgC/yr","LL",7.23250234918416 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2175,"Simulated","PgC/yr","LL",-2.8064137193319 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2176,"Simulated","PgC/yr","LL",-12.1279275102072 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2177,"Simulated","PgC/yr","LL",-0.702607565988133 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2178,"Simulated","PgC/yr","LL",1.85015345915147 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2179,"Simulated","PgC/yr","LL",-6.85606388593908 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2180,"Simulated","PgC/yr","LL",-9.22275946920272 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2181,"Simulated","PgC/yr","LL",8.62431012352676 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2182,"Simulated","PgC/yr","LL",1.48928206933607 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2183,"Simulated","PgC/yr","LL",-13.2260863657852 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2184,"Simulated","PgC/yr","LL",4.04214383731616 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2185,"Simulated","PgC/yr","LL",-0.498781885629637 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2186,"Simulated","PgC/yr","LL",1.40994016872998 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2187,"Simulated","PgC/yr","LL",4.94225148680025 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2188,"Simulated","PgC/yr","LL",-7.74603404018066 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2189,"Simulated","PgC/yr","LL",-5.78651072945926 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2190,"Simulated","PgC/yr","LL",-16.0306353548932 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2191,"Simulated","PgC/yr","LL",-7.54931553676089 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2192,"Simulated","PgC/yr","LL",1.36968385643222 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2193,"Simulated","PgC/yr","LL",-6.9471946742317 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2194,"Simulated","PgC/yr","LL",-7.86865848899868 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2195,"Simulated","PgC/yr","LL",-12.1270544055897 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2196,"Simulated","PgC/yr","LL",-14.9332758575397 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2197,"Simulated","PgC/yr","LL",-2.17743995143899 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2198,"Simulated","PgC/yr","LL",-0.280581321298861 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2199,"Simulated","PgC/yr","LL",-14.5639776254202 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2200,"Simulated","PgC/yr","LL",-15.8322707266289 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2201,"Simulated","PgC/yr","LL",-6.72329008977968 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2202,"Simulated","PgC/yr","LL",-2.61007579997618 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2203,"Simulated","PgC/yr","LL",-0.134073049576689 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2204,"Simulated","PgC/yr","LL",-1.35810303892604 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2205,"Simulated","PgC/yr","LL",2.72657666437257 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2206,"Simulated","PgC/yr","LL",-1.64692815344627 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2207,"Simulated","PgC/yr","LL",-1.64158812445064 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2208,"Simulated","PgC/yr","LL",-10.1994777689509 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2209,"Simulated","PgC/yr","LL",-12.6406493077802 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2210,"Simulated","PgC/yr","LL",-4.27351524406294 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2211,"Simulated","PgC/yr","LL",1.29619518070329 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2212,"Simulated","PgC/yr","LL",8.52834499579074 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2213,"Simulated","PgC/yr","LL",-13.7299981031903 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2214,"Simulated","PgC/yr","LL",-16.3511292776223 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2215,"Simulated","PgC/yr","LL",-16.9684787703131 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2216,"Simulated","PgC/yr","LL",-14.0372440131707 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2217,"Simulated","PgC/yr","LL",-1.06177120004483 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2218,"Simulated","PgC/yr","LL",-12.1603851414415 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2219,"Simulated","PgC/yr","LL",-7.8963002173879 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2220,"Simulated","PgC/yr","LL",6.66766950663309 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2221,"Simulated","PgC/yr","LL",-12.2025022332635 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2222,"Simulated","PgC/yr","LL",4.65417700520912 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2223,"Simulated","PgC/yr","LL",-15.4847013424571 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2224,"Simulated","PgC/yr","LL",2.98018260861928 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2225,"Simulated","PgC/yr","LL",-8.39466122181729 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2226,"Simulated","PgC/yr","LL",-15.4595353858341 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2227,"Simulated","PgC/yr","LL",-6.83209367440309 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2228,"Simulated","PgC/yr","LL",-19.3223451149885 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2229,"Simulated","PgC/yr","LL",-6.95419794777024 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2230,"Simulated","PgC/yr","LL",-4.55776018081577 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2231,"Simulated","PgC/yr","LL",-15.253216682321 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2232,"Simulated","PgC/yr","LL",-4.14978986694891 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2233,"Simulated","PgC/yr","LL",-7.81727964035146 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2234,"Simulated","PgC/yr","LL",-13.6704215528173 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2235,"Simulated","PgC/yr","LL",6.02852268720104 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2236,"Simulated","PgC/yr","LL",-7.87731052118149 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2237,"Simulated","PgC/yr","LL",2.11347944138011 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2238,"Simulated","PgC/yr","LL",9.04579709771696 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2240,"Simulated","PgC/yr","LL",-17.0303203884721 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2241,"Simulated","PgC/yr","LL",-5.13328229965723 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2242,"Simulated","PgC/yr","LL",-3.06619197329563 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2243,"Simulated","PgC/yr","LL",-3.58937785728029 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2244,"Simulated","PgC/yr","LL",-11.3265452105984 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2245,"Simulated","PgC/yr","LL",-16.1268480598058 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2246,"Simulated","PgC/yr","LL",-11.7250588664585 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2247,"Simulated","PgC/yr","LL",10.4846524370159 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2248,"Simulated","PgC/yr","LL",-4.06149436408849 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2250,"Simulated","PgC/yr","LL",-4.01603629728204 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2251,"Simulated","PgC/yr","LL",-13.0250405293741 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2252,"Simulated","PgC/yr","LL",-1.73963658778988 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2253,"Simulated","PgC/yr","LL",-8.7966554440486 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2254,"Simulated","PgC/yr","LL",-7.58044178222099 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2255,"Simulated","PgC/yr","LL",-13.2470909188013 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2256,"Simulated","PgC/yr","LL",-13.4796686058341 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2257,"Simulated","PgC/yr","LL",-7.29990260171815 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2258,"Simulated","PgC/yr","LL",-8.27385146102787 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2259,"Simulated","PgC/yr","LL",2.9285798869932 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2260,"Simulated","PgC/yr","LL",-13.874330329558 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2261,"Simulated","PgC/yr","LL",9.05621114193335 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2262,"Simulated","PgC/yr","LL",-7.59206869122282 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2263,"Simulated","PgC/yr","LL",1.66367911986413 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2264,"Simulated","PgC/yr","LL",-11.3588685180455 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2265,"Simulated","PgC/yr","LL",3.22391838829823 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2266,"Simulated","PgC/yr","LL",-14.6395281712844 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2267,"Simulated","PgC/yr","LL",-15.09917890387 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2268,"Simulated","PgC/yr","LL",-13.3865374466304 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2269,"Simulated","PgC/yr","LL",6.35429342773172 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2270,"Simulated","PgC/yr","LL",-8.82045445860076 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2272,"Simulated","PgC/yr","LL",-0.868987461763414 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2273,"Simulated","PgC/yr","LL",-12.3942573410521 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2274,"Simulated","PgC/yr","LL",-13.0384202321104 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2275,"Simulated","PgC/yr","LL",0.830528849485862 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2276,"Simulated","PgC/yr","LL",-17.2071668727688 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2277,"Simulated","PgC/yr","LL",0.341411428663408 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2278,"Simulated","PgC/yr","LL",-6.08128296381778 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2279,"Simulated","PgC/yr","LL",-1.80603204571878 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2280,"Simulated","PgC/yr","LL",-3.83408287526769 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2281,"Simulated","PgC/yr","LL",-8.00382904293171 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2282,"Simulated","PgC/yr","LL",-9.17802964802749 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2283,"Simulated","PgC/yr","LL",1.93914296824634 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2284,"Simulated","PgC/yr","LL",-8.74303786561283 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2285,"Simulated","PgC/yr","LL",-13.4829081795281 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2286,"Simulated","PgC/yr","LL",-1.52036485710028 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2287,"Simulated","PgC/yr","LL",3.50729417113316 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2288,"Simulated","PgC/yr","LL",-15.5387864203487 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2289,"Simulated","PgC/yr","LL",-12.6277344707 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2290,"Simulated","PgC/yr","LL",-3.74397268437868 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2291,"Simulated","PgC/yr","LL",2.56052744215606 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2292,"Simulated","PgC/yr","LL",-3.52894005438869 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2293,"Simulated","PgC/yr","LL",-0.837638791914322 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2294,"Simulated","PgC/yr","LL",-4.03105949106309 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2295,"Simulated","PgC/yr","LL",-10.3704890698987 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2296,"Simulated","PgC/yr","LL",2.75379435100184 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2297,"Simulated","PgC/yr","LL",-6.49410868752605 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2298,"Simulated","PgC/yr","LL",-4.51467121688556 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2299,"Simulated","PgC/yr","LL",-6.96592889186224 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2300,"Simulated","PgC/yr","LL",-9.61128048880659 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",9.87401195711835 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",-2.09016125352189 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",-5.53418433907194 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",5.09892841851733 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",15.5201799044322 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",18.8582860250007 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",8.07676567456797 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",9.93300572031814 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",10.627042897657 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",3.77181160525279 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",-2.45828040588542 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",1.05280964607482 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",3.81144422010473 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",1.81390864314879 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",-6.23054073687247 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",6.81480094291358 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",-5.07360999375476 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",7.72986851526391 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",6.91416393883732 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",-8.3692930365719 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",-13.0444104532623 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",-12.4977660087729 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",-5.3107703901602 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",-0.291870517595785 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",9.64155272673889 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",0.627895647442982 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",6.93947271358411 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",-4.03296837425748 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",-9.31479836706171 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",10.4234500811791 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",10.5530690932783 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",-0.720531456525513 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",6.89331025471387 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",3.79426558366152 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",1.01785423304298 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",10.5948391866278 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",3.97743092504669 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",-9.74278943406197 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",0.495751869545803 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",8.49367691510468 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",-7.30643386405277 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",-8.26576927550645 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",-2.54213743476966 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",10.7001401589347 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",-9.76338095942312 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",-4.48845716125303 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",0.656057931859038 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",-14.0282343881205 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",-6.93389178778522 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",2.65441697682911 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",-12.3973978028709 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",-0.805220799271689 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",-2.33127654806551 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",5.03133809958409 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",8.99316012408951 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",7.11093741082319 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",9.09376314704235 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",3.14790591767202 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",-2.90552325438791 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",-10.2150081317665 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",3.61444558108375 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",-1.88962105870577 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",2.32233902510746 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",-7.68044274272049 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",-0.32737871569883 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",2.88101382261578 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",-8.08159711580713 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",-17.6742451708553 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",-10.9965822106777 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",-8.55583105847589 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",-13.9556389276639 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",-4.81142549806837 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",-0.540125697989257 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",-1.38791271691323 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",5.9841565337072 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",-11.3679888017539 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",-8.82966633989345 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",-3.36810319465357 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",-13.5858342392089 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",-5.42654162959987 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",4.2875759992123 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",-10.1218693960277 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",-5.15284466507531 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",-8.60539353957634 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",-12.6532325881671 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",-9.9055980671369 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",0.923277966618558 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",-0.718910575539888 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",6.3641612888528 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",-8.2824991862154 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",-3.6575522016203 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",-17.047830479169 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",-17.2076508240207 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.924820964204407 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.08332773778739 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.57193136720223 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.952883572313447 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.567044032029107 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.07714250194047 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.997142803174909 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.945551574572256 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.813473940121003 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.809841971854101 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",0.23183839085036 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",-0.462500072875194 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.17362884754219 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",1.08219125452443 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",-0.0803235312123074 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.611016572417 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.10573043145021 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.516849030480871 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.653492599644897 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.951263715577612 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",-0.45197364320031 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",0.188569186645589 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.366134570641701 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.894996820927826 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.691245179080065 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.427895532632356 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",-0.188320888249004 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",0.0218556176778378 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",0.541998063312012 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",0.989087689830326 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.0931375675177142 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.80762455037846 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.11326494600849 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.563710421871327 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",0.897185613797255 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",-0.00812785271822575 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.402525370327416 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",-0.544956920127888 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",0.983922816492539 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",0.0880075581861601 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.70285642106046 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.890485612981809 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.00737059693983 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.42700766600797 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.01084171851661 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",0.98149872630614 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",1.09596684289977 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",-0.0647375147204524 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",0.0131800194745872 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",0.247573947537877 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.96667971795142 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",1.38011599432525 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",0.938158460644839 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",0.693247567581505 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",0.70687619930905 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",0.842363005748326 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",1.53338122153682 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",0.542236972039986 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",1.52495191045202 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",0.925558803252662 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",0.00585717804929606 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",0.335025598450142 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",0.561473013853763 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",0.69127240356302 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",-0.0367180213027858 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",0.702644459014595 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",-0.209107169906488 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",0.600001213252309 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",-0.0557442401372161 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",0.636242556082616 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",-0.563413452766438 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",-0.539307839914683 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",-0.853557824259845 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",-0.170417818236899 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",-0.184209630181668 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",-0.457598276939024 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",-0.253711040498096 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",-0.230997848829161 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",-1.77932136673636 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",-0.789583345124424 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",-0.909053543759799 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",0.0260759153554267 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",-1.57734681690355 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",-1.06649411769398 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",-1.81600385731089 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",-0.360753846046197 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",-0.188700586445975 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",-1.64273641355095 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",-1.52851665091407 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",-0.98360056751062 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",-0.276205519560596 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",-0.0450740485242777 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",-1.6261505918126 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",-0.412347019254776 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",-1.8297416647711 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",8.77081831409173 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",-2.84347462717858 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",-6.52854331918963 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",4.16253521093182 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",14.4701947664568 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",17.2830125339673 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",6.98870223728745 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",8.81149011159759 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",9.58003513734779 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",2.99815066525283 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",-2.54012991709064 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",1.36808548073377 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",2.75555153600531 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",0.907396610498213 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",-5.9226801613224 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",6.074443658022 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",-5.72646481684495 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",7.026050358067 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",6.13711452317906 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",-8.77290858476308 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",-12.1809039826033 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",-12.1500222625002 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",-5.38365776567396 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",-0.970854620231445 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",8.72774090909141 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",0.272987886089161 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",6.81089617671118 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",-3.8906683006801 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",-9.36534664328348 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",9.24899001662537 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",10.064730453568 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",-2.08670350669302 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",5.76236265434521 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",3.2096126116545 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",0.285492654294451 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",10.1829804316999 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",3.50990640471547 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",-8.93784437913697 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",-0.282923790140939 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",8.09057159041826 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",-7.56034669297411 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",-8.62658032402302 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",-3.21901151173241 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",9.17689896282851 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",-10.157945082908 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",-5.06855910834816 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",-0.215387690269148 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",-13.4246602702482 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",-6.67041162621208 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",2.3586529101221 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",-12.6539384890439 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",-1.83822208168609 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",-2.96307376792076 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",4.29792381192661 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",8.09287740777882 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",6.18040747486859 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",7.55184989570663 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",2.60532879897307 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",-3.96737764187368 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",-10.5259511386905 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",3.46728005112036 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",-2.07352322580801 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",1.79750238491596 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",-7.91065796221409 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",-0.28613011366978 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",2.22521221254096 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",-7.60132451355725 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",-17.4396298227796 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",-10.5195898502884 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",-8.7090428990695 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",-12.9701933813878 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",-4.20545827385838 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",0.139722553036658 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",-1.20165855565244 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",5.89010999215379 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",-10.566304938303 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",-8.28545906084733 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",-3.05696164803079 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",-11.6768932880661 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",-4.60320578114727 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",4.81971311671873 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",-9.74252407763856 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",-3.73254085450816 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",-7.44296289320444 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",-10.7527954015985 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",-9.23634328032292 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",1.03242579811297 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",0.576856161746285 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",7.29227047727532 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",-7.19676599699617 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",-3.3001102882823 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",-16.3402485703206 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",-15.2739577262616 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",-19.3596718310499 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",3.78217457447435 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",6.5161364622638 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",4.53712480758237 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",6.45903975077295 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",6.52777424420081 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",4.61247200613021 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",2.91939751698957 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",3.79590345751961 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",5.94463692084239 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",6.48238609037679 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",8.2487584989792 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",7.64657285306402 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",7.23396160800398 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",8.57721257566846 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",6.66635312318321 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",5.31693823286737 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",8.29542544155787 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",5.84746666942109 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",6.77020363837569 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",8.08178568402552 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",8.85755363293573 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",6.53959539961962 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",9.31894222415445 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",8.65483907442428 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",7.62041639527857 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",6.05775744810162 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",8.93802081212013 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",8.17038081236373 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",9.43073088086167 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",9.92807354282762 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",7.87438384195299 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",10.2377672254973 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",7.55826082764509 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",6.95141524333717 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",10.0532951113463 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",9.2676684249804 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",11.5622063258842 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",7.37888617458023 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",11.1096244874098 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",12.7411626965529 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",9.75014174952745 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",10.4930745854203 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",8.15117485295419 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",9.44559378412332 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",9.50380199628016 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",9.01888047489716 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",11.5004239393716 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",10.8036561817914 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",9.08697155259941 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",10.2098960648031 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",10.4100417860301 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",10.8626895746163 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",10.4493753978761 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",8.80250620053096 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",10.1284396339406 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",10.2046683120325 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",12.1436772025133 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",7.51006898979672 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",11.0864229163442 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",11.7789183935064 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",11.6009479952627 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",11.3338371738533 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",15.7601143202272 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",12.4527950281086 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",9.52319615478943 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",9.78150987469036 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",12.2483609410704 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",12.8121861414246 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",11.1374200467563 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",9.74810533875588 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",10.2549142545849 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",11.1936014993774 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",11.642639725743 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",15.4977856861984 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",8.76049597926641 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",9.89512100644038 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",10.4291126281372 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",7.36579266456402 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",12.3301680335034 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",13.4886203535361 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",11.3999722677497 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",10.6505859721289 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",8.26276565932578 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",10.6096615149013 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",12.2647969957812 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",15.3519040387303 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",9.8547241501078 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",7.42363895537521 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",7.75244691071355 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",7.15048646030234 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",9.18857493837018 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",11.0360209454784 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",7.11281929518567 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",4.67711759262181 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",6.73838512220484 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",1.10713284034605 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.635808124257042 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",-0.323054120825461 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.898331338304959 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.711650386810567 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.626862671490111 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.23835595098018 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.00621309621189 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.26642186064098 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.65713805282055 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.57678996282109 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.21101709813639 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.888741945926337 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.88653598613339 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.38041900338375 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.43082623455413 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.969753515371717 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.856587836321393 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.70501822931009 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.20898932996606 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",2.04063733846439 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.37264944034252 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.812887434521503 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.661018301726863 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.987345490605767 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.83362183559992 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.97884654983788 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.98224618935486 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",2.43563771220906 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.67666009705377 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.79790476846055 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",2.33989573250694 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.77610152149062 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.93318662346782 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.85449971101736 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.64903543767943 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.51903079611126 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",2.03803824887228 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.32001613847121 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",2.11496890935643 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",2.18382320223798 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.9066521240649 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",2.23061293932167 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",2.08639613056288 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.39091335256268 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.55799439212624 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.42657997830512 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.5872770210171 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",1.668468531921 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.06847372798279 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.52471690007753 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",2.58990732822101 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.46942411486574 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.39233889774852 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.07281711232922 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",1.99129692391518 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.70891162639545 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.25072030366389 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.29494215656238 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.69665460918524 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",2.26249757419781 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.78544040790093 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",2.88544119654757 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",2.72345188781757 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",2.49425400687123 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.80285010856192 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.31642664175894 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",2.73659782166565 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.52147707890621 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",2.56752430228911 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",3.41231416168508 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",3.45119843180587 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",2.98610954759057 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",3.18508630432432 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.32274500755934 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.97436551173389 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.63286753722974 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",1.94472329156531 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.65765776628814 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",2.99679521216138 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",2.8501402987134 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",2.41334042823632 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",2.29210771404154 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.11338968245547 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",2.59270531582724 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.72767919971588 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",2.34594054062809 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",2.35958371951147 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",2.30401243095694 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",2.70957073125161 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",2.48105995253586 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.9069282942931 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",2.4010347072602 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",3.18208533575353 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",2.83162790979525 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",2.67504135149494 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",5.88032721923921 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",4.86017878435302 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",5.56070900543281 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",5.81612439367854 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",3.98560837655091 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",1.681041282952 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",2.78969066524615 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",4.6782148103479 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",4.82524801192882 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",6.67196848352129 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",6.43555596223433 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",6.34521925623036 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",7.69067754671061 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",5.2859338703291 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",3.88611131416683 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",7.3256710576027 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",4.99087847526939 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",5.06518587450814 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",6.87279573308548 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",6.81691703240674 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",5.16694537108731 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",8.50605329964118 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",7.99382002465277 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",6.6330712083057 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",4.22413452233329 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",6.95917383769803 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",6.18813547387125 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",6.99509360202008 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",8.25141224859377 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",6.07647815691355 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",7.89787069086098 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",5.78215890895225 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",5.01822917131004 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",8.19879550920795 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",7.61863389856695 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",10.0431758495055 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",5.34084860020993 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",8.78960952392584 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",10.6261938162403 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",7.56631872928048 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",7.58642252463685 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",5.92056114795191 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",7.35919801462995 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",8.11288885479438 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",7.46088639860928 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",9.07384526860902 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",9.21637993979971 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",7.41850197220125 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",8.14142344393245 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",7.88532458458821 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",8.27278290174739 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",8.97995161571278 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",6.41016744718942 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",8.05562214151865 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",8.21337095837632 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",9.4347667339258 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",5.25934829318679 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",8.79148083882178 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",9.08226421029075 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",9.33845130193481 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",8.54839690214929 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",12.8746728220609 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",9.72934277738654 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",7.02894319954663 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",6.97866000695574 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",9.9319333560469 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",10.0755887091352 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",8.61594333680271 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",7.18058028351756 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",6.842600533051 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",7.74240274479836 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",8.65653019471463 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",12.3127002341804 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",6.43775123452956 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",7.92075577901132 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",8.79624538301144 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",5.42106888043584 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",9.67251064110987 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",10.4918252419319 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",8.54983232314618 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",8.23724503842451 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",5.97065734074319 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",8.4962726833624 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",9.67209186691078 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",12.6242260975044 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",7.50878336840533 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",5.06405465741059 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",5.44843406237646 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",4.44091469846286 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",6.70751556514415 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",9.12909185728913 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",4.71178390817505 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",1.49503310905566 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",3.90675767232202 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",1.02449662562591 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",-1.80947290238799 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",-2.05444947226685 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",-2.16990232392329 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",-3.42848962013247 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",-2.83976211786384 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",-2.17438080711977 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",-3.38682878758128 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",-4.24730723987326 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",-2.06909462708753 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",-7.16615705453014 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",-4.74424514042088 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",-0.819937240539909 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",-3.00801731594318 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",-6.16631476845798 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",-5.43257706889634 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",-4.53529590878499 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",-3.75519207374483 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",-6.04178591026613 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",-3.9642699974266 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",-2.93671870522676 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",-3.45778314707498 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",-5.46581983299667 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",-5.20681904741848 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",-2.92895857486044 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",-2.03409199925985 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",-4.53905854247629 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",-6.04168134797886 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",-4.41757646847056 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",-2.95140568496235 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",-2.78828369086289 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",-4.66632693259472 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",-4.71179383240269 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",-3.08128008900977 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",-2.953850833834 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",-3.72377030209365 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",-4.81082557900537 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",-2.73456923956485 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",-3.31270377780732 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",-2.2149123669684 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",-2.97856614124447 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",-3.4076575952063 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",-3.45047343886922 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",-0.182379954439513 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",-4.76332212757141 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",-3.10483395070621 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",-0.86875142046111 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",-3.70061377708885 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",-3.82481607921429 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",-0.599530234329574 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",-2.42391790137436 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",-3.65782045453395 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",-4.30694474258274 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",-1.79893463248133 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",0.265826611691443 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",-5.036633468651 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",-4.80093398662923 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",0.208978991671495 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",-2.86059736009115 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",-1.51924000506123 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",-2.13476778674859 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",-3.0342318856881 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",-1.36357394550465 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",-2.71068560450085 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",0.582950516329263 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",-3.35139343274934 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",-1.04412425386774 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",-2.57138450809301 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",-4.18582944090775 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",0.263090297066006 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",-1.83081969549766 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",-3.99225730010346 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",-0.628613028046962 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",-2.07668906644478 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",-2.04947230739259 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",-1.80744761131602 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",-3.31365770759737 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",-0.955400579274662 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",-1.16906331795581 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",-3.98095492117441 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",-0.671937366156152 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",-1.51886068525602 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",-2.09061032850741 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",-2.28877677534947 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",-1.18371989419557 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",-2.53336726909069 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",-2.43012085798558 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",-0.862286575536532 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",-1.92030731824807 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",-0.471218795179318 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",-2.98365108570714 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",-0.272275048380172 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",-3.93933108758641 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",-2.0113440715007 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",4.32253417529003 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.148070798079822 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.072793296547077 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.0824536110373331 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.0675331913995037 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.000705122140294589 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.0426183999671382 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",-0.0513914130087595 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",-0.0131429974578469 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.1000346522037 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.0689289258494772 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",-0.0565674353089298 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.0403899712714376 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.129411053282712 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.016627826229033 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",-0.0566266198374416 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.0283914276653684 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",-0.0108080599347771 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.0525352196208658 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.0277777336680991 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.0625670846684394 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",-0.0805739337357498 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",-0.008535324476525 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",-0.0584395906359534 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.0418977190014813 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.0244010434854367 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.129313530007898 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.0404950748306913 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",-0.0177934378208801 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",-0.107670010325588 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",0.0497433133968164 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.0600173393773059 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",0.0599308366698701 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",-0.0581903158976401 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.023080814499473 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",-0.0476678898270419 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",0.0591322537041227 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.0819517087425888 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",-0.0115298283797018 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",0.000966136698359564 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",-0.0460001397854352 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.128438182084726 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.0940674522925815 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",0.00650389279594825 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",0.0156977369902287 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",-0.0220979606499788 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",0.0791366243411172 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",0.0210666279659971 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",-0.0139727645475826 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",-0.0223784632446906 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",0.0699619728439399 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.0834857250737108 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",-0.0912587236680635 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",0.0431474746661057 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",0.00371972429301565 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",0.0368307070225454 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",0.00399117719430382 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",0.0941813606437616 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",0.0813742951528466 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",0.0546065906539589 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",0.00725447215273273 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",-0.13441016340603 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",0.00493676811478773 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",0.0662057378193699 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",0.0399077194063568 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",0.143105886701304 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",0.143892545296529 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",-0.00951196249277849 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",0.0219159288656357 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",0.037677366484606 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",-0.104774312514591 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",-0.0216292133531771 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",0.0214181811498633 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",0.160453921585964 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",-0.0629063898619471 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",0.0523461498339696 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",-0.0250364754060846 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",0.11074527341299 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",-0.0647706733551292 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",-0.015605172970735 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",0.0442520387287652 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",-0.00220160323526531 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",0.112795652889172 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",0.0472709744717907 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",0.0363120114822726 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",0.0600733751722811 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",-0.101646832929374 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",-0.0370504478064831 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",0.051517158265642 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",-0.0421088007681934 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",0.0452705082531511 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",-0.0601742804201527 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",-0.0787919546386213 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",-0.177881636922063 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",0.0510177341408108 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.46963610072549 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",0.876425708499102 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",-1.88226581752545 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",-2.13690324885019 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",-2.23743659933009 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",-3.42919440216529 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",-2.882380521822 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",-2.1229890812731 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",-3.37368522255999 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",-4.34734114823086 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",-2.13802259793599 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",-7.1095891755213 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",-4.78463528025723 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",-0.949348272611833 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",-3.02464583998296 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",-6.10968780599168 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",-5.46096838487744 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",-4.5244880176678 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",-3.80772797471243 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",-6.06956375035034 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",-4.02683726605399 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",-2.8561442961322 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",-3.44924787025767 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",-5.40738053505587 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",-5.24871609434735 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",-2.9533604226743 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",-2.16340548455803 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",-4.57955340828262 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",-6.02388772324344 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",-4.30990616415798 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",-3.00114872735016 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",-2.84830226812523 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",-4.72625661634844 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",-4.65360295939256 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",-3.1043606143483 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",-2.90618315091115 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",-3.78290344575201 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",-4.89277757075798 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",-2.72304052101817 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",-3.31366967522339 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",-2.16891136517888 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",-3.10700491195334 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",-3.50172558916238 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",-3.45697796335605 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",-0.198077643836324 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",-4.74122428894747 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",-3.18397003821146 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",-0.88981799602596 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",-3.68664074125475 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",-3.80243806262108 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",-0.669492301448464 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",-2.50740384560514 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",-3.56656092197429 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",-4.35009211321936 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",-1.80265375989974 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",0.228995909219823 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",-5.04062514865387 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",-4.89511503502538 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",0.127604781782265 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",-2.9152037876614 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",-1.52649453785831 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",-2.0003584629583 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",-3.03916840671022 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",-1.4297801430829 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",-2.7505923111041 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",0.439844535996324 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",-3.49528603971585 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",-1.03461225299205 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",-2.59330137756792 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",-4.2235069004285 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",0.367864595501961 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",-1.80919075856079 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",-4.01367503768629 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",-0.789066965070912 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",-2.0137827507002 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",-2.10181889785749 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",-1.78241066090342 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",-3.42440227119681 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",-0.890629853333482 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",-1.15345815451558 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",-4.02520696703256 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",-0.669735792796657 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",-1.63165672602829 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",-2.13788037475803 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",-2.32508821715437 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",-1.24379331300697 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",-2.43172004482994 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",-2.39307089621929 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",-0.913803671612672 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",-1.87819797125953 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",-0.516489265039649 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",-2.92347643584608 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",-0.193483045059447 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",-3.76144881598048 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",-2.06236118414251 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",2.85289818378339 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/rcp85/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/rcp85/summary.csv deleted file mode 100644 index e753187d0..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_nbp/rcp85/summary.csv +++ /dev/null @@ -1,889 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2005,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,1.205921788,1.205921788,1.205921788,1.205921788,1,CMIP5 -2005,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,NA,-2.365464876,-2.365464876,-2.365464876,-2.365464876,1,CMIP5 -2005,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,4.147722907,4.147722907,4.147722907,4.147722907,1,CMIP5 -2006,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.149755896,-0.213744474,9.874011957,4.252608949,3.100964614,1,CMIP5 -2006,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.563336209,0.091677259,1.724607349,0.750869081,0.892610356,1,CMIP5 -2006,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.699850218,-0.61792151,8.770818314,3.532110453,2.501559587,1,CMIP5 -2007,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.771107464,-2.090161254,12.42799491,4.191526067,3.480646354,1,CMIP5 -2007,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.629784045,0.072793297,1.67152606,0.840874009,0.831230429,1,CMIP5 -2007,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.241362421,-2.843474627,10.73368117,3.321563782,2.406545651,1,CMIP5 -2008,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.245363177,-5.534184339,18.66922716,3.012322743,1.771076421,1,CMIP5 -2008,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.809939906,-0.323054121,1.78738083,0.858051082,0.863820969,1,CMIP5 -2008,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.673141565,-6.528543319,16.12665771,2.134286317,1.210639915,1,CMIP5 -2009,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.547422763,-2.169902324,8.670113918,3.681250285,4.452114184,1,CMIP5 -2009,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.596543135,0.067533191,1.91207936,0.864019939,0.925607455,1,CMIP5 -2009,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.153645258,-2.237436599,7.410867135,2.789138183,3.035447836,1,CMIP5 -2010,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.568297778,-3.42848962,15.5201799,4.602184203,4.384674435,1,CMIP5 -2010,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.574178989,0.000705122,1.79356402,0.798365698,0.639347209,1,CMIP5 -2010,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.275499264,-3.429194402,14.47019477,3.756921931,2.91192175,1,CMIP5 -2011,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.279265956,-2.839762118,18.85828603,6.919116322,5.622704708,1,CMIP5 -2011,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.707241087,0.0426184,1.963932318,0.873704929,0.852002587,1,CMIP5 -2011,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.626706283,-2.882380522,17.28301253,5.892268993,4.331802345,1,CMIP5 -2012,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.810610741,-2.174380807,14.14490258,6.152630769,5.498081596,1,CMIP5 -2012,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.653034184,-0.051391413,1.814910949,0.910055276,1.006811215,1,CMIP5 -2012,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.151243695,-2.122989081,12.37990615,5.133514556,4.560597782,1,CMIP5 -2013,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.806682776,-3.386828788,16.89050311,6.435945396,6.864454589,1,CMIP5 -2013,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.623846539,-0.013142997,1.746022975,0.790554381,0.975882335,1,CMIP5 -2013,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.077453948,-3.373685223,14.85309445,5.49742636,5.800590388,1,CMIP5 -2014,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.274801447,-4.24730724,10.6270429,4.309486066,5.978620785,1,CMIP5 -2014,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.52461668,0.100034652,1.74127887,0.9708275,1.0399479,1,CMIP5 -2014,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.872920477,-4.347341148,9.580035137,3.311186714,4.478597822,1,CMIP5 -2015,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.929312822,-2.069094627,14.25864235,4.47802932,4.57331954,1,CMIP5 -2015,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.701417712,0.068928926,2.003620245,1.038950322,0.969599496,1,CMIP5 -2015,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.303892776,-2.610252344,12.42802022,3.355962038,3.190941266,1,CMIP5 -2016,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.973028685,-7.166157055,15.5847237,4.017952641,2.969160848,1,CMIP5 -2016,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.836682928,-0.056567435,1.862251575,0.857344121,0.761438503,1,CMIP5 -2016,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.144774096,-7.109589176,13.56915115,3.12511359,1.963085712,1,CMIP5 -2017,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.829383509,-4.74424514,13.09250734,4.857984558,5.185351508,1,CMIP5 -2017,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.809199404,-0.462500073,1.935073494,0.692608383,0.506836705,1,CMIP5 -2017,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.38790158,-4.78463528,11.16332175,4.092662481,3.901820721,1,CMIP5 -2018,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.931996387,-0.819937241,12.05868803,5.304131528,5.522702914,1,CMIP5 -2018,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.695463908,0.129411053,2.067980888,0.981914448,1.031185397,1,CMIP5 -2018,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.320454269,-0.949348273,10.38136406,4.278099831,4.038271307,1,CMIP5 -2019,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.881919425,-3.008017316,16.43770277,5.224875137,3.866813309,1,CMIP5 -2019,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.862480703,0.016627826,2.400442089,1.041559197,0.8068309,1,CMIP5 -2019,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.191385836,-3.02464584,14.61366419,4.069691411,2.296295475,1,CMIP5 -2020,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.297623657,-6.230540737,13.22206271,3.376591065,4.602162079,1,CMIP5 -2020,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.803388536,-0.080323531,2.057329282,0.842626216,0.936882139,1,CMIP5 -2020,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.466310115,-6.109687806,11.31359371,2.504822461,3.558800551,1,CMIP5 -2021,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.383389797,-5.432577069,13.17370185,5.413382313,6.065869588,1,CMIP5 -2021,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.865418692,0.028391428,2.435761237,1.065388289,0.957972982,1,CMIP5 -2021,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.681598821,-5.460968385,11.80831756,4.327425759,4.980277486,1,CMIP5 -2022,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.948843199,-5.073609994,17.93822219,4.194347774,4.026154155,1,CMIP5 -2022,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.786347879,-0.01080806,2.083179167,1.095181328,1.037741973,1,CMIP5 -2022,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.154683129,-5.726464817,15.53946298,3.061096668,2.643322216,1,CMIP5 -2023,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.691833578,-3.755192074,19.30703076,6.340457001,6.340568432,1,CMIP5 -2023,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.823202189,0.05253522,2.127095937,1.02653324,0.686718433,1,CMIP5 -2023,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.934752945,-3.807727975,16.53455483,5.213120275,5.700411717,1,CMIP5 -2024,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.299870468,-6.04178591,13.76282364,4.494464686,6.842183789,1,CMIP5 -2024,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.765828877,0.027777734,1.901179152,0.930476861,0.970114089,1,CMIP5 -2024,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.552543362,-6.06956375,11.77473658,3.489800286,5.601150199,1,CMIP5 -2025,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.3177719,-8.369293037,13.25365934,3.142515446,4.258964429,1,CMIP5 -2025,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.83704567,0.040707769,2.410063194,0.987854023,1.013576643,1,CMIP5 -2025,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.019215218,-8.772908585,11.41648289,2.649076271,3.478837846,1,CMIP5 -2026,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.889147469,-13.04441045,15.22931324,3.936234618,6.811317731,1,CMIP5 -2026,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.964626779,-0.451973643,2.0556583,0.96031567,1.002735845,1,CMIP5 -2026,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.977804491,-12.18090398,13.49442282,3.054412337,5.232262239,1,CMIP5 -2027,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.673664747,-12.49776601,18.13750968,3.301188931,3.089053208,1,CMIP5 -2027,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.892169357,-0.018892505,2.036033505,0.93506433,0.865920693,1,CMIP5 -2027,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.630266335,-12.15002226,15.73108938,2.332662324,2.223132369,1,CMIP5 -2028,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.68262854,-5.465819833,15.06853117,4.628881752,4.620619633,1,CMIP5 -2028,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.982117323,-0.058439591,2.825739506,0.974387456,0.590531105,1,CMIP5 -2028,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.312270641,-5.407380535,16.04891228,3.969434922,3.631714134,1,CMIP5 -2029,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.389325818,-5.206819047,9.788926968,3.820094364,3.836377505,1,CMIP5 -2029,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.967603764,0.041897719,2.46114394,1.058483524,0.778007561,1,CMIP5 -2029,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.849275657,-5.248716094,8.078496647,3.480893377,5.12905043,1,CMIP5 -2030,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.112112312,-2.928958575,12.38592569,6.8134715,8.476928212,1,CMIP5 -2030,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.743403726,0.024401043,2.363137706,1.106204838,1.186436854,1,CMIP5 -2030,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.618363674,-2.953360423,10.77543117,5.650525255,7.290491386,1,CMIP5 -2031,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.789711899,-3.968152298,19.90860904,4.786156523,3.342826548,1,CMIP5 -2031,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.952172282,0.12931353,2.614789251,1.116138162,0.908509328,1,CMIP5 -2031,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.852377436,-4.309758818,17.16849289,3.57980606,2.248561204,1,CMIP5 -2032,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.549542745,-4.539058542,13.86524058,4.913987683,6.775998212,1,CMIP5 -2032,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.007691385,-0.188320888,2.267970742,0.913699943,0.417508374,1,CMIP5 -2032,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.89664127,-4.579553408,12.37311737,3.881676176,5.747136781,1,CMIP5 -2033,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.973381519,-6.041681348,15.36000789,4.53597848,6.000304632,1,CMIP5 -2033,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.093635018,-0.136228777,2.445439659,1.086586954,1.142556537,1,CMIP5 -2033,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.345220756,-6.023887723,13.52187459,3.538439588,4.023861242,1,CMIP5 -2034,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.763264306,-9.314798367,16.05484415,5.014268428,6.025852631,1,CMIP5 -2034,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.11699566,-0.10767001,2.688683475,1.307691654,1.100409065,1,CMIP5 -2034,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.972045209,-9.365346643,13.60621281,4.124396873,4.765023439,1,CMIP5 -2035,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.36306247,-2.951405685,13.20366701,6.862583853,8.651175075,1,CMIP5 -2035,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.802477572,0.049743313,2.596150219,1.361012699,1.534826165,1,CMIP5 -2035,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.796749165,-3.001148727,11.46559535,5.965454721,7.549704628,1,CMIP5 -2036,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.017775683,-4.215204636,14.86762816,5.448950738,5.712684555,1,CMIP5 -2036,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.041130481,0.060017339,2.590127145,1.100565051,0.724890914,1,CMIP5 -2036,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.703373246,-5.072428989,13.24620863,5.258278174,7.863609293,1,CMIP5 -2037,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.84563471,-4.666326933,12.06243436,4.973592499,5.302189215,1,CMIP5 -2037,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.925187586,0.059930837,2.854981087,1.433785454,1.450565422,1,CMIP5 -2037,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.134769456,-4.726256616,10.7370893,3.563780238,3.710153827,1,CMIP5 -2038,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.277911581,-4.711793832,19.87330062,7.622539878,7.225785541,1,CMIP5 -2038,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.039629508,-0.058190316,3.131362834,1.388928452,1.440649371,1,CMIP5 -2038,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.357682651,-4.653602959,17.22654422,6.145755211,5.772260782,1,CMIP5 -2039,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.61492394,-3.081280089,10.83874917,3.957989915,3.794265584,1,CMIP5 -2039,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.980134393,0.023080814,2.447821907,1.15604288,0.979365598,1,CMIP5 -2039,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.70997159,-3.104360614,19.14735533,4.874375089,3.720432552,1,CMIP5 -2040,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.505602489,-2.953850834,16.24689592,6.786987972,5.855390338,1,CMIP5 -2040,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.110622619,-0.275627049,2.889283995,1.086578805,1.112876199,1,CMIP5 -2040,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.937655376,-2.906183151,14.62546895,6.025679476,5.0659541,1,CMIP5 -2041,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.918061858,-3.723770302,17.62120244,8.312977494,9.931253806,1,CMIP5 -2041,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.090531603,-0.008127853,2.781524849,1.179429361,1.062513094,1,CMIP5 -2041,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.26218564,-3.782903446,15.14905152,7.348113922,8.900807165,1,CMIP5 -2042,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.858952153,-4.810825579,11.56220633,4.857589053,3.977430925,1,CMIP5 -2042,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.045437306,0.081951709,3.028276689,1.084073811,0.928047364,1,CMIP5 -2042,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.013324389,-4.892777571,10.04317585,3.83710565,3.509906405,1,CMIP5 -2043,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.436935118,-9.742789434,14.2012915,3.143306239,3.108543789,1,CMIP5 -2043,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.298639126,-0.54495692,3.289088237,1.088916612,0.734978924,1,CMIP5 -2043,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.365059133,-8.937844379,12.47204591,1.989306425,1.209573534,1,CMIP5 -2044,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.073221116,-3.312703778,12.20859158,4.263629361,1.445472394,1,CMIP5 -2044,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.157916737,-0.32363195,2.802612117,1.327347678,1.518629793,1,CMIP5 -2044,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.06176876,-3.313669675,10.1449535,3.074368869,0.56311749,1,CMIP5 -2045,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.307834586,-2.214912367,13.87541649,6.948308275,8.147922753,1,CMIP5 -2045,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.374978139,-0.350371791,3.321636569,1.184283378,0.933429639,1,CMIP5 -2045,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.021621537,-2.168911365,14.62880795,6.193340412,6.297268157,1,CMIP5 -2046,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.890775257,-7.306433864,18.90237534,6.744546834,8.569158635,1,CMIP5 -2046,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.177383034,0.128438182,3.305938233,1.414066815,1.324119507,1,CMIP5 -2046,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.271182937,-7.560346693,16.06961389,5.622939281,7.373261758,1,CMIP5 -2047,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.790367346,-8.265769276,15.56708798,5.844972612,9.414133734,1,CMIP5 -2047,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.1764854,0.094067452,2.906652124,1.502468766,1.5414529,1,CMIP5 -2047,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.270657781,-8.626580324,15.44337176,4.650814457,6.900601649,1,CMIP5 -2048,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.422358326,-3.450473439,14.6911214,5.278285781,4.736658669,1,CMIP5 -2048,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.182962874,-0.075229134,3.021447468,1.416990584,1.360435613,1,CMIP5 -2048,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.734118462,-3.456977963,14.11563248,4.143636443,3.251914836,1,CMIP5 -2049,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.895805769,-0.182379954,15.99191746,7.262799637,9.266268138,1,CMIP5 -2049,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.115013718,0.015697737,2.988114359,1.551847252,1.603661067,1,CMIP5 -2049,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.294405881,-0.198077644,13.14486471,5.99192273,6.676123311,1,CMIP5 -2050,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.290437708,-9.763380959,18.4269583,4.550015534,5.098204715,1,CMIP5 -2050,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.144736639,-0.022097961,3.13542404,1.419995414,1.200877536,1,CMIP5 -2050,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.286161669,-10.15794508,15.61763807,3.189259591,3.266158002,1,CMIP5 -2051,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.179738798,-4.488457161,12.63538152,5.80012816,8.759905664,1,CMIP5 -2051,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.144324517,0.079136624,3.57514961,1.447128063,1.269746559,1,CMIP5 -2051,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.281257923,-5.068559108,10.46359307,4.374896342,7.611234349,1,CMIP5 -2052,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.5333096,-0.86875142,19.19357732,7.88653041,7.271273292,1,CMIP5 -2052,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.28126107,0.021066628,3.737232221,1.575290912,1.590442016,1,CMIP5 -2052,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.371311491,-0.889817996,16.32826646,6.271421331,5.929779643,1,CMIP5 -2053,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.14277841,-14.02823439,15.86740737,5.64421657,9.060934142,1,CMIP5 -2053,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.28109172,-0.064737515,3.621282946,1.391244675,1.411956569,1,CMIP5 -2053,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.890493328,-13.42466027,12.25394699,4.321947303,7.648977739,1,CMIP5 -2054,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.99485173,-6.933891788,13.6060663,6.038136368,9.995245997,1,CMIP5 -2054,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.302298724,-0.022378463,3.375853717,1.410364507,1.253012285,1,CMIP5 -2054,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.068995064,-6.670411626,12.76851155,4.743345388,7.547620431,1,CMIP5 -2055,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.465685158,-0.599530234,14.61026197,6.141741451,5.666374575,1,CMIP5 -2055,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.196702318,0.069961973,3.571239265,1.459128833,1.432462753,1,CMIP5 -2055,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.113876798,-0.669492301,13.92696023,5.208841178,4.615015535,1,CMIP5 -2056,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.262901996,-12.3973978,13.44574759,4.35963553,6.349088068,1,CMIP5 -2056,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.241866004,0.083485725,3.267306633,1.659010672,1.745698309,1,CMIP5 -2056,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.492146748,-12.65393849,12.4769389,3.138276409,4.842139902,1,CMIP5 -2057,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.101969445,-3.657820455,12.12388287,5.047534723,4.212448746,1,CMIP5 -2057,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.39513358,-0.091258724,4.255858039,1.68206195,1.611623931,1,CMIP5 -2057,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.479245235,-3.566560922,12.5994716,3.817986169,3.162668597,1,CMIP5 -2058,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.108725792,-4.306944743,14.18079849,5.130335104,8.442521573,1,CMIP5 -2058,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.33190267,0.043147475,4.174624903,1.404444605,1.113995836,1,CMIP5 -2058,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.846208591,-4.350092113,14.42387133,4.127787695,4.895952105,1,CMIP5 -2059,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.965622068,-1.798934632,11.01330925,4.644558469,4.068683289,1,CMIP5 -2059,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.354840711,0.003719724,3.751044383,1.575441691,1.503608768,1,CMIP5 -2059,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.07922383,-1.80265376,11.15195589,3.464226718,3.304873303,1,CMIP5 -2060,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.02699861,0.265826612,15.29166099,7.799252526,9.527178333,1,CMIP5 -2060,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.510705071,0.036830707,4.141861378,1.684445679,1.389846656,1,CMIP5 -2060,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.963391719,0.228995909,12.48156747,6.341148002,7.898862613,1,CMIP5 -2061,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.083133188,-5.036633469,14.17087753,6.045215072,7.110937411,1,CMIP5 -2061,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.407978143,-0.223735771,3.938182618,1.484702375,1.416829965,1,CMIP5 -2061,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.271784383,-5.040625149,12.64866001,5.03638256,6.180407475,1,CMIP5 -2062,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.644700924,-4.800933987,13.65412785,8.178922828,10.62163212,1,CMIP5 -2062,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.277988006,0.094181361,3.619599098,1.762750829,2.014268603,1,CMIP5 -2062,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.372320351,-4.895115035,13.369613,7.091831335,8.665042386,1,CMIP5 -2063,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.87589944,0.208978992,15.17139899,4.839668386,3.101556117,1,CMIP5 -2063,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.469368058,0.025914438,4.184315364,1.504103948,1.349915649,1,CMIP5 -2063,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.726605095,-0.043690245,12.80651943,4.46365242,2.780564787,1,CMIP5 -2064,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.203752949,-2.905523254,18.14976266,7.170694532,7.950602075,1,CMIP5 -2064,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.362605934,0.054606591,4.117210482,1.661166007,1.847275306,1,CMIP5 -2064,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.290088809,-3.967377642,15.50056988,5.774981145,6.582297604,1,CMIP5 -2065,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.427504509,-10.21500813,16.57446459,6.746841324,8.026948175,1,CMIP5 -2065,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.376071379,-0.640870631,3.207832679,1.443848177,1.552185493,1,CMIP5 -2065,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.287233957,-10.52595114,14.02108721,5.308156447,6.999056285,1,CMIP5 -2066,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.109294609,-6.414753529,15.66180706,4.829270695,4.764604288,1,CMIP5 -2066,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.530312932,-0.227135527,4.014830486,1.355464346,1.288604056,1,CMIP5 -2066,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.443181838,-6.814900403,13.28805704,3.654989807,2.77222314,1,CMIP5 -2067,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.417503419,-3.034231886,16.49971551,5.29885274,3.599632714,1,CMIP5 -2067,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.713853639,-0.620807947,4.454567794,1.595578742,1.577555551,1,CMIP5 -2067,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.823371321,-3.039168407,16.40350206,4.567510431,3.121075367,1,CMIP5 -2068,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.249404913,-2.863341543,15.76011432,5.959664843,4.562862547,1,CMIP5 -2068,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.610706705,-0.187464409,3.976377888,1.729055642,1.655040397,1,CMIP5 -2068,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.021104488,-2.675877711,12.87467282,4.291953568,2.329333852,1,CMIP5 -2069,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.520626737,-7.680442743,13.1070513,4.224602782,2.876641493,1,CMIP5 -2069,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.489508435,-0.330015112,4.008598163,1.419658726,1.283315383,1,CMIP5 -2069,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.437987863,-7.910657962,11.20280337,2.969337715,2.858258308,1,CMIP5 -2070,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.592784457,-0.327378716,14.42594019,7.083851656,8.378151186,1,CMIP5 -2070,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.620919439,-0.036718021,3.928703588,1.669840452,1.449642592,1,CMIP5 -2070,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.28033621,-0.286130114,13.48007717,6.209041087,6.097264765,1,CMIP5 -2071,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.351971457,-3.351393433,15.24852241,6.521683964,5.702132383,1,CMIP5 -2071,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.452832638,0.143892545,3.910634893,1.733651357,1.583976328,1,CMIP5 -2071,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.280431092,-3.49528604,13.29213943,4.959382041,4.556493341,1,CMIP5 -2072,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.96845102,-8.081597116,13.36044724,4.039812603,3.49610704,1,CMIP5 -2072,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.384381732,-0.20910717,3.42354615,1.432402412,1.453751954,1,CMIP5 -2072,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.573684655,-7.601324514,11.77964305,3.671203151,2.494620544,1,CMIP5 -2073,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.964098638,-17.67424517,12.81218614,3.810792399,6.882737787,1,CMIP5 -2073,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.529760736,-0.602513095,3.982928486,1.346857319,0.902609896,1,CMIP5 -2073,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.26172729,-17.43962982,10.07558871,3.01787475,6.889350565,1,CMIP5 -2074,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.787571406,-10.99658221,14.4467087,4.598956068,6.015210009,1,CMIP5 -2074,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.554475637,-0.059598903,4.060837416,1.491318969,1.482563615,1,CMIP5 -2074,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.008901537,-10.51958985,12.3544874,3.699658538,5.18210161,1,CMIP5 -2075,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.16830625,-8.555831058,16.01014293,5.72861213,6.189421752,1,CMIP5 -2075,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.641773954,-0.140550945,4.349075775,1.688736046,1.527085221,1,CMIP5 -2075,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.532255917,-8.709042899,12.88985154,4.556732327,4.523768064,1,CMIP5 -2076,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.367790372,-13.95563893,15.79635046,3.455374788,4.642989394,1,CMIP5 -2076,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.774474896,-0.563413453,4.175893489,1.586295931,1.439348798,1,CMIP5 -2076,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.91125797,-12.97019338,13.36440332,1.980730996,2.335272098,1,CMIP5 -2077,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.582992225,-4.811425498,11.77419671,4.685101618,5.483828409,1,CMIP5 -2077,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.796893891,-0.53930784,4.320770359,1.555205388,1.24968489,1,CMIP5 -2077,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.360222509,-4.205458274,9.774679845,3.271082216,3.774906053,1,CMIP5 -2078,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.052441192,-0.628613028,14.55651352,4.428416623,1.282855016,1,CMIP5 -2078,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.835958796,-0.853557824,4.65409092,1.408725381,1.072547757,1,CMIP5 -2078,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.219803899,-0.789066965,13.7478128,3.265749645,0.673867263,1,CMIP5 -2079,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.749481537,-2.076689066,15.49778569,4.174778293,1.51539681,1,CMIP5 -2079,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.586507156,-0.360842638,3.585694072,1.410595173,1.282339505,1,CMIP5 -2079,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.537617151,-2.013782751,12.31270023,2.87391112,0.827281391,1,CMIP5 -2080,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.864963666,-2.049472307,16.89800331,5.127527652,4.64715871,1,CMIP5 -2080,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.565029746,-0.18420963,3.953060287,1.499951928,1.473355682,1,CMIP5 -2080,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.269232261,-2.101818898,14.52824486,3.718329182,2.446204193,1,CMIP5 -2081,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.233465004,-11.3679888,18.11138013,5.42088367,6.14788937,1,CMIP5 -2081,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.537784916,-0.457598277,4.118356423,1.14465057,0.816898334,1,CMIP5 -2081,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.070240758,-10.56630494,16.00316812,4.332801398,5.292493591,1,CMIP5 -2082,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.365787332,-8.82966634,15.14173908,5.349766856,6.173159372,1,CMIP5 -2082,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.390658652,-0.25371104,3.840618132,1.333402878,1.196305545,1,CMIP5 -2082,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.423248671,-8.285459061,12.95182123,4.459377435,5.855179673,1,CMIP5 -2083,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.520160061,-3.368103195,8.910866239,2.069662764,0.460403857,1,CMIP5 -2083,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.519127135,-0.230997849,4.038659736,1.303127047,1.239099989,1,CMIP5 -2083,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.50305349,-3.056961648,6.683637247,0.959229372,0.244692392,1,CMIP5 -2084,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.17091883,-13.58583424,13.56827461,3.253640524,4.209511174,1,CMIP5 -2084,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.042109936,-1.779321367,4.055569699,1.183477744,1.401409655,1,CMIP5 -2084,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.89205946,-11.67689329,11.29607395,2.535391394,4.440659266,1,CMIP5 -2085,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.507467068,-5.42654163,13.48862035,4.991607021,5.21153913,1,CMIP5 -2085,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.892876547,-0.885239358,4.313312338,1.308700691,1.148836638,1,CMIP5 -2085,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.66213099,-4.603205781,10.94978114,4.190848165,5.42184241,1,CMIP5 -2086,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.439595879,-0.671937366,12.09246306,5.401840651,3.90911576,1,CMIP5 -2086,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.699906613,-0.909053544,4.031018876,1.511947468,1.539990064,1,CMIP5 -2086,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.977654276,-0.669735793,11.54192682,4.216644478,2.639796418,1,CMIP5 -2087,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.920693433,-10.1218694,10.65058597,1.449618711,1.206163246,1,CMIP5 -2087,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.696259463,-0.978267714,4.11929319,1.30595525,0.983002111,1,CMIP5 -2087,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.171671405,-9.742524078,8.388534345,0.414537069,0.161455305,1,CMIP5 -2088,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.098177195,-5.152844665,12.75555779,2.652860141,1.468284624,1,CMIP5 -2088,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.958630434,-1.577346817,3.933036042,1.143032152,1.437395398,1,CMIP5 -2088,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.830703174,-3.732540855,10.19354777,1.674511984,1.615557691,1,CMIP5 -2089,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.574759947,-8.60539354,12.85675042,4.101727764,4.316259086,1,CMIP5 -2089,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.782692899,-1.066494118,3.814408968,1.186344773,1.290850962,1,CMIP5 -2089,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.010769404,-7.442962893,9.05986522,3.009287334,3.850625327,1,CMIP5 -2090,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.973434017,-12.65323259,12.264797,3.213890107,3.106188156,1,CMIP5 -2090,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.871977967,-1.816003857,4.313492167,1.161350975,1.036566127,1,CMIP5 -2090,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.492720083,-10.7527954,9.672091867,2.17230209,2.824832789,1,CMIP5 -2091,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.659867044,-9.905598067,15.35190404,4.031109596,5.226736871,1,CMIP5 -2091,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.828933661,-0.917344527,4.217179714,1.371936974,1.329277957,1,CMIP5 -2091,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.499948575,-9.23634328,12.6242261,2.787634669,3.595545049,1,CMIP5 -2092,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.475349744,-2.430120858,15.28946475,6.049085625,4.631843666,1,CMIP5 -2092,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.695829555,-0.555999214,4.277351766,1.460514517,1.489328498,1,CMIP5 -2092,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.516431264,-2.393070896,13.29923785,4.928836599,3.893660734,1,CMIP5 -2093,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.869057559,-0.862286576,13.26353258,3.192146658,1.705169721,1,CMIP5 -2093,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.138716293,-1.642736414,4.864236006,1.267698078,1.50822773,1,CMIP5 -2093,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.393382866,-2.78744111,10.81214041,2.022921132,0.341462846,1,CMIP5 -2094,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.825699127,-8.867487188,10.95428852,3.851795416,5.523073975,1,CMIP5 -2094,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.948587148,-1.528516651,4.572954846,1.302424283,1.418344622,1,CMIP5 -2094,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.984566623,-9.26836795,8.613563233,2.72069239,5.149096432,1,CMIP5 -2095,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.6479081,-8.282499186,16.35525975,3.072432448,1.919348621,1,CMIP5 -2095,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.811757267,-0.983600568,4.445438641,1.132396642,0.916079332,1,CMIP5 -2095,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.174903549,-7.196765997,11.92694098,2.09262816,1.784872907,1,CMIP5 -2096,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.549461338,-3.657552202,15.5953484,5.010558769,5.293938581,1,CMIP5 -2096,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.648815553,-0.495213364,4.211506441,1.211087711,0.979620094,1,CMIP5 -2096,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.031094868,-3.300110288,13.34847919,3.708980516,4.233188799,1,CMIP5 -2097,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.598895417,-17.04783048,11.40136531,3.874479939,7.028550557,1,CMIP5 -2097,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.662616062,-0.824571521,4.297132225,1.28270578,1.310128664,1,CMIP5 -2097,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.041922546,-16.34024857,12.22593753,2.757046146,4.184650027,1,CMIP5 -2098,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.16938971,-17.20765082,15.17165571,2.236435088,3.178824174,1,CMIP5 -2098,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.759071078,-1.626150592,3.86793035,1.0187216,1.021618193,1,CMIP5 -2098,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.683773073,-15.27395773,13.0177967,1.345286865,2.261481285,1,CMIP5 -2099,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.838819521,-4.845123111,14.66671314,4.420534728,4.677117593,1,CMIP5 -2099,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.831725173,-1.425929149,3.720711261,1.164654942,0.795396115,1,CMIP5 -2099,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.610127359,-19.35967183,13.57868499,0.291207104,0.965776652,1,CMIP5 -2100,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.99385262,-4.748648062,13.20728384,5.376496412,4.657922913,1,CMIP5 -2100,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.879455851,-1.829741665,3.98441377,1.345009285,1.755740331,1,CMIP5 -2100,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.541394787,-5.326773897,13.10628314,4.89140325,3.906757672,1,CMIP5 -2101,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.14175143,-4.70915574,9.633446684,2.462145472,2.462145472,1,CMIP5 -2101,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.439050732,1.403109163,4.852447788,3.127778476,3.127778476,1,CMIP5 -2101,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,12.51511101,-9.488591727,8.210448,-0.639071864,-0.639071864,1,CMIP5 -2102,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.01855009,-2.085822292,10.66833356,4.291255633,4.291255633,1,CMIP5 -2102,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.240445123,1.417047171,4.58551505,3.00128111,3.00128111,1,CMIP5 -2102,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.19341879,-6.608035177,9.221849491,1.306907157,1.306907157,1,CMIP5 -2103,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.989930992,8.115449483,18.00070469,13.05807709,13.05807709,1,CMIP5 -2103,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.564502265,2.364223198,3.162549957,2.763386577,2.763386577,1,CMIP5 -2103,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.389759451,5.798515589,14.83500006,10.31675783,10.31675783,1,CMIP5 -2104,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,3.906452345,3.906452345,3.906452345,3.906452345,1,CMIP5 -2104,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.975655146,1.194266465,5.402478329,3.298372397,3.298372397,1,CMIP5 -2104,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,2.737995503,2.737995503,2.737995503,2.737995503,1,CMIP5 -2105,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.691726998,5.981199683,16.85894432,11.420072,11.420072,1,CMIP5 -2105,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.650252742,1.899890113,4.233699922,3.066795018,3.066795018,1,CMIP5 -2105,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.268220279,1.786907944,14.89415076,8.340529353,8.340529353,1,CMIP5 -2106,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.702962447,5.678566839,8.086919428,6.882743134,6.882743134,1,CMIP5 -2106,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.865335005,1.407702298,4.045684361,2.726693329,2.726693329,1,CMIP5 -2106,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.153730903,4.073185791,4.290594119,4.181889955,4.181889955,1,CMIP5 -2107,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.065931266,4.840841847,9.176723425,7.008782636,7.008782636,1,CMIP5 -2107,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.256291939,3.25652448,3.618976016,3.437750248,3.437750248,1,CMIP5 -2107,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.358091415,1.256205179,6.005263602,3.63073439,3.63073439,1,CMIP5 -2108,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.625689026,2.441193486,8.982905641,5.712049563,5.712049563,1,CMIP5 -2108,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.864373184,3.056253455,4.278661735,3.667457595,3.667457595,1,CMIP5 -2108,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.509609484,-1.788966091,6.002798365,2.106916137,2.106916137,1,CMIP5 -2109,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,15.68380459,-10.17099472,12.00925444,0.919129859,0.919129859,1,CMIP5 -2109,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.58599435,-0.065256499,3.591891783,1.763317642,1.763317642,1,CMIP5 -2109,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,18.13317144,-13.69275488,11.9514221,-0.870666388,-0.870666388,1,CMIP5 -2110,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,13.84747117,13.84747117,13.84747117,13.84747117,1,CMIP5 -2110,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.04235945,1.613708763,4.502041197,3.05787498,3.05787498,1,CMIP5 -2110,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,9.369308143,9.369308143,9.369308143,9.369308143,1,CMIP5 -2111,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.1026636,9.82302334,9.968211595,9.895617468,9.895617468,1,CMIP5 -2111,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.764310193,1.605776758,4.100888161,2.85333246,2.85333246,1,CMIP5 -2111,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.838184558,5.750606615,8.350192147,7.050399381,7.050399381,1,CMIP5 -2112,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.035593843,3.343916991,7.636894974,5.490405983,5.490405983,1,CMIP5 -2112,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.479696748,1.23056342,4.737384191,2.983973805,2.983973805,1,CMIP5 -2112,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.561871368,2.146728529,2.941334638,2.544031584,2.544031584,1,CMIP5 -2113,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.65771458,14.27156707,18.03014308,16.15085508,16.15085508,1,CMIP5 -2113,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.71708605,1.455972189,3.884298568,2.670135379,2.670135379,1,CMIP5 -2113,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.989527036,12.75239485,14.1517974,13.45209612,13.45209612,1,CMIP5 -2114,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.477653585,-0.86293096,12.54049528,5.838782159,5.838782159,1,CMIP5 -2114,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.911857554,0.669004527,4.786992971,2.727998749,2.727998749,1,CMIP5 -2114,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.555765264,-1.487101283,7.784150865,3.148524791,3.148524791,1,CMIP5 -2115,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.29813655,-2.457431249,13.52054669,5.53155772,5.53155772,1,CMIP5 -2115,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.899679219,1.679216173,4.365768289,3.022492231,3.022492231,1,CMIP5 -2115,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,13.12354574,-6.761794677,11.7977017,2.51795351,2.51795351,1,CMIP5 -2116,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.584093624,10.04565154,16.52853892,13.28709523,13.28709523,1,CMIP5 -2116,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.11756289,3.53337431,3.699633344,3.616503827,3.616503827,1,CMIP5 -2116,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.477256641,6.532997821,12.86479488,9.698896353,9.698896353,1,CMIP5 -2117,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.104084181,1.170132753,6.974184262,4.072158507,4.072158507,1,CMIP5 -2117,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.172354335,-0.675276426,2.396896536,0.860810055,0.860810055,1,CMIP5 -2117,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.181926949,-1.199117502,7.543447431,3.172164964,3.172164964,1,CMIP5 -2118,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.610228394,8.538911813,13.64454577,11.09172879,11.09172879,1,CMIP5 -2118,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.163434396,-0.191604043,2.867954221,1.338175089,1.338175089,1,CMIP5 -2118,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.516787441,8.635129773,10.78019114,9.707660458,9.707660458,1,CMIP5 -2119,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.892542568,8.616551212,9.878797018,9.247674115,9.247674115,1,CMIP5 -2119,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.723782789,1.364448293,3.802245291,2.583346792,2.583346792,1,CMIP5 -2119,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.80550073,6.101091713,7.24024177,6.670666741,6.670666741,1,CMIP5 -2120,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.895236512,0.333070174,8.670193602,4.501631888,4.501631888,1,CMIP5 -2120,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.199649163,0.600292944,3.711066622,2.155679783,2.155679783,1,CMIP5 -2120,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.693527106,-0.238018064,4.985418062,2.373699999,2.373699999,1,CMIP5 -2121,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,22.61183603,-14.27732291,17.70064227,1.711659684,1.711659684,1,CMIP5 -2121,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.563330405,-0.36446376,3.260632863,1.448084551,1.448084551,1,CMIP5 -2121,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,19.96113631,-13.79047015,14.43883954,0.324184699,0.324184699,1,CMIP5 -2122,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.091910336,6.384084292,7.928278698,7.156181495,7.156181495,1,CMIP5 -2122,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.027193893,2.249475315,2.287933287,2.268704301,2.268704301,1,CMIP5 -2122,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.03054948,4.192918338,5.650335389,4.921626863,4.921626863,1,CMIP5 -2123,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.771328819,6.921191495,10.8404423,8.880816895,8.880816895,1,CMIP5 -2123,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.522047153,1.180684153,4.747397442,2.964040797,2.964040797,1,CMIP5 -2123,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.231412262,2.217467234,9.615801406,5.91663432,5.91663432,1,CMIP5 -2124,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.237932987,8.305779663,14.29912197,11.30245082,11.30245082,1,CMIP5 -2124,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.485931177,1.544936537,5.060574123,3.30275533,3.30275533,1,CMIP5 -2124,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.772422441,6.761854186,9.26843804,8.015146113,8.015146113,1,CMIP5 -2125,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.080317476,-3.444056903,-3.33047084,-3.387263872,-3.387263872,1,CMIP5 -2125,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.083991116,0.983692522,2.51668746,1.750189991,1.750189991,1,CMIP5 -2125,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.037313769,-5.807154649,-4.340171448,-5.073663049,-5.073663049,1,CMIP5 -2126,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.04068543,-0.852949303,13.34672421,6.246887453,6.246887453,1,CMIP5 -2126,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.917584901,0.004357982,2.716232556,1.360295269,1.360295269,1,CMIP5 -2126,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.118617678,-0.848579859,10.63287937,4.892149754,4.892149754,1,CMIP5 -2127,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.268277541,-4.217639247,7.475470989,1.628915871,1.628915871,1,CMIP5 -2127,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.838719296,-1.05457647,4.374192421,1.659807975,1.659807975,1,CMIP5 -2127,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.96748434,-8.526082623,8.398496034,-0.063793294,-0.063793294,1,CMIP5 -2128,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.576023043,-0.72296157,11.40536653,5.34120248,5.34120248,1,CMIP5 -2128,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.100581714,0.179532386,4.564417098,2.371974742,2.371974742,1,CMIP5 -2128,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.56094532,-5.227628176,11.12201749,2.947194657,2.947194657,1,CMIP5 -2129,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.706342334,10.44830083,14.27564687,12.36197385,12.36197385,1,CMIP5 -2129,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.433721827,2.145182832,4.172771684,3.158977258,3.158977258,1,CMIP5 -2129,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.277191671,8.315318004,10.12153979,9.218428896,9.218428896,1,CMIP5 -2130,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.794750432,0.228866431,7.00966752,3.619266976,3.619266976,1,CMIP5 -2130,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.156040212,-0.94832883,2.100772479,0.576221824,0.576221824,1,CMIP5 -2130,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.68359584,1.123541574,4.918719207,3.021130391,3.021130391,1,CMIP5 -2131,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.975735603,4.17181671,11.20856948,7.690193096,7.690193096,1,CMIP5 -2131,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.037642709,-0.646619631,5.063469448,2.208424908,2.208424908,1,CMIP5 -2131,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.871304735,-0.837344242,11.70857523,5.435615494,5.435615494,1,CMIP5 -2132,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.014494081,-3.345039845,-0.496114994,-1.920577419,-1.920577419,1,CMIP5 -2132,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.095069024,0.614573235,3.577448263,2.096010749,2.096010749,1,CMIP5 -2132,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.094668607,-4.026899723,-3.893018095,-3.959958909,-3.959958909,1,CMIP5 -2133,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,14.23264183,-13.60392262,6.524072486,-3.539925065,-3.539925065,1,CMIP5 -2133,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.423128708,-0.216324341,1.796283579,0.789979619,0.789979619,1,CMIP5 -2133,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,12.72706836,-13.26388139,4.734911291,-4.264485051,-4.264485051,1,CMIP5 -2134,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.027536091,10.39022866,11.84338414,11.1168064,11.1168064,1,CMIP5 -2134,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.336282814,1.577663711,3.46745299,2.52255835,2.52255835,1,CMIP5 -2134,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.3274111,6.941830197,10.23328654,8.587558368,8.587558368,1,CMIP5 -2135,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.030234408,1.331788907,1.374546817,1.353167862,1.353167862,1,CMIP5 -2135,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.319897467,1.244180718,4.525011179,2.884595949,2.884595949,1,CMIP5 -2135,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.349719138,-3.138919322,0.184085351,-1.477416985,-1.477416985,1,CMIP5 -2136,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.39181802,-3.715151728,10.98109825,3.632973263,3.632973263,1,CMIP5 -2136,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.622147827,1.475451171,2.355301066,1.915376118,1.915376118,1,CMIP5 -2136,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.96569441,-6.031573694,9.476260061,1.722343184,1.722343184,1,CMIP5 -2137,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.007997847,1.348113902,2.773638128,2.060876015,2.060876015,1,CMIP5 -2137,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.521880489,-0.764804347,2.801673243,1.018434448,1.018434448,1,CMIP5 -2137,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.454638221,0.000895194,2.058064295,1.029479744,1.029479744,1,CMIP5 -2138,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.161097933,-0.181108139,2.875145868,1.347018864,1.347018864,1,CMIP5 -2138,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.006660118,1.81595283,3.239585221,2.527769026,2.527769026,1,CMIP5 -2138,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.053808478,-3.243387436,1.075349931,-1.084018753,-1.084018753,1,CMIP5 -2139,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.127975306,0.908376302,8.160428527,4.534402415,4.534402415,1,CMIP5 -2139,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.75438572,1.712447443,4.193523522,2.952985482,2.952985482,1,CMIP5 -2139,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.33817943,-0.720342915,4.000555708,1.640106397,1.640106397,1,CMIP5 -2140,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.033951631,-6.327484731,-3.45104275,-4.88926374,-4.88926374,1,CMIP5 -2140,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.047055674,-1.298584896,3.010602564,0.856008834,0.856008834,1,CMIP5 -2140,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.974969964,-6.415074131,-5.036258384,-5.725666257,-5.725666257,1,CMIP5 -2141,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.482867504,-6.009068022,-1.083549563,-3.546308792,-3.546308792,1,CMIP5 -2141,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.880602787,-1.280320817,2.793466712,0.756572947,0.756572947,1,CMIP5 -2141,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.286716413,-8.75256243,0.138197185,-4.307182622,-4.307182622,1,CMIP5 -2142,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.457485779,5.726849559,6.373832152,6.050340856,6.050340856,1,CMIP5 -2142,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.29524232,0.554657238,3.800620056,2.177638647,2.177638647,1,CMIP5 -2142,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.79538651,2.606169263,5.145229215,3.875699239,3.875699239,1,CMIP5 -2143,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.437686645,0.8891781,7.16501474,4.02709642,4.02709642,1,CMIP5 -2143,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.555293897,2.031733718,2.817037878,2.424385798,2.424385798,1,CMIP5 -2143,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.92312194,-1.118873846,4.429258408,1.655192281,1.655192281,1,CMIP5 -2144,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.934524706,9.229253042,10.55087056,9.890061799,9.890061799,1,CMIP5 -2144,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.567499509,1.758813198,2.561378701,2.16009595,2.16009595,1,CMIP5 -2144,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.369674985,7.473844005,7.996643382,7.735243693,7.735243693,1,CMIP5 -2145,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.63858582,1.705360988,19.57902046,10.64219072,10.64219072,1,CMIP5 -2145,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.194794203,0.441541472,3.545449201,1.993495336,1.993495336,1,CMIP5 -2145,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.43741581,1.270762157,16.03149716,8.651129657,8.651129657,1,CMIP5 -2146,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.533324927,5.450652394,6.204887739,5.827770067,5.827770067,1,CMIP5 -2146,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.963054003,0.298031834,3.074209429,1.686120632,1.686120632,1,CMIP5 -2146,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.445768143,2.402391833,5.861230312,4.131811072,4.131811072,1,CMIP5 -2147,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.589358784,1.738105532,3.98579828,2.861951906,2.861951906,1,CMIP5 -2147,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.964673472,0.731364617,3.509832486,2.120598551,2.120598551,1,CMIP5 -2147,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.366339408,0.510977248,1.029059407,0.770018328,0.770018328,1,CMIP5 -2148,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.792562,-9.150389443,10.3552388,0.602424681,0.602424681,1,CMIP5 -2148,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.425327187,0.146202426,3.576133027,1.861167726,1.861167726,1,CMIP5 -2148,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.31173021,-9.19757771,6.799624562,-1.198976574,-1.198976574,1,CMIP5 -2149,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.089615442,-0.585813982,-0.459078608,-0.522446295,-0.522446295,1,CMIP5 -2149,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.949412701,2.011956287,3.354628605,2.683292446,2.683292446,1,CMIP5 -2149,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.910064231,-3.769966147,-2.482940969,-3.126453558,-3.126453558,1,CMIP5 -2150,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.771915094,-1.332244662,2.587835258,0.627795298,0.627795298,1,CMIP5 -2150,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.318086175,1.02694711,2.891002455,1.958974783,1.958974783,1,CMIP5 -2150,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.426686821,-2.29029432,-0.272654469,-1.281474394,-1.281474394,1,CMIP5 -2151,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.181237751,1.831664362,4.916400373,3.374032367,3.374032367,1,CMIP5 -2151,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.425423007,0.583611418,2.599463967,1.591537692,1.591537692,1,CMIP5 -2151,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.761343411,1.261434687,2.338136864,1.799785775,1.799785775,1,CMIP5 -2152,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.98724861,1.902957545,10.37020573,6.136581638,6.136581638,1,CMIP5 -2152,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.968150214,0.304428518,3.087813244,1.696120881,1.696120881,1,CMIP5 -2152,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.030927393,1.596077382,7.29666957,4.446373476,4.446373476,1,CMIP5 -2153,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.260567764,-2.288784964,3.736567752,0.723891394,0.723891394,1,CMIP5 -2153,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.123284502,0.155660976,3.158438715,1.657049846,1.657049846,1,CMIP5 -2153,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.137232765,-2.41322824,0.609275321,-0.90197646,-0.90197646,1,CMIP5 -2154,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.439268646,-5.219507786,6.71542039,0.747956302,0.747956302,1,CMIP5 -2154,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.274364731,-0.492546427,2.723891022,1.115672298,1.115672298,1,CMIP5 -2154,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.160077386,-4.701684168,4.009980817,-0.345851676,-0.345851676,1,CMIP5 -2155,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.584036189,-4.800028531,-1.145649506,-2.972839018,-2.972839018,1,CMIP5 -2155,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.268771003,-1.69789659,4.339057257,1.320580334,1.320580334,1,CMIP5 -2155,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.612537428,-5.426801582,-3.146329281,-4.286565432,-4.286565432,1,CMIP5 -2156,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.692292616,-5.197296834,-2.804033665,-4.000665249,-4.000665249,1,CMIP5 -2156,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.6041526,-1.603879037,2.078948889,0.237534926,0.237534926,1,CMIP5 -2156,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.863548314,-4.849809218,-3.628567481,-4.239188349,-4.239188349,1,CMIP5 -2157,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.13327961,5.12680477,6.729504165,5.928154468,5.928154468,1,CMIP5 -2157,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.577054017,0.724147792,2.954438972,1.839293382,1.839293382,1,CMIP5 -2157,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.420330825,3.796412153,4.390849706,4.09363093,4.09363093,1,CMIP5 -2158,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.190342608,4.897760259,7.995372481,6.44656637,6.44656637,1,CMIP5 -2158,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.705685034,-0.021573814,3.804842656,1.891634421,1.891634421,1,CMIP5 -2158,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.459456772,4.219637171,4.86940717,4.544522171,4.544522171,1,CMIP5 -2159,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.912298465,-2.164879642,6.196373032,2.015746695,2.015746695,1,CMIP5 -2159,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.981036579,1.125857806,3.927466604,2.526662205,2.526662205,1,CMIP5 -2159,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.853862924,-6.037217253,5.069822212,-0.48369752,-0.48369752,1,CMIP5 -2160,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.272314268,-11.00117128,-2.130779373,-6.565975326,-6.565975326,1,CMIP5 -2160,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.073076865,-1.158908021,3.18707896,1.01408547,1.01408547,1,CMIP5 -2160,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.198461078,-9.79552795,-5.272220915,-7.533874433,-7.533874433,1,CMIP5 -2161,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.368206085,8.572775064,9.093497104,8.833136084,8.833136084,1,CMIP5 -2161,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.732125106,0.842491697,4.706300075,2.774395886,2.774395886,1,CMIP5 -2161,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.040889521,3.905650831,8.206118033,6.055884432,6.055884432,1,CMIP5 -2162,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.383547897,-3.859540214,6.582373361,1.361416573,1.361416573,1,CMIP5 -2162,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.72403854,-1.395195818,3.871389992,1.238097087,1.238097087,1,CMIP5 -2162,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.709372561,-2.501505307,2.744339676,0.121417185,0.121417185,1,CMIP5 -2163,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.880056166,-3.680662179,-1.021861252,-2.351261715,-2.351261715,1,CMIP5 -2163,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.13386844,0.092992393,3.110738081,1.601865237,1.601865237,1,CMIP5 -2163,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.253587705,-4.090601582,-3.73197441,-3.911287996,-3.911287996,1,CMIP5 -2164,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.066408637,4.896124238,12.06110805,8.478616142,8.478616142,1,CMIP5 -2164,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.642342232,-0.239108723,3.497727498,1.629309388,1.629309388,1,CMIP5 -2164,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.478591921,5.073537186,8.578795496,6.826166341,6.826166341,1,CMIP5 -2165,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.152972421,-5.405951411,0.46723851,-2.469356451,-2.469356451,1,CMIP5 -2165,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.623883185,-0.399688965,3.311042221,1.455676628,1.455676628,1,CMIP5 -2165,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.535305796,-4.97409676,-2.80284648,-3.88847162,-3.88847162,1,CMIP5 -2166,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.367870065,-6.889112793,-2.126225271,-4.507669032,-4.507669032,1,CMIP5 -2166,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.584289177,-1.044484345,4.02446602,1.489990838,1.489990838,1,CMIP5 -2166,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.185114762,-6.094423004,-5.832631197,-5.963527101,-5.963527101,1,CMIP5 -2167,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.362905294,2.292920537,12.70564106,7.499280799,7.499280799,1,CMIP5 -2167,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.137625586,0.23322873,1.842074262,1.037651496,1.037651496,1,CMIP5 -2167,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.407374479,0.468737124,12.35856014,6.41364863,6.41364863,1,CMIP5 -2168,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.111504826,-3.886151755,6.171034819,1.142441532,1.142441532,1,CMIP5 -2168,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.273885363,-0.01571179,3.20004773,1.59216797,1.59216797,1,CMIP5 -2168,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.305972825,-7.036171503,6.124461477,-0.455855013,-0.455855013,1,CMIP5 -2169,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.001495883,-6.370378395,-4.954049334,-5.662213865,-5.662213865,1,CMIP5 -2169,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.046155278,-1.161899652,1.731800893,0.284950621,0.284950621,1,CMIP5 -2169,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.020996313,-6.651912665,-5.208005832,-5.929959249,-5.929959249,1,CMIP5 -2170,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.77400253,-6.722957755,12.75642343,3.016732838,3.016732838,1,CMIP5 -2170,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.738568477,0.534513806,4.407434487,2.470974147,2.470974147,1,CMIP5 -2170,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.98552492,-7.161585974,8.374292353,0.60635319,0.60635319,1,CMIP5 -2171,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.975556936,-12.33063036,-5.294130262,-8.812380312,-8.812380312,1,CMIP5 -2171,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.070924514,-2.641485634,1.701457463,-0.470014086,-0.470014086,1,CMIP5 -2171,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.943323469,-9.709490931,-6.961216525,-8.335353728,-8.335353728,1,CMIP5 -2172,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.586480521,-5.428075495,-3.184453225,-4.30626436,-4.30626436,1,CMIP5 -2172,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.632778589,-1.631029958,2.09228123,0.230625636,0.230625636,1,CMIP5 -2172,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.99780341,-5.24247586,-3.831368745,-4.536922302,-4.536922302,1,CMIP5 -2173,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,15.1901009,-18.62941533,2.852631386,-7.88839197,-7.88839197,1,CMIP5 -2173,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.771895764,0.871320508,1.962945966,1.417133237,1.417133237,1,CMIP5 -2173,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,2.000115432,2.000115432,2.000115432,2.000115432,1,CMIP5 -2174,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.357220841,-5.399138435,6.419756622,0.510309094,0.510309094,1,CMIP5 -2174,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.537783668,-0.926867576,2.662100507,0.867616466,0.867616466,1,CMIP5 -2174,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.78119206,-8.014405684,7.232502349,-0.390951667,-0.390951667,1,CMIP5 -2175,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.529023131,-4.393280316,0.597512058,-1.897884129,-1.897884129,1,CMIP5 -2175,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.958635062,-1.631515977,3.966839416,1.16766172,1.16766172,1,CMIP5 -2175,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.363406009,-3.320347425,-2.806413719,-3.063380572,-3.063380572,1,CMIP5 -2176,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.633495568,-13.65051623,-0.026696145,-6.838606187,-6.838606187,1,CMIP5 -2176,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.006035026,-1.466120584,2.785054919,0.659467168,0.659467168,1,CMIP5 -2176,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.612606773,-12.12792751,-2.776289329,-7.45210842,-7.45210842,1,CMIP5 -2177,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.182782837,-1.095481253,10.47672121,4.69061998,4.69061998,1,CMIP5 -2177,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.498423178,-0.403846226,4.543671279,2.069912527,2.069912527,1,CMIP5 -2177,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.715116686,-0.702607566,5.9655744,2.631483417,2.631483417,1,CMIP5 -2178,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.605110182,-3.457015686,-1.187047098,-2.322031392,-2.322031392,1,CMIP5 -2178,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.489075452,-3.198668601,1.735629223,-0.731519689,-0.731519689,1,CMIP5 -2178,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.958527275,-5.162263063,1.850153459,-1.656054802,-1.656054802,1,CMIP5 -2179,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.46936163,-6.111032914,12.93752099,3.413244036,3.413244036,1,CMIP5 -2179,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.482995431,0.852025205,4.363511018,2.607768112,2.607768112,1,CMIP5 -2179,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.92790087,-6.856063886,8.598321736,0.871128925,0.871128925,1,CMIP5 -2180,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.94867265,-12.72136263,7.005039419,-2.858161603,-2.858161603,1,CMIP5 -2180,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,5.55667676,-3.565095974,4.293231662,0.364067844,0.364067844,1,CMIP5 -2180,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.465670999,-9.222759469,2.749507272,-3.236626099,-3.236626099,1,CMIP5 -2181,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.40727192,-8.010416622,10.95032916,1.469956269,1.469956269,1,CMIP5 -2181,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.950973678,2.343990259,3.688870132,3.016430195,3.016430195,1,CMIP5 -2181,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,14.32416364,-11.63311636,8.624310124,-1.504403121,-1.504403121,1,CMIP5 -2182,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.757921296,-0.846860017,0.225002559,-0.310928729,-0.310928729,1,CMIP5 -2182,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.113637665,-1.339062145,3.064286469,0.862612162,0.862612162,1,CMIP5 -2182,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.78969799,-3.870160225,1.489282069,-1.190439078,-1.190439078,1,CMIP5 -2183,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.950994056,-14.32591932,-0.253088565,-7.289503942,-7.289503942,1,CMIP5 -2183,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.368588693,-1.012044352,2.337645902,0.662800775,0.662800775,1,CMIP5 -2183,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.541769202,-13.22608637,-2.560414077,-7.893250221,-7.893250221,1,CMIP5 -2184,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.802018769,-3.977632747,2.813447322,-0.582092713,-0.582092713,1,CMIP5 -2184,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.461521311,-1.328686922,3.566643463,1.118978271,1.118978271,1,CMIP5 -2184,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.154010994,-7.489369098,4.042143837,-1.72361263,-1.72361263,1,CMIP5 -2185,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.224284538,-13.17970239,-0.134594091,-6.657148239,-6.657148239,1,CMIP5 -2185,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.445649008,0.386464389,2.430920822,1.408692605,1.408692605,1,CMIP5 -2185,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.64139685,-15.54798963,-0.498781886,-8.023385757,-8.023385757,1,CMIP5 -2186,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.716589107,2.192459216,3.205869249,2.699164233,2.699164233,1,CMIP5 -2186,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.268414734,0.804262908,4.01228579,2.408274349,2.408274349,1,CMIP5 -2186,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.536599597,-0.763139821,1.409940169,0.323400174,0.323400174,1,CMIP5 -2187,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.78107392,2.830529821,6.763562277,4.797046049,4.797046049,1,CMIP5 -2187,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.685582645,1.854441585,2.824001859,2.339221722,2.339221722,1,CMIP5 -2187,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.469522703,0.035605425,4.942251487,2.488928456,2.488928456,1,CMIP5 -2188,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.25160497,-9.519600876,7.806785029,-0.856407923,-0.856407923,1,CMIP5 -2188,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.916650516,-1.774955934,2.349810782,0.287427424,0.287427424,1,CMIP5 -2188,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.343764385,-7.74603404,5.468044276,-1.138994882,-1.138994882,1,CMIP5 -2189,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.439319595,-5.689258082,0.588887897,-2.550185092,-2.550185092,1,CMIP5 -2189,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.558087827,0.16270555,2.366174487,1.264440018,1.264440018,1,CMIP5 -2189,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.855212234,-5.786510729,-1.748630864,-3.767570797,-3.767570797,1,CMIP5 -2190,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.9652429,-18.00932268,1.740513235,-8.134404721,-8.134404721,1,CMIP5 -2190,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.977342703,-1.902465697,5.136559858,1.61704708,1.61704708,1,CMIP5 -2190,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.977202015,-16.03063535,-3.334954512,-9.682794934,-9.682794934,1,CMIP5 -2191,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.524827687,-7.589112496,-5.4326805,-6.510896498,-6.510896498,1,CMIP5 -2191,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.283315893,0.037802741,3.266899045,1.652350893,1.652350893,1,CMIP5 -2191,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.774752103,-8.644980468,-7.549315537,-8.097148002,-8.097148002,1,CMIP5 -2192,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.285510651,-1.721177463,4.339449822,1.309136179,1.309136179,1,CMIP5 -2192,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.523953305,-3.249780848,3.148055272,-0.050862788,-0.050862788,1,CMIP5 -2192,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.105165769,1.220957,1.369683856,1.295320428,1.295320428,1,CMIP5 -2193,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.68539849,-7.005807562,5.277200777,-0.864303392,-0.864303392,1,CMIP5 -2193,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.944978416,0.011769246,2.762384101,1.387076673,1.387076673,1,CMIP5 -2193,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.70649304,-6.947194674,2.537218739,-2.204987968,-2.204987968,1,CMIP5 -2194,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.456932935,-8.498331421,3.461577831,-2.518376795,-2.518376795,1,CMIP5 -2194,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.162025545,-0.576290801,3.895488609,1.659598904,1.659598904,1,CMIP5 -2194,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.28627525,-7.868658489,-0.392736336,-4.130697413,-4.130697413,1,CMIP5 -2195,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.02408121,-13.41275754,3.591861191,-4.910448172,-4.910448172,1,CMIP5 -2195,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.729340851,-1.218170646,2.641700201,0.711764778,0.711764778,1,CMIP5 -2195,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.264614197,-12.12705441,0.975088642,-5.575982882,-5.575982882,1,CMIP5 -2196,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,15.80209717,-16.29864342,6.048896711,-5.124873352,-5.124873352,1,CMIP5 -2196,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.05873726,-1.272031076,4.467890203,1.597929563,1.597929563,1,CMIP5 -2196,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.7072169,-14.93327586,1.623229067,-6.655023395,-6.655023395,1,CMIP5 -2197,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.310756086,-5.57979269,0.51653703,-2.53162783,-2.53162783,1,CMIP5 -2197,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,5.293658581,-3.538500462,3.947863298,0.204681418,0.204681418,1,CMIP5 -2197,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.852032015,-3.382395183,-2.177439951,-2.779917567,-2.779917567,1,CMIP5 -2198,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.509364751,-1.552559064,1.9962186,0.221829768,0.221829768,1,CMIP5 -2198,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.430718341,-1.328492164,2.10906268,0.390285258,0.390285258,1,CMIP5 -2198,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.134164168,-0.280581321,-0.090844536,-0.185712929,-0.185712929,1,CMIP5 -2199,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.18142062,-14.90211874,0.910797941,-6.995660401,-6.995660401,1,CMIP5 -2199,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.625424433,-0.200662115,2.098035162,0.948686524,0.948686524,1,CMIP5 -2199,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.476088278,-14.56397763,-1.162765064,-7.863371345,-7.863371345,1,CMIP5 -2200,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,20.06689733,-18.84512497,9.533753389,-4.655685791,-4.655685791,1,CMIP5 -2200,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.356695802,-2.987070722,3.174227568,0.093578423,0.093578423,1,CMIP5 -2200,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,15.70426657,-15.83227073,6.376916041,-4.727677343,-4.727677343,1,CMIP5 -2201,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.113082262,-7.553356515,2.50606089,-2.523647812,-2.523647812,1,CMIP5 -2201,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.283548981,-0.798108797,3.845530705,1.523710954,1.523710954,1,CMIP5 -2201,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.837229645,-6.72329009,-1.296627883,-4.009958987,-4.009958987,1,CMIP5 -2202,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.420781553,-12.4019193,-4.735776511,-8.568847907,-8.568847907,1,CMIP5 -2202,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.625444732,-2.197608819,2.929544291,0.365967736,0.365967736,1,CMIP5 -2202,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.947939624,-15.26437337,-2.6100758,-8.937224586,-8.937224586,1,CMIP5 -2203,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.360062847,-0.64819801,5.517862,2.434831995,2.434831995,1,CMIP5 -2203,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.860893683,-0.536750313,3.509164334,1.486207011,1.486207011,1,CMIP5 -2203,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.537310916,-0.13407305,2.040012897,0.952969924,0.952969924,1,CMIP5 -2204,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.50074673,-6.171759346,-4.049382966,-5.110571156,-5.110571156,1,CMIP5 -2204,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.369794148,-2.802807442,3.377014706,0.287103632,0.287103632,1,CMIP5 -2204,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.750823111,-9.490995077,-1.358103039,-5.424549058,-5.424549058,1,CMIP5 -2205,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.927019884,1.844133189,5.983564406,3.913848797,3.913848797,1,CMIP5 -2205,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.757341174,-0.952398042,2.947071242,0.9973366,0.9973366,1,CMIP5 -2205,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.235443025,2.726576664,3.059543383,2.893060024,2.893060024,1,CMIP5 -2206,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.726129295,-6.906568821,-3.051239799,-4.97890431,-4.97890431,1,CMIP5 -2206,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.833036629,-1.452632152,2.553886671,0.55062726,0.55062726,1,CMIP5 -2206,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.490288125,-9.411368081,-1.646928153,-5.529148117,-5.529148117,1,CMIP5 -2207,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.21058682,-7.004822251,-2.464366827,-4.734594539,-4.734594539,1,CMIP5 -2207,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.415307537,-0.843966083,3.986008155,1.571021036,1.571021036,1,CMIP5 -2207,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.563165335,-10.92330555,-1.641588124,-6.282446839,-6.282446839,1,CMIP5 -2208,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.478228601,-10.16437,0.411442312,-4.876463844,-4.876463844,1,CMIP5 -2208,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.659789782,0.144103095,2.491400315,1.317751705,1.317751705,1,CMIP5 -2208,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.763057487,-10.19947777,-2.04928371,-6.124380739,-6.124380739,1,CMIP5 -2209,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.57843363,-14.11029275,-1.978555568,-8.044424159,-8.044424159,1,CMIP5 -2209,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.808001347,-1.405304561,1.151595464,-0.126854548,-0.126854548,1,CMIP5 -2209,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.738655562,-12.64064931,-3.11075122,-7.875700264,-7.875700264,1,CMIP5 -2210,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.661774404,-12.35332988,-10.00322598,-11.17827793,-11.17827793,1,CMIP5 -2210,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,6.220093052,-5.952607301,2.843932653,-1.554337324,-1.554337324,1,CMIP5 -2210,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.677668666,-15.1313784,-4.273515244,-9.702446822,-9.702446822,1,CMIP5 -2211,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.510195195,-11.39901782,-2.19221148,-6.79561465,-6.79561465,1,CMIP5 -2211,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.10138612,-3.665139647,2.135096229,-0.765021709,-0.765021709,1,CMIP5 -2211,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.44802202,-13.47953926,1.296195181,-6.091672042,-6.091672042,1,CMIP5 -2212,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.66990271,-4.940165033,7.320928963,1.190381965,1.190381965,1,CMIP5 -2212,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.300670157,-1.353629033,3.314223468,0.980297217,0.980297217,1,CMIP5 -2212,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.82898953,-8.200372432,8.528344996,0.163986282,0.163986282,1,CMIP5 -2213,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.20276806,-15.90177085,-0.058664318,-7.980217582,-7.980217582,1,CMIP5 -2213,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.895141106,-2.128796359,1.965551458,-0.08162245,-0.08162245,1,CMIP5 -2213,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.295002422,-13.7299981,-1.999093178,-7.86454564,-7.86454564,1,CMIP5 -2214,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,19.34009057,-16.27919456,11.07182383,-2.603685364,-2.603685364,1,CMIP5 -2214,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.106986063,0.247397677,3.227125944,1.73726181,1.73726181,1,CMIP5 -2214,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,17.11918629,-16.35112928,7.859056154,-4.246036562,-4.246036562,1,CMIP5 -2215,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.14948522,-16.3152771,-7.618591698,-11.9669344,-11.9669344,1,CMIP5 -2215,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.562377219,0.862338911,1.657660401,1.259999656,1.259999656,1,CMIP5 -2215,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.467094112,-16.96847877,-9.23684013,-13.10265945,-13.10265945,1,CMIP5 -2216,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.86622947,-16.11821462,0.663168025,-7.727523298,-7.727523298,1,CMIP5 -2216,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.025724203,-2.03050638,2.248513825,0.109003722,0.109003722,1,CMIP5 -2216,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.823900141,-14.03724401,-1.558364761,-7.797804387,-7.797804387,1,CMIP5 -2217,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.191328034,-3.977435053,-0.878429228,-2.427932141,-2.427932141,1,CMIP5 -2217,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.42908219,-3.040801119,1.80865342,-0.616073849,-0.616073849,1,CMIP5 -2217,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.131519289,-2.661981125,-1.0617712,-1.861876162,-1.861876162,1,CMIP5 -2218,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.7340004,-11.41915286,3.761016091,-3.829068384,-3.829068384,1,CMIP5 -2218,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.996162326,0.903878872,2.312665144,1.608272008,1.608272008,1,CMIP5 -2218,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.637210701,-12.16038514,1.468688935,-5.345848103,-5.345848103,1,CMIP5 -2219,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.07485253,-8.103384433,8.973035776,0.434825671,0.434825671,1,CMIP5 -2219,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.269307904,-0.133653,3.075633014,1.470990007,1.470990007,1,CMIP5 -2219,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.7659869,-7.896300217,5.914890907,-0.990704655,-0.990704655,1,CMIP5 -2220,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.754179728,6.159796627,7.226367826,6.693082227,6.693082227,1,CMIP5 -2220,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.46593792,-0.601795902,2.885566949,1.141885523,1.141885523,1,CMIP5 -2220,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.631714838,4.360076253,6.667669507,5.51387288,5.51387288,1,CMIP5 -2221,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,16.13011766,-14.73975213,8.071679031,-3.33403655,-3.33403655,1,CMIP5 -2221,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.281389502,-2.527435147,3.527363952,0.499964402,0.499964402,1,CMIP5 -2221,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.8597462,-12.20250223,4.569711686,-3.816395274,-3.816395274,1,CMIP5 -2222,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.453651478,1.907756217,6.791956978,4.349856598,4.349856598,1,CMIP5 -2222,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,5.110771596,-2.92380944,4.303913065,0.690051812,0.690051812,1,CMIP5 -2222,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.504571281,2.526391894,4.654177005,3.59028445,3.59028445,1,CMIP5 -2223,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.271117812,-17.52562679,-7.24271337,-12.38417008,-12.38417008,1,CMIP5 -2223,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.831973675,-1.973361016,2.031654563,0.029146774,0.029146774,1,CMIP5 -2223,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.421958503,-15.48470134,-9.231107655,-12.3579045,-12.3579045,1,CMIP5 -2224,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.832833507,1.968044466,5.974276032,3.971160249,3.971160249,1,CMIP5 -2224,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.72177833,-1.090825319,2.758350509,0.833762595,0.833762595,1,CMIP5 -2224,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.181313702,2.980182609,3.236598905,3.108390757,3.108390757,1,CMIP5 -2225,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.49561157,-12.36130615,3.895943638,-4.232681258,-4.232681258,1,CMIP5 -2225,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,5.673088656,-4.063737035,3.959221882,-0.052257577,-0.052257577,1,CMIP5 -2225,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.920126171,-8.394661222,-0.0223385,-4.208499861,-4.208499861,1,CMIP5 -2226,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.07351381,-16.25403491,0.820492071,-7.716771417,-7.716771417,1,CMIP5 -2226,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.964375491,-0.668938636,2.109107825,0.720084595,0.720084595,1,CMIP5 -2226,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.03791107,-15.45953539,-1.263785409,-8.361660397,-8.361660397,1,CMIP5 -2227,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.12634261,-8.802824318,-5.795721761,-7.29927304,-7.29927304,1,CMIP5 -2227,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.487100307,-1.990956271,4.354761839,1.181902784,1.181902784,1,CMIP5 -2227,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.297452622,-10.08118233,-6.832093674,-8.456638003,-8.456638003,1,CMIP5 -2228,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,-4.507974128,-4.507974128,-4.507974128,-4.507974128,1,CMIP5 -2228,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.682568015,-1.444051732,2.349672337,0.452810302,0.452810302,1,CMIP5 -2228,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.84266439,-19.32234511,-6.816929207,-13.06963716,-13.06963716,1,CMIP5 -2229,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.336592917,-6.17742286,1.36965922,-2.40388182,-2.40388182,1,CMIP5 -2229,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.480416873,0.88628595,1.565698008,1.225991979,1.225991979,1,CMIP5 -2229,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.790479474,-6.954197948,-0.179436905,-3.566817427,-3.566817427,1,CMIP5 -2230,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.110951597,-7.252413959,2.803990231,-2.224211864,-2.224211864,1,CMIP5 -2230,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.002788226,-2.772663724,1.473920109,-0.649371808,-0.649371808,1,CMIP5 -2230,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.171796823,-4.557760181,1.342051466,-1.607854358,-1.607854358,1,CMIP5 -2231,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.880746906,-15.70624787,-8.803829399,-12.25503863,-12.25503863,1,CMIP5 -2231,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.066397893,-0.31366989,1.194444473,0.440387291,0.440387291,1,CMIP5 -2231,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.741527718,-15.25321668,-9.96189744,-12.60755706,-12.60755706,1,CMIP5 -2232,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.356674846,-7.026432362,-2.27937727,-4.652904816,-4.652904816,1,CMIP5 -2232,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.69956633,-2.967452086,2.264524793,-0.351463646,-0.351463646,1,CMIP5 -2232,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.254447632,-4.509633159,-4.149789867,-4.329711513,-4.329711513,1,CMIP5 -2233,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.110399696,-5.668615586,4.387008098,-0.640803744,-0.640803744,1,CMIP5 -2233,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.153387145,2.331398062,2.548320243,2.439859153,2.439859153,1,CMIP5 -2233,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.843233149,-7.81727964,1.860513489,-2.978383076,-2.978383076,1,CMIP5 -2234,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.761291296,-14.04131284,-7.307830116,-10.67457148,-10.67457148,1,CMIP5 -2234,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.539161735,-0.244338931,1.932364469,0.844012769,0.844012769,1,CMIP5 -2234,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.162451314,-13.67042155,-9.198040014,-11.43423078,-11.43423078,1,CMIP5 -2235,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.795738976,-3.507615929,3.274583172,-0.116516378,-0.116516378,1,CMIP5 -2235,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.356620607,-2.946145355,1.800833032,-0.572656161,-0.572656161,1,CMIP5 -2235,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.994293233,-5.277115225,6.028522687,0.375703731,0.375703731,1,CMIP5 -2236,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.51962144,-11.06814035,2.394637401,-4.336751473,-4.336751473,1,CMIP5 -2236,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.301688233,-3.257095925,2.826409915,-0.215343005,-0.215343005,1,CMIP5 -2236,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.286114256,-7.877310521,-0.401616049,-4.139463285,-4.139463285,1,CMIP5 -2237,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.864090597,1.776511717,2.998520358,2.387516037,2.387516037,1,CMIP5 -2237,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.785252212,0.904171884,2.014686212,1.459429048,1.459429048,1,CMIP5 -2237,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.647788835,-0.216845876,2.113479441,0.948316783,0.948316783,1,CMIP5 -2238,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.791281491,6.327229417,8.860483995,7.593856706,7.593856706,1,CMIP5 -2238,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.063387606,-0.289187617,2.62888312,1.169847752,1.169847752,1,CMIP5 -2238,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.768364477,3.716524946,9.045797098,6.381161022,6.381161022,1,CMIP5 -2239,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,-1.713785432,-1.713785432,-1.713785432,-1.713785432,1,CMIP5 -2239,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.840615014,-4.129010036,1.302439805,-1.413285116,-1.413285116,1,CMIP5 -2239,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,-2.995546009,-2.995546009,-2.995546009,-2.995546009,1,CMIP5 -2240,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.46287282,-19.08176081,-1.456597049,-10.26917893,-10.26917893,1,CMIP5 -2240,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.262237698,-1.968111012,2.645389785,0.338639386,0.338639386,1,CMIP5 -2240,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.167966552,-17.03032039,-4.064857751,-10.54758907,-10.54758907,1,CMIP5 -2241,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.048548976,-5.861159301,2.692780693,-1.584189304,-1.584189304,1,CMIP5 -2241,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.998540691,-0.707876774,3.532700138,1.412411682,1.412411682,1,CMIP5 -2241,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.06303019,-5.1332823,-0.801503463,-2.967392882,-2.967392882,1,CMIP5 -2242,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.19938774,-4.292654584,-4.010677738,-4.151666161,-4.151666161,1,CMIP5 -2242,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.737977753,-1.251529616,1.206342093,-0.022593762,-0.022593762,1,CMIP5 -2242,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.50319473,-5.192030348,-3.066191973,-4.12911116,-4.12911116,1,CMIP5 -2243,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.096906459,-11.87941851,-7.499731391,-9.689574948,-9.689574948,1,CMIP5 -2243,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,5.454468856,-4.055389858,3.658393974,-0.198497942,-0.198497942,1,CMIP5 -2243,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.395721938,-15.46272169,-3.589377857,-9.526049773,-9.526049773,1,CMIP5 -2244,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.714068306,-12.06120332,-6.808717554,-9.434960439,-9.434960439,1,CMIP5 -2244,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.350176094,-0.649788818,2.673862089,1.012036635,1.012036635,1,CMIP5 -2244,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.339502993,-11.32654521,-9.432201911,-10.37937356,-10.37937356,1,CMIP5 -2245,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.851407599,-19.39310344,-13.94639058,-16.66974701,-16.66974701,1,CMIP5 -2245,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.44166538,-3.249218149,3.032245271,-0.108486439,-0.108486439,1,CMIP5 -2245,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.551313624,-16.90652326,-16.12684806,-16.51668566,-16.51668566,1,CMIP5 -2246,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.273870904,-11.24522954,-0.958422655,-6.101826096,-6.101826096,1,CMIP5 -2246,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.471492358,0.625674135,2.706678584,1.66617636,1.66617636,1,CMIP5 -2246,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.725207067,-11.72505887,-3.628393385,-7.676726125,-7.676726125,1,CMIP5 -2247,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.744873548,3.318906219,11.4433843,7.381145262,7.381145262,1,CMIP5 -2247,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.694916644,0.893199559,1.875960102,1.38457983,1.38457983,1,CMIP5 -2247,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.382242649,1.458798325,10.48465244,5.971725381,5.971725381,1,CMIP5 -2248,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.976844671,-3.819154471,8.87602101,2.528433269,2.528433269,1,CMIP5 -2248,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.674310031,0.296418377,2.664250331,1.480334354,1.480334354,1,CMIP5 -2248,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.273127689,-4.061494364,6.224261454,1.081383545,1.081383545,1,CMIP5 -2249,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,-1.867410376,-1.867410376,-1.867410376,-1.867410376,1,CMIP5 -2249,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.010642334,-0.650845116,2.192632542,0.770893713,0.770893713,1,CMIP5 -2249,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,-4.027679046,-4.027679046,-4.027679046,-4.027679046,1,CMIP5 -2250,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.374730051,-2.858863386,-0.914701503,-1.886782445,-1.886782445,1,CMIP5 -2250,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.662464035,1.25354396,2.190409582,1.721976771,1.721976771,1,CMIP5 -2250,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.665363858,-4.016036297,-3.075069706,-3.545553002,-3.545553002,1,CMIP5 -2251,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.6356011,-17.56378452,-2.522773207,-10.04327887,-10.04327887,1,CMIP5 -2251,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.473243935,-4.613843123,1.712279117,-1.450782003,-1.450782003,1,CMIP5 -2251,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.235143255,-13.02504053,-4.207216375,-8.616128452,-8.616128452,1,CMIP5 -2252,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.813656651,-4.363413955,-3.212729684,-3.78807182,-3.78807182,1,CMIP5 -2252,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.003199975,-1.52365313,2.723513004,0.599929937,0.599929937,1,CMIP5 -2252,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.749200806,-7.041807216,-1.739636588,-4.390721902,-4.390721902,1,CMIP5 -2253,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.636461419,-9.059420577,-8.159328207,-8.609374392,-8.609374392,1,CMIP5 -2253,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.320488059,-0.18246075,3.099204935,1.458372093,1.458372093,1,CMIP5 -2253,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.69906763,-11.19949993,-8.796655444,-9.998077687,-9.998077687,1,CMIP5 -2254,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.64656903,-8.00415252,-7.089765829,-7.546959174,-7.546959174,1,CMIP5 -2254,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.985322965,0.593403534,3.401074197,1.997238866,1.997238866,1,CMIP5 -2254,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.660339093,-11.34272941,-7.580441782,-9.461585595,-9.461585595,1,CMIP5 -2255,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.927692024,-14.38308192,-4.5858459,-9.484463907,-9.484463907,1,CMIP5 -2255,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.202501885,-1.049662919,4.893572242,1.921954662,1.921954662,1,CMIP5 -2255,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.71593354,-13.24709092,-9.406180872,-11.3266359,-11.3266359,1,CMIP5 -2256,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.651915904,-13.45413422,0.195736154,-6.629199034,-6.629199034,1,CMIP5 -2256,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.451259722,0.168604902,5.049423208,2.609014055,2.609014055,1,CMIP5 -2256,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.144536503,-13.47966861,-4.789981748,-9.134825177,-9.134825177,1,CMIP5 -2257,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.668783517,-7.899264706,4.360246513,-1.769509096,-1.769509096,1,CMIP5 -2257,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.778668078,-0.550548375,4.79329527,2.121373448,2.121373448,1,CMIP5 -2257,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.891253434,-7.299902602,-0.382625659,-3.84126413,-3.84126413,1,CMIP5 -2258,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.604235839,-9.494809612,4.087630968,-2.703589322,-2.703589322,1,CMIP5 -2258,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.473178237,-1.190953251,5.135076079,1.972061414,1.972061414,1,CMIP5 -2258,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.149030762,-8.273851461,-0.992022324,-4.632936893,-4.632936893,1,CMIP5 -2259,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.393284154,2.967273488,4.937674835,3.952474161,3.952474161,1,CMIP5 -2259,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.090731614,0.009677941,5.794846069,2.902262005,2.902262005,1,CMIP5 -2259,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.633257829,-0.795409048,2.928579887,1.066585419,1.066585419,1,CMIP5 -2260,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.247368681,-14.37859372,-11.20033445,-12.78946408,-12.78946408,1,CMIP5 -2260,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.456507817,-0.381810903,4.50642933,2.062309214,2.062309214,1,CMIP5 -2260,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.236158364,-15.62252225,-13.87433033,-14.74842629,-14.74842629,1,CMIP5 -2261,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.455905067,0.031719701,7.747534641,3.889627171,3.889627171,1,CMIP5 -2261,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.092431843,-1.465180032,4.322392584,1.428606276,1.428606276,1,CMIP5 -2261,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.398879741,-4.235812059,9.056211142,2.410199542,2.410199542,1,CMIP5 -2262,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.786074442,-12.14881031,-11.03713317,-11.59297174,-11.59297174,1,CMIP5 -2262,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.26425868,-3.526220228,2.50435223,-0.510933999,-0.510933999,1,CMIP5 -2262,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.949761888,-14.59208908,-7.592068691,-11.09207889,-11.09207889,1,CMIP5 -2263,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.926059836,1.206206037,2.515852416,1.861029226,1.861029226,1,CMIP5 -2263,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.227591489,0.874502232,2.610578765,1.742540499,1.742540499,1,CMIP5 -2263,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.148032716,-1.37409788,1.66367912,0.14479062,0.14479062,1,CMIP5 -2264,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.109185345,-12.86198158,-12.70757019,-12.78477589,-12.78477589,1,CMIP5 -2264,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.115384652,-1.453830145,2.951989081,0.749079468,0.749079468,1,CMIP5 -2264,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.992880591,-15.59144084,-11.35886852,-13.47515468,-13.47515468,1,CMIP5 -2265,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.37473742,2.900566633,18.98687455,10.94372059,10.94372059,1,CMIP5 -2265,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.24965614,-0.372403346,4.22330444,1.925450547,1.925450547,1,CMIP5 -2265,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.165394229,3.223918388,14.77152965,8.997724019,8.997724019,1,CMIP5 -2266,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.39814823,-12.82210096,3.297314852,-4.762393056,-4.762393056,1,CMIP5 -2266,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.094428475,2.056484964,3.604240556,2.83036276,2.83036276,1,CMIP5 -2266,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.16145843,-14.63952817,-0.26905585,-7.454292011,-7.454292011,1,CMIP5 -2267,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.313305344,-19.40719542,-10.47883338,-14.9430144,-14.9430144,1,CMIP5 -2267,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.217324452,-4.350503242,1.613694194,-1.368404524,-1.368404524,1,CMIP5 -2267,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.158366214,-15.0991789,-12.04678813,-13.57298352,-13.57298352,1,CMIP5 -2268,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,15.54619924,-15.02246681,6.963178999,-4.029643905,-4.029643905,1,CMIP5 -2268,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.811943081,-1.571513098,3.819388506,1.123937704,1.123937704,1,CMIP5 -2268,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.71117739,-13.38653745,3.175568453,-5.105484497,-5.105484497,1,CMIP5 -2269,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.863315431,2.553019138,5.188145092,3.870582115,3.870582115,1,CMIP5 -2269,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.806581471,-1.28755047,4.095768672,1.404109101,1.404109101,1,CMIP5 -2269,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.551589714,-1.496840039,6.354293428,2.428726694,2.428726694,1,CMIP5 -2270,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.91273126,-9.329109828,7.518036282,-0.905536773,-0.905536773,1,CMIP5 -2270,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.882254785,-0.439598267,3.63652554,1.598463636,1.598463636,1,CMIP5 -2270,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.001528924,-8.820454459,3.909629827,-2.455412316,-2.455412316,1,CMIP5 -2271,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,17.47251891,17.47251891,17.47251891,17.47251891,1,CMIP5 -2271,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.996498666,-2.470734694,3.181167922,0.355216614,0.355216614,1,CMIP5 -2271,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,14.28970891,14.28970891,14.28970891,14.28970891,1,CMIP5 -2272,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.847115735,-4.72700055,-2.114784426,-3.420892488,-3.420892488,1,CMIP5 -2272,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.562739945,-1.294894995,0.915153029,-0.189870983,-0.189870983,1,CMIP5 -2272,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.358866149,-5.619141523,-0.868987462,-3.244064493,-3.244064493,1,CMIP5 -2273,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.85409999,-13.14403188,-4.865084278,-9.004558079,-9.004558079,1,CMIP5 -2273,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.520636139,-0.654373205,1.496131046,0.420878921,0.420878921,1,CMIP5 -2273,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.287732813,-12.39425734,-6.330487445,-9.362372393,-9.362372393,1,CMIP5 -2274,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.111930066,-14.07326592,-4.015477965,-9.044371941,-9.044371941,1,CMIP5 -2274,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.869209204,-0.945991445,3.111683125,1.08284584,1.08284584,1,CMIP5 -2274,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.214693325,-13.03842023,-7.077943771,-10.058182,-10.058182,1,CMIP5 -2275,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.027592056,0.373451413,7.483540284,3.928495848,3.928495848,1,CMIP5 -2275,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.052320323,-0.487188548,2.415230687,0.96402107,0.96402107,1,CMIP5 -2275,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.005529769,0.830528849,5.080989811,2.95575933,2.95575933,1,CMIP5 -2276,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,15.20079608,-19.47043236,2.026739611,-8.721846377,-8.721846377,1,CMIP5 -2276,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.369042808,-2.18796627,2.576579761,0.194306746,0.194306746,1,CMIP5 -2276,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.79821426,-17.20716687,-0.521972249,-8.864569561,-8.864569561,1,CMIP5 -2277,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.86216023,-14.69913656,0.662277763,-7.018429397,-7.018429397,1,CMIP5 -2277,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.310360328,0.332274211,2.185403559,1.258838885,1.258838885,1,CMIP5 -2277,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,12.13592126,-16.82137301,0.341411429,-8.23998079,-8.23998079,1,CMIP5 -2278,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.428135747,-6.333460952,2.757295802,-1.788082575,-1.788082575,1,CMIP5 -2278,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.428876793,-0.199960229,3.234990273,1.517515022,1.517515022,1,CMIP5 -2278,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.986713828,-6.081282964,-0.443218199,-3.262250582,-3.262250582,1,CMIP5 -2279,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.936834635,-2.311446344,3.256078589,0.472316122,0.472316122,1,CMIP5 -2279,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.572817892,-0.51003439,4.542693129,2.01632937,2.01632937,1,CMIP5 -2279,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.402566075,-1.806032046,-1.236717643,-1.521374844,-1.521374844,1,CMIP5 -2280,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.92889509,-6.084705367,10.78529985,2.350297241,2.350297241,1,CMIP5 -2280,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.520566365,-2.315487987,2.663344714,0.173928364,0.173928364,1,CMIP5 -2280,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.459769874,-3.834082875,8.129838415,2.14787777,2.14787777,1,CMIP5 -2281,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.112618573,-7.499044501,-7.339777788,-7.419411145,-7.419411145,1,CMIP5 -2281,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.634952638,0.779340622,1.677299254,1.228319938,1.228319938,1,CMIP5 -2281,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.801251891,-9.136970333,-8.003829043,-8.570399688,-8.570399688,1,CMIP5 -2282,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.11335947,-12.48852486,-6.671356112,-9.579940487,-9.579940487,1,CMIP5 -2282,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.615550708,-3.368664709,0.330282576,-1.519191067,-1.519191067,1,CMIP5 -2282,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.553267096,-9.178029648,-6.981378255,-8.079703951,-8.079703951,1,CMIP5 -2283,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.19089979,0.849709274,9.60496372,5.227336497,5.227336497,1,CMIP5 -2283,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.767216994,-1.160777171,1.338445071,0.08883395,0.08883395,1,CMIP5 -2283,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.46980646,1.939142968,8.260403885,5.099773427,5.099773427,1,CMIP5 -2284,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.96794698,-9.276826338,9.062620164,-0.107103087,-0.107103087,1,CMIP5 -2284,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.9169021,-0.46671945,2.244189497,0.888735023,0.888735023,1,CMIP5 -2284,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.00836013,-8.743037866,6.825134334,-0.958951766,-0.958951766,1,CMIP5 -2285,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.04001921,-12.36475997,3.248184919,-4.558287527,-4.558287527,1,CMIP5 -2285,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.86127891,1.312336309,2.530368624,1.921352466,1.921352466,1,CMIP5 -2285,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.05863917,-13.48290818,0.742155748,-6.370376216,-6.370376216,1,CMIP5 -2286,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.410020607,-1.872154669,7.192983409,2.66041437,2.66041437,1,CMIP5 -2286,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.847851718,-0.352234548,2.261022412,0.954393932,0.954393932,1,CMIP5 -2286,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.570557146,-1.520364857,4.943379046,1.711507094,1.711507094,1,CMIP5 -2287,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.771592149,3.082330628,4.17352671,3.627928669,3.627928669,1,CMIP5 -2287,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.751488146,-0.481747284,0.581017444,0.04963508,0.04963508,1,CMIP5 -2287,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.058372699,3.507294171,3.589845633,3.548569902,3.548569902,1,CMIP5 -2288,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.774162116,-15.57938468,-3.170845613,-9.375115144,-9.375115144,1,CMIP5 -2288,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.397018055,0.121050687,2.096732567,1.108891627,1.108891627,1,CMIP5 -2288,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.287082675,-15.53878642,-5.233295271,-10.38604085,-10.38604085,1,CMIP5 -2289,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.765534557,-13.65081705,-1.2544792,-7.452648126,-7.452648126,1,CMIP5 -2289,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.424205422,-0.938001421,1.076129202,0.069063891,0.069063891,1,CMIP5 -2289,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.292974413,-12.62773447,-2.313911145,-7.470822808,-7.470822808,1,CMIP5 -2290,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.54989264,-6.171582394,-2.565489639,-4.368536016,-4.368536016,1,CMIP5 -2290,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.478788147,0.595877806,1.272986497,0.934432152,0.934432152,1,CMIP5 -2290,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.122066177,-6.745027451,-3.743972684,-5.244500068,-5.244500068,1,CMIP5 -2291,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.168227538,0.838875825,2.490999053,1.664937439,1.664937439,1,CMIP5 -2291,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.58079386,-1.829092756,1.820700923,-0.004195917,-0.004195917,1,CMIP5 -2291,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.324472157,0.687440955,2.560527442,1.623984199,1.623984199,1,CMIP5 -2292,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.758458241,-12.59477773,-4.45108799,-8.522932862,-8.522932862,1,CMIP5 -2292,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.337529027,-0.928117757,0.963433933,0.017658088,0.017658088,1,CMIP5 -2292,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.061664542,-13.51564182,-3.528940054,-8.522290939,-8.522290939,1,CMIP5 -2293,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.416064823,-6.523564151,-1.692518949,-4.10804155,-4.10804155,1,CMIP5 -2293,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.900882875,-0.886031132,1.80222321,0.458096039,0.458096039,1,CMIP5 -2293,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.26761791,-8.287175482,-0.837638792,-4.562407137,-4.562407137,1,CMIP5 -2294,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.533423758,-8.3070703,-4.724268062,-6.515669181,-6.515669181,1,CMIP5 -2294,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.284275496,-0.683189188,1.133050635,0.224930723,0.224930723,1,CMIP5 -2294,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.800458392,-9.405719292,-4.031059491,-6.718389392,-6.718389392,1,CMIP5 -2295,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,16.67615483,-9.437552103,14.14609223,2.354270062,2.354270062,1,CMIP5 -2295,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.987843323,1.085708263,2.482729688,1.784218976,1.784218976,1,CMIP5 -2295,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,15.57851505,-10.37048907,11.66085819,0.645184561,0.645184561,1,CMIP5 -2296,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.309469992,1.887815103,3.739685325,2.813750214,2.813750214,1,CMIP5 -2296,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.688517859,-0.935450619,1.452474236,0.258511808,0.258511808,1,CMIP5 -2296,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.323237173,2.296667957,2.753794351,2.525231154,2.525231154,1,CMIP5 -2297,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.547648226,-8.296919091,-1.865573292,-5.081246191,-5.081246191,1,CMIP5 -2297,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.95566074,-1.818742607,0.946979336,-0.435881635,-0.435881635,1,CMIP5 -2297,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.614939281,-6.494108688,-2.796026091,-4.645067389,-4.645067389,1,CMIP5 -2298,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.648267061,-8.250534605,-0.262678723,-4.256606664,-4.256606664,1,CMIP5 -2298,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.219156389,-3.863005356,0.689569268,-1.586718044,-1.586718044,1,CMIP5 -2298,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.52565807,-4.514671217,-0.94285132,-2.728761268,-2.728761268,1,CMIP5 -2299,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.758514497,-9.55086705,0.007115813,-4.771875618,-4.771875618,1,CMIP5 -2299,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.470312782,-2.632469925,2.275293477,-0.178588224,-0.178588224,1,CMIP5 -2299,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.34224794,-6.965928892,-2.239276527,-4.602602709,-4.602602709,1,CMIP5 -2300,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,-11.5484178,-11.5484178,-11.5484178,-11.5484178,1,CMIP5 -2300,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,NA,-1.926539562,-1.926539562,-1.926539562,-1.926539562,1,CMIP5 -2300,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,-9.611280489,-9.611280489,-9.611280489,-9.611280489,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/hist/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/hist/ensemble_mean_model.csv deleted file mode 100644 index 846d9bb43..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/hist/ensemble_mean_model.csv +++ /dev/null @@ -1,3247 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","ph","ocean","ph","historical",1850,"Simulated",1,"global",8.163699 -"CanESM2","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.1635988 -"CanESM2","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.1634662 -"CanESM2","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.1636506 -"CanESM2","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.1637044 -"CanESM2","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.1626176 -"CanESM2","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.1635238 -"CanESM2","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.1638698 -"CanESM2","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.162534 -"CanESM2","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.1624882 -"CanESM2","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.1622098 -"CanESM2","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.162192 -"CanESM2","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.1622288 -"CanESM2","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.1616696 -"CanESM2","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.1611902 -"CanESM2","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.1610792 -"CanESM2","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.1607688 -"CanESM2","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.1605184 -"CanESM2","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.16069 -"CanESM2","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.160928 -"CanESM2","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.160771 -"CanESM2","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.1601068 -"CanESM2","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.1605504 -"CanESM2","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.1596516 -"CanESM2","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.1594758 -"CanESM2","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.1587362 -"CanESM2","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.1594062 -"CanESM2","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.1590814 -"CanESM2","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.1583514 -"CanESM2","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.1581988 -"CanESM2","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.158167 -"CanESM2","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.157278 -"CanESM2","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.1565088 -"CanESM2","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.1563908 -"CanESM2","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.156183 -"CanESM2","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.1564614 -"CanESM2","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.1552128 -"CanESM2","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.1547446 -"CanESM2","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.1542238 -"CanESM2","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.154039 -"CanESM2","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.1538566 -"CanESM2","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.1534706 -"CanESM2","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.153169 -"CanESM2","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.1522954 -"CanESM2","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.1524888 -"CanESM2","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.1524136 -"CanESM2","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.1528268 -"CanESM2","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.1526504 -"CanESM2","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.1521078 -"CanESM2","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.1515248 -"CanESM2","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.1514346 -"CanESM2","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.150863 -"CanESM2","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.1507284 -"CanESM2","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.1511982 -"CanESM2","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.1498248 -"CanESM2","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.1494766 -"CanESM2","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.149409 -"CanESM2","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.1490084 -"CanESM2","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.1479224 -"CanESM2","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.147436 -"CanESM2","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.146975 -"CanESM2","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.1465342 -"CanESM2","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.1469848 -"CanESM2","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.1461046 -"CanESM2","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.1460048 -"CanESM2","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.1455594 -"CanESM2","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.1450302 -"CanESM2","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.1446934 -"CanESM2","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.1442928 -"CanESM2","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.144355 -"CanESM2","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.143607 -"CanESM2","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.1433576 -"CanESM2","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.1431084 -"CanESM2","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.142412 -"CanESM2","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.1418586 -"CanESM2","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.1416326 -"CanESM2","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.141219 -"CanESM2","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.1406514 -"CanESM2","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.1402814 -"CanESM2","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.139834 -"CanESM2","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.1391376 -"CanESM2","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.138872 -"CanESM2","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.138181 -"CanESM2","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.1379508 -"CanESM2","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.137255 -"CanESM2","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.1368312 -"CanESM2","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.1363374 -"CanESM2","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.1363454 -"CanESM2","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.1357576 -"CanESM2","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.1353918 -"CanESM2","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.1354008 -"CanESM2","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.1354242 -"CanESM2","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.1351586 -"CanESM2","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.13476 -"CanESM2","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.1351904 -"CanESM2","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.1349236 -"CanESM2","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.1347584 -"CanESM2","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.1350982 -"CanESM2","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.134691 -"CanESM2","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.1346924 -"CanESM2","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.1339316 -"CanESM2","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.1342914 -"CanESM2","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.1335014 -"CanESM2","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.133693 -"CanESM2","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.1333928 -"CanESM2","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.1326328 -"CanESM2","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.1316414 -"CanESM2","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.1311426 -"CanESM2","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.130657 -"CanESM2","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.130029 -"CanESM2","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.1294546 -"CanESM2","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.1290846 -"CanESM2","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.1281076 -"CanESM2","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.1280824 -"CanESM2","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.1282726 -"CanESM2","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.1267854 -"CanESM2","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.1246752 -"CanESM2","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.1244482 -"CanESM2","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.123243 -"CanESM2","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.1227506 -"CanESM2","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.1213418 -"CanESM2","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.1196702 -"CanESM2","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.118506 -"CanESM2","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.1180014 -"CanESM2","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.1163632 -"CanESM2","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.1153752 -"CanESM2","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.1142862 -"CanESM2","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.112515 -"CanESM2","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.1108852 -"CanESM2","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.1100434 -"CanESM2","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.1083356 -"CanESM2","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.10698 -"CanESM2","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.105825 -"CanESM2","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.1046808 -"CanESM2","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.1027092 -"CanESM2","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.10125 -"CanESM2","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.0995448 -"CanESM2","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.0979416 -"CanESM2","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.0965314 -"CanESM2","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.0942626 -"CanESM2","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.0930138 -"CanESM2","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.0919732 -"CanESM2","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.0918008 -"CanESM2","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.0893012 -"CanESM2","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.088271 -"CanESM2","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.087165 -"CanESM2","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.0848544 -"CanESM2","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.0833892 -"CanESM2","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.0815248 -"CanESM2","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.0799956 -"CanESM2","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.0782842 -"CanESM2","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.0762968 -"CanESM2","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.0747672 -"CanESM2","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.0729 -"CanESM2","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.0711158 -"CanESM2","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.0693162 -"CanESM2","ph","ocean","ph_HL","historical",1850,"Simulated",1,"HL",8.1488614 -"CanESM2","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.148441 -"CanESM2","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.1489504 -"CanESM2","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.1481334 -"CanESM2","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.149447 -"CanESM2","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.1492296 -"CanESM2","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.1486916 -"CanESM2","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.1493272 -"CanESM2","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.1478422 -"CanESM2","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.1482802 -"CanESM2","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.1480954 -"CanESM2","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.1481292 -"CanESM2","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.1481968 -"CanESM2","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.146124 -"CanESM2","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.1461816 -"CanESM2","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.1461074 -"CanESM2","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.146489 -"CanESM2","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.1452486 -"CanESM2","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.1457036 -"CanESM2","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.1452842 -"CanESM2","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.1461598 -"CanESM2","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.145689 -"CanESM2","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.1454652 -"CanESM2","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.1447636 -"CanESM2","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.1443048 -"CanESM2","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.1443184 -"CanESM2","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.144597 -"CanESM2","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.1447376 -"CanESM2","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.1439272 -"CanESM2","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.1440946 -"CanESM2","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.1433812 -"CanESM2","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.1435572 -"CanESM2","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.1431544 -"CanESM2","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.1415674 -"CanESM2","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.1405766 -"CanESM2","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.1405384 -"CanESM2","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.1400336 -"CanESM2","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.1392498 -"CanESM2","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.1389752 -"CanESM2","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.139491 -"CanESM2","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.139116 -"CanESM2","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.1387304 -"CanESM2","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.1388456 -"CanESM2","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.1389154 -"CanESM2","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.1382446 -"CanESM2","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.1384746 -"CanESM2","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.1388682 -"CanESM2","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.1380202 -"CanESM2","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.1376332 -"CanESM2","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.1365988 -"CanESM2","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.136046 -"CanESM2","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.1367706 -"CanESM2","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.136156 -"CanESM2","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.1353492 -"CanESM2","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.1352694 -"CanESM2","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.134576 -"CanESM2","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.133881 -"CanESM2","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.133862 -"CanESM2","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.1338194 -"CanESM2","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.1323776 -"CanESM2","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.132267 -"CanESM2","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.1313434 -"CanESM2","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.1324146 -"CanESM2","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.1327414 -"CanESM2","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.1318046 -"CanESM2","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.1316364 -"CanESM2","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.1312316 -"CanESM2","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.1314346 -"CanESM2","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.1300536 -"CanESM2","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.1312016 -"CanESM2","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.1309012 -"CanESM2","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.1307518 -"CanESM2","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.130169 -"CanESM2","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.1300344 -"CanESM2","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.129846 -"CanESM2","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.1279856 -"CanESM2","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.1279886 -"CanESM2","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.1275354 -"CanESM2","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.1272718 -"CanESM2","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.1268758 -"CanESM2","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.1264684 -"CanESM2","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.1261978 -"CanESM2","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.12565 -"CanESM2","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.1259416 -"CanESM2","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.1251296 -"CanESM2","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.1235136 -"CanESM2","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.1241288 -"CanESM2","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.122848 -"CanESM2","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.1228394 -"CanESM2","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.1230972 -"CanESM2","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.1220784 -"CanESM2","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.1227546 -"CanESM2","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.1227054 -"CanESM2","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.1223834 -"CanESM2","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.1222938 -"CanESM2","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.1220878 -"CanESM2","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.121723 -"CanESM2","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.123138 -"CanESM2","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.1223922 -"CanESM2","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.1220826 -"CanESM2","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.1212642 -"CanESM2","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.1222362 -"CanESM2","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.1210846 -"CanESM2","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.1208864 -"CanESM2","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.1208258 -"CanESM2","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.1205574 -"CanESM2","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.1179296 -"CanESM2","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.1176742 -"CanESM2","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.1170094 -"CanESM2","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.1161522 -"CanESM2","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.1161294 -"CanESM2","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.115591 -"CanESM2","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.114737 -"CanESM2","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.1149218 -"CanESM2","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.1144762 -"CanESM2","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.1132898 -"CanESM2","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.1106896 -"CanESM2","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.1098568 -"CanESM2","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.1092454 -"CanESM2","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.1084494 -"CanESM2","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.1083792 -"CanESM2","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.1076506 -"CanESM2","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.105903 -"CanESM2","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.1042382 -"CanESM2","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.1034048 -"CanESM2","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.103274 -"CanESM2","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.1019134 -"CanESM2","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.0998494 -"CanESM2","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.0992922 -"CanESM2","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.0970338 -"CanESM2","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.0956922 -"CanESM2","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.0950308 -"CanESM2","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.0928688 -"CanESM2","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.0923828 -"CanESM2","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.090315 -"CanESM2","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.088432 -"CanESM2","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.0876666 -"CanESM2","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.0861544 -"CanESM2","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.0850962 -"CanESM2","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.0839666 -"CanESM2","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.0813406 -"CanESM2","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.0813496 -"CanESM2","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.0797478 -"CanESM2","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.0786494 -"CanESM2","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.0779796 -"CanESM2","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.0762712 -"CanESM2","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.0752088 -"CanESM2","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.073205 -"CanESM2","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.0709328 -"CanESM2","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.0693224 -"CanESM2","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.0687328 -"CanESM2","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.066383 -"CanESM2","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.0643552 -"CanESM2","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.0623596 -"CanESM2","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.0610922 -"CanESM2","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.0592294 -"CanESM2","ph","ocean","ph_LL","historical",1850,"Simulated",1,"LL",8.1662944 -"CanESM2","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.1662504 -"CanESM2","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.1660052 -"CanESM2","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.1663646 -"CanESM2","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.1661984 -"CanESM2","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.1649594 -"CanESM2","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.1661184 -"CanESM2","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.1664136 -"CanESM2","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.1651042 -"CanESM2","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.1649734 -"CanESM2","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.1646788 -"CanESM2","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.1646522 -"CanESM2","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.1646832 -"CanESM2","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.1643892 -"CanESM2","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.1638154 -"CanESM2","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.1636978 -"CanESM2","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.1632666 -"CanESM2","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.1631896 -"CanESM2","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.1633116 -"CanESM2","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.1636644 -"CanESM2","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.1633272 -"CanESM2","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.1626288 -"CanESM2","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.163189 -"CanESM2","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.1622562 -"CanESM2","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.16213 -"CanESM2","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.161258 -"CanESM2","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.1619962 -"CanESM2","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.1615908 -"CanESM2","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.1608748 -"CanESM2","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.1606658 -"CanESM2","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.1607532 -"CanESM2","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.159678 -"CanESM2","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.1588446 -"CanESM2","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.158984 -"CanESM2","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.1589124 -"CanESM2","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.1592464 -"CanESM2","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.1578678 -"CanESM2","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.1574548 -"CanESM2","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.1568912 -"CanESM2","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.1565836 -"CanESM2","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.1564348 -"CanESM2","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.1560486 -"CanESM2","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.1556742 -"CanESM2","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.1546358 -"CanESM2","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.1549804 -"CanESM2","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.1548518 -"CanESM2","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.1552684 -"CanESM2","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.1552092 -"CanESM2","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.15464 -"CanESM2","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.1541356 -"CanESM2","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.1541262 -"CanESM2","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.1533282 -"CanESM2","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.1532776 -"CanESM2","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.1539704 -"CanESM2","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.1523712 -"CanESM2","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.1520828 -"CanESM2","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.1521252 -"CanESM2","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.1516578 -"CanESM2","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.1503892 -"CanESM2","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.1500702 -"CanESM2","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.1495478 -"CanESM2","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.1491918 -"CanESM2","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.1495334 -"CanESM2","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.148442 -"CanESM2","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.148489 -"CanESM2","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.147995 -"CanESM2","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.147444 -"CanESM2","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.1470126 -"CanESM2","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.1467834 -"CanESM2","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.1466558 -"CanESM2","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.1458298 -"CanESM2","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.1455628 -"CanESM2","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.1453714 -"CanESM2","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.1445772 -"CanESM2","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.1439598 -"CanESM2","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.1440196 -"CanESM2","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.1435336 -"CanESM2","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.1429456 -"CanESM2","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.1425574 -"CanESM2","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.1421004 -"CanESM2","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.1413536 -"CanESM2","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.1410894 -"CanESM2","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.1403732 -"CanESM2","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.1400514 -"CanESM2","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.1393762 -"CanESM2","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.1391608 -"CanESM2","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.138473 -"CanESM2","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.1387064 -"CanESM2","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.1380174 -"CanESM2","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.1375424 -"CanESM2","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.137731 -"CanESM2","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.1376402 -"CanESM2","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.1373372 -"CanESM2","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.136925 -"CanESM2","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.1374462 -"CanESM2","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.137169 -"CanESM2","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.1370386 -"CanESM2","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.1371904 -"CanESM2","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.1368426 -"CanESM2","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.1368984 -"CanESM2","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.1361478 -"CanESM2","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.1364 -"CanESM2","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.1356732 -"CanESM2","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.1359332 -"CanESM2","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.135591 -"CanESM2","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.1347452 -"CanESM2","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.1340402 -"CanESM2","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.1334982 -"CanESM2","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.1330444 -"CanESM2","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.1324566 -"CanESM2","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.1317854 -"CanESM2","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.1314446 -"CanESM2","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.1304464 -"CanESM2","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.1303848 -"CanESM2","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.130686 -"CanESM2","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.1291462 -"CanESM2","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.1271216 -"CanESM2","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.1270006 -"CanESM2","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.125692 -"CanESM2","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.125252 -"CanESM2","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.1236096 -"CanESM2","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.1217726 -"CanESM2","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.1207106 -"CanESM2","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.1204088 -"CanESM2","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.1186302 -"CanESM2","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.1174916 -"CanESM2","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.1164508 -"CanESM2","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.1147304 -"CanESM2","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.1129132 -"CanESM2","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.1123194 -"CanESM2","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.1105474 -"CanESM2","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.1090702 -"CanESM2","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.1080912 -"CanESM2","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.106832 -"CanESM2","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.1048772 -"CanESM2","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.1034924 -"CanESM2","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.1016226 -"CanESM2","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.1000034 -"CanESM2","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.0985316 -"CanESM2","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.0960634 -"CanESM2","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.0950556 -"CanESM2","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.0938314 -"CanESM2","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.093909 -"CanESM2","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.0911644 -"CanESM2","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.0900714 -"CanESM2","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.0890708 -"CanESM2","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.0865414 -"CanESM2","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.0851706 -"CanESM2","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.0833776 -"CanESM2","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.0818626 -"CanESM2","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.079955 -"CanESM2","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.0780308 -"CanESM2","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.0765884 -"CanESM2","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.0747438 -"CanESM2","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.0728694 -"CanESM2","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.0710808 -"CESM1-BGC","ph","ocean","ph","historical",1850,"Simulated",1,"global",8.161418 -"CESM1-BGC","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.160586 -"CESM1-BGC","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.160104 -"CESM1-BGC","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.160099 -"CESM1-BGC","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.16061 -"CESM1-BGC","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.160652 -"CESM1-BGC","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.159241 -"CESM1-BGC","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.158775 -"CESM1-BGC","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.159717 -"CESM1-BGC","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.159306 -"CESM1-BGC","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.158984 -"CESM1-BGC","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.159939 -"CESM1-BGC","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.160067 -"CESM1-BGC","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.15945 -"CESM1-BGC","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.158789 -"CESM1-BGC","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.158467 -"CESM1-BGC","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.158666 -"CESM1-BGC","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.15894 -"CESM1-BGC","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.158214 -"CESM1-BGC","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.157953 -"CESM1-BGC","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.157937 -"CESM1-BGC","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.158525 -"CESM1-BGC","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.157506 -"CESM1-BGC","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.156952 -"CESM1-BGC","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.157584 -"CESM1-BGC","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.156924 -"CESM1-BGC","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.156252 -"CESM1-BGC","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.156834 -"CESM1-BGC","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.156306 -"CESM1-BGC","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.155374 -"CESM1-BGC","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.154591 -"CESM1-BGC","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.154801 -"CESM1-BGC","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.153786 -"CESM1-BGC","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.153918 -"CESM1-BGC","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.155888 -"CESM1-BGC","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.152996 -"CESM1-BGC","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.152355 -"CESM1-BGC","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.151811 -"CESM1-BGC","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.151192 -"CESM1-BGC","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.150797 -"CESM1-BGC","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.151871 -"CESM1-BGC","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.151718 -"CESM1-BGC","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.150884 -"CESM1-BGC","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.150156 -"CESM1-BGC","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.149973 -"CESM1-BGC","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.148805 -"CESM1-BGC","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.14865 -"CESM1-BGC","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.148707 -"CESM1-BGC","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.148732 -"CESM1-BGC","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.148445 -"CESM1-BGC","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.148538 -"CESM1-BGC","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.148622 -"CESM1-BGC","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.148642 -"CESM1-BGC","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.150063 -"CESM1-BGC","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.148633 -"CESM1-BGC","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.147529 -"CESM1-BGC","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.145921 -"CESM1-BGC","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.146389 -"CESM1-BGC","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.145684 -"CESM1-BGC","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.145524 -"CESM1-BGC","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.14508 -"CESM1-BGC","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.14474 -"CESM1-BGC","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.144788 -"CESM1-BGC","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.143777 -"CESM1-BGC","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.143017 -"CESM1-BGC","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.142669 -"CESM1-BGC","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.142446 -"CESM1-BGC","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.142441 -"CESM1-BGC","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.141926 -"CESM1-BGC","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.141587 -"CESM1-BGC","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.140711 -"CESM1-BGC","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.139422 -"CESM1-BGC","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.139523 -"CESM1-BGC","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.140223 -"CESM1-BGC","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.140375 -"CESM1-BGC","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.139489 -"CESM1-BGC","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.139169 -"CESM1-BGC","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.138018 -"CESM1-BGC","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.138137 -"CESM1-BGC","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.137395 -"CESM1-BGC","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.137084 -"CESM1-BGC","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.136399 -"CESM1-BGC","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.135386 -"CESM1-BGC","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.135293 -"CESM1-BGC","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.134679 -"CESM1-BGC","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.134738 -"CESM1-BGC","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.133945 -"CESM1-BGC","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.133289 -"CESM1-BGC","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.132479 -"CESM1-BGC","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.13312 -"CESM1-BGC","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.133229 -"CESM1-BGC","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.132944 -"CESM1-BGC","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.132408 -"CESM1-BGC","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.133135 -"CESM1-BGC","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.131986 -"CESM1-BGC","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.132593 -"CESM1-BGC","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.133021 -"CESM1-BGC","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.13205 -"CESM1-BGC","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.132309 -"CESM1-BGC","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.132636 -"CESM1-BGC","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.13205 -"CESM1-BGC","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.132307 -"CESM1-BGC","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.131082 -"CESM1-BGC","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.131175 -"CESM1-BGC","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.130243 -"CESM1-BGC","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.129964 -"CESM1-BGC","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.128968 -"CESM1-BGC","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.128946 -"CESM1-BGC","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.127906 -"CESM1-BGC","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.127401 -"CESM1-BGC","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.127282 -"CESM1-BGC","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.126176 -"CESM1-BGC","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.125293 -"CESM1-BGC","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.12566 -"CESM1-BGC","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.125935 -"CESM1-BGC","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.124327 -"CESM1-BGC","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.123225 -"CESM1-BGC","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.122032 -"CESM1-BGC","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.119995 -"CESM1-BGC","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.119938 -"CESM1-BGC","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.118355 -"CESM1-BGC","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.117998 -"CESM1-BGC","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.116456 -"CESM1-BGC","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.114418 -"CESM1-BGC","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.11381 -"CESM1-BGC","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.112541 -"CESM1-BGC","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.112076 -"CESM1-BGC","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.109865 -"CESM1-BGC","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.108544 -"CESM1-BGC","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.106585 -"CESM1-BGC","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.105975 -"CESM1-BGC","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.104592 -"CESM1-BGC","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.1039 -"CESM1-BGC","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.102857 -"CESM1-BGC","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.099867 -"CESM1-BGC","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.098255 -"CESM1-BGC","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.096126 -"CESM1-BGC","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.094549 -"CESM1-BGC","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.093248 -"CESM1-BGC","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.091201 -"CESM1-BGC","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.089444 -"CESM1-BGC","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.08935 -"CESM1-BGC","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.089788 -"CESM1-BGC","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.088047 -"CESM1-BGC","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.085468 -"CESM1-BGC","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.084231 -"CESM1-BGC","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.082297 -"CESM1-BGC","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.079937 -"CESM1-BGC","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.07894 -"CESM1-BGC","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.077137 -"CESM1-BGC","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.075357 -"CESM1-BGC","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.073308 -"CESM1-BGC","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.072158 -"CESM1-BGC","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.069891 -"CESM1-BGC","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.068214 -"CESM1-BGC","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.06688 -"CESM1-BGC","ph","ocean","ph_HL","historical",1850,"Simulated",1,"HL",8.175146 -"CESM1-BGC","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.174631 -"CESM1-BGC","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.172251 -"CESM1-BGC","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.174767 -"CESM1-BGC","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.176574 -"CESM1-BGC","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.178426 -"CESM1-BGC","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.174481 -"CESM1-BGC","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.173083 -"CESM1-BGC","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.177426 -"CESM1-BGC","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.175652 -"CESM1-BGC","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.176311 -"CESM1-BGC","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.177327 -"CESM1-BGC","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.177397 -"CESM1-BGC","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.177134 -"CESM1-BGC","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.175465 -"CESM1-BGC","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.175685 -"CESM1-BGC","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.17399 -"CESM1-BGC","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.175645 -"CESM1-BGC","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.17394 -"CESM1-BGC","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.17548 -"CESM1-BGC","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.171909 -"CESM1-BGC","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.174033 -"CESM1-BGC","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.174138 -"CESM1-BGC","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.173187 -"CESM1-BGC","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.173428 -"CESM1-BGC","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.173391 -"CESM1-BGC","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.170863 -"CESM1-BGC","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.172208 -"CESM1-BGC","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.171515 -"CESM1-BGC","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.168458 -"CESM1-BGC","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.168519 -"CESM1-BGC","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.169191 -"CESM1-BGC","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.168462 -"CESM1-BGC","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.167197 -"CESM1-BGC","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.167501 -"CESM1-BGC","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.166308 -"CESM1-BGC","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.165776 -"CESM1-BGC","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.166911 -"CESM1-BGC","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.166533 -"CESM1-BGC","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.166433 -"CESM1-BGC","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.164247 -"CESM1-BGC","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.16656 -"CESM1-BGC","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.166559 -"CESM1-BGC","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.164612 -"CESM1-BGC","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.166764 -"CESM1-BGC","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.165335 -"CESM1-BGC","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.165486 -"CESM1-BGC","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.163592 -"CESM1-BGC","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.16393 -"CESM1-BGC","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.162668 -"CESM1-BGC","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.163881 -"CESM1-BGC","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.162939 -"CESM1-BGC","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.163415 -"CESM1-BGC","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.164619 -"CESM1-BGC","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.163291 -"CESM1-BGC","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.163132 -"CESM1-BGC","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.16342 -"CESM1-BGC","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.163782 -"CESM1-BGC","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.163601 -"CESM1-BGC","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.161718 -"CESM1-BGC","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.161655 -"CESM1-BGC","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.162945 -"CESM1-BGC","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.162042 -"CESM1-BGC","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.160139 -"CESM1-BGC","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.161917 -"CESM1-BGC","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.16034 -"CESM1-BGC","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.158035 -"CESM1-BGC","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.158012 -"CESM1-BGC","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.157427 -"CESM1-BGC","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.157662 -"CESM1-BGC","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.157384 -"CESM1-BGC","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.155839 -"CESM1-BGC","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.153732 -"CESM1-BGC","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.154983 -"CESM1-BGC","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.156529 -"CESM1-BGC","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.154061 -"CESM1-BGC","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.15503 -"CESM1-BGC","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.152883 -"CESM1-BGC","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.155229 -"CESM1-BGC","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.15184 -"CESM1-BGC","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.152126 -"CESM1-BGC","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.153038 -"CESM1-BGC","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.150351 -"CESM1-BGC","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.148455 -"CESM1-BGC","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.149495 -"CESM1-BGC","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.149217 -"CESM1-BGC","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.147397 -"CESM1-BGC","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.149126 -"CESM1-BGC","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.148188 -"CESM1-BGC","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.147934 -"CESM1-BGC","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.146842 -"CESM1-BGC","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.147384 -"CESM1-BGC","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.145167 -"CESM1-BGC","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.147294 -"CESM1-BGC","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.147319 -"CESM1-BGC","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.146005 -"CESM1-BGC","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.148714 -"CESM1-BGC","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.146395 -"CESM1-BGC","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.147158 -"CESM1-BGC","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.146308 -"CESM1-BGC","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.145437 -"CESM1-BGC","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.146472 -"CESM1-BGC","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.145413 -"CESM1-BGC","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.148143 -"CESM1-BGC","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.145132 -"CESM1-BGC","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.144348 -"CESM1-BGC","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.142404 -"CESM1-BGC","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.142203 -"CESM1-BGC","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.143329 -"CESM1-BGC","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.142853 -"CESM1-BGC","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.142889 -"CESM1-BGC","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.14185 -"CESM1-BGC","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.140736 -"CESM1-BGC","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.140817 -"CESM1-BGC","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.138452 -"CESM1-BGC","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.14027 -"CESM1-BGC","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.138236 -"CESM1-BGC","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.13951 -"CESM1-BGC","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.134956 -"CESM1-BGC","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.134469 -"CESM1-BGC","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.133347 -"CESM1-BGC","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.131241 -"CESM1-BGC","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.130706 -"CESM1-BGC","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.13037 -"CESM1-BGC","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.126877 -"CESM1-BGC","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.127107 -"CESM1-BGC","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.125748 -"CESM1-BGC","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.124003 -"CESM1-BGC","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.123172 -"CESM1-BGC","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.11962 -"CESM1-BGC","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.11866 -"CESM1-BGC","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.117716 -"CESM1-BGC","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.116654 -"CESM1-BGC","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.114006 -"CESM1-BGC","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.11203 -"CESM1-BGC","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.110591 -"CESM1-BGC","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.10753 -"CESM1-BGC","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.108808 -"CESM1-BGC","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.107498 -"CESM1-BGC","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.105001 -"CESM1-BGC","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.102424 -"CESM1-BGC","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.101391 -"CESM1-BGC","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.101173 -"CESM1-BGC","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.100313 -"CESM1-BGC","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.096887 -"CESM1-BGC","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.094957 -"CESM1-BGC","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.094152 -"CESM1-BGC","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.091855 -"CESM1-BGC","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.089729 -"CESM1-BGC","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.08987 -"CESM1-BGC","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.086662 -"CESM1-BGC","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.082867 -"CESM1-BGC","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.081101 -"CESM1-BGC","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.080299 -"CESM1-BGC","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.077112 -"CESM1-BGC","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.075287 -"CESM1-BGC","ph","ocean","ph_LL","historical",1850,"Simulated",1,"LL",8.159007 -"CESM1-BGC","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.158119 -"CESM1-BGC","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.15797 -"CESM1-BGC","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.157523 -"CESM1-BGC","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.157806 -"CESM1-BGC","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.15753 -"CESM1-BGC","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.156563 -"CESM1-BGC","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.156262 -"CESM1-BGC","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.156606 -"CESM1-BGC","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.156435 -"CESM1-BGC","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.15594 -"CESM1-BGC","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.156884 -"CESM1-BGC","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.157023 -"CESM1-BGC","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.156343 -"CESM1-BGC","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.155859 -"CESM1-BGC","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.155443 -"CESM1-BGC","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.155974 -"CESM1-BGC","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.156005 -"CESM1-BGC","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.155452 -"CESM1-BGC","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.154874 -"CESM1-BGC","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.155482 -"CESM1-BGC","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.155801 -"CESM1-BGC","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.154584 -"CESM1-BGC","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.1541 -"CESM1-BGC","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.154801 -"CESM1-BGC","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.154032 -"CESM1-BGC","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.153685 -"CESM1-BGC","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.154133 -"CESM1-BGC","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.153635 -"CESM1-BGC","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.153075 -"CESM1-BGC","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.152144 -"CESM1-BGC","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.152273 -"CESM1-BGC","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.151208 -"CESM1-BGC","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.151586 -"CESM1-BGC","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.153848 -"CESM1-BGC","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.150658 -"CESM1-BGC","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.149997 -"CESM1-BGC","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.149159 -"CESM1-BGC","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.148497 -"CESM1-BGC","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.148051 -"CESM1-BGC","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.149697 -"CESM1-BGC","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.14911 -"CESM1-BGC","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.14813 -"CESM1-BGC","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.147616 -"CESM1-BGC","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.147024 -"CESM1-BGC","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.145901 -"CESM1-BGC","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.145692 -"CESM1-BGC","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.146092 -"CESM1-BGC","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.146062 -"CESM1-BGC","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.145947 -"CESM1-BGC","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.145843 -"CESM1-BGC","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.146108 -"CESM1-BGC","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.146047 -"CESM1-BGC","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.147507 -"CESM1-BGC","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.146058 -"CESM1-BGC","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.144789 -"CESM1-BGC","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.142847 -"CESM1-BGC","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.143333 -"CESM1-BGC","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.142536 -"CESM1-BGC","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.14268 -"CESM1-BGC","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.142169 -"CESM1-BGC","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.141542 -"CESM1-BGC","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.141757 -"CESM1-BGC","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.140902 -"CESM1-BGC","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.139698 -"CESM1-BGC","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.139565 -"CESM1-BGC","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.139708 -"CESM1-BGC","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.139706 -"CESM1-BGC","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.139203 -"CESM1-BGC","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.138763 -"CESM1-BGC","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.137783 -"CESM1-BGC","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.136538 -"CESM1-BGC","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.137027 -"CESM1-BGC","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.13763 -"CESM1-BGC","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.137538 -"CESM1-BGC","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.13693 -"CESM1-BGC","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.136383 -"CESM1-BGC","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.135406 -"CESM1-BGC","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.135135 -"CESM1-BGC","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.134858 -"CESM1-BGC","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.134442 -"CESM1-BGC","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.133476 -"CESM1-BGC","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.132758 -"CESM1-BGC","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.132981 -"CESM1-BGC","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.132076 -"CESM1-BGC","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.132195 -"CESM1-BGC","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.131582 -"CESM1-BGC","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.130507 -"CESM1-BGC","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.12972 -"CESM1-BGC","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.130517 -"CESM1-BGC","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.130838 -"CESM1-BGC","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.130407 -"CESM1-BGC","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.130167 -"CESM1-BGC","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.130648 -"CESM1-BGC","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.129292 -"CESM1-BGC","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.130237 -"CESM1-BGC","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.130264 -"CESM1-BGC","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.12953 -"CESM1-BGC","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.129701 -"CESM1-BGC","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.130234 -"CESM1-BGC","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.129699 -"CESM1-BGC","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.129819 -"CESM1-BGC","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.128565 -"CESM1-BGC","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.128195 -"CESM1-BGC","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.127627 -"CESM1-BGC","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.127438 -"CESM1-BGC","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.126608 -"CESM1-BGC","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.126617 -"CESM1-BGC","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.125197 -"CESM1-BGC","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.124687 -"CESM1-BGC","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.124541 -"CESM1-BGC","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.123422 -"CESM1-BGC","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.12258 -"CESM1-BGC","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.122997 -"CESM1-BGC","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.123736 -"CESM1-BGC","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.121527 -"CESM1-BGC","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.120588 -"CESM1-BGC","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.118962 -"CESM1-BGC","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.117367 -"CESM1-BGC","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.117385 -"CESM1-BGC","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.115721 -"CESM1-BGC","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.115672 -"CESM1-BGC","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.113953 -"CESM1-BGC","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.111616 -"CESM1-BGC","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.111514 -"CESM1-BGC","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.109982 -"CESM1-BGC","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.109675 -"CESM1-BGC","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.107381 -"CESM1-BGC","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.105975 -"CESM1-BGC","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.104295 -"CESM1-BGC","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.103746 -"CESM1-BGC","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.102287 -"CESM1-BGC","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.101659 -"CESM1-BGC","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.100899 -"CESM1-BGC","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.097731 -"CESM1-BGC","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.096088 -"CESM1-BGC","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.094123 -"CESM1-BGC","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.092044 -"CESM1-BGC","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.090745 -"CESM1-BGC","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.088777 -"CESM1-BGC","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.087164 -"CESM1-BGC","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.087234 -"CESM1-BGC","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.087788 -"CESM1-BGC","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.085892 -"CESM1-BGC","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.083463 -"CESM1-BGC","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.082346 -"CESM1-BGC","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.080215 -"CESM1-BGC","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.077843 -"CESM1-BGC","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.077045 -"CESM1-BGC","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.0749 -"CESM1-BGC","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.073372 -"CESM1-BGC","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.071629 -"CESM1-BGC","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.070587 -"CESM1-BGC","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.068062 -"CESM1-BGC","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.066651 -"CESM1-BGC","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.065403 -"HadGEM2-ES","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.1651626 -"HadGEM2-ES","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.1569946 -"HadGEM2-ES","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.1568242 -"HadGEM2-ES","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.1565796 -"HadGEM2-ES","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.1567254 -"HadGEM2-ES","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.1564104 -"HadGEM2-ES","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.156884 -"HadGEM2-ES","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.1565512 -"HadGEM2-ES","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.1562288 -"HadGEM2-ES","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.1561476 -"HadGEM2-ES","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.1557056 -"HadGEM2-ES","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.1555346 -"HadGEM2-ES","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.1549902 -"HadGEM2-ES","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.1547246 -"HadGEM2-ES","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.1546404 -"HadGEM2-ES","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.1545086 -"HadGEM2-ES","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.1542658 -"HadGEM2-ES","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.154151 -"HadGEM2-ES","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.1540862 -"HadGEM2-ES","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.1534188 -"HadGEM2-ES","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.153236 -"HadGEM2-ES","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.1531108 -"HadGEM2-ES","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.1521938 -"HadGEM2-ES","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.1515812 -"HadGEM2-ES","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.1515976 -"HadGEM2-ES","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.1530514 -"HadGEM2-ES","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.1515776 -"HadGEM2-ES","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.150653 -"HadGEM2-ES","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.1503702 -"HadGEM2-ES","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.1499576 -"HadGEM2-ES","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.1497906 -"HadGEM2-ES","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.1496042 -"HadGEM2-ES","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.1494832 -"HadGEM2-ES","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.1485638 -"HadGEM2-ES","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.1484752 -"HadGEM2-ES","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.148124 -"HadGEM2-ES","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.1474044 -"HadGEM2-ES","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.1472352 -"HadGEM2-ES","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.1478642 -"HadGEM2-ES","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.1474582 -"HadGEM2-ES","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.1468264 -"HadGEM2-ES","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.1465738 -"HadGEM2-ES","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.1463836 -"HadGEM2-ES","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.1462666 -"HadGEM2-ES","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.1468094 -"HadGEM2-ES","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.1463278 -"HadGEM2-ES","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.145055 -"HadGEM2-ES","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.1445608 -"HadGEM2-ES","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.144242 -"HadGEM2-ES","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.1441418 -"HadGEM2-ES","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.1438184 -"HadGEM2-ES","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.1431354 -"HadGEM2-ES","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.142646 -"HadGEM2-ES","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.1424532 -"HadGEM2-ES","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.141897 -"HadGEM2-ES","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.1414718 -"HadGEM2-ES","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.1406958 -"HadGEM2-ES","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.1402792 -"HadGEM2-ES","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.1397654 -"HadGEM2-ES","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.1398672 -"HadGEM2-ES","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.1396916 -"HadGEM2-ES","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.1393624 -"HadGEM2-ES","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.1388494 -"HadGEM2-ES","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.1383592 -"HadGEM2-ES","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.137868 -"HadGEM2-ES","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.137086 -"HadGEM2-ES","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.1366902 -"HadGEM2-ES","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.1369976 -"HadGEM2-ES","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.1370092 -"HadGEM2-ES","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.1362494 -"HadGEM2-ES","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.1354406 -"HadGEM2-ES","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.135008 -"HadGEM2-ES","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.1349234 -"HadGEM2-ES","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.1342304 -"HadGEM2-ES","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.1336806 -"HadGEM2-ES","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.1331768 -"HadGEM2-ES","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.1327012 -"HadGEM2-ES","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.1320784 -"HadGEM2-ES","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.131433 -"HadGEM2-ES","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.1310362 -"HadGEM2-ES","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.1307352 -"HadGEM2-ES","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.1310286 -"HadGEM2-ES","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.130228 -"HadGEM2-ES","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.1301716 -"HadGEM2-ES","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.1307374 -"HadGEM2-ES","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.130642 -"HadGEM2-ES","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.1306102 -"HadGEM2-ES","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.130621 -"HadGEM2-ES","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.1303666 -"HadGEM2-ES","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.1304358 -"HadGEM2-ES","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.1303384 -"HadGEM2-ES","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.1305038 -"HadGEM2-ES","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.1301508 -"HadGEM2-ES","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.1298822 -"HadGEM2-ES","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.1294564 -"HadGEM2-ES","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.1288874 -"HadGEM2-ES","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.12845 -"HadGEM2-ES","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.1279528 -"HadGEM2-ES","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.1273688 -"HadGEM2-ES","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.1269426 -"HadGEM2-ES","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.1262476 -"HadGEM2-ES","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.1257446 -"HadGEM2-ES","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.1250414 -"HadGEM2-ES","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.124219 -"HadGEM2-ES","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.1235558 -"HadGEM2-ES","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.1239642 -"HadGEM2-ES","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.1234268 -"HadGEM2-ES","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.1223856 -"HadGEM2-ES","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.1209974 -"HadGEM2-ES","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.1195308 -"HadGEM2-ES","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.1187284 -"HadGEM2-ES","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.1181416 -"HadGEM2-ES","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.1168802 -"HadGEM2-ES","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.1149392 -"HadGEM2-ES","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.1140318 -"HadGEM2-ES","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.1131464 -"HadGEM2-ES","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.1123968 -"HadGEM2-ES","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.110697 -"HadGEM2-ES","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.1089272 -"HadGEM2-ES","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.1076744 -"HadGEM2-ES","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.1062454 -"HadGEM2-ES","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.1045256 -"HadGEM2-ES","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.1030084 -"HadGEM2-ES","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.102214 -"HadGEM2-ES","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.101042 -"HadGEM2-ES","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.0993828 -"HadGEM2-ES","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.0977116 -"HadGEM2-ES","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.0960644 -"HadGEM2-ES","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.0945784 -"HadGEM2-ES","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.0928332 -"HadGEM2-ES","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.0908348 -"HadGEM2-ES","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.0888772 -"HadGEM2-ES","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.0880708 -"HadGEM2-ES","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.0882974 -"HadGEM2-ES","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.0867102 -"HadGEM2-ES","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.0850902 -"HadGEM2-ES","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.0835298 -"HadGEM2-ES","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.0819308 -"HadGEM2-ES","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.0798716 -"HadGEM2-ES","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.0777776 -"HadGEM2-ES","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.0759008 -"HadGEM2-ES","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.074071 -"HadGEM2-ES","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.0721738 -"HadGEM2-ES","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.0702868 -"HadGEM2-ES","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.068292 -"HadGEM2-ES","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.0670748 -"HadGEM2-ES","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.0647964 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.1894358 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.169613 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.16991 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.1691606 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.1692334 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.1695022 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.1690328 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.1679018 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.1682706 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.167666 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.167314 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.1668506 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.1667864 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.1664832 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.1677716 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.1674286 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.1664204 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.1657756 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.1664578 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.1663358 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.165123 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.1636184 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.1635292 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.1633454 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.1618818 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.1619162 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.1618636 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.1612402 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.160919 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.1614288 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.1609448 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.1601768 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.1608054 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.1608216 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.1593348 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.1592426 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.1592182 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.1590038 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.1591932 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.1592484 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.1591104 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.159343 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.1591868 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.158565 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.1577354 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.1571418 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.1565924 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.155622 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.1565086 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.1564454 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.1552138 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.155426 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.1544112 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.1536284 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.153072 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.1537582 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.1524598 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.1528868 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.1528684 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.1522472 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.1530796 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.1525382 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.151273 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.151223 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.1503506 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.1499934 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.14876 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.149611 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.1496682 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.1491456 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.1486362 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.1477428 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.1467282 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.146642 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.146047 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.1451254 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.1440866 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.1433456 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.1427862 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.142929 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.1421146 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.1426292 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.142145 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.1425056 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.142773 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.1428784 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.1434366 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.1432258 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.1435426 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.1431428 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.1433556 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.143473 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.142611 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.1416014 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.1408538 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.1404146 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.1394038 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.1401662 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.1384876 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.1372472 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.1370778 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.1367494 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.1356928 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.1349618 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.1331764 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.1338972 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.1336732 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.1333296 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.1320648 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.1317708 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.1308222 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.1301786 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.1290454 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.1269362 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.1258456 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.1248882 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.1232206 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.121602 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.1209138 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.1189098 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.1172594 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.115105 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.1134298 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.1126218 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.1101054 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.108551 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.108068 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.106194 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.1052536 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.1038656 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.101363 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.0989326 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.097364 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.0953612 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.0949994 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.0931306 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.0919144 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.0906682 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.087952 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.086403 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.0834682 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.0810708 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.0790748 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.0763342 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.0731944 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.0727468 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.0692732 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.1606296 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.1546384 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.1543804 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.1542298 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.1543896 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.1539656 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.1546148 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.154432 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.15398 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.1539962 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.1535382 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.1534214 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.1527868 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.152529 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.1521882 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.1520962 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.1519962 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.1519802 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.1517758 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.1510068 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.1510162 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.1511486 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.1500772 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.1493844 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.149677 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.1513962 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.1496568 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.1486758 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.1484 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.1478156 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.1477076 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.1476294 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.147369 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.146275 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.1464468 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.1460476 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.1451984 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.1450378 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.1457484 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.1452566 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.1445324 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.1441894 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.1439926 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.1439698 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.1447686 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.1443084 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.1429006 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.1424952 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.1419512 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.141844 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.1416904 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.1408398 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.140449 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.1403664 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.13981 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.1391774 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.138499 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.1379246 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.1373182 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.1375556 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.1371914 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.136902 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.1365296 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.1359566 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.1355368 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.1346756 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.1344362 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.1346418 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.1346454 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.133841 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.1329764 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.1326296 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.132719 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.1319124 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.1313716 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.1309458 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.1305748 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.1299744 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.129313 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.1288152 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.1286102 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.1288628 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.1280024 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.1278682 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.12849 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.1283572 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.1282148 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.1282672 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.1279062 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.128063 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.1279078 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.1280818 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.1278236 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.1276934 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.1273282 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.126735 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.1264042 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.125672 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.1252922 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.125018 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.124225 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.1236892 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.1230524 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.1222126 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.121759 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.1221092 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.1215134 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.1203418 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.1189304 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.117245 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.1164698 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.115894 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.1146082 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.1126988 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.1118256 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.1109534 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.1103756 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.1086608 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.1066888 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.1055764 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.1041884 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.1025496 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.1010626 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.1002706 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.0993494 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.0976708 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.0957774 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.094173 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.0925848 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.0907734 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.0888684 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.0869994 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.0863354 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.0869786 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.0851622 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.0835888 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.0819638 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.0802992 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.0783626 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.0761666 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.0744874 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.0727638 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.070885 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.0691572 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.067377 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.0660156 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.0639604 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1850,"Simulated",1,"global",8.15989933333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.159687 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.16010566666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.160048 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.15928966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.1593 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.15902133333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.15920166666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.15926366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.15844133333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.15786666666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.15780566666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.15739966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.157308 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.15731633333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.15729333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.15731333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.15692633333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.15678 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.156584 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.15697033333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.15691333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.15671266666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.156362 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.155589 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.15574766666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.15563266666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.15525333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.15539933333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.154461 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.15447366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.153833 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.153167 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.15352933333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.15428666666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.15311233333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.15236933333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.15226766666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.151776 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.15139366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.151392 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.150837 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.15009966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.14987333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.149158 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.14937766666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.149318 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.14881633333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.148831 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.14907066666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.14884433333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.148436 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.14827733333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.14892966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.14793866666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.14699 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.14609366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.146301 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.14567166666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.14501333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.144722 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.14426366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.14438233333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.14394866666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.14304966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.142401 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.14160766666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.14133233333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.14176333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.14096966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.14037366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.14016566666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.13997266666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.13985633333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.13944166666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.13834933333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.138571 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.13876 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.138061 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.13720266666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.136735 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.13630433333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.13589433333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.135564 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.13482366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.13429 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.13345433333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.13304533333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.13302066666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.133005 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.13257233333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.132389 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.132609 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.13280766666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.13273566666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.133285 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.132396 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.13225233333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.131874 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.13164066666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.131671 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.13191 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.13125525 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.131169 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.13049625 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.12967125 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.129342 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.1288785 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.128387 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.127538 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.12639225 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.126346 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.12623725 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.12572775 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.125207 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.12456125 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.1239735 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.1224485 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.1215055 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.12095225 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.11915275 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.11800575 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.1165935 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.11550425 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.11442875 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.11357825 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.11253875 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.1110765 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.10968425 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.107752 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.10665775 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.10475475 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.103663 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.10311375 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.10102625 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.09948825 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.098286 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.09611075 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.094431 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.09216175 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.0903995 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.0898515 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.08975525 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.087815 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.08611875 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.08427675 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.082871 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.08052325 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.07882225 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.07696425 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.07568175 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.07389475 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.07173025 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.070581 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.068443 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.0666355 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1850,"Simulated",1,"HL",8.159644 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.16050733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.16147133333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.15906533333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.156686 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.15746466666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.155274 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.15499866666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.15500033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.155079 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.154149 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.15321233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.15317066666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.152779 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.15435433333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.15366033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.154805 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.15400133333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.15381733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.15484733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.15671366666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.156613 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.157029 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.15533433333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.15369433333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.15464966666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.15534833333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.152938 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.15359466666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.15322766666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.15353 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.15314833333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.15365233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.15230733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.150448 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.14982366666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.150682 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.15288566666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.15252466666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.152876 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.15192533333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.151843 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.152821 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.14814333333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.14832733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.149435 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.14928 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.147474 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.148554 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.14947966666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.14877633333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.14830766666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.14794166666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.14865966666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.147971 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.147783 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.146289 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.14498233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.14526166666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.14637966666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.14537033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.14447933333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.14439333333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.14384033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.14204833333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.14009333333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.13756533333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.138203 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.14055233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.13956666666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.137016 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.138715 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.13905633333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.13905233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.13818566666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.13656833333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.13833466666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.13876733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.137021 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.13729033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.13726566666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.137518 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.13776333333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.13788733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.13615833333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.13393633333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.13323033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.13312733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.13261066666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.13382866666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.13147133333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.132351 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.13224233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.13323233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.133907 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.13551966666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.13458633333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.134085 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.133092 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.133328 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.13275325 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.133185 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.1314225 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.13201825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.131516 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.1307455 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.1291955 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.12975125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.12903975 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.1272755 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.126457 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.126809 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.12825325 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.12633075 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.1249365 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.125073 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.12512025 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.12352475 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.122215 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.120503 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.11930675 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.11865125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.11662225 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.11530825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.11482975 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.1136835 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.11254925 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.111416 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.1095275 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.10855775 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.10778675 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.1042065 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.1018335 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.10164425 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.098275 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.096997 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.0954715 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.0936925 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.0923595 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.0895445 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.0863935 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.0856485 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.08446125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.0832345 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.080918 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.079275 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.07699925 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.075084 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.072192 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.0708825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.0693435 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.06761575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.06378575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.063469 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.06110025 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.05932225 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1850,"Simulated",1,"LL",8.15995466666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.15950833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.15980866666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.16026166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.159856 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.159699 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.15983633333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.16011566666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.160191 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.15917233333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.158675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.158805 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.15831966666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.15829233333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.15796 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.15808333333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.157859 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.157562 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.157424 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.15696133333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.15702566666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.15697866666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.15664366666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.156585 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.156001 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.15598666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.155695 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.155757 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.15579166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.154729 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.15467866666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.15398166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.15306166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.15379533333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.15512166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.15382733333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.15273633333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.15213333333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.151613 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.15107166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.151276 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.15061833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.14950766666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.15024933333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.14933833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.14936533333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.14932666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.14910833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.14889133333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.14898166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.14885933333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.14846366666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.14835033333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.14898833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.14793166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.14681766666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.14605133333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.14658766666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.145761 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.144716 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.144581 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.14421666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.14438033333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.14397266666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.143267 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.142903 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.14248666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.142013 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.14202666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.141275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.141104 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.140481 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.140172 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.140031 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.139715 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.13873666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.13862233333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.13875833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.138287 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.13718366666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.13662 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.13604033333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.135488 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.13505866666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.13453333333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.13436666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.133503 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.13302766666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.13310966666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.132826 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.132812 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.13239733333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.13268833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.132715 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.132481 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.13279933333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.13191933333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.131854 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.13160933333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.13127366666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.1314355 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.13163275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.131219 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.1309845 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.1302745 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.1294375 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.12937375 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.12868875 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.128245 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.127595 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.126378 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.12624525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.125799 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.12559625 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.12526575 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.12445 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.1237245 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.122215 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.12135125 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.12105 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.119119 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.1178655 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.1165875 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.115547 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.11434125 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.113555 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.11253675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.1110025 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.1097185 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.10757675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.106412 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.104874 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.104061 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.10343325 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.1016245 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.10003 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.098898 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.09663675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.09488175 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.0927305 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.09127075 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.0907655 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.090906 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.088811 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.0872495 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.08536425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.08414725 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.0817055 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.08026425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.078287 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.0770605 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.07526025 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.07345775 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.0721275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.07003975 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.0682255 -"MPI-ESM-LR","ph","ocean","ph","historical",1850,"Simulated",1,"global",8.16400033333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.16384 -"MPI-ESM-LR","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.16370733333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.16354833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.16362833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.16349266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.163695 -"MPI-ESM-LR","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.16404266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.163805 -"MPI-ESM-LR","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.16314666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.16281866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.162264 -"MPI-ESM-LR","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.16299233333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.162481 -"MPI-ESM-LR","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.16219966666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.16197166666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.16151133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.160938 -"MPI-ESM-LR","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.161272 -"MPI-ESM-LR","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.161114 -"MPI-ESM-LR","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.16130533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.16164666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.16137 -"MPI-ESM-LR","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.160687 -"MPI-ESM-LR","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.159876 -"MPI-ESM-LR","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.16034066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.159919 -"MPI-ESM-LR","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.15976666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.15956233333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.15918433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.15839466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.15792533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.15714033333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.15763233333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.15839566666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.15693 -"MPI-ESM-LR","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.155956 -"MPI-ESM-LR","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.15547266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.15460566666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.15508 -"MPI-ESM-LR","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.15446833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.153947 -"MPI-ESM-LR","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.15426633333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.15415133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.153199 -"MPI-ESM-LR","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.15275433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.153122 -"MPI-ESM-LR","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.15300266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.15263366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.15243933333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.152515 -"MPI-ESM-LR","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.152332 -"MPI-ESM-LR","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.15130866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.15188166666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.15096533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.150797 -"MPI-ESM-LR","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.15009866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.149472 -"MPI-ESM-LR","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.14929866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.14799066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.14816833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.14791533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.14675066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.14749633333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.14648333333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.145719 -"MPI-ESM-LR","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.14525366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.14544666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.14482466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.14453233333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.14418366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.14406366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.14382266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.14321466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.14261366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.14242933333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.14180533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.141493 -"MPI-ESM-LR","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.14056866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.140376 -"MPI-ESM-LR","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.139965 -"MPI-ESM-LR","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.13943066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.13879466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.138213 -"MPI-ESM-LR","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.13781966666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.13704933333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.13732866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.13695966666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.13638566666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.13641266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.135865 -"MPI-ESM-LR","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.13487733333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.134892 -"MPI-ESM-LR","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.13607066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.13594266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.13566133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.135397 -"MPI-ESM-LR","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.13439166666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.135122 -"MPI-ESM-LR","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.13528533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.135145 -"MPI-ESM-LR","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.13489866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.13414566666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.133652 -"MPI-ESM-LR","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.133689 -"MPI-ESM-LR","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.13277366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.13241133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.13157533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.13061866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.13012433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.129759 -"MPI-ESM-LR","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.129214 -"MPI-ESM-LR","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.12835266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.12773966666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.12789833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.127837 -"MPI-ESM-LR","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.12588333333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.12485133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.12307033333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.12231 -"MPI-ESM-LR","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.122269 -"MPI-ESM-LR","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.120252 -"MPI-ESM-LR","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.11903433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.11788666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.11678366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.11587233333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.115001 -"MPI-ESM-LR","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.11323466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.11181433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.10983533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.10810266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.10697466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.10569066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.10500733333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.103304 -"MPI-ESM-LR","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.10158833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.10041733333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.09809033333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.09611 -"MPI-ESM-LR","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.09371266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.092182 -"MPI-ESM-LR","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.091166 -"MPI-ESM-LR","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.09211 -"MPI-ESM-LR","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.09042 -"MPI-ESM-LR","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.08869266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.08664433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.08518366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.082977 -"MPI-ESM-LR","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.08162133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.07966366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.07793666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.07561266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.07448833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.07188366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.06971 -"MPI-ESM-LR","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.068702 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1850,"Simulated",1,"HL",8.179115 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.17860633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.177892 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.17709633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.17909766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.17624233333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.17741966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.178669 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.178286 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.17843933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.178069 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.17620766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.17889733333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.17772833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.17722133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.17560666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.175867 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.175305 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.17568966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.174891 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.17543433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.17729466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.17588533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.174193 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.17294333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.177822 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.17508033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.175096 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.175522 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.17272633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.172963 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.17291466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.170398 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.17040966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.16888566666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.168354 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.169209 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.16866133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.16791633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.16888633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.16711766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.16614966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.16645833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.16921966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.16729533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.16631533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.16687366666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.166934 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.16625633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.166844 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.16549066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.16638966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.16478033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.16605666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.16497633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.16475733333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.164419 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.16269333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.16337866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.16224533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.16320066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.16102666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.15920866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.16013266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.15978433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.15839966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.15821433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.157701 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.157737 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.15965833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.15742766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.15553866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.156065 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.15547366666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.15454333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.15564633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.153635 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.15272633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.15158566666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.15227733333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.152659 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.15277266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.14975633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.14924033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.14849133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.148917 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.14948666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.14894466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.14862866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.14887366666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.14812466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.14593866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.142898 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.146073 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.14651266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.147495 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.14680266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.14559533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.14730433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.14673333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.14723866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.14599633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.14681933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.14477866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.144956 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.14397 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.144547 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.14245833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.14142666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.14083966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.14030233333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.140571 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.139776 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.13889 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.13786033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.13778166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.136351 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.136238 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.13382433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.13153833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.13262066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.128987 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.12972066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.12777 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.126381 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.12580633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.12646133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.12345633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.121782 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.11936933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.11758266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.115628 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.11433533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.11149366666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.110885 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.108721 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.10881166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.106733 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.10343933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.102726 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.10112633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.09735633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.09601066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.094363 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.094009 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.092514 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.090684 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.087809 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.08630033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.08359666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.08175633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.07882033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.07735 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.076486 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.074249 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.072275 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1850,"Simulated",1,"LL",8.16091066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.160822 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.160808 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.16077966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.16046633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.16088666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.16088966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.16105366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.16084566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.160021 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.15970133333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.159414 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.159742 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.15936466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.159129 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.15918466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.158577 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.15800166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.158325 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.158298 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.158417 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.15844833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.15840266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.15792666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.15720533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.15676833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.15682 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.15663333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.15630033333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.15641666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.15541666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.154862 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.154431 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.155021 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.15625166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.154595 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.153247 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.152777 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.151885 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.15225866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.15188266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.15145333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.15177466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.15107166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.150318 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.14998266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.150311 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.15015533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.14984933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.14949533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.14986333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.14945866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.14855533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.14898433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.14810166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.147944 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.14717166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.14676933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.14642066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.14507733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.14509566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.145236 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.14420433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.14491366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.14376466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.143127 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.14260466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.142942 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.14218533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.14144066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.14147666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.14171833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.14132033333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.14070933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.14017533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.139728 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.13938733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.13919733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.138317 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.13794333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.13737033333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.13670333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.13655433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.13595933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.13563833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.134623 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.13484366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.13451 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.13388366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.13386566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.13335933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.13261633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.13325566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.13402633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.13378233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.13324233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.133066 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.132102 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.132632 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.13294566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.13267333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.13263033333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.13155533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.13137833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.131386 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.130485 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.129931 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.12935066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.12840966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.12793433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.127604 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.126893 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.12601833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.12546066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.12586233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.12580433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.123744 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.122524 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.12087266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.12042433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.12015333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.118467 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.11685033333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.115867 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.11482233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.11384166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.112659 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.11114566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.109777 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.10788666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.106165 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.105206 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.103924 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.103682 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.10175466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.10013066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.09870166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.09632366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.094612 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.09187 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.09035433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.089901 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.09131266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.089614 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.08760566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.08544433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.08405933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.08198966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.080665 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.07886 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.07715633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.07495733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.07390333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.07094266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.06878233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.067972 -"MRI-ESM1","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.155558 -"MRI-ESM1","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.15699 -"MRI-ESM1","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.155893 -"MRI-ESM1","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.156003 -"MRI-ESM1","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.157122 -"MRI-ESM1","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.156564 -"MRI-ESM1","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.155773 -"MRI-ESM1","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.156736 -"MRI-ESM1","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.156114 -"MRI-ESM1","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.156223 -"MRI-ESM1","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.155765 -"MRI-ESM1","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.155262 -"MRI-ESM1","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.154973 -"MRI-ESM1","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.154515 -"MRI-ESM1","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.155091 -"MRI-ESM1","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.154159 -"MRI-ESM1","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.154128 -"MRI-ESM1","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.154558 -"MRI-ESM1","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.155286 -"MRI-ESM1","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.1541 -"MRI-ESM1","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.154177 -"MRI-ESM1","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.153954 -"MRI-ESM1","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.153581 -"MRI-ESM1","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.153552 -"MRI-ESM1","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.15242 -"MRI-ESM1","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.153286 -"MRI-ESM1","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.152286 -"MRI-ESM1","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.152363 -"MRI-ESM1","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.152082 -"MRI-ESM1","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.151478 -"MRI-ESM1","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.150932 -"MRI-ESM1","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.150217 -"MRI-ESM1","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.150489 -"MRI-ESM1","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.151516 -"MRI-ESM1","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.149537 -"MRI-ESM1","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.148866 -"MRI-ESM1","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.14879 -"MRI-ESM1","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.148254 -"MRI-ESM1","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.147457 -"MRI-ESM1","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.148014 -"MRI-ESM1","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.147485 -"MRI-ESM1","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.146142 -"MRI-ESM1","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.147059 -"MRI-ESM1","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.147568 -"MRI-ESM1","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.146783 -"MRI-ESM1","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.145333 -"MRI-ESM1","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.145767 -"MRI-ESM1","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.146332 -"MRI-ESM1","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.145146 -"MRI-ESM1","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.145813 -"MRI-ESM1","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.144835 -"MRI-ESM1","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.144619 -"MRI-ESM1","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.145952 -"MRI-ESM1","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.145149 -"MRI-ESM1","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.14402 -"MRI-ESM1","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.143391 -"MRI-ESM1","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.142674 -"MRI-ESM1","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.143174 -"MRI-ESM1","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.141504 -"MRI-ESM1","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.141027 -"MRI-ESM1","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.140107 -"MRI-ESM1","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.140417 -"MRI-ESM1","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.14034 -"MRI-ESM1","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.139599 -"MRI-ESM1","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.137957 -"MRI-ESM1","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.138672 -"MRI-ESM1","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.139319 -"MRI-ESM1","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.137128 -"MRI-ESM1","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.136645 -"MRI-ESM1","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.137461 -"MRI-ESM1","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.136904 -"MRI-ESM1","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.136275 -"MRI-ESM1","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.135914 -"MRI-ESM1","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.136324 -"MRI-ESM1","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.135019 -"MRI-ESM1","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.133795 -"MRI-ESM1","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.135229 -"MRI-ESM1","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.134466 -"MRI-ESM1","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.133126 -"MRI-ESM1","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.133497 -"MRI-ESM1","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.132634 -"MRI-ESM1","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.131546 -"MRI-ESM1","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.130579 -"MRI-ESM1","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.131224 -"MRI-ESM1","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.130271 -"MRI-ESM1","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.129511 -"MRI-ESM1","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.12968 -"MRI-ESM1","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.129808 -"MRI-ESM1","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.128905 -"MRI-ESM1","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.129264 -"MRI-ESM1","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.129348 -"MRI-ESM1","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.127196 -"MRI-ESM1","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.128586 -"MRI-ESM1","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.129018 -"MRI-ESM1","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.128379 -"MRI-ESM1","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.128757 -"MRI-ESM1","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.129326 -"MRI-ESM1","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.127797 -"MRI-ESM1","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.1279 -"MRI-ESM1","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.127055 -"MRI-ESM1","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.127526 -"MRI-ESM1","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.127727 -"MRI-ESM1","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.127767 -"MRI-ESM1","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.127903 -"MRI-ESM1","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.126559 -"MRI-ESM1","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.126008 -"MRI-ESM1","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.124473 -"MRI-ESM1","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.124351 -"MRI-ESM1","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.124125 -"MRI-ESM1","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.123464 -"MRI-ESM1","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.122706 -"MRI-ESM1","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.122769 -"MRI-ESM1","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.120885 -"MRI-ESM1","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.119743 -"MRI-ESM1","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.1204 -"MRI-ESM1","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.119723 -"MRI-ESM1","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.118757 -"MRI-ESM1","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.116892 -"MRI-ESM1","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.115885 -"MRI-ESM1","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.11544 -"MRI-ESM1","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.114538 -"MRI-ESM1","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.113389 -"MRI-ESM1","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.11262 -"MRI-ESM1","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.110226 -"MRI-ESM1","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.109926 -"MRI-ESM1","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.1083 -"MRI-ESM1","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.106483 -"MRI-ESM1","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.105923 -"MRI-ESM1","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.102934 -"MRI-ESM1","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.102088 -"MRI-ESM1","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.100924 -"MRI-ESM1","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.099091 -"MRI-ESM1","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.098249 -"MRI-ESM1","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.096794 -"MRI-ESM1","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.095095 -"MRI-ESM1","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.093955 -"MRI-ESM1","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.092589 -"MRI-ESM1","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.091428 -"MRI-ESM1","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.08864 -"MRI-ESM1","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.086673 -"MRI-ESM1","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.085672 -"MRI-ESM1","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.085168 -"MRI-ESM1","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.08346 -"MRI-ESM1","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.082787 -"MRI-ESM1","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.080944 -"MRI-ESM1","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.078966 -"MRI-ESM1","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.077052 -"MRI-ESM1","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.075677 -"MRI-ESM1","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.073792 -"MRI-ESM1","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.072133 -"MRI-ESM1","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.071373 -"MRI-ESM1","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.068755 -"MRI-ESM1","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.066118 -"MRI-ESM1","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.065153 -"MRI-ESM1","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.064173 -"MRI-ESM1","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.15835 -"MRI-ESM1","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.158403 -"MRI-ESM1","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.158288 -"MRI-ESM1","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.157755 -"MRI-ESM1","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.159354 -"MRI-ESM1","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.157405 -"MRI-ESM1","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.159595 -"MRI-ESM1","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.160374 -"MRI-ESM1","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.160316 -"MRI-ESM1","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.15947 -"MRI-ESM1","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.15859 -"MRI-ESM1","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.156225 -"MRI-ESM1","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.156726 -"MRI-ESM1","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.15575 -"MRI-ESM1","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.155725 -"MRI-ESM1","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.15628 -"MRI-ESM1","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.155995 -"MRI-ESM1","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.154645 -"MRI-ESM1","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.154939 -"MRI-ESM1","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.155055 -"MRI-ESM1","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.156045 -"MRI-ESM1","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.155298 -"MRI-ESM1","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.154365 -"MRI-ESM1","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.154501 -"MRI-ESM1","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.153727 -"MRI-ESM1","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.15338 -"MRI-ESM1","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.154095 -"MRI-ESM1","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.153179 -"MRI-ESM1","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.153453 -"MRI-ESM1","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.153209 -"MRI-ESM1","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.152746 -"MRI-ESM1","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.153179 -"MRI-ESM1","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.152196 -"MRI-ESM1","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.152487 -"MRI-ESM1","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.151641 -"MRI-ESM1","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.150701 -"MRI-ESM1","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.150603 -"MRI-ESM1","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.149889 -"MRI-ESM1","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.150284 -"MRI-ESM1","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.149969 -"MRI-ESM1","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.148796 -"MRI-ESM1","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.148971 -"MRI-ESM1","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.148967 -"MRI-ESM1","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.14885 -"MRI-ESM1","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.149535 -"MRI-ESM1","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.148419 -"MRI-ESM1","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.146608 -"MRI-ESM1","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.147007 -"MRI-ESM1","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.146329 -"MRI-ESM1","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.145353 -"MRI-ESM1","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.145263 -"MRI-ESM1","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.144804 -"MRI-ESM1","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.145609 -"MRI-ESM1","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.143753 -"MRI-ESM1","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.14493 -"MRI-ESM1","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.145957 -"MRI-ESM1","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.144962 -"MRI-ESM1","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.143444 -"MRI-ESM1","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.142937 -"MRI-ESM1","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.141538 -"MRI-ESM1","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.140795 -"MRI-ESM1","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.139925 -"MRI-ESM1","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.13931 -"MRI-ESM1","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.138244 -"MRI-ESM1","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.137115 -"MRI-ESM1","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.137897 -"MRI-ESM1","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.137949 -"MRI-ESM1","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.137688 -"MRI-ESM1","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.137271 -"MRI-ESM1","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.137557 -"MRI-ESM1","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.137657 -"MRI-ESM1","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.136835 -"MRI-ESM1","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.135229 -"MRI-ESM1","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.135351 -"MRI-ESM1","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.134962 -"MRI-ESM1","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.133655 -"MRI-ESM1","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.133808 -"MRI-ESM1","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.133909 -"MRI-ESM1","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.133601 -"MRI-ESM1","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.132172 -"MRI-ESM1","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.131905 -"MRI-ESM1","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.131667 -"MRI-ESM1","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.130132 -"MRI-ESM1","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.130266 -"MRI-ESM1","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.129209 -"MRI-ESM1","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.128273 -"MRI-ESM1","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.126738 -"MRI-ESM1","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.127105 -"MRI-ESM1","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.126649 -"MRI-ESM1","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.127399 -"MRI-ESM1","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.126711 -"MRI-ESM1","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.126055 -"MRI-ESM1","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.125767 -"MRI-ESM1","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.125464 -"MRI-ESM1","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.12582 -"MRI-ESM1","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.126607 -"MRI-ESM1","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.12624 -"MRI-ESM1","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.126272 -"MRI-ESM1","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.125822 -"MRI-ESM1","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.125449 -"MRI-ESM1","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.125341 -"MRI-ESM1","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.125514 -"MRI-ESM1","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.125358 -"MRI-ESM1","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.124602 -"MRI-ESM1","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.125234 -"MRI-ESM1","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.123963 -"MRI-ESM1","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.124826 -"MRI-ESM1","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.124393 -"MRI-ESM1","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.123344 -"MRI-ESM1","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.121813 -"MRI-ESM1","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.121421 -"MRI-ESM1","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.121453 -"MRI-ESM1","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.119349 -"MRI-ESM1","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.11966 -"MRI-ESM1","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.117692 -"MRI-ESM1","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.116088 -"MRI-ESM1","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.115574 -"MRI-ESM1","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.114307 -"MRI-ESM1","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.113466 -"MRI-ESM1","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.110561 -"MRI-ESM1","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.11116 -"MRI-ESM1","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.108617 -"MRI-ESM1","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.108159 -"MRI-ESM1","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.105862 -"MRI-ESM1","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.105292 -"MRI-ESM1","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.103617 -"MRI-ESM1","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.102836 -"MRI-ESM1","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.10123 -"MRI-ESM1","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.099332 -"MRI-ESM1","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.097791 -"MRI-ESM1","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.096433 -"MRI-ESM1","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.094539 -"MRI-ESM1","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.094095 -"MRI-ESM1","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.092091 -"MRI-ESM1","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.09192 -"MRI-ESM1","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.090516 -"MRI-ESM1","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.088514 -"MRI-ESM1","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.086633 -"MRI-ESM1","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.084092 -"MRI-ESM1","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.080438 -"MRI-ESM1","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.079353 -"MRI-ESM1","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.078889 -"MRI-ESM1","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.077425 -"MRI-ESM1","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.075688 -"MRI-ESM1","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.074984 -"MRI-ESM1","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.072108 -"MRI-ESM1","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.071382 -"MRI-ESM1","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.069056 -"MRI-ESM1","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.067957 -"MRI-ESM1","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.064564 -"MRI-ESM1","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.063202 -"MRI-ESM1","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.060367 -"MRI-ESM1","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.058615 -"MRI-ESM1","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.056266 -"MRI-ESM1","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.054726 -"MRI-ESM1","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.155052 -"MRI-ESM1","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.156734 -"MRI-ESM1","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.155458 -"MRI-ESM1","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.155685 -"MRI-ESM1","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.156717 -"MRI-ESM1","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.156411 -"MRI-ESM1","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.15508 -"MRI-ESM1","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.156075 -"MRI-ESM1","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.155352 -"MRI-ESM1","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.155634 -"MRI-ESM1","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.155253 -"MRI-ESM1","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.155088 -"MRI-ESM1","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.154656 -"MRI-ESM1","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.154291 -"MRI-ESM1","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.154976 -"MRI-ESM1","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.153774 -"MRI-ESM1","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.153789 -"MRI-ESM1","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.154542 -"MRI-ESM1","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.155348 -"MRI-ESM1","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.153927 -"MRI-ESM1","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.153838 -"MRI-ESM1","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.15371 -"MRI-ESM1","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.153439 -"MRI-ESM1","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.15338 -"MRI-ESM1","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.152183 -"MRI-ESM1","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.153268 -"MRI-ESM1","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.151958 -"MRI-ESM1","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.152215 -"MRI-ESM1","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.151833 -"MRI-ESM1","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.151164 -"MRI-ESM1","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.150603 -"MRI-ESM1","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.149679 -"MRI-ESM1","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.150179 -"MRI-ESM1","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.151339 -"MRI-ESM1","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.149156 -"MRI-ESM1","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.148534 -"MRI-ESM1","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.148461 -"MRI-ESM1","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.147957 -"MRI-ESM1","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.146944 -"MRI-ESM1","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.147659 -"MRI-ESM1","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.147247 -"MRI-ESM1","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.145629 -"MRI-ESM1","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.146713 -"MRI-ESM1","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.147335 -"MRI-ESM1","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.146284 -"MRI-ESM1","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.144774 -"MRI-ESM1","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.145614 -"MRI-ESM1","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.14621 -"MRI-ESM1","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.144931 -"MRI-ESM1","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.145896 -"MRI-ESM1","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.144757 -"MRI-ESM1","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.144585 -"MRI-ESM1","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.146014 -"MRI-ESM1","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.145403 -"MRI-ESM1","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.143855 -"MRI-ESM1","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.142925 -"MRI-ESM1","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.142259 -"MRI-ESM1","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.143124 -"MRI-ESM1","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.141244 -"MRI-ESM1","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.140934 -"MRI-ESM1","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.139982 -"MRI-ESM1","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.140506 -"MRI-ESM1","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.140526 -"MRI-ESM1","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.139845 -"MRI-ESM1","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.13811 -"MRI-ESM1","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.138812 -"MRI-ESM1","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.139567 -"MRI-ESM1","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.137026 -"MRI-ESM1","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.136531 -"MRI-ESM1","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.137444 -"MRI-ESM1","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.136768 -"MRI-ESM1","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.136173 -"MRI-ESM1","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.136038 -"MRI-ESM1","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.136501 -"MRI-ESM1","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.135029 -"MRI-ESM1","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.133821 -"MRI-ESM1","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.135487 -"MRI-ESM1","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.134567 -"MRI-ESM1","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.13304 -"MRI-ESM1","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.133738 -"MRI-ESM1","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.132766 -"MRI-ESM1","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.131524 -"MRI-ESM1","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.13066 -"MRI-ESM1","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.131398 -"MRI-ESM1","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.130463 -"MRI-ESM1","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.129735 -"MRI-ESM1","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.130214 -"MRI-ESM1","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.130299 -"MRI-ESM1","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.129314 -"MRI-ESM1","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.129603 -"MRI-ESM1","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.129827 -"MRI-ESM1","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.127402 -"MRI-ESM1","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.129098 -"MRI-ESM1","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.129662 -"MRI-ESM1","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.128844 -"MRI-ESM1","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.129147 -"MRI-ESM1","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.129885 -"MRI-ESM1","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.128074 -"MRI-ESM1","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.128277 -"MRI-ESM1","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.127346 -"MRI-ESM1","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.127922 -"MRI-ESM1","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.128128 -"MRI-ESM1","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.128204 -"MRI-ESM1","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.128502 -"MRI-ESM1","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.126799 -"MRI-ESM1","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.126378 -"MRI-ESM1","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.124409 -"MRI-ESM1","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.124344 -"MRI-ESM1","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.124266 -"MRI-ESM1","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.123764 -"MRI-ESM1","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.122939 -"MRI-ESM1","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.123008 -"MRI-ESM1","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.121163 -"MRI-ESM1","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.119758 -"MRI-ESM1","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.120891 -"MRI-ESM1","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.120383 -"MRI-ESM1","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.119335 -"MRI-ESM1","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.117361 -"MRI-ESM1","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.116324 -"MRI-ESM1","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.116325 -"MRI-ESM1","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.115151 -"MRI-ESM1","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.114254 -"MRI-ESM1","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.11343 -"MRI-ESM1","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.111018 -"MRI-ESM1","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.110767 -"MRI-ESM1","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.10915 -"MRI-ESM1","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.107144 -"MRI-ESM1","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.106774 -"MRI-ESM1","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.103587 -"MRI-ESM1","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.102868 -"MRI-ESM1","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.101738 -"MRI-ESM1","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.099917 -"MRI-ESM1","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.099002 -"MRI-ESM1","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.097646 -"MRI-ESM1","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.095671 -"MRI-ESM1","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.094579 -"MRI-ESM1","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.093328 -"MRI-ESM1","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.092297 -"MRI-ESM1","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.089465 -"MRI-ESM1","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.087804 -"MRI-ESM1","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.086818 -"MRI-ESM1","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.086307 -"MRI-ESM1","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.084555 -"MRI-ESM1","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.084075 -"MRI-ESM1","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.082025 -"MRI-ESM1","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.08021 -"MRI-ESM1","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.078081 -"MRI-ESM1","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.076878 -"MRI-ESM1","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.07485 -"MRI-ESM1","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.073505 -"MRI-ESM1","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.072855 -"MRI-ESM1","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.070277 -"MRI-ESM1","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.067478 -"MRI-ESM1","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.066765 -"MRI-ESM1","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.065887 -"NorESM1-ME","ph","ocean","ph","historical",1850,"Simulated",1,"global",8.165641 -"NorESM1-ME","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.165601 -"NorESM1-ME","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.166049 -"NorESM1-ME","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.166017 -"NorESM1-ME","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.164898 -"NorESM1-ME","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.16474 -"NorESM1-ME","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.165075 -"NorESM1-ME","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.164938 -"NorESM1-ME","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.164779 -"NorESM1-ME","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.164353 -"NorESM1-ME","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.164183 -"NorESM1-ME","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.164391 -"NorESM1-ME","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.16471 -"NorESM1-ME","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.163849 -"NorESM1-ME","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.163745 -"NorESM1-ME","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.16372 -"NorESM1-ME","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.16407 -"NorESM1-ME","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.163156 -"NorESM1-ME","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.163342 -"NorESM1-ME","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.163127 -"NorESM1-ME","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.162769 -"NorESM1-ME","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.162747 -"NorESM1-ME","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.163021 -"NorESM1-ME","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.163077 -"NorESM1-ME","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.162424 -"NorESM1-ME","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.162093 -"NorESM1-ME","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.161319 -"NorESM1-ME","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.160774 -"NorESM1-ME","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.160635 -"NorESM1-ME","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.160296 -"NorESM1-ME","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.159691 -"NorESM1-ME","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.159025 -"NorESM1-ME","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.158497 -"NorESM1-ME","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.1585 -"NorESM1-ME","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.159991 -"NorESM1-ME","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.159212 -"NorESM1-ME","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.157469 -"NorESM1-ME","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.157044 -"NorESM1-ME","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.156528 -"NorESM1-ME","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.155683 -"NorESM1-ME","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.155774 -"NorESM1-ME","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.155949 -"NorESM1-ME","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.155311 -"NorESM1-ME","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.155046 -"NorESM1-ME","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.154981 -"NorESM1-ME","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.154665 -"NorESM1-ME","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.155114 -"NorESM1-ME","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.15428 -"NorESM1-ME","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.154056 -"NorESM1-ME","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.153824 -"NorESM1-ME","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.154087 -"NorESM1-ME","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.153715 -"NorESM1-ME","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.152812 -"NorESM1-ME","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.153843 -"NorESM1-ME","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.153796 -"NorESM1-ME","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.152509 -"NorESM1-ME","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.151462 -"NorESM1-ME","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.150569 -"NorESM1-ME","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.150519 -"NorESM1-ME","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.150567 -"NorESM1-ME","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.149397 -"NorESM1-ME","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.149295 -"NorESM1-ME","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.148925 -"NorESM1-ME","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.148509 -"NorESM1-ME","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.148057 -"NorESM1-ME","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.147979 -"NorESM1-ME","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.147597 -"NorESM1-ME","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.146636 -"NorESM1-ME","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.14556 -"NorESM1-ME","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.145903 -"NorESM1-ME","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.145702 -"NorESM1-ME","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.145681 -"NorESM1-ME","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.145633 -"NorESM1-ME","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.144184 -"NorESM1-ME","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.143614 -"NorESM1-ME","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.142988 -"NorESM1-ME","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.1429 -"NorESM1-ME","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.142643 -"NorESM1-ME","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.142783 -"NorESM1-ME","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.142433 -"NorESM1-ME","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.141267 -"NorESM1-ME","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.140623 -"NorESM1-ME","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.140027 -"NorESM1-ME","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.140009 -"NorESM1-ME","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.139525 -"NorESM1-ME","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.138643 -"NorESM1-ME","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.13876 -"NorESM1-ME","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.137819 -"NorESM1-ME","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.137528 -"NorESM1-ME","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.137385 -"NorESM1-ME","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.137649 -"NorESM1-ME","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.138213 -"NorESM1-ME","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.137822 -"NorESM1-ME","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.137028 -"NorESM1-ME","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.136879 -"NorESM1-ME","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.136732 -"NorESM1-ME","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.136677 -"NorESM1-ME","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.137268 -"NorESM1-ME","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.136858 -"NorESM1-ME","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.136911 -"NorESM1-ME","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.136354 -"NorESM1-ME","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.136164 -"NorESM1-ME","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.135676 -"NorESM1-ME","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.135749 -"NorESM1-ME","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.135417 -"NorESM1-ME","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.134637 -"NorESM1-ME","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.134255 -"NorESM1-ME","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.133287 -"NorESM1-ME","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.132209 -"NorESM1-ME","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.13222 -"NorESM1-ME","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.131132 -"NorESM1-ME","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.130379 -"NorESM1-ME","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.130144 -"NorESM1-ME","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.129632 -"NorESM1-ME","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.128804 -"NorESM1-ME","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.127664 -"NorESM1-ME","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.126703 -"NorESM1-ME","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.125997 -"NorESM1-ME","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.125507 -"NorESM1-ME","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.124343 -"NorESM1-ME","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.122831 -"NorESM1-ME","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.121701 -"NorESM1-ME","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.120602 -"NorESM1-ME","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.119228 -"NorESM1-ME","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.118728 -"NorESM1-ME","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.117757 -"NorESM1-ME","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.116199 -"NorESM1-ME","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.115087 -"NorESM1-ME","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.114117 -"NorESM1-ME","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.112034 -"NorESM1-ME","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.110673 -"NorESM1-ME","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.109282 -"NorESM1-ME","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.107113 -"NorESM1-ME","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.1071 -"NorESM1-ME","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.104455 -"NorESM1-ME","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.103058 -"NorESM1-ME","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.102129 -"NorESM1-ME","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.10009 -"NorESM1-ME","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.09729 -"NorESM1-ME","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.096134 -"NorESM1-ME","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.094393 -"NorESM1-ME","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.094284 -"NorESM1-ME","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.094472 -"NorESM1-ME","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.092027 -"NorESM1-ME","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.090362 -"NorESM1-ME","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.088708 -"NorESM1-ME","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.087247 -"NorESM1-ME","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.085527 -"NorESM1-ME","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.083794 -"NorESM1-ME","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.081532 -"NorESM1-ME","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.080254 -"NorESM1-ME","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.078831 -"NorESM1-ME","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.076707 -"NorESM1-ME","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.074465 -"NorESM1-ME","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.071626 -"NorESM1-ME","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.069625 -"NorESM1-ME","ph","ocean","ph_HL","historical",1850,"Simulated",1,"HL",8.173288 -"NorESM1-ME","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.174505 -"NorESM1-ME","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.174053 -"NorESM1-ME","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.17436 -"NorESM1-ME","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.172091 -"NorESM1-ME","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.172714 -"NorESM1-ME","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.169541 -"NorESM1-ME","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.171175 -"NorESM1-ME","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.173397 -"NorESM1-ME","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.173628 -"NorESM1-ME","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.170955 -"NorESM1-ME","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.169792 -"NorESM1-ME","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.17373 -"NorESM1-ME","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.170205 -"NorESM1-ME","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.171276 -"NorESM1-ME","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.168323 -"NorESM1-ME","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.17156 -"NorESM1-ME","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.170317 -"NorESM1-ME","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.170914 -"NorESM1-ME","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.170589 -"NorESM1-ME","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.169722 -"NorESM1-ME","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.169752 -"NorESM1-ME","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.169901 -"NorESM1-ME","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.168947 -"NorESM1-ME","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.170385 -"NorESM1-ME","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.171128 -"NorESM1-ME","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.167396 -"NorESM1-ME","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.166999 -"NorESM1-ME","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.168053 -"NorESM1-ME","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.166382 -"NorESM1-ME","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.165733 -"NorESM1-ME","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.164378 -"NorESM1-ME","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.16555 -"NorESM1-ME","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.164213 -"NorESM1-ME","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.164553 -"NorESM1-ME","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.166223 -"NorESM1-ME","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.163682 -"NorESM1-ME","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.163977 -"NorESM1-ME","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.161651 -"NorESM1-ME","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.162608 -"NorESM1-ME","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.161668 -"NorESM1-ME","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.164055 -"NorESM1-ME","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.163211 -"NorESM1-ME","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.160874 -"NorESM1-ME","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.161106 -"NorESM1-ME","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.1611 -"NorESM1-ME","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.165419 -"NorESM1-ME","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.160994 -"NorESM1-ME","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.159405 -"NorESM1-ME","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.159809 -"NorESM1-ME","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.162724 -"NorESM1-ME","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.162618 -"NorESM1-ME","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.159722 -"NorESM1-ME","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.161975 -"NorESM1-ME","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.16193 -"NorESM1-ME","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.159192 -"NorESM1-ME","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.159235 -"NorESM1-ME","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.15823 -"NorESM1-ME","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.158944 -"NorESM1-ME","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.156964 -"NorESM1-ME","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.156673 -"NorESM1-ME","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.155898 -"NorESM1-ME","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.157446 -"NorESM1-ME","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.156302 -"NorESM1-ME","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.15658 -"NorESM1-ME","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.158361 -"NorESM1-ME","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.15548 -"NorESM1-ME","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.152885 -"NorESM1-ME","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.152256 -"NorESM1-ME","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.152502 -"NorESM1-ME","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.151422 -"NorESM1-ME","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.152751 -"NorESM1-ME","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.153322 -"NorESM1-ME","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.149392 -"NorESM1-ME","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.150057 -"NorESM1-ME","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.150538 -"NorESM1-ME","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.148648 -"NorESM1-ME","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.148553 -"NorESM1-ME","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.149364 -"NorESM1-ME","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.148851 -"NorESM1-ME","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.147757 -"NorESM1-ME","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.147749 -"NorESM1-ME","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.147514 -"NorESM1-ME","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.144336 -"NorESM1-ME","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.14436 -"NorESM1-ME","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.144561 -"NorESM1-ME","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.144696 -"NorESM1-ME","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.14393 -"NorESM1-ME","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.144227 -"NorESM1-ME","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.143024 -"NorESM1-ME","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.142182 -"NorESM1-ME","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.143288 -"NorESM1-ME","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.145769 -"NorESM1-ME","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.143315 -"NorESM1-ME","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.14363 -"NorESM1-ME","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.143678 -"NorESM1-ME","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.143996 -"NorESM1-ME","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.143069 -"NorESM1-ME","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.140485 -"NorESM1-ME","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.143174 -"NorESM1-ME","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.142609 -"NorESM1-ME","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.142039 -"NorESM1-ME","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.139976 -"NorESM1-ME","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.14123 -"NorESM1-ME","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.141275 -"NorESM1-ME","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.141599 -"NorESM1-ME","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.139699 -"NorESM1-ME","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.138599 -"NorESM1-ME","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.138137 -"NorESM1-ME","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.138857 -"NorESM1-ME","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.137402 -"NorESM1-ME","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.134997 -"NorESM1-ME","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.134357 -"NorESM1-ME","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.13241 -"NorESM1-ME","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.131363 -"NorESM1-ME","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.132095 -"NorESM1-ME","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.129538 -"NorESM1-ME","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.129378 -"NorESM1-ME","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.130057 -"NorESM1-ME","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.127553 -"NorESM1-ME","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.127823 -"NorESM1-ME","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.128996 -"NorESM1-ME","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.12799 -"NorESM1-ME","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.124864 -"NorESM1-ME","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.124252 -"NorESM1-ME","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.121413 -"NorESM1-ME","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.119528 -"NorESM1-ME","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.119546 -"NorESM1-ME","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.121646 -"NorESM1-ME","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.118181 -"NorESM1-ME","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.117499 -"NorESM1-ME","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.11642 -"NorESM1-ME","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.111583 -"NorESM1-ME","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.110901 -"NorESM1-ME","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.106968 -"NorESM1-ME","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.106789 -"NorESM1-ME","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.106027 -"NorESM1-ME","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.106964 -"NorESM1-ME","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.101933 -"NorESM1-ME","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.100563 -"NorESM1-ME","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.097286 -"NorESM1-ME","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.098348 -"NorESM1-ME","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.09632 -"NorESM1-ME","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.094326 -"NorESM1-ME","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.094102 -"NorESM1-ME","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.092659 -"NorESM1-ME","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.091891 -"NorESM1-ME","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.08793 -"NorESM1-ME","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.086908 -"NorESM1-ME","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.085335 -"NorESM1-ME","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.084056 -"NorESM1-ME","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.081909 -"NorESM1-ME","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.079632 -"NorESM1-ME","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.078328 -"NorESM1-ME","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.073769 -"NorESM1-ME","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.071985 -"NorESM1-ME","ph","ocean","ph_LL","historical",1850,"Simulated",1,"LL",8.164298 -"NorESM1-ME","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.164037 -"NorESM1-ME","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.164643 -"NorESM1-ME","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.164552 -"NorESM1-ME","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.163634 -"NorESM1-ME","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.163339 -"NorESM1-ME","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.16429 -"NorESM1-ME","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.163842 -"NorESM1-ME","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.163266 -"NorESM1-ME","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.162723 -"NorESM1-ME","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.162994 -"NorESM1-ME","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.163443 -"NorESM1-ME","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.163126 -"NorESM1-ME","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.162732 -"NorESM1-ME","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.162422 -"NorESM1-ME","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.162912 -"NorESM1-ME","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.162754 -"NorESM1-ME","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.161898 -"NorESM1-ME","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.162011 -"NorESM1-ME","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.161816 -"NorESM1-ME","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.161547 -"NorESM1-ME","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.161516 -"NorESM1-ME","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.161812 -"NorESM1-ME","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.162046 -"NorESM1-ME","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.161025 -"NorESM1-ME","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.160506 -"NorESM1-ME","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.160252 -"NorESM1-ME","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.15968 -"NorESM1-ME","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.159332 -"NorESM1-ME","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.159227 -"NorESM1-ME","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.158629 -"NorESM1-ME","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.158085 -"NorESM1-ME","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.157259 -"NorESM1-ME","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.157496 -"NorESM1-ME","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.159189 -"NorESM1-ME","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.15798 -"NorESM1-ME","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.156378 -"NorESM1-ME","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.155826 -"NorESM1-ME","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.155629 -"NorESM1-ME","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.154466 -"NorESM1-ME","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.154739 -"NorESM1-ME","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.154525 -"NorESM1-ME","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.153923 -"NorESM1-ME","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.154022 -"NorESM1-ME","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.153905 -"NorESM1-ME","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.153535 -"NorESM1-ME","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.153303 -"NorESM1-ME","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.153101 -"NorESM1-ME","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.153117 -"NorESM1-ME","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.152773 -"NorESM1-ME","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.15257 -"NorESM1-ME","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.152151 -"NorESM1-ME","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.151598 -"NorESM1-ME","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.152415 -"NorESM1-ME","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.152368 -"NorESM1-ME","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.151335 -"NorESM1-ME","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.150097 -"NorESM1-ME","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.149223 -"NorESM1-ME","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.14904 -"NorESM1-ME","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.149444 -"NorESM1-ME","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.148118 -"NorESM1-ME","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.148135 -"NorESM1-ME","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.147428 -"NorESM1-ME","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.14714 -"NorESM1-ME","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.14656 -"NorESM1-ME","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.146155 -"NorESM1-ME","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.146212 -"NorESM1-ME","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.145538 -"NorESM1-ME","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.144384 -"NorESM1-ME","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.144743 -"NorESM1-ME","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.144698 -"NorESM1-ME","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.144439 -"NorESM1-ME","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.144282 -"NorESM1-ME","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.143269 -"NorESM1-ME","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.142482 -"NorESM1-ME","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.141662 -"NorESM1-ME","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.14189 -"NorESM1-ME","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.141604 -"NorESM1-ME","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.141627 -"NorESM1-ME","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.141306 -"NorESM1-ME","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.140127 -"NorESM1-ME","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.139371 -"NorESM1-ME","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.138712 -"NorESM1-ME","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.139249 -"NorESM1-ME","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.138676 -"NorESM1-ME","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.137603 -"NorESM1-ME","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.137717 -"NorESM1-ME","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.136745 -"NorESM1-ME","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.136351 -"NorESM1-ME","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.136394 -"NorESM1-ME","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.136852 -"NorESM1-ME","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.137322 -"NorESM1-ME","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.136426 -"NorESM1-ME","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.135923 -"NorESM1-ME","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.135693 -"NorESM1-ME","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.135512 -"NorESM1-ME","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.135391 -"NorESM1-ME","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.136249 -"NorESM1-ME","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.136221 -"NorESM1-ME","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.135811 -"NorESM1-ME","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.135256 -"NorESM1-ME","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.135132 -"NorESM1-ME","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.13492 -"NorESM1-ME","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.134787 -"NorESM1-ME","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.134387 -"NorESM1-ME","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.133414 -"NorESM1-ME","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.133299 -"NorESM1-ME","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.132354 -"NorESM1-ME","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.131168 -"NorESM1-ME","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.131054 -"NorESM1-ME","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.13003 -"NorESM1-ME","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.129568 -"NorESM1-ME","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.129404 -"NorESM1-ME","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.129144 -"NorESM1-ME","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.128355 -"NorESM1-ME","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.126885 -"NorESM1-ME","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.126205 -"NorESM1-ME","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.125403 -"NorESM1-ME","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.124708 -"NorESM1-ME","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.123779 -"NorESM1-ME","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.121954 -"NorESM1-ME","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.12042 -"NorESM1-ME","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.119305 -"NorESM1-ME","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.118238 -"NorESM1-ME","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.117757 -"NorESM1-ME","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.117115 -"NorESM1-ME","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.115615 -"NorESM1-ME","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.114304 -"NorESM1-ME","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.112794 -"NorESM1-ME","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.110954 -"NorESM1-ME","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.109474 -"NorESM1-ME","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.108028 -"NorESM1-ME","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.106328 -"NorESM1-ME","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.106432 -"NorESM1-ME","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.104013 -"NorESM1-ME","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.102403 -"NorESM1-ME","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.101444 -"NorESM1-ME","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.098883 -"NorESM1-ME","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.096474 -"NorESM1-ME","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.095356 -"NorESM1-ME","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.093885 -"NorESM1-ME","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.09357 -"NorESM1-ME","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.094148 -"NorESM1-ME","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.091624 -"NorESM1-ME","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.089705 -"NorESM1-ME","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.088014 -"NorESM1-ME","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.086432 -"NorESM1-ME","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.085105 -"NorESM1-ME","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.083247 -"NorESM1-ME","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.080864 -"NorESM1-ME","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.079586 -"NorESM1-ME","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.07829 -"NorESM1-ME","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.076193 -"NorESM1-ME","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.073786 -"NorESM1-ME","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.07125 -"NorESM1-ME","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.06921 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/hist/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/hist/summary.csv deleted file mode 100644 index 327f17e27..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/hist/summary.csv +++ /dev/null @@ -1,469 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -1850,ph,ocean,ph,historical,1,Simulated,global,0.002267023,8.159899333,8.165641,8.162931533,8.163699,1,CMIP5 -1850,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012605224,8.1488614,8.179115,8.16721088,8.173288,1,CMIP5 -1850,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003082514,8.159007,8.1662944,8.162092947,8.160910667,1,CMIP5 -1851,ph,ocean,ph,historical,1,Simulated,global,0.003636639,8.155558,8.165601,8.161478467,8.1620924,1,CMIP5 -1851,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011854162,8.148441,8.178606333,8.165840111,8.167506167,1,CMIP5 -1851,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004047487,8.155052,8.1662504,8.160631456,8.160165167,1,CMIP5 -1852,ph,ocean,ph,historical,1,Simulated,global,0.003265812,8.15699,8.166049,8.161737033,8.161785933,1,CMIP5 -1852,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011070485,8.1489504,8.177892,8.165503456,8.166861167,1,CMIP5 -1852,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003664945,8.156734,8.1660052,8.160994811,8.160308333,1,CMIP5 -1853,ph,ocean,ph,historical,1,Simulated,global,0.003597851,8.155893,8.166017,8.161542656,8.161823667,1,CMIP5 -1853,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011777871,8.1481334,8.177096333,8.165285011,8.166712667,1,CMIP5 -1853,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004113514,8.155458,8.1663646,8.160823156,8.160520667,1,CMIP5 -1854,ph,ocean,ph,historical,1,Simulated,global,0.003367643,8.156003,8.164898,8.161355567,8.162119167,1,CMIP5 -1854,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012215059,8.149447,8.179097667,8.165275111,8.164923,1,CMIP5 -1854,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003823139,8.155685,8.1661984,8.160607622,8.160161167,1,CMIP5 -1855,ph,ocean,ph,historical,1,Simulated,global,0.002837269,8.157122,8.16474,8.161320711,8.1616348,1,CMIP5 -1855,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011845302,8.1492296,8.178426,8.165571767,8.166034,1,CMIP5 -1855,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003220758,8.156717,8.1649594,8.160521844,8.160292833,1,CMIP5 -1856,ph,ocean,ph,historical,1,Simulated,global,0.003367979,8.156564,8.165075,8.161186689,8.1613824,1,CMIP5 -1856,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011613704,8.1486916,8.177419667,8.163802044,8.163473,1,CMIP5 -1856,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00396328,8.156411,8.1661184,8.160684733,8.160363,1,CMIP5 -1857,ph,ocean,ph,historical,1,Simulated,global,0.003699934,8.155773,8.164938,8.161100022,8.161535733,1,CMIP5 -1857,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011519795,8.1493272,8.178669,8.164474644,8.165385,1,CMIP5 -1857,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004334095,8.15508,8.1664136,8.160461156,8.160584667,1,CMIP5 -1858,ph,ocean,ph,historical,1,Simulated,global,0.003073387,8.156736,8.164779,8.161139111,8.1611255,1,CMIP5 -1858,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01277744,8.1478422,8.178286,8.165387589,8.1668855,1,CMIP5 -1858,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003568461,8.156075,8.1651042,8.160347978,8.160518333,1,CMIP5 -1859,ph,ocean,ph,historical,1,Simulated,global,0.003369075,8.156114,8.1651626,8.1612874,8.1624882,1,CMIP5 -1859,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01455011,8.1482802,8.1894358,8.168690048,8.173628,1,CMIP5 -1859,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003353498,8.155352,8.1649734,8.159900905,8.160021,1,CMIP5 -1860,ph,ocean,ph,historical,1,Simulated,global,0.003139347,8.156223,8.164183,8.159897105,8.158984,1,CMIP5 -1860,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011468617,8.1480954,8.178069,8.165237486,8.169613,1,CMIP5 -1860,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003839217,8.1546384,8.1646788,8.158894505,8.158675,1,CMIP5 -1861,ph,ocean,ph,historical,1,Simulated,global,0.003213392,8.155765,8.164391,8.159882981,8.159939,1,CMIP5 -1861,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011466035,8.1481292,8.177327,8.164738314,8.169792,1,CMIP5 -1861,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003910481,8.1543804,8.1646522,8.158975943,8.158805,1,CMIP5 -1862,ph,ocean,ph,historical,1,Simulated,global,0.0035809,8.155262,8.16471,8.159891343,8.160067,1,CMIP5 -1862,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012511161,8.1481968,8.178897333,8.165253914,8.1691606,1,CMIP5 -1862,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003920339,8.1542298,8.1646832,8.158887381,8.158319667,1,CMIP5 -1863,ph,ocean,ph,historical,1,Simulated,global,0.003304203,8.154973,8.163849,8.159493714,8.15945,1,CMIP5 -1863,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012414379,8.146124,8.177728333,8.164275676,8.1692334,1,CMIP5 -1863,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003865319,8.1543896,8.1643892,8.158595257,8.158292333,1,CMIP5 -1864,ph,ocean,ph,historical,1,Simulated,global,0.00334306,8.154515,8.163745,8.159166514,8.158789,1,CMIP5 -1864,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012025135,8.1461816,8.177221333,8.164250067,8.1695022,1,CMIP5 -1864,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003850738,8.1539656,8.1638154,8.158206,8.15796,1,CMIP5 -1865,ph,ocean,ph,historical,1,Simulated,global,0.003110807,8.155091,8.16372,8.159215171,8.158467,1,CMIP5 -1865,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011609425,8.1461074,8.175685,8.1634486,8.168323,1,CMIP5 -1865,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003740196,8.1546148,8.1636978,8.158415943,8.158083333,1,CMIP5 -1866,ph,ocean,ph,historical,1,Simulated,global,0.003354808,8.154159,8.16407,8.159005667,8.158666,1,CMIP5 -1866,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011281326,8.146489,8.175867,8.163841829,8.1679018,1,CMIP5 -1866,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003771094,8.153774,8.1632666,8.158090943,8.157859,1,CMIP5 -1867,ph,ocean,ph,historical,1,Simulated,global,0.003119404,8.154128,8.163156,8.15869079,8.15894,1,CMIP5 -1867,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011802126,8.1452486,8.175645,8.163540362,8.1682706,1,CMIP5 -1867,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003647759,8.153789,8.1631896,8.157775038,8.157562,1,CMIP5 -1868,ph,ocean,ph,historical,1,Simulated,global,0.003154769,8.154558,8.163342,8.1587148,8.158214,1,CMIP5 -1868,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011677162,8.1457036,8.175689667,8.163196514,8.167666,1,CMIP5 -1868,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003630733,8.1539962,8.1633116,8.157865971,8.157424,1,CMIP5 -1869,ph,ocean,ph,historical,1,Simulated,global,0.003056173,8.155286,8.163127,8.158671086,8.157953,1,CMIP5 -1869,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011675186,8.1452842,8.17548,8.163334933,8.167314,1,CMIP5 -1869,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003746245,8.1535382,8.1636644,8.157785705,8.156961333,1,CMIP5 -1870,ph,ocean,ph,historical,1,Simulated,global,0.003216114,8.1541,8.162769,8.158483895,8.157937,1,CMIP5 -1870,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010646806,8.1461598,8.175434333,8.163120629,8.1668506,1,CMIP5 -1870,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003759746,8.1534214,8.1633272,8.157592467,8.157025667,1,CMIP5 -1871,ph,ocean,ph,historical,1,Simulated,global,0.003266581,8.154177,8.162747,8.158443714,8.158525,1,CMIP5 -1871,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011335381,8.145689,8.177294667,8.163744724,8.1667864,1,CMIP5 -1871,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003698626,8.1527868,8.1626288,8.157428229,8.156978667,1,CMIP5 -1872,ph,ocean,ph,historical,1,Simulated,global,0.003454189,8.153954,8.163021,8.158262667,8.157506,1,CMIP5 -1872,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011186477,8.1454652,8.175885333,8.163457105,8.1664832,1,CMIP5 -1872,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004076452,8.152529,8.163189,8.15726719,8.156643667,1,CMIP5 -1873,ph,ocean,ph,historical,1,Simulated,global,0.003419608,8.153581,8.163077,8.157850143,8.156952,1,CMIP5 -1873,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011196991,8.1447636,8.174193,8.162651648,8.1677716,1,CMIP5 -1873,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004048348,8.1521882,8.1622562,8.156934438,8.156585,1,CMIP5 -1874,ph,ocean,ph,historical,1,Simulated,global,0.003213306,8.153552,8.162424,8.157572771,8.157584,1,CMIP5 -1874,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011456024,8.1443048,8.173428,8.162383581,8.1674286,1,CMIP5 -1874,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003758286,8.1520962,8.16213,8.156662648,8.156001,1,CMIP5 -1875,ph,ocean,ph,historical,1,Simulated,global,0.003410919,8.15242,8.162093,8.15721819,8.156924,1,CMIP5 -1875,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012316094,8.1443184,8.177822,8.16306521,8.1664204,1,CMIP5 -1875,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003717927,8.1519962,8.161258,8.156104314,8.155986667,1,CMIP5 -1876,ph,ocean,ph,historical,1,Simulated,global,0.003086815,8.153286,8.161319,8.157137981,8.156252,1,CMIP5 -1876,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010909368,8.144597,8.175080333,8.161777181,8.1657756,1,CMIP5 -1876,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003727601,8.1519802,8.1619962,8.156242343,8.155695,1,CMIP5 -1877,ph,ocean,ph,historical,1,Simulated,global,0.003159633,8.152286,8.160774,8.1568688,8.156834,1,CMIP5 -1877,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011275798,8.1447376,8.175096,8.1617902,8.1664578,1,CMIP5 -1877,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003716968,8.1517758,8.1615908,8.155932562,8.155757,1,CMIP5 -1878,ph,ocean,ph,historical,1,Simulated,global,0.003101624,8.152363,8.160635,8.156576552,8.156306,1,CMIP5 -1878,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011571532,8.1439272,8.175522,8.161732381,8.1663358,1,CMIP5 -1878,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003621583,8.1510068,8.1608748,8.155593657,8.155791667,1,CMIP5 -1879,ph,ocean,ph,historical,1,Simulated,global,0.003137999,8.152082,8.160296,8.156118876,8.155374,1,CMIP5 -1879,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010331723,8.1440946,8.172726333,8.160494943,8.165123,1,CMIP5 -1879,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003676617,8.1510162,8.1606658,8.155280381,8.154729,1,CMIP5 -1880,ph,ocean,ph,historical,1,Simulated,global,0.003069702,8.151478,8.159691,8.155700876,8.154591,1,CMIP5 -1880,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010413181,8.1433812,8.172963,8.160136229,8.1636184,1,CMIP5 -1880,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003743626,8.1511486,8.1607532,8.154847733,8.154678667,1,CMIP5 -1881,ph,ocean,ph,historical,1,Simulated,global,0.00304502,8.150932,8.159025,8.155141162,8.154801,1,CMIP5 -1881,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01043053,8.1435572,8.172914667,8.159923486,8.1635292,1,CMIP5 -1881,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003633942,8.1500772,8.159678,8.154222838,8.153981667,1,CMIP5 -1882,ph,ocean,ph,historical,1,Simulated,global,0.003057257,8.150217,8.158497,8.154413905,8.153786,1,CMIP5 -1882,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009929605,8.1431544,8.170398,8.159677305,8.1633454,1,CMIP5 -1882,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003662606,8.1493844,8.1588446,8.153409667,8.153061667,1,CMIP5 -1883,ph,ocean,ph,historical,1,Simulated,global,0.003031371,8.150489,8.1585,8.154579581,8.153918,1,CMIP5 -1883,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010217182,8.1415674,8.170409667,8.158538886,8.1618818,1,CMIP5 -1883,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003583178,8.149677,8.158984,8.153819762,8.153795333,1,CMIP5 -1884,ph,ocean,ph,historical,1,Simulated,global,0.002955699,8.151516,8.159991,8.155615962,8.155888,1,CMIP5 -1884,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010472397,8.1405766,8.168885667,8.158052495,8.1619162,1,CMIP5 -1884,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003214384,8.151339,8.159189,8.155151133,8.155121667,1,CMIP5 -1885,ph,ocean,ph,historical,1,Simulated,global,0.003389056,8.149537,8.159212,8.154260905,8.153112333,1,CMIP5 -1885,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010573138,8.1405384,8.168354,8.157821667,8.1618636,1,CMIP5 -1885,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004001257,8.149156,8.1592464,8.153588505,8.153827333,1,CMIP5 -1886,ph,ocean,ph,historical,1,Simulated,global,0.003069011,8.148866,8.157469,8.153268733,8.152369333,1,CMIP5 -1886,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01045138,8.1400336,8.169209,8.157331971,8.1612402,1,CMIP5 -1886,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003676142,8.148534,8.1578678,8.152490848,8.152736333,1,CMIP5 -1887,ph,ocean,ph,historical,1,Simulated,global,0.002945786,8.14879,8.157044,8.15292859,8.152267667,1,CMIP5 -1887,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010556534,8.1392498,8.168661333,8.157600971,8.160919,1,CMIP5 -1887,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003618565,8.1484,8.1574548,8.152030162,8.152133333,1,CMIP5 -1888,ph,ocean,ph,historical,1,Simulated,global,0.002893239,8.148254,8.156528,8.152362438,8.151776,1,CMIP5 -1888,ph,ocean,ph_HL,historical,1,Simulated,HL,0.0103825,8.1389752,8.167916333,8.156988286,8.1614288,1,CMIP5 -1888,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00368361,8.1478156,8.1568912,8.151469686,8.151613,1,CMIP5 -1889,ph,ocean,ph,historical,1,Simulated,global,0.003014833,8.147457,8.155683,8.152034324,8.151393667,1,CMIP5 -1889,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010368584,8.139491,8.168886333,8.157360448,8.1609448,1,CMIP5 -1889,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003668919,8.146944,8.1565836,8.15101179,8.151071667,1,CMIP5 -1890,ph,ocean,ph,historical,1,Simulated,global,0.002758618,8.148014,8.155774,8.152140019,8.151871,1,CMIP5 -1890,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009819443,8.139116,8.167117667,8.156317114,8.1601768,1,CMIP5 -1890,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003362191,8.1476294,8.1564348,8.151331124,8.151276,1,CMIP5 -1891,ph,ocean,ph,historical,1,Simulated,global,0.002872966,8.147485,8.155949,8.1518414,8.151718,1,CMIP5 -1891,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010539103,8.1387304,8.16656,8.156705638,8.1608054,1,CMIP5 -1891,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003392393,8.147247,8.1560486,8.150910181,8.150618333,1,CMIP5 -1892,ph,ocean,ph,historical,1,Simulated,global,0.003266573,8.146142,8.155311,8.151205114,8.150884,1,CMIP5 -1892,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010370477,8.1388456,8.166559,8.156812505,8.1608216,1,CMIP5 -1892,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00381526,8.145629,8.1556742,8.150130505,8.149507667,1,CMIP5 -1893,ph,ocean,ph,historical,1,Simulated,global,0.002940137,8.147059,8.155046,8.151008038,8.150156,1,CMIP5 -1893,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010695346,8.1389154,8.169219667,8.155723743,8.1593348,1,CMIP5 -1893,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00336426,8.1464468,8.1546358,8.1501078,8.150249333,1,CMIP5 -1894,ph,ocean,ph,historical,1,Simulated,global,0.002800989,8.147568,8.154981,8.150784543,8.149973,1,CMIP5 -1894,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010836725,8.1382446,8.167295333,8.155689981,8.1592426,1,CMIP5 -1894,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003464453,8.1460476,8.1549804,8.149849762,8.149338333,1,CMIP5 -1895,ph,ocean,ph,historical,1,Simulated,global,0.002982792,8.146783,8.154665,8.150314714,8.149377667,1,CMIP5 -1895,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010173448,8.1384746,8.166315333,8.155630448,8.1592182,1,CMIP5 -1895,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003801327,8.1451984,8.1548518,8.1493026,8.149365333,1,CMIP5 -1896,ph,ocean,ph,historical,1,Simulated,global,0.00354114,8.145333,8.155114,8.150228429,8.149318,1,CMIP5 -1896,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01081534,8.1388682,8.166873667,8.15619281,8.1590038,1,CMIP5 -1896,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004164582,8.144774,8.1552684,8.149101838,8.149326667,1,CMIP5 -1897,ph,ocean,ph,historical,1,Simulated,global,0.003155495,8.145767,8.15428,8.150155371,8.148816333,1,CMIP5 -1897,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010680605,8.1380202,8.166934,8.154687914,8.1591932,1,CMIP5 -1897,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003799683,8.145614,8.1552092,8.149289752,8.149108333,1,CMIP5 -1898,ph,ocean,ph,historical,1,Simulated,global,0.002907355,8.146332,8.154056,8.150021524,8.148831,1,CMIP5 -1898,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010405854,8.1376332,8.166256333,8.154576276,8.1592484,1,CMIP5 -1898,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003646254,8.1452566,8.15464,8.14914661,8.148891333,1,CMIP5 -1899,ph,ocean,ph,historical,1,Simulated,global,0.003129249,8.145146,8.153824,8.149610886,8.149070667,1,CMIP5 -1899,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010652788,8.1365988,8.166844,8.154405552,8.1591104,1,CMIP5 -1899,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00378591,8.1445324,8.1541356,8.148685143,8.148981667,1,CMIP5 -1900,ph,ocean,ph,historical,1,Simulated,global,0.00308604,8.145813,8.154087,8.149686533,8.148844333,1,CMIP5 -1900,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011231377,8.136046,8.165490667,8.154516286,8.159343,1,CMIP5 -1900,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003700024,8.1441894,8.1541262,8.148763895,8.148859333,1,CMIP5 -1901,ph,ocean,ph,historical,1,Simulated,global,0.003182634,8.144835,8.153715,8.149312371,8.148622,1,CMIP5 -1901,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011093899,8.1367706,8.166389667,8.15449639,8.1591868,1,CMIP5 -1901,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003591427,8.1439926,8.1533282,8.148322733,8.148463667,1,CMIP5 -1902,ph,ocean,ph,historical,1,Simulated,global,0.00289098,8.144619,8.152812,8.148950571,8.148642,1,CMIP5 -1902,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010779138,8.136156,8.164780333,8.153626286,8.158565,1,CMIP5 -1902,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003486349,8.1439698,8.1532776,8.148054724,8.148350333,1,CMIP5 -1903,ph,ocean,ph,historical,1,Simulated,global,0.002805077,8.145952,8.153843,8.14981099,8.150063,1,CMIP5 -1903,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011415537,8.1353492,8.166056667,8.154286276,8.1577354,1,CMIP5 -1903,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003301508,8.1447686,8.1539704,8.148949667,8.148984333,1,CMIP5 -1904,ph,ocean,ph,historical,1,Simulated,global,0.002908532,8.145149,8.153796,8.1489478,8.148633,1,CMIP5 -1904,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011327122,8.1352694,8.164976333,8.153476076,8.1571418,1,CMIP5 -1904,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00322241,8.1443084,8.1523712,8.148077419,8.147931667,1,CMIP5 -1905,ph,ocean,ph,historical,1,Simulated,global,0.003056952,8.14402,8.152509,8.1480538,8.147529,1,CMIP5 -1905,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010984262,8.134576,8.164757333,8.152994676,8.1565924,1,CMIP5 -1905,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003583787,8.1429006,8.1520828,8.147103438,8.146817667,1,CMIP5 -1906,ph,ocean,ph,historical,1,Simulated,global,0.003047928,8.143391,8.151462,8.14727659,8.146093667,1,CMIP5 -1906,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011137179,8.133881,8.164419,8.152689,8.155622,1,CMIP5 -1906,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003806588,8.1424952,8.1521252,8.146244629,8.146051333,1,CMIP5 -1907,ph,ocean,ph,historical,1,Simulated,global,0.002888137,8.142674,8.150569,8.146950771,8.146389,1,CMIP5 -1907,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011104974,8.133862,8.163782,8.152145752,8.1565086,1,CMIP5 -1907,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003670367,8.1419512,8.1516578,8.145968714,8.146587667,1,CMIP5 -1908,ph,ocean,ph,historical,1,Simulated,global,0.002703849,8.143174,8.150519,8.146630219,8.145684,1,CMIP5 -1908,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011409559,8.1338194,8.163601,8.152127733,8.1564454,1,CMIP5 -1908,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003293798,8.141844,8.1503892,8.145587838,8.145761,1,CMIP5 -1909,ph,ocean,ph,historical,1,Simulated,global,0.002973571,8.141504,8.150567,8.145979057,8.145524,1,CMIP5 -1909,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011012962,8.1323776,8.162245333,8.151119343,8.1552138,1,CMIP5 -1909,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00355868,8.141244,8.1500702,8.144988848,8.144716,1,CMIP5 -1910,ph,ocean,ph,historical,1,Simulated,global,0.002911557,8.141027,8.149397,8.145500676,8.14508,1,CMIP5 -1910,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011446961,8.132267,8.163200667,8.150875714,8.155426,1,CMIP5 -1910,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003427146,8.1408398,8.1495478,8.144469324,8.144581,1,CMIP5 -1911,ph,ocean,ph,historical,1,Simulated,global,0.003145278,8.140107,8.149295,8.1450716,8.14474,1,CMIP5 -1911,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011594314,8.1313434,8.162945,8.150128371,8.1544112,1,CMIP5 -1911,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003659291,8.139982,8.1491918,8.144107495,8.144216667,1,CMIP5 -1912,ph,ocean,ph,historical,1,Simulated,global,0.002895792,8.140417,8.148925,8.144957286,8.144788,1,CMIP5 -1912,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011109136,8.1324146,8.162042,8.149865429,8.1536284,1,CMIP5 -1912,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003487928,8.1403664,8.1495334,8.144025067,8.144204333,1,CMIP5 -1913,ph,ocean,ph,historical,1,Simulated,global,0.002957643,8.14034,8.148509,8.1445818,8.143948667,1,CMIP5 -1913,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010815533,8.1327414,8.160139,8.149362486,8.153072,1,CMIP5 -1913,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003388641,8.13981,8.148442,8.143672333,8.143972667,1,CMIP5 -1914,ph,ocean,ph,historical,1,Simulated,global,0.003007242,8.139599,8.148057,8.143954657,8.143049667,1,CMIP5 -1914,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011710124,8.1318046,8.161917,8.149162352,8.1537582,1,CMIP5 -1914,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003626812,8.1391774,8.148489,8.142971581,8.143267,1,CMIP5 -1915,ph,ocean,ph,historical,1,Simulated,global,0.003400571,8.137957,8.147979,8.143282886,8.142669,1,CMIP5 -1915,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011801189,8.1316364,8.16034,8.1483436,8.1524598,1,CMIP5 -1915,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003825709,8.13811,8.147995,8.142336286,8.142903,1,CMIP5 -1916,ph,ocean,ph,historical,1,Simulated,global,0.003128128,8.138672,8.147597,8.142983676,8.142446,1,CMIP5 -1916,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011356752,8.1312316,8.158214333,8.14733001,8.1528868,1,CMIP5 -1916,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003646987,8.1379246,8.147444,8.142170276,8.142486667,1,CMIP5 -1917,ph,ocean,ph,historical,1,Simulated,global,0.002855218,8.139319,8.146636,8.142804829,8.142441,1,CMIP5 -1917,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010850776,8.1314346,8.158012,8.147007571,8.1528684,1,CMIP5 -1917,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003455213,8.1373182,8.1470126,8.142013829,8.142013,1,CMIP5 -1918,ph,ocean,ph,historical,1,Simulated,global,0.002999749,8.137128,8.14556,8.142194571,8.141926,1,CMIP5 -1918,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010758533,8.1300536,8.157737,8.14685159,8.1522472,1,CMIP5 -1918,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003595716,8.137026,8.1467834,8.141309143,8.142026667,1,CMIP5 -1919,ph,ocean,ph,historical,1,Simulated,global,0.003225284,8.136645,8.145903,8.1419548,8.141587,1,CMIP5 -1919,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011106336,8.1312016,8.159658333,8.147277314,8.152502,1,CMIP5 -1919,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003779917,8.136531,8.1466558,8.140942838,8.141275,1,CMIP5 -1920,ph,ocean,ph,historical,1,Simulated,global,0.002942686,8.137461,8.145702,8.141628676,8.140711,1,CMIP5 -1920,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010890231,8.1309012,8.157427667,8.146320867,8.151422,1,CMIP5 -1920,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00357268,8.136902,8.1458298,8.14074821,8.141104,1,CMIP5 -1921,ph,ocean,ph,historical,1,Simulated,global,0.00319236,8.136904,8.145681,8.14120619,8.140165667,1,CMIP5 -1921,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010135068,8.1307518,8.155839,8.146075067,8.151273,1,CMIP5 -1921,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00382352,8.1365296,8.1455628,8.140290962,8.140481,1,CMIP5 -1922,ph,ocean,ph,historical,1,Simulated,global,0.003326672,8.136275,8.145633,8.140956276,8.139972667,1,CMIP5 -1922,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010201692,8.130169,8.156065,8.145771762,8.151223,1,CMIP5 -1922,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003846665,8.1359566,8.1453714,8.14004319,8.140172,1,CMIP5 -1923,ph,ocean,ph,historical,1,Simulated,global,0.002973288,8.135914,8.144184,8.140524571,8.140223,1,CMIP5 -1923,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010099994,8.1300344,8.155473667,8.144930714,8.149392,1,CMIP5 -1923,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003480394,8.1355368,8.1445772,8.139684476,8.140031,1,CMIP5 -1924,ph,ocean,ph,historical,1,Simulated,global,0.002755513,8.136324,8.143614,8.140187562,8.140375,1,CMIP5 -1924,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010357344,8.129846,8.156529,8.144929343,8.1499934,1,CMIP5 -1924,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003293959,8.1346756,8.1439598,8.13929239,8.139715,1,CMIP5 -1925,ph,ocean,ph,historical,1,Simulated,global,0.003016407,8.135019,8.142988,8.139513924,8.139489,1,CMIP5 -1925,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010767243,8.1279856,8.155646333,8.144074467,8.14876,1,CMIP5 -1925,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003485697,8.1344362,8.1440196,8.138648781,8.138736667,1,CMIP5 -1926,ph,ocean,ph,historical,1,Simulated,global,0.003136209,8.133795,8.1429,8.139208133,8.139169,1,CMIP5 -1926,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010511019,8.1279886,8.15503,8.143843181,8.148648,1,CMIP5 -1926,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003621212,8.133821,8.1435336,8.138325581,8.138622333,1,CMIP5 -1927,ph,ocean,ph,historical,1,Simulated,global,0.002624469,8.135229,8.142643,8.1391148,8.13876,1,CMIP5 -1927,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010065637,8.1275354,8.152883,8.143420181,8.148553,1,CMIP5 -1927,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003244409,8.1346454,8.1429456,8.138291952,8.138758333,1,CMIP5 -1928,ph,ocean,ph,historical,1,Simulated,global,0.002807824,8.134466,8.142783,8.138649495,8.138137,1,CMIP5 -1928,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010538741,8.1272718,8.155229,8.143360867,8.1491456,1,CMIP5 -1928,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003439989,8.133841,8.1425574,8.137761629,8.138287,1,CMIP5 -1929,ph,ocean,ph,historical,1,Simulated,global,0.00316131,8.133126,8.142433,8.137972467,8.137395,1,CMIP5 -1929,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010089334,8.1268758,8.152277333,8.142767381,8.1486362,1,CMIP5 -1929,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003694922,8.1329764,8.1421004,8.137058257,8.137183667,1,CMIP5 -1930,ph,ocean,ph,historical,1,Simulated,global,0.002766925,8.133497,8.141267,8.137527657,8.137084,1,CMIP5 -1930,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010342641,8.1264684,8.152659,8.142312981,8.1477428,1,CMIP5 -1930,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00327214,8.1326296,8.1413536,8.136611505,8.13662,1,CMIP5 -1931,ph,ocean,ph,historical,1,Simulated,global,0.002791447,8.132634,8.140623,8.137026629,8.136399,1,CMIP5 -1931,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010523633,8.1261978,8.153038,8.142272667,8.1467282,1,CMIP5 -1931,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003300312,8.132719,8.1410894,8.136023581,8.136040333,1,CMIP5 -1932,ph,ocean,ph,historical,1,Simulated,global,0.002930743,8.131546,8.140027,8.1362942,8.135894333,1,CMIP5 -1932,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009753612,8.12565,8.150351,8.14133481,8.146642,1,CMIP5 -1932,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003444235,8.131524,8.1403732,8.135331705,8.135488,1,CMIP5 -1933,ph,ocean,ph,historical,1,Simulated,global,0.003166484,8.130579,8.140009,8.135898486,8.135564,1,CMIP5 -1933,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009229691,8.1259416,8.149240333,8.140291324,8.144336,1,CMIP5 -1933,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003664151,8.13066,8.1400514,8.135047286,8.135058667,1,CMIP5 -1934,ph,ocean,ph,historical,1,Simulated,global,0.002871539,8.131224,8.139525,8.135500448,8.134823667,1,CMIP5 -1934,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009469595,8.1251296,8.149495,8.13986081,8.14436,1,CMIP5 -1934,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003426779,8.1309458,8.1393762,8.134663381,8.134533333,1,CMIP5 -1935,ph,ocean,ph,historical,1,Simulated,global,0.00285811,8.130271,8.138643,8.134931962,8.134738,1,CMIP5 -1935,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010172163,8.1235136,8.149217,8.139062933,8.1440866,1,CMIP5 -1935,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003354089,8.130463,8.1391608,8.134140895,8.134366667,1,CMIP5 -1936,ph,ocean,ph,historical,1,Simulated,global,0.003206235,8.129511,8.13876,8.134487829,8.133945,1,CMIP5 -1936,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010003885,8.1241288,8.149486667,8.138651057,8.1433456,1,CMIP5 -1936,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003520206,8.129735,8.138473,8.133689724,8.133503,1,CMIP5 -1937,ph,ocean,ph,historical,1,Simulated,global,0.003040489,8.12968,8.137819,8.134081629,8.133289,1,CMIP5 -1937,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010657418,8.122848,8.149126,8.138214314,8.1427862,1,CMIP5 -1937,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00355563,8.129313,8.1387064,8.13328901,8.133027667,1,CMIP5 -1938,ph,ocean,ph,historical,1,Simulated,global,0.002895227,8.129808,8.137528,8.133716448,8.133020667,1,CMIP5 -1938,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010467286,8.1228394,8.148628667,8.13807539,8.142929,1,CMIP5 -1938,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003480191,8.1288152,8.1380174,8.132885133,8.133109667,1,CMIP5 -1939,ph,ocean,ph,historical,1,Simulated,global,0.00306251,8.128905,8.137385,8.133564952,8.13312,1,CMIP5 -1939,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010225763,8.1230972,8.148873667,8.13793159,8.1421146,1,CMIP5 -1939,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003450169,8.1286102,8.1375424,8.132724181,8.132826,1,CMIP5 -1940,ph,ocean,ph,historical,1,Simulated,global,0.002926005,8.129264,8.137649,8.133572676,8.133229,1,CMIP5 -1940,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010199165,8.1220784,8.148124667,8.137246657,8.142182,1,CMIP5 -1940,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003429973,8.1288628,8.137731,8.132865448,8.132812,1,CMIP5 -1941,ph,ocean,ph,historical,1,Simulated,global,0.003085854,8.129348,8.138213,8.133346219,8.132944,1,CMIP5 -1941,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00986401,8.1227546,8.147384,8.13722461,8.142145,1,CMIP5 -1941,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003682819,8.1280024,8.1376402,8.132601752,8.132397333,1,CMIP5 -1942,ph,ocean,ph,historical,1,Simulated,global,0.00350242,8.127196,8.137822,8.132893886,8.132609,1,CMIP5 -1942,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009618253,8.1227054,8.145769,8.13676319,8.1425056,1,CMIP5 -1942,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003905378,8.127402,8.1373372,8.132163486,8.132688333,1,CMIP5 -1943,ph,ocean,ph,historical,1,Simulated,global,0.00296548,8.128586,8.137028,8.133303533,8.133135,1,CMIP5 -1943,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010124481,8.1223834,8.147294,8.137262533,8.142773,1,CMIP5 -1943,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003284863,8.12849,8.136925,8.132546476,8.132715,1,CMIP5 -1944,ph,ocean,ph,historical,1,Simulated,global,0.002908059,8.129018,8.136879,8.133199105,8.132735667,1,CMIP5 -1944,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01027224,8.1222938,8.147319,8.137429267,8.1428784,1,CMIP5 -1944,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003457477,8.1283572,8.1374462,8.132387676,8.132481,1,CMIP5 -1945,ph,ocean,ph,historical,1,Simulated,global,0.00293888,8.128379,8.136732,8.133169162,8.133285,1,CMIP5 -1945,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010191387,8.1220878,8.147495,8.137720295,8.1434366,1,CMIP5 -1945,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00336772,8.1282148,8.137169,8.132288352,8.132799333,1,CMIP5 -1946,ph,ocean,ph,historical,1,Simulated,global,0.002778777,8.128757,8.136677,8.133089629,8.133021,1,CMIP5 -1946,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010503293,8.121723,8.148714,8.137950686,8.1432258,1,CMIP5 -1946,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003238972,8.1282672,8.1370386,8.132156162,8.131919333,1,CMIP5 -1947,ph,ocean,ph,historical,1,Simulated,global,0.002782111,8.129326,8.137268,8.132964686,8.132252333,1,CMIP5 -1947,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009633899,8.123138,8.146395,8.137437848,8.143069,1,CMIP5 -1947,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003470973,8.1279062,8.1371904,8.132102371,8.131854,1,CMIP5 -1948,ph,ocean,ph,historical,1,Simulated,global,0.003085323,8.127797,8.136858,8.132726686,8.132309,1,CMIP5 -1948,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010024066,8.1223922,8.147304333,8.137120905,8.140485,1,CMIP5 -1948,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003603553,8.128063,8.1368426,8.131877562,8.131609333,1,CMIP5 -1949,ph,ocean,ph,historical,1,Simulated,global,0.003111626,8.1279,8.136911,8.132771971,8.132636,1,CMIP5 -1949,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010168448,8.1220826,8.146733333,8.137257648,8.143174,1,CMIP5 -1949,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003502491,8.1279078,8.1368984,8.13190679,8.131273667,1,CMIP5 -1950,ph,ocean,ph,historical,1,Simulated,global,0.003118021,8.127055,8.136354,8.1323872,8.13205,1,CMIP5 -1950,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010395221,8.1212642,8.147238667,8.13688916,8.142609,1,CMIP5 -1950,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00339782,8.127346,8.1361478,8.131519919,8.1314355,1,CMIP5 -1951,ph,ocean,ph,historical,1,Simulated,global,0.002972746,8.127526,8.136164,8.132463981,8.132307,1,CMIP5 -1951,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00996498,8.1222362,8.146472,8.136840076,8.142039,1,CMIP5 -1951,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003354969,8.1278236,8.1364,8.131622812,8.13163275,1,CMIP5 -1952,ph,ocean,ph,historical,1,Simulated,global,0.002721391,8.127727,8.135676,8.131895645,8.13125525,1,CMIP5 -1952,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010051713,8.1210846,8.146819333,8.135975833,8.139976,1,CMIP5 -1952,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003229849,8.1276934,8.1356732,8.131107705,8.131219,1,CMIP5 -1953,ph,ocean,ph,historical,1,Simulated,global,0.002743287,8.127767,8.135749,8.131808771,8.131175,1,CMIP5 -1953,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010269107,8.1208864,8.148143,8.13618116,8.1408538,1,CMIP5 -1953,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003366101,8.1273282,8.1359332,8.13097289,8.1309845,1,CMIP5 -1954,ph,ocean,ph,historical,1,Simulated,global,0.002769994,8.127903,8.135417,8.131432636,8.13049625,1,CMIP5 -1954,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009913451,8.1208258,8.145132,8.135531629,8.1404146,1,CMIP5 -1954,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003369982,8.126735,8.135591,8.130643214,8.1302745,1,CMIP5 -1955,ph,ocean,ph,historical,1,Simulated,global,0.002808907,8.126559,8.134637,8.130669674,8.129964,1,CMIP5 -1955,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009598137,8.1205574,8.144348,8.135122529,8.1394038,1,CMIP5 -1955,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003271874,8.1264042,8.1347452,8.129817557,8.1294375,1,CMIP5 -1956,ph,ocean,ph,historical,1,Simulated,global,0.002834049,8.126008,8.134255,8.130082648,8.129342,1,CMIP5 -1956,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010283061,8.1179296,8.144547,8.133986329,8.139699,1,CMIP5 -1956,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003361711,8.125672,8.1340402,8.12932885,8.12937375,1,CMIP5 -1957,ph,ocean,ph,historical,1,Simulated,global,0.002936957,8.124473,8.133287,8.129381605,8.128946,1,CMIP5 -1957,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00954447,8.1176742,8.142458333,8.133428483,8.1384876,1,CMIP5 -1957,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003442251,8.124409,8.1334982,8.128601402,8.12868875,1,CMIP5 -1958,ph,ocean,ph,historical,1,Simulated,global,0.00266304,8.124351,8.132209,8.128724467,8.128387,1,CMIP5 -1958,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009725934,8.1170094,8.143329,8.132940288,8.1372472,1,CMIP5 -1958,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003311054,8.124344,8.1330444,8.12791801,8.128245,1,CMIP5 -1959,ph,ocean,ph,historical,1,Simulated,global,0.002729201,8.124125,8.13222,8.128240705,8.127538,1,CMIP5 -1959,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010134985,8.1161522,8.142853,8.132342738,8.1370778,1,CMIP5 -1959,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003328725,8.124225,8.1324566,8.127459705,8.127595,1,CMIP5 -1960,ph,ocean,ph,historical,1,Simulated,global,0.002667225,8.123464,8.131132,8.127604064,8.127282,1,CMIP5 -1960,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010205268,8.1161294,8.142889,8.131677448,8.1367494,1,CMIP5 -1960,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003165012,8.1236892,8.1317854,8.126827371,8.126378,1,CMIP5 -1961,ph,ocean,ph,historical,1,Simulated,global,0.002709423,8.122706,8.130379,8.126992429,8.126346,1,CMIP5 -1961,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009950572,8.115591,8.14185,8.130990257,8.134997,1,CMIP5 -1961,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00335625,8.122939,8.1314446,8.126223464,8.12624525,1,CMIP5 -1962,ph,ocean,ph,historical,1,Simulated,global,0.002579546,8.122769,8.130144,8.126446074,8.12623725,1,CMIP5 -1962,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009668563,8.114737,8.140736,8.130610579,8.134357,1,CMIP5 -1962,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003303424,8.1222126,8.1304464,8.125638333,8.125799,1,CMIP5 -1963,ph,ocean,ph,historical,1,Simulated,global,0.002966698,8.120885,8.129632,8.125897517,8.12572775,1,CMIP5 -1963,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009693547,8.1149218,8.140817,8.129413564,8.13241,1,CMIP5 -1963,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003550862,8.121163,8.1303848,8.12521496,8.125460667,1,CMIP5 -1964,ph,ocean,ph,historical,1,Simulated,global,0.003159168,8.119743,8.128804,8.125689162,8.125935,1,CMIP5 -1964,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009231363,8.1144762,8.138452,8.128663605,8.131363,1,CMIP5 -1964,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003691175,8.119758,8.130686,8.125110326,8.12526575,1,CMIP5 -1965,ph,ocean,ph,historical,1,Simulated,global,0.002665005,8.1204,8.127837,8.125000207,8.12456125,1,CMIP5 -1965,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010200127,8.1132898,8.14027,8.128553524,8.132095,1,CMIP5 -1965,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003149799,8.120891,8.1291462,8.124316705,8.12445,1,CMIP5 -1966,ph,ocean,ph,historical,1,Simulated,global,0.002327971,8.119723,8.126703,8.123795519,8.1239735,1,CMIP5 -1966,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010398804,8.1106896,8.138236,8.12705035,8.129538,1,CMIP5 -1966,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002825337,8.1203418,8.1271216,8.123158271,8.1237245,1,CMIP5 -1967,ph,ocean,ph,historical,1,Simulated,global,0.002498442,8.118757,8.125997,8.122790205,8.1224485,1,CMIP5 -1967,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010866651,8.1098568,8.13951,8.126592336,8.129378,1,CMIP5 -1967,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003231144,8.1189304,8.1270006,8.122052857,8.122215,1,CMIP5 -1968,ph,ocean,ph,historical,1,Simulated,global,0.0028535,8.116892,8.125507,8.121391948,8.1215055,1,CMIP5 -1968,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010152515,8.1092454,8.134956,8.125196505,8.130057,1,CMIP5 -1968,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003550112,8.117245,8.125692,8.120656702,8.120872667,1,CMIP5 -1969,ph,ocean,ph,historical,1,Simulated,global,0.002822062,8.115885,8.124343,8.120701036,8.12095225,1,CMIP5 -1969,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009919699,8.1084494,8.134469,8.123828705,8.127553,1,CMIP5 -1969,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003556533,8.116324,8.125252,8.120097733,8.120424333,1,CMIP5 -1970,ph,ocean,ph,historical,1,Simulated,global,0.002638298,8.11544,8.122831,8.119647307,8.11915275,1,CMIP5 -1970,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01045894,8.1083792,8.133347,8.123173745,8.127823,1,CMIP5 -1970,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003132262,8.115721,8.1236096,8.11896799,8.119119,1,CMIP5 -1971,ph,ocean,ph,historical,1,Simulated,global,0.002361962,8.114538,8.121701,8.118435021,8.11800575,1,CMIP5 -1971,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009721049,8.1076506,8.131241,8.122247321,8.128987,1,CMIP5 -1971,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002731578,8.1146082,8.1217726,8.117708043,8.1178655,1,CMIP5 -1972,ph,ocean,ph,historical,1,Simulated,global,0.002486286,8.113389,8.120602,8.11707429,8.1165935,1,CMIP5 -1972,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010446223,8.105903,8.130706,8.120927874,8.1269362,1,CMIP5 -1972,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002930373,8.1126988,8.1207106,8.116337033,8.1165875,1,CMIP5 -1973,ph,ocean,ph,historical,1,Simulated,global,0.002450105,8.11262,8.119228,8.115955731,8.11550425,1,CMIP5 -1973,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010285103,8.1042382,8.13037,8.119507864,8.124864,1,CMIP5 -1973,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003272369,8.111616,8.1204088,8.115276057,8.115547,1,CMIP5 -1974,ph,ocean,ph,historical,1,Simulated,global,0.002786265,8.110226,8.118728,8.114783717,8.11442875,1,CMIP5 -1974,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010049407,8.1034048,8.126877,8.118070679,8.124252,1,CMIP5 -1974,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00317667,8.1109534,8.1186302,8.114148026,8.11434125,1,CMIP5 -1975,ph,ocean,ph,historical,1,Simulated,global,0.002612227,8.109926,8.117757,8.11392094,8.11357825,1,CMIP5 -1975,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009783168,8.103274,8.127107,8.117113776,8.121413,1,CMIP5 -1975,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003121415,8.109982,8.1174916,8.113303981,8.113555,1,CMIP5 -1976,ph,ocean,ph,historical,1,Simulated,global,0.002702943,8.1083,8.116199,8.112728279,8.11253875,1,CMIP5 -1976,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010098866,8.1019134,8.126461333,8.115916998,8.119528,1,CMIP5 -1976,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003114451,8.1086608,8.1164508,8.112106764,8.11253675,1,CMIP5 -1977,ph,ocean,ph,historical,1,Simulated,global,0.002886212,8.106483,8.115087,8.11102691,8.1110765,1,CMIP5 -1977,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009977334,8.0998494,8.124003,8.114574362,8.119546,1,CMIP5 -1977,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003375851,8.1066888,8.1147304,8.110342338,8.1110025,1,CMIP5 -1978,ph,ocean,ph,historical,1,Simulated,global,0.002738968,8.105923,8.114117,8.109806026,8.10968425,1,CMIP5 -1978,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010212715,8.0992922,8.123172,8.113651357,8.1189098,1,CMIP5 -1978,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003071765,8.1055764,8.1129132,8.109075443,8.1097185,1,CMIP5 -1979,ph,ocean,ph,historical,1,Simulated,global,0.003015992,8.102934,8.112034,8.107918448,8.107752,1,CMIP5 -1979,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009759332,8.0970338,8.11962,8.111336183,8.1172594,1,CMIP5 -1979,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003450919,8.103587,8.1123194,8.107258174,8.10757675,1,CMIP5 -1980,ph,ocean,ph,historical,1,Simulated,global,0.002796168,8.102088,8.110673,8.106622517,8.10665775,1,CMIP5 -1980,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009776313,8.0956922,8.11866,8.11001666,8.115105,1,CMIP5 -1980,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003155197,8.1025496,8.1105474,8.105966,8.106165,1,CMIP5 -1981,ph,ocean,ph,historical,1,Simulated,global,0.002787886,8.100924,8.109282,8.105216545,8.10475475,1,CMIP5 -1981,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009731226,8.0950308,8.117716,8.108409157,8.1134298,1,CMIP5 -1981,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003115279,8.1010626,8.1090702,8.1046094,8.104874,1,CMIP5 -1982,ph,ocean,ph,historical,1,Simulated,global,0.002684995,8.099091,8.107113,8.103928095,8.1039,1,CMIP5 -1982,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009817492,8.0928688,8.116654,8.106347919,8.111583,1,CMIP5 -1982,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003061005,8.099917,8.1080912,8.1034644,8.103924,1,CMIP5 -1983,ph,ocean,ph,historical,1,Simulated,global,0.002885197,8.098249,8.1071,8.103149983,8.10311375,1,CMIP5 -1983,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008883662,8.0923828,8.114006,8.104946874,8.1101054,1,CMIP5 -1983,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003177328,8.099002,8.106832,8.102804236,8.10343325,1,CMIP5 -1984,ph,ocean,ph,historical,1,Simulated,global,0.002636777,8.096794,8.104455,8.101076893,8.10102625,1,CMIP5 -1984,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009055443,8.090315,8.11203,8.102730714,8.106968,1,CMIP5 -1984,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003100674,8.097646,8.1048772,8.100759595,8.1016245,1,CMIP5 -1985,ph,ocean,ph,historical,1,Simulated,global,0.002715239,8.095095,8.103058,8.099492312,8.09948825,1,CMIP5 -1985,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00902385,8.088432,8.110591,8.101645429,8.106789,1,CMIP5 -1985,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003265945,8.095671,8.1034924,8.099084638,8.10003,1,CMIP5 -1986,ph,ocean,ph,historical,1,Simulated,global,0.00285604,8.093955,8.102129,8.098074648,8.098286,1,CMIP5 -1986,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008859092,8.0876666,8.108811667,8.100316681,8.106027,1,CMIP5 -1986,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00333666,8.094123,8.1016226,8.097648752,8.098701667,1,CMIP5 -1987,ph,ocean,ph,historical,1,Simulated,global,0.002585157,8.092589,8.10009,8.09627844,8.09611075,1,CMIP5 -1987,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009663281,8.0861544,8.108808,8.099445643,8.1052536,1,CMIP5 -1987,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003125515,8.092044,8.1000034,8.095686231,8.096323667,1,CMIP5 -1988,ph,ocean,ph,historical,1,Simulated,global,0.002170665,8.091428,8.09729,8.094553086,8.094431,1,CMIP5 -1988,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009068055,8.0850962,8.107498,8.097260662,8.101933,1,CMIP5 -1988,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00293542,8.090745,8.0985316,8.094044964,8.094612,1,CMIP5 -1989,ph,ocean,ph,historical,1,Simulated,global,0.002490444,8.08864,8.096134,8.092420974,8.09216175,1,CMIP5 -1989,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009136935,8.0839666,8.105001,8.0953223,8.100563,1,CMIP5 -1989,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003023169,8.088777,8.0960634,8.091875757,8.09187,1,CMIP5 -1990,ph,ocean,ph,historical,1,Simulated,global,0.002658146,8.086673,8.094393,8.090711786,8.0903995,1,CMIP5 -1990,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00952601,8.080438,8.102424,8.092563005,8.097286,1,CMIP5 -1990,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003249229,8.0869994,8.0950556,8.090361869,8.090354333,1,CMIP5 -1991,ph,ocean,ph,historical,1,Simulated,global,0.002783415,8.085672,8.094284,8.0900525,8.0898515,1,CMIP5 -1991,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009112415,8.079353,8.101391,8.091544348,8.097356333,1,CMIP5 -1991,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003132747,8.0863354,8.0938314,8.089779329,8.089901,1,CMIP5 -1992,ph,ocean,ph,historical,1,Simulated,global,0.002993579,8.085168,8.094472,8.090198779,8.089788,1,CMIP5 -1992,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009021624,8.078889,8.101173,8.090280417,8.0953612,1,CMIP5 -1992,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003225681,8.086307,8.094148,8.090192752,8.090906,1,CMIP5 -1993,ph,ocean,ph,historical,1,Simulated,global,0.002757566,8.08346,8.092027,8.088254343,8.088047,1,CMIP5 -1993,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009087057,8.077425,8.100313,8.089044329,8.094326,1,CMIP5 -1993,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002906248,8.084555,8.091624,8.088117514,8.088811,1,CMIP5 -1994,ph,ocean,ph,historical,1,Simulated,global,0.00256924,8.082787,8.090362,8.086684231,8.08611875,1,CMIP5 -1994,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008937286,8.075688,8.096887,8.0875306,8.0931306,1,CMIP5 -1994,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002839622,8.083463,8.0900714,8.08653691,8.0872495,1,CMIP5 -1995,ph,ocean,ph,historical,1,Simulated,global,0.002608698,8.080944,8.088708,8.085071269,8.08427675,1,CMIP5 -1995,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008785999,8.074984,8.094957,8.086082086,8.0919144,1,CMIP5 -1995,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002915861,8.0819638,8.0890708,8.08488974,8.08536425,1,CMIP5 -1996,ph,ocean,ph,historical,1,Simulated,global,0.002688945,8.078966,8.087247,8.083335695,8.082871,1,CMIP5 -1996,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009311458,8.072108,8.094152,8.084530179,8.0906682,1,CMIP5 -1996,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002871595,8.08021,8.0865414,8.083129169,8.084059333,1,CMIP5 -1997,ph,ocean,ph,historical,1,Simulated,global,0.002816235,8.077052,8.085527,8.081325293,8.08052325,1,CMIP5 -1997,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008555409,8.071382,8.091855,8.082173857,8.087809,1,CMIP5 -1997,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003186935,8.077843,8.0851706,8.081179624,8.0817055,1,CMIP5 -1998,ph,ocean,ph,historical,1,Simulated,global,0.002738644,8.075677,8.083794,8.079736712,8.07894,1,CMIP5 -1998,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008997093,8.069056,8.089729,8.080217305,8.086300333,1,CMIP5 -1998,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003023347,8.0761666,8.0833776,8.07966335,8.08026425,1,CMIP5 -1999,ph,ocean,ph,historical,1,Simulated,global,0.002677362,8.073792,8.081532,8.077855045,8.077137,1,CMIP5 -1999,ph,ocean,ph_HL,historical,1,Simulated,HL,0.0089437,8.067957,8.08987,8.07863311,8.0834682,1,CMIP5 -1999,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00303604,8.0744874,8.0818626,8.077730143,8.078287,1,CMIP5 -2000,ph,ocean,ph,historical,1,Simulated,global,0.002763837,8.072133,8.080254,8.076245374,8.07568175,1,CMIP5 -2000,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00878281,8.064564,8.086662,8.076597919,8.0810708,1,CMIP5 -2000,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003007993,8.0727638,8.079955,8.076199805,8.0770605,1,CMIP5 -2001,ph,ocean,ph,historical,1,Simulated,global,0.002588455,8.071373,8.078831,8.074498574,8.07389475,1,CMIP5 -2001,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008216231,8.063202,8.082867,8.074267412,8.078820333,1,CMIP5 -2001,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002932887,8.070885,8.07829,8.074558198,8.074957333,1,CMIP5 -2002,ph,ocean,ph,historical,1,Simulated,global,0.002773332,8.068755,8.076707,8.07269894,8.072158,1,CMIP5 -2002,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008656038,8.060367,8.081101,8.07184645,8.0763342,1,CMIP5 -2002,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002943974,8.0691572,8.0765884,8.072880526,8.07345775,1,CMIP5 -2003,ph,ocean,ph,historical,1,Simulated,global,0.002822339,8.066118,8.074465,8.070590095,8.070581,1,CMIP5 -2003,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008729873,8.058615,8.080299,8.070393,8.0731944,1,CMIP5 -2003,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003064149,8.067377,8.0747438,8.070645281,8.070942667,1,CMIP5 -2004,ph,ocean,ph,historical,1,Simulated,global,0.002269918,8.065153,8.071626,8.068762371,8.068443,1,CMIP5 -2004,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008275335,8.056266,8.077112,8.068047893,8.0727468,1,CMIP5 -2004,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002598934,8.0660156,8.0728694,8.06891044,8.068782333,1,CMIP5 -2005,ph,ocean,ph,historical,1,Simulated,global,0.002158914,8.064173,8.069625,8.067161157,8.06688,1,CMIP5 -2005,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008059085,8.054726,8.075287,8.066013979,8.0692732,1,CMIP5 -2005,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002447465,8.0639604,8.0710808,8.067391243,8.067972,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/rcp85/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/rcp85/ensemble_mean_model.csv deleted file mode 100644 index 8d682473f..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/rcp85/ensemble_mean_model.csv +++ /dev/null @@ -1,3511 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.067875 -"CanESM2","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.0653956 -"CanESM2","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.063772 -"CanESM2","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.0618216 -"CanESM2","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.0596074 -"CanESM2","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.0579822 -"CanESM2","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.0555294 -"CanESM2","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.053266 -"CanESM2","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.050995 -"CanESM2","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.0488512 -"CanESM2","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.046646 -"CanESM2","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.0440788 -"CanESM2","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.0417996 -"CanESM2","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.039399 -"CanESM2","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.0366604 -"CanESM2","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.0337616 -"CanESM2","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.0314656 -"CanESM2","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.0286942 -"CanESM2","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.0258998 -"CanESM2","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.023363 -"CanESM2","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.0206234 -"CanESM2","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.018038 -"CanESM2","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.0149484 -"CanESM2","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.0121794 -"CanESM2","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.0092432 -"CanESM2","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.006466 -"CanESM2","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",8.0035014 -"CanESM2","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",8.0003924 -"CanESM2","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.9972914 -"CanESM2","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.9941088 -"CanESM2","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.9908654 -"CanESM2","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.987876 -"CanESM2","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.984585 -"CanESM2","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.9812462 -"CanESM2","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.9778224 -"CanESM2","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.974636 -"CanESM2","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.9710038 -"CanESM2","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.9675704 -"CanESM2","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.963983 -"CanESM2","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.9604902 -"CanESM2","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.9565182 -"CanESM2","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.9528042 -"CanESM2","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.9490934 -"CanESM2","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.9453694 -"CanESM2","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.9415222 -"CanESM2","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.9376044 -"CanESM2","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.9334678 -"CanESM2","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.9294842 -"CanESM2","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.925324 -"CanESM2","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.921364 -"CanESM2","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.9173452 -"CanESM2","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.9129036 -"CanESM2","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.9089014 -"CanESM2","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.9043268 -"CanESM2","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.9001646 -"CanESM2","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.8959226 -"CanESM2","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.8916062 -"CanESM2","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.8872954 -"CanESM2","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.8829708 -"CanESM2","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.8784728 -"CanESM2","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.8740246 -"CanESM2","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.8697114 -"CanESM2","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.865254 -"CanESM2","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.86097 -"CanESM2","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.8564126 -"CanESM2","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.8521134 -"CanESM2","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.8475642 -"CanESM2","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.8432692 -"CanESM2","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.8388602 -"CanESM2","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.8342628 -"CanESM2","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.8299342 -"CanESM2","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.8257552 -"CanESM2","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.821391 -"CanESM2","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.8171126 -"CanESM2","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.812907 -"CanESM2","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.808464 -"CanESM2","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.8040552 -"CanESM2","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.799824 -"CanESM2","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.7956766 -"CanESM2","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.791392 -"CanESM2","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.786968 -"CanESM2","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.7828896 -"CanESM2","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.7787968 -"CanESM2","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.7747666 -"CanESM2","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.770523 -"CanESM2","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.7664632 -"CanESM2","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.7622074 -"CanESM2","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.7582408 -"CanESM2","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.754294 -"CanESM2","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.7500458 -"CanESM2","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.746038 -"CanESM2","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.7419544 -"CanESM2","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.737908 -"CanESM2","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.7342376 -"CanESM2","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.7300574 -"CanESM2","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.0578004 -"CanESM2","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.0553774 -"CanESM2","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.0539172 -"CanESM2","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.0518458 -"CanESM2","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.0498636 -"CanESM2","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.0479064 -"CanESM2","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.0455706 -"CanESM2","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.0432112 -"CanESM2","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.0405954 -"CanESM2","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.0377014 -"CanESM2","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.0362224 -"CanESM2","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.0335698 -"CanESM2","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.0309148 -"CanESM2","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.0286848 -"CanESM2","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.0252802 -"CanESM2","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.021719 -"CanESM2","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.02011 -"CanESM2","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.0174126 -"CanESM2","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.0143462 -"CanESM2","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.01135 -"CanESM2","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.0091376 -"CanESM2","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.005552 -"CanESM2","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.0025552 -"CanESM2","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",7.9990368 -"CanESM2","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",7.9969544 -"CanESM2","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",7.9938688 -"CanESM2","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",7.9907596 -"CanESM2","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.986944 -"CanESM2","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.9834696 -"CanESM2","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.9802712 -"CanESM2","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.976709 -"CanESM2","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.9737126 -"CanESM2","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.9699102 -"CanESM2","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.966639 -"CanESM2","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.9627164 -"CanESM2","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.9594268 -"CanESM2","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.9558044 -"CanESM2","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.9523194 -"CanESM2","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.9481488 -"CanESM2","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.9445736 -"CanESM2","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.9402598 -"CanESM2","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.9359658 -"CanESM2","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.9321936 -"CanESM2","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.9285914 -"CanESM2","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.924094 -"CanESM2","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.919805 -"CanESM2","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.9159792 -"CanESM2","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.911665 -"CanESM2","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.9074198 -"CanESM2","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.9026172 -"CanESM2","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.8985812 -"CanESM2","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.8935066 -"CanESM2","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.88931 -"CanESM2","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.884857 -"CanESM2","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.880041 -"CanESM2","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.8756814 -"CanESM2","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.8711036 -"CanESM2","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.8661654 -"CanESM2","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.8615656 -"CanESM2","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.8570106 -"CanESM2","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.8519766 -"CanESM2","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.8480352 -"CanESM2","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.8425194 -"CanESM2","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.8377238 -"CanESM2","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.8330338 -"CanESM2","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.8283276 -"CanESM2","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.8240112 -"CanESM2","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.8188604 -"CanESM2","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.8141204 -"CanESM2","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.8091984 -"CanESM2","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.8044482 -"CanESM2","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.7999976 -"CanESM2","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.7954604 -"CanESM2","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.791017 -"CanESM2","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.7860352 -"CanESM2","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.7811862 -"CanESM2","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.7767662 -"CanESM2","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.7720412 -"CanESM2","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.7674416 -"CanESM2","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.7633784 -"CanESM2","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.758952 -"CanESM2","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.7541144 -"CanESM2","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.7495952 -"CanESM2","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.745341 -"CanESM2","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.7399942 -"CanESM2","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.7359368 -"CanESM2","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.7313834 -"CanESM2","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.7269362 -"CanESM2","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.7228012 -"CanESM2","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.7181162 -"CanESM2","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.714126 -"CanESM2","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.7096692 -"CanESM2","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.7048912 -"CanESM2","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.7004992 -"CanESM2","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.6962994 -"CanESM2","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.0696374 -"CanESM2","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.067148 -"CanESM2","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.0654958 -"CanESM2","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.0635664 -"CanESM2","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.0613118 -"CanESM2","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.0597448 -"CanESM2","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.057272 -"CanESM2","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.0550248 -"CanESM2","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.0528142 -"CanESM2","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.0508018 -"CanESM2","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.0484692 -"CanESM2","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.045917 -"CanESM2","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.0437038 -"CanESM2","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.0412728 -"CanESM2","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.0386514 -"CanESM2","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.0358682 -"CanESM2","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.0334518 -"CanESM2","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.0306674 -"CanESM2","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.0279212 -"CanESM2","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.0254642 -"CanESM2","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.0226326 -"CanESM2","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.0202222 -"CanESM2","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.0171162 -"CanESM2","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.0144782 -"CanESM2","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.011393 -"CanESM2","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.0086698 -"CanESM2","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",8.0057302 -"CanESM2","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",8.002745 -"CanESM2","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.999709 -"CanESM2","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.9965292 -"CanESM2","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.9933418 -"CanESM2","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.9903532 -"CanESM2","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.987152 -"CanESM2","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.9838012 -"CanESM2","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.9804646 -"CanESM2","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.9772966 -"CanESM2","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.9736624 -"CanESM2","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.970238 -"CanESM2","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.9667532 -"CanESM2","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.9632744 -"CanESM2","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.9593618 -"CanESM2","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.9557498 -"CanESM2","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.9520496 -"CanESM2","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.9483044 -"CanESM2","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.9445706 -"CanESM2","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.9407176 -"CanESM2","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.936527 -"CanESM2","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.932601 -"CanESM2","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.9284562 -"CanESM2","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.9246434 -"CanESM2","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.9206276 -"CanESM2","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.9162968 -"CanESM2","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.9123288 -"CanESM2","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.9077328 -"CanESM2","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.9036848 -"CanESM2","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.8994634 -"CanESM2","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.8951924 -"CanESM2","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.8909916 -"CanESM2","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.8867154 -"CanESM2","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.8822272 -"CanESM2","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.8778816 -"CanESM2","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.8735034 -"CanESM2","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.869231 -"CanESM2","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.8650366 -"CanESM2","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.8605022 -"CanESM2","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.8562742 -"CanESM2","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.8516842 -"CanESM2","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.847539 -"CanESM2","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.8431876 -"CanESM2","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.838647 -"CanESM2","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.8343926 -"CanESM2","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.830261 -"CanESM2","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.825927 -"CanESM2","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.8216774 -"CanESM2","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.817608 -"CanESM2","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.8132352 -"CanESM2","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.8088286 -"CanESM2","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.8046836 -"CanESM2","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.8006156 -"CanESM2","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.7962924 -"CanESM2","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.7918686 -"CanESM2","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.7879232 -"CanESM2","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.7839048 -"CanESM2","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.7799136 -"CanESM2","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.7758632 -"CanESM2","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.7718026 -"CanESM2","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.7675994 -"CanESM2","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.7637168 -"CanESM2","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.759803 -"CanESM2","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.755631 -"CanESM2","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.7516202 -"CanESM2","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.7476016 -"CanESM2","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.7436836 -"CanESM2","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.7401394 -"CanESM2","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.7359624 -"CESM1-BGC","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.065136 -"CESM1-BGC","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.06315 -"CESM1-BGC","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.061255 -"CESM1-BGC","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.059186 -"CESM1-BGC","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.057135 -"CESM1-BGC","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.054794 -"CESM1-BGC","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.052001 -"CESM1-BGC","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.049495 -"CESM1-BGC","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.048264 -"CESM1-BGC","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.045548 -"CESM1-BGC","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.043336 -"CESM1-BGC","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.040929 -"CESM1-BGC","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.038618 -"CESM1-BGC","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.036195 -"CESM1-BGC","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.033887 -"CESM1-BGC","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.031182 -"CESM1-BGC","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.028468 -"CESM1-BGC","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.025117 -"CESM1-BGC","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.022745 -"CESM1-BGC","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.020059 -"CESM1-BGC","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.017328 -"CESM1-BGC","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.014639 -"CESM1-BGC","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.011677 -"CESM1-BGC","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.009813 -"CESM1-BGC","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.006737 -"CESM1-BGC","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.003143 -"CESM1-BGC","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",8.00031 -"CESM1-BGC","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",7.997301 -"CESM1-BGC","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.994049 -"CESM1-BGC","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.990975 -"CESM1-BGC","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.988081 -"CESM1-BGC","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.984471 -"CESM1-BGC","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.981354 -"CESM1-BGC","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.977695 -"CESM1-BGC","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.974901 -"CESM1-BGC","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.97096 -"CESM1-BGC","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.96763 -"CESM1-BGC","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.963585 -"CESM1-BGC","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.960276 -"CESM1-BGC","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.956556 -"CESM1-BGC","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.953053 -"CESM1-BGC","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.948907 -"CESM1-BGC","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.945613 -"CESM1-BGC","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.941911 -"CESM1-BGC","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.937444 -"CESM1-BGC","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.933478 -"CESM1-BGC","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.929592 -"CESM1-BGC","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.925712 -"CESM1-BGC","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.92151 -"CESM1-BGC","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.917834 -"CESM1-BGC","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.913233 -"CESM1-BGC","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.909047 -"CESM1-BGC","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.904539 -"CESM1-BGC","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.899939 -"CESM1-BGC","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.895614 -"CESM1-BGC","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.891755 -"CESM1-BGC","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.88726 -"CESM1-BGC","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.883486 -"CESM1-BGC","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.878265 -"CESM1-BGC","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.874529 -"CESM1-BGC","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.869795 -"CESM1-BGC","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.86535 -"CESM1-BGC","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.860607 -"CESM1-BGC","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.856246 -"CESM1-BGC","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.852319 -"CESM1-BGC","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.847431 -"CESM1-BGC","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.843364 -"CESM1-BGC","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.838776 -"CESM1-BGC","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.834703 -"CESM1-BGC","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.829503 -"CESM1-BGC","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.825865 -"CESM1-BGC","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.821266 -"CESM1-BGC","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.816561 -"CESM1-BGC","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.812993 -"CESM1-BGC","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.808577 -"CESM1-BGC","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.803472 -"CESM1-BGC","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.799154 -"CESM1-BGC","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.795363 -"CESM1-BGC","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.791 -"CESM1-BGC","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.786731 -"CESM1-BGC","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.782181 -"CESM1-BGC","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.777961 -"CESM1-BGC","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.773531 -"CESM1-BGC","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.76974 -"CESM1-BGC","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.765379 -"CESM1-BGC","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.761511 -"CESM1-BGC","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.757096 -"CESM1-BGC","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.753092 -"CESM1-BGC","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.748785 -"CESM1-BGC","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.74514 -"CESM1-BGC","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.741103 -"CESM1-BGC","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.736827 -"CESM1-BGC","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.73303 -"CESM1-BGC","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.729169 -"CESM1-BGC","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.725296 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.073005 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.072238 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.069162 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.068619 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.06606 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.062777 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.058429 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.055683 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.055359 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.053024 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.048877 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.045704 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.044235 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.041094 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.038948 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.035507 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.03182 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.028774 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.026342 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.0251 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.020428 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.016389 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.01477 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",8.012723 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",8.008375 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",8.005943 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",8.002543 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.998871 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.99637 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.991134 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.987716 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.983961 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.980395 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.975711 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.974726 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.969808 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.966325 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.960607 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.957581 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.953214 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.948733 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.945814 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.940956 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.937353 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.932612 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.926087 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.923785 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.920292 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.914568 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.910698 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.903195 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.899512 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.894367 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.889552 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.885748 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.883218 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.8785 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.874828 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.867881 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.86388 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.859378 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.854617 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.848968 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.846092 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.839827 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.835779 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.829552 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.825709 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.822282 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.815164 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.810219 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.806632 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.802491 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.79694 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.791237 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.785848 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.78021 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.776694 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.771732 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.768128 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.762893 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.757941 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.754942 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.75132 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.744822 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.739753 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.735758 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.731479 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.727847 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.722352 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.719209 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.713366 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.709849 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.707516 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.702565 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.063754 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.061553 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.059866 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.057529 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.055567 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.053392 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.050871 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.048408 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.047017 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.044234 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.042362 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.04009 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.037632 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.035334 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.032998 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.030422 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.027879 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.024475 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.022114 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.019174 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.016783 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.014332 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.011133 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.009301 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.006449 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.002651 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",7.999917 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",7.997026 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.993641 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.990947 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.988145 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.984561 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.981523 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.978044 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.974931 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.971163 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.96786 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.964108 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.96075 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.957143 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.953812 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.949451 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.946431 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.942712 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.938293 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.934777 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.930613 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.926664 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.92273 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.919087 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.914996 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.910722 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.906326 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.901763 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.897347 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.893255 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.888799 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.885007 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.880089 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.8764 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.871625 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.867236 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.862651 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.858029 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.854513 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.849478 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.84579 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.841071 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.836885 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.832022 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.828614 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.823837 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.819032 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.815813 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.811623 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.806568 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.802481 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.798643 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.794384 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.789999 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.785569 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.781477 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.776797 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.772976 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.76899 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.765332 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.760844 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.756888 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.752463 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.749143 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.744949 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.740948 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.737101 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.732973 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.729288 -"HadGEM2-ES","ph","ocean","ph","rcp85",2005,"Simulated",1,"global",8.072823 -"HadGEM2-ES","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.0633415 -"HadGEM2-ES","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.06110525 -"HadGEM2-ES","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.05877925 -"HadGEM2-ES","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.056822 -"HadGEM2-ES","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.05472075 -"HadGEM2-ES","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.052563 -"HadGEM2-ES","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.05062175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.048327 -"HadGEM2-ES","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.046069 -"HadGEM2-ES","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.0435725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.0410745 -"HadGEM2-ES","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.03849875 -"HadGEM2-ES","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.0358995 -"HadGEM2-ES","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.0335355 -"HadGEM2-ES","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.03081325 -"HadGEM2-ES","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.028283 -"HadGEM2-ES","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.02593625 -"HadGEM2-ES","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.02294875 -"HadGEM2-ES","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.0205535 -"HadGEM2-ES","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.01786525 -"HadGEM2-ES","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.01488975 -"HadGEM2-ES","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.012158 -"HadGEM2-ES","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.009292 -"HadGEM2-ES","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.00606775 -"HadGEM2-ES","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.00311175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.00034175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",7.99747525 -"HadGEM2-ES","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",7.9944745 -"HadGEM2-ES","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.99160425 -"HadGEM2-ES","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.98802175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.9849295 -"HadGEM2-ES","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.98160925 -"HadGEM2-ES","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.97808875 -"HadGEM2-ES","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.97434675 -"HadGEM2-ES","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.97139825 -"HadGEM2-ES","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.96825125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.96468475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.96118875 -"HadGEM2-ES","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.9572535 -"HadGEM2-ES","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.95329575 -"HadGEM2-ES","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.94982125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.94591475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.9422045 -"HadGEM2-ES","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.93831275 -"HadGEM2-ES","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.93446775 -"HadGEM2-ES","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.9309235 -"HadGEM2-ES","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.926558 -"HadGEM2-ES","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.922296 -"HadGEM2-ES","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.9183235 -"HadGEM2-ES","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.914395 -"HadGEM2-ES","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.90971475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.9052205 -"HadGEM2-ES","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.90093825 -"HadGEM2-ES","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.89659875 -"HadGEM2-ES","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.89273725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.88861125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.88435075 -"HadGEM2-ES","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.880211 -"HadGEM2-ES","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.876028 -"HadGEM2-ES","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.87094725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.866404 -"HadGEM2-ES","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.86175975 -"HadGEM2-ES","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.8571245 -"HadGEM2-ES","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.852703 -"HadGEM2-ES","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.84849425 -"HadGEM2-ES","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.844452 -"HadGEM2-ES","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.84000425 -"HadGEM2-ES","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.834943 -"HadGEM2-ES","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.83089625 -"HadGEM2-ES","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.8262495 -"HadGEM2-ES","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.82191375 -"HadGEM2-ES","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.81730125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.81262475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.80857725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.80414475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.80021425 -"HadGEM2-ES","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.795799 -"HadGEM2-ES","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.79186175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.787286 -"HadGEM2-ES","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.7829135 -"HadGEM2-ES","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.77806675 -"HadGEM2-ES","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.7743205 -"HadGEM2-ES","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.7698475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.76634125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.761739 -"HadGEM2-ES","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.75742375 -"HadGEM2-ES","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.75358825 -"HadGEM2-ES","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.74917725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.74582775 -"HadGEM2-ES","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.74161475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.7373445 -"HadGEM2-ES","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.73308725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.72962 -"HadGEM2-ES","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.72582125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.72254725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2101,"Simulated",1,"global",7.717405 -"HadGEM2-ES","ph","ocean","ph","rcp85",2102,"Simulated",1,"global",7.713642 -"HadGEM2-ES","ph","ocean","ph","rcp85",2103,"Simulated",1,"global",7.710693 -"HadGEM2-ES","ph","ocean","ph","rcp85",2104,"Simulated",1,"global",7.706404 -"HadGEM2-ES","ph","ocean","ph","rcp85",2105,"Simulated",1,"global",7.702336 -"HadGEM2-ES","ph","ocean","ph","rcp85",2106,"Simulated",1,"global",7.697976 -"HadGEM2-ES","ph","ocean","ph","rcp85",2107,"Simulated",1,"global",7.693702 -"HadGEM2-ES","ph","ocean","ph","rcp85",2108,"Simulated",1,"global",7.690182 -"HadGEM2-ES","ph","ocean","ph","rcp85",2109,"Simulated",1,"global",7.686395 -"HadGEM2-ES","ph","ocean","ph","rcp85",2110,"Simulated",1,"global",7.683276 -"HadGEM2-ES","ph","ocean","ph","rcp85",2111,"Simulated",1,"global",7.679801 -"HadGEM2-ES","ph","ocean","ph","rcp85",2112,"Simulated",1,"global",7.676389 -"HadGEM2-ES","ph","ocean","ph","rcp85",2113,"Simulated",1,"global",7.672839 -"HadGEM2-ES","ph","ocean","ph","rcp85",2114,"Simulated",1,"global",7.668394 -"HadGEM2-ES","ph","ocean","ph","rcp85",2115,"Simulated",1,"global",7.664616 -"HadGEM2-ES","ph","ocean","ph","rcp85",2116,"Simulated",1,"global",7.661075 -"HadGEM2-ES","ph","ocean","ph","rcp85",2117,"Simulated",1,"global",7.657188 -"HadGEM2-ES","ph","ocean","ph","rcp85",2118,"Simulated",1,"global",7.654599 -"HadGEM2-ES","ph","ocean","ph","rcp85",2119,"Simulated",1,"global",7.650921 -"HadGEM2-ES","ph","ocean","ph","rcp85",2120,"Simulated",1,"global",7.646996 -"HadGEM2-ES","ph","ocean","ph","rcp85",2121,"Simulated",1,"global",7.644122 -"HadGEM2-ES","ph","ocean","ph","rcp85",2122,"Simulated",1,"global",7.640586 -"HadGEM2-ES","ph","ocean","ph","rcp85",2123,"Simulated",1,"global",7.637582 -"HadGEM2-ES","ph","ocean","ph","rcp85",2124,"Simulated",1,"global",7.633983 -"HadGEM2-ES","ph","ocean","ph","rcp85",2125,"Simulated",1,"global",7.630452 -"HadGEM2-ES","ph","ocean","ph","rcp85",2126,"Simulated",1,"global",7.627588 -"HadGEM2-ES","ph","ocean","ph","rcp85",2127,"Simulated",1,"global",7.623663 -"HadGEM2-ES","ph","ocean","ph","rcp85",2128,"Simulated",1,"global",7.619781 -"HadGEM2-ES","ph","ocean","ph","rcp85",2129,"Simulated",1,"global",7.616935 -"HadGEM2-ES","ph","ocean","ph","rcp85",2130,"Simulated",1,"global",7.614134 -"HadGEM2-ES","ph","ocean","ph","rcp85",2131,"Simulated",1,"global",7.61021 -"HadGEM2-ES","ph","ocean","ph","rcp85",2132,"Simulated",1,"global",7.607356 -"HadGEM2-ES","ph","ocean","ph","rcp85",2133,"Simulated",1,"global",7.604001 -"HadGEM2-ES","ph","ocean","ph","rcp85",2134,"Simulated",1,"global",7.600565 -"HadGEM2-ES","ph","ocean","ph","rcp85",2135,"Simulated",1,"global",7.597337 -"HadGEM2-ES","ph","ocean","ph","rcp85",2136,"Simulated",1,"global",7.594547 -"HadGEM2-ES","ph","ocean","ph","rcp85",2137,"Simulated",1,"global",7.591157 -"HadGEM2-ES","ph","ocean","ph","rcp85",2138,"Simulated",1,"global",7.588385 -"HadGEM2-ES","ph","ocean","ph","rcp85",2139,"Simulated",1,"global",7.584544 -"HadGEM2-ES","ph","ocean","ph","rcp85",2140,"Simulated",1,"global",7.58149 -"HadGEM2-ES","ph","ocean","ph","rcp85",2141,"Simulated",1,"global",7.578123 -"HadGEM2-ES","ph","ocean","ph","rcp85",2142,"Simulated",1,"global",7.575337 -"HadGEM2-ES","ph","ocean","ph","rcp85",2143,"Simulated",1,"global",7.572511 -"HadGEM2-ES","ph","ocean","ph","rcp85",2144,"Simulated",1,"global",7.570214 -"HadGEM2-ES","ph","ocean","ph","rcp85",2145,"Simulated",1,"global",7.567107 -"HadGEM2-ES","ph","ocean","ph","rcp85",2146,"Simulated",1,"global",7.564177 -"HadGEM2-ES","ph","ocean","ph","rcp85",2147,"Simulated",1,"global",7.560662 -"HadGEM2-ES","ph","ocean","ph","rcp85",2148,"Simulated",1,"global",7.557328 -"HadGEM2-ES","ph","ocean","ph","rcp85",2149,"Simulated",1,"global",7.554739 -"HadGEM2-ES","ph","ocean","ph","rcp85",2150,"Simulated",1,"global",7.551196 -"HadGEM2-ES","ph","ocean","ph","rcp85",2151,"Simulated",1,"global",7.549102 -"HadGEM2-ES","ph","ocean","ph","rcp85",2152,"Simulated",1,"global",7.546036 -"HadGEM2-ES","ph","ocean","ph","rcp85",2153,"Simulated",1,"global",7.54331 -"HadGEM2-ES","ph","ocean","ph","rcp85",2154,"Simulated",1,"global",7.540615 -"HadGEM2-ES","ph","ocean","ph","rcp85",2155,"Simulated",1,"global",7.537535 -"HadGEM2-ES","ph","ocean","ph","rcp85",2156,"Simulated",1,"global",7.535116 -"HadGEM2-ES","ph","ocean","ph","rcp85",2157,"Simulated",1,"global",7.532575 -"HadGEM2-ES","ph","ocean","ph","rcp85",2158,"Simulated",1,"global",7.529573 -"HadGEM2-ES","ph","ocean","ph","rcp85",2159,"Simulated",1,"global",7.526782 -"HadGEM2-ES","ph","ocean","ph","rcp85",2160,"Simulated",1,"global",7.524668 -"HadGEM2-ES","ph","ocean","ph","rcp85",2161,"Simulated",1,"global",7.522319 -"HadGEM2-ES","ph","ocean","ph","rcp85",2162,"Simulated",1,"global",7.519863 -"HadGEM2-ES","ph","ocean","ph","rcp85",2163,"Simulated",1,"global",7.517294 -"HadGEM2-ES","ph","ocean","ph","rcp85",2164,"Simulated",1,"global",7.515391 -"HadGEM2-ES","ph","ocean","ph","rcp85",2165,"Simulated",1,"global",7.512409 -"HadGEM2-ES","ph","ocean","ph","rcp85",2166,"Simulated",1,"global",7.510285 -"HadGEM2-ES","ph","ocean","ph","rcp85",2167,"Simulated",1,"global",7.508291 -"HadGEM2-ES","ph","ocean","ph","rcp85",2168,"Simulated",1,"global",7.506043 -"HadGEM2-ES","ph","ocean","ph","rcp85",2169,"Simulated",1,"global",7.50388 -"HadGEM2-ES","ph","ocean","ph","rcp85",2170,"Simulated",1,"global",7.501421 -"HadGEM2-ES","ph","ocean","ph","rcp85",2171,"Simulated",1,"global",7.499212 -"HadGEM2-ES","ph","ocean","ph","rcp85",2172,"Simulated",1,"global",7.49741 -"HadGEM2-ES","ph","ocean","ph","rcp85",2173,"Simulated",1,"global",7.494602 -"HadGEM2-ES","ph","ocean","ph","rcp85",2174,"Simulated",1,"global",7.492959 -"HadGEM2-ES","ph","ocean","ph","rcp85",2175,"Simulated",1,"global",7.490829 -"HadGEM2-ES","ph","ocean","ph","rcp85",2176,"Simulated",1,"global",7.489507 -"HadGEM2-ES","ph","ocean","ph","rcp85",2177,"Simulated",1,"global",7.487964 -"HadGEM2-ES","ph","ocean","ph","rcp85",2178,"Simulated",1,"global",7.485751 -"HadGEM2-ES","ph","ocean","ph","rcp85",2179,"Simulated",1,"global",7.483819 -"HadGEM2-ES","ph","ocean","ph","rcp85",2180,"Simulated",1,"global",7.482225 -"HadGEM2-ES","ph","ocean","ph","rcp85",2181,"Simulated",1,"global",7.480258 -"HadGEM2-ES","ph","ocean","ph","rcp85",2182,"Simulated",1,"global",7.478595 -"HadGEM2-ES","ph","ocean","ph","rcp85",2183,"Simulated",1,"global",7.476868 -"HadGEM2-ES","ph","ocean","ph","rcp85",2184,"Simulated",1,"global",7.475179 -"HadGEM2-ES","ph","ocean","ph","rcp85",2185,"Simulated",1,"global",7.473949 -"HadGEM2-ES","ph","ocean","ph","rcp85",2186,"Simulated",1,"global",7.471739 -"HadGEM2-ES","ph","ocean","ph","rcp85",2187,"Simulated",1,"global",7.470543 -"HadGEM2-ES","ph","ocean","ph","rcp85",2188,"Simulated",1,"global",7.46964 -"HadGEM2-ES","ph","ocean","ph","rcp85",2189,"Simulated",1,"global",7.467568 -"HadGEM2-ES","ph","ocean","ph","rcp85",2190,"Simulated",1,"global",7.465429 -"HadGEM2-ES","ph","ocean","ph","rcp85",2191,"Simulated",1,"global",7.463968 -"HadGEM2-ES","ph","ocean","ph","rcp85",2192,"Simulated",1,"global",7.462945 -"HadGEM2-ES","ph","ocean","ph","rcp85",2193,"Simulated",1,"global",7.462071 -"HadGEM2-ES","ph","ocean","ph","rcp85",2194,"Simulated",1,"global",7.46039 -"HadGEM2-ES","ph","ocean","ph","rcp85",2195,"Simulated",1,"global",7.458968 -"HadGEM2-ES","ph","ocean","ph","rcp85",2196,"Simulated",1,"global",7.457771 -"HadGEM2-ES","ph","ocean","ph","rcp85",2197,"Simulated",1,"global",7.456828 -"HadGEM2-ES","ph","ocean","ph","rcp85",2198,"Simulated",1,"global",7.455549 -"HadGEM2-ES","ph","ocean","ph","rcp85",2199,"Simulated",1,"global",7.454619 -"HadGEM2-ES","ph","ocean","ph","rcp85",2200,"Simulated",1,"global",7.453203 -"HadGEM2-ES","ph","ocean","ph","rcp85",2201,"Simulated",1,"global",7.451596 -"HadGEM2-ES","ph","ocean","ph","rcp85",2202,"Simulated",1,"global",7.450073 -"HadGEM2-ES","ph","ocean","ph","rcp85",2203,"Simulated",1,"global",7.44923 -"HadGEM2-ES","ph","ocean","ph","rcp85",2204,"Simulated",1,"global",7.448063 -"HadGEM2-ES","ph","ocean","ph","rcp85",2205,"Simulated",1,"global",7.446955 -"HadGEM2-ES","ph","ocean","ph","rcp85",2206,"Simulated",1,"global",7.446269 -"HadGEM2-ES","ph","ocean","ph","rcp85",2207,"Simulated",1,"global",7.44464 -"HadGEM2-ES","ph","ocean","ph","rcp85",2208,"Simulated",1,"global",7.443449 -"HadGEM2-ES","ph","ocean","ph","rcp85",2209,"Simulated",1,"global",7.442654 -"HadGEM2-ES","ph","ocean","ph","rcp85",2210,"Simulated",1,"global",7.441587 -"HadGEM2-ES","ph","ocean","ph","rcp85",2211,"Simulated",1,"global",7.440659 -"HadGEM2-ES","ph","ocean","ph","rcp85",2212,"Simulated",1,"global",7.439765 -"HadGEM2-ES","ph","ocean","ph","rcp85",2213,"Simulated",1,"global",7.439037 -"HadGEM2-ES","ph","ocean","ph","rcp85",2214,"Simulated",1,"global",7.438013 -"HadGEM2-ES","ph","ocean","ph","rcp85",2215,"Simulated",1,"global",7.437164 -"HadGEM2-ES","ph","ocean","ph","rcp85",2216,"Simulated",1,"global",7.436707 -"HadGEM2-ES","ph","ocean","ph","rcp85",2217,"Simulated",1,"global",7.436038 -"HadGEM2-ES","ph","ocean","ph","rcp85",2218,"Simulated",1,"global",7.43548 -"HadGEM2-ES","ph","ocean","ph","rcp85",2219,"Simulated",1,"global",7.434703 -"HadGEM2-ES","ph","ocean","ph","rcp85",2220,"Simulated",1,"global",7.433835 -"HadGEM2-ES","ph","ocean","ph","rcp85",2221,"Simulated",1,"global",7.43334 -"HadGEM2-ES","ph","ocean","ph","rcp85",2222,"Simulated",1,"global",7.432406 -"HadGEM2-ES","ph","ocean","ph","rcp85",2223,"Simulated",1,"global",7.432215 -"HadGEM2-ES","ph","ocean","ph","rcp85",2224,"Simulated",1,"global",7.431864 -"HadGEM2-ES","ph","ocean","ph","rcp85",2225,"Simulated",1,"global",7.431175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2226,"Simulated",1,"global",7.43068 -"HadGEM2-ES","ph","ocean","ph","rcp85",2227,"Simulated",1,"global",7.429601 -"HadGEM2-ES","ph","ocean","ph","rcp85",2228,"Simulated",1,"global",7.429135 -"HadGEM2-ES","ph","ocean","ph","rcp85",2229,"Simulated",1,"global",7.428906 -"HadGEM2-ES","ph","ocean","ph","rcp85",2230,"Simulated",1,"global",7.428536 -"HadGEM2-ES","ph","ocean","ph","rcp85",2231,"Simulated",1,"global",7.428039 -"HadGEM2-ES","ph","ocean","ph","rcp85",2232,"Simulated",1,"global",7.427922 -"HadGEM2-ES","ph","ocean","ph","rcp85",2233,"Simulated",1,"global",7.427308 -"HadGEM2-ES","ph","ocean","ph","rcp85",2234,"Simulated",1,"global",7.427371 -"HadGEM2-ES","ph","ocean","ph","rcp85",2235,"Simulated",1,"global",7.426717 -"HadGEM2-ES","ph","ocean","ph","rcp85",2236,"Simulated",1,"global",7.42663 -"HadGEM2-ES","ph","ocean","ph","rcp85",2237,"Simulated",1,"global",7.426113 -"HadGEM2-ES","ph","ocean","ph","rcp85",2238,"Simulated",1,"global",7.426033 -"HadGEM2-ES","ph","ocean","ph","rcp85",2239,"Simulated",1,"global",7.425889 -"HadGEM2-ES","ph","ocean","ph","rcp85",2240,"Simulated",1,"global",7.425858 -"HadGEM2-ES","ph","ocean","ph","rcp85",2241,"Simulated",1,"global",7.425731 -"HadGEM2-ES","ph","ocean","ph","rcp85",2242,"Simulated",1,"global",7.42495 -"HadGEM2-ES","ph","ocean","ph","rcp85",2243,"Simulated",1,"global",7.424998 -"HadGEM2-ES","ph","ocean","ph","rcp85",2244,"Simulated",1,"global",7.424617 -"HadGEM2-ES","ph","ocean","ph","rcp85",2245,"Simulated",1,"global",7.424759 -"HadGEM2-ES","ph","ocean","ph","rcp85",2246,"Simulated",1,"global",7.424364 -"HadGEM2-ES","ph","ocean","ph","rcp85",2247,"Simulated",1,"global",7.4248 -"HadGEM2-ES","ph","ocean","ph","rcp85",2248,"Simulated",1,"global",7.424318 -"HadGEM2-ES","ph","ocean","ph","rcp85",2249,"Simulated",1,"global",7.424062 -"HadGEM2-ES","ph","ocean","ph","rcp85",2250,"Simulated",1,"global",7.424307 -"HadGEM2-ES","ph","ocean","ph","rcp85",2251,"Simulated",1,"global",7.424065 -"HadGEM2-ES","ph","ocean","ph","rcp85",2252,"Simulated",1,"global",7.423825 -"HadGEM2-ES","ph","ocean","ph","rcp85",2253,"Simulated",1,"global",7.423425 -"HadGEM2-ES","ph","ocean","ph","rcp85",2254,"Simulated",1,"global",7.423764 -"HadGEM2-ES","ph","ocean","ph","rcp85",2255,"Simulated",1,"global",7.423833 -"HadGEM2-ES","ph","ocean","ph","rcp85",2256,"Simulated",1,"global",7.424049 -"HadGEM2-ES","ph","ocean","ph","rcp85",2257,"Simulated",1,"global",7.424049 -"HadGEM2-ES","ph","ocean","ph","rcp85",2258,"Simulated",1,"global",7.424272 -"HadGEM2-ES","ph","ocean","ph","rcp85",2259,"Simulated",1,"global",7.423917 -"HadGEM2-ES","ph","ocean","ph","rcp85",2260,"Simulated",1,"global",7.424189 -"HadGEM2-ES","ph","ocean","ph","rcp85",2261,"Simulated",1,"global",7.423887 -"HadGEM2-ES","ph","ocean","ph","rcp85",2262,"Simulated",1,"global",7.424163 -"HadGEM2-ES","ph","ocean","ph","rcp85",2263,"Simulated",1,"global",7.424143 -"HadGEM2-ES","ph","ocean","ph","rcp85",2264,"Simulated",1,"global",7.424155 -"HadGEM2-ES","ph","ocean","ph","rcp85",2265,"Simulated",1,"global",7.424229 -"HadGEM2-ES","ph","ocean","ph","rcp85",2266,"Simulated",1,"global",7.423986 -"HadGEM2-ES","ph","ocean","ph","rcp85",2267,"Simulated",1,"global",7.424221 -"HadGEM2-ES","ph","ocean","ph","rcp85",2268,"Simulated",1,"global",7.424232 -"HadGEM2-ES","ph","ocean","ph","rcp85",2269,"Simulated",1,"global",7.423833 -"HadGEM2-ES","ph","ocean","ph","rcp85",2270,"Simulated",1,"global",7.424235 -"HadGEM2-ES","ph","ocean","ph","rcp85",2271,"Simulated",1,"global",7.424504 -"HadGEM2-ES","ph","ocean","ph","rcp85",2272,"Simulated",1,"global",7.424111 -"HadGEM2-ES","ph","ocean","ph","rcp85",2273,"Simulated",1,"global",7.424458 -"HadGEM2-ES","ph","ocean","ph","rcp85",2274,"Simulated",1,"global",7.424114 -"HadGEM2-ES","ph","ocean","ph","rcp85",2275,"Simulated",1,"global",7.424146 -"HadGEM2-ES","ph","ocean","ph","rcp85",2276,"Simulated",1,"global",7.424317 -"HadGEM2-ES","ph","ocean","ph","rcp85",2277,"Simulated",1,"global",7.424132 -"HadGEM2-ES","ph","ocean","ph","rcp85",2278,"Simulated",1,"global",7.42407 -"HadGEM2-ES","ph","ocean","ph","rcp85",2279,"Simulated",1,"global",7.424133 -"HadGEM2-ES","ph","ocean","ph","rcp85",2280,"Simulated",1,"global",7.424089 -"HadGEM2-ES","ph","ocean","ph","rcp85",2281,"Simulated",1,"global",7.423797 -"HadGEM2-ES","ph","ocean","ph","rcp85",2282,"Simulated",1,"global",7.424128 -"HadGEM2-ES","ph","ocean","ph","rcp85",2283,"Simulated",1,"global",7.423828 -"HadGEM2-ES","ph","ocean","ph","rcp85",2284,"Simulated",1,"global",7.423843 -"HadGEM2-ES","ph","ocean","ph","rcp85",2285,"Simulated",1,"global",7.424106 -"HadGEM2-ES","ph","ocean","ph","rcp85",2286,"Simulated",1,"global",7.424251 -"HadGEM2-ES","ph","ocean","ph","rcp85",2287,"Simulated",1,"global",7.424206 -"HadGEM2-ES","ph","ocean","ph","rcp85",2288,"Simulated",1,"global",7.424058 -"HadGEM2-ES","ph","ocean","ph","rcp85",2289,"Simulated",1,"global",7.424032 -"HadGEM2-ES","ph","ocean","ph","rcp85",2290,"Simulated",1,"global",7.424042 -"HadGEM2-ES","ph","ocean","ph","rcp85",2291,"Simulated",1,"global",7.42421 -"HadGEM2-ES","ph","ocean","ph","rcp85",2292,"Simulated",1,"global",7.423998 -"HadGEM2-ES","ph","ocean","ph","rcp85",2293,"Simulated",1,"global",7.423866 -"HadGEM2-ES","ph","ocean","ph","rcp85",2294,"Simulated",1,"global",7.424147 -"HadGEM2-ES","ph","ocean","ph","rcp85",2295,"Simulated",1,"global",7.424099 -"HadGEM2-ES","ph","ocean","ph","rcp85",2296,"Simulated",1,"global",7.424163 -"HadGEM2-ES","ph","ocean","ph","rcp85",2297,"Simulated",1,"global",7.423904 -"HadGEM2-ES","ph","ocean","ph","rcp85",2298,"Simulated",1,"global",7.42427 -"HadGEM2-ES","ph","ocean","ph","rcp85",2299,"Simulated",1,"global",7.423815 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2005,"Simulated",1,"HL",8.090111 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.06829325 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.06469175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.06179575 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.06039925 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.0583075 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.0559345 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.05277375 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.0509225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.0482065 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.0460005 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.0430595 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.03977175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.03672475 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.03428275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.02991075 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.02758525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.025738 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.021634 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.01731175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.01485325 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.012428 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.0090095 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.00551275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",8.002424 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",7.99919275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",7.995332 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",7.99370825 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.98940525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.98562525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.98310675 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.97953625 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.975838 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.97211825 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.96753525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.9636795 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.9601705 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.95516875 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.952346 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.94772275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.94335175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.938138 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.934971 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.93124275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.92603225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.9224225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.91869225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.91433075 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.90908275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.90559575 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.90083625 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.8951175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.8903205 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.8855555 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.8818355 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.8771535 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.8720505 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.8667665 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.86246725 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.857095 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.85168025 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.8480805 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.8421715 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.83824225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.832446 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.82772675 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.82301175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.81845225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.812783 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.80755875 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.8026925 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.798651 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.793734 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.787841 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.783573 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.779557 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.774594 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.77000475 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.764875 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.7599085 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.75573425 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.750452 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.7468245 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.741603 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.73708625 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.7325545 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.728227 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.72336725 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.71900175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.7157385 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.71116625 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.7055155 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.70219175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.6978775 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.69475925 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.68943925 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2101,"Simulated",1,"HL",7.684608 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2102,"Simulated",1,"HL",7.67996 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2103,"Simulated",1,"HL",7.676621 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2104,"Simulated",1,"HL",7.672026 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2105,"Simulated",1,"HL",7.667322 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2106,"Simulated",1,"HL",7.662164 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2107,"Simulated",1,"HL",7.657654 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2108,"Simulated",1,"HL",7.654525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2109,"Simulated",1,"HL",7.651961 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2110,"Simulated",1,"HL",7.646748 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2111,"Simulated",1,"HL",7.643916 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2112,"Simulated",1,"HL",7.639871 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2113,"Simulated",1,"HL",7.633491 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2114,"Simulated",1,"HL",7.630407 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2115,"Simulated",1,"HL",7.628098 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2116,"Simulated",1,"HL",7.622597 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2117,"Simulated",1,"HL",7.618895 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2118,"Simulated",1,"HL",7.615296 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2119,"Simulated",1,"HL",7.61215 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2120,"Simulated",1,"HL",7.608637 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2121,"Simulated",1,"HL",7.604513 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2122,"Simulated",1,"HL",7.60237 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2123,"Simulated",1,"HL",7.598948 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2124,"Simulated",1,"HL",7.596229 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2125,"Simulated",1,"HL",7.591655 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2126,"Simulated",1,"HL",7.587705 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2127,"Simulated",1,"HL",7.584935 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2128,"Simulated",1,"HL",7.579757 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2129,"Simulated",1,"HL",7.574729 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2130,"Simulated",1,"HL",7.572078 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2131,"Simulated",1,"HL",7.569797 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2132,"Simulated",1,"HL",7.566457 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2133,"Simulated",1,"HL",7.562993 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2134,"Simulated",1,"HL",7.560142 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2135,"Simulated",1,"HL",7.557135 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2136,"Simulated",1,"HL",7.554745 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2137,"Simulated",1,"HL",7.550245 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2138,"Simulated",1,"HL",7.546368 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2139,"Simulated",1,"HL",7.542053 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2140,"Simulated",1,"HL",7.536903 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2141,"Simulated",1,"HL",7.534344 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2142,"Simulated",1,"HL",7.530971 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2143,"Simulated",1,"HL",7.528819 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2144,"Simulated",1,"HL",7.526523 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2145,"Simulated",1,"HL",7.524555 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2146,"Simulated",1,"HL",7.522711 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2147,"Simulated",1,"HL",7.517528 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2148,"Simulated",1,"HL",7.513925 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2149,"Simulated",1,"HL",7.510518 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2150,"Simulated",1,"HL",7.506264 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2151,"Simulated",1,"HL",7.504987 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2152,"Simulated",1,"HL",7.502535 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2153,"Simulated",1,"HL",7.501577 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2154,"Simulated",1,"HL",7.496878 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2155,"Simulated",1,"HL",7.492612 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2156,"Simulated",1,"HL",7.490498 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2157,"Simulated",1,"HL",7.487823 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2158,"Simulated",1,"HL",7.483498 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2159,"Simulated",1,"HL",7.482643 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2160,"Simulated",1,"HL",7.480822 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2161,"Simulated",1,"HL",7.477933 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2162,"Simulated",1,"HL",7.474859 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2163,"Simulated",1,"HL",7.470737 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2164,"Simulated",1,"HL",7.469488 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2165,"Simulated",1,"HL",7.466538 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2166,"Simulated",1,"HL",7.464444 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2167,"Simulated",1,"HL",7.462802 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2168,"Simulated",1,"HL",7.461921 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2169,"Simulated",1,"HL",7.457522 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2170,"Simulated",1,"HL",7.455178 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2171,"Simulated",1,"HL",7.453033 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2172,"Simulated",1,"HL",7.450913 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2173,"Simulated",1,"HL",7.447822 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2174,"Simulated",1,"HL",7.443573 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2175,"Simulated",1,"HL",7.44267 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2176,"Simulated",1,"HL",7.442567 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2177,"Simulated",1,"HL",7.44005 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2178,"Simulated",1,"HL",7.438052 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2179,"Simulated",1,"HL",7.436019 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2180,"Simulated",1,"HL",7.434001 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2181,"Simulated",1,"HL",7.433153 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2182,"Simulated",1,"HL",7.430595 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2183,"Simulated",1,"HL",7.429081 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2184,"Simulated",1,"HL",7.428606 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2185,"Simulated",1,"HL",7.427165 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2186,"Simulated",1,"HL",7.424953 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2187,"Simulated",1,"HL",7.42255 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2188,"Simulated",1,"HL",7.423165 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2189,"Simulated",1,"HL",7.420048 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2190,"Simulated",1,"HL",7.417583 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2191,"Simulated",1,"HL",7.41566 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2192,"Simulated",1,"HL",7.414542 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2193,"Simulated",1,"HL",7.414106 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2194,"Simulated",1,"HL",7.4132 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2195,"Simulated",1,"HL",7.410773 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2196,"Simulated",1,"HL",7.408682 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2197,"Simulated",1,"HL",7.40922 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2198,"Simulated",1,"HL",7.407474 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2199,"Simulated",1,"HL",7.405375 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2200,"Simulated",1,"HL",7.40469 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2201,"Simulated",1,"HL",7.401968 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2202,"Simulated",1,"HL",7.399699 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2203,"Simulated",1,"HL",7.399406 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2204,"Simulated",1,"HL",7.397423 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2205,"Simulated",1,"HL",7.396852 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2206,"Simulated",1,"HL",7.398095 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2207,"Simulated",1,"HL",7.395984 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2208,"Simulated",1,"HL",7.393791 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2209,"Simulated",1,"HL",7.394444 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2210,"Simulated",1,"HL",7.392813 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2211,"Simulated",1,"HL",7.39271 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2212,"Simulated",1,"HL",7.389744 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2213,"Simulated",1,"HL",7.389573 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2214,"Simulated",1,"HL",7.388823 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2215,"Simulated",1,"HL",7.388682 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2216,"Simulated",1,"HL",7.388767 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2217,"Simulated",1,"HL",7.387415 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2218,"Simulated",1,"HL",7.387179 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2219,"Simulated",1,"HL",7.386213 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2220,"Simulated",1,"HL",7.384964 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2221,"Simulated",1,"HL",7.383832 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2222,"Simulated",1,"HL",7.382088 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2223,"Simulated",1,"HL",7.383644 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2224,"Simulated",1,"HL",7.382579 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2225,"Simulated",1,"HL",7.38319 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2226,"Simulated",1,"HL",7.381326 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2227,"Simulated",1,"HL",7.379402 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2228,"Simulated",1,"HL",7.378822 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2229,"Simulated",1,"HL",7.378276 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2230,"Simulated",1,"HL",7.379746 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2231,"Simulated",1,"HL",7.378292 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2232,"Simulated",1,"HL",7.378311 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2233,"Simulated",1,"HL",7.377838 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2234,"Simulated",1,"HL",7.379073 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2235,"Simulated",1,"HL",7.377746 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2236,"Simulated",1,"HL",7.377423 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2237,"Simulated",1,"HL",7.376262 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2238,"Simulated",1,"HL",7.376079 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2239,"Simulated",1,"HL",7.37612 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2240,"Simulated",1,"HL",7.377053 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2241,"Simulated",1,"HL",7.377801 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2242,"Simulated",1,"HL",7.375985 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2243,"Simulated",1,"HL",7.375947 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2244,"Simulated",1,"HL",7.374864 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2245,"Simulated",1,"HL",7.374176 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2246,"Simulated",1,"HL",7.373848 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2247,"Simulated",1,"HL",7.373956 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2248,"Simulated",1,"HL",7.373419 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2249,"Simulated",1,"HL",7.373681 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2250,"Simulated",1,"HL",7.373551 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2251,"Simulated",1,"HL",7.373611 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2252,"Simulated",1,"HL",7.372731 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2253,"Simulated",1,"HL",7.37161 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2254,"Simulated",1,"HL",7.372625 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2255,"Simulated",1,"HL",7.373145 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2256,"Simulated",1,"HL",7.373831 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2257,"Simulated",1,"HL",7.373944 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2258,"Simulated",1,"HL",7.373507 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2259,"Simulated",1,"HL",7.373395 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2260,"Simulated",1,"HL",7.372979 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2261,"Simulated",1,"HL",7.372338 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2262,"Simulated",1,"HL",7.37407 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2263,"Simulated",1,"HL",7.373118 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2264,"Simulated",1,"HL",7.373143 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2265,"Simulated",1,"HL",7.373102 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2266,"Simulated",1,"HL",7.372952 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2267,"Simulated",1,"HL",7.374413 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2268,"Simulated",1,"HL",7.37356 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2269,"Simulated",1,"HL",7.373492 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2270,"Simulated",1,"HL",7.373868 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2271,"Simulated",1,"HL",7.374277 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2272,"Simulated",1,"HL",7.374914 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2273,"Simulated",1,"HL",7.3758 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2274,"Simulated",1,"HL",7.374129 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2275,"Simulated",1,"HL",7.373758 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2276,"Simulated",1,"HL",7.374044 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2277,"Simulated",1,"HL",7.373993 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2278,"Simulated",1,"HL",7.374823 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2279,"Simulated",1,"HL",7.373525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2280,"Simulated",1,"HL",7.373523 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2281,"Simulated",1,"HL",7.374863 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2282,"Simulated",1,"HL",7.375252 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2283,"Simulated",1,"HL",7.373489 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2284,"Simulated",1,"HL",7.373425 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2285,"Simulated",1,"HL",7.373462 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2286,"Simulated",1,"HL",7.373739 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2287,"Simulated",1,"HL",7.374786 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2288,"Simulated",1,"HL",7.374355 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2289,"Simulated",1,"HL",7.374344 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2290,"Simulated",1,"HL",7.373491 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2291,"Simulated",1,"HL",7.374026 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2292,"Simulated",1,"HL",7.374065 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2293,"Simulated",1,"HL",7.374615 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2294,"Simulated",1,"HL",7.372842 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2295,"Simulated",1,"HL",7.372033 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2296,"Simulated",1,"HL",7.37294 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2297,"Simulated",1,"HL",7.372516 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2298,"Simulated",1,"HL",7.37406 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2299,"Simulated",1,"HL",7.373063 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2005,"Simulated",1,"LL",8.0695945 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.06241725 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.06043525 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.0582155 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.056154 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.05405075 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.0519335 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.05022 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.04784225 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.04566975 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.043119 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.04070375 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.038261 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.03574525 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.0333955 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.03098175 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.02841325 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.0259735 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.02319425 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.02115875 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.0184275 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.0153495 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.012746 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.00999775 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.006748 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.003844 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.0012775 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",7.998179 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",7.99542075 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.992721 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.9889395 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.98593675 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.982687 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.97920325 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.97561825 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.97283975 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.9697605 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.966462 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.96284025 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.95903325 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.95515275 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.952003 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.94795875 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.9442515 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.94060625 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.936717 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.9332075 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.9288415 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.9247635 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.9207 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.91692725 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.91244075 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.908003 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.90381125 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.899356 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.8956475 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.891704 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.88763425 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.8835245 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.8795635 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.87454525 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.86982575 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.8654175 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.86065075 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.85648575 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.852373 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.848456 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.844029 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.83908125 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.83525425 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.8306485 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.826258 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.82170225 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.817253 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.8132465 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.80873625 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.80499875 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.80061625 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.79690125 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.7923985 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.787989 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.7832235 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.7794555 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.7751215 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.77180425 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.767189 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.76287575 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.75923175 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.75481225 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.7514465 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.747301 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.743288 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.738857 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.7355475 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.73162175 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.72873025 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2101,"Simulated",1,"LL",7.72353 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2102,"Simulated",1,"LL",7.719932 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2103,"Simulated",1,"LL",7.717056 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2104,"Simulated",1,"LL",7.712824 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2105,"Simulated",1,"LL",7.708875 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2106,"Simulated",1,"LL",7.704664 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2107,"Simulated",1,"LL",7.700434 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2108,"Simulated",1,"LL",7.69684 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2109,"Simulated",1,"LL",7.692826 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2110,"Simulated",1,"LL",7.690098 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2111,"Simulated",1,"LL",7.686502 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2112,"Simulated",1,"LL",7.683209 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2113,"Simulated",1,"LL",7.680187 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2114,"Simulated",1,"LL",7.675488 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2115,"Simulated",1,"LL",7.671436 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2116,"Simulated",1,"LL",7.668261 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2117,"Simulated",1,"LL",7.664339 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2118,"Simulated",1,"LL",7.661938 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2119,"Simulated",1,"LL",7.658161 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2120,"Simulated",1,"LL",7.654159 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2121,"Simulated",1,"LL",7.651519 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2122,"Simulated",1,"LL",7.647723 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2123,"Simulated",1,"LL",7.644797 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2124,"Simulated",1,"LL",7.641033 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2125,"Simulated",1,"LL",7.637698 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2126,"Simulated",1,"LL",7.635036 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2127,"Simulated",1,"LL",7.630895 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2128,"Simulated",1,"LL",7.627256 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2129,"Simulated",1,"LL",7.624817 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2130,"Simulated",1,"LL",7.621987 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2131,"Simulated",1,"LL",7.617757 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2132,"Simulated",1,"LL",7.614993 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2133,"Simulated",1,"LL",7.611659 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2134,"Simulated",1,"LL",7.608113 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2135,"Simulated",1,"LL",7.604845 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2136,"Simulated",1,"LL",7.60198 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2137,"Simulated",1,"LL",7.598797 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2138,"Simulated",1,"LL",7.596232 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2139,"Simulated",1,"LL",7.592479 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2140,"Simulated",1,"LL",7.589816 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2141,"Simulated",1,"LL",7.586299 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2142,"Simulated",1,"LL",7.583623 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2143,"Simulated",1,"LL",7.58067 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2144,"Simulated",1,"LL",7.578374 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2145,"Simulated",1,"LL",7.575054 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2146,"Simulated",1,"LL",7.57192 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2147,"Simulated",1,"LL",7.568717 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2148,"Simulated",1,"LL",7.565433 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2149,"Simulated",1,"LL",7.562997 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2150,"Simulated",1,"LL",7.559587 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2151,"Simulated",1,"LL",7.55734 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2152,"Simulated",1,"LL",7.554159 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2153,"Simulated",1,"LL",7.551103 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2154,"Simulated",1,"LL",7.548783 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2155,"Simulated",1,"LL",7.545924 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2156,"Simulated",1,"LL",7.543448 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2157,"Simulated",1,"LL",7.540932 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2158,"Simulated",1,"LL",7.538177 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2159,"Simulated",1,"LL",7.535025 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2160,"Simulated",1,"LL",7.532856 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2161,"Simulated",1,"LL",7.530608 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2162,"Simulated",1,"LL",7.528267 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2163,"Simulated",1,"LL",7.525988 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2164,"Simulated",1,"LL",7.523963 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2165,"Simulated",1,"LL",7.520976 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2166,"Simulated",1,"LL",7.518845 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2167,"Simulated",1,"LL",7.516786 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2168,"Simulated",1,"LL",7.514283 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2169,"Simulated",1,"LL",7.512537 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2170,"Simulated",1,"LL",7.510057 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2171,"Simulated",1,"LL",7.507835 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2172,"Simulated",1,"LL",7.506094 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2173,"Simulated",1,"LL",7.503338 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2174,"Simulated",1,"LL",7.502182 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2175,"Simulated",1,"LL",7.499822 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2176,"Simulated",1,"LL",7.498272 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2177,"Simulated",1,"LL",7.496912 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2178,"Simulated",1,"LL",7.494658 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2179,"Simulated",1,"LL",7.492746 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2180,"Simulated",1,"LL",7.49123 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2181,"Simulated",1,"LL",7.489054 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2182,"Simulated",1,"LL",7.487558 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2183,"Simulated",1,"LL",7.485792 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2184,"Simulated",1,"LL",7.483876 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2185,"Simulated",1,"LL",7.482685 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2186,"Simulated",1,"LL",7.480477 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2187,"Simulated",1,"LL",7.479506 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2188,"Simulated",1,"LL",7.478319 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2189,"Simulated",1,"LL",7.476442 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2190,"Simulated",1,"LL",7.474363 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2191,"Simulated",1,"LL",7.47299 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2192,"Simulated",1,"LL",7.471984 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2193,"Simulated",1,"LL",7.471028 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2194,"Simulated",1,"LL",7.469203 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2195,"Simulated",1,"LL",7.467968 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2196,"Simulated",1,"LL",7.466938 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2197,"Simulated",1,"LL",7.465719 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2198,"Simulated",1,"LL",7.464527 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2199,"Simulated",1,"LL",7.463815 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2200,"Simulated",1,"LL",7.462263 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2201,"Simulated",1,"LL",7.460864 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2202,"Simulated",1,"LL",7.45948 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2203,"Simulated",1,"LL",7.458535 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2204,"Simulated",1,"LL",7.45752 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2205,"Simulated",1,"LL",7.456312 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2206,"Simulated",1,"LL",7.455266 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2207,"Simulated",1,"LL",7.453727 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2208,"Simulated",1,"LL",7.452723 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2209,"Simulated",1,"LL",7.451657 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2210,"Simulated",1,"LL",7.450696 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2211,"Simulated",1,"LL",7.449613 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2212,"Simulated",1,"LL",7.449107 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2213,"Simulated",1,"LL",7.448274 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2214,"Simulated",1,"LL",7.4472 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2215,"Simulated",1,"LL",7.446218 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2216,"Simulated",1,"LL",7.44566 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2217,"Simulated",1,"LL",7.445119 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2218,"Simulated",1,"LL",7.4445 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2219,"Simulated",1,"LL",7.443758 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2220,"Simulated",1,"LL",7.442961 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2221,"Simulated",1,"LL",7.442586 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2222,"Simulated",1,"LL",7.441802 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2223,"Simulated",1,"LL",7.441285 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2224,"Simulated",1,"LL",7.441068 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2225,"Simulated",1,"LL",7.440136 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2226,"Simulated",1,"LL",7.439897 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2227,"Simulated",1,"LL",7.438976 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2228,"Simulated",1,"LL",7.438531 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2229,"Simulated",1,"LL",7.438361 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2230,"Simulated",1,"LL",7.437647 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2231,"Simulated",1,"LL",7.43733 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2232,"Simulated",1,"LL",7.437187 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2233,"Simulated",1,"LL",7.436546 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2234,"Simulated",1,"LL",7.43639 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2235,"Simulated",1,"LL",7.435862 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2236,"Simulated",1,"LL",7.435819 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2237,"Simulated",1,"LL",7.435422 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2238,"Simulated",1,"LL",7.435362 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2239,"Simulated",1,"LL",7.435183 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2240,"Simulated",1,"LL",7.434972 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2241,"Simulated",1,"LL",7.434681 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2242,"Simulated",1,"LL",7.434094 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2243,"Simulated",1,"LL",7.434158 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2244,"Simulated",1,"LL",7.433908 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2245,"Simulated",1,"LL",7.434205 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2246,"Simulated",1,"LL",7.433797 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2247,"Simulated",1,"LL",7.434294 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2248,"Simulated",1,"LL",7.433823 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2249,"Simulated",1,"LL",7.433471 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2250,"Simulated",1,"LL",7.433785 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2251,"Simulated",1,"LL",7.433487 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2252,"Simulated",1,"LL",7.433367 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2253,"Simulated",1,"LL",7.433101 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2254,"Simulated",1,"LL",7.433314 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2255,"Simulated",1,"LL",7.433299 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2256,"Simulated",1,"LL",7.433427 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2257,"Simulated",1,"LL",7.433406 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2258,"Simulated",1,"LL",7.433752 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2259,"Simulated",1,"LL",7.433352 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2260,"Simulated",1,"LL",7.433753 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2261,"Simulated",1,"LL",7.433514 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2262,"Simulated",1,"LL",7.433518 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2263,"Simulated",1,"LL",7.433672 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2264,"Simulated",1,"LL",7.433682 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2265,"Simulated",1,"LL",7.433777 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2266,"Simulated",1,"LL",7.433517 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2267,"Simulated",1,"LL",7.433523 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2268,"Simulated",1,"LL",7.433694 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2269,"Simulated",1,"LL",7.433234 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2270,"Simulated",1,"LL",7.433641 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2271,"Simulated",1,"LL",7.433884 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2272,"Simulated",1,"LL",7.433298 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2273,"Simulated",1,"LL",7.433545 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2274,"Simulated",1,"LL",7.433449 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2275,"Simulated",1,"LL",7.433556 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2276,"Simulated",1,"LL",7.433705 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2277,"Simulated",1,"LL",7.433495 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2278,"Simulated",1,"LL",7.433267 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2279,"Simulated",1,"LL",7.433584 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2280,"Simulated",1,"LL",7.433532 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2281,"Simulated",1,"LL",7.432935 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2282,"Simulated",1,"LL",7.433255 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2283,"Simulated",1,"LL",7.433228 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2284,"Simulated",1,"LL",7.433258 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2285,"Simulated",1,"LL",7.433564 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2286,"Simulated",1,"LL",7.433684 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2287,"Simulated",1,"LL",7.433435 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2288,"Simulated",1,"LL",7.43334 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2289,"Simulated",1,"LL",7.433311 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2290,"Simulated",1,"LL",7.433483 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2291,"Simulated",1,"LL",7.433582 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2292,"Simulated",1,"LL",7.433323 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2293,"Simulated",1,"LL",7.433064 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2294,"Simulated",1,"LL",7.433728 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2295,"Simulated",1,"LL",7.433822 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2296,"Simulated",1,"LL",7.433729 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2297,"Simulated",1,"LL",7.433501 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2298,"Simulated",1,"LL",7.433647 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2299,"Simulated",1,"LL",7.433293 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.065077 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.06345375 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.06137075 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.05933575 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.0575585 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.05556125 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.05324125 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.05109075 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.04903675 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.0465655 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.044375 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.04178425 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.03980725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.037391 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.03479225 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.032513 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.02940875 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.02655825 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.024052 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.0214415 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.018757 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.0159375 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.013382 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.0104375 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.00745875 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.004271 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",8.0011595 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",7.99834475 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.9953925 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.99227525 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.98892725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.98603625 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.98248525 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.979278 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.9759275 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.9725165 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.968851 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.96568225 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.961918 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.95846825 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.95474 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.951232 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.94733975 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.94340025 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.93948475 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.93561975 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.9316495 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.92725725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.923385 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.919378 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.9151275 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.91098375 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.90693775 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.902552 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.89831975 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.89383075 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.88922025 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.884695 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.88066075 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.8761285 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.87167925 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.867614 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.862874 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.85853025 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.85391175 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.84978475 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.845476 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.84069675 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.83653925 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.83220825 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.82771425 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.8233065 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.8188975 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.8145535 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.81005075 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.80562725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.8014035 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.79704675 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.7926725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.78861475 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.78460875 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.78035675 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.7761615 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.7719165 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.76730675 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.76349925 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.7590645 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.7552055 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.75127625 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.747178 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.743381 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.73909025 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.73514625 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.73109975 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.7272895 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2101,"Simulated",1,"global",7.722569 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2102,"Simulated",1,"global",7.718913 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2103,"Simulated",1,"global",7.715371 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2104,"Simulated",1,"global",7.711591 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2105,"Simulated",1,"global",7.707866 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2106,"Simulated",1,"global",7.704131 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2107,"Simulated",1,"global",7.700339 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2108,"Simulated",1,"global",7.696706 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2109,"Simulated",1,"global",7.693018 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2110,"Simulated",1,"global",7.688704 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2111,"Simulated",1,"global",7.685237 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2112,"Simulated",1,"global",7.68169 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2113,"Simulated",1,"global",7.678117 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2114,"Simulated",1,"global",7.674479 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2115,"Simulated",1,"global",7.671098 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2116,"Simulated",1,"global",7.667652 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2117,"Simulated",1,"global",7.664317 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2118,"Simulated",1,"global",7.660641 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2119,"Simulated",1,"global",7.657174 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2120,"Simulated",1,"global",7.653841 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2121,"Simulated",1,"global",7.650216 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2122,"Simulated",1,"global",7.646621 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2123,"Simulated",1,"global",7.64321 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2124,"Simulated",1,"global",7.639496 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2125,"Simulated",1,"global",7.63645 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2126,"Simulated",1,"global",7.632833 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2127,"Simulated",1,"global",7.629542 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2128,"Simulated",1,"global",7.626526 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2129,"Simulated",1,"global",7.623254 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2130,"Simulated",1,"global",7.620103 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2131,"Simulated",1,"global",7.616282 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2132,"Simulated",1,"global",7.613298 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2133,"Simulated",1,"global",7.609691 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2134,"Simulated",1,"global",7.60652 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2135,"Simulated",1,"global",7.603276 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2136,"Simulated",1,"global",7.600222 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2137,"Simulated",1,"global",7.597387 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2138,"Simulated",1,"global",7.594147 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2139,"Simulated",1,"global",7.591003 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2140,"Simulated",1,"global",7.587878 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2141,"Simulated",1,"global",7.585001 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2142,"Simulated",1,"global",7.581533 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2143,"Simulated",1,"global",7.578394 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2144,"Simulated",1,"global",7.575331 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2145,"Simulated",1,"global",7.572398 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2146,"Simulated",1,"global",7.569878 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2147,"Simulated",1,"global",7.566792 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2148,"Simulated",1,"global",7.564074 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2149,"Simulated",1,"global",7.561123 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2150,"Simulated",1,"global",7.55812 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2151,"Simulated",1,"global",7.555221 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2152,"Simulated",1,"global",7.552247 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2153,"Simulated",1,"global",7.549544 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2154,"Simulated",1,"global",7.546738 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2155,"Simulated",1,"global",7.544006 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2156,"Simulated",1,"global",7.541169 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2157,"Simulated",1,"global",7.538755 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2158,"Simulated",1,"global",7.536344 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2159,"Simulated",1,"global",7.533737 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2160,"Simulated",1,"global",7.531312 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2161,"Simulated",1,"global",7.528578 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2162,"Simulated",1,"global",7.526427 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2163,"Simulated",1,"global",7.524064 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2164,"Simulated",1,"global",7.521824 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2165,"Simulated",1,"global",7.519469 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2166,"Simulated",1,"global",7.516815 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2167,"Simulated",1,"global",7.514556 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2168,"Simulated",1,"global",7.512213 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2169,"Simulated",1,"global",7.510351 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2170,"Simulated",1,"global",7.508093 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2171,"Simulated",1,"global",7.505869 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2172,"Simulated",1,"global",7.503785 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2173,"Simulated",1,"global",7.501683 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2174,"Simulated",1,"global",7.499599 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2175,"Simulated",1,"global",7.497899 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2176,"Simulated",1,"global",7.496028 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2177,"Simulated",1,"global",7.494126 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2178,"Simulated",1,"global",7.4923 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2179,"Simulated",1,"global",7.490537 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2180,"Simulated",1,"global",7.488809 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2181,"Simulated",1,"global",7.486875 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2182,"Simulated",1,"global",7.48478 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2183,"Simulated",1,"global",7.483234 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2184,"Simulated",1,"global",7.481767 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2185,"Simulated",1,"global",7.479757 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2186,"Simulated",1,"global",7.478389 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2187,"Simulated",1,"global",7.476892 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2188,"Simulated",1,"global",7.475449 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2189,"Simulated",1,"global",7.473843 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2190,"Simulated",1,"global",7.472515 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2191,"Simulated",1,"global",7.471313 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2192,"Simulated",1,"global",7.469774 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2193,"Simulated",1,"global",7.468543 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2194,"Simulated",1,"global",7.467059 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2195,"Simulated",1,"global",7.465525 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2196,"Simulated",1,"global",7.464401 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2197,"Simulated",1,"global",7.463417 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2198,"Simulated",1,"global",7.46215 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2199,"Simulated",1,"global",7.460773 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2200,"Simulated",1,"global",7.459513 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2201,"Simulated",1,"global",7.458546 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2202,"Simulated",1,"global",7.457126 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2203,"Simulated",1,"global",7.456155 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2204,"Simulated",1,"global",7.454796 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2205,"Simulated",1,"global",7.453591 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2206,"Simulated",1,"global",7.452758 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2207,"Simulated",1,"global",7.451573 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2208,"Simulated",1,"global",7.450609 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2209,"Simulated",1,"global",7.449716 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2210,"Simulated",1,"global",7.44898 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2211,"Simulated",1,"global",7.447711 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2212,"Simulated",1,"global",7.446823 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2213,"Simulated",1,"global",7.446153 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2214,"Simulated",1,"global",7.445395 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2215,"Simulated",1,"global",7.444592 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2216,"Simulated",1,"global",7.443706 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2217,"Simulated",1,"global",7.442828 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2218,"Simulated",1,"global",7.442084 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2219,"Simulated",1,"global",7.441376 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2220,"Simulated",1,"global",7.440494 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2221,"Simulated",1,"global",7.439996 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2222,"Simulated",1,"global",7.43971 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2223,"Simulated",1,"global",7.439224 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2224,"Simulated",1,"global",7.43846 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2225,"Simulated",1,"global",7.437854 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2226,"Simulated",1,"global",7.437661 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2227,"Simulated",1,"global",7.437154 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2228,"Simulated",1,"global",7.436821 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2229,"Simulated",1,"global",7.436403 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2230,"Simulated",1,"global",7.435987 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2231,"Simulated",1,"global",7.435739 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2232,"Simulated",1,"global",7.43574 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2233,"Simulated",1,"global",7.435181 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2234,"Simulated",1,"global",7.434825 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2235,"Simulated",1,"global",7.434595 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2236,"Simulated",1,"global",7.434319 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2237,"Simulated",1,"global",7.433989 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2238,"Simulated",1,"global",7.433346 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2239,"Simulated",1,"global",7.433351 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2240,"Simulated",1,"global",7.433544 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2241,"Simulated",1,"global",7.433413 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2242,"Simulated",1,"global",7.433095 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2243,"Simulated",1,"global",7.432856 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2244,"Simulated",1,"global",7.432885 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2245,"Simulated",1,"global",7.432861 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2246,"Simulated",1,"global",7.432507 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2247,"Simulated",1,"global",7.432489 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2248,"Simulated",1,"global",7.432487 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2249,"Simulated",1,"global",7.4325 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2250,"Simulated",1,"global",7.432688 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2251,"Simulated",1,"global",7.432808 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2252,"Simulated",1,"global",7.4325 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2253,"Simulated",1,"global",7.432055 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2254,"Simulated",1,"global",7.432132 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2255,"Simulated",1,"global",7.432508 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2256,"Simulated",1,"global",7.432563 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2257,"Simulated",1,"global",7.432572 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2258,"Simulated",1,"global",7.432725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2259,"Simulated",1,"global",7.432345 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2260,"Simulated",1,"global",7.432763 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2261,"Simulated",1,"global",7.432766 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2262,"Simulated",1,"global",7.432864 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2263,"Simulated",1,"global",7.432669 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2264,"Simulated",1,"global",7.43269 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2265,"Simulated",1,"global",7.432365 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2266,"Simulated",1,"global",7.43269 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2267,"Simulated",1,"global",7.432893 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2268,"Simulated",1,"global",7.432726 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2269,"Simulated",1,"global",7.432568 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2270,"Simulated",1,"global",7.432313 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2271,"Simulated",1,"global",7.432691 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2272,"Simulated",1,"global",7.432539 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2273,"Simulated",1,"global",7.432468 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2274,"Simulated",1,"global",7.432631 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2275,"Simulated",1,"global",7.432665 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2276,"Simulated",1,"global",7.432614 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2277,"Simulated",1,"global",7.432584 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2278,"Simulated",1,"global",7.432465 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2279,"Simulated",1,"global",7.432248 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2280,"Simulated",1,"global",7.432212 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2281,"Simulated",1,"global",7.43215 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2282,"Simulated",1,"global",7.432457 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2283,"Simulated",1,"global",7.432541 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2284,"Simulated",1,"global",7.43264 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2285,"Simulated",1,"global",7.432781 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2286,"Simulated",1,"global",7.432902 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2287,"Simulated",1,"global",7.432877 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2288,"Simulated",1,"global",7.433172 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2289,"Simulated",1,"global",7.433134 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2290,"Simulated",1,"global",7.432957 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2291,"Simulated",1,"global",7.433053 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2292,"Simulated",1,"global",7.433095 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2293,"Simulated",1,"global",7.433033 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2294,"Simulated",1,"global",7.433215 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2295,"Simulated",1,"global",7.433187 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2296,"Simulated",1,"global",7.433332 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2297,"Simulated",1,"global",7.43349 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2298,"Simulated",1,"global",7.433462 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2299,"Simulated",1,"global",7.433251 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2300,"Simulated",1,"global",7.433103 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.05771775 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.05592375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.054032 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.05201775 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.05092275 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.049034 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.0450035 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.04312025 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.04099075 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.03779125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.03567275 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.034048 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.03082225 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.02862575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.02568625 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.0230455 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.01909975 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.0172015 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.01404625 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.01085125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.00831025 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.00535725 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.00291525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",7.99959575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",7.9959625 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",7.99160825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",7.988278 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.98470475 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.98290075 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.97898675 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.97568475 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.9721035 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.96911525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.9643825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.961262 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.956901 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.9536485 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.950691 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.9455605 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.94186525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.93857625 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.9347515 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.93057875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.92581025 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.921822 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.91735525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.91354875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.90747425 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.9030375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.8987885 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.894409 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.88977825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.8861865 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.88069375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.87663 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.871263 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.8658205 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.86106425 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.85702375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.85222225 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.84693875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.8428065 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.837023 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.8325165 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.8274565 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.82273575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.8179925 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.8125875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.8074205 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.80298875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.7984445 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.79325875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.78924975 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.78406625 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.7781215 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.77306525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.76830525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.76413425 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.7586125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.75437575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.7504235 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.7458375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.74110675 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.7361945 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.73101825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.7253795 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.720125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.71601325 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.71256375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.7085345 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.7040765 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.69963825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.69513075 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.69025575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.686555 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2101,"Simulated",1,"HL",7.679237 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2102,"Simulated",1,"HL",7.675242 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2103,"Simulated",1,"HL",7.671811 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2104,"Simulated",1,"HL",7.667521 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2105,"Simulated",1,"HL",7.663599 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2106,"Simulated",1,"HL",7.660555 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2107,"Simulated",1,"HL",7.655984 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2108,"Simulated",1,"HL",7.652205 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2109,"Simulated",1,"HL",7.648903 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2110,"Simulated",1,"HL",7.642663 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2111,"Simulated",1,"HL",7.63842 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2112,"Simulated",1,"HL",7.63474 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2113,"Simulated",1,"HL",7.631478 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2114,"Simulated",1,"HL",7.627567 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2115,"Simulated",1,"HL",7.62367 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2116,"Simulated",1,"HL",7.620251 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2117,"Simulated",1,"HL",7.61674 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2118,"Simulated",1,"HL",7.612197 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2119,"Simulated",1,"HL",7.608063 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2120,"Simulated",1,"HL",7.604963 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2121,"Simulated",1,"HL",7.600895 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2122,"Simulated",1,"HL",7.595279 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2123,"Simulated",1,"HL",7.590318 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2124,"Simulated",1,"HL",7.586226 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2125,"Simulated",1,"HL",7.582882 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2126,"Simulated",1,"HL",7.578858 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2127,"Simulated",1,"HL",7.573874 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2128,"Simulated",1,"HL",7.572605 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2129,"Simulated",1,"HL",7.569099 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2130,"Simulated",1,"HL",7.565981 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2131,"Simulated",1,"HL",7.560379 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2132,"Simulated",1,"HL",7.556796 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2133,"Simulated",1,"HL",7.552958 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2134,"Simulated",1,"HL",7.548578 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2135,"Simulated",1,"HL",7.544745 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2136,"Simulated",1,"HL",7.541352 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2137,"Simulated",1,"HL",7.539134 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2138,"Simulated",1,"HL",7.53542 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2139,"Simulated",1,"HL",7.532191 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2140,"Simulated",1,"HL",7.528129 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2141,"Simulated",1,"HL",7.525798 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2142,"Simulated",1,"HL",7.520924 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2143,"Simulated",1,"HL",7.516844 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2144,"Simulated",1,"HL",7.513293 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2145,"Simulated",1,"HL",7.509945 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2146,"Simulated",1,"HL",7.508332 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2147,"Simulated",1,"HL",7.504875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2148,"Simulated",1,"HL",7.502272 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2149,"Simulated",1,"HL",7.498283 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2150,"Simulated",1,"HL",7.49529 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2151,"Simulated",1,"HL",7.490938 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2152,"Simulated",1,"HL",7.487669 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2153,"Simulated",1,"HL",7.485466 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2154,"Simulated",1,"HL",7.481567 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2155,"Simulated",1,"HL",7.47892 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2156,"Simulated",1,"HL",7.475672 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2157,"Simulated",1,"HL",7.472575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2158,"Simulated",1,"HL",7.471327 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2159,"Simulated",1,"HL",7.469132 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2160,"Simulated",1,"HL",7.465949 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2161,"Simulated",1,"HL",7.462157 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2162,"Simulated",1,"HL",7.459978 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2163,"Simulated",1,"HL",7.457531 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2164,"Simulated",1,"HL",7.455575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2165,"Simulated",1,"HL",7.452882 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2166,"Simulated",1,"HL",7.44847 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2167,"Simulated",1,"HL",7.446365 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2168,"Simulated",1,"HL",7.443831 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2169,"Simulated",1,"HL",7.441218 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2170,"Simulated",1,"HL",7.438484 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2171,"Simulated",1,"HL",7.435515 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2172,"Simulated",1,"HL",7.433396 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2173,"Simulated",1,"HL",7.43184 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2174,"Simulated",1,"HL",7.42905 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2175,"Simulated",1,"HL",7.427183 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2176,"Simulated",1,"HL",7.426066 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2177,"Simulated",1,"HL",7.423113 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2178,"Simulated",1,"HL",7.420168 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2179,"Simulated",1,"HL",7.418725 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2180,"Simulated",1,"HL",7.416851 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2181,"Simulated",1,"HL",7.414307 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2182,"Simulated",1,"HL",7.411879 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2183,"Simulated",1,"HL",7.410332 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2184,"Simulated",1,"HL",7.408415 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2185,"Simulated",1,"HL",7.40595 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2186,"Simulated",1,"HL",7.404277 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2187,"Simulated",1,"HL",7.403097 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2188,"Simulated",1,"HL",7.402492 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2189,"Simulated",1,"HL",7.399936 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2190,"Simulated",1,"HL",7.397691 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2191,"Simulated",1,"HL",7.396654 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2192,"Simulated",1,"HL",7.396024 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2193,"Simulated",1,"HL",7.394562 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2194,"Simulated",1,"HL",7.392158 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2195,"Simulated",1,"HL",7.390028 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2196,"Simulated",1,"HL",7.389638 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2197,"Simulated",1,"HL",7.388684 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2198,"Simulated",1,"HL",7.387741 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2199,"Simulated",1,"HL",7.385717 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2200,"Simulated",1,"HL",7.384129 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2201,"Simulated",1,"HL",7.382826 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2202,"Simulated",1,"HL",7.380305 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2203,"Simulated",1,"HL",7.379627 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2204,"Simulated",1,"HL",7.378245 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2205,"Simulated",1,"HL",7.375391 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2206,"Simulated",1,"HL",7.374634 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2207,"Simulated",1,"HL",7.372856 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2208,"Simulated",1,"HL",7.372441 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2209,"Simulated",1,"HL",7.370861 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2210,"Simulated",1,"HL",7.369249 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2211,"Simulated",1,"HL",7.368084 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2212,"Simulated",1,"HL",7.367616 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2213,"Simulated",1,"HL",7.36753 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2214,"Simulated",1,"HL",7.365745 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2215,"Simulated",1,"HL",7.364359 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2216,"Simulated",1,"HL",7.363773 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2217,"Simulated",1,"HL",7.362555 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2218,"Simulated",1,"HL",7.361479 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2219,"Simulated",1,"HL",7.360163 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2220,"Simulated",1,"HL",7.360022 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2221,"Simulated",1,"HL",7.359693 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2222,"Simulated",1,"HL",7.358939 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2223,"Simulated",1,"HL",7.35859 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2224,"Simulated",1,"HL",7.357733 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2225,"Simulated",1,"HL",7.357597 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2226,"Simulated",1,"HL",7.357899 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2227,"Simulated",1,"HL",7.357324 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2228,"Simulated",1,"HL",7.356386 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2229,"Simulated",1,"HL",7.356467 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2230,"Simulated",1,"HL",7.355667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2231,"Simulated",1,"HL",7.355216 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2232,"Simulated",1,"HL",7.355 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2233,"Simulated",1,"HL",7.354147 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2234,"Simulated",1,"HL",7.35396 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2235,"Simulated",1,"HL",7.354229 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2236,"Simulated",1,"HL",7.353737 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2237,"Simulated",1,"HL",7.353732 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2238,"Simulated",1,"HL",7.352953 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2239,"Simulated",1,"HL",7.35281 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2240,"Simulated",1,"HL",7.352133 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2241,"Simulated",1,"HL",7.352506 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2242,"Simulated",1,"HL",7.351806 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2243,"Simulated",1,"HL",7.351162 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2244,"Simulated",1,"HL",7.35173 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2245,"Simulated",1,"HL",7.351141 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2246,"Simulated",1,"HL",7.350737 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2247,"Simulated",1,"HL",7.351084 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2248,"Simulated",1,"HL",7.351095 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2249,"Simulated",1,"HL",7.350955 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2250,"Simulated",1,"HL",7.350751 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2251,"Simulated",1,"HL",7.350735 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2252,"Simulated",1,"HL",7.350248 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2253,"Simulated",1,"HL",7.349164 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2254,"Simulated",1,"HL",7.348311 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2255,"Simulated",1,"HL",7.349249 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2256,"Simulated",1,"HL",7.349674 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2257,"Simulated",1,"HL",7.349953 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2258,"Simulated",1,"HL",7.350225 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2259,"Simulated",1,"HL",7.347975 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2260,"Simulated",1,"HL",7.34913 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2261,"Simulated",1,"HL",7.349026 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2262,"Simulated",1,"HL",7.34944 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2263,"Simulated",1,"HL",7.348382 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2264,"Simulated",1,"HL",7.348441 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2265,"Simulated",1,"HL",7.348434 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2266,"Simulated",1,"HL",7.34912 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2267,"Simulated",1,"HL",7.348389 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2268,"Simulated",1,"HL",7.349785 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2269,"Simulated",1,"HL",7.349219 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2270,"Simulated",1,"HL",7.348314 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2271,"Simulated",1,"HL",7.348724 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2272,"Simulated",1,"HL",7.349267 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2273,"Simulated",1,"HL",7.348142 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2274,"Simulated",1,"HL",7.348163 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2275,"Simulated",1,"HL",7.348805 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2276,"Simulated",1,"HL",7.348347 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2277,"Simulated",1,"HL",7.34866 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2278,"Simulated",1,"HL",7.348512 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2279,"Simulated",1,"HL",7.348398 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2280,"Simulated",1,"HL",7.347296 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2281,"Simulated",1,"HL",7.347331 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2282,"Simulated",1,"HL",7.347075 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2283,"Simulated",1,"HL",7.347019 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2284,"Simulated",1,"HL",7.34828 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2285,"Simulated",1,"HL",7.348802 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2286,"Simulated",1,"HL",7.348844 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2287,"Simulated",1,"HL",7.348115 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2288,"Simulated",1,"HL",7.348088 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2289,"Simulated",1,"HL",7.347606 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2290,"Simulated",1,"HL",7.347814 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2291,"Simulated",1,"HL",7.348217 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2292,"Simulated",1,"HL",7.348944 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2293,"Simulated",1,"HL",7.348113 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2294,"Simulated",1,"HL",7.348731 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2295,"Simulated",1,"HL",7.349015 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2296,"Simulated",1,"HL",7.348781 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2297,"Simulated",1,"HL",7.349798 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2298,"Simulated",1,"HL",7.348757 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2299,"Simulated",1,"HL",7.348345 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2300,"Simulated",1,"HL",7.348225 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.0666775 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.065091 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.0629665 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.060927 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.05900125 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.05698075 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.05503225 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.05282425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.05078625 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.0484735 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.04626725 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.04346675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.04176125 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.03929725 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.03677225 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.03457175 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.0316505 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.02859275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.02622775 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.0237445 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.0210285 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.01823825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.015658 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.01279475 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.00995825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.00702425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",8.0039605 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",8.00131075 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.9981085 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.9951645 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.99180675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.989066 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.9853925 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.982517 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.9791165 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.975912 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.97215675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.968942 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.96547525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.96207825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.958255 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.95481525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.950984 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.94722525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.9433255 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.93959125 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.93558525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.931559 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.9278095 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.9238555 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.919633 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.91559475 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.91145 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.9073045 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.903036 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.89873775 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.89430825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.88983325 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.88580075 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.88132675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.877059 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.87300825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.8684955 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.864187 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.85966425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.8556665 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.851452 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.84680925 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.842871 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.83856175 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.83407875 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.82984025 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.82534425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.8211825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.81699375 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.8127075 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.80860025 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.80420325 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.80007875 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.79605975 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.792042 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.78786275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.783784 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.779684 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.775198 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.77178825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.767532 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.76372775 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.75969425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.755581 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.7519275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.747669 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.7438475 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.7399815 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.736147 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2101,"Simulated",1,"LL",7.731992 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2102,"Simulated",1,"LL",7.728409 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2103,"Simulated",1,"LL",7.724842 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2104,"Simulated",1,"LL",7.721174 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2105,"Simulated",1,"LL",7.717492 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2106,"Simulated",1,"LL",7.713606 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2107,"Simulated",1,"LL",7.709984 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2108,"Simulated",1,"LL",7.706382 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2109,"Simulated",1,"LL",7.702611 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2110,"Simulated",1,"LL",7.698716 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2111,"Simulated",1,"LL",7.695417 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2112,"Simulated",1,"LL",7.691899 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2113,"Simulated",1,"LL",7.688259 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2114,"Simulated",1,"LL",7.68468 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2115,"Simulated",1,"LL",7.681411 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2116,"Simulated",1,"LL",7.67796 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2117,"Simulated",1,"LL",7.674662 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2118,"Simulated",1,"LL",7.671175 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2119,"Simulated",1,"LL",7.667853 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2120,"Simulated",1,"LL",7.66447 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2121,"Simulated",1,"LL",7.660941 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2122,"Simulated",1,"LL",7.657785 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2123,"Simulated",1,"LL",7.654711 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2124,"Simulated",1,"LL",7.651079 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2125,"Simulated",1,"LL",7.648098 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2126,"Simulated",1,"LL",7.644569 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2127,"Simulated",1,"LL",7.641647 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2128,"Simulated",1,"LL",7.638251 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2129,"Simulated",1,"LL",7.635029 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2130,"Simulated",1,"LL",7.631871 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2131,"Simulated",1,"LL",7.628437 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2132,"Simulated",1,"LL",7.625584 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2133,"Simulated",1,"LL",7.622028 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2134,"Simulated",1,"LL",7.619119 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2135,"Simulated",1,"LL",7.616003 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2136,"Simulated",1,"LL",7.613024 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2137,"Simulated",1,"LL",7.610054 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2138,"Simulated",1,"LL",7.606917 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2139,"Simulated",1,"LL",7.603791 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2140,"Simulated",1,"LL",7.600871 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2141,"Simulated",1,"LL",7.597874 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2142,"Simulated",1,"LL",7.594712 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2143,"Simulated",1,"LL",7.591777 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2144,"Simulated",1,"LL",7.588821 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2145,"Simulated",1,"LL",7.585979 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2146,"Simulated",1,"LL",7.58326 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2147,"Simulated",1,"LL",7.580255 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2148,"Simulated",1,"LL",7.577513 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2149,"Simulated",1,"LL",7.574788 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2150,"Simulated",1,"LL",7.571783 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2151,"Simulated",1,"LL",7.569199 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2152,"Simulated",1,"LL",7.56629 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2153,"Simulated",1,"LL",7.563478 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2154,"Simulated",1,"LL",7.560909 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2155,"Simulated",1,"LL",7.558159 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2156,"Simulated",1,"LL",7.555411 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2157,"Simulated",1,"LL",7.553145 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2158,"Simulated",1,"LL",7.550481 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2159,"Simulated",1,"LL",7.547785 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2160,"Simulated",1,"LL",7.545525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2161,"Simulated",1,"LL",7.543021 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2162,"Simulated",1,"LL",7.540876 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2163,"Simulated",1,"LL",7.538532 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2164,"Simulated",1,"LL",7.53623 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2165,"Simulated",1,"LL",7.533948 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2166,"Simulated",1,"LL",7.531676 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2167,"Simulated",1,"LL",7.529383 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2168,"Simulated",1,"LL",7.527082 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2169,"Simulated",1,"LL",7.525384 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2170,"Simulated",1,"LL",7.52323 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2171,"Simulated",1,"LL",7.521167 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2172,"Simulated",1,"LL",7.51909 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2173,"Simulated",1,"LL",7.51687 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2174,"Simulated",1,"LL",7.514939 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2175,"Simulated",1,"LL",7.513276 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2176,"Simulated",1,"LL",7.511241 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2177,"Simulated",1,"LL",7.509567 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2178,"Simulated",1,"LL",7.507985 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2179,"Simulated",1,"LL",7.506152 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2180,"Simulated",1,"LL",7.504456 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2181,"Simulated",1,"LL",7.502655 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2182,"Simulated",1,"LL",7.500632 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2183,"Simulated",1,"LL",7.499086 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2184,"Simulated",1,"LL",7.497717 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2185,"Simulated",1,"LL",7.495806 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2186,"Simulated",1,"LL",7.494504 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2187,"Simulated",1,"LL",7.492939 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2188,"Simulated",1,"LL",7.491313 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2189,"Simulated",1,"LL",7.489914 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2190,"Simulated",1,"LL",7.488785 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2191,"Simulated",1,"LL",7.487547 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2192,"Simulated",1,"LL",7.485811 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2193,"Simulated",1,"LL",7.48463 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2194,"Simulated",1,"LL",7.483346 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2195,"Simulated",1,"LL",7.481941 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2196,"Simulated",1,"LL",7.480658 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2197,"Simulated",1,"LL",7.479667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2198,"Simulated",1,"LL",7.478329 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2199,"Simulated",1,"LL",7.477094 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2200,"Simulated",1,"LL",7.475905 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2201,"Simulated",1,"LL",7.475011 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2202,"Simulated",1,"LL",7.47383 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2203,"Simulated",1,"LL",7.472796 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2204,"Simulated",1,"LL",7.471442 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2205,"Simulated",1,"LL",7.470595 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2206,"Simulated",1,"LL",7.469746 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2207,"Simulated",1,"LL",7.46869 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2208,"Simulated",1,"LL",7.467606 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2209,"Simulated",1,"LL",7.466863 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2210,"Simulated",1,"LL",7.466318 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2211,"Simulated",1,"LL",7.465026 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2212,"Simulated",1,"LL",7.464046 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2213,"Simulated",1,"LL",7.463249 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2214,"Simulated",1,"LL",7.462714 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2215,"Simulated",1,"LL",7.462038 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2216,"Simulated",1,"LL",7.461087 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2217,"Simulated",1,"LL",7.460283 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2218,"Simulated",1,"LL",7.459611 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2219,"Simulated",1,"LL",7.459035 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2220,"Simulated",1,"LL",7.457992 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2221,"Simulated",1,"LL",7.457457 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2222,"Simulated",1,"LL",7.457273 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2223,"Simulated",1,"LL",7.456758 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2224,"Simulated",1,"LL",7.456014 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2225,"Simulated",1,"LL",7.455305 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2226,"Simulated",1,"LL",7.455005 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2227,"Simulated",1,"LL",7.454513 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2228,"Simulated",1,"LL",7.454311 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2229,"Simulated",1,"LL",7.453785 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2230,"Simulated",1,"LL",7.453452 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2231,"Simulated",1,"LL",7.453249 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2232,"Simulated",1,"LL",7.453297 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2233,"Simulated",1,"LL",7.452802 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2234,"Simulated",1,"LL",7.452409 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2235,"Simulated",1,"LL",7.452071 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2236,"Simulated",1,"LL",7.451841 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2237,"Simulated",1,"LL",7.451441 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2238,"Simulated",1,"LL",7.450827 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2239,"Simulated",1,"LL",7.450865 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2240,"Simulated",1,"LL",7.451247 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2241,"Simulated",1,"LL",7.451006 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2242,"Simulated",1,"LL",7.450771 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2243,"Simulated",1,"LL",7.450621 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2244,"Simulated",1,"LL",7.450532 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2245,"Simulated",1,"LL",7.450631 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2246,"Simulated",1,"LL",7.450288 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2247,"Simulated",1,"LL",7.45019 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2248,"Simulated",1,"LL",7.450185 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2249,"Simulated",1,"LL",7.450232 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2250,"Simulated",1,"LL",7.450505 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2251,"Simulated",1,"LL",7.450655 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2252,"Simulated",1,"LL",7.450385 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2253,"Simulated",1,"LL",7.450079 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2254,"Simulated",1,"LL",7.450359 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2255,"Simulated",1,"LL",7.450612 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2256,"Simulated",1,"LL",7.450587 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2257,"Simulated",1,"LL",7.450537 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2258,"Simulated",1,"LL",7.450664 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2259,"Simulated",1,"LL",7.450691 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2260,"Simulated",1,"LL",7.450949 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2261,"Simulated",1,"LL",7.450975 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2262,"Simulated",1,"LL",7.451005 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2263,"Simulated",1,"LL",7.450997 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2264,"Simulated",1,"LL",7.451009 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2265,"Simulated",1,"LL",7.450615 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2266,"Simulated",1,"LL",7.450862 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2267,"Simulated",1,"LL",7.451268 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2268,"Simulated",1,"LL",7.450761 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2269,"Simulated",1,"LL",7.450691 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2270,"Simulated",1,"LL",7.450578 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2271,"Simulated",1,"LL",7.450949 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2272,"Simulated",1,"LL",7.450646 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2273,"Simulated",1,"LL",7.450805 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2274,"Simulated",1,"LL",7.450998 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2275,"Simulated",1,"LL",7.4509 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2276,"Simulated",1,"LL",7.450937 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2277,"Simulated",1,"LL",7.450833 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2278,"Simulated",1,"LL",7.450721 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2279,"Simulated",1,"LL",7.45048 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2280,"Simulated",1,"LL",7.450676 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2281,"Simulated",1,"LL",7.450594 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2282,"Simulated",1,"LL",7.451023 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2283,"Simulated",1,"LL",7.451137 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2284,"Simulated",1,"LL",7.450983 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2285,"Simulated",1,"LL",7.451042 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2286,"Simulated",1,"LL",7.451179 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2287,"Simulated",1,"LL",7.451308 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2288,"Simulated",1,"LL",7.451673 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2289,"Simulated",1,"LL",7.451732 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2290,"Simulated",1,"LL",7.451471 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2291,"Simulated",1,"LL",7.451501 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2292,"Simulated",1,"LL",7.451393 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2293,"Simulated",1,"LL",7.451499 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2294,"Simulated",1,"LL",7.451586 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2295,"Simulated",1,"LL",7.45149 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2296,"Simulated",1,"LL",7.451718 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2297,"Simulated",1,"LL",7.451688 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2298,"Simulated",1,"LL",7.451881 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2299,"Simulated",1,"LL",7.451714 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2300,"Simulated",1,"LL",7.45156 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.067359 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.065552 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.06328833333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.06092466666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.05898133333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.057138 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.05477233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.05270233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.05028266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.047874 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.045499 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.04362433333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.041575 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.039213 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.03595766666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.03295166666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.030257 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.02787666666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.02560233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.02274233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.01937033333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.01716366666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.014667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.01173833333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.008513 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.00553133333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",8.001778 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",7.99949333333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.99566633333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.99315866666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.98991333333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.98662466666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.98363666666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.980087 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.97661966666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.972916 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.96951933333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.96646266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.96300066666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.95898833333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.95514833333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.95112233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.94831633333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.94411033333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.93933766666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.93535733333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.931786 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.92779533333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.92311766666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.91846866666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.91462333333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.91118633333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.90662766666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.90163566666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.89766233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.89358166666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.889447 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.884765 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.88052266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.87625533333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.872053 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.86744066666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.86243233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.85773133333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.85434166666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.84944133333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.84494 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.83973433333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.835535 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.831315 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.82726766666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.82248933333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.818186 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.814643 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.81003066666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.80512933333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.80091666666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.79627266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.79209733333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.78841633333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.78396133333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.77948 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.775271 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.770663 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.76675266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.76317966666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.75876266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.75436966666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.750279 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.74660166666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.741971 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.73744566666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.73398166666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.73029933333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.726421 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2101,"Simulated",1,"global",7.722169 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2102,"Simulated",1,"global",7.718166 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2103,"Simulated",1,"global",7.714197 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2104,"Simulated",1,"global",7.711054 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2105,"Simulated",1,"global",7.707072 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2106,"Simulated",1,"global",7.702831 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2107,"Simulated",1,"global",7.6991 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2108,"Simulated",1,"global",7.696149 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2109,"Simulated",1,"global",7.691992 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2110,"Simulated",1,"global",7.687859 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2111,"Simulated",1,"global",7.684435 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2112,"Simulated",1,"global",7.680116 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2113,"Simulated",1,"global",7.67773 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2114,"Simulated",1,"global",7.673173 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2115,"Simulated",1,"global",7.669911 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2116,"Simulated",1,"global",7.666703 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2117,"Simulated",1,"global",7.662284 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2118,"Simulated",1,"global",7.658389 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2119,"Simulated",1,"global",7.655688 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2120,"Simulated",1,"global",7.652051 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2121,"Simulated",1,"global",7.647963 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2122,"Simulated",1,"global",7.644984 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2123,"Simulated",1,"global",7.641855 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2124,"Simulated",1,"global",7.637972 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2125,"Simulated",1,"global",7.633711 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2126,"Simulated",1,"global",7.631767 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2127,"Simulated",1,"global",7.628761 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2128,"Simulated",1,"global",7.624839 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2129,"Simulated",1,"global",7.621865 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2130,"Simulated",1,"global",7.618417 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2131,"Simulated",1,"global",7.615505 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2132,"Simulated",1,"global",7.611093 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2133,"Simulated",1,"global",7.608149 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2134,"Simulated",1,"global",7.606048 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2135,"Simulated",1,"global",7.602085 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2136,"Simulated",1,"global",7.598971 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2137,"Simulated",1,"global",7.595816 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2138,"Simulated",1,"global",7.592908 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2139,"Simulated",1,"global",7.589745 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2140,"Simulated",1,"global",7.586948 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2141,"Simulated",1,"global",7.583575 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2142,"Simulated",1,"global",7.580686 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2143,"Simulated",1,"global",7.577745 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2144,"Simulated",1,"global",7.574779 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2145,"Simulated",1,"global",7.571405 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2146,"Simulated",1,"global",7.56869 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2147,"Simulated",1,"global",7.565642 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2148,"Simulated",1,"global",7.562064 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2149,"Simulated",1,"global",7.559369 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2150,"Simulated",1,"global",7.556298 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2151,"Simulated",1,"global",7.553287 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2152,"Simulated",1,"global",7.550278 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2153,"Simulated",1,"global",7.548043 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2154,"Simulated",1,"global",7.544845 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2155,"Simulated",1,"global",7.542376 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2156,"Simulated",1,"global",7.540183 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2157,"Simulated",1,"global",7.536839 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2158,"Simulated",1,"global",7.53464 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2159,"Simulated",1,"global",7.532316 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2160,"Simulated",1,"global",7.529312 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2161,"Simulated",1,"global",7.526789 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2162,"Simulated",1,"global",7.524664 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2163,"Simulated",1,"global",7.522877 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2164,"Simulated",1,"global",7.520379 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2165,"Simulated",1,"global",7.517826 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2166,"Simulated",1,"global",7.515607 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2167,"Simulated",1,"global",7.513328 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2168,"Simulated",1,"global",7.510709 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2169,"Simulated",1,"global",7.509298 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2170,"Simulated",1,"global",7.506476 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2171,"Simulated",1,"global",7.503726 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2172,"Simulated",1,"global",7.501868 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2173,"Simulated",1,"global",7.50024 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2174,"Simulated",1,"global",7.498011 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2175,"Simulated",1,"global",7.496054 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2176,"Simulated",1,"global",7.494386 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2177,"Simulated",1,"global",7.492424 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2178,"Simulated",1,"global",7.490418 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2179,"Simulated",1,"global",7.489041 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2180,"Simulated",1,"global",7.487287 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2181,"Simulated",1,"global",7.485985 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2182,"Simulated",1,"global",7.484267 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2183,"Simulated",1,"global",7.482133 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2184,"Simulated",1,"global",7.480874 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2185,"Simulated",1,"global",7.47864 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2186,"Simulated",1,"global",7.476913 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2187,"Simulated",1,"global",7.476002 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2188,"Simulated",1,"global",7.474137 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2189,"Simulated",1,"global",7.472639 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2190,"Simulated",1,"global",7.470923 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2191,"Simulated",1,"global",7.469855 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2192,"Simulated",1,"global",7.46863 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2193,"Simulated",1,"global",7.467081 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2194,"Simulated",1,"global",7.465223 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2195,"Simulated",1,"global",7.4637 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2196,"Simulated",1,"global",7.462464 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2197,"Simulated",1,"global",7.461651 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2198,"Simulated",1,"global",7.459978 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2199,"Simulated",1,"global",7.458577 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2200,"Simulated",1,"global",7.457373 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2201,"Simulated",1,"global",7.456475 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2202,"Simulated",1,"global",7.455417 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2203,"Simulated",1,"global",7.453751 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2204,"Simulated",1,"global",7.453083 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2205,"Simulated",1,"global",7.452661 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2206,"Simulated",1,"global",7.451078 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2207,"Simulated",1,"global",7.449669 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2208,"Simulated",1,"global",7.448832 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2209,"Simulated",1,"global",7.448373 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2210,"Simulated",1,"global",7.447316 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2211,"Simulated",1,"global",7.445683 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2212,"Simulated",1,"global",7.444925 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2213,"Simulated",1,"global",7.44494 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2214,"Simulated",1,"global",7.443316 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2215,"Simulated",1,"global",7.442573 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2216,"Simulated",1,"global",7.442328 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2217,"Simulated",1,"global",7.441441 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2218,"Simulated",1,"global",7.440778 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2219,"Simulated",1,"global",7.439889 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2220,"Simulated",1,"global",7.438747 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2221,"Simulated",1,"global",7.438226 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2222,"Simulated",1,"global",7.437731 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2223,"Simulated",1,"global",7.437119 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2224,"Simulated",1,"global",7.43646 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2225,"Simulated",1,"global",7.436289 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2226,"Simulated",1,"global",7.435947 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2227,"Simulated",1,"global",7.434998 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2228,"Simulated",1,"global",7.434777 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2229,"Simulated",1,"global",7.434275 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2230,"Simulated",1,"global",7.433614 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2231,"Simulated",1,"global",7.433684 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2232,"Simulated",1,"global",7.433248 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2233,"Simulated",1,"global",7.432869 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2234,"Simulated",1,"global",7.432589 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2235,"Simulated",1,"global",7.432684 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2236,"Simulated",1,"global",7.432274 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2237,"Simulated",1,"global",7.431503 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2238,"Simulated",1,"global",7.431518 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2239,"Simulated",1,"global",7.431342 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2240,"Simulated",1,"global",7.431283 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2241,"Simulated",1,"global",7.431546 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2242,"Simulated",1,"global",7.431579 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2243,"Simulated",1,"global",7.430909 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2244,"Simulated",1,"global",7.430749 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2245,"Simulated",1,"global",7.430795 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2246,"Simulated",1,"global",7.430777 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2247,"Simulated",1,"global",7.430492 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2248,"Simulated",1,"global",7.431133 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2249,"Simulated",1,"global",7.430673 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2250,"Simulated",1,"global",7.430821 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2251,"Simulated",1,"global",7.430621 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2252,"Simulated",1,"global",7.430924 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2253,"Simulated",1,"global",7.430787 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2254,"Simulated",1,"global",7.430871 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2255,"Simulated",1,"global",7.431313 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2256,"Simulated",1,"global",7.431051 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2257,"Simulated",1,"global",7.430523 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2258,"Simulated",1,"global",7.430914 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2259,"Simulated",1,"global",7.430332 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2260,"Simulated",1,"global",7.430746 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2261,"Simulated",1,"global",7.4306 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2262,"Simulated",1,"global",7.43102 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2263,"Simulated",1,"global",7.430911 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2264,"Simulated",1,"global",7.431331 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2265,"Simulated",1,"global",7.431259 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2266,"Simulated",1,"global",7.431561 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2267,"Simulated",1,"global",7.431645 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2268,"Simulated",1,"global",7.431591 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2269,"Simulated",1,"global",7.431675 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2270,"Simulated",1,"global",7.431324 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2271,"Simulated",1,"global",7.431557 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2272,"Simulated",1,"global",7.431839 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2273,"Simulated",1,"global",7.431878 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2274,"Simulated",1,"global",7.43196 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2275,"Simulated",1,"global",7.431934 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2276,"Simulated",1,"global",7.431995 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2277,"Simulated",1,"global",7.431933 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2278,"Simulated",1,"global",7.432077 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2279,"Simulated",1,"global",7.43182 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2280,"Simulated",1,"global",7.431524 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2281,"Simulated",1,"global",7.431754 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2282,"Simulated",1,"global",7.431892 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2283,"Simulated",1,"global",7.432185 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2284,"Simulated",1,"global",7.431941 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2285,"Simulated",1,"global",7.432224 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2286,"Simulated",1,"global",7.431815 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2287,"Simulated",1,"global",7.431873 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2288,"Simulated",1,"global",7.431807 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2289,"Simulated",1,"global",7.432158 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2290,"Simulated",1,"global",7.431617 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2291,"Simulated",1,"global",7.432032 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2292,"Simulated",1,"global",7.431965 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2293,"Simulated",1,"global",7.432052 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2294,"Simulated",1,"global",7.431726 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2295,"Simulated",1,"global",7.431307 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2296,"Simulated",1,"global",7.431391 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2297,"Simulated",1,"global",7.431552 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2298,"Simulated",1,"global",7.431875 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2299,"Simulated",1,"global",7.43223 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2300,"Simulated",1,"global",7.432028 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.07167433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.06869866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.067305 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.064197 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.06158166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.05838866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.05716333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.05592566666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.05198966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.05089533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.04778933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.04469066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.040799 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.03728133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.034399 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.03268033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.029205 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.0249 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.02280466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.02002266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.01537533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.012206 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.00935833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",8.007172 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",8.00414166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",7.99986666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",7.996649 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.99360633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.98961033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.98646533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.983948 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.98102266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.976956 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.971584 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.96933133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.96372033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.960408 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.95744166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.95113233333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.94828633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.94510866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.93962033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.93595533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.930947 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.92700633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.92354966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.91732933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.91269666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.90789966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.90123633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.897717 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.89372966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.89008333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.883641 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.88034633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.87671733333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.87062666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.86469433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.85987266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.85562266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.853386 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.84724233333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.84221166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.83529666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.83198466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.82559166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.82224366666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.81533166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.81058666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.80715133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.80231533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.79655133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.79253433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.78834733333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.782491 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.77818833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.77436866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.76803833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.76385766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.75982766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.75487866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.750023 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.74675066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.74045666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.736913 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.73229333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.72735233333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.724306 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.71809333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.71403266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.708872 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.70320066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.69946833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.69627666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.692148 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2101,"Simulated",1,"HL",7.684882 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2102,"Simulated",1,"HL",7.68169 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2103,"Simulated",1,"HL",7.678372 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2104,"Simulated",1,"HL",7.677411 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2105,"Simulated",1,"HL",7.670453 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2106,"Simulated",1,"HL",7.667561 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2107,"Simulated",1,"HL",7.66259 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2108,"Simulated",1,"HL",7.65805 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2109,"Simulated",1,"HL",7.654598 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2110,"Simulated",1,"HL",7.649757 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2111,"Simulated",1,"HL",7.647727 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2112,"Simulated",1,"HL",7.642264 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2113,"Simulated",1,"HL",7.639723 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2114,"Simulated",1,"HL",7.633452 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2115,"Simulated",1,"HL",7.632625 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2116,"Simulated",1,"HL",7.628376 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2117,"Simulated",1,"HL",7.62444 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2118,"Simulated",1,"HL",7.617904 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2119,"Simulated",1,"HL",7.616273 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2120,"Simulated",1,"HL",7.61167 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2121,"Simulated",1,"HL",7.606975 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2122,"Simulated",1,"HL",7.60468 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2123,"Simulated",1,"HL",7.598554 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2124,"Simulated",1,"HL",7.596037 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2125,"Simulated",1,"HL",7.590251 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2126,"Simulated",1,"HL",7.589621 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2127,"Simulated",1,"HL",7.587662 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2128,"Simulated",1,"HL",7.584789 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2129,"Simulated",1,"HL",7.577697 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2130,"Simulated",1,"HL",7.574169 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2131,"Simulated",1,"HL",7.57551 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2132,"Simulated",1,"HL",7.5692 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2133,"Simulated",1,"HL",7.564147 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2134,"Simulated",1,"HL",7.562001 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2135,"Simulated",1,"HL",7.558086 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2136,"Simulated",1,"HL",7.556328 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2137,"Simulated",1,"HL",7.550257 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2138,"Simulated",1,"HL",7.548187 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2139,"Simulated",1,"HL",7.544677 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2140,"Simulated",1,"HL",7.544378 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2141,"Simulated",1,"HL",7.539042 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2142,"Simulated",1,"HL",7.535613 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2143,"Simulated",1,"HL",7.534128 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2144,"Simulated",1,"HL",7.530127 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2145,"Simulated",1,"HL",7.524446 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2146,"Simulated",1,"HL",7.522851 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2147,"Simulated",1,"HL",7.520211 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2148,"Simulated",1,"HL",7.514445 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2149,"Simulated",1,"HL",7.510439 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2150,"Simulated",1,"HL",7.50754 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2151,"Simulated",1,"HL",7.50614 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2152,"Simulated",1,"HL",7.502608 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2153,"Simulated",1,"HL",7.500018 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2154,"Simulated",1,"HL",7.496055 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2155,"Simulated",1,"HL",7.493994 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2156,"Simulated",1,"HL",7.492337 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2157,"Simulated",1,"HL",7.489328 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2158,"Simulated",1,"HL",7.4872 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2159,"Simulated",1,"HL",7.482929 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2160,"Simulated",1,"HL",7.481753 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2161,"Simulated",1,"HL",7.479283 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2162,"Simulated",1,"HL",7.476834 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2163,"Simulated",1,"HL",7.476656 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2164,"Simulated",1,"HL",7.473548 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2165,"Simulated",1,"HL",7.470173 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2166,"Simulated",1,"HL",7.46804 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2167,"Simulated",1,"HL",7.466243 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2168,"Simulated",1,"HL",7.4621 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2169,"Simulated",1,"HL",7.459084 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2170,"Simulated",1,"HL",7.45628 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2171,"Simulated",1,"HL",7.452597 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2172,"Simulated",1,"HL",7.451224 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2173,"Simulated",1,"HL",7.4485 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2174,"Simulated",1,"HL",7.446572 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2175,"Simulated",1,"HL",7.446116 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2176,"Simulated",1,"HL",7.443617 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2177,"Simulated",1,"HL",7.442665 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2178,"Simulated",1,"HL",7.438126 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2179,"Simulated",1,"HL",7.438758 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2180,"Simulated",1,"HL",7.437109 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2181,"Simulated",1,"HL",7.43755 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2182,"Simulated",1,"HL",7.43492 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2183,"Simulated",1,"HL",7.432345 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2184,"Simulated",1,"HL",7.430362 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2185,"Simulated",1,"HL",7.428194 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2186,"Simulated",1,"HL",7.425334 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2187,"Simulated",1,"HL",7.424755 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2188,"Simulated",1,"HL",7.424482 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2189,"Simulated",1,"HL",7.422751 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2190,"Simulated",1,"HL",7.418644 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2191,"Simulated",1,"HL",7.41673 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2192,"Simulated",1,"HL",7.41581 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2193,"Simulated",1,"HL",7.414929 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2194,"Simulated",1,"HL",7.413072 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2195,"Simulated",1,"HL",7.411618 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2196,"Simulated",1,"HL",7.407968 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2197,"Simulated",1,"HL",7.407754 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2198,"Simulated",1,"HL",7.406136 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2199,"Simulated",1,"HL",7.404669 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2200,"Simulated",1,"HL",7.403399 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2201,"Simulated",1,"HL",7.403066 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2202,"Simulated",1,"HL",7.403619 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2203,"Simulated",1,"HL",7.400551 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2204,"Simulated",1,"HL",7.400171 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2205,"Simulated",1,"HL",7.40107 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2206,"Simulated",1,"HL",7.398734 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2207,"Simulated",1,"HL",7.398585 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2208,"Simulated",1,"HL",7.396639 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2209,"Simulated",1,"HL",7.394336 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2210,"Simulated",1,"HL",7.393737 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2211,"Simulated",1,"HL",7.392158 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2212,"Simulated",1,"HL",7.391359 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2213,"Simulated",1,"HL",7.391232 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2214,"Simulated",1,"HL",7.389575 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2215,"Simulated",1,"HL",7.389921 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2216,"Simulated",1,"HL",7.38818 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2217,"Simulated",1,"HL",7.388259 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2218,"Simulated",1,"HL",7.388148 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2219,"Simulated",1,"HL",7.387691 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2220,"Simulated",1,"HL",7.384056 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2221,"Simulated",1,"HL",7.385873 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2222,"Simulated",1,"HL",7.38283 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2223,"Simulated",1,"HL",7.382802 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2224,"Simulated",1,"HL",7.38228 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2225,"Simulated",1,"HL",7.382535 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2226,"Simulated",1,"HL",7.383511 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2227,"Simulated",1,"HL",7.380753 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2228,"Simulated",1,"HL",7.381778 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2229,"Simulated",1,"HL",7.380926 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2230,"Simulated",1,"HL",7.380217 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2231,"Simulated",1,"HL",7.379887 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2232,"Simulated",1,"HL",7.381713 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2233,"Simulated",1,"HL",7.379798 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2234,"Simulated",1,"HL",7.379994 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2235,"Simulated",1,"HL",7.380072 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2236,"Simulated",1,"HL",7.381405 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2237,"Simulated",1,"HL",7.379246 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2238,"Simulated",1,"HL",7.379566 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2239,"Simulated",1,"HL",7.379149 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2240,"Simulated",1,"HL",7.379479 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2241,"Simulated",1,"HL",7.378471 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2242,"Simulated",1,"HL",7.380855 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2243,"Simulated",1,"HL",7.380236 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2244,"Simulated",1,"HL",7.376965 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2245,"Simulated",1,"HL",7.37881 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2246,"Simulated",1,"HL",7.379495 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2247,"Simulated",1,"HL",7.379541 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2248,"Simulated",1,"HL",7.381212 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2249,"Simulated",1,"HL",7.379774 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2250,"Simulated",1,"HL",7.379134 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2251,"Simulated",1,"HL",7.377878 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2252,"Simulated",1,"HL",7.380262 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2253,"Simulated",1,"HL",7.379703 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2254,"Simulated",1,"HL",7.379283 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2255,"Simulated",1,"HL",7.379492 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2256,"Simulated",1,"HL",7.380222 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2257,"Simulated",1,"HL",7.378658 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2258,"Simulated",1,"HL",7.378341 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2259,"Simulated",1,"HL",7.378001 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2260,"Simulated",1,"HL",7.37899 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2261,"Simulated",1,"HL",7.377825 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2262,"Simulated",1,"HL",7.380561 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2263,"Simulated",1,"HL",7.379587 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2264,"Simulated",1,"HL",7.381999 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2265,"Simulated",1,"HL",7.381247 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2266,"Simulated",1,"HL",7.38149 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2267,"Simulated",1,"HL",7.380993 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2268,"Simulated",1,"HL",7.381523 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2269,"Simulated",1,"HL",7.381147 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2270,"Simulated",1,"HL",7.381457 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2271,"Simulated",1,"HL",7.379468 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2272,"Simulated",1,"HL",7.381183 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2273,"Simulated",1,"HL",7.381554 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2274,"Simulated",1,"HL",7.380979 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2275,"Simulated",1,"HL",7.381497 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2276,"Simulated",1,"HL",7.381728 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2277,"Simulated",1,"HL",7.383676 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2278,"Simulated",1,"HL",7.381575 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2279,"Simulated",1,"HL",7.380361 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2280,"Simulated",1,"HL",7.381014 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2281,"Simulated",1,"HL",7.379611 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2282,"Simulated",1,"HL",7.379768 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2283,"Simulated",1,"HL",7.383156 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2284,"Simulated",1,"HL",7.3808 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2285,"Simulated",1,"HL",7.380733 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2286,"Simulated",1,"HL",7.381071 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2287,"Simulated",1,"HL",7.380111 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2288,"Simulated",1,"HL",7.379779 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2289,"Simulated",1,"HL",7.381087 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2290,"Simulated",1,"HL",7.378541 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2291,"Simulated",1,"HL",7.38187 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2292,"Simulated",1,"HL",7.381173 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2293,"Simulated",1,"HL",7.381943 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2294,"Simulated",1,"HL",7.380181 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2295,"Simulated",1,"HL",7.379121 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2296,"Simulated",1,"HL",7.380118 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2297,"Simulated",1,"HL",7.381127 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2298,"Simulated",1,"HL",7.380643 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2299,"Simulated",1,"HL",7.381817 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2300,"Simulated",1,"HL",7.381052 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.066477 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.06490866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.06246766666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.060256 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.05844966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.056882 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.05428366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.05204333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.04993366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.04725633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.045031 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.04340633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.041734 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.03960766666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.03627666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.03300666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.030472 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.028485 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.026174 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.023298 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.020187 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.018177 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.015752 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.012672 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.00940666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.006689 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",8.00282633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",8.00069666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.996904 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.994527 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.991132 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.98776966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.985002 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.981825 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.97810966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.97479533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.97138133333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.96830666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.96542633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.961176 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.95720066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.95347333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.95084266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.94680066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.941858 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.93777066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.93474066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.93088166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.92622766666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.921991 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.918079 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.914754 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.910009 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.90531366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.901202 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.89702866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.89329333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.88886733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.884744 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.88047233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.87586833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.871569 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.86656533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.862317 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.85891166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.854316 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.84957866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.844722 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.84063366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.836254 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.83236833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.82779066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.82342866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.82001733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.81565933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.810636 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.80634266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.80204366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.797869 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.79425966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.78990566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.78550133333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.78110066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.776837 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.77285133333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.76949266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.76518233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.76051433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.75685733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.753259 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.748736 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.744445 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.74103566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.73725333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.73342566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2101,"Simulated",1,"LL",7.729791 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2102,"Simulated",1,"LL",7.725622 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2103,"Simulated",1,"LL",7.721519 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2104,"Simulated",1,"LL",7.71793 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2105,"Simulated",1,"LL",7.714557 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2106,"Simulated",1,"LL",7.71004 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2107,"Simulated",1,"LL",7.706563 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2108,"Simulated",1,"LL",7.703935 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2109,"Simulated",1,"LL",7.699634 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2110,"Simulated",1,"LL",7.695647 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2111,"Simulated",1,"LL",7.691937 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2112,"Simulated",1,"LL",7.687853 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2113,"Simulated",1,"LL",7.685498 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2114,"Simulated",1,"LL",7.681292 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2115,"Simulated",1,"LL",7.677532 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2116,"Simulated",1,"LL",7.674536 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2117,"Simulated",1,"LL",7.670019 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2118,"Simulated",1,"LL",7.666664 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2119,"Simulated",1,"LL",7.663744 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2120,"Simulated",1,"LL",7.660305 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2121,"Simulated",1,"LL",7.656341 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2122,"Simulated",1,"LL",7.653222 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2123,"Simulated",1,"LL",7.650706 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2124,"Simulated",1,"LL",7.646542 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2125,"Simulated",1,"LL",7.642594 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2126,"Simulated",1,"LL",7.640381 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2127,"Simulated",1,"LL",7.637161 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2128,"Simulated",1,"LL",7.633025 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2129,"Simulated",1,"LL",7.630893 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2130,"Simulated",1,"LL",7.62746 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2131,"Simulated",1,"LL",7.62368 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2132,"Simulated",1,"LL",7.619655 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2133,"Simulated",1,"LL",7.617143 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2134,"Simulated",1,"LL",7.61505 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2135,"Simulated",1,"LL",7.611078 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2136,"Simulated",1,"LL",7.607687 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2137,"Simulated",1,"LL",7.605127 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2138,"Simulated",1,"LL",7.602049 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2139,"Simulated",1,"LL",7.598956 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2140,"Simulated",1,"LL",7.595649 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2141,"Simulated",1,"LL",7.592677 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2142,"Simulated",1,"LL",7.589898 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2143,"Simulated",1,"LL",7.58666 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2144,"Simulated",1,"LL",7.583906 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2145,"Simulated",1,"LL",7.581003 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2146,"Simulated",1,"LL",7.578058 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2147,"Simulated",1,"LL",7.574927 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2148,"Simulated",1,"LL",7.571797 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2149,"Simulated",1,"LL",7.56937 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2150,"Simulated",1,"LL",7.566263 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2151,"Simulated",1,"LL",7.562923 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2152,"Simulated",1,"LL",7.560021 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2153,"Simulated",1,"LL",7.557859 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2154,"Simulated",1,"LL",7.554817 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2155,"Simulated",1,"LL",7.552264 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2156,"Simulated",1,"LL",7.549962 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2157,"Simulated",1,"LL",7.54655 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2158,"Simulated",1,"LL",7.544336 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2159,"Simulated",1,"LL",7.54241 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2160,"Simulated",1,"LL",7.539032 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2161,"Simulated",1,"LL",7.536499 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2162,"Simulated",1,"LL",7.53444 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2163,"Simulated",1,"LL",7.532324 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2164,"Simulated",1,"LL",7.529951 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2165,"Simulated",1,"LL",7.527566 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2166,"Simulated",1,"LL",7.525329 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2167,"Simulated",1,"LL",7.522951 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2168,"Simulated",1,"LL",7.520644 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2169,"Simulated",1,"LL",7.519561 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2170,"Simulated",1,"LL",7.516735 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2171,"Simulated",1,"LL",7.514177 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2172,"Simulated",1,"LL",7.512219 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2173,"Simulated",1,"LL",7.510815 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2174,"Simulated",1,"LL",7.508524 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2175,"Simulated",1,"LL",7.506261 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2176,"Simulated",1,"LL",7.504762 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2177,"Simulated",1,"LL",7.502594 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2178,"Simulated",1,"LL",7.501106 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2179,"Simulated",1,"LL",7.499318 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2180,"Simulated",1,"LL",7.497543 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2181,"Simulated",1,"LL",7.495884 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2182,"Simulated",1,"LL",7.494353 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2183,"Simulated",1,"LL",7.492309 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2184,"Simulated",1,"LL",7.491198 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2185,"Simulated",1,"LL",7.488951 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2186,"Simulated",1,"LL",7.487456 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2187,"Simulated",1,"LL",7.486476 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2188,"Simulated",1,"LL",7.484286 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2189,"Simulated",1,"LL",7.482836 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2190,"Simulated",1,"LL",7.481608 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2191,"Simulated",1,"LL",7.480713 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2192,"Simulated",1,"LL",7.479426 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2193,"Simulated",1,"LL",7.477741 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2194,"Simulated",1,"LL",7.475882 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2195,"Simulated",1,"LL",7.474345 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2196,"Simulated",1,"LL",7.473602 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2197,"Simulated",1,"LL",7.472667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2198,"Simulated",1,"LL",7.470982 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2199,"Simulated",1,"LL",7.469596 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2200,"Simulated",1,"LL",7.468405 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2201,"Simulated",1,"LL",7.467391 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2202,"Simulated",1,"LL",7.466004 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2203,"Simulated",1,"LL",7.464625 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2204,"Simulated",1,"LL",7.463898 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2205,"Simulated",1,"LL",7.463206 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2206,"Simulated",1,"LL",7.461777 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2207,"Simulated",1,"LL",7.46011 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2208,"Simulated",1,"LL",7.4595 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2209,"Simulated",1,"LL",7.459418 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2210,"Simulated",1,"LL",7.458267 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2211,"Simulated",1,"LL",7.456623 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2212,"Simulated",1,"LL",7.455873 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2213,"Simulated",1,"LL",7.455918 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2214,"Simulated",1,"LL",7.454301 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2215,"Simulated",1,"LL",7.453335 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2216,"Simulated",1,"LL",7.453395 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2217,"Simulated",1,"LL",7.452311 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2218,"Simulated",1,"LL",7.451535 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2219,"Simulated",1,"LL",7.450558 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2220,"Simulated",1,"LL",7.449925 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2221,"Simulated",1,"LL",7.448926 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2222,"Simulated",1,"LL",7.448952 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2223,"Simulated",1,"LL",7.448221 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2224,"Simulated",1,"LL",7.447534 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2225,"Simulated",1,"LL",7.447276 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2226,"Simulated",1,"LL",7.446665 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2227,"Simulated",1,"LL",7.446085 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2228,"Simulated",1,"LL",7.445609 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2229,"Simulated",1,"LL",7.445179 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2230,"Simulated",1,"LL",7.444527 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2231,"Simulated",1,"LL",7.44468 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2232,"Simulated",1,"LL",7.443782 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2233,"Simulated",1,"LL",7.443716 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2234,"Simulated",1,"LL",7.443339 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2235,"Simulated",1,"LL",7.443437 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2236,"Simulated",1,"LL",7.442672 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2237,"Simulated",1,"LL",7.442184 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2238,"Simulated",1,"LL",7.442136 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2239,"Simulated",1,"LL",7.44201 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2240,"Simulated",1,"LL",7.441872 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2241,"Simulated",1,"LL",7.442394 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2242,"Simulated",1,"LL",7.441947 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2243,"Simulated",1,"LL",7.441266 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2244,"Simulated",1,"LL",7.441742 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2245,"Simulated",1,"LL",7.441421 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2246,"Simulated",1,"LL",7.441259 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2247,"Simulated",1,"LL",7.440906 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2248,"Simulated",1,"LL",7.441336 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2249,"Simulated",1,"LL",7.441076 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2250,"Simulated",1,"LL",7.441385 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2251,"Simulated",1,"LL",7.441401 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2252,"Simulated",1,"LL",7.441279 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2253,"Simulated",1,"LL",7.441228 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2254,"Simulated",1,"LL",7.441415 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2255,"Simulated",1,"LL",7.441904 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2256,"Simulated",1,"LL",7.44144 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2257,"Simulated",1,"LL",7.441124 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2258,"Simulated",1,"LL",7.44166 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2259,"Simulated",1,"LL",7.441028 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2260,"Simulated",1,"LL",7.441325 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2261,"Simulated",1,"LL",7.441386 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2262,"Simulated",1,"LL",7.441333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2263,"Simulated",1,"LL",7.441402 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2264,"Simulated",1,"LL",7.441414 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2265,"Simulated",1,"LL",7.441481 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2266,"Simulated",1,"LL",7.441795 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2267,"Simulated",1,"LL",7.441997 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2268,"Simulated",1,"LL",7.441825 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2269,"Simulated",1,"LL",7.442002 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2270,"Simulated",1,"LL",7.441516 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2271,"Simulated",1,"LL",7.442204 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2272,"Simulated",1,"LL",7.442192 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2273,"Simulated",1,"LL",7.442163 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2274,"Simulated",1,"LL",7.44238 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2275,"Simulated",1,"LL",7.442243 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2276,"Simulated",1,"LL",7.442269 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2277,"Simulated",1,"LL",7.441796 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2278,"Simulated",1,"LL",7.442399 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2279,"Simulated",1,"LL",7.442337 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2280,"Simulated",1,"LL",7.441847 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2281,"Simulated",1,"LL",7.442412 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2282,"Simulated",1,"LL",7.442546 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2283,"Simulated",1,"LL",7.442206 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2284,"Simulated",1,"LL",7.442394 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2285,"Simulated",1,"LL",7.442749 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2286,"Simulated",1,"LL",7.442186 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2287,"Simulated",1,"LL",7.442453 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2288,"Simulated",1,"LL",7.442441 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2289,"Simulated",1,"LL",7.442596 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2290,"Simulated",1,"LL",7.442465 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2291,"Simulated",1,"LL",7.442285 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2292,"Simulated",1,"LL",7.442346 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2293,"Simulated",1,"LL",7.442293 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2294,"Simulated",1,"LL",7.442261 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2295,"Simulated",1,"LL",7.441973 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2296,"Simulated",1,"LL",7.441871 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2297,"Simulated",1,"LL",7.441858 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2298,"Simulated",1,"LL",7.442346 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2299,"Simulated",1,"LL",7.442533 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2300,"Simulated",1,"LL",7.442447 -"NorESM1-ME","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.069832 -"NorESM1-ME","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.067488 -"NorESM1-ME","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.064983 -"NorESM1-ME","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.063179 -"NorESM1-ME","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.06149 -"NorESM1-ME","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.058929 -"NorESM1-ME","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.057232 -"NorESM1-ME","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.055104 -"NorESM1-ME","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.05322 -"NorESM1-ME","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.051452 -"NorESM1-ME","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.047695 -"NorESM1-ME","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.045075 -"NorESM1-ME","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.04301 -"NorESM1-ME","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.040746 -"NorESM1-ME","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.038237 -"NorESM1-ME","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.034994 -"NorESM1-ME","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.032789 -"NorESM1-ME","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.03121 -"NorESM1-ME","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.027911 -"NorESM1-ME","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.024688 -"NorESM1-ME","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.022065 -"NorESM1-ME","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.019949 -"NorESM1-ME","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.016844 -"NorESM1-ME","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.013674 -"NorESM1-ME","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.010184 -"NorESM1-ME","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.007912 -"NorESM1-ME","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",8.004801 -"NorESM1-ME","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",8.001094 -"NorESM1-ME","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.997772 -"NorESM1-ME","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.995336 -"NorESM1-ME","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.992332 -"NorESM1-ME","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.989213 -"NorESM1-ME","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.985427 -"NorESM1-ME","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.98216 -"NorESM1-ME","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.979302 -"NorESM1-ME","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.975526 -"NorESM1-ME","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.971588 -"NorESM1-ME","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.967657 -"NorESM1-ME","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.964235 -"NorESM1-ME","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.961089 -"NorESM1-ME","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.957204 -"NorESM1-ME","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.953439 -"NorESM1-ME","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.948971 -"NorESM1-ME","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.94563 -"NorESM1-ME","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.941145 -"NorESM1-ME","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.938009 -"NorESM1-ME","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.933548 -"NorESM1-ME","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.929085 -"NorESM1-ME","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.924734 -"NorESM1-ME","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.921411 -"NorESM1-ME","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.916529 -"NorESM1-ME","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.912183 -"NorESM1-ME","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.907248 -"NorESM1-ME","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.904123 -"NorESM1-ME","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.900324 -"NorESM1-ME","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.895425 -"NorESM1-ME","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.890659 -"NorESM1-ME","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.8865 -"NorESM1-ME","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.882226 -"NorESM1-ME","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.877509 -"NorESM1-ME","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.873401 -"NorESM1-ME","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.868677 -"NorESM1-ME","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.864178 -"NorESM1-ME","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.859488 -"NorESM1-ME","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.8554 -"NorESM1-ME","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.851121 -"NorESM1-ME","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.846137 -"NorESM1-ME","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.840726 -"NorESM1-ME","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.836553 -"NorESM1-ME","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.832876 -"NorESM1-ME","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.828572 -"NorESM1-ME","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.82397 -"NorESM1-ME","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.82003 -"NorESM1-ME","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.81578 -"NorESM1-ME","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.811012 -"NorESM1-ME","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.807118 -"NorESM1-ME","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.802681 -"NorESM1-ME","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.79728 -"NorESM1-ME","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.793639 -"NorESM1-ME","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.789502 -"NorESM1-ME","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.785436 -"NorESM1-ME","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.781412 -"NorESM1-ME","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.776931 -"NorESM1-ME","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.772578 -"NorESM1-ME","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.768526 -"NorESM1-ME","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.764116 -"NorESM1-ME","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.760473 -"NorESM1-ME","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.7563 -"NorESM1-ME","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.751983 -"NorESM1-ME","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.748257 -"NorESM1-ME","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.744108 -"NorESM1-ME","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.740039 -"NorESM1-ME","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.735277 -"NorESM1-ME","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.731702 -"NorESM1-ME","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.728813 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.072666 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.069536 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.066217 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.063333 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.063698 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.058111 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.05716 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.054378 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.052391 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.053994 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.049902 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.045466 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.043226 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.04081 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.037571 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.034856 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.032618 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.031009 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.02538 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.023025 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.018295 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.016368 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.013043 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",8.013035 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",8.006117 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",8.004544 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",7.999454 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.998755 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.995556 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.989255 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.984565 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.982458 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.978216 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.97647 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.971869 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.967405 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.964491 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.958627 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.954026 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.950172 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.946634 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.944902 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.939802 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.935496 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.926333 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.92822 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.919889 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.915752 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.909528 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.905508 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.899764 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.896347 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.891944 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.887613 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.882533 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.877579 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.872547 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.86682 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.8626 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.857933 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.852178 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.847749 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.843044 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.836556 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.832117 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.829292 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.821919 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.814431 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.811467 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.80644 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.80256 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.795573 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.791482 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.790574 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.782841 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.779488 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.776441 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.767554 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.76518 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.760461 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.755276 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.749731 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.747343 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.740585 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.737003 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.731237 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.72896 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.72548 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.717508 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.713892 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.709135 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.705387 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.702003 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.69605 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.693579 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.069334 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.067128 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.064766 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.063152 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.061102 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.059072 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.057245 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.055232 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.053366 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.051005 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.047307 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.045006 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.042972 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.040735 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.038354 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.035018 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.032819 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.031246 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.028356 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.02498 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.022727 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.020579 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.017512 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.013787 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.010899 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.008504 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",8.005741 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",8.001505 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.998162 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.996404 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.993697 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.9904 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.986694 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.983159 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.980608 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.976953 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.972835 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.969243 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.966029 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.963007 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.959061 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.954938 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.950582 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.947411 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.943747 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.939728 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.935948 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.931428 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.927406 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.924205 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.919475 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.914965 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.909937 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.907023 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.90345 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.89856 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.893841 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.889957 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.885674 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.880947 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.877129 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.872353 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.86789 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.863517 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.859491 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.854956 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.850392 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.845345 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.84096 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.83752 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.833141 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.828958 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.825045 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.820208 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.81596 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.811972 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.807291 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.802501 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.798638 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.794604 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.790734 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.786977 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.782129 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.778199 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.774064 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.769891 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.766009 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.761714 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.758039 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.754293 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.750251 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.746126 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.741122 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.737965 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.735002 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/rcp85/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/rcp85/summary.csv deleted file mode 100644 index bd5890ef6..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_ph/rcp85/summary.csv +++ /dev/null @@ -1,889 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2005,ph,ocean,ph,rcp85,1,Simulated,global,NA,8.072823,8.072823,8.072823,8.072823,1,CMIP5 -2005,ph,ocean,ph_HL,rcp85,1,Simulated,HL,NA,8.090111,8.090111,8.090111,8.090111,1,CMIP5 -2005,ph,ocean,ph_LL,rcp85,1,Simulated,LL,NA,8.0695945,8.0695945,8.0695945,8.0695945,1,CMIP5 -2006,ph,ocean,ph,rcp85,1,Simulated,global,0.002348117,8.0633415,8.069832,8.06643675,8.0662475,1,CMIP5 -2006,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007243753,8.05771775,8.073005,8.066859456,8.069983792,1,CMIP5 -2006,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002899445,8.06241725,8.0696374,8.066382858,8.06657725,1,CMIP5 -2007,ph,ocean,ph,rcp85,1,Simulated,global,0.002243054,8.06110525,8.067488,8.064357433,8.064424675,1,CMIP5 -2007,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007205967,8.0553774,8.072238,8.064410928,8.066695208,1,CMIP5 -2007,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002812518,8.06043525,8.067148,8.064377319,8.064999833,1,CMIP5 -2008,ph,ocean,ph,rcp85,1,Simulated,global,0.002221381,8.05877925,8.064983,8.062241389,8.062329542,1,CMIP5 -2008,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006723869,8.0539172,8.069162,8.062071492,8.064006375,1,CMIP5 -2008,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002806209,8.0582155,8.0654958,8.062296244,8.062717083,1,CMIP5 -2009,ph,ocean,ph,rcp85,1,Simulated,global,0.002245635,8.056822,8.063179,8.060211503,8.060130208,1,CMIP5 -2009,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006831534,8.0518458,8.068619,8.060068633,8.061866125,1,CMIP5 -2009,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002968446,8.056154,8.0635664,8.060264067,8.0605915,1,CMIP5 -2010,ph,ocean,ph,rcp85,1,Simulated,global,0.002326026,8.05472075,8.06149,8.058248831,8.058269917,1,CMIP5 -2010,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006717964,8.0498636,8.06606,8.058405586,8.059944583,1,CMIP5 -2010,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002930696,8.05405075,8.0613118,8.058247078,8.058725458,1,CMIP5 -2011,ph,ocean,ph,rcp85,1,Simulated,global,0.002328395,8.052563,8.058929,8.056161242,8.056349625,1,CMIP5 -2011,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005790633,8.0479064,8.062777,8.055358594,8.05702275,1,CMIP5 -2011,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003094141,8.0519335,8.0597448,8.056334175,8.056931375,1,CMIP5 -2012,ph,ocean,ph,rcp85,1,Simulated,global,0.002420959,8.05062175,8.057232,8.053899622,8.054006792,1,CMIP5 -2012,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006044876,8.0450035,8.058429,8.052683364,8.054966875,1,CMIP5 -2012,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003043642,8.05022,8.057272,8.054153986,8.054657958,1,CMIP5 -2013,ph,ocean,ph,rcp85,1,Simulated,global,0.002515825,8.048327,8.055104,8.051664181,8.051896542,1,CMIP5 -2013,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005984921,8.04312025,8.055925667,8.050540103,8.05265025,1,CMIP5 -2013,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003174923,8.04784225,8.055232,8.051895772,8.052433792,1,CMIP5 -2014,ph,ocean,ph,rcp85,1,Simulated,global,0.002452535,8.046069,8.05322,8.049644569,8.049659708,1,CMIP5 -2014,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006212281,8.0405954,8.055359,8.048255386,8.050098083,1,CMIP5 -2014,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003081986,8.04566975,8.053366,8.049931144,8.050359958,1,CMIP5 -2015,ph,ocean,ph,rcp85,1,Simulated,global,0.002737787,8.0435725,8.051452,8.047310533,8.04721975,1,CMIP5 -2015,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007369141,8.0377014,8.053994,8.046567747,8.048447917,1,CMIP5 -2015,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003287913,8.043119,8.051005,8.047481606,8.047864917,1,CMIP5 -2016,ph,ocean,ph,rcp85,1,Simulated,global,0.002386442,8.0410745,8.047695,8.044770917,8.044937,1,CMIP5 -2016,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006366693,8.03567275,8.049902,8.043587164,8.045424417,1,CMIP5 -2016,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002979195,8.04070375,8.0484692,8.045023367,8.045649125,1,CMIP5 -2017,ph,ocean,ph,rcp85,1,Simulated,global,0.002416929,8.03849875,8.045075,8.042331689,8.042704292,1,CMIP5 -2017,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005647661,8.0335698,8.045704,8.040541703,8.042231208,1,CMIP5 -2017,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002941764,8.038261,8.045917,8.042691181,8.043436542,1,CMIP5 -2018,ph,ocean,ph,rcp85,1,Simulated,global,0.002586759,8.0358995,8.04301,8.040118225,8.040691125,1,CMIP5 -2018,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005951383,8.03082225,8.044235,8.037786967,8.038761875,1,CMIP5 -2018,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003170855,8.03574525,8.0437038,8.040591383,8.041747625,1,CMIP5 -2019,ph,ocean,ph,rcp85,1,Simulated,global,0.002613214,8.0335355,8.040746,8.037746583,8.038302,1,CMIP5 -2019,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005603992,8.02862575,8.041094,8.035129772,8.035782042,1,CMIP5 -2019,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00317233,8.0333955,8.0412728,8.038273703,8.039452458,1,CMIP5 -2020,ph,ocean,ph,rcp85,1,Simulated,global,0.002566823,8.03081325,8.038237,8.035057928,8.035374958,1,CMIP5 -2020,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005906658,8.0252802,8.038948,8.031965867,8.032154875,1,CMIP5 -2020,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003059243,8.03098175,8.0386514,8.035672344,8.036524458,1,CMIP5 -2021,ph,ocean,ph,rcp85,1,Simulated,global,0.002334436,8.028283,8.034994,8.032280878,8.032732333,1,CMIP5 -2021,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006005427,8.021719,8.035507,8.029232181,8.030132792,1,CMIP5 -2021,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002911082,8.02841325,8.0358682,8.032883311,8.033789208,1,CMIP5 -2022,ph,ocean,ph,rcp85,1,Simulated,global,0.002397306,8.02593625,8.032789,8.029720767,8.029832875,1,CMIP5 -2022,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005817179,8.01909975,8.032618,8.026431792,8.0274715,1,CMIP5 -2022,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002921621,8.0259735,8.0334518,8.0303743,8.03106125,1,CMIP5 -2023,ph,ocean,ph,rcp85,1,Simulated,global,0.002880594,8.02294875,8.03121,8.027067478,8.027217458,1,CMIP5 -2023,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005768342,8.0172015,8.031009,8.023488517,8.023267,1,CMIP5 -2023,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003269859,8.02319425,8.031246,8.027776733,8.028538875,1,CMIP5 -2024,ph,ocean,ph,rcp85,1,Simulated,global,0.002594447,8.0205535,8.027911,8.024460606,8.024827167,1,CMIP5 -2024,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005507484,8.01404625,8.026342,8.020038478,8.020058208,1,CMIP5 -2024,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003004368,8.02115875,8.028356,8.025325283,8.026200875,1,CMIP5 -2025,ph,ocean,ph,rcp85,1,Simulated,global,0.002459468,8.01786525,8.024688,8.021693181,8.022091917,1,CMIP5 -2025,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006060962,8.01085125,8.0251,8.017533694,8.017437958,1,CMIP5 -2025,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00299228,8.0184275,8.0254642,8.0225147,8.02352125,1,CMIP5 -2026,ph,ocean,ph,rcp85,1,Simulated,global,0.002520313,8.01488975,8.022065,8.018838914,8.019063667,1,CMIP5 -2026,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004901939,8.00831025,8.020428,8.013995697,8.013901667,1,CMIP5 -2026,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003071083,8.0153495,8.022727,8.0197846,8.02060775,1,CMIP5 -2027,ph,ocean,ph,rcp85,1,Simulated,global,0.00272496,8.012158,8.019949,8.016314194,8.016550583,1,CMIP5 -2027,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004991717,8.00535725,8.016389,8.010813625,8.01060775,1,CMIP5 -2027,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003176405,8.012746,8.020579,8.017382408,8.018207625,1,CMIP5 -2028,ph,ocean,ph,rcp85,1,Simulated,global,0.002671352,8.009292,8.016844,8.0134684,8.0140245,1,CMIP5 -2028,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005192163,8.0025552,8.01477,8.008025756,8.007435542,1,CMIP5 -2028,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003175761,8.00999775,8.017512,8.014528158,8.015705,1,CMIP5 -2029,ph,ocean,ph,rcp85,1,Simulated,global,0.002623388,8.00606775,8.013674,8.010651664,8.011087917,1,CMIP5 -2029,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006287706,7.9990368,8.013035,8.005664425,8.004798,1,CMIP5 -2029,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002982129,8.006748,8.0144782,8.011630158,8.012733375,1,CMIP5 -2030,ph,ocean,ph,rcp85,1,Simulated,global,0.002493959,8.00311175,8.010184,8.007541283,8.007985875,1,CMIP5 -2030,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005132329,7.9959625,8.008375,8.001790553,8.001667208,1,CMIP5 -2030,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002926012,8.003844,8.011393,8.008658319,8.009682458,1,CMIP5 -2031,ph,ocean,ph,rcp85,1,Simulated,global,0.002671395,8.00034175,8.007912,8.004610847,8.004901167,1,CMIP5 -2031,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005878299,7.99160825,8.005943,7.998527119,7.997599333,1,CMIP5 -2031,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003105017,8.0012775,8.0086698,8.005802592,8.006856625,1,CMIP5 -2032,ph,ocean,ph,rcp85,1,Simulated,global,0.002557735,7.99747525,8.004801,8.001504192,8.00146875,1,CMIP5 -2032,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005365933,7.988278,8.002543,7.995231975,7.995178625,1,CMIP5 -2032,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003105324,7.998179,8.005741,8.002725672,8.003393417,1,CMIP5 -2033,ph,ocean,ph,rcp85,1,Simulated,global,0.002406716,7.9944745,8.001094,7.998516664,7.998919042,1,CMIP5 -2033,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006015378,7.98470475,7.998871,7.992047722,7.991505792,1,CMIP5 -2033,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002882284,7.99542075,8.002745,7.999784028,8.001003708,1,CMIP5 -2034,ph,ocean,ph,rcp85,1,Simulated,global,0.002255779,7.99160425,7.997772,7.995295914,7.995529417,1,CMIP5 -2034,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005946581,7.98290075,7.99637,7.988921989,7.987617792,1,CMIP5 -2034,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002766047,7.992721,7.999709,7.996540917,7.99750625,1,CMIP5 -2035,ph,ocean,ph,rcp85,1,Simulated,global,0.002580119,7.98802175,7.995336,7.992312578,7.992716958,1,CMIP5 -2035,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004896563,7.97898675,7.991134,7.984869839,7.984786042,1,CMIP5 -2035,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003110302,7.9889395,7.9965292,7.993751867,7.99484575,1,CMIP5 -2036,ph,ocean,ph,rcp85,1,Simulated,global,0.002555454,7.9849295,7.992332,7.989174747,7.989420292,1,CMIP5 -2036,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004786122,7.97568475,7.987716,7.981359833,7.981742125,1,CMIP5 -2036,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003052406,7.98593675,7.993697,7.99067655,7.991469375,1,CMIP5 -2037,ph,ocean,ph,rcp85,1,Simulated,global,0.002677536,7.98160925,7.989213,7.985971694,7.986330458,1,CMIP5 -2037,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004943044,7.9721035,7.983961,7.978182628,7.978430333,1,CMIP5 -2037,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003189799,7.982687,7.9904,7.987472811,7.988417833,1,CMIP5 -2038,ph,ocean,ph,rcp85,1,Simulated,global,0.00264287,7.97808875,7.985427,7.982596111,7.983060958,1,CMIP5 -2038,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004697067,7.96911525,7.980395,7.974451783,7.974537125,1,CMIP5 -2038,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003134466,7.97920325,7.987152,7.984161125,7.98519725,1,CMIP5 -2039,ph,ocean,ph,rcp85,1,Simulated,global,0.002811956,7.97434675,7.98216,7.979135492,7.9796825,1,CMIP5 -2039,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005000294,7.9643825,7.97647,7.970386958,7.969559625,1,CMIP5 -2039,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003256144,7.97561825,7.9838012,7.980827408,7.982171,1,CMIP5 -2040,ph,ocean,ph,rcp85,1,Simulated,global,0.002720197,7.97139825,7.979302,7.975995136,7.976273583,1,CMIP5 -2040,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005490258,7.961262,7.974726,7.967264039,7.966505417,1,CMIP5 -2040,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003148343,7.97283975,7.980608,7.977678253,7.978613083,1,CMIP5 -2041,ph,ocean,ph,rcp85,1,Simulated,global,0.00261953,7.96825125,7.975526,7.972467625,7.97271625,1,CMIP5 -2041,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004983765,7.956901,7.969808,7.962905272,7.961945417,1,CMIP5 -2041,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00314034,7.9697605,7.9772966,7.974313406,7.975353667,1,CMIP5 -2042,ph,ocean,ph,rcp85,1,Simulated,global,0.002506631,7.96468475,7.971588,7.968879481,7.969185167,1,CMIP5 -2042,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005267833,7.9536485,7.966325,7.959307608,7.9581062,1,CMIP5 -2042,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00289629,7.966462,7.9736624,7.970726247,7.971769042,1,CMIP5 -2043,ph,ocean,ph,rcp85,1,Simulated,global,0.002531075,7.96118875,7.967657,7.965357678,7.966072458,1,CMIP5 -2043,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004066052,7.950691,7.960607,7.955338678,7.954893833,1,CMIP5 -2043,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003039486,7.96284025,7.970238,7.967279653,7.968624333,1,CMIP5 -2044,ph,ocean,ph,rcp85,1,Simulated,global,0.002651056,7.9572535,7.964235,7.961777694,7.962459333,1,CMIP5 -2044,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004480721,7.9455605,7.957581,7.950695231,7.949640567,1,CMIP5 -2044,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003196608,7.95903325,7.9667532,7.963911172,7.965450792,1,CMIP5 -2045,ph,ocean,ph,rcp85,1,Simulated,global,0.002864364,7.95329575,7.961089,7.958147922,7.958728292,1,CMIP5 -2045,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004378236,7.94186525,7.953214,7.946910489,7.946429967,1,CMIP5 -2045,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003363484,7.95515275,7.9632744,7.960305233,7.961627125,1,CMIP5 -2046,ph,ocean,ph,rcp85,1,Simulated,global,0.002675928,7.94982125,7.957204,7.954414131,7.954944167,1,CMIP5 -2046,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00449859,7.938138,7.948733,7.942908286,7.942684233,1,CMIP5 -2046,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003022839,7.952003,7.9593618,7.956615578,7.957727833,1,CMIP5 -2047,ph,ocean,ph,rcp85,1,Simulated,global,0.002771391,7.94591475,7.953439,7.950569881,7.951177167,1,CMIP5 -2047,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004989084,7.9347515,7.945814,7.939337439,7.937793067,1,CMIP5 -2047,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003237651,7.94795875,7.9557498,7.952731022,7.954144292,1,CMIP5 -2048,ph,ocean,ph,rcp85,1,Simulated,global,0.002645764,7.9422045,7.9490934,7.946922997,7.947828042,1,CMIP5 -2048,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004492163,7.93057875,7.940956,7.935121406,7.934074467,1,CMIP5 -2048,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003100503,7.9442515,7.9520496,7.949190128,7.950712333,1,CMIP5 -2049,ph,ocean,ph,rcp85,1,Simulated,global,0.002719945,7.93831275,7.94563,7.943122289,7.943755292,1,CMIP5 -2049,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004847033,7.92581025,7.937353,7.930704983,7.9297692,1,CMIP5 -2049,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00309535,7.94060625,7.9483044,7.945509928,7.947012958,1,CMIP5 -2050,ph,ocean,ph,rcp85,1,Simulated,global,0.002615883,7.93446775,7.9415222,7.938900228,7.939411208,1,CMIP5 -2050,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003955799,7.921822,7.932612,7.925714972,7.9252135,1,CMIP5 -2050,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003195632,7.936717,7.9445706,7.941418517,7.94259175,1,CMIP5 -2051,ph,ocean,ph,rcp85,1,Simulated,global,0.002650249,7.9309235,7.938009,7.935165331,7.935488542,1,CMIP5 -2051,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004350621,7.91735525,7.92822,7.922284861,7.921677333,1,CMIP5 -2051,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003016596,7.9332075,7.9407176,7.937632003,7.938680958,1,CMIP5 -2052,ph,ocean,ph,rcp85,1,Simulated,global,0.002656146,7.926558,7.933548,7.931100217,7.93171775,1,CMIP5 -2052,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003826326,7.91354875,7.923785,7.917477006,7.916654267,1,CMIP5 -2052,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003187998,7.9288415,7.936527,7.933709236,7.935162958,1,CMIP5 -2053,ph,ocean,ph,rcp85,1,Simulated,global,0.00264503,7.922296,7.9294842,7.926938297,7.927526292,1,CMIP5 -2053,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004654469,7.90747425,7.920292,7.912827111,7.912180833,1,CMIP5 -2053,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00315674,7.9247635,7.932601,7.929649528,7.931154833,1,CMIP5 -2054,ph,ocean,ph,rcp85,1,Simulated,global,0.002538888,7.9183235,7.925324,7.922732361,7.923251333,1,CMIP5 -2054,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003904524,7.9030375,7.914568,7.908008119,7.907659733,1,CMIP5 -2054,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00312826,7.9207,7.9284562,7.925554894,7.926816833,1,CMIP5 -2055,ph,ocean,ph,rcp85,1,Simulated,global,0.00261427,7.914395,7.921411,7.918808444,7.918923333,1,CMIP5 -2055,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00426033,7.8987885,7.910698,7.903280714,7.901926767,1,CMIP5 -2055,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003137935,7.91692725,7.9246434,7.921784858,7.92292325,1,CMIP5 -2056,ph,ocean,ph,rcp85,1,Simulated,global,0.002723764,7.90971475,7.9173452,7.914428797,7.914875417,1,CMIP5 -2056,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003213077,7.894409,7.903195,7.898130617,7.8981491,1,CMIP5 -2056,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003175624,7.91244075,7.9206276,7.917541892,7.918777,1,CMIP5 -2057,ph,ocean,ph,rcp85,1,Simulated,global,0.002790562,7.9052205,7.9129036,7.910254031,7.911085042,1,CMIP5 -2057,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003673165,7.88977825,7.899512,7.893865669,7.893618133,1,CMIP5 -2057,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003279924,7.908003,7.9162968,7.913389258,7.9148595,1,CMIP5 -2058,ph,ocean,ph,rcp85,1,Simulated,global,0.002789122,7.90093825,7.9089014,7.905865344,7.906782708,1,CMIP5 -2058,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003362807,7.8855555,7.894367,7.889574389,7.889696667,1,CMIP5 -2058,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00325729,7.90381125,7.9123288,7.908977008,7.909973,1,CMIP5 -2059,ph,ocean,ph,rcp85,1,Simulated,global,0.002913757,7.89659875,7.9043268,7.901529203,7.902093833,1,CMIP5 -2059,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00338907,7.88069375,7.889552,7.884698708,7.884249,1,CMIP5 -2059,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003432906,7.899356,7.9077328,7.904748828,7.906168333,1,CMIP5 -2060,ph,ocean,ph,rcp85,1,Simulated,global,0.002898583,7.89273725,7.900324,7.897470322,7.897991042,1,CMIP5 -2060,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003406898,7.87663,7.885748,7.880408639,7.880193667,1,CMIP5 -2060,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003433544,7.8956475,7.9036848,7.900727883,7.902119,1,CMIP5 -2061,ph,ocean,ph,rcp85,1,Simulated,global,0.002685161,7.88861125,7.8959226,7.893187711,7.893706208,1,CMIP5 -2061,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004317484,7.871263,7.883218,7.876084872,7.876199367,1,CMIP5 -2061,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003219735,7.891704,7.8994634,7.896458136,7.897794333,1,CMIP5 -2062,ph,ocean,ph,rcp85,1,Simulated,global,0.002610835,7.88435075,7.8916062,7.8887572,7.889333625,1,CMIP5 -2062,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004549191,7.8658205,7.8785,7.870894044,7.870865133,1,CMIP5 -2062,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003152695,7.88763425,7.8951924,7.892178039,7.893567167,1,CMIP5 -2063,ph,ocean,ph,rcp85,1,Simulated,global,0.002503831,7.880211,7.8872954,7.884492067,7.88473,1,CMIP5 -2063,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00484107,7.86106425,7.874828,7.866006539,7.865429867,1,CMIP5 -2063,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003029036,7.8835245,7.8909916,7.888030114,7.889350292,1,CMIP5 -2064,ph,ocean,ph,rcp85,1,Simulated,global,0.002576896,7.876028,7.8829708,7.880112203,7.880591708,1,CMIP5 -2064,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004063454,7.85702375,7.867881,7.861006336,7.860719133,1,CMIP5 -2064,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003118251,7.8795635,7.8867154,7.883764442,7.885209,1,CMIP5 -2065,ph,ocean,ph,rcp85,1,Simulated,global,0.002660504,7.87094725,7.8784728,7.875640314,7.876191917,1,CMIP5 -2065,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004449871,7.85168025,7.86388,7.856391461,7.856316633,1,CMIP5 -2065,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003091229,7.87454525,7.8822272,7.879319756,7.880709667,1,CMIP5 -2066,ph,ocean,ph,rcp85,1,Simulated,global,0.00278394,7.866404,7.8740246,7.871226142,7.871866125,1,CMIP5 -2066,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004412849,7.84693875,7.859378,7.851989642,7.8520773,1,CMIP5 -2066,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003344576,7.86982575,7.8778816,7.874898114,7.876463667,1,CMIP5 -2067,ph,ocean,ph,rcp85,1,Simulated,global,0.002848469,7.86175975,7.8697114,7.866758803,7.867527333,1,CMIP5 -2067,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004484318,7.8421715,7.854617,7.847103589,7.847495667,1,CMIP5 -2067,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003357747,7.8654175,7.8735034,7.870514525,7.871961,1,CMIP5 -2068,ph,ocean,ph,rcp85,1,Simulated,global,0.002896796,7.8571245,7.865254,7.862078306,7.862653167,1,CMIP5 -2068,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004215418,7.837023,7.848968,7.842001386,7.842365533,1,CMIP5 -2068,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00347403,7.86065075,7.869231,7.865913931,7.867227667,1,CMIP5 -2069,ph,ocean,ph,rcp85,1,Simulated,global,0.002885037,7.852703,7.86097,7.857611431,7.858130792,1,CMIP5 -2069,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005036172,7.832446,7.846092,7.836771828,7.835926333,1,CMIP5 -2069,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003509964,7.85648575,7.8650366,7.861595392,7.862917,1,CMIP5 -2070,ph,ocean,ph,rcp85,1,Simulated,global,0.002807883,7.84849425,7.8564126,7.853479878,7.854126708,1,CMIP5 -2070,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004499891,7.8274565,7.839827,7.832024286,7.832050833,1,CMIP5 -2070,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00331143,7.852373,7.8605022,7.857575853,7.859201333,1,CMIP5 -2071,ph,ocean,ph,rcp85,1,Simulated,global,0.002761482,7.844452,7.8521134,7.849057247,7.849613042,1,CMIP5 -2071,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004876695,7.82273575,7.835779,7.827456294,7.826959633,1,CMIP5 -2071,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003353257,7.848456,7.8562742,7.853191117,7.854636,1,CMIP5 -2072,ph,ocean,ph,rcp85,1,Simulated,global,0.002633562,7.84000425,7.8475642,7.844580908,7.845208,1,CMIP5 -2072,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00421912,7.8179925,7.829552,7.822361769,7.822081333,1,CMIP5 -2072,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003172141,7.844029,7.8516842,7.848820978,7.849985333,1,CMIP5 -2073,ph,ocean,ph,rcp85,1,Simulated,global,0.002766546,7.834943,7.8432692,7.839690881,7.840215542,1,CMIP5 -2073,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005001288,7.8125875,7.825709,7.816617094,7.814881333,1,CMIP5 -2073,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003330651,7.83908125,7.847539,7.844094583,7.8450335,1,CMIP5 -2074,ph,ocean,ph,rcp85,1,Simulated,global,0.002657423,7.83089625,7.8388602,7.83551445,7.836037125,1,CMIP5 -2074,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005529021,7.8074205,7.822282,7.812239219,7.811026833,1,CMIP5 -2074,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003223188,7.83525425,7.8431876,7.839965253,7.840796833,1,CMIP5 -2075,ph,ocean,ph,rcp85,1,Simulated,global,0.002846189,7.8262495,7.8342628,7.831069092,7.831761625,1,CMIP5 -2075,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00460477,7.8026925,7.815164,7.807272497,7.806795667,1,CMIP5 -2075,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003449326,7.8306485,7.838647,7.835608875,7.836887,1,CMIP5 -2076,ph,ocean,ph,rcp85,1,Simulated,global,0.002783203,7.82191375,7.8299342,7.826877811,7.827490958,1,CMIP5 -2076,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004341217,7.7984445,7.810219,7.802773006,7.802437667,1,CMIP5 -2076,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003294478,7.826258,7.8343926,7.831475447,7.832754667,1,CMIP5 -2077,ph,ocean,ph,rcp85,1,Simulated,global,0.002892024,7.81730125,7.8257552,7.822348047,7.822897917,1,CMIP5 -2077,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005026386,7.79325875,7.806632,7.797624447,7.796062167,1,CMIP5 -2077,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00349873,7.82170225,7.830261,7.827064861,7.828374333,1,CMIP5 -2078,ph,ocean,ph,rcp85,1,Simulated,global,0.003079218,7.81262475,7.821391,7.817948375,7.81854175,1,CMIP5 -2078,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005275353,7.787841,7.802491,7.793176414,7.792008167,1,CMIP5 -2078,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003648418,7.817253,7.825927,7.822671653,7.824236833,1,CMIP5 -2079,ph,ocean,ph,rcp85,1,Simulated,global,0.002965718,7.80857725,7.8171126,7.813943225,7.81459825,1,CMIP5 -2079,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004975237,7.783573,7.79694,7.789086264,7.789460667,1,CMIP5 -2079,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003379706,7.8132465,7.8216774,7.818690789,7.820112667,1,CMIP5 -2080,ph,ocean,ph,rcp85,1,Simulated,global,0.002966361,7.80414475,7.812907,7.809453694,7.810040708,1,CMIP5 -2080,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004735621,7.7781215,7.791237,7.78338045,7.782666,1,CMIP5 -2080,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00348777,7.80873625,7.817608,7.814430056,7.815809667,1,CMIP5 -2081,ph,ocean,ph,rcp85,1,Simulated,global,0.002902877,7.80021425,7.808464,7.805004139,7.805378292,1,CMIP5 -2081,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00462088,7.77306525,7.785848,7.778728297,7.778838167,1,CMIP5 -2081,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003431594,7.80499875,7.8132352,7.810019575,7.811304,1,CMIP5 -2082,ph,ocean,ph,rcp85,1,Simulated,global,0.002902669,7.795799,7.8040552,7.800668228,7.801160083,1,CMIP5 -2082,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004471475,7.76830525,7.78021,7.774349311,7.775404833,1,CMIP5 -2082,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003386742,7.80061625,7.8088286,7.805693294,7.806816833,1,CMIP5 -2083,ph,ocean,ph,rcp85,1,Simulated,global,0.002627149,7.79186175,7.799824,7.796274694,7.796659708,1,CMIP5 -2083,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004734556,7.76413425,7.776694,7.768889464,7.767796167,1,CMIP5 -2083,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003100042,7.79690125,7.8046836,7.801495961,7.802272333,1,CMIP5 -2084,ph,ocean,ph,rcp85,1,Simulated,global,0.002823623,7.787286,7.7956766,7.792061906,7.792384917,1,CMIP5 -2084,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004848967,7.7586125,7.771732,7.764455378,7.764518833,1,CMIP5 -2084,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003266521,7.7923985,7.8006156,7.797330642,7.7982535,1,CMIP5 -2085,ph,ocean,ph,rcp85,1,Simulated,global,0.002890152,7.7829135,7.791392,7.787928264,7.788515542,1,CMIP5 -2085,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005038732,7.75437575,7.768128,7.760317511,7.760144333,1,CMIP5 -2085,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003412803,7.787989,7.7962924,7.793200636,7.794431833,1,CMIP5 -2086,ph,ocean,ph,rcp85,1,Simulated,global,0.003113488,7.77806675,7.786968,7.783536972,7.784285042,1,CMIP5 -2086,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004863323,7.7504235,7.762893,7.755479194,7.755077333,1,CMIP5 -2086,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003643552,7.7832235,7.792042,7.788890461,7.790319833,1,CMIP5 -2087,ph,ocean,ph,rcp85,1,Simulated,global,0.00300064,7.7743205,7.7828896,7.779403308,7.779918375,1,CMIP5 -2087,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00456374,7.7458375,7.757941,7.750745233,7.749877,1,CMIP5 -2087,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003576193,7.7794555,7.7879232,7.784866131,7.786239167,1,CMIP5 -2088,ph,ocean,ph,rcp85,1,Simulated,global,0.003105634,7.7698475,7.7787968,7.7750898,7.77571625,1,CMIP5 -2088,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005172539,7.74110675,7.754942,7.746890103,7.747046833,1,CMIP5 -2088,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003688572,7.7751215,7.7839048,7.780472828,7.781614833,1,CMIP5 -2089,ph,ocean,ph,rcp85,1,Simulated,global,0.002860855,7.76634125,7.7747666,7.771000892,7.77128975,1,CMIP5 -2089,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005658362,7.7361945,7.75132,7.741830569,7.740520833,1,CMIP5 -2089,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003441825,7.77180425,7.7799136,7.776568975,7.777518,1,CMIP5 -2090,ph,ocean,ph,rcp85,1,Simulated,global,0.002989213,7.761739,7.770523,7.766704403,7.767029708,1,CMIP5 -2090,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005013677,7.73101825,7.744822,7.737050825,7.736958,1,CMIP5 -2090,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003509069,7.767189,7.7758632,7.772359256,7.773457667,1,CMIP5 -2091,ph,ocean,ph,rcp85,1,Simulated,global,0.003042635,7.75742375,7.7664632,7.762698811,7.763339458,1,CMIP5 -2091,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005181279,7.7253795,7.739753,7.732137772,7.731765167,1,CMIP5 -2091,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003641508,7.76287575,7.7718026,7.768530378,7.769691833,1,CMIP5 -2092,ph,ocean,ph,rcp85,1,Simulated,global,0.002970373,7.75358825,7.7622074,7.758531969,7.758913583,1,CMIP5 -2092,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00559049,7.720125,7.735758,7.727824331,7.728156167,1,CMIP5 -2092,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003538431,7.75923175,7.7675994,7.764399747,7.765595667,1,CMIP5 -2093,ph,ocean,ph,rcp85,1,Simulated,global,0.003098369,7.74917725,7.7582408,7.754397536,7.754787583,1,CMIP5 -2093,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005576899,7.71601325,7.731479,7.723869367,7.724893,1,CMIP5 -2093,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003665954,7.75481225,7.76372775,7.760228856,7.761114167,1,CMIP5 -2094,ph,ocean,ph,rcp85,1,Simulated,global,0.002897065,7.74582775,7.754294,7.7504075,7.750777625,1,CMIP5 -2094,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005436517,7.71256375,7.727847,7.719091964,7.717800667,1,CMIP5 -2094,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00361562,7.7514465,7.759803,7.756383847,7.757448167,1,CMIP5 -2095,ph,ocean,ph,rcp85,1,Simulated,global,0.002892771,7.74161475,7.7500458,7.746472869,7.746889833,1,CMIP5 -2095,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004936003,7.7085345,7.722352,7.714682269,7.713962333,1,CMIP5 -2095,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003503669,7.747301,7.755631,7.752534667,7.753776,1,CMIP5 -2096,ph,ocean,ph,rcp85,1,Simulated,global,0.00298344,7.7373445,7.746038,7.74232425,7.742676,1,CMIP5 -2096,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005637435,7.7040765,7.719209,7.710155667,7.7090035,1,CMIP5 -2096,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003588062,7.743288,7.7519275,7.74846195,7.7494935,1,CMIP5 -2097,ph,ocean,ph,rcp85,1,Simulated,global,0.003058398,7.73308725,7.7419544,7.738073928,7.738267958,1,CMIP5 -2097,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005095613,7.69963825,7.713366,7.705575478,7.704293833,1,CMIP5 -2097,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003645936,7.738857,7.747669,7.744274433,7.7452855,1,CMIP5 -2098,ph,ocean,ph,rcp85,1,Simulated,global,0.002763627,7.72962,7.737908,7.734160486,7.734563958,1,CMIP5 -2098,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005277661,7.69513075,7.709849,7.701536631,7.700735667,1,CMIP5 -2098,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003406527,7.7355475,7.7438475,7.740389544,7.741078833,1,CMIP5 -2099,ph,ocean,ph,rcp85,1,Simulated,global,0.002807192,7.72582125,7.7342376,7.730388156,7.730699542,1,CMIP5 -2099,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005880207,7.69025575,7.707516,7.697559478,7.696163333,1,CMIP5 -2099,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003582498,7.73162175,7.7401394,7.736655664,7.737609167,1,CMIP5 -2100,ph,ocean,ph,rcp85,1,Simulated,global,0.002659715,7.72254725,7.7300574,7.726737358,7.72685525,1,CMIP5 -2100,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005595339,7.686555,7.702565,7.693430942,7.6928635,1,CMIP5 -2100,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003311402,7.72873025,7.736147,7.733092553,7.734213833,1,CMIP5 -2101,ph,ocean,ph,rcp85,1,Simulated,global,0.002872937,7.717405,7.722569,7.720714333,7.722169,1,CMIP5 -2101,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003182995,7.679237,7.684882,7.682909,7.684608,1,CMIP5 -2101,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00439033,7.72353,7.731992,7.728437667,7.729791,1,CMIP5 -2102,ph,ocean,ph,rcp85,1,Simulated,global,0.002852134,7.713642,7.718913,7.716907,7.718166,1,CMIP5 -2102,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003337392,7.675242,7.68169,7.678964,7.67996,1,CMIP5 -2102,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004320552,7.719932,7.728409,7.724654333,7.725622,1,CMIP5 -2103,ph,ocean,ph,rcp85,1,Simulated,global,0.002433789,7.710693,7.715371,7.713420333,7.714197,1,CMIP5 -2103,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003397274,7.671811,7.678372,7.675601333,7.676621,1,CMIP5 -2103,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003906885,7.717056,7.724842,7.721139,7.721519,1,CMIP5 -2104,ph,ocean,ph,rcp85,1,Simulated,global,0.002852363,7.706404,7.711591,7.709683,7.711054,1,CMIP5 -2104,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004951521,7.667521,7.677411,7.672319333,7.672026,1,CMIP5 -2104,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004209459,7.712824,7.721174,7.717309333,7.71793,1,CMIP5 -2105,ph,ocean,ph,rcp85,1,Simulated,global,0.002990012,7.702336,7.707866,7.705758,7.707072,1,CMIP5 -2105,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003431258,7.663599,7.670453,7.667124667,7.667322,1,CMIP5 -2105,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004380868,7.708875,7.717492,7.713641333,7.714557,1,CMIP5 -2106,ph,ocean,ph,rcp85,1,Simulated,global,0.003244098,7.697976,7.704131,7.701646,7.702831,1,CMIP5 -2106,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003669708,7.660555,7.667561,7.663426667,7.662164,1,CMIP5 -2106,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004501427,7.704664,7.713606,7.709436667,7.71004,1,CMIP5 -2107,ph,ocean,ph,rcp85,1,Simulated,global,0.003529006,7.693702,7.700339,7.697713667,7.6991,1,CMIP5 -2107,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003434924,7.655984,7.66259,7.658742667,7.657654,1,CMIP5 -2107,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004838567,7.700434,7.709984,7.705660333,7.706563,1,CMIP5 -2108,ph,ocean,ph,rcp85,1,Simulated,global,0.00361658,7.690182,7.696706,7.694345667,7.696149,1,CMIP5 -2108,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.002943129,7.652205,7.65805,7.654926667,7.654525,1,CMIP5 -2108,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004956084,7.69684,7.706382,7.702385667,7.703935,1,CMIP5 -2109,ph,ocean,ph,rcp85,1,Simulated,global,0.003564716,7.686395,7.693018,7.690468333,7.691992,1,CMIP5 -2109,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.002850092,7.648903,7.654598,7.651820667,7.651961,1,CMIP5 -2109,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005015935,7.692826,7.702611,7.698357,7.699634,1,CMIP5 -2110,ph,ocean,ph,rcp85,1,Simulated,global,0.002920648,7.683276,7.688704,7.686613,7.687859,1,CMIP5 -2110,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003560574,7.642663,7.649757,7.646389333,7.646748,1,CMIP5 -2110,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004368068,7.690098,7.698716,7.694820333,7.695647,1,CMIP5 -2111,ph,ocean,ph,rcp85,1,Simulated,global,0.002934486,7.679801,7.685237,7.683157667,7.684435,1,CMIP5 -2111,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004678853,7.63842,7.647727,7.643354333,7.643916,1,CMIP5 -2111,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004493085,7.686502,7.695417,7.691285333,7.691937,1,CMIP5 -2112,ph,ocean,ph,rcp85,1,Simulated,global,0.002722395,7.676389,7.68169,7.679398333,7.680116,1,CMIP5 -2112,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003844134,7.63474,7.642264,7.638958333,7.639871,1,CMIP5 -2112,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004348428,7.683209,7.691899,7.687653667,7.687853,1,CMIP5 -2113,ph,ocean,ph,rcp85,1,Simulated,global,0.002941908,7.672839,7.678117,7.676228667,7.67773,1,CMIP5 -2113,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004298644,7.631478,7.639723,7.634897333,7.633491,1,CMIP5 -2113,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004102581,7.680187,7.688259,7.684648,7.685498,1,CMIP5 -2114,ph,ocean,ph,rcp85,1,Simulated,global,0.003203428,7.668394,7.674479,7.672015333,7.673173,1,CMIP5 -2114,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.002943095,7.627567,7.633452,7.630475333,7.630407,1,CMIP5 -2114,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004648617,7.675488,7.68468,7.680486667,7.681292,1,CMIP5 -2115,ph,ocean,ph,rcp85,1,Simulated,global,0.003451143,7.664616,7.671098,7.668541667,7.669911,1,CMIP5 -2115,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004477591,7.62367,7.632625,7.628131,7.628098,1,CMIP5 -2115,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005028394,7.671436,7.681411,7.676793,7.677532,1,CMIP5 -2116,ph,ocean,ph,rcp85,1,Simulated,global,0.003555088,7.661075,7.667652,7.665143333,7.666703,1,CMIP5 -2116,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00418163,7.620251,7.628376,7.623741333,7.622597,1,CMIP5 -2116,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004918841,7.668261,7.67796,7.673585667,7.674536,1,CMIP5 -2117,ph,ocean,ph,rcp85,1,Simulated,global,0.003672532,7.657188,7.664317,7.661263,7.662284,1,CMIP5 -2117,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003972427,7.61674,7.62444,7.620025,7.618895,1,CMIP5 -2117,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005170174,7.664339,7.674662,7.669673333,7.670019,1,CMIP5 -2118,ph,ocean,ph,rcp85,1,Simulated,global,0.003053451,7.654599,7.660641,7.657876333,7.658389,1,CMIP5 -2118,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.002857018,7.612197,7.617904,7.615132333,7.615296,1,CMIP5 -2118,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004618917,7.661938,7.671175,7.666592333,7.666664,1,CMIP5 -2119,ph,ocean,ph,rcp85,1,Simulated,global,0.003266815,7.650921,7.657174,7.654594333,7.655688,1,CMIP5 -2119,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004105013,7.608063,7.616273,7.612162,7.61215,1,CMIP5 -2119,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004864645,7.658161,7.667853,7.663252667,7.663744,1,CMIP5 -2120,ph,ocean,ph,rcp85,1,Simulated,global,0.00354991,7.646996,7.653841,7.650962667,7.652051,1,CMIP5 -2120,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003358601,7.604963,7.61167,7.608423333,7.608637,1,CMIP5 -2120,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00518712,7.654159,7.66447,7.659644667,7.660305,1,CMIP5 -2121,ph,ocean,ph,rcp85,1,Simulated,global,0.003081291,7.644122,7.650216,7.647433667,7.647963,1,CMIP5 -2121,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003058261,7.600895,7.606975,7.604127667,7.604513,1,CMIP5 -2121,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004711436,7.651519,7.660941,7.656267,7.656341,1,CMIP5 -2122,ph,ocean,ph,rcp85,1,Simulated,global,0.003120988,7.640586,7.646621,7.644063667,7.644984,1,CMIP5 -2122,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004898932,7.595279,7.60468,7.600776333,7.60237,1,CMIP5 -2122,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005038251,7.647723,7.657785,7.65291,7.653222,1,CMIP5 -2123,ph,ocean,ph,rcp85,1,Simulated,global,0.002937372,7.637582,7.64321,7.640882333,7.641855,1,CMIP5 -2123,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004872779,7.590318,7.598948,7.59594,7.598554,1,CMIP5 -2123,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004987379,7.644797,7.654711,7.650071333,7.650706,1,CMIP5 -2124,ph,ocean,ph,rcp85,1,Simulated,global,0.002846866,7.633983,7.639496,7.637150333,7.637972,1,CMIP5 -2124,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005720615,7.586226,7.596229,7.592830667,7.596037,1,CMIP5 -2124,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005030831,7.641033,7.651079,7.646218,7.646542,1,CMIP5 -2125,ph,ocean,ph,rcp85,1,Simulated,global,0.003002754,7.630452,7.63645,7.633537667,7.633711,1,CMIP5 -2125,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004712376,7.582882,7.591655,7.588262667,7.590251,1,CMIP5 -2125,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005202961,7.637698,7.648098,7.642796667,7.642594,1,CMIP5 -2126,ph,ocean,ph,rcp85,1,Simulated,global,0.002772196,7.627588,7.632833,7.630729333,7.631767,1,CMIP5 -2126,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005741409,7.578858,7.589621,7.585394667,7.587705,1,CMIP5 -2126,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004778188,7.635036,7.644569,7.639995333,7.640381,1,CMIP5 -2127,ph,ocean,ph,rcp85,1,Simulated,global,0.003192758,7.623663,7.629542,7.627322,7.628761,1,CMIP5 -2127,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007301726,7.573874,7.587662,7.582157,7.584935,1,CMIP5 -2127,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005400501,7.630895,7.641647,7.636567667,7.637161,1,CMIP5 -2128,ph,ocean,ph,rcp85,1,Simulated,global,0.003510089,7.619781,7.626526,7.623715333,7.624839,1,CMIP5 -2128,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006122663,7.572605,7.584789,7.579050333,7.579757,1,CMIP5 -2128,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005499734,7.627256,7.638251,7.632844,7.633025,1,CMIP5 -2129,ph,ocean,ph,rcp85,1,Simulated,global,0.003320742,7.616935,7.623254,7.620684667,7.621865,1,CMIP5 -2129,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004367141,7.569099,7.577697,7.573841667,7.574729,1,CMIP5 -2129,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00513662,7.624817,7.635029,7.630246333,7.630893,1,CMIP5 -2130,ph,ocean,ph,rcp85,1,Simulated,global,0.003077219,7.614134,7.620103,7.617551333,7.618417,1,CMIP5 -2130,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004254195,7.565981,7.574169,7.570742667,7.572078,1,CMIP5 -2130,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.0049515,7.621987,7.631871,7.627106,7.62746,1,CMIP5 -2131,ph,ocean,ph,rcp85,1,Simulated,global,0.003304289,7.61021,7.616282,7.613999,7.615505,1,CMIP5 -2131,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007640727,7.560379,7.57551,7.568562,7.569797,1,CMIP5 -2131,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005350598,7.617757,7.628437,7.623291333,7.62368,1,CMIP5 -2132,ph,ocean,ph,rcp85,1,Simulated,global,0.003003735,7.607356,7.613298,7.610582333,7.611093,1,CMIP5 -2132,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006515599,7.556796,7.5692,7.564151,7.566457,1,CMIP5 -2132,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005308116,7.614993,7.625584,7.620077333,7.619655,1,CMIP5 -2133,ph,ocean,ph,rcp85,1,Simulated,global,0.002942781,7.604001,7.609691,7.607280333,7.608149,1,CMIP5 -2133,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006153951,7.552958,7.564147,7.560032667,7.562993,1,CMIP5 -2133,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005187383,7.611659,7.622028,7.616943333,7.617143,1,CMIP5 -2134,ph,ocean,ph,rcp85,1,Simulated,global,0.003310289,7.600565,7.60652,7.604377667,7.606048,1,CMIP5 -2134,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007272768,7.548578,7.562001,7.556907,7.560142,1,CMIP5 -2134,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005564931,7.608113,7.619119,7.614094,7.61505,1,CMIP5 -2135,ph,ocean,ph,rcp85,1,Simulated,global,0.003142019,7.597337,7.603276,7.600899333,7.602085,1,CMIP5 -2135,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007443104,7.544745,7.558086,7.553322,7.557135,1,CMIP5 -2135,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005591763,7.604845,7.616003,7.610642,7.611078,1,CMIP5 -2136,ph,ocean,ph,rcp85,1,Simulated,global,0.002981677,7.594547,7.600222,7.597913333,7.598971,1,CMIP5 -2136,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008227585,7.541352,7.556328,7.550808333,7.554745,1,CMIP5 -2136,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005523033,7.60198,7.613024,7.607563667,7.607687,1,CMIP5 -2137,ph,ocean,ph,rcp85,1,Simulated,global,0.003240042,7.591157,7.597387,7.594786667,7.595816,1,CMIP5 -2137,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006418406,7.539134,7.550257,7.546545333,7.550245,1,CMIP5 -2137,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005643053,7.598797,7.610054,7.604659333,7.605127,1,CMIP5 -2138,ph,ocean,ph,rcp85,1,Simulated,global,0.003032966,7.588385,7.594147,7.591813333,7.592908,1,CMIP5 -2138,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006906081,7.53542,7.548187,7.543325,7.546368,1,CMIP5 -2138,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005349519,7.596232,7.606917,7.601732667,7.602049,1,CMIP5 -2139,ph,ocean,ph,rcp85,1,Simulated,global,0.003424219,7.584544,7.591003,7.588430667,7.589745,1,CMIP5 -2139,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006583371,7.532191,7.544677,7.539640333,7.542053,1,CMIP5 -2139,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005675827,7.592479,7.603791,7.598408667,7.598956,1,CMIP5 -2140,ph,ocean,ph,rcp85,1,Simulated,global,0.003451116,7.58149,7.587878,7.585438667,7.586948,1,CMIP5 -2140,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008133149,7.528129,7.544378,7.53647,7.536903,1,CMIP5 -2140,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005530313,7.589816,7.600871,7.595445333,7.595649,1,CMIP5 -2141,ph,ocean,ph,rcp85,1,Simulated,global,0.003630075,7.578123,7.585001,7.582233,7.583575,1,CMIP5 -2141,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006714522,7.525798,7.539042,7.533061333,7.534344,1,CMIP5 -2141,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005797533,7.586299,7.597874,7.592283333,7.592677,1,CMIP5 -2142,ph,ocean,ph,rcp85,1,Simulated,global,0.003359554,7.575337,7.581533,7.579185333,7.580686,1,CMIP5 -2142,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007508407,7.520924,7.535613,7.529169333,7.530971,1,CMIP5 -2142,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005560518,7.583623,7.594712,7.589411,7.589898,1,CMIP5 -2143,ph,ocean,ph,rcp85,1,Simulated,global,0.003225566,7.572511,7.578394,7.576216667,7.577745,1,CMIP5 -2143,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00885365,7.516844,7.534128,7.526597,7.528819,1,CMIP5 -2143,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005559215,7.58067,7.591777,7.586369,7.58666,1,CMIP5 -2144,ph,ocean,ph,rcp85,1,Simulated,global,0.002808547,7.570214,7.575331,7.573441333,7.574779,1,CMIP5 -2144,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008863834,7.513293,7.530127,7.523314333,7.526523,1,CMIP5 -2144,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005226536,7.578374,7.588821,7.583700333,7.583906,1,CMIP5 -2145,ph,ocean,ph,rcp85,1,Simulated,global,0.002812281,7.567107,7.572398,7.570303333,7.571405,1,CMIP5 -2145,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008403799,7.509945,7.524555,7.519648667,7.524446,1,CMIP5 -2145,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005469717,7.575054,7.585979,7.580678667,7.581003,1,CMIP5 -2146,ph,ocean,ph,rcp85,1,Simulated,global,0.003007765,7.564177,7.569878,7.567581667,7.56869,1,CMIP5 -2146,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008342428,7.508332,7.522851,7.517964667,7.522711,1,CMIP5 -2146,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005676434,7.57192,7.58326,7.577746,7.578058,1,CMIP5 -2147,ph,ocean,ph,rcp85,1,Simulated,global,0.003258318,7.560662,7.566792,7.564365333,7.565642,1,CMIP5 -2147,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008190338,7.504875,7.520211,7.514204667,7.517528,1,CMIP5 -2147,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005774616,7.568717,7.580255,7.574633,7.574927,1,CMIP5 -2148,ph,ocean,ph,rcp85,1,Simulated,global,0.00346358,7.557328,7.564074,7.561155333,7.562064,1,CMIP5 -2148,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006882886,7.502272,7.514445,7.510214,7.513925,1,CMIP5 -2148,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006042896,7.565433,7.577513,7.571581,7.571797,1,CMIP5 -2149,ph,ocean,ph,rcp85,1,Simulated,global,0.003298203,7.554739,7.561123,7.558410333,7.559369,1,CMIP5 -2149,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007041186,7.498283,7.510518,7.506413333,7.510439,1,CMIP5 -2149,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005901942,7.562997,7.574788,7.569051667,7.56937,1,CMIP5 -2150,ph,ocean,ph,rcp85,1,Simulated,global,0.003589147,7.551196,7.55812,7.555204667,7.556298,1,CMIP5 -2150,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00673448,7.49529,7.50754,7.503031333,7.506264,1,CMIP5 -2150,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006107124,7.559587,7.571783,7.565877667,7.566263,1,CMIP5 -2151,ph,ocean,ph,rcp85,1,Simulated,global,0.003127745,7.549102,7.555221,7.552536667,7.553287,1,CMIP5 -2151,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008463693,7.490938,7.50614,7.500688333,7.504987,1,CMIP5 -2151,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005932874,7.55734,7.569199,7.563154,7.562923,1,CMIP5 -2152,ph,ocean,ph,rcp85,1,Simulated,global,0.003174063,7.546036,7.552247,7.549520333,7.550278,1,CMIP5 -2152,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00860404,7.487669,7.502608,7.497604,7.502535,1,CMIP5 -2152,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006066638,7.554159,7.56629,7.560156667,7.560021,1,CMIP5 -2153,ph,ocean,ph,rcp85,1,Simulated,global,0.00325364,7.54331,7.549544,7.546965667,7.548043,1,CMIP5 -2153,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008885902,7.485466,7.501577,7.495687,7.500018,1,CMIP5 -2153,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006196199,7.551103,7.563478,7.55748,7.557859,1,CMIP5 -2154,ph,ocean,ph,rcp85,1,Simulated,global,0.00313495,7.540615,7.546738,7.544066,7.544845,1,CMIP5 -2154,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008612067,7.481567,7.496878,7.4915,7.496055,1,CMIP5 -2154,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006063023,7.548783,7.560909,7.554836333,7.554817,1,CMIP5 -2155,ph,ocean,ph,rcp85,1,Simulated,global,0.00336566,7.537535,7.544006,7.541305667,7.542376,1,CMIP5 -2155,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008332729,7.47892,7.493994,7.488508667,7.492612,1,CMIP5 -2155,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006118849,7.545924,7.558159,7.552115667,7.552264,1,CMIP5 -2156,ph,ocean,ph,rcp85,1,Simulated,global,0.003247704,7.535116,7.541169,7.538822667,7.540183,1,CMIP5 -2156,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009137053,7.475672,7.492337,7.486169,7.490498,1,CMIP5 -2156,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005989396,7.543448,7.555411,7.549607,7.549962,1,CMIP5 -2157,ph,ocean,ph,rcp85,1,Simulated,global,0.003163467,7.532575,7.538755,7.536056333,7.536839,1,CMIP5 -2157,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009268491,7.472575,7.489328,7.483242,7.487823,1,CMIP5 -2157,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00611301,7.540932,7.553145,7.546875667,7.54655,1,CMIP5 -2158,ph,ocean,ph,rcp85,1,Simulated,global,0.003521944,7.529573,7.536344,7.533519,7.53464,1,CMIP5 -2158,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008304519,7.471327,7.4872,7.480675,7.483498,1,CMIP5 -2158,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006152001,7.538177,7.550481,7.544331333,7.544336,1,CMIP5 -2159,ph,ocean,ph,rcp85,1,Simulated,global,0.003674607,7.526782,7.533737,7.530945,7.532316,1,CMIP5 -2159,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007884437,7.469132,7.482929,7.478234667,7.482643,1,CMIP5 -2159,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006406331,7.535025,7.547785,7.54174,7.54241,1,CMIP5 -2160,ph,ocean,ph,rcp85,1,Simulated,global,0.003408555,7.524668,7.531312,7.528430667,7.529312,1,CMIP5 -2160,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008867913,7.465949,7.481753,7.476174667,7.480822,1,CMIP5 -2160,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006335161,7.532856,7.545525,7.539137667,7.539032,1,CMIP5 -2161,ph,ocean,ph,rcp85,1,Simulated,global,0.003223779,7.522319,7.528578,7.525895333,7.526789,1,CMIP5 -2161,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009521944,7.462157,7.479283,7.473124333,7.477933,1,CMIP5 -2161,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006209172,7.530608,7.543021,7.536709333,7.536499,1,CMIP5 -2162,ph,ocean,ph,rcp85,1,Simulated,global,0.003397152,7.519863,7.526427,7.523651333,7.524664,1,CMIP5 -2162,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009214748,7.459978,7.476834,7.470557,7.474859,1,CMIP5 -2162,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006304957,7.528267,7.540876,7.534527667,7.53444,1,CMIP5 -2163,ph,ocean,ph,rcp85,1,Simulated,global,0.003615056,7.517294,7.524064,7.521411667,7.522877,1,CMIP5 -2163,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009791141,7.457531,7.476656,7.468308,7.470737,1,CMIP5 -2163,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006272109,7.525988,7.538532,7.532281333,7.532324,1,CMIP5 -2164,ph,ocean,ph,rcp85,1,Simulated,global,0.003375195,7.515391,7.521824,7.519198,7.520379,1,CMIP5 -2164,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009425885,7.455575,7.473548,7.466203667,7.469488,1,CMIP5 -2164,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006134075,7.523963,7.53623,7.530048,7.529951,1,CMIP5 -2165,ph,ocean,ph,rcp85,1,Simulated,global,0.003694296,7.512409,7.519469,7.516568,7.517826,1,CMIP5 -2165,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009116635,7.452882,7.470173,7.463197667,7.466538,1,CMIP5 -2165,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006486278,7.520976,7.533948,7.527496667,7.527566,1,CMIP5 -2166,ph,ocean,ph,rcp85,1,Simulated,global,0.003474283,7.510285,7.516815,7.514235667,7.515607,1,CMIP5 -2166,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010417012,7.44847,7.46804,7.460318,7.464444,1,CMIP5 -2166,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006415622,7.518845,7.531676,7.525283333,7.525329,1,CMIP5 -2167,ph,ocean,ph,rcp85,1,Simulated,global,0.003319879,7.508291,7.514556,7.512058333,7.513328,1,CMIP5 -2167,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010623483,7.446365,7.466243,7.45847,7.462802,1,CMIP5 -2167,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006298972,7.516786,7.529383,7.52304,7.522951,1,CMIP5 -2168,ph,ocean,ph,rcp85,1,Simulated,global,0.003217206,7.506043,7.512213,7.509655,7.510709,1,CMIP5 -2168,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010496321,7.443831,7.4621,7.455950667,7.461921,1,CMIP5 -2168,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006399539,7.514283,7.527082,7.520669667,7.520644,1,CMIP5 -2169,ph,ocean,ph,rcp85,1,Simulated,global,0.003472208,7.50388,7.510351,7.507843,7.509298,1,CMIP5 -2169,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009894899,7.441218,7.459084,7.452608,7.457522,1,CMIP5 -2169,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006432849,7.512537,7.525384,7.519160667,7.519561,1,CMIP5 -2170,ph,ocean,ph,rcp85,1,Simulated,global,0.0034805,7.501421,7.508093,7.50533,7.506476,1,CMIP5 -2170,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00997164,7.438484,7.45628,7.449980667,7.455178,1,CMIP5 -2170,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006586712,7.510057,7.52323,7.516674,7.516735,1,CMIP5 -2171,ph,ocean,ph,rcp85,1,Simulated,global,0.003398144,7.499212,7.505869,7.502935667,7.503726,1,CMIP5 -2171,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009990538,7.435515,7.453033,7.447048333,7.452597,1,CMIP5 -2171,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006668624,7.507835,7.521167,7.514393,7.514177,1,CMIP5 -2172,ph,ocean,ph,rcp85,1,Simulated,global,0.003270812,7.49741,7.503785,7.501021,7.501868,1,CMIP5 -2172,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010204407,7.433396,7.451224,7.445177667,7.450913,1,CMIP5 -2172,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006501568,7.506094,7.51909,7.512467667,7.512219,1,CMIP5 -2173,ph,ocean,ph,rcp85,1,Simulated,global,0.003741877,7.494602,7.501683,7.498841667,7.50024,1,CMIP5 -2173,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00942903,7.43184,7.4485,7.442720667,7.447822,1,CMIP5 -2173,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006778441,7.503338,7.51687,7.510341,7.510815,1,CMIP5 -2174,ph,ocean,ph,rcp85,1,Simulated,global,0.003467325,7.492959,7.499599,7.496856333,7.498011,1,CMIP5 -2174,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009371339,7.42905,7.446572,7.439731667,7.443573,1,CMIP5 -2174,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006378535,7.502182,7.514939,7.508548333,7.508524,1,CMIP5 -2175,ph,ocean,ph,rcp85,1,Simulated,global,0.003667187,7.490829,7.497899,7.494927333,7.496054,1,CMIP5 -2175,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010084481,7.427183,7.446116,7.438656333,7.44267,1,CMIP5 -2175,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006729055,7.499822,7.513276,7.506453,7.506261,1,CMIP5 -2176,ph,ocean,ph,rcp85,1,Simulated,global,0.003391761,7.489507,7.496028,7.493307,7.494386,1,CMIP5 -2176,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009843975,7.426066,7.443617,7.437416667,7.442567,1,CMIP5 -2176,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006484501,7.498272,7.511241,7.504758333,7.504762,1,CMIP5 -2177,ph,ocean,ph,rcp85,1,Simulated,global,0.003182207,7.487964,7.494126,7.491504667,7.492424,1,CMIP5 -2177,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010614306,7.423113,7.442665,7.435276,7.44005,1,CMIP5 -2177,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006338466,7.496912,7.509567,7.503024333,7.502594,1,CMIP5 -2178,ph,ocean,ph,rcp85,1,Simulated,global,0.003371751,7.485751,7.4923,7.489489667,7.490418,1,CMIP5 -2178,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01034676,7.420168,7.438126,7.432115333,7.438052,1,CMIP5 -2178,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006664661,7.494658,7.507985,7.501249667,7.501106,1,CMIP5 -2179,ph,ocean,ph,rcp85,1,Simulated,global,0.003527011,7.483819,7.490537,7.487799,7.489041,1,CMIP5 -2179,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010862057,7.418725,7.438758,7.431167333,7.436019,1,CMIP5 -2179,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006703427,7.492746,7.506152,7.499405333,7.499318,1,CMIP5 -2180,ph,ocean,ph,rcp85,1,Simulated,global,0.003446964,7.482225,7.488809,7.486107,7.487287,1,CMIP5 -2180,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010910001,7.416851,7.437109,7.429320333,7.434001,1,CMIP5 -2180,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006615268,7.49123,7.504456,7.497743,7.497543,1,CMIP5 -2181,ph,ocean,ph,rcp85,1,Simulated,global,0.003591084,7.480258,7.486875,7.484372667,7.485985,1,CMIP5 -2181,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01234735,7.414307,7.43755,7.428336667,7.433153,1,CMIP5 -2181,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006800521,7.489054,7.502655,7.495864333,7.495884,1,CMIP5 -2182,ph,ocean,ph,rcp85,1,Simulated,global,0.003432418,7.478595,7.48478,7.482547333,7.484267,1,CMIP5 -2182,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012246646,7.411879,7.43492,7.425798,7.430595,1,CMIP5 -2182,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006538697,7.487558,7.500632,7.494181,7.494353,1,CMIP5 -2183,ph,ocean,ph,rcp85,1,Simulated,global,0.00340241,7.476868,7.483234,7.480745,7.482133,1,CMIP5 -2183,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01187961,7.410332,7.432345,7.423919333,7.429081,1,CMIP5 -2183,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006647424,7.485792,7.499086,7.492395667,7.492309,1,CMIP5 -2184,ph,ocean,ph,rcp85,1,Simulated,global,0.003573799,7.475179,7.481767,7.479273333,7.480874,1,CMIP5 -2184,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012195838,7.408415,7.430362,7.422461,7.428606,1,CMIP5 -2184,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006924381,7.483876,7.497717,7.490930333,7.491198,1,CMIP5 -2185,ph,ocean,ph,rcp85,1,Simulated,global,0.003081829,7.473949,7.479757,7.477448667,7.47864,1,CMIP5 -2185,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012556078,7.40595,7.428194,7.420436333,7.427165,1,CMIP5 -2185,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006562703,7.482685,7.495806,7.489147333,7.488951,1,CMIP5 -2186,ph,ocean,ph,rcp85,1,Simulated,global,0.003492166,7.471739,7.478389,7.475680333,7.476913,1,CMIP5 -2186,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012048785,7.404277,7.425334,7.418188,7.424953,1,CMIP5 -2186,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007013528,7.480477,7.494504,7.487479,7.487456,1,CMIP5 -2187,ph,ocean,ph,rcp85,1,Simulated,global,0.0034376,7.470543,7.476892,7.474479,7.476002,1,CMIP5 -2187,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011918824,7.403097,7.424755,7.416800667,7.42255,1,CMIP5 -2187,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006718094,7.479506,7.492939,7.486307,7.486476,1,CMIP5 -2188,ph,ocean,ph,rcp85,1,Simulated,global,0.003046551,7.46964,7.475449,7.473075333,7.474137,1,CMIP5 -2188,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012333339,7.402492,7.424482,7.416713,7.423165,1,CMIP5 -2188,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006504202,7.478319,7.491313,7.484639333,7.484286,1,CMIP5 -2189,ph,ocean,ph,rcp85,1,Simulated,global,0.003330172,7.467568,7.473843,7.47135,7.472639,1,CMIP5 -2189,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012465439,7.399936,7.422751,7.414245,7.420048,1,CMIP5 -2189,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006738893,7.476442,7.489914,7.483064,7.482836,1,CMIP5 -2190,ph,ocean,ph,rcp85,1,Simulated,global,0.003717748,7.465429,7.472515,7.469622333,7.470923,1,CMIP5 -2190,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011802864,7.397691,7.418644,7.411306,7.417583,1,CMIP5 -2190,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007211027,7.474363,7.488785,7.481585333,7.481608,1,CMIP5 -2191,ph,ocean,ph,rcp85,1,Simulated,global,0.003888692,7.463968,7.471313,7.468378667,7.469855,1,CMIP5 -2191,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01129468,7.396654,7.41673,7.409681333,7.41566,1,CMIP5 -2191,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007283023,7.47299,7.487547,7.480416667,7.480713,1,CMIP5 -2192,ph,ocean,ph,rcp85,1,Simulated,global,0.003657486,7.462945,7.469774,7.467116333,7.46863,1,CMIP5 -2192,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011075573,7.396024,7.41581,7.408792,7.414542,1,CMIP5 -2192,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00692023,7.471984,7.485811,7.479073667,7.479426,1,CMIP5 -2193,ph,ocean,ph,rcp85,1,Simulated,global,0.003394219,7.462071,7.468543,7.465898333,7.467081,1,CMIP5 -2193,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01152866,7.394562,7.414929,7.407865667,7.414106,1,CMIP5 -2193,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00680119,7.471028,7.48463,7.477799667,7.477741,1,CMIP5 -2194,ph,ocean,ph,rcp85,1,Simulated,global,0.003444908,7.46039,7.467059,7.464224,7.465223,1,CMIP5 -2194,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012111823,7.392158,7.4132,7.406143333,7.413072,1,CMIP5 -2194,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00707513,7.469203,7.483346,7.476143667,7.475882,1,CMIP5 -2195,ph,ocean,ph,rcp85,1,Simulated,global,0.003384196,7.458968,7.465525,7.462731,7.4637,1,CMIP5 -2195,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012228363,7.390028,7.411618,7.404139667,7.410773,1,CMIP5 -2195,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006995356,7.467968,7.481941,7.474751333,7.474345,1,CMIP5 -2196,ph,ocean,ph,rcp85,1,Simulated,global,0.003409133,7.457771,7.464401,7.461545333,7.462464,1,CMIP5 -2196,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010794849,7.389638,7.408682,7.402096,7.407968,1,CMIP5 -2196,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006860933,7.466938,7.480658,7.473732667,7.473602,1,CMIP5 -2197,ph,ocean,ph,rcp85,1,Simulated,global,0.003410645,7.456828,7.463417,7.460632,7.461651,1,CMIP5 -2197,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01145674,7.388684,7.40922,7.401886,7.407754,1,CMIP5 -2197,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006974016,7.465719,7.479667,7.472684333,7.472667,1,CMIP5 -2198,ph,ocean,ph,rcp85,1,Simulated,global,0.003364194,7.455549,7.46215,7.459225667,7.459978,1,CMIP5 -2198,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011026918,7.387741,7.407474,7.400450333,7.406136,1,CMIP5 -2198,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006905802,7.464527,7.478329,7.471279333,7.470982,1,CMIP5 -2199,ph,ocean,ph,rcp85,1,Simulated,global,0.003118758,7.454619,7.460773,7.457989667,7.458577,1,CMIP5 -2199,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011151336,7.385717,7.405375,7.398587,7.404669,1,CMIP5 -2199,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006657975,7.463815,7.477094,7.470168333,7.469596,1,CMIP5 -2200,ph,ocean,ph,rcp85,1,Simulated,global,0.003208961,7.453203,7.459513,7.456696333,7.457373,1,CMIP5 -2200,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011516324,7.384129,7.40469,7.397406,7.403399,1,CMIP5 -2200,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006832256,7.462263,7.475905,7.468857667,7.468405,1,CMIP5 -2201,ph,ocean,ph,rcp85,1,Simulated,global,0.00356829,7.451596,7.458546,7.455539,7.456475,1,CMIP5 -2201,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011381852,7.382826,7.403066,7.395953333,7.401968,1,CMIP5 -2201,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007080534,7.460864,7.475011,7.467755333,7.467391,1,CMIP5 -2202,ph,ocean,ph,rcp85,1,Simulated,global,0.003679308,7.450073,7.457126,7.454205333,7.455417,1,CMIP5 -2202,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012483564,7.380305,7.403619,7.394541,7.399699,1,CMIP5 -2202,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007184838,7.45948,7.47383,7.466438,7.466004,1,CMIP5 -2203,ph,ocean,ph,rcp85,1,Simulated,global,0.003516018,7.44923,7.456155,7.453045333,7.453751,1,CMIP5 -2203,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011763883,7.379627,7.400551,7.393194667,7.399406,1,CMIP5 -2203,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007155761,7.458535,7.472796,7.465318667,7.464625,1,CMIP5 -2204,ph,ocean,ph,rcp85,1,Simulated,global,0.003499239,7.448063,7.454796,7.451980667,7.453083,1,CMIP5 -2204,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01194499,7.378245,7.400171,7.391946333,7.397423,1,CMIP5 -2204,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006969133,7.45752,7.471442,7.464286667,7.463898,1,CMIP5 -2205,ph,ocean,ph,rcp85,1,Simulated,global,0.003593045,7.446955,7.453591,7.451069,7.452661,1,CMIP5 -2205,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013770603,7.375391,7.40107,7.391104333,7.396852,1,CMIP5 -2205,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007142929,7.456312,7.470595,7.463371,7.463206,1,CMIP5 -2206,ph,ocean,ph,rcp85,1,Simulated,global,0.003367888,7.446269,7.452758,7.450035,7.451078,1,CMIP5 -2206,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013733395,7.374634,7.398734,7.390487667,7.398095,1,CMIP5 -2206,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007252224,7.455266,7.469746,7.462263,7.461777,1,CMIP5 -2207,ph,ocean,ph,rcp85,1,Simulated,global,0.003581958,7.44464,7.451573,7.448627333,7.449669,1,CMIP5 -2207,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014163633,7.372856,7.398585,7.389141667,7.395984,1,CMIP5 -2207,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007508334,7.453727,7.46869,7.460842333,7.46011,1,CMIP5 -2208,ph,ocean,ph,rcp85,1,Simulated,global,0.003728271,7.443449,7.450609,7.44763,7.448832,1,CMIP5 -2208,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01322546,7.372441,7.396639,7.387623667,7.393791,1,CMIP5 -2208,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007451383,7.452723,7.467606,7.459943,7.4595,1,CMIP5 -2209,ph,ocean,ph,rcp85,1,Simulated,global,0.003750166,7.442654,7.449716,7.446914333,7.448373,1,CMIP5 -2209,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013584582,7.370861,7.394444,7.386547,7.394336,1,CMIP5 -2209,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007603547,7.451657,7.466863,7.459312667,7.459418,1,CMIP5 -2210,ph,ocean,ph,rcp85,1,Simulated,global,0.00387829,7.441587,7.44898,7.445961,7.447316,1,CMIP5 -2210,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013879109,7.369249,7.393737,7.385266333,7.392813,1,CMIP5 -2210,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007812229,7.450696,7.466318,7.458427,7.458267,1,CMIP5 -2211,ph,ocean,ph,rcp85,1,Simulated,global,0.00363052,7.440659,7.447711,7.444684333,7.445683,1,CMIP5 -2211,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014061188,7.368084,7.39271,7.384317333,7.392158,1,CMIP5 -2211,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007716984,7.449613,7.465026,7.457087333,7.456623,1,CMIP5 -2212,ph,ocean,ph,rcp85,1,Simulated,global,0.003652473,7.439765,7.446823,7.443837667,7.444925,1,CMIP5 -2212,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013266415,7.367616,7.391359,7.382906333,7.389744,1,CMIP5 -2212,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007480535,7.449107,7.464046,7.456342,7.455873,1,CMIP5 -2213,ph,ocean,ph,rcp85,1,Simulated,global,0.003806885,7.439037,7.446153,7.443376667,7.44494,1,CMIP5 -2213,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013231471,7.36753,7.391232,7.382778333,7.389573,1,CMIP5 -2213,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007488045,7.448274,7.463249,7.455813667,7.455918,1,CMIP5 -2214,ph,ocean,ph,rcp85,1,Simulated,global,0.003806529,7.438013,7.445395,7.442241333,7.443316,1,CMIP5 -2214,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013546392,7.365745,7.389575,7.381381,7.388823,1,CMIP5 -2214,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007766241,7.4472,7.462714,7.454738333,7.454301,1,CMIP5 -2215,ph,ocean,ph,rcp85,1,Simulated,global,0.003840764,7.437164,7.444592,7.441443,7.442573,1,CMIP5 -2215,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014413878,7.364359,7.389921,7.380987333,7.388682,1,CMIP5 -2215,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007923239,7.446218,7.462038,7.453863667,7.453335,1,CMIP5 -2216,ph,ocean,ph,rcp85,1,Simulated,global,0.003707662,7.436707,7.443706,7.440913667,7.442328,1,CMIP5 -2216,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01426386,7.363773,7.388767,7.38024,7.38818,1,CMIP5 -2216,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00771351,7.44566,7.461087,7.453380667,7.453395,1,CMIP5 -2217,ph,ocean,ph,rcp85,1,Simulated,global,0.003587485,7.436038,7.442828,7.440102333,7.441441,1,CMIP5 -2217,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014602668,7.362555,7.388259,7.379409667,7.387415,1,CMIP5 -2217,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007585343,7.445119,7.460283,7.452571,7.452311,1,CMIP5 -2218,ph,ocean,ph,rcp85,1,Simulated,global,0.003497315,7.43548,7.442084,7.439447333,7.440778,1,CMIP5 -2218,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01512539,7.361479,7.388148,7.378935333,7.387179,1,CMIP5 -2218,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007561474,7.4445,7.459611,7.451882,7.451535,1,CMIP5 -2219,ph,ocean,ph,rcp85,1,Simulated,global,0.003503206,7.434703,7.441376,7.438656,7.439889,1,CMIP5 -2219,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015484281,7.360163,7.387691,7.378022333,7.386213,1,CMIP5 -2219,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007653825,7.443758,7.459035,7.451117,7.450558,1,CMIP5 -2220,ph,ocean,ph,rcp85,1,Simulated,global,0.003452584,7.433835,7.440494,7.437692,7.438747,1,CMIP5 -2220,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014145441,7.360022,7.384964,7.376347333,7.384056,1,CMIP5 -2220,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007522242,7.442961,7.457992,7.450292667,7.449925,1,CMIP5 -2221,ph,ocean,ph,rcp85,1,Simulated,global,0.00344742,7.43334,7.439996,7.437187333,7.438226,1,CMIP5 -2221,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014561647,7.359693,7.385873,7.376466,7.383832,1,CMIP5 -2221,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007462352,7.442586,7.457457,7.449656333,7.448926,1,CMIP5 -2222,ph,ocean,ph,rcp85,1,Simulated,global,0.003777576,7.432406,7.43971,7.436615667,7.437731,1,CMIP5 -2222,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013584345,7.358939,7.38283,7.374619,7.382088,1,CMIP5 -2222,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007742883,7.441802,7.457273,7.449342333,7.448952,1,CMIP5 -2223,ph,ocean,ph,rcp85,1,Simulated,global,0.003596441,7.432215,7.439224,7.436186,7.437119,1,CMIP5 -2223,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014228099,7.35859,7.383644,7.375012,7.382802,1,CMIP5 -2223,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007750292,7.441285,7.456758,7.448754667,7.448221,1,CMIP5 -2224,ph,ocean,ph,rcp85,1,Simulated,global,0.003382071,7.431864,7.43846,7.435594667,7.43646,1,CMIP5 -2224,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014259315,7.357733,7.382579,7.374197333,7.38228,1,CMIP5 -2224,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007495582,7.441068,7.456014,7.448205333,7.447534,1,CMIP5 -2225,ph,ocean,ph,rcp85,1,Simulated,global,0.003493119,7.431175,7.437854,7.435106,7.436289,1,CMIP5 -2225,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014590719,7.357597,7.38319,7.374440667,7.382535,1,CMIP5 -2225,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007588841,7.440136,7.455305,7.447572333,7.447276,1,CMIP5 -2226,ph,ocean,ph,rcp85,1,Simulated,global,0.003638073,7.43068,7.437661,7.434762667,7.435947,1,CMIP5 -2226,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014198434,7.357899,7.383511,7.374245333,7.381326,1,CMIP5 -2226,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007567618,7.439897,7.455005,7.447189,7.446665,1,CMIP5 -2227,ph,ocean,ph,rcp85,1,Simulated,global,0.003890667,7.429601,7.437154,7.433917667,7.434998,1,CMIP5 -2227,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013154095,7.357324,7.380753,7.372493,7.379402,1,CMIP5 -2227,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007777826,7.438976,7.454513,7.446524667,7.446085,1,CMIP5 -2228,ph,ocean,ph,rcp85,1,Simulated,global,0.003980885,7.429135,7.436821,7.433577667,7.434777,1,CMIP5 -2228,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013885638,7.356386,7.381778,7.372328667,7.378822,1,CMIP5 -2228,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007903916,7.438531,7.454311,7.446150333,7.445609,1,CMIP5 -2229,ph,ocean,ph,rcp85,1,Simulated,global,0.003863495,7.428906,7.436403,7.433194667,7.434275,1,CMIP5 -2229,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013421982,7.356467,7.380926,7.371889667,7.378276,1,CMIP5 -2229,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007729253,7.438361,7.453785,7.445775,7.445179,1,CMIP5 -2230,ph,ocean,ph,rcp85,1,Simulated,global,0.003806455,7.428536,7.435987,7.432712333,7.433614,1,CMIP5 -2230,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014039958,7.355667,7.380217,7.371876667,7.379746,1,CMIP5 -2230,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007924519,7.437647,7.453452,7.445208667,7.444527,1,CMIP5 -2231,ph,ocean,ph,rcp85,1,Simulated,global,0.003987043,7.428039,7.435739,7.432487333,7.433684,1,CMIP5 -2231,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013806424,7.355216,7.379887,7.371131667,7.378292,1,CMIP5 -2231,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007967275,7.43733,7.453249,7.445086333,7.44468,1,CMIP5 -2232,ph,ocean,ph,rcp85,1,Simulated,global,0.003993692,7.427922,7.43574,7.432303333,7.433248,1,CMIP5 -2232,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014540522,7.355,7.381713,7.371674667,7.378311,1,CMIP5 -2232,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008098985,7.437187,7.453297,7.444755333,7.443782,1,CMIP5 -2233,ph,ocean,ph,rcp85,1,Simulated,global,0.00404669,7.427308,7.435181,7.431786,7.432869,1,CMIP5 -2233,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014277482,7.354147,7.379798,7.370594333,7.377838,1,CMIP5 -2233,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008146797,7.436546,7.452802,7.444354667,7.443716,1,CMIP5 -2234,ph,ocean,ph,rcp85,1,Simulated,global,0.003825122,7.427371,7.434825,7.431595,7.432589,1,CMIP5 -2234,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014772047,7.35396,7.379994,7.371009,7.379073,1,CMIP5 -2234,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008032869,7.43639,7.452409,7.444046,7.443339,1,CMIP5 -2235,ph,ocean,ph,rcp85,1,Simulated,global,0.004109337,7.426717,7.434595,7.431332,7.432684,1,CMIP5 -2235,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014296388,7.354229,7.380072,7.370682333,7.377746,1,CMIP5 -2235,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008110264,7.435862,7.452071,7.44379,7.443437,1,CMIP5 -2236,ph,ocean,ph,rcp85,1,Simulated,global,0.003982409,7.42663,7.434319,7.431074333,7.432274,1,CMIP5 -2236,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014957725,7.353737,7.381405,7.370855,7.377423,1,CMIP5 -2236,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00803885,7.435819,7.451841,7.443444,7.442672,1,CMIP5 -2237,ph,ocean,ph,rcp85,1,Simulated,global,0.00402624,7.426113,7.433989,7.430535,7.431503,1,CMIP5 -2237,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01394913,7.353732,7.379246,7.369746667,7.376262,1,CMIP5 -2237,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008041818,7.435422,7.451441,7.443015667,7.442184,1,CMIP5 -2238,ph,ocean,ph,rcp85,1,Simulated,global,0.003805846,7.426033,7.433346,7.430299,7.431518,1,CMIP5 -2238,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014463879,7.352953,7.379566,7.369532667,7.376079,1,CMIP5 -2238,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007752277,7.435362,7.450827,7.442775,7.442136,1,CMIP5 -2239,ph,ocean,ph,rcp85,1,Simulated,global,0.00386119,7.425889,7.433351,7.430194,7.431342,1,CMIP5 -2239,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014412228,7.35281,7.379149,7.369359667,7.37612,1,CMIP5 -2239,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007862825,7.435183,7.450865,7.442686,7.44201,1,CMIP5 -2240,ph,ocean,ph,rcp85,1,Simulated,global,0.003950049,7.425858,7.433544,7.430228333,7.431283,1,CMIP5 -2240,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015136576,7.352133,7.379479,7.369555,7.377053,1,CMIP5 -2240,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008168805,7.434972,7.451247,7.442697,7.441872,1,CMIP5 -2241,ph,ocean,ph,rcp85,1,Simulated,global,0.004006516,7.425731,7.433413,7.43023,7.431546,1,CMIP5 -2241,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014801279,7.352506,7.378471,7.369592667,7.377801,1,CMIP5 -2241,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008166625,7.434681,7.451006,7.442693667,7.442394,1,CMIP5 -2242,ph,ocean,ph,rcp85,1,Simulated,global,0.004331723,7.42495,7.433095,7.429874667,7.431579,1,CMIP5 -2242,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015557342,7.351806,7.380855,7.369548667,7.375985,1,CMIP5 -2242,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00834321,7.434094,7.450771,7.442270667,7.441947,1,CMIP5 -2243,ph,ocean,ph,rcp85,1,Simulated,global,0.004092247,7.424998,7.432856,7.429587667,7.430909,1,CMIP5 -2243,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015694953,7.351162,7.380236,7.369115,7.375947,1,CMIP5 -2243,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008257018,7.434158,7.450621,7.442015,7.441266,1,CMIP5 -2244,ph,ocean,ph,rcp85,1,Simulated,global,0.004291925,7.424617,7.432885,7.429417,7.430749,1,CMIP5 -2244,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014002389,7.35173,7.376965,7.367853,7.374864,1,CMIP5 -2244,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00831658,7.433908,7.450532,7.442060667,7.441742,1,CMIP5 -2245,ph,ocean,ph,rcp85,1,Simulated,global,0.004209989,7.424759,7.432861,7.429471667,7.430795,1,CMIP5 -2245,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014819237,7.351141,7.37881,7.368042333,7.374176,1,CMIP5 -2245,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008233147,7.434205,7.450631,7.442085667,7.441421,1,CMIP5 -2246,ph,ocean,ph,rcp85,1,Simulated,global,0.004290064,7.424364,7.432507,7.429216,7.430777,1,CMIP5 -2246,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015237178,7.350737,7.379495,7.368026667,7.373848,1,CMIP5 -2246,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008257899,7.433797,7.450288,7.441781333,7.441259,1,CMIP5 -2247,ph,ocean,ph,rcp85,1,Simulated,global,0.003989728,7.4248,7.432489,7.429260333,7.430492,1,CMIP5 -2247,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015078248,7.351084,7.379541,7.368193667,7.373956,1,CMIP5 -2247,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007985341,7.434294,7.45019,7.441796667,7.440906,1,CMIP5 -2248,ph,ocean,ph,rcp85,1,Simulated,global,0.004378167,7.424318,7.432487,7.429312667,7.431133,1,CMIP5 -2248,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015631835,7.351095,7.381212,7.368575333,7.373419,1,CMIP5 -2248,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008190086,7.433823,7.450185,7.441781333,7.441336,1,CMIP5 -2249,ph,ocean,ph,rcp85,1,Simulated,global,0.004439277,7.424062,7.4325,7.429078333,7.430673,1,CMIP5 -2249,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01518843,7.350955,7.379774,7.368136667,7.373681,1,CMIP5 -2249,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008392452,7.433471,7.450232,7.441593,7.441076,1,CMIP5 -2250,ph,ocean,ph,rcp85,1,Simulated,global,0.004399982,7.424307,7.432688,7.429272,7.430821,1,CMIP5 -2250,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015036647,7.350751,7.379134,7.367812,7.373551,1,CMIP5 -2250,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008371507,7.433785,7.450505,7.441891667,7.441385,1,CMIP5 -2251,ph,ocean,ph,rcp85,1,Simulated,global,0.004549801,7.424065,7.432808,7.429164667,7.430621,1,CMIP5 -2251,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01459601,7.350735,7.377878,7.367408,7.373611,1,CMIP5 -2251,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008592711,7.433487,7.450655,7.441847667,7.441401,1,CMIP5 -2252,ph,ocean,ph,rcp85,1,Simulated,global,0.004621241,7.423825,7.4325,7.429083,7.430924,1,CMIP5 -2252,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015615385,7.350248,7.380262,7.367747,7.372731,1,CMIP5 -2252,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008515978,7.433367,7.450385,7.441677,7.441279,1,CMIP5 -2253,ph,ocean,ph,rcp85,1,Simulated,global,0.004659824,7.423425,7.432055,7.428755667,7.430787,1,CMIP5 -2253,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015821663,7.349164,7.379703,7.366825667,7.37161,1,CMIP5 -2253,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008491572,7.433101,7.450079,7.441469333,7.441228,1,CMIP5 -2254,ph,ocean,ph,rcp85,1,Simulated,global,0.004511522,7.423764,7.432132,7.428922333,7.430871,1,CMIP5 -2254,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016303192,7.348311,7.379283,7.366739667,7.372625,1,CMIP5 -2254,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008525974,7.433314,7.450359,7.441696,7.441415,1,CMIP5 -2255,ph,ocean,ph,rcp85,1,Simulated,global,0.004701667,7.423833,7.432508,7.429218,7.431313,1,CMIP5 -2255,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01594753,7.349249,7.379492,7.367295333,7.373145,1,CMIP5 -2255,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008656551,7.433299,7.450612,7.441938333,7.441904,1,CMIP5 -2256,ph,ocean,ph,rcp85,1,Simulated,global,0.004542436,7.424049,7.432563,7.429221,7.431051,1,CMIP5 -2256,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016112034,7.349674,7.380222,7.367909,7.373831,1,CMIP5 -2256,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008586243,7.433427,7.450587,7.441818,7.44144,1,CMIP5 -2257,ph,ocean,ph,rcp85,1,Simulated,global,0.004448831,7.424049,7.432572,7.429048,7.430523,1,CMIP5 -2257,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015393542,7.349953,7.378658,7.367518333,7.373944,1,CMIP5 -2257,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008579464,7.433406,7.450537,7.441689,7.441124,1,CMIP5 -2258,ph,ocean,ph,rcp85,1,Simulated,global,0.004450638,7.424272,7.432725,7.429303667,7.430914,1,CMIP5 -2258,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.0150329,7.350225,7.378341,7.367357667,7.373507,1,CMIP5 -2258,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008461917,7.433752,7.450664,7.442025333,7.44166,1,CMIP5 -2259,ph,ocean,ph,rcp85,1,Simulated,global,0.004401431,7.423917,7.432345,7.428864667,7.430332,1,CMIP5 -2259,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016170716,7.347975,7.378001,7.366457,7.373395,1,CMIP5 -2259,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008688455,7.433352,7.450691,7.441690333,7.441028,1,CMIP5 -2260,ph,ocean,ph,rcp85,1,Simulated,global,0.004482856,7.424189,7.432763,7.429232667,7.430746,1,CMIP5 -2260,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015793071,7.34913,7.37899,7.367033,7.372979,1,CMIP5 -2260,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008618381,7.433753,7.450949,7.442009,7.441325,1,CMIP5 -2261,ph,ocean,ph,rcp85,1,Simulated,global,0.004629481,7.423887,7.432766,7.429084333,7.4306,1,CMIP5 -2261,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015291277,7.349026,7.377825,7.366396333,7.372338,1,CMIP5 -2261,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008744559,7.433514,7.450975,7.441958333,7.441386,1,CMIP5 -2262,ph,ocean,ph,rcp85,1,Simulated,global,0.00458487,7.424163,7.432864,7.429349,7.43102,1,CMIP5 -2262,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01641791,7.34944,7.380561,7.368023667,7.37407,1,CMIP5 -2262,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008759918,7.433518,7.451005,7.441952,7.441333,1,CMIP5 -2263,ph,ocean,ph,rcp85,1,Simulated,global,0.004501649,7.424143,7.432669,7.429241,7.430911,1,CMIP5 -2263,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016469516,7.348382,7.379587,7.367029,7.373118,1,CMIP5 -2263,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008679214,7.433672,7.450997,7.442023667,7.441402,1,CMIP5 -2264,ph,ocean,ph,rcp85,1,Simulated,global,0.004585995,7.424155,7.43269,7.429392,7.431331,1,CMIP5 -2264,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017391362,7.348441,7.381999,7.367861,7.373143,1,CMIP5 -2264,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008680176,7.433682,7.451009,7.442035,7.441414,1,CMIP5 -2265,ph,ocean,ph,rcp85,1,Simulated,global,0.004412834,7.424229,7.432365,7.429284333,7.431259,1,CMIP5 -2265,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017085785,7.348434,7.381247,7.367594333,7.373102,1,CMIP5 -2265,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008429114,7.433777,7.450615,7.441957667,7.441481,1,CMIP5 -2266,ph,ocean,ph,rcp85,1,Simulated,global,0.004733126,7.423986,7.43269,7.429412333,7.431561,1,CMIP5 -2266,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016776365,7.34912,7.38149,7.367854,7.372952,1,CMIP5 -2266,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00867549,7.433517,7.450862,7.442058,7.441795,1,CMIP5 -2267,ph,ocean,ph,rcp85,1,Simulated,global,0.004688228,7.424221,7.432893,7.429586333,7.431645,1,CMIP5 -2267,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017241258,7.348389,7.380993,7.367931667,7.374413,1,CMIP5 -2267,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008875483,7.433523,7.451268,7.442262667,7.441997,1,CMIP5 -2268,ph,ocean,ph,rcp85,1,Simulated,global,0.00461142,7.424232,7.432726,7.429516333,7.431591,1,CMIP5 -2268,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016512423,7.349785,7.381523,7.368289333,7.37356,1,CMIP5 -2268,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008536664,7.433694,7.450761,7.442093333,7.441825,1,CMIP5 -2269,ph,ocean,ph,rcp85,1,Simulated,global,0.004806153,7.423833,7.432568,7.429358667,7.431675,1,CMIP5 -2269,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016669207,7.349219,7.381147,7.367952667,7.373492,1,CMIP5 -2269,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00872853,7.433234,7.450691,7.441975667,7.442002,1,CMIP5 -2270,ph,ocean,ph,rcp85,1,Simulated,global,0.004406172,7.424235,7.432313,7.429290667,7.431324,1,CMIP5 -2270,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017364035,7.348314,7.381457,7.367879667,7.373868,1,CMIP5 -2270,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00847543,7.433641,7.450578,7.441911667,7.441516,1,CMIP5 -2271,ph,ocean,ph,rcp85,1,Simulated,global,0.004435796,7.424504,7.432691,7.429584,7.431557,1,CMIP5 -2271,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.0164575,7.348724,7.379468,7.367489667,7.374277,1,CMIP5 -2271,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008533382,7.433884,7.450949,7.442345667,7.442204,1,CMIP5 -2272,ph,ocean,ph,rcp85,1,Simulated,global,0.00467695,7.424111,7.432539,7.429496333,7.431839,1,CMIP5 -2272,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016910056,7.349267,7.381183,7.368454667,7.374914,1,CMIP5 -2272,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00867493,7.433298,7.450646,7.442045333,7.442192,1,CMIP5 -2273,ph,ocean,ph,rcp85,1,Simulated,global,0.004464015,7.424458,7.432468,7.429601333,7.431878,1,CMIP5 -2273,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017862602,7.348142,7.381554,7.368498667,7.3758,1,CMIP5 -2273,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008630003,7.433545,7.450805,7.442171,7.442163,1,CMIP5 -2274,ph,ocean,ph,rcp85,1,Simulated,global,0.004735491,7.424114,7.432631,7.429568333,7.43196,1,CMIP5 -2274,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017311102,7.348163,7.380979,7.367757,7.374129,1,CMIP5 -2274,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008774965,7.433449,7.450998,7.442275667,7.44238,1,CMIP5 -2275,ph,ocean,ph,rcp85,1,Simulated,global,0.004721593,7.424146,7.432665,7.429581667,7.431934,1,CMIP5 -2275,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017084648,7.348805,7.381497,7.36802,7.373758,1,CMIP5 -2275,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008672004,7.433556,7.4509,7.442233,7.442243,1,CMIP5 -2276,ph,ocean,ph,rcp85,1,Simulated,global,0.004621959,7.424317,7.432614,7.429642,7.431995,1,CMIP5 -2276,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017481756,7.348347,7.381728,7.368039667,7.374044,1,CMIP5 -2276,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008616052,7.433705,7.450937,7.442303667,7.442269,1,CMIP5 -2277,ph,ocean,ph,rcp85,1,Simulated,global,0.004703114,7.424132,7.432584,7.429549667,7.431933,1,CMIP5 -2277,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01808149,7.34866,7.383676,7.368776333,7.373993,1,CMIP5 -2277,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008671603,7.433495,7.450833,7.442041333,7.441796,1,CMIP5 -2278,ph,ocean,ph,rcp85,1,Simulated,global,0.004738822,7.42407,7.432465,7.429537333,7.432077,1,CMIP5 -2278,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017469117,7.348512,7.381575,7.368303333,7.374823,1,CMIP5 -2278,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008730132,7.433267,7.450721,7.442129,7.442399,1,CMIP5 -2279,ph,ocean,ph,rcp85,1,Simulated,global,0.004566661,7.424133,7.432248,7.429400333,7.43182,1,CMIP5 -2279,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016831173,7.348398,7.380361,7.367428,7.373525,1,CMIP5 -2279,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008449835,7.433584,7.45048,7.442133667,7.442337,1,CMIP5 -2280,ph,ocean,ph,rcp85,1,Simulated,global,0.004504363,7.424089,7.432212,7.429275,7.431524,1,CMIP5 -2280,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017705339,7.347296,7.381014,7.367277667,7.373523,1,CMIP5 -2280,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008573284,7.433532,7.450676,7.442018333,7.441847,1,CMIP5 -2281,ph,ocean,ph,rcp85,1,Simulated,global,0.004712453,7.423797,7.43215,7.429233667,7.431754,1,CMIP5 -2281,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017428678,7.347331,7.379611,7.367268333,7.374863,1,CMIP5 -2281,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00883741,7.432935,7.450594,7.441980333,7.442412,1,CMIP5 -2282,ph,ocean,ph,rcp85,1,Simulated,global,0.00465423,7.424128,7.432457,7.429492333,7.431892,1,CMIP5 -2282,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017716141,7.347075,7.379768,7.367365,7.375252,1,CMIP5 -2282,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008887107,7.433255,7.451023,7.442274667,7.442546,1,CMIP5 -2283,ph,ocean,ph,rcp85,1,Simulated,global,0.004930898,7.423828,7.432541,7.429518,7.432185,1,CMIP5 -2283,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.018708263,7.347019,7.383156,7.367888,7.373489,1,CMIP5 -2283,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00895451,7.433228,7.451137,7.442190333,7.442206,1,CMIP5 -2284,ph,ocean,ph,rcp85,1,Simulated,global,0.004889673,7.423843,7.43264,7.429474667,7.431941,1,CMIP5 -2284,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017049986,7.34828,7.3808,7.367501667,7.373425,1,CMIP5 -2284,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008863907,7.433258,7.450983,7.442211667,7.442394,1,CMIP5 -2285,ph,ocean,ph,rcp85,1,Simulated,global,0.004855715,7.424106,7.432781,7.429703667,7.432224,1,CMIP5 -2285,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016736048,7.348802,7.380733,7.367665667,7.373462,1,CMIP5 -2285,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008742793,7.433564,7.451042,7.442451667,7.442749,1,CMIP5 -2286,ph,ocean,ph,rcp85,1,Simulated,global,0.004712315,7.424251,7.432902,7.429656,7.431815,1,CMIP5 -2286,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.0168923,7.348844,7.381071,7.367884667,7.373739,1,CMIP5 -2286,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008748648,7.433684,7.451179,7.442349667,7.442186,1,CMIP5 -2287,ph,ocean,ph,rcp85,1,Simulated,global,0.004743015,7.424206,7.432877,7.429652,7.431873,1,CMIP5 -2287,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017143715,7.348115,7.380111,7.367670667,7.374786,1,CMIP5 -2287,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008936624,7.433435,7.451308,7.442398667,7.442453,1,CMIP5 -2288,ph,ocean,ph,rcp85,1,Simulated,global,0.00491554,7.424058,7.433172,7.429679,7.431807,1,CMIP5 -2288,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016949408,7.348088,7.379779,7.367407333,7.374355,1,CMIP5 -2288,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009166578,7.43334,7.451673,7.442484667,7.442441,1,CMIP5 -2289,ph,ocean,ph,rcp85,1,Simulated,global,0.00499718,7.424032,7.433134,7.429774667,7.432158,1,CMIP5 -2289,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017707654,7.347606,7.381087,7.367679,7.374344,1,CMIP5 -2289,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.0092106,7.433311,7.451732,7.442546333,7.442596,1,CMIP5 -2290,ph,ocean,ph,rcp85,1,Simulated,global,0.004807173,7.424042,7.432957,7.429538667,7.431617,1,CMIP5 -2290,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016477052,7.347814,7.378541,7.366615333,7.373491,1,CMIP5 -2290,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008994003,7.433483,7.451471,7.442473,7.442465,1,CMIP5 -2291,ph,ocean,ph,rcp85,1,Simulated,global,0.004837781,7.42421,7.433053,7.429765,7.432032,1,CMIP5 -2291,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017607561,7.348217,7.38187,7.368037667,7.374026,1,CMIP5 -2291,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008960724,7.433582,7.451501,7.442456,7.442285,1,CMIP5 -2292,ph,ocean,ph,rcp85,1,Simulated,global,0.004958249,7.423998,7.433095,7.429686,7.431965,1,CMIP5 -2292,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016932694,7.348944,7.381173,7.368060667,7.374065,1,CMIP5 -2292,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009035003,7.433323,7.451393,7.442354,7.442346,1,CMIP5 -2293,ph,ocean,ph,rcp85,1,Simulated,global,0.005033336,7.423866,7.433033,7.429650333,7.432052,1,CMIP5 -2293,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017797586,7.348113,7.381943,7.368223667,7.374615,1,CMIP5 -2293,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009217502,7.433064,7.451499,7.442285333,7.442293,1,CMIP5 -2294,ph,ocean,ph,rcp85,1,Simulated,global,0.004862904,7.424147,7.433215,7.429696,7.431726,1,CMIP5 -2294,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016453489,7.348731,7.380181,7.367251333,7.372842,1,CMIP5 -2294,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008931927,7.433728,7.451586,7.442525,7.442261,1,CMIP5 -2295,ph,ocean,ph,rcp85,1,Simulated,global,0.004797246,7.424099,7.433187,7.429531,7.431307,1,CMIP5 -2295,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015739755,7.349015,7.379121,7.366723,7.372033,1,CMIP5 -2295,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008842797,7.433822,7.45149,7.442428333,7.441973,1,CMIP5 -2296,ph,ocean,ph,rcp85,1,Simulated,global,0.004831874,7.424163,7.433332,7.429628667,7.431391,1,CMIP5 -2296,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016417412,7.348781,7.380118,7.367279667,7.37294,1,CMIP5 -2296,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009007957,7.433729,7.451718,7.442439333,7.441871,1,CMIP5 -2297,ph,ocean,ph,rcp85,1,Simulated,global,0.005068516,7.423904,7.43349,7.429648667,7.431552,1,CMIP5 -2297,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016185194,7.349798,7.381127,7.367813667,7.372516,1,CMIP5 -2297,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009103436,7.433501,7.451688,7.442349,7.441858,1,CMIP5 -2298,ph,ocean,ph,rcp85,1,Simulated,global,0.004913374,7.42427,7.433462,7.429869,7.431875,1,CMIP5 -2298,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016833967,7.348757,7.380643,7.36782,7.37406,1,CMIP5 -2298,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009120194,7.433647,7.451881,7.442624667,7.442346,1,CMIP5 -2299,ph,ocean,ph,rcp85,1,Simulated,global,0.005178365,7.423815,7.433251,7.429765333,7.43223,1,CMIP5 -2299,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017358892,7.348345,7.381817,7.367741667,7.373063,1,CMIP5 -2299,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009210516,7.433293,7.451714,7.442513333,7.442533,1,CMIP5 -2300,ph,ocean,ph,rcp85,1,Simulated,global,0.00076014,7.432028,7.433103,7.4325655,7.4325655,1,CMIP5 -2300,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.023212194,7.348225,7.381052,7.3646385,7.3646385,1,CMIP5 -2300,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006443864,7.442447,7.45156,7.4470035,7.4470035,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/hist/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/hist/ensemble_mean_model.csv deleted file mode 100644 index f8761d2d9..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/hist/ensemble_mean_model.csv +++ /dev/null @@ -1,3301 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","tas","temperature","tgav","historical",1850,"Simulated","C","global",13.6654 -"bcc-csm1-1","tas","temperature","tgav","historical",1851,"Simulated","C","global",13.6734 -"bcc-csm1-1","tas","temperature","tgav","historical",1852,"Simulated","C","global",13.6653666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1853,"Simulated","C","global",13.6990666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1854,"Simulated","C","global",13.6761333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1855,"Simulated","C","global",13.6979333333334 -"bcc-csm1-1","tas","temperature","tgav","historical",1856,"Simulated","C","global",13.6864 -"bcc-csm1-1","tas","temperature","tgav","historical",1857,"Simulated","C","global",13.4578666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1858,"Simulated","C","global",13.5713666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1859,"Simulated","C","global",13.6565 -"bcc-csm1-1","tas","temperature","tgav","historical",1860,"Simulated","C","global",13.7683 -"bcc-csm1-1","tas","temperature","tgav","historical",1861,"Simulated","C","global",13.7923 -"bcc-csm1-1","tas","temperature","tgav","historical",1862,"Simulated","C","global",13.8196666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1863,"Simulated","C","global",13.6544333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1864,"Simulated","C","global",13.8148 -"bcc-csm1-1","tas","temperature","tgav","historical",1865,"Simulated","C","global",13.8048 -"bcc-csm1-1","tas","temperature","tgav","historical",1866,"Simulated","C","global",13.7733666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1867,"Simulated","C","global",13.7253666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1868,"Simulated","C","global",13.7875333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1869,"Simulated","C","global",13.8565 -"bcc-csm1-1","tas","temperature","tgav","historical",1870,"Simulated","C","global",13.9122 -"bcc-csm1-1","tas","temperature","tgav","historical",1871,"Simulated","C","global",13.9494 -"bcc-csm1-1","tas","temperature","tgav","historical",1872,"Simulated","C","global",13.9465666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1873,"Simulated","C","global",13.8615333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1874,"Simulated","C","global",13.9371333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1875,"Simulated","C","global",13.9034666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1876,"Simulated","C","global",13.8908666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1877,"Simulated","C","global",13.8639 -"bcc-csm1-1","tas","temperature","tgav","historical",1878,"Simulated","C","global",13.8111333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1879,"Simulated","C","global",13.8426333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1880,"Simulated","C","global",13.8462333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1881,"Simulated","C","global",13.8249 -"bcc-csm1-1","tas","temperature","tgav","historical",1882,"Simulated","C","global",13.8924333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1883,"Simulated","C","global",13.7772333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1884,"Simulated","C","global",13.2345333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1885,"Simulated","C","global",13.4075333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1886,"Simulated","C","global",13.5671666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1887,"Simulated","C","global",13.6217333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1888,"Simulated","C","global",13.6469666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1889,"Simulated","C","global",13.6899666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1890,"Simulated","C","global",13.5867666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1891,"Simulated","C","global",13.4353666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1892,"Simulated","C","global",13.5266333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1893,"Simulated","C","global",13.6014 -"bcc-csm1-1","tas","temperature","tgav","historical",1894,"Simulated","C","global",13.7245666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1895,"Simulated","C","global",13.7517333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1896,"Simulated","C","global",13.758 -"bcc-csm1-1","tas","temperature","tgav","historical",1897,"Simulated","C","global",13.8417333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1898,"Simulated","C","global",13.8007666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1899,"Simulated","C","global",13.81 -"bcc-csm1-1","tas","temperature","tgav","historical",1900,"Simulated","C","global",13.7437333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1901,"Simulated","C","global",13.8381666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1902,"Simulated","C","global",13.8043666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1903,"Simulated","C","global",13.3787666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1904,"Simulated","C","global",13.3966666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1905,"Simulated","C","global",13.5836 -"bcc-csm1-1","tas","temperature","tgav","historical",1906,"Simulated","C","global",13.6518 -"bcc-csm1-1","tas","temperature","tgav","historical",1907,"Simulated","C","global",13.6033 -"bcc-csm1-1","tas","temperature","tgav","historical",1908,"Simulated","C","global",13.7042 -"bcc-csm1-1","tas","temperature","tgav","historical",1909,"Simulated","C","global",13.6827666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1910,"Simulated","C","global",13.6557 -"bcc-csm1-1","tas","temperature","tgav","historical",1911,"Simulated","C","global",13.7551666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1912,"Simulated","C","global",13.7099333333334 -"bcc-csm1-1","tas","temperature","tgav","historical",1913,"Simulated","C","global",13.6746 -"bcc-csm1-1","tas","temperature","tgav","historical",1914,"Simulated","C","global",13.8051666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1915,"Simulated","C","global",13.7836666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1916,"Simulated","C","global",13.8391333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1917,"Simulated","C","global",13.8712 -"bcc-csm1-1","tas","temperature","tgav","historical",1918,"Simulated","C","global",13.8662333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1919,"Simulated","C","global",13.8706666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1920,"Simulated","C","global",13.9270666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1921,"Simulated","C","global",13.8592 -"bcc-csm1-1","tas","temperature","tgav","historical",1922,"Simulated","C","global",13.9160666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1923,"Simulated","C","global",13.8284 -"bcc-csm1-1","tas","temperature","tgav","historical",1924,"Simulated","C","global",13.8582666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1925,"Simulated","C","global",14.0161666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1926,"Simulated","C","global",13.9192333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1927,"Simulated","C","global",13.9973333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1928,"Simulated","C","global",13.9933 -"bcc-csm1-1","tas","temperature","tgav","historical",1929,"Simulated","C","global",13.8913333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1930,"Simulated","C","global",13.8886 -"bcc-csm1-1","tas","temperature","tgav","historical",1931,"Simulated","C","global",14.0071 -"bcc-csm1-1","tas","temperature","tgav","historical",1932,"Simulated","C","global",13.9593 -"bcc-csm1-1","tas","temperature","tgav","historical",1933,"Simulated","C","global",13.9672 -"bcc-csm1-1","tas","temperature","tgav","historical",1934,"Simulated","C","global",13.9323 -"bcc-csm1-1","tas","temperature","tgav","historical",1935,"Simulated","C","global",14.022 -"bcc-csm1-1","tas","temperature","tgav","historical",1936,"Simulated","C","global",13.9935 -"bcc-csm1-1","tas","temperature","tgav","historical",1937,"Simulated","C","global",13.9974 -"bcc-csm1-1","tas","temperature","tgav","historical",1938,"Simulated","C","global",14.0427333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1939,"Simulated","C","global",14.0733333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1940,"Simulated","C","global",14.0443666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1941,"Simulated","C","global",14.0041333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1942,"Simulated","C","global",14.0446 -"bcc-csm1-1","tas","temperature","tgav","historical",1943,"Simulated","C","global",14.0645666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1944,"Simulated","C","global",14.0027333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1945,"Simulated","C","global",14.0562333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1946,"Simulated","C","global",14.1107333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1947,"Simulated","C","global",14.0973 -"bcc-csm1-1","tas","temperature","tgav","historical",1948,"Simulated","C","global",14.0826666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1949,"Simulated","C","global",14.1648666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1950,"Simulated","C","global",14.1161 -"bcc-csm1-1","tas","temperature","tgav","historical",1951,"Simulated","C","global",14.0838333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1952,"Simulated","C","global",14.0673333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1953,"Simulated","C","global",14.1559 -"bcc-csm1-1","tas","temperature","tgav","historical",1954,"Simulated","C","global",14.0852666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1955,"Simulated","C","global",14.0838333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1956,"Simulated","C","global",14.1117 -"bcc-csm1-1","tas","temperature","tgav","historical",1957,"Simulated","C","global",14.16 -"bcc-csm1-1","tas","temperature","tgav","historical",1958,"Simulated","C","global",14.1941 -"bcc-csm1-1","tas","temperature","tgav","historical",1959,"Simulated","C","global",14.1760666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1960,"Simulated","C","global",14.2053 -"bcc-csm1-1","tas","temperature","tgav","historical",1961,"Simulated","C","global",14.0986666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1962,"Simulated","C","global",14.1581666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1963,"Simulated","C","global",14.0601666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1964,"Simulated","C","global",13.8523333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1965,"Simulated","C","global",13.9487 -"bcc-csm1-1","tas","temperature","tgav","historical",1966,"Simulated","C","global",14.0069333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1967,"Simulated","C","global",14.0793333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1968,"Simulated","C","global",14.0901333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1969,"Simulated","C","global",13.9913333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1970,"Simulated","C","global",14.0398333333334 -"bcc-csm1-1","tas","temperature","tgav","historical",1971,"Simulated","C","global",14.12 -"bcc-csm1-1","tas","temperature","tgav","historical",1972,"Simulated","C","global",14.1386333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1973,"Simulated","C","global",14.1851333333334 -"bcc-csm1-1","tas","temperature","tgav","historical",1974,"Simulated","C","global",14.2492666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1975,"Simulated","C","global",14.1610666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1976,"Simulated","C","global",14.2039333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1977,"Simulated","C","global",14.2124666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1978,"Simulated","C","global",14.2887 -"bcc-csm1-1","tas","temperature","tgav","historical",1979,"Simulated","C","global",14.4011333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1980,"Simulated","C","global",14.3645333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1981,"Simulated","C","global",14.4269 -"bcc-csm1-1","tas","temperature","tgav","historical",1982,"Simulated","C","global",14.4022666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1983,"Simulated","C","global",14.2814 -"bcc-csm1-1","tas","temperature","tgav","historical",1984,"Simulated","C","global",14.354 -"bcc-csm1-1","tas","temperature","tgav","historical",1985,"Simulated","C","global",14.4165666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1986,"Simulated","C","global",14.5404666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1987,"Simulated","C","global",14.5745333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1988,"Simulated","C","global",14.6612333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1989,"Simulated","C","global",14.6545666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1990,"Simulated","C","global",14.7624 -"bcc-csm1-1","tas","temperature","tgav","historical",1991,"Simulated","C","global",14.6850333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1992,"Simulated","C","global",14.3360666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1993,"Simulated","C","global",14.4066333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1994,"Simulated","C","global",14.5349666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1995,"Simulated","C","global",14.5855 -"bcc-csm1-1","tas","temperature","tgav","historical",1996,"Simulated","C","global",14.6731 -"bcc-csm1-1","tas","temperature","tgav","historical",1997,"Simulated","C","global",14.7193 -"bcc-csm1-1","tas","temperature","tgav","historical",1998,"Simulated","C","global",14.7748 -"bcc-csm1-1","tas","temperature","tgav","historical",1999,"Simulated","C","global",14.8068333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",2000,"Simulated","C","global",14.8968333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",2001,"Simulated","C","global",14.8707 -"bcc-csm1-1","tas","temperature","tgav","historical",2002,"Simulated","C","global",14.9216 -"bcc-csm1-1","tas","temperature","tgav","historical",2003,"Simulated","C","global",14.8915666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",2004,"Simulated","C","global",14.9522666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",2005,"Simulated","C","global",14.9493333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",2006,"Simulated","C","global",14.9971333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",2007,"Simulated","C","global",15.0805 -"bcc-csm1-1","tas","temperature","tgav","historical",2008,"Simulated","C","global",15.1359 -"bcc-csm1-1","tas","temperature","tgav","historical",2009,"Simulated","C","global",15.1242666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",2010,"Simulated","C","global",15.0708333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",2011,"Simulated","C","global",15.1101 -"bcc-csm1-1","tas","temperature","tgav","historical",2012,"Simulated","C","global",15.1562666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-12.6371333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-12.5461 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-12.5434333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-12.7562666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-12.5826333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-12.4382666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-12.9258666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-13.0950666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-12.8381 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-12.5618333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-12.1768666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-12.1736333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-11.9925333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-12.4501666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-12.0776666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-11.9346333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-12.0709666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-12.2683333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-12.0377666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-11.9692 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-11.7867666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-11.7596333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-11.7349 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-11.9820333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-11.8402 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-11.9307666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-11.9254333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-11.9396 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-12.1252333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-12.1527 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-12.0732666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-12.1178 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-12.1322333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-12.1824 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-12.6827666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-12.7196666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-12.5714 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-12.6602333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-12.7578333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-12.5518 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-12.5630666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-12.8915666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-12.8300333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-12.5895333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-12.5963666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-12.2853666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-12.4198333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-12.0569 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-12.3979 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-12.2067666666666 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-12.4456333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-12.1169333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-12.2274333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-12.5073 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-12.9606666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-12.6275333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-12.5605 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-12.7108666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-12.5222666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-12.6998333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-12.6835 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-12.6571333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-12.8399 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-12.8256 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-12.4089333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-12.1823 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-12.238 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-12.3154666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-12.3245666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-12.2680333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-12.0673 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-12.0887333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-12.0865666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-12.4139 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-12.1933333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-11.9650333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-12.0773666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-11.8194 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-11.8725 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-12.0446 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-12.2591666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-12.0810333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-12.0743666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-12.0810666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-12.2516666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-12.0839333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-12.2585 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-12.2374666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-12.0601 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-11.9400666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-11.835 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-11.9663 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-11.9578666666666 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-11.7331333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-11.9786 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-12.0617333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-11.6109666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-11.5905 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-11.6804 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-11.6077 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-11.9654 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-11.7569333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-11.8384333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-11.5638 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-11.6646333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-11.7749666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-11.7088 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-11.4992 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-11.5190333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-11.6577 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-11.6951333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-12.0204666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-11.9702666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-11.7613333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-12.1848666666666 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-12.2803 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-12.2281333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-12.0503 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-11.9344 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-12.1636 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-12.1193666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-11.9675666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-11.8703 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-11.8031 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-11.5888333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-11.5605333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-11.6458666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-11.9160666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-11.6271666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-11.4127333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-11.4324333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-11.2483333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-11.1211333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-11.1798333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-11.0002666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-11.1148666666666 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-10.7385 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-10.7978 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-10.6097666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-10.6421333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-10.4102333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-10.4627 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-10.7128666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-10.8832333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-11.0505333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-10.8276333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-10.6860333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-10.5331 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-10.4299666666666 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-10.4224 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-10.2223333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-10.3963333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-10.2894666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-10.3026 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-10.3418 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-10.3921333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2006,"Simulated","C","HL",-10.2656 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2007,"Simulated","C","HL",-10.2711333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2008,"Simulated","C","HL",-9.84096666666665 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2009,"Simulated","C","HL",-10.0692 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2010,"Simulated","C","HL",-10.2312666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2011,"Simulated","C","HL",-10.0239666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2012,"Simulated","C","HL",-9.93163333333332 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",19.1571 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",19.1477 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",19.1374333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",19.2226333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",19.1587 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",19.1548666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",19.2427666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",19.0018333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",19.0854 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",19.1306 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",19.1853333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",19.2137333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",19.2089666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",19.1047666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",19.2208333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",19.1789333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",19.1693666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",19.1526 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",19.1795666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",19.2486666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",19.2778666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",19.3171666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",19.3086 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",19.2573333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",19.3192 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",19.2973333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",19.2810333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",19.2514 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",19.2263333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",19.2701666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",19.2579666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",19.2414666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",19.3261 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",19.1973333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",18.6458 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",18.8626 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",19.0246333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",19.1090666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",19.1599666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",19.1689666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",19.0466333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",18.9321333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",19.0295666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",19.0698 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",19.2201 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",19.188 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",19.2236666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",19.2490666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",19.2707666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",19.242 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",19.2118 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",19.2573666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",19.2395333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",18.7835 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",18.8997666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",19.0562 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",19.1246333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",19.0973666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",19.18 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",19.1912 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",19.1550333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",19.2697666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",19.2532333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",19.2075333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",19.2783666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",19.2050333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",19.2837333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",19.3386666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",19.3346 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",19.3281 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",19.3544 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",19.2768333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",19.3451666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",19.3075 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",19.2975333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",19.4407333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",19.3470333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",19.3875666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",19.3937666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",19.3064333333334 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",19.3479333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",19.4540666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",19.3948333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",19.4058 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",19.3992 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",19.4726333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",19.4746333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",19.475 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",19.4927333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",19.5047 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",19.4476666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",19.4264666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",19.4736 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",19.4508333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",19.4273666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",19.5094 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",19.4811333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",19.4606 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",19.4616666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",19.5459 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",19.5616333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",19.4790333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",19.4761666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",19.5258333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",19.4615666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",19.4828333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",19.5027666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",19.5173666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",19.5626666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",19.5698333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",19.613 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",19.5520666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",19.6135 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",19.4514 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",19.2886333333334 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",19.425 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",19.4845333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",19.5349333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",19.5238333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",19.4522 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",19.5016 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",19.5667666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",19.5690333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",19.6111666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",19.644 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",19.5314333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",19.6010333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",19.6678333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",19.6996666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",19.7907333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",19.7506666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",19.7876 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",19.7312333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",19.5974 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",19.6477333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",19.7472666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",19.8184 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",19.8720333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",19.9375333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",19.9362333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",20.0181666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",19.9355666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",19.5659666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",19.6868666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",19.8769666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",19.8914666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",19.9678 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",19.9917 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",20.0372666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",20.0744333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",20.1414333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",20.1462333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",20.1854333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",20.1518333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",20.2334 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",20.2403333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2006,"Simulated","C","LL",20.2717333333334 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2007,"Simulated","C","LL",20.3736333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2008,"Simulated","C","LL",20.3508 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2009,"Simulated","C","LL",20.3844 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2010,"Simulated","C","LL",20.3536333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2011,"Simulated","C","LL",20.3578333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2012,"Simulated","C","LL",20.3943333333333 -"CanESM2","tas","temperature","tgav","historical",1850,"Simulated","C","global",13.5803 -"CanESM2","tas","temperature","tgav","historical",1851,"Simulated","C","global",13.7575000000001 -"CanESM2","tas","temperature","tgav","historical",1852,"Simulated","C","global",13.6751 -"CanESM2","tas","temperature","tgav","historical",1853,"Simulated","C","global",13.7523 -"CanESM2","tas","temperature","tgav","historical",1854,"Simulated","C","global",13.9608 -"CanESM2","tas","temperature","tgav","historical",1855,"Simulated","C","global",13.8386 -"CanESM2","tas","temperature","tgav","historical",1856,"Simulated","C","global",13.6771 -"CanESM2","tas","temperature","tgav","historical",1857,"Simulated","C","global",13.5296 -"CanESM2","tas","temperature","tgav","historical",1858,"Simulated","C","global",13.6271 -"CanESM2","tas","temperature","tgav","historical",1859,"Simulated","C","global",13.4692 -"CanESM2","tas","temperature","tgav","historical",1860,"Simulated","C","global",13.6338 -"CanESM2","tas","temperature","tgav","historical",1861,"Simulated","C","global",13.7685 -"CanESM2","tas","temperature","tgav","historical",1862,"Simulated","C","global",13.6607 -"CanESM2","tas","temperature","tgav","historical",1863,"Simulated","C","global",13.5071 -"CanESM2","tas","temperature","tgav","historical",1864,"Simulated","C","global",13.4949 -"CanESM2","tas","temperature","tgav","historical",1865,"Simulated","C","global",13.5259 -"CanESM2","tas","temperature","tgav","historical",1866,"Simulated","C","global",13.4947 -"CanESM2","tas","temperature","tgav","historical",1867,"Simulated","C","global",13.7731 -"CanESM2","tas","temperature","tgav","historical",1868,"Simulated","C","global",13.8245 -"CanESM2","tas","temperature","tgav","historical",1869,"Simulated","C","global",13.6048 -"CanESM2","tas","temperature","tgav","historical",1870,"Simulated","C","global",13.8418 -"CanESM2","tas","temperature","tgav","historical",1871,"Simulated","C","global",13.8428 -"CanESM2","tas","temperature","tgav","historical",1872,"Simulated","C","global",13.8138 -"CanESM2","tas","temperature","tgav","historical",1873,"Simulated","C","global",13.7498000000001 -"CanESM2","tas","temperature","tgav","historical",1874,"Simulated","C","global",13.9223 -"CanESM2","tas","temperature","tgav","historical",1875,"Simulated","C","global",13.7294 -"CanESM2","tas","temperature","tgav","historical",1876,"Simulated","C","global",13.6784 -"CanESM2","tas","temperature","tgav","historical",1877,"Simulated","C","global",13.7029 -"CanESM2","tas","temperature","tgav","historical",1878,"Simulated","C","global",13.6841 -"CanESM2","tas","temperature","tgav","historical",1879,"Simulated","C","global",13.8726 -"CanESM2","tas","temperature","tgav","historical",1880,"Simulated","C","global",13.8707 -"CanESM2","tas","temperature","tgav","historical",1881,"Simulated","C","global",13.8049 -"CanESM2","tas","temperature","tgav","historical",1882,"Simulated","C","global",13.9265 -"CanESM2","tas","temperature","tgav","historical",1883,"Simulated","C","global",13.6099 -"CanESM2","tas","temperature","tgav","historical",1884,"Simulated","C","global",13.4183 -"CanESM2","tas","temperature","tgav","historical",1885,"Simulated","C","global",13.3035 -"CanESM2","tas","temperature","tgav","historical",1886,"Simulated","C","global",13.2273 -"CanESM2","tas","temperature","tgav","historical",1887,"Simulated","C","global",13.4051 -"CanESM2","tas","temperature","tgav","historical",1888,"Simulated","C","global",13.3629 -"CanESM2","tas","temperature","tgav","historical",1889,"Simulated","C","global",13.4085 -"CanESM2","tas","temperature","tgav","historical",1890,"Simulated","C","global",13.3895 -"CanESM2","tas","temperature","tgav","historical",1891,"Simulated","C","global",13.5053 -"CanESM2","tas","temperature","tgav","historical",1892,"Simulated","C","global",13.6624 -"CanESM2","tas","temperature","tgav","historical",1893,"Simulated","C","global",13.7369 -"CanESM2","tas","temperature","tgav","historical",1894,"Simulated","C","global",13.619 -"CanESM2","tas","temperature","tgav","historical",1895,"Simulated","C","global",13.9439 -"CanESM2","tas","temperature","tgav","historical",1896,"Simulated","C","global",13.7871 -"CanESM2","tas","temperature","tgav","historical",1897,"Simulated","C","global",13.7189 -"CanESM2","tas","temperature","tgav","historical",1898,"Simulated","C","global",13.5328 -"CanESM2","tas","temperature","tgav","historical",1899,"Simulated","C","global",13.6798 -"CanESM2","tas","temperature","tgav","historical",1900,"Simulated","C","global",13.8077 -"CanESM2","tas","temperature","tgav","historical",1901,"Simulated","C","global",13.6363 -"CanESM2","tas","temperature","tgav","historical",1902,"Simulated","C","global",13.4881 -"CanESM2","tas","temperature","tgav","historical",1903,"Simulated","C","global",13.5599 -"CanESM2","tas","temperature","tgav","historical",1904,"Simulated","C","global",13.517 -"CanESM2","tas","temperature","tgav","historical",1905,"Simulated","C","global",13.4412 -"CanESM2","tas","temperature","tgav","historical",1906,"Simulated","C","global",13.7579 -"CanESM2","tas","temperature","tgav","historical",1907,"Simulated","C","global",13.8091 -"CanESM2","tas","temperature","tgav","historical",1908,"Simulated","C","global",13.6928 -"CanESM2","tas","temperature","tgav","historical",1909,"Simulated","C","global",13.5895 -"CanESM2","tas","temperature","tgav","historical",1910,"Simulated","C","global",13.5644 -"CanESM2","tas","temperature","tgav","historical",1911,"Simulated","C","global",13.8024 -"CanESM2","tas","temperature","tgav","historical",1912,"Simulated","C","global",14.0066 -"CanESM2","tas","temperature","tgav","historical",1913,"Simulated","C","global",13.8876 -"CanESM2","tas","temperature","tgav","historical",1914,"Simulated","C","global",13.658 -"CanESM2","tas","temperature","tgav","historical",1915,"Simulated","C","global",13.7681 -"CanESM2","tas","temperature","tgav","historical",1916,"Simulated","C","global",14.0057 -"CanESM2","tas","temperature","tgav","historical",1917,"Simulated","C","global",14.0615 -"CanESM2","tas","temperature","tgav","historical",1918,"Simulated","C","global",13.8608 -"CanESM2","tas","temperature","tgav","historical",1919,"Simulated","C","global",13.9726 -"CanESM2","tas","temperature","tgav","historical",1920,"Simulated","C","global",13.7209 -"CanESM2","tas","temperature","tgav","historical",1921,"Simulated","C","global",13.7538 -"CanESM2","tas","temperature","tgav","historical",1922,"Simulated","C","global",13.8402 -"CanESM2","tas","temperature","tgav","historical",1923,"Simulated","C","global",14.0227 -"CanESM2","tas","temperature","tgav","historical",1924,"Simulated","C","global",13.8193 -"CanESM2","tas","temperature","tgav","historical",1925,"Simulated","C","global",13.6673 -"CanESM2","tas","temperature","tgav","historical",1926,"Simulated","C","global",13.8302 -"CanESM2","tas","temperature","tgav","historical",1927,"Simulated","C","global",13.8853 -"CanESM2","tas","temperature","tgav","historical",1928,"Simulated","C","global",13.9926 -"CanESM2","tas","temperature","tgav","historical",1929,"Simulated","C","global",13.9408 -"CanESM2","tas","temperature","tgav","historical",1930,"Simulated","C","global",13.9052 -"CanESM2","tas","temperature","tgav","historical",1931,"Simulated","C","global",13.8667 -"CanESM2","tas","temperature","tgav","historical",1932,"Simulated","C","global",13.8285 -"CanESM2","tas","temperature","tgav","historical",1933,"Simulated","C","global",13.6883 -"CanESM2","tas","temperature","tgav","historical",1934,"Simulated","C","global",13.8031 -"CanESM2","tas","temperature","tgav","historical",1935,"Simulated","C","global",13.8235 -"CanESM2","tas","temperature","tgav","historical",1936,"Simulated","C","global",14.1112 -"CanESM2","tas","temperature","tgav","historical",1937,"Simulated","C","global",13.9035 -"CanESM2","tas","temperature","tgav","historical",1938,"Simulated","C","global",13.9943 -"CanESM2","tas","temperature","tgav","historical",1939,"Simulated","C","global",13.8148 -"CanESM2","tas","temperature","tgav","historical",1940,"Simulated","C","global",13.9104 -"CanESM2","tas","temperature","tgav","historical",1941,"Simulated","C","global",14.1023 -"CanESM2","tas","temperature","tgav","historical",1942,"Simulated","C","global",13.8524 -"CanESM2","tas","temperature","tgav","historical",1943,"Simulated","C","global",13.7967 -"CanESM2","tas","temperature","tgav","historical",1944,"Simulated","C","global",13.8086 -"CanESM2","tas","temperature","tgav","historical",1945,"Simulated","C","global",14.0171 -"CanESM2","tas","temperature","tgav","historical",1946,"Simulated","C","global",13.6619 -"CanESM2","tas","temperature","tgav","historical",1947,"Simulated","C","global",13.8333 -"CanESM2","tas","temperature","tgav","historical",1948,"Simulated","C","global",14.0695 -"CanESM2","tas","temperature","tgav","historical",1949,"Simulated","C","global",14.0248 -"CanESM2","tas","temperature","tgav","historical",1950,"Simulated","C","global",13.8187 -"CanESM2","tas","temperature","tgav","historical",1951,"Simulated","C","global",13.8416 -"CanESM2","tas","temperature","tgav","historical",1952,"Simulated","C","global",13.9321 -"CanESM2","tas","temperature","tgav","historical",1953,"Simulated","C","global",13.7151 -"CanESM2","tas","temperature","tgav","historical",1954,"Simulated","C","global",13.8777 -"CanESM2","tas","temperature","tgav","historical",1955,"Simulated","C","global",13.8336 -"CanESM2","tas","temperature","tgav","historical",1956,"Simulated","C","global",13.9315 -"CanESM2","tas","temperature","tgav","historical",1957,"Simulated","C","global",13.7015 -"CanESM2","tas","temperature","tgav","historical",1958,"Simulated","C","global",13.7718 -"CanESM2","tas","temperature","tgav","historical",1959,"Simulated","C","global",13.845 -"CanESM2","tas","temperature","tgav","historical",1960,"Simulated","C","global",13.7159 -"CanESM2","tas","temperature","tgav","historical",1961,"Simulated","C","global",13.8577 -"CanESM2","tas","temperature","tgav","historical",1962,"Simulated","C","global",13.9762 -"CanESM2","tas","temperature","tgav","historical",1963,"Simulated","C","global",13.7425 -"CanESM2","tas","temperature","tgav","historical",1964,"Simulated","C","global",13.7343 -"CanESM2","tas","temperature","tgav","historical",1965,"Simulated","C","global",13.8549 -"CanESM2","tas","temperature","tgav","historical",1966,"Simulated","C","global",13.8005 -"CanESM2","tas","temperature","tgav","historical",1967,"Simulated","C","global",13.633 -"CanESM2","tas","temperature","tgav","historical",1968,"Simulated","C","global",13.6681 -"CanESM2","tas","temperature","tgav","historical",1969,"Simulated","C","global",13.7174 -"CanESM2","tas","temperature","tgav","historical",1970,"Simulated","C","global",13.6858 -"CanESM2","tas","temperature","tgav","historical",1971,"Simulated","C","global",13.6672 -"CanESM2","tas","temperature","tgav","historical",1972,"Simulated","C","global",13.7229 -"CanESM2","tas","temperature","tgav","historical",1973,"Simulated","C","global",14.103 -"CanESM2","tas","temperature","tgav","historical",1974,"Simulated","C","global",14.0528 -"CanESM2","tas","temperature","tgav","historical",1975,"Simulated","C","global",13.851 -"CanESM2","tas","temperature","tgav","historical",1976,"Simulated","C","global",13.9691 -"CanESM2","tas","temperature","tgav","historical",1977,"Simulated","C","global",14.0874 -"CanESM2","tas","temperature","tgav","historical",1978,"Simulated","C","global",14.1292 -"CanESM2","tas","temperature","tgav","historical",1979,"Simulated","C","global",13.9487 -"CanESM2","tas","temperature","tgav","historical",1980,"Simulated","C","global",14.1103 -"CanESM2","tas","temperature","tgav","historical",1981,"Simulated","C","global",14.2166 -"CanESM2","tas","temperature","tgav","historical",1982,"Simulated","C","global",14.2838 -"CanESM2","tas","temperature","tgav","historical",1983,"Simulated","C","global",14.1116 -"CanESM2","tas","temperature","tgav","historical",1984,"Simulated","C","global",14.0371 -"CanESM2","tas","temperature","tgav","historical",1985,"Simulated","C","global",14.1885 -"CanESM2","tas","temperature","tgav","historical",1986,"Simulated","C","global",14.1098 -"CanESM2","tas","temperature","tgav","historical",1987,"Simulated","C","global",13.9322 -"CanESM2","tas","temperature","tgav","historical",1988,"Simulated","C","global",14.1036 -"CanESM2","tas","temperature","tgav","historical",1989,"Simulated","C","global",14.3439 -"CanESM2","tas","temperature","tgav","historical",1990,"Simulated","C","global",14.519 -"CanESM2","tas","temperature","tgav","historical",1991,"Simulated","C","global",14.3175 -"CanESM2","tas","temperature","tgav","historical",1992,"Simulated","C","global",14.0954 -"CanESM2","tas","temperature","tgav","historical",1993,"Simulated","C","global",14.1487 -"CanESM2","tas","temperature","tgav","historical",1994,"Simulated","C","global",14.3442 -"CanESM2","tas","temperature","tgav","historical",1995,"Simulated","C","global",14.3238 -"CanESM2","tas","temperature","tgav","historical",1996,"Simulated","C","global",14.6447 -"CanESM2","tas","temperature","tgav","historical",1997,"Simulated","C","global",14.6884 -"CanESM2","tas","temperature","tgav","historical",1998,"Simulated","C","global",14.4402 -"CanESM2","tas","temperature","tgav","historical",1999,"Simulated","C","global",14.5104 -"CanESM2","tas","temperature","tgav","historical",2000,"Simulated","C","global",14.5751 -"CanESM2","tas","temperature","tgav","historical",2001,"Simulated","C","global",14.6543 -"CanESM2","tas","temperature","tgav","historical",2002,"Simulated","C","global",14.6457 -"CanESM2","tas","temperature","tgav","historical",2003,"Simulated","C","global",14.8277 -"CanESM2","tas","temperature","tgav","historical",2004,"Simulated","C","global",14.8238 -"CanESM2","tas","temperature","tgav","historical",2005,"Simulated","C","global",15.046 -"CanESM2","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-12.2964 -"CanESM2","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-11.9684 -"CanESM2","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-12.2987 -"CanESM2","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-11.9437 -"CanESM2","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-11.5605 -"CanESM2","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-11.5618 -"CanESM2","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-12.1868 -"CanESM2","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-12.0108 -"CanESM2","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-11.8593 -"CanESM2","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-12.3488 -"CanESM2","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-11.822 -"CanESM2","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-11.9052 -"CanESM2","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-12.0733 -"CanESM2","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-12.4251 -"CanESM2","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-12.1547 -"CanESM2","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-12.2812 -"CanESM2","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-12.2196 -"CanESM2","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-11.6404 -"CanESM2","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-11.7312 -"CanESM2","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-12.0967 -"CanESM2","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-11.9566 -"CanESM2","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-11.716 -"CanESM2","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-11.6418 -"CanESM2","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-11.8324 -"CanESM2","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-11.4053 -"CanESM2","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-11.9203 -"CanESM2","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-11.7654 -"CanESM2","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-12.3287 -"CanESM2","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-12.0293 -"CanESM2","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-11.6447 -"CanESM2","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-11.9958 -"CanESM2","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-12.2934 -"CanESM2","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-11.632 -"CanESM2","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-12.3939 -"CanESM2","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-12.3538 -"CanESM2","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-12.3581 -"CanESM2","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-12.64 -"CanESM2","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-12.3737 -"CanESM2","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-12.9538 -"CanESM2","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-12.4938 -"CanESM2","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-12.5034 -"CanESM2","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-12.3095 -"CanESM2","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-12.0449 -"CanESM2","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-11.8646 -"CanESM2","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-12.0543 -"CanESM2","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-11.2428 -"CanESM2","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-12.3075 -"CanESM2","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-12.0168 -"CanESM2","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-12.1696 -"CanESM2","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-11.8038 -"CanESM2","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-11.791 -"CanESM2","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-11.8326 -"CanESM2","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-12.3571 -"CanESM2","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-12.2711 -"CanESM2","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-12.21 -"CanESM2","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-11.9709 -"CanESM2","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-11.7935 -"CanESM2","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-12.1026 -"CanESM2","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-12.0025 -"CanESM2","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-12.4119 -"CanESM2","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-12.7204 -"CanESM2","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-11.7732 -"CanESM2","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-11.3075 -"CanESM2","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-11.514 -"CanESM2","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-11.7701 -"CanESM2","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-11.9423 -"CanESM2","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-11.5328 -"CanESM2","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-11.3343 -"CanESM2","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-11.7381999999999 -"CanESM2","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-11.1784 -"CanESM2","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-11.8511 -"CanESM2","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-11.5873 -"CanESM2","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-11.971 -"CanESM2","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-11.4732 -"CanESM2","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-11.6737 -"CanESM2","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-12.0894 -"CanESM2","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-12.1847 -"CanESM2","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-11.5652 -"CanESM2","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-11.7896 -"CanESM2","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-11.4609 -"CanESM2","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-11.7651 -"CanESM2","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-11.6314 -"CanESM2","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-11.5989 -"CanESM2","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-11.9534 -"CanESM2","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-11.9668 -"CanESM2","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-12.2426 -"CanESM2","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-11.3511999999999 -"CanESM2","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-11.8545 -"CanESM2","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-11.6086 -"CanESM2","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-11.8736 -"CanESM2","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-11.6442 -"CanESM2","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-11.4036 -"CanESM2","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-11.8722 -"CanESM2","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-11.9335 -"CanESM2","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-12.1019 -"CanESM2","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-11.8743 -"CanESM2","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-12.3445 -"CanESM2","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-12.1904 -"CanESM2","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-11.775 -"CanESM2","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-11.7499 -"CanESM2","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-11.8495 -"CanESM2","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-12.3958 -"CanESM2","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-11.8341 -"CanESM2","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-12.2187 -"CanESM2","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-11.7476 -"CanESM2","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-11.8773 -"CanESM2","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-11.67 -"CanESM2","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-12.2995 -"CanESM2","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-12.1428 -"CanESM2","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-11.9013 -"CanESM2","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-12.1605 -"CanESM2","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-11.8034 -"CanESM2","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-11.4869 -"CanESM2","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-12.1007 -"CanESM2","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-11.6935 -"CanESM2","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-11.5433 -"CanESM2","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-11.6015 -"CanESM2","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-12.2624 -"CanESM2","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-12.1289 -"CanESM2","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-11.8505 -"CanESM2","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-12.194 -"CanESM2","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-11.9421 -"CanESM2","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-12.164 -"CanESM2","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-11.7485 -"CanESM2","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-11.3219 -"CanESM2","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-11.954 -"CanESM2","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-11.7668 -"CanESM2","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-11.727 -"CanESM2","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-11.1044 -"CanESM2","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-11.7231 -"CanESM2","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-11.3252 -"CanESM2","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-11.5134 -"CanESM2","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-11.482 -"CanESM2","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-11.4652 -"CanESM2","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-11.5685 -"CanESM2","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-11.5413 -"CanESM2","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-11.4484 -"CanESM2","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-11.8282 -"CanESM2","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-11.6482999999999 -"CanESM2","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-10.8083 -"CanESM2","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-10.9116 -"CanESM2","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-11.2279 -"CanESM2","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-11.3374 -"CanESM2","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-11.6046 -"CanESM2","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-10.6717 -"CanESM2","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-11.0684 -"CanESM2","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-10.3624 -"CanESM2","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-10.5566 -"CanESM2","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-10.9297 -"CanESM2","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-10.5924 -"CanESM2","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-10.4263 -"CanESM2","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-10.3076 -"CanESM2","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-10.4306 -"CanESM2","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-10.4341 -"CanESM2","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-10.2802 -"CanESM2","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-9.7867 -"CanESM2","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",18.9831 -"CanESM2","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",19.1288 -"CanESM2","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",19.0982 -"CanESM2","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",19.1173 -"CanESM2","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",19.2893 -"CanESM2","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",19.1419 -"CanESM2","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",19.0772 -"CanESM2","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",18.8621 -"CanESM2","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",18.9484 -"CanESM2","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",18.8597 -"CanESM2","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",18.9486 -"CanESM2","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",19.1289 -"CanESM2","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",19.0337 -"CanESM2","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",18.9215 -"CanESM2","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",18.8503 -"CanESM2","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",18.9141 -"CanESM2","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",18.8636 -"CanESM2","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",19.0791 -"CanESM2","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",19.1603 -"CanESM2","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",18.971 -"CanESM2","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",19.2282 -"CanESM2","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",19.1792 -"CanESM2","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",19.1287 -"CanESM2","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",19.091 -"CanESM2","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",19.2105 -"CanESM2","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",19.0848 -"CanESM2","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",18.9907 -"CanESM2","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",19.138 -"CanESM2","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",19.0528 -"CanESM2","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",19.2003 -"CanESM2","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",19.2714 -"CanESM2","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",19.254 -"CanESM2","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",19.2628 -"CanESM2","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",19.0392000000001 -"CanESM2","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",18.7993 -"CanESM2","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",18.6614 -"CanESM2","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",18.6281 -"CanESM2","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",18.7874 -"CanESM2","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",18.8576 -"CanESM2","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",18.8166000000001 -"CanESM2","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",18.7957 -"CanESM2","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",18.8952 -"CanESM2","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",19.0298 -"CanESM2","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",19.0822 -"CanESM2","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",18.9793 -"CanESM2","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",19.2027 -"CanESM2","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",19.2354 -"CanESM2","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",19.0922 -"CanESM2","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",18.8992 -"CanESM2","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",19.0005 -"CanESM2","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",19.1525 -"CanESM2","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",18.9539 -"CanESM2","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",18.8843 -"CanESM2","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",18.9531 -"CanESM2","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",18.8885 -"CanESM2","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",18.7469 -"CanESM2","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",19.0927 -"CanESM2","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",19.2191 -"CanESM2","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",19.0577 -"CanESM2","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",19.0183 -"CanESM2","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",19.0524 -"CanESM2","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",19.1423 -"CanESM2","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",19.2919 -"CanESM2","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",19.1911 -"CanESM2","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",18.9671 -"CanESM2","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",19.1361 -"CanESM2","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",19.3379 -"CanESM2","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",19.3639 -"CanESM2","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",19.2056 -"CanESM2","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",19.2238 -"CanESM2","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",19.06 -"CanESM2","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",19.0447 -"CanESM2","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",19.2293 -"CanESM2","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",19.346 -"CanESM2","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",19.142 -"CanESM2","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",19.045 -"CanESM2","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",19.2618000000001 -"CanESM2","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",19.199 -"CanESM2","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",19.3756 -"CanESM2","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",19.2444 -"CanESM2","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",19.2649 -"CanESM2","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",19.1905 -"CanESM2","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",19.1375 -"CanESM2","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",19.042 -"CanESM2","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",19.1836 -"CanESM2","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",19.2658 -"CanESM2","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",19.4274 -"CanESM2","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",19.2815000000001 -"CanESM2","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",19.3399 -"CanESM2","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",19.1782 -"CanESM2","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",19.2459 -"CanESM2","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",19.4277 -"CanESM2","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",19.2234 -"CanESM2","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",19.1689 -"CanESM2","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",19.2185 -"CanESM2","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",19.4229 -"CanESM2","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",19.0918 -"CanESM2","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",19.2667 -"CanESM2","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",19.4655 -"CanESM2","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",19.4063 -"CanESM2","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",19.1779 -"CanESM2","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",19.3197 -"CanESM2","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",19.3118 -"CanESM2","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",19.1298 -"CanESM2","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",19.2279 -"CanESM2","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",19.2018 -"CanESM2","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",19.2768 -"CanESM2","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",19.1302 -"CanESM2","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",19.1825 -"CanESM2","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",19.2206 -"CanESM2","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",19.1186 -"CanESM2","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",19.2154 -"CanESM2","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",19.2926 -"CanESM2","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",19.1383 -"CanESM2","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",19.0434 -"CanESM2","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",19.1577 -"CanESM2","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",19.1042 -"CanESM2","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",19.0396 -"CanESM2","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",19.0542 -"CanESM2","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",19.0557 -"CanESM2","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",19.0892 -"CanESM2","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",19.0142 -"CanESM2","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",19.1277 -"CanESM2","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",19.5004 -"CanESM2","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",19.3508 -"CanESM2","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",19.2388 -"CanESM2","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",19.3425 -"CanESM2","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",19.4771 -"CanESM2","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",19.3977 -"CanESM2","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",19.3086 -"CanESM2","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",19.421 -"CanESM2","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",19.5887 -"CanESM2","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",19.6635 -"CanESM2","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",19.4517 -"CanESM2","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",19.3832 -"CanESM2","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",19.5606 -"CanESM2","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",19.4461 -"CanESM2","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",19.3106 -"CanESM2","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",19.4804 -"CanESM2","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",19.5954 -"CanESM2","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",19.8286 -"CanESM2","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",19.6511 -"CanESM2","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",19.4055 -"CanESM2","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",19.5257 -"CanESM2","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",19.5673 -"CanESM2","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",19.6254 -"CanESM2","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",19.8659 -"CanESM2","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",19.9593 -"CanESM2","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",19.7372 -"CanESM2","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",19.7516 -"CanESM2","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",19.7952 -"CanESM2","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",19.8661 -"CanESM2","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",19.8814 -"CanESM2","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",20.102 -"CanESM2","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",20.0652 -"CanESM2","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",20.2308 -"CESM1-BGC","tas","temperature","tgav","historical",1850,"Simulated","C","global",13.517 -"CESM1-BGC","tas","temperature","tgav","historical",1851,"Simulated","C","global",13.4329 -"CESM1-BGC","tas","temperature","tgav","historical",1852,"Simulated","C","global",13.2316 -"CESM1-BGC","tas","temperature","tgav","historical",1853,"Simulated","C","global",13.3658 -"CESM1-BGC","tas","temperature","tgav","historical",1854,"Simulated","C","global",13.4522 -"CESM1-BGC","tas","temperature","tgav","historical",1855,"Simulated","C","global",13.5868 -"CESM1-BGC","tas","temperature","tgav","historical",1856,"Simulated","C","global",13.3267 -"CESM1-BGC","tas","temperature","tgav","historical",1857,"Simulated","C","global",13.2064 -"CESM1-BGC","tas","temperature","tgav","historical",1858,"Simulated","C","global",13.3289 -"CESM1-BGC","tas","temperature","tgav","historical",1859,"Simulated","C","global",13.4842 -"CESM1-BGC","tas","temperature","tgav","historical",1860,"Simulated","C","global",13.554 -"CESM1-BGC","tas","temperature","tgav","historical",1861,"Simulated","C","global",13.5667 -"CESM1-BGC","tas","temperature","tgav","historical",1862,"Simulated","C","global",13.4859 -"CESM1-BGC","tas","temperature","tgav","historical",1863,"Simulated","C","global",13.4267 -"CESM1-BGC","tas","temperature","tgav","historical",1864,"Simulated","C","global",13.4759 -"CESM1-BGC","tas","temperature","tgav","historical",1865,"Simulated","C","global",13.4999 -"CESM1-BGC","tas","temperature","tgav","historical",1866,"Simulated","C","global",13.45 -"CESM1-BGC","tas","temperature","tgav","historical",1867,"Simulated","C","global",13.435 -"CESM1-BGC","tas","temperature","tgav","historical",1868,"Simulated","C","global",13.5881 -"CESM1-BGC","tas","temperature","tgav","historical",1869,"Simulated","C","global",13.5579 -"CESM1-BGC","tas","temperature","tgav","historical",1870,"Simulated","C","global",13.3007 -"CESM1-BGC","tas","temperature","tgav","historical",1871,"Simulated","C","global",13.4575 -"CESM1-BGC","tas","temperature","tgav","historical",1872,"Simulated","C","global",13.6027 -"CESM1-BGC","tas","temperature","tgav","historical",1873,"Simulated","C","global",13.3506 -"CESM1-BGC","tas","temperature","tgav","historical",1874,"Simulated","C","global",13.4395 -"CESM1-BGC","tas","temperature","tgav","historical",1875,"Simulated","C","global",13.554 -"CESM1-BGC","tas","temperature","tgav","historical",1876,"Simulated","C","global",13.6718 -"CESM1-BGC","tas","temperature","tgav","historical",1877,"Simulated","C","global",13.6202 -"CESM1-BGC","tas","temperature","tgav","historical",1878,"Simulated","C","global",13.5627 -"CESM1-BGC","tas","temperature","tgav","historical",1879,"Simulated","C","global",13.573 -"CESM1-BGC","tas","temperature","tgav","historical",1880,"Simulated","C","global",13.4312 -"CESM1-BGC","tas","temperature","tgav","historical",1881,"Simulated","C","global",13.5421 -"CESM1-BGC","tas","temperature","tgav","historical",1882,"Simulated","C","global",13.5746 -"CESM1-BGC","tas","temperature","tgav","historical",1883,"Simulated","C","global",13.3959 -"CESM1-BGC","tas","temperature","tgav","historical",1884,"Simulated","C","global",12.9194 -"CESM1-BGC","tas","temperature","tgav","historical",1885,"Simulated","C","global",13.1399 -"CESM1-BGC","tas","temperature","tgav","historical",1886,"Simulated","C","global",13.3613 -"CESM1-BGC","tas","temperature","tgav","historical",1887,"Simulated","C","global",13.3116 -"CESM1-BGC","tas","temperature","tgav","historical",1888,"Simulated","C","global",13.3054 -"CESM1-BGC","tas","temperature","tgav","historical",1889,"Simulated","C","global",13.3878 -"CESM1-BGC","tas","temperature","tgav","historical",1890,"Simulated","C","global",13.4182 -"CESM1-BGC","tas","temperature","tgav","historical",1891,"Simulated","C","global",13.4257 -"CESM1-BGC","tas","temperature","tgav","historical",1892,"Simulated","C","global",13.3989 -"CESM1-BGC","tas","temperature","tgav","historical",1893,"Simulated","C","global",13.4721 -"CESM1-BGC","tas","temperature","tgav","historical",1894,"Simulated","C","global",13.4126 -"CESM1-BGC","tas","temperature","tgav","historical",1895,"Simulated","C","global",13.475 -"CESM1-BGC","tas","temperature","tgav","historical",1896,"Simulated","C","global",13.3944 -"CESM1-BGC","tas","temperature","tgav","historical",1897,"Simulated","C","global",13.5597 -"CESM1-BGC","tas","temperature","tgav","historical",1898,"Simulated","C","global",13.5398 -"CESM1-BGC","tas","temperature","tgav","historical",1899,"Simulated","C","global",13.5376 -"CESM1-BGC","tas","temperature","tgav","historical",1900,"Simulated","C","global",13.5217 -"CESM1-BGC","tas","temperature","tgav","historical",1901,"Simulated","C","global",13.4663 -"CESM1-BGC","tas","temperature","tgav","historical",1902,"Simulated","C","global",13.4901 -"CESM1-BGC","tas","temperature","tgav","historical",1903,"Simulated","C","global",13.0774 -"CESM1-BGC","tas","temperature","tgav","historical",1904,"Simulated","C","global",13.1924 -"CESM1-BGC","tas","temperature","tgav","historical",1905,"Simulated","C","global",13.2663 -"CESM1-BGC","tas","temperature","tgav","historical",1906,"Simulated","C","global",13.1547 -"CESM1-BGC","tas","temperature","tgav","historical",1907,"Simulated","C","global",13.2914 -"CESM1-BGC","tas","temperature","tgav","historical",1908,"Simulated","C","global",13.4213 -"CESM1-BGC","tas","temperature","tgav","historical",1909,"Simulated","C","global",13.4865 -"CESM1-BGC","tas","temperature","tgav","historical",1910,"Simulated","C","global",13.7219 -"CESM1-BGC","tas","temperature","tgav","historical",1911,"Simulated","C","global",13.6914 -"CESM1-BGC","tas","temperature","tgav","historical",1912,"Simulated","C","global",13.3586 -"CESM1-BGC","tas","temperature","tgav","historical",1913,"Simulated","C","global",13.2125 -"CESM1-BGC","tas","temperature","tgav","historical",1914,"Simulated","C","global",13.4536 -"CESM1-BGC","tas","temperature","tgav","historical",1915,"Simulated","C","global",13.5388 -"CESM1-BGC","tas","temperature","tgav","historical",1916,"Simulated","C","global",13.5546000000001 -"CESM1-BGC","tas","temperature","tgav","historical",1917,"Simulated","C","global",13.5986 -"CESM1-BGC","tas","temperature","tgav","historical",1918,"Simulated","C","global",13.5478 -"CESM1-BGC","tas","temperature","tgav","historical",1919,"Simulated","C","global",13.4254 -"CESM1-BGC","tas","temperature","tgav","historical",1920,"Simulated","C","global",13.4888 -"CESM1-BGC","tas","temperature","tgav","historical",1921,"Simulated","C","global",13.4848 -"CESM1-BGC","tas","temperature","tgav","historical",1922,"Simulated","C","global",13.3505 -"CESM1-BGC","tas","temperature","tgav","historical",1923,"Simulated","C","global",13.6046 -"CESM1-BGC","tas","temperature","tgav","historical",1924,"Simulated","C","global",13.5981 -"CESM1-BGC","tas","temperature","tgav","historical",1925,"Simulated","C","global",13.4858 -"CESM1-BGC","tas","temperature","tgav","historical",1926,"Simulated","C","global",13.5348 -"CESM1-BGC","tas","temperature","tgav","historical",1927,"Simulated","C","global",13.5066 -"CESM1-BGC","tas","temperature","tgav","historical",1928,"Simulated","C","global",13.6251 -"CESM1-BGC","tas","temperature","tgav","historical",1929,"Simulated","C","global",13.5181 -"CESM1-BGC","tas","temperature","tgav","historical",1930,"Simulated","C","global",13.3918 -"CESM1-BGC","tas","temperature","tgav","historical",1931,"Simulated","C","global",13.5927 -"CESM1-BGC","tas","temperature","tgav","historical",1932,"Simulated","C","global",13.5771 -"CESM1-BGC","tas","temperature","tgav","historical",1933,"Simulated","C","global",13.6613 -"CESM1-BGC","tas","temperature","tgav","historical",1934,"Simulated","C","global",13.7514 -"CESM1-BGC","tas","temperature","tgav","historical",1935,"Simulated","C","global",13.5917 -"CESM1-BGC","tas","temperature","tgav","historical",1936,"Simulated","C","global",13.6065 -"CESM1-BGC","tas","temperature","tgav","historical",1937,"Simulated","C","global",13.6557 -"CESM1-BGC","tas","temperature","tgav","historical",1938,"Simulated","C","global",13.6659 -"CESM1-BGC","tas","temperature","tgav","historical",1939,"Simulated","C","global",13.5940000000001 -"CESM1-BGC","tas","temperature","tgav","historical",1940,"Simulated","C","global",13.6989 -"CESM1-BGC","tas","temperature","tgav","historical",1941,"Simulated","C","global",13.81 -"CESM1-BGC","tas","temperature","tgav","historical",1942,"Simulated","C","global",13.7285 -"CESM1-BGC","tas","temperature","tgav","historical",1943,"Simulated","C","global",13.7168 -"CESM1-BGC","tas","temperature","tgav","historical",1944,"Simulated","C","global",13.7584 -"CESM1-BGC","tas","temperature","tgav","historical",1945,"Simulated","C","global",13.6205 -"CESM1-BGC","tas","temperature","tgav","historical",1946,"Simulated","C","global",13.6629 -"CESM1-BGC","tas","temperature","tgav","historical",1947,"Simulated","C","global",13.7169 -"CESM1-BGC","tas","temperature","tgav","historical",1948,"Simulated","C","global",13.7233 -"CESM1-BGC","tas","temperature","tgav","historical",1949,"Simulated","C","global",13.9007 -"CESM1-BGC","tas","temperature","tgav","historical",1950,"Simulated","C","global",13.9157 -"CESM1-BGC","tas","temperature","tgav","historical",1951,"Simulated","C","global",13.7284 -"CESM1-BGC","tas","temperature","tgav","historical",1952,"Simulated","C","global",13.5221 -"CESM1-BGC","tas","temperature","tgav","historical",1953,"Simulated","C","global",13.6336 -"CESM1-BGC","tas","temperature","tgav","historical",1954,"Simulated","C","global",13.6545 -"CESM1-BGC","tas","temperature","tgav","historical",1955,"Simulated","C","global",13.7653 -"CESM1-BGC","tas","temperature","tgav","historical",1956,"Simulated","C","global",13.6433 -"CESM1-BGC","tas","temperature","tgav","historical",1957,"Simulated","C","global",13.6818 -"CESM1-BGC","tas","temperature","tgav","historical",1958,"Simulated","C","global",13.7205 -"CESM1-BGC","tas","temperature","tgav","historical",1959,"Simulated","C","global",13.8641 -"CESM1-BGC","tas","temperature","tgav","historical",1960,"Simulated","C","global",13.8 -"CESM1-BGC","tas","temperature","tgav","historical",1961,"Simulated","C","global",13.7895 -"CESM1-BGC","tas","temperature","tgav","historical",1962,"Simulated","C","global",13.6407 -"CESM1-BGC","tas","temperature","tgav","historical",1963,"Simulated","C","global",13.5186 -"CESM1-BGC","tas","temperature","tgav","historical",1964,"Simulated","C","global",13.4082 -"CESM1-BGC","tas","temperature","tgav","historical",1965,"Simulated","C","global",13.7296 -"CESM1-BGC","tas","temperature","tgav","historical",1966,"Simulated","C","global",13.6691 -"CESM1-BGC","tas","temperature","tgav","historical",1967,"Simulated","C","global",13.6517 -"CESM1-BGC","tas","temperature","tgav","historical",1968,"Simulated","C","global",13.7386 -"CESM1-BGC","tas","temperature","tgav","historical",1969,"Simulated","C","global",13.8571 -"CESM1-BGC","tas","temperature","tgav","historical",1970,"Simulated","C","global",14.0561 -"CESM1-BGC","tas","temperature","tgav","historical",1971,"Simulated","C","global",13.9875 -"CESM1-BGC","tas","temperature","tgav","historical",1972,"Simulated","C","global",13.9347 -"CESM1-BGC","tas","temperature","tgav","historical",1973,"Simulated","C","global",13.9197 -"CESM1-BGC","tas","temperature","tgav","historical",1974,"Simulated","C","global",13.8725 -"CESM1-BGC","tas","temperature","tgav","historical",1975,"Simulated","C","global",13.9755 -"CESM1-BGC","tas","temperature","tgav","historical",1976,"Simulated","C","global",13.7817 -"CESM1-BGC","tas","temperature","tgav","historical",1977,"Simulated","C","global",13.963 -"CESM1-BGC","tas","temperature","tgav","historical",1978,"Simulated","C","global",14.1 -"CESM1-BGC","tas","temperature","tgav","historical",1979,"Simulated","C","global",14.0325 -"CESM1-BGC","tas","temperature","tgav","historical",1980,"Simulated","C","global",14.0272000000001 -"CESM1-BGC","tas","temperature","tgav","historical",1981,"Simulated","C","global",14.3356 -"CESM1-BGC","tas","temperature","tgav","historical",1982,"Simulated","C","global",14.2618000000001 -"CESM1-BGC","tas","temperature","tgav","historical",1983,"Simulated","C","global",13.8962 -"CESM1-BGC","tas","temperature","tgav","historical",1984,"Simulated","C","global",14.0028 -"CESM1-BGC","tas","temperature","tgav","historical",1985,"Simulated","C","global",14.0257 -"CESM1-BGC","tas","temperature","tgav","historical",1986,"Simulated","C","global",14.0568 -"CESM1-BGC","tas","temperature","tgav","historical",1987,"Simulated","C","global",14.0882 -"CESM1-BGC","tas","temperature","tgav","historical",1988,"Simulated","C","global",14.3047 -"CESM1-BGC","tas","temperature","tgav","historical",1989,"Simulated","C","global",14.3013 -"CESM1-BGC","tas","temperature","tgav","historical",1990,"Simulated","C","global",14.2643 -"CESM1-BGC","tas","temperature","tgav","historical",1991,"Simulated","C","global",14.1448 -"CESM1-BGC","tas","temperature","tgav","historical",1992,"Simulated","C","global",13.8853 -"CESM1-BGC","tas","temperature","tgav","historical",1993,"Simulated","C","global",13.988 -"CESM1-BGC","tas","temperature","tgav","historical",1994,"Simulated","C","global",14.1379 -"CESM1-BGC","tas","temperature","tgav","historical",1995,"Simulated","C","global",14.3225 -"CESM1-BGC","tas","temperature","tgav","historical",1996,"Simulated","C","global",14.3428 -"CESM1-BGC","tas","temperature","tgav","historical",1997,"Simulated","C","global",14.5541 -"CESM1-BGC","tas","temperature","tgav","historical",1998,"Simulated","C","global",14.4844000000001 -"CESM1-BGC","tas","temperature","tgav","historical",1999,"Simulated","C","global",14.5597 -"CESM1-BGC","tas","temperature","tgav","historical",2000,"Simulated","C","global",14.5529 -"CESM1-BGC","tas","temperature","tgav","historical",2001,"Simulated","C","global",14.475 -"CESM1-BGC","tas","temperature","tgav","historical",2002,"Simulated","C","global",14.4404 -"CESM1-BGC","tas","temperature","tgav","historical",2003,"Simulated","C","global",14.5202 -"CESM1-BGC","tas","temperature","tgav","historical",2004,"Simulated","C","global",14.6156 -"CESM1-BGC","tas","temperature","tgav","historical",2005,"Simulated","C","global",14.8552 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-12.0201 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-12.1214 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-12.4576 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-11.8652 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-11.8274 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-11.8208 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-12.1085 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-12.5753 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-11.9016 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-11.8896 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-11.7617 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-11.6733 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-11.5179 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-11.5784 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-11.8246 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-11.8482 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-11.5573 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-11.9109 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-11.3324 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-11.3228 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-12.2603 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-12.1331 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-11.6621 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-12.2379 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-12.0873 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-11.8859 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-11.4521 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-11.2735 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-11.5023 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-11.4036 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-12.0597 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-11.8826 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-11.5528 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-11.8287 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-12.0078999999999 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-11.8978 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-11.8385 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-11.8616 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-11.7945 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-12.1317 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-11.5754 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-11.7131 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-11.7999 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-11.875 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-11.8338 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-11.8166 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-12.2789 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-11.7041 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-11.6106 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-11.5688 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-12.046 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-11.95 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-11.7899 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-12.1745 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-12.2067 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-11.8667 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-12.3227 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-12.2022 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-11.9819 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-11.7931 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-11.4165 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-11.6233 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-12.1841 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-12.4892 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-11.6829 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-11.7463 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-11.8108 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-11.7005 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-11.7052 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-12.0232 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-11.9126 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-11.8682 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-12.6548 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-11.6634 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-11.6323 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-11.9803 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-11.6007 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-11.7259 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-11.5257 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-11.8277 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-12.1125 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-11.4877 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-11.8449 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-11.8723 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-11.2741 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-11.4853 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-11.5332 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-11.6752 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-11.4321 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-11.75 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-11.5556 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-11.3108 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-11.4138 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-11.3615 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-11.3162 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-11.7513 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-11.4237 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-11.2355 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-11.3841 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-11.1717 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-11.385 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-11.4748 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-11.8691 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-11.6557 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-11.6183 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-11.3707 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-11.8449 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-11.3453 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-11.6141 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-11.2994 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-11.4473 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-11.1927 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-11.7559 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-11.6026 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-11.8147 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-11.3548 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-11.6545 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-11.819 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-11.6141 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-11.2226 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-10.8833 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-11.0877 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-11.2287 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-10.8857 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-11.4433 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-11.0145 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-11.0294 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-11.1424 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-10.8863 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-10.9283 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-11.2779 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-10.5137 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-10.7326 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-11.2021 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-11.1736 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-10.8695 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-10.7614 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-10.9919 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-10.3571 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-10.5285 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-10.6763 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-10.8989 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-10.8832 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-10.9538 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-10.7242 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-10.0849 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-10.5089 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-10.0338 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-10.0114 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-10.2069 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-10.1591 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-10.2533 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-10.2993 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-10.2325 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-9.87399999999997 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-9.60669999999999 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",19.2866 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",19.2064 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",19.0355 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",19.0663 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",19.1636 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",19.3272 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",19.0733 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",19.0313 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",19.0293 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",19.2169 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",19.2737 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",19.2693 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",19.135 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",19.0762 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",19.1921 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",19.2268 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",19.1 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",19.1615 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",19.2184 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",19.1792 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",19.0757 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",19.2391 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",19.3109 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",19.1318 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",19.2068 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",19.3017 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",19.3481 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",19.2445 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",19.2257 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",19.216 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",19.1904 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",19.2864 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",19.2516 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",19.095 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",18.5513 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",18.7967 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",19.0548 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",18.999 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",18.9762 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",19.1534 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",19.065 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",19.1054 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",19.0921 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",19.1988 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",19.1166 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",19.1892 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",19.1948 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",19.2676 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",19.2221 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",19.21 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",19.2982 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",19.2086 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",19.2016 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",18.7825 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",18.9309 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",18.9447 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",18.9108 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",19.0511 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",19.1607 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",19.198 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",19.4014 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",19.4107 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",19.1295 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",19.0193 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",19.1327 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",19.2515 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",19.2854 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",19.3145 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",19.2532 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",19.175 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",19.2278 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",19.2128 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",19.2258 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",19.3134 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",19.2984 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",19.2395 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",19.2137 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",19.2074 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",19.3074 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",19.2445 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",19.1541 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",19.2592 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",19.3208 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",19.4301 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",19.4055 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",19.2573 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",19.2863 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",19.3787 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",19.3363000000001 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",19.3200000000001 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",19.4047 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",19.4856 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",19.4089 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",19.3828 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",19.4235 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",19.3528 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",19.3307 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",19.3545 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",19.3959 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",19.5654 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",19.6319 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",19.4227 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",19.2588 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",19.3472 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",19.3643 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",19.4443 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",19.4018 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",19.3362 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",19.4443 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",19.5494 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",19.5041000000001 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",19.4338 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",19.3786 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",19.1943 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",19.1069 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",19.397 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",19.3905 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",19.4063 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",19.4665 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",19.5234 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",19.6907 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",19.6528 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",19.62 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",19.524 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",19.5921 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",19.6215 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",19.3872 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",19.6351 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",19.7452 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",19.672 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",19.7444 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",19.9498 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",19.9089 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",19.5667 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",19.691 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",19.6502 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",19.664 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",19.7546 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",19.8766 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",19.9111 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",19.8992 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",19.803 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",19.4813 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",19.6231 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",19.7551 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",19.837 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",19.9577 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",20.1093 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",20.0187 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",20.1552 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",20.136 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",20.0619 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",20.0299 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",20.1125 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",20.1485 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",20.3819 -"GFDL-ESM2G","tas","temperature","tgav","historical",1996,"Simulated","C","global",13.8671000000001 -"GFDL-ESM2G","tas","temperature","tgav","historical",1997,"Simulated","C","global",13.9727 -"GFDL-ESM2G","tas","temperature","tgav","historical",1998,"Simulated","C","global",13.9854 -"GFDL-ESM2G","tas","temperature","tgav","historical",1999,"Simulated","C","global",13.9585 -"GFDL-ESM2G","tas","temperature","tgav","historical",2000,"Simulated","C","global",14.011 -"GFDL-ESM2G","tas","temperature","tgav","historical",2001,"Simulated","C","global",14.2635 -"GFDL-ESM2G","tas","temperature","tgav","historical",2002,"Simulated","C","global",14.3633 -"GFDL-ESM2G","tas","temperature","tgav","historical",2003,"Simulated","C","global",14.2068 -"GFDL-ESM2G","tas","temperature","tgav","historical",2004,"Simulated","C","global",14.1769 -"GFDL-ESM2G","tas","temperature","tgav","historical",2005,"Simulated","C","global",14.2562 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-8.66039999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-8.29319999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-8.5265 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-8.39179999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-8.51059999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-7.96769999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-7.94169999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-8.2355 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-8.45189999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-8.50559999999996 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",18.9741 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",19.0204 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",19.0888 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",19.0252 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",19.1166 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",19.3033 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",19.4198 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",19.2945 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",19.3068 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",19.4163 -"HadGEM2-ES","tas","temperature","tgav","historical",1859,"Simulated","C","global",11.6494 -"HadGEM2-ES","tas","temperature","tgav","historical",1860,"Simulated","C","global",13.66336 -"HadGEM2-ES","tas","temperature","tgav","historical",1861,"Simulated","C","global",13.66254 -"HadGEM2-ES","tas","temperature","tgav","historical",1862,"Simulated","C","global",13.69538 -"HadGEM2-ES","tas","temperature","tgav","historical",1863,"Simulated","C","global",13.61842 -"HadGEM2-ES","tas","temperature","tgav","historical",1864,"Simulated","C","global",13.63386 -"HadGEM2-ES","tas","temperature","tgav","historical",1865,"Simulated","C","global",13.51054 -"HadGEM2-ES","tas","temperature","tgav","historical",1866,"Simulated","C","global",13.47996 -"HadGEM2-ES","tas","temperature","tgav","historical",1867,"Simulated","C","global",13.52678 -"HadGEM2-ES","tas","temperature","tgav","historical",1868,"Simulated","C","global",13.52634 -"HadGEM2-ES","tas","temperature","tgav","historical",1869,"Simulated","C","global",13.59532 -"HadGEM2-ES","tas","temperature","tgav","historical",1870,"Simulated","C","global",13.61124 -"HadGEM2-ES","tas","temperature","tgav","historical",1871,"Simulated","C","global",13.65244 -"HadGEM2-ES","tas","temperature","tgav","historical",1872,"Simulated","C","global",13.70856 -"HadGEM2-ES","tas","temperature","tgav","historical",1873,"Simulated","C","global",13.71704 -"HadGEM2-ES","tas","temperature","tgav","historical",1874,"Simulated","C","global",13.70234 -"HadGEM2-ES","tas","temperature","tgav","historical",1875,"Simulated","C","global",13.64346 -"HadGEM2-ES","tas","temperature","tgav","historical",1876,"Simulated","C","global",13.59564 -"HadGEM2-ES","tas","temperature","tgav","historical",1877,"Simulated","C","global",13.63232 -"HadGEM2-ES","tas","temperature","tgav","historical",1878,"Simulated","C","global",13.66064 -"HadGEM2-ES","tas","temperature","tgav","historical",1879,"Simulated","C","global",13.61668 -"HadGEM2-ES","tas","temperature","tgav","historical",1880,"Simulated","C","global",13.57358 -"HadGEM2-ES","tas","temperature","tgav","historical",1881,"Simulated","C","global",13.6099 -"HadGEM2-ES","tas","temperature","tgav","historical",1882,"Simulated","C","global",13.60778 -"HadGEM2-ES","tas","temperature","tgav","historical",1883,"Simulated","C","global",13.5798 -"HadGEM2-ES","tas","temperature","tgav","historical",1884,"Simulated","C","global",13.33896 -"HadGEM2-ES","tas","temperature","tgav","historical",1885,"Simulated","C","global",13.3535 -"HadGEM2-ES","tas","temperature","tgav","historical",1886,"Simulated","C","global",13.40104 -"HadGEM2-ES","tas","temperature","tgav","historical",1887,"Simulated","C","global",13.38354 -"HadGEM2-ES","tas","temperature","tgav","historical",1888,"Simulated","C","global",13.4504 -"HadGEM2-ES","tas","temperature","tgav","historical",1889,"Simulated","C","global",13.41276 -"HadGEM2-ES","tas","temperature","tgav","historical",1890,"Simulated","C","global",13.38978 -"HadGEM2-ES","tas","temperature","tgav","historical",1891,"Simulated","C","global",13.36326 -"HadGEM2-ES","tas","temperature","tgav","historical",1892,"Simulated","C","global",13.43596 -"HadGEM2-ES","tas","temperature","tgav","historical",1893,"Simulated","C","global",13.3936 -"HadGEM2-ES","tas","temperature","tgav","historical",1894,"Simulated","C","global",13.44822 -"HadGEM2-ES","tas","temperature","tgav","historical",1895,"Simulated","C","global",13.5366 -"HadGEM2-ES","tas","temperature","tgav","historical",1896,"Simulated","C","global",13.625 -"HadGEM2-ES","tas","temperature","tgav","historical",1897,"Simulated","C","global",13.56086 -"HadGEM2-ES","tas","temperature","tgav","historical",1898,"Simulated","C","global",13.56334 -"HadGEM2-ES","tas","temperature","tgav","historical",1899,"Simulated","C","global",13.65754 -"HadGEM2-ES","tas","temperature","tgav","historical",1900,"Simulated","C","global",13.65544 -"HadGEM2-ES","tas","temperature","tgav","historical",1901,"Simulated","C","global",13.68676 -"HadGEM2-ES","tas","temperature","tgav","historical",1902,"Simulated","C","global",13.62158 -"HadGEM2-ES","tas","temperature","tgav","historical",1903,"Simulated","C","global",13.4527 -"HadGEM2-ES","tas","temperature","tgav","historical",1904,"Simulated","C","global",13.40208 -"HadGEM2-ES","tas","temperature","tgav","historical",1905,"Simulated","C","global",13.54994 -"HadGEM2-ES","tas","temperature","tgav","historical",1906,"Simulated","C","global",13.55454 -"HadGEM2-ES","tas","temperature","tgav","historical",1907,"Simulated","C","global",13.60172 -"HadGEM2-ES","tas","temperature","tgav","historical",1908,"Simulated","C","global",13.57868 -"HadGEM2-ES","tas","temperature","tgav","historical",1909,"Simulated","C","global",13.51474 -"HadGEM2-ES","tas","temperature","tgav","historical",1910,"Simulated","C","global",13.61896 -"HadGEM2-ES","tas","temperature","tgav","historical",1911,"Simulated","C","global",13.57172 -"HadGEM2-ES","tas","temperature","tgav","historical",1912,"Simulated","C","global",13.53644 -"HadGEM2-ES","tas","temperature","tgav","historical",1913,"Simulated","C","global",13.55718 -"HadGEM2-ES","tas","temperature","tgav","historical",1914,"Simulated","C","global",13.6308 -"HadGEM2-ES","tas","temperature","tgav","historical",1915,"Simulated","C","global",13.64834 -"HadGEM2-ES","tas","temperature","tgav","historical",1916,"Simulated","C","global",13.73316 -"HadGEM2-ES","tas","temperature","tgav","historical",1917,"Simulated","C","global",13.78622 -"HadGEM2-ES","tas","temperature","tgav","historical",1918,"Simulated","C","global",13.74008 -"HadGEM2-ES","tas","temperature","tgav","historical",1919,"Simulated","C","global",13.75712 -"HadGEM2-ES","tas","temperature","tgav","historical",1920,"Simulated","C","global",13.7149 -"HadGEM2-ES","tas","temperature","tgav","historical",1921,"Simulated","C","global",13.7051 -"HadGEM2-ES","tas","temperature","tgav","historical",1922,"Simulated","C","global",13.71438 -"HadGEM2-ES","tas","temperature","tgav","historical",1923,"Simulated","C","global",13.69404 -"HadGEM2-ES","tas","temperature","tgav","historical",1924,"Simulated","C","global",13.7841 -"HadGEM2-ES","tas","temperature","tgav","historical",1925,"Simulated","C","global",13.75944 -"HadGEM2-ES","tas","temperature","tgav","historical",1926,"Simulated","C","global",13.72824 -"HadGEM2-ES","tas","temperature","tgav","historical",1927,"Simulated","C","global",13.66608 -"HadGEM2-ES","tas","temperature","tgav","historical",1928,"Simulated","C","global",13.70328 -"HadGEM2-ES","tas","temperature","tgav","historical",1929,"Simulated","C","global",13.73122 -"HadGEM2-ES","tas","temperature","tgav","historical",1930,"Simulated","C","global",13.7023 -"HadGEM2-ES","tas","temperature","tgav","historical",1931,"Simulated","C","global",13.67786 -"HadGEM2-ES","tas","temperature","tgav","historical",1932,"Simulated","C","global",13.7115 -"HadGEM2-ES","tas","temperature","tgav","historical",1933,"Simulated","C","global",13.69354 -"HadGEM2-ES","tas","temperature","tgav","historical",1934,"Simulated","C","global",13.71202 -"HadGEM2-ES","tas","temperature","tgav","historical",1935,"Simulated","C","global",13.75782 -"HadGEM2-ES","tas","temperature","tgav","historical",1936,"Simulated","C","global",13.75248 -"HadGEM2-ES","tas","temperature","tgav","historical",1937,"Simulated","C","global",13.7894 -"HadGEM2-ES","tas","temperature","tgav","historical",1938,"Simulated","C","global",13.84792 -"HadGEM2-ES","tas","temperature","tgav","historical",1939,"Simulated","C","global",13.84302 -"HadGEM2-ES","tas","temperature","tgav","historical",1940,"Simulated","C","global",13.75438 -"HadGEM2-ES","tas","temperature","tgav","historical",1941,"Simulated","C","global",13.7786 -"HadGEM2-ES","tas","temperature","tgav","historical",1942,"Simulated","C","global",13.82828 -"HadGEM2-ES","tas","temperature","tgav","historical",1943,"Simulated","C","global",13.82646 -"HadGEM2-ES","tas","temperature","tgav","historical",1944,"Simulated","C","global",13.86694 -"HadGEM2-ES","tas","temperature","tgav","historical",1945,"Simulated","C","global",13.87636 -"HadGEM2-ES","tas","temperature","tgav","historical",1946,"Simulated","C","global",13.84152 -"HadGEM2-ES","tas","temperature","tgav","historical",1947,"Simulated","C","global",13.86842 -"HadGEM2-ES","tas","temperature","tgav","historical",1948,"Simulated","C","global",13.90232 -"HadGEM2-ES","tas","temperature","tgav","historical",1949,"Simulated","C","global",13.88806 -"HadGEM2-ES","tas","temperature","tgav","historical",1950,"Simulated","C","global",13.85526 -"HadGEM2-ES","tas","temperature","tgav","historical",1951,"Simulated","C","global",13.79556 -"HadGEM2-ES","tas","temperature","tgav","historical",1952,"Simulated","C","global",13.77774 -"HadGEM2-ES","tas","temperature","tgav","historical",1953,"Simulated","C","global",13.79404 -"HadGEM2-ES","tas","temperature","tgav","historical",1954,"Simulated","C","global",13.72674 -"HadGEM2-ES","tas","temperature","tgav","historical",1955,"Simulated","C","global",13.69432 -"HadGEM2-ES","tas","temperature","tgav","historical",1956,"Simulated","C","global",13.77104 -"HadGEM2-ES","tas","temperature","tgav","historical",1957,"Simulated","C","global",13.75254 -"HadGEM2-ES","tas","temperature","tgav","historical",1958,"Simulated","C","global",13.69984 -"HadGEM2-ES","tas","temperature","tgav","historical",1959,"Simulated","C","global",13.68966 -"HadGEM2-ES","tas","temperature","tgav","historical",1960,"Simulated","C","global",13.63512 -"HadGEM2-ES","tas","temperature","tgav","historical",1961,"Simulated","C","global",13.65436 -"HadGEM2-ES","tas","temperature","tgav","historical",1962,"Simulated","C","global",13.65062 -"HadGEM2-ES","tas","temperature","tgav","historical",1963,"Simulated","C","global",13.62578 -"HadGEM2-ES","tas","temperature","tgav","historical",1964,"Simulated","C","global",13.51844 -"HadGEM2-ES","tas","temperature","tgav","historical",1965,"Simulated","C","global",13.44912 -"HadGEM2-ES","tas","temperature","tgav","historical",1966,"Simulated","C","global",13.43596 -"HadGEM2-ES","tas","temperature","tgav","historical",1967,"Simulated","C","global",13.51886 -"HadGEM2-ES","tas","temperature","tgav","historical",1968,"Simulated","C","global",13.6105 -"HadGEM2-ES","tas","temperature","tgav","historical",1969,"Simulated","C","global",13.5787 -"HadGEM2-ES","tas","temperature","tgav","historical",1970,"Simulated","C","global",13.57186 -"HadGEM2-ES","tas","temperature","tgav","historical",1971,"Simulated","C","global",13.60868 -"HadGEM2-ES","tas","temperature","tgav","historical",1972,"Simulated","C","global",13.66606 -"HadGEM2-ES","tas","temperature","tgav","historical",1973,"Simulated","C","global",13.6559 -"HadGEM2-ES","tas","temperature","tgav","historical",1974,"Simulated","C","global",13.67428 -"HadGEM2-ES","tas","temperature","tgav","historical",1975,"Simulated","C","global",13.59752 -"HadGEM2-ES","tas","temperature","tgav","historical",1976,"Simulated","C","global",13.59334 -"HadGEM2-ES","tas","temperature","tgav","historical",1977,"Simulated","C","global",13.69624 -"HadGEM2-ES","tas","temperature","tgav","historical",1978,"Simulated","C","global",13.68924 -"HadGEM2-ES","tas","temperature","tgav","historical",1979,"Simulated","C","global",13.73032 -"HadGEM2-ES","tas","temperature","tgav","historical",1980,"Simulated","C","global",13.7718 -"HadGEM2-ES","tas","temperature","tgav","historical",1981,"Simulated","C","global",13.78174 -"HadGEM2-ES","tas","temperature","tgav","historical",1982,"Simulated","C","global",13.73038 -"HadGEM2-ES","tas","temperature","tgav","historical",1983,"Simulated","C","global",13.61162 -"HadGEM2-ES","tas","temperature","tgav","historical",1984,"Simulated","C","global",13.68412 -"HadGEM2-ES","tas","temperature","tgav","historical",1985,"Simulated","C","global",13.77632 -"HadGEM2-ES","tas","temperature","tgav","historical",1986,"Simulated","C","global",13.802 -"HadGEM2-ES","tas","temperature","tgav","historical",1987,"Simulated","C","global",13.80084 -"HadGEM2-ES","tas","temperature","tgav","historical",1988,"Simulated","C","global",13.81826 -"HadGEM2-ES","tas","temperature","tgav","historical",1989,"Simulated","C","global",13.8773 -"HadGEM2-ES","tas","temperature","tgav","historical",1990,"Simulated","C","global",13.9454 -"HadGEM2-ES","tas","temperature","tgav","historical",1991,"Simulated","C","global",13.93498 -"HadGEM2-ES","tas","temperature","tgav","historical",1992,"Simulated","C","global",13.64398 -"HadGEM2-ES","tas","temperature","tgav","historical",1993,"Simulated","C","global",13.74106 -"HadGEM2-ES","tas","temperature","tgav","historical",1994,"Simulated","C","global",13.81244 -"HadGEM2-ES","tas","temperature","tgav","historical",1995,"Simulated","C","global",13.87322 -"HadGEM2-ES","tas","temperature","tgav","historical",1996,"Simulated","C","global",13.89576 -"HadGEM2-ES","tas","temperature","tgav","historical",1997,"Simulated","C","global",13.9687 -"HadGEM2-ES","tas","temperature","tgav","historical",1998,"Simulated","C","global",14.08744 -"HadGEM2-ES","tas","temperature","tgav","historical",1999,"Simulated","C","global",14.1076 -"HadGEM2-ES","tas","temperature","tgav","historical",2000,"Simulated","C","global",14.14774 -"HadGEM2-ES","tas","temperature","tgav","historical",2001,"Simulated","C","global",14.23674 -"HadGEM2-ES","tas","temperature","tgav","historical",2002,"Simulated","C","global",14.27502 -"HadGEM2-ES","tas","temperature","tgav","historical",2003,"Simulated","C","global",14.27748 -"HadGEM2-ES","tas","temperature","tgav","historical",2004,"Simulated","C","global",14.2782 -"HadGEM2-ES","tas","temperature","tgav","historical",2005,"Simulated","C","global",14.38928 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-12.28176 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-9.68447999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-9.67245999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-9.52857999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-9.75461999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-9.69017999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-9.87993999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-9.99883999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-9.96901999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-9.94831999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-9.86229999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-9.67685999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-9.74301999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-9.57921999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-9.56369999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-9.52801999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-9.59091999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-9.77741999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-9.63925999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-9.68897999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-9.57441999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-9.72039999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-9.67869999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-9.79749999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-9.63875999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-9.82417999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-10.02238 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-9.92967999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-9.93671999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-9.75883999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-9.89657999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-9.99727999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-9.92645999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-9.88063999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-10.1143 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-10.0069 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-9.90003999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-9.64843999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-9.72753999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-9.67941999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-9.51395999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-9.65747999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-9.59777999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-9.74463999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-9.86451999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-9.99003999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-9.69341999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-9.87953999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-9.67019999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-9.69597999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-9.78297999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-9.67953999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-9.79989999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-9.76628 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-9.83039999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-9.65079999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-9.66713999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-9.53151999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-9.36415999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-9.38721999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-9.38813999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-9.54959999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-9.51901999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-9.59319999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-9.57081999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-9.40649999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-9.56311999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-9.36145999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-9.42087999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-9.47493999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-9.48015999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-9.55987999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-9.54925999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-9.50855999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-9.51027999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-9.44331999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-9.29879999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-9.35127999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-9.22457999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-9.15529999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-9.19097999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-9.32349999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-9.44569999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-9.26091999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-9.20355999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-9.13081999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-9.07795999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-9.13733999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-9.06919999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-8.90787999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-8.99619999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-9.10239999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-9.28187999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-9.22963999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-9.16013999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-9.35809999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-9.60557999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-9.20537999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-9.29739999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-9.45721999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-9.47847999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-9.49487999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-9.41543999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-9.48015999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-9.55521999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-9.56021999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-9.63281999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-9.57471999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-9.52519999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-9.39675999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-9.40999999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-9.33695999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-9.50795999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-9.58571999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-9.54667999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-9.35761999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-9.42653999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-9.66267999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-9.47745999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-9.44895999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-9.35539999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-9.18849999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-9.17397999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-9.17163999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-9.54747999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-9.29661999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-9.15753999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-9.12129999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-9.13049999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-9.14567999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-8.98935999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-8.97793999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-8.94165999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-9.42225999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-9.21427999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-9.00639999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-8.93551999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-8.93097999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-8.87529999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-8.57251999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-8.72821999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-8.57387999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-8.48489999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-8.48577999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-8.49837999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-8.35037999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-8.25741999999998 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",17.16036 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",19.04078 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",19.037 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",19.0443 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",19.00164 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",19.00582 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",18.89778 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",18.88754 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",18.93826 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",18.93296 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",18.99802 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",18.97492 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",19.04088 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",19.07216 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",19.079 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",19.0527 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",18.99474 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",18.97882 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",18.99218 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",19.03846 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",18.95796 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",18.93858 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",18.9737 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",18.99842 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",18.92748 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",18.6738 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",18.73738 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",18.7745 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",18.7546 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",18.79588 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",18.78128 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",18.77618 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",18.72722 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",18.80618 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",18.80786 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",18.85034 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",18.93444 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",18.9853 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",18.9246 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",18.91658 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",18.99434 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",19.02482 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",19.04956 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",19.00324 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",18.82314 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",18.78972 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",18.9033 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",18.9518 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",18.96164 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",18.9393 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",18.88066 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",18.98506 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",18.95462 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",18.90346 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",18.94372 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",18.993 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",19.01832 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",19.09144 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",19.11818 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",19.06668 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",19.0879 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",19.07314 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",19.054 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",19.0825 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",19.05236 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",19.1254 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",19.13106 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",19.04622 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",18.98344 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",19.04166 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",19.07724 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",19.06 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",19.02746 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",19.05954 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",19.03784 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",19.04514 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",19.0682 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",19.0737 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",19.08992 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",19.14602 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",19.14816 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",19.06962 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",19.1276 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",19.14614 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",19.1307 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",19.16376 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",19.16316 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",19.13394 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",19.15138 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",19.1559 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",19.1587 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",19.14286 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",19.1107 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",19.07674 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",19.08078 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",19.0436 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",19.06066 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",19.0629 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",19.06136 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",19.03336 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",19.02566 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",18.96234 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",18.96774 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",18.97804 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",18.96476 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",18.83384 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",18.76534 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",18.73576 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",18.8263 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",18.90948 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",18.87342 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",18.84816 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",18.93286 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",19.02142 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",18.9999 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",18.97896 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",18.90042 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",18.94958 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",19.03352 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",19.01838 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",19.04734 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",19.05994 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",19.0689 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",19.00514 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",18.94562 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",18.97702 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",19.05836 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",19.08168 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",19.08232 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",19.1073 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",19.1439 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",19.22506 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",19.20392 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",18.95654 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",19.0281 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",19.06804 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",19.12654 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",19.1532 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",19.2301 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",19.30646 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",19.36712 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",19.38094 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",19.46996 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",19.51728 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",19.52316 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",19.49 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",19.60526 -"inmcm4","tas","temperature","tgav","historical",1850,"Simulated","C","global",13.1181 -"inmcm4","tas","temperature","tgav","historical",1851,"Simulated","C","global",13.1645 -"inmcm4","tas","temperature","tgav","historical",1852,"Simulated","C","global",13.0994 -"inmcm4","tas","temperature","tgav","historical",1853,"Simulated","C","global",13.1658 -"inmcm4","tas","temperature","tgav","historical",1854,"Simulated","C","global",13.1294 -"inmcm4","tas","temperature","tgav","historical",1855,"Simulated","C","global",13.099 -"inmcm4","tas","temperature","tgav","historical",1856,"Simulated","C","global",13.1612 -"inmcm4","tas","temperature","tgav","historical",1857,"Simulated","C","global",13.1164 -"inmcm4","tas","temperature","tgav","historical",1858,"Simulated","C","global",13.1099 -"inmcm4","tas","temperature","tgav","historical",1859,"Simulated","C","global",13.0700000000001 -"inmcm4","tas","temperature","tgav","historical",1860,"Simulated","C","global",13.064 -"inmcm4","tas","temperature","tgav","historical",1861,"Simulated","C","global",13.1145 -"inmcm4","tas","temperature","tgav","historical",1862,"Simulated","C","global",13.137 -"inmcm4","tas","temperature","tgav","historical",1863,"Simulated","C","global",13.1046 -"inmcm4","tas","temperature","tgav","historical",1864,"Simulated","C","global",13.2124 -"inmcm4","tas","temperature","tgav","historical",1865,"Simulated","C","global",13.2508 -"inmcm4","tas","temperature","tgav","historical",1866,"Simulated","C","global",13.1108 -"inmcm4","tas","temperature","tgav","historical",1867,"Simulated","C","global",13.2487 -"inmcm4","tas","temperature","tgav","historical",1868,"Simulated","C","global",13.3034 -"inmcm4","tas","temperature","tgav","historical",1869,"Simulated","C","global",13.2482 -"inmcm4","tas","temperature","tgav","historical",1870,"Simulated","C","global",13.2396 -"inmcm4","tas","temperature","tgav","historical",1871,"Simulated","C","global",13.1165 -"inmcm4","tas","temperature","tgav","historical",1872,"Simulated","C","global",13.2336 -"inmcm4","tas","temperature","tgav","historical",1873,"Simulated","C","global",13.2485 -"inmcm4","tas","temperature","tgav","historical",1874,"Simulated","C","global",13.2125 -"inmcm4","tas","temperature","tgav","historical",1875,"Simulated","C","global",13.2115 -"inmcm4","tas","temperature","tgav","historical",1876,"Simulated","C","global",13.335 -"inmcm4","tas","temperature","tgav","historical",1877,"Simulated","C","global",13.1847 -"inmcm4","tas","temperature","tgav","historical",1878,"Simulated","C","global",13.1039 -"inmcm4","tas","temperature","tgav","historical",1879,"Simulated","C","global",13.1629 -"inmcm4","tas","temperature","tgav","historical",1880,"Simulated","C","global",13.2311 -"inmcm4","tas","temperature","tgav","historical",1881,"Simulated","C","global",13.2311 -"inmcm4","tas","temperature","tgav","historical",1882,"Simulated","C","global",13.1226 -"inmcm4","tas","temperature","tgav","historical",1883,"Simulated","C","global",13.1468 -"inmcm4","tas","temperature","tgav","historical",1884,"Simulated","C","global",13.2834 -"inmcm4","tas","temperature","tgav","historical",1885,"Simulated","C","global",13.1958 -"inmcm4","tas","temperature","tgav","historical",1886,"Simulated","C","global",13.2239 -"inmcm4","tas","temperature","tgav","historical",1887,"Simulated","C","global",13.2324 -"inmcm4","tas","temperature","tgav","historical",1888,"Simulated","C","global",13.1178 -"inmcm4","tas","temperature","tgav","historical",1889,"Simulated","C","global",13.042 -"inmcm4","tas","temperature","tgav","historical",1890,"Simulated","C","global",13.2259 -"inmcm4","tas","temperature","tgav","historical",1891,"Simulated","C","global",13.1481 -"inmcm4","tas","temperature","tgav","historical",1892,"Simulated","C","global",13.041 -"inmcm4","tas","temperature","tgav","historical",1893,"Simulated","C","global",13.3058 -"inmcm4","tas","temperature","tgav","historical",1894,"Simulated","C","global",13.3212 -"inmcm4","tas","temperature","tgav","historical",1895,"Simulated","C","global",13.2117 -"inmcm4","tas","temperature","tgav","historical",1896,"Simulated","C","global",13.1212 -"inmcm4","tas","temperature","tgav","historical",1897,"Simulated","C","global",13.1444 -"inmcm4","tas","temperature","tgav","historical",1898,"Simulated","C","global",13.1845 -"inmcm4","tas","temperature","tgav","historical",1899,"Simulated","C","global",13.2627 -"inmcm4","tas","temperature","tgav","historical",1900,"Simulated","C","global",13.1699 -"inmcm4","tas","temperature","tgav","historical",1901,"Simulated","C","global",13.0765 -"inmcm4","tas","temperature","tgav","historical",1902,"Simulated","C","global",13.0398 -"inmcm4","tas","temperature","tgav","historical",1903,"Simulated","C","global",13.1088 -"inmcm4","tas","temperature","tgav","historical",1904,"Simulated","C","global",13.1945 -"inmcm4","tas","temperature","tgav","historical",1905,"Simulated","C","global",13.2124 -"inmcm4","tas","temperature","tgav","historical",1906,"Simulated","C","global",13.151 -"inmcm4","tas","temperature","tgav","historical",1907,"Simulated","C","global",13.1544 -"inmcm4","tas","temperature","tgav","historical",1908,"Simulated","C","global",13.2176 -"inmcm4","tas","temperature","tgav","historical",1909,"Simulated","C","global",13.1973 -"inmcm4","tas","temperature","tgav","historical",1910,"Simulated","C","global",13.078 -"inmcm4","tas","temperature","tgav","historical",1911,"Simulated","C","global",13.1064 -"inmcm4","tas","temperature","tgav","historical",1912,"Simulated","C","global",13.114 -"inmcm4","tas","temperature","tgav","historical",1913,"Simulated","C","global",13.2299 -"inmcm4","tas","temperature","tgav","historical",1914,"Simulated","C","global",13.146 -"inmcm4","tas","temperature","tgav","historical",1915,"Simulated","C","global",13.1217 -"inmcm4","tas","temperature","tgav","historical",1916,"Simulated","C","global",13.1452 -"inmcm4","tas","temperature","tgav","historical",1917,"Simulated","C","global",13.2372 -"inmcm4","tas","temperature","tgav","historical",1918,"Simulated","C","global",13.2058 -"inmcm4","tas","temperature","tgav","historical",1919,"Simulated","C","global",13.2797 -"inmcm4","tas","temperature","tgav","historical",1920,"Simulated","C","global",13.2156 -"inmcm4","tas","temperature","tgav","historical",1921,"Simulated","C","global",13.1392 -"inmcm4","tas","temperature","tgav","historical",1922,"Simulated","C","global",13.2456 -"inmcm4","tas","temperature","tgav","historical",1923,"Simulated","C","global",13.2085 -"inmcm4","tas","temperature","tgav","historical",1924,"Simulated","C","global",13.2317 -"inmcm4","tas","temperature","tgav","historical",1925,"Simulated","C","global",13.4217 -"inmcm4","tas","temperature","tgav","historical",1926,"Simulated","C","global",13.3602 -"inmcm4","tas","temperature","tgav","historical",1927,"Simulated","C","global",13.3152 -"inmcm4","tas","temperature","tgav","historical",1928,"Simulated","C","global",13.382 -"inmcm4","tas","temperature","tgav","historical",1929,"Simulated","C","global",13.3496 -"inmcm4","tas","temperature","tgav","historical",1930,"Simulated","C","global",13.2821 -"inmcm4","tas","temperature","tgav","historical",1931,"Simulated","C","global",13.3244 -"inmcm4","tas","temperature","tgav","historical",1932,"Simulated","C","global",13.3331 -"inmcm4","tas","temperature","tgav","historical",1933,"Simulated","C","global",13.3012 -"inmcm4","tas","temperature","tgav","historical",1934,"Simulated","C","global",13.2689 -"inmcm4","tas","temperature","tgav","historical",1935,"Simulated","C","global",13.4093 -"inmcm4","tas","temperature","tgav","historical",1936,"Simulated","C","global",13.4007 -"inmcm4","tas","temperature","tgav","historical",1937,"Simulated","C","global",13.3593 -"inmcm4","tas","temperature","tgav","historical",1938,"Simulated","C","global",13.4591 -"inmcm4","tas","temperature","tgav","historical",1939,"Simulated","C","global",13.5012 -"inmcm4","tas","temperature","tgav","historical",1940,"Simulated","C","global",13.3627 -"inmcm4","tas","temperature","tgav","historical",1941,"Simulated","C","global",13.4039 -"inmcm4","tas","temperature","tgav","historical",1942,"Simulated","C","global",13.4448 -"inmcm4","tas","temperature","tgav","historical",1943,"Simulated","C","global",13.4418 -"inmcm4","tas","temperature","tgav","historical",1944,"Simulated","C","global",13.4657 -"inmcm4","tas","temperature","tgav","historical",1945,"Simulated","C","global",13.4918 -"inmcm4","tas","temperature","tgav","historical",1946,"Simulated","C","global",13.3235 -"inmcm4","tas","temperature","tgav","historical",1947,"Simulated","C","global",13.3667 -"inmcm4","tas","temperature","tgav","historical",1948,"Simulated","C","global",13.3538 -"inmcm4","tas","temperature","tgav","historical",1949,"Simulated","C","global",13.4639 -"inmcm4","tas","temperature","tgav","historical",1950,"Simulated","C","global",13.437 -"inmcm4","tas","temperature","tgav","historical",1951,"Simulated","C","global",13.4168 -"inmcm4","tas","temperature","tgav","historical",1952,"Simulated","C","global",13.4159 -"inmcm4","tas","temperature","tgav","historical",1953,"Simulated","C","global",13.3423 -"inmcm4","tas","temperature","tgav","historical",1954,"Simulated","C","global",13.4032 -"inmcm4","tas","temperature","tgav","historical",1955,"Simulated","C","global",13.3295 -"inmcm4","tas","temperature","tgav","historical",1956,"Simulated","C","global",13.3703 -"inmcm4","tas","temperature","tgav","historical",1957,"Simulated","C","global",13.4236 -"inmcm4","tas","temperature","tgav","historical",1958,"Simulated","C","global",13.4902 -"inmcm4","tas","temperature","tgav","historical",1959,"Simulated","C","global",13.4483 -"inmcm4","tas","temperature","tgav","historical",1960,"Simulated","C","global",13.5773 -"inmcm4","tas","temperature","tgav","historical",1961,"Simulated","C","global",13.5424 -"inmcm4","tas","temperature","tgav","historical",1962,"Simulated","C","global",13.4815 -"inmcm4","tas","temperature","tgav","historical",1963,"Simulated","C","global",13.3367 -"inmcm4","tas","temperature","tgav","historical",1964,"Simulated","C","global",13.47 -"inmcm4","tas","temperature","tgav","historical",1965,"Simulated","C","global",13.5254 -"inmcm4","tas","temperature","tgav","historical",1966,"Simulated","C","global",13.5678 -"inmcm4","tas","temperature","tgav","historical",1967,"Simulated","C","global",13.5498 -"inmcm4","tas","temperature","tgav","historical",1968,"Simulated","C","global",13.4714 -"inmcm4","tas","temperature","tgav","historical",1969,"Simulated","C","global",13.5523 -"inmcm4","tas","temperature","tgav","historical",1970,"Simulated","C","global",13.5689 -"inmcm4","tas","temperature","tgav","historical",1971,"Simulated","C","global",13.4626 -"inmcm4","tas","temperature","tgav","historical",1972,"Simulated","C","global",13.5799 -"inmcm4","tas","temperature","tgav","historical",1973,"Simulated","C","global",13.6748 -"inmcm4","tas","temperature","tgav","historical",1974,"Simulated","C","global",13.5773 -"inmcm4","tas","temperature","tgav","historical",1975,"Simulated","C","global",13.5451 -"inmcm4","tas","temperature","tgav","historical",1976,"Simulated","C","global",13.4172 -"inmcm4","tas","temperature","tgav","historical",1977,"Simulated","C","global",13.5337 -"inmcm4","tas","temperature","tgav","historical",1978,"Simulated","C","global",13.5629 -"inmcm4","tas","temperature","tgav","historical",1979,"Simulated","C","global",13.6594 -"inmcm4","tas","temperature","tgav","historical",1980,"Simulated","C","global",13.6714 -"inmcm4","tas","temperature","tgav","historical",1981,"Simulated","C","global",13.6727 -"inmcm4","tas","temperature","tgav","historical",1982,"Simulated","C","global",13.6027 -"inmcm4","tas","temperature","tgav","historical",1983,"Simulated","C","global",13.7463 -"inmcm4","tas","temperature","tgav","historical",1984,"Simulated","C","global",13.6866 -"inmcm4","tas","temperature","tgav","historical",1985,"Simulated","C","global",13.7108 -"inmcm4","tas","temperature","tgav","historical",1986,"Simulated","C","global",13.7462 -"inmcm4","tas","temperature","tgav","historical",1987,"Simulated","C","global",13.722 -"inmcm4","tas","temperature","tgav","historical",1988,"Simulated","C","global",13.6661 -"inmcm4","tas","temperature","tgav","historical",1989,"Simulated","C","global",13.6884 -"inmcm4","tas","temperature","tgav","historical",1990,"Simulated","C","global",13.6846 -"inmcm4","tas","temperature","tgav","historical",1991,"Simulated","C","global",13.6683 -"inmcm4","tas","temperature","tgav","historical",1992,"Simulated","C","global",13.6909 -"inmcm4","tas","temperature","tgav","historical",1993,"Simulated","C","global",13.6661 -"inmcm4","tas","temperature","tgav","historical",1994,"Simulated","C","global",13.7904 -"inmcm4","tas","temperature","tgav","historical",1995,"Simulated","C","global",13.7649 -"inmcm4","tas","temperature","tgav","historical",1996,"Simulated","C","global",13.8164 -"inmcm4","tas","temperature","tgav","historical",1997,"Simulated","C","global",13.7519 -"inmcm4","tas","temperature","tgav","historical",1998,"Simulated","C","global",13.7616 -"inmcm4","tas","temperature","tgav","historical",1999,"Simulated","C","global",13.8051 -"inmcm4","tas","temperature","tgav","historical",2000,"Simulated","C","global",13.8316 -"inmcm4","tas","temperature","tgav","historical",2001,"Simulated","C","global",13.9159 -"inmcm4","tas","temperature","tgav","historical",2002,"Simulated","C","global",13.8444 -"inmcm4","tas","temperature","tgav","historical",2003,"Simulated","C","global",13.7914 -"inmcm4","tas","temperature","tgav","historical",2004,"Simulated","C","global",13.9658 -"inmcm4","tas","temperature","tgav","historical",2005,"Simulated","C","global",13.8623 -"inmcm4","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-8.97809999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-8.61629999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-8.84609999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-8.70339999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-8.88469999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-9.03949999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-8.81950000000001 -"inmcm4","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-8.8734 -"inmcm4","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-9.01419999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-9.15779999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-8.77849999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-9.26219999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-8.90089999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-9.27199999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-8.80689999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-8.78729999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-8.87899999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-8.86609999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-8.6078 -"inmcm4","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-8.79319999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-8.89439999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-8.99459999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-8.92039999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-8.68089999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-8.714 -"inmcm4","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-8.85939999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-8.52439999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-8.82919999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-8.71139999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-8.88329999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-9.00559999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-8.91579999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-8.95299999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-9.05499999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-8.77519999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-9.02269999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-8.9819 -"inmcm4","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-8.75369999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-8.84199999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-9.25879999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-8.52409999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-8.75169999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-8.94259999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-8.66139999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-8.47389999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-8.79019999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-8.80959999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-8.95769999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-8.86559999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-8.42419999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-8.52599999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-8.65199999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-9.14319999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-8.85979999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-8.71389999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-9.00959999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-9.1678 -"inmcm4","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-9.18029999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-9.06719999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-9.19459999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-9.29449999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-9.35319999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-9.48429999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-9.0437 -"inmcm4","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-8.98539999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-9.04289999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-9.18539999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-9.05429999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-8.93099999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-8.64939999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-8.88409999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-8.95349999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-8.6087 -"inmcm4","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-8.85429999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-9.07769999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-8.8811 -"inmcm4","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-8.5745 -"inmcm4","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-8.7276 -"inmcm4","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-8.61289999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-8.62689999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-8.97929999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-8.63939999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-8.49189999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-8.6832 -"inmcm4","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-8.60049999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-8.8383 -"inmcm4","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-8.88589999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-8.82429999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-8.65189999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-8.56979999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-8.8331 -"inmcm4","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-8.91229999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-8.72209999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-8.5093 -"inmcm4","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-8.61409999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-8.63339999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-8.78319999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-8.9171 -"inmcm4","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-8.76219999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-8.70499999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-8.649 -"inmcm4","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-8.67539999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-8.52229999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-8.68709999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-8.64619999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-8.62629999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-8.5145 -"inmcm4","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-8.53919999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-8.70579999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-8.35679999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-8.15609999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-8.37 -"inmcm4","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-8.44329999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-8.55279999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-8.32159999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-8.51009999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-8.37799999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-8.47919999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-8.62379999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-8.40099999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-8.37529999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-8.69969999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-8.33459999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-8.31269999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-8.48999999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-8.45949999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-8.80410000000001 -"inmcm4","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-8.41309999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-8.55739999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-8.1875 -"inmcm4","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-8.41469999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-8.44759999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-8.49859999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-8.06659999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-8.39329999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-8.3254 -"inmcm4","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-8.4341 -"inmcm4","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-8.49919999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-8.53039999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-8.46039999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-8.00029999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-8.08789999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-8.20709999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-8.18389999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-7.80439999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-8.32749999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-8.1268 -"inmcm4","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-8.1302 -"inmcm4","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-7.93649999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-7.81909999999999 -"inmcm4","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-8.19509999999997 -"inmcm4","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-8.13509999999997 -"inmcm4","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-8.19149999999996 -"inmcm4","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-8.41369999999995 -"inmcm4","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-8.00349999999997 -"inmcm4","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-8.15459999999996 -"inmcm4","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",17.8336 -"inmcm4","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",17.8127 -"inmcm4","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",17.7827 -"inmcm4","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",17.8329 -"inmcm4","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",17.8273 -"inmcm4","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",17.8234 -"inmcm4","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",17.852 -"inmcm4","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",17.8091 -"inmcm4","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",17.8314 -"inmcm4","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",17.8135 -"inmcm4","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",17.7254 -"inmcm4","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",17.8899 -"inmcm4","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",17.84 -"inmcm4","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",17.8799 -"inmcm4","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",17.9115 -"inmcm4","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",17.9539 -"inmcm4","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",17.8036 -"inmcm4","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",17.9681 -"inmcm4","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",17.9794 -"inmcm4","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",17.952 -"inmcm4","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",17.9632 -"inmcm4","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",17.8352 -"inmcm4","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",17.9614 -"inmcm4","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",17.9284 -"inmcm4","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",17.8917 -"inmcm4","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",17.9216 -"inmcm4","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",18 -"inmcm4","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",17.8826 -"inmcm4","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",17.7594 -"inmcm4","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",17.8677 -"inmcm4","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",17.9766 -"inmcm4","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",17.9574 -"inmcm4","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",17.8337 -"inmcm4","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",17.8848 -"inmcm4","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",17.9909 -"inmcm4","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",17.9374 -"inmcm4","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",17.9627 -"inmcm4","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",17.9244 -"inmcm4","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",17.8041 -"inmcm4","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",17.8011 -"inmcm4","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",17.8676 -"inmcm4","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",17.8217 -"inmcm4","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",17.7325 -"inmcm4","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",17.9937 -"inmcm4","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",17.9724000000001 -"inmcm4","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",17.907 -"inmcm4","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",17.8014 -"inmcm4","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",17.8612 -"inmcm4","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",17.8902 -"inmcm4","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",17.8908 -"inmcm4","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",17.8 -"inmcm4","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",17.7135 -"inmcm4","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",17.7739 -"inmcm4","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",17.797 -"inmcm4","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",17.8699 -"inmcm4","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",17.9548 -"inmcm4","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",17.914 -"inmcm4","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",17.9207 -"inmcm4","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",17.9733 -"inmcm4","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",17.9759 -"inmcm4","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",17.8524 -"inmcm4","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",17.8994 -"inmcm4","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",17.9366 -"inmcm4","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",17.9832 -"inmcm4","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",17.869 -"inmcm4","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",17.8518 -"inmcm4","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",17.9107 -"inmcm4","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",17.9943 -"inmcm4","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",17.9299 -"inmcm4","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",17.9595 -"inmcm4","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",17.9318 -"inmcm4","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",17.854 -"inmcm4","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",17.9095 -"inmcm4","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",17.9169 -"inmcm4","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",17.9926 -"inmcm4","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",18.1812 -"inmcm4","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",18.0412 -"inmcm4","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",18.0192 -"inmcm4","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",18.0758 -"inmcm4","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",18.0395 -"inmcm4","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",18.0328 -"inmcm4","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",18.0116 -"inmcm4","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",17.9907 -"inmcm4","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",17.9929 -"inmcm4","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",17.936 -"inmcm4","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",18.1571 -"inmcm4","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",18.1568 -"inmcm4","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",18.0935 -"inmcm4","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",18.1777 -"inmcm4","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",18.2113000000001 -"inmcm4","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",18.0994 -"inmcm4","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",18.1664 -"inmcm4","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",18.1754 -"inmcm4","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",18.1264 -"inmcm4","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",18.1777 -"inmcm4","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",18.2134 -"inmcm4","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",18.0412 -"inmcm4","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",18.1222 -"inmcm4","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",18.0734 -"inmcm4","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",18.1950000000001 -"inmcm4","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",18.1504 -"inmcm4","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",18.1314 -"inmcm4","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",18.0977 -"inmcm4","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",18.0436 -"inmcm4","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",18.1087 -"inmcm4","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",18.0151 -"inmcm4","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",18.0407 -"inmcm4","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",18.1106 -"inmcm4","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",18.227 -"inmcm4","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",18.1016 -"inmcm4","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",18.2154 -"inmcm4","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",18.2187 -"inmcm4","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",18.1604 -"inmcm4","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",18.0081 -"inmcm4","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",18.1205 -"inmcm4","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",18.2279 -"inmcm4","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",18.2512 -"inmcm4","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",18.251 -"inmcm4","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",18.1867 -"inmcm4","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",18.2373 -"inmcm4","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",18.2519 -"inmcm4","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",18.1922 -"inmcm4","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",18.2567 -"inmcm4","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",18.3671000000001 -"inmcm4","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",18.2867 -"inmcm4","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",18.2411 -"inmcm4","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",18.1594 -"inmcm4","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",18.2174 -"inmcm4","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",18.2835 -"inmcm4","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",18.3217 -"inmcm4","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",18.3847 -"inmcm4","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",18.3933 -"inmcm4","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",18.3193 -"inmcm4","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",18.4013 -"inmcm4","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",18.3986 -"inmcm4","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",18.4135 -"inmcm4","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",18.4796 -"inmcm4","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",18.4642 -"inmcm4","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",18.403 -"inmcm4","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",18.4151 -"inmcm4","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",18.3122 -"inmcm4","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",18.3112 -"inmcm4","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",18.3641 -"inmcm4","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",18.3291 -"inmcm4","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",18.3989 -"inmcm4","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",18.4796 -"inmcm4","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",18.4993 -"inmcm4","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",18.4217 -"inmcm4","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",18.3921 -"inmcm4","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",18.4199 -"inmcm4","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",18.5323 -"inmcm4","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",18.6217 -"inmcm4","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",18.547 -"inmcm4","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",18.5302 -"inmcm4","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",18.6542 -"inmcm4","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",18.5609 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1850,"Simulated","C","global",12.0557833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1851,"Simulated","C","global",12.09455 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1852,"Simulated","C","global",12.1044 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1853,"Simulated","C","global",12.0591833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1854,"Simulated","C","global",12.0529166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1855,"Simulated","C","global",12.0348666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1856,"Simulated","C","global",11.9436833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1857,"Simulated","C","global",11.9083666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1858,"Simulated","C","global",11.9465333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1859,"Simulated","C","global",11.9787666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1860,"Simulated","C","global",12.0244666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1861,"Simulated","C","global",12.0289666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1862,"Simulated","C","global",12.0785333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1863,"Simulated","C","global",12.1048333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1864,"Simulated","C","global",12.1255333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1865,"Simulated","C","global",12.16685 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1866,"Simulated","C","global",12.1480166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1867,"Simulated","C","global",12.1272833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1868,"Simulated","C","global",12.1461 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1869,"Simulated","C","global",12.1813 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1870,"Simulated","C","global",12.2050333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1871,"Simulated","C","global",12.22015 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1872,"Simulated","C","global",12.1813333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1873,"Simulated","C","global",12.19755 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1874,"Simulated","C","global",12.24735 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1875,"Simulated","C","global",12.288 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1876,"Simulated","C","global",12.2570666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1877,"Simulated","C","global",12.1816333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1878,"Simulated","C","global",12.2578 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1879,"Simulated","C","global",12.2167666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1880,"Simulated","C","global",12.1797333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1881,"Simulated","C","global",12.34845 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1882,"Simulated","C","global",12.3667166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1883,"Simulated","C","global",12.17275 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1884,"Simulated","C","global",11.8702333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1885,"Simulated","C","global",11.8177666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1886,"Simulated","C","global",11.8730166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1887,"Simulated","C","global",11.9504 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1888,"Simulated","C","global",11.9902833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1889,"Simulated","C","global",11.9722833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1890,"Simulated","C","global",11.9328333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1891,"Simulated","C","global",11.9688833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1892,"Simulated","C","global",12.0377333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1893,"Simulated","C","global",12.06985 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1894,"Simulated","C","global",12.1023833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1895,"Simulated","C","global",12.1077166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1896,"Simulated","C","global",12.1394666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1897,"Simulated","C","global",12.1404833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1898,"Simulated","C","global",12.1748666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1899,"Simulated","C","global",12.1337333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1900,"Simulated","C","global",12.1378 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1901,"Simulated","C","global",12.1815 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1902,"Simulated","C","global",12.1417 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1903,"Simulated","C","global",12.0288333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1904,"Simulated","C","global",12.13995 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1905,"Simulated","C","global",12.2022166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1906,"Simulated","C","global",12.2035833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1907,"Simulated","C","global",12.2182833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1908,"Simulated","C","global",12.2443833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1909,"Simulated","C","global",12.2785166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1910,"Simulated","C","global",12.2060833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1911,"Simulated","C","global",12.2317833333334 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1912,"Simulated","C","global",12.1875666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1913,"Simulated","C","global",12.16965 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1914,"Simulated","C","global",12.2366833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1915,"Simulated","C","global",12.25905 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1916,"Simulated","C","global",12.2266666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1917,"Simulated","C","global",12.2511666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1918,"Simulated","C","global",12.2937166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1919,"Simulated","C","global",12.21955 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1920,"Simulated","C","global",12.22585 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1921,"Simulated","C","global",12.3270666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1922,"Simulated","C","global",12.3214333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1923,"Simulated","C","global",12.3100666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1924,"Simulated","C","global",12.2842833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1925,"Simulated","C","global",12.30145 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1926,"Simulated","C","global",12.39125 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1927,"Simulated","C","global",12.38425 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1928,"Simulated","C","global",12.3279666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1929,"Simulated","C","global",12.3906333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1930,"Simulated","C","global",12.3655666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1931,"Simulated","C","global",12.3577666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1932,"Simulated","C","global",12.3945 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1933,"Simulated","C","global",12.3648333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1934,"Simulated","C","global",12.3182666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1935,"Simulated","C","global",12.2618666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1936,"Simulated","C","global",12.4590833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1937,"Simulated","C","global",12.5354 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1938,"Simulated","C","global",12.4782666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1939,"Simulated","C","global",12.4331666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1940,"Simulated","C","global",12.4332666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1941,"Simulated","C","global",12.5326333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1942,"Simulated","C","global",12.47725 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1943,"Simulated","C","global",12.4953833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1944,"Simulated","C","global",12.5154166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1945,"Simulated","C","global",12.5140333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1946,"Simulated","C","global",12.5491 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1947,"Simulated","C","global",12.5572833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1948,"Simulated","C","global",12.5276666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1949,"Simulated","C","global",12.5567166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1950,"Simulated","C","global",12.55125 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1951,"Simulated","C","global",12.5465 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1952,"Simulated","C","global",12.5119166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1953,"Simulated","C","global",12.52255 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1954,"Simulated","C","global",12.5364333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1955,"Simulated","C","global",12.5073 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1956,"Simulated","C","global",12.5338666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1957,"Simulated","C","global",12.5703 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1958,"Simulated","C","global",12.48355 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1959,"Simulated","C","global",12.4897666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1960,"Simulated","C","global",12.615 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1961,"Simulated","C","global",12.5578833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1962,"Simulated","C","global",12.4665 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1963,"Simulated","C","global",12.3781 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1964,"Simulated","C","global",12.27055 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1965,"Simulated","C","global",12.3087166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1966,"Simulated","C","global",12.3597166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1967,"Simulated","C","global",12.4683666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1968,"Simulated","C","global",12.4098166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1969,"Simulated","C","global",12.3536 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1970,"Simulated","C","global",12.5032666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1971,"Simulated","C","global",12.5169833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1972,"Simulated","C","global",12.5202166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1973,"Simulated","C","global",12.5633166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1974,"Simulated","C","global",12.5779833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1975,"Simulated","C","global",12.5841333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1976,"Simulated","C","global",12.6470833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1977,"Simulated","C","global",12.6165333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1978,"Simulated","C","global",12.64025 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1979,"Simulated","C","global",12.7699166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1980,"Simulated","C","global",12.73705 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1981,"Simulated","C","global",12.8277666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1982,"Simulated","C","global",12.8044166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1983,"Simulated","C","global",12.7171833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1984,"Simulated","C","global",12.8046833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1985,"Simulated","C","global",12.76675 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1986,"Simulated","C","global",12.78695 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1987,"Simulated","C","global",12.93335 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1988,"Simulated","C","global",12.9746 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1989,"Simulated","C","global",12.9834166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1990,"Simulated","C","global",13.06535 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1991,"Simulated","C","global",12.9797833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1992,"Simulated","C","global",12.8190833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1993,"Simulated","C","global",12.9038333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1994,"Simulated","C","global",12.9378666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1995,"Simulated","C","global",12.9809 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1996,"Simulated","C","global",13.0776 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1997,"Simulated","C","global",13.1573 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1998,"Simulated","C","global",13.223 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1999,"Simulated","C","global",13.2592666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2000,"Simulated","C","global",13.28335 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2001,"Simulated","C","global",13.3628 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2002,"Simulated","C","global",13.44645 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2003,"Simulated","C","global",13.42685 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2004,"Simulated","C","global",13.4152666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2005,"Simulated","C","global",13.4988 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-10.42765 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-10.3484666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-10.3960666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-10.4625166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-10.4732 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-10.4849833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-10.6484 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-10.4334166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-10.4646833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-10.4428833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-10.22025 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-10.4431 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-10.3272166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-10.1264833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-10.1350166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-10.0750833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-10.1903833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-10.1832666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-10.2312333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-10.2555666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-10.24865 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-10.1629333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-10.22765 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-10.2258666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-10.1144833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-10.1323 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-10.0900833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-10.2253166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-10.0407833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-10.1173 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-10.2161166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-9.91911666666664 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-9.94121666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-10.0870333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-10.32145 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-10.5297666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-10.5117333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-10.4537833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-10.4082166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-10.4535666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-10.5540166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-10.5479 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-10.42215 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-10.3799 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-10.3772166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-10.38725 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-10.3719833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-10.3536833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-10.1944833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-10.3535166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-10.4068833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-10.2853166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-10.3535 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-10.4045 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-10.20805 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-10.1327166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-10.21745 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-10.2136 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-10.1745666666666 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-10.0406333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-10.2252333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-10.2131 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-10.32335 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-10.29785 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-10.1885333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-10.1816 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-10.4069 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-10.2667166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-10.0611333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-10.3244166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-10.2036166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-10.0167 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-10.1487166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-10.1876333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-10.2697166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-10.3743833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-10.0722 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-10.036 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-10.2072166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-10.0502666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-10.0827166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-10.10955 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-10.0776666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-10.0610666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-10.1174666666666 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-10.2257666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-10.0119 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-9.93484999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-10.0280666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-10.0345666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-9.97216666666666 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-9.77301666666664 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-9.88381666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-9.75403333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-9.88491666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-9.87314999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-9.83988333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-9.7275333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-10.03425 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-9.95351666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-9.87699999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-9.70611666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-10.01595 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-9.90738333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-10.0124 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-10.0524 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-9.84709999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-9.86838333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-9.98878333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-10.0202166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-9.77166666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-9.91953333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-9.95096666666666 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-10.0835166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-10.1062666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-10.0436333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-10.1152666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-9.96153333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-10.0750333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-10.0757 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-9.8105333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-9.81209999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-9.90123333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-9.84596666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-9.80179999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-9.73266666666664 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-9.65138333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-9.84349999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-9.79536666666663 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-9.61838333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-9.71528333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-9.56436666666662 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-9.58444999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-9.61668333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-9.59626666666663 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-9.37434999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-9.46084999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-9.26704999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-9.27228333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-9.36264999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-9.20504999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-9.36528333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-9.38813333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-9.34789999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-9.31519999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-9.43306666666664 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-9.26628333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-9.15291666666666 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-9.07369999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-9.00458333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-9.03923333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-8.84701666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-8.78029999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-8.73196666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-8.83701666666663 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-8.72279999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",17.0410333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",17.07075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",17.0934 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",17.0528833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",17.0475666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",17.0282 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",16.95295 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",16.86215 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",16.9157666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",16.9503166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",16.95685 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",17.0116833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",17.04655 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",17.0342 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",17.06135 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",17.0985666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",17.1011333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",17.0742333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",17.1078333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",17.1562 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",17.18365 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",17.1831166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",17.1500833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",17.1694666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",17.2056 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",17.2592333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",17.2120666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",17.1499333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",17.2020166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",17.16895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",17.1455833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",17.28585 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",17.3130666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",17.1084666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",16.79085 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",16.7728833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",16.83635 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",16.9180666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",16.9567 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",16.94475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",16.9188666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",16.9614666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",17.0177666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",17.0476 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",17.0868 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",17.0955 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",17.13085 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",17.1280833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",17.13475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",17.1197833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",17.1366 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",17.1630166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",17.1296 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",17.0029 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",17.0951166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",17.1544666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",17.1749666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",17.1920666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",17.2152666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",17.2272666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",17.17975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",17.2083666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",17.1789333333334 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",17.1513333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",17.20905 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",17.2348333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",17.2451166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",17.2440166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",17.2504166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",17.2181666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",17.1990833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",17.2813166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",17.3036333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",17.2984166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",17.2850833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",17.3292833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",17.3720166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",17.3554 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",17.3246166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",17.3664166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",17.34295 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",17.3393666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",17.3772166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",17.3372333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",17.2929166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",17.2479833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",17.4416 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",17.5176333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",17.4685833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",17.4149166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",17.4012 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",17.4784166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",17.43535 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",17.4287833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",17.48215 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",17.4779 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",17.5133666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",17.4984166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",17.5302166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",17.5478666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",17.5241833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",17.4805666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",17.5069166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",17.4958166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",17.5360166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",17.5094 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",17.4963666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",17.5455166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",17.46625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",17.4809 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",17.57875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",17.5417833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",17.4371 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",17.35845 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",17.23215 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",17.2648833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",17.343 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",17.4417166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",17.3953666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",17.3268166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",17.4508333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",17.4680166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",17.4916833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",17.53205 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",17.5401833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",17.5323333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",17.5912333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",17.5965 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",17.6148666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",17.73405 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",17.7153 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",17.7927333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",17.7686166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",17.6692333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",17.77155 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",17.6761333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",17.72 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",17.8558333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",17.9074 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",17.93815 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",18.0033666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",17.9343166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",17.7430166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",17.8377333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",17.8720833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",17.9507 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",18.0319 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",18.1040666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",18.1668166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",18.19575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",18.2329333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",18.28735 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",18.3747666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",18.3401333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",18.34925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",18.42595 -"NorESM1-ME","tas","temperature","tgav","historical",1850,"Simulated","C","global",12.8161 -"NorESM1-ME","tas","temperature","tgav","historical",1851,"Simulated","C","global",12.9058 -"NorESM1-ME","tas","temperature","tgav","historical",1852,"Simulated","C","global",12.71785 -"NorESM1-ME","tas","temperature","tgav","historical",1853,"Simulated","C","global",12.72055 -"NorESM1-ME","tas","temperature","tgav","historical",1854,"Simulated","C","global",12.6615 -"NorESM1-ME","tas","temperature","tgav","historical",1855,"Simulated","C","global",12.7136 -"NorESM1-ME","tas","temperature","tgav","historical",1856,"Simulated","C","global",12.722 -"NorESM1-ME","tas","temperature","tgav","historical",1857,"Simulated","C","global",12.7128 -"NorESM1-ME","tas","temperature","tgav","historical",1858,"Simulated","C","global",12.74185 -"NorESM1-ME","tas","temperature","tgav","historical",1859,"Simulated","C","global",12.8058 -"NorESM1-ME","tas","temperature","tgav","historical",1860,"Simulated","C","global",12.73505 -"NorESM1-ME","tas","temperature","tgav","historical",1861,"Simulated","C","global",12.6676 -"NorESM1-ME","tas","temperature","tgav","historical",1862,"Simulated","C","global",12.7264 -"NorESM1-ME","tas","temperature","tgav","historical",1863,"Simulated","C","global",12.7302 -"NorESM1-ME","tas","temperature","tgav","historical",1864,"Simulated","C","global",12.67025 -"NorESM1-ME","tas","temperature","tgav","historical",1865,"Simulated","C","global",12.6509 -"NorESM1-ME","tas","temperature","tgav","historical",1866,"Simulated","C","global",12.6591 -"NorESM1-ME","tas","temperature","tgav","historical",1867,"Simulated","C","global",12.69925 -"NorESM1-ME","tas","temperature","tgav","historical",1868,"Simulated","C","global",12.70655 -"NorESM1-ME","tas","temperature","tgav","historical",1869,"Simulated","C","global",12.74115 -"NorESM1-ME","tas","temperature","tgav","historical",1870,"Simulated","C","global",12.7094 -"NorESM1-ME","tas","temperature","tgav","historical",1871,"Simulated","C","global",12.76545 -"NorESM1-ME","tas","temperature","tgav","historical",1872,"Simulated","C","global",12.77895 -"NorESM1-ME","tas","temperature","tgav","historical",1873,"Simulated","C","global",12.7151 -"NorESM1-ME","tas","temperature","tgav","historical",1874,"Simulated","C","global",12.77735 -"NorESM1-ME","tas","temperature","tgav","historical",1875,"Simulated","C","global",12.8018 -"NorESM1-ME","tas","temperature","tgav","historical",1876,"Simulated","C","global",12.7602 -"NorESM1-ME","tas","temperature","tgav","historical",1877,"Simulated","C","global",12.7269 -"NorESM1-ME","tas","temperature","tgav","historical",1878,"Simulated","C","global",12.7651 -"NorESM1-ME","tas","temperature","tgav","historical",1879,"Simulated","C","global",12.64015 -"NorESM1-ME","tas","temperature","tgav","historical",1880,"Simulated","C","global",12.7267 -"NorESM1-ME","tas","temperature","tgav","historical",1881,"Simulated","C","global",12.69315 -"NorESM1-ME","tas","temperature","tgav","historical",1882,"Simulated","C","global",12.656 -"NorESM1-ME","tas","temperature","tgav","historical",1883,"Simulated","C","global",12.66885 -"NorESM1-ME","tas","temperature","tgav","historical",1884,"Simulated","C","global",12.4349 -"NorESM1-ME","tas","temperature","tgav","historical",1885,"Simulated","C","global",12.60395 -"NorESM1-ME","tas","temperature","tgav","historical",1886,"Simulated","C","global",12.51285 -"NorESM1-ME","tas","temperature","tgav","historical",1887,"Simulated","C","global",12.66145 -"NorESM1-ME","tas","temperature","tgav","historical",1888,"Simulated","C","global",12.64885 -"NorESM1-ME","tas","temperature","tgav","historical",1889,"Simulated","C","global",12.72965 -"NorESM1-ME","tas","temperature","tgav","historical",1890,"Simulated","C","global",12.63795 -"NorESM1-ME","tas","temperature","tgav","historical",1891,"Simulated","C","global",12.64715 -"NorESM1-ME","tas","temperature","tgav","historical",1892,"Simulated","C","global",12.73445 -"NorESM1-ME","tas","temperature","tgav","historical",1893,"Simulated","C","global",12.71615 -"NorESM1-ME","tas","temperature","tgav","historical",1894,"Simulated","C","global",12.6358 -"NorESM1-ME","tas","temperature","tgav","historical",1895,"Simulated","C","global",12.7457 -"NorESM1-ME","tas","temperature","tgav","historical",1896,"Simulated","C","global",12.7682 -"NorESM1-ME","tas","temperature","tgav","historical",1897,"Simulated","C","global",12.7829 -"NorESM1-ME","tas","temperature","tgav","historical",1898,"Simulated","C","global",12.64335 -"NorESM1-ME","tas","temperature","tgav","historical",1899,"Simulated","C","global",12.7407 -"NorESM1-ME","tas","temperature","tgav","historical",1900,"Simulated","C","global",12.74015 -"NorESM1-ME","tas","temperature","tgav","historical",1901,"Simulated","C","global",12.713 -"NorESM1-ME","tas","temperature","tgav","historical",1902,"Simulated","C","global",12.73415 -"NorESM1-ME","tas","temperature","tgav","historical",1903,"Simulated","C","global",12.5726 -"NorESM1-ME","tas","temperature","tgav","historical",1904,"Simulated","C","global",12.50125 -"NorESM1-ME","tas","temperature","tgav","historical",1905,"Simulated","C","global",12.54715 -"NorESM1-ME","tas","temperature","tgav","historical",1906,"Simulated","C","global",12.6675 -"NorESM1-ME","tas","temperature","tgav","historical",1907,"Simulated","C","global",12.7699 -"NorESM1-ME","tas","temperature","tgav","historical",1908,"Simulated","C","global",12.6392 -"NorESM1-ME","tas","temperature","tgav","historical",1909,"Simulated","C","global",12.59355 -"NorESM1-ME","tas","temperature","tgav","historical",1910,"Simulated","C","global",12.71165 -"NorESM1-ME","tas","temperature","tgav","historical",1911,"Simulated","C","global",12.69135 -"NorESM1-ME","tas","temperature","tgav","historical",1912,"Simulated","C","global",12.70925 -"NorESM1-ME","tas","temperature","tgav","historical",1913,"Simulated","C","global",12.74595 -"NorESM1-ME","tas","temperature","tgav","historical",1914,"Simulated","C","global",12.87375 -"NorESM1-ME","tas","temperature","tgav","historical",1915,"Simulated","C","global",12.8598 -"NorESM1-ME","tas","temperature","tgav","historical",1916,"Simulated","C","global",12.70535 -"NorESM1-ME","tas","temperature","tgav","historical",1917,"Simulated","C","global",12.68555 -"NorESM1-ME","tas","temperature","tgav","historical",1918,"Simulated","C","global",12.8437 -"NorESM1-ME","tas","temperature","tgav","historical",1919,"Simulated","C","global",12.6586 -"NorESM1-ME","tas","temperature","tgav","historical",1920,"Simulated","C","global",12.7175 -"NorESM1-ME","tas","temperature","tgav","historical",1921,"Simulated","C","global",12.7794 -"NorESM1-ME","tas","temperature","tgav","historical",1922,"Simulated","C","global",12.7418 -"NorESM1-ME","tas","temperature","tgav","historical",1923,"Simulated","C","global",12.77155 -"NorESM1-ME","tas","temperature","tgav","historical",1924,"Simulated","C","global",12.82255 -"NorESM1-ME","tas","temperature","tgav","historical",1925,"Simulated","C","global",12.83335 -"NorESM1-ME","tas","temperature","tgav","historical",1926,"Simulated","C","global",12.83165 -"NorESM1-ME","tas","temperature","tgav","historical",1927,"Simulated","C","global",12.86395 -"NorESM1-ME","tas","temperature","tgav","historical",1928,"Simulated","C","global",12.76835 -"NorESM1-ME","tas","temperature","tgav","historical",1929,"Simulated","C","global",12.7215 -"NorESM1-ME","tas","temperature","tgav","historical",1930,"Simulated","C","global",12.77635 -"NorESM1-ME","tas","temperature","tgav","historical",1931,"Simulated","C","global",12.8061 -"NorESM1-ME","tas","temperature","tgav","historical",1932,"Simulated","C","global",12.8954 -"NorESM1-ME","tas","temperature","tgav","historical",1933,"Simulated","C","global",12.8526500000001 -"NorESM1-ME","tas","temperature","tgav","historical",1934,"Simulated","C","global",12.94785 -"NorESM1-ME","tas","temperature","tgav","historical",1935,"Simulated","C","global",12.8921 -"NorESM1-ME","tas","temperature","tgav","historical",1936,"Simulated","C","global",12.866 -"NorESM1-ME","tas","temperature","tgav","historical",1937,"Simulated","C","global",12.9353 -"NorESM1-ME","tas","temperature","tgav","historical",1938,"Simulated","C","global",13.03455 -"NorESM1-ME","tas","temperature","tgav","historical",1939,"Simulated","C","global",13.0206 -"NorESM1-ME","tas","temperature","tgav","historical",1940,"Simulated","C","global",12.96385 -"NorESM1-ME","tas","temperature","tgav","historical",1941,"Simulated","C","global",12.9984 -"NorESM1-ME","tas","temperature","tgav","historical",1942,"Simulated","C","global",12.92025 -"NorESM1-ME","tas","temperature","tgav","historical",1943,"Simulated","C","global",12.9157 -"NorESM1-ME","tas","temperature","tgav","historical",1944,"Simulated","C","global",12.9381 -"NorESM1-ME","tas","temperature","tgav","historical",1945,"Simulated","C","global",12.90935 -"NorESM1-ME","tas","temperature","tgav","historical",1946,"Simulated","C","global",12.95515 -"NorESM1-ME","tas","temperature","tgav","historical",1947,"Simulated","C","global",12.87195 -"NorESM1-ME","tas","temperature","tgav","historical",1948,"Simulated","C","global",12.7526 -"NorESM1-ME","tas","temperature","tgav","historical",1949,"Simulated","C","global",12.7732 -"NorESM1-ME","tas","temperature","tgav","historical",1950,"Simulated","C","global",12.9474 -"NorESM1-ME","tas","temperature","tgav","historical",1951,"Simulated","C","global",12.82695 -"NorESM1-ME","tas","temperature","tgav","historical",1952,"Simulated","C","global",12.8196 -"NorESM1-ME","tas","temperature","tgav","historical",1953,"Simulated","C","global",12.8626 -"NorESM1-ME","tas","temperature","tgav","historical",1954,"Simulated","C","global",12.88855 -"NorESM1-ME","tas","temperature","tgav","historical",1955,"Simulated","C","global",12.94895 -"NorESM1-ME","tas","temperature","tgav","historical",1956,"Simulated","C","global",12.8871 -"NorESM1-ME","tas","temperature","tgav","historical",1957,"Simulated","C","global",12.97835 -"NorESM1-ME","tas","temperature","tgav","historical",1958,"Simulated","C","global",13.0175 -"NorESM1-ME","tas","temperature","tgav","historical",1959,"Simulated","C","global",12.9724 -"NorESM1-ME","tas","temperature","tgav","historical",1960,"Simulated","C","global",13.01095 -"NorESM1-ME","tas","temperature","tgav","historical",1961,"Simulated","C","global",12.9323 -"NorESM1-ME","tas","temperature","tgav","historical",1962,"Simulated","C","global",12.8448 -"NorESM1-ME","tas","temperature","tgav","historical",1963,"Simulated","C","global",12.7355 -"NorESM1-ME","tas","temperature","tgav","historical",1964,"Simulated","C","global",12.719 -"NorESM1-ME","tas","temperature","tgav","historical",1965,"Simulated","C","global",12.77155 -"NorESM1-ME","tas","temperature","tgav","historical",1966,"Simulated","C","global",12.8127 -"NorESM1-ME","tas","temperature","tgav","historical",1967,"Simulated","C","global",12.9555 -"NorESM1-ME","tas","temperature","tgav","historical",1968,"Simulated","C","global",12.91585 -"NorESM1-ME","tas","temperature","tgav","historical",1969,"Simulated","C","global",12.78225 -"NorESM1-ME","tas","temperature","tgav","historical",1970,"Simulated","C","global",12.85735 -"NorESM1-ME","tas","temperature","tgav","historical",1971,"Simulated","C","global",12.94015 -"NorESM1-ME","tas","temperature","tgav","historical",1972,"Simulated","C","global",12.8855 -"NorESM1-ME","tas","temperature","tgav","historical",1973,"Simulated","C","global",12.95245 -"NorESM1-ME","tas","temperature","tgav","historical",1974,"Simulated","C","global",12.9043 -"NorESM1-ME","tas","temperature","tgav","historical",1975,"Simulated","C","global",12.82035 -"NorESM1-ME","tas","temperature","tgav","historical",1976,"Simulated","C","global",12.86965 -"NorESM1-ME","tas","temperature","tgav","historical",1977,"Simulated","C","global",12.89895 -"NorESM1-ME","tas","temperature","tgav","historical",1978,"Simulated","C","global",13.07115 -"NorESM1-ME","tas","temperature","tgav","historical",1979,"Simulated","C","global",13.12415 -"NorESM1-ME","tas","temperature","tgav","historical",1980,"Simulated","C","global",13.13085 -"NorESM1-ME","tas","temperature","tgav","historical",1981,"Simulated","C","global",13.2083 -"NorESM1-ME","tas","temperature","tgav","historical",1982,"Simulated","C","global",13.25715 -"NorESM1-ME","tas","temperature","tgav","historical",1983,"Simulated","C","global",13.03925 -"NorESM1-ME","tas","temperature","tgav","historical",1984,"Simulated","C","global",13.0235 -"NorESM1-ME","tas","temperature","tgav","historical",1985,"Simulated","C","global",13.0269 -"NorESM1-ME","tas","temperature","tgav","historical",1986,"Simulated","C","global",13.0328 -"NorESM1-ME","tas","temperature","tgav","historical",1987,"Simulated","C","global",13.20435 -"NorESM1-ME","tas","temperature","tgav","historical",1988,"Simulated","C","global",13.2280000000001 -"NorESM1-ME","tas","temperature","tgav","historical",1989,"Simulated","C","global",13.1911 -"NorESM1-ME","tas","temperature","tgav","historical",1990,"Simulated","C","global",13.32625 -"NorESM1-ME","tas","temperature","tgav","historical",1991,"Simulated","C","global",13.19665 -"NorESM1-ME","tas","temperature","tgav","historical",1992,"Simulated","C","global",12.96555 -"NorESM1-ME","tas","temperature","tgav","historical",1993,"Simulated","C","global",12.9195 -"NorESM1-ME","tas","temperature","tgav","historical",1994,"Simulated","C","global",13.1113 -"NorESM1-ME","tas","temperature","tgav","historical",1995,"Simulated","C","global",13.14865 -"NorESM1-ME","tas","temperature","tgav","historical",1996,"Simulated","C","global",13.1812 -"NorESM1-ME","tas","temperature","tgav","historical",1997,"Simulated","C","global",13.278 -"NorESM1-ME","tas","temperature","tgav","historical",1998,"Simulated","C","global",13.3173 -"NorESM1-ME","tas","temperature","tgav","historical",1999,"Simulated","C","global",13.41585 -"NorESM1-ME","tas","temperature","tgav","historical",2000,"Simulated","C","global",13.4441 -"NorESM1-ME","tas","temperature","tgav","historical",2001,"Simulated","C","global",13.4198 -"NorESM1-ME","tas","temperature","tgav","historical",2002,"Simulated","C","global",13.5354 -"NorESM1-ME","tas","temperature","tgav","historical",2003,"Simulated","C","global",13.5911 -"NorESM1-ME","tas","temperature","tgav","historical",2004,"Simulated","C","global",13.5624 -"NorESM1-ME","tas","temperature","tgav","historical",2005,"Simulated","C","global",13.71995 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-12.39105 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-12.2057 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-12.483 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-12.4352 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-12.7493 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-12.62215 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-12.65875 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-12.63775 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-12.59055 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-12.37555 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-12.5289 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-12.7281999999999 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-12.5089 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-12.49785 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-12.6361 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-12.72755 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-12.69895 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-12.7315 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-12.71775 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-12.57275 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-12.91935 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-12.5877 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-12.52065 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-12.9505 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-12.60735 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-12.27165 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-12.3865 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-12.7077 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-12.3677 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-12.80065 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-12.71135 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-12.78175 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-12.70505 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-12.55255 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-12.62285 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-12.3767 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-12.8047 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-12.4345 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-12.58495 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-12.37805 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-12.54545 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-12.6918 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-12.5296 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-12.48775 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-12.7989 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-12.3108 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-12.3878 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-12.38975 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-12.71695 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-12.5899 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-12.58095 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-12.7525 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-12.6265 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-12.28605 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-12.7607 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-12.77995 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-12.7155 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-12.4812 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-12.65665 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-12.8196 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-12.5488 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-12.6987 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-12.58965 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-12.33755 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-12.19545 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-12.0733 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-12.46495 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-12.809 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-12.3999 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-12.7682 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-12.56435 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-12.4778 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-12.6994 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-12.4401 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-12.43305 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-12.49625 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-12.32985 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-12.2958 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-12.53465 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-12.45935 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-12.4071 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-12.50305 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-12.32045 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-12.2257999999999 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-12.26275 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-12.283 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-12.38715 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-12.1781 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-11.99855 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-12.1068 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-12.1202 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-12.173 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-12.32095 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-12.3007 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-12.29675 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-12.45605 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-12.18005 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-12.18065 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-12.60635 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-12.64645 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-12.24005 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-12.5091 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-12.55995 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-12.36805 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-12.5755 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-12.19195 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-12.32285 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-12.10675 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-11.9794 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-11.9336 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-12.0978 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-12.15405 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-12.5461 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-12.4942 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-12.4628 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-12.2897 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-12.31355 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-12.07005 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-12.0176 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-12.1736 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-12.45575 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-12.13905 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-12.37055 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-12.2685 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-12.1131499999999 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-12.63205 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-12.4283 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-12.2775 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-11.88785 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-11.8909 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-11.8816 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-11.92995 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-11.67915 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-11.96405 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-12.26025 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-12.178 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-12.07675 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-11.8702 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-11.91975 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-11.94225 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-11.7437 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-11.85875 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-11.80675 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-12.14315 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-11.87175 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-11.97835 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-11.9242 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-11.5434 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-11.5962 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-11.50325 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-11.2421 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-11.425 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-11.4012 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-11.02805 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-11.36195 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-11.34915 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",18.40415 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",18.4728 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",18.3046 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",18.2972 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",18.29475 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",18.3301 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",18.34855 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",18.33275 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",18.35775 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",18.38815 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",18.3358 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",18.2974 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",18.32075 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",18.32295 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",18.28035 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",18.27695 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",18.28065 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",18.33695 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",18.3428 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",18.353 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",18.3908 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",18.3859 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",18.3876 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",18.4047 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",18.4048 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",18.3603 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",18.33495 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",18.3654 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",18.33675 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",18.28 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",18.366 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",18.34065 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",18.27825 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",18.2602 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",17.98985 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",18.1419 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",18.12535 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",18.22485 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",18.2428 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",18.2957 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",18.22085 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",18.26455 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",18.3352 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",18.30365 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",18.2744500000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",18.30045 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",18.34495 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",18.3634 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",18.26535 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",18.3562 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",18.3535 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",18.35825 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",18.3563 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",18.08345 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",18.1016 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",18.1618500000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",18.29465 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",18.3678 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",18.247 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",18.22735 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",18.3116 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",18.31995 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",18.3177 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",18.30675 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",18.43145 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",18.3873 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",18.2853 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",18.3372 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",18.4399 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",18.29545 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",18.3222 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",18.3785500000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",18.3818 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",18.36075 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",18.42145 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",18.4485000000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",18.4097 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",18.44155 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",18.37785 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",18.3037 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",18.35925 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",18.4167 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",18.4853 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",18.4122 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",18.53655 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",18.4731000000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",18.4643 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",18.50265 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",18.5842 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",18.5911 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",18.5247 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",18.57855 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",18.5159 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",18.5058 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",18.53235 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",18.53255 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",18.5272 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",18.426 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",18.3744 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",18.40845 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",18.5312 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",18.44365 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",18.4459 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",18.4559 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",18.5337 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",18.52245 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",18.47575 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",18.5396 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",18.559 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",18.49375 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",18.57725 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",18.4936500000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",18.4737 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",18.32855 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",18.3014 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",18.32725 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",18.38285 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",18.5034 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",18.44345 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",18.3147 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",18.46895 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",18.49995 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",18.48455 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",18.54355 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",18.45035 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",18.46265 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",18.478 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",18.4802 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",18.60425 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",18.66985 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",18.6757 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",18.781 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",18.78525 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",18.58225 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",18.62845 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",18.6144 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",18.5993500000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",18.76315 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",18.8029 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",18.7628 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",18.88405 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",18.751 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",18.45745 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",18.47555 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",18.64985 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",18.719 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",18.74675 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",18.7805 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",18.8403 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",18.94 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",18.9168 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",18.9277 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",19.06365 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",19.04885 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",19.08785 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",19.27745 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/hist/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/hist/summary.csv deleted file mode 100644 index 899134c48..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/hist/summary.csv +++ /dev/null @@ -1,469 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -1850,tas,temperature,tgav,historical,C,Simulated,global,0.615090912,12.05578333,13.6654,13.12544722,13.31755,1,CMIP5 -1850,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.44853946,-12.63713333,-8.9781,-11.45840556,-12.15825,1,CMIP5 -1850,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.877646698,17.04103333,19.2866,18.45093056,18.693625,1,CMIP5 -1851,tas,temperature,tgav,historical,C,Simulated,global,0.615482955,12.09455,13.7575,13.17144167,13.2987,1,CMIP5 -1851,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.523297006,-12.5461,-8.6163,-11.30106111,-12.0449,1,CMIP5 -1851,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.874696549,17.07075,19.2064,18.47319167,18.8008,1,CMIP5 -1852,tas,temperature,tgav,historical,C,Simulated,global,0.600512063,12.1044,13.6751,13.08228611,13.1655,1,CMIP5 -1852,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.540890149,-12.54343333,-8.8461,-11.50415,-12.37815,1,CMIP5 -1852,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.840484103,17.0934,19.13743333,18.40863889,18.67005,1,CMIP5 -1853,tas,temperature,tgav,historical,C,Simulated,global,0.64532553,12.05918333,13.7523,13.12711667,13.2658,1,CMIP5 -1853,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.520824887,-12.75626667,-8.7034,-11.36104722,-11.90445,1,CMIP5 -1853,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.869037052,17.05288333,19.22263333,18.43153611,18.68175,1,CMIP5 -1854,tas,temperature,tgav,historical,C,Simulated,global,0.702567472,12.05291667,13.9608,13.15549167,13.2908,1,CMIP5 -1854,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.4557504,-12.7493,-8.8847,-11.34628889,-11.69395,1,CMIP5 -1854,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.904818533,17.04756667,19.2893,18.46353611,18.726725,1,CMIP5 -1855,tas,temperature,tgav,historical,C,Simulated,global,0.692954257,12.03486667,13.8386,13.1618,13.3429,1,CMIP5 -1855,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.352992231,-12.62215,-9.0395,-11.32791667,-11.6913,1,CMIP5 -1855,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.913422177,17.0282,19.3272,18.46761111,18.736,1,CMIP5 -1856,tas,temperature,tgav,historical,C,Simulated,global,0.664959258,11.94368333,13.6864,13.08618056,13.24395,1,CMIP5 -1856,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.556142916,-12.92586667,-8.8195,-11.55796944,-12.14765,1,CMIP5 -1856,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.896158816,16.95295,19.24276667,18.42446111,18.710925,1,CMIP5 -1857,tas,temperature,tgav,historical,C,Simulated,global,0.603263056,11.90836667,13.5296,12.98857222,13.1614,1,CMIP5 -1857,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.626485167,-13.09506667,-8.8734,-11.60428889,-12.29305,1,CMIP5 -1857,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.854535302,16.86215,19.0313,18.31653889,18.597425,1,CMIP5 -1858,tas,temperature,tgav,historical,C,Simulated,global,0.632254108,11.94653333,13.6271,13.054275,13.2194,1,CMIP5 -1858,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.449341192,-12.8381,-9.0142,-11.44473889,-11.88045,1,CMIP5 -1858,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.858557446,16.91576667,19.0854,18.36133611,18.653075,1,CMIP5 -1859,tas,temperature,tgav,historical,C,Simulated,global,0.783482186,11.6494,13.6565,12.87340952,13.07,1,CMIP5 -1859,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.286879682,-12.56183333,-9.1578,-11.57974667,-12.28176,1,CMIP5 -1859,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.927416443,16.95031667,19.2169,18.21707524,18.38815,1,CMIP5 -1860,tas,temperature,tgav,historical,C,Simulated,global,0.64128193,12.02446667,13.7683,13.20613952,13.554,1,CMIP5 -1860,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.428984484,-12.5289,-8.7785,-10.99609952,-11.7617,1,CMIP5 -1860,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.872744377,16.95685,19.2737,18.49520905,18.9486,1,CMIP5 -1861,tas,temperature,tgav,historical,C,Simulated,global,0.668172266,12.02896667,13.7923,13.22872952,13.5667,1,CMIP5 -1861,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.330668385,-12.7282,-9.2622,-11.12258476,-11.6733,1,CMIP5 -1861,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.855977507,17.01168333,19.2693,18.54970238,19.037,1,CMIP5 -1862,tas,temperature,tgav,historical,C,Simulated,global,0.632903913,12.07853333,13.81966667,13.22908286,13.4859,1,CMIP5 -1862,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.396590306,-12.5089,-8.9009,-10.97847571,-11.5179,1,CMIP5 -1862,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.82308538,17.04655,19.20896667,18.51846667,19.0337,1,CMIP5 -1863,tas,temperature,tgav,historical,C,Simulated,global,0.569692271,12.10483333,13.65443333,13.16375524,13.4267,1,CMIP5 -1863,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.404615551,-12.49785,-9.272,-11.15780286,-11.5784,1,CMIP5 -1863,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.78399511,17.0342,19.10476667,18.4773081,18.9215,1,CMIP5 -1864,tas,temperature,tgav,historical,C,Simulated,global,0.600618936,12.12553333,13.8148,13.20394905,13.4759,1,CMIP5 -1864,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.478168555,-12.6361,-8.8069,-11.0464519,-11.8246,1,CMIP5 -1864,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.800144624,17.06135,19.22083333,18.50317905,18.8503,1,CMIP5 -1865,tas,temperature,tgav,historical,C,Simulated,global,0.581642202,12.16685,13.8048,13.20138429,13.4999,1,CMIP5 -1865,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.482352261,-12.72755,-8.7873,-11.07627238,-11.8482,1,CMIP5 -1865,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.77787878,17.09856667,19.2268,18.50671857,18.89778,1,CMIP5 -1866,tas,temperature,tgav,historical,C,Simulated,global,0.570401397,12.14801667,13.77336667,13.15942048,13.45,1,CMIP5 -1866,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.410307914,-12.69895,-8.879,-11.08786286,-11.5573,1,CMIP5 -1866,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.771146553,17.10113333,19.16936667,18.45798429,18.8636,1,CMIP5 -1867,tas,temperature,tgav,historical,C,Simulated,global,0.601066426,12.12728333,13.7731,13.21935429,13.435,1,CMIP5 -1867,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.41914169,-12.7315,-8.8661,-11.08136,-11.6404,1,CMIP5 -1867,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.788127154,17.07423333,19.1615,18.53010619,18.93826,1,CMIP5 -1868,tas,temperature,tgav,historical,C,Simulated,global,0.622353529,12.1461,13.8245,13.2689319,13.52634,1,CMIP5 -1868,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.418349867,-12.71775,-8.6078,-10.94378143,-11.3324,1,CMIP5 -1868,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.796855556,17.10783333,19.2184,18.56018,18.93296,1,CMIP5 -1869,tas,temperature,tgav,historical,C,Simulated,global,0.592824897,12.1813,13.8565,13.25502429,13.5579,1,CMIP5 -1869,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.380581323,-12.57275,-8.7932,-10.9817881,-11.3228,1,CMIP5 -1869,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.774712072,17.1562,19.24866667,18.55115524,18.971,1,CMIP5 -1870,tas,temperature,tgav,historical,C,Simulated,global,0.619867364,12.20503333,13.9122,13.25999619,13.3007,1,CMIP5 -1870,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.498681361,-12.91935,-8.8944,-11.10613238,-11.78676667,1,CMIP5 -1870,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.78259453,17.18365,19.27786667,18.58490524,18.97492,1,CMIP5 -1871,tas,temperature,tgav,historical,C,Simulated,global,0.625773439,12.22015,13.9494,13.28632,13.4575,1,CMIP5 -1871,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.365977697,-12.5877,-8.9946,-11.01385524,-11.716,1,CMIP5 -1871,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.825720586,17.18311667,19.31716667,18.59722333,19.04088,1,CMIP5 -1872,tas,temperature,tgav,historical,C,Simulated,global,0.640831656,12.18133333,13.94656667,13.32364429,13.6027,1,CMIP5 -1872,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.327273733,-12.52065,-8.9204,-10.89810286,-11.6418,1,CMIP5 -1872,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.822911041,17.15008333,19.3109,18.61706333,19.07216,1,CMIP5 -1873,tas,temperature,tgav,historical,C,Simulated,global,0.611641334,12.19755,13.86153333,13.26287476,13.3506,1,CMIP5 -1873,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.581275275,-12.9505,-8.6809,-11.06761429,-11.8324,1,CMIP5 -1873,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.787221084,17.16946667,19.25733333,18.58024286,19.079,1,CMIP5 -1874,tas,temperature,tgav,historical,C,Simulated,global,0.627254059,12.24735,13.93713333,13.3197819,13.4395,1,CMIP5 -1874,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.457279966,-12.60735,-8.714,-10.8995219,-11.4053,1,CMIP5 -1874,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.810972143,17.2056,19.3192,18.61304286,19.0527,1,CMIP5 -1875,tas,temperature,tgav,historical,C,Simulated,global,0.578946421,12.288,13.90346667,13.3045181,13.554,1,CMIP5 -1875,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.379124098,-12.27165,-8.8594,-10.94160524,-11.8859,1,CMIP5 -1875,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.783665511,17.25923333,19.3017,18.60281524,18.99474,1,CMIP5 -1876,tas,temperature,tgav,historical,C,Simulated,global,0.591204464,12.25706667,13.89086667,13.31271048,13.59564,1,CMIP5 -1876,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.405588244,-12.3865,-8.5244,-10.84590524,-11.4521,1,CMIP5 -1876,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.782708956,17.21206667,19.3481,18.59223857,18.97882,1,CMIP5 -1877,tas,temperature,tgav,historical,C,Simulated,global,0.616541223,12.18163333,13.8639,13.2732219,13.6202,1,CMIP5 -1877,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.460764297,-12.7077,-8.8292,-10.99189667,-11.2735,1,CMIP5 -1877,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.811471929,17.14993333,19.2514,18.57485905,18.99218,1,CMIP5 -1878,tas,temperature,tgav,historical,C,Simulated,global,0.578698907,12.2578,13.81113333,13.26362476,13.5627,1,CMIP5 -1878,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.430867701,-12.3677,-8.7114,-10.92367095,-11.5023,1,CMIP5 -1878,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.805498898,17.20201667,19.22633333,18.54878,19.03846,1,CMIP5 -1879,tas,temperature,tgav,historical,C,Simulated,global,0.635130078,12.21676667,13.8726,13.27496143,13.573,1,CMIP5 -1879,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.438508724,-12.80065,-8.8833,-10.93952429,-11.4036,1,CMIP5 -1879,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.816035875,17.16895,19.27016667,18.5658681,18.95796,1,CMIP5 -1880,tas,temperature,tgav,historical,C,Simulated,global,0.618636403,12.17973333,13.8707,13.26560667,13.4312,1,CMIP5 -1880,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.433949661,-12.71135,-9.0056,-11.11174762,-11.9958,1,CMIP5 -1880,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.806764075,17.14558333,19.2714,18.59236143,18.93858,1,CMIP5 -1881,tas,temperature,tgav,historical,C,Simulated,global,0.57202276,12.34845,13.8249,13.2935,13.5421,1,CMIP5 -1881,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.532123806,-12.78175,-8.9158,-11.08416667,-11.8826,1,CMIP5 -1881,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.780427322,17.28585,19.2864,18.61992381,18.9737,1,CMIP5 -1882,tas,temperature,tgav,historical,C,Simulated,global,0.609716753,12.36671667,13.9265,13.30666143,13.5746,1,CMIP5 -1882,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.392820614,-12.70505,-8.953,-10.95911429,-11.5528,1,CMIP5 -1882,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.805832724,17.31306667,19.3261,18.60913381,18.99842,1,CMIP5 -1883,tas,temperature,tgav,historical,C,Simulated,global,0.580760215,12.17275,13.77723333,13.19303333,13.3959,1,CMIP5 -1883,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.462293344,-12.55255,-9.055,-11.10547762,-11.8287,1,CMIP5 -1883,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.783804016,17.10846667,19.19733333,18.50178286,18.92748,1,CMIP5 -1884,tas,temperature,tgav,historical,C,Simulated,global,0.576142917,11.87023333,13.4183,12.92853238,13.23453333,1,CMIP5 -1884,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.56771515,-12.68276667,-8.7752,-11.2268781,-12.0079,1,CMIP5 -1884,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.70464367,16.79085,18.7993,18.20597143,18.5513,1,CMIP5 -1885,tas,temperature,tgav,historical,C,Simulated,global,0.576059892,11.81776667,13.40753333,12.97456429,13.1958,1,CMIP5 -1885,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.417690279,-12.71966667,-9.0227,-11.2753019,-11.8978,1,CMIP5 -1885,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.749283847,16.77288333,18.8626,18.27289476,18.6614,1,CMIP5 -1886,tas,temperature,tgav,historical,C,Simulated,global,0.608041671,11.87301667,13.56716667,13.02379619,13.2273,1,CMIP5 -1886,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.51846245,-12.8047,-8.9819,-11.32541619,-11.8385,1,CMIP5 -1886,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.785360546,16.83635,19.0548,18.34377619,18.6281,1,CMIP5 -1887,tas,temperature,tgav,historical,C,Simulated,global,0.580135127,11.9504,13.62173333,13.08088905,13.3116,1,CMIP5 -1887,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.505980852,-12.66023333,-8.7537,-11.21060524,-11.8616,1,CMIP5 -1887,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.773457677,16.91806667,19.10906667,18.38819762,18.7546,1,CMIP5 -1888,tas,temperature,tgav,historical,C,Simulated,global,0.572143147,11.99028333,13.64696667,13.07465714,13.3054,1,CMIP5 -1888,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.631368284,-12.9538,-8.842,-11.30002,-11.7945,1,CMIP5 -1888,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.789365941,16.9567,19.15996667,18.39903524,18.79588,1,CMIP5 -1889,tas,temperature,tgav,historical,C,Simulated,global,0.582478009,11.97228333,13.68996667,13.09185143,13.3878,1,CMIP5 -1889,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.396305979,-12.5518,-9.2588,-11.30918524,-12.1317,1,CMIP5 -1889,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.812549877,16.94475,19.16896667,18.42311381,18.78128,1,CMIP5 -1890,tas,temperature,tgav,historical,C,Simulated,global,0.590983557,11.93283333,13.58676667,13.08299,13.3895,1,CMIP5 -1890,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.556145951,-12.56306667,-8.5241,-11.18038762,-11.5754,1,CMIP5 -1890,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.781669943,16.91886667,19.065,18.38440429,18.77618,1,CMIP5 -1891,tas,temperature,tgav,historical,C,Simulated,global,0.567576784,11.96888333,13.5053,13.07053714,13.36326,1,CMIP5 -1891,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.559688775,-12.89156667,-8.7517,-11.2617181,-11.7131,1,CMIP5 -1891,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.769630747,16.96146667,19.1054,18.38681,18.72722,1,CMIP5 -1892,tas,temperature,tgav,historical,C,Simulated,global,0.572036432,12.03773333,13.6624,13.11958238,13.3989,1,CMIP5 -1892,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.468550443,-12.83003333,-8.9426,-11.20711762,-11.7999,1,CMIP5 -1892,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.794655865,17.01776667,19.0921,18.43473048,18.80618,1,CMIP5 -1893,tas,temperature,tgav,historical,C,Simulated,global,0.589052252,12.06985,13.7369,13.18511429,13.3936,1,CMIP5 -1893,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.458087188,-12.58953333,-8.6614,-11.13892619,-11.8646,1,CMIP5 -1893,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.780073181,17.0476,19.1988,18.50051571,18.80786,1,CMIP5 -1894,tas,temperature,tgav,historical,C,Simulated,global,0.590573918,12.10238333,13.72456667,13.18053857,13.4126,1,CMIP5 -1894,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.58956905,-12.7989,-8.4739,-11.16305476,-11.8338,1,CMIP5 -1894,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.772180352,17.0868,19.2201,18.49999857,18.85034,1,CMIP5 -1895,tas,temperature,tgav,historical,C,Simulated,global,0.635940687,12.10771667,13.9439,13.25319286,13.475,1,CMIP5 -1895,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.326308303,-12.3108,-8.7902,-10.96186524,-11.2428,1,CMIP5 -1895,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.814511474,17.0955,19.2027,18.54532714,18.93444,1,CMIP5 -1896,tas,temperature,tgav,historical,C,Simulated,global,0.603671665,12.13946667,13.7871,13.22762381,13.3944,1,CMIP5 -1896,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.532535131,-12.41983333,-8.8096,-11.17486524,-12.2789,1,CMIP5 -1896,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.831129556,17.13085,19.2354,18.55948095,18.9853,1,CMIP5 -1897,tas,temperature,tgav,historical,C,Simulated,global,0.608676766,12.14048333,13.84173333,13.24985381,13.5597,1,CMIP5 -1897,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.340389279,-12.38975,-8.9577,-11.02949619,-11.7041,1,CMIP5 -1897,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.813313724,17.12808333,19.2676,18.55516429,18.9246,1,CMIP5 -1898,tas,temperature,tgav,historical,C,Simulated,global,0.588774464,12.17486667,13.80076667,13.2056319,13.5328,1,CMIP5 -1898,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.50187481,-12.71695,-8.8656,-11.09065048,-11.6106,1,CMIP5 -1898,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.789286048,17.13475,19.27076667,18.51413524,18.8992,1,CMIP5 -1899,tas,temperature,tgav,historical,C,Simulated,global,0.612642857,12.13373333,13.81,13.26029619,13.5376,1,CMIP5 -1899,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.536944218,-12.5899,-8.4242,-10.9229919,-11.5688,1,CMIP5 -1899,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.799196059,17.11978333,19.242,18.54480333,18.99434,1,CMIP5 -1900,tas,temperature,tgav,historical,C,Simulated,global,0.618635125,12.1378,13.8077,13.25377476,13.5217,1,CMIP5 -1900,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.557478772,-12.58095,-8.526,-11.06484952,-11.791,1,CMIP5 -1900,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.834938637,17.1366,19.2982,18.56820286,19.02482,1,CMIP5 -1901,tas,temperature,tgav,historical,C,Simulated,global,0.604096911,12.1815,13.83816667,13.22836095,13.4663,1,CMIP5 -1901,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.52203886,-12.7525,-8.652,-11.02673286,-11.8326,1,CMIP5 -1901,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.816905029,17.16301667,19.25736667,18.52917048,18.9539,1,CMIP5 -1902,tas,temperature,tgav,historical,C,Simulated,global,0.587637728,12.1417,13.80436667,13.18854238,13.4881,1,CMIP5 -1902,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.404688055,-12.6265,-9.1432,-11.17746762,-11.7899,1,CMIP5 -1902,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.802583115,17.1296,19.23953333,18.51263905,18.8843,1,CMIP5 -1903,tas,temperature,tgav,historical,C,Simulated,global,0.547871009,12.02883333,13.5599,13.02557143,13.1088,1,CMIP5 -1903,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.465045965,-12.5073,-8.8598,-11.19539571,-12.1745,1,CMIP5 -1903,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.724213553,17.0029,18.9531,18.31794143,18.7825,1,CMIP5 -1904,tas,temperature,tgav,historical,C,Simulated,global,0.521647593,12.13995,13.517,13.04912095,13.1945,1,CMIP5 -1904,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.639998478,-12.96066667,-8.7139,-11.29286524,-12.2067,1,CMIP5 -1904,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.705656281,17.09511667,18.9309,18.36792905,18.78972,1,CMIP5 -1905,tas,temperature,tgav,historical,C,Simulated,global,0.532786699,12.20221667,13.5836,13.11468667,13.2663,1,CMIP5 -1905,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.514653128,-12.77995,-9.0096,-11.15440286,-11.8667,1,CMIP5 -1905,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.69583103,17.15446667,19.0562,18.41745952,18.7469,1,CMIP5 -1906,tas,temperature,tgav,historical,C,Simulated,global,0.564557128,12.20358333,13.7579,13.16300333,13.1547,1,CMIP5 -1906,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.448552102,-12.7155,-9.1678,-11.23671286,-11.7935,1,CMIP5 -1906,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.73659443,17.17496667,19.12463333,18.49479286,18.9108,1,CMIP5 -1907,tas,temperature,tgav,historical,C,Simulated,global,0.55586105,12.21828333,13.8091,13.2068719,13.2914,1,CMIP5 -1907,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.479416706,-12.71086667,-9.1803,-11.22299524,-12.1026,1,CMIP5 -1907,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.757278117,17.19206667,19.2191,18.54425333,18.96164,1,CMIP5 -1908,tas,temperature,tgav,historical,C,Simulated,global,0.565106885,12.24438333,13.7042,13.21402333,13.4213,1,CMIP5 -1908,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.470558374,-12.65665,-9.0672,-11.15729476,-11.9819,1,CMIP5 -1908,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.751025087,17.21526667,19.18,18.5390381,18.9393,1,CMIP5 -1909,tas,temperature,tgav,historical,C,Simulated,global,0.545033889,12.27851667,13.68276667,13.19183905,13.4865,1,CMIP5 -1909,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.530250901,-12.8196,-9.1946,-11.24894952,-11.7931,1,CMIP5 -1909,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.746160838,17.22726667,19.198,18.53123952,18.88066,1,CMIP5 -1910,tas,temperature,tgav,historical,C,Simulated,global,0.581103757,12.20608333,13.7219,13.22238476,13.5644,1,CMIP5 -1910,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.487019741,-12.7204,-9.2945,-11.22406762,-11.4165,1,CMIP5 -1910,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.811644247,17.17975,19.4014,18.56252048,18.98506,1,CMIP5 -1911,tas,temperature,tgav,historical,C,Simulated,global,0.60919591,12.23178333,13.8024,13.26431714,13.57172,1,CMIP5 -1911,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.36691164,-12.6987,-9.3532,-11.15979048,-11.6233,1,CMIP5 -1911,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.819712804,17.20836667,19.4107,18.60072905,18.95462,1,CMIP5 -1912,tas,temperature,tgav,historical,C,Simulated,global,0.621177495,12.18756667,14.0066,13.23177,13.3586,1,CMIP5 -1912,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.376396956,-12.8399,-9.4843,-11.21358286,-11.3075,1,CMIP5 -1912,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.797081715,17.17893333,19.2919,18.57304667,18.90346,1,CMIP5 -1913,tas,temperature,tgav,historical,C,Simulated,global,0.590704929,12.16965,13.8876,13.21105429,13.2299,1,CMIP5 -1913,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.473996418,-12.8256,-9.0437,-11.19118571,-11.514,1,CMIP5 -1913,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.769740438,17.15133333,19.20753333,18.54327667,18.94372,1,CMIP5 -1914,tas,temperature,tgav,historical,C,Simulated,global,0.553761348,12.23668333,13.80516667,13.25771429,13.4536,1,CMIP5 -1914,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.354563091,-12.40893333,-8.9854,-10.98315952,-11.6829,1,CMIP5 -1914,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.765517946,17.20905,19.27836667,18.55438095,18.9671,1,CMIP5 -1915,tas,temperature,tgav,historical,C,Simulated,global,0.568402039,12.25905,13.78366667,13.28277952,13.5388,1,CMIP5 -1915,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.308140163,-12.1823,-9.0429,-10.97654857,-11.7463,1,CMIP5 -1915,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.78737369,17.23483333,19.2515,18.58355524,19.01832,1,CMIP5 -1916,tas,temperature,tgav,historical,C,Simulated,global,0.654346938,12.22666667,14.0057,13.31568714,13.5546,1,CMIP5 -1916,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.31762556,-12.46495,-9.1854,-11.02433857,-11.5328,1,CMIP5 -1916,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.82915148,17.24511667,19.3379,18.63422714,19.09144,1,CMIP5 -1917,tas,temperature,tgav,historical,C,Simulated,global,0.669748534,12.25116667,14.0615,13.35591952,13.5986,1,CMIP5 -1917,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.449215816,-12.809,-9.0543,-10.97777762,-11.3343,1,CMIP5 -1917,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.831219094,17.24401667,19.3639,18.67296619,19.11818,1,CMIP5 -1918,tas,temperature,tgav,historical,C,Simulated,global,0.593065879,12.29371667,13.86623333,13.33687571,13.5478,1,CMIP5 -1918,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.442824024,-12.3999,-8.931,-10.93531714,-11.7052,1,CMIP5 -1918,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.799548459,17.25041667,19.3346,18.64004238,19.06668,1,CMIP5 -1919,tas,temperature,tgav,historical,C,Simulated,global,0.655859997,12.21955,13.9726,13.3119481,13.4254,1,CMIP5 -1919,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.547586793,-12.7682,-8.6494,-10.94282714,-11.1784,1,CMIP5 -1919,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.806151101,17.21816667,19.3281,18.61255952,19.0879,1,CMIP5 -1920,tas,temperature,tgav,historical,C,Simulated,global,0.616068632,12.22585,13.92706667,13.28723095,13.4888,1,CMIP5 -1920,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.435171135,-12.56435,-8.8841,-11.00466667,-11.8511,1,CMIP5 -1920,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.804653425,17.19908333,19.3544,18.59548905,19.06,1,CMIP5 -1921,tas,temperature,tgav,historical,C,Simulated,global,0.571547386,12.32706667,13.8592,13.29265238,13.4848,1,CMIP5 -1921,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.401317462,-12.4778,-8.9535,-10.93017905,-11.5873,1,CMIP5 -1921,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.772508546,17.28131667,19.27683333,18.58602857,19.0447,1,CMIP5 -1922,tas,temperature,tgav,historical,C,Simulated,global,0.594085591,12.32143333,13.91606667,13.30428286,13.3505,1,CMIP5 -1922,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.637520694,-12.6994,-8.6087,-11.1089119,-11.971,1,CMIP5 -1922,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.79264063,17.30363333,19.34516667,18.63967143,19.0825,1,CMIP5 -1923,tas,temperature,tgav,historical,C,Simulated,global,0.619226645,12.31006667,14.0227,13.34855095,13.6046,1,CMIP5 -1923,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.415454407,-12.4401,-8.8543,-10.94333619,-11.4732,1,CMIP5 -1923,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.813049871,17.29841667,19.346,18.65647524,19.05236,1,CMIP5 -1924,tas,temperature,tgav,historical,C,Simulated,global,0.599463994,12.28428333,13.85826667,13.34261429,13.5981,1,CMIP5 -1924,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.359233042,-12.43305,-9.0777,-10.95518571,-11.6323,1,CMIP5 -1924,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.780510122,17.28508333,19.2984,18.65178095,19.1254,1,CMIP5 -1925,tas,temperature,tgav,historical,C,Simulated,global,0.591873891,12.30145,14.01616667,13.35502952,13.4858,1,CMIP5 -1925,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.428643454,-12.49625,-8.8811,-11.04994095,-11.96503333,1,CMIP5 -1925,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.747755339,17.32928333,19.44073333,18.68789667,19.045,1,CMIP5 -1926,tas,temperature,tgav,historical,C,Simulated,global,0.565213841,12.39125,13.91923333,13.37079619,13.5348,1,CMIP5 -1926,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.529215476,-12.32985,-8.5745,-10.88582524,-11.6007,1,CMIP5 -1926,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.7520703,17.37201667,19.34703333,18.67023857,19.04622,1,CMIP5 -1927,tas,temperature,tgav,historical,C,Simulated,global,0.576784052,12.38425,13.99733333,13.3741019,13.5066,1,CMIP5 -1927,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.3844321,-12.2958,-8.7276,-10.79868286,-11.5652,1,CMIP5 -1927,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.751039364,17.3554,19.38756667,18.65622238,18.98344,1,CMIP5 -1928,tas,temperature,tgav,historical,C,Simulated,global,0.631714833,12.32796667,13.9933,13.39894238,13.6251,1,CMIP5 -1928,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.445158372,-12.53465,-8.6129,-10.85964381,-11.5257,1,CMIP5 -1928,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.796711771,17.32461667,19.39376667,18.69952762,19.04166,1,CMIP5 -1929,tas,temperature,tgav,historical,C,Simulated,global,0.595794846,12.39063333,13.9408,13.36331238,13.5181,1,CMIP5 -1929,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.460843439,-12.45935,-8.6269,-10.84998238,-11.4609,1,CMIP5 -1929,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.759413418,17.36641667,19.30643333,18.65459857,19.07724,1,CMIP5 -1930,tas,temperature,tgav,historical,C,Simulated,global,0.580842691,12.36556667,13.9052,13.33027381,13.3918,1,CMIP5 -1930,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.436611919,-12.4071,-8.9793,-11.02368048,-11.7651,1,CMIP5 -1930,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.759524031,17.34295,19.34793333,18.65170476,19.06,1,CMIP5 -1931,tas,temperature,tgav,historical,C,Simulated,global,0.597411037,12.35776667,14.0071,13.37608952,13.5927,1,CMIP5 -1931,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.437116929,-12.50305,-8.6394,-10.8573419,-11.4877,1,CMIP5 -1931,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.777693202,17.33936667,19.45406667,18.67127048,19.02746,1,CMIP5 -1932,tas,temperature,tgav,historical,C,Simulated,global,0.561769029,12.3945,13.9593,13.38562857,13.5771,1,CMIP5 -1932,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.481463905,-12.32045,-8.4919,-10.84524905,-11.5989,1,CMIP5 -1932,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.762151585,17.37721667,19.39483333,18.68084143,19.05954,1,CMIP5 -1933,tas,temperature,tgav,historical,C,Simulated,global,0.567114021,12.36483333,13.9672,13.36128905,13.6613,1,CMIP5 -1933,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.458077039,-12.2258,-8.6832,-10.91244476,-11.8723,1,CMIP5 -1933,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.784632667,17.33723333,19.4301,18.66543905,19.03784,1,CMIP5 -1934,tas,temperature,tgav,historical,C,Simulated,global,0.585636379,12.31826667,13.9323,13.3905481,13.71202,1,CMIP5 -1934,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.469868457,-12.26275,-8.6005,-10.84522905,-11.2741,1,CMIP5 -1934,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.809159739,17.29291667,19.4055,18.6855581,19.04514,1,CMIP5 -1935,tas,temperature,tgav,historical,C,Simulated,global,0.617004606,12.26186667,14.022,13.39404095,13.5917,1,CMIP5 -1935,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.456309499,-12.283,-8.8383,-10.92252857,-11.4853,1,CMIP5 -1935,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.797660063,17.24798333,19.47263333,18.70601667,19.0682,1,CMIP5 -1936,tas,temperature,tgav,historical,C,Simulated,global,0.601905854,12.45908333,14.1112,13.45563762,13.6065,1,CMIP5 -1936,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.406340237,-12.38715,-8.8859,-10.82559,-11.3512,1,CMIP5 -1936,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.766049066,17.4416,19.47463333,18.76067619,19.0737,1,CMIP5 -1937,tas,temperature,tgav,historical,C,Simulated,global,0.543499928,12.5354,13.9974,13.45371429,13.6557,1,CMIP5 -1937,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.469794533,-12.23746667,-8.8243,-10.84699952,-11.6752,1,CMIP5 -1937,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.744837712,17.51763333,19.475,18.76270048,19.08992,1,CMIP5 -1938,tas,temperature,tgav,historical,C,Simulated,global,0.570035751,12.47826667,14.04273333,13.50325286,13.6659,1,CMIP5 -1938,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.410068757,-12.0601,-8.6519,-10.70494524,-11.4321,1,CMIP5 -1938,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.751087098,17.46858333,19.49273333,18.79220524,19.14602,1,CMIP5 -1939,tas,temperature,tgav,historical,C,Simulated,global,0.565001665,12.43316667,14.07333333,13.46858857,13.594,1,CMIP5 -1939,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.483725519,-12.1068,-8.5698,-10.78083048,-11.75,1,CMIP5 -1939,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.745235003,17.41491667,19.5047,18.76691095,19.14816,1,CMIP5 -1940,tas,temperature,tgav,historical,C,Simulated,global,0.576989672,12.43326667,14.04436667,13.4525519,13.6989,1,CMIP5 -1940,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.342729044,-12.1202,-8.8331,-10.75482381,-11.5556,1,CMIP5 -1940,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.769879363,17.4012,19.44766667,18.74188381,19.06962,1,CMIP5 -1941,tas,temperature,tgav,historical,C,Simulated,global,0.575160363,12.53263333,14.1023,13.51856667,13.7786,1,CMIP5 -1941,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.308229522,-12.173,-8.9123,-10.71210238,-11.3108,1,CMIP5 -1941,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.770252381,17.47841667,19.4856,18.8129619,19.1276,1,CMIP5 -1942,tas,temperature,tgav,historical,C,Simulated,global,0.571546019,12.47725,14.0446,13.47086857,13.7285,1,CMIP5 -1942,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.454996352,-12.32095,-8.7221,-10.77595048,-11.4138,1,CMIP5 -1942,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.758253184,17.43535,19.4736,18.76838429,19.14614,1,CMIP5 -1943,tas,temperature,tgav,historical,C,Simulated,global,0.563617191,12.49538333,14.06456667,13.46534429,13.7168,1,CMIP5 -1943,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.501138917,-12.3007,-8.5093,-10.68510381,-11.3615,1,CMIP5 -1943,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.753402553,17.42878333,19.45083333,18.74203095,19.1307,1,CMIP5 -1944,tas,temperature,tgav,historical,C,Simulated,global,0.552680727,12.51541667,14.00273333,13.47941286,13.7584,1,CMIP5 -1944,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.526516959,-12.29675,-8.6141,-10.76046952,-11.3162,1,CMIP5 -1944,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.739489523,17.48215,19.42736667,18.77504667,19.16376,1,CMIP5 -1945,tas,temperature,tgav,historical,C,Simulated,global,0.585091077,12.51403333,14.05623333,13.49791095,13.6205,1,CMIP5 -1945,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.576380684,-12.45605,-8.6334,-10.81827048,-11.7513,1,CMIP5 -1945,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.762841228,17.4779,19.5094,18.81030143,19.16316,1,CMIP5 -1946,tas,temperature,tgav,historical,C,Simulated,global,0.540415308,12.5491,14.11073333,13.44354333,13.6619,1,CMIP5 -1946,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.476437299,-12.3445,-8.7832,-10.75994857,-11.4237,1,CMIP5 -1946,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.731991123,17.51336667,19.48113333,18.73133429,19.0918,1,CMIP5 -1947,tas,temperature,tgav,historical,C,Simulated,global,0.569577105,12.55728333,14.0973,13.4731219,13.7169,1,CMIP5 -1947,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.430459287,-12.1904,-8.9171,-10.70155476,-11.2355,1,CMIP5 -1947,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.748765679,17.49841667,19.4606,18.75425667,19.15138,1,CMIP5 -1948,tas,temperature,tgav,historical,C,Simulated,global,0.632436861,12.52766667,14.08266667,13.48740762,13.7233,1,CMIP5 -1948,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.50665285,-12.60635,-8.7622,-10.73574,-11.3841,1,CMIP5 -1948,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.783258718,17.53021667,19.4655,18.77956905,19.1559,1,CMIP5 -1949,tas,temperature,tgav,historical,C,Simulated,global,0.637357907,12.55671667,14.16486667,13.5388919,13.88806,1,CMIP5 -1949,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.493144551,-12.64645,-8.705,-10.69006667,-11.1717,1,CMIP5 -1949,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.787214742,17.54786667,19.5654,18.83251667,19.1587,1,CMIP5 -1950,tas,temperature,tgav,historical,C,Simulated,global,0.575437616,12.55125,14.1161,13.52020143,13.8187,1,CMIP5 -1950,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.483002211,-12.24005,-8.649,-10.72405,-11.385,1,CMIP5 -1950,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.780212186,17.52418333,19.6319,18.81715381,19.14286,1,CMIP5 -1951,tas,temperature,tgav,historical,C,Simulated,global,0.571032884,12.5465,14.08383333,13.46280619,13.7284,1,CMIP5 -1951,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.573115546,-12.5091,-8.6754,-10.82857571,-11.4748,1,CMIP5 -1951,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.766370669,17.48056667,19.47903333,18.76967857,19.1107,1,CMIP5 -1952,tas,temperature,tgav,historical,C,Simulated,global,0.577808413,12.51191667,14.06733333,13.43524143,13.5221,1,CMIP5 -1952,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.562392073,-12.55995,-8.5223,-10.83849619,-11.8341,1,CMIP5 -1952,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.738351471,17.50691667,19.47616667,18.73914619,19.07674,1,CMIP5 -1953,tas,temperature,tgav,historical,C,Simulated,global,0.567928028,12.52255,14.1559,13.43229857,13.6336,1,CMIP5 -1953,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.513116897,-12.36805,-8.6871,-10.79441048,-11.5638,1,CMIP5 -1953,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.749057135,17.49581667,19.52583333,18.72556143,19.08078,1,CMIP5 -1954,tas,temperature,tgav,historical,C,Simulated,global,0.556304037,12.53643333,14.08526667,13.45319857,13.6545,1,CMIP5 -1954,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.460919898,-12.5755,-8.6462,-10.80324762,-11.6183,1,CMIP5 -1954,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.72226414,17.53601667,19.46156667,18.75368333,19.0436,1,CMIP5 -1955,tas,temperature,tgav,historical,C,Simulated,global,0.557110287,12.5073,14.08383333,13.45182905,13.69432,1,CMIP5 -1955,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.359131068,-12.19195,-8.6263,-10.78559952,-11.3707,1,CMIP5 -1955,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.758358926,17.5094,19.48283333,18.74807762,19.06066,1,CMIP5 -1956,tas,temperature,tgav,historical,C,Simulated,global,0.573183335,12.53386667,14.1117,13.46411524,13.6433,1,CMIP5 -1956,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.507439308,-12.32285,-8.5145,-10.73050429,-11.67,1,CMIP5 -1956,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.765597203,17.49636667,19.50276667,18.7510119,19.0629,1,CMIP5 -1957,tas,temperature,tgav,historical,C,Simulated,global,0.533486104,12.5703,14.16,13.46687,13.6818,1,CMIP5 -1957,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.46742203,-12.2995,-8.5392,-10.7079619,-11.3453,1,CMIP5 -1957,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.716222472,17.54551667,19.51736667,18.7486919,19.06136,1,CMIP5 -1958,tas,temperature,tgav,historical,C,Simulated,global,0.563934854,12.48355,14.1941,13.48249857,13.69984,1,CMIP5 -1958,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.367196306,-12.1428,-8.7058,-10.7724481,-11.51903333,1,CMIP5 -1958,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.748400041,17.46625,19.56266667,18.78215381,19.03336,1,CMIP5 -1959,tas,temperature,tgav,historical,C,Simulated,global,0.58398145,12.48976667,14.17606667,13.49789905,13.68966,1,CMIP5 -1959,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.395054046,-11.9336,-8.3568,-10.6639281,-11.2994,1,CMIP5 -1959,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.785288595,17.4809,19.56983333,18.7773919,19.02566,1,CMIP5 -1960,tas,temperature,tgav,historical,C,Simulated,global,0.529178855,12.615,14.2053,13.50851,13.63512,1,CMIP5 -1960,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.550288052,-12.1605,-8.1561,-10.68905429,-11.4473,1,CMIP5 -1960,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.726553383,17.57875,19.613,18.79563429,18.96234,1,CMIP5 -1961,tas,temperature,tgav,historical,C,Simulated,global,0.548484011,12.55788333,14.09866667,13.49040143,13.65436,1,CMIP5 -1961,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.472309748,-12.15405,-8.37,-10.69651286,-11.1927,1,CMIP5 -1961,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.727827965,17.54178333,19.55206667,18.77473429,18.96774,1,CMIP5 -1962,tas,temperature,tgav,historical,C,Simulated,global,0.603995422,12.4665,14.15816667,13.45978381,13.6407,1,CMIP5 -1962,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.517710699,-12.5461,-8.4433,-10.80479905,-11.4869,1,CMIP5 -1962,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.778230569,17.4371,19.6135,18.76199143,18.97804,1,CMIP5 -1963,tas,temperature,tgav,historical,C,Simulated,global,0.589470696,12.3781,14.06016667,13.3424781,13.5186,1,CMIP5 -1963,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.483235409,-12.4942,-8.5528,-10.87862429,-11.6026,1,CMIP5 -1963,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.75915226,17.35845,19.4514,18.63483714,18.96476,1,CMIP5 -1964,tas,temperature,tgav,historical,C,Simulated,global,0.574025206,12.27055,13.85233333,13.2818319,13.47,1,CMIP5 -1964,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.561475557,-12.4628,-8.3216,-10.87770762,-11.6935,1,CMIP5 -1964,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.725934252,17.23215,19.28863333,18.56097476,18.83384,1,CMIP5 -1965,tas,temperature,tgav,historical,C,Simulated,global,0.607482117,12.30871667,13.9487,13.36971238,13.5254,1,CMIP5 -1965,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.440393875,-12.2897,-8.5101,-10.80780762,-11.3548,1,CMIP5 -1965,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.777876201,17.26488333,19.425,18.65215333,18.76534,1,CMIP5 -1966,tas,temperature,tgav,historical,C,Simulated,global,0.585184388,12.35971667,14.00693333,13.37895857,13.5678,1,CMIP5 -1966,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.501618172,-12.31355,-8.378,-10.83795286,-11.6015,1,CMIP5 -1966,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.752132057,17.343,19.48453333,18.6702919,18.73576,1,CMIP5 -1967,tas,temperature,tgav,historical,C,Simulated,global,0.52927109,12.46836667,14.07933333,13.40808,13.5498,1,CMIP5 -1967,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.528695965,-12.2624,-8.4792,-10.88109762,-11.819,1,CMIP5 -1967,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.724483699,17.44171667,19.53493333,18.71475,18.8263,1,CMIP5 -1968,tas,temperature,tgav,historical,C,Simulated,global,0.566499044,12.40981667,14.09013333,13.41491429,13.6105,1,CMIP5 -1968,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.438950042,-12.1289,-8.6238,-10.82722762,-11.6141,1,CMIP5 -1968,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.760046322,17.39536667,19.52383333,18.71136143,18.90948,1,CMIP5 -1969,tas,temperature,tgav,historical,C,Simulated,global,0.604276797,12.3536,13.99133333,13.40466905,13.5787,1,CMIP5 -1969,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.484762543,-12.1736,-8.401,-10.75671429,-11.2226,1,CMIP5 -1969,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.779597285,17.32681667,19.5234,18.68336238,18.87342,1,CMIP5 -1970,tas,temperature,tgav,historical,C,Simulated,global,0.583788793,12.50326667,14.0561,13.46901571,13.57186,1,CMIP5 -1970,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.60235939,-12.45575,-8.3753,-10.73931571,-10.8833,1,CMIP5 -1970,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.773418949,17.45083333,19.6907,18.75733476,18.84816,1,CMIP5 -1971,tas,temperature,tgav,historical,C,Simulated,global,0.56824851,12.51698333,14.12,13.47187333,13.60868,1,CMIP5 -1971,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.388756309,-12.13905,-8.6997,-10.73659667,-11.0877,1,CMIP5 -1971,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.774779506,17.46801667,19.6528,18.76097048,18.93286,1,CMIP5 -1972,tas,temperature,tgav,historical,C,Simulated,global,0.579893521,12.52021667,14.13863333,13.49255857,13.66606,1,CMIP5 -1972,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.52828359,-12.37055,-8.3346,-10.77930048,-11.2287,1,CMIP5 -1972,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.766646707,17.49168333,19.62,18.79586952,19.02142,1,CMIP5 -1973,tas,temperature,tgav,historical,C,Simulated,global,0.60516095,12.56331667,14.18513333,13.57918571,13.6748,1,CMIP5 -1973,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.445420365,-12.2685,-8.3127,-10.63016381,-10.8857,1,CMIP5 -1973,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.76821117,17.53205,19.61116667,18.86830952,18.9999,1,CMIP5 -1974,tas,temperature,tgav,historical,C,Simulated,global,0.608719412,12.57798333,14.24926667,13.55834714,13.67428,1,CMIP5 -1974,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.36207235,-12.11315,-8.49,-10.58808619,-11.3219,1,CMIP5 -1974,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.778844628,17.54018333,19.644,18.83472762,18.97896,1,CMIP5 -1975,tas,temperature,tgav,historical,C,Simulated,global,0.591385197,12.58413333,14.16106667,13.50495286,13.59752,1,CMIP5 -1975,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.512171238,-12.63205,-8.4595,-10.68282714,-11.0145,1,CMIP5 -1975,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.757727291,17.53233333,19.6215,18.7897481,18.90042,1,CMIP5 -1976,tas,temperature,tgav,historical,C,Simulated,global,0.567929242,12.64708333,14.20393333,13.49742952,13.59334,1,CMIP5 -1976,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.347664529,-12.4283,-8.8041,-10.71264714,-11.0294,1,CMIP5 -1976,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.739044822,17.59123333,19.60103333,18.78699238,18.94958,1,CMIP5 -1977,tas,temperature,tgav,historical,C,Simulated,global,0.607114542,12.61653333,14.21246667,13.57261286,13.69624,1,CMIP5 -1977,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.453407735,-12.2775,-8.4131,-10.68528952,-11.1424,1,CMIP5 -1977,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.797581111,17.5965,19.66783333,18.8725219,19.03352,1,CMIP5 -1978,tas,temperature,tgav,historical,C,Simulated,global,0.605968564,12.64025,14.2887,13.64020571,13.68924,1,CMIP5 -1978,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.230226976,-11.88785,-8.5574,-10.4724919,-10.8863,1,CMIP5 -1978,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.788889488,17.61486667,19.7452,18.90908048,19.01838,1,CMIP5 -1979,tas,temperature,tgav,historical,C,Simulated,global,0.55608865,12.76991667,14.40113333,13.66658857,13.73032,1,CMIP5 -1979,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.406003935,-11.8909,-8.1875,-10.4451881,-10.9283,1,CMIP5 -1979,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.743456792,17.73405,19.79073333,18.93489619,19.04734,1,CMIP5 -1980,tas,temperature,tgav,historical,C,Simulated,global,0.573455917,12.73705,14.36453333,13.68759048,13.7718,1,CMIP5 -1980,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.337823918,-11.8816,-8.4147,-10.46223095,-11.2779,1,CMIP5 -1980,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.755411278,17.7153,19.75066667,18.96452952,19.05994,1,CMIP5 -1981,tas,temperature,tgav,historical,C,Simulated,global,0.600400266,12.82776667,14.4269,13.78137238,13.78174,1,CMIP5 -1981,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.310370102,-11.92995,-8.4476,-10.34161857,-10.5137,1,CMIP5 -1981,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.788306558,17.79273333,19.9498,19.05171905,19.0689,1,CMIP5 -1982,tas,temperature,tgav,historical,C,Simulated,global,0.595849814,12.80441667,14.40226667,13.76321619,13.73038,1,CMIP5 -1982,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.237384581,-11.67915,-8.4986,-10.32422476,-10.7326,1,CMIP5 -1982,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.798133881,17.76861667,19.9089,19.02599143,19.00514,1,CMIP5 -1983,tas,temperature,tgav,historical,C,Simulated,global,0.566156687,12.71718333,14.2814,13.62907905,13.7463,1,CMIP5 -1983,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.390993422,-11.96405,-8.0666,-10.43456381,-11.17983333,1,CMIP5 -1983,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.718877769,17.66923333,19.5974,18.88774333,18.94562,1,CMIP5 -1984,tas,temperature,tgav,historical,C,Simulated,global,0.55964792,12.80468333,14.354,13.65611476,13.6866,1,CMIP5 -1984,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.392889458,-12.26025,-8.3933,-10.46982905,-11.00026667,1,CMIP5 -1984,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.709126915,17.77155,19.691,18.9282219,18.97702,1,CMIP5 -1985,tas,temperature,tgav,historical,C,Simulated,global,0.603893212,12.76675,14.41656667,13.7016481,13.77632,1,CMIP5 -1985,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.419317977,-12.178,-8.3254,-10.36585095,-10.8695,1,CMIP5 -1985,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.767352059,17.67613333,19.74726667,18.96006571,19.05836,1,CMIP5 -1986,tas,temperature,tgav,historical,C,Simulated,global,0.617603601,12.78695,14.54046667,13.72500238,13.802,1,CMIP5 -1986,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.32006517,-12.07675,-8.4341,-10.29161429,-10.7385,1,CMIP5 -1986,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.750653437,17.72,19.8184,18.97273286,19.08168,1,CMIP5 -1987,tas,temperature,tgav,historical,C,Simulated,global,0.547029382,12.93335,14.57453333,13.7507819,13.80084,1,CMIP5 -1987,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.365861081,-11.8702,-8.4992,-10.34069286,-10.7978,1,CMIP5 -1987,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.716926464,17.85583333,19.87203333,19.01467667,19.08232,1,CMIP5 -1988,tas,temperature,tgav,historical,C,Simulated,global,0.593274965,12.9746,14.66123333,13.82235619,13.81826,1,CMIP5 -1988,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.291415523,-11.91975,-8.5304,-10.21189714,-10.3571,1,CMIP5 -1988,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.757277693,17.9074,19.93753333,19.07359048,19.1073,1,CMIP5 -1989,tas,temperature,tgav,historical,C,Simulated,global,0.61991336,12.98341667,14.65456667,13.86285476,13.8773,1,CMIP5 -1989,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.213701496,-11.94225,-8.4604,-10.10479905,-10.5285,1,CMIP5 -1989,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.767811176,17.93815,19.93623333,19.10038333,19.1439,1,CMIP5 -1990,tas,temperature,tgav,historical,C,Simulated,global,0.622319614,13.06535,14.7624,13.93818571,13.9454,1,CMIP5 -1990,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.302032298,-11.7437,-8.0003,-9.989303333,-10.41023333,1,CMIP5 -1990,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.802752862,18.00336667,20.01816667,19.16723476,19.22506,1,CMIP5 -1991,tas,temperature,tgav,historical,C,Simulated,global,0.60924112,12.97978333,14.68503333,13.84672095,13.93498,1,CMIP5 -1991,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.357837369,-11.85875,-8.0879,-10.1204419,-10.4627,1,CMIP5 -1991,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.775455778,17.93431667,19.93556667,19.08430048,19.20392,1,CMIP5 -1992,tas,temperature,tgav,historical,C,Simulated,global,0.560236649,12.81908333,14.33606667,13.63375429,13.6909,1,CMIP5 -1992,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.279485358,-11.80675,-8.2071,-10.25110143,-10.71286667,1,CMIP5 -1992,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.688791692,17.74301667,19.56596667,18.85341048,18.95654,1,CMIP5 -1993,tas,temperature,tgav,historical,C,Simulated,global,0.58126713,12.90383333,14.40663333,13.68197524,13.74106,1,CMIP5 -1993,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.438885344,-12.14315,-8.1839,-10.33298048,-10.88323333,1,CMIP5 -1993,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.72782402,17.83773333,19.68686667,18.92945,19.0281,1,CMIP5 -1994,tas,temperature,tgav,historical,C,Simulated,global,0.60106197,12.93786667,14.53496667,13.80986762,13.81244,1,CMIP5 -1994,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.404242423,-11.87175,-7.8044,-10.06345476,-10.6717,1,CMIP5 -1994,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.754626339,17.87208333,19.87696667,19.02689143,19.06804,1,CMIP5 -1995,tas,temperature,tgav,historical,C,Simulated,global,0.611468334,12.9809,14.5855,13.85706714,13.87322,1,CMIP5 -1995,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.286983618,-11.97835,-8.3275,-10.09362429,-10.0849,1,CMIP5 -1995,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.741235431,17.9507,19.89146667,19.0899581,19.12654,1,CMIP5 -1996,tas,temperature,tgav,historical,C,Simulated,global,0.60217325,13.0776,14.6731,13.9373325,13.88143,1,CMIP5 -1996,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.267951378,-11.9242,-8.1268,-9.808249583,-9.814341667,1,CMIP5 -1996,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.727108486,18.0319,19.9678,19.14958125,19.06365,1,CMIP5 -1997,tas,temperature,tgav,historical,C,Simulated,global,0.608510854,13.1573,14.7193,14.0113,13.9707,1,CMIP5 -1997,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.214858924,-11.5434,-8.1302,-9.639814583,-9.593358333,1,CMIP5 -1997,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.760270501,18.10406667,20.1093,19.20213333,19.12525,1,CMIP5 -1998,tas,temperature,tgav,historical,C,Simulated,global,0.555819744,13.223,14.7748,14.0092675,14.03642,1,CMIP5 -1998,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.301306864,-11.5962,-7.9365,-9.634560833,-9.54255,1,CMIP5 -1998,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.710442859,18.16681667,20.03726667,19.19845542,19.19763,1,CMIP5 -1999,tas,temperature,tgav,historical,C,Simulated,global,0.55337443,13.25926667,14.80683333,14.05290625,14.03305,1,CMIP5 -1999,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.275908899,-11.50325,-7.8191,-9.583581667,-9.605741667,1,CMIP5 -1999,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.72810072,18.19575,20.1552,19.24115042,19.19616,1,CMIP5 -2000,tas,temperature,tgav,historical,C,Simulated,global,0.566282485,13.28335,14.89683333,14.09282792,14.07937,1,CMIP5 -2000,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.107365945,-11.2421,-8.1951,-9.546080833,-9.599166667,1,CMIP5 -2000,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.713584751,18.23293333,20.14143333,19.28152583,19.24877,1,CMIP5 -2001,tas,temperature,tgav,historical,C,Simulated,global,0.548691502,13.3628,14.8707,14.1498425,14.25012,1,CMIP5 -2001,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.275720481,-11.425,-7.9677,-9.47711875,-9.550158333,1,CMIP5 -2001,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.682435542,18.28735,20.14623333,19.33553042,19.38663,1,CMIP5 -2002,tas,temperature,tgav,historical,C,Simulated,global,0.526902655,13.44645,14.9216,14.18403375,14.31916,1,CMIP5 -2002,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.277594863,-11.4012,-7.9417,-9.477480833,-9.534883333,1,CMIP5 -2002,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.670536152,18.37476667,20.18543333,19.37740375,19.46854,1,CMIP5 -2003,tas,temperature,tgav,historical,C,Simulated,global,0.549774468,13.42685,14.89156667,14.19163708,14.24214,1,CMIP5 -2003,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.118572496,-11.02805,-8.2355,-9.484599583,-9.482233333,1,CMIP5 -2003,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.716540909,18.34013333,20.15183333,19.38789708,19.40883,1,CMIP5 -2004,tas,temperature,tgav,historical,C,Simulated,global,0.56151199,13.41526667,14.95226667,14.22377917,14.22755,1,CMIP5 -2004,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.194757313,-11.36195,-8.0035,-9.437593333,-9.355508333,1,CMIP5 -2004,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.704022223,18.34925,20.2334,19.4169,19.3984,1,CMIP5 -2005,tas,temperature,tgav,historical,C,Simulated,global,0.593094546,13.4988,15.046,14.32213292,14.32274,1,CMIP5 -2005,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.13818592,-11.34915,-8.1546,-9.346887917,-9.16475,1,CMIP5 -2005,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.752197196,18.42595,20.3819,19.51736167,19.51078,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp26/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp26/ensemble_mean_model.csv deleted file mode 100644 index befb09588..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp26/ensemble_mean_model.csv +++ /dev/null @@ -1,4399 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",14.998 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",14.9917 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",15.0656 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",15.0655 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",15.1275 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",15.1439 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",15.049 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",15.142 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",15.1207 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",15.1263 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",15.1433 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",15.2088 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",15.0879 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",15.0626 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",15.128 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",15.1259 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",15.2292 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",15.401 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",15.2584 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",15.31 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",15.4393 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",15.5975 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",15.5142 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",15.4695 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",15.4735 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",15.4364 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",15.4983 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",15.4847 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",15.5066 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",15.5574 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",15.5628 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",15.6303 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",15.7259 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",15.6608 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",15.6173 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",15.5366 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",15.455 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",15.3884 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",15.4618 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",15.5385 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",15.5132 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",15.5904 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",15.526 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",15.5542 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",15.625 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",15.5944 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",15.4723 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",15.3875 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",15.5216 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",15.5935 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",15.4656 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",15.5707 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",15.6155 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",15.6427 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",15.7998 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",15.7259 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",15.6844 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",15.8168 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",15.7126 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",15.7035 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",15.7219 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",15.6488000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",15.68 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",15.5232 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",15.5449 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",15.5276 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",15.5999 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",15.4922 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",15.5392000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",15.5298 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",15.5171 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",15.4936 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",15.5792 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",15.5108 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",15.6208 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",15.5457 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",15.5329 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",15.4641 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",15.5383 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",15.3533 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",15.4511 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",15.3886 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",15.4724000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",15.5623000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",15.5106 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",15.5362 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",15.6005 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",15.6236 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",15.5507 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",15.6075 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",15.7448 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",15.7515 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",15.7737 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",15.7053 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",15.7224000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2101,"Simulated","C","global",15.6977 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2102,"Simulated","C","global",15.8002 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2103,"Simulated","C","global",15.7404 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2104,"Simulated","C","global",15.7102 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2105,"Simulated","C","global",15.5237 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2106,"Simulated","C","global",15.6758 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2107,"Simulated","C","global",15.5994 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2108,"Simulated","C","global",15.4764 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2109,"Simulated","C","global",15.4783 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2110,"Simulated","C","global",15.5227 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2111,"Simulated","C","global",15.5187 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2112,"Simulated","C","global",15.5165 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2113,"Simulated","C","global",15.5714 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2114,"Simulated","C","global",15.4222 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2115,"Simulated","C","global",15.4396 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2116,"Simulated","C","global",15.5134 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2117,"Simulated","C","global",15.5343 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2118,"Simulated","C","global",15.6827 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2119,"Simulated","C","global",15.6366 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2120,"Simulated","C","global",15.5324 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2121,"Simulated","C","global",15.5958 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2122,"Simulated","C","global",15.7147000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2123,"Simulated","C","global",15.5232 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2124,"Simulated","C","global",15.5201 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2125,"Simulated","C","global",15.6324 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2126,"Simulated","C","global",15.4332 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2127,"Simulated","C","global",15.4888 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2128,"Simulated","C","global",15.5877 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2129,"Simulated","C","global",15.5059 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2130,"Simulated","C","global",15.5062 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2131,"Simulated","C","global",15.4497 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2132,"Simulated","C","global",15.4226 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2133,"Simulated","C","global",15.4306 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2134,"Simulated","C","global",15.3056 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2135,"Simulated","C","global",15.4355 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2136,"Simulated","C","global",15.3014 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2137,"Simulated","C","global",15.2489 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2138,"Simulated","C","global",15.3553 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2139,"Simulated","C","global",15.3443 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2140,"Simulated","C","global",15.376 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2141,"Simulated","C","global",15.4697 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2142,"Simulated","C","global",15.4288 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2143,"Simulated","C","global",15.5016 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2144,"Simulated","C","global",15.4944 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2145,"Simulated","C","global",15.5325 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2146,"Simulated","C","global",15.5231 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2147,"Simulated","C","global",15.4538 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2148,"Simulated","C","global",15.5213 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2149,"Simulated","C","global",15.5312 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2150,"Simulated","C","global",15.5054 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2151,"Simulated","C","global",15.4946 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2152,"Simulated","C","global",15.4568 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2153,"Simulated","C","global",15.4566 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2154,"Simulated","C","global",15.4263 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2155,"Simulated","C","global",15.395 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2156,"Simulated","C","global",15.5369 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2157,"Simulated","C","global",15.6054 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2158,"Simulated","C","global",15.4522 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2159,"Simulated","C","global",15.425 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2160,"Simulated","C","global",15.5633 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2161,"Simulated","C","global",15.5555 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2162,"Simulated","C","global",15.4833 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2163,"Simulated","C","global",15.4239 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2164,"Simulated","C","global",15.429 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2165,"Simulated","C","global",15.4031 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2166,"Simulated","C","global",15.5324 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2167,"Simulated","C","global",15.5005 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2168,"Simulated","C","global",15.5014 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2169,"Simulated","C","global",15.4068 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2170,"Simulated","C","global",15.4356 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2171,"Simulated","C","global",15.3777 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2172,"Simulated","C","global",15.4007 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2173,"Simulated","C","global",15.3738 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2174,"Simulated","C","global",15.3749 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2175,"Simulated","C","global",15.2309 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2176,"Simulated","C","global",15.2801 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2177,"Simulated","C","global",15.3137 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2178,"Simulated","C","global",15.2975 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2179,"Simulated","C","global",15.4362 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2180,"Simulated","C","global",15.3838 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2181,"Simulated","C","global",15.3834 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2182,"Simulated","C","global",15.4397 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2183,"Simulated","C","global",15.4708 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2184,"Simulated","C","global",15.2959 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2185,"Simulated","C","global",15.371 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2186,"Simulated","C","global",15.3206 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2187,"Simulated","C","global",15.3647 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2188,"Simulated","C","global",15.301 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2189,"Simulated","C","global",15.2585 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2190,"Simulated","C","global",15.432 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2191,"Simulated","C","global",15.3022 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2192,"Simulated","C","global",15.2293 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2193,"Simulated","C","global",15.281 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2194,"Simulated","C","global",15.3624 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2195,"Simulated","C","global",15.3429 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2196,"Simulated","C","global",15.3918 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2197,"Simulated","C","global",15.3051 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2198,"Simulated","C","global",15.436 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2199,"Simulated","C","global",15.4176 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2200,"Simulated","C","global",15.4029 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2201,"Simulated","C","global",15.4362 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2202,"Simulated","C","global",15.3309 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2203,"Simulated","C","global",15.3108 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2204,"Simulated","C","global",15.2795 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2205,"Simulated","C","global",15.4014 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2206,"Simulated","C","global",15.2826 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2207,"Simulated","C","global",15.4447 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2208,"Simulated","C","global",15.4475 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2209,"Simulated","C","global",15.433 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2210,"Simulated","C","global",15.4158 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2211,"Simulated","C","global",15.2829 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2212,"Simulated","C","global",15.3047 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2213,"Simulated","C","global",15.2668 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2214,"Simulated","C","global",15.3197 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2215,"Simulated","C","global",15.3954 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2216,"Simulated","C","global",15.3296 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2217,"Simulated","C","global",15.3973 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2218,"Simulated","C","global",15.4296000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2219,"Simulated","C","global",15.2365 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2220,"Simulated","C","global",15.4022000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2221,"Simulated","C","global",15.286 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2222,"Simulated","C","global",15.2831 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2223,"Simulated","C","global",15.3443 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2224,"Simulated","C","global",15.2341 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2225,"Simulated","C","global",15.3387 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2226,"Simulated","C","global",15.2676 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2227,"Simulated","C","global",15.3528 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2228,"Simulated","C","global",15.1539 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2229,"Simulated","C","global",15.2521 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2230,"Simulated","C","global",15.2525 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2231,"Simulated","C","global",15.2148 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2232,"Simulated","C","global",15.3061 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2233,"Simulated","C","global",15.232 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2234,"Simulated","C","global",15.1557 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2235,"Simulated","C","global",15.2494 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2236,"Simulated","C","global",15.314 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2237,"Simulated","C","global",15.2904 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2238,"Simulated","C","global",15.3076 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2239,"Simulated","C","global",15.2922 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2240,"Simulated","C","global",15.3404 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2241,"Simulated","C","global",15.1894 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2242,"Simulated","C","global",15.3013 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2243,"Simulated","C","global",15.2416 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2244,"Simulated","C","global",15.2659 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2245,"Simulated","C","global",15.2654 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2246,"Simulated","C","global",15.265 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2247,"Simulated","C","global",15.2827 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2248,"Simulated","C","global",15.2555 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2249,"Simulated","C","global",15.2399 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2250,"Simulated","C","global",15.1927 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2251,"Simulated","C","global",15.2282 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2252,"Simulated","C","global",15.1797 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2253,"Simulated","C","global",15.1414 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2254,"Simulated","C","global",15.2195 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2255,"Simulated","C","global",15.2308 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2256,"Simulated","C","global",15.2977 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2257,"Simulated","C","global",15.2158 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2258,"Simulated","C","global",15.2795 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2259,"Simulated","C","global",15.208 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2260,"Simulated","C","global",15.3127 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2261,"Simulated","C","global",15.2851 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2262,"Simulated","C","global",15.215 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2263,"Simulated","C","global",15.187 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2264,"Simulated","C","global",15.0773 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2265,"Simulated","C","global",15.1068 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2266,"Simulated","C","global",15.1456 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2267,"Simulated","C","global",15.1507 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2268,"Simulated","C","global",15.163 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2269,"Simulated","C","global",15.222 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2270,"Simulated","C","global",15.1975 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2271,"Simulated","C","global",15.2284 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2272,"Simulated","C","global",15.3257 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2273,"Simulated","C","global",15.2956 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2274,"Simulated","C","global",15.3143 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2275,"Simulated","C","global",15.4038 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2276,"Simulated","C","global",15.3441 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2277,"Simulated","C","global",15.3593 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2278,"Simulated","C","global",15.3099 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2279,"Simulated","C","global",15.3896 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2280,"Simulated","C","global",15.3367 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2281,"Simulated","C","global",15.2068 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2282,"Simulated","C","global",15.2474 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2283,"Simulated","C","global",15.242 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2284,"Simulated","C","global",15.2721 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2285,"Simulated","C","global",15.2034 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2286,"Simulated","C","global",15.194 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2287,"Simulated","C","global",15.227 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2288,"Simulated","C","global",15.1369 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2289,"Simulated","C","global",15.1675 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2290,"Simulated","C","global",15.3077 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2291,"Simulated","C","global",15.1323 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2292,"Simulated","C","global",15.1616 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2293,"Simulated","C","global",15.1612 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2294,"Simulated","C","global",15.1613 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2295,"Simulated","C","global",15.2684 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2296,"Simulated","C","global",15.0711 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2297,"Simulated","C","global",15.176 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2298,"Simulated","C","global",15.2178 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2299,"Simulated","C","global",15.157 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2300,"Simulated","C","global",15.1262 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-10.3693 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-10.207 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-9.77599999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-10.0412 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-9.87809999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-9.90499999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-10.1953 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-9.79539999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-10.1273 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-10.1174999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-10.076 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-10.1194 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-10.1645 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-10.8698 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-10.4158 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-10.4621 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-10.235 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-9.81359999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-9.98149999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-9.84439999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-9.21779999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-8.81879999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-9.24109999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-9.50139999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-9.33449999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-9.15619999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-9.38619999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-9.15109999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-9.12469999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-9.41329999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-9.44159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-9.26839999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-9.0745 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-8.96979999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-9.14339999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-9.3168 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-9.38509999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-9.76669999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-9.5686 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-9.46099999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-9.58609999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-9.23999999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-9.10519999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-9.03039999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-9.33099999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-9.59049999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-9.84309999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-10.0315 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-9.65409999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-9.34889999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-9.77959999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-9.67140000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-9.1721 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-8.99179999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-8.48699999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-8.60589999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-8.74519999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-8.43199999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-8.67789999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-8.8537 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-8.61739999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-9.26239999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-9.1404 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-9.71749999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-9.62359999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-9.22389999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-9.28189999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-9.70169999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-9.32729999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-9.45489999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-9.48509999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-9.58009999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-9.65009999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-9.7466 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-9.30029999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-9.31899999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-9.21529999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-9.51179999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-9.75149999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-9.5958 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-9.5256 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-9.62849999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-9.66649999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-9.25819999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-9.02459999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-9.41079999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-8.9205 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-8.95389999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-9.04089999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-9.16139999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-8.46389999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-8.43509999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-8.45839999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-8.53679999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-8.87369999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2101,"Simulated","C","HL",-8.33179999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2102,"Simulated","C","HL",-8.6474 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2103,"Simulated","C","HL",-8.5761 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2104,"Simulated","C","HL",-9.02289999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2105,"Simulated","C","HL",-9.58419999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2106,"Simulated","C","HL",-9.16159999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2107,"Simulated","C","HL",-8.95279999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2108,"Simulated","C","HL",-9.68419999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2109,"Simulated","C","HL",-9.98969999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2110,"Simulated","C","HL",-9.31989999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2111,"Simulated","C","HL",-9.26259999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2112,"Simulated","C","HL",-9.63479999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2113,"Simulated","C","HL",-9.18399999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2114,"Simulated","C","HL",-9.64659999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2115,"Simulated","C","HL",-9.55029999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2116,"Simulated","C","HL",-9.16809999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2117,"Simulated","C","HL",-9.10879999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2118,"Simulated","C","HL",-9.09679999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2119,"Simulated","C","HL",-8.72049999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2120,"Simulated","C","HL",-9.03949999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2121,"Simulated","C","HL",-9.3843 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2122,"Simulated","C","HL",-8.53449999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2123,"Simulated","C","HL",-9.29789999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2124,"Simulated","C","HL",-9.64919999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2125,"Simulated","C","HL",-8.99029999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2126,"Simulated","C","HL",-9.66049999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2127,"Simulated","C","HL",-9.69669999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2128,"Simulated","C","HL",-9.47399999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2129,"Simulated","C","HL",-9.36699999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2130,"Simulated","C","HL",-9.2287 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2131,"Simulated","C","HL",-9.43680000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2132,"Simulated","C","HL",-9.75289999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2133,"Simulated","C","HL",-9.53249999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2134,"Simulated","C","HL",-9.9776 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2135,"Simulated","C","HL",-9.52529999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2136,"Simulated","C","HL",-9.73409999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2137,"Simulated","C","HL",-10.2571 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2138,"Simulated","C","HL",-9.81329999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2139,"Simulated","C","HL",-9.23409999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2140,"Simulated","C","HL",-9.09879999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2141,"Simulated","C","HL",-8.96279999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2142,"Simulated","C","HL",-9.4726 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2143,"Simulated","C","HL",-9.44479999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2144,"Simulated","C","HL",-9.23469999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2145,"Simulated","C","HL",-9.22929999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2146,"Simulated","C","HL",-9.19079999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2147,"Simulated","C","HL",-8.98919999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2148,"Simulated","C","HL",-9.2432 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2149,"Simulated","C","HL",-9.08499999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2150,"Simulated","C","HL",-8.92499999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2151,"Simulated","C","HL",-8.98819999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2152,"Simulated","C","HL",-9.74930000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2153,"Simulated","C","HL",-9.62219999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2154,"Simulated","C","HL",-9.6927 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2155,"Simulated","C","HL",-9.43689999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2156,"Simulated","C","HL",-9.2747 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2157,"Simulated","C","HL",-9.42079999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2158,"Simulated","C","HL",-9.38069999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2159,"Simulated","C","HL",-9.71849999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2160,"Simulated","C","HL",-9.40179999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2161,"Simulated","C","HL",-9.1909 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2162,"Simulated","C","HL",-9.3116 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2163,"Simulated","C","HL",-9.80149999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2164,"Simulated","C","HL",-9.39759999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2165,"Simulated","C","HL",-9.37 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2166,"Simulated","C","HL",-9.16219999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2167,"Simulated","C","HL",-9.56529999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2168,"Simulated","C","HL",-9.32509999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2169,"Simulated","C","HL",-9.5258 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2170,"Simulated","C","HL",-9.83569999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2171,"Simulated","C","HL",-9.7756 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2172,"Simulated","C","HL",-9.29699999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2173,"Simulated","C","HL",-9.60389999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2174,"Simulated","C","HL",-9.75129999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2175,"Simulated","C","HL",-9.97289999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2176,"Simulated","C","HL",-10.2317 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2177,"Simulated","C","HL",-10.1949 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2178,"Simulated","C","HL",-10.1169 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2179,"Simulated","C","HL",-9.24930000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2180,"Simulated","C","HL",-9.30369999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2181,"Simulated","C","HL",-9.39299999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2182,"Simulated","C","HL",-9.35399999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2183,"Simulated","C","HL",-9.38509999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2184,"Simulated","C","HL",-9.7604 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2185,"Simulated","C","HL",-9.88 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2186,"Simulated","C","HL",-9.74439999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2187,"Simulated","C","HL",-9.53319999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2188,"Simulated","C","HL",-9.98699999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2189,"Simulated","C","HL",-10.3269 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2190,"Simulated","C","HL",-9.44439999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2191,"Simulated","C","HL",-9.9898 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2192,"Simulated","C","HL",-9.96949999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2193,"Simulated","C","HL",-9.51429999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2194,"Simulated","C","HL",-9.21659999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2195,"Simulated","C","HL",-9.41319999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2196,"Simulated","C","HL",-9.6524 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2197,"Simulated","C","HL",-9.78099999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2198,"Simulated","C","HL",-9.62189999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2199,"Simulated","C","HL",-9.31699999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2200,"Simulated","C","HL",-9.14729999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2201,"Simulated","C","HL",-9.05609999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2202,"Simulated","C","HL",-9.03389999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2203,"Simulated","C","HL",-9.48239999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2204,"Simulated","C","HL",-9.7407 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2205,"Simulated","C","HL",-9.39349999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2206,"Simulated","C","HL",-9.39869999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2207,"Simulated","C","HL",-9.15379999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2208,"Simulated","C","HL",-9.2124 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2209,"Simulated","C","HL",-8.9436 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2210,"Simulated","C","HL",-9.23809999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2211,"Simulated","C","HL",-9.41109999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2212,"Simulated","C","HL",-9.89679999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2213,"Simulated","C","HL",-9.78729999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2214,"Simulated","C","HL",-9.36449999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2215,"Simulated","C","HL",-9.48589999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2216,"Simulated","C","HL",-9.44159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2217,"Simulated","C","HL",-9.37219999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2218,"Simulated","C","HL",-9.20739999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2219,"Simulated","C","HL",-9.9194 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2220,"Simulated","C","HL",-9.64509999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2221,"Simulated","C","HL",-9.8021 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2222,"Simulated","C","HL",-9.79479999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2223,"Simulated","C","HL",-9.66209999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2224,"Simulated","C","HL",-9.7484 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2225,"Simulated","C","HL",-9.4307 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2226,"Simulated","C","HL",-9.70299999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2227,"Simulated","C","HL",-9.4151 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2228,"Simulated","C","HL",-9.91879999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2229,"Simulated","C","HL",-9.5172 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2230,"Simulated","C","HL",-9.714 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2231,"Simulated","C","HL",-9.99469999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2232,"Simulated","C","HL",-9.90119999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2233,"Simulated","C","HL",-9.863 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2234,"Simulated","C","HL",-10.0127 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2235,"Simulated","C","HL",-9.95699999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2236,"Simulated","C","HL",-9.82619999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2237,"Simulated","C","HL",-9.75779999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2238,"Simulated","C","HL",-9.50700000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2239,"Simulated","C","HL",-9.74509999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2240,"Simulated","C","HL",-9.9128 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2241,"Simulated","C","HL",-9.9194 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2242,"Simulated","C","HL",-9.77209999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2243,"Simulated","C","HL",-10.0198 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2244,"Simulated","C","HL",-10.1942 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2245,"Simulated","C","HL",-9.76839999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2246,"Simulated","C","HL",-9.83929999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2247,"Simulated","C","HL",-9.76189999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2248,"Simulated","C","HL",-9.63419999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2249,"Simulated","C","HL",-9.48499999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2250,"Simulated","C","HL",-9.77269999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2251,"Simulated","C","HL",-9.61249999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2252,"Simulated","C","HL",-9.97989999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2253,"Simulated","C","HL",-10.0132 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2254,"Simulated","C","HL",-9.63689999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2255,"Simulated","C","HL",-9.48669999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2256,"Simulated","C","HL",-9.36879999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2257,"Simulated","C","HL",-9.78209999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2258,"Simulated","C","HL",-9.35299999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2259,"Simulated","C","HL",-9.55309999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2260,"Simulated","C","HL",-9.45919999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2261,"Simulated","C","HL",-9.90799999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2262,"Simulated","C","HL",-10.1163 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2263,"Simulated","C","HL",-9.95859999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2264,"Simulated","C","HL",-10.3477 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2265,"Simulated","C","HL",-10.2294 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2266,"Simulated","C","HL",-10.3738 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2267,"Simulated","C","HL",-10.0215 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2268,"Simulated","C","HL",-9.9298 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2269,"Simulated","C","HL",-9.8288 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2270,"Simulated","C","HL",-9.82329999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2271,"Simulated","C","HL",-9.58589999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2272,"Simulated","C","HL",-8.9812 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2273,"Simulated","C","HL",-9.1823 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2274,"Simulated","C","HL",-9.25119999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2275,"Simulated","C","HL",-9.3372 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2276,"Simulated","C","HL",-9.27809999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2277,"Simulated","C","HL",-9.4864 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2278,"Simulated","C","HL",-9.48109999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2279,"Simulated","C","HL",-9.19279999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2280,"Simulated","C","HL",-9.66679999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2281,"Simulated","C","HL",-10.1478 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2282,"Simulated","C","HL",-9.5575 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2283,"Simulated","C","HL",-9.67419999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2284,"Simulated","C","HL",-9.38029999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2285,"Simulated","C","HL",-9.6746 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2286,"Simulated","C","HL",-9.7833 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2287,"Simulated","C","HL",-9.5059 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2288,"Simulated","C","HL",-9.81039999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2289,"Simulated","C","HL",-9.57009999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2290,"Simulated","C","HL",-9.34879999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2291,"Simulated","C","HL",-9.51769999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2292,"Simulated","C","HL",-9.72239999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2293,"Simulated","C","HL",-9.86989999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2294,"Simulated","C","HL",-9.82239999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2295,"Simulated","C","HL",-9.62729999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2296,"Simulated","C","HL",-10.0953 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2297,"Simulated","C","HL",-9.87529999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2298,"Simulated","C","HL",-9.99789999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2299,"Simulated","C","HL",-9.89919999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2300,"Simulated","C","HL",-9.98229999999995 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",20.2945 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",20.2529 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",20.2523 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",20.3075 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",20.3484 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",20.3738 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",20.3197 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",20.3486 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",20.3922 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",20.3969 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",20.4088 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",20.497 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",20.3604 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",20.477 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",20.4612 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",20.4684 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",20.5458 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",20.6656 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",20.5282 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",20.562 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",20.5875 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",20.6954 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",20.6828 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",20.6832 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",20.6531 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",20.5711 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",20.6939 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",20.6283 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",20.6493 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",20.771 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",20.7834 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",20.8289 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",20.9039 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",20.8033 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",20.787 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",20.7257 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",20.6414 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",20.6406 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",20.6879 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",20.7581 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",20.7537 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",20.7747 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",20.6687 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",20.6871 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",20.8356 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",20.8527 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",20.7579 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",20.6946 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",20.7781 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",20.8012 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",20.7365 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",20.8409 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",20.7908 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",20.7861 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",20.8706 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",20.8061 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",20.785 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",20.8797 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",20.805 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",20.8308 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",20.8037 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",20.85 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",20.8623 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",20.7932 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",20.7998 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",20.6954 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",20.7949 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",20.7524 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",20.731 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",20.7463 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",20.7373 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",20.7287 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",20.8468 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",20.7842 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",20.824 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",20.7372 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",20.7001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",20.6789 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",20.8185 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",20.5624 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",20.6659 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",20.6119 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",20.7211 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",20.7445 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",20.6333 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",20.7448 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",20.7202 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",20.7551 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",20.6851 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",20.7789 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",20.7993 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",20.8013 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",20.8331 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",20.7668 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",20.8577 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2101,"Simulated","C","LL",20.7148 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2102,"Simulated","C","LL",20.9046 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2103,"Simulated","C","LL",20.8174 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2104,"Simulated","C","LL",20.8742 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2105,"Simulated","C","LL",20.7659 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2106,"Simulated","C","LL",20.8615 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2107,"Simulated","C","LL",20.7256 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2108,"Simulated","C","LL",20.7296 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2109,"Simulated","C","LL",20.7957 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2110,"Simulated","C","LL",20.7096 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2111,"Simulated","C","LL",20.6928 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2112,"Simulated","C","LL",20.7678 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2113,"Simulated","C","LL",20.74 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2114,"Simulated","C","LL",20.6562 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2115,"Simulated","C","LL",20.6572 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2116,"Simulated","C","LL",20.6667 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2117,"Simulated","C","LL",20.6795 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2118,"Simulated","C","LL",20.8564 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2119,"Simulated","C","LL",20.7221 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2120,"Simulated","C","LL",20.6627 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2121,"Simulated","C","LL",20.8114 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2122,"Simulated","C","LL",20.7777 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2123,"Simulated","C","LL",20.7056 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2124,"Simulated","C","LL",20.7751 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2125,"Simulated","C","LL",20.7733 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2126,"Simulated","C","LL",20.6725 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2127,"Simulated","C","LL",20.7473 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2128,"Simulated","C","LL",20.8203 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2129,"Simulated","C","LL",20.6991 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2130,"Simulated","C","LL",20.6706 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2131,"Simulated","C","LL",20.6457 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2132,"Simulated","C","LL",20.679 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2133,"Simulated","C","LL",20.6426 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2134,"Simulated","C","LL",20.5845 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2135,"Simulated","C","LL",20.6471 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2136,"Simulated","C","LL",20.5285 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2137,"Simulated","C","LL",20.5743000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2138,"Simulated","C","LL",20.6103 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2139,"Simulated","C","LL",20.476 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2140,"Simulated","C","LL",20.4861 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2141,"Simulated","C","LL",20.5709 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2142,"Simulated","C","LL",20.6279 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2143,"Simulated","C","LL",20.7102 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2144,"Simulated","C","LL",20.6576 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2145,"Simulated","C","LL",20.7024 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2146,"Simulated","C","LL",20.6831 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2147,"Simulated","C","LL",20.5572 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2148,"Simulated","C","LL",20.6919 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2149,"Simulated","C","LL",20.6708 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2150,"Simulated","C","LL",20.6062 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2151,"Simulated","C","LL",20.6063 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2152,"Simulated","C","LL",20.7195 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2153,"Simulated","C","LL",20.6928 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2154,"Simulated","C","LL",20.6709 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2155,"Simulated","C","LL",20.5797 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2156,"Simulated","C","LL",20.7173 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2157,"Simulated","C","LL",20.8306 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2158,"Simulated","C","LL",20.637 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2159,"Simulated","C","LL",20.6746 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2160,"Simulated","C","LL",20.7758 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2161,"Simulated","C","LL",20.7223 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2162,"Simulated","C","LL",20.6602 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2163,"Simulated","C","LL",20.6907 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2164,"Simulated","C","LL",20.6125 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2165,"Simulated","C","LL",20.5754 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2166,"Simulated","C","LL",20.6884 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2167,"Simulated","C","LL",20.734 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2168,"Simulated","C","LL",20.6849 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2169,"Simulated","C","LL",20.6124 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2170,"Simulated","C","LL",20.712 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2171,"Simulated","C","LL",20.6294 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2172,"Simulated","C","LL",20.5573 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2173,"Simulated","C","LL",20.5889 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2174,"Simulated","C","LL",20.621 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2175,"Simulated","C","LL",20.4932 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2176,"Simulated","C","LL",20.6067 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2177,"Simulated","C","LL",20.6396 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2178,"Simulated","C","LL",20.6038 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2179,"Simulated","C","LL",20.5903 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2180,"Simulated","C","LL",20.5383 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2181,"Simulated","C","LL",20.5564 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2182,"Simulated","C","LL",20.6164 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2183,"Simulated","C","LL",20.6605 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2184,"Simulated","C","LL",20.5274 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2185,"Simulated","C","LL",20.6432 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2186,"Simulated","C","LL",20.5539 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2187,"Simulated","C","LL",20.5631 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2188,"Simulated","C","LL",20.5808 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2189,"Simulated","C","LL",20.6004 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2190,"Simulated","C","LL",20.6259 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2191,"Simulated","C","LL",20.5829 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2192,"Simulated","C","LL",20.4905 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2193,"Simulated","C","LL",20.4579 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2194,"Simulated","C","LL",20.4942 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2195,"Simulated","C","LL",20.5118000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2196,"Simulated","C","LL",20.6207 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2197,"Simulated","C","LL",20.5428 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2198,"Simulated","C","LL",20.6678 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2199,"Simulated","C","LL",20.5820000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2200,"Simulated","C","LL",20.5287 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2201,"Simulated","C","LL",20.5499 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2202,"Simulated","C","LL",20.418 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2203,"Simulated","C","LL",20.4873 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2204,"Simulated","C","LL",20.5034 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2205,"Simulated","C","LL",20.5783 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2206,"Simulated","C","LL",20.4358 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2207,"Simulated","C","LL",20.5806 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2208,"Simulated","C","LL",20.5963 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2209,"Simulated","C","LL",20.5225 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2210,"Simulated","C","LL",20.5632 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2211,"Simulated","C","LL",20.4387 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2212,"Simulated","C","LL",20.5665 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2213,"Simulated","C","LL",20.4979 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2214,"Simulated","C","LL",20.4735 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2215,"Simulated","C","LL",20.5903 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2216,"Simulated","C","LL",20.5015 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2217,"Simulated","C","LL",20.5689 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2218,"Simulated","C","LL",20.5735 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2219,"Simulated","C","LL",20.4887 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2220,"Simulated","C","LL",20.6318 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2221,"Simulated","C","LL",20.5242 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2222,"Simulated","C","LL",20.5191 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2223,"Simulated","C","LL",20.5653 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2224,"Simulated","C","LL",20.4502 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2225,"Simulated","C","LL",20.5103 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2226,"Simulated","C","LL",20.4812 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2227,"Simulated","C","LL",20.524 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2228,"Simulated","C","LL",20.3887 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2229,"Simulated","C","LL",20.4236 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2230,"Simulated","C","LL",20.4653 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2231,"Simulated","C","LL",20.4782 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2232,"Simulated","C","LL",20.5691 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2233,"Simulated","C","LL",20.4715 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2234,"Simulated","C","LL",20.4105 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2235,"Simulated","C","LL",20.5122 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2236,"Simulated","C","LL",20.5629 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2237,"Simulated","C","LL",20.5202 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2238,"Simulated","C","LL",20.4886 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2239,"Simulated","C","LL",20.5198 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2240,"Simulated","C","LL",20.613 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2241,"Simulated","C","LL",20.4319 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2242,"Simulated","C","LL",20.5363 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2243,"Simulated","C","LL",20.5159 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2244,"Simulated","C","LL",20.5817 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2245,"Simulated","C","LL",20.4922 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2246,"Simulated","C","LL",20.5065 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2247,"Simulated","C","LL",20.5117 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2248,"Simulated","C","LL",20.4522 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2249,"Simulated","C","LL",20.4021 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2250,"Simulated","C","LL",20.4052 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2251,"Simulated","C","LL",20.4146 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2252,"Simulated","C","LL",20.4328 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2253,"Simulated","C","LL",20.3934 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2254,"Simulated","C","LL",20.4092 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2255,"Simulated","C","LL",20.3916 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2256,"Simulated","C","LL",20.4479 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2257,"Simulated","C","LL",20.4351 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2258,"Simulated","C","LL",20.4225 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2259,"Simulated","C","LL",20.3778 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2260,"Simulated","C","LL",20.4848 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2261,"Simulated","C","LL",20.5451 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2262,"Simulated","C","LL",20.5039 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2263,"Simulated","C","LL",20.4372 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2264,"Simulated","C","LL",20.3858 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2265,"Simulated","C","LL",20.3967 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2266,"Simulated","C","LL",20.4737 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2267,"Simulated","C","LL",20.4063 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2268,"Simulated","C","LL",20.4021 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2269,"Simulated","C","LL",20.4523 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2270,"Simulated","C","LL",20.4216 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2271,"Simulated","C","LL",20.4093 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2272,"Simulated","C","LL",20.4008 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2273,"Simulated","C","LL",20.4063 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2274,"Simulated","C","LL",20.4433 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2275,"Simulated","C","LL",20.5694 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2276,"Simulated","C","LL",20.4849 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2277,"Simulated","C","LL",20.5468 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2278,"Simulated","C","LL",20.486 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2279,"Simulated","C","LL",20.5222 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2280,"Simulated","C","LL",20.5571 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2281,"Simulated","C","LL",20.5005 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2282,"Simulated","C","LL",20.4264 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2283,"Simulated","C","LL",20.4442 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2284,"Simulated","C","LL",20.4193 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2285,"Simulated","C","LL",20.3976 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2286,"Simulated","C","LL",20.409 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2287,"Simulated","C","LL",20.391 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2288,"Simulated","C","LL",20.3457 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2289,"Simulated","C","LL",20.3325 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2290,"Simulated","C","LL",20.4556 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2291,"Simulated","C","LL",20.2789 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2292,"Simulated","C","LL",20.3571 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2293,"Simulated","C","LL",20.3875 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2294,"Simulated","C","LL",20.3776 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2295,"Simulated","C","LL",20.4663 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2296,"Simulated","C","LL",20.3256 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2297,"Simulated","C","LL",20.4064 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2298,"Simulated","C","LL",20.4826 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2299,"Simulated","C","LL",20.3884 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2300,"Simulated","C","LL",20.3685 -"CanESM2","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",15.1858 -"CanESM2","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",14.9176 -"CanESM2","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",14.7579 -"CanESM2","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",14.7689 -"CanESM2","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",14.8886 -"CanESM2","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",15.0695 -"CanESM2","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",15.1438 -"CanESM2","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",15.1515 -"CanESM2","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",15.1344 -"CanESM2","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",15.1923 -"CanESM2","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",15.1825 -"CanESM2","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",15.2724 -"CanESM2","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",15.4565 -"CanESM2","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",15.4234 -"CanESM2","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",15.4341 -"CanESM2","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",15.3891 -"CanESM2","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",15.4565 -"CanESM2","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",15.5324 -"CanESM2","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",15.3661 -"CanESM2","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",15.3253 -"CanESM2","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",15.422 -"CanESM2","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",15.4712 -"CanESM2","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",15.6887 -"CanESM2","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",15.6617 -"CanESM2","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",15.5039 -"CanESM2","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",15.3722 -"CanESM2","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",15.555 -"CanESM2","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",15.8136 -"CanESM2","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",15.8346 -"CanESM2","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",15.7996 -"CanESM2","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",15.9293 -"CanESM2","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",15.8727 -"CanESM2","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",15.8249 -"CanESM2","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",15.5941 -"CanESM2","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",15.8224 -"CanESM2","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",15.8607 -"CanESM2","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",15.9526 -"CanESM2","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",16.0129 -"CanESM2","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",15.8219 -"CanESM2","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",15.6644 -"CanESM2","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",15.8181 -"CanESM2","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",15.8824 -"CanESM2","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",15.9735 -"CanESM2","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",16.1257 -"CanESM2","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",16.2758 -"CanESM2","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",15.8891 -"CanESM2","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",15.7736 -"CanESM2","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",15.9926 -"CanESM2","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",15.9947 -"CanESM2","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",16.0227 -"CanESM2","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",15.8753 -"CanESM2","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",15.9023 -"CanESM2","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",16.1681 -"CanESM2","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",16.1314 -"CanESM2","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",16.0449 -"CanESM2","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",16.089 -"CanESM2","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",15.9401 -"CanESM2","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",15.968 -"CanESM2","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",15.9982 -"CanESM2","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",16.1107 -"CanESM2","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",16.29 -"CanESM2","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",16.1651 -"CanESM2","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",15.8125 -"CanESM2","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",15.8012 -"CanESM2","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",15.976 -"CanESM2","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",15.9381 -"CanESM2","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",15.9808 -"CanESM2","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",15.9687 -"CanESM2","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",15.7868 -"CanESM2","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",15.8299 -"CanESM2","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",15.8381 -"CanESM2","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",15.914 -"CanESM2","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",15.9068 -"CanESM2","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",15.9526 -"CanESM2","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",15.8804 -"CanESM2","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",15.6931 -"CanESM2","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",16.0172 -"CanESM2","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",15.959 -"CanESM2","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",15.9075 -"CanESM2","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",15.9147 -"CanESM2","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",16.0861 -"CanESM2","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",15.9505 -"CanESM2","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",16.0173 -"CanESM2","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",16.1093 -"CanESM2","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",16.2508 -"CanESM2","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",15.8455 -"CanESM2","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",15.7355 -"CanESM2","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",15.823 -"CanESM2","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",16.0905 -"CanESM2","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",16.0315000000001 -"CanESM2","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",15.903 -"CanESM2","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",16.0656 -"CanESM2","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",16.024 -"CanESM2","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",16.072 -"CanESM2","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",15.8528 -"CanESM2","tas","temperature","tgav","rcp26",2101,"Simulated","C","global",15.7862 -"CanESM2","tas","temperature","tgav","rcp26",2102,"Simulated","C","global",15.7775 -"CanESM2","tas","temperature","tgav","rcp26",2103,"Simulated","C","global",15.8805 -"CanESM2","tas","temperature","tgav","rcp26",2104,"Simulated","C","global",15.8897 -"CanESM2","tas","temperature","tgav","rcp26",2105,"Simulated","C","global",16.0332 -"CanESM2","tas","temperature","tgav","rcp26",2106,"Simulated","C","global",16.0017 -"CanESM2","tas","temperature","tgav","rcp26",2107,"Simulated","C","global",15.7458 -"CanESM2","tas","temperature","tgav","rcp26",2108,"Simulated","C","global",15.9106 -"CanESM2","tas","temperature","tgav","rcp26",2109,"Simulated","C","global",16.0495 -"CanESM2","tas","temperature","tgav","rcp26",2110,"Simulated","C","global",15.9708 -"CanESM2","tas","temperature","tgav","rcp26",2111,"Simulated","C","global",15.7333 -"CanESM2","tas","temperature","tgav","rcp26",2112,"Simulated","C","global",15.9953 -"CanESM2","tas","temperature","tgav","rcp26",2113,"Simulated","C","global",16.0564 -"CanESM2","tas","temperature","tgav","rcp26",2114,"Simulated","C","global",15.776 -"CanESM2","tas","temperature","tgav","rcp26",2115,"Simulated","C","global",15.9526 -"CanESM2","tas","temperature","tgav","rcp26",2116,"Simulated","C","global",15.7514 -"CanESM2","tas","temperature","tgav","rcp26",2117,"Simulated","C","global",15.692 -"CanESM2","tas","temperature","tgav","rcp26",2118,"Simulated","C","global",15.7716 -"CanESM2","tas","temperature","tgav","rcp26",2119,"Simulated","C","global",15.6841 -"CanESM2","tas","temperature","tgav","rcp26",2120,"Simulated","C","global",15.8298 -"CanESM2","tas","temperature","tgav","rcp26",2121,"Simulated","C","global",15.8244 -"CanESM2","tas","temperature","tgav","rcp26",2122,"Simulated","C","global",15.9069 -"CanESM2","tas","temperature","tgav","rcp26",2123,"Simulated","C","global",15.7962 -"CanESM2","tas","temperature","tgav","rcp26",2124,"Simulated","C","global",15.742 -"CanESM2","tas","temperature","tgav","rcp26",2125,"Simulated","C","global",15.9763 -"CanESM2","tas","temperature","tgav","rcp26",2126,"Simulated","C","global",16.0173 -"CanESM2","tas","temperature","tgav","rcp26",2127,"Simulated","C","global",15.9562 -"CanESM2","tas","temperature","tgav","rcp26",2128,"Simulated","C","global",16 -"CanESM2","tas","temperature","tgav","rcp26",2129,"Simulated","C","global",16.0276 -"CanESM2","tas","temperature","tgav","rcp26",2130,"Simulated","C","global",15.866 -"CanESM2","tas","temperature","tgav","rcp26",2131,"Simulated","C","global",15.697 -"CanESM2","tas","temperature","tgav","rcp26",2132,"Simulated","C","global",15.7588 -"CanESM2","tas","temperature","tgav","rcp26",2133,"Simulated","C","global",15.9185 -"CanESM2","tas","temperature","tgav","rcp26",2134,"Simulated","C","global",15.7411 -"CanESM2","tas","temperature","tgav","rcp26",2135,"Simulated","C","global",15.8553 -"CanESM2","tas","temperature","tgav","rcp26",2136,"Simulated","C","global",15.9942 -"CanESM2","tas","temperature","tgav","rcp26",2137,"Simulated","C","global",15.664 -"CanESM2","tas","temperature","tgav","rcp26",2138,"Simulated","C","global",15.7404 -"CanESM2","tas","temperature","tgav","rcp26",2139,"Simulated","C","global",15.9574 -"CanESM2","tas","temperature","tgav","rcp26",2140,"Simulated","C","global",15.9822 -"CanESM2","tas","temperature","tgav","rcp26",2141,"Simulated","C","global",15.9631 -"CanESM2","tas","temperature","tgav","rcp26",2142,"Simulated","C","global",15.6823 -"CanESM2","tas","temperature","tgav","rcp26",2143,"Simulated","C","global",15.7421000000001 -"CanESM2","tas","temperature","tgav","rcp26",2144,"Simulated","C","global",15.9261 -"CanESM2","tas","temperature","tgav","rcp26",2145,"Simulated","C","global",15.8083 -"CanESM2","tas","temperature","tgav","rcp26",2146,"Simulated","C","global",15.5965 -"CanESM2","tas","temperature","tgav","rcp26",2147,"Simulated","C","global",15.4708 -"CanESM2","tas","temperature","tgav","rcp26",2148,"Simulated","C","global",15.8273 -"CanESM2","tas","temperature","tgav","rcp26",2149,"Simulated","C","global",15.906 -"CanESM2","tas","temperature","tgav","rcp26",2150,"Simulated","C","global",15.7199 -"CanESM2","tas","temperature","tgav","rcp26",2151,"Simulated","C","global",15.5495 -"CanESM2","tas","temperature","tgav","rcp26",2152,"Simulated","C","global",15.6937 -"CanESM2","tas","temperature","tgav","rcp26",2153,"Simulated","C","global",15.8043 -"CanESM2","tas","temperature","tgav","rcp26",2154,"Simulated","C","global",15.756 -"CanESM2","tas","temperature","tgav","rcp26",2155,"Simulated","C","global",15.6136 -"CanESM2","tas","temperature","tgav","rcp26",2156,"Simulated","C","global",15.8589 -"CanESM2","tas","temperature","tgav","rcp26",2157,"Simulated","C","global",15.795 -"CanESM2","tas","temperature","tgav","rcp26",2158,"Simulated","C","global",15.7257 -"CanESM2","tas","temperature","tgav","rcp26",2159,"Simulated","C","global",15.5368 -"CanESM2","tas","temperature","tgav","rcp26",2160,"Simulated","C","global",15.6594 -"CanESM2","tas","temperature","tgav","rcp26",2161,"Simulated","C","global",15.7727 -"CanESM2","tas","temperature","tgav","rcp26",2162,"Simulated","C","global",15.7974 -"CanESM2","tas","temperature","tgav","rcp26",2163,"Simulated","C","global",15.903 -"CanESM2","tas","temperature","tgav","rcp26",2164,"Simulated","C","global",15.7971 -"CanESM2","tas","temperature","tgav","rcp26",2165,"Simulated","C","global",15.6943 -"CanESM2","tas","temperature","tgav","rcp26",2166,"Simulated","C","global",15.5721 -"CanESM2","tas","temperature","tgav","rcp26",2167,"Simulated","C","global",15.8305 -"CanESM2","tas","temperature","tgav","rcp26",2168,"Simulated","C","global",15.8206 -"CanESM2","tas","temperature","tgav","rcp26",2169,"Simulated","C","global",15.8104 -"CanESM2","tas","temperature","tgav","rcp26",2170,"Simulated","C","global",15.7349 -"CanESM2","tas","temperature","tgav","rcp26",2171,"Simulated","C","global",15.782 -"CanESM2","tas","temperature","tgav","rcp26",2172,"Simulated","C","global",15.7093 -"CanESM2","tas","temperature","tgav","rcp26",2173,"Simulated","C","global",15.7616 -"CanESM2","tas","temperature","tgav","rcp26",2174,"Simulated","C","global",15.6132 -"CanESM2","tas","temperature","tgav","rcp26",2175,"Simulated","C","global",15.9717 -"CanESM2","tas","temperature","tgav","rcp26",2176,"Simulated","C","global",15.9892 -"CanESM2","tas","temperature","tgav","rcp26",2177,"Simulated","C","global",15.7013 -"CanESM2","tas","temperature","tgav","rcp26",2178,"Simulated","C","global",15.8237 -"CanESM2","tas","temperature","tgav","rcp26",2179,"Simulated","C","global",15.7709 -"CanESM2","tas","temperature","tgav","rcp26",2180,"Simulated","C","global",15.705 -"CanESM2","tas","temperature","tgav","rcp26",2181,"Simulated","C","global",15.6533 -"CanESM2","tas","temperature","tgav","rcp26",2182,"Simulated","C","global",15.7166 -"CanESM2","tas","temperature","tgav","rcp26",2183,"Simulated","C","global",15.8284 -"CanESM2","tas","temperature","tgav","rcp26",2184,"Simulated","C","global",15.861 -"CanESM2","tas","temperature","tgav","rcp26",2185,"Simulated","C","global",15.6739 -"CanESM2","tas","temperature","tgav","rcp26",2186,"Simulated","C","global",15.6054 -"CanESM2","tas","temperature","tgav","rcp26",2187,"Simulated","C","global",15.8156 -"CanESM2","tas","temperature","tgav","rcp26",2188,"Simulated","C","global",15.8313 -"CanESM2","tas","temperature","tgav","rcp26",2189,"Simulated","C","global",15.6513 -"CanESM2","tas","temperature","tgav","rcp26",2190,"Simulated","C","global",15.6109 -"CanESM2","tas","temperature","tgav","rcp26",2191,"Simulated","C","global",15.7116 -"CanESM2","tas","temperature","tgav","rcp26",2192,"Simulated","C","global",15.7742 -"CanESM2","tas","temperature","tgav","rcp26",2193,"Simulated","C","global",15.5871 -"CanESM2","tas","temperature","tgav","rcp26",2194,"Simulated","C","global",15.4597 -"CanESM2","tas","temperature","tgav","rcp26",2195,"Simulated","C","global",15.6111 -"CanESM2","tas","temperature","tgav","rcp26",2196,"Simulated","C","global",15.5121 -"CanESM2","tas","temperature","tgav","rcp26",2197,"Simulated","C","global",15.5919 -"CanESM2","tas","temperature","tgav","rcp26",2198,"Simulated","C","global",15.7574 -"CanESM2","tas","temperature","tgav","rcp26",2199,"Simulated","C","global",15.6739 -"CanESM2","tas","temperature","tgav","rcp26",2200,"Simulated","C","global",15.5832 -"CanESM2","tas","temperature","tgav","rcp26",2201,"Simulated","C","global",15.76 -"CanESM2","tas","temperature","tgav","rcp26",2202,"Simulated","C","global",15.5841 -"CanESM2","tas","temperature","tgav","rcp26",2203,"Simulated","C","global",15.4739 -"CanESM2","tas","temperature","tgav","rcp26",2204,"Simulated","C","global",15.5152 -"CanESM2","tas","temperature","tgav","rcp26",2205,"Simulated","C","global",15.7339 -"CanESM2","tas","temperature","tgav","rcp26",2206,"Simulated","C","global",15.8289 -"CanESM2","tas","temperature","tgav","rcp26",2207,"Simulated","C","global",15.6303 -"CanESM2","tas","temperature","tgav","rcp26",2208,"Simulated","C","global",15.8974 -"CanESM2","tas","temperature","tgav","rcp26",2209,"Simulated","C","global",15.7461 -"CanESM2","tas","temperature","tgav","rcp26",2210,"Simulated","C","global",15.5689 -"CanESM2","tas","temperature","tgav","rcp26",2211,"Simulated","C","global",15.465 -"CanESM2","tas","temperature","tgav","rcp26",2212,"Simulated","C","global",15.5002 -"CanESM2","tas","temperature","tgav","rcp26",2213,"Simulated","C","global",15.6691 -"CanESM2","tas","temperature","tgav","rcp26",2214,"Simulated","C","global",15.8858 -"CanESM2","tas","temperature","tgav","rcp26",2215,"Simulated","C","global",15.667 -"CanESM2","tas","temperature","tgav","rcp26",2216,"Simulated","C","global",15.4724000000001 -"CanESM2","tas","temperature","tgav","rcp26",2217,"Simulated","C","global",15.5594 -"CanESM2","tas","temperature","tgav","rcp26",2218,"Simulated","C","global",15.7469 -"CanESM2","tas","temperature","tgav","rcp26",2219,"Simulated","C","global",15.5976 -"CanESM2","tas","temperature","tgav","rcp26",2220,"Simulated","C","global",15.6511 -"CanESM2","tas","temperature","tgav","rcp26",2221,"Simulated","C","global",15.7274 -"CanESM2","tas","temperature","tgav","rcp26",2222,"Simulated","C","global",15.7312 -"CanESM2","tas","temperature","tgav","rcp26",2223,"Simulated","C","global",15.6509 -"CanESM2","tas","temperature","tgav","rcp26",2224,"Simulated","C","global",15.4892 -"CanESM2","tas","temperature","tgav","rcp26",2225,"Simulated","C","global",15.5797 -"CanESM2","tas","temperature","tgav","rcp26",2226,"Simulated","C","global",15.629 -"CanESM2","tas","temperature","tgav","rcp26",2227,"Simulated","C","global",15.496 -"CanESM2","tas","temperature","tgav","rcp26",2228,"Simulated","C","global",15.62 -"CanESM2","tas","temperature","tgav","rcp26",2229,"Simulated","C","global",15.6792 -"CanESM2","tas","temperature","tgav","rcp26",2230,"Simulated","C","global",15.4909 -"CanESM2","tas","temperature","tgav","rcp26",2231,"Simulated","C","global",15.3204 -"CanESM2","tas","temperature","tgav","rcp26",2232,"Simulated","C","global",15.5585 -"CanESM2","tas","temperature","tgav","rcp26",2233,"Simulated","C","global",15.4751 -"CanESM2","tas","temperature","tgav","rcp26",2234,"Simulated","C","global",15.3715 -"CanESM2","tas","temperature","tgav","rcp26",2235,"Simulated","C","global",15.6596 -"CanESM2","tas","temperature","tgav","rcp26",2236,"Simulated","C","global",15.8069 -"CanESM2","tas","temperature","tgav","rcp26",2237,"Simulated","C","global",15.55 -"CanESM2","tas","temperature","tgav","rcp26",2238,"Simulated","C","global",15.6074 -"CanESM2","tas","temperature","tgav","rcp26",2239,"Simulated","C","global",15.4881 -"CanESM2","tas","temperature","tgav","rcp26",2240,"Simulated","C","global",15.6056 -"CanESM2","tas","temperature","tgav","rcp26",2241,"Simulated","C","global",15.5862 -"CanESM2","tas","temperature","tgav","rcp26",2242,"Simulated","C","global",15.6292 -"CanESM2","tas","temperature","tgav","rcp26",2243,"Simulated","C","global",15.5766 -"CanESM2","tas","temperature","tgav","rcp26",2244,"Simulated","C","global",15.5798 -"CanESM2","tas","temperature","tgav","rcp26",2245,"Simulated","C","global",15.5119 -"CanESM2","tas","temperature","tgav","rcp26",2246,"Simulated","C","global",15.5325 -"CanESM2","tas","temperature","tgav","rcp26",2247,"Simulated","C","global",15.648 -"CanESM2","tas","temperature","tgav","rcp26",2248,"Simulated","C","global",15.3122 -"CanESM2","tas","temperature","tgav","rcp26",2249,"Simulated","C","global",15.472 -"CanESM2","tas","temperature","tgav","rcp26",2250,"Simulated","C","global",15.5919 -"CanESM2","tas","temperature","tgav","rcp26",2251,"Simulated","C","global",15.7335 -"CanESM2","tas","temperature","tgav","rcp26",2252,"Simulated","C","global",15.4867 -"CanESM2","tas","temperature","tgav","rcp26",2253,"Simulated","C","global",15.234 -"CanESM2","tas","temperature","tgav","rcp26",2254,"Simulated","C","global",15.4167 -"CanESM2","tas","temperature","tgav","rcp26",2255,"Simulated","C","global",15.6444 -"CanESM2","tas","temperature","tgav","rcp26",2256,"Simulated","C","global",15.6291000000001 -"CanESM2","tas","temperature","tgav","rcp26",2257,"Simulated","C","global",15.6599000000001 -"CanESM2","tas","temperature","tgav","rcp26",2258,"Simulated","C","global",15.3599 -"CanESM2","tas","temperature","tgav","rcp26",2259,"Simulated","C","global",15.4754 -"CanESM2","tas","temperature","tgav","rcp26",2260,"Simulated","C","global",15.5774 -"CanESM2","tas","temperature","tgav","rcp26",2261,"Simulated","C","global",15.6852 -"CanESM2","tas","temperature","tgav","rcp26",2262,"Simulated","C","global",15.6193 -"CanESM2","tas","temperature","tgav","rcp26",2263,"Simulated","C","global",15.3179 -"CanESM2","tas","temperature","tgav","rcp26",2264,"Simulated","C","global",15.3039 -"CanESM2","tas","temperature","tgav","rcp26",2265,"Simulated","C","global",15.6832 -"CanESM2","tas","temperature","tgav","rcp26",2266,"Simulated","C","global",15.7724 -"CanESM2","tas","temperature","tgav","rcp26",2267,"Simulated","C","global",15.517 -"CanESM2","tas","temperature","tgav","rcp26",2268,"Simulated","C","global",15.3778 -"CanESM2","tas","temperature","tgav","rcp26",2269,"Simulated","C","global",15.4732 -"CanESM2","tas","temperature","tgav","rcp26",2270,"Simulated","C","global",15.6576 -"CanESM2","tas","temperature","tgav","rcp26",2271,"Simulated","C","global",15.4986 -"CanESM2","tas","temperature","tgav","rcp26",2272,"Simulated","C","global",15.5729 -"CanESM2","tas","temperature","tgav","rcp26",2273,"Simulated","C","global",15.7036 -"CanESM2","tas","temperature","tgav","rcp26",2274,"Simulated","C","global",15.6392 -"CanESM2","tas","temperature","tgav","rcp26",2275,"Simulated","C","global",15.5177 -"CanESM2","tas","temperature","tgav","rcp26",2276,"Simulated","C","global",15.3827 -"CanESM2","tas","temperature","tgav","rcp26",2277,"Simulated","C","global",15.3342 -"CanESM2","tas","temperature","tgav","rcp26",2278,"Simulated","C","global",15.5229 -"CanESM2","tas","temperature","tgav","rcp26",2279,"Simulated","C","global",15.3440000000001 -"CanESM2","tas","temperature","tgav","rcp26",2280,"Simulated","C","global",15.2216 -"CanESM2","tas","temperature","tgav","rcp26",2281,"Simulated","C","global",15.4025 -"CanESM2","tas","temperature","tgav","rcp26",2282,"Simulated","C","global",15.5035 -"CanESM2","tas","temperature","tgav","rcp26",2283,"Simulated","C","global",15.5044 -"CanESM2","tas","temperature","tgav","rcp26",2284,"Simulated","C","global",15.5733 -"CanESM2","tas","temperature","tgav","rcp26",2285,"Simulated","C","global",15.4898 -"CanESM2","tas","temperature","tgav","rcp26",2286,"Simulated","C","global",15.5928 -"CanESM2","tas","temperature","tgav","rcp26",2287,"Simulated","C","global",15.632 -"CanESM2","tas","temperature","tgav","rcp26",2288,"Simulated","C","global",15.3943 -"CanESM2","tas","temperature","tgav","rcp26",2289,"Simulated","C","global",15.5306 -"CanESM2","tas","temperature","tgav","rcp26",2290,"Simulated","C","global",15.5025 -"CanESM2","tas","temperature","tgav","rcp26",2291,"Simulated","C","global",15.5777 -"CanESM2","tas","temperature","tgav","rcp26",2292,"Simulated","C","global",15.4623 -"CanESM2","tas","temperature","tgav","rcp26",2293,"Simulated","C","global",15.4583 -"CanESM2","tas","temperature","tgav","rcp26",2294,"Simulated","C","global",15.4395 -"CanESM2","tas","temperature","tgav","rcp26",2295,"Simulated","C","global",15.5272000000001 -"CanESM2","tas","temperature","tgav","rcp26",2296,"Simulated","C","global",15.4381 -"CanESM2","tas","temperature","tgav","rcp26",2297,"Simulated","C","global",15.3138 -"CanESM2","tas","temperature","tgav","rcp26",2298,"Simulated","C","global",15.3089000000001 -"CanESM2","tas","temperature","tgav","rcp26",2299,"Simulated","C","global",15.472 -"CanESM2","tas","temperature","tgav","rcp26",2300,"Simulated","C","global",15.5225 -"CanESM2","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-9.68089999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-9.803 -"CanESM2","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-10.3135 -"CanESM2","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-10.4673 -"CanESM2","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-10.2649 -"CanESM2","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-9.86129999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-9.89859999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-9.6823 -"CanESM2","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-9.34009999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-9.51769999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-9.5847 -"CanESM2","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-9.4898 -"CanESM2","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-9.03799999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-9.38899999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-9.2645 -"CanESM2","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-9.31809999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-9.27909999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-9.10309999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-9.26239999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-9.60849999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-9.42599999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-9.4049 -"CanESM2","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-9.10859999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-9.21189999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-9.16949999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-9.30709999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-9.3793 -"CanESM2","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-9.03999999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-9.04049999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-8.85429999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-8.46189999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-8.8107 -"CanESM2","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-8.76409999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-9.18689999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-8.80149999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-8.83569999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-8.39139999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-8.64799999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-8.94479999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-9.20299999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-8.88849999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-9.0813 -"CanESM2","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-8.59129999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-8.58409999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-8.35309999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-8.74869999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-8.92579999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-8.6866 -"CanESM2","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-8.58819999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-8.47559999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-8.74249999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-8.64459999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-8.44439999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-8.71499999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-8.75689999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-8.23699999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-8.5915 -"CanESM2","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-8.6148 -"CanESM2","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-8.56009999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-8.24829999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-8.32039999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-8.76949999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-8.94819999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-8.92679999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-8.5573 -"CanESM2","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-8.72729999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-8.63219999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-8.69979999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-8.92140000000001 -"CanESM2","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-8.99469999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-9.21179999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-8.26959999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-8.63979999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-8.87799999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-8.8261 -"CanESM2","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-9.13909999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-8.5668 -"CanESM2","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-8.91119999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-8.58069999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-8.43149999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-8.27349999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-8.52159999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-8.48219999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-8.46009999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-7.78979999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-8.45299999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-8.53569999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-8.80289999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-8.35199999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-8.66079999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-8.9375 -"CanESM2","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-8.39879999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-8.1499 -"CanESM2","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-7.83019999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-8.40359999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2101,"Simulated","C","HL",-8.43689999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2102,"Simulated","C","HL",-8.52849999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2103,"Simulated","C","HL",-8.54599999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2104,"Simulated","C","HL",-8.58839999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2105,"Simulated","C","HL",-8.30169999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2106,"Simulated","C","HL",-8.4923 -"CanESM2","tas","temperature","tgav_HL","rcp26",2107,"Simulated","C","HL",-8.81399999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2108,"Simulated","C","HL",-8.44569999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2109,"Simulated","C","HL",-8.54089999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2110,"Simulated","C","HL",-8.31379999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2111,"Simulated","C","HL",-8.93119999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2112,"Simulated","C","HL",-8.61199999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2113,"Simulated","C","HL",-8.42859999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2114,"Simulated","C","HL",-8.94599999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2115,"Simulated","C","HL",-8.31759999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2116,"Simulated","C","HL",-8.76929999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2117,"Simulated","C","HL",-9.02670000000001 -"CanESM2","tas","temperature","tgav_HL","rcp26",2118,"Simulated","C","HL",-8.67679999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2119,"Simulated","C","HL",-9.11259999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2120,"Simulated","C","HL",-8.93989999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2121,"Simulated","C","HL",-8.8005 -"CanESM2","tas","temperature","tgav_HL","rcp26",2122,"Simulated","C","HL",-8.61469999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2123,"Simulated","C","HL",-8.59609999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2124,"Simulated","C","HL",-8.7405 -"CanESM2","tas","temperature","tgav_HL","rcp26",2125,"Simulated","C","HL",-8.4692 -"CanESM2","tas","temperature","tgav_HL","rcp26",2126,"Simulated","C","HL",-8.47119999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2127,"Simulated","C","HL",-8.67829999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2128,"Simulated","C","HL",-8.57659999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2129,"Simulated","C","HL",-8.47999999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2130,"Simulated","C","HL",-8.9273 -"CanESM2","tas","temperature","tgav_HL","rcp26",2131,"Simulated","C","HL",-9.10019999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2132,"Simulated","C","HL",-9.09189999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2133,"Simulated","C","HL",-8.3741 -"CanESM2","tas","temperature","tgav_HL","rcp26",2134,"Simulated","C","HL",-9.01599999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2135,"Simulated","C","HL",-9.26759999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2136,"Simulated","C","HL",-8.81709999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2137,"Simulated","C","HL",-9.0967 -"CanESM2","tas","temperature","tgav_HL","rcp26",2138,"Simulated","C","HL",-8.98749999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2139,"Simulated","C","HL",-8.66479999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2140,"Simulated","C","HL",-8.52939999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2141,"Simulated","C","HL",-8.46169999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2142,"Simulated","C","HL",-8.87949999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2143,"Simulated","C","HL",-8.8682 -"CanESM2","tas","temperature","tgav_HL","rcp26",2144,"Simulated","C","HL",-8.71939999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2145,"Simulated","C","HL",-8.66359999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2146,"Simulated","C","HL",-8.91679999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2147,"Simulated","C","HL",-9.74459999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2148,"Simulated","C","HL",-8.93549999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2149,"Simulated","C","HL",-8.60949999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2150,"Simulated","C","HL",-8.51819999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2151,"Simulated","C","HL",-9.19739999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2152,"Simulated","C","HL",-9.19459999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2153,"Simulated","C","HL",-8.84179999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2154,"Simulated","C","HL",-9.06099999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2155,"Simulated","C","HL",-9.12539999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2156,"Simulated","C","HL",-8.77449999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2157,"Simulated","C","HL",-9.17289999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2158,"Simulated","C","HL",-8.90549999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2159,"Simulated","C","HL",-9.16239999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2160,"Simulated","C","HL",-9.16699999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2161,"Simulated","C","HL",-8.73999999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2162,"Simulated","C","HL",-8.97919999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2163,"Simulated","C","HL",-8.42509999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2164,"Simulated","C","HL",-8.47949999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2165,"Simulated","C","HL",-8.80869999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2166,"Simulated","C","HL",-9.25979999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2167,"Simulated","C","HL",-8.52619999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2168,"Simulated","C","HL",-8.94119999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2169,"Simulated","C","HL",-8.8578 -"CanESM2","tas","temperature","tgav_HL","rcp26",2170,"Simulated","C","HL",-8.6454 -"CanESM2","tas","temperature","tgav_HL","rcp26",2171,"Simulated","C","HL",-8.73259999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2172,"Simulated","C","HL",-8.92309999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2173,"Simulated","C","HL",-8.71179999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2174,"Simulated","C","HL",-9.36419999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2175,"Simulated","C","HL",-8.35139999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2176,"Simulated","C","HL",-8.32579999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2177,"Simulated","C","HL",-9.0077 -"CanESM2","tas","temperature","tgav_HL","rcp26",2178,"Simulated","C","HL",-8.89139999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2179,"Simulated","C","HL",-9.04089999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2180,"Simulated","C","HL",-9.03119999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2181,"Simulated","C","HL",-8.96299999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2182,"Simulated","C","HL",-9.1309 -"CanESM2","tas","temperature","tgav_HL","rcp26",2183,"Simulated","C","HL",-8.72639999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2184,"Simulated","C","HL",-9.19009999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2185,"Simulated","C","HL",-9.07749999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2186,"Simulated","C","HL",-9.15969999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2187,"Simulated","C","HL",-8.6678 -"CanESM2","tas","temperature","tgav_HL","rcp26",2188,"Simulated","C","HL",-8.85039999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2189,"Simulated","C","HL",-9.14979999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2190,"Simulated","C","HL",-9.1463 -"CanESM2","tas","temperature","tgav_HL","rcp26",2191,"Simulated","C","HL",-9.16309999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2192,"Simulated","C","HL",-9.11739999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2193,"Simulated","C","HL",-8.9196 -"CanESM2","tas","temperature","tgav_HL","rcp26",2194,"Simulated","C","HL",-9.19079999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2195,"Simulated","C","HL",-9.07380000000001 -"CanESM2","tas","temperature","tgav_HL","rcp26",2196,"Simulated","C","HL",-9.47999999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2197,"Simulated","C","HL",-9.1662 -"CanESM2","tas","temperature","tgav_HL","rcp26",2198,"Simulated","C","HL",-9.13459999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2199,"Simulated","C","HL",-9.05369999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2200,"Simulated","C","HL",-9.15249999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2201,"Simulated","C","HL",-8.97249999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2202,"Simulated","C","HL",-9.31459999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2203,"Simulated","C","HL",-9.3947 -"CanESM2","tas","temperature","tgav_HL","rcp26",2204,"Simulated","C","HL",-9.26529999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2205,"Simulated","C","HL",-8.98779999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2206,"Simulated","C","HL",-8.69939999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2207,"Simulated","C","HL",-9.3612 -"CanESM2","tas","temperature","tgav_HL","rcp26",2208,"Simulated","C","HL",-8.75529999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2209,"Simulated","C","HL",-8.9273 -"CanESM2","tas","temperature","tgav_HL","rcp26",2210,"Simulated","C","HL",-9.0446 -"CanESM2","tas","temperature","tgav_HL","rcp26",2211,"Simulated","C","HL",-9.28219999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2212,"Simulated","C","HL",-9.20949999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2213,"Simulated","C","HL",-8.86919999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2214,"Simulated","C","HL",-8.38579999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2215,"Simulated","C","HL",-9.18599999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2216,"Simulated","C","HL",-9.13679999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2217,"Simulated","C","HL",-8.96839999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2218,"Simulated","C","HL",-8.48379999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2219,"Simulated","C","HL",-9.13599999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2220,"Simulated","C","HL",-9.07819999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2221,"Simulated","C","HL",-8.73419999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2222,"Simulated","C","HL",-8.90009999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2223,"Simulated","C","HL",-8.7217 -"CanESM2","tas","temperature","tgav_HL","rcp26",2224,"Simulated","C","HL",-9.2124 -"CanESM2","tas","temperature","tgav_HL","rcp26",2225,"Simulated","C","HL",-9.32119999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2226,"Simulated","C","HL",-9.267 -"CanESM2","tas","temperature","tgav_HL","rcp26",2227,"Simulated","C","HL",-9.52199999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2228,"Simulated","C","HL",-9.35059999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2229,"Simulated","C","HL",-9.02169999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2230,"Simulated","C","HL",-9.2552 -"CanESM2","tas","temperature","tgav_HL","rcp26",2231,"Simulated","C","HL",-9.48319999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2232,"Simulated","C","HL",-9.17669999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2233,"Simulated","C","HL",-9.334 -"CanESM2","tas","temperature","tgav_HL","rcp26",2234,"Simulated","C","HL",-9.10769999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2235,"Simulated","C","HL",-8.96359999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2236,"Simulated","C","HL",-8.61799999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2237,"Simulated","C","HL",-8.89949999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2238,"Simulated","C","HL",-9.17919999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2239,"Simulated","C","HL",-9.16889999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2240,"Simulated","C","HL",-8.61249999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2241,"Simulated","C","HL",-8.66559999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2242,"Simulated","C","HL",-8.78729999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2243,"Simulated","C","HL",-9.14169999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2244,"Simulated","C","HL",-9.03559999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2245,"Simulated","C","HL",-9.33119999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2246,"Simulated","C","HL",-8.99919999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2247,"Simulated","C","HL",-8.97979999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2248,"Simulated","C","HL",-9.6891 -"CanESM2","tas","temperature","tgav_HL","rcp26",2249,"Simulated","C","HL",-9.02859999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2250,"Simulated","C","HL",-9.47159999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2251,"Simulated","C","HL",-9.24699999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2252,"Simulated","C","HL",-9.29219999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2253,"Simulated","C","HL",-9.83449999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2254,"Simulated","C","HL",-9.63439999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2255,"Simulated","C","HL",-9.25879999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2256,"Simulated","C","HL",-9.36079999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2257,"Simulated","C","HL",-9.0711 -"CanESM2","tas","temperature","tgav_HL","rcp26",2258,"Simulated","C","HL",-9.47119999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2259,"Simulated","C","HL",-8.96049999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2260,"Simulated","C","HL",-9.16909999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2261,"Simulated","C","HL",-9.18179999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2262,"Simulated","C","HL",-8.76209999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2263,"Simulated","C","HL",-9.17809999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2264,"Simulated","C","HL",-9.55519999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2265,"Simulated","C","HL",-9.01299999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2266,"Simulated","C","HL",-8.77689999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2267,"Simulated","C","HL",-9.22399999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2268,"Simulated","C","HL",-9.41069999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2269,"Simulated","C","HL",-9.34539999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2270,"Simulated","C","HL",-9.30109999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2271,"Simulated","C","HL",-9.4264 -"CanESM2","tas","temperature","tgav_HL","rcp26",2272,"Simulated","C","HL",-9.26209999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2273,"Simulated","C","HL",-9.16369999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2274,"Simulated","C","HL",-9.07859999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2275,"Simulated","C","HL",-9.26209999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2276,"Simulated","C","HL",-9.47949999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2277,"Simulated","C","HL",-9.68969999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2278,"Simulated","C","HL",-9.34819999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2279,"Simulated","C","HL",-9.57889999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2280,"Simulated","C","HL",-9.53389999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2281,"Simulated","C","HL",-9.24179999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2282,"Simulated","C","HL",-8.79129999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2283,"Simulated","C","HL",-9.21169999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2284,"Simulated","C","HL",-9.48879999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2285,"Simulated","C","HL",-9.14549999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2286,"Simulated","C","HL",-9.25219999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2287,"Simulated","C","HL",-9.31959999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2288,"Simulated","C","HL",-10.0051 -"CanESM2","tas","temperature","tgav_HL","rcp26",2289,"Simulated","C","HL",-9.3023 -"CanESM2","tas","temperature","tgav_HL","rcp26",2290,"Simulated","C","HL",-9.51549999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2291,"Simulated","C","HL",-8.9323 -"CanESM2","tas","temperature","tgav_HL","rcp26",2292,"Simulated","C","HL",-8.76639999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2293,"Simulated","C","HL",-9.125 -"CanESM2","tas","temperature","tgav_HL","rcp26",2294,"Simulated","C","HL",-9.65569999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2295,"Simulated","C","HL",-9.26989999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2296,"Simulated","C","HL",-9.2491 -"CanESM2","tas","temperature","tgav_HL","rcp26",2297,"Simulated","C","HL",-9.8716 -"CanESM2","tas","temperature","tgav_HL","rcp26",2298,"Simulated","C","HL",-9.58979999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2299,"Simulated","C","HL",-9.3673 -"CanESM2","tas","temperature","tgav_HL","rcp26",2300,"Simulated","C","HL",-9.14089999999999 -"CanESM2","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",20.3777 -"CanESM2","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",20.0789 -"CanESM2","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",19.9925 -"CanESM2","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",20.0379 -"CanESM2","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",20.1404 -"CanESM2","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",20.2748 -"CanESM2","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",20.3724 -"CanESM2","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",20.3365 -"CanESM2","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",20.2444 -"CanESM2","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",20.3515 -"CanESM2","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",20.3537 -"CanESM2","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",20.4425 -"CanESM2","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",20.5707 -"CanESM2","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",20.6039 -"CanESM2","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",20.5909 -"CanESM2","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",20.5477 -"CanESM2","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",20.621 -"CanESM2","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",20.6761 -"CanESM2","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",20.5083 -"CanESM2","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",20.5312 -"CanESM2","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",20.61 -"CanESM2","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",20.6651 -"CanESM2","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",20.8661 -"CanESM2","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",20.8551 -"CanESM2","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",20.6555 -"CanESM2","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",20.5249 -"CanESM2","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",20.761 -"CanESM2","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",21.0028 -"CanESM2","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",21.0282 -"CanESM2","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",20.9471 -"CanESM2","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",21.0219 -"CanESM2","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",21.0263 -"CanESM2","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",20.9588 -"CanESM2","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",20.768 -"CanESM2","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",20.9635 -"CanESM2","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",21.017 -"CanESM2","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",21.0353 -"CanESM2","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",21.1618 -"CanESM2","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",20.9929 -"CanESM2","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",20.8564 -"CanESM2","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",20.9765 -"CanESM2","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",21.0945 -"CanESM2","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",21.1023 -"CanESM2","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",21.2848 -"CanESM2","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",21.4181 -"CanESM2","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",21.0332 -"CanESM2","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",20.9306 -"CanESM2","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",21.1453 -"CanESM2","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",21.1273 -"CanESM2","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",21.1376 -"CanESM2","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",21.0152 -"CanESM2","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",21.0275 -"CanESM2","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",21.307 -"CanESM2","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",21.319 -"CanESM2","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",21.2232 -"CanESM2","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",21.168 -"CanESM2","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",21.062 -"CanESM2","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",21.1006 -"CanESM2","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",21.1257 -"CanESM2","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",21.1966 -"CanESM2","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",21.4284 -"CanESM2","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",21.3712 -"CanESM2","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",20.9823 -"CanESM2","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",20.9641 -"CanESM2","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",21.0983 -"CanESM2","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",21.088 -"CanESM2","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",21.1197 -"CanESM2","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",21.1192 -"CanESM2","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",20.9456 -"CanESM2","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",21.013 -"CanESM2","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",21.0683 -"CanESM2","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",20.9633 -"CanESM2","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",21.0319 -"CanESM2","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",21.1369 -"CanESM2","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",21.0388 -"CanESM2","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",20.8778 -"CanESM2","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",21.1501 -"CanESM2","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",21.1516 -"CanESM2","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",21.0203 -"CanESM2","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",20.9979 -"CanESM2","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",21.1722 -"CanESM2","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",21.06 -"CanESM2","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",21.1326 -"CanESM2","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",21.2391 -"CanESM2","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",21.2702 -"CanESM2","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",20.9188 -"CanESM2","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",20.8031 -"CanESM2","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",20.9646 -"CanESM2","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",21.1939 -"CanESM2","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",21.187 -"CanESM2","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",21.0894 -"CanESM2","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",21.1735 -"CanESM2","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",21.0712 -"CanESM2","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",21.0625 -"CanESM2","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",20.9173 -"CanESM2","tas","temperature","tgav_LL","rcp26",2101,"Simulated","C","LL",20.8437 -"CanESM2","tas","temperature","tgav_LL","rcp26",2102,"Simulated","C","LL",20.8523 -"CanESM2","tas","temperature","tgav_LL","rcp26",2103,"Simulated","C","LL",20.9805 -"CanESM2","tas","temperature","tgav_LL","rcp26",2104,"Simulated","C","LL",21.0005 -"CanESM2","tas","temperature","tgav_LL","rcp26",2105,"Simulated","C","LL",21.1141 -"CanESM2","tas","temperature","tgav_LL","rcp26",2106,"Simulated","C","LL",21.1158 -"CanESM2","tas","temperature","tgav_LL","rcp26",2107,"Simulated","C","LL",20.8736 -"CanESM2","tas","temperature","tgav_LL","rcp26",2108,"Simulated","C","LL",20.996 -"CanESM2","tas","temperature","tgav_LL","rcp26",2109,"Simulated","C","LL",21.1837 -"CanESM2","tas","temperature","tgav_LL","rcp26",2110,"Simulated","C","LL",21.0412 -"CanESM2","tas","temperature","tgav_LL","rcp26",2111,"Simulated","C","LL",20.883 -"CanESM2","tas","temperature","tgav_LL","rcp26",2112,"Simulated","C","LL",21.133 -"CanESM2","tas","temperature","tgav_LL","rcp26",2113,"Simulated","C","LL",21.1686 -"CanESM2","tas","temperature","tgav_LL","rcp26",2114,"Simulated","C","LL",20.9376 -"CanESM2","tas","temperature","tgav_LL","rcp26",2115,"Simulated","C","LL",21.02 -"CanESM2","tas","temperature","tgav_LL","rcp26",2116,"Simulated","C","LL",20.8711 -"CanESM2","tas","temperature","tgav_LL","rcp26",2117,"Simulated","C","LL",20.853 -"CanESM2","tas","temperature","tgav_LL","rcp26",2118,"Simulated","C","LL",20.8762 -"CanESM2","tas","temperature","tgav_LL","rcp26",2119,"Simulated","C","LL",20.8614 -"CanESM2","tas","temperature","tgav_LL","rcp26",2120,"Simulated","C","LL",21.0014 -"CanESM2","tas","temperature","tgav_LL","rcp26",2121,"Simulated","C","LL",20.9659 -"CanESM2","tas","temperature","tgav_LL","rcp26",2122,"Simulated","C","LL",21.0268 -"CanESM2","tas","temperature","tgav_LL","rcp26",2123,"Simulated","C","LL",20.8891 -"CanESM2","tas","temperature","tgav_LL","rcp26",2124,"Simulated","C","LL",20.8536 -"CanESM2","tas","temperature","tgav_LL","rcp26",2125,"Simulated","C","LL",21.0803 -"CanESM2","tas","temperature","tgav_LL","rcp26",2126,"Simulated","C","LL",21.1303 -"CanESM2","tas","temperature","tgav_LL","rcp26",2127,"Simulated","C","LL",21.0996 -"CanESM2","tas","temperature","tgav_LL","rcp26",2128,"Simulated","C","LL",21.1313 -"CanESM2","tas","temperature","tgav_LL","rcp26",2129,"Simulated","C","LL",21.1446 -"CanESM2","tas","temperature","tgav_LL","rcp26",2130,"Simulated","C","LL",21.0425 -"CanESM2","tas","temperature","tgav_LL","rcp26",2131,"Simulated","C","LL",20.8744 -"CanESM2","tas","temperature","tgav_LL","rcp26",2132,"Simulated","C","LL",20.9473 -"CanESM2","tas","temperature","tgav_LL","rcp26",2133,"Simulated","C","LL",20.9906 -"CanESM2","tas","temperature","tgav_LL","rcp26",2134,"Simulated","C","LL",20.9101 -"CanESM2","tas","temperature","tgav_LL","rcp26",2135,"Simulated","C","LL",21.1006 -"CanESM2","tas","temperature","tgav_LL","rcp26",2136,"Simulated","C","LL",21.1745 -"CanESM2","tas","temperature","tgav_LL","rcp26",2137,"Simulated","C","LL",20.8338 -"CanESM2","tas","temperature","tgav_LL","rcp26",2138,"Simulated","C","LL",20.9033 -"CanESM2","tas","temperature","tgav_LL","rcp26",2139,"Simulated","C","LL",21.0983 -"CanESM2","tas","temperature","tgav_LL","rcp26",2140,"Simulated","C","LL",21.0999 -"CanESM2","tas","temperature","tgav_LL","rcp26",2141,"Simulated","C","LL",21.0627 -"CanESM2","tas","temperature","tgav_LL","rcp26",2142,"Simulated","C","LL",20.8105 -"CanESM2","tas","temperature","tgav_LL","rcp26",2143,"Simulated","C","LL",20.8804 -"CanESM2","tas","temperature","tgav_LL","rcp26",2144,"Simulated","C","LL",21.0718 -"CanESM2","tas","temperature","tgav_LL","rcp26",2145,"Simulated","C","LL",20.9178 -"CanESM2","tas","temperature","tgav_LL","rcp26",2146,"Simulated","C","LL",20.7146 -"CanESM2","tas","temperature","tgav_LL","rcp26",2147,"Simulated","C","LL",20.7355 -"CanESM2","tas","temperature","tgav_LL","rcp26",2148,"Simulated","C","LL",20.9974 -"CanESM2","tas","temperature","tgav_LL","rcp26",2149,"Simulated","C","LL",21.0245 -"CanESM2","tas","temperature","tgav_LL","rcp26",2150,"Simulated","C","LL",20.7806 -"CanESM2","tas","temperature","tgav_LL","rcp26",2151,"Simulated","C","LL",20.7163 -"CanESM2","tas","temperature","tgav_LL","rcp26",2152,"Simulated","C","LL",20.8901 -"CanESM2","tas","temperature","tgav_LL","rcp26",2153,"Simulated","C","LL",20.9501 -"CanESM2","tas","temperature","tgav_LL","rcp26",2154,"Simulated","C","LL",20.9375 -"CanESM2","tas","temperature","tgav_LL","rcp26",2155,"Simulated","C","LL",20.7789 -"CanESM2","tas","temperature","tgav_LL","rcp26",2156,"Simulated","C","LL",21.0021 -"CanESM2","tas","temperature","tgav_LL","rcp26",2157,"Simulated","C","LL",21.008 -"CanESM2","tas","temperature","tgav_LL","rcp26",2158,"Simulated","C","LL",20.8684 -"CanESM2","tas","temperature","tgav_LL","rcp26",2159,"Simulated","C","LL",20.6937 -"CanESM2","tas","temperature","tgav_LL","rcp26",2160,"Simulated","C","LL",20.8428 -"CanESM2","tas","temperature","tgav_LL","rcp26",2161,"Simulated","C","LL",20.8907 -"CanESM2","tas","temperature","tgav_LL","rcp26",2162,"Simulated","C","LL",20.9705 -"CanESM2","tas","temperature","tgav_LL","rcp26",2163,"Simulated","C","LL",20.9825 -"CanESM2","tas","temperature","tgav_LL","rcp26",2164,"Simulated","C","LL",20.8658 -"CanESM2","tas","temperature","tgav_LL","rcp26",2165,"Simulated","C","LL",20.8102 -"CanESM2","tas","temperature","tgav_LL","rcp26",2166,"Simulated","C","LL",20.7568 -"CanESM2","tas","temperature","tgav_LL","rcp26",2167,"Simulated","C","LL",20.9159 -"CanESM2","tas","temperature","tgav_LL","rcp26",2168,"Simulated","C","LL",20.9906 -"CanESM2","tas","temperature","tgav_LL","rcp26",2169,"Simulated","C","LL",20.9609 -"CanESM2","tas","temperature","tgav_LL","rcp26",2170,"Simulated","C","LL",20.8252 -"CanESM2","tas","temperature","tgav_LL","rcp26",2171,"Simulated","C","LL",20.9004 -"CanESM2","tas","temperature","tgav_LL","rcp26",2172,"Simulated","C","LL",20.8522 -"CanESM2","tas","temperature","tgav_LL","rcp26",2173,"Simulated","C","LL",20.8714000000001 -"CanESM2","tas","temperature","tgav_LL","rcp26",2174,"Simulated","C","LL",20.8282 -"CanESM2","tas","temperature","tgav_LL","rcp26",2175,"Simulated","C","LL",21.0501 -"CanESM2","tas","temperature","tgav_LL","rcp26",2176,"Simulated","C","LL",21.0659 -"CanESM2","tas","temperature","tgav_LL","rcp26",2177,"Simulated","C","LL",20.8603 -"CanESM2","tas","temperature","tgav_LL","rcp26",2178,"Simulated","C","LL",20.9839 -"CanESM2","tas","temperature","tgav_LL","rcp26",2179,"Simulated","C","LL",20.9513 -"CanESM2","tas","temperature","tgav_LL","rcp26",2180,"Simulated","C","LL",20.8697 -"CanESM2","tas","temperature","tgav_LL","rcp26",2181,"Simulated","C","LL",20.7929 -"CanESM2","tas","temperature","tgav_LL","rcp26",2182,"Simulated","C","LL",20.9045 -"CanESM2","tas","temperature","tgav_LL","rcp26",2183,"Simulated","C","LL",20.9552 -"CanESM2","tas","temperature","tgav_LL","rcp26",2184,"Simulated","C","LL",21.0914 -"CanESM2","tas","temperature","tgav_LL","rcp26",2185,"Simulated","C","LL",20.8417 -"CanESM2","tas","temperature","tgav_LL","rcp26",2186,"Simulated","C","LL",20.776 -"CanESM2","tas","temperature","tgav_LL","rcp26",2187,"Simulated","C","LL",20.9274 -"CanESM2","tas","temperature","tgav_LL","rcp26",2188,"Simulated","C","LL",20.9846 -"CanESM2","tas","temperature","tgav_LL","rcp26",2189,"Simulated","C","LL",20.8295 -"CanESM2","tas","temperature","tgav_LL","rcp26",2190,"Simulated","C","LL",20.78 -"CanESM2","tas","temperature","tgav_LL","rcp26",2191,"Simulated","C","LL",20.9052 -"CanESM2","tas","temperature","tgav_LL","rcp26",2192,"Simulated","C","LL",20.9713 -"CanESM2","tas","temperature","tgav_LL","rcp26",2193,"Simulated","C","LL",20.7039 -"CanESM2","tas","temperature","tgav_LL","rcp26",2194,"Simulated","C","LL",20.6065 -"CanESM2","tas","temperature","tgav_LL","rcp26",2195,"Simulated","C","LL",20.765 -"CanESM2","tas","temperature","tgav_LL","rcp26",2196,"Simulated","C","LL",20.7302 -"CanESM2","tas","temperature","tgav_LL","rcp26",2197,"Simulated","C","LL",20.7611 -"CanESM2","tas","temperature","tgav_LL","rcp26",2198,"Simulated","C","LL",20.9546 -"CanESM2","tas","temperature","tgav_LL","rcp26",2199,"Simulated","C","LL",20.8367 -"CanESM2","tas","temperature","tgav_LL","rcp26",2200,"Simulated","C","LL",20.7478 -"CanESM2","tas","temperature","tgav_LL","rcp26",2201,"Simulated","C","LL",20.9239 -"CanESM2","tas","temperature","tgav_LL","rcp26",2202,"Simulated","C","LL",20.7827 -"CanESM2","tas","temperature","tgav_LL","rcp26",2203,"Simulated","C","LL",20.6662 -"CanESM2","tas","temperature","tgav_LL","rcp26",2204,"Simulated","C","LL",20.689 -"CanESM2","tas","temperature","tgav_LL","rcp26",2205,"Simulated","C","LL",20.8955 -"CanESM2","tas","temperature","tgav_LL","rcp26",2206,"Simulated","C","LL",20.9501 -"CanESM2","tas","temperature","tgav_LL","rcp26",2207,"Simulated","C","LL",20.8483 -"CanESM2","tas","temperature","tgav_LL","rcp26",2208,"Simulated","C","LL",21.0446 -"CanESM2","tas","temperature","tgav_LL","rcp26",2209,"Simulated","C","LL",20.8977 -"CanESM2","tas","temperature","tgav_LL","rcp26",2210,"Simulated","C","LL",20.7079 -"CanESM2","tas","temperature","tgav_LL","rcp26",2211,"Simulated","C","LL",20.6319 -"CanESM2","tas","temperature","tgav_LL","rcp26",2212,"Simulated","C","LL",20.6593 -"CanESM2","tas","temperature","tgav_LL","rcp26",2213,"Simulated","C","LL",20.7925 -"CanESM2","tas","temperature","tgav_LL","rcp26",2214,"Simulated","C","LL",20.9534 -"CanESM2","tas","temperature","tgav_LL","rcp26",2215,"Simulated","C","LL",20.856 -"CanESM2","tas","temperature","tgav_LL","rcp26",2216,"Simulated","C","LL",20.6105 -"CanESM2","tas","temperature","tgav_LL","rcp26",2217,"Simulated","C","LL",20.6806 -"CanESM2","tas","temperature","tgav_LL","rcp26",2218,"Simulated","C","LL",20.806 -"CanESM2","tas","temperature","tgav_LL","rcp26",2219,"Simulated","C","LL",20.7617 -"CanESM2","tas","temperature","tgav_LL","rcp26",2220,"Simulated","C","LL",20.8143 -"CanESM2","tas","temperature","tgav_LL","rcp26",2221,"Simulated","C","LL",20.8347 -"CanESM2","tas","temperature","tgav_LL","rcp26",2222,"Simulated","C","LL",20.8739 -"CanESM2","tas","temperature","tgav_LL","rcp26",2223,"Simulated","C","LL",20.7396 -"CanESM2","tas","temperature","tgav_LL","rcp26",2224,"Simulated","C","LL",20.6466 -"CanESM2","tas","temperature","tgav_LL","rcp26",2225,"Simulated","C","LL",20.7787 -"CanESM2","tas","temperature","tgav_LL","rcp26",2226,"Simulated","C","LL",20.827 -"CanESM2","tas","temperature","tgav_LL","rcp26",2227,"Simulated","C","LL",20.7194 -"CanESM2","tas","temperature","tgav_LL","rcp26",2228,"Simulated","C","LL",20.8336 -"CanESM2","tas","temperature","tgav_LL","rcp26",2229,"Simulated","C","LL",20.8365 -"CanESM2","tas","temperature","tgav_LL","rcp26",2230,"Simulated","C","LL",20.6576 -"CanESM2","tas","temperature","tgav_LL","rcp26",2231,"Simulated","C","LL",20.4991 -"CanESM2","tas","temperature","tgav_LL","rcp26",2232,"Simulated","C","LL",20.7229 -"CanESM2","tas","temperature","tgav_LL","rcp26",2233,"Simulated","C","LL",20.6549 -"CanESM2","tas","temperature","tgav_LL","rcp26",2234,"Simulated","C","LL",20.4825 -"CanESM2","tas","temperature","tgav_LL","rcp26",2235,"Simulated","C","LL",20.8006 -"CanESM2","tas","temperature","tgav_LL","rcp26",2236,"Simulated","C","LL",20.9065000000001 -"CanESM2","tas","temperature","tgav_LL","rcp26",2237,"Simulated","C","LL",20.6548 -"CanESM2","tas","temperature","tgav_LL","rcp26",2238,"Simulated","C","LL",20.7825 -"CanESM2","tas","temperature","tgav_LL","rcp26",2239,"Simulated","C","LL",20.6362 -"CanESM2","tas","temperature","tgav_LL","rcp26",2240,"Simulated","C","LL",20.6621 -"CanESM2","tas","temperature","tgav_LL","rcp26",2241,"Simulated","C","LL",20.6497 -"CanESM2","tas","temperature","tgav_LL","rcp26",2242,"Simulated","C","LL",20.7271 -"CanESM2","tas","temperature","tgav_LL","rcp26",2243,"Simulated","C","LL",20.7375 -"CanESM2","tas","temperature","tgav_LL","rcp26",2244,"Simulated","C","LL",20.7192 -"CanESM2","tas","temperature","tgav_LL","rcp26",2245,"Simulated","C","LL",20.6988 -"CanESM2","tas","temperature","tgav_LL","rcp26",2246,"Simulated","C","LL",20.6545 -"CanESM2","tas","temperature","tgav_LL","rcp26",2247,"Simulated","C","LL",20.79 -"CanESM2","tas","temperature","tgav_LL","rcp26",2248,"Simulated","C","LL",20.5322 -"CanESM2","tas","temperature","tgav_LL","rcp26",2249,"Simulated","C","LL",20.5874 -"CanESM2","tas","temperature","tgav_LL","rcp26",2250,"Simulated","C","LL",20.8249 -"CanESM2","tas","temperature","tgav_LL","rcp26",2251,"Simulated","C","LL",20.9491 -"CanESM2","tas","temperature","tgav_LL","rcp26",2252,"Simulated","C","LL",20.6603 -"CanESM2","tas","temperature","tgav_LL","rcp26",2253,"Simulated","C","LL",20.468 -"CanESM2","tas","temperature","tgav_LL","rcp26",2254,"Simulated","C","LL",20.6471 -"CanESM2","tas","temperature","tgav_LL","rcp26",2255,"Simulated","C","LL",20.8439 -"CanESM2","tas","temperature","tgav_LL","rcp26",2256,"Simulated","C","LL",20.8468 -"CanESM2","tas","temperature","tgav_LL","rcp26",2257,"Simulated","C","LL",20.8234 -"CanESM2","tas","temperature","tgav_LL","rcp26",2258,"Simulated","C","LL",20.5443 -"CanESM2","tas","temperature","tgav_LL","rcp26",2259,"Simulated","C","LL",20.5774 -"CanESM2","tas","temperature","tgav_LL","rcp26",2260,"Simulated","C","LL",20.7442 -"CanESM2","tas","temperature","tgav_LL","rcp26",2261,"Simulated","C","LL",20.8771 -"CanESM2","tas","temperature","tgav_LL","rcp26",2262,"Simulated","C","LL",20.7098 -"CanESM2","tas","temperature","tgav_LL","rcp26",2263,"Simulated","C","LL",20.4324 -"CanESM2","tas","temperature","tgav_LL","rcp26",2264,"Simulated","C","LL",20.4942 -"CanESM2","tas","temperature","tgav_LL","rcp26",2265,"Simulated","C","LL",20.8395 -"CanESM2","tas","temperature","tgav_LL","rcp26",2266,"Simulated","C","LL",20.898 -"CanESM2","tas","temperature","tgav_LL","rcp26",2267,"Simulated","C","LL",20.6827 -"CanESM2","tas","temperature","tgav_LL","rcp26",2268,"Simulated","C","LL",20.5533 -"CanESM2","tas","temperature","tgav_LL","rcp26",2269,"Simulated","C","LL",20.655 -"CanESM2","tas","temperature","tgav_LL","rcp26",2270,"Simulated","C","LL",20.8686 -"CanESM2","tas","temperature","tgav_LL","rcp26",2271,"Simulated","C","LL",20.7026 -"CanESM2","tas","temperature","tgav_LL","rcp26",2272,"Simulated","C","LL",20.7581 -"CanESM2","tas","temperature","tgav_LL","rcp26",2273,"Simulated","C","LL",20.8956 -"CanESM2","tas","temperature","tgav_LL","rcp26",2274,"Simulated","C","LL",20.7999 -"CanESM2","tas","temperature","tgav_LL","rcp26",2275,"Simulated","C","LL",20.6915 -"CanESM2","tas","temperature","tgav_LL","rcp26",2276,"Simulated","C","LL",20.5737 -"CanESM2","tas","temperature","tgav_LL","rcp26",2277,"Simulated","C","LL",20.5589000000001 -"CanESM2","tas","temperature","tgav_LL","rcp26",2278,"Simulated","C","LL",20.7157 -"CanESM2","tas","temperature","tgav_LL","rcp26",2279,"Simulated","C","LL",20.5476 -"CanESM2","tas","temperature","tgav_LL","rcp26",2280,"Simulated","C","LL",20.3902 -"CanESM2","tas","temperature","tgav_LL","rcp26",2281,"Simulated","C","LL",20.548 -"CanESM2","tas","temperature","tgav_LL","rcp26",2282,"Simulated","C","LL",20.5759 -"CanESM2","tas","temperature","tgav_LL","rcp26",2283,"Simulated","C","LL",20.6648 -"CanESM2","tas","temperature","tgav_LL","rcp26",2284,"Simulated","C","LL",20.806 -"CanESM2","tas","temperature","tgav_LL","rcp26",2285,"Simulated","C","LL",20.6334 -"CanESM2","tas","temperature","tgav_LL","rcp26",2286,"Simulated","C","LL",20.7801 -"CanESM2","tas","temperature","tgav_LL","rcp26",2287,"Simulated","C","LL",20.8416 -"CanESM2","tas","temperature","tgav_LL","rcp26",2288,"Simulated","C","LL",20.6974 -"CanESM2","tas","temperature","tgav_LL","rcp26",2289,"Simulated","C","LL",20.7154 -"CanESM2","tas","temperature","tgav_LL","rcp26",2290,"Simulated","C","LL",20.726 -"CanESM2","tas","temperature","tgav_LL","rcp26",2291,"Simulated","C","LL",20.6951 -"CanESM2","tas","temperature","tgav_LL","rcp26",2292,"Simulated","C","LL",20.521 -"CanESM2","tas","temperature","tgav_LL","rcp26",2293,"Simulated","C","LL",20.591 -"CanESM2","tas","temperature","tgav_LL","rcp26",2294,"Simulated","C","LL",20.6791 -"CanESM2","tas","temperature","tgav_LL","rcp26",2295,"Simulated","C","LL",20.7046 -"CanESM2","tas","temperature","tgav_LL","rcp26",2296,"Simulated","C","LL",20.5925 -"CanESM2","tas","temperature","tgav_LL","rcp26",2297,"Simulated","C","LL",20.5722 -"CanESM2","tas","temperature","tgav_LL","rcp26",2298,"Simulated","C","LL",20.5074 -"CanESM2","tas","temperature","tgav_LL","rcp26",2299,"Simulated","C","LL",20.6582 -"CanESM2","tas","temperature","tgav_LL","rcp26",2300,"Simulated","C","LL",20.6719000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",14.0415 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",14.0198 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",14.1484 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",14.2326 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",14.188 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",14.2164 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",14.2868 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",14.1757 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",14.3932 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",14.4403 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",14.2055 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",14.2979 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",14.1764 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",14.0955 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",14.1447 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",14.2045 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",14.3111 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",14.3578 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",14.356 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",14.4647000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",14.2041 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",14.4082 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",14.473 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",14.4516 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",14.3061 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",14.3907 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",14.3747 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",14.3228 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",14.3295 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",14.3528 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",14.3371 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",14.4875 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",14.4902 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",14.4195 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",14.4467 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",14.3714000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",14.4011 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",14.4007 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",14.3525 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",14.4085 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",14.4809 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",14.5232 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",14.396 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",14.2923 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",14.5083 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",14.3548 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",14.3087 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",14.3312 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",14.2601 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",14.2468 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",14.288 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",14.284 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",14.421 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",14.2716 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",14.1552 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",14.1895 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",14.236 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",14.2726 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",14.0621 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",14.0811 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",14.1345 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",14.0939 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",14.1044 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",14.1027 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",14.134 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",14.003 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",14.1444 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",14.1122 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",13.9662 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",14.1336 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",14.1816 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",14.0433 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",14.0172 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",14.067 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",14.0222 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",14.0936 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",14.2323 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",14.0349000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",14.1821 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",14.194 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",14.2659 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",14.0811 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",14.1293 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",14.1088 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",14.2887 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",14.4821 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",14.1563 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",14.1018 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",14.0700000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",14.0467 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",14.0013 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",13.9823 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",14.0433 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",14.1991 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",14.0311 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-8.65709999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-8.67949999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-8.46009999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-8.4896 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-8.2296 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-8.3802 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-8.22039999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-8.36859999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-8.19939999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-8.0027 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-8.76049999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-8.28049999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-8.3759 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-8.79179999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-8.71849999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-8.6062 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-8.34319999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-8.21029999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-7.96099999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-8.01889999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-8.40689999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-8.38419999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-8.20689999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-8.00979999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-8.26179999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-8.17169999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-8.29229999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-8.33659999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-8.69159999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-8.43769999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-8.35199999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-8.24189999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-8.19169999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-8.44649999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-8.25319999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-8.73939999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-8.03249999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-8.12009999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-8.38200000000001 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-8.21839999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-8.1472 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-8.1891 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-8.31699999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-8.75899999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-8.3381 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-8.52949999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-8.73039999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-8.67539999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-8.76009999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-8.72459999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-8.70919999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-8.60819999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-8.27319999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-8.55329999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-8.8331 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-8.53099999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-8.64159999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-8.56799999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-8.7303 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-8.85919999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-8.84639999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-8.81999999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-8.94649999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-8.7527 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-8.67089999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-9.0779 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-8.69509999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-8.97339999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-9.24779999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-8.88929999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-8.64139999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-8.8895 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-8.86849999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-8.96099999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-9.43849999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-9.07619999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-8.16499999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-8.86959999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-8.60809999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-8.70509999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-8.66029999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-8.74829999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-8.57249999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-8.7355 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-8.64209999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-8.34569999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-8.87559999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-8.6703 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-9.0523 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-9.0324 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-9.2312 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-9.245 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-9.01259999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-9.01459999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-9.10729999999995 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",19.1873000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",19.1657 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",19.2737 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",19.3837 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",19.27 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",19.339 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",19.3892 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",19.2865 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",19.5149 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",19.5281 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",19.4118 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",19.4164 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",19.289 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",19.284 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",19.3277 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",19.3757 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",19.4468 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",19.474 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",19.4152 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",19.5617 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",19.33 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",19.5752 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",19.6145 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",19.5436 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",19.4223 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",19.5056 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",19.5133 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",19.4597 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",19.5484 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",19.5193 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",19.4806 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",19.6402 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",19.6321 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",19.6032 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",19.5927 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",19.6106 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",19.4867 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",19.5061 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",19.5064 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",19.538 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",19.6107 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",19.6721 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",19.545 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",19.518 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",19.6875 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",19.5426 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",19.5317 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",19.5468 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",19.4787 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",19.4544 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",19.5014 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",19.4737 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",19.5658 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",19.4459 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",19.3666 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",19.3402 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",19.4223 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",19.4505 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",19.2291 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",19.2817 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",19.3442 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",19.2884 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",19.33 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",19.2839 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",19.3039 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",19.2354 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",19.3221 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",19.3456 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",19.2288 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",19.3529 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",19.3556 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",19.2421000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",19.2054 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",19.2874 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",19.3407 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",19.3461 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",19.3097 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",19.2274 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",19.3486 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",19.3852 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",19.4632 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",19.2565 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",19.2758 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",19.2875 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",19.4871 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",19.6571 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",19.3776 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",19.2642 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",19.3118 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",19.2787 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",19.2681 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",19.248 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",19.27 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",19.4616 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",19.2766 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2005,"Simulated","C","global",12.386275 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",14.401175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",14.397875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",14.394575 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",14.493125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",14.39345 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",14.408725 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",14.57175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",14.67415 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",14.706525 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",14.709425 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",14.6968 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",14.73575 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",14.87355 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",14.9168 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",14.97685 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",15.000525 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",14.954125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",15.00025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",15.0115 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",15.03435 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",15.03515 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",15.038675 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",15.06835 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",15.078175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",15.15115 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",15.207025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",15.227775 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",15.21555 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",15.212875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",15.252875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",15.314875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",15.3286 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",15.19895 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",15.26655 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",15.266925 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",15.31185 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",15.3883 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",15.39295 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",15.368825 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",15.419125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",15.427625 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",15.475175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",15.538325 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",15.608625 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",15.56185 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",15.540725 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",15.46675 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",15.51045 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",15.50075 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",15.531 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",15.570025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",15.5893 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",15.45465 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",15.565325 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",15.528625 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",15.630875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",15.585975 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",15.56025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",15.45715 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",15.45405 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",15.478525 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",15.546 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",15.498725 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",15.570725 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",15.500025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",15.5212 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",15.4538 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",15.503525 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",15.550125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",15.467375 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",15.4813 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",15.470125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",15.489975 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",15.52615 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",15.4873 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",15.447 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",15.48305 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",15.504925 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",15.43355 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",15.444125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",15.514375 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",15.48485 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",15.4963 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",15.49505 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",15.498975 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",15.44145 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",15.404 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",15.4045 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",15.380175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",15.365125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",15.3486 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",15.356825 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",15.35325 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",15.328175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",15.286025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2101,"Simulated","C","global",15.3472 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2102,"Simulated","C","global",15.4016 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2103,"Simulated","C","global",15.351 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2104,"Simulated","C","global",15.4354 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2105,"Simulated","C","global",15.4459 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2106,"Simulated","C","global",15.3519 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2107,"Simulated","C","global",15.3178 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2108,"Simulated","C","global",15.1782 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2109,"Simulated","C","global",15.1331 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2110,"Simulated","C","global",15.3123000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2111,"Simulated","C","global",15.4376 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2112,"Simulated","C","global",15.2796 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2113,"Simulated","C","global",15.4181 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2114,"Simulated","C","global",15.3791000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2115,"Simulated","C","global",15.3035 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2116,"Simulated","C","global",15.2678 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2117,"Simulated","C","global",15.2967 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2118,"Simulated","C","global",15.3542 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2119,"Simulated","C","global",15.2767 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2120,"Simulated","C","global",15.2873 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2121,"Simulated","C","global",15.3595 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2122,"Simulated","C","global",15.284 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2123,"Simulated","C","global",15.1856 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2124,"Simulated","C","global",15.2187 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2125,"Simulated","C","global",15.3091 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2126,"Simulated","C","global",15.2107 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2127,"Simulated","C","global",15.1201 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2128,"Simulated","C","global",15.194 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2129,"Simulated","C","global",15.1824 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2130,"Simulated","C","global",15.0874 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2131,"Simulated","C","global",15.1263 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2132,"Simulated","C","global",15.2624 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2133,"Simulated","C","global",15.3876 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2134,"Simulated","C","global",15.382 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2135,"Simulated","C","global",15.4765 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2136,"Simulated","C","global",15.5844 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2137,"Simulated","C","global",15.4613000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2138,"Simulated","C","global",15.3445 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2139,"Simulated","C","global",15.1237 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2140,"Simulated","C","global",15.1006 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2141,"Simulated","C","global",15.1757 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2142,"Simulated","C","global",15.2636 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2143,"Simulated","C","global",15.3186 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2144,"Simulated","C","global",15.2909 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2145,"Simulated","C","global",15.3445 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2146,"Simulated","C","global",15.3659 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2147,"Simulated","C","global",15.2053 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2148,"Simulated","C","global",15.3022 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2149,"Simulated","C","global",15.3288 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2150,"Simulated","C","global",15.2052 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2151,"Simulated","C","global",15.1369 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2152,"Simulated","C","global",15.2117 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2153,"Simulated","C","global",15.1099 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2154,"Simulated","C","global",15.0936 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2155,"Simulated","C","global",15.2832 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2156,"Simulated","C","global",15.3342 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2157,"Simulated","C","global",15.3964 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2158,"Simulated","C","global",15.3531 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2159,"Simulated","C","global",15.1653 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2160,"Simulated","C","global",15.2845 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2161,"Simulated","C","global",15.2561 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2162,"Simulated","C","global",15.2496 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2163,"Simulated","C","global",15.2253 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2164,"Simulated","C","global",15.1599000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2165,"Simulated","C","global",15.0877 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2166,"Simulated","C","global",15.0706 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2167,"Simulated","C","global",15.2401 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2168,"Simulated","C","global",15.2569 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2169,"Simulated","C","global",15.247 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2170,"Simulated","C","global",15.0818 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2171,"Simulated","C","global",15.1931 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2172,"Simulated","C","global",15.2443 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2173,"Simulated","C","global",15.387 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2174,"Simulated","C","global",15.3747 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2175,"Simulated","C","global",15.3873 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2176,"Simulated","C","global",15.456 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2177,"Simulated","C","global",15.5293 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2178,"Simulated","C","global",15.2438 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2179,"Simulated","C","global",15.1361 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2180,"Simulated","C","global",15.1481 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2181,"Simulated","C","global",15.1765 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2182,"Simulated","C","global",15.1284 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2183,"Simulated","C","global",15.1768 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2184,"Simulated","C","global",15.3176 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2185,"Simulated","C","global",15.1778 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2186,"Simulated","C","global",15.2017 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2187,"Simulated","C","global",15.1117 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2188,"Simulated","C","global",15.2297 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2189,"Simulated","C","global",15.2454 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2190,"Simulated","C","global",15.2683 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2191,"Simulated","C","global",15.1729 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2192,"Simulated","C","global",15.2013 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2193,"Simulated","C","global",15.2722 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2194,"Simulated","C","global",15.279 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2195,"Simulated","C","global",15.1879 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2196,"Simulated","C","global",15.2271 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2197,"Simulated","C","global",15.1919 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2198,"Simulated","C","global",15.2966 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2199,"Simulated","C","global",15.1883 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2200,"Simulated","C","global",15.1921 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2201,"Simulated","C","global",15.1358 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2202,"Simulated","C","global",15.307 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2203,"Simulated","C","global",15.1903 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2204,"Simulated","C","global",15.1612 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2205,"Simulated","C","global",15.0886 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2206,"Simulated","C","global",15.046 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2207,"Simulated","C","global",15.0412 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2208,"Simulated","C","global",14.9791 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2209,"Simulated","C","global",14.962 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2210,"Simulated","C","global",15.0494 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2211,"Simulated","C","global",14.9851 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2212,"Simulated","C","global",15.0058 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2213,"Simulated","C","global",14.8784 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2214,"Simulated","C","global",14.9246 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2215,"Simulated","C","global",14.9562 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2216,"Simulated","C","global",14.9774 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2217,"Simulated","C","global",14.9327 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2218,"Simulated","C","global",14.9515 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2219,"Simulated","C","global",15.048 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2220,"Simulated","C","global",15.1106 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2221,"Simulated","C","global",15.0748 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2222,"Simulated","C","global",15.1291000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2223,"Simulated","C","global",15.1581 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2224,"Simulated","C","global",15.2967 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2225,"Simulated","C","global",15.3584 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2226,"Simulated","C","global",15.1477 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2227,"Simulated","C","global",15.103 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2228,"Simulated","C","global",15.1563 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2229,"Simulated","C","global",15.1228 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2230,"Simulated","C","global",15.1001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2231,"Simulated","C","global",14.9802 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2232,"Simulated","C","global",15.0507 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2233,"Simulated","C","global",15.1019 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2234,"Simulated","C","global",15.1013 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2235,"Simulated","C","global",15.2287 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2236,"Simulated","C","global",15.1429 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2237,"Simulated","C","global",15.107 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2238,"Simulated","C","global",15.0723 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2239,"Simulated","C","global",15.0402 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2240,"Simulated","C","global",15.0995 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2241,"Simulated","C","global",15.1634 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2242,"Simulated","C","global",15.0347 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2243,"Simulated","C","global",15.1191 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2244,"Simulated","C","global",15.3035 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2245,"Simulated","C","global",15.3654 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2246,"Simulated","C","global",15.2125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2247,"Simulated","C","global",15.2081 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2248,"Simulated","C","global",15.1299 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2249,"Simulated","C","global",15.1823 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2250,"Simulated","C","global",15.1498 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2251,"Simulated","C","global",15.0574 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2252,"Simulated","C","global",15.1823 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2253,"Simulated","C","global",15.149 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2254,"Simulated","C","global",15.2916 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2255,"Simulated","C","global",15.1588 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2256,"Simulated","C","global",15.2002 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2257,"Simulated","C","global",15.1982 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2258,"Simulated","C","global",15.152 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2259,"Simulated","C","global",15.1336 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2260,"Simulated","C","global",15.1909 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2261,"Simulated","C","global",15.1644 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2262,"Simulated","C","global",15.1519 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2263,"Simulated","C","global",15.1758 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2264,"Simulated","C","global",15.1886 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2265,"Simulated","C","global",15.3322 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2266,"Simulated","C","global",15.3167 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2267,"Simulated","C","global",15.3320000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2268,"Simulated","C","global",15.1619 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2269,"Simulated","C","global",15.0781 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2270,"Simulated","C","global",15.1005 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2271,"Simulated","C","global",14.9639 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2272,"Simulated","C","global",14.9819 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2273,"Simulated","C","global",15.0875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2274,"Simulated","C","global",14.9642 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2275,"Simulated","C","global",14.9216 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2276,"Simulated","C","global",15.0794 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2277,"Simulated","C","global",15.2241 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2278,"Simulated","C","global",15.0873 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2279,"Simulated","C","global",14.803 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2280,"Simulated","C","global",14.9889 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2281,"Simulated","C","global",14.9905 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2282,"Simulated","C","global",15.1698 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2283,"Simulated","C","global",15.1444 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2284,"Simulated","C","global",15.1209 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2285,"Simulated","C","global",15.1279 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2286,"Simulated","C","global",15.1825 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2287,"Simulated","C","global",15.0552 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2288,"Simulated","C","global",15.0899 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2289,"Simulated","C","global",15.0940000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2290,"Simulated","C","global",15.1226 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2291,"Simulated","C","global",14.9928 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2292,"Simulated","C","global",14.8824 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2293,"Simulated","C","global",15.0358 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2294,"Simulated","C","global",14.9966 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2295,"Simulated","C","global",15.096 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2296,"Simulated","C","global",14.9824 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2297,"Simulated","C","global",14.8267 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2298,"Simulated","C","global",14.8448 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2299,"Simulated","C","global",15.114 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2005,"Simulated","C","HL",-11.287225 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-8.34114999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-8.27772499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-8.15732499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-8.01784999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-8.21047499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-8.24469999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-8.07774999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-7.82164999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-7.82527499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-7.80097499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-7.84454999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-7.85097499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-7.45397499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-7.38247499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-7.20444999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-7.32412499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-7.62274999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-7.35297499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-7.31134999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-7.31182499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-7.14587499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-7.11802499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-7.16062499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-7.18714999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-7.04512499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-7.13037499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-7.01584999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-7.05609999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-7.01292499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-6.87032499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-6.82504999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-6.77367499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-7.03282499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-6.95614999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-7.07374999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-6.95672499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-6.71234999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-6.52587499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-6.56092499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-6.44737499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-6.65312499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-6.63524999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-6.54784999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-6.452125 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-6.38767499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-6.36189999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-6.46737499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-6.49357499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-6.52444999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-6.62224999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-6.59534999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-6.44867499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-6.54597499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-6.49857499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-6.52037499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-6.29397499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-6.34214999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-6.40819999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-6.47864999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-6.58824999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-6.59629999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-6.42134999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-6.60304999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-6.48749999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-6.63817499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-6.41319999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-6.70237499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-6.61832499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-6.58069999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-6.67677499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-6.58257499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-6.56132499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-6.51904999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-6.55024999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-6.55764999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-6.60552499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-6.53617499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-6.53569999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-6.63327499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-6.70944999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-6.539125 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-6.65719999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-6.52132499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-6.43857499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-6.42509999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-6.51614999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-6.59944999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-6.65429999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-6.77422499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-6.79599999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-6.76104999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-6.84652499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-6.65534999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-6.66169999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-6.79644999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2101,"Simulated","C","HL",-6.58709999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2102,"Simulated","C","HL",-6.40019999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2103,"Simulated","C","HL",-6.74469999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2104,"Simulated","C","HL",-6.76429999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2105,"Simulated","C","HL",-6.6431 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2106,"Simulated","C","HL",-6.76619999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2107,"Simulated","C","HL",-6.49339999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2108,"Simulated","C","HL",-7.00629999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2109,"Simulated","C","HL",-7.19629999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2110,"Simulated","C","HL",-7.03949999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2111,"Simulated","C","HL",-6.7296 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2112,"Simulated","C","HL",-6.84039999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2113,"Simulated","C","HL",-6.52549999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2114,"Simulated","C","HL",-6.90129999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2115,"Simulated","C","HL",-6.85609999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2116,"Simulated","C","HL",-6.78209999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2117,"Simulated","C","HL",-6.69219999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2118,"Simulated","C","HL",-6.57589999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2119,"Simulated","C","HL",-7.13409999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2120,"Simulated","C","HL",-7.05009999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2121,"Simulated","C","HL",-6.71809999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2122,"Simulated","C","HL",-6.95759999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2123,"Simulated","C","HL",-6.87879999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2124,"Simulated","C","HL",-6.94409999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2125,"Simulated","C","HL",-6.90469999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2126,"Simulated","C","HL",-6.89339999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2127,"Simulated","C","HL",-6.97559999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2128,"Simulated","C","HL",-6.81279999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2129,"Simulated","C","HL",-7.22749999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2130,"Simulated","C","HL",-7.12509999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2131,"Simulated","C","HL",-7.31869999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2132,"Simulated","C","HL",-6.74099999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2133,"Simulated","C","HL",-6.74019999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2134,"Simulated","C","HL",-6.99679999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2135,"Simulated","C","HL",-6.56879999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2136,"Simulated","C","HL",-6.44289999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2137,"Simulated","C","HL",-6.38439999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2138,"Simulated","C","HL",-6.45169999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2139,"Simulated","C","HL",-6.95739999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2140,"Simulated","C","HL",-7.11589999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2141,"Simulated","C","HL",-7.03269999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2142,"Simulated","C","HL",-6.7176 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2143,"Simulated","C","HL",-6.53440000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2144,"Simulated","C","HL",-6.7079 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2145,"Simulated","C","HL",-6.72669999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2146,"Simulated","C","HL",-6.84889999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2147,"Simulated","C","HL",-7.05789999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2148,"Simulated","C","HL",-6.58609999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2149,"Simulated","C","HL",-6.9341 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2150,"Simulated","C","HL",-7.17099999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2151,"Simulated","C","HL",-7.13579999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2152,"Simulated","C","HL",-6.79809999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2153,"Simulated","C","HL",-7.20259999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2154,"Simulated","C","HL",-7.32669999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2155,"Simulated","C","HL",-7.00969999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2156,"Simulated","C","HL",-7.00009999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2157,"Simulated","C","HL",-6.68739999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2158,"Simulated","C","HL",-6.82589999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2159,"Simulated","C","HL",-7.4187 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2160,"Simulated","C","HL",-6.84839999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2161,"Simulated","C","HL",-6.9083 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2162,"Simulated","C","HL",-6.99930000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2163,"Simulated","C","HL",-6.99429999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2164,"Simulated","C","HL",-6.63219999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2165,"Simulated","C","HL",-6.91489999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2166,"Simulated","C","HL",-7.01029999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2167,"Simulated","C","HL",-6.91129999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2168,"Simulated","C","HL",-6.76139999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2169,"Simulated","C","HL",-6.75019999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2170,"Simulated","C","HL",-7.11279999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2171,"Simulated","C","HL",-6.80709999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2172,"Simulated","C","HL",-6.8304 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2173,"Simulated","C","HL",-6.77369999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2174,"Simulated","C","HL",-6.70869999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2175,"Simulated","C","HL",-6.8843 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2176,"Simulated","C","HL",-6.58959999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2177,"Simulated","C","HL",-6.46499999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2178,"Simulated","C","HL",-6.72399999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2179,"Simulated","C","HL",-6.7912 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2180,"Simulated","C","HL",-6.85890000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2181,"Simulated","C","HL",-6.8313 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2182,"Simulated","C","HL",-6.9896 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2183,"Simulated","C","HL",-7.0498 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2184,"Simulated","C","HL",-6.63989999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2185,"Simulated","C","HL",-7.41289999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2186,"Simulated","C","HL",-6.99089999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2187,"Simulated","C","HL",-7.19229999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2188,"Simulated","C","HL",-6.77959999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2189,"Simulated","C","HL",-7.02439999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2190,"Simulated","C","HL",-6.94889999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2191,"Simulated","C","HL",-7.0573 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2192,"Simulated","C","HL",-7.11399999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2193,"Simulated","C","HL",-6.83759999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2194,"Simulated","C","HL",-6.88939999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2195,"Simulated","C","HL",-6.94889999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2196,"Simulated","C","HL",-7.0138 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2197,"Simulated","C","HL",-7.14329999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2198,"Simulated","C","HL",-6.91069999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2199,"Simulated","C","HL",-6.92449999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2200,"Simulated","C","HL",-7.07579999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2201,"Simulated","C","HL",-7.30599999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2202,"Simulated","C","HL",-6.92469999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2203,"Simulated","C","HL",-7.06629999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2204,"Simulated","C","HL",-7.05529999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2205,"Simulated","C","HL",-7.06219999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2206,"Simulated","C","HL",-7.22489999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2207,"Simulated","C","HL",-7.34099999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2208,"Simulated","C","HL",-7.71319999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2209,"Simulated","C","HL",-7.74989999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2210,"Simulated","C","HL",-7.33259999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2211,"Simulated","C","HL",-7.39079999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2212,"Simulated","C","HL",-7.11559999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2213,"Simulated","C","HL",-7.18059999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2214,"Simulated","C","HL",-7.33209999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2215,"Simulated","C","HL",-7.5813 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2216,"Simulated","C","HL",-7.29829999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2217,"Simulated","C","HL",-7.52569999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2218,"Simulated","C","HL",-7.46299999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2219,"Simulated","C","HL",-7.55359999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2220,"Simulated","C","HL",-7.19469999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2221,"Simulated","C","HL",-7.13749999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2222,"Simulated","C","HL",-7.04640000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2223,"Simulated","C","HL",-6.93429999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2224,"Simulated","C","HL",-6.67659999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2225,"Simulated","C","HL",-6.5831 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2226,"Simulated","C","HL",-6.6703 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2227,"Simulated","C","HL",-7.10239999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2228,"Simulated","C","HL",-7.11149999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2229,"Simulated","C","HL",-7.09229999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2230,"Simulated","C","HL",-7.07599999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2231,"Simulated","C","HL",-6.95519999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2232,"Simulated","C","HL",-6.99629999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2233,"Simulated","C","HL",-7.01130000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2234,"Simulated","C","HL",-7.23849999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2235,"Simulated","C","HL",-6.84829999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2236,"Simulated","C","HL",-6.94999999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2237,"Simulated","C","HL",-7.0138 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2238,"Simulated","C","HL",-7.09219999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2239,"Simulated","C","HL",-7.16069999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2240,"Simulated","C","HL",-7.22389999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2241,"Simulated","C","HL",-6.79079999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2242,"Simulated","C","HL",-7.16849999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2243,"Simulated","C","HL",-7.12519999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2244,"Simulated","C","HL",-6.92339999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2245,"Simulated","C","HL",-6.98689999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2246,"Simulated","C","HL",-6.82939999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2247,"Simulated","C","HL",-6.68699999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2248,"Simulated","C","HL",-6.92949999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2249,"Simulated","C","HL",-6.78269999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2250,"Simulated","C","HL",-6.70209999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2251,"Simulated","C","HL",-6.73390000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2252,"Simulated","C","HL",-6.8546 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2253,"Simulated","C","HL",-7.08769999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2254,"Simulated","C","HL",-6.56279999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2255,"Simulated","C","HL",-6.59469999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2256,"Simulated","C","HL",-6.51649999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2257,"Simulated","C","HL",-6.81129999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2258,"Simulated","C","HL",-7.02869999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2259,"Simulated","C","HL",-6.82589999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2260,"Simulated","C","HL",-6.72069999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2261,"Simulated","C","HL",-6.92869999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2262,"Simulated","C","HL",-6.97469999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2263,"Simulated","C","HL",-7.28639999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2264,"Simulated","C","HL",-7.26579999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2265,"Simulated","C","HL",-7.14349999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2266,"Simulated","C","HL",-6.8605 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2267,"Simulated","C","HL",-6.5958 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2268,"Simulated","C","HL",-6.78799999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2269,"Simulated","C","HL",-6.87489999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2270,"Simulated","C","HL",-6.78589999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2271,"Simulated","C","HL",-6.85789999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2272,"Simulated","C","HL",-7.27259999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2273,"Simulated","C","HL",-7.21529999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2274,"Simulated","C","HL",-7.20779999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2275,"Simulated","C","HL",-7.43439999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2276,"Simulated","C","HL",-7.11329999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2277,"Simulated","C","HL",-6.73659999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2278,"Simulated","C","HL",-7.37019999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2279,"Simulated","C","HL",-7.80349999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2280,"Simulated","C","HL",-7.29499999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2281,"Simulated","C","HL",-7.34639999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2282,"Simulated","C","HL",-6.96749999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2283,"Simulated","C","HL",-6.93759999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2284,"Simulated","C","HL",-7.041 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2285,"Simulated","C","HL",-6.8886 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2286,"Simulated","C","HL",-6.76159999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2287,"Simulated","C","HL",-7.04859999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2288,"Simulated","C","HL",-6.63529999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2289,"Simulated","C","HL",-6.99549999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2290,"Simulated","C","HL",-6.88799999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2291,"Simulated","C","HL",-7.24959999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2292,"Simulated","C","HL",-7.58019999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2293,"Simulated","C","HL",-7.41119999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2294,"Simulated","C","HL",-7.3297 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2295,"Simulated","C","HL",-7.39400000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2296,"Simulated","C","HL",-7.33389999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2297,"Simulated","C","HL",-7.2534 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2298,"Simulated","C","HL",-7.28919999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2299,"Simulated","C","HL",-7.2672 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2005,"Simulated","C","LL",17.837825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",19.639125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",19.620425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",19.588675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",19.677875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",19.5995 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",19.62625 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",19.788275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",19.8553 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",19.8960250000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",19.893925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",19.888425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",19.937875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",20.015975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",20.05275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",20.085575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",20.1423 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",20.153975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",20.148575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",20.1528 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",20.18105 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",20.1438 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",20.141725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",20.18805 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",20.206225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",20.26335 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",20.351725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",20.3509 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",20.3451 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",20.3319 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",20.3482 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",20.414075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",20.4191 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",20.31925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",20.3848 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",20.41235 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",20.4406 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",20.478425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",20.4412 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",20.4196 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",20.455375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",20.513125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",20.56755 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",20.6251 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",20.689525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",20.61715 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",20.58525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",20.5185 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",20.578325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",20.573525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",20.633275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",20.6751 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",20.664975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",20.521675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",20.6469 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",20.606825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",20.680525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",20.63635 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",20.6199 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",20.509225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",20.5307 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",20.562675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",20.605425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",20.589075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",20.651075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",20.5988 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",20.573025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",20.5567 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",20.59855 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",20.6472 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",20.56755 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",20.56295 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",20.5443 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",20.55895 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",20.6107 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",20.564575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",20.52605 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",20.554425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",20.5812 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",20.5159 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",20.546425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",20.59365 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",20.584475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",20.5673 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",20.546725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",20.5484 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",20.498625 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",20.471725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",20.48495 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",20.4827 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",20.4692 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",20.4408 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",20.470625 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",20.422225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",20.392775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",20.371975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2101,"Simulated","C","LL",20.3991 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2102,"Simulated","C","LL",20.423 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2103,"Simulated","C","LL",20.4399 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2104,"Simulated","C","LL",20.5483 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2105,"Simulated","C","LL",20.5333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2106,"Simulated","C","LL",20.446 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2107,"Simulated","C","LL",20.3413 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2108,"Simulated","C","LL",20.2877 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2109,"Simulated","C","LL",20.2759 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2110,"Simulated","C","LL",20.4602 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2111,"Simulated","C","LL",20.543 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2112,"Simulated","C","LL",20.3741 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2113,"Simulated","C","LL",20.4721 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2114,"Simulated","C","LL",20.5106 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2115,"Simulated","C","LL",20.4073 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2116,"Simulated","C","LL",20.3462 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2117,"Simulated","C","LL",20.361 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2118,"Simulated","C","LL",20.405 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2119,"Simulated","C","LL",20.4382 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2120,"Simulated","C","LL",20.432 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2121,"Simulated","C","LL",20.4443 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2122,"Simulated","C","LL",20.4065000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2123,"Simulated","C","LL",20.2674 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2124,"Simulated","C","LL",20.3232 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2125,"Simulated","C","LL",20.4252 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2126,"Simulated","C","LL",20.3016 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2127,"Simulated","C","LL",20.2091 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2128,"Simulated","C","LL",20.2626 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2129,"Simulated","C","LL",20.3438 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2130,"Simulated","C","LL",20.2033 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2131,"Simulated","C","LL",20.2958 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2132,"Simulated","C","LL",20.3302 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2133,"Simulated","C","LL",20.484 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2134,"Simulated","C","LL",20.5363 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2135,"Simulated","C","LL",20.5539 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2136,"Simulated","C","LL",20.6575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2137,"Simulated","C","LL",20.4928 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2138,"Simulated","C","LL",20.3645 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2139,"Simulated","C","LL",20.2093 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2140,"Simulated","C","LL",20.2173 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2141,"Simulated","C","LL",20.2907 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2142,"Simulated","C","LL",20.3263 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2143,"Simulated","C","LL",20.3517000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2144,"Simulated","C","LL",20.3576 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2145,"Simulated","C","LL",20.4278 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2146,"Simulated","C","LL",20.4823 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2147,"Simulated","C","LL",20.3328 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2148,"Simulated","C","LL",20.3434 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2149,"Simulated","C","LL",20.4563 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2150,"Simulated","C","LL",20.3588 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2151,"Simulated","C","LL",20.2667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2152,"Simulated","C","LL",20.281 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2153,"Simulated","C","LL",20.2488 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2154,"Simulated","C","LL",20.2573 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2155,"Simulated","C","LL",20.4176 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2156,"Simulated","C","LL",20.4782 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2157,"Simulated","C","LL",20.4827 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2158,"Simulated","C","LL",20.4613000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2159,"Simulated","C","LL",20.3667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2160,"Simulated","C","LL",20.3821 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2161,"Simulated","C","LL",20.361 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2162,"Simulated","C","LL",20.3739 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2163,"Simulated","C","LL",20.3428 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2164,"Simulated","C","LL",20.1789 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2165,"Simulated","C","LL",20.1553 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2166,"Simulated","C","LL",20.1562 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2167,"Simulated","C","LL",20.3419 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2168,"Simulated","C","LL",20.3281 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2169,"Simulated","C","LL",20.3133 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2170,"Simulated","C","LL",20.1936 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2171,"Simulated","C","LL",20.2601 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2172,"Simulated","C","LL",20.3285 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2173,"Simulated","C","LL",20.491 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2174,"Simulated","C","LL",20.4608 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2175,"Simulated","C","LL",20.5168 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2176,"Simulated","C","LL",20.5334 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2177,"Simulated","C","LL",20.595 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2178,"Simulated","C","LL",20.3034 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2179,"Simulated","C","LL",20.1864 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2180,"Simulated","C","LL",20.2167 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2181,"Simulated","C","LL",20.2452 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2182,"Simulated","C","LL",20.2225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2183,"Simulated","C","LL",20.2959 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2184,"Simulated","C","LL",20.3748000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2185,"Simulated","C","LL",20.3807 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2186,"Simulated","C","LL",20.3131 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2187,"Simulated","C","LL",20.2486 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2188,"Simulated","C","LL",20.2988 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2189,"Simulated","C","LL",20.3744 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2190,"Simulated","C","LL",20.3852 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2191,"Simulated","C","LL",20.2928 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2192,"Simulated","C","LL",20.3409 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2193,"Simulated","C","LL",20.3645 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2194,"Simulated","C","LL",20.3847 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2195,"Simulated","C","LL",20.2863 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2196,"Simulated","C","LL",20.3496 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2197,"Simulated","C","LL",20.3362 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2198,"Simulated","C","LL",20.4113 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2199,"Simulated","C","LL",20.2812 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2200,"Simulated","C","LL",20.3206 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2201,"Simulated","C","LL",20.3044 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2202,"Simulated","C","LL",20.4272 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2203,"Simulated","C","LL",20.3163 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2204,"Simulated","C","LL",20.2781 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2205,"Simulated","C","LL",20.1902 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2206,"Simulated","C","LL",20.1752 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2207,"Simulated","C","LL",20.1963 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2208,"Simulated","C","LL",20.2054 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2209,"Simulated","C","LL",20.1929 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2210,"Simulated","C","LL",20.2043 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2211,"Simulated","C","LL",20.1385 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2212,"Simulated","C","LL",20.1008 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2213,"Simulated","C","LL",19.959 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2214,"Simulated","C","LL",20.0507 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2215,"Simulated","C","LL",20.1469 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2216,"Simulated","C","LL",20.1078 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2217,"Simulated","C","LL",20.1052 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2218,"Simulated","C","LL",20.114 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2219,"Simulated","C","LL",20.2536 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2220,"Simulated","C","LL",20.2478 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2221,"Simulated","C","LL",20.1908 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2222,"Simulated","C","LL",20.2365 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2223,"Simulated","C","LL",20.2464000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2224,"Simulated","C","LL",20.3575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2225,"Simulated","C","LL",20.4119 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2226,"Simulated","C","LL",20.1729 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2227,"Simulated","C","LL",20.2173 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2228,"Simulated","C","LL",20.285 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2229,"Simulated","C","LL",20.2394 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2230,"Simulated","C","LL",20.2078 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2231,"Simulated","C","LL",20.0324 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2232,"Simulated","C","LL",20.1286 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2233,"Simulated","C","LL",20.1951 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2234,"Simulated","C","LL",20.2465 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2235,"Simulated","C","LL",20.3135 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2236,"Simulated","C","LL",20.2313 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2237,"Simulated","C","LL",20.2018 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2238,"Simulated","C","LL",20.1771 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2239,"Simulated","C","LL",20.1534 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2240,"Simulated","C","LL",20.241 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2241,"Simulated","C","LL",20.2198 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2242,"Simulated","C","LL",20.1485 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2243,"Simulated","C","LL",20.2423 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2244,"Simulated","C","LL",20.4228 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2245,"Simulated","C","LL",20.5136 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2246,"Simulated","C","LL",20.2891 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2247,"Simulated","C","LL",20.251 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2248,"Simulated","C","LL",20.2106 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2249,"Simulated","C","LL",20.2413 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2250,"Simulated","C","LL",20.1826 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2251,"Simulated","C","LL",20.0764 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2252,"Simulated","C","LL",20.2578 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2253,"Simulated","C","LL",20.2706 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2254,"Simulated","C","LL",20.325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2255,"Simulated","C","LL",20.1691 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2256,"Simulated","C","LL",20.202 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2257,"Simulated","C","LL",20.2674 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2258,"Simulated","C","LL",20.2606 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2259,"Simulated","C","LL",20.1913 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2260,"Simulated","C","LL",20.2374 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2261,"Simulated","C","LL",20.2529 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2262,"Simulated","C","LL",20.248 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2263,"Simulated","C","LL",20.3492 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2264,"Simulated","C","LL",20.3602 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2265,"Simulated","C","LL",20.5087 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2266,"Simulated","C","LL",20.4245 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2267,"Simulated","C","LL",20.3823 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2268,"Simulated","C","LL",20.2174 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2269,"Simulated","C","LL",20.1342 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2270,"Simulated","C","LL",20.1413 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2271,"Simulated","C","LL",19.9899 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2272,"Simulated","C","LL",20.1075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2273,"Simulated","C","LL",20.2243 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2274,"Simulated","C","LL",20.0707 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2275,"Simulated","C","LL",20.0707 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2276,"Simulated","C","LL",20.1908 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2277,"Simulated","C","LL",20.2821 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2278,"Simulated","C","LL",20.2596 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2279,"Simulated","C","LL",20.0096 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2280,"Simulated","C","LL",20.1212 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2281,"Simulated","C","LL",20.135 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2282,"Simulated","C","LL",20.2684 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2283,"Simulated","C","LL",20.2303 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2284,"Simulated","C","LL",20.2252 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2285,"Simulated","C","LL",20.1987 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2286,"Simulated","C","LL",20.2366 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2287,"Simulated","C","LL",20.1461 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2288,"Simulated","C","LL",20.0936 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2289,"Simulated","C","LL",20.1816 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2290,"Simulated","C","LL",20.192 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2291,"Simulated","C","LL",20.1156 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2292,"Simulated","C","LL",20.0559 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2293,"Simulated","C","LL",20.2058 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2294,"Simulated","C","LL",20.1388 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2295,"Simulated","C","LL",20.2758 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2296,"Simulated","C","LL",20.1222 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2297,"Simulated","C","LL",19.9122 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2298,"Simulated","C","LL",19.9428 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2299,"Simulated","C","LL",20.2688 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",13.43795 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",13.4298 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",13.457225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",13.42865 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",13.453725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",13.510775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",13.621875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",13.792025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",13.727575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",13.65395 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",13.741125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",13.864275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",13.86975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",13.805225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",13.8781 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",13.91145 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",13.893525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",13.907975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",13.89145 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",14.00365 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",14.0168 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",14.01765 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",13.957525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",13.985475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",13.98975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",14.054775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",14.1056 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",14.258075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",14.216475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",14.136125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",14.14675 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",14.1993 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",14.22275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",14.251975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",14.298225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",14.287225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",14.206975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",14.145125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",14.31165 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",14.314875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",14.287725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",14.26365 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",14.299575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",14.30235 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",14.27885 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",14.26505 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",14.343925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",14.3074 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",14.3652 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",14.30765 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",14.300475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",14.319675 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",14.3205 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",14.358425 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",14.36545 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",14.391325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",14.415525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",14.3155 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",14.278225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",14.3232 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",14.3476 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",14.34865 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",14.2947 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",14.296175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",14.3643 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",14.358425 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",14.332325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",14.34115 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",14.2227 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",14.395725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",14.41295 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",14.32075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",14.39625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",14.4667 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",14.398825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",14.311275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",14.377175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",14.39875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",14.3698 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",14.34445 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",14.383975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",14.360125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",14.312925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",14.2716 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",14.30705 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",14.335575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",14.359725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",14.3394 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",14.385625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",14.335225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",14.2579 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",14.348125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",14.2772 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",14.261575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",14.25275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2101,"Simulated","C","global",14.1833 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2102,"Simulated","C","global",14.201 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2103,"Simulated","C","global",14.2678 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2104,"Simulated","C","global",14.1019 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2105,"Simulated","C","global",14.2144 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2106,"Simulated","C","global",14.2344000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2107,"Simulated","C","global",14.162 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2108,"Simulated","C","global",14.1119 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2109,"Simulated","C","global",14.2215 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2110,"Simulated","C","global",14.1244 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2111,"Simulated","C","global",14.2186 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2112,"Simulated","C","global",14.4529 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2113,"Simulated","C","global",14.4465 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2114,"Simulated","C","global",14.3589 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2115,"Simulated","C","global",14.2962 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2116,"Simulated","C","global",14.2694 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2117,"Simulated","C","global",14.151 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2118,"Simulated","C","global",14.277 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2119,"Simulated","C","global",14.3361 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2120,"Simulated","C","global",14.4518 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2121,"Simulated","C","global",14.2363 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2122,"Simulated","C","global",14.1685 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2123,"Simulated","C","global",14.2433 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2124,"Simulated","C","global",14.3333 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2125,"Simulated","C","global",14.2393 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2126,"Simulated","C","global",14.2257 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2127,"Simulated","C","global",14.2567 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2128,"Simulated","C","global",14.2081 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2129,"Simulated","C","global",14.1418 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2130,"Simulated","C","global",14.3308 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2131,"Simulated","C","global",14.4034 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2132,"Simulated","C","global",14.1273 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2133,"Simulated","C","global",14.2938 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2134,"Simulated","C","global",14.2734 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2135,"Simulated","C","global",14.1706 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2136,"Simulated","C","global",14.2157 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2137,"Simulated","C","global",14.4082 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2138,"Simulated","C","global",14.2124 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2139,"Simulated","C","global",14.2007 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2140,"Simulated","C","global",14.1192 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2141,"Simulated","C","global",14.2198 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2142,"Simulated","C","global",14.2871 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2143,"Simulated","C","global",14.1554 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2144,"Simulated","C","global",14.1856 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2145,"Simulated","C","global",14.2637 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2146,"Simulated","C","global",14.2355 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2147,"Simulated","C","global",14.3025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2148,"Simulated","C","global",14.3211 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2149,"Simulated","C","global",14.3598 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2150,"Simulated","C","global",14.2318 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2151,"Simulated","C","global",14.1749 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2152,"Simulated","C","global",14.2533 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2153,"Simulated","C","global",14.2012 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2154,"Simulated","C","global",14.0539 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2155,"Simulated","C","global",14.037 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2156,"Simulated","C","global",14.1954 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2157,"Simulated","C","global",14.0294 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2158,"Simulated","C","global",14.1717 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2159,"Simulated","C","global",14.1848 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2160,"Simulated","C","global",14.039 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2161,"Simulated","C","global",13.9889 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2162,"Simulated","C","global",14.2461 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2163,"Simulated","C","global",14.1229 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2164,"Simulated","C","global",14.0361 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2165,"Simulated","C","global",13.9584 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2166,"Simulated","C","global",14.0898 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2167,"Simulated","C","global",14.0726 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2168,"Simulated","C","global",14.1393 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2169,"Simulated","C","global",14.2655 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2170,"Simulated","C","global",13.9547 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2171,"Simulated","C","global",14.1287 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2172,"Simulated","C","global",14.4014 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2173,"Simulated","C","global",14.2905 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2174,"Simulated","C","global",14.2729 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2175,"Simulated","C","global",14.1547 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2176,"Simulated","C","global",14.1079 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2177,"Simulated","C","global",14.0465 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2178,"Simulated","C","global",14.1202 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2179,"Simulated","C","global",14.0828 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2180,"Simulated","C","global",14.1697 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2181,"Simulated","C","global",14.2712 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2182,"Simulated","C","global",14.3431 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2183,"Simulated","C","global",14.3059 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2184,"Simulated","C","global",14.3518 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2185,"Simulated","C","global",14.3631 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2186,"Simulated","C","global",14.1076 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2187,"Simulated","C","global",14.0433 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2188,"Simulated","C","global",14.0089 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2189,"Simulated","C","global",14.0283 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2190,"Simulated","C","global",14.0461 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2191,"Simulated","C","global",14.2238 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2192,"Simulated","C","global",14.2119 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2193,"Simulated","C","global",14.0893 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2194,"Simulated","C","global",14.1082 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2195,"Simulated","C","global",14.1078 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2196,"Simulated","C","global",14.2646 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2197,"Simulated","C","global",14.0696 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2198,"Simulated","C","global",14.1244 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2199,"Simulated","C","global",14.161 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2200,"Simulated","C","global",14.2375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2201,"Simulated","C","global",14.1898 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2202,"Simulated","C","global",14.2747 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2203,"Simulated","C","global",14.4153 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2204,"Simulated","C","global",14.3157 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2205,"Simulated","C","global",13.9112 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2206,"Simulated","C","global",13.9997 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2207,"Simulated","C","global",14.1826 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2208,"Simulated","C","global",14.0024 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2209,"Simulated","C","global",14.0057 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2210,"Simulated","C","global",14.0704 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2211,"Simulated","C","global",14.1473 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2212,"Simulated","C","global",13.9233 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2213,"Simulated","C","global",14.0371 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2214,"Simulated","C","global",13.9884 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2215,"Simulated","C","global",13.8832 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2216,"Simulated","C","global",13.8339 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2217,"Simulated","C","global",14.0498 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2218,"Simulated","C","global",13.8976 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2219,"Simulated","C","global",13.7661 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2220,"Simulated","C","global",13.9334 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2221,"Simulated","C","global",13.9115 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2222,"Simulated","C","global",14.1085 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2223,"Simulated","C","global",13.9843 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2224,"Simulated","C","global",14.0327 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2225,"Simulated","C","global",14.1401 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2226,"Simulated","C","global",14.0978 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2227,"Simulated","C","global",13.9277 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2228,"Simulated","C","global",14.0535 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2229,"Simulated","C","global",14.0091 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2230,"Simulated","C","global",13.8683 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2231,"Simulated","C","global",13.9307 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2232,"Simulated","C","global",14.0596 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2233,"Simulated","C","global",13.9889 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2234,"Simulated","C","global",14.0484 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2235,"Simulated","C","global",14.0412 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2236,"Simulated","C","global",14.0077 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2237,"Simulated","C","global",13.9238 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2238,"Simulated","C","global",13.8229 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2239,"Simulated","C","global",13.8212 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2240,"Simulated","C","global",13.8708 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2241,"Simulated","C","global",13.9855 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2242,"Simulated","C","global",14.0103 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2243,"Simulated","C","global",13.9515 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2244,"Simulated","C","global",14.0054 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2245,"Simulated","C","global",14.0736 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2246,"Simulated","C","global",14.1007 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2247,"Simulated","C","global",14.1099 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2248,"Simulated","C","global",14.0641 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2249,"Simulated","C","global",13.9731 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2250,"Simulated","C","global",14.0077 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2251,"Simulated","C","global",14.0741 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2252,"Simulated","C","global",14.0329 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2253,"Simulated","C","global",13.9164 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2254,"Simulated","C","global",13.975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2255,"Simulated","C","global",14.0533 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2256,"Simulated","C","global",13.99 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2257,"Simulated","C","global",13.926 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2258,"Simulated","C","global",13.9048 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2259,"Simulated","C","global",14.0745 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2260,"Simulated","C","global",14.0554 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2261,"Simulated","C","global",13.9424 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2262,"Simulated","C","global",13.8168 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2263,"Simulated","C","global",13.889 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2264,"Simulated","C","global",13.8537 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2265,"Simulated","C","global",13.9909 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2266,"Simulated","C","global",14.0635 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2267,"Simulated","C","global",14.0257 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2268,"Simulated","C","global",14.1378 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2269,"Simulated","C","global",14.008 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2270,"Simulated","C","global",13.909 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2271,"Simulated","C","global",13.9773 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2272,"Simulated","C","global",14.0108 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2273,"Simulated","C","global",13.9778 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2274,"Simulated","C","global",13.8424 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2275,"Simulated","C","global",13.9067 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2276,"Simulated","C","global",14.0999 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2277,"Simulated","C","global",13.943 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2278,"Simulated","C","global",13.8225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2279,"Simulated","C","global",13.7481 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2280,"Simulated","C","global",13.7193 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2281,"Simulated","C","global",13.9739 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2282,"Simulated","C","global",13.9123 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2283,"Simulated","C","global",14.1382 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2284,"Simulated","C","global",13.8075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2285,"Simulated","C","global",13.7635 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2286,"Simulated","C","global",13.7344000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2287,"Simulated","C","global",13.873 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2288,"Simulated","C","global",13.9274 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2289,"Simulated","C","global",14.0118000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2290,"Simulated","C","global",14.1876 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2291,"Simulated","C","global",13.9775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2292,"Simulated","C","global",13.9434 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2293,"Simulated","C","global",13.9734 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2294,"Simulated","C","global",13.9786 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2295,"Simulated","C","global",13.9076 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2296,"Simulated","C","global",13.97 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2297,"Simulated","C","global",13.9454 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2298,"Simulated","C","global",13.9506 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2299,"Simulated","C","global",14.0216 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2300,"Simulated","C","global",13.8652 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-8.98779999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-8.87102499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-8.68199999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-8.83442499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-8.56514999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-8.64889999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-8.53272499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-8.28697499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-8.38734999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-8.56289999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-8.28267499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-8.16849999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-8.08014999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-8.28539999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-8.11582499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-8.08664999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-8.05214999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-8.16034999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-8.09742499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-8.10237499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-8.04752499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-8.12184999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-8.15904999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-8.20709999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-8.23324999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-7.99219999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-7.93492499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-7.74379999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-7.74687499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-7.85004999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-7.87847499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-7.88767499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-7.80439999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-7.68912499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-7.60437499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-7.60389999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-7.73579999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-7.87894999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-7.74534999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-7.60169999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-7.65392499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-7.62387499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-7.84389999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-7.64729999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-7.72204999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-7.80092499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-7.65594999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-7.72987499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-7.49762499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-7.72644999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-7.69229999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-7.75634999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-7.70292499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-7.59594999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-7.60884999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-7.49257499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-7.55692499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-7.51534999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-7.60857499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-7.52852499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-7.63714999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-7.66854999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-7.63677499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-7.55414999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-7.55999999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-7.48617499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-7.62992499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-7.67412499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-7.81067499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-7.40909999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-7.38632499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-7.54429999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-7.38334999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-7.28167499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-7.43747499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-7.50309999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-7.28702499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-7.09609999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-7.30974999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-7.39562499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-7.22237499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-7.40347499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-7.50192499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-7.59882499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-7.50614999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-7.41732499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-7.46764999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-7.47534999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-7.38814999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-7.57074999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-7.70814999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-7.49384999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-7.72387499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-7.74897499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-7.72162499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2101,"Simulated","C","HL",-7.97609999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2102,"Simulated","C","HL",-7.92009999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2103,"Simulated","C","HL",-7.71889999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2104,"Simulated","C","HL",-7.97899999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2105,"Simulated","C","HL",-7.82769999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2106,"Simulated","C","HL",-7.90629999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2107,"Simulated","C","HL",-7.5437 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2108,"Simulated","C","HL",-7.6234 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2109,"Simulated","C","HL",-7.5521 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2110,"Simulated","C","HL",-7.79659999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2111,"Simulated","C","HL",-7.68429999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2112,"Simulated","C","HL",-7.2998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2113,"Simulated","C","HL",-7.09899999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2114,"Simulated","C","HL",-7.39139999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2115,"Simulated","C","HL",-7.68359999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2116,"Simulated","C","HL",-7.75289999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2117,"Simulated","C","HL",-7.81909999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2118,"Simulated","C","HL",-7.17839999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2119,"Simulated","C","HL",-6.97379999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2120,"Simulated","C","HL",-7.31979999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2121,"Simulated","C","HL",-7.72229999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2122,"Simulated","C","HL",-7.76099999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2123,"Simulated","C","HL",-7.27159999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2124,"Simulated","C","HL",-7.90439999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2125,"Simulated","C","HL",-8.01169999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2126,"Simulated","C","HL",-7.97089999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2127,"Simulated","C","HL",-7.84229999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2128,"Simulated","C","HL",-7.58150000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2129,"Simulated","C","HL",-7.6549 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2130,"Simulated","C","HL",-7.20059999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2131,"Simulated","C","HL",-7.1737 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2132,"Simulated","C","HL",-7.7647 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2133,"Simulated","C","HL",-7.4855 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2134,"Simulated","C","HL",-7.45799999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2135,"Simulated","C","HL",-7.90589999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2136,"Simulated","C","HL",-7.60969999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2137,"Simulated","C","HL",-7.15389999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2138,"Simulated","C","HL",-7.49859999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2139,"Simulated","C","HL",-7.63999999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2140,"Simulated","C","HL",-7.77049999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2141,"Simulated","C","HL",-7.54589999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2142,"Simulated","C","HL",-7.39009999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2143,"Simulated","C","HL",-7.52439999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2144,"Simulated","C","HL",-7.53719999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2145,"Simulated","C","HL",-7.3954 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2146,"Simulated","C","HL",-7.7509 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2147,"Simulated","C","HL",-7.35999999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2148,"Simulated","C","HL",-7.42329999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2149,"Simulated","C","HL",-7.67439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2150,"Simulated","C","HL",-7.62169999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2151,"Simulated","C","HL",-8.23129999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2152,"Simulated","C","HL",-7.78049999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2153,"Simulated","C","HL",-7.95869999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2154,"Simulated","C","HL",-7.75719999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2155,"Simulated","C","HL",-7.7724 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2156,"Simulated","C","HL",-7.57689999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2157,"Simulated","C","HL",-7.7903 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2158,"Simulated","C","HL",-7.40039999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2159,"Simulated","C","HL",-7.74779999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2160,"Simulated","C","HL",-7.95239999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2161,"Simulated","C","HL",-7.87149999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2162,"Simulated","C","HL",-7.47159999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2163,"Simulated","C","HL",-7.61749999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2164,"Simulated","C","HL",-7.57039999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2165,"Simulated","C","HL",-8.08199999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2166,"Simulated","C","HL",-7.78859999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2167,"Simulated","C","HL",-7.85699999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2168,"Simulated","C","HL",-7.61339999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2169,"Simulated","C","HL",-7.71809999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2170,"Simulated","C","HL",-7.9246 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2171,"Simulated","C","HL",-7.72299999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2172,"Simulated","C","HL",-7.0609 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2173,"Simulated","C","HL",-7.37619999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2174,"Simulated","C","HL",-7.66459999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2175,"Simulated","C","HL",-7.84449999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2176,"Simulated","C","HL",-7.70259999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2177,"Simulated","C","HL",-7.56659999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2178,"Simulated","C","HL",-7.5292 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2179,"Simulated","C","HL",-7.73609999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2180,"Simulated","C","HL",-7.35729999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2181,"Simulated","C","HL",-7.41849999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2182,"Simulated","C","HL",-7.27169999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2183,"Simulated","C","HL",-7.3116 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2184,"Simulated","C","HL",-7.17949999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2185,"Simulated","C","HL",-7.2672 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2186,"Simulated","C","HL",-7.52429999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2187,"Simulated","C","HL",-7.71499999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2188,"Simulated","C","HL",-7.68949999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2189,"Simulated","C","HL",-7.87669999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2190,"Simulated","C","HL",-7.88889999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2191,"Simulated","C","HL",-7.63809999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2192,"Simulated","C","HL",-7.81609999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2193,"Simulated","C","HL",-7.63219999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2194,"Simulated","C","HL",-7.6746 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2195,"Simulated","C","HL",-7.81869999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2196,"Simulated","C","HL",-7.65819999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2197,"Simulated","C","HL",-7.7901 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2198,"Simulated","C","HL",-7.6404 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2199,"Simulated","C","HL",-7.32889999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2200,"Simulated","C","HL",-7.56459999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2201,"Simulated","C","HL",-7.30649999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2202,"Simulated","C","HL",-7.3639 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2203,"Simulated","C","HL",-7.15789999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2204,"Simulated","C","HL",-7.35119999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2205,"Simulated","C","HL",-7.93239999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2206,"Simulated","C","HL",-7.7045 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2207,"Simulated","C","HL",-7.34099999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2208,"Simulated","C","HL",-8.10949999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2209,"Simulated","C","HL",-8.06359999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2210,"Simulated","C","HL",-8.12289999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2211,"Simulated","C","HL",-7.65129999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2212,"Simulated","C","HL",-8.0829 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2213,"Simulated","C","HL",-8.0883 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2214,"Simulated","C","HL",-8.22949999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2215,"Simulated","C","HL",-7.95709999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2216,"Simulated","C","HL",-8.12939999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2217,"Simulated","C","HL",-7.82309999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2218,"Simulated","C","HL",-7.98229999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2219,"Simulated","C","HL",-8.08519999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2220,"Simulated","C","HL",-7.71679999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2221,"Simulated","C","HL",-7.94969999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2222,"Simulated","C","HL",-7.47909999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2223,"Simulated","C","HL",-7.76889999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2224,"Simulated","C","HL",-7.61369999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2225,"Simulated","C","HL",-7.72059999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2226,"Simulated","C","HL",-7.89239999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2227,"Simulated","C","HL",-8.0754 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2228,"Simulated","C","HL",-7.67309999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2229,"Simulated","C","HL",-8.08139999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2230,"Simulated","C","HL",-8.42229999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2231,"Simulated","C","HL",-8.1071 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2232,"Simulated","C","HL",-7.7457 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2233,"Simulated","C","HL",-8.05789999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2234,"Simulated","C","HL",-8.34369999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2235,"Simulated","C","HL",-7.88649999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2236,"Simulated","C","HL",-7.88529999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2237,"Simulated","C","HL",-8.1157 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2238,"Simulated","C","HL",-8.34099999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2239,"Simulated","C","HL",-8.65699999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2240,"Simulated","C","HL",-8.21099999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2241,"Simulated","C","HL",-7.80149999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2242,"Simulated","C","HL",-7.98439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2243,"Simulated","C","HL",-8.21859999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2244,"Simulated","C","HL",-7.94599999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2245,"Simulated","C","HL",-7.8843 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2246,"Simulated","C","HL",-7.74439999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2247,"Simulated","C","HL",-7.8297 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2248,"Simulated","C","HL",-7.60759999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2249,"Simulated","C","HL",-7.54499999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2250,"Simulated","C","HL",-7.45069999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2251,"Simulated","C","HL",-7.75479999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2252,"Simulated","C","HL",-7.77749999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2253,"Simulated","C","HL",-7.85229999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2254,"Simulated","C","HL",-7.69709999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2255,"Simulated","C","HL",-7.48869999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2256,"Simulated","C","HL",-7.87219999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2257,"Simulated","C","HL",-8.12779999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2258,"Simulated","C","HL",-7.9033 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2259,"Simulated","C","HL",-7.63649999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2260,"Simulated","C","HL",-7.78309999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2261,"Simulated","C","HL",-7.80249999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2262,"Simulated","C","HL",-8.40099999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2263,"Simulated","C","HL",-7.86969999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2264,"Simulated","C","HL",-8.0625 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2265,"Simulated","C","HL",-7.66629999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2266,"Simulated","C","HL",-7.42439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2267,"Simulated","C","HL",-7.75409999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2268,"Simulated","C","HL",-7.76409999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2269,"Simulated","C","HL",-7.92669999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2270,"Simulated","C","HL",-7.94639999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2271,"Simulated","C","HL",-7.84679999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2272,"Simulated","C","HL",-7.96339999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2273,"Simulated","C","HL",-8.16229999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2274,"Simulated","C","HL",-8.1318 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2275,"Simulated","C","HL",-7.6884 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2276,"Simulated","C","HL",-7.25999999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2277,"Simulated","C","HL",-7.85109999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2278,"Simulated","C","HL",-8.17669999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2279,"Simulated","C","HL",-8.3442 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2280,"Simulated","C","HL",-8.76169999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2281,"Simulated","C","HL",-8.05079999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2282,"Simulated","C","HL",-8.24949999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2283,"Simulated","C","HL",-7.56269999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2284,"Simulated","C","HL",-8.32129999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2285,"Simulated","C","HL",-8.07809999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2286,"Simulated","C","HL",-8.29109999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2287,"Simulated","C","HL",-8.05589999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2288,"Simulated","C","HL",-7.67629999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2289,"Simulated","C","HL",-7.77819999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2290,"Simulated","C","HL",-7.63999999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2291,"Simulated","C","HL",-7.8861 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2292,"Simulated","C","HL",-8.04299999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2293,"Simulated","C","HL",-8.22859999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2294,"Simulated","C","HL",-7.89689999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2295,"Simulated","C","HL",-8.0849 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2296,"Simulated","C","HL",-7.90779999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2297,"Simulated","C","HL",-7.97359999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2298,"Simulated","C","HL",-7.80889999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2299,"Simulated","C","HL",-7.89189999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2300,"Simulated","C","HL",-7.99869999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",18.410375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",18.3745 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",18.36615 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",18.365025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",18.335975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",18.424175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",18.5342 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",18.68755 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",18.631075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",18.579975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",18.6244 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",18.74955 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",18.7367 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",18.703375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",18.754725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",18.789075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",18.759525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",18.801125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",18.76705 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",18.90515 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",18.908975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",18.926625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",18.861375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",18.906125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",18.917175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",18.943125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",18.9926 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",19.13645 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",19.08635 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",19.011075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",19.030325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",19.0966 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",19.106775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",19.1169 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",19.15465 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",19.1411 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",19.07225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",19.028425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",19.202325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",19.17435 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",19.152775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",19.11675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",19.209375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",19.169175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",19.1571 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",19.157675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",19.22195 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",19.193675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",19.212775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",19.193125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",19.17695 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",19.214475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",19.20365 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",19.226325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",19.23775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",19.243575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",19.2874 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",19.155975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",19.131125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",19.168375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",19.22225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",19.2305 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",19.15745 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",19.141025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",19.225575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",19.202075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",19.20195 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",19.22255 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",19.1081 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",19.2304 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",19.24645 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",19.16885 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",19.225525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",19.28895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",19.2405 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",19.1481 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",19.18075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",19.16485 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",19.176725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",19.16485 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",19.1747 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",19.1857 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",19.1499 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",19.1209 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",19.14365 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",19.1587 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",19.199425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",19.1763 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",19.213475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",19.1924 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",19.12835 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",19.19115 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",19.155425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",19.1419 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",19.125175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2101,"Simulated","C","LL",19.0967 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2102,"Simulated","C","LL",19.1058 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2103,"Simulated","C","LL",19.1429 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2104,"Simulated","C","LL",18.9979 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2105,"Simulated","C","LL",19.1017000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2106,"Simulated","C","LL",19.1436 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2107,"Simulated","C","LL",18.9748 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2108,"Simulated","C","LL",18.9312 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2109,"Simulated","C","LL",19.0493 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2110,"Simulated","C","LL",18.9849 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2111,"Simulated","C","LL",19.0752 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2112,"Simulated","C","LL",19.2761 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2113,"Simulated","C","LL",19.2238 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2114,"Simulated","C","LL",19.1817 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2115,"Simulated","C","LL",19.17 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2116,"Simulated","C","LL",19.1525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2117,"Simulated","C","LL",19.0225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2118,"Simulated","C","LL",19.0343 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2119,"Simulated","C","LL",19.0612 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2120,"Simulated","C","LL",19.2792 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2121,"Simulated","C","LL",19.1053 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2122,"Simulated","C","LL",19.0308 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2123,"Simulated","C","LL",19.0138 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2124,"Simulated","C","LL",19.2639 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2125,"Simulated","C","LL",19.1729 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2126,"Simulated","C","LL",19.1473 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2127,"Simulated","C","LL",19.1568 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2128,"Simulated","C","LL",19.0394 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2129,"Simulated","C","LL",18.9746 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2130,"Simulated","C","LL",19.105 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2131,"Simulated","C","LL",19.1877 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2132,"Simulated","C","LL",18.9814 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2133,"Simulated","C","LL",19.1229 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2134,"Simulated","C","LL",19.0919 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2135,"Simulated","C","LL",19.0655 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2136,"Simulated","C","LL",19.055 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2137,"Simulated","C","LL",19.1891 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2138,"Simulated","C","LL",19.0263 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2139,"Simulated","C","LL",19.0434 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2140,"Simulated","C","LL",18.9728 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2141,"Simulated","C","LL",19.0458 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2142,"Simulated","C","LL",19.0933 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2143,"Simulated","C","LL",18.9625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2144,"Simulated","C","LL",19.0022 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2145,"Simulated","C","LL",19.0662 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2146,"Simulated","C","LL",19.1107 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2147,"Simulated","C","LL",19.1057 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2148,"Simulated","C","LL",19.1423 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2149,"Simulated","C","LL",19.2453 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2150,"Simulated","C","LL",19.0773 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2151,"Simulated","C","LL",19.1429 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2152,"Simulated","C","LL",19.1388 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2153,"Simulated","C","LL",19.1145 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2154,"Simulated","C","LL",18.8901 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2155,"Simulated","C","LL",18.8728 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2156,"Simulated","C","LL",19.023 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2157,"Simulated","C","LL",18.8675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2158,"Simulated","C","LL",18.9549 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2159,"Simulated","C","LL",19.0478 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2160,"Simulated","C","LL",18.9152 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2161,"Simulated","C","LL",18.836 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2162,"Simulated","C","LL",19.0616 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2163,"Simulated","C","LL",18.9435 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2164,"Simulated","C","LL",18.827 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2165,"Simulated","C","LL",18.8454 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2166,"Simulated","C","LL",18.9407 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2167,"Simulated","C","LL",18.9351 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2168,"Simulated","C","LL",18.9625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2169,"Simulated","C","LL",19.1399 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2170,"Simulated","C","LL",18.8059 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2171,"Simulated","C","LL",18.9737 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2172,"Simulated","C","LL",19.1601 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2173,"Simulated","C","LL",19.0947 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2174,"Simulated","C","LL",19.1371 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2175,"Simulated","C","LL",19.0325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2176,"Simulated","C","LL",18.944 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2177,"Simulated","C","LL",18.8388 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2178,"Simulated","C","LL",18.9205 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2179,"Simulated","C","LL",18.9207 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2180,"Simulated","C","LL",18.943 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2181,"Simulated","C","LL",19.0806 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2182,"Simulated","C","LL",19.1358 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2183,"Simulated","C","LL",19.0991 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2184,"Simulated","C","LL",19.126 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2185,"Simulated","C","LL",19.1591 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2186,"Simulated","C","LL",18.9043 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2187,"Simulated","C","LL",18.8679 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2188,"Simulated","C","LL",18.8201 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2189,"Simulated","C","LL",18.8853 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2190,"Simulated","C","LL",18.9099000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2191,"Simulated","C","LL",19.071 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2192,"Simulated","C","LL",19.096 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2193,"Simulated","C","LL",18.9055 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2194,"Simulated","C","LL",18.9382 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2195,"Simulated","C","LL",18.9696 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2196,"Simulated","C","LL",19.1255 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2197,"Simulated","C","LL",18.9166 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2198,"Simulated","C","LL",18.9502 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2199,"Simulated","C","LL",18.9259 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2200,"Simulated","C","LL",19.0717 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2201,"Simulated","C","LL",18.9561 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2202,"Simulated","C","LL",19.0725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2203,"Simulated","C","LL",19.1985 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2204,"Simulated","C","LL",19.1199 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2205,"Simulated","C","LL",18.7545 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2206,"Simulated","C","LL",18.8121 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2207,"Simulated","C","LL",18.9549 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2208,"Simulated","C","LL",18.9052 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2209,"Simulated","C","LL",18.8991 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2210,"Simulated","C","LL",18.9913 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2211,"Simulated","C","LL",18.9808 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2212,"Simulated","C","LL",18.8026 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2213,"Simulated","C","LL",18.9428 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2214,"Simulated","C","LL",18.9147 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2215,"Simulated","C","LL",18.7259 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2216,"Simulated","C","LL",18.7039 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2217,"Simulated","C","LL",18.8994 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2218,"Simulated","C","LL",18.749 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2219,"Simulated","C","LL",18.6113 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2220,"Simulated","C","LL",18.7341 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2221,"Simulated","C","LL",18.7587 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2222,"Simulated","C","LL",18.8952 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2223,"Simulated","C","LL",18.8078 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2224,"Simulated","C","LL",18.8325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2225,"Simulated","C","LL",18.9873 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2226,"Simulated","C","LL",18.9736 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2227,"Simulated","C","LL",18.8064 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2228,"Simulated","C","LL",18.8711 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2229,"Simulated","C","LL",18.9072 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2230,"Simulated","C","LL",18.8108 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2231,"Simulated","C","LL",18.817 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2232,"Simulated","C","LL",18.8944 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2233,"Simulated","C","LL",18.8774 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2234,"Simulated","C","LL",19.0133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2235,"Simulated","C","LL",18.9032 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2236,"Simulated","C","LL",18.8621 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2237,"Simulated","C","LL",18.8105 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2238,"Simulated","C","LL",18.7373 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2239,"Simulated","C","LL",18.8053 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2240,"Simulated","C","LL",18.7668 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2241,"Simulated","C","LL",18.8163 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2242,"Simulated","C","LL",18.8873 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2243,"Simulated","C","LL",18.8673 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2244,"Simulated","C","LL",18.8727 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2245,"Simulated","C","LL",18.9424 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2246,"Simulated","C","LL",18.9445 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2247,"Simulated","C","LL",18.9748 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2248,"Simulated","C","LL",18.8693 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2249,"Simulated","C","LL",18.7445 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2250,"Simulated","C","LL",18.7657 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2251,"Simulated","C","LL",18.9143 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2252,"Simulated","C","LL",18.8689 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2253,"Simulated","C","LL",18.7432 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2254,"Simulated","C","LL",18.7803 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2255,"Simulated","C","LL",18.8299 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2256,"Simulated","C","LL",18.8375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2257,"Simulated","C","LL",18.8159 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2258,"Simulated","C","LL",18.7403 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2259,"Simulated","C","LL",18.8886 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2260,"Simulated","C","LL",18.8976 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2261,"Simulated","C","LL",18.7641 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2262,"Simulated","C","LL",18.7431 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2263,"Simulated","C","LL",18.7136 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2264,"Simulated","C","LL",18.7133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2265,"Simulated","C","LL",18.793 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2266,"Simulated","C","LL",18.828 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2267,"Simulated","C","LL",18.855 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2268,"Simulated","C","LL",18.9941 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2269,"Simulated","C","LL",18.8716 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2270,"Simulated","C","LL",18.7551 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2271,"Simulated","C","LL",18.8163 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2272,"Simulated","C","LL",18.8831 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2273,"Simulated","C","LL",18.8869 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2274,"Simulated","C","LL",18.7148 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2275,"Simulated","C","LL",18.6950000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2276,"Simulated","C","LL",18.8362 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2277,"Simulated","C","LL",18.7755 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2278,"Simulated","C","LL",18.7003 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2279,"Simulated","C","LL",18.6467 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2280,"Simulated","C","LL",18.704 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2281,"Simulated","C","LL",18.8574 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2282,"Simulated","C","LL",18.8263 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2283,"Simulated","C","LL",18.9499 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2284,"Simulated","C","LL",18.7141 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2285,"Simulated","C","LL",18.6063 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2286,"Simulated","C","LL",18.6181 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2287,"Simulated","C","LL",18.7352 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2288,"Simulated","C","LL",18.7178 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2289,"Simulated","C","LL",18.8433 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2290,"Simulated","C","LL",19.0276 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2291,"Simulated","C","LL",18.8253 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2292,"Simulated","C","LL",18.8184 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2293,"Simulated","C","LL",18.8962 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2294,"Simulated","C","LL",18.829 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2295,"Simulated","C","LL",18.7839 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2296,"Simulated","C","LL",18.8208 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2297,"Simulated","C","LL",18.8055 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2298,"Simulated","C","LL",18.7751 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2299,"Simulated","C","LL",18.8804 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2300,"Simulated","C","LL",18.7131 -"MIROC-ESM","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",14.1861 -"MIROC-ESM","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",14.4022000000001 -"MIROC-ESM","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",14.4785 -"MIROC-ESM","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",14.3449 -"MIROC-ESM","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",14.4112 -"MIROC-ESM","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",14.3734 -"MIROC-ESM","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",14.5773 -"MIROC-ESM","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",14.4596 -"MIROC-ESM","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",14.5047 -"MIROC-ESM","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",14.6116 -"MIROC-ESM","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",14.6766 -"MIROC-ESM","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",14.71 -"MIROC-ESM","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",14.8001 -"MIROC-ESM","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",14.7635 -"MIROC-ESM","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",14.7628 -"MIROC-ESM","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",14.8908 -"MIROC-ESM","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",14.9194 -"MIROC-ESM","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",14.9795 -"MIROC-ESM","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",14.9702 -"MIROC-ESM","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",15.0771 -"MIROC-ESM","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",15.0977 -"MIROC-ESM","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",14.9632 -"MIROC-ESM","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",14.9450000000001 -"MIROC-ESM","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",15.1443 -"MIROC-ESM","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",15.0952 -"MIROC-ESM","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",15.1091 -"MIROC-ESM","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",15.1459 -"MIROC-ESM","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",15.1203 -"MIROC-ESM","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",15.2341 -"MIROC-ESM","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",15.2311 -"MIROC-ESM","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",15.2702 -"MIROC-ESM","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",15.1838 -"MIROC-ESM","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",15.2331 -"MIROC-ESM","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",15.3106 -"MIROC-ESM","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",15.3564 -"MIROC-ESM","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",15.2715 -"MIROC-ESM","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",15.2873 -"MIROC-ESM","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",15.5318 -"MIROC-ESM","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",15.4914 -"MIROC-ESM","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",15.5686 -"MIROC-ESM","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",15.5232 -"MIROC-ESM","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",15.5597 -"MIROC-ESM","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",15.5296 -"MIROC-ESM","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",15.4496 -"MIROC-ESM","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",15.4226 -"MIROC-ESM","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",15.5538 -"MIROC-ESM","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",15.6437 -"MIROC-ESM","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",15.6229 -"MIROC-ESM","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",15.5527 -"MIROC-ESM","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",15.5536 -"MIROC-ESM","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",15.576 -"MIROC-ESM","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",15.5914 -"MIROC-ESM","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",15.6402 -"MIROC-ESM","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",15.6938 -"MIROC-ESM","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",15.5937 -"MIROC-ESM","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",15.4675 -"MIROC-ESM","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",15.6021 -"MIROC-ESM","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",15.7202 -"MIROC-ESM","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",15.6245 -"MIROC-ESM","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",15.5022 -"MIROC-ESM","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",15.451 -"MIROC-ESM","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",15.5001 -"MIROC-ESM","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",15.6464 -"MIROC-ESM","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",15.8082 -"MIROC-ESM","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",15.6587 -"MIROC-ESM","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",15.6795 -"MIROC-ESM","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",15.5179 -"MIROC-ESM","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",15.4714 -"MIROC-ESM","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",15.6705 -"MIROC-ESM","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",15.6779 -"MIROC-ESM","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",15.6876 -"MIROC-ESM","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",15.7529 -"MIROC-ESM","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",15.6468 -"MIROC-ESM","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",15.5966 -"MIROC-ESM","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",15.7246 -"MIROC-ESM","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",15.6737 -"MIROC-ESM","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",15.6228 -"MIROC-ESM","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",15.5987 -"MIROC-ESM","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",15.6613 -"MIROC-ESM","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",15.5941 -"MIROC-ESM","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",15.5218 -"MIROC-ESM","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",15.6356 -"MIROC-ESM","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",15.7869 -"MIROC-ESM","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",15.7077 -"MIROC-ESM","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",15.6955 -"MIROC-ESM","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",15.8201 -"MIROC-ESM","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",15.8235 -"MIROC-ESM","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",15.7879 -"MIROC-ESM","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",15.7395 -"MIROC-ESM","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",15.7739 -"MIROC-ESM","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",15.8671000000001 -"MIROC-ESM","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",15.811 -"MIROC-ESM","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",15.7586 -"MIROC-ESM","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",15.9034 -"MIROC-ESM","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",15.6781 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-8.7294 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-8.57619999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-8.39400000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-8.67399999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-8.22999999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-8.55739999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-8.34379999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-8.51139999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-8.46679999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-7.97699999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-7.85999999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-8.1549 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-8.01259999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-7.87389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-7.82099999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-7.55609999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-7.5127 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-7.61179999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-7.50789999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-7.16639999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-7.22190000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-7.6223 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-7.62079999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-7.31639999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-7.38809999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-7.28589999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-7.07369999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-7.02359999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-7.17409999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-7.22179999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-7.29139999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-7.48349999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-7.19959999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-7.16699999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-6.97669999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-7.27409999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-7.14439999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-6.67069999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-6.55089999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-6.39149999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-6.67039999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-6.90519999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-6.96979999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-7.09069999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-6.92399999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-6.69589999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-6.49899999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-6.56619999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-6.69309999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-6.9049 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-6.58279999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-6.64049999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-6.28769999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-6.10389999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-6.61149999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-6.98509999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-6.94779999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-6.48759999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-6.63209999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-6.58529999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-6.62439999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-6.38419999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-6.17129999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-6.09819999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-6.4058 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-6.23399999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-6.40429999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-6.67599999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-6.3449 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-6.524 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-6.38259999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-6.48749999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-6.56989999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-6.45149999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-6.22619999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-6.53229999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-6.56169999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-6.56879999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-6.45299999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-6.40459999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-6.67189999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-6.56489999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-6.31049999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-6.12629999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-6.37859999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-5.92309999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-6.23289999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-6.2516 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-6.27199999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-6.28369999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-6.1859 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-6.19399999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-6.39229999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-6.01389999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-6.48679999999996 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",18.9706 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",19.1999 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",19.2541000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",19.151 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",19.1384 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",19.1611 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",19.363 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",19.2557 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",19.3009 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",19.3279 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",19.382 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",19.484 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",19.5632 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",19.4899 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",19.478 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",19.5774 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",19.6029 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",19.6963 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",19.6634 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",19.7213 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",19.7578 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",19.6788 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",19.6565000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",19.8338 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",19.7894 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",19.7849000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",19.7851 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",19.7437 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",19.9127 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",19.919 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",19.9808 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",19.9164 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",19.9168 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",20.0036 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",20.0193 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",19.9788 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",19.9708 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",20.1674 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",20.0936 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",20.1536 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",20.157 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",20.2501 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",20.2273 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",20.1558 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",20.0883 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",20.1993000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",20.2669 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",20.2558 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",20.1974 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",20.2426 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",20.2026 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",20.2332 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",20.2185 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",20.2449 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",20.2299 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",20.1554 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",20.3102 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",20.3569 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",20.2714 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",20.1138 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",20.06 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",20.0693 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",20.2017 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",20.382 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",20.2655 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",20.2548 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",20.095 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",20.0955 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",20.2671 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",20.3133 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",20.2956 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",20.3965 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",20.2854 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",20.2 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",20.3077 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",20.31 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",20.2547 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",20.2271 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",20.2785 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",20.1872 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",20.1556 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",20.2708 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",20.4005 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",20.2664 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",20.3044 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",20.3599 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",20.4287 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",20.3895 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",20.3352 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",20.3792 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",20.4715 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",20.4054 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",20.3835 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",20.4795 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",20.3059 -"NorESM1-ME","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",13.5854 -"NorESM1-ME","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",13.5226 -"NorESM1-ME","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",13.5067 -"NorESM1-ME","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",13.5601 -"NorESM1-ME","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",13.6305 -"NorESM1-ME","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",13.4948 -"NorESM1-ME","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",13.5827 -"NorESM1-ME","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",13.6355 -"NorESM1-ME","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",13.6571 -"NorESM1-ME","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",13.8817 -"NorESM1-ME","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",13.8163 -"NorESM1-ME","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",13.6446 -"NorESM1-ME","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",13.661 -"NorESM1-ME","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",13.8303 -"NorESM1-ME","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",13.872 -"NorESM1-ME","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",13.9379 -"NorESM1-ME","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",13.8805 -"NorESM1-ME","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",13.9164 -"NorESM1-ME","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",13.8674 -"NorESM1-ME","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",13.8757 -"NorESM1-ME","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",13.9549 -"NorESM1-ME","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",14.0501 -"NorESM1-ME","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",13.919 -"NorESM1-ME","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",14.0103 -"NorESM1-ME","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",14.0984 -"NorESM1-ME","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",14.112 -"NorESM1-ME","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",14.3402 -"NorESM1-ME","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",14.1324 -"NorESM1-ME","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",13.9737 -"NorESM1-ME","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",13.9856 -"NorESM1-ME","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",14.0227 -"NorESM1-ME","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",14.0623000000001 -"NorESM1-ME","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",14.0305 -"NorESM1-ME","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",13.9907 -"NorESM1-ME","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",14.2079 -"NorESM1-ME","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",14.2963 -"NorESM1-ME","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",14.3721 -"NorESM1-ME","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",14.2111 -"NorESM1-ME","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",14.196 -"NorESM1-ME","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",14.2017 -"NorESM1-ME","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",14.2644 -"NorESM1-ME","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",14.2765 -"NorESM1-ME","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",14.3095 -"NorESM1-ME","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",14.3503 -"NorESM1-ME","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",14.3044 -"NorESM1-ME","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",14.1499 -"NorESM1-ME","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",14.1455 -"NorESM1-ME","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",14.1052 -"NorESM1-ME","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",14.0688 -"NorESM1-ME","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",14.1418 -"NorESM1-ME","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",14.3641 -"NorESM1-ME","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",14.2505 -"NorESM1-ME","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",14.1213 -"NorESM1-ME","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",14.1059 -"NorESM1-ME","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",14.2046 -"NorESM1-ME","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",14.336 -"NorESM1-ME","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",14.3504 -"NorESM1-ME","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",14.1745 -"NorESM1-ME","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",14.2412 -"NorESM1-ME","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",14.1618 -"NorESM1-ME","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",14.0715 -"NorESM1-ME","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",14.2809 -"NorESM1-ME","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",14.3077 -"NorESM1-ME","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",14.0783 -"NorESM1-ME","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",14.083 -"NorESM1-ME","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",14.0003 -"NorESM1-ME","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",13.9691 -"NorESM1-ME","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",13.9514 -"NorESM1-ME","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",13.9377 -"NorESM1-ME","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",14.061 -"NorESM1-ME","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",14.2865 -"NorESM1-ME","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",14.3782 -"NorESM1-ME","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",14.3054 -"NorESM1-ME","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",14.2544 -"NorESM1-ME","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",14.2365 -"NorESM1-ME","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",14.23 -"NorESM1-ME","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",14.0396 -"NorESM1-ME","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",14.0268 -"NorESM1-ME","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",14.2252 -"NorESM1-ME","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",14.3271 -"NorESM1-ME","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",14.2633 -"NorESM1-ME","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",14.1954 -"NorESM1-ME","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",14.153 -"NorESM1-ME","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",14.3471 -"NorESM1-ME","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",14.4651 -"NorESM1-ME","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",14.254 -"NorESM1-ME","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",14.3327 -"NorESM1-ME","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",14.3205 -"NorESM1-ME","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",14.3412 -"NorESM1-ME","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",14.2331 -"NorESM1-ME","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",14.2079 -"NorESM1-ME","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",14.1817 -"NorESM1-ME","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",14.2378 -"NorESM1-ME","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",14.2641 -"NorESM1-ME","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",14.325 -"NorESM1-ME","tas","temperature","tgav","rcp26",2101,"Simulated","C","global",14.6748 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-11.0001999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-11.3105 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-11.1993 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-11.3241 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-11.3209 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-11.3232 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-11.1354 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-11.0946 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-11.0706 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-10.8048 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-10.7581 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-11.1459 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-10.96 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-10.655 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-10.9816 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-10.8399 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-10.9207 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-10.643 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-10.9251 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-11.0533 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-10.7207 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-10.402 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-10.8357 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-10.6226 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-10.2309 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-10.3404 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-9.60890000000001 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-10.3421 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-10.7448 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-10.6015 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-10.4772 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-10.3743 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-10.2261999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-10.3855 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-9.8569 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-9.77769999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-9.54349999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-9.9753 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-10.0347 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-9.97539999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-9.9239 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-10.3696 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-10.1168 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-9.95689999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-10.0438 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-10.4903 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-10.5165 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-10.4487 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-10.6984 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-10.5868 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-9.81149999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-9.83939999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-10.2164 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-10.3298 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-10.0787 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-9.84159999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-9.7756 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-10.3711 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-10.2553 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-10.3381 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-10.9957 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-10.5615 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-10.0719 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-10.7604 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-10.4286 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-10.8253 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-10.8179 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-10.9632 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-11.0447 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-10.6902 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-10.1677 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-10.0892 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-10.2009 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-10.2117 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-10.2941 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-10.2863 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-10.62 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-10.339 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-9.99239999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-10.1048 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-10.3931 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-10.4188 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-10.2606 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-10.0918 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-9.72109999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-10.0777 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-9.96079999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-10.1198 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-9.77049999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-10.0589 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-10.2371 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-10.0255 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-10.135 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-10.072 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-10.1143 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2101,"Simulated","C","HL",-9.25829999999996 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",19.0361 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",19.0281 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",18.9839 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",19.077 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",19.1624 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",18.9971 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",19.0628 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",19.1182 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",19.1391 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",19.3547 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",19.2646 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",19.1408 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",19.1194 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",19.2587 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",19.3821 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",19.4312 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",19.3788 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",19.3613 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",19.3639 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",19.4023 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",19.4256 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",19.4714 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",19.4071 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",19.4714 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",19.4923 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",19.5333 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",19.6498 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",19.5586 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",19.4538 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",19.4365 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",19.4542 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",19.4801 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",19.4083 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",19.3949 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",19.543 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",19.6338 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",19.6742 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",19.5732 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",19.5683 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",19.5617 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",19.6271 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",19.7407 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",19.7249 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",19.7394 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",19.7025 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",19.6127 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",19.6129 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",19.5487 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",19.5596 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",19.6241 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",19.7239 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",19.5914 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",19.5171 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",19.5235 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",19.5884 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",19.6956 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",19.6987 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",19.6158 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",19.6715 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",19.5928 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",19.6283 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",19.788 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",19.7121 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",19.5845 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",19.5167 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",19.5035 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",19.4638 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",19.4744 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",19.4756 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",19.5478 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",19.7075 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",19.8022 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",19.738 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",19.6781 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",19.6743 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",19.6647 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",19.506 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",19.4283 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",19.5939 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",19.743 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",19.729 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",19.6517 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",19.5649 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",19.7647 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",19.8269 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",19.6478 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",19.7181 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",19.7384 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",19.6863 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",19.6181 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",19.6268 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",19.5479 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",19.6406 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",19.6589 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",19.7428 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2101,"Simulated","C","LL",19.9805 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp26/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp26/summary.csv deleted file mode 100644 index f2c9506c3..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp26/summary.csv +++ /dev/null @@ -1,886 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,tas,temperature,tgav,rcp26,C,Simulated,global,0.659001595,13.43795,15.1858,14.262275,14.1861,1,CMIP5 -2006,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.989241938,-11.0002,-8.34115,-9.395121429,-8.9878,1,CMIP5 -2006,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.724879582,18.410375,20.3777,19.41652857,19.1873,1,CMIP5 -2007,tas,temperature,tgav,rcp26,C,Simulated,global,0.61846618,13.4298,14.9917,14.240225,14.397875,1,CMIP5 -2007,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.095441009,-11.3105,-8.277725,-9.389278571,-8.871025,1,CMIP5 -2007,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.648192688,18.3745,20.2529,19.38863214,19.1999,1,CMIP5 -2008,tas,temperature,tgav,rcp26,C,Simulated,global,0.603751328,13.457225,15.0656,14.25841429,14.394575,1,CMIP5 -2008,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.159957998,-11.1993,-8.157325,-9.283175,-8.682,1,CMIP5 -2008,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.631291006,18.36615,20.2523,19.38733214,19.2737,1,CMIP5 -2009,tas,temperature,tgav,rcp26,C,Simulated,global,0.59865694,13.42865,15.0655,14.27053929,14.3449,1,CMIP5 -2009,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.213686513,-11.3241,-8.01785,-9.406925,-8.834425,1,CMIP5 -2009,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.650607643,18.365025,20.3075,19.42857143,19.3837,1,CMIP5 -2010,tas,temperature,tgav,rcp26,C,Simulated,global,0.609542606,13.453725,15.1275,14.29899643,14.39345,1,CMIP5 -2010,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.247934065,-11.3209,-8.210475,-9.242732143,-8.56515,1,CMIP5 -2010,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.677735957,18.335975,20.3484,19.42786786,19.27,1,CMIP5 -2011,tas,temperature,tgav,rcp26,C,Simulated,global,0.657995178,13.4948,15.1439,14.31678571,14.3734,1,CMIP5 -2011,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.133203747,-11.3232,-8.2447,-9.274385714,-8.6489,1,CMIP5 -2011,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.697337776,18.424175,20.3738,19.45660357,19.339,1,CMIP5 -2012,tas,temperature,tgav,rcp26,C,Simulated,global,0.622024536,13.5827,15.1438,14.40474643,14.57175,1,CMIP5 -2012,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.198737568,-11.1354,-8.07775,-9.200567857,-8.532725,1,CMIP5 -2012,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.665273672,18.5342,20.3724,19.54708214,19.3892,1,CMIP5 -2013,tas,temperature,tgav,rcp26,C,Simulated,global,0.604268509,13.6355,15.1515,14.432925,14.4596,1,CMIP5 -2013,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.152888024,-11.0946,-7.82165,-9.080132143,-8.5114,1,CMIP5 -2013,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.637136587,18.68755,20.3486,19.55547857,19.2865,1,CMIP5 -2014,tas,temperature,tgav,rcp26,C,Simulated,global,0.597157975,13.6571,15.1344,14.46345714,14.5047,1,CMIP5 -2014,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.178248606,-11.0706,-7.825275,-9.059546429,-8.4668,1,CMIP5 -2014,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.629479113,18.631075,20.3922,19.58837143,19.5149,1,CMIP5 -2015,tas,temperature,tgav,rcp26,C,Simulated,global,0.581319724,13.65395,15.1923,14.51651071,14.6116,1,CMIP5 -2015,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.185839002,-10.8048,-7.800975,-8.969082143,-8.5629,1,CMIP5 -2015,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.640087143,18.579975,20.3969,19.63328571,19.5281,1,CMIP5 -2016,tas,temperature,tgav,rcp26,C,Simulated,global,0.588702134,13.741125,15.1825,14.49458929,14.6766,1,CMIP5 -2016,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.139677169,-10.7581,-7.84455,-9.023789286,-8.7605,1,CMIP5 -2016,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.639021028,18.6244,20.4088,19.61910357,19.4118,1,CMIP5 -2017,tas,temperature,tgav,rcp26,C,Simulated,global,0.628168395,13.6446,15.2724,14.53338929,14.71,1,CMIP5 -2017,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.247335405,-11.1459,-7.850975,-9.029996429,-8.2805,1,CMIP5 -2017,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.6555613,18.74955,20.497,19.666875,19.484,1,CMIP5 -2018,tas,temperature,tgav,rcp26,C,Simulated,global,0.667101121,13.661,15.4565,14.56074286,14.8001,1,CMIP5 -2018,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.270190947,-10.96,-7.453975,-8.869303571,-8.3759,1,CMIP5 -2018,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.675551203,18.7367,20.5707,19.66505357,19.5632,1,CMIP5 -2019,tas,temperature,tgav,rcp26,C,Simulated,global,0.643508482,13.805225,15.4234,14.55676071,14.7635,1,CMIP5 -2019,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.342649416,-10.8698,-7.382475,-9.035339286,-8.7918,1,CMIP5 -2019,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.70122156,18.703375,20.6039,19.69566071,19.4899,1,CMIP5 -2020,tas,temperature,tgav,rcp26,C,Simulated,global,0.632646106,13.872,15.4341,14.59950714,14.7628,1,CMIP5 -2020,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.381035358,-10.9816,-7.20445,-8.931667857,-8.7185,1,CMIP5 -2020,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.670777409,18.754725,20.5909,19.72574286,19.478,1,CMIP5 -2021,tas,temperature,tgav,rcp26,C,Simulated,global,0.606006346,13.91145,15.3891,14.63716786,14.8908,1,CMIP5 -2021,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.379242044,-10.8399,-7.324125,-8.884739286,-8.6062,1,CMIP5 -2021,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.645532,18.789075,20.5477,19.76168214,19.5774,1,CMIP5 -2022,tas,temperature,tgav,rcp26,C,Simulated,global,0.636258523,13.8805,15.4565,14.66347857,14.9194,1,CMIP5 -2022,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.327782628,-10.9207,-7.5127,-8.852228571,-8.3432,1,CMIP5 -2022,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.680436753,18.759525,20.621,19.78697143,19.6029,1,CMIP5 -2023,tas,temperature,tgav,rcp26,C,Simulated,global,0.671508775,13.907975,15.5324,14.72790357,14.9795,1,CMIP5 -2023,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.204680039,-10.643,-7.352975,-8.699303571,-8.2103,1,CMIP5 -2023,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.699815881,18.801125,20.6761,19.83185714,19.6963,1,CMIP5 -2024,tas,temperature,tgav,rcp26,C,Simulated,global,0.630644801,13.8674,15.3661,14.67443571,14.9702,1,CMIP5 -2024,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.364135961,-10.9251,-7.31135,-8.720953571,-8.097425,1,CMIP5 -2024,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.655051053,18.76705,20.5282,19.77126429,19.6634,1,CMIP5 -2025,tas,temperature,tgav,rcp26,C,Simulated,global,0.609867972,13.8757,15.3253,14.72725714,15.03435,1,CMIP5 -2025,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.458710132,-11.0533,-7.1664,-8.729385714,-8.102375,1,CMIP5 -2025,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.615411718,18.90515,20.562,19.83781429,19.7213,1,CMIP5 -2026,tas,temperature,tgav,rcp26,C,Simulated,global,0.657746397,13.9549,15.4393,14.73856429,15.03515,1,CMIP5 -2026,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.285654919,-10.7207,-7.145875,-8.5981,-8.4069,1,CMIP5 -2026,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.651589002,18.908975,20.61,19.82338214,19.7578,1,CMIP5 -2027,tas,temperature,tgav,rcp26,C,Simulated,global,0.645191954,14.01765,15.5975,14.79236071,14.9632,1,CMIP5 -2027,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.107167827,-10.402,-7.118025,-8.553153571,-8.3842,1,CMIP5 -2027,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.653071812,18.926625,20.6954,19.87917857,19.6788,1,CMIP5 -2028,tas,temperature,tgav,rcp26,C,Simulated,global,0.705406838,13.919,15.6887,14.79511071,14.945,1,CMIP5 -2028,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.22781084,-10.8357,-7.160625,-8.618967857,-8.2069,1,CMIP5 -2028,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.717810706,18.861375,20.8661,19.89663214,19.6565,1,CMIP5 -2029,tas,temperature,tgav,rcp26,C,Simulated,global,0.681831619,13.985475,15.6617,14.82872143,15.078175,1,CMIP5 -2029,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.253088648,-10.6226,-7.18715,-8.579478571,-8.2071,1,CMIP5 -2029,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.697208479,18.906125,20.8551,19.92849286,19.8338,1,CMIP5 -2030,tas,temperature,tgav,rcp26,C,Simulated,global,0.652196976,13.98975,15.5039,14.80257143,15.0952,1,CMIP5 -2030,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.126773362,-10.2309,-7.045125,-8.523310714,-8.2618,1,CMIP5 -2030,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.663441187,18.917175,20.6555,19.88473214,19.7894,1,CMIP5 -2031,tas,temperature,tgav,rcp26,C,Simulated,global,0.603999929,14.054775,15.4364,14.81174286,15.1091,1,CMIP5 -2031,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.167811897,-10.3404,-7.130375,-8.483410714,-8.1717,1,CMIP5 -2031,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.614107491,18.943125,20.5711,19.88780714,19.7849,1,CMIP5 -2032,tas,temperature,tgav,rcp26,C,Simulated,global,0.602063745,14.1056,15.555,14.89249643,15.1459,1,CMIP5 -2032,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.102588111,-9.6089,-7.01585,-8.384453571,-8.2923,1,CMIP5 -2032,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.657663749,18.9926,20.761,19.9638,19.7851,1,CMIP5 -2033,tas,temperature,tgav,rcp26,C,Simulated,global,0.665677467,14.1324,15.8136,14.906775,15.1203,1,CMIP5 -2033,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.216486702,-10.3421,-7.0236,-8.384757143,-8.3366,1,CMIP5 -2033,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.685004188,19.13645,21.0028,19.98209286,19.7437,1,CMIP5 -2034,tas,temperature,tgav,rcp26,C,Simulated,global,0.718987002,13.9737,15.8346,14.90112143,15.212875,1,CMIP5 -2034,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.309875823,-10.7448,-7.012925,-8.505071429,-8.6916,1,CMIP5 -2034,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.699235505,19.08635,21.0282,20.00152143,19.9127,1,CMIP5 -2035,tas,temperature,tgav,rcp26,C,Simulated,global,0.729683583,13.9856,15.7996,14.90221429,15.2311,1,CMIP5 -2035,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.296334437,-10.6015,-6.870325,-8.464139286,-8.4377,1,CMIP5 -2035,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.724050447,19.011075,20.9471,19.99316786,19.919,1,CMIP5 -2036,tas,temperature,tgav,rcp26,C,Simulated,global,0.75832369,14.0227,15.9293,14.94053214,15.2702,1,CMIP5 -2036,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.250768263,-10.4772,-6.82505,-8.389660714,-8.352,1,CMIP5 -2036,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.745415106,19.030325,21.0219,20.02361429,19.9808,1,CMIP5 -2037,tas,temperature,tgav,rcp26,C,Simulated,global,0.715981717,14.0623,15.8727,14.96635714,15.1838,1,CMIP5 -2037,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.196717805,-10.3743,-6.773675,-8.405735714,-8.2419,1,CMIP5 -2037,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.720549595,19.0966,21.0263,20.05822857,19.9164,1,CMIP5 -2038,tas,temperature,tgav,rcp26,C,Simulated,global,0.718163133,14.0305,15.8249,14.9609,15.19895,1,CMIP5 -2038,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.125026457,-10.2262,-7.032825,-8.327617857,-8.1917,1,CMIP5 -2038,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.721092433,19.106775,20.9588,20.03513214,19.9168,1,CMIP5 -2039,tas,temperature,tgav,rcp26,C,Simulated,global,0.687482946,13.9907,15.6608,14.92774643,15.26655,1,CMIP5 -2039,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.224649004,-10.3855,-6.95615,-8.400139286,-8.4465,1,CMIP5 -2039,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.669061979,19.1169,20.8033,20.01067143,20.0036,1,CMIP5 -2040,tas,temperature,tgav,rcp26,C,Simulated,global,0.668541513,14.2079,15.8224,15.00226429,15.266925,1,CMIP5 -2040,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.088264036,-9.8569,-6.9767,-8.244260714,-8.2532,1,CMIP5 -2040,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.680143542,19.15465,20.9635,20.0675,20.0193,1,CMIP5 -2041,tas,temperature,tgav,rcp26,C,Simulated,global,0.657963225,14.287225,15.8607,14.99079643,15.2715,1,CMIP5 -2041,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.081325269,-9.7777,-6.956725,-8.357760714,-8.7394,1,CMIP5 -2041,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.675291707,19.1411,21.017,20.07822857,19.9788,1,CMIP5 -2042,tas,temperature,tgav,rcp26,C,Simulated,global,0.674418817,14.206975,15.9526,15.00905357,15.2873,1,CMIP5 -2042,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.063598569,-9.5435,-6.71235,-8.135007143,-8.0325,1,CMIP5 -2042,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.698200842,19.07225,21.0353,20.05129643,19.9708,1,CMIP5 -2043,tas,temperature,tgav,rcp26,C,Simulated,global,0.744467744,14.145125,16.0129,15.01185357,15.3884,1,CMIP5 -2043,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.357260152,-9.9753,-6.525875,-8.226517857,-8.1201,1,CMIP5 -2043,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.74324086,19.028425,21.1618,20.07410357,20.1674,1,CMIP5 -2044,tas,temperature,tgav,rcp26,C,Simulated,global,0.683834811,14.196,15.8219,15.00058214,15.368825,1,CMIP5 -2044,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.379517995,-10.0347,-6.5509,-8.255325,-8.382,1,CMIP5 -2044,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.668141484,19.202325,20.9929,20.06728929,20.0936,1,CMIP5 -2045,tas,temperature,tgav,rcp26,C,Simulated,global,0.668956947,14.2017,15.6644,15.01652857,15.419125,1,CMIP5 -2045,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.44033375,-9.9754,-6.3915,-8.185482143,-8.2184,1,CMIP5 -2045,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.657138132,19.17435,20.8564,20.071075,20.1536,1,CMIP5 -2046,tas,temperature,tgav,rcp26,C,Simulated,global,0.669948079,14.2644,15.8181,15.04502143,15.427625,1,CMIP5 -2046,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.316463335,-9.9239,-6.653125,-8.217592857,-8.1472,1,CMIP5 -2046,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.67436401,19.152775,20.9765,20.11298571,20.157,1,CMIP5 -2047,tas,temperature,tgav,rcp26,C,Simulated,global,0.696739758,14.26365,15.8824,15.081575,15.475175,1,CMIP5 -2047,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.35173558,-10.3696,-6.63525,-8.292046429,-8.1891,1,CMIP5 -2047,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.698362758,19.11675,21.0945,20.17377143,20.2501,1,CMIP5 -2048,tas,temperature,tgav,rcp26,C,Simulated,global,0.71647602,14.299575,15.9735,15.08178571,15.526,1,CMIP5 -2048,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.22671021,-10.1168,-6.54785,-8.213121429,-8.317,1,CMIP5 -2048,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.687838923,19.209375,21.1023,20.157525,20.2273,1,CMIP5 -2049,tas,temperature,tgav,rcp26,C,Simulated,global,0.762661093,14.2923,16.1257,15.09758214,15.4496,1,CMIP5 -2049,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.212799186,-9.9569,-6.452125,-8.217217857,-8.5841,1,CMIP5 -2049,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.751890602,19.169175,21.2848,20.17768571,20.1558,1,CMIP5 -2050,tas,temperature,tgav,rcp26,C,Simulated,global,0.776953123,14.27885,16.2758,15.13954286,15.4226,1,CMIP5 -2050,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.28124445,-10.0438,-6.387675,-8.157103571,-8.3381,1,CMIP5 -2050,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.782137687,19.1571,21.4181,20.21517857,20.0883,1,CMIP5 -2051,tas,temperature,tgav,rcp26,C,Simulated,global,0.753294374,14.1499,15.8891,15.04968214,15.540725,1,CMIP5 -2051,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.488470729,-10.4903,-6.3619,-8.316817857,-8.5295,1,CMIP5 -2051,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.719653199,19.157675,21.0332,20.14048929,20.1993,1,CMIP5 -2052,tas,temperature,tgav,rcp26,C,Simulated,global,0.717498074,14.1455,15.7736,15.02206786,15.46675,1,CMIP5 -2052,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.573025063,-10.5165,-6.467375,-8.376875,-8.7304,1,CMIP5 -2052,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.665095445,19.22195,20.9306,20.12006429,20.2669,1,CMIP5 -2053,tas,temperature,tgav,rcp26,C,Simulated,global,0.763999992,14.1052,15.9926,15.03675,15.3875,1,CMIP5 -2053,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.552377515,-10.4487,-6.493575,-8.375978571,-8.6754,1,CMIP5 -2053,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.721198113,19.193675,21.1453,20.1376,20.2558,1,CMIP5 -2054,tas,temperature,tgav,rcp26,C,Simulated,global,0.777317367,14.0688,15.9947,15.03769286,15.50075,1,CMIP5 -2054,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.540828175,-10.6984,-6.52445,-8.345139286,-8.5882,1,CMIP5 -2054,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.731061373,19.212775,21.1273,20.13248571,20.1974,1,CMIP5 -2055,tas,temperature,tgav,rcp26,C,Simulated,global,0.790278037,14.1418,16.0227,15.05672143,15.531,1,CMIP5 -2055,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.39157595,-10.5868,-6.62225,-8.341357143,-8.4756,1,CMIP5 -2055,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.743572052,19.193125,21.1376,20.15518571,20.2426,1,CMIP5 -2056,tas,temperature,tgav,rcp26,C,Simulated,global,0.70860093,14.288,15.8753,15.06278571,15.4656,1,CMIP5 -2056,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.35745005,-9.8115,-6.5828,-8.273321429,-8.7092,1,CMIP5 -2056,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.697623517,19.17695,21.0152,20.14737857,20.2026,1,CMIP5 -2057,tas,temperature,tgav,rcp26,C,Simulated,global,0.745796268,14.2505,15.9023,15.07255357,15.5707,1,CMIP5 -2057,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.348252198,-9.8394,-6.448675,-8.229875,-8.6082,1,CMIP5 -2057,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.72618766,19.214475,21.0275,20.14945,20.2332,1,CMIP5 -2058,tas,temperature,tgav,rcp26,C,Simulated,global,0.80108701,14.1213,16.1681,15.10589286,15.45465,1,CMIP5 -2058,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.392466725,-10.2164,-6.2877,-8.091814286,-8.2732,1,CMIP5 -2058,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.766892555,19.20365,21.307,20.16064643,20.2185,1,CMIP5 -2059,tas,temperature,tgav,rcp26,C,Simulated,global,0.831781902,14.1059,16.1314,15.10987857,15.565325,1,CMIP5 -2059,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.480593932,-10.3298,-6.1039,-8.112617857,-8.5533,1,CMIP5 -2059,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.792215081,19.226325,21.319,20.170375,20.2449,1,CMIP5 -2060,tas,temperature,tgav,rcp26,C,Simulated,global,0.820970818,14.1552,16.0449,15.09889643,15.528625,1,CMIP5 -2060,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.289737686,-10.0787,-6.520375,-8.128060714,-8.487,1,CMIP5 -2060,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.779598063,19.23775,21.2232,20.16046786,20.2299,1,CMIP5 -2061,tas,temperature,tgav,rcp26,C,Simulated,global,0.785203246,14.1895,16.089,15.11858571,15.4675,1,CMIP5 -2061,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.175778836,-9.8416,-6.293975,-7.998164286,-8.237,1,CMIP5 -2061,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.756297677,19.243575,21.168,20.15562857,20.1554,1,CMIP5 -2062,tas,temperature,tgav,rcp26,C,Simulated,global,0.742809618,14.236,15.9401,15.11635714,15.585975,1,CMIP5 -2062,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.18813205,-9.7756,-6.34215,-8.085825,-8.5915,1,CMIP5 -2062,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.703700777,19.2874,21.062,20.17170714,20.3102,1,CMIP5 -2063,tas,temperature,tgav,rcp26,C,Simulated,global,0.818326597,14.1745,15.968,15.11826429,15.56025,1,CMIP5 -2063,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.38701644,-10.3711,-6.4082,-8.056721429,-8.432,1,CMIP5 -2063,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.759394554,19.155975,21.1006,20.16848214,20.3569,1,CMIP5 -2064,tas,temperature,tgav,rcp26,C,Simulated,global,0.822557167,14.0621,15.9982,15.053425,15.45715,1,CMIP5 -2064,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.329462987,-10.2553,-6.47865,-8.134703571,-8.5601,1,CMIP5 -2064,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.777438274,19.131125,21.1257,20.10615,20.2714,1,CMIP5 -2065,tas,temperature,tgav,rcp26,C,Simulated,global,0.834242853,14.0811,16.1107,15.04807857,15.45405,1,CMIP5 -2065,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.358236932,-10.3381,-6.5853,-8.143053571,-8.2483,1,CMIP5 -2065,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.787088921,19.168375,21.1966,20.10211071,20.1138,1,CMIP5 -2066,tas,temperature,tgav,rcp26,C,Simulated,global,0.877444009,14.0715,16.29,15.07071786,15.451,1,CMIP5 -2066,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.515782775,-10.9957,-6.5963,-8.233964286,-8.3204,1,CMIP5 -2066,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.818762834,19.22225,21.4284,20.14993214,20.06,1,CMIP5 -2067,tas,temperature,tgav,rcp26,C,Simulated,global,0.820605848,14.0939,16.1651,15.08335,15.5001,1,CMIP5 -2067,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.534238135,-10.5615,-6.3842,-8.269642857,-8.7695,1,CMIP5 -2067,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.807340921,19.2305,21.3712,20.17183214,20.0693,1,CMIP5 -2068,tas,temperature,tgav,rcp26,C,Simulated,global,0.769306575,14.1044,15.8125,15.04920357,15.498725,1,CMIP5 -2068,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.442597732,-10.0719,-6.1713,-8.216875,-8.9465,1,CMIP5 -2068,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.734649356,19.15745,20.9823,20.119275,20.2017,1,CMIP5 -2069,tas,temperature,tgav,rcp26,C,Simulated,global,0.820565601,14.0783,15.8082,15.02578571,15.5232,1,CMIP5 -2069,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.700220742,-10.7604,-6.0982,-8.328178571,-8.7527,1,CMIP5 -2069,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.759426577,19.141025,20.9641,20.11425714,20.382,1,CMIP5 -2070,tas,temperature,tgav,rcp26,C,Simulated,global,0.80814976,14.083,15.976,15.037275,15.500025,1,CMIP5 -2070,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.493164368,-10.4286,-6.4058,-8.269196429,-8.5573,1,CMIP5 -2070,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.763704101,19.225575,21.0983,20.11551071,20.2655,1,CMIP5 -2071,tas,temperature,tgav,rcp26,C,Simulated,global,0.846234564,14.0003,15.9381,15.00401786,15.5212,1,CMIP5 -2071,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.658680558,-10.8253,-6.234,-8.283967857,-8.7273,1,CMIP5 -2071,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.762108356,19.202075,21.088,20.07888571,20.2548,1,CMIP5 -2072,tas,temperature,tgav,rcp26,C,Simulated,global,0.820223458,13.9691,15.9808,14.99974643,15.4538,1,CMIP5 -2072,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.536495679,-10.8179,-6.4043,-8.3091,-8.6322,1,CMIP5 -2072,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.768614311,19.20195,21.1197,20.07916429,20.095,1,CMIP5 -2073,tas,temperature,tgav,rcp26,C,Simulated,global,0.813899987,13.9514,15.9687,14.977225,15.4714,1,CMIP5 -2073,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.597908264,-10.9632,-6.618325,-8.472364286,-8.6998,1,CMIP5 -2073,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.757427233,19.22255,21.1192,20.08688571,20.0955,1,CMIP5 -2074,tas,temperature,tgav,rcp26,C,Simulated,global,0.861022949,13.9377,15.7868,14.95331786,15.5392,1,CMIP5 -2074,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.667981301,-11.0447,-6.3449,-8.468210714,-8.9214,1,CMIP5 -2074,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.770358537,19.1081,20.9456,20.05762857,20.2671,1,CMIP5 -2075,tas,temperature,tgav,rcp26,C,Simulated,global,0.779276443,14.061,15.8299,15.01361429,15.467375,1,CMIP5 -2075,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.55015976,-10.6902,-6.524,-8.376996429,-8.8893,1,CMIP5 -2075,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.722718798,19.2304,21.013,20.11017857,20.3133,1,CMIP5 -2076,tas,temperature,tgav,rcp26,C,Simulated,global,0.727356685,14.1816,15.8381,15.05787857,15.4813,1,CMIP5 -2076,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.488459551,-10.1677,-6.3826,-8.265357143,-8.6414,1,CMIP5 -2076,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.709738424,19.24645,21.0683,20.1391,20.2956,1,CMIP5 -2077,tas,temperature,tgav,rcp26,C,Simulated,global,0.775708421,14.0433,15.914,15.05326786,15.470125,1,CMIP5 -2077,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.414319351,-10.0892,-6.4875,-8.203075,-8.2696,1,CMIP5 -2077,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.720478988,19.16885,20.9633,20.12085,20.3965,1,CMIP5 -2078,tas,temperature,tgav,rcp26,C,Simulated,global,0.775928601,14.0172,15.9068,15.04880357,15.489975,1,CMIP5 -2078,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.464572294,-10.2009,-6.51905,-8.261657143,-8.6398,1,CMIP5 -2078,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.748548694,19.2054,21.0319,20.127425,20.2854,1,CMIP5 -2079,tas,temperature,tgav,rcp26,C,Simulated,global,0.762882366,14.067,15.9526,15.05346429,15.5108,1,CMIP5 -2079,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.529366072,-10.2117,-6.4515,-8.297246429,-8.878,1,CMIP5 -2079,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.741453598,19.2874,21.1369,20.14089286,20.2,1,CMIP5 -2080,tas,temperature,tgav,rcp26,C,Simulated,global,0.796221959,14.0222,15.8804,15.05294643,15.4873,1,CMIP5 -2080,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.561533562,-10.2941,-6.2262,-8.297189286,-8.8261,1,CMIP5 -2080,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.724445295,19.2405,21.0388,20.14151071,20.3077,1,CMIP5 -2081,tas,temperature,tgav,rcp26,C,Simulated,global,0.743937201,14.0936,15.6931,14.99919643,15.447,1,CMIP5 -2081,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.466441889,-10.2863,-6.5323,-8.351646429,-9.0762,1,CMIP5 -2081,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.695152473,19.1481,20.8778,20.08713571,20.31,1,CMIP5 -2082,tas,temperature,tgav,rcp26,C,Simulated,global,0.798566044,14.0396,16.0172,15.043575,15.48305,1,CMIP5 -2082,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.487738396,-10.62,-6.536175,-8.136,-8.165,1,CMIP5 -2082,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.76544273,19.18075,21.1501,20.09368214,20.2547,1,CMIP5 -2083,tas,temperature,tgav,rcp26,C,Simulated,global,0.815319474,14.0268,15.959,14.99816786,15.4641,1,CMIP5 -2083,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.520577068,-10.339,-6.5357,-8.261742857,-8.8696,1,CMIP5 -2083,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.792416093,19.16485,21.1516,20.06562143,20.2271,1,CMIP5 -2084,tas,temperature,tgav,rcp26,C,Simulated,global,0.751732481,14.1821,15.9075,15.04539286,15.43355,1,CMIP5 -2084,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.427689489,-9.9924,-6.453,-8.189817857,-8.5807,1,CMIP5 -2084,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.734939076,19.176725,21.0203,20.10748929,20.2785,1,CMIP5 -2085,tas,temperature,tgav,rcp26,C,Simulated,global,0.711765385,14.194,15.9147,15.02453929,15.3533,1,CMIP5 -2085,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.41286089,-10.1048,-6.4046,-8.192410714,-8.4315,1,CMIP5 -2085,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.675525216,19.16485,20.9979,20.08385357,20.1872,1,CMIP5 -2086,tas,temperature,tgav,rcp26,C,Simulated,global,0.746911318,14.2633,16.0861,15.06950714,15.4511,1,CMIP5 -2086,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.462399142,-10.3931,-6.539125,-8.1837,-8.2735,1,CMIP5 -2086,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.719576026,19.1747,21.1722,20.13632143,20.1556,1,CMIP5 -2087,tas,temperature,tgav,rcp26,C,Simulated,global,0.773886738,14.0811,15.9505,15.01373929,15.3886,1,CMIP5 -2087,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.472746566,-10.4188,-6.5649,-8.277539286,-8.5216,1,CMIP5 -2087,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.729731689,19.1857,21.06,20.088725,20.2708,1,CMIP5 -2088,tas,temperature,tgav,rcp26,C,Simulated,global,0.821769074,14.1293,16.0173,15.05258929,15.4724,1,CMIP5 -2088,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.499418642,-10.2606,-6.3105,-8.187935714,-8.4822,1,CMIP5 -2088,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.777520629,19.1499,21.1326,20.11601429,20.4005,1,CMIP5 -2089,tas,temperature,tgav,rcp26,C,Simulated,global,0.815677406,14.1088,16.1093,15.08597857,15.49505,1,CMIP5 -2089,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.457693125,-10.0918,-6.1263,-8.101328571,-8.4601,1,CMIP5 -2089,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.781131616,19.1209,21.2391,20.13854643,20.2664,1,CMIP5 -2090,tas,temperature,tgav,rcp26,C,Simulated,global,0.78341975,14.2887,16.2508,15.14524643,15.498975,1,CMIP5 -2090,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.276980355,-9.7211,-6.3786,-7.926778571,-7.7898,1,CMIP5 -2090,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.732998323,19.14365,21.2702,20.17342143,20.3044,1,CMIP5 -2091,tas,temperature,tgav,rcp26,C,Simulated,global,0.714493174,14.254,15.8455,15.10213214,15.44145,1,CMIP5 -2091,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.499099339,-10.0777,-5.9231,-8.020539286,-8.3457,1,CMIP5 -2091,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.656718945,19.1587,20.9188,20.14081786,20.3599,1,CMIP5 -2092,tas,temperature,tgav,rcp26,C,Simulated,global,0.740013983,14.1563,15.8235,15.05888929,15.404,1,CMIP5 -2092,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.357885498,-9.9608,-6.2329,-8.084657143,-8.5357,1,CMIP5 -2092,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.658775981,19.199425,20.8031,20.10269286,20.4287,1,CMIP5 -2093,tas,temperature,tgav,rcp26,C,Simulated,global,0.767306029,14.1018,15.823,15.05724286,15.4045,1,CMIP5 -2093,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.385486098,-10.1198,-6.2516,-8.132592857,-8.6703,1,CMIP5 -2093,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.717688591,19.1763,20.9646,20.11043571,20.3895,1,CMIP5 -2094,tas,temperature,tgav,rcp26,C,Simulated,global,0.797474696,14.07,16.0905,15.07967143,15.380175,1,CMIP5 -2094,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.307152124,-9.7705,-6.272,-8.092867857,-8.352,1,CMIP5 -2094,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.743063728,19.213475,21.1939,20.12978214,20.3352,1,CMIP5 -2095,tas,temperature,tgav,rcp26,C,Simulated,global,0.824829126,14.0467,16.0315,15.05615,15.365125,1,CMIP5 -2095,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.373594001,-10.0589,-6.2837,-8.223421429,-8.6608,1,CMIP5 -2095,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.772584247,19.1924,21.187,20.12907143,20.3792,1,CMIP5 -2096,tas,temperature,tgav,rcp26,C,Simulated,global,0.856683835,14.0013,15.903,15.04722857,15.3486,1,CMIP5 -2096,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.425573957,-10.2371,-6.1859,-8.217828571,-8.4639,1,CMIP5 -2096,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.772438118,19.12835,21.0894,20.11775,20.4408,1,CMIP5 -2097,tas,temperature,tgav,rcp26,C,Simulated,global,0.873715799,13.9823,16.0656,15.07100714,15.356825,1,CMIP5 -2097,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.341085791,-10.0255,-6.194,-8.091253571,-8.3988,1,CMIP5 -2097,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.788338662,19.19115,21.1735,20.11969643,20.4054,1,CMIP5 -2098,tas,temperature,tgav,rcp26,C,Simulated,global,0.84998448,14.0433,16.024,15.06683571,15.35325,1,CMIP5 -2098,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.306743578,-10.135,-6.3923,-8.075346429,-8.1499,1,CMIP5 -2098,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.758969731,19.155425,21.0712,20.11086429,20.3835,1,CMIP5 -2099,tas,temperature,tgav,rcp26,C,Simulated,global,0.838831709,14.1991,16.072,15.10480714,15.328175,1,CMIP5 -2099,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.380586645,-10.072,-6.0139,-7.982596429,-7.8302,1,CMIP5 -2099,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.720056784,19.1419,21.0625,20.13771071,20.392775,1,CMIP5 -2100,tas,temperature,tgav,rcp26,C,Simulated,global,0.789556599,14.0311,15.8528,15.02116786,15.286025,1,CMIP5 -2100,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.298420415,-10.1143,-6.4868,-8.214825,-8.4036,1,CMIP5 -2100,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.720279415,19.125175,20.9173,20.08535,20.3059,1,CMIP5 -2101,tas,temperature,tgav,rcp26,C,Simulated,global,0.689782243,14.1833,15.7862,15.13784,15.3472,1,CMIP5 -2101,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.976150879,-9.2583,-6.5871,-8.11804,-8.3318,1,CMIP5 -2101,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.70431145,19.0967,20.8437,20.20696,20.3991,1,CMIP5 -2102,tas,temperature,tgav,rcp26,C,Simulated,global,0.751938124,14.201,15.8002,15.295075,15.58955,1,CMIP5 -2102,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.032913267,-8.6474,-6.4002,-7.87405,-8.2243,1,CMIP5 -2102,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.838646323,19.1058,20.9046,20.321425,20.63765,1,CMIP5 -2103,tas,temperature,tgav,rcp26,C,Simulated,global,0.729971741,14.2678,15.8805,15.309925,15.5457,1,CMIP5 -2103,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.864463492,-8.5761,-6.7447,-7.896425,-8.13245,1,CMIP5 -2103,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.832881005,19.1429,20.9805,20.345175,20.62865,1,CMIP5 -2104,tas,temperature,tgav,rcp26,C,Simulated,global,0.810103068,14.1019,15.8897,15.2843,15.5728,1,CMIP5 -2104,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.98124057,-9.0229,-6.7643,-8.08865,-8.2837,1,CMIP5 -2104,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.924720496,18.9979,21.0005,20.355225,20.71125,1,CMIP5 -2105,tas,temperature,tgav,rcp26,C,Simulated,global,0.771873077,14.2144,16.0332,15.3043,15.4848,1,CMIP5 -2105,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.216520819,-9.5842,-6.6431,-8.089175,-8.0647,1,CMIP5 -2105,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.884188357,19.1017,21.1141,20.37875,20.6496,1,CMIP5 -2106,tas,temperature,tgav,rcp26,C,Simulated,global,0.768285513,14.2344,16.0017,15.31595,15.51385,1,CMIP5 -2106,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.015887418,-9.1616,-6.7662,-8.0816,-8.1993,1,CMIP5 -2106,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.876685985,19.1436,21.1158,20.391725,20.65375,1,CMIP5 -2107,tas,temperature,tgav,rcp26,C,Simulated,global,0.718466559,14.162,15.7458,15.20625,15.4586,1,CMIP5 -2107,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.160296411,-8.9528,-6.4934,-7.950975,-8.17885,1,CMIP5 -2107,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.865592192,18.9748,20.8736,20.228825,20.53345,1,CMIP5 -2108,tas,temperature,tgav,rcp26,C,Simulated,global,0.766378946,14.1119,15.9106,15.169275,15.3273,1,CMIP5 -2108,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.157612103,-9.6842,-7.0063,-8.1899,-8.03455,1,CMIP5 -2108,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.917681286,18.9312,20.996,20.236125,20.50865,1,CMIP5 -2109,tas,temperature,tgav,rcp26,C,Simulated,global,0.765798398,14.2215,16.0495,15.2206,15.3057,1,CMIP5 -2109,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.250208883,-9.9897,-7.1963,-8.31975,-8.0465,1,CMIP5 -2109,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.92893132,19.0493,21.1837,20.32615,20.5358,1,CMIP5 -2110,tas,temperature,tgav,rcp26,C,Simulated,global,0.788153236,14.1244,15.9708,15.23255,15.4175,1,CMIP5 -2110,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.957315735,-9.3199,-7.0395,-8.11745,-8.0552,1,CMIP5 -2110,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.907799069,18.9849,21.0412,20.298975,20.5849,1,CMIP5 -2111,tas,temperature,tgav,rcp26,C,Simulated,global,0.683776642,14.2186,15.7333,15.22705,15.47815,1,CMIP5 -2111,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.16655476,-9.2626,-6.7296,-8.151925,-8.30775,1,CMIP5 -2111,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.827316119,19.0752,20.883,20.2985,20.6179,1,CMIP5 -2112,tas,temperature,tgav,rcp26,C,Simulated,global,0.644933663,14.4529,15.9953,15.311075,15.39805,1,CMIP5 -2112,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.27077732,-9.6348,-6.8404,-8.09675,-7.9559,1,CMIP5 -2112,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.803282352,19.2761,21.133,20.38775,20.57095,1,CMIP5 -2113,tas,temperature,tgav,rcp26,C,Simulated,global,0.67498996,14.4465,16.0564,15.3731,15.49475,1,CMIP5 -2113,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.214633156,-9.184,-6.5255,-7.809275,-7.7638,1,CMIP5 -2113,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.835660567,19.2238,21.1686,20.401125,20.60605,1,CMIP5 -2114,tas,temperature,tgav,rcp26,C,Simulated,global,0.609928206,14.3589,15.776,15.23405,15.40065,1,CMIP5 -2114,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.289419015,-9.6466,-6.9013,-8.221325,-8.1687,1,CMIP5 -2114,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.780279041,19.1817,20.9376,20.321525,20.5834,1,CMIP5 -2115,tas,temperature,tgav,rcp26,C,Simulated,global,0.693343399,14.2962,15.9526,15.247975,15.37155,1,CMIP5 -2115,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.135984387,-9.5503,-6.8561,-8.1019,-8.0006,1,CMIP5 -2115,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.802841323,19.17,21.02,20.313625,20.53225,1,CMIP5 -2116,tas,temperature,tgav,rcp26,C,Simulated,global,0.65137642,14.2694,15.7514,15.2005,15.3906,1,CMIP5 -2116,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.071576484,-9.1681,-6.7821,-8.1181,-8.2611,1,CMIP5 -2116,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.768728762,19.1525,20.8711,20.259125,20.50645,1,CMIP5 -2117,tas,temperature,tgav,rcp26,C,Simulated,global,0.697520222,14.151,15.692,15.1685,15.4155,1,CMIP5 -2117,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.143390925,-9.1088,-6.6922,-8.1617,-8.4229,1,CMIP5 -2117,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.829737408,19.0225,20.853,20.229,20.52025,1,CMIP5 -2118,tas,temperature,tgav,rcp26,C,Simulated,global,0.686793256,14.277,15.7716,15.271375,15.51845,1,CMIP5 -2118,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.198387284,-9.0968,-6.5759,-7.881975,-7.9276,1,CMIP5 -2118,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.866873979,19.0343,20.8762,20.292975,20.6307,1,CMIP5 -2119,tas,temperature,tgav,rcp26,C,Simulated,global,0.625226068,14.3361,15.6841,15.233375,15.45665,1,CMIP5 -2119,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.089188996,-9.1126,-6.9738,-7.98525,-7.9273,1,CMIP5 -2119,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.825355468,19.0612,20.8614,20.270725,20.58015,1,CMIP5 -2120,tas,temperature,tgav,rcp26,C,Simulated,global,0.592133686,14.4518,15.8298,15.275325,15.40985,1,CMIP5 -2120,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.048562776,-9.0395,-7.0501,-8.087325,-8.12985,1,CMIP5 -2120,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.747281154,19.2792,21.0014,20.343825,20.54735,1,CMIP5 -2121,tas,temperature,tgav,rcp26,C,Simulated,global,0.704515659,14.2363,15.8244,15.254,15.47765,1,CMIP5 -2121,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.180360521,-9.3843,-6.7181,-8.1563,-8.2614,1,CMIP5 -2121,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.846376088,19.1053,20.9659,20.331725,20.62785,1,CMIP5 -2122,tas,temperature,tgav,rcp26,C,Simulated,global,0.778222172,14.1685,15.9069,15.268525,15.49935,1,CMIP5 -2122,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.775219515,-8.6147,-6.9576,-7.96695,-8.14775,1,CMIP5 -2122,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.890357533,19.0308,21.0268,20.31045,20.5921,1,CMIP5 -2123,tas,temperature,tgav,rcp26,C,Simulated,global,0.676935917,14.2433,15.7962,15.187075,15.3544,1,CMIP5 -2123,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.129460458,-9.2979,-6.8788,-8.0111,-7.93385,1,CMIP5 -2123,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.844721486,19.0138,20.8891,20.218975,20.4865,1,CMIP5 -2124,tas,temperature,tgav,rcp26,C,Simulated,global,0.6185189,14.3333,15.742,15.203525,15.3694,1,CMIP5 -2124,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.155995999,-9.6492,-6.9441,-8.30955,-8.32245,1,CMIP5 -2124,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.73170395,19.2639,20.8536,20.30395,20.54915,1,CMIP5 -2125,tas,temperature,tgav,rcp26,C,Simulated,global,0.75112774,14.2393,15.9763,15.289275,15.47075,1,CMIP5 -2125,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.887944538,-8.9903,-6.9047,-8.093975,-8.24045,1,CMIP5 -2125,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.837271801,19.1729,21.0803,20.362925,20.59925,1,CMIP5 -2126,tas,temperature,tgav,rcp26,C,Simulated,global,0.746067157,14.2257,16.0173,15.221725,15.32195,1,CMIP5 -2126,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.148433144,-9.6605,-6.8934,-8.249,-8.22105,1,CMIP5 -2126,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.847782592,19.1473,21.1303,20.312925,20.48705,1,CMIP5 -2127,tas,temperature,tgav,rcp26,C,Simulated,global,0.719102211,14.2567,15.9562,15.20545,15.30445,1,CMIP5 -2127,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.162955119,-9.6967,-6.9756,-8.298225,-8.2603,1,CMIP5 -2127,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.847460036,19.1568,21.0996,20.3032,20.4782,1,CMIP5 -2128,tas,temperature,tgav,rcp26,C,Simulated,global,0.767073853,14.2081,16,15.24745,15.39085,1,CMIP5 -2128,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.160494959,-9.474,-6.8128,-8.111225,-8.07905,1,CMIP5 -2128,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.922237254,19.0394,21.1313,20.3134,20.54145,1,CMIP5 -2129,tas,temperature,tgav,rcp26,C,Simulated,global,0.795353432,14.1418,16.0276,15.214425,15.34415,1,CMIP5 -2129,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.945503952,-9.367,-7.2275,-8.18235,-8.06745,1,CMIP5 -2129,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.93646044,18.9746,21.1446,20.290525,20.52145,1,CMIP5 -2130,tas,temperature,tgav,rcp26,C,Simulated,global,0.659666279,14.3308,15.866,15.1976,15.2968,1,CMIP5 -2130,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.112964604,-9.2287,-7.1251,-8.120425,-8.06395,1,CMIP5 -2130,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.840248378,19.105,21.0425,20.25535,20.43695,1,CMIP5 -2131,tas,temperature,tgav,rcp26,C,Simulated,global,0.561409862,14.4034,15.697,15.1691,15.288,1,CMIP5 -2131,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.177123552,-9.4368,-7.1737,-8.25735,-8.20945,1,CMIP5 -2131,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.747669611,19.1877,20.8744,20.2509,20.47075,1,CMIP5 -2132,tas,temperature,tgav,rcp26,C,Simulated,global,0.707881451,14.1273,15.7588,15.142775,15.3425,1,CMIP5 -2132,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.347762163,-9.7529,-6.741,-8.337625,-8.4283,1,CMIP5 -2132,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.872750859,18.9814,20.9473,20.234475,20.5046,1,CMIP5 -2133,tas,temperature,tgav,rcp26,C,Simulated,global,0.686179823,14.2938,15.9185,15.257625,15.4091,1,CMIP5 -2133,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.202211508,-9.5325,-6.7402,-8.033075,-7.9298,1,CMIP5 -2133,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.819211313,19.1229,20.9906,20.310025,20.5633,1,CMIP5 -2134,tas,temperature,tgav,rcp26,C,Simulated,global,0.630675835,14.2734,15.7411,15.175525,15.3438,1,CMIP5 -2134,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.380684173,-9.9776,-6.9968,-8.3621,-8.237,1,CMIP5 -2134,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.809735677,19.0919,20.9101,20.2807,20.5604,1,CMIP5 -2135,tas,temperature,tgav,rcp26,C,Simulated,global,0.733993835,14.1706,15.8553,15.234475,15.456,1,CMIP5 -2135,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.364897513,-9.5253,-6.5688,-8.3169,-8.58675,1,CMIP5 -2135,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.883725755,19.0655,21.1006,20.341775,20.6005,1,CMIP5 -2136,tas,temperature,tgav,rcp26,C,Simulated,global,0.760654505,14.2157,15.9942,15.273925,15.4429,1,CMIP5 -2136,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.433004549,-9.7341,-6.4429,-8.15095,-8.2134,1,CMIP5 -2136,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.909795524,19.055,21.1745,20.353875,20.593,1,CMIP5 -2137,tas,temperature,tgav,rcp26,C,Simulated,global,0.551614207,14.4082,15.664,15.1956,15.3551,1,CMIP5 -2137,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.772412599,-10.2571,-6.3844,-8.223025,-8.1253,1,CMIP5 -2137,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.736756084,19.1891,20.8338,20.2725,20.53355,1,CMIP5 -2138,tas,temperature,tgav,rcp26,C,Simulated,global,0.660038527,14.2124,15.7404,15.16315,15.3499,1,CMIP5 -2138,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.502310464,-9.8133,-6.4517,-8.187775,-8.24305,1,CMIP5 -2138,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.829635277,19.0263,20.9033,20.2261,20.4874,1,CMIP5 -2139,tas,temperature,tgav,rcp26,C,Simulated,global,0.728317497,14.2007,15.9574,15.156525,15.234,1,CMIP5 -2139,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.019803607,-9.2341,-6.9574,-8.124075,-8.1524,1,CMIP5 -2139,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.860377183,19.0434,21.0983,20.20675,20.34265,1,CMIP5 -2140,tas,temperature,tgav,rcp26,C,Simulated,global,0.776423604,14.1192,15.9822,15.1445,15.2383,1,CMIP5 -2140,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.86712659,-9.0988,-7.1159,-8.12865,-8.14995,1,CMIP5 -2140,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.894026388,18.9728,21.0999,20.194025,20.3517,1,CMIP5 -2141,tas,temperature,tgav,rcp26,C,Simulated,global,0.733994098,14.2198,15.9631,15.207075,15.3227,1,CMIP5 -2141,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.872166732,-8.9628,-7.0327,-8.000775,-8.0038,1,CMIP5 -2141,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.859261064,19.0458,21.0627,20.242525,20.4308,1,CMIP5 -2142,tas,temperature,tgav,rcp26,C,Simulated,global,0.610360355,14.2871,15.6823,15.16545,15.3462,1,CMIP5 -2142,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.278768258,-9.4726,-6.7176,-8.11495,-8.1348,1,CMIP5 -2142,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.773671817,19.0933,20.8105,20.2145,20.4771,1,CMIP5 -2143,tas,temperature,tgav,rcp26,C,Simulated,global,0.704366564,14.1554,15.7421,15.179425,15.4101,1,CMIP5 -2143,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.314133198,-9.4448,-6.5344,-8.09295,-8.1963,1,CMIP5 -2143,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.870808356,18.9625,20.8804,20.2262,20.53095,1,CMIP5 -2144,tas,temperature,tgav,rcp26,C,Simulated,global,0.741352478,14.1856,15.9261,15.22425,15.39265,1,CMIP5 -2144,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.142483631,-9.2347,-6.7079,-8.0498,-8.1283,1,CMIP5 -2144,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.895932743,19.0022,21.0718,20.2723,20.5076,1,CMIP5 -2145,tas,temperature,tgav,rcp26,C,Simulated,global,0.676405409,14.2637,15.8083,15.23725,15.4385,1,CMIP5 -2145,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.145763392,-9.2293,-6.7267,-8.00375,-8.0295,1,CMIP5 -2145,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.832737948,19.0662,20.9178,20.27855,20.5651,1,CMIP5 -2146,tas,temperature,tgav,rcp26,C,Simulated,global,0.637136477,14.2355,15.5965,15.18025,15.4445,1,CMIP5 -2146,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.083282852,-9.1908,-6.8489,-8.17685,-8.33385,1,CMIP5 -2146,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.764934622,19.1107,20.7146,20.247675,20.5827,1,CMIP5 -2147,tas,temperature,tgav,rcp26,C,Simulated,global,0.550605418,14.3025,15.4708,15.1081,15.32955,1,CMIP5 -2147,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.2894049,-9.7446,-7.0579,-8.287925,-8.1746,1,CMIP5 -2147,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.736726331,19.1057,20.7355,20.1828,20.445,1,CMIP5 -2148,tas,temperature,tgav,rcp26,C,Simulated,global,0.651219786,14.3211,15.8273,15.242975,15.41175,1,CMIP5 -2148,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.257452078,-9.2432,-6.5861,-8.047025,-8.1794,1,CMIP5 -2148,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.812803578,19.1423,20.9974,20.29375,20.51765,1,CMIP5 -2149,tas,temperature,tgav,rcp26,C,Simulated,global,0.659322508,14.3598,15.906,15.28145,15.43,1,CMIP5 -2149,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.960541717,-9.085,-6.9341,-8.07575,-8.14195,1,CMIP5 -2149,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.77233893,19.2453,21.0245,20.349225,20.56355,1,CMIP5 -2150,tas,temperature,tgav,rcp26,C,Simulated,global,0.657333788,14.2318,15.7199,15.165575,15.3553,1,CMIP5 -2150,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.804279373,-8.925,-7.171,-8.058975,-8.06995,1,CMIP5 -2150,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.771931868,19.0773,20.7806,20.205725,20.4825,1,CMIP5 -2151,tas,temperature,tgav,rcp26,C,Simulated,global,0.636250692,14.1749,15.5495,15.088975,15.31575,1,CMIP5 -2151,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.932367597,-9.1974,-7.1358,-8.388175,-8.60975,1,CMIP5 -2151,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.719352827,19.1429,20.7163,20.18305,20.4365,1,CMIP5 -2152,tas,temperature,tgav,rcp26,C,Simulated,global,0.631810533,14.2533,15.6937,15.153875,15.33425,1,CMIP5 -2152,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.341685749,-9.7493,-6.7981,-8.380625,-8.48755,1,CMIP5 -2152,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.788599732,19.1388,20.8901,20.25735,20.50025,1,CMIP5 -2153,tas,temperature,tgav,rcp26,C,Simulated,global,0.688899001,14.2012,15.8043,15.143,15.28325,1,CMIP5 -2153,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.051556387,-9.6222,-7.2026,-8.406325,-8.40025,1,CMIP5 -2153,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.811493259,19.1145,20.9501,20.25155,20.4708,1,CMIP5 -2154,tas,temperature,tgav,rcp26,C,Simulated,global,0.737098331,14.0539,15.756,15.08245,15.25995,1,CMIP5 -2154,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.104392077,-9.6927,-7.3267,-8.4594,-8.4091,1,CMIP5 -2154,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.909997427,18.8901,20.9375,20.18895,20.4641,1,CMIP5 -2155,tas,temperature,tgav,rcp26,C,Simulated,global,0.710181629,14.037,15.6136,15.0822,15.3391,1,CMIP5 -2155,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.141906269,-9.4369,-7.0097,-8.3361,-8.4489,1,CMIP5 -2155,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.87223977,18.8728,20.7789,20.16225,20.49865,1,CMIP5 -2156,tas,temperature,tgav,rcp26,C,Simulated,global,0.723636725,14.1954,15.8589,15.23135,15.43555,1,CMIP5 -2156,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.049681277,-9.2747,-7.0001,-8.15655,-8.1757,1,CMIP5 -2156,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.881185158,19.023,21.0021,20.30515,20.59775,1,CMIP5 -2157,tas,temperature,tgav,rcp26,C,Simulated,global,0.801473616,14.0294,15.795,15.20655,15.5009,1,CMIP5 -2157,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.274661447,-9.4208,-6.6874,-8.26785,-8.4816,1,CMIP5 -2157,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.97778739,18.8675,21.008,20.2972,20.65665,1,CMIP5 -2158,tas,temperature,tgav,rcp26,C,Simulated,global,0.687613992,14.1717,15.7257,15.175675,15.40265,1,CMIP5 -2158,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.210871538,-9.3807,-6.8259,-8.128125,-8.15295,1,CMIP5 -2158,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.866522287,18.9549,20.8684,20.2304,20.54915,1,CMIP5 -2159,tas,temperature,tgav,rcp26,C,Simulated,global,0.61544942,14.1848,15.5368,15.077975,15.29515,1,CMIP5 -2159,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.104229573,-9.7185,-7.4187,-8.51185,-8.4551,1,CMIP5 -2159,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.779800107,19.0478,20.6937,20.1957,20.52065,1,CMIP5 -2160,tas,temperature,tgav,rcp26,C,Simulated,global,0.748775198,14.039,15.6594,15.13655,15.4239,1,CMIP5 -2160,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.181302885,-9.4018,-6.8484,-8.3424,-8.5597,1,CMIP5 -2160,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.899120075,18.9152,20.8428,20.228975,20.57895,1,CMIP5 -2161,tas,temperature,tgav,rcp26,C,Simulated,global,0.798209747,13.9889,15.7727,15.1433,15.4058,1,CMIP5 -2161,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.007950119,-9.1909,-6.9083,-8.177675,-8.30575,1,CMIP5 -2161,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.937417691,18.836,20.8907,20.2025,20.54165,1,CMIP5 -2162,tas,temperature,tgav,rcp26,C,Simulated,global,0.670669263,14.2461,15.7974,15.1941,15.36645,1,CMIP5 -2162,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.127635805,-9.3116,-6.9993,-8.190425,-8.2254,1,CMIP5 -2162,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.839431246,19.0616,20.9705,20.26655,20.51705,1,CMIP5 -2163,tas,temperature,tgav,rcp26,C,Simulated,global,0.753043759,14.1229,15.903,15.168775,15.3246,1,CMIP5 -2163,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.212177429,-9.8015,-6.9943,-8.2096,-8.0213,1,CMIP5 -2163,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.902942739,18.9435,20.9825,20.239875,20.51675,1,CMIP5 -2164,tas,temperature,tgav,rcp26,C,Simulated,global,0.759284428,14.0361,15.7971,15.105525,15.29445,1,CMIP5 -2164,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.188423464,-9.3976,-6.6322,-8.019925,-8.02495,1,CMIP5 -2164,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.908127687,18.827,20.8658,20.12105,20.3957,1,CMIP5 -2165,tas,temperature,tgav,rcp26,C,Simulated,global,0.759828026,13.9584,15.6943,15.035875,15.2454,1,CMIP5 -2165,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.059803891,-9.37,-6.9149,-8.2939,-8.44535,1,CMIP5 -2165,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.877006562,18.8454,20.8102,20.096575,20.36535,1,CMIP5 -2166,tas,temperature,tgav,rcp26,C,Simulated,global,0.689602196,14.0898,15.5721,15.066225,15.3015,1,CMIP5 -2166,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.093823832,-9.2598,-7.0103,-8.305225,-8.4754,1,CMIP5 -2166,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.840572747,18.9407,20.7568,20.135525,20.4223,1,CMIP5 -2167,tas,temperature,tgav,rcp26,C,Simulated,global,0.764713857,14.0726,15.8305,15.160925,15.3703,1,CMIP5 -2167,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.11772883,-9.5653,-6.9113,-8.21495,-8.1916,1,CMIP5 -2167,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.896985791,18.9351,20.9159,20.231725,20.53795,1,CMIP5 -2168,tas,temperature,tgav,rcp26,C,Simulated,global,0.730897989,14.1393,15.8206,15.17955,15.37915,1,CMIP5 -2168,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.186392946,-9.3251,-6.7614,-8.160275,-8.2773,1,CMIP5 -2168,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.894631195,18.9625,20.9906,20.241525,20.5065,1,CMIP5 -2169,tas,temperature,tgav,rcp26,C,Simulated,global,0.655646787,14.2655,15.8104,15.182425,15.3269,1,CMIP5 -2169,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.227995756,-9.5258,-6.7502,-8.212975,-8.28795,1,CMIP5 -2169,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.790119381,19.1399,20.9609,20.256625,20.46285,1,CMIP5 -2170,tas,temperature,tgav,rcp26,C,Simulated,global,0.778557737,13.9547,15.7349,15.05175,15.2587,1,CMIP5 -2170,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.155087888,-9.8357,-7.1128,-8.379625,-8.285,1,CMIP5 -2170,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.927225806,18.8059,20.8252,20.134175,20.4528,1,CMIP5 -2171,tas,temperature,tgav,rcp26,C,Simulated,global,0.705377447,14.1287,15.782,15.120375,15.2854,1,CMIP5 -2171,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.280583306,-9.7756,-6.8071,-8.259575,-8.2278,1,CMIP5 -2171,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.852845625,18.9737,20.9004,20.1909,20.44475,1,CMIP5 -2172,tas,temperature,tgav,rcp26,C,Simulated,global,0.559434479,14.4014,15.7093,15.188925,15.3225,1,CMIP5 -2172,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.262417402,-9.297,-6.8304,-8.02785,-7.992,1,CMIP5 -2172,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.741288627,19.1601,20.8522,20.224525,20.4429,1,CMIP5 -2173,tas,temperature,tgav,rcp26,C,Simulated,global,0.634486314,14.2905,15.7616,15.203225,15.3804,1,CMIP5 -2173,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.28035109,-9.6039,-6.7737,-8.1164,-8.044,1,CMIP5 -2173,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.794409898,19.0947,20.8714,20.2615,20.53995,1,CMIP5 -2174,tas,temperature,tgav,rcp26,C,Simulated,global,0.601279227,14.2729,15.6132,15.158925,15.3748,1,CMIP5 -2174,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.432237273,-9.7513,-6.7087,-8.3722,-8.5144,1,CMIP5 -2174,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.764718834,19.1371,20.8282,20.261775,20.5409,1,CMIP5 -2175,tas,temperature,tgav,rcp26,C,Simulated,global,0.757944983,14.1547,15.9717,15.18615,15.3091,1,CMIP5 -2175,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.291965971,-9.9729,-6.8843,-8.263275,-8.09795,1,CMIP5 -2175,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.866150689,19.0325,21.0501,20.27315,20.505,1,CMIP5 -2176,tas,temperature,tgav,rcp26,C,Simulated,global,0.793136285,14.1079,15.9892,15.2083,15.36805,1,CMIP5 -2176,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.525757509,-10.2317,-6.5896,-8.212425,-8.0142,1,CMIP5 -2176,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.926148703,18.944,21.0659,20.2875,20.57005,1,CMIP5 -2177,tas,temperature,tgav,rcp26,C,Simulated,global,0.751063459,14.0465,15.7013,15.1477,15.4215,1,CMIP5 -2177,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.63261482,-10.1949,-6.465,-8.30855,-8.28715,1,CMIP5 -2177,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.93695709,18.8388,20.8603,20.233425,20.6173,1,CMIP5 -2178,tas,temperature,tgav,rcp26,C,Simulated,global,0.71684951,14.1202,15.8237,15.1213,15.27065,1,CMIP5 -2178,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.497536048,-10.1169,-6.724,-8.315375,-8.2103,1,CMIP5 -2178,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.899135107,18.9205,20.9839,20.2029,20.4536,1,CMIP5 -2179,tas,temperature,tgav,rcp26,C,Simulated,global,0.730061025,14.0828,15.7709,15.1065,15.28615,1,CMIP5 -2179,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.155852844,-9.2493,-6.7912,-8.204375,-8.3885,1,CMIP5 -2179,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.88465743,18.9207,20.9513,20.162175,20.38835,1,CMIP5 -2180,tas,temperature,tgav,rcp26,C,Simulated,global,0.661898343,14.1697,15.705,15.10165,15.26595,1,CMIP5 -2180,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.21137,-9.3037,-6.8589,-8.137775,-8.19425,1,CMIP5 -2180,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.842571866,18.943,20.8697,20.141925,20.3775,1,CMIP5 -2181,tas,temperature,tgav,rcp26,C,Simulated,global,0.599287716,14.2712,15.6533,15.1211,15.27995,1,CMIP5 -2181,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.222029941,-9.393,-6.8313,-8.15145,-8.19075,1,CMIP5 -2181,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.759331014,19.0806,20.7929,20.168775,20.4008,1,CMIP5 -2182,tas,temperature,tgav,rcp26,C,Simulated,global,0.593386499,14.3431,15.7166,15.15695,15.28405,1,CMIP5 -2182,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.228057579,-9.354,-6.9896,-8.18655,-8.2013,1,CMIP5 -2182,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.774848144,19.1358,20.9045,20.2198,20.41945,1,CMIP5 -2183,tas,temperature,tgav,rcp26,C,Simulated,global,0.650151354,14.3059,15.8284,15.195475,15.3238,1,CMIP5 -2183,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.120569047,-9.3851,-7.0498,-8.118225,-8.019,1,CMIP5 -2183,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.814957317,19.0991,20.9552,20.252675,20.4782,1,CMIP5 -2184,tas,temperature,tgav,rcp26,C,Simulated,global,0.626955046,14.3518,15.861,15.206575,15.30675,1,CMIP5 -2184,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.515503429,-9.7604,-6.6399,-8.192475,-8.1848,1,CMIP5 -2184,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.828709784,19.126,21.0914,20.2799,20.4511,1,CMIP5 -2185,tas,temperature,tgav,rcp26,C,Simulated,global,0.560727578,14.3631,15.6739,15.14645,15.2744,1,CMIP5 -2185,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.278886894,-9.88,-7.2672,-8.4094,-8.2452,1,CMIP5 -2185,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.755360379,19.1591,20.8417,20.256175,20.51195,1,CMIP5 -2186,tas,temperature,tgav,rcp26,C,Simulated,global,0.656382167,14.1076,15.6054,15.058825,15.26115,1,CMIP5 -2186,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.307517448,-9.7444,-6.9909,-8.354825,-8.342,1,CMIP5 -2186,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.843146288,18.9043,20.776,20.136825,20.4335,1,CMIP5 -2187,tas,temperature,tgav,rcp26,C,Simulated,global,0.752297527,14.0433,15.8156,15.083825,15.2382,1,CMIP5 -2187,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.03652965,-9.5332,-7.1923,-8.277075,-8.1914,1,CMIP5 -2187,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.899720788,18.8679,20.9274,20.15175,20.40585,1,CMIP5 -2188,tas,temperature,tgav,rcp26,C,Simulated,global,0.770781051,14.0089,15.8313,15.092725,15.26535,1,CMIP5 -2188,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.394082734,-9.987,-6.7796,-8.326625,-8.26995,1,CMIP5 -2188,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.943600309,18.8201,20.9846,20.171075,20.4398,1,CMIP5 -2189,tas,temperature,tgav,rcp26,C,Simulated,global,0.704040228,14.0283,15.6513,15.045875,15.25195,1,CMIP5 -2189,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.44798926,-10.3269,-7.0244,-8.59445,-8.51325,1,CMIP5 -2189,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.877951179,18.8853,20.8295,20.1724,20.4874,1,CMIP5 -2190,tas,temperature,tgav,rcp26,C,Simulated,global,0.709416917,14.0461,15.6109,15.089325,15.35015,1,CMIP5 -2190,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.155753204,-9.4444,-6.9489,-8.357125,-8.5176,1,CMIP5 -2190,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.8590688,18.9099,20.78,20.17525,20.50555,1,CMIP5 -2191,tas,temperature,tgav,rcp26,C,Simulated,global,0.629272778,14.2238,15.7116,15.102625,15.23755,1,CMIP5 -2191,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.351259576,-9.9898,-7.0573,-8.462075,-8.4006,1,CMIP5 -2191,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.801352791,19.071,20.9052,20.212975,20.43785,1,CMIP5 -2192,tas,temperature,tgav,rcp26,C,Simulated,global,0.650686229,14.2119,15.7742,15.104175,15.2153,1,CMIP5 -2192,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.281828898,-9.9695,-7.114,-8.50425,-8.46675,1,CMIP5 -2192,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.79906765,19.096,20.9713,20.224675,20.4157,1,CMIP5 -2193,tas,temperature,tgav,rcp26,C,Simulated,global,0.661799491,14.0893,15.5871,15.0574,15.2766,1,CMIP5 -2193,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.21395371,-9.5143,-6.8376,-8.225925,-8.2759,1,CMIP5 -2193,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.814314704,18.9055,20.7039,20.10795,20.4112,1,CMIP5 -2194,tas,temperature,tgav,rcp26,C,Simulated,global,0.633733505,14.1082,15.4597,15.052325,15.3207,1,CMIP5 -2194,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.15492182,-9.2166,-6.8894,-8.24285,-8.4327,1,CMIP5 -2194,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.783715505,18.9382,20.6065,20.1059,20.43945,1,CMIP5 -2195,tas,temperature,tgav,rcp26,C,Simulated,global,0.659990744,14.1078,15.6111,15.062425,15.2654,1,CMIP5 -2195,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.13935015,-9.4132,-6.9489,-8.31365,-8.44625,1,CMIP5 -2195,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.799982035,18.9696,20.765,20.133175,20.39905,1,CMIP5 -2196,tas,temperature,tgav,rcp26,C,Simulated,global,0.568335693,14.2646,15.5121,15.0989,15.30945,1,CMIP5 -2196,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.316089992,-9.6524,-7.0138,-8.4511,-8.5691,1,CMIP5 -2196,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.738209984,19.1255,20.7302,20.2065,20.48515,1,CMIP5 -2197,tas,temperature,tgav,rcp26,C,Simulated,global,0.668236691,14.0696,15.5919,15.039625,15.2485,1,CMIP5 -2197,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.214607241,-9.781,-7.1433,-8.47015,-8.47815,1,CMIP5 -2197,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.833309132,18.9166,20.7611,20.139175,20.4395,1,CMIP5 -2198,tas,temperature,tgav,rcp26,C,Simulated,global,0.71274723,14.1244,15.7574,15.1536,15.3663,1,CMIP5 -2198,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.265742072,-9.6219,-6.9107,-8.3269,-8.3875,1,CMIP5 -2198,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.891898897,18.9502,20.9546,20.245975,20.53955,1,CMIP5 -2199,tas,temperature,tgav,rcp26,C,Simulated,global,0.663157271,14.161,15.6739,15.1102,15.30295,1,CMIP5 -2199,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.204778396,-9.317,-6.9245,-8.156025,-8.1913,1,CMIP5 -2199,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.85120478,18.9259,20.8367,20.15645,20.4316,1,CMIP5 -2200,tas,temperature,tgav,rcp26,C,Simulated,global,0.599321196,14.2375,15.5832,15.103925,15.2975,1,CMIP5 -2200,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.07506253,-9.1525,-7.0758,-8.23505,-8.35595,1,CMIP5 -2200,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.750872919,19.0717,20.7478,20.1672,20.42465,1,CMIP5 -2201,tas,temperature,tgav,rcp26,C,Simulated,global,0.676921293,14.1898,15.76,15.13045,15.286,1,CMIP5 -2201,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.986733569,-9.0561,-7.306,-8.160275,-8.1395,1,CMIP5 -2201,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.857043108,18.9561,20.9239,20.183575,20.42715,1,CMIP5 -2202,tas,temperature,tgav,rcp26,C,Simulated,global,0.580028444,14.2747,15.5841,15.124175,15.31895,1,CMIP5 -2202,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.191153722,-9.3146,-6.9247,-8.159275,-8.1989,1,CMIP5 -2202,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.754422371,19.0725,20.7827,20.1751,20.4226,1,CMIP5 -2203,tas,temperature,tgav,rcp26,C,Simulated,global,0.469461574,14.4153,15.4739,15.097575,15.25055,1,CMIP5 -2203,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.344173913,-9.4824,-7.0663,-8.275325,-8.2763,1,CMIP5 -2203,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.661330842,19.1985,20.6662,20.167075,20.4018,1,CMIP5 -2204,tas,temperature,tgav,rcp26,C,Simulated,global,0.522609344,14.3157,15.5152,15.0679,15.22035,1,CMIP5 -2204,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.347297424,-9.7407,-7.0553,-8.353125,-8.30825,1,CMIP5 -2204,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.705432525,19.1199,20.689,20.1476,20.39075,1,CMIP5 -2205,tas,temperature,tgav,rcp26,C,Simulated,global,0.79341111,13.9112,15.7339,15.033775,15.245,1,CMIP5 -2205,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.053305035,-9.3935,-7.0622,-8.343975,-8.4601,1,CMIP5 -2205,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.945165218,18.7545,20.8955,20.104625,20.38425,1,CMIP5 -2206,tas,temperature,tgav,rcp26,C,Simulated,global,0.766697702,13.9997,15.8289,15.0393,15.1643,1,CMIP5 -2206,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.978039407,-9.3987,-7.2249,-8.256875,-8.20195,1,CMIP5 -2206,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.912796717,18.8121,20.9501,20.0933,20.3055,1,CMIP5 -2207,tas,temperature,tgav,rcp26,C,Simulated,global,0.643572327,14.1826,15.6303,15.0747,15.24295,1,CMIP5 -2207,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.109726638,-9.3612,-7.341,-8.29925,-8.2474,1,CMIP5 -2207,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.837326688,18.9549,20.8483,20.145025,20.38845,1,CMIP5 -2208,tas,temperature,tgav,rcp26,C,Simulated,global,0.811293482,14.0024,15.8974,15.0816,15.2133,1,CMIP5 -2208,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.666646658,-9.2124,-7.7132,-8.4476,-8.4324,1,CMIP5 -2208,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.921294558,18.9052,21.0446,20.187875,20.40085,1,CMIP5 -2209,tas,temperature,tgav,rcp26,C,Simulated,global,0.759131772,14.0057,15.7461,15.0367,15.1975,1,CMIP5 -2209,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.607607434,-8.9436,-7.7499,-8.4211,-8.49545,1,CMIP5 -2209,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.868423006,18.8991,20.8977,20.12805,20.3577,1,CMIP5 -2210,tas,temperature,tgav,rcp26,C,Simulated,global,0.673400155,14.0704,15.5689,15.026125,15.2326,1,CMIP5 -2210,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.881149463,-9.2381,-7.3326,-8.43455,-8.58375,1,CMIP5 -2210,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.779546579,18.9913,20.7079,20.116675,20.38375,1,CMIP5 -2211,tas,temperature,tgav,rcp26,C,Simulated,global,0.583093671,14.1473,15.465,14.970075,15.134,1,CMIP5 -2211,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.060668514,-9.4111,-7.3908,-8.43385,-8.46675,1,CMIP5 -2211,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.739524777,18.9808,20.6319,20.047475,20.2886,1,CMIP5 -2212,tas,temperature,tgav,rcp26,C,Simulated,global,0.703484105,13.9233,15.5002,14.9335,15.15525,1,CMIP5 -2212,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.227701172,-9.8968,-7.1156,-8.5762,-8.6462,1,CMIP5 -2212,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.855443935,18.8026,20.6593,20.0323,20.33365,1,CMIP5 -2213,tas,temperature,tgav,rcp26,C,Simulated,global,0.696495879,14.0371,15.6691,14.96285,15.0726,1,CMIP5 -2213,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.110911321,-9.7873,-7.1806,-8.48135,-8.47875,1,CMIP5 -2213,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.813649861,18.9428,20.7925,20.04805,20.22845,1,CMIP5 -2214,tas,temperature,tgav,rcp26,C,Simulated,global,0.798406515,13.9884,15.8858,15.029625,15.12215,1,CMIP5 -2214,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.832504684,-9.3645,-7.3321,-8.327975,-8.30765,1,CMIP5 -2214,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.870851225,18.9147,20.9534,20.098075,20.2621,1,CMIP5 -2215,tas,temperature,tgav,rcp26,C,Simulated,global,0.784852434,13.8832,15.667,14.97545,15.1758,1,CMIP5 -2215,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.92561482,-9.4859,-7.5813,-8.552575,-8.57155,1,CMIP5 -2215,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.948796485,18.7259,20.856,20.079775,20.3686,1,CMIP5 -2216,tas,temperature,tgav,rcp26,C,Simulated,global,0.742678411,13.8339,15.4724,14.903325,15.1535,1,CMIP5 -2216,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.97869688,-9.4416,-7.2983,-8.501525,-8.6331,1,CMIP5 -2216,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.878303882,18.7039,20.6105,19.980925,20.30465,1,CMIP5 -2217,tas,temperature,tgav,rcp26,C,Simulated,global,0.677559547,14.0498,15.5594,14.9848,15.165,1,CMIP5 -2217,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.88759364,-9.3722,-7.5257,-8.42235,-8.39575,1,CMIP5 -2217,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.815088802,18.8994,20.6806,20.063525,20.33705,1,CMIP5 -2218,tas,temperature,tgav,rcp26,C,Simulated,global,0.808267683,13.8976,15.7469,15.0064,15.19055,1,CMIP5 -2218,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.74333739,-9.2074,-7.463,-8.284125,-8.23305,1,CMIP5 -2218,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.920476994,18.749,20.806,20.060625,20.34375,1,CMIP5 -2219,tas,temperature,tgav,rcp26,C,Simulated,global,0.797272519,13.7661,15.5976,14.91205,15.14225,1,CMIP5 -2219,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.05931518,-9.9194,-7.5536,-8.67355,-8.6106,1,CMIP5 -2219,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.967555633,18.6113,20.7617,20.028825,20.37115,1,CMIP5 -2220,tas,temperature,tgav,rcp26,C,Simulated,global,0.760087089,13.9334,15.6511,15.024325,15.2564,1,CMIP5 -2220,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.144470303,-9.6451,-7.1947,-8.4087,-8.3975,1,CMIP5 -2220,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.945227905,18.7341,20.8143,20.107,20.4398,1,CMIP5 -2221,tas,temperature,tgav,rcp26,C,Simulated,global,0.774883653,13.9115,15.7274,14.999925,15.1804,1,CMIP5 -2221,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.136384959,-9.8021,-7.1375,-8.405875,-8.34195,1,CMIP5 -2221,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.917417103,18.7587,20.8347,20.0771,20.3575,1,CMIP5 -2222,tas,temperature,tgav,rcp26,C,Simulated,global,0.685656548,14.1085,15.7312,15.062975,15.2061,1,CMIP5 -2222,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.27014865,-9.7948,-7.0464,-8.3051,-8.1896,1,CMIP5 -2222,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.864263422,18.8952,20.8739,20.131175,20.3778,1,CMIP5 -2223,tas,temperature,tgav,rcp26,C,Simulated,global,0.728954036,13.9843,15.6509,15.0344,15.2512,1,CMIP5 -2223,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.179994174,-9.6621,-6.9343,-8.27175,-8.2453,1,CMIP5 -2223,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.878708872,18.8078,20.7396,20.089775,20.40585,1,CMIP5 -2224,tas,temperature,tgav,rcp26,C,Simulated,global,0.662602271,14.0327,15.4892,15.013175,15.2654,1,CMIP5 -2224,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.418463813,-9.7484,-6.6766,-8.312775,-8.41305,1,CMIP5 -2224,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.834879341,18.8325,20.6466,20.0717,20.40385,1,CMIP5 -2225,tas,temperature,tgav,rcp26,C,Simulated,global,0.651970589,14.1401,15.5797,15.104225,15.34855,1,CMIP5 -2225,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.366207532,-9.4307,-6.5831,-8.2639,-8.5209,1,CMIP5 -2225,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.804901209,18.9873,20.7787,20.17205,20.4611,1,CMIP5 -2226,tas,temperature,tgav,rcp26,C,Simulated,global,0.657769663,14.0978,15.629,15.035525,15.20765,1,CMIP5 -2226,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.378149185,-9.703,-6.6703,-8.383175,-8.5797,1,CMIP5 -2226,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.805643798,18.9736,20.827,20.113675,20.32705,1,CMIP5 -2227,tas,temperature,tgav,rcp26,C,Simulated,global,0.713510118,13.9277,15.496,14.969875,15.2279,1,CMIP5 -2227,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.156454701,-9.522,-7.1024,-8.528725,-8.74525,1,CMIP5 -2227,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.865289356,18.8064,20.7194,20.066775,20.37065,1,CMIP5 -2228,tas,temperature,tgav,rcp26,C,Simulated,global,0.66540983,14.0535,15.62,14.995925,15.1551,1,CMIP5 -2228,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.335100578,-9.9188,-7.1115,-8.5135,-8.51185,1,CMIP5 -2228,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.849670568,18.8711,20.8336,20.0946,20.33685,1,CMIP5 -2229,tas,temperature,tgav,rcp26,C,Simulated,global,0.711999799,14.0091,15.6792,15.0158,15.18745,1,CMIP5 -2229,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.071301746,-9.5172,-7.0923,-8.42815,-8.55155,1,CMIP5 -2229,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.834534239,18.9072,20.8365,20.101675,20.3315,1,CMIP5 -2230,tas,temperature,tgav,rcp26,C,Simulated,global,0.724508834,13.8683,15.4909,14.92795,15.1763,1,CMIP5 -2230,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.158058327,-9.714,-7.076,-8.616875,-8.83875,1,CMIP5 -2230,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.836921694,18.8108,20.6576,20.035375,20.33655,1,CMIP5 -2231,tas,temperature,tgav,rcp26,C,Simulated,global,0.636628732,13.9307,15.3204,14.861525,15.0975,1,CMIP5 -2231,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.374607067,-9.9947,-6.9552,-8.63505,-8.79515,1,CMIP5 -2231,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.789684871,18.817,20.4991,19.956675,20.2553,1,CMIP5 -2232,tas,temperature,tgav,rcp26,C,Simulated,global,0.656349655,14.0596,15.5585,14.993725,15.1784,1,CMIP5 -2232,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.322025908,-9.9012,-6.9963,-8.454975,-8.4612,1,CMIP5 -2232,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.82876259,18.8944,20.7229,20.07875,20.34885,1,CMIP5 -2233,tas,temperature,tgav,rcp26,C,Simulated,global,0.658796814,13.9889,15.4751,14.949475,15.16695,1,CMIP5 -2233,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.284171522,-9.863,-7.0113,-8.56655,-8.69595,1,CMIP5 -2233,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.804075189,18.8774,20.6549,20.049725,20.3333,1,CMIP5 -2234,tas,temperature,tgav,rcp26,C,Simulated,global,0.592160054,14.0484,15.3715,14.919225,15.1285,1,CMIP5 -2234,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.176146367,-10.0127,-7.2385,-8.67565,-8.7257,1,CMIP5 -2234,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.690366733,19.0133,20.4825,20.0382,20.3285,1,CMIP5 -2235,tas,temperature,tgav,rcp26,C,Simulated,global,0.697823365,14.0412,15.6596,15.044725,15.23905,1,CMIP5 -2235,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.343202865,-9.957,-6.8483,-8.41385,-8.42505,1,CMIP5 -2235,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.843498494,18.9032,20.8006,20.132375,20.41285,1,CMIP5 -2236,tas,temperature,tgav,rcp26,C,Simulated,global,0.760774879,14.0077,15.8069,15.067875,15.22845,1,CMIP5 -2236,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.214263352,-9.8262,-6.95,-8.319875,-8.25165,1,CMIP5 -2236,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.89586621,18.8621,20.9065,20.1407,20.3971,1,CMIP5 -2237,tas,temperature,tgav,rcp26,C,Simulated,global,0.719337714,13.9238,15.55,14.9678,15.1987,1,CMIP5 -2237,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.167158153,-9.7578,-7.0138,-8.4467,-8.5076,1,CMIP5 -2237,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.845819967,18.8105,20.6548,20.046825,20.361,1,CMIP5 -2238,tas,temperature,tgav,rcp26,C,Simulated,global,0.784291232,13.8229,15.6074,14.95255,15.18995,1,CMIP5 -2238,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.076875014,-9.507,-7.0922,-8.52985,-8.7601,1,CMIP5 -2238,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.907048207,18.7373,20.7825,20.046375,20.33285,1,CMIP5 -2239,tas,temperature,tgav,rcp26,C,Simulated,global,0.748935513,13.8212,15.4881,14.910425,15.1662,1,CMIP5 -2239,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.107885146,-9.7451,-7.1607,-8.682925,-8.91295,1,CMIP5 -2239,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.841128826,18.8053,20.6362,20.028675,20.3366,1,CMIP5 -2240,tas,temperature,tgav,rcp26,C,Simulated,global,0.767216829,13.8708,15.6056,14.979075,15.21995,1,CMIP5 -2240,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.113585244,-9.9128,-7.2239,-8.49005,-8.41175,1,CMIP5 -2240,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.88938191,18.7668,20.6621,20.070725,20.427,1,CMIP5 -2241,tas,temperature,tgav,rcp26,C,Simulated,global,0.691372439,13.9855,15.5862,14.981125,15.1764,1,CMIP5 -2241,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.326923483,-9.9194,-6.7908,-8.294325,-8.23355,1,CMIP5 -2241,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.827575194,18.8163,20.6497,20.029425,20.32585,1,CMIP5 -2242,tas,temperature,tgav,rcp26,C,Simulated,global,0.699341225,14.0103,15.6292,14.993875,15.168,1,CMIP5 -2242,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.113376619,-9.7721,-7.1685,-8.428075,-8.38585,1,CMIP5 -2242,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.827459058,18.8873,20.7271,20.0748,20.3424,1,CMIP5 -2243,tas,temperature,tgav,rcp26,C,Simulated,global,0.707409316,13.9515,15.5766,14.9722,15.18035,1,CMIP5 -2243,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.241907123,-10.0198,-7.1252,-8.626325,-8.68015,1,CMIP5 -2243,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.84040375,18.8673,20.7375,20.09075,20.3791,1,CMIP5 -2244,tas,temperature,tgav,rcp26,C,Simulated,global,0.702907526,14.0054,15.5798,15.03865,15.2847,1,CMIP5 -2244,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.407989631,-10.1942,-6.9234,-8.5248,-8.4908,1,CMIP5 -2244,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.859508662,18.8727,20.7192,20.1491,20.50225,1,CMIP5 -2245,tas,temperature,tgav,rcp26,C,Simulated,global,0.661441977,14.0736,15.5119,15.054075,15.3154,1,CMIP5 -2245,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.2868666,-9.7684,-6.9869,-8.4927,-8.60775,1,CMIP5 -2245,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.818175358,18.9424,20.6988,20.16175,20.5029,1,CMIP5 -2246,tas,temperature,tgav,rcp26,C,Simulated,global,0.633670358,14.1007,15.5325,15.027675,15.23875,1,CMIP5 -2246,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.331466989,-9.8393,-6.8294,-8.353075,-8.3718,1,CMIP5 -2246,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.783931177,18.9445,20.6545,20.09865,20.3978,1,CMIP5 -2247,tas,temperature,tgav,rcp26,C,Simulated,global,0.663310884,14.1099,15.648,15.062175,15.2454,1,CMIP5 -2247,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.344293879,-9.7619,-6.687,-8.3146,-8.40475,1,CMIP5 -2247,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.802165583,18.9748,20.79,20.131875,20.38135,1,CMIP5 -2248,tas,temperature,tgav,rcp26,C,Simulated,global,0.589161887,14.0641,15.3122,14.940425,15.1927,1,CMIP5 -2248,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.409295855,-9.6891,-6.9295,-8.4651,-8.6209,1,CMIP5 -2248,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.77664297,18.8693,20.5322,20.016075,20.3314,1,CMIP5 -2249,tas,temperature,tgav,rcp26,C,Simulated,global,0.674213267,13.9731,15.472,14.966825,15.2111,1,CMIP5 -2249,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.261631329,-9.485,-6.7827,-8.210325,-8.2868,1,CMIP5 -2249,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.844803052,18.7445,20.5874,19.993825,20.3217,1,CMIP5 -2250,tas,temperature,tgav,rcp26,C,Simulated,global,0.681601088,14.0077,15.5919,14.985525,15.17125,1,CMIP5 -2250,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.506250825,-9.7727,-6.7021,-8.349275,-8.46115,1,CMIP5 -2250,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.893220701,18.7657,20.8249,20.0446,20.2939,1,CMIP5 -2251,tas,temperature,tgav,rcp26,C,Simulated,global,0.694864855,14.0741,15.7335,15.0233,15.1428,1,CMIP5 -2251,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.337147049,-9.6125,-6.7339,-8.33705,-8.5009,1,CMIP5 -2251,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.86136821,18.9143,20.9491,20.0886,20.2455,1,CMIP5 -2252,tas,temperature,tgav,rcp26,C,Simulated,global,0.641399522,14.0329,15.4867,14.9704,15.181,1,CMIP5 -2252,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.419476177,-9.9799,-6.8546,-8.47605,-8.53485,1,CMIP5 -2252,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.807688465,18.8689,20.6603,20.05495,20.3453,1,CMIP5 -2253,tas,temperature,tgav,rcp26,C,Simulated,global,0.630598594,13.9164,15.234,14.8602,15.1452,1,CMIP5 -2253,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.452544118,-10.0132,-7.0877,-8.696925,-8.8434,1,CMIP5 -2253,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.821109899,18.7432,20.468,19.9688,20.332,1,CMIP5 -2254,tas,temperature,tgav,rcp26,C,Simulated,global,0.672089463,13.975,15.4167,14.9757,15.25555,1,CMIP5 -2254,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.518974858,-9.6369,-6.5628,-8.3828,-8.66575,1,CMIP5 -2254,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.851067467,18.7803,20.6471,20.0404,20.3671,1,CMIP5 -2255,tas,temperature,tgav,rcp26,C,Simulated,global,0.680213939,14.0533,15.6444,15.021825,15.1948,1,CMIP5 -2255,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.397543238,-9.4867,-6.5947,-8.207225,-8.37375,1,CMIP5 -2255,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.865928986,18.8299,20.8439,20.058625,20.28035,1,CMIP5 -2256,tas,temperature,tgav,rcp26,C,Simulated,global,0.716740281,13.99,15.6291,15.02925,15.24895,1,CMIP5 -2256,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.369896158,-9.3688,-6.5165,-8.279575,-8.6165,1,CMIP5 -2256,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.872156807,18.8375,20.8468,20.08355,20.32495,1,CMIP5 -2257,tas,temperature,tgav,rcp26,C,Simulated,global,0.747171753,13.926,15.6599,14.999975,15.207,1,CMIP5 -2257,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.28444428,-9.7821,-6.8113,-8.448075,-8.59945,1,CMIP5 -2257,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.877817052,18.8159,20.8234,20.08545,20.35125,1,CMIP5 -2258,tas,temperature,tgav,rcp26,C,Simulated,global,0.684870229,13.9048,15.3599,14.92405,15.21575,1,CMIP5 -2258,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.179936921,-9.4712,-7.0287,-8.43905,-8.62815,1,CMIP5 -2258,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.842469459,18.7403,20.5443,19.991925,20.34155,1,CMIP5 -2259,tas,temperature,tgav,rcp26,C,Simulated,global,0.61663747,14.0745,15.4754,14.972875,15.1708,1,CMIP5 -2259,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.239244248,-9.5531,-6.8259,-8.244,-8.2985,1,CMIP5 -2259,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.763243353,18.8886,20.5774,20.008775,20.28455,1,CMIP5 -2260,tas,temperature,tgav,rcp26,C,Simulated,global,0.67211923,14.0554,15.5774,15.0341,15.2518,1,CMIP5 -2260,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.272700665,-9.4592,-6.7207,-8.283025,-8.4761,1,CMIP5 -2260,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.822067556,18.8976,20.7442,20.091,20.3611,1,CMIP5 -2261,tas,temperature,tgav,rcp26,C,Simulated,global,0.751629356,13.9424,15.6852,15.019275,15.22475,1,CMIP5 -2261,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.340994026,-9.908,-6.9287,-8.45525,-8.49215,1,CMIP5 -2261,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.932670267,18.7641,20.8771,20.1098,20.399,1,CMIP5 -2262,tas,temperature,tgav,rcp26,C,Simulated,global,0.78381356,13.8168,15.6193,14.95075,15.18345,1,CMIP5 -2262,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.291165041,-10.1163,-6.9747,-8.563525,-8.58155,1,CMIP5 -2262,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.892290517,18.7431,20.7098,20.0512,20.37595,1,CMIP5 -2263,tas,temperature,tgav,rcp26,C,Simulated,global,0.672053204,13.889,15.3179,14.892425,15.1814,1,CMIP5 -2263,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.216004888,-9.9586,-7.2864,-8.5732,-8.5239,1,CMIP5 -2263,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.847297028,18.7136,20.4372,19.9831,20.3908,1,CMIP5 -2264,tas,temperature,tgav,rcp26,C,Simulated,global,0.674491435,13.8537,15.3039,14.855875,15.13295,1,CMIP5 -2264,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.397990803,-10.3477,-7.2658,-8.8078,-8.80885,1,CMIP5 -2264,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.852032012,18.7133,20.4942,19.988375,20.373,1,CMIP5 -2265,tas,temperature,tgav,rcp26,C,Simulated,global,0.731120197,13.9909,15.6832,15.028275,15.2195,1,CMIP5 -2265,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.389059645,-10.2294,-7.1435,-8.51305,-8.33965,1,CMIP5 -2265,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.913860261,18.793,20.8395,20.134475,20.4527,1,CMIP5 -2266,tas,temperature,tgav,rcp26,C,Simulated,global,0.724085964,14.0635,15.7724,15.07455,15.23115,1,CMIP5 -2266,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.565571123,-10.3738,-6.8605,-8.3589,-8.10065,1,CMIP5 -2266,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.910526135,18.828,20.898,20.15605,20.4491,1,CMIP5 -2267,tas,temperature,tgav,rcp26,C,Simulated,global,0.670652093,14.0257,15.517,15.00635,15.24135,1,CMIP5 -2267,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.525402396,-10.0215,-6.5958,-8.39885,-8.48905,1,CMIP5 -2267,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.828999266,18.855,20.6827,20.081575,20.3943,1,CMIP5 -2268,tas,temperature,tgav,rcp26,C,Simulated,global,0.557536913,14.1378,15.3778,14.960125,15.16245,1,CMIP5 -2268,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.454110455,-9.9298,-6.788,-8.47315,-8.5874,1,CMIP5 -2268,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.711795609,18.9941,20.5533,20.041725,20.30975,1,CMIP5 -2269,tas,temperature,tgav,rcp26,C,Simulated,global,0.645860776,14.008,15.4732,14.945325,15.15005,1,CMIP5 -2269,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.347823813,-9.8288,-6.8749,-8.49395,-8.63605,1,CMIP5 -2269,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.800353794,18.8716,20.655,20.028275,20.29325,1,CMIP5 -2270,tas,temperature,tgav,rcp26,C,Simulated,global,0.745484623,13.909,15.6576,14.96615,15.149,1,CMIP5 -2270,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.370202193,-9.8233,-6.7859,-8.464175,-8.62375,1,CMIP5 -2270,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.911637598,18.7551,20.8686,20.04665,20.28145,1,CMIP5 -2271,tas,temperature,tgav,rcp26,C,Simulated,global,0.663441585,13.9773,15.4986,14.91705,15.09615,1,CMIP5 -2271,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.309011863,-9.5859,-6.8579,-8.42925,-8.6366,1,CMIP5 -2271,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.828803163,18.8163,20.7026,19.979525,20.1996,1,CMIP5 -2272,tas,temperature,tgav,rcp26,C,Simulated,global,0.685610489,14.0108,15.5729,14.972825,15.1538,1,CMIP5 -2272,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.919967037,-9.2621,-7.2726,-8.369825,-8.4723,1,CMIP5 -2272,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.814205246,18.8831,20.7581,20.037375,20.25415,1,CMIP5 -2273,tas,temperature,tgav,rcp26,C,Simulated,global,0.738002111,13.9778,15.7036,15.016125,15.19155,1,CMIP5 -2273,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.940111185,-9.1823,-7.2153,-8.4309,-8.663,1,CMIP5 -2273,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.859034002,18.8869,20.8956,20.103275,20.3153,1,CMIP5 -2274,tas,temperature,tgav,rcp26,C,Simulated,global,0.781940434,13.8424,15.6392,14.940025,15.13925,1,CMIP5 -2274,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.944652915,-9.2512,-7.2078,-8.41735,-8.6052,1,CMIP5 -2274,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.911571264,18.7148,20.7999,20.007175,20.257,1,CMIP5 -2275,tas,temperature,tgav,rcp26,C,Simulated,global,0.734136493,13.9067,15.5177,14.93745,15.1627,1,CMIP5 -2275,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.009387779,-9.3372,-7.4344,-8.430525,-8.47525,1,CMIP5 -2275,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.914737706,18.695,20.6915,20.00665,20.32005,1,CMIP5 -2276,tas,temperature,tgav,rcp26,C,Simulated,global,0.599762222,14.0999,15.3827,14.976525,15.21175,1,CMIP5 -2276,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.269719529,-9.4795,-7.1133,-8.282725,-8.26905,1,CMIP5 -2276,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.806900023,18.8362,20.5737,20.0214,20.33785,1,CMIP5 -2277,tas,temperature,tgav,rcp26,C,Simulated,global,0.683958539,13.943,15.3593,14.96515,15.27915,1,CMIP5 -2277,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.402981849,-9.6897,-6.7366,-8.44095,-8.66875,1,CMIP5 -2277,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.853165359,18.7755,20.5589,20.040825,20.41445,1,CMIP5 -2278,tas,temperature,tgav,rcp26,C,Simulated,global,0.763113419,13.8225,15.5229,14.93565,15.1986,1,CMIP5 -2278,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.004587771,-9.4811,-7.3702,-8.59405,-8.76245,1,CMIP5 -2278,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.912598141,18.7003,20.7157,20.0404,20.3728,1,CMIP5 -2279,tas,temperature,tgav,rcp26,C,Simulated,global,0.763385715,13.7481,15.3896,14.821175,15.0735,1,CMIP5 -2279,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.804582469,-9.5789,-7.8035,-8.72985,-8.7685,1,CMIP5 -2279,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.891686856,18.6467,20.5476,19.931525,20.2659,1,CMIP5 -2280,tas,temperature,tgav,rcp26,C,Simulated,global,0.745717459,13.7193,15.3367,14.816625,15.10525,1,CMIP5 -2280,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.08867192,-9.6668,-7.295,-8.81435,-9.1478,1,CMIP5 -2280,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.845376214,18.704,20.5571,19.943125,20.2557,1,CMIP5 -2281,tas,temperature,tgav,rcp26,C,Simulated,global,0.635691494,13.9739,15.4025,14.893425,15.09865,1,CMIP5 -2281,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.244095672,-10.1478,-7.3464,-8.6967,-8.6463,1,CMIP5 -2281,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.790389315,18.8574,20.548,20.010225,20.31775,1,CMIP5 -2282,tas,temperature,tgav,rcp26,C,Simulated,global,0.711727965,13.9123,15.5035,14.95825,15.2086,1,CMIP5 -2282,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.090464126,-9.5575,-6.9675,-8.39145,-8.5204,1,CMIP5 -2282,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.808442076,18.8263,20.5759,20.02425,20.3474,1,CMIP5 -2283,tas,temperature,tgav,rcp26,C,Simulated,global,0.598977938,14.1382,15.5044,15.00725,15.1932,1,CMIP5 -2283,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.305207515,-9.6742,-6.9376,-8.34655,-8.3872,1,CMIP5 -2283,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.769006203,18.9499,20.6648,20.0723,20.33725,1,CMIP5 -2284,tas,temperature,tgav,rcp26,C,Simulated,global,0.780297539,13.8075,15.5733,14.94345,15.1965,1,CMIP5 -2284,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.140158137,-9.4888,-7.041,-8.55785,-8.8508,1,CMIP5 -2284,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.917047627,18.7141,20.806,20.04115,20.32225,1,CMIP5 -2285,tas,temperature,tgav,rcp26,C,Simulated,global,0.771022475,13.7635,15.4898,14.89615,15.16565,1,CMIP5 -2285,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.232828918,-9.6746,-6.8886,-8.4467,-8.6118,1,CMIP5 -2285,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.919137041,18.6063,20.6334,19.959,20.29815,1,CMIP5 -2286,tas,temperature,tgav,rcp26,C,Simulated,global,0.816935132,13.7344,15.5928,14.925925,15.18825,1,CMIP5 -2286,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.326196653,-9.7833,-6.7616,-8.52205,-8.77165,1,CMIP5 -2286,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.955856434,18.6181,20.7801,20.01095,20.3228,1,CMIP5 -2287,tas,temperature,tgav,rcp26,C,Simulated,global,0.755603088,13.873,15.632,14.9468,15.1411,1,CMIP5 -2287,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.152698391,-9.5059,-7.0486,-8.4825,-8.68775,1,CMIP5 -2287,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.909027412,18.7352,20.8416,20.028475,20.26855,1,CMIP5 -2288,tas,temperature,tgav,rcp26,C,Simulated,global,0.653657354,13.9274,15.3943,14.887125,15.1134,1,CMIP5 -2288,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.646615048,-10.0051,-6.6353,-8.531775,-8.74335,1,CMIP5 -2288,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.866675735,18.7178,20.6974,19.963625,20.21965,1,CMIP5 -2289,tas,temperature,tgav,rcp26,C,Simulated,global,0.654561952,14.0118,15.5306,14.950975,15.13075,1,CMIP5 -2289,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.230447546,-9.5701,-6.9955,-8.411525,-8.54025,1,CMIP5 -2289,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.814854159,18.8433,20.7154,20.0182,20.25705,1,CMIP5 -2290,tas,temperature,tgav,rcp26,C,Simulated,global,0.58269089,14.1876,15.5025,15.0301,15.21515,1,CMIP5 -2290,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.290674354,-9.5155,-6.888,-8.348075,-8.4944,1,CMIP5 -2290,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.747625744,19.0276,20.726,20.1003,20.3238,1,CMIP5 -2291,tas,temperature,tgav,rcp26,C,Simulated,global,0.676078557,13.9775,15.5777,14.920075,15.06255,1,CMIP5 -2291,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.019813517,-9.5177,-7.2496,-8.396425,-8.4092,1,CMIP5 -2291,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.806726341,18.8253,20.6951,19.978725,20.19725,1,CMIP5 -2292,tas,temperature,tgav,rcp26,C,Simulated,global,0.656851492,13.9434,15.4623,14.862425,15.022,1,CMIP5 -2292,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.93398354,-9.7224,-7.5802,-8.528,-8.4047,1,CMIP5 -2292,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.770916844,18.8184,20.521,19.9381,20.2065,1,CMIP5 -2293,tas,temperature,tgav,rcp26,C,Simulated,global,0.647237104,13.9734,15.4583,14.907175,15.0985,1,CMIP5 -2293,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.06859462,-9.8699,-7.4112,-8.658675,-8.6768,1,CMIP5 -2293,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.765625075,18.8962,20.591,20.020125,20.29665,1,CMIP5 -2294,tas,temperature,tgav,rcp26,C,Simulated,global,0.6370514,13.9786,15.4395,14.894,15.07895,1,CMIP5 -2294,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.250808462,-9.8224,-7.3297,-8.676175,-8.7763,1,CMIP5 -2294,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.815294415,18.829,20.6791,20.006125,20.2582,1,CMIP5 -2295,tas,temperature,tgav,rcp26,C,Simulated,global,0.717043002,13.9076,15.5272,14.9498,15.1822,1,CMIP5 -2295,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.036618301,-9.6273,-7.394,-8.594025,-8.6774,1,CMIP5 -2295,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.867096229,18.7839,20.7046,20.05765,20.37105,1,CMIP5 -2296,tas,temperature,tgav,rcp26,C,Simulated,global,0.628683264,13.97,15.4381,14.8654,15.02675,1,CMIP5 -2296,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.255752716,-10.0953,-7.3339,-8.646525,-8.57845,1,CMIP5 -2296,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.786912487,18.8208,20.5925,19.965275,20.2239,1,CMIP5 -2297,tas,temperature,tgav,rcp26,C,Simulated,global,0.615213401,13.9454,15.3138,14.815475,15.00135,1,CMIP5 -2297,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.337500762,-9.8753,-7.2534,-8.743475,-8.9226,1,CMIP5 -2297,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.796671088,18.8055,20.5722,19.924075,20.1593,1,CMIP5 -2298,tas,temperature,tgav,rcp26,C,Simulated,global,0.620025899,13.9506,15.3089,14.830525,15.0313,1,CMIP5 -2298,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.323813165,-9.9979,-7.2892,-8.67145,-8.69935,1,CMIP5 -2298,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.81090048,18.7751,20.5074,19.926975,20.2127,1,CMIP5 -2299,tas,temperature,tgav,rcp26,C,Simulated,global,0.63346725,14.0216,15.472,14.94115,15.1355,1,CMIP5 -2299,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.232107617,-9.8992,-7.2672,-8.6064,-8.6296,1,CMIP5 -2299,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.795875826,18.8804,20.6582,20.04895,20.3286,1,CMIP5 -2300,tas,temperature,tgav,rcp26,C,Simulated,global,0.865430334,13.8652,15.5225,14.83796667,15.1262,1,CMIP5 -2300,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.99559394,-9.9823,-7.9987,-9.040633333,-9.1409,1,CMIP5 -2300,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,1.054300571,18.7131,20.6719,19.91783333,20.3685,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp45/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp45/ensemble_mean_model.csv deleted file mode 100644 index 098eb3788..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp45/ensemble_mean_model.csv +++ /dev/null @@ -1,5572 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.9269 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",15.0701 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",15.168 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",15.1318 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",15.0487 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",15.0641 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",15.0067 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.9724000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",15.1596 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",15.092 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",15.0893 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",15.2169 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",15.2417 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",15.0737 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",15.2341 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",15.3302 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",15.382 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",15.3619 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",15.2833 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",15.4215 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",15.5628 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",15.4605 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",15.4405 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",15.5152 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",15.4992 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",15.5879 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",15.5794 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",15.5281 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",15.6354 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",15.5993 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",15.6623 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",15.6522000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",15.7215 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",15.8038 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",15.8899 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",15.8237 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",15.8542 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",15.8492 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",15.7928 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",15.6604 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",15.8135 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",15.9641 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",15.7692 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",15.8013 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",15.884 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",15.9195 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",15.9205 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",15.8524 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",15.9584 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",16.0799 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",16.0887 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",16.0466 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",16.0091 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",16.0391 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",15.937 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",16.0576 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",16.0756 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",16.0564 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",16.003 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",16.0928 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",16.1801 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",16.1362 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",16.1696 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",16.1295 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",16.1061 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",16.0854 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",16.0749 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",16.0697 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",16.0557 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",16.2638 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",16.3197 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",16.1534 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",16.2204 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",16.2601 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",16.2985 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",16.3945000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",16.4619 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",16.3367 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",16.3021 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",16.4767000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",16.4419 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",16.2743 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",16.3551 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",16.3096 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",16.4094 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",16.4431 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",16.1944 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",16.2412 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",16.324 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",16.2105 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",16.1432 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",16.2302 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",16.1839000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",16.221 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",16.2922 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",16.3494 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",16.4057 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2103,"Simulated","C","global",16.4344 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2104,"Simulated","C","global",16.4125 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2105,"Simulated","C","global",16.4465 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2106,"Simulated","C","global",16.4791 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2107,"Simulated","C","global",16.4919 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2108,"Simulated","C","global",16.5761 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2109,"Simulated","C","global",16.4141 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2110,"Simulated","C","global",16.3549 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2111,"Simulated","C","global",16.453 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2112,"Simulated","C","global",16.4024 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2113,"Simulated","C","global",16.4541 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2114,"Simulated","C","global",16.3603 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2115,"Simulated","C","global",16.4627 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2116,"Simulated","C","global",16.3919 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2117,"Simulated","C","global",16.3948 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2118,"Simulated","C","global",16.3703 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2119,"Simulated","C","global",16.3834 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2120,"Simulated","C","global",16.4788 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2121,"Simulated","C","global",16.4458 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2122,"Simulated","C","global",16.433 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2123,"Simulated","C","global",16.3522 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2124,"Simulated","C","global",16.3557 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2125,"Simulated","C","global",16.387 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2126,"Simulated","C","global",16.3885 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2127,"Simulated","C","global",16.501 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2128,"Simulated","C","global",16.5455 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2129,"Simulated","C","global",16.5702 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2130,"Simulated","C","global",16.5573 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2131,"Simulated","C","global",16.6686 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2132,"Simulated","C","global",16.5755 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2133,"Simulated","C","global",16.551 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2134,"Simulated","C","global",16.5631 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2135,"Simulated","C","global",16.6194 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2136,"Simulated","C","global",16.6542 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2137,"Simulated","C","global",16.4538 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2138,"Simulated","C","global",16.5443 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2139,"Simulated","C","global",16.4381 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2140,"Simulated","C","global",16.4975 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2141,"Simulated","C","global",16.5219 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2142,"Simulated","C","global",16.6043 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2143,"Simulated","C","global",16.6517 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2144,"Simulated","C","global",16.661 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2145,"Simulated","C","global",16.6146 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2146,"Simulated","C","global",16.5204 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2147,"Simulated","C","global",16.4912 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2148,"Simulated","C","global",16.6025 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2149,"Simulated","C","global",16.6167 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2150,"Simulated","C","global",16.5856 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2151,"Simulated","C","global",16.5906 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2152,"Simulated","C","global",16.6432 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2153,"Simulated","C","global",16.6904 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2154,"Simulated","C","global",16.662 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2155,"Simulated","C","global",16.529 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2156,"Simulated","C","global",16.5857 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2157,"Simulated","C","global",16.5126 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2158,"Simulated","C","global",16.5837 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2159,"Simulated","C","global",16.5104 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2160,"Simulated","C","global",16.4713 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2161,"Simulated","C","global",16.604 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2162,"Simulated","C","global",16.612 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2163,"Simulated","C","global",16.6845 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2164,"Simulated","C","global",16.7111 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2165,"Simulated","C","global",16.572 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2166,"Simulated","C","global",16.5328 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2167,"Simulated","C","global",16.5998 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2168,"Simulated","C","global",16.5197 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2169,"Simulated","C","global",16.5966 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2170,"Simulated","C","global",16.5934 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2171,"Simulated","C","global",16.6376 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2172,"Simulated","C","global",16.5726 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2173,"Simulated","C","global",16.5509 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2174,"Simulated","C","global",16.5267 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2175,"Simulated","C","global",16.6587 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2176,"Simulated","C","global",16.6972 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2177,"Simulated","C","global",16.6042 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2178,"Simulated","C","global",16.6039 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2179,"Simulated","C","global",16.6291000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2180,"Simulated","C","global",16.6355 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2181,"Simulated","C","global",16.5462 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2182,"Simulated","C","global",16.6553 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2183,"Simulated","C","global",16.6221 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2184,"Simulated","C","global",16.6004 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2185,"Simulated","C","global",16.6582 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2186,"Simulated","C","global",16.643 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2187,"Simulated","C","global",16.7223 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2188,"Simulated","C","global",16.576 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2189,"Simulated","C","global",16.5414 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2190,"Simulated","C","global",16.6638 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2191,"Simulated","C","global",16.5931 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2192,"Simulated","C","global",16.6921 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2193,"Simulated","C","global",16.5909 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2194,"Simulated","C","global",16.63 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2195,"Simulated","C","global",16.643 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2196,"Simulated","C","global",16.8538 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2197,"Simulated","C","global",16.7592 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2198,"Simulated","C","global",16.7353 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2199,"Simulated","C","global",16.763 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2200,"Simulated","C","global",16.7398 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2201,"Simulated","C","global",16.7543 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2202,"Simulated","C","global",16.7547 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2203,"Simulated","C","global",16.5722 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2204,"Simulated","C","global",16.7289 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2205,"Simulated","C","global",16.7319 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2206,"Simulated","C","global",16.6799 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2207,"Simulated","C","global",16.7381 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2208,"Simulated","C","global",16.6645 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2209,"Simulated","C","global",16.6465 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2210,"Simulated","C","global",16.6636 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2211,"Simulated","C","global",16.6459 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2212,"Simulated","C","global",16.6598 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2213,"Simulated","C","global",16.8028 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2214,"Simulated","C","global",16.6976 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2215,"Simulated","C","global",16.5637 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2216,"Simulated","C","global",16.6329 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2217,"Simulated","C","global",16.739 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2218,"Simulated","C","global",16.6769 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2219,"Simulated","C","global",16.8165 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2220,"Simulated","C","global",16.777 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2221,"Simulated","C","global",16.7289 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2222,"Simulated","C","global",16.7142 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2223,"Simulated","C","global",16.8304 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2224,"Simulated","C","global",16.8156 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2225,"Simulated","C","global",16.7835 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2226,"Simulated","C","global",16.7948 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2227,"Simulated","C","global",16.7359 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2228,"Simulated","C","global",16.7526 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2229,"Simulated","C","global",16.7586 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2230,"Simulated","C","global",16.7286 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2231,"Simulated","C","global",16.7581 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2232,"Simulated","C","global",16.6281 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2233,"Simulated","C","global",16.7092 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2234,"Simulated","C","global",16.6671 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2235,"Simulated","C","global",16.734 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2236,"Simulated","C","global",16.8126 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2237,"Simulated","C","global",16.7629 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2238,"Simulated","C","global",16.7155 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2239,"Simulated","C","global",16.7052 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2240,"Simulated","C","global",16.6603 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2241,"Simulated","C","global",16.6711 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2242,"Simulated","C","global",16.6869 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2243,"Simulated","C","global",16.6651 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2244,"Simulated","C","global",16.7396 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2245,"Simulated","C","global",16.6884 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2246,"Simulated","C","global",16.7792 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2247,"Simulated","C","global",16.825 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2248,"Simulated","C","global",16.7947 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2249,"Simulated","C","global",16.8805 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2250,"Simulated","C","global",16.8462 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2251,"Simulated","C","global",16.7713 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2252,"Simulated","C","global",16.8548 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2253,"Simulated","C","global",16.7305 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2254,"Simulated","C","global",16.5333 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2255,"Simulated","C","global",16.6262 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2256,"Simulated","C","global",16.7585 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2257,"Simulated","C","global",16.8848 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2258,"Simulated","C","global",16.8929 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2259,"Simulated","C","global",16.8193 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2260,"Simulated","C","global",16.9693 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2261,"Simulated","C","global",16.9533 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2262,"Simulated","C","global",16.9939 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2263,"Simulated","C","global",16.9134 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2264,"Simulated","C","global",16.9394 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2265,"Simulated","C","global",16.8873 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2266,"Simulated","C","global",16.9662 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2267,"Simulated","C","global",16.8612 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2268,"Simulated","C","global",16.9379 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2269,"Simulated","C","global",16.8796 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2270,"Simulated","C","global",16.8491 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2271,"Simulated","C","global",16.8399 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2272,"Simulated","C","global",16.8226 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2273,"Simulated","C","global",16.8279 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2274,"Simulated","C","global",16.885 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2275,"Simulated","C","global",17.0117 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2276,"Simulated","C","global",16.8126 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2277,"Simulated","C","global",16.8894 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2278,"Simulated","C","global",16.9155 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2279,"Simulated","C","global",16.8984 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2280,"Simulated","C","global",16.9003 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2281,"Simulated","C","global",16.8845 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2282,"Simulated","C","global",16.9375 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2283,"Simulated","C","global",16.8907 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2284,"Simulated","C","global",16.9155 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2285,"Simulated","C","global",16.8342 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2286,"Simulated","C","global",16.8532 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2287,"Simulated","C","global",17.0046 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2288,"Simulated","C","global",16.8235 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2289,"Simulated","C","global",16.9324 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2290,"Simulated","C","global",16.8923 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2291,"Simulated","C","global",16.8782 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2292,"Simulated","C","global",16.9556 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2293,"Simulated","C","global",16.8067 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2294,"Simulated","C","global",16.8458 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2295,"Simulated","C","global",16.8615 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2296,"Simulated","C","global",16.8248 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2297,"Simulated","C","global",16.8408 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2298,"Simulated","C","global",16.8247 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2299,"Simulated","C","global",16.834 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2300,"Simulated","C","global",16.9668 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-10.6635 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-9.98989999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-9.839 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-10.235 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-10.0764 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-10.0924 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-10.3758 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-10.8383 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-10.3548 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-10.2559 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-10.6414 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-10.2086 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-9.86019999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-10.6754 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-10.2221 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-9.74169999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-9.56919999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-9.42949999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-9.6551 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-9.29999999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-9.22519999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-9.4982 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-9.44450000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-9.18939999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-9.15299999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-8.88549999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-9.15519999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-9.01689999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-8.68309999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-8.93469999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-8.84029999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-9.0455 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-8.85339999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-8.96269999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-8.63299999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-9.04640000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-9.0643 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-8.75129999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-9.13689999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-9.62129999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-9.04839999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-8.99109999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-9.09839999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-9.40599999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-8.99199999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-8.93889999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-8.9812 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-9.28859999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-9.26239999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-8.55579999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-8.50919999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-8.80809999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-9.14439999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-8.60849999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-8.78109999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-8.7681 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-8.9239 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-8.85749999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-8.74439999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-8.52359999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-8.40019999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-8.70959999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-8.32809999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-8.11249999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-8.44889999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-8.51229999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-8.55029999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-8.37909999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-8.8349 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-8.48999999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-7.75849999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-8.49269999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-8.3426 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-8.18619999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-8.27429999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-8.00379999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-7.73689999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-7.96749999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-8.30219999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-7.86339999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-7.82919999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-8.375 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-7.80879999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-7.70839999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-7.71169999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-7.80449999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-8.61529999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-8.05629999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-8.14869999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-8.10659999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-8.52749999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-8.1773 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-7.97359999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-8.43579999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-8.29049999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-8.05949999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-8.15519999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2103,"Simulated","C","HL",-8.20999999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2104,"Simulated","C","HL",-8.00169999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2105,"Simulated","C","HL",-7.78229999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2106,"Simulated","C","HL",-7.6001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2107,"Simulated","C","HL",-7.78289999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2108,"Simulated","C","HL",-7.40049999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2109,"Simulated","C","HL",-7.90119999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2110,"Simulated","C","HL",-7.96469999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2111,"Simulated","C","HL",-7.7124 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2112,"Simulated","C","HL",-7.67899999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2113,"Simulated","C","HL",-7.69289999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2114,"Simulated","C","HL",-8.2817 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2115,"Simulated","C","HL",-8.25709999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2116,"Simulated","C","HL",-8.14639999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2117,"Simulated","C","HL",-7.83159999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2118,"Simulated","C","HL",-8.02670000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2119,"Simulated","C","HL",-8.02099999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2120,"Simulated","C","HL",-7.68049999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2121,"Simulated","C","HL",-7.65999999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2122,"Simulated","C","HL",-7.96609999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2123,"Simulated","C","HL",-7.90170000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2124,"Simulated","C","HL",-8.13319999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2125,"Simulated","C","HL",-8.00369999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2126,"Simulated","C","HL",-7.93859999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2127,"Simulated","C","HL",-7.52839999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2128,"Simulated","C","HL",-7.6848 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2129,"Simulated","C","HL",-7.76189999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2130,"Simulated","C","HL",-7.62609999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2131,"Simulated","C","HL",-7.7747 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2132,"Simulated","C","HL",-7.5129 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2133,"Simulated","C","HL",-8.0763 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2134,"Simulated","C","HL",-7.96679999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2135,"Simulated","C","HL",-7.7285 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2136,"Simulated","C","HL",-7.44569999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2137,"Simulated","C","HL",-7.69969999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2138,"Simulated","C","HL",-7.77979999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2139,"Simulated","C","HL",-7.62289999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2140,"Simulated","C","HL",-7.55029999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2141,"Simulated","C","HL",-7.48289999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2142,"Simulated","C","HL",-7.30549999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2143,"Simulated","C","HL",-7.13529999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2144,"Simulated","C","HL",-7.53589999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2145,"Simulated","C","HL",-7.2901 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2146,"Simulated","C","HL",-7.84099999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2147,"Simulated","C","HL",-8.12699999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2148,"Simulated","C","HL",-7.54839999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2149,"Simulated","C","HL",-7.33499999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2150,"Simulated","C","HL",-7.92419999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2151,"Simulated","C","HL",-7.56169999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2152,"Simulated","C","HL",-7.58509999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2153,"Simulated","C","HL",-7.46289999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2154,"Simulated","C","HL",-7.51319999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2155,"Simulated","C","HL",-7.80149999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2156,"Simulated","C","HL",-7.58569999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2157,"Simulated","C","HL",-7.82919999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2158,"Simulated","C","HL",-7.6499 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2159,"Simulated","C","HL",-7.90879999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2160,"Simulated","C","HL",-7.8492 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2161,"Simulated","C","HL",-7.54849999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2162,"Simulated","C","HL",-7.24679999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2163,"Simulated","C","HL",-7.50979999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2164,"Simulated","C","HL",-7.15969999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2165,"Simulated","C","HL",-7.38919999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2166,"Simulated","C","HL",-7.51669999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2167,"Simulated","C","HL",-7.53559999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2168,"Simulated","C","HL",-7.61679999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2169,"Simulated","C","HL",-7.51089999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2170,"Simulated","C","HL",-7.47429999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2171,"Simulated","C","HL",-7.29339999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2172,"Simulated","C","HL",-7.3252 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2173,"Simulated","C","HL",-7.51959999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2174,"Simulated","C","HL",-7.65299999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2175,"Simulated","C","HL",-7.00909999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2176,"Simulated","C","HL",-7.13669999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2177,"Simulated","C","HL",-7.3399 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2178,"Simulated","C","HL",-7.43989999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2179,"Simulated","C","HL",-7.30189999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2180,"Simulated","C","HL",-7.19709999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2181,"Simulated","C","HL",-7.5222 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2182,"Simulated","C","HL",-7.33879999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2183,"Simulated","C","HL",-7.36529999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2184,"Simulated","C","HL",-7.5917 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2185,"Simulated","C","HL",-7.34049999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2186,"Simulated","C","HL",-7.642 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2187,"Simulated","C","HL",-7.33959999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2188,"Simulated","C","HL",-7.45439999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2189,"Simulated","C","HL",-7.62989999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2190,"Simulated","C","HL",-7.54559999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2191,"Simulated","C","HL",-7.60949999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2192,"Simulated","C","HL",-7.16429999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2193,"Simulated","C","HL",-7.24349999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2194,"Simulated","C","HL",-7.26119999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2195,"Simulated","C","HL",-7.07189999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2196,"Simulated","C","HL",-6.74179999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2197,"Simulated","C","HL",-7.24179999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2198,"Simulated","C","HL",-7.25349999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2199,"Simulated","C","HL",-7.28699999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2200,"Simulated","C","HL",-7.3605 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2201,"Simulated","C","HL",-6.99649999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2202,"Simulated","C","HL",-6.8005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2203,"Simulated","C","HL",-7.39799999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2204,"Simulated","C","HL",-6.88319999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2205,"Simulated","C","HL",-6.95119999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2206,"Simulated","C","HL",-7.48509999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2207,"Simulated","C","HL",-7.23099999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2208,"Simulated","C","HL",-7.6651 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2209,"Simulated","C","HL",-7.13689999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2210,"Simulated","C","HL",-7.3725 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2211,"Simulated","C","HL",-7.19109999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2212,"Simulated","C","HL",-7.31889999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2213,"Simulated","C","HL",-7.04629999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2214,"Simulated","C","HL",-7.28499999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2215,"Simulated","C","HL",-7.6191 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2216,"Simulated","C","HL",-7.47609999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2217,"Simulated","C","HL",-7.37729999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2218,"Simulated","C","HL",-7.14389999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2219,"Simulated","C","HL",-6.93199999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2220,"Simulated","C","HL",-6.85129999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2221,"Simulated","C","HL",-7.1746 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2222,"Simulated","C","HL",-7.39609999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2223,"Simulated","C","HL",-6.98809999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2224,"Simulated","C","HL",-7.0675 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2225,"Simulated","C","HL",-6.5745 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2226,"Simulated","C","HL",-6.89689999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2227,"Simulated","C","HL",-7.12059999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2228,"Simulated","C","HL",-7.52819999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2229,"Simulated","C","HL",-7.43899999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2230,"Simulated","C","HL",-7.57059999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2231,"Simulated","C","HL",-7.1694 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2232,"Simulated","C","HL",-7.42739999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2233,"Simulated","C","HL",-7.6574 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2234,"Simulated","C","HL",-7.69849999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2235,"Simulated","C","HL",-7.55410000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2236,"Simulated","C","HL",-7.3811 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2237,"Simulated","C","HL",-7.32059999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2238,"Simulated","C","HL",-7.20859999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2239,"Simulated","C","HL",-6.82319999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2240,"Simulated","C","HL",-7.60519999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2241,"Simulated","C","HL",-7.68339999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2242,"Simulated","C","HL",-7.65299999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2243,"Simulated","C","HL",-7.47749999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2244,"Simulated","C","HL",-7.62099999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2245,"Simulated","C","HL",-7.30449999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2246,"Simulated","C","HL",-6.91949999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2247,"Simulated","C","HL",-7.12489999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2248,"Simulated","C","HL",-7.08499999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2249,"Simulated","C","HL",-7.16699999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2250,"Simulated","C","HL",-7.06919999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2251,"Simulated","C","HL",-7.017 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2252,"Simulated","C","HL",-6.9006 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2253,"Simulated","C","HL",-7.32909999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2254,"Simulated","C","HL",-7.9237 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2255,"Simulated","C","HL",-7.38159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2256,"Simulated","C","HL",-6.9212 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2257,"Simulated","C","HL",-6.5933 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2258,"Simulated","C","HL",-6.44129999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2259,"Simulated","C","HL",-7.03719999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2260,"Simulated","C","HL",-6.50569999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2261,"Simulated","C","HL",-6.70099999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2262,"Simulated","C","HL",-6.30669999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2263,"Simulated","C","HL",-6.61629999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2264,"Simulated","C","HL",-6.6551 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2265,"Simulated","C","HL",-6.63389999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2266,"Simulated","C","HL",-6.404 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2267,"Simulated","C","HL",-6.66109999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2268,"Simulated","C","HL",-6.5831 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2269,"Simulated","C","HL",-6.85079999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2270,"Simulated","C","HL",-7.20139999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2271,"Simulated","C","HL",-7.36649999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2272,"Simulated","C","HL",-7.2047 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2273,"Simulated","C","HL",-7.30369999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2274,"Simulated","C","HL",-7.1918 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2275,"Simulated","C","HL",-6.75509999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2276,"Simulated","C","HL",-7.52339999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2277,"Simulated","C","HL",-6.85059999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2278,"Simulated","C","HL",-6.76989999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2279,"Simulated","C","HL",-6.94880000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2280,"Simulated","C","HL",-6.7131 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2281,"Simulated","C","HL",-6.5138 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2282,"Simulated","C","HL",-6.46969999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2283,"Simulated","C","HL",-6.53899999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2284,"Simulated","C","HL",-6.66149999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2285,"Simulated","C","HL",-7.10039999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2286,"Simulated","C","HL",-6.8082 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2287,"Simulated","C","HL",-6.56019999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2288,"Simulated","C","HL",-7.14279999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2289,"Simulated","C","HL",-6.62689999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2290,"Simulated","C","HL",-6.77729999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2291,"Simulated","C","HL",-6.66579999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2292,"Simulated","C","HL",-7.0686 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2293,"Simulated","C","HL",-7.25729999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2294,"Simulated","C","HL",-6.89049999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2295,"Simulated","C","HL",-6.94919999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2296,"Simulated","C","HL",-7.01939999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2297,"Simulated","C","HL",-6.86499999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2298,"Simulated","C","HL",-7.25629999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2299,"Simulated","C","HL",-7.06139999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2300,"Simulated","C","HL",-6.84839999999997 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",20.2699 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",20.3024 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",20.3892 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",20.4281 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",20.2946 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",20.3165 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",20.3063 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",20.3613 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",20.4867 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",20.3843 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",20.4616 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",20.5254 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",20.4827 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",20.4498 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",20.5491 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",20.565 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",20.5916 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",20.5381 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",20.4902 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",20.5831 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",20.7383 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",20.6715 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",20.6362 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",20.6732 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",20.6463 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",20.6976 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",20.7437 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",20.6528 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",20.7129 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",20.7217 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",20.7782 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",20.8088 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",20.8525 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",20.9748 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",21.01 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",21.0163 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",21.0569 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",20.9855 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",20.9978 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",20.9389 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",21.0044 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",21.1745 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",20.9612 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",21.0642 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",21.0778 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",21.1096 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",21.1197 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",21.1016 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",21.2242 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",21.2236 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",21.2244 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",21.236 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",21.2609 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",21.1853 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",21.0979 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",21.2409 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",21.2952 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",21.2582 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",21.17 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",21.2324 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",21.3122 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",21.3238 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",21.2845 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",21.191 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",21.2329 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",21.2212 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",21.2163 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",21.1744 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",21.2526 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",21.4321 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",21.347 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",21.2993 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",21.3489 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",21.3642 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",21.429 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",21.4886 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",21.5143 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",21.4111 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",21.4392 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",21.5586 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",21.5095 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",21.4208 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",21.4003 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",21.3243000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",21.4456 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",21.5058 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",21.3744 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",21.3142 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",21.4337 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",21.2876 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",21.2942 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",21.3263 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",21.2277 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",21.3691 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",21.4249 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",21.4458 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",21.5338 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2103,"Simulated","C","LL",21.5799 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2104,"Simulated","C","LL",21.5099 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2105,"Simulated","C","LL",21.5052 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2106,"Simulated","C","LL",21.5066 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2107,"Simulated","C","LL",21.5602 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2108,"Simulated","C","LL",21.5821 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2109,"Simulated","C","LL",21.4909 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2110,"Simulated","C","LL",21.4326 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2111,"Simulated","C","LL",21.4985 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2112,"Simulated","C","LL",21.4304 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2113,"Simulated","C","LL",21.4958 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2114,"Simulated","C","LL",21.5052 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2115,"Simulated","C","LL",21.624 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2116,"Simulated","C","LL",21.5152 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2117,"Simulated","C","LL",21.453 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2118,"Simulated","C","LL",21.4641 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2119,"Simulated","C","LL",21.4788 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2120,"Simulated","C","LL",21.523 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2121,"Simulated","C","LL",21.4788 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2122,"Simulated","C","LL",21.5272000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2123,"Simulated","C","LL",21.4161 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2124,"Simulated","C","LL",21.4687 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2125,"Simulated","C","LL",21.4795 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2126,"Simulated","C","LL",21.4677 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2127,"Simulated","C","LL",21.518 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2128,"Simulated","C","LL",21.6045 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2129,"Simulated","C","LL",21.6505 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2130,"Simulated","C","LL",21.6065 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2131,"Simulated","C","LL",21.772 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2132,"Simulated","C","LL",21.6049 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2133,"Simulated","C","LL",21.6929 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2134,"Simulated","C","LL",21.6846 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2135,"Simulated","C","LL",21.703 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2136,"Simulated","C","LL",21.686 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2137,"Simulated","C","LL",21.4968 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2138,"Simulated","C","LL",21.6229 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2139,"Simulated","C","LL",21.4618 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2140,"Simulated","C","LL",21.5185 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2141,"Simulated","C","LL",21.5339 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2142,"Simulated","C","LL",21.5964 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2143,"Simulated","C","LL",21.6182 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2144,"Simulated","C","LL",21.713 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2145,"Simulated","C","LL",21.6056 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2146,"Simulated","C","LL",21.6068 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2147,"Simulated","C","LL",21.6312 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2148,"Simulated","C","LL",21.6449 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2149,"Simulated","C","LL",21.6176 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2150,"Simulated","C","LL",21.703 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2151,"Simulated","C","LL",21.6333 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2152,"Simulated","C","LL",21.7018 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2153,"Simulated","C","LL",21.7333 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2154,"Simulated","C","LL",21.7096 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2155,"Simulated","C","LL",21.6089 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2156,"Simulated","C","LL",21.6324 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2157,"Simulated","C","LL",21.5949 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2158,"Simulated","C","LL",21.6434 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2159,"Simulated","C","LL",21.6088 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2160,"Simulated","C","LL",21.5492 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2161,"Simulated","C","LL",21.6468 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2162,"Simulated","C","LL",21.5934 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2163,"Simulated","C","LL",21.736 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2164,"Simulated","C","LL",21.6951 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2165,"Simulated","C","LL",21.5748 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2166,"Simulated","C","LL",21.5541 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2167,"Simulated","C","LL",21.6391 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2168,"Simulated","C","LL",21.5591 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2169,"Simulated","C","LL",21.63 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2170,"Simulated","C","LL",21.6184 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2171,"Simulated","C","LL",21.6341 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2172,"Simulated","C","LL",21.5622 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2173,"Simulated","C","LL",21.5765 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2174,"Simulated","C","LL",21.5751 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2175,"Simulated","C","LL",21.6003 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2176,"Simulated","C","LL",21.6735 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2177,"Simulated","C","LL",21.6035 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2178,"Simulated","C","LL",21.6239 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2179,"Simulated","C","LL",21.6256 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2180,"Simulated","C","LL",21.6115 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2181,"Simulated","C","LL",21.5714 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2182,"Simulated","C","LL",21.665 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2183,"Simulated","C","LL",21.6305 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2184,"Simulated","C","LL",21.6514 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2185,"Simulated","C","LL",21.6688 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2186,"Simulated","C","LL",21.7134 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2187,"Simulated","C","LL",21.7461 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2188,"Simulated","C","LL",21.5933 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2189,"Simulated","C","LL",21.5881 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2190,"Simulated","C","LL",21.7185 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2191,"Simulated","C","LL",21.6464 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2192,"Simulated","C","LL",21.6731 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2193,"Simulated","C","LL",21.5672 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2194,"Simulated","C","LL",21.6182 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2195,"Simulated","C","LL",21.5944 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2196,"Simulated","C","LL",21.7803 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2197,"Simulated","C","LL",21.7703 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2198,"Simulated","C","LL",21.7439 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2199,"Simulated","C","LL",21.7844 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2200,"Simulated","C","LL",21.7716 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2201,"Simulated","C","LL",21.7132 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2202,"Simulated","C","LL",21.6727 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2203,"Simulated","C","LL",21.5769 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2204,"Simulated","C","LL",21.6589 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2205,"Simulated","C","LL",21.6767 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2206,"Simulated","C","LL",21.7253 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2207,"Simulated","C","LL",21.7426 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2208,"Simulated","C","LL",21.7443 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2209,"Simulated","C","LL",21.6122 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2210,"Simulated","C","LL",21.682 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2211,"Simulated","C","LL",21.6228 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2212,"Simulated","C","LL",21.6662 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2213,"Simulated","C","LL",21.7822 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2214,"Simulated","C","LL",21.7049 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2215,"Simulated","C","LL",21.6129 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2216,"Simulated","C","LL",21.6665 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2217,"Simulated","C","LL",21.7742 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2218,"Simulated","C","LL",21.6504 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2219,"Simulated","C","LL",21.7749 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2220,"Simulated","C","LL",21.7104 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2221,"Simulated","C","LL",21.7197 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2222,"Simulated","C","LL",21.7481 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2223,"Simulated","C","LL",21.8035 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2224,"Simulated","C","LL",21.8021 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2225,"Simulated","C","LL",21.6604 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2226,"Simulated","C","LL",21.7414 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2227,"Simulated","C","LL",21.7169 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2228,"Simulated","C","LL",21.8222 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2229,"Simulated","C","LL",21.8108 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2230,"Simulated","C","LL",21.8021 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2231,"Simulated","C","LL",21.7539 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2232,"Simulated","C","LL",21.6506 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2233,"Simulated","C","LL",21.7967 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2234,"Simulated","C","LL",21.7544 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2235,"Simulated","C","LL",21.8051 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2236,"Simulated","C","LL",21.8639 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2237,"Simulated","C","LL",21.7913 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2238,"Simulated","C","LL",21.7106 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2239,"Simulated","C","LL",21.6177 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2240,"Simulated","C","LL",21.7266 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2241,"Simulated","C","LL",21.756 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2242,"Simulated","C","LL",21.7688 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2243,"Simulated","C","LL",21.7058 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2244,"Simulated","C","LL",21.8258 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2245,"Simulated","C","LL",21.6978 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2246,"Simulated","C","LL",21.7273 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2247,"Simulated","C","LL",21.8255 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2248,"Simulated","C","LL",21.7806 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2249,"Simulated","C","LL",21.9014 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2250,"Simulated","C","LL",21.8394 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2251,"Simulated","C","LL",21.738 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2252,"Simulated","C","LL",21.8146 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2253,"Simulated","C","LL",21.7538 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2254,"Simulated","C","LL",21.6397 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2255,"Simulated","C","LL",21.6387 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2256,"Simulated","C","LL",21.7026 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2257,"Simulated","C","LL",21.7868 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2258,"Simulated","C","LL",21.7648 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2259,"Simulated","C","LL",21.8003 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2260,"Simulated","C","LL",21.8706 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2261,"Simulated","C","LL",21.8921 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2262,"Simulated","C","LL",21.8588 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2263,"Simulated","C","LL",21.8261 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2264,"Simulated","C","LL",21.8657 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2265,"Simulated","C","LL",21.7983 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2266,"Simulated","C","LL",21.8456 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2267,"Simulated","C","LL",21.7724 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2268,"Simulated","C","LL",21.8488 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2269,"Simulated","C","LL",21.8343 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2270,"Simulated","C","LL",21.8706 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2271,"Simulated","C","LL",21.8939 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2272,"Simulated","C","LL",21.8393 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2273,"Simulated","C","LL",21.8664 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2274,"Simulated","C","LL",21.912 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2275,"Simulated","C","LL",21.974 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2276,"Simulated","C","LL",21.8937 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2277,"Simulated","C","LL",21.8461 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2278,"Simulated","C","LL",21.8608 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2279,"Simulated","C","LL",21.8774 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2280,"Simulated","C","LL",21.8306 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2281,"Simulated","C","LL",21.7698 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2282,"Simulated","C","LL",21.8246 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2283,"Simulated","C","LL",21.7826 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2284,"Simulated","C","LL",21.8381 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2285,"Simulated","C","LL",21.8314 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2286,"Simulated","C","LL",21.7934 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2287,"Simulated","C","LL",21.9246 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2288,"Simulated","C","LL",21.8274 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2289,"Simulated","C","LL",21.8513 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2290,"Simulated","C","LL",21.8343 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2291,"Simulated","C","LL",21.794 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2292,"Simulated","C","LL",21.9716 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2293,"Simulated","C","LL",21.831 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2294,"Simulated","C","LL",21.8017 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2295,"Simulated","C","LL",21.8329 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2296,"Simulated","C","LL",21.8032 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2297,"Simulated","C","LL",21.7903 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2298,"Simulated","C","LL",21.8526 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2299,"Simulated","C","LL",21.8231 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2300,"Simulated","C","LL",21.9391 -"CanESM2","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.93944 -"CanESM2","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",14.89098 -"CanESM2","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",14.86302 -"CanESM2","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",14.89156 -"CanESM2","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",14.97918 -"CanESM2","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",15.00936 -"CanESM2","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",15.03892 -"CanESM2","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.97818 -"CanESM2","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.9994 -"CanESM2","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",15.18584 -"CanESM2","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",15.16552 -"CanESM2","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",15.17696 -"CanESM2","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",15.18702 -"CanESM2","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",15.24776 -"CanESM2","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",15.31286 -"CanESM2","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",15.28318 -"CanESM2","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",15.38684 -"CanESM2","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",15.27946 -"CanESM2","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",15.34738 -"CanESM2","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",15.42186 -"CanESM2","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",15.50928 -"CanESM2","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",15.5378 -"CanESM2","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",15.53852 -"CanESM2","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",15.54698 -"CanESM2","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",15.59436 -"CanESM2","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",15.5784 -"CanESM2","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",15.58972 -"CanESM2","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",15.69188 -"CanESM2","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",15.73856 -"CanESM2","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",15.79086 -"CanESM2","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",15.83526 -"CanESM2","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",15.81422 -"CanESM2","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",15.89074 -"CanESM2","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",15.88344 -"CanESM2","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",15.90594 -"CanESM2","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",16.00966 -"CanESM2","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",16.07944 -"CanESM2","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",16.07874 -"CanESM2","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",16.12096 -"CanESM2","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",16.07096 -"CanESM2","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",16.04994 -"CanESM2","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",16.11304 -"CanESM2","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",16.14768 -"CanESM2","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",16.24868 -"CanESM2","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",16.25682 -"CanESM2","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",16.22284 -"CanESM2","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",16.22996 -"CanESM2","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",16.29158 -"CanESM2","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",16.25532 -"CanESM2","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",16.2449 -"CanESM2","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",16.3299 -"CanESM2","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",16.3091 -"CanESM2","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",16.3589 -"CanESM2","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",16.46236 -"CanESM2","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",16.44556 -"CanESM2","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",16.49214 -"CanESM2","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",16.53822 -"CanESM2","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",16.5144 -"CanESM2","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",16.4581 -"CanESM2","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",16.49096 -"CanESM2","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",16.4904 -"CanESM2","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",16.57148 -"CanESM2","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",16.56934 -"CanESM2","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",16.55704 -"CanESM2","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",16.52098 -"CanESM2","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",16.59862 -"CanESM2","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",16.69002 -"CanESM2","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",16.65284 -"CanESM2","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",16.6493 -"CanESM2","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",16.69394 -"CanESM2","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",16.64916 -"CanESM2","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",16.66626 -"CanESM2","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",16.6845 -"CanESM2","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",16.71986 -"CanESM2","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",16.80276 -"CanESM2","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",16.79556 -"CanESM2","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",16.75654 -"CanESM2","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",16.78926 -"CanESM2","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",16.77182 -"CanESM2","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",16.72756 -"CanESM2","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",16.7437 -"CanESM2","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",16.77712 -"CanESM2","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",16.7535 -"CanESM2","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",16.77806 -"CanESM2","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",16.7998 -"CanESM2","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",16.8432 -"CanESM2","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",16.82824 -"CanESM2","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",16.84612 -"CanESM2","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",16.88612 -"CanESM2","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",16.87558 -"CanESM2","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",16.84548 -"CanESM2","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",16.83326 -"CanESM2","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",16.92272 -"CanESM2","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",16.8521 -"CanESM2","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",16.85088 -"CanESM2","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",16.8635 -"CanESM2","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",16.84485 -"CanESM2","tas","temperature","tgav","rcp45",2103,"Simulated","C","global",16.87855 -"CanESM2","tas","temperature","tgav","rcp45",2104,"Simulated","C","global",16.82625 -"CanESM2","tas","temperature","tgav","rcp45",2105,"Simulated","C","global",16.8481 -"CanESM2","tas","temperature","tgav","rcp45",2106,"Simulated","C","global",16.90415 -"CanESM2","tas","temperature","tgav","rcp45",2107,"Simulated","C","global",16.92965 -"CanESM2","tas","temperature","tgav","rcp45",2108,"Simulated","C","global",16.9799 -"CanESM2","tas","temperature","tgav","rcp45",2109,"Simulated","C","global",17.0022 -"CanESM2","tas","temperature","tgav","rcp45",2110,"Simulated","C","global",17.0578 -"CanESM2","tas","temperature","tgav","rcp45",2111,"Simulated","C","global",16.99565 -"CanESM2","tas","temperature","tgav","rcp45",2112,"Simulated","C","global",16.922 -"CanESM2","tas","temperature","tgav","rcp45",2113,"Simulated","C","global",17.00335 -"CanESM2","tas","temperature","tgav","rcp45",2114,"Simulated","C","global",17.1687 -"CanESM2","tas","temperature","tgav","rcp45",2115,"Simulated","C","global",17.05865 -"CanESM2","tas","temperature","tgav","rcp45",2116,"Simulated","C","global",16.95475 -"CanESM2","tas","temperature","tgav","rcp45",2117,"Simulated","C","global",16.8641 -"CanESM2","tas","temperature","tgav","rcp45",2118,"Simulated","C","global",16.94695 -"CanESM2","tas","temperature","tgav","rcp45",2119,"Simulated","C","global",17.085 -"CanESM2","tas","temperature","tgav","rcp45",2120,"Simulated","C","global",17.028 -"CanESM2","tas","temperature","tgav","rcp45",2121,"Simulated","C","global",16.97125 -"CanESM2","tas","temperature","tgav","rcp45",2122,"Simulated","C","global",17.09325 -"CanESM2","tas","temperature","tgav","rcp45",2123,"Simulated","C","global",17.16215 -"CanESM2","tas","temperature","tgav","rcp45",2124,"Simulated","C","global",16.97855 -"CanESM2","tas","temperature","tgav","rcp45",2125,"Simulated","C","global",16.8736 -"CanESM2","tas","temperature","tgav","rcp45",2126,"Simulated","C","global",17.0117 -"CanESM2","tas","temperature","tgav","rcp45",2127,"Simulated","C","global",17.0042 -"CanESM2","tas","temperature","tgav","rcp45",2128,"Simulated","C","global",17.07965 -"CanESM2","tas","temperature","tgav","rcp45",2129,"Simulated","C","global",17.0583 -"CanESM2","tas","temperature","tgav","rcp45",2130,"Simulated","C","global",17.0525 -"CanESM2","tas","temperature","tgav","rcp45",2131,"Simulated","C","global",17.0843 -"CanESM2","tas","temperature","tgav","rcp45",2132,"Simulated","C","global",17.19365 -"CanESM2","tas","temperature","tgav","rcp45",2133,"Simulated","C","global",17.0663 -"CanESM2","tas","temperature","tgav","rcp45",2134,"Simulated","C","global",17.01415 -"CanESM2","tas","temperature","tgav","rcp45",2135,"Simulated","C","global",17.1438 -"CanESM2","tas","temperature","tgav","rcp45",2136,"Simulated","C","global",17.0928 -"CanESM2","tas","temperature","tgav","rcp45",2137,"Simulated","C","global",16.99325 -"CanESM2","tas","temperature","tgav","rcp45",2138,"Simulated","C","global",17.0273 -"CanESM2","tas","temperature","tgav","rcp45",2139,"Simulated","C","global",17.07775 -"CanESM2","tas","temperature","tgav","rcp45",2140,"Simulated","C","global",17.1947 -"CanESM2","tas","temperature","tgav","rcp45",2141,"Simulated","C","global",17.1548 -"CanESM2","tas","temperature","tgav","rcp45",2142,"Simulated","C","global",17.0052 -"CanESM2","tas","temperature","tgav","rcp45",2143,"Simulated","C","global",17.0945 -"CanESM2","tas","temperature","tgav","rcp45",2144,"Simulated","C","global",17.2587 -"CanESM2","tas","temperature","tgav","rcp45",2145,"Simulated","C","global",17.19205 -"CanESM2","tas","temperature","tgav","rcp45",2146,"Simulated","C","global",17.0909 -"CanESM2","tas","temperature","tgav","rcp45",2147,"Simulated","C","global",17.0233 -"CanESM2","tas","temperature","tgav","rcp45",2148,"Simulated","C","global",17.11795 -"CanESM2","tas","temperature","tgav","rcp45",2149,"Simulated","C","global",17.20725 -"CanESM2","tas","temperature","tgav","rcp45",2150,"Simulated","C","global",17.1008 -"CanESM2","tas","temperature","tgav","rcp45",2151,"Simulated","C","global",17.13965 -"CanESM2","tas","temperature","tgav","rcp45",2152,"Simulated","C","global",17.1089 -"CanESM2","tas","temperature","tgav","rcp45",2153,"Simulated","C","global",16.99655 -"CanESM2","tas","temperature","tgav","rcp45",2154,"Simulated","C","global",17.1466 -"CanESM2","tas","temperature","tgav","rcp45",2155,"Simulated","C","global",17.15335 -"CanESM2","tas","temperature","tgav","rcp45",2156,"Simulated","C","global",17.09685 -"CanESM2","tas","temperature","tgav","rcp45",2157,"Simulated","C","global",17.14985 -"CanESM2","tas","temperature","tgav","rcp45",2158,"Simulated","C","global",17.22715 -"CanESM2","tas","temperature","tgav","rcp45",2159,"Simulated","C","global",17.21575 -"CanESM2","tas","temperature","tgav","rcp45",2160,"Simulated","C","global",17.19205 -"CanESM2","tas","temperature","tgav","rcp45",2161,"Simulated","C","global",17.2647000000001 -"CanESM2","tas","temperature","tgav","rcp45",2162,"Simulated","C","global",17.10765 -"CanESM2","tas","temperature","tgav","rcp45",2163,"Simulated","C","global",17.06635 -"CanESM2","tas","temperature","tgav","rcp45",2164,"Simulated","C","global",16.97905 -"CanESM2","tas","temperature","tgav","rcp45",2165,"Simulated","C","global",17.0043500000001 -"CanESM2","tas","temperature","tgav","rcp45",2166,"Simulated","C","global",17.1116 -"CanESM2","tas","temperature","tgav","rcp45",2167,"Simulated","C","global",17.20155 -"CanESM2","tas","temperature","tgav","rcp45",2168,"Simulated","C","global",17.2623 -"CanESM2","tas","temperature","tgav","rcp45",2169,"Simulated","C","global",17.2278 -"CanESM2","tas","temperature","tgav","rcp45",2170,"Simulated","C","global",17.03115 -"CanESM2","tas","temperature","tgav","rcp45",2171,"Simulated","C","global",17.2356 -"CanESM2","tas","temperature","tgav","rcp45",2172,"Simulated","C","global",17.17295 -"CanESM2","tas","temperature","tgav","rcp45",2173,"Simulated","C","global",17.07195 -"CanESM2","tas","temperature","tgav","rcp45",2174,"Simulated","C","global",16.9341 -"CanESM2","tas","temperature","tgav","rcp45",2175,"Simulated","C","global",17.0181 -"CanESM2","tas","temperature","tgav","rcp45",2176,"Simulated","C","global",17.183 -"CanESM2","tas","temperature","tgav","rcp45",2177,"Simulated","C","global",17.05005 -"CanESM2","tas","temperature","tgav","rcp45",2178,"Simulated","C","global",17.1271 -"CanESM2","tas","temperature","tgav","rcp45",2179,"Simulated","C","global",17.2741 -"CanESM2","tas","temperature","tgav","rcp45",2180,"Simulated","C","global",17.1443 -"CanESM2","tas","temperature","tgav","rcp45",2181,"Simulated","C","global",17.01385 -"CanESM2","tas","temperature","tgav","rcp45",2182,"Simulated","C","global",17.13955 -"CanESM2","tas","temperature","tgav","rcp45",2183,"Simulated","C","global",17.20815 -"CanESM2","tas","temperature","tgav","rcp45",2184,"Simulated","C","global",17.15355 -"CanESM2","tas","temperature","tgav","rcp45",2185,"Simulated","C","global",17.1523 -"CanESM2","tas","temperature","tgav","rcp45",2186,"Simulated","C","global",17.13255 -"CanESM2","tas","temperature","tgav","rcp45",2187,"Simulated","C","global",17.204 -"CanESM2","tas","temperature","tgav","rcp45",2188,"Simulated","C","global",17.29935 -"CanESM2","tas","temperature","tgav","rcp45",2189,"Simulated","C","global",17.2143500000001 -"CanESM2","tas","temperature","tgav","rcp45",2190,"Simulated","C","global",17.1823000000001 -"CanESM2","tas","temperature","tgav","rcp45",2191,"Simulated","C","global",17.0751 -"CanESM2","tas","temperature","tgav","rcp45",2192,"Simulated","C","global",17.07225 -"CanESM2","tas","temperature","tgav","rcp45",2193,"Simulated","C","global",17.2143 -"CanESM2","tas","temperature","tgav","rcp45",2194,"Simulated","C","global",17.2991 -"CanESM2","tas","temperature","tgav","rcp45",2195,"Simulated","C","global",17.19345 -"CanESM2","tas","temperature","tgav","rcp45",2196,"Simulated","C","global",17.2184 -"CanESM2","tas","temperature","tgav","rcp45",2197,"Simulated","C","global",17.2719 -"CanESM2","tas","temperature","tgav","rcp45",2198,"Simulated","C","global",17.1892 -"CanESM2","tas","temperature","tgav","rcp45",2199,"Simulated","C","global",17.19415 -"CanESM2","tas","temperature","tgav","rcp45",2200,"Simulated","C","global",17.2404 -"CanESM2","tas","temperature","tgav","rcp45",2201,"Simulated","C","global",17.10635 -"CanESM2","tas","temperature","tgav","rcp45",2202,"Simulated","C","global",17.02205 -"CanESM2","tas","temperature","tgav","rcp45",2203,"Simulated","C","global",17.15075 -"CanESM2","tas","temperature","tgav","rcp45",2204,"Simulated","C","global",17.288 -"CanESM2","tas","temperature","tgav","rcp45",2205,"Simulated","C","global",17.21145 -"CanESM2","tas","temperature","tgav","rcp45",2206,"Simulated","C","global",17.1744 -"CanESM2","tas","temperature","tgav","rcp45",2207,"Simulated","C","global",17.32535 -"CanESM2","tas","temperature","tgav","rcp45",2208,"Simulated","C","global",17.41155 -"CanESM2","tas","temperature","tgav","rcp45",2209,"Simulated","C","global",17.2293 -"CanESM2","tas","temperature","tgav","rcp45",2210,"Simulated","C","global",17.10615 -"CanESM2","tas","temperature","tgav","rcp45",2211,"Simulated","C","global",17.18245 -"CanESM2","tas","temperature","tgav","rcp45",2212,"Simulated","C","global",17.3264 -"CanESM2","tas","temperature","tgav","rcp45",2213,"Simulated","C","global",17.20155 -"CanESM2","tas","temperature","tgav","rcp45",2214,"Simulated","C","global",17.17165 -"CanESM2","tas","temperature","tgav","rcp45",2215,"Simulated","C","global",17.3159500000001 -"CanESM2","tas","temperature","tgav","rcp45",2216,"Simulated","C","global",17.283 -"CanESM2","tas","temperature","tgav","rcp45",2217,"Simulated","C","global",17.2462 -"CanESM2","tas","temperature","tgav","rcp45",2218,"Simulated","C","global",17.3658 -"CanESM2","tas","temperature","tgav","rcp45",2219,"Simulated","C","global",17.267 -"CanESM2","tas","temperature","tgav","rcp45",2220,"Simulated","C","global",17.19185 -"CanESM2","tas","temperature","tgav","rcp45",2221,"Simulated","C","global",17.3344 -"CanESM2","tas","temperature","tgav","rcp45",2222,"Simulated","C","global",17.21965 -"CanESM2","tas","temperature","tgav","rcp45",2223,"Simulated","C","global",17.2794 -"CanESM2","tas","temperature","tgav","rcp45",2224,"Simulated","C","global",17.31665 -"CanESM2","tas","temperature","tgav","rcp45",2225,"Simulated","C","global",17.33785 -"CanESM2","tas","temperature","tgav","rcp45",2226,"Simulated","C","global",17.2466500000001 -"CanESM2","tas","temperature","tgav","rcp45",2227,"Simulated","C","global",17.22485 -"CanESM2","tas","temperature","tgav","rcp45",2228,"Simulated","C","global",17.32585 -"CanESM2","tas","temperature","tgav","rcp45",2229,"Simulated","C","global",17.2659 -"CanESM2","tas","temperature","tgav","rcp45",2230,"Simulated","C","global",17.19145 -"CanESM2","tas","temperature","tgav","rcp45",2231,"Simulated","C","global",17.3059 -"CanESM2","tas","temperature","tgav","rcp45",2232,"Simulated","C","global",17.34075 -"CanESM2","tas","temperature","tgav","rcp45",2233,"Simulated","C","global",17.2187 -"CanESM2","tas","temperature","tgav","rcp45",2234,"Simulated","C","global",17.28605 -"CanESM2","tas","temperature","tgav","rcp45",2235,"Simulated","C","global",17.1805 -"CanESM2","tas","temperature","tgav","rcp45",2236,"Simulated","C","global",17.15065 -"CanESM2","tas","temperature","tgav","rcp45",2237,"Simulated","C","global",17.2342 -"CanESM2","tas","temperature","tgav","rcp45",2238,"Simulated","C","global",17.37585 -"CanESM2","tas","temperature","tgav","rcp45",2239,"Simulated","C","global",17.20215 -"CanESM2","tas","temperature","tgav","rcp45",2240,"Simulated","C","global",17.2011 -"CanESM2","tas","temperature","tgav","rcp45",2241,"Simulated","C","global",17.2723 -"CanESM2","tas","temperature","tgav","rcp45",2242,"Simulated","C","global",17.41685 -"CanESM2","tas","temperature","tgav","rcp45",2243,"Simulated","C","global",17.4192 -"CanESM2","tas","temperature","tgav","rcp45",2244,"Simulated","C","global",17.29315 -"CanESM2","tas","temperature","tgav","rcp45",2245,"Simulated","C","global",17.38765 -"CanESM2","tas","temperature","tgav","rcp45",2246,"Simulated","C","global",17.4262 -"CanESM2","tas","temperature","tgav","rcp45",2247,"Simulated","C","global",17.3933 -"CanESM2","tas","temperature","tgav","rcp45",2248,"Simulated","C","global",17.33265 -"CanESM2","tas","temperature","tgav","rcp45",2249,"Simulated","C","global",17.2897 -"CanESM2","tas","temperature","tgav","rcp45",2250,"Simulated","C","global",17.3273 -"CanESM2","tas","temperature","tgav","rcp45",2251,"Simulated","C","global",17.362 -"CanESM2","tas","temperature","tgav","rcp45",2252,"Simulated","C","global",17.30955 -"CanESM2","tas","temperature","tgav","rcp45",2253,"Simulated","C","global",17.301 -"CanESM2","tas","temperature","tgav","rcp45",2254,"Simulated","C","global",17.24105 -"CanESM2","tas","temperature","tgav","rcp45",2255,"Simulated","C","global",17.2629 -"CanESM2","tas","temperature","tgav","rcp45",2256,"Simulated","C","global",17.27495 -"CanESM2","tas","temperature","tgav","rcp45",2257,"Simulated","C","global",17.21925 -"CanESM2","tas","temperature","tgav","rcp45",2258,"Simulated","C","global",17.19315 -"CanESM2","tas","temperature","tgav","rcp45",2259,"Simulated","C","global",17.3395 -"CanESM2","tas","temperature","tgav","rcp45",2260,"Simulated","C","global",17.26215 -"CanESM2","tas","temperature","tgav","rcp45",2261,"Simulated","C","global",17.33 -"CanESM2","tas","temperature","tgav","rcp45",2262,"Simulated","C","global",17.2953 -"CanESM2","tas","temperature","tgav","rcp45",2263,"Simulated","C","global",17.30985 -"CanESM2","tas","temperature","tgav","rcp45",2264,"Simulated","C","global",17.4059 -"CanESM2","tas","temperature","tgav","rcp45",2265,"Simulated","C","global",17.3997 -"CanESM2","tas","temperature","tgav","rcp45",2266,"Simulated","C","global",17.3677 -"CanESM2","tas","temperature","tgav","rcp45",2267,"Simulated","C","global",17.29205 -"CanESM2","tas","temperature","tgav","rcp45",2268,"Simulated","C","global",17.22675 -"CanESM2","tas","temperature","tgav","rcp45",2269,"Simulated","C","global",17.27875 -"CanESM2","tas","temperature","tgav","rcp45",2270,"Simulated","C","global",17.29465 -"CanESM2","tas","temperature","tgav","rcp45",2271,"Simulated","C","global",17.26255 -"CanESM2","tas","temperature","tgav","rcp45",2272,"Simulated","C","global",17.25795 -"CanESM2","tas","temperature","tgav","rcp45",2273,"Simulated","C","global",17.29605 -"CanESM2","tas","temperature","tgav","rcp45",2274,"Simulated","C","global",17.457 -"CanESM2","tas","temperature","tgav","rcp45",2275,"Simulated","C","global",17.42765 -"CanESM2","tas","temperature","tgav","rcp45",2276,"Simulated","C","global",17.32605 -"CanESM2","tas","temperature","tgav","rcp45",2277,"Simulated","C","global",17.30765 -"CanESM2","tas","temperature","tgav","rcp45",2278,"Simulated","C","global",17.31315 -"CanESM2","tas","temperature","tgav","rcp45",2279,"Simulated","C","global",17.21365 -"CanESM2","tas","temperature","tgav","rcp45",2280,"Simulated","C","global",17.4789 -"CanESM2","tas","temperature","tgav","rcp45",2281,"Simulated","C","global",17.59725 -"CanESM2","tas","temperature","tgav","rcp45",2282,"Simulated","C","global",17.22175 -"CanESM2","tas","temperature","tgav","rcp45",2283,"Simulated","C","global",17.1959000000001 -"CanESM2","tas","temperature","tgav","rcp45",2284,"Simulated","C","global",17.47 -"CanESM2","tas","temperature","tgav","rcp45",2285,"Simulated","C","global",17.3415 -"CanESM2","tas","temperature","tgav","rcp45",2286,"Simulated","C","global",17.2777 -"CanESM2","tas","temperature","tgav","rcp45",2287,"Simulated","C","global",17.30215 -"CanESM2","tas","temperature","tgav","rcp45",2288,"Simulated","C","global",17.2519 -"CanESM2","tas","temperature","tgav","rcp45",2289,"Simulated","C","global",17.4024 -"CanESM2","tas","temperature","tgav","rcp45",2290,"Simulated","C","global",17.3859 -"CanESM2","tas","temperature","tgav","rcp45",2291,"Simulated","C","global",17.28425 -"CanESM2","tas","temperature","tgav","rcp45",2292,"Simulated","C","global",17.3367 -"CanESM2","tas","temperature","tgav","rcp45",2293,"Simulated","C","global",17.23045 -"CanESM2","tas","temperature","tgav","rcp45",2294,"Simulated","C","global",17.13835 -"CanESM2","tas","temperature","tgav","rcp45",2295,"Simulated","C","global",17.1552 -"CanESM2","tas","temperature","tgav","rcp45",2296,"Simulated","C","global",17.28305 -"CanESM2","tas","temperature","tgav","rcp45",2297,"Simulated","C","global",17.32245 -"CanESM2","tas","temperature","tgav","rcp45",2298,"Simulated","C","global",17.34835 -"CanESM2","tas","temperature","tgav","rcp45",2299,"Simulated","C","global",17.34525 -"CanESM2","tas","temperature","tgav","rcp45",2300,"Simulated","C","global",17.33515 -"CanESM2","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-10.1646 -"CanESM2","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-10.30854 -"CanESM2","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-10.32264 -"CanESM2","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-10.29448 -"CanESM2","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-10.29096 -"CanESM2","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-10.17398 -"CanESM2","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-10.03348 -"CanESM2","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-9.91697999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-9.91649999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-9.80509999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-9.90187999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-9.81975999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-9.73721999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-9.58029999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-9.49125999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-9.70877999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-9.45373999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-9.69639999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-9.63631999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-9.44846 -"CanESM2","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-9.36083999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-9.32203999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-9.33857999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-9.34341999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-9.18647999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-9.33057999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-9.20347999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-8.93375999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-8.93259999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-8.97279999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-8.83709999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-9.00035999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-8.80271999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-8.74867999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-8.60021999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-8.62293999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-8.59429999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-8.54813999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-8.40083999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-8.41911999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-8.54445999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-8.39551999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-8.32337999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-8.20961999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-7.99443999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-8.26605999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-8.22465999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-8.11391999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-8.22357999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-8.23227999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-8.03141999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-7.96883999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-8.03923999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-7.97153999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-7.96575999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-7.88867999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-7.92711999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-7.89833999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-7.88373999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-7.88387999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-7.80203999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-7.72743999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-7.70985999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-7.69633999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-7.65459999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-7.73549999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-7.65114 -"CanESM2","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-7.54677999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-7.59443999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-7.47233999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-7.56131999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-7.47675999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-7.51321999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-7.50937999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-7.45921999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-7.39987999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-7.37283999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-7.34363999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-7.47283999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-7.43813999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-7.64555999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-7.39825999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-7.52139999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-7.40729999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-7.43541999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-7.31421999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-7.44209999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-7.30537999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-7.32011999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-7.30357999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-7.28587999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-7.44763999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-7.19963999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-7.39627999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-7.27133999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-7.25054999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-7.16424999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2103,"Simulated","C","HL",-7.47274999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2104,"Simulated","C","HL",-7.45774999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2105,"Simulated","C","HL",-7.37484999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2106,"Simulated","C","HL",-7.32204999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2107,"Simulated","C","HL",-7.38554999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2108,"Simulated","C","HL",-7.15379999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2109,"Simulated","C","HL",-7.27124999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2110,"Simulated","C","HL",-6.96129999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2111,"Simulated","C","HL",-7.0924 -"CanESM2","tas","temperature","tgav_HL","rcp45",2112,"Simulated","C","HL",-7.16789999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2113,"Simulated","C","HL",-7.16814999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2114,"Simulated","C","HL",-6.79024999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2115,"Simulated","C","HL",-6.92029999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2116,"Simulated","C","HL",-6.9563 -"CanESM2","tas","temperature","tgav_HL","rcp45",2117,"Simulated","C","HL",-7.33794999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2118,"Simulated","C","HL",-7.28774999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2119,"Simulated","C","HL",-7.13289999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2120,"Simulated","C","HL",-6.95569999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2121,"Simulated","C","HL",-6.99554999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2122,"Simulated","C","HL",-6.74949999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2123,"Simulated","C","HL",-6.62504999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2124,"Simulated","C","HL",-7.12064999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2125,"Simulated","C","HL",-7.19639999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2126,"Simulated","C","HL",-7.06689999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2127,"Simulated","C","HL",-6.91964999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2128,"Simulated","C","HL",-7.10035 -"CanESM2","tas","temperature","tgav_HL","rcp45",2129,"Simulated","C","HL",-7.10364999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2130,"Simulated","C","HL",-6.93609999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2131,"Simulated","C","HL",-7.03144999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2132,"Simulated","C","HL",-6.65454999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2133,"Simulated","C","HL",-6.76544999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2134,"Simulated","C","HL",-6.97744999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2135,"Simulated","C","HL",-6.81955 -"CanESM2","tas","temperature","tgav_HL","rcp45",2136,"Simulated","C","HL",-6.98284999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2137,"Simulated","C","HL",-7.14264999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2138,"Simulated","C","HL",-7.08649999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2139,"Simulated","C","HL",-6.85899999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2140,"Simulated","C","HL",-6.55109999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2141,"Simulated","C","HL",-6.55009999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2142,"Simulated","C","HL",-6.84424999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2143,"Simulated","C","HL",-6.75369999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2144,"Simulated","C","HL",-6.59809999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2145,"Simulated","C","HL",-6.74729999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2146,"Simulated","C","HL",-6.86219999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2147,"Simulated","C","HL",-7.02749999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2148,"Simulated","C","HL",-6.82414999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2149,"Simulated","C","HL",-6.55199999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2150,"Simulated","C","HL",-6.73854999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2151,"Simulated","C","HL",-6.59779999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2152,"Simulated","C","HL",-6.59804999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2153,"Simulated","C","HL",-6.99874999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2154,"Simulated","C","HL",-6.92929999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2155,"Simulated","C","HL",-6.92234999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2156,"Simulated","C","HL",-7.13234999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2157,"Simulated","C","HL",-6.75369999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2158,"Simulated","C","HL",-6.87984999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2159,"Simulated","C","HL",-6.70039999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2160,"Simulated","C","HL",-6.78464999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2161,"Simulated","C","HL",-6.5848 -"CanESM2","tas","temperature","tgav_HL","rcp45",2162,"Simulated","C","HL",-6.64945000000001 -"CanESM2","tas","temperature","tgav_HL","rcp45",2163,"Simulated","C","HL",-6.96324999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2164,"Simulated","C","HL",-7.13069999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2165,"Simulated","C","HL",-7.04509999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2166,"Simulated","C","HL",-6.81034999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2167,"Simulated","C","HL",-6.55019999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2168,"Simulated","C","HL",-6.53574999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2169,"Simulated","C","HL",-6.392 -"CanESM2","tas","temperature","tgav_HL","rcp45",2170,"Simulated","C","HL",-7.12259999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2171,"Simulated","C","HL",-6.57669999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2172,"Simulated","C","HL",-6.77124999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2173,"Simulated","C","HL",-6.93039999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2174,"Simulated","C","HL",-7.12874999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2175,"Simulated","C","HL",-7.06424999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2176,"Simulated","C","HL",-6.92534999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2177,"Simulated","C","HL",-6.99014999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2178,"Simulated","C","HL",-6.96149999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2179,"Simulated","C","HL",-6.71319999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2180,"Simulated","C","HL",-6.99285 -"CanESM2","tas","temperature","tgav_HL","rcp45",2181,"Simulated","C","HL",-6.94 -"CanESM2","tas","temperature","tgav_HL","rcp45",2182,"Simulated","C","HL",-6.75079999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2183,"Simulated","C","HL",-6.89919999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2184,"Simulated","C","HL",-6.79684999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2185,"Simulated","C","HL",-6.74034999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2186,"Simulated","C","HL",-6.91475 -"CanESM2","tas","temperature","tgav_HL","rcp45",2187,"Simulated","C","HL",-6.72189999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2188,"Simulated","C","HL",-6.59424999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2189,"Simulated","C","HL",-6.80439999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2190,"Simulated","C","HL",-6.69869999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2191,"Simulated","C","HL",-6.74859999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2192,"Simulated","C","HL",-6.75519999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2193,"Simulated","C","HL",-6.80615 -"CanESM2","tas","temperature","tgav_HL","rcp45",2194,"Simulated","C","HL",-6.53629999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2195,"Simulated","C","HL",-6.64634999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2196,"Simulated","C","HL",-6.93209999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2197,"Simulated","C","HL",-6.52489999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2198,"Simulated","C","HL",-6.64029999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2199,"Simulated","C","HL",-6.67894999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2200,"Simulated","C","HL",-6.48054999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2201,"Simulated","C","HL",-6.89464999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2202,"Simulated","C","HL",-6.99804999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2203,"Simulated","C","HL",-6.95829999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2204,"Simulated","C","HL",-6.64829999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2205,"Simulated","C","HL",-6.78409999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2206,"Simulated","C","HL",-6.51519999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2207,"Simulated","C","HL",-6.4981 -"CanESM2","tas","temperature","tgav_HL","rcp45",2208,"Simulated","C","HL",-6.65599999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2209,"Simulated","C","HL",-6.72369999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2210,"Simulated","C","HL",-6.70309999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2211,"Simulated","C","HL",-6.75989999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2212,"Simulated","C","HL",-6.46859999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2213,"Simulated","C","HL",-6.73899999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2214,"Simulated","C","HL",-6.84604999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2215,"Simulated","C","HL",-6.69134999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2216,"Simulated","C","HL",-6.63214999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2217,"Simulated","C","HL",-6.76389999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2218,"Simulated","C","HL",-6.41204999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2219,"Simulated","C","HL",-6.56019999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2220,"Simulated","C","HL",-7.08834999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2221,"Simulated","C","HL",-6.58994999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2222,"Simulated","C","HL",-6.60589999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2223,"Simulated","C","HL",-6.71799999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2224,"Simulated","C","HL",-6.48899999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2225,"Simulated","C","HL",-6.54444999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2226,"Simulated","C","HL",-6.80674999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2227,"Simulated","C","HL",-6.87224999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2228,"Simulated","C","HL",-6.81950000000001 -"CanESM2","tas","temperature","tgav_HL","rcp45",2229,"Simulated","C","HL",-6.61339999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2230,"Simulated","C","HL",-6.87599999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2231,"Simulated","C","HL",-6.72409999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2232,"Simulated","C","HL",-6.61644999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2233,"Simulated","C","HL",-6.76179999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2234,"Simulated","C","HL",-6.42024999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2235,"Simulated","C","HL",-6.69289999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2236,"Simulated","C","HL",-6.77709999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2237,"Simulated","C","HL",-6.72984999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2238,"Simulated","C","HL",-6.32374999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2239,"Simulated","C","HL",-6.57744999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2240,"Simulated","C","HL",-6.96554999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2241,"Simulated","C","HL",-6.72049999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2242,"Simulated","C","HL",-6.33174999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2243,"Simulated","C","HL",-6.28064999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2244,"Simulated","C","HL",-6.53704999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2245,"Simulated","C","HL",-6.31984999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2246,"Simulated","C","HL",-6.37469999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2247,"Simulated","C","HL",-6.45614999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2248,"Simulated","C","HL",-6.62709999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2249,"Simulated","C","HL",-6.51204999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2250,"Simulated","C","HL",-6.47954999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2251,"Simulated","C","HL",-6.31929999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2252,"Simulated","C","HL",-6.51919999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2253,"Simulated","C","HL",-6.68469999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2254,"Simulated","C","HL",-6.69719999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2255,"Simulated","C","HL",-6.51504999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2256,"Simulated","C","HL",-6.62764999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2257,"Simulated","C","HL",-6.65269999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2258,"Simulated","C","HL",-6.88944999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2259,"Simulated","C","HL",-6.58099999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2260,"Simulated","C","HL",-6.80175 -"CanESM2","tas","temperature","tgav_HL","rcp45",2261,"Simulated","C","HL",-6.76669999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2262,"Simulated","C","HL",-6.64139999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2263,"Simulated","C","HL",-6.28549999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2264,"Simulated","C","HL",-6.22724999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2265,"Simulated","C","HL",-6.29379999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2266,"Simulated","C","HL",-6.47399999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2267,"Simulated","C","HL",-6.49459999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2268,"Simulated","C","HL",-6.70839999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2269,"Simulated","C","HL",-6.66295 -"CanESM2","tas","temperature","tgav_HL","rcp45",2270,"Simulated","C","HL",-6.34159999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2271,"Simulated","C","HL",-6.38564999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2272,"Simulated","C","HL",-6.58014999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2273,"Simulated","C","HL",-6.76854999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2274,"Simulated","C","HL",-6.63134999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2275,"Simulated","C","HL",-6.40799999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2276,"Simulated","C","HL",-6.49089999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2277,"Simulated","C","HL",-6.63239999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2278,"Simulated","C","HL",-6.54579999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2279,"Simulated","C","HL",-6.76679999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2280,"Simulated","C","HL",-6.36294999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2281,"Simulated","C","HL",-6.14119999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2282,"Simulated","C","HL",-6.61164999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2283,"Simulated","C","HL",-6.66214999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2284,"Simulated","C","HL",-6.32369999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2285,"Simulated","C","HL",-6.53474999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2286,"Simulated","C","HL",-6.70894999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2287,"Simulated","C","HL",-6.64009999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2288,"Simulated","C","HL",-7.03989999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2289,"Simulated","C","HL",-6.39149999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2290,"Simulated","C","HL",-6.37779999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2291,"Simulated","C","HL",-6.35884999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2292,"Simulated","C","HL",-6.26479999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2293,"Simulated","C","HL",-6.63099999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2294,"Simulated","C","HL",-6.69769999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2295,"Simulated","C","HL",-6.91679999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2296,"Simulated","C","HL",-6.58404999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2297,"Simulated","C","HL",-6.56189999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2298,"Simulated","C","HL",-6.53569999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2299,"Simulated","C","HL",-6.56679999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2300,"Simulated","C","HL",-6.36789999999997 -"CanESM2","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",20.18084 -"CanESM2","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",20.15236 -"CanESM2","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",20.1215 -"CanESM2","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",20.15014 -"CanESM2","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",20.25528 -"CanESM2","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",20.26736 -"CanESM2","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",20.27374 -"CanESM2","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",20.17598 -"CanESM2","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",20.20156 -"CanESM2","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",20.40368 -"CanESM2","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",20.39934 -"CanESM2","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",20.39602 -"CanESM2","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",20.3909 -"CanESM2","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",20.4316 -"CanESM2","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",20.49166 -"CanESM2","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",20.50124 -"CanESM2","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",20.57326 -"CanESM2","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",20.49414 -"CanESM2","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",20.56368 -"CanESM2","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",20.61446 -"CanESM2","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",20.70188 -"CanESM2","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",20.72824 -"CanESM2","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",20.73256 -"CanESM2","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",20.7438 -"CanESM2","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",20.76832 -"CanESM2","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",20.77912 -"CanESM2","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",20.76626 -"CanESM2","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",20.83344 -"CanESM2","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",20.8896 -"CanESM2","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",20.96124 -"CanESM2","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",20.98658 -"CanESM2","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",20.99522 -"CanESM2","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",21.04644 -"CanESM2","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",21.02636 -"CanESM2","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",21.02252 -"CanESM2","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",21.15268 -"CanESM2","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",21.23104 -"CanESM2","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",21.22056 -"CanESM2","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",21.24082 -"CanESM2","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",21.18422 -"CanESM2","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",21.18498 -"CanESM2","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",21.23014 -"CanESM2","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",21.25696 -"CanESM2","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",21.3553 -"CanESM2","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",21.32018 -"CanESM2","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",21.33588 -"CanESM2","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",21.3358 -"CanESM2","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",21.38718 -"CanESM2","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",21.3662 -"CanESM2","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",21.3555 -"CanESM2","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",21.41626 -"CanESM2","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",21.37806 -"CanESM2","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",21.45296 -"CanESM2","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",21.56388 -"CanESM2","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",21.54238 -"CanESM2","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",21.58256 -"CanESM2","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",21.6463 -"CanESM2","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",21.6115 -"CanESM2","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",21.54036 -"CanESM2","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",21.58016 -"CanESM2","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",21.56242 -"CanESM2","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",21.64482 -"CanESM2","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",21.63854 -"CanESM2","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",21.62084 -"CanESM2","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",21.56858 -"CanESM2","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",21.67932 -"CanESM2","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",21.7722 -"CanESM2","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",21.70546 -"CanESM2","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",21.71112 -"CanESM2","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",21.7396 -"CanESM2","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",21.70404 -"CanESM2","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",21.70706 -"CanESM2","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",21.73674 -"CanESM2","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",21.77864 -"CanESM2","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",21.86838 -"CanESM2","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",21.8473 -"CanESM2","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",21.7945 -"CanESM2","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",21.82794 -"CanESM2","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",21.83384 -"CanESM2","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",21.77308 -"CanESM2","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",21.8359 -"CanESM2","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",21.82472 -"CanESM2","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",21.82184 -"CanESM2","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",21.8277 -"CanESM2","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",21.85982 -"CanESM2","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",21.887 -"CanESM2","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",21.89558 -"CanESM2","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",21.8887 -"CanESM2","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",21.9401 -"CanESM2","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",21.9239 -"CanESM2","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",21.88382 -"CanESM2","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",21.90284 -"CanESM2","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",21.9592 -"CanESM2","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",21.9149 -"CanESM2","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",21.88732 -"CanESM2","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",21.8983 -"CanESM2","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",21.8577000000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2103,"Simulated","C","LL",21.96285 -"CanESM2","tas","temperature","tgav_LL","rcp45",2104,"Simulated","C","LL",21.8965 -"CanESM2","tas","temperature","tgav_LL","rcp45",2105,"Simulated","C","LL",21.90555 -"CanESM2","tas","temperature","tgav_LL","rcp45",2106,"Simulated","C","LL",21.96235 -"CanESM2","tas","temperature","tgav_LL","rcp45",2107,"Simulated","C","LL",22.0064 -"CanESM2","tas","temperature","tgav_LL","rcp45",2108,"Simulated","C","LL",22.0187 -"CanESM2","tas","temperature","tgav_LL","rcp45",2109,"Simulated","C","LL",22.0702 -"CanESM2","tas","temperature","tgav_LL","rcp45",2110,"Simulated","C","LL",22.0728 -"CanESM2","tas","temperature","tgav_LL","rcp45",2111,"Simulated","C","LL",22.0249500000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2112,"Simulated","C","LL",21.9517 -"CanESM2","tas","temperature","tgav_LL","rcp45",2113,"Simulated","C","LL",22.05005 -"CanESM2","tas","temperature","tgav_LL","rcp45",2114,"Simulated","C","LL",22.17105 -"CanESM2","tas","temperature","tgav_LL","rcp45",2115,"Simulated","C","LL",22.06515 -"CanESM2","tas","temperature","tgav_LL","rcp45",2116,"Simulated","C","LL",21.94715 -"CanESM2","tas","temperature","tgav_LL","rcp45",2117,"Simulated","C","LL",21.91715 -"CanESM2","tas","temperature","tgav_LL","rcp45",2118,"Simulated","C","LL",22.00685 -"CanESM2","tas","temperature","tgav_LL","rcp45",2119,"Simulated","C","LL",22.14145 -"CanESM2","tas","temperature","tgav_LL","rcp45",2120,"Simulated","C","LL",22.0356 -"CanESM2","tas","temperature","tgav_LL","rcp45",2121,"Simulated","C","LL",21.97525 -"CanESM2","tas","temperature","tgav_LL","rcp45",2122,"Simulated","C","LL",22.0714 -"CanESM2","tas","temperature","tgav_LL","rcp45",2123,"Simulated","C","LL",22.12865 -"CanESM2","tas","temperature","tgav_LL","rcp45",2124,"Simulated","C","LL",22.0102000000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2125,"Simulated","C","LL",21.8992 -"CanESM2","tas","temperature","tgav_LL","rcp45",2126,"Simulated","C","LL",22.03905 -"CanESM2","tas","temperature","tgav_LL","rcp45",2127,"Simulated","C","LL",21.99925 -"CanESM2","tas","temperature","tgav_LL","rcp45",2128,"Simulated","C","LL",22.1282 -"CanESM2","tas","temperature","tgav_LL","rcp45",2129,"Simulated","C","LL",22.10305 -"CanESM2","tas","temperature","tgav_LL","rcp45",2130,"Simulated","C","LL",22.0611 -"CanESM2","tas","temperature","tgav_LL","rcp45",2131,"Simulated","C","LL",22.11945 -"CanESM2","tas","temperature","tgav_LL","rcp45",2132,"Simulated","C","LL",22.1729 -"CanESM2","tas","temperature","tgav_LL","rcp45",2133,"Simulated","C","LL",22.0421 -"CanESM2","tas","temperature","tgav_LL","rcp45",2134,"Simulated","C","LL",22.02335 -"CanESM2","tas","temperature","tgav_LL","rcp45",2135,"Simulated","C","LL",22.1471 -"CanESM2","tas","temperature","tgav_LL","rcp45",2136,"Simulated","C","LL",22.1196 -"CanESM2","tas","temperature","tgav_LL","rcp45",2137,"Simulated","C","LL",22.0325 -"CanESM2","tas","temperature","tgav_LL","rcp45",2138,"Simulated","C","LL",22.062 -"CanESM2","tas","temperature","tgav_LL","rcp45",2139,"Simulated","C","LL",22.07545 -"CanESM2","tas","temperature","tgav_LL","rcp45",2140,"Simulated","C","LL",22.1526 -"CanESM2","tas","temperature","tgav_LL","rcp45",2141,"Simulated","C","LL",22.10415 -"CanESM2","tas","temperature","tgav_LL","rcp45",2142,"Simulated","C","LL",21.9847 -"CanESM2","tas","temperature","tgav_LL","rcp45",2143,"Simulated","C","LL",22.07375 -"CanESM2","tas","temperature","tgav_LL","rcp45",2144,"Simulated","C","LL",22.23975 -"CanESM2","tas","temperature","tgav_LL","rcp45",2145,"Simulated","C","LL",22.1903 -"CanESM2","tas","temperature","tgav_LL","rcp45",2146,"Simulated","C","LL",22.09205 -"CanESM2","tas","temperature","tgav_LL","rcp45",2147,"Simulated","C","LL",22.04485 -"CanESM2","tas","temperature","tgav_LL","rcp45",2148,"Simulated","C","LL",22.1168 -"CanESM2","tas","temperature","tgav_LL","rcp45",2149,"Simulated","C","LL",22.1679 -"CanESM2","tas","temperature","tgav_LL","rcp45",2150,"Simulated","C","LL",22.07825 -"CanESM2","tas","temperature","tgav_LL","rcp45",2151,"Simulated","C","LL",22.0958 -"CanESM2","tas","temperature","tgav_LL","rcp45",2152,"Simulated","C","LL",22.0586 -"CanESM2","tas","temperature","tgav_LL","rcp45",2153,"Simulated","C","LL",22.0065 -"CanESM2","tas","temperature","tgav_LL","rcp45",2154,"Simulated","C","LL",22.17335 -"CanESM2","tas","temperature","tgav_LL","rcp45",2155,"Simulated","C","LL",22.18015 -"CanESM2","tas","temperature","tgav_LL","rcp45",2156,"Simulated","C","LL",22.1557 -"CanESM2","tas","temperature","tgav_LL","rcp45",2157,"Simulated","C","LL",22.14065 -"CanESM2","tas","temperature","tgav_LL","rcp45",2158,"Simulated","C","LL",22.2604 -"CanESM2","tas","temperature","tgav_LL","rcp45",2159,"Simulated","C","LL",22.2092 -"CanESM2","tas","temperature","tgav_LL","rcp45",2160,"Simulated","C","LL",22.1981 -"CanESM2","tas","temperature","tgav_LL","rcp45",2161,"Simulated","C","LL",22.2442 -"CanESM2","tas","temperature","tgav_LL","rcp45",2162,"Simulated","C","LL",22.06785 -"CanESM2","tas","temperature","tgav_LL","rcp45",2163,"Simulated","C","LL",22.0835 -"CanESM2","tas","temperature","tgav_LL","rcp45",2164,"Simulated","C","LL",22.0129 -"CanESM2","tas","temperature","tgav_LL","rcp45",2165,"Simulated","C","LL",22.0256 -"CanESM2","tas","temperature","tgav_LL","rcp45",2166,"Simulated","C","LL",22.1062 -"CanESM2","tas","temperature","tgav_LL","rcp45",2167,"Simulated","C","LL",22.16065 -"CanESM2","tas","temperature","tgav_LL","rcp45",2168,"Simulated","C","LL",22.23105 -"CanESM2","tas","temperature","tgav_LL","rcp45",2169,"Simulated","C","LL",22.1593 -"CanESM2","tas","temperature","tgav_LL","rcp45",2170,"Simulated","C","LL",22.0742 -"CanESM2","tas","temperature","tgav_LL","rcp45",2171,"Simulated","C","LL",22.2073 -"CanESM2","tas","temperature","tgav_LL","rcp45",2172,"Simulated","C","LL",22.17225 -"CanESM2","tas","temperature","tgav_LL","rcp45",2173,"Simulated","C","LL",22.08335 -"CanESM2","tas","temperature","tgav_LL","rcp45",2174,"Simulated","C","LL",21.95815 -"CanESM2","tas","temperature","tgav_LL","rcp45",2175,"Simulated","C","LL",22.0462 -"CanESM2","tas","temperature","tgav_LL","rcp45",2176,"Simulated","C","LL",22.2165 -"CanESM2","tas","temperature","tgav_LL","rcp45",2177,"Simulated","C","LL",22.06935 -"CanESM2","tas","temperature","tgav_LL","rcp45",2178,"Simulated","C","LL",22.1565 -"CanESM2","tas","temperature","tgav_LL","rcp45",2179,"Simulated","C","LL",22.2824000000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2180,"Simulated","C","LL",22.1839 -"CanESM2","tas","temperature","tgav_LL","rcp45",2181,"Simulated","C","LL",22.01515 -"CanESM2","tas","temperature","tgav_LL","rcp45",2182,"Simulated","C","LL",22.12765 -"CanESM2","tas","temperature","tgav_LL","rcp45",2183,"Simulated","C","LL",22.2415 -"CanESM2","tas","temperature","tgav_LL","rcp45",2184,"Simulated","C","LL",22.15415 -"CanESM2","tas","temperature","tgav_LL","rcp45",2185,"Simulated","C","LL",22.14085 -"CanESM2","tas","temperature","tgav_LL","rcp45",2186,"Simulated","C","LL",22.15335 -"CanESM2","tas","temperature","tgav_LL","rcp45",2187,"Simulated","C","LL",22.19945 -"CanESM2","tas","temperature","tgav_LL","rcp45",2188,"Simulated","C","LL",22.288 -"CanESM2","tas","temperature","tgav_LL","rcp45",2189,"Simulated","C","LL",22.2292 -"CanESM2","tas","temperature","tgav_LL","rcp45",2190,"Simulated","C","LL",22.1684 -"CanESM2","tas","temperature","tgav_LL","rcp45",2191,"Simulated","C","LL",22.04925 -"CanESM2","tas","temperature","tgav_LL","rcp45",2192,"Simulated","C","LL",22.04715 -"CanESM2","tas","temperature","tgav_LL","rcp45",2193,"Simulated","C","LL",22.2295 -"CanESM2","tas","temperature","tgav_LL","rcp45",2194,"Simulated","C","LL",22.27575 -"CanESM2","tas","temperature","tgav_LL","rcp45",2195,"Simulated","C","LL",22.1709500000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2196,"Simulated","C","LL",22.26075 -"CanESM2","tas","temperature","tgav_LL","rcp45",2197,"Simulated","C","LL",22.24045 -"CanESM2","tas","temperature","tgav_LL","rcp45",2198,"Simulated","C","LL",22.1646 -"CanESM2","tas","temperature","tgav_LL","rcp45",2199,"Simulated","C","LL",22.17855 -"CanESM2","tas","temperature","tgav_LL","rcp45",2200,"Simulated","C","LL",22.19305 -"CanESM2","tas","temperature","tgav_LL","rcp45",2201,"Simulated","C","LL",22.11745 -"CanESM2","tas","temperature","tgav_LL","rcp45",2202,"Simulated","C","LL",22.0372 -"CanESM2","tas","temperature","tgav_LL","rcp45",2203,"Simulated","C","LL",22.1845 -"CanESM2","tas","temperature","tgav_LL","rcp45",2204,"Simulated","C","LL",22.28565 -"CanESM2","tas","temperature","tgav_LL","rcp45",2205,"Simulated","C","LL",22.2214 -"CanESM2","tas","temperature","tgav_LL","rcp45",2206,"Simulated","C","LL",22.12045 -"CanESM2","tas","temperature","tgav_LL","rcp45",2207,"Simulated","C","LL",22.2994 -"CanESM2","tas","temperature","tgav_LL","rcp45",2208,"Simulated","C","LL",22.43665 -"CanESM2","tas","temperature","tgav_LL","rcp45",2209,"Simulated","C","LL",22.2304 -"CanESM2","tas","temperature","tgav_LL","rcp45",2210,"Simulated","C","LL",22.07725 -"CanESM2","tas","temperature","tgav_LL","rcp45",2211,"Simulated","C","LL",22.18135 -"CanESM2","tas","temperature","tgav_LL","rcp45",2212,"Simulated","C","LL",22.2945 -"CanESM2","tas","temperature","tgav_LL","rcp45",2213,"Simulated","C","LL",22.20005 -"CanESM2","tas","temperature","tgav_LL","rcp45",2214,"Simulated","C","LL",22.18625 -"CanESM2","tas","temperature","tgav_LL","rcp45",2215,"Simulated","C","LL",22.32845 -"CanESM2","tas","temperature","tgav_LL","rcp45",2216,"Simulated","C","LL",22.2762 -"CanESM2","tas","temperature","tgav_LL","rcp45",2217,"Simulated","C","LL",22.2592 -"CanESM2","tas","temperature","tgav_LL","rcp45",2218,"Simulated","C","LL",22.33035 -"CanESM2","tas","temperature","tgav_LL","rcp45",2219,"Simulated","C","LL",22.24185 -"CanESM2","tas","temperature","tgav_LL","rcp45",2220,"Simulated","C","LL",22.26125 -"CanESM2","tas","temperature","tgav_LL","rcp45",2221,"Simulated","C","LL",22.32955 -"CanESM2","tas","temperature","tgav_LL","rcp45",2222,"Simulated","C","LL",22.19415 -"CanESM2","tas","temperature","tgav_LL","rcp45",2223,"Simulated","C","LL",22.28975 -"CanESM2","tas","temperature","tgav_LL","rcp45",2224,"Simulated","C","LL",22.28705 -"CanESM2","tas","temperature","tgav_LL","rcp45",2225,"Simulated","C","LL",22.3242 -"CanESM2","tas","temperature","tgav_LL","rcp45",2226,"Simulated","C","LL",22.26875 -"CanESM2","tas","temperature","tgav_LL","rcp45",2227,"Simulated","C","LL",22.25605 -"CanESM2","tas","temperature","tgav_LL","rcp45",2228,"Simulated","C","LL",22.36715 -"CanESM2","tas","temperature","tgav_LL","rcp45",2229,"Simulated","C","LL",22.2516 -"CanESM2","tas","temperature","tgav_LL","rcp45",2230,"Simulated","C","LL",22.21645 -"CanESM2","tas","temperature","tgav_LL","rcp45",2231,"Simulated","C","LL",22.32305 -"CanESM2","tas","temperature","tgav_LL","rcp45",2232,"Simulated","C","LL",22.34275 -"CanESM2","tas","temperature","tgav_LL","rcp45",2233,"Simulated","C","LL",22.22555 -"CanESM2","tas","temperature","tgav_LL","rcp45",2234,"Simulated","C","LL",22.23565 -"CanESM2","tas","temperature","tgav_LL","rcp45",2235,"Simulated","C","LL",22.165 -"CanESM2","tas","temperature","tgav_LL","rcp45",2236,"Simulated","C","LL",22.1465 -"CanESM2","tas","temperature","tgav_LL","rcp45",2237,"Simulated","C","LL",22.2377 -"CanESM2","tas","temperature","tgav_LL","rcp45",2238,"Simulated","C","LL",22.32405 -"CanESM2","tas","temperature","tgav_LL","rcp45",2239,"Simulated","C","LL",22.1671 -"CanESM2","tas","temperature","tgav_LL","rcp45",2240,"Simulated","C","LL",22.24685 -"CanESM2","tas","temperature","tgav_LL","rcp45",2241,"Simulated","C","LL",22.28175 -"CanESM2","tas","temperature","tgav_LL","rcp45",2242,"Simulated","C","LL",22.3753 -"CanESM2","tas","temperature","tgav_LL","rcp45",2243,"Simulated","C","LL",22.36745 -"CanESM2","tas","temperature","tgav_LL","rcp45",2244,"Simulated","C","LL",22.2686 -"CanESM2","tas","temperature","tgav_LL","rcp45",2245,"Simulated","C","LL",22.3375 -"CanESM2","tas","temperature","tgav_LL","rcp45",2246,"Simulated","C","LL",22.39555 -"CanESM2","tas","temperature","tgav_LL","rcp45",2247,"Simulated","C","LL",22.3728 -"CanESM2","tas","temperature","tgav_LL","rcp45",2248,"Simulated","C","LL",22.3352000000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2249,"Simulated","C","LL",22.25925 -"CanESM2","tas","temperature","tgav_LL","rcp45",2250,"Simulated","C","LL",22.2979 -"CanESM2","tas","temperature","tgav_LL","rcp45",2251,"Simulated","C","LL",22.3064 -"CanESM2","tas","temperature","tgav_LL","rcp45",2252,"Simulated","C","LL",22.28475 -"CanESM2","tas","temperature","tgav_LL","rcp45",2253,"Simulated","C","LL",22.30895 -"CanESM2","tas","temperature","tgav_LL","rcp45",2254,"Simulated","C","LL",22.2391 -"CanESM2","tas","temperature","tgav_LL","rcp45",2255,"Simulated","C","LL",22.2275 -"CanESM2","tas","temperature","tgav_LL","rcp45",2256,"Simulated","C","LL",22.26555 -"CanESM2","tas","temperature","tgav_LL","rcp45",2257,"Simulated","C","LL",22.20345 -"CanESM2","tas","temperature","tgav_LL","rcp45",2258,"Simulated","C","LL",22.22135 -"CanESM2","tas","temperature","tgav_LL","rcp45",2259,"Simulated","C","LL",22.33385 -"CanESM2","tas","temperature","tgav_LL","rcp45",2260,"Simulated","C","LL",22.28645 -"CanESM2","tas","temperature","tgav_LL","rcp45",2261,"Simulated","C","LL",22.3611 -"CanESM2","tas","temperature","tgav_LL","rcp45",2262,"Simulated","C","LL",22.29305 -"CanESM2","tas","temperature","tgav_LL","rcp45",2263,"Simulated","C","LL",22.2363 -"CanESM2","tas","temperature","tgav_LL","rcp45",2264,"Simulated","C","LL",22.34025 -"CanESM2","tas","temperature","tgav_LL","rcp45",2265,"Simulated","C","LL",22.34665 -"CanESM2","tas","temperature","tgav_LL","rcp45",2266,"Simulated","C","LL",22.3455500000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2267,"Simulated","C","LL",22.2584 -"CanESM2","tas","temperature","tgav_LL","rcp45",2268,"Simulated","C","LL",22.22415 -"CanESM2","tas","temperature","tgav_LL","rcp45",2269,"Simulated","C","LL",22.27755 -"CanESM2","tas","temperature","tgav_LL","rcp45",2270,"Simulated","C","LL",22.2296 -"CanESM2","tas","temperature","tgav_LL","rcp45",2271,"Simulated","C","LL",22.2 -"CanESM2","tas","temperature","tgav_LL","rcp45",2272,"Simulated","C","LL",22.2351 -"CanESM2","tas","temperature","tgav_LL","rcp45",2273,"Simulated","C","LL",22.3205 -"CanESM2","tas","temperature","tgav_LL","rcp45",2274,"Simulated","C","LL",22.4864 -"CanESM2","tas","temperature","tgav_LL","rcp45",2275,"Simulated","C","LL",22.40425 -"CanESM2","tas","temperature","tgav_LL","rcp45",2276,"Simulated","C","LL",22.2988 -"CanESM2","tas","temperature","tgav_LL","rcp45",2277,"Simulated","C","LL",22.3061 -"CanESM2","tas","temperature","tgav_LL","rcp45",2278,"Simulated","C","LL",22.29465 -"CanESM2","tas","temperature","tgav_LL","rcp45",2279,"Simulated","C","LL",22.22055 -"CanESM2","tas","temperature","tgav_LL","rcp45",2280,"Simulated","C","LL",22.4568 -"CanESM2","tas","temperature","tgav_LL","rcp45",2281,"Simulated","C","LL",22.55355 -"CanESM2","tas","temperature","tgav_LL","rcp45",2282,"Simulated","C","LL",22.1979 -"CanESM2","tas","temperature","tgav_LL","rcp45",2283,"Simulated","C","LL",22.1772 -"CanESM2","tas","temperature","tgav_LL","rcp45",2284,"Simulated","C","LL",22.43785 -"CanESM2","tas","temperature","tgav_LL","rcp45",2285,"Simulated","C","LL",22.32655 -"CanESM2","tas","temperature","tgav_LL","rcp45",2286,"Simulated","C","LL",22.28585 -"CanESM2","tas","temperature","tgav_LL","rcp45",2287,"Simulated","C","LL",22.30105 -"CanESM2","tas","temperature","tgav_LL","rcp45",2288,"Simulated","C","LL",22.3238 -"CanESM2","tas","temperature","tgav_LL","rcp45",2289,"Simulated","C","LL",22.3703 -"CanESM2","tas","temperature","tgav_LL","rcp45",2290,"Simulated","C","LL",22.34745 -"CanESM2","tas","temperature","tgav_LL","rcp45",2291,"Simulated","C","LL",22.2207 -"CanESM2","tas","temperature","tgav_LL","rcp45",2292,"Simulated","C","LL",22.2644 -"CanESM2","tas","temperature","tgav_LL","rcp45",2293,"Simulated","C","LL",22.21245 -"CanESM2","tas","temperature","tgav_LL","rcp45",2294,"Simulated","C","LL",22.115 -"CanESM2","tas","temperature","tgav_LL","rcp45",2295,"Simulated","C","LL",22.18115 -"CanESM2","tas","temperature","tgav_LL","rcp45",2296,"Simulated","C","LL",22.26625 -"CanESM2","tas","temperature","tgav_LL","rcp45",2297,"Simulated","C","LL",22.3092 -"CanESM2","tas","temperature","tgav_LL","rcp45",2298,"Simulated","C","LL",22.3351 -"CanESM2","tas","temperature","tgav_LL","rcp45",2299,"Simulated","C","LL",22.3378 -"CanESM2","tas","temperature","tgav_LL","rcp45",2300,"Simulated","C","LL",22.28405 -"CESM1-BGC","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.7383 -"CESM1-BGC","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",14.6878 -"CESM1-BGC","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",14.6703 -"CESM1-BGC","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",14.7934 -"CESM1-BGC","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",14.7504 -"CESM1-BGC","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",14.8778 -"CESM1-BGC","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",14.8438 -"CESM1-BGC","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.7679 -"CESM1-BGC","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.9114 -"CESM1-BGC","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",14.8587 -"CESM1-BGC","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",14.8133 -"CESM1-BGC","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",14.869 -"CESM1-BGC","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",14.859 -"CESM1-BGC","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",14.8534 -"CESM1-BGC","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",14.8444 -"CESM1-BGC","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",15.0222 -"CESM1-BGC","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",15.1096 -"CESM1-BGC","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",15.049 -"CESM1-BGC","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",15.096 -"CESM1-BGC","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",15.0725 -"CESM1-BGC","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",15.159 -"CESM1-BGC","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",15.121 -"CESM1-BGC","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",15.1619 -"CESM1-BGC","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",15.0196 -"CESM1-BGC","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",15.0696 -"CESM1-BGC","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",15.0787 -"CESM1-BGC","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",15.146 -"CESM1-BGC","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",15.3294 -"CESM1-BGC","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",15.2524 -"CESM1-BGC","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",15.2823 -"CESM1-BGC","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",15.3327 -"CESM1-BGC","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",15.3393 -"CESM1-BGC","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",15.1579 -"CESM1-BGC","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",15.1482 -"CESM1-BGC","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",15.3028 -"CESM1-BGC","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",15.4894 -"CESM1-BGC","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",15.4337 -"CESM1-BGC","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",15.4690000000001 -"CESM1-BGC","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",15.5028 -"CESM1-BGC","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",15.4732 -"CESM1-BGC","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",15.5244 -"CESM1-BGC","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",15.5275 -"CESM1-BGC","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",15.4705 -"CESM1-BGC","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",15.4674 -"CESM1-BGC","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",15.6688 -"CESM1-BGC","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",15.7516 -"CESM1-BGC","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",15.5823 -"CESM1-BGC","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",15.6294 -"CESM1-BGC","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",15.6694 -"CESM1-BGC","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",15.7312 -"CESM1-BGC","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",15.7474 -"CESM1-BGC","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",15.8441 -"CESM1-BGC","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",15.9584 -"CESM1-BGC","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",15.6326 -"CESM1-BGC","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",15.6859 -"CESM1-BGC","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",15.7851 -"CESM1-BGC","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",15.8072 -"CESM1-BGC","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",15.7595 -"CESM1-BGC","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",15.9208 -"CESM1-BGC","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",15.9212 -"CESM1-BGC","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",15.8286 -"CESM1-BGC","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",15.9556 -"CESM1-BGC","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",15.907 -"CESM1-BGC","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",15.73 -"CESM1-BGC","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",15.7443 -"CESM1-BGC","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",15.8893 -"CESM1-BGC","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",15.8365 -"CESM1-BGC","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",15.7491 -"CESM1-BGC","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",15.9387 -"CESM1-BGC","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",15.9732 -"CESM1-BGC","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",15.9039 -"CESM1-BGC","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",15.9348 -"CESM1-BGC","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",15.8996 -"CESM1-BGC","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",15.9501 -"CESM1-BGC","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",16.0871 -"CESM1-BGC","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",15.9628 -"CESM1-BGC","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",15.8787 -"CESM1-BGC","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",15.9233 -"CESM1-BGC","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",15.9306 -"CESM1-BGC","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",15.9376 -"CESM1-BGC","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",15.9527 -"CESM1-BGC","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",15.9119 -"CESM1-BGC","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",15.8023 -"CESM1-BGC","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",15.8472 -"CESM1-BGC","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",15.921 -"CESM1-BGC","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",15.9587 -"CESM1-BGC","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",15.9444 -"CESM1-BGC","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",15.8654 -"CESM1-BGC","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",15.8908 -"CESM1-BGC","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",16.0292 -"CESM1-BGC","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",15.9412 -"CESM1-BGC","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",15.9325 -"CESM1-BGC","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",15.9052 -"CESM1-BGC","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",15.9081 -"CESM1-BGC","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",15.9998000000001 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-9.81359999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-9.66039999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-9.77009999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-9.5702 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-9.74369999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-9.55419999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-9.41699999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-9.7663 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-9.42499999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-9.87430000000001 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-10.0182 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-9.71429999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-9.81719999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-9.60499999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-10.1798 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-9.5564 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-9.28629999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-9.27479999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-9.2423 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-9.40279999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-9.10149999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-9.19989999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-8.89019999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-9.34139999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-9.2063 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-9.20369999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-9.19439999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-8.72339999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-8.95439999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-8.88499999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-8.90039999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-8.6687 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-9.13829999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-9.27609999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-9.19919999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-8.7278 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-8.72769999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-8.7543 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-8.90459999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-8.82439999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-8.7602 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-8.64189999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-8.60209999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-8.61399999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-8.31829999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-8.2681 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-8.53989999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-8.40259999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-8.23839999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-8.25559999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-8.08579999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-8.0829 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-7.65809999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-8.54239999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-8.56659999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-8.54219999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-8.23359999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-8.32249999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-8.12439999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-7.90389999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-8.12309999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-7.98939999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-7.98499999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-8.31319999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-8.34299999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-8.13309999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-8.30839999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-8.44779999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-8.072 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-7.88229999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-7.90159999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-7.9581 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-8.0224 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-8.11789999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-7.60599999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-7.654 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-7.94869999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-8.28829999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-8.33589999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-7.85359999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-7.83049999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-8.02359999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-8.28129999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-8.0455 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-7.94599999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-8.10499999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-7.98089999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-7.93689999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-8.15049999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-8.0256 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-7.76509999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-7.82369999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-8.16179999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-8.28559999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-8.07459999999998 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",20.2854 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",20.1888 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",20.1921 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",20.2979 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",20.2844 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",20.3978 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",20.325 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",20.3109 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",20.4098 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",20.4466 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",20.4235 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",20.4232 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",20.4341 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",20.3793 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",20.4981 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",20.5752 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",20.6214000000001 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",20.5445 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",20.5948 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",20.6022 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",20.6401 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",20.6159 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",20.5961 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",20.5235 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",20.5543 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",20.5648 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",20.6452 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",20.7637 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",20.7215 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",20.7424 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",20.8077 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",20.7635 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",20.6472 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",20.6665 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",20.8385 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",20.9608 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",20.8925 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",20.9418 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",21.0172 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",20.9627 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",21.011 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",20.9882 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",20.9093 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",20.9081 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",21.0882 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",21.1785 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",21.0323 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",21.059 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",21.071 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",21.1505 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",21.1321 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",21.25 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",21.2942 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",21.0944 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",21.1653 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",21.2814 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",21.2388 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",21.2004 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",21.3534 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",21.304 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",21.24 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",21.3655 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",21.305 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",21.1621 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",21.1864 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",21.3166000000001 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",21.2916 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",21.2159 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",21.3635 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",21.363 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",21.2822 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",21.3329 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",21.3043 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",21.3879 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",21.4401 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",21.2985 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",21.262 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",21.3934 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",21.4131 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",21.3128 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",21.326 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",21.3196 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",21.2435 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",21.2452 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",21.3132 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",21.3954 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",21.3498 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",21.243 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",21.3224 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",21.4639 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",21.2972 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",21.2997 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",21.3426 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",21.3742 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",21.439 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.1251 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",14.0968 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",14.2513 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",14.2336 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",14.2054 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",14.1135 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",14.083 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.0872 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.114 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",14.0703 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",14.1743 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",14.2619 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",14.2229 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",14.1031 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",14.2178 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",14.2766 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",14.1785 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",14.4401 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",14.515 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",14.3647 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",14.3375 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",14.4233 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",14.3379 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",14.5195000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",14.4614 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",14.5588 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",14.4534 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",14.3662 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",14.4607 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",14.4954 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",14.4533 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",14.3362 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",14.3346 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",14.4435 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",14.396 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",14.6324 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",14.5317 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",14.5001 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",14.4614 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",14.4959 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",14.6931 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",14.8027 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",14.7257 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",14.5499 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",14.7317 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",14.8345 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",15.0261 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",14.8407 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",14.8056 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",14.9859 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",14.7848 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",14.6745 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",14.8228 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",14.8771 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",14.8536 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",14.8507 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",14.6459 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",14.6425 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",14.9126 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",14.8376 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",14.9096 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",14.8801 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",14.7976 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",14.7771 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",14.7819 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",14.8363000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",15.0069 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",14.9312 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",14.7947 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",14.8437 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",14.8042 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",14.8441 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",14.9025 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",14.861 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",14.9472 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",14.7932 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",14.8058 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",14.7468 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",14.875 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",14.7926 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",14.9388 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",15.0229 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",14.8506 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",14.8588 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",14.965 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",14.7872 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",14.7864 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",14.8828 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",14.9607 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",14.7794 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",14.7828 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",14.9069 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",14.9122 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",14.8541 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",14.8611 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-8.6103 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-8.709 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-8.62099999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-8.5222 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-8.23059999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-8.42159999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-8.84649999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-8.92309999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-8.77789999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-9.00669999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-8.76619999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-8.63709999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-8.42769999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-8.73469999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-8.83639999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-8.52599999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-8.66379999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-8.1943 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-8.30809999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-8.303 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-8.46389999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-8.03109999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-8.25469999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-7.7244 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-8.07749999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-8.13419999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-8.4812 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-8.43759999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-8.37649999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-8.41309999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-8.26769999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-8.48769999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-8.7022 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-8.6026 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-8.39759999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-8.07469999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-8.02169999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-8.10019999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-8.42589999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-8.10239999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-7.88439999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-7.69259999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-7.97429999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-7.9649 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-7.65039999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-7.9359 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-7.40049999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-7.90219999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-7.79389999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-7.55399999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-7.86129999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-7.9477 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-7.90779999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-7.99009999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-7.82029999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-7.798 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-8.22199999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-8.1223 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-7.5206 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-7.50459999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-7.35269999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-7.46699999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-8.17409999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-8.07679999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-7.79389999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-7.66889999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-7.26279999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-7.80239999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-7.88389999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-7.8023 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-7.71379999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-7.71659999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-7.36589999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-7.98919999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-7.81029999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-8.04909999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-7.97799999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-8.05939999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-7.78739999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-7.87329999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-7.57909999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-7.74549999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-7.97329999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-8.18680000000001 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-7.78269999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-7.80559999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-7.90839999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-7.64349999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-7.24679999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-7.93209999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-8.12889999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-7.6703 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-7.94919999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-7.87739999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-7.56999999999999 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",19.2792 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",19.2668 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",19.4364 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",19.3923 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",19.2916 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",19.2222 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",19.2811 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",19.3035 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",19.3036 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",19.3018 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",19.3749 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",19.4531 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",19.3578 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",19.2804 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",19.4442 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",19.4459 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",19.3568 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",19.5713 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",19.689 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",19.5034 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",19.5066 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",19.5137 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",19.4596 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",19.5621 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",19.571 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",19.7033 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",19.6526 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",19.5357 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",19.6378 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",19.6888 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",19.6041 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",19.5103 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",19.5571 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",19.668 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",19.5632 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",19.7801 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",19.6445000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",19.6236 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",19.6499 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",19.6189 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",19.8114 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",19.9024 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",19.8718 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",19.6539 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",19.8056 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",19.9966 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",20.1102 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",19.9965 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",19.9288 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",20.0957 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",19.9187 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",19.803 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",19.9758 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",20.061 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",19.9937 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",19.9851 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",19.8301 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",19.8032 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",19.9982 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",19.9026 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",19.9564 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",19.9461 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",20.0052 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",19.9581 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",19.8998 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",19.9382 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",20.0554 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",20.0848 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",19.9359 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",19.9775 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",19.909 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",19.9586 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",19.9507 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",20.0411 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",20.1063 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",19.9716 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",19.9708 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",19.917 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",20.0126 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",19.931 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",20.0435 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",20.1845 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",20.0248 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",20.0833 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",20.1218 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",19.9089 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",19.9312 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",19.9894 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",19.9951 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",19.9281 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",19.9769 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",20.0251 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",20.0949 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",20.0073 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",19.9462 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2005,"Simulated","C","global",12.3903 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.366225 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",14.4364 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",14.387925 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",14.3755 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",14.3606 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",14.42395 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",14.495475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.462525 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.56945 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",14.599325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",14.6886 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",14.77555 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",14.769225 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",14.777525 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",14.7434 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",14.849375 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",14.849425 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",14.8741 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",14.88115 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",14.91555 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",15.015825 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",15.029975 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",15.084375 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",15.0834 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",15.091 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",15.1461 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",15.186775 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",15.278175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",15.185225 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",15.172975 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",15.229475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",15.29545 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",15.3507 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",15.4016 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",15.4154 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",15.51175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",15.4877 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",15.5332 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",15.532475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",15.57615 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",15.732625 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",15.735525 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",15.7688 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",15.769425 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",15.747325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",15.71545 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",15.83465 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",15.883875 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",15.9039 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",15.927325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",15.9706 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",15.997175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",16.041425 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",16.021675 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",16.0779 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",16.070475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",16.071625 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",16.068275 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",16.11145 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",16.093625 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",16.23 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",16.221175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",16.1927 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",16.17265 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",16.17825 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",16.24665 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",16.2144 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",16.2789 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",16.299525 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",16.27665 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",16.319325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",16.4126 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",16.5174 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",16.4775 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",16.4779 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",16.428175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",16.446075 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",16.43555 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",16.478325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",16.5056 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",16.473375 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",16.428475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",16.44135 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",16.412325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",16.396325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",16.473025 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",16.531475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",16.544825 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",16.506825 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",16.46375 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",16.508925 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",16.526575 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",16.5351 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",16.519075 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",16.415675 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",16.5799 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",16.6222 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2103,"Simulated","C","global",16.5553 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2104,"Simulated","C","global",16.353 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2105,"Simulated","C","global",16.3704 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2106,"Simulated","C","global",16.4649 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2107,"Simulated","C","global",16.4465 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2108,"Simulated","C","global",16.4993 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2109,"Simulated","C","global",16.649 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2110,"Simulated","C","global",16.6987 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2111,"Simulated","C","global",16.7582 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2112,"Simulated","C","global",16.6316 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2113,"Simulated","C","global",16.5457 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2114,"Simulated","C","global",16.54 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2115,"Simulated","C","global",16.5808 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2116,"Simulated","C","global",16.6404 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2117,"Simulated","C","global",16.5082 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2118,"Simulated","C","global",16.6418 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2119,"Simulated","C","global",16.6647 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2120,"Simulated","C","global",16.624 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2121,"Simulated","C","global",16.5824 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2122,"Simulated","C","global",16.7622 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2123,"Simulated","C","global",16.747 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2124,"Simulated","C","global",16.6723 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2125,"Simulated","C","global",16.7171 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2126,"Simulated","C","global",16.7744 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2127,"Simulated","C","global",16.7341 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2128,"Simulated","C","global",16.723 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2129,"Simulated","C","global",16.729 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2130,"Simulated","C","global",16.7335 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2131,"Simulated","C","global",16.7599 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2132,"Simulated","C","global",16.8111 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2133,"Simulated","C","global",16.8593 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2134,"Simulated","C","global",16.9178 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2135,"Simulated","C","global",16.8024 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2136,"Simulated","C","global",16.6946 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2137,"Simulated","C","global",16.6964 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2138,"Simulated","C","global",16.7101 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2139,"Simulated","C","global",16.7024 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2140,"Simulated","C","global",16.6517 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2141,"Simulated","C","global",16.5624 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2142,"Simulated","C","global",16.6208 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2143,"Simulated","C","global",16.6227 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2144,"Simulated","C","global",16.5916 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2145,"Simulated","C","global",16.5704 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2146,"Simulated","C","global",16.4962 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2147,"Simulated","C","global",16.6065 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2148,"Simulated","C","global",16.7608 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2149,"Simulated","C","global",16.8337 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2150,"Simulated","C","global",16.7103 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2151,"Simulated","C","global",16.8061 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2152,"Simulated","C","global",16.7466 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2153,"Simulated","C","global",16.5272000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2154,"Simulated","C","global",16.5436 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2155,"Simulated","C","global",16.7616 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2156,"Simulated","C","global",16.9154 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2157,"Simulated","C","global",16.7799 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2158,"Simulated","C","global",16.8182 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2159,"Simulated","C","global",16.8823 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2160,"Simulated","C","global",16.7345 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2161,"Simulated","C","global",16.731 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2162,"Simulated","C","global",16.7515 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2163,"Simulated","C","global",16.7474 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2164,"Simulated","C","global",16.7983 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2165,"Simulated","C","global",16.7965 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2166,"Simulated","C","global",16.8376 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2167,"Simulated","C","global",16.6892 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2168,"Simulated","C","global",16.6354 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2169,"Simulated","C","global",16.6201 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2170,"Simulated","C","global",16.5589000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2171,"Simulated","C","global",16.7053 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2172,"Simulated","C","global",16.7527 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2173,"Simulated","C","global",16.6382 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2174,"Simulated","C","global",16.573 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2175,"Simulated","C","global",16.6801 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2176,"Simulated","C","global",16.6993000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2177,"Simulated","C","global",16.6811 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2178,"Simulated","C","global",16.7899 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2179,"Simulated","C","global",16.8115 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2180,"Simulated","C","global",16.778 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2181,"Simulated","C","global",16.8343 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2182,"Simulated","C","global",16.7783 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2183,"Simulated","C","global",16.838 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2184,"Simulated","C","global",16.8733 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2185,"Simulated","C","global",16.8405 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2186,"Simulated","C","global",16.9488 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2187,"Simulated","C","global",16.8957 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2188,"Simulated","C","global",16.939 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2189,"Simulated","C","global",17.1098 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2190,"Simulated","C","global",17.1147 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2191,"Simulated","C","global",17.1378 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2192,"Simulated","C","global",17.1278 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2193,"Simulated","C","global",17.1538 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2194,"Simulated","C","global",17.1501 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2195,"Simulated","C","global",16.9487 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2196,"Simulated","C","global",16.8978 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2197,"Simulated","C","global",16.8509 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2198,"Simulated","C","global",16.9643 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2199,"Simulated","C","global",16.9375 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2200,"Simulated","C","global",16.7941 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2201,"Simulated","C","global",16.84 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2202,"Simulated","C","global",16.8083 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2203,"Simulated","C","global",16.8698 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2204,"Simulated","C","global",16.9626 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2205,"Simulated","C","global",16.9662 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2206,"Simulated","C","global",16.8331 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2207,"Simulated","C","global",16.7504 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2208,"Simulated","C","global",16.7963 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2209,"Simulated","C","global",16.8281 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2210,"Simulated","C","global",16.7916 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2211,"Simulated","C","global",16.7196 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2212,"Simulated","C","global",16.7236 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2213,"Simulated","C","global",16.6759 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2214,"Simulated","C","global",16.8057 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2215,"Simulated","C","global",16.8313 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2216,"Simulated","C","global",16.735 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2217,"Simulated","C","global",16.7891 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2218,"Simulated","C","global",16.9076 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2219,"Simulated","C","global",16.914 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2220,"Simulated","C","global",16.8713 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2221,"Simulated","C","global",17.0157 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2222,"Simulated","C","global",16.8306 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2223,"Simulated","C","global",16.8198 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2224,"Simulated","C","global",16.8353 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2225,"Simulated","C","global",16.9422 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2226,"Simulated","C","global",16.9196 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2227,"Simulated","C","global",17.0345 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2228,"Simulated","C","global",17.1335 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2229,"Simulated","C","global",17.1124 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2230,"Simulated","C","global",17.0803 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2231,"Simulated","C","global",16.986 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2232,"Simulated","C","global",16.9901 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2233,"Simulated","C","global",16.9625 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2234,"Simulated","C","global",17.1003 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2235,"Simulated","C","global",17.1946 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2236,"Simulated","C","global",17.0965 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2237,"Simulated","C","global",17.1051 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2238,"Simulated","C","global",17.0322 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2239,"Simulated","C","global",17.0894 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2240,"Simulated","C","global",17.1477 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2241,"Simulated","C","global",17.1353 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2242,"Simulated","C","global",16.975 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2243,"Simulated","C","global",16.9276 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2244,"Simulated","C","global",16.9901 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2245,"Simulated","C","global",17.0191 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2246,"Simulated","C","global",17.1367 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2247,"Simulated","C","global",17.1424 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2248,"Simulated","C","global",17.1925 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2249,"Simulated","C","global",17.151 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2250,"Simulated","C","global",17.0926 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2251,"Simulated","C","global",17.0358 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2252,"Simulated","C","global",16.9259 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2253,"Simulated","C","global",16.8707 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2254,"Simulated","C","global",16.9447 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2255,"Simulated","C","global",17.0152 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2256,"Simulated","C","global",17.0406 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2257,"Simulated","C","global",17.0933 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2258,"Simulated","C","global",17.1583 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2259,"Simulated","C","global",17.0759 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2260,"Simulated","C","global",17.0321 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2261,"Simulated","C","global",16.9993 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2262,"Simulated","C","global",16.769 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2263,"Simulated","C","global",16.8436 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2264,"Simulated","C","global",17.0093 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2265,"Simulated","C","global",16.9895 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2266,"Simulated","C","global",16.9514 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2267,"Simulated","C","global",17.1233 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2268,"Simulated","C","global",17.1285 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2269,"Simulated","C","global",17.2753 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2270,"Simulated","C","global",17.1926 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2271,"Simulated","C","global",17.1084 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2272,"Simulated","C","global",17.0248 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2273,"Simulated","C","global",17.0426 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2274,"Simulated","C","global",17.1018 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2275,"Simulated","C","global",16.9974 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2276,"Simulated","C","global",17.1175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2277,"Simulated","C","global",16.9961 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2278,"Simulated","C","global",17.2383 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2279,"Simulated","C","global",17.3491 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2280,"Simulated","C","global",17.2447 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2281,"Simulated","C","global",17.1888 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2282,"Simulated","C","global",17.2319 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2283,"Simulated","C","global",17.2662 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2284,"Simulated","C","global",17.2111 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2285,"Simulated","C","global",17.1781 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2286,"Simulated","C","global",17.1188 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2287,"Simulated","C","global",17.1936 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2288,"Simulated","C","global",17.2911 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2289,"Simulated","C","global",17.2505 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2290,"Simulated","C","global",17.2039 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2291,"Simulated","C","global",17.2786 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2292,"Simulated","C","global",17.1847 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2293,"Simulated","C","global",17.1071 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2294,"Simulated","C","global",17.2196 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2295,"Simulated","C","global",17.13 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2296,"Simulated","C","global",17.1188 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2297,"Simulated","C","global",17.2229 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2298,"Simulated","C","global",17.3401 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2299,"Simulated","C","global",17.3562 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2005,"Simulated","C","HL",-11.142025 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-8.23102499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-8.29082499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-8.26847499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-8.21147499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-8.27392499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-8.22124999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-8.10929999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-8.23847499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-7.98402499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-7.90959999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-7.79702499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-7.71842499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-7.74489999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-7.59392499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-7.68364999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-7.55099999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-7.65664999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-7.48489999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-7.49117499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-7.65912499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-7.23977499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-7.18074999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-7.34622499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-7.36042499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-7.32507499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-7.14107499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-7.08507499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-6.86592499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-6.95004999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-7.08097499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-7.08907499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-6.96844999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-6.77809999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-6.83942499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-6.73067499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-6.54787499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-6.57237499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-6.34632499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-6.47947499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-6.41032499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-6.15934999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-6.28064999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-6.17729999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-6.14684999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-6.24659999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-6.21999999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-6.04709999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-5.94644999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-5.92649999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-5.98954999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-5.82822499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-5.94199999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-5.67167499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-5.77062499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-5.65392499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-5.68134999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-5.85639999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-5.76909999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-5.78449999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-5.7887 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-5.50689999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-5.49249999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-5.51272499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-5.57354999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-5.56057499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-5.27857499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-5.35552499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-5.36934999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-5.53494999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-5.45209999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-5.47824999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-5.31522499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-5.04067499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-5.08557499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-5.09082499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-5.12404999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-5.18039999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-5.23612499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-5.19817499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-5.16087499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-4.98647499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-5.18334999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-5.15182499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-5.28052499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-5.26909999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-5.04749999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-5.12077499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-4.98232499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-5.04222499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-5.49004999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-5.28937499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-5.24144999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-5.15859999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-5.05157499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-5.19304999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-4.96209999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-4.96420000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2103,"Simulated","C","HL",-5.07869999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2104,"Simulated","C","HL",-5.31359999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2105,"Simulated","C","HL",-5.35399999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2106,"Simulated","C","HL",-5.02709999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2107,"Simulated","C","HL",-5.05179999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2108,"Simulated","C","HL",-5.20249999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2109,"Simulated","C","HL",-5.07739999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2110,"Simulated","C","HL",-4.86609999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2111,"Simulated","C","HL",-4.74709999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2112,"Simulated","C","HL",-4.84359999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2113,"Simulated","C","HL",-5.0335 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2114,"Simulated","C","HL",-5.26589999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2115,"Simulated","C","HL",-4.8972 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2116,"Simulated","C","HL",-5.05059999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2117,"Simulated","C","HL",-5.1678 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2118,"Simulated","C","HL",-4.8664 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2119,"Simulated","C","HL",-4.9316 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2120,"Simulated","C","HL",-4.6995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2121,"Simulated","C","HL",-4.75779999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2122,"Simulated","C","HL",-4.5924 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2123,"Simulated","C","HL",-4.41399999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2124,"Simulated","C","HL",-4.71789999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2125,"Simulated","C","HL",-4.80419999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2126,"Simulated","C","HL",-4.69119999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2127,"Simulated","C","HL",-4.58029999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2128,"Simulated","C","HL",-4.56599999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2129,"Simulated","C","HL",-4.53619999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2130,"Simulated","C","HL",-4.5181 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2131,"Simulated","C","HL",-4.58679999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2132,"Simulated","C","HL",-4.44 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2133,"Simulated","C","HL",-4.52969999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2134,"Simulated","C","HL",-4.4393 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2135,"Simulated","C","HL",-4.28869999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2136,"Simulated","C","HL",-4.58389999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2137,"Simulated","C","HL",-4.55379999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2138,"Simulated","C","HL",-4.637 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2139,"Simulated","C","HL",-4.9228 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2140,"Simulated","C","HL",-4.589 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2141,"Simulated","C","HL",-4.93119999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2142,"Simulated","C","HL",-4.74989999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2143,"Simulated","C","HL",-4.78039999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2144,"Simulated","C","HL",-4.9391 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2145,"Simulated","C","HL",-4.82909999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2146,"Simulated","C","HL",-4.8227 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2147,"Simulated","C","HL",-4.55829999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2148,"Simulated","C","HL",-4.43759999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2149,"Simulated","C","HL",-4.50579999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2150,"Simulated","C","HL",-4.56829999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2151,"Simulated","C","HL",-4.47359999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2152,"Simulated","C","HL",-4.64979999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2153,"Simulated","C","HL",-4.8605 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2154,"Simulated","C","HL",-4.84249999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2155,"Simulated","C","HL",-4.58389999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2156,"Simulated","C","HL",-4.36439999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2157,"Simulated","C","HL",-4.42829999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2158,"Simulated","C","HL",-4.33699999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2159,"Simulated","C","HL",-4.35829999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2160,"Simulated","C","HL",-4.69649999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2161,"Simulated","C","HL",-4.70229999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2162,"Simulated","C","HL",-4.70929999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2163,"Simulated","C","HL",-4.68539999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2164,"Simulated","C","HL",-4.49109999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2165,"Simulated","C","HL",-4.3279 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2166,"Simulated","C","HL",-4.39669999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2167,"Simulated","C","HL",-4.8442 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2168,"Simulated","C","HL",-4.92609999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2169,"Simulated","C","HL",-4.92629999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2170,"Simulated","C","HL",-4.94129999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2171,"Simulated","C","HL",-4.91129999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2172,"Simulated","C","HL",-4.7054 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2173,"Simulated","C","HL",-4.71459999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2174,"Simulated","C","HL",-4.78699999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2175,"Simulated","C","HL",-4.72389999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2176,"Simulated","C","HL",-4.52199999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2177,"Simulated","C","HL",-4.71009999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2178,"Simulated","C","HL",-4.40189999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2179,"Simulated","C","HL",-4.26749999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2180,"Simulated","C","HL",-4.2688 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2181,"Simulated","C","HL",-4.31629999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2182,"Simulated","C","HL",-4.71859999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2183,"Simulated","C","HL",-4.59859999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2184,"Simulated","C","HL",-4.28379999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2185,"Simulated","C","HL",-4.43809999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2186,"Simulated","C","HL",-4.08669999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2187,"Simulated","C","HL",-4.14099999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2188,"Simulated","C","HL",-4.27539999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2189,"Simulated","C","HL",-4.0308 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2190,"Simulated","C","HL",-4.3175 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2191,"Simulated","C","HL",-4.0385 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2192,"Simulated","C","HL",-3.84469999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2193,"Simulated","C","HL",-3.92079999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2194,"Simulated","C","HL",-3.82829999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2195,"Simulated","C","HL",-4.03459999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2196,"Simulated","C","HL",-4.0077 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2197,"Simulated","C","HL",-4.19619999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2198,"Simulated","C","HL",-4.06099999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2199,"Simulated","C","HL",-4.17609999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2200,"Simulated","C","HL",-4.64269999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2201,"Simulated","C","HL",-4.37009999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2202,"Simulated","C","HL",-4.2921 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2203,"Simulated","C","HL",-4.24029999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2204,"Simulated","C","HL",-4.25669999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2205,"Simulated","C","HL",-4.49969999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2206,"Simulated","C","HL",-4.46719999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2207,"Simulated","C","HL",-4.56559999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2208,"Simulated","C","HL",-4.53139999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2209,"Simulated","C","HL",-4.85509999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2210,"Simulated","C","HL",-4.40729999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2211,"Simulated","C","HL",-4.62379999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2212,"Simulated","C","HL",-4.7808 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2213,"Simulated","C","HL",-4.84359999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2214,"Simulated","C","HL",-4.71929999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2215,"Simulated","C","HL",-4.67329999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2216,"Simulated","C","HL",-4.6388 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2217,"Simulated","C","HL",-4.6189 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2218,"Simulated","C","HL",-4.26189999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2219,"Simulated","C","HL",-4.13979999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2220,"Simulated","C","HL",-4.44299999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2221,"Simulated","C","HL",-3.98269999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2222,"Simulated","C","HL",-4.3614 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2223,"Simulated","C","HL",-4.35069999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2224,"Simulated","C","HL",-4.26339999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2225,"Simulated","C","HL",-4.11439999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2226,"Simulated","C","HL",-4.55009999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2227,"Simulated","C","HL",-4.23169999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2228,"Simulated","C","HL",-4.08369999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2229,"Simulated","C","HL",-3.9006 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2230,"Simulated","C","HL",-3.91249999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2231,"Simulated","C","HL",-4.02369999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2232,"Simulated","C","HL",-3.95759999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2233,"Simulated","C","HL",-3.91369999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2234,"Simulated","C","HL",-4.0419 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2235,"Simulated","C","HL",-4.03449999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2236,"Simulated","C","HL",-3.84899999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2237,"Simulated","C","HL",-3.90429999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2238,"Simulated","C","HL",-3.87359999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2239,"Simulated","C","HL",-4.03969999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2240,"Simulated","C","HL",-3.76589999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2241,"Simulated","C","HL",-3.6918 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2242,"Simulated","C","HL",-4.0831 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2243,"Simulated","C","HL",-4.25039999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2244,"Simulated","C","HL",-4.1395 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2245,"Simulated","C","HL",-4.27229999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2246,"Simulated","C","HL",-4.23749999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2247,"Simulated","C","HL",-3.90339999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2248,"Simulated","C","HL",-4.07979999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2249,"Simulated","C","HL",-4.20139999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2250,"Simulated","C","HL",-4.19559999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2251,"Simulated","C","HL",-4.30879999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2252,"Simulated","C","HL",-4.23539999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2253,"Simulated","C","HL",-4.6318 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2254,"Simulated","C","HL",-4.38729999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2255,"Simulated","C","HL",-4.30239999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2256,"Simulated","C","HL",-4.28119999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2257,"Simulated","C","HL",-4.16999999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2258,"Simulated","C","HL",-3.96949999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2259,"Simulated","C","HL",-4.07659999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2260,"Simulated","C","HL",-4.26619999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2261,"Simulated","C","HL",-4.28089999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2262,"Simulated","C","HL",-4.4024 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2263,"Simulated","C","HL",-4.55459999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2264,"Simulated","C","HL",-4.2774 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2265,"Simulated","C","HL",-4.21019999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2266,"Simulated","C","HL",-4.16389999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2267,"Simulated","C","HL",-3.96839999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2268,"Simulated","C","HL",-4.05459999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2269,"Simulated","C","HL",-3.92009999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2270,"Simulated","C","HL",-3.94379999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2271,"Simulated","C","HL",-4.09889999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2272,"Simulated","C","HL",-4.00700000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2273,"Simulated","C","HL",-4.0068 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2274,"Simulated","C","HL",-3.82929999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2275,"Simulated","C","HL",-4.1114 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2276,"Simulated","C","HL",-3.78099999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2277,"Simulated","C","HL",-4.01669999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2278,"Simulated","C","HL",-3.98109999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2279,"Simulated","C","HL",-3.846 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2280,"Simulated","C","HL",-3.65619999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2281,"Simulated","C","HL",-3.8886 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2282,"Simulated","C","HL",-3.8537 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2283,"Simulated","C","HL",-3.84719999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2284,"Simulated","C","HL",-3.96009999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2285,"Simulated","C","HL",-3.78979999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2286,"Simulated","C","HL",-3.8295 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2287,"Simulated","C","HL",-3.91089999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2288,"Simulated","C","HL",-3.66089999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2289,"Simulated","C","HL",-3.738 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2290,"Simulated","C","HL",-3.93989999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2291,"Simulated","C","HL",-3.64349999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2292,"Simulated","C","HL",-3.81079999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2293,"Simulated","C","HL",-3.89079999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2294,"Simulated","C","HL",-3.9117 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2295,"Simulated","C","HL",-4.21420000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2296,"Simulated","C","HL",-3.9905 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2297,"Simulated","C","HL",-3.96609999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2298,"Simulated","C","HL",-3.91059999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2299,"Simulated","C","HL",-3.4348 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2005,"Simulated","C","LL",17.80945 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",19.570775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",19.67085 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",19.606075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",19.57765 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",19.573725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",19.639525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",19.701775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",19.691 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",19.7639 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",19.783475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",19.8674 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",19.9563 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",19.95465 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",19.930025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",19.908775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",20.008525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",20.032925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",20.0238 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",20.0339 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",20.1149 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",20.141725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",20.1455 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",20.250475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",20.2526 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",20.2538 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",20.2792 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",20.3164 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",20.37835 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",20.283325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",20.29845 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",20.3698 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",20.42315 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",20.447325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",20.524025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",20.51595 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",20.592425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",20.5685 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",20.572425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",20.602175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",20.63995 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",20.774725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",20.80615 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",20.8233 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",20.81705 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",20.812875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",20.767525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",20.874375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",20.91175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",20.931775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",20.97515 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",20.99115 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",21.050025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",21.04225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",21.04075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",21.08305 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",21.08025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",21.121925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",21.0977 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",21.154375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",21.1334 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",21.2363 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",21.22215 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",21.191675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",21.1811 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",21.185 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",21.204175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",21.182225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",21.2648 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",21.32825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",21.281025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",21.3396 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",21.4168 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",21.482525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",21.44375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",21.445475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",21.391875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",21.426925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",21.426825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",21.470675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",21.49565 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",21.4159 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",21.406025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",21.41455 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",21.408475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",21.3862 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",21.4295 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",21.5183 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",21.5028 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",21.469825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",21.519975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",21.5294 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",21.54005 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",21.53145 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",21.487 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",21.392475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",21.5414 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",21.5938 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2103,"Simulated","C","LL",21.5379 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2104,"Simulated","C","LL",21.3431 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2105,"Simulated","C","LL",21.3738 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2106,"Simulated","C","LL",21.4147 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2107,"Simulated","C","LL",21.398 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2108,"Simulated","C","LL",21.4975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2109,"Simulated","C","LL",21.6529 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2110,"Simulated","C","LL",21.6654 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2111,"Simulated","C","LL",21.7112 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2112,"Simulated","C","LL",21.5776 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2113,"Simulated","C","LL",21.5157 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2114,"Simulated","C","LL",21.5621 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2115,"Simulated","C","LL",21.5275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2116,"Simulated","C","LL",21.6361 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2117,"Simulated","C","LL",21.5005 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2118,"Simulated","C","LL",21.5953 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2119,"Simulated","C","LL",21.6386 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2120,"Simulated","C","LL",21.5351 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2121,"Simulated","C","LL",21.4974 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2122,"Simulated","C","LL",21.6806 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2123,"Simulated","C","LL",21.6207 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2124,"Simulated","C","LL",21.5988 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2125,"Simulated","C","LL",21.6738 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2126,"Simulated","C","LL",21.7183 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2127,"Simulated","C","LL",21.6431 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2128,"Simulated","C","LL",21.6261 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2129,"Simulated","C","LL",21.6267 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2130,"Simulated","C","LL",21.6281 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2131,"Simulated","C","LL",21.6764 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2132,"Simulated","C","LL",21.7056 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2133,"Simulated","C","LL",21.7855 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2134,"Simulated","C","LL",21.8367 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2135,"Simulated","C","LL",21.6601 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2136,"Simulated","C","LL",21.5953 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2137,"Simulated","C","LL",21.5907 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2138,"Simulated","C","LL",21.6266 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2139,"Simulated","C","LL",21.683 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2140,"Simulated","C","LL",21.5437 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2141,"Simulated","C","LL",21.5128 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2142,"Simulated","C","LL",21.5427 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2143,"Simulated","C","LL",21.5522 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2144,"Simulated","C","LL",21.5504 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2145,"Simulated","C","LL",21.4991 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2146,"Simulated","C","LL",21.4064 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2147,"Simulated","C","LL",21.4811 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2148,"Simulated","C","LL",21.6431 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2149,"Simulated","C","LL",21.7485 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2150,"Simulated","C","LL",21.6109 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2151,"Simulated","C","LL",21.7072 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2152,"Simulated","C","LL",21.6745 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2153,"Simulated","C","LL",21.4531 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2154,"Simulated","C","LL",21.4691 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2155,"Simulated","C","LL",21.6777 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2156,"Simulated","C","LL",21.8164 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2157,"Simulated","C","LL",21.6645 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2158,"Simulated","C","LL",21.6905 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2159,"Simulated","C","LL",21.7742 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2160,"Simulated","C","LL",21.6703 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2161,"Simulated","C","LL",21.6674 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2162,"Simulated","C","LL",21.6942 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2163,"Simulated","C","LL",21.6837 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2164,"Simulated","C","LL",21.7016 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2165,"Simulated","C","LL",21.6617 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2166,"Simulated","C","LL",21.7282 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2167,"Simulated","C","LL",21.6486 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2168,"Simulated","C","LL",21.6013 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2169,"Simulated","C","LL",21.5825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2170,"Simulated","C","LL",21.5106 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2171,"Simulated","C","LL",21.6838 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2172,"Simulated","C","LL",21.6947 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2173,"Simulated","C","LL",21.5561 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2174,"Simulated","C","LL",21.4925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2175,"Simulated","C","LL",21.6097 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2176,"Simulated","C","LL",21.5868 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2177,"Simulated","C","LL",21.6078 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2178,"Simulated","C","LL",21.6707 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2179,"Simulated","C","LL",21.6662 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2180,"Simulated","C","LL",21.6253 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2181,"Simulated","C","LL",21.7056 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2182,"Simulated","C","LL",21.7294 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2183,"Simulated","C","LL",21.775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2184,"Simulated","C","LL",21.746 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2185,"Simulated","C","LL",21.7413 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2186,"Simulated","C","LL",21.7937 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2187,"Simulated","C","LL",21.7407 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2188,"Simulated","C","LL",21.825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2189,"Simulated","C","LL",21.9788 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2190,"Simulated","C","LL",22.0508 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2191,"Simulated","C","LL",22.015 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2192,"Simulated","C","LL",21.9581 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2193,"Simulated","C","LL",22.0076 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2194,"Simulated","C","LL",21.9817 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2195,"Simulated","C","LL",21.7813 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2196,"Simulated","C","LL",21.7126 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2197,"Simulated","C","LL",21.6984 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2198,"Simulated","C","LL",21.8067 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2199,"Simulated","C","LL",21.8002 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2200,"Simulated","C","LL",21.7312 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2201,"Simulated","C","LL",21.7249 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2202,"Simulated","C","LL",21.668 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2203,"Simulated","C","LL",21.7318 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2204,"Simulated","C","LL",21.8497 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2205,"Simulated","C","LL",21.9101 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2206,"Simulated","C","LL",21.7388 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2207,"Simulated","C","LL",21.6597 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2208,"Simulated","C","LL",21.7085 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2209,"Simulated","C","LL",21.822 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2210,"Simulated","C","LL",21.674 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2211,"Simulated","C","LL",21.6353 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2212,"Simulated","C","LL",21.6763 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2213,"Simulated","C","LL",21.6321 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2214,"Simulated","C","LL",21.7631 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2215,"Simulated","C","LL",21.7841 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2216,"Simulated","C","LL",21.6577 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2217,"Simulated","C","LL",21.7197 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2218,"Simulated","C","LL",21.7833 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2219,"Simulated","C","LL",21.763 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2220,"Simulated","C","LL",21.7804 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2221,"Simulated","C","LL",21.852 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2222,"Simulated","C","LL",21.7114 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2223,"Simulated","C","LL",21.6956 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2224,"Simulated","C","LL",21.6946 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2225,"Simulated","C","LL",21.7918 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2226,"Simulated","C","LL",21.8644 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2227,"Simulated","C","LL",21.9324 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2228,"Simulated","C","LL",22.0201 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2229,"Simulated","C","LL",21.9521 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2230,"Simulated","C","LL",21.9152 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2231,"Simulated","C","LL",21.8248 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2232,"Simulated","C","LL",21.8146 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2233,"Simulated","C","LL",21.7706 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2234,"Simulated","C","LL",21.9697 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2235,"Simulated","C","LL",22.0839 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2236,"Simulated","C","LL",21.9205 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2237,"Simulated","C","LL",21.9439 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2238,"Simulated","C","LL",21.8472 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2239,"Simulated","C","LL",21.9558 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2240,"Simulated","C","LL",21.9644 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2241,"Simulated","C","LL",21.9321 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2242,"Simulated","C","LL",21.8249 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2243,"Simulated","C","LL",21.8051 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2244,"Simulated","C","LL",21.8566 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2245,"Simulated","C","LL",21.9228 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2246,"Simulated","C","LL",22.0595 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2247,"Simulated","C","LL",21.9895 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2248,"Simulated","C","LL",22.0918 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2249,"Simulated","C","LL",22.0687 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2250,"Simulated","C","LL",21.9956 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2251,"Simulated","C","LL",21.9517 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2252,"Simulated","C","LL",21.7997 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2253,"Simulated","C","LL",21.823 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2254,"Simulated","C","LL",21.8578 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2255,"Simulated","C","LL",21.9249 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2256,"Simulated","C","LL",21.9513 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2257,"Simulated","C","LL",21.9906 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2258,"Simulated","C","LL",22.0243 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2259,"Simulated","C","LL",21.9475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2260,"Simulated","C","LL",21.9374 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2261,"Simulated","C","LL",21.9004 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2262,"Simulated","C","LL",21.645 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2263,"Simulated","C","LL",21.7719 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2264,"Simulated","C","LL",21.9118 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2265,"Simulated","C","LL",21.8721 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2266,"Simulated","C","LL",21.8146 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2267,"Simulated","C","LL",21.981 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2268,"Simulated","C","LL",22.0073 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2269,"Simulated","C","LL",22.1569 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2270,"Simulated","C","LL",22.0606 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2271,"Simulated","C","LL",21.9927 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2272,"Simulated","C","LL",21.8687 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2273,"Simulated","C","LL",21.8905 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2274,"Simulated","C","LL",21.9225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2275,"Simulated","C","LL",21.859 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2276,"Simulated","C","LL",21.9308 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2277,"Simulated","C","LL",21.8356 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2278,"Simulated","C","LL",22.1255 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2279,"Simulated","C","LL",22.2306 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2280,"Simulated","C","LL",22.0584 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2281,"Simulated","C","LL",22.0433 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2282,"Simulated","C","LL",22.0882 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2283,"Simulated","C","LL",22.1289 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2284,"Simulated","C","LL",22.0872 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2285,"Simulated","C","LL",22.0073 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2286,"Simulated","C","LL",21.9434 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2287,"Simulated","C","LL",22.0543 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2288,"Simulated","C","LL",22.1167 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2289,"Simulated","C","LL",22.0845 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2290,"Simulated","C","LL",22.0738 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2291,"Simulated","C","LL",22.0974000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2292,"Simulated","C","LL",22.0203 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2293,"Simulated","C","LL",21.9432 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2294,"Simulated","C","LL",22.0864 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2295,"Simulated","C","LL",22.0458 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2296,"Simulated","C","LL",21.9806 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2297,"Simulated","C","LL",22.1031 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2298,"Simulated","C","LL",22.2344000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2299,"Simulated","C","LL",22.1446 -"inmcm4","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",13.8734 -"inmcm4","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",13.9497 -"inmcm4","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",13.9935 -"inmcm4","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",13.9465 -"inmcm4","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",13.9353 -"inmcm4","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",13.9282 -"inmcm4","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",13.9488 -"inmcm4","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.0084 -"inmcm4","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.0169 -"inmcm4","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",13.9114 -"inmcm4","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",13.9762 -"inmcm4","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",13.9653 -"inmcm4","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",13.9951 -"inmcm4","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",14.0245 -"inmcm4","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",13.9659 -"inmcm4","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",14.0841 -"inmcm4","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",14.0534 -"inmcm4","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",14.0595 -"inmcm4","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",14.0718 -"inmcm4","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",14.1657 -"inmcm4","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",14.1383 -"inmcm4","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",14.2321 -"inmcm4","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",14.1834 -"inmcm4","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",14.2166 -"inmcm4","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",14.284 -"inmcm4","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",14.191 -"inmcm4","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",14.2611 -"inmcm4","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",14.2505 -"inmcm4","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",14.289 -"inmcm4","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",14.4033 -"inmcm4","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",14.3604 -"inmcm4","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",14.3643 -"inmcm4","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",14.4443 -"inmcm4","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",14.3678 -"inmcm4","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",14.3804 -"inmcm4","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",14.4878 -"inmcm4","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",14.4553 -"inmcm4","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",14.37 -"inmcm4","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",14.379 -"inmcm4","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",14.4032 -"inmcm4","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",14.4358 -"inmcm4","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",14.4645 -"inmcm4","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",14.5136 -"inmcm4","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",14.5439 -"inmcm4","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",14.5117 -"inmcm4","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",14.5841 -"inmcm4","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",14.5873 -"inmcm4","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",14.6353 -"inmcm4","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",14.6354 -"inmcm4","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",14.638 -"inmcm4","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",14.6705 -"inmcm4","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",14.5606 -"inmcm4","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",14.5422 -"inmcm4","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",14.6289 -"inmcm4","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",14.7624 -"inmcm4","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",14.7677 -"inmcm4","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",14.6773 -"inmcm4","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",14.779 -"inmcm4","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",14.7269 -"inmcm4","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",14.7185 -"inmcm4","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",14.6476 -"inmcm4","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",14.7712 -"inmcm4","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",14.7484 -"inmcm4","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",14.7682 -"inmcm4","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",14.8325 -"inmcm4","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",14.8665 -"inmcm4","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",14.8846 -"inmcm4","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",14.9279 -"inmcm4","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",14.8073 -"inmcm4","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",14.8731 -"inmcm4","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",14.9109 -"inmcm4","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",14.9721 -"inmcm4","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",14.9788 -"inmcm4","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",15.0286 -"inmcm4","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",15.0437 -"inmcm4","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",14.9208 -"inmcm4","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",15.0165 -"inmcm4","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",14.9972 -"inmcm4","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",14.9836 -"inmcm4","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",15.057 -"inmcm4","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",14.8851 -"inmcm4","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",15.0128 -"inmcm4","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",15.072 -"inmcm4","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",15.06 -"inmcm4","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",15.0361 -"inmcm4","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",15.0283 -"inmcm4","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",15.0009 -"inmcm4","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",14.9955 -"inmcm4","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",14.9318 -"inmcm4","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",14.9658 -"inmcm4","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",15.0932 -"inmcm4","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",14.975 -"inmcm4","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",14.9823 -"inmcm4","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",15.0783 -"inmcm4","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",14.9792 -"inmcm4","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-8.34219999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-7.98339999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-7.83269999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-7.96429999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-7.82869999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-7.8836 -"inmcm4","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-7.79339999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-7.78909999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-7.6397 -"inmcm4","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-8.0598 -"inmcm4","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-7.82389999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-8.05449999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-7.69999999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-8.02459999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-7.9486 -"inmcm4","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-7.59249999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-7.79039999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-7.40049999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-7.65599999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-7.29829999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-7.65799999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-7.3605 -"inmcm4","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-7.35939999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-7.40940000000001 -"inmcm4","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-7.27909999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-7.5215 -"inmcm4","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-7.3433 -"inmcm4","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-7.57819999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-7.17529999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-7.16919999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-7.0403 -"inmcm4","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-7.32559999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-7.03139999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-6.83259999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-7.13139999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-6.97089999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-6.91889999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-7.2998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-6.89249999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-6.70489999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-6.75219999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-6.89529999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-6.73689999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-6.88669999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-6.93339999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-7.01219999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-7.03809999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-7.02519999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-6.95059999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-6.7099 -"inmcm4","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-6.53749999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-6.99339999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-6.76130000000001 -"inmcm4","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-6.8843 -"inmcm4","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-6.72679999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-6.524 -"inmcm4","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-6.91039999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-6.71509999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-6.93969999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-6.7484 -"inmcm4","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-6.97589999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-6.56609999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-6.67059999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-6.57239999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-6.58479999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-6.7244 -"inmcm4","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-6.40729999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-6.60309999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-6.63739999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-6.3938 -"inmcm4","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-6.33939999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-6.25349999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-6.00619999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-5.89299999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-6.03809999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-6.38999999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-6.35659999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-6.27979999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-6.10999999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-6.16589999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-6.3603 -"inmcm4","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-6.22519999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-6.03369999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-6.09449999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-6.25479999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-6.19059999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-6.10109999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-6.4024 -"inmcm4","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-6.35819999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-6.48609999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-6.27869999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-6.3365 -"inmcm4","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-6.1909 -"inmcm4","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-6.26429999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-6.41879999999998 -"inmcm4","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",18.6144 -"inmcm4","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",18.6304 -"inmcm4","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",18.6514 -"inmcm4","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",18.6224 -"inmcm4","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",18.5799 -"inmcm4","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",18.583 -"inmcm4","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",18.5887 -"inmcm4","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",18.6601 -"inmcm4","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",18.6385 -"inmcm4","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",18.6002 -"inmcm4","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",18.6285 -"inmcm4","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",18.6645 -"inmcm4","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",18.625 -"inmcm4","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",18.7299 -"inmcm4","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",18.6427 -"inmcm4","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",18.71 -"inmcm4","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",18.7151 -"inmcm4","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",18.6392 -"inmcm4","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",18.7087 -"inmcm4","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",18.7462 -"inmcm4","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",18.7898 -"inmcm4","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",18.8402 -"inmcm4","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",18.7808 -"inmcm4","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",18.8317 -"inmcm4","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",18.8857 -"inmcm4","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",18.8246 -"inmcm4","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",18.8716 -"inmcm4","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",18.9089 -"inmcm4","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",18.8697 -"inmcm4","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",19.007 -"inmcm4","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",18.9274 -"inmcm4","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",18.9931 -"inmcm4","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",19.0273 -"inmcm4","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",18.8921 -"inmcm4","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",18.9712 -"inmcm4","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",19.0672 -"inmcm4","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",19.0167 -"inmcm4","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",18.9945 -"inmcm4","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",18.9185 -"inmcm4","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",18.9079 -"inmcm4","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",18.9575 -"inmcm4","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",19.0228 -"inmcm4","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",19.0486 -"inmcm4","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",19.1174 -"inmcm4","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",19.0882 -"inmcm4","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",19.1929 -"inmcm4","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",19.2023 -"inmcm4","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",19.2578 -"inmcm4","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",19.242 -"inmcm4","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",19.1938 -"inmcm4","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",19.1964 -"inmcm4","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",19.1604 -"inmcm4","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",19.0885 -"inmcm4","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",19.22 -"inmcm4","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",19.3483 -"inmcm4","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",19.3115 -"inmcm4","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",19.2843 -"inmcm4","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",19.3659 -"inmcm4","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",19.3507 -"inmcm4","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",19.2997 -"inmcm4","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",19.2622 -"inmcm4","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",19.3248 -"inmcm4","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",19.3194 -"inmcm4","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",19.3225 -"inmcm4","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",19.4031 -"inmcm4","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",19.4742 -"inmcm4","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",19.4284 -"inmcm4","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",19.5228 -"inmcm4","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",19.3838 -"inmcm4","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",19.4116 -"inmcm4","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",19.4459 -"inmcm4","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",19.5018 -"inmcm4","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",19.4571 -"inmcm4","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",19.4934 -"inmcm4","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",19.5427 -"inmcm4","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",19.4687 -"inmcm4","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",19.5777 -"inmcm4","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",19.5379 -"inmcm4","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",19.4851 -"inmcm4","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",19.5861 -"inmcm4","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",19.419 -"inmcm4","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",19.5452 -"inmcm4","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",19.5761 -"inmcm4","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",19.5746 -"inmcm4","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",19.5798 -"inmcm4","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",19.5566 -"inmcm4","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",19.5043 -"inmcm4","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",19.562 -"inmcm4","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",19.4752 -"inmcm4","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",19.5438 -"inmcm4","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",19.6541 -"inmcm4","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",19.5231 -"inmcm4","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",19.5009 -"inmcm4","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",19.633 -"inmcm4","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",19.5457 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",13.4292 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",13.458975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",13.49205 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",13.43825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",13.50115 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",13.554575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",13.576125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",13.6537 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",13.751525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",13.64885 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",13.69345 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",13.6377 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",13.7071 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",13.757225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",13.72065 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",13.8211 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",13.926075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",13.859975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",13.915025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",13.902525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",14.001375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",13.964225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",13.99535 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",14.153175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",14.071325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",14.0326 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",14.138 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",14.1744 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",14.25575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",14.282925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",14.3382 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",14.346475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",14.3693 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",14.399775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",14.468725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",14.3991 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",14.39205 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",14.4133 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",14.4431 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",14.529975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",14.57905 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",14.690875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",14.71805 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",14.796375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",14.7313 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",14.7192 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",14.7709 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",14.7917 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",14.727825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",14.791425 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",14.848725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",14.88255 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",14.989675 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",14.97575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",14.911775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",14.94215 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",15.013725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",15.01355 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",15.02455 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",15.053775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",15.008275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",15.00225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",15.065575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",15.0011 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",15.113725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",15.10855 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",15.0227 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",15.09725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",15.146825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",15.118 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",15.173675 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",15.19935 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",15.1753 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",15.094375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",15.1562 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",15.2748 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",15.22745 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",15.234875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",15.16705 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",15.226925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",15.30755 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",15.2771 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",15.308325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",15.3271 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",15.32615 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",15.26385 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",15.325425 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",15.341775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",15.37975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",15.26565 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",15.319475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",15.312225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",15.295225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",15.44435 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",15.381325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",15.6251 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",15.5862 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2103,"Simulated","C","global",15.5068 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2104,"Simulated","C","global",15.4011 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2105,"Simulated","C","global",15.5086 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2106,"Simulated","C","global",15.4495 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2107,"Simulated","C","global",15.4 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2108,"Simulated","C","global",15.4098 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2109,"Simulated","C","global",15.454 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2110,"Simulated","C","global",15.3723 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2111,"Simulated","C","global",15.5636 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2112,"Simulated","C","global",15.419 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2113,"Simulated","C","global",15.3592 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2114,"Simulated","C","global",15.3701 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2115,"Simulated","C","global",15.4004 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2116,"Simulated","C","global",15.4931 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2117,"Simulated","C","global",15.4058 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2118,"Simulated","C","global",15.5352 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2119,"Simulated","C","global",15.568 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2120,"Simulated","C","global",15.3893 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2121,"Simulated","C","global",15.2949 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2122,"Simulated","C","global",15.437 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2123,"Simulated","C","global",15.6157 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2124,"Simulated","C","global",15.437 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2125,"Simulated","C","global",15.474 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2126,"Simulated","C","global",15.3947 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2127,"Simulated","C","global",15.591 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2128,"Simulated","C","global",15.5474 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2129,"Simulated","C","global",15.3622 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2130,"Simulated","C","global",15.5331 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2131,"Simulated","C","global",15.4359 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2132,"Simulated","C","global",15.4899 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2133,"Simulated","C","global",15.455 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2134,"Simulated","C","global",15.617 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2135,"Simulated","C","global",15.5152 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2136,"Simulated","C","global",15.3751 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2137,"Simulated","C","global",15.5078 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2138,"Simulated","C","global",15.6508 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2139,"Simulated","C","global",15.3383 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2140,"Simulated","C","global",15.2396 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2141,"Simulated","C","global",15.3128 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2142,"Simulated","C","global",15.3837 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2143,"Simulated","C","global",15.59 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2144,"Simulated","C","global",15.3214 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2145,"Simulated","C","global",15.4972 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2146,"Simulated","C","global",15.3601 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2147,"Simulated","C","global",15.491 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2148,"Simulated","C","global",15.7538 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2149,"Simulated","C","global",15.4723 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2150,"Simulated","C","global",15.4637 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2151,"Simulated","C","global",15.6065 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2152,"Simulated","C","global",15.6328 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2153,"Simulated","C","global",15.5802 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2154,"Simulated","C","global",15.4842 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2155,"Simulated","C","global",15.7288 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2156,"Simulated","C","global",15.7377 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2157,"Simulated","C","global",15.7457 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2158,"Simulated","C","global",15.725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2159,"Simulated","C","global",15.681 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2160,"Simulated","C","global",15.8135 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2161,"Simulated","C","global",15.796 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2162,"Simulated","C","global",15.698 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2163,"Simulated","C","global",15.6544 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2164,"Simulated","C","global",15.5938 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2165,"Simulated","C","global",15.544 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2166,"Simulated","C","global",15.6263 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2167,"Simulated","C","global",15.5374 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2168,"Simulated","C","global",15.6354 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2169,"Simulated","C","global",15.6663 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2170,"Simulated","C","global",15.5934 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2171,"Simulated","C","global",15.5843 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2172,"Simulated","C","global",15.5906 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2173,"Simulated","C","global",15.5643 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2174,"Simulated","C","global",15.5924 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2175,"Simulated","C","global",15.5547 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2176,"Simulated","C","global",15.3877 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2177,"Simulated","C","global",15.5694 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2178,"Simulated","C","global",15.7163 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2179,"Simulated","C","global",15.757 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2180,"Simulated","C","global",15.5473 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2181,"Simulated","C","global",15.4669 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2182,"Simulated","C","global",15.6129 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2183,"Simulated","C","global",15.5415 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2184,"Simulated","C","global",15.6647 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2185,"Simulated","C","global",15.6918 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2186,"Simulated","C","global",15.6066 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2187,"Simulated","C","global",15.5416 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2188,"Simulated","C","global",15.7476 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2189,"Simulated","C","global",15.7088 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2190,"Simulated","C","global",15.8269 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2191,"Simulated","C","global",15.853 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2192,"Simulated","C","global",15.7058 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2193,"Simulated","C","global",15.6387 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2194,"Simulated","C","global",15.6966 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2195,"Simulated","C","global",15.6744 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2196,"Simulated","C","global",15.6641 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2197,"Simulated","C","global",15.5667 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2198,"Simulated","C","global",15.609 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2199,"Simulated","C","global",15.7282 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2200,"Simulated","C","global",15.7908 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2201,"Simulated","C","global",15.6562 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2202,"Simulated","C","global",15.9207 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2203,"Simulated","C","global",15.9648 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2204,"Simulated","C","global",15.8173 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2205,"Simulated","C","global",15.5266 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2206,"Simulated","C","global",15.7131 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2207,"Simulated","C","global",15.8678 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2208,"Simulated","C","global",15.8447 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2209,"Simulated","C","global",15.7146 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2210,"Simulated","C","global",15.724 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2211,"Simulated","C","global",15.9504 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2212,"Simulated","C","global",15.7956 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2213,"Simulated","C","global",15.868 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2214,"Simulated","C","global",15.9192 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2215,"Simulated","C","global",15.7747 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2216,"Simulated","C","global",15.8535 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2217,"Simulated","C","global",15.9093 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2218,"Simulated","C","global",15.8877 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2219,"Simulated","C","global",15.6093 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2220,"Simulated","C","global",15.6362 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2221,"Simulated","C","global",15.8085 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2222,"Simulated","C","global",15.7267000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2223,"Simulated","C","global",15.5244 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2224,"Simulated","C","global",15.6164 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2225,"Simulated","C","global",15.628 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2226,"Simulated","C","global",15.5186 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2227,"Simulated","C","global",15.7475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2228,"Simulated","C","global",15.5298 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2229,"Simulated","C","global",15.6165 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2230,"Simulated","C","global",15.5084 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2231,"Simulated","C","global",15.7338 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2232,"Simulated","C","global",15.8304 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2233,"Simulated","C","global",15.9286 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2234,"Simulated","C","global",15.7945 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2235,"Simulated","C","global",15.8 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2236,"Simulated","C","global",15.7888 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2237,"Simulated","C","global",15.7455 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2238,"Simulated","C","global",15.6087 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2239,"Simulated","C","global",15.8583 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2240,"Simulated","C","global",15.9416000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2241,"Simulated","C","global",15.9788 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2242,"Simulated","C","global",15.8811 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2243,"Simulated","C","global",15.8625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2244,"Simulated","C","global",15.8171 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2245,"Simulated","C","global",15.9139 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2246,"Simulated","C","global",15.8835 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2247,"Simulated","C","global",15.9391 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2248,"Simulated","C","global",16.0125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2249,"Simulated","C","global",16.0579 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2250,"Simulated","C","global",16.0195000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2251,"Simulated","C","global",15.883 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2252,"Simulated","C","global",15.885 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2253,"Simulated","C","global",15.8346 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2254,"Simulated","C","global",15.8842 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2255,"Simulated","C","global",15.9352 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2256,"Simulated","C","global",15.9611 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2257,"Simulated","C","global",15.826 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2258,"Simulated","C","global",15.8886 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2259,"Simulated","C","global",16.0284 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2260,"Simulated","C","global",16.032 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2261,"Simulated","C","global",16.1014 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2262,"Simulated","C","global",16.0027 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2263,"Simulated","C","global",15.9909 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2264,"Simulated","C","global",15.8692 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2265,"Simulated","C","global",15.8751 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2266,"Simulated","C","global",15.9648 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2267,"Simulated","C","global",16.0077 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2268,"Simulated","C","global",15.9415 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2269,"Simulated","C","global",15.8743 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2270,"Simulated","C","global",15.9459 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2271,"Simulated","C","global",16.1254 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2272,"Simulated","C","global",16.0929 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2273,"Simulated","C","global",15.9009 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2274,"Simulated","C","global",15.8518 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2275,"Simulated","C","global",15.9883 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2276,"Simulated","C","global",15.8805 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2277,"Simulated","C","global",15.7553 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2278,"Simulated","C","global",15.9024 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2279,"Simulated","C","global",15.6483 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2280,"Simulated","C","global",15.7452 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2281,"Simulated","C","global",15.8778 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2282,"Simulated","C","global",16.1753 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2283,"Simulated","C","global",15.792 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2284,"Simulated","C","global",15.7876 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2285,"Simulated","C","global",15.6996 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2286,"Simulated","C","global",15.9183 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2287,"Simulated","C","global",16.0354 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2288,"Simulated","C","global",16.0124 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2289,"Simulated","C","global",15.8440000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2290,"Simulated","C","global",15.9085 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2291,"Simulated","C","global",16.0412 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2292,"Simulated","C","global",16.039 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2293,"Simulated","C","global",16.0904 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2294,"Simulated","C","global",15.8767 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2295,"Simulated","C","global",15.9972 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2296,"Simulated","C","global",15.9908 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2297,"Simulated","C","global",16.0164 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2298,"Simulated","C","global",16.1829 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2299,"Simulated","C","global",16.2631 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2300,"Simulated","C","global",16.2109 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-8.83459999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-8.65307499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-8.60432499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-8.84252499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-8.69182499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-8.52974999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-8.58109999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-8.51184999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-8.30294999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-8.63467499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-8.33304999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-8.69427499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-8.52102499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-8.37299999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-8.52332499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-8.32399999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-8.07094999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-8.42674999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-8.19037499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-8.26952499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-8.19162499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-8.03897499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-8.14697499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-7.91417499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-8.05937499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-8.02859999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-7.86862499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-7.92792499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-7.82329999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-7.82647499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-7.64379999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-7.63822499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-7.51802499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-7.56704999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-7.56257499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-7.82824999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-7.59769999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-7.65569999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-7.62164999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-7.45359999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-7.53669999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-7.19332499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-7.26869999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-7.15964999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-7.17019999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-7.15367499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-7.10067499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-7.15662499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-7.25829999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-7.09252499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-6.91924999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-7.00687499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-6.92619999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-6.85359999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-6.85919999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-6.95694999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-6.74899999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-6.82654999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-7.01632499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-6.89329999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-7.00747499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-6.89944999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-6.78792499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-6.99162499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-6.80684999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-6.82402499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-6.82582499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-6.70849999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-6.67649999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-6.76764999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-6.66587499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-6.60967499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-6.52804999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-6.89144999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-6.70824999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-6.45325 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-6.70332499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-6.72347499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-6.66484999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-6.54282499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-6.23524999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-6.52012499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-6.42672499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-6.33534999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-6.32624999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-6.51242499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-6.57102499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-6.58502499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-6.38604999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-6.46529999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-6.41637499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-6.57829999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-6.53912499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-6.30192499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-6.32627499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-5.7953 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-6.03309999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2103,"Simulated","C","HL",-6.24769999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2104,"Simulated","C","HL",-6.38819999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2105,"Simulated","C","HL",-6.29109999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2106,"Simulated","C","HL",-6.07999999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2107,"Simulated","C","HL",-6.29309999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2108,"Simulated","C","HL",-6.06459999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2109,"Simulated","C","HL",-6.44999999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2110,"Simulated","C","HL",-6.09769999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2111,"Simulated","C","HL",-6.06059999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2112,"Simulated","C","HL",-6.274 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2113,"Simulated","C","HL",-6.35559999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2114,"Simulated","C","HL",-6.7122 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2115,"Simulated","C","HL",-6.39149999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2116,"Simulated","C","HL",-6.15299999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2117,"Simulated","C","HL",-6.29229999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2118,"Simulated","C","HL",-6.30959999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2119,"Simulated","C","HL",-6.4674 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2120,"Simulated","C","HL",-6.28929999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2121,"Simulated","C","HL",-6.3999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2122,"Simulated","C","HL",-6.13529999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2123,"Simulated","C","HL",-6.24599999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2124,"Simulated","C","HL",-6.64579999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2125,"Simulated","C","HL",-6.38229999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2126,"Simulated","C","HL",-6.2901 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2127,"Simulated","C","HL",-5.96509999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2128,"Simulated","C","HL",-6.23169999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2129,"Simulated","C","HL",-6.565 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2130,"Simulated","C","HL",-6.63829999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2131,"Simulated","C","HL",-6.43379999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2132,"Simulated","C","HL",-5.8759 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2133,"Simulated","C","HL",-6.14169999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2134,"Simulated","C","HL",-6.06549999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2135,"Simulated","C","HL",-6.36929999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2136,"Simulated","C","HL",-6.67629999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2137,"Simulated","C","HL",-6.38569999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2138,"Simulated","C","HL",-6.46479999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2139,"Simulated","C","HL",-6.90170000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2140,"Simulated","C","HL",-6.82389999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2141,"Simulated","C","HL",-6.69729999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2142,"Simulated","C","HL",-6.6096 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2143,"Simulated","C","HL",-6.45729999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2144,"Simulated","C","HL",-6.7878 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2145,"Simulated","C","HL",-6.18639999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2146,"Simulated","C","HL",-6.40129999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2147,"Simulated","C","HL",-6.00579999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2148,"Simulated","C","HL",-5.79949999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2149,"Simulated","C","HL",-6.53319999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2150,"Simulated","C","HL",-6.45849999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2151,"Simulated","C","HL",-6.10129999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2152,"Simulated","C","HL",-5.97899999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2153,"Simulated","C","HL",-6.21679999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2154,"Simulated","C","HL",-6.08779999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2155,"Simulated","C","HL",-5.49439999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2156,"Simulated","C","HL",-5.91789999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2157,"Simulated","C","HL",-5.86899999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2158,"Simulated","C","HL",-5.8064 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2159,"Simulated","C","HL",-5.7681 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2160,"Simulated","C","HL",-5.32369999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2161,"Simulated","C","HL",-5.56899999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2162,"Simulated","C","HL",-5.58209999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2163,"Simulated","C","HL",-5.6816 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2164,"Simulated","C","HL",-6.24309999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2165,"Simulated","C","HL",-6.29329999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2166,"Simulated","C","HL",-6.12439999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2167,"Simulated","C","HL",-6.45839999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2168,"Simulated","C","HL",-6.27789999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2169,"Simulated","C","HL",-5.89959999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2170,"Simulated","C","HL",-6.25329999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2171,"Simulated","C","HL",-6.36739999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2172,"Simulated","C","HL",-6.18739999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2173,"Simulated","C","HL",-6.32999999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2174,"Simulated","C","HL",-6.0018 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2175,"Simulated","C","HL",-6.13119999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2176,"Simulated","C","HL",-6.66669999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2177,"Simulated","C","HL",-6.19289999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2178,"Simulated","C","HL",-6.33639999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2179,"Simulated","C","HL",-6.00099999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2180,"Simulated","C","HL",-6.2688 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2181,"Simulated","C","HL",-6.7731 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2182,"Simulated","C","HL",-6.3673 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2183,"Simulated","C","HL",-6.35539999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2184,"Simulated","C","HL",-6.17929999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2185,"Simulated","C","HL",-5.78299999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2186,"Simulated","C","HL",-6.10729999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2187,"Simulated","C","HL",-6.1198 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2188,"Simulated","C","HL",-5.86269999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2189,"Simulated","C","HL",-6.2167 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2190,"Simulated","C","HL",-5.7713 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2191,"Simulated","C","HL",-5.54829999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2192,"Simulated","C","HL",-6.24019999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2193,"Simulated","C","HL",-6.21369999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2194,"Simulated","C","HL",-6.17099999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2195,"Simulated","C","HL",-6.14949999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2196,"Simulated","C","HL",-6.19719999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2197,"Simulated","C","HL",-6.51649999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2198,"Simulated","C","HL",-6.26319999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2199,"Simulated","C","HL",-6.0505 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2200,"Simulated","C","HL",-6.24279999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2201,"Simulated","C","HL",-6.55059999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2202,"Simulated","C","HL",-5.79789999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2203,"Simulated","C","HL",-5.52609999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2204,"Simulated","C","HL",-5.93349999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2205,"Simulated","C","HL",-6.3691 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2206,"Simulated","C","HL",-5.95169999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2207,"Simulated","C","HL",-5.6397 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2208,"Simulated","C","HL",-5.99099999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2209,"Simulated","C","HL",-5.94279999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2210,"Simulated","C","HL",-6.0102 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2211,"Simulated","C","HL",-5.55959999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2212,"Simulated","C","HL",-5.84309999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2213,"Simulated","C","HL",-6.22739999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2214,"Simulated","C","HL",-6.10609999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2215,"Simulated","C","HL",-6.09179999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2216,"Simulated","C","HL",-5.9169 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2217,"Simulated","C","HL",-6.02719999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2218,"Simulated","C","HL",-5.77879999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2219,"Simulated","C","HL",-6.24529999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2220,"Simulated","C","HL",-6.2672 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2221,"Simulated","C","HL",-5.98919999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2222,"Simulated","C","HL",-6.20479999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2223,"Simulated","C","HL",-6.42789999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2224,"Simulated","C","HL",-6.0444 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2225,"Simulated","C","HL",-6.27109999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2226,"Simulated","C","HL",-6.43239999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2227,"Simulated","C","HL",-6.3039 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2228,"Simulated","C","HL",-6.20099999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2229,"Simulated","C","HL",-5.8879 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2230,"Simulated","C","HL",-6.6182 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2231,"Simulated","C","HL",-5.93869999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2232,"Simulated","C","HL",-5.76249999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2233,"Simulated","C","HL",-5.8621 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2234,"Simulated","C","HL",-5.8981 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2235,"Simulated","C","HL",-5.65569999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2236,"Simulated","C","HL",-5.85429999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2237,"Simulated","C","HL",-6.08569999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2238,"Simulated","C","HL",-6.3664 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2239,"Simulated","C","HL",-5.61179999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2240,"Simulated","C","HL",-5.35149999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2241,"Simulated","C","HL",-5.49539999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2242,"Simulated","C","HL",-5.79019999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2243,"Simulated","C","HL",-5.9658 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2244,"Simulated","C","HL",-5.90459999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2245,"Simulated","C","HL",-5.47559999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2246,"Simulated","C","HL",-5.5093 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2247,"Simulated","C","HL",-5.62639999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2248,"Simulated","C","HL",-5.13619999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2249,"Simulated","C","HL",-5.26029999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2250,"Simulated","C","HL",-5.70279999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2251,"Simulated","C","HL",-5.81699999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2252,"Simulated","C","HL",-6.02509999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2253,"Simulated","C","HL",-5.91539999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2254,"Simulated","C","HL",-5.82939999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2255,"Simulated","C","HL",-5.49019999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2256,"Simulated","C","HL",-5.661 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2257,"Simulated","C","HL",-5.85379999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2258,"Simulated","C","HL",-5.70650000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2259,"Simulated","C","HL",-5.3175 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2260,"Simulated","C","HL",-5.29579999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2261,"Simulated","C","HL",-4.98499999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2262,"Simulated","C","HL",-5.3888 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2263,"Simulated","C","HL",-5.61329999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2264,"Simulated","C","HL",-5.64019999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2265,"Simulated","C","HL",-5.92859999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2266,"Simulated","C","HL",-5.69439999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2267,"Simulated","C","HL",-5.5874 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2268,"Simulated","C","HL",-5.4101 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2269,"Simulated","C","HL",-5.5061 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2270,"Simulated","C","HL",-5.50209999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2271,"Simulated","C","HL",-5.21349999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2272,"Simulated","C","HL",-5.17289999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2273,"Simulated","C","HL",-5.75529999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2274,"Simulated","C","HL",-5.5752 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2275,"Simulated","C","HL",-5.55439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2276,"Simulated","C","HL",-5.86279999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2277,"Simulated","C","HL",-5.55869999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2278,"Simulated","C","HL",-5.7414 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2279,"Simulated","C","HL",-6.51189999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2280,"Simulated","C","HL",-5.99029999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2281,"Simulated","C","HL",-5.91499999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2282,"Simulated","C","HL",-5.38979999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2283,"Simulated","C","HL",-5.85699999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2284,"Simulated","C","HL",-6.02019999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2285,"Simulated","C","HL",-6.28389999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2286,"Simulated","C","HL",-5.67779999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2287,"Simulated","C","HL",-5.40189999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2288,"Simulated","C","HL",-5.45709999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2289,"Simulated","C","HL",-5.71599999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2290,"Simulated","C","HL",-5.947 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2291,"Simulated","C","HL",-5.6857 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2292,"Simulated","C","HL",-5.5641 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2293,"Simulated","C","HL",-5.32309999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2294,"Simulated","C","HL",-5.81399999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2295,"Simulated","C","HL",-5.49859999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2296,"Simulated","C","HL",-5.65179999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2297,"Simulated","C","HL",-5.36839999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2298,"Simulated","C","HL",-5.26779999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2299,"Simulated","C","HL",-5.30809999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2300,"Simulated","C","HL",-5.04259999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",18.365675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",18.361775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",18.39145 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",18.37845 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",18.422 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",18.451225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",18.48895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",18.568375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",18.641625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",18.58975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",18.57735 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",18.589275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",18.63565 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",18.6641 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",18.65285 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",18.731225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",18.803425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",18.8016 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",18.81645 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",18.818675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",18.9221 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",18.84295 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",18.904925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",19.0461 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",18.978325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",18.9241 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",19.0175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",19.07505 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",19.151275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",19.18515 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",19.212175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",19.2211 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",19.2223 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",19.270375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",19.353575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",19.32745 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",19.2677 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",19.306575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",19.335375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",19.404325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",19.482725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",19.543275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",19.593 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",19.66455 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",19.58745 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",19.569 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",19.6204 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",19.65815 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",19.6027 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",19.6437 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",19.6753 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",19.736025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",19.849 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",19.8158 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",19.739125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",19.7978 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",19.839075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",19.85605 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",19.911625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",19.920075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",19.8897 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",19.85845 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",19.911 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",19.877425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",19.9741 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",19.971625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",19.867125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",19.93205 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",19.985625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",19.9706 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",20.0161 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",20.034975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",19.987475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",19.96925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",20.00405 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",20.09245 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",20.08995 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",20.103575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",20.0078 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",20.0539 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",20.08415 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",20.11015 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",20.1275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",20.130325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",20.12705 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",20.09225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",20.180375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",20.203525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",20.2058 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",20.084 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",20.13885 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",20.1659 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",20.136475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",20.265925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",20.1945 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",20.3747 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",20.3801 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2103,"Simulated","C","LL",20.3304 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2104,"Simulated","C","LL",20.2322 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2105,"Simulated","C","LL",20.3423 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2106,"Simulated","C","LL",20.2233 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2107,"Simulated","C","LL",20.2098 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2108,"Simulated","C","LL",20.1713 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2109,"Simulated","C","LL",20.3108 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2110,"Simulated","C","LL",20.1327 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2111,"Simulated","C","LL",20.3584 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2112,"Simulated","C","LL",20.2289 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2113,"Simulated","C","LL",20.1741 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2114,"Simulated","C","LL",20.2663 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2115,"Simulated","C","LL",20.2322 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2116,"Simulated","C","LL",20.2927 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2117,"Simulated","C","LL",20.2168 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2118,"Simulated","C","LL",20.3788 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2119,"Simulated","C","LL",20.4538 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2120,"Simulated","C","LL",20.196 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2121,"Simulated","C","LL",20.1052 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2122,"Simulated","C","LL",20.22 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2123,"Simulated","C","LL",20.4627 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2124,"Simulated","C","LL",20.3334 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2125,"Simulated","C","LL",20.3201 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2126,"Simulated","C","LL",20.2027 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2127,"Simulated","C","LL",20.3704 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2128,"Simulated","C","LL",20.3763 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2129,"Simulated","C","LL",20.2237 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2130,"Simulated","C","LL",20.4491 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2131,"Simulated","C","LL",20.2849000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2132,"Simulated","C","LL",20.2271 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2133,"Simulated","C","LL",20.2435 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2134,"Simulated","C","LL",20.4245 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2135,"Simulated","C","LL",20.3675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2136,"Simulated","C","LL",20.2644 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2137,"Simulated","C","LL",20.3622 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2138,"Simulated","C","LL",20.5543 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2139,"Simulated","C","LL",20.2695000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2140,"Simulated","C","LL",20.1316 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2141,"Simulated","C","LL",20.193 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2142,"Simulated","C","LL",20.2601 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2143,"Simulated","C","LL",20.4785 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2144,"Simulated","C","LL",20.2236 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2145,"Simulated","C","LL",20.3051 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2146,"Simulated","C","LL",20.1852 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2147,"Simulated","C","LL",20.2574 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2148,"Simulated","C","LL",20.5327 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2149,"Simulated","C","LL",20.3514 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2150,"Simulated","C","LL",20.3244 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2151,"Simulated","C","LL",20.4197 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2152,"Simulated","C","LL",20.4248 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2153,"Simulated","C","LL",20.4133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2154,"Simulated","C","LL",20.2673 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2155,"Simulated","C","LL",20.4347 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2156,"Simulated","C","LL",20.5393 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2157,"Simulated","C","LL",20.5383 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2158,"Simulated","C","LL",20.499 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2159,"Simulated","C","LL",20.4368 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2160,"Simulated","C","LL",20.5001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2161,"Simulated","C","LL",20.5333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2162,"Simulated","C","LL",20.4163 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2163,"Simulated","C","LL",20.3851 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2164,"Simulated","C","LL",20.4356 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2165,"Simulated","C","LL",20.386 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2166,"Simulated","C","LL",20.4489 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2167,"Simulated","C","LL",20.4145 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2168,"Simulated","C","LL",20.4941 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2169,"Simulated","C","LL",20.448 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2170,"Simulated","C","LL",20.4373000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2171,"Simulated","C","LL",20.4515 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2172,"Simulated","C","LL",20.4194 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2173,"Simulated","C","LL",20.4188 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2174,"Simulated","C","LL",20.3803 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2175,"Simulated","C","LL",20.3632 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2176,"Simulated","C","LL",20.2777 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2177,"Simulated","C","LL",20.3946 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2178,"Simulated","C","LL",20.6059 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2179,"Simulated","C","LL",20.581 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2180,"Simulated","C","LL",20.3844 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2181,"Simulated","C","LL",20.3979 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2182,"Simulated","C","LL",20.4865 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2183,"Simulated","C","LL",20.3966 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2184,"Simulated","C","LL",20.5081 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2185,"Simulated","C","LL",20.4533 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2186,"Simulated","C","LL",20.4212 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2187,"Simulated","C","LL",20.3447 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2188,"Simulated","C","LL",20.5391 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2189,"Simulated","C","LL",20.5702 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2190,"Simulated","C","LL",20.6158 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2191,"Simulated","C","LL",20.5983 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2192,"Simulated","C","LL",20.572 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2193,"Simulated","C","LL",20.4839 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2194,"Simulated","C","LL",20.5452 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2195,"Simulated","C","LL",20.5134 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2196,"Simulated","C","LL",20.511 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2197,"Simulated","C","LL",20.4631 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2198,"Simulated","C","LL",20.4584 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2199,"Simulated","C","LL",20.5571 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2200,"Simulated","C","LL",20.6762 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2201,"Simulated","C","LL",20.58 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2202,"Simulated","C","LL",20.7363 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2203,"Simulated","C","LL",20.7297 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2204,"Simulated","C","LL",20.6401 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2205,"Simulated","C","LL",20.3816 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2206,"Simulated","C","LL",20.5167 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2207,"Simulated","C","LL",20.6365 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2208,"Simulated","C","LL",20.6862 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2209,"Simulated","C","LL",20.5167 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2210,"Simulated","C","LL",20.5431 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2211,"Simulated","C","LL",20.7197 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2212,"Simulated","C","LL",20.5935 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2213,"Simulated","C","LL",20.7672 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2214,"Simulated","C","LL",20.8027 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2215,"Simulated","C","LL",20.6229 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2216,"Simulated","C","LL",20.6804 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2217,"Simulated","C","LL",20.7731 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2218,"Simulated","C","LL",20.6918 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2219,"Simulated","C","LL",20.455 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2220,"Simulated","C","LL",20.4926 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2221,"Simulated","C","LL",20.6418 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2222,"Simulated","C","LL",20.5895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2223,"Simulated","C","LL",20.3918 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2224,"Simulated","C","LL",20.4192 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2225,"Simulated","C","LL",20.4837 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2226,"Simulated","C","LL",20.3858 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2227,"Simulated","C","LL",20.637 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2228,"Simulated","C","LL",20.3481 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2229,"Simulated","C","LL",20.3846 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2230,"Simulated","C","LL",20.4145 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2231,"Simulated","C","LL",20.5391 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2232,"Simulated","C","LL",20.6181 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2233,"Simulated","C","LL",20.76 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2234,"Simulated","C","LL",20.6043 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2235,"Simulated","C","LL",20.5574 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2236,"Simulated","C","LL",20.5877 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2237,"Simulated","C","LL",20.5862 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2238,"Simulated","C","LL",20.4811 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2239,"Simulated","C","LL",20.6188 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2240,"Simulated","C","LL",20.6629 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2241,"Simulated","C","LL",20.7403 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2242,"Simulated","C","LL",20.686 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2243,"Simulated","C","LL",20.7023 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2244,"Simulated","C","LL",20.6332 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2245,"Simulated","C","LL",20.6566 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2246,"Simulated","C","LL",20.6269 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2247,"Simulated","C","LL",20.7207 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2248,"Simulated","C","LL",20.7017 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2249,"Simulated","C","LL",20.7845 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2250,"Simulated","C","LL",20.8359 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2251,"Simulated","C","LL",20.6944 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2252,"Simulated","C","LL",20.743 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2253,"Simulated","C","LL",20.657 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2254,"Simulated","C","LL",20.6984 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2255,"Simulated","C","LL",20.6858 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2256,"Simulated","C","LL",20.7552 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2257,"Simulated","C","LL",20.6327 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2258,"Simulated","C","LL",20.6768 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2259,"Simulated","C","LL",20.7613 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2260,"Simulated","C","LL",20.7608 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2261,"Simulated","C","LL",20.7768 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2262,"Simulated","C","LL",20.7458 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2263,"Simulated","C","LL",20.7811 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2264,"Simulated","C","LL",20.6385 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2265,"Simulated","C","LL",20.7093 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2266,"Simulated","C","LL",20.7673 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2267,"Simulated","C","LL",20.7959 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2268,"Simulated","C","LL",20.6756 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2269,"Simulated","C","LL",20.615 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2270,"Simulated","C","LL",20.7014 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2271,"Simulated","C","LL",20.8567 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2272,"Simulated","C","LL",20.8081 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2273,"Simulated","C","LL",20.7026 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2274,"Simulated","C","LL",20.6029 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2275,"Simulated","C","LL",20.7649 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2276,"Simulated","C","LL",20.7017 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2277,"Simulated","C","LL",20.4812 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2278,"Simulated","C","LL",20.7013 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2279,"Simulated","C","LL",20.5617 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2280,"Simulated","C","LL",20.5645 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2281,"Simulated","C","LL",20.7097 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2282,"Simulated","C","LL",20.9566 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2283,"Simulated","C","LL",20.5921 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2284,"Simulated","C","LL",20.6229 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2285,"Simulated","C","LL",20.5739 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2286,"Simulated","C","LL",20.7068 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2287,"Simulated","C","LL",20.7886 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2288,"Simulated","C","LL",20.7727 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2289,"Simulated","C","LL",20.6244 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2290,"Simulated","C","LL",20.7543 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2291,"Simulated","C","LL",20.8586 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2292,"Simulated","C","LL",20.8291 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2293,"Simulated","C","LL",20.8384 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2294,"Simulated","C","LL",20.6858 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2295,"Simulated","C","LL",20.7635 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2296,"Simulated","C","LL",20.7896 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2297,"Simulated","C","LL",20.7579 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2298,"Simulated","C","LL",20.939 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2299,"Simulated","C","LL",21.0463 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2300,"Simulated","C","LL",20.9234 -"MIROC-ESM","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.2885 -"MIROC-ESM","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",14.3278 -"MIROC-ESM","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",14.2924 -"MIROC-ESM","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",14.2447 -"MIROC-ESM","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",14.4428 -"MIROC-ESM","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",14.5007 -"MIROC-ESM","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",14.6381 -"MIROC-ESM","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.6023 -"MIROC-ESM","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.6287 -"MIROC-ESM","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",14.6076 -"MIROC-ESM","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",14.5772 -"MIROC-ESM","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",14.6207 -"MIROC-ESM","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",14.6526 -"MIROC-ESM","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",14.8009 -"MIROC-ESM","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",14.7818 -"MIROC-ESM","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",14.965 -"MIROC-ESM","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",14.971 -"MIROC-ESM","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",14.9229 -"MIROC-ESM","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",14.9787 -"MIROC-ESM","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",15.0132 -"MIROC-ESM","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",15.254 -"MIROC-ESM","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",15.2106 -"MIROC-ESM","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",15.0353 -"MIROC-ESM","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",15.1999 -"MIROC-ESM","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",15.0808 -"MIROC-ESM","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",15.2474 -"MIROC-ESM","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",15.3204 -"MIROC-ESM","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",15.2999 -"MIROC-ESM","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",15.5136 -"MIROC-ESM","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",15.5131 -"MIROC-ESM","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",15.4189 -"MIROC-ESM","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",15.4911 -"MIROC-ESM","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",15.5142 -"MIROC-ESM","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",15.4604 -"MIROC-ESM","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",15.6471 -"MIROC-ESM","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",15.5563 -"MIROC-ESM","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",15.608 -"MIROC-ESM","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",15.5882 -"MIROC-ESM","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",15.671 -"MIROC-ESM","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",15.6009 -"MIROC-ESM","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",15.7269 -"MIROC-ESM","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",15.7279 -"MIROC-ESM","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",15.8533 -"MIROC-ESM","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",15.8786 -"MIROC-ESM","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",15.8276 -"MIROC-ESM","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",15.8573 -"MIROC-ESM","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",15.8875 -"MIROC-ESM","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",15.8563 -"MIROC-ESM","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",15.8456 -"MIROC-ESM","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",15.7954 -"MIROC-ESM","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",15.6735 -"MIROC-ESM","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",15.9101 -"MIROC-ESM","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",16.0978 -"MIROC-ESM","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",16.0508 -"MIROC-ESM","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",16.0473 -"MIROC-ESM","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",16.0429 -"MIROC-ESM","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",16.2752 -"MIROC-ESM","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",16.2718 -"MIROC-ESM","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",16.2916 -"MIROC-ESM","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",16.2477 -"MIROC-ESM","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",16.359 -"MIROC-ESM","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",16.4336 -"MIROC-ESM","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",16.4046 -"MIROC-ESM","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",16.2029 -"MIROC-ESM","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",16.2819 -"MIROC-ESM","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",16.3896 -"MIROC-ESM","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",16.4906 -"MIROC-ESM","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",16.4694 -"MIROC-ESM","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",16.449 -"MIROC-ESM","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",16.5556 -"MIROC-ESM","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",16.5721 -"MIROC-ESM","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",16.6153 -"MIROC-ESM","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",16.4728 -"MIROC-ESM","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",16.4569 -"MIROC-ESM","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",16.5504 -"MIROC-ESM","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",16.4858 -"MIROC-ESM","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",16.5632 -"MIROC-ESM","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",16.4596 -"MIROC-ESM","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",16.5184 -"MIROC-ESM","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",16.5246 -"MIROC-ESM","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",16.4505 -"MIROC-ESM","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",16.3914 -"MIROC-ESM","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",16.4104 -"MIROC-ESM","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",16.3766 -"MIROC-ESM","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",16.5626 -"MIROC-ESM","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",16.6318 -"MIROC-ESM","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",16.6104 -"MIROC-ESM","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",16.5775 -"MIROC-ESM","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",16.5616 -"MIROC-ESM","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",16.441 -"MIROC-ESM","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",16.5297 -"MIROC-ESM","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",16.5038 -"MIROC-ESM","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",16.6742 -"MIROC-ESM","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",16.6314 -"MIROC-ESM","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",16.6173 -"MIROC-ESM","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",16.6888 -"MIROC-ESM","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",16.6783 -"MIROC-ESM","tas","temperature","tgav","rcp45",2103,"Simulated","C","global",16.5377 -"MIROC-ESM","tas","temperature","tgav","rcp45",2104,"Simulated","C","global",16.6762 -"MIROC-ESM","tas","temperature","tgav","rcp45",2105,"Simulated","C","global",16.6535 -"MIROC-ESM","tas","temperature","tgav","rcp45",2106,"Simulated","C","global",16.6315 -"MIROC-ESM","tas","temperature","tgav","rcp45",2107,"Simulated","C","global",16.5405 -"MIROC-ESM","tas","temperature","tgav","rcp45",2108,"Simulated","C","global",16.5797 -"MIROC-ESM","tas","temperature","tgav","rcp45",2109,"Simulated","C","global",16.7190000000001 -"MIROC-ESM","tas","temperature","tgav","rcp45",2110,"Simulated","C","global",16.6682 -"MIROC-ESM","tas","temperature","tgav","rcp45",2111,"Simulated","C","global",16.6716 -"MIROC-ESM","tas","temperature","tgav","rcp45",2112,"Simulated","C","global",16.7429 -"MIROC-ESM","tas","temperature","tgav","rcp45",2113,"Simulated","C","global",16.6645 -"MIROC-ESM","tas","temperature","tgav","rcp45",2114,"Simulated","C","global",16.6489 -"MIROC-ESM","tas","temperature","tgav","rcp45",2115,"Simulated","C","global",16.6899 -"MIROC-ESM","tas","temperature","tgav","rcp45",2116,"Simulated","C","global",16.5809 -"MIROC-ESM","tas","temperature","tgav","rcp45",2117,"Simulated","C","global",16.428 -"MIROC-ESM","tas","temperature","tgav","rcp45",2118,"Simulated","C","global",16.5825 -"MIROC-ESM","tas","temperature","tgav","rcp45",2119,"Simulated","C","global",16.5704 -"MIROC-ESM","tas","temperature","tgav","rcp45",2120,"Simulated","C","global",16.579 -"MIROC-ESM","tas","temperature","tgav","rcp45",2121,"Simulated","C","global",16.586 -"MIROC-ESM","tas","temperature","tgav","rcp45",2122,"Simulated","C","global",16.6173 -"MIROC-ESM","tas","temperature","tgav","rcp45",2123,"Simulated","C","global",16.7699 -"MIROC-ESM","tas","temperature","tgav","rcp45",2124,"Simulated","C","global",16.843 -"MIROC-ESM","tas","temperature","tgav","rcp45",2125,"Simulated","C","global",16.867 -"MIROC-ESM","tas","temperature","tgav","rcp45",2126,"Simulated","C","global",16.6791 -"MIROC-ESM","tas","temperature","tgav","rcp45",2127,"Simulated","C","global",16.7 -"MIROC-ESM","tas","temperature","tgav","rcp45",2128,"Simulated","C","global",16.6691 -"MIROC-ESM","tas","temperature","tgav","rcp45",2129,"Simulated","C","global",16.5538 -"MIROC-ESM","tas","temperature","tgav","rcp45",2130,"Simulated","C","global",16.6647 -"MIROC-ESM","tas","temperature","tgav","rcp45",2131,"Simulated","C","global",16.6571 -"MIROC-ESM","tas","temperature","tgav","rcp45",2132,"Simulated","C","global",16.6616 -"MIROC-ESM","tas","temperature","tgav","rcp45",2133,"Simulated","C","global",16.6266 -"MIROC-ESM","tas","temperature","tgav","rcp45",2134,"Simulated","C","global",16.8202 -"MIROC-ESM","tas","temperature","tgav","rcp45",2135,"Simulated","C","global",16.7054 -"MIROC-ESM","tas","temperature","tgav","rcp45",2136,"Simulated","C","global",16.8394 -"MIROC-ESM","tas","temperature","tgav","rcp45",2137,"Simulated","C","global",16.8091 -"MIROC-ESM","tas","temperature","tgav","rcp45",2138,"Simulated","C","global",16.6995 -"MIROC-ESM","tas","temperature","tgav","rcp45",2139,"Simulated","C","global",16.7568 -"MIROC-ESM","tas","temperature","tgav","rcp45",2140,"Simulated","C","global",16.7649 -"MIROC-ESM","tas","temperature","tgav","rcp45",2141,"Simulated","C","global",16.7828 -"MIROC-ESM","tas","temperature","tgav","rcp45",2142,"Simulated","C","global",16.7226 -"MIROC-ESM","tas","temperature","tgav","rcp45",2143,"Simulated","C","global",16.7145 -"MIROC-ESM","tas","temperature","tgav","rcp45",2144,"Simulated","C","global",16.6236 -"MIROC-ESM","tas","temperature","tgav","rcp45",2145,"Simulated","C","global",16.637 -"MIROC-ESM","tas","temperature","tgav","rcp45",2146,"Simulated","C","global",16.6548 -"MIROC-ESM","tas","temperature","tgav","rcp45",2147,"Simulated","C","global",16.7452 -"MIROC-ESM","tas","temperature","tgav","rcp45",2148,"Simulated","C","global",16.8199 -"MIROC-ESM","tas","temperature","tgav","rcp45",2149,"Simulated","C","global",16.7187 -"MIROC-ESM","tas","temperature","tgav","rcp45",2150,"Simulated","C","global",16.7342 -"MIROC-ESM","tas","temperature","tgav","rcp45",2151,"Simulated","C","global",16.7031 -"MIROC-ESM","tas","temperature","tgav","rcp45",2152,"Simulated","C","global",16.7457 -"MIROC-ESM","tas","temperature","tgav","rcp45",2153,"Simulated","C","global",16.727 -"MIROC-ESM","tas","temperature","tgav","rcp45",2154,"Simulated","C","global",16.6868 -"MIROC-ESM","tas","temperature","tgav","rcp45",2155,"Simulated","C","global",16.89 -"MIROC-ESM","tas","temperature","tgav","rcp45",2156,"Simulated","C","global",16.8614 -"MIROC-ESM","tas","temperature","tgav","rcp45",2157,"Simulated","C","global",16.7972 -"MIROC-ESM","tas","temperature","tgav","rcp45",2158,"Simulated","C","global",16.6919 -"MIROC-ESM","tas","temperature","tgav","rcp45",2159,"Simulated","C","global",16.6756 -"MIROC-ESM","tas","temperature","tgav","rcp45",2160,"Simulated","C","global",16.6369 -"MIROC-ESM","tas","temperature","tgav","rcp45",2161,"Simulated","C","global",16.8351 -"MIROC-ESM","tas","temperature","tgav","rcp45",2162,"Simulated","C","global",16.7732 -"MIROC-ESM","tas","temperature","tgav","rcp45",2163,"Simulated","C","global",16.7938 -"MIROC-ESM","tas","temperature","tgav","rcp45",2164,"Simulated","C","global",16.9671 -"MIROC-ESM","tas","temperature","tgav","rcp45",2165,"Simulated","C","global",16.7992 -"MIROC-ESM","tas","temperature","tgav","rcp45",2166,"Simulated","C","global",16.7641 -"MIROC-ESM","tas","temperature","tgav","rcp45",2167,"Simulated","C","global",16.8895 -"MIROC-ESM","tas","temperature","tgav","rcp45",2168,"Simulated","C","global",16.9075 -"MIROC-ESM","tas","temperature","tgav","rcp45",2169,"Simulated","C","global",16.8389 -"MIROC-ESM","tas","temperature","tgav","rcp45",2170,"Simulated","C","global",16.6689 -"MIROC-ESM","tas","temperature","tgav","rcp45",2171,"Simulated","C","global",16.8129 -"MIROC-ESM","tas","temperature","tgav","rcp45",2172,"Simulated","C","global",16.8683 -"MIROC-ESM","tas","temperature","tgav","rcp45",2173,"Simulated","C","global",16.8518 -"MIROC-ESM","tas","temperature","tgav","rcp45",2174,"Simulated","C","global",16.7384 -"MIROC-ESM","tas","temperature","tgav","rcp45",2175,"Simulated","C","global",16.7345 -"MIROC-ESM","tas","temperature","tgav","rcp45",2176,"Simulated","C","global",16.772 -"MIROC-ESM","tas","temperature","tgav","rcp45",2177,"Simulated","C","global",16.8473 -"MIROC-ESM","tas","temperature","tgav","rcp45",2178,"Simulated","C","global",16.7456 -"MIROC-ESM","tas","temperature","tgav","rcp45",2179,"Simulated","C","global",16.7003 -"MIROC-ESM","tas","temperature","tgav","rcp45",2180,"Simulated","C","global",16.7528 -"MIROC-ESM","tas","temperature","tgav","rcp45",2181,"Simulated","C","global",16.8029 -"MIROC-ESM","tas","temperature","tgav","rcp45",2182,"Simulated","C","global",16.8002 -"MIROC-ESM","tas","temperature","tgav","rcp45",2183,"Simulated","C","global",16.7397 -"MIROC-ESM","tas","temperature","tgav","rcp45",2184,"Simulated","C","global",16.777 -"MIROC-ESM","tas","temperature","tgav","rcp45",2185,"Simulated","C","global",16.7779 -"MIROC-ESM","tas","temperature","tgav","rcp45",2186,"Simulated","C","global",16.8567 -"MIROC-ESM","tas","temperature","tgav","rcp45",2187,"Simulated","C","global",16.8685 -"MIROC-ESM","tas","temperature","tgav","rcp45",2188,"Simulated","C","global",16.9083 -"MIROC-ESM","tas","temperature","tgav","rcp45",2189,"Simulated","C","global",16.9005 -"MIROC-ESM","tas","temperature","tgav","rcp45",2190,"Simulated","C","global",16.938 -"MIROC-ESM","tas","temperature","tgav","rcp45",2191,"Simulated","C","global",16.8716 -"MIROC-ESM","tas","temperature","tgav","rcp45",2192,"Simulated","C","global",17.0638 -"MIROC-ESM","tas","temperature","tgav","rcp45",2193,"Simulated","C","global",17.0461 -"MIROC-ESM","tas","temperature","tgav","rcp45",2194,"Simulated","C","global",16.9023 -"MIROC-ESM","tas","temperature","tgav","rcp45",2195,"Simulated","C","global",16.9132 -"MIROC-ESM","tas","temperature","tgav","rcp45",2196,"Simulated","C","global",16.7623 -"MIROC-ESM","tas","temperature","tgav","rcp45",2197,"Simulated","C","global",16.7879 -"MIROC-ESM","tas","temperature","tgav","rcp45",2198,"Simulated","C","global",16.7733 -"MIROC-ESM","tas","temperature","tgav","rcp45",2199,"Simulated","C","global",16.8575 -"MIROC-ESM","tas","temperature","tgav","rcp45",2200,"Simulated","C","global",16.9904 -"MIROC-ESM","tas","temperature","tgav","rcp45",2201,"Simulated","C","global",16.9635 -"MIROC-ESM","tas","temperature","tgav","rcp45",2202,"Simulated","C","global",16.9486 -"MIROC-ESM","tas","temperature","tgav","rcp45",2203,"Simulated","C","global",16.8669 -"MIROC-ESM","tas","temperature","tgav","rcp45",2204,"Simulated","C","global",16.9318 -"MIROC-ESM","tas","temperature","tgav","rcp45",2205,"Simulated","C","global",16.8226 -"MIROC-ESM","tas","temperature","tgav","rcp45",2206,"Simulated","C","global",16.8511 -"MIROC-ESM","tas","temperature","tgav","rcp45",2207,"Simulated","C","global",16.8744 -"MIROC-ESM","tas","temperature","tgav","rcp45",2208,"Simulated","C","global",16.9523 -"MIROC-ESM","tas","temperature","tgav","rcp45",2209,"Simulated","C","global",16.9137 -"MIROC-ESM","tas","temperature","tgav","rcp45",2210,"Simulated","C","global",16.869 -"MIROC-ESM","tas","temperature","tgav","rcp45",2211,"Simulated","C","global",16.9887 -"MIROC-ESM","tas","temperature","tgav","rcp45",2212,"Simulated","C","global",16.948 -"MIROC-ESM","tas","temperature","tgav","rcp45",2213,"Simulated","C","global",16.9805 -"MIROC-ESM","tas","temperature","tgav","rcp45",2214,"Simulated","C","global",16.9279 -"MIROC-ESM","tas","temperature","tgav","rcp45",2215,"Simulated","C","global",16.9444 -"MIROC-ESM","tas","temperature","tgav","rcp45",2216,"Simulated","C","global",16.9187 -"MIROC-ESM","tas","temperature","tgav","rcp45",2217,"Simulated","C","global",16.9595 -"MIROC-ESM","tas","temperature","tgav","rcp45",2218,"Simulated","C","global",16.9638 -"MIROC-ESM","tas","temperature","tgav","rcp45",2219,"Simulated","C","global",17.0128 -"MIROC-ESM","tas","temperature","tgav","rcp45",2220,"Simulated","C","global",16.9684 -"MIROC-ESM","tas","temperature","tgav","rcp45",2221,"Simulated","C","global",16.9399 -"MIROC-ESM","tas","temperature","tgav","rcp45",2222,"Simulated","C","global",16.9282 -"MIROC-ESM","tas","temperature","tgav","rcp45",2223,"Simulated","C","global",16.9105 -"MIROC-ESM","tas","temperature","tgav","rcp45",2224,"Simulated","C","global",16.9144 -"MIROC-ESM","tas","temperature","tgav","rcp45",2225,"Simulated","C","global",16.9182 -"MIROC-ESM","tas","temperature","tgav","rcp45",2226,"Simulated","C","global",17.1028 -"MIROC-ESM","tas","temperature","tgav","rcp45",2227,"Simulated","C","global",17.0291 -"MIROC-ESM","tas","temperature","tgav","rcp45",2228,"Simulated","C","global",16.9425 -"MIROC-ESM","tas","temperature","tgav","rcp45",2229,"Simulated","C","global",16.9691 -"MIROC-ESM","tas","temperature","tgav","rcp45",2230,"Simulated","C","global",17.0636 -"MIROC-ESM","tas","temperature","tgav","rcp45",2231,"Simulated","C","global",17.0553 -"MIROC-ESM","tas","temperature","tgav","rcp45",2232,"Simulated","C","global",17.0698 -"MIROC-ESM","tas","temperature","tgav","rcp45",2233,"Simulated","C","global",17.0715 -"MIROC-ESM","tas","temperature","tgav","rcp45",2234,"Simulated","C","global",17.0251 -"MIROC-ESM","tas","temperature","tgav","rcp45",2235,"Simulated","C","global",17.0627 -"MIROC-ESM","tas","temperature","tgav","rcp45",2236,"Simulated","C","global",16.9753 -"MIROC-ESM","tas","temperature","tgav","rcp45",2237,"Simulated","C","global",16.9221 -"MIROC-ESM","tas","temperature","tgav","rcp45",2238,"Simulated","C","global",16.9805 -"MIROC-ESM","tas","temperature","tgav","rcp45",2239,"Simulated","C","global",16.8324 -"MIROC-ESM","tas","temperature","tgav","rcp45",2240,"Simulated","C","global",16.8263 -"MIROC-ESM","tas","temperature","tgav","rcp45",2241,"Simulated","C","global",17.0569 -"MIROC-ESM","tas","temperature","tgav","rcp45",2242,"Simulated","C","global",17.1995 -"MIROC-ESM","tas","temperature","tgav","rcp45",2243,"Simulated","C","global",17.0302 -"MIROC-ESM","tas","temperature","tgav","rcp45",2244,"Simulated","C","global",17.0218 -"MIROC-ESM","tas","temperature","tgav","rcp45",2245,"Simulated","C","global",17.0382 -"MIROC-ESM","tas","temperature","tgav","rcp45",2246,"Simulated","C","global",16.9754 -"MIROC-ESM","tas","temperature","tgav","rcp45",2247,"Simulated","C","global",17.1231 -"MIROC-ESM","tas","temperature","tgav","rcp45",2248,"Simulated","C","global",17.1975 -"MIROC-ESM","tas","temperature","tgav","rcp45",2249,"Simulated","C","global",17.0698 -"MIROC-ESM","tas","temperature","tgav","rcp45",2250,"Simulated","C","global",17.0587 -"MIROC-ESM","tas","temperature","tgav","rcp45",2251,"Simulated","C","global",16.9526 -"MIROC-ESM","tas","temperature","tgav","rcp45",2252,"Simulated","C","global",16.9832 -"MIROC-ESM","tas","temperature","tgav","rcp45",2253,"Simulated","C","global",16.9559 -"MIROC-ESM","tas","temperature","tgav","rcp45",2254,"Simulated","C","global",16.9115 -"MIROC-ESM","tas","temperature","tgav","rcp45",2255,"Simulated","C","global",16.9098 -"MIROC-ESM","tas","temperature","tgav","rcp45",2256,"Simulated","C","global",16.9203 -"MIROC-ESM","tas","temperature","tgav","rcp45",2257,"Simulated","C","global",17.0367 -"MIROC-ESM","tas","temperature","tgav","rcp45",2258,"Simulated","C","global",17.1847 -"MIROC-ESM","tas","temperature","tgav","rcp45",2259,"Simulated","C","global",17.1484 -"MIROC-ESM","tas","temperature","tgav","rcp45",2260,"Simulated","C","global",17.1133 -"MIROC-ESM","tas","temperature","tgav","rcp45",2261,"Simulated","C","global",17.009 -"MIROC-ESM","tas","temperature","tgav","rcp45",2262,"Simulated","C","global",16.9247 -"MIROC-ESM","tas","temperature","tgav","rcp45",2263,"Simulated","C","global",17.0612 -"MIROC-ESM","tas","temperature","tgav","rcp45",2264,"Simulated","C","global",17.0806 -"MIROC-ESM","tas","temperature","tgav","rcp45",2265,"Simulated","C","global",17.0153 -"MIROC-ESM","tas","temperature","tgav","rcp45",2266,"Simulated","C","global",17.1874 -"MIROC-ESM","tas","temperature","tgav","rcp45",2267,"Simulated","C","global",17.0516 -"MIROC-ESM","tas","temperature","tgav","rcp45",2268,"Simulated","C","global",17.1011 -"MIROC-ESM","tas","temperature","tgav","rcp45",2269,"Simulated","C","global",17.159 -"MIROC-ESM","tas","temperature","tgav","rcp45",2270,"Simulated","C","global",17.19 -"MIROC-ESM","tas","temperature","tgav","rcp45",2271,"Simulated","C","global",17.2491 -"MIROC-ESM","tas","temperature","tgav","rcp45",2272,"Simulated","C","global",17.1554 -"MIROC-ESM","tas","temperature","tgav","rcp45",2273,"Simulated","C","global",17.0795 -"MIROC-ESM","tas","temperature","tgav","rcp45",2274,"Simulated","C","global",17.1548 -"MIROC-ESM","tas","temperature","tgav","rcp45",2275,"Simulated","C","global",17.0363 -"MIROC-ESM","tas","temperature","tgav","rcp45",2276,"Simulated","C","global",16.9861 -"MIROC-ESM","tas","temperature","tgav","rcp45",2277,"Simulated","C","global",16.9367 -"MIROC-ESM","tas","temperature","tgav","rcp45",2278,"Simulated","C","global",17.1046 -"MIROC-ESM","tas","temperature","tgav","rcp45",2279,"Simulated","C","global",16.9743 -"MIROC-ESM","tas","temperature","tgav","rcp45",2280,"Simulated","C","global",16.9624 -"MIROC-ESM","tas","temperature","tgav","rcp45",2281,"Simulated","C","global",17.1722 -"MIROC-ESM","tas","temperature","tgav","rcp45",2282,"Simulated","C","global",17.1342 -"MIROC-ESM","tas","temperature","tgav","rcp45",2283,"Simulated","C","global",17.2348 -"MIROC-ESM","tas","temperature","tgav","rcp45",2284,"Simulated","C","global",17.249 -"MIROC-ESM","tas","temperature","tgav","rcp45",2285,"Simulated","C","global",17.1742 -"MIROC-ESM","tas","temperature","tgav","rcp45",2286,"Simulated","C","global",17.1284 -"MIROC-ESM","tas","temperature","tgav","rcp45",2287,"Simulated","C","global",17.1662 -"MIROC-ESM","tas","temperature","tgav","rcp45",2288,"Simulated","C","global",17.1607 -"MIROC-ESM","tas","temperature","tgav","rcp45",2289,"Simulated","C","global",17.2178 -"MIROC-ESM","tas","temperature","tgav","rcp45",2290,"Simulated","C","global",17.1694 -"MIROC-ESM","tas","temperature","tgav","rcp45",2291,"Simulated","C","global",17.1833 -"MIROC-ESM","tas","temperature","tgav","rcp45",2292,"Simulated","C","global",17.1659 -"MIROC-ESM","tas","temperature","tgav","rcp45",2293,"Simulated","C","global",17.1626 -"MIROC-ESM","tas","temperature","tgav","rcp45",2294,"Simulated","C","global",17.1603 -"MIROC-ESM","tas","temperature","tgav","rcp45",2295,"Simulated","C","global",17.208 -"MIROC-ESM","tas","temperature","tgav","rcp45",2296,"Simulated","C","global",17.1688 -"MIROC-ESM","tas","temperature","tgav","rcp45",2297,"Simulated","C","global",17.2047 -"MIROC-ESM","tas","temperature","tgav","rcp45",2298,"Simulated","C","global",17.1494 -"MIROC-ESM","tas","temperature","tgav","rcp45",2299,"Simulated","C","global",17.1899 -"MIROC-ESM","tas","temperature","tgav","rcp45",2300,"Simulated","C","global",17.2568 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-8.95169999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-9.029 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-8.72809999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-8.76959999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-8.51009999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-8.59099999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-8.32799999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-8.1635 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-8.21109999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-8.44759999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-8.5471 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-8.13649999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-7.8338 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-7.62309999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-8.06529999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-7.72129999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-7.47929999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-7.42419999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-7.31649999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-7.59209999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-7.38889999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-7.24439999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-7.7174 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-7.1651 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-7.34879999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-7.0718 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-7.13219999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-7.0265 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-6.75359999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-6.68389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-6.78099999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-6.5333 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-6.70519999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-6.89149999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-6.5419 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-6.3981 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-6.44299999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-6.27879999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-6.10639999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-6.37129999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-6.1857 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-6.4153 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-6.35409999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-6.11579999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-6.0394 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-6.17910000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-5.86269999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-5.96729999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-6.1721 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-6.20659999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-6.45179999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-5.82159999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-5.56209999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-5.90549999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-5.84779999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-6.0489 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-5.3408 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-5.64159999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-5.5351 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-5.5761 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-5.38979999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-5.21469999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-5.17319999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-5.6019 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-5.5444 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-5.47199999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-5.4776 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-5.55879999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-5.65459999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-5.12269999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-5.02839999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-5.0256 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-5.16949999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-5.19259999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-4.98359999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-5.04379999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-5.0059 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-5.3082 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-5.21909999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-5.06389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-5.14149999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-5.21789999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-5.47609999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-5.5335 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-5.13549999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-5.19399999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-5.15940000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-4.99899999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-5.02599999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-5.11959999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-5.0915 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-5.19929999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-5.09049999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-4.95959999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-4.95659999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-5.15609999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-4.88249999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2103,"Simulated","C","HL",-5.09989999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2104,"Simulated","C","HL",-4.82839999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2105,"Simulated","C","HL",-4.87619999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2106,"Simulated","C","HL",-4.76779999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2107,"Simulated","C","HL",-5.24179999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2108,"Simulated","C","HL",-4.82459999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2109,"Simulated","C","HL",-4.52509999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2110,"Simulated","C","HL",-4.63899999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2111,"Simulated","C","HL",-4.89509999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2112,"Simulated","C","HL",-4.71029999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2113,"Simulated","C","HL",-5.02969999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2114,"Simulated","C","HL",-5.03789999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2115,"Simulated","C","HL",-4.6687 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2116,"Simulated","C","HL",-5.00149999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2117,"Simulated","C","HL",-5.17719999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2118,"Simulated","C","HL",-4.8528 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2119,"Simulated","C","HL",-4.8879 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2120,"Simulated","C","HL",-4.98999999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2121,"Simulated","C","HL",-5.10049999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2122,"Simulated","C","HL",-5.30859999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2123,"Simulated","C","HL",-4.9776 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2124,"Simulated","C","HL",-4.64189999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2125,"Simulated","C","HL",-4.5573 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2126,"Simulated","C","HL",-4.80669999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2127,"Simulated","C","HL",-4.69379999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2128,"Simulated","C","HL",-4.8766 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2129,"Simulated","C","HL",-5.39009999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2130,"Simulated","C","HL",-5.00309999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2131,"Simulated","C","HL",-5.10629999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2132,"Simulated","C","HL",-4.7602 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2133,"Simulated","C","HL",-4.8254 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2134,"Simulated","C","HL",-4.63479999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2135,"Simulated","C","HL",-5.09779999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2136,"Simulated","C","HL",-4.8954 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2137,"Simulated","C","HL",-4.67859999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2138,"Simulated","C","HL",-5.00319999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2139,"Simulated","C","HL",-4.55429999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2140,"Simulated","C","HL",-4.5247 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2141,"Simulated","C","HL",-4.90789999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2142,"Simulated","C","HL",-4.9187 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2143,"Simulated","C","HL",-4.928 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2144,"Simulated","C","HL",-4.89769999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2145,"Simulated","C","HL",-4.93619999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2146,"Simulated","C","HL",-4.97379999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2147,"Simulated","C","HL",-4.8272 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2148,"Simulated","C","HL",-4.74549999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2149,"Simulated","C","HL",-4.62079999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2150,"Simulated","C","HL",-4.79199999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2151,"Simulated","C","HL",-4.81479999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2152,"Simulated","C","HL",-5.10489999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2153,"Simulated","C","HL",-4.91789999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2154,"Simulated","C","HL",-4.93389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2155,"Simulated","C","HL",-4.69009999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2156,"Simulated","C","HL",-4.62449999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2157,"Simulated","C","HL",-4.64819999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2158,"Simulated","C","HL",-4.80339999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2159,"Simulated","C","HL",-4.68879999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2160,"Simulated","C","HL",-5.0412 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2161,"Simulated","C","HL",-4.75039999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2162,"Simulated","C","HL",-4.67399999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2163,"Simulated","C","HL",-4.80809999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2164,"Simulated","C","HL",-4.50829999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2165,"Simulated","C","HL",-4.57469999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2166,"Simulated","C","HL",-4.95259999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2167,"Simulated","C","HL",-4.67559999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2168,"Simulated","C","HL",-4.74399999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2169,"Simulated","C","HL",-4.92719999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2170,"Simulated","C","HL",-5.07169999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2171,"Simulated","C","HL",-4.56469999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2172,"Simulated","C","HL",-4.262 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2173,"Simulated","C","HL",-4.51669999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2174,"Simulated","C","HL",-4.6112 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2175,"Simulated","C","HL",-4.68079999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2176,"Simulated","C","HL",-4.90479999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2177,"Simulated","C","HL",-4.78549999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2178,"Simulated","C","HL",-4.74199999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2179,"Simulated","C","HL",-5.00419999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2180,"Simulated","C","HL",-4.97809999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2181,"Simulated","C","HL",-4.71529999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2182,"Simulated","C","HL",-4.70979999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2183,"Simulated","C","HL",-4.75459999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2184,"Simulated","C","HL",-4.58699999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2185,"Simulated","C","HL",-4.74649999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2186,"Simulated","C","HL",-4.80949999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2187,"Simulated","C","HL",-4.59029999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2188,"Simulated","C","HL",-4.47789999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2189,"Simulated","C","HL",-4.5616 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2190,"Simulated","C","HL",-4.64349999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2191,"Simulated","C","HL",-4.82749999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2192,"Simulated","C","HL",-4.39959999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2193,"Simulated","C","HL",-4.32149999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2194,"Simulated","C","HL",-4.46909999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2195,"Simulated","C","HL",-4.4008 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2196,"Simulated","C","HL",-4.8295 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2197,"Simulated","C","HL",-4.75369999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2198,"Simulated","C","HL",-4.98769999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2199,"Simulated","C","HL",-4.87239999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2200,"Simulated","C","HL",-4.4624 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2201,"Simulated","C","HL",-4.5478 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2202,"Simulated","C","HL",-4.36419999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2203,"Simulated","C","HL",-4.7722 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2204,"Simulated","C","HL",-4.27159999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2205,"Simulated","C","HL",-4.5 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2206,"Simulated","C","HL",-4.51479999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2207,"Simulated","C","HL",-4.45769999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2208,"Simulated","C","HL",-4.38 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2209,"Simulated","C","HL",-4.68959999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2210,"Simulated","C","HL",-4.62059999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2211,"Simulated","C","HL",-4.5027 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2212,"Simulated","C","HL",-4.66219999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2213,"Simulated","C","HL",-4.39499999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2214,"Simulated","C","HL",-4.44129999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2215,"Simulated","C","HL",-4.52139999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2216,"Simulated","C","HL",-4.48519999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2217,"Simulated","C","HL",-4.44279999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2218,"Simulated","C","HL",-4.71749999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2219,"Simulated","C","HL",-4.68059999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2220,"Simulated","C","HL",-4.66149999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2221,"Simulated","C","HL",-4.5872 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2222,"Simulated","C","HL",-4.36579999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2223,"Simulated","C","HL",-4.34829999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2224,"Simulated","C","HL",-4.5215 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2225,"Simulated","C","HL",-4.61059999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2226,"Simulated","C","HL",-3.94459999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2227,"Simulated","C","HL",-4.45189999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2228,"Simulated","C","HL",-4.47069999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2229,"Simulated","C","HL",-4.64489999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2230,"Simulated","C","HL",-4.25839999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2231,"Simulated","C","HL",-4.34999999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2232,"Simulated","C","HL",-4.32779999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2233,"Simulated","C","HL",-4.41469999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2234,"Simulated","C","HL",-4.58409999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2235,"Simulated","C","HL",-4.495 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2236,"Simulated","C","HL",-4.41849999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2237,"Simulated","C","HL",-4.72089999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2238,"Simulated","C","HL",-4.4255 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2239,"Simulated","C","HL",-4.23519999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2240,"Simulated","C","HL",-4.62549999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2241,"Simulated","C","HL",-4.24949999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2242,"Simulated","C","HL",-4.07799999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2243,"Simulated","C","HL",-4.32249999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2244,"Simulated","C","HL",-4.22269999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2245,"Simulated","C","HL",-4.26669999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2246,"Simulated","C","HL",-4.49769999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2247,"Simulated","C","HL",-4.26709999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2248,"Simulated","C","HL",-4.26919999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2249,"Simulated","C","HL",-4.31180000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2250,"Simulated","C","HL",-4.45359999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2251,"Simulated","C","HL",-4.815 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2252,"Simulated","C","HL",-4.3374 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2253,"Simulated","C","HL",-4.5179 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2254,"Simulated","C","HL",-4.48939999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2255,"Simulated","C","HL",-4.5077 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2256,"Simulated","C","HL",-4.6875 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2257,"Simulated","C","HL",-4.66339999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2258,"Simulated","C","HL",-4.3252 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2259,"Simulated","C","HL",-4.1114 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2260,"Simulated","C","HL",-3.94929999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2261,"Simulated","C","HL",-4.29539999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2262,"Simulated","C","HL",-4.69389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2263,"Simulated","C","HL",-4.53609999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2264,"Simulated","C","HL",-4.34959999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2265,"Simulated","C","HL",-4.45839999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2266,"Simulated","C","HL",-4.08749999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2267,"Simulated","C","HL",-4.35649999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2268,"Simulated","C","HL",-4.27539999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2269,"Simulated","C","HL",-4.34429999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2270,"Simulated","C","HL",-4.40989999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2271,"Simulated","C","HL",-4.10839999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2272,"Simulated","C","HL",-4.06909999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2273,"Simulated","C","HL",-3.97399999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2274,"Simulated","C","HL",-3.83169999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2275,"Simulated","C","HL",-4.16149999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2276,"Simulated","C","HL",-4.27189999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2277,"Simulated","C","HL",-4.30089999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2278,"Simulated","C","HL",-3.72309999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2279,"Simulated","C","HL",-4.31829999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2280,"Simulated","C","HL",-4.24199999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2281,"Simulated","C","HL",-3.95389999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2282,"Simulated","C","HL",-4.04289999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2283,"Simulated","C","HL",-4.2038 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2284,"Simulated","C","HL",-3.9982 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2285,"Simulated","C","HL",-4.24959999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2286,"Simulated","C","HL",-4.23919999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2287,"Simulated","C","HL",-4.20249999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2288,"Simulated","C","HL",-4.35429999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2289,"Simulated","C","HL",-4.12899999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2290,"Simulated","C","HL",-4.10829999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2291,"Simulated","C","HL",-4.1189 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2292,"Simulated","C","HL",-4.33429999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2293,"Simulated","C","HL",-4.0498 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2294,"Simulated","C","HL",-4.37289999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2295,"Simulated","C","HL",-4.2099 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2296,"Simulated","C","HL",-4.18449999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2297,"Simulated","C","HL",-4.108 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2298,"Simulated","C","HL",-4.2122 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2299,"Simulated","C","HL",-4.31659999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2300,"Simulated","C","HL",-4.29949999999997 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",19.1408 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",19.2045 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",19.0989 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",19.0499 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",19.2351 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",19.322 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",19.4332 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",19.3555 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",19.3973 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",19.4213 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",19.4053 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",19.3721 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",19.3475 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",19.4828 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",19.552 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",19.7016 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",19.6584 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",19.5888 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",19.6337 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",19.7329 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",19.9816 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",19.899 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",19.7858 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",19.8695 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",19.7639 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",19.9074 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",20.0083 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",19.9614 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",20.1627 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",20.1475 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",20.0539 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",20.0896 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",20.1534 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",20.1272 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",20.2799 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",20.1401 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",20.212 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",20.1538 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",20.2179 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",20.1885 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",20.302 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",20.3511 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",20.49 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",20.4708 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",20.3931 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",20.4583 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",20.4287 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",20.4128 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",20.4426 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",20.3891 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",20.293 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",20.4475 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",20.6201 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",20.635 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",20.6187 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",20.6554 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",20.7883 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",20.8471 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",20.8488 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",20.8043 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",20.9 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",20.9535 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",20.9098 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",20.7555 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",20.8389 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",20.954 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",21.0774 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",21.0686 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",21.064 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",21.0818 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",21.0821 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",21.1337 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",20.9915 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",20.9771 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",21.0465 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",20.9809 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",21.0665 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",21.0045 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",21.0569 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",21.032 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",20.9587 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",20.9032 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",20.9801 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",20.9512 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",21.0929 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",21.1888 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",21.1557 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",21.0824 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",21.0688 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",20.9426 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",21.0439 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",21.0352 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",21.2184 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",21.1393 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",21.1216 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",21.2498000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",21.1799 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2103,"Simulated","C","LL",21.0553 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2104,"Simulated","C","LL",21.1661 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2105,"Simulated","C","LL",21.1487 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2106,"Simulated","C","LL",21.0995 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2107,"Simulated","C","LL",21.0884 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2108,"Simulated","C","LL",21.0486 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2109,"Simulated","C","LL",21.1545 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2110,"Simulated","C","LL",21.1169 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2111,"Simulated","C","LL",21.1745 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2112,"Simulated","C","LL",21.2221 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2113,"Simulated","C","LL",21.194 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2114,"Simulated","C","LL",21.1768 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2115,"Simulated","C","LL",21.1493 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2116,"Simulated","C","LL",21.087 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2117,"Simulated","C","LL",20.939 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2118,"Simulated","C","LL",21.058 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2119,"Simulated","C","LL",21.0507 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2120,"Simulated","C","LL",21.0824 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2121,"Simulated","C","LL",21.1138 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2122,"Simulated","C","LL",21.1952 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2123,"Simulated","C","LL",21.3106 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2124,"Simulated","C","LL",21.3288 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2125,"Simulated","C","LL",21.3402 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2126,"Simulated","C","LL",21.1651 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2127,"Simulated","C","LL",21.1667 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2128,"Simulated","C","LL",21.1676 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2129,"Simulated","C","LL",21.1355 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2130,"Simulated","C","LL",21.1887 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2131,"Simulated","C","LL",21.2011 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2132,"Simulated","C","LL",21.1342 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2133,"Simulated","C","LL",21.1055 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2134,"Simulated","C","LL",21.2998 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2135,"Simulated","C","LL",21.2576 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2136,"Simulated","C","LL",21.3774 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2137,"Simulated","C","LL",21.2954 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2138,"Simulated","C","LL",21.2308 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2139,"Simulated","C","LL",21.2063 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2140,"Simulated","C","LL",21.21 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2141,"Simulated","C","LL",21.3115 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2142,"Simulated","C","LL",21.2411 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2143,"Simulated","C","LL",21.2332 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2144,"Simulated","C","LL",21.117 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2145,"Simulated","C","LL",21.1412 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2146,"Simulated","C","LL",21.1706 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2147,"Simulated","C","LL",21.2492 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2148,"Simulated","C","LL",21.3225 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2149,"Simulated","C","LL",21.1742 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2150,"Simulated","C","LL",21.2287 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2151,"Simulated","C","LL",21.1958 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2152,"Simulated","C","LL",21.3079 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2153,"Simulated","C","LL",21.2462 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2154,"Simulated","C","LL",21.201 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2155,"Simulated","C","LL",21.3957 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2156,"Simulated","C","LL",21.3474000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2157,"Simulated","C","LL",21.2747 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2158,"Simulated","C","LL",21.1799 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2159,"Simulated","C","LL",21.1363 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2160,"Simulated","C","LL",21.163 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2161,"Simulated","C","LL",21.3419 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2162,"Simulated","C","LL",21.2511 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2163,"Simulated","C","LL",21.304 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2164,"Simulated","C","LL",21.4509 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2165,"Simulated","C","LL",21.2619 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2166,"Simulated","C","LL",21.2982 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2167,"Simulated","C","LL",21.3921 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2168,"Simulated","C","LL",21.4281 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2169,"Simulated","C","LL",21.3834 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2170,"Simulated","C","LL",21.2081 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2171,"Simulated","C","LL",21.2763 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2172,"Simulated","C","LL",21.2801 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2173,"Simulated","C","LL",21.3133 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2174,"Simulated","C","LL",21.1959 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2175,"Simulated","C","LL",21.2057 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2176,"Simulated","C","LL",21.2979 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2177,"Simulated","C","LL",21.364 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2178,"Simulated","C","LL",21.232 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2179,"Simulated","C","LL",21.232 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2180,"Simulated","C","LL",21.29 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2181,"Simulated","C","LL",21.2957 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2182,"Simulated","C","LL",21.2912 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2183,"Simulated","C","LL",21.2274 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2184,"Simulated","C","LL",21.2376 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2185,"Simulated","C","LL",21.2719 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2186,"Simulated","C","LL",21.3804 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2187,"Simulated","C","LL",21.3489 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2188,"Simulated","C","LL",21.3735 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2189,"Simulated","C","LL",21.3816 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2190,"Simulated","C","LL",21.4439 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2191,"Simulated","C","LL",21.4021 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2192,"Simulated","C","LL",21.5451 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2193,"Simulated","C","LL",21.5074 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2194,"Simulated","C","LL",21.3644 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2195,"Simulated","C","LL",21.3633 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2196,"Simulated","C","LL",21.2704 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2197,"Simulated","C","LL",21.2855 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2198,"Simulated","C","LL",21.3168 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2199,"Simulated","C","LL",21.3945000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2200,"Simulated","C","LL",21.4695 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2201,"Simulated","C","LL",21.4548 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2202,"Simulated","C","LL",21.3985 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2203,"Simulated","C","LL",21.3849 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2204,"Simulated","C","LL",21.3588 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2205,"Simulated","C","LL",21.2746 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2206,"Simulated","C","LL",21.3121 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2207,"Simulated","C","LL",21.3283 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2208,"Simulated","C","LL",21.4062 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2209,"Simulated","C","LL",21.4243 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2210,"Simulated","C","LL",21.3558 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2211,"Simulated","C","LL",21.4758 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2212,"Simulated","C","LL",21.46 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2213,"Simulated","C","LL",21.4434 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2214,"Simulated","C","LL",21.3896 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2215,"Simulated","C","LL",21.4262 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2216,"Simulated","C","LL",21.3876 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2217,"Simulated","C","LL",21.4281 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2218,"Simulated","C","LL",21.4906 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2219,"Simulated","C","LL",21.5421 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2220,"Simulated","C","LL",21.4845 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2221,"Simulated","C","LL",21.4345 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2222,"Simulated","C","LL",21.3742 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2223,"Simulated","C","LL",21.3491 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2224,"Simulated","C","LL",21.39 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2225,"Simulated","C","LL",21.4132 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2226,"Simulated","C","LL",21.4972 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2227,"Simulated","C","LL",21.5141 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2228,"Simulated","C","LL",21.4134 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2229,"Simulated","C","LL",21.4819 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2230,"Simulated","C","LL",21.5154 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2231,"Simulated","C","LL",21.5245 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2232,"Simulated","C","LL",21.5373 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2233,"Simulated","C","LL",21.5576 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2234,"Simulated","C","LL",21.5369 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2235,"Simulated","C","LL",21.5638 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2236,"Simulated","C","LL",21.4421 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2237,"Simulated","C","LL",21.4409 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2238,"Simulated","C","LL",21.4498 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2239,"Simulated","C","LL",21.2311 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2240,"Simulated","C","LL",21.3052 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2241,"Simulated","C","LL",21.5054 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2242,"Simulated","C","LL",21.6419 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2243,"Simulated","C","LL",21.4884 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2244,"Simulated","C","LL",21.4574 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2245,"Simulated","C","LL",21.4864 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2246,"Simulated","C","LL",21.4588 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2247,"Simulated","C","LL",21.5892 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2248,"Simulated","C","LL",21.6795 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2249,"Simulated","C","LL",21.534 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2250,"Simulated","C","LL",21.5502 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2251,"Simulated","C","LL",21.4974 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2252,"Simulated","C","LL",21.4347 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2253,"Simulated","C","LL",21.4394 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2254,"Simulated","C","LL",21.3797 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2255,"Simulated","C","LL",21.3815 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2256,"Simulated","C","LL",21.4317 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2257,"Simulated","C","LL",21.5675 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2258,"Simulated","C","LL",21.6757 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2259,"Simulated","C","LL",21.5872 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2260,"Simulated","C","LL",21.5109 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2261,"Simulated","C","LL",21.4571 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2262,"Simulated","C","LL",21.4384 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2263,"Simulated","C","LL",21.5705 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2264,"Simulated","C","LL",21.555 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2265,"Simulated","C","LL",21.4988 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2266,"Simulated","C","LL",21.6294 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2267,"Simulated","C","LL",21.5213 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2268,"Simulated","C","LL",21.5643 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2269,"Simulated","C","LL",21.6487 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2270,"Simulated","C","LL",21.6998 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2271,"Simulated","C","LL",21.7084 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2272,"Simulated","C","LL",21.5868 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2273,"Simulated","C","LL",21.4752 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2274,"Simulated","C","LL",21.5366 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2275,"Simulated","C","LL",21.4622 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2276,"Simulated","C","LL",21.4246 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2277,"Simulated","C","LL",21.3708 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2278,"Simulated","C","LL",21.4532 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2279,"Simulated","C","LL",21.42 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2280,"Simulated","C","LL",21.3896 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2281,"Simulated","C","LL",21.5832 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2282,"Simulated","C","LL",21.5557 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2283,"Simulated","C","LL",21.711 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2284,"Simulated","C","LL",21.6852 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2285,"Simulated","C","LL",21.6472 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2286,"Simulated","C","LL",21.5898 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2287,"Simulated","C","LL",21.6278 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2288,"Simulated","C","LL",21.6528 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2289,"Simulated","C","LL",21.6748 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2290,"Simulated","C","LL",21.612 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2291,"Simulated","C","LL",21.6309 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2292,"Simulated","C","LL",21.6549 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2293,"Simulated","C","LL",21.5915 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2294,"Simulated","C","LL",21.6562 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2295,"Simulated","C","LL",21.6798 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2296,"Simulated","C","LL",21.6271 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2297,"Simulated","C","LL",21.6545 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2298,"Simulated","C","LL",21.6094000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2299,"Simulated","C","LL",21.6802 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2300,"Simulated","C","LL",21.7575000000001 -"NorESM1-ME","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",13.6041 -"NorESM1-ME","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",13.5247 -"NorESM1-ME","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",13.5549 -"NorESM1-ME","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",13.5814 -"NorESM1-ME","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",13.5738 -"NorESM1-ME","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",13.5071 -"NorESM1-ME","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",13.6177 -"NorESM1-ME","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",13.8606 -"NorESM1-ME","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",13.6945 -"NorESM1-ME","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",13.7434 -"NorESM1-ME","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",13.8867 -"NorESM1-ME","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",13.8842 -"NorESM1-ME","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",13.6962 -"NorESM1-ME","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",13.6829 -"NorESM1-ME","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",13.7908 -"NorESM1-ME","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",13.6938 -"NorESM1-ME","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",13.798 -"NorESM1-ME","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",13.8716 -"NorESM1-ME","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",13.9032 -"NorESM1-ME","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",13.9462 -"NorESM1-ME","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",13.8667 -"NorESM1-ME","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",13.9462 -"NorESM1-ME","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",14.1132 -"NorESM1-ME","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",14.0326 -"NorESM1-ME","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",14.0243 -"NorESM1-ME","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",14.01 -"NorESM1-ME","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",14.1102 -"NorESM1-ME","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",14.0201 -"NorESM1-ME","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",14.0201 -"NorESM1-ME","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",14.0524 -"NorESM1-ME","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",14.2039 -"NorESM1-ME","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",14.1082 -"NorESM1-ME","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",14.2190000000001 -"NorESM1-ME","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",14.1077 -"NorESM1-ME","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",14.3038 -"NorESM1-ME","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",14.2718 -"NorESM1-ME","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",14.2337 -"NorESM1-ME","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",14.2656 -"NorESM1-ME","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",14.2756 -"NorESM1-ME","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",14.3643 -"NorESM1-ME","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",14.5384 -"NorESM1-ME","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",14.4221 -"NorESM1-ME","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",14.34 -"NorESM1-ME","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",14.3661 -"NorESM1-ME","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",14.5382 -"NorESM1-ME","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",14.6919 -"NorESM1-ME","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",14.6929 -"NorESM1-ME","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",14.5239 -"NorESM1-ME","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",14.5386 -"NorESM1-ME","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",14.5967 -"NorESM1-ME","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",14.6171000000001 -"NorESM1-ME","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",14.4686 -"NorESM1-ME","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",14.6856 -"NorESM1-ME","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",14.7925 -"NorESM1-ME","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",14.5966 -"NorESM1-ME","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",14.5042 -"NorESM1-ME","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",14.5209 -"NorESM1-ME","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",14.8065 -"NorESM1-ME","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",14.7198 -"NorESM1-ME","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",14.6721 -"NorESM1-ME","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",14.626 -"NorESM1-ME","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",14.6386 -"NorESM1-ME","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",14.7662 -"NorESM1-ME","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",14.753 -"NorESM1-ME","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",14.9187 -"NorESM1-ME","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",14.846 -"NorESM1-ME","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",14.9397 -"NorESM1-ME","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",14.9982 -"NorESM1-ME","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",14.8678 -"NorESM1-ME","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",14.8264 -"NorESM1-ME","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",14.8066 -"NorESM1-ME","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",14.8264 -"NorESM1-ME","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",14.9319 -"NorESM1-ME","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",14.9371 -"NorESM1-ME","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",14.8594000000001 -"NorESM1-ME","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",14.9244 -"NorESM1-ME","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",14.8651 -"NorESM1-ME","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",14.8286 -"NorESM1-ME","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",14.9751 -"NorESM1-ME","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",14.9538 -"NorESM1-ME","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",14.9681 -"NorESM1-ME","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",14.9358 -"NorESM1-ME","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",14.9088 -"NorESM1-ME","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",15.1202 -"NorESM1-ME","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",15.1907 -"NorESM1-ME","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",14.99 -"NorESM1-ME","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",14.9854 -"NorESM1-ME","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",14.9074 -"NorESM1-ME","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",14.8991 -"NorESM1-ME","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",15.0068 -"NorESM1-ME","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",14.9868 -"NorESM1-ME","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",14.9362 -"NorESM1-ME","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",14.9722 -"NorESM1-ME","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",15.0081 -"NorESM1-ME","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",15.1885 -"NorESM1-ME","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",15.2806 -"NorESM1-ME","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",15.4264 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-11.0763 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-11.4943 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-11.4673 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-11.2748 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-11.3107 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-11.322 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-11.2571 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-10.9282 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-11.1456 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-11.0753 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-10.6513 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-10.7881 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-11.2196 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-11.3759 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-10.9907 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-11.0865 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-11.0552 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-11.0684 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-11.126 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-11.0641 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-11.0561 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-10.6317 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-10.3978 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-11.1107 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-10.7738 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-10.8031 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-10.4792 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-10.769 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-10.641 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-10.6234 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-10.0484 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-10.4314 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-10.1425 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-10.4522 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-9.87389999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-9.93259999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-10.2932 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-10.0114 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-9.77269999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-9.93879999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-9.90659999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-10.045 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-10.0793 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-9.88739999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-9.67399999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-9.52089999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-9.11589999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-9.65559999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-9.71420000000001 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-9.50019999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-9.78629999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-10.1457 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-9.83569999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-9.23390000000001 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-9.66889999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-9.84969999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-10.3641 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-9.53189999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-9.80429999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-9.67789999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-9.74269999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-9.84439999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-9.45859999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-9.5976 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-9.02769999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-9.25079999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-9.18509999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-9.0489 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-9.08859999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-9.2928 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-9.18939999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-9.26089999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-9.02759999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-9.22539999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-9.67499999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-9.06359999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-9.4196 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-9.36239999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-9.21959999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-9.31959999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-9.10859999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-9.05679999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-9.41209999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-9.07659999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-8.75629999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-9.05589999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-9.08329999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-9.1857 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-9.2217 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-9.10789999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-9.19669999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-9.16629999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-9.11799999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-9.15749999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-8.90649999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-8.58529999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-8.81559999999996 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",19.0759 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",19.0714 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",19.1023 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",19.092 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",19.0906 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",19.0117 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",19.1325000000001 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",19.3564 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",19.2015 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",19.2457 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",19.327 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",19.354 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",19.2202 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",19.2385 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",19.2847 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",19.1876 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",19.3078 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",19.4009 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",19.4521 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",19.491 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",19.3921 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",19.3951 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",19.5473 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",19.6069 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",19.5221 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",19.511 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",19.5618 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",19.5159 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",19.4876 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",19.5229 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",19.5808 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",19.5487 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",19.62 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",19.5526 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",19.664 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",19.638 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",19.6713 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",19.6478 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",19.6072 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",19.7523 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",19.9579 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",19.8463 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",19.7539 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",19.743 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",19.9062 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",20.0598 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",19.9714 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",19.8843 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",19.9154 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",19.9389 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",20.0273 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",19.9257 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",20.1219 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",20.1192 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",19.9763 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",19.9034 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",20.0378 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",20.2024 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",20.1567 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",20.0705 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",20.0285 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",20.0663 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",20.1369 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",20.1514 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",20.2278 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",20.1883 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",20.2881 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",20.3295 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",20.1788 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",20.1737 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",20.1265 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",20.1666 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",20.2436 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",20.2939 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",20.2986 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",20.2426 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",20.249 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",20.1917 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",20.3391 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",20.3351 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",20.3059 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",20.255 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",20.3007 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",20.4847 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",20.4999 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",20.321 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",20.3215 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",20.2489 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",20.2468 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",20.3531 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",20.3482 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",20.2799 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",20.3131 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",20.3658 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",20.5303 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",20.5718 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",20.8009 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp45/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp45/summary.csv deleted file mode 100644 index 37acf285b..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp45/summary.csv +++ /dev/null @@ -1,886 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,tas,temperature,tgav,rcp45,C,Simulated,global,0.551711796,13.4292,14.93944,14.25457389,14.2885,1,CMIP5 -2006,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.048269679,-11.0763,-8.231025,-9.409758333,-8.9517,1,CMIP5 -2006,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.711480104,18.365675,20.2854,19.42032111,19.2792,1,CMIP5 -2007,tas,temperature,tgav,rcp45,C,Simulated,global,0.567578988,13.458975,15.0701,14.27147278,14.3278,1,CMIP5 -2007,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.118682518,-11.4943,-7.9834,-9.346493333,-9.029,1,CMIP5 -2007,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.698495479,18.361775,20.3024,19.42769833,19.2668,1,CMIP5 -2008,tas,temperature,tgav,rcp45,C,Simulated,global,0.561195006,13.49205,15.168,14.29704389,14.2924,1,CMIP5 -2008,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.158492588,-11.4673,-7.8327,-9.272626667,-8.7281,1,CMIP5 -2008,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.69913457,18.39145,20.3892,19.44325833,19.4364,1,CMIP5 -2009,tas,temperature,tgav,rcp45,C,Simulated,global,0.57900362,13.43825,15.1318,14.29296778,14.2447,1,CMIP5 -2009,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.112463127,-11.2748,-7.9643,-9.298286667,-8.842525,1,CMIP5 -2009,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.733689598,18.37845,20.4281,19.44320444,19.3923,1,CMIP5 -2010,tas,temperature,tgav,rcp45,C,Simulated,global,0.565153957,13.50115,15.0487,14.31081444,14.3606,1,CMIP5 -2010,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.178888142,-11.3107,-7.8287,-9.217434444,-8.691825,1,CMIP5 -2010,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.714807446,18.422,20.2946,19.44746722,19.2916,1,CMIP5 -2011,tas,temperature,tgav,rcp45,C,Simulated,global,0.594268143,13.5071,15.0641,14.33103167,14.42395,1,CMIP5 -2011,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.145110692,-11.322,-7.8836,-9.198864444,-8.591,1,CMIP5 -2011,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.738230757,18.451225,20.3978,19.46792333,19.322,1,CMIP5 -2012,tas,temperature,tgav,rcp45,C,Simulated,global,0.572296282,13.576125,15.03892,14.36095778,14.495475,1,CMIP5 -2012,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.16146995,-11.2571,-7.7934,-9.19352,-8.8465,1,CMIP5 -2012,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.708003205,18.48895,20.325,19.50347389,19.4332,1,CMIP5 -2013,tas,temperature,tgav,rcp45,C,Simulated,global,0.491995658,13.6537,14.97818,14.37702278,14.462525,1,CMIP5 -2013,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.174560105,-10.9282,-7.7891,-9.230645,-8.9231,1,CMIP5 -2013,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.664961919,18.568375,20.3613,19.53145056,19.3564,1,CMIP5 -2014,tas,temperature,tgav,rcp45,C,Simulated,global,0.549879058,13.6945,15.1596,14.427275,14.56945,1,CMIP5 -2014,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.195622348,-11.1456,-7.6397,-9.084175,-8.7779,1,CMIP5 -2014,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.702443461,18.6385,20.4867,19.56049833,19.3973,1,CMIP5 -2015,tas,temperature,tgav,rcp45,C,Simulated,global,0.584261557,13.64885,15.18584,14.41304611,14.599325,1,CMIP5 -2015,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.080087612,-11.0753,-7.9096,-9.229886111,-9.0067,1,CMIP5 -2015,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.730793924,18.58975,20.4466,19.57520056,19.4213,1,CMIP5 -2016,tas,temperature,tgav,rcp45,C,Simulated,global,0.538042538,13.69345,15.16552,14.45161889,14.5772,1,CMIP5 -2016,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.149057862,-10.6513,-7.797025,-9.164450556,-8.7662,1,CMIP5 -2016,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.731711907,18.57735,20.4616,19.60721,19.4053,1,CMIP5 -2017,tas,temperature,tgav,rcp45,C,Simulated,global,0.576986592,13.6377,15.2169,14.48980111,14.6207,1,CMIP5 -2017,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.077108554,-10.7881,-7.718425,-9.085728889,-8.694275,1,CMIP5 -2017,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.734250716,18.589275,20.5254,19.63709944,19.4531,1,CMIP5 -2018,tas,temperature,tgav,rcp45,C,Simulated,global,0.596875116,13.6962,15.2417,14.481205,14.6526,1,CMIP5 -2018,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.22770076,-11.2196,-7.7,-8.984627222,-8.521025,1,CMIP5 -2018,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.739356242,18.625,20.4827,19.60538889,19.3578,1,CMIP5 -2019,tas,temperature,tgav,rcp45,C,Simulated,global,0.589508955,13.6829,15.24776,14.48011222,14.777525,1,CMIP5 -2019,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.341841667,-11.3759,-7.593925,-9.065102778,-8.7347,1,CMIP5 -2019,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.707603974,18.6641,20.4498,19.62071389,19.4828,1,CMIP5 -2020,tas,temperature,tgav,rcp45,C,Simulated,global,0.605265902,13.72065,15.31286,14.51241222,14.7434,1,CMIP5 -2020,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.170316822,-10.9907,-7.68365,-9.104570556,-8.8364,1,CMIP5 -2020,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.749500361,18.6427,20.5491,19.66934278,19.552,1,CMIP5 -2021,tas,temperature,tgav,rcp45,C,Simulated,global,0.629642847,13.6938,15.3302,14.59172833,14.849375,1,CMIP5 -2021,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.222451841,-11.0865,-7.551,-8.867575556,-8.526,1,CMIP5 -2021,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.749612338,18.71,20.5752,19.71403222,19.7016,1,CMIP5 -2022,tas,temperature,tgav,rcp45,C,Simulated,global,0.638042314,13.798,15.38684,14.62831556,14.849425,1,CMIP5 -2022,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.170412949,-11.0552,-7.4793,-8.780615556,-8.6638,1,CMIP5 -2022,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.754163952,18.7151,20.6214,19.74007889,19.6584,1,CMIP5 -2023,tas,temperature,tgav,rcp45,C,Simulated,global,0.592430555,13.859975,15.3619,14.63539278,14.8741,1,CMIP5 -2023,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.254333648,-11.0684,-7.4005,-8.711083333,-8.42675,1,CMIP5 -2023,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.723856786,18.6392,20.5445,19.73359333,19.5888,1,CMIP5 -2024,tas,temperature,tgav,rcp45,C,Simulated,global,0.580518095,13.9032,15.34738,14.66572833,14.88115,1,CMIP5 -2024,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.266665637,-11.126,-7.3165,-8.735763333,-8.3081,1,CMIP5 -2024,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.712395784,18.7087,20.5948,19.77583667,19.689,1,CMIP5 -2025,tas,temperature,tgav,rcp45,C,Simulated,global,0.604813353,13.902525,15.42186,14.69152611,14.91555,1,CMIP5 -2025,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.205273688,-11.0641,-7.2983,-8.704156667,-8.303,1,CMIP5 -2025,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.731498507,18.7462,20.61446,19.80075944,19.7329,1,CMIP5 -2026,tas,temperature,tgav,rcp45,C,Simulated,global,0.6720401,13.8667,15.5628,14.76053111,15.015825,1,CMIP5 -2026,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.205935132,-11.0561,-7.239775,-8.63176,-8.4639,1,CMIP5 -2026,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.75424457,18.7898,20.7383,19.868245,19.9816,1,CMIP5 -2027,tas,temperature,tgav,rcp45,C,Simulated,global,0.631335735,13.9462,15.5378,14.76952222,15.029975,1,CMIP5 -2027,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.212124941,-10.6317,-7.18075,-8.500840556,-8.038975,1,CMIP5 -2027,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.748028138,18.8402,20.72824,19.85023222,19.899,1,CMIP5 -2028,tas,temperature,tgav,rcp45,C,Simulated,global,0.604679623,13.99535,15.53852,14.765605,15.0353,1,CMIP5 -2028,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.046495312,-10.3978,-7.346225,-8.543975556,-8.2547,1,CMIP5 -2028,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.741482615,18.7808,20.73256,19.85486222,19.7858,1,CMIP5 -2029,tas,temperature,tgav,rcp45,C,Simulated,global,0.589854952,14.0326,15.54698,14.80966167,15.0196,1,CMIP5 -2029,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.319313398,-11.1107,-7.1651,-8.506491111,-7.914175,1,CMIP5 -2029,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.697704293,18.8317,20.7438,19.90104444,19.8695,1,CMIP5 -2030,tas,temperature,tgav,rcp45,C,Simulated,global,0.59891797,14.0243,15.59436,14.79733167,15.0696,1,CMIP5 -2030,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.17976386,-10.7738,-7.2791,-8.489936667,-8.0775,1,CMIP5 -2030,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.707934964,18.8857,20.76832,19.88263833,19.7639,1,CMIP5 -2031,tas,temperature,tgav,rcp45,C,Simulated,global,0.638401907,14.01,15.5879,14.82565556,15.0787,1,CMIP5 -2031,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.215618111,-10.8031,-7.0718,-8.457783889,-8.1342,1,CMIP5 -2031,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.732528113,18.8246,20.77912,19.91012444,19.9074,1,CMIP5 -2032,tas,temperature,tgav,rcp45,C,Simulated,global,0.618247276,14.1102,15.58972,14.86499944,15.146,1,CMIP5 -2032,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.167203696,-10.4792,-7.085075,-8.438075556,-8.4812,1,CMIP5 -2032,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.723594856,18.8716,20.76626,19.95370667,20.0083,1,CMIP5 -2033,tas,temperature,tgav,rcp45,C,Simulated,global,0.662714478,14.0201,15.69188,14.88207278,15.278175,1,CMIP5 -2033,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.199494271,-10.769,-6.865925,-8.364356667,-8.4376,1,CMIP5 -2033,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.735612029,18.9089,20.83344,19.95836,19.9614,1,CMIP5 -2034,tas,temperature,tgav,rcp45,C,Simulated,global,0.668453652,14.0201,15.73856,14.92785944,15.185225,1,CMIP5 -2034,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.232301732,-10.641,-6.7536,-8.254427778,-8.3765,1,CMIP5 -2034,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.734659737,18.8697,20.8896,19.99071111,20.1627,1,CMIP5 -2035,tas,temperature,tgav,rcp45,C,Simulated,global,0.64825481,14.0524,15.79086,14.95472889,15.172975,1,CMIP5 -2035,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.235318196,-10.6234,-6.6839,-8.287727778,-8.4131,1,CMIP5 -2035,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.71352187,19.007,20.96124,20.03057111,20.1475,1,CMIP5 -2036,tas,temperature,tgav,rcp45,C,Simulated,global,0.63755427,14.2039,15.83526,14.98160389,15.229475,1,CMIP5 -2036,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.096347524,-10.0484,-6.781,-8.160897222,-8.2677,1,CMIP5 -2036,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.746923014,18.9274,20.98658,20.03562833,20.0539,1,CMIP5 -2037,tas,temperature,tgav,rcp45,C,Simulated,global,0.670072145,14.1082,15.81422,14.97193833,15.29545,1,CMIP5 -2037,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.224840044,-10.4314,-6.5333,-8.233248333,-8.4877,1,CMIP5 -2037,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.74705797,18.9931,20.99522,20.03927444,20.0896,1,CMIP5 -2038,tas,temperature,tgav,rcp45,C,Simulated,global,0.660076427,14.219,15.89074,15.00024889,15.1579,1,CMIP5 -2038,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.213529902,-10.1425,-6.7052,-8.185760556,-8.7022,1,CMIP5 -2038,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.734784151,19.0273,21.04644,20.06372944,20.1534,1,CMIP5 -2039,tas,temperature,tgav,rcp45,C,Simulated,global,0.6789315,14.1077,15.88344,15.00180167,15.1482,1,CMIP5 -2039,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.279332938,-10.4522,-6.8326,-8.241428333,-8.6026,1,CMIP5 -2039,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.77088344,18.8921,21.02636,20.07799556,20.1272,1,CMIP5 -2040,tas,temperature,tgav,rcp45,C,Simulated,global,0.685134938,14.3038,15.90594,15.07889611,15.3028,1,CMIP5 -2040,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.14573781,-9.8739,-6.5419,-8.074496667,-8.3976,1,CMIP5 -2040,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.768781339,18.9712,21.02252,20.13542722,20.2799,1,CMIP5 -2041,tas,temperature,tgav,rcp45,C,Simulated,global,0.67475805,14.2718,16.00966,15.13132333,15.4894,1,CMIP5 -2041,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.199689172,-9.9326,-6.3981,-8.016618333,-8.0747,1,CMIP5 -2041,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.778247364,19.0672,21.15268,20.18611722,20.1401,1,CMIP5 -2042,tas,temperature,tgav,rcp45,C,Simulated,global,0.710166322,14.2337,16.07944,15.11953222,15.4337,1,CMIP5 -2042,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.277774181,-10.2932,-6.443,-8.025908333,-8.0217,1,CMIP5 -2042,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.811168938,19.0167,21.23104,20.17346,20.212,1,CMIP5 -2043,tas,temperature,tgav,rcp45,C,Simulated,global,0.719274283,14.2656,16.07874,15.11859333,15.469,1,CMIP5 -2043,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.213902292,-10.0114,-6.2788,-7.971773889,-8.1002,1,CMIP5 -2043,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.808113182,18.9945,21.22056,20.16072889,20.1538,1,CMIP5 -2044,tas,temperature,tgav,rcp45,C,Simulated,global,0.726962962,14.2756,16.12096,15.131015,15.5028,1,CMIP5 -2044,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.267642414,-9.7727,-6.1064,-7.971218333,-8.40084,1,CMIP5 -2044,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.835797929,18.9185,21.24082,20.17631889,20.2179,1,CMIP5 -2045,tas,temperature,tgav,rcp45,C,Simulated,global,0.669137274,14.3643,16.07096,15.13055389,15.4732,1,CMIP5 -2045,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.341933257,-9.9388,-6.3713,-7.982905,-8.1024,1,CMIP5 -2045,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.800487968,18.9079,21.18422,20.17752167,20.1885,1,CMIP5 -2046,tas,temperature,tgav,rcp45,C,Simulated,global,0.653833497,14.4358,16.04994,15.232635,15.5244,1,CMIP5 -2046,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.318492564,-9.9066,-6.15935,-7.864223333,-7.8844,1,CMIP5 -2046,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.777110538,18.9575,21.18498,20.27629222,20.302,1,CMIP5 -2047,tas,temperature,tgav,rcp45,C,Simulated,global,0.671441191,14.4221,16.11304,15.27202667,15.5275,1,CMIP5 -2047,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.271436618,-10.045,-6.28065,-7.838966111,-7.6926,1,CMIP5 -2047,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.784785871,19.0228,21.23014,20.31831833,20.3511,1,CMIP5 -2048,tas,temperature,tgav,rcp45,C,Simulated,global,0.678696361,14.34,16.14768,15.25631444,15.4705,1,CMIP5 -2048,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.320316145,-10.0793,-6.1773,-7.846053333,-7.9743,1,CMIP5 -2048,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.756767092,19.0486,21.25696,20.30089556,20.49,1,CMIP5 -2049,tas,temperature,tgav,rcp45,C,Simulated,global,0.705867698,14.3661,16.24868,15.26907556,15.4674,1,CMIP5 -2049,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.35109219,-9.8874,-6.1158,-7.821213333,-7.9649,1,CMIP5 -2049,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.782064919,19.1174,21.3553,20.31047778,20.4708,1,CMIP5 -2050,tas,temperature,tgav,rcp45,C,Simulated,global,0.681436393,14.5117,16.25682,15.32193833,15.6688,1,CMIP5 -2050,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.212792635,-9.674,-6.0394,-7.668748889,-7.6504,1,CMIP5 -2050,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.782495457,19.0882,21.32018,20.34217833,20.3931,1,CMIP5 -2051,tas,temperature,tgav,rcp45,C,Simulated,global,0.64414048,14.5841,16.22284,15.36626556,15.71545,1,CMIP5 -2051,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.162982113,-9.5209,-6.1791,-7.721648333,-7.9359,1,CMIP5 -2051,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.754117277,19.1929,21.33588,20.40756722,20.4583,1,CMIP5 -2052,tas,temperature,tgav,rcp45,C,Simulated,global,0.624008375,14.5873,16.22996,15.39245667,15.5823,1,CMIP5 -2052,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.199633279,-9.1159,-5.8627,-7.590081667,-7.4005,1,CMIP5 -2052,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.735551266,19.2023,21.3358,20.410575,20.4287,1,CMIP5 -2053,tas,temperature,tgav,rcp45,C,Simulated,global,0.663329963,14.5239,16.29158,15.36723944,15.6294,1,CMIP5 -2053,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.317141309,-9.6556,-5.94645,-7.717610556,-7.9022,1,CMIP5 -2053,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.74551078,19.2578,21.38718,20.40767556,20.4128,1,CMIP5 -2054,tas,temperature,tgav,rcp45,C,Simulated,global,0.679400378,14.5386,16.25532,15.37111611,15.6694,1,CMIP5 -2054,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.28942837,-9.7142,-5.9265,-7.726664444,-7.7939,1,CMIP5 -2054,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.772939138,19.242,21.3662,20.41385278,20.4426,1,CMIP5 -2055,tas,temperature,tgav,rcp45,C,Simulated,global,0.659920513,14.5967,16.2449,15.42119444,15.7312,1,CMIP5 -2055,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.16890456,-9.5002,-5.98955,-7.566272778,-7.554,1,CMIP5 -2055,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.774814791,19.1938,21.3555,20.44066111,20.3891,1,CMIP5 -2056,tas,temperature,tgav,rcp45,C,Simulated,global,0.678754334,14.6171,16.3299,15.41458056,15.6735,1,CMIP5 -2056,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.231361056,-9.7863,-5.828225,-7.556755,-7.8613,1,CMIP5 -2056,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.786234423,19.1964,21.41626,20.43051222,20.293,1,CMIP5 -2057,tas,temperature,tgav,rcp45,C,Simulated,global,0.743625789,14.4686,16.3091,15.41036944,15.8441,1,CMIP5 -2057,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.371608662,-10.1457,-5.8216,-7.635235,-7.9477,1,CMIP5 -2057,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.817389939,19.1604,21.37806,20.44296778,20.4475,1,CMIP5 -2058,tas,temperature,tgav,rcp45,C,Simulated,global,0.720866165,14.5422,16.3589,15.50065556,15.9584,1,CMIP5 -2058,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.441126738,-9.8357,-5.5621,-7.500723889,-7.6581,1,CMIP5 -2058,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.810516464,19.0885,21.45296,20.52284556,20.6201,1,CMIP5 -2059,tas,temperature,tgav,rcp45,C,Simulated,global,0.683012325,14.6289,16.46236,15.497865,15.6326,1,CMIP5 -2059,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.230186815,-9.2339,-5.770625,-7.528940556,-7.97154,1,CMIP5 -2059,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.766773238,19.22,21.56388,20.52614778,20.635,1,CMIP5 -2060,tas,temperature,tgav,rcp45,C,Simulated,global,0.695832696,14.5966,16.44556,15.47978167,15.6859,1,CMIP5 -2060,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.366189577,-9.6689,-5.653925,-7.543376111,-7.8203,1,CMIP5 -2060,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.764540767,19.3483,21.54238,20.507195,20.6187,1,CMIP5 -2061,tas,temperature,tgav,rcp45,C,Simulated,global,0.729500947,14.5042,16.49214,15.50144056,15.7851,1,CMIP5 -2061,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.373012286,-9.8497,-5.68135,-7.561986667,-7.798,1,CMIP5 -2061,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.806709964,19.3115,21.58256,20.53759,20.6554,1,CMIP5 -2062,tas,temperature,tgav,rcp45,C,Simulated,global,0.793012111,14.5209,16.53822,15.51396333,15.8072,1,CMIP5 -2062,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.566459945,-10.3641,-5.3408,-7.614146667,-7.92712,1,CMIP5 -2062,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.82927776,19.2843,21.6463,20.56464444,20.7883,1,CMIP5 -2063,tas,temperature,tgav,rcp45,C,Simulated,global,0.73130105,14.6425,16.5144,15.54576944,15.7595,1,CMIP5 -2063,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.355974381,-9.5319,-5.6416,-7.520543333,-7.89834,1,CMIP5 -2063,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.789959316,19.3659,21.6115,20.58249444,20.8471,1,CMIP5 -2064,tas,temperature,tgav,rcp45,C,Simulated,global,0.713821297,14.7198,16.4581,15.57431111,15.9208,1,CMIP5 -2064,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.357623702,-9.8043,-5.5351,-7.483673889,-7.5206,1,CMIP5 -2064,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.769620307,19.3507,21.54036,20.60935111,20.8488,1,CMIP5 -2065,tas,temperature,tgav,rcp45,C,Simulated,global,0.734205639,14.6721,16.49096,15.56980667,15.9212,1,CMIP5 -2065,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.301605992,-9.6779,-5.5761,-7.388931111,-7.5046,1,CMIP5 -2065,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.798415002,19.2997,21.58016,20.583015,20.8043,1,CMIP5 -2066,tas,temperature,tgav,rcp45,C,Simulated,global,0.777454836,14.626,16.4904,15.58661944,15.8286,1,CMIP5 -2066,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.374959681,-9.7427,-5.3898,-7.366757222,-7.3527,1,CMIP5 -2066,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.819528078,19.2622,21.56242,20.59863556,20.9,1,CMIP5 -2067,tas,temperature,tgav,rcp45,C,Simulated,global,0.78424593,14.6386,16.57148,15.62335611,15.9556,1,CMIP5 -2067,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.477179073,-9.8444,-5.2147,-7.323398889,-7.467,1,CMIP5 -2067,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.836035745,19.3248,21.64482,20.63393556,20.9535,1,CMIP5 -2068,tas,temperature,tgav,rcp45,C,Simulated,global,0.766604606,14.7484,16.56934,15.62455722,15.907,1,CMIP5 -2068,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.39161266,-9.4586,-5.1732,-7.311123333,-7.70986,1,CMIP5 -2068,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.803349018,19.3194,21.63854,20.63355722,20.9098,1,CMIP5 -2069,tas,temperature,tgav,rcp45,C,Simulated,global,0.736476639,14.753,16.55704,15.56572111,15.73,1,CMIP5 -2069,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.329343385,-9.5976,-5.57355,-7.392879444,-7.69634,1,CMIP5 -2069,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.777255285,19.3225,21.62084,20.57999611,20.7555,1,CMIP5 -2070,tas,temperature,tgav,rcp45,C,Simulated,global,0.696672385,14.7819,16.52098,15.60870611,15.7443,1,CMIP5 -2070,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.256205549,-9.0277,-5.5444,-7.307191667,-7.6546,1,CMIP5 -2070,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.752786158,19.4031,21.56858,20.61295333,20.8389,1,CMIP5 -2071,tas,temperature,tgav,rcp45,C,Simulated,global,0.730175422,14.8363,16.59862,15.65188,15.8893,1,CMIP5 -2071,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.336019535,-9.2508,-5.278575,-7.288844444,-7.6689,1,CMIP5 -2071,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.773879525,19.4742,21.67932,20.66084667,20.954,1,CMIP5 -2072,tas,temperature,tgav,rcp45,C,Simulated,global,0.72533319,14.8846,16.69002,15.68448,15.8365,1,CMIP5 -2072,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.338446356,-9.1851,-5.355525,-7.224887778,-7.2628,1,CMIP5 -2072,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.793357217,19.4284,21.7722,20.68652778,21.0774,1,CMIP5 -2073,tas,temperature,tgav,rcp45,C,Simulated,global,0.708463732,14.9279,16.65284,15.68605444,15.7491,1,CMIP5 -2073,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.29626567,-9.0489,-5.36935,-7.273858889,-7.54678,1,CMIP5 -2073,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.745680142,19.5228,21.70546,20.69981222,21.0686,1,CMIP5 -2074,tas,temperature,tgav,rcp45,C,Simulated,global,0.759170929,14.7947,16.6493,15.66765,15.9387,1,CMIP5 -2074,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.285525985,-9.0886,-5.53495,-7.33081,-7.59444,1,CMIP5 -2074,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.821000639,19.3838,21.71112,20.68928833,21.064,1,CMIP5 -2075,tas,temperature,tgav,rcp45,C,Simulated,global,0.787575158,14.8264,16.69394,15.71382111,15.9732,1,CMIP5 -2075,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.376221523,-9.2928,-5.1227,-7.186221111,-7.47234,1,CMIP5 -2075,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.831321322,19.4116,21.7396,20.71454722,21.0818,1,CMIP5 -2076,tas,temperature,tgav,rcp45,C,Simulated,global,0.788044975,14.8042,16.64916,15.71772889,15.9039,1,CMIP5 -2076,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.309208167,-9.1894,-5.0284,-7.070727222,-7.56132,1,CMIP5 -2076,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.815135623,19.4459,21.70404,20.69471556,21.0821,1,CMIP5 -2077,tas,temperature,tgav,rcp45,C,Simulated,global,0.774957911,14.8264,16.66626,15.73603444,15.9348,1,CMIP5 -2077,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.427772004,-9.2609,-5.0256,-7.123228889,-7.47676,1,CMIP5 -2077,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.804742235,19.5018,21.70706,20.72797056,21.1337,1,CMIP5 -2078,tas,temperature,tgav,rcp45,C,Simulated,global,0.753387358,14.9025,16.6845,15.75368889,15.8996,1,CMIP5 -2078,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.403404202,-9.0276,-5.040675,-7.001793889,-7.3659,1,CMIP5 -2078,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.819761347,19.4571,21.73674,20.72253778,20.9915,1,CMIP5 -2079,tas,temperature,tgav,rcp45,C,Simulated,global,0.764123968,14.861,16.71986,15.75394833,15.9501,1,CMIP5 -2079,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.452752932,-9.2254,-5.085575,-7.121189444,-7.50938,1,CMIP5 -2079,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.811965382,19.4934,21.77864,20.74991556,20.9771,1,CMIP5 -2080,tas,temperature,tgav,rcp45,C,Simulated,global,0.787203085,14.8594,16.80276,15.80257333,16.0871,1,CMIP5 -2080,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.528440712,-9.675,-4.9836,-7.071732778,-7.45922,1,CMIP5 -2080,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.819384429,19.5427,21.86838,20.79790056,21.0465,1,CMIP5 -2081,tas,temperature,tgav,rcp45,C,Simulated,global,0.795280806,14.7932,16.79556,15.77555944,15.9628,1,CMIP5 -2081,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.367825518,-9.0636,-5.0438,-7.020164444,-7.39988,1,CMIP5 -2081,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.825614415,19.4687,21.8473,20.75361389,20.9809,1,CMIP5 -2082,tas,temperature,tgav,rcp45,C,Simulated,global,0.803100946,14.8058,16.75654,15.78014056,15.8787,1,CMIP5 -2082,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.419840324,-9.4196,-5.0059,-7.078029444,-7.37284,1,CMIP5 -2082,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.803061811,19.5777,21.7945,20.77240833,21.0665,1,CMIP5 -2083,tas,temperature,tgav,rcp45,C,Simulated,global,0.799630501,14.7468,16.78926,15.75020944,15.9233,1,CMIP5 -2083,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.401438853,-9.3624,-5.236125,-7.174315556,-7.34364,1,CMIP5 -2083,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.823712561,19.5379,21.82794,20.75710444,21.0045,1,CMIP5 -2084,tas,temperature,tgav,rcp45,C,Simulated,global,0.773682889,14.875,16.77182,15.77799944,15.9306,1,CMIP5 -2084,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.4310163,-9.2196,-5.198175,-7.145562778,-7.47284,1,CMIP5 -2084,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.833354356,19.4851,21.83384,20.78425722,21.0569,1,CMIP5 -2085,tas,temperature,tgav,rcp45,C,Simulated,global,0.788314123,14.7926,16.72756,15.800265,15.9376,1,CMIP5 -2085,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.40694904,-9.3196,-5.0639,-7.031282222,-7.43814,1,CMIP5 -2085,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.815700565,19.5861,21.77308,20.78647,21.032,1,CMIP5 -2086,tas,temperature,tgav,rcp45,C,Simulated,global,0.767757776,14.8851,16.7437,15.79574722,15.9527,1,CMIP5 -2086,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.372453734,-9.1086,-4.986475,-6.968498333,-7.5791,1,CMIP5 -2086,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.827919527,19.419,21.8359,20.76650556,20.9587,1,CMIP5 -2087,tas,temperature,tgav,rcp45,C,Simulated,global,0.722640213,14.9358,16.77712,15.78131056,15.9119,1,CMIP5 -2087,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.375140492,-9.0568,-5.18335,-7.082859444,-7.39826,1,CMIP5 -2087,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.774895698,19.5452,21.82472,20.774355,20.9032,1,CMIP5 -2088,tas,temperature,tgav,rcp45,C,Simulated,global,0.746550848,14.8506,16.7535,15.76693056,15.8023,1,CMIP5 -2088,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.423148942,-9.4121,-5.151825,-7.120583333,-7.5214,1,CMIP5 -2088,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.774678981,19.5761,21.82184,20.76548778,20.9801,1,CMIP5 -2089,tas,temperature,tgav,rcp45,C,Simulated,global,0.710967955,14.8588,16.77806,15.787765,15.8472,1,CMIP5 -2089,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.313431161,-9.0766,-5.280525,-7.074275,-7.4073,1,CMIP5 -2089,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.748522558,19.5746,21.8277,20.78108889,20.9512,1,CMIP5 -2090,tas,temperature,tgav,rcp45,C,Simulated,global,0.722920117,14.965,16.7998,15.84523056,15.921,1,CMIP5 -2090,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.262618128,-8.7563,-5.1355,-6.95753,-7.43542,1,CMIP5 -2090,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.768024185,19.5798,21.85982,20.82514111,21.0929,1,CMIP5 -2091,tas,temperature,tgav,rcp45,C,Simulated,global,0.808655324,14.7872,16.8432,15.82435278,15.9587,1,CMIP5 -2091,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.360576501,-9.0559,-5.0475,-7.003305,-7.31422,1,CMIP5 -2091,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.840483924,19.5566,21.887,20.80947222,21.1888,1,CMIP5 -2092,tas,temperature,tgav,rcp45,C,Simulated,global,0.789004033,14.7864,16.82824,15.80078222,15.9444,1,CMIP5 -2092,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.446386182,-9.0833,-5.120775,-7.109144444,-7.4421,1,CMIP5 -2092,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.830769958,19.5043,21.89558,20.80346167,21.1557,1,CMIP5 -2093,tas,temperature,tgav,rcp45,C,Simulated,global,0.786428039,14.8828,16.84612,15.80028,15.8654,1,CMIP5 -2093,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.408966512,-9.1857,-4.982325,-7.010725556,-7.30538,1,CMIP5 -2093,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.795752645,19.562,21.8887,20.78165833,21.0824,1,CMIP5 -2094,tas,temperature,tgav,rcp45,C,Simulated,global,0.789488805,14.8991,16.88612,15.81563278,15.8908,1,CMIP5 -2094,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.425648805,-9.2217,-5.026,-6.988921667,-7.2468,1,CMIP5 -2094,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.833448318,19.4752,21.9401,20.79530278,21.0688,1,CMIP5 -2095,tas,temperature,tgav,rcp45,C,Simulated,global,0.780916362,14.7794,16.87558,15.78196444,16.0292,1,CMIP5 -2095,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.319423963,-9.1079,-5.1196,-7.115203333,-7.30358,1,CMIP5 -2095,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.831293326,19.5438,21.9239,20.78299722,20.9426,1,CMIP5 -2096,tas,temperature,tgav,rcp45,C,Simulated,global,0.76583127,14.7828,16.84548,15.79453111,15.9412,1,CMIP5 -2096,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.432788019,-9.1967,-5.0915,-7.108892222,-7.28588,1,CMIP5 -2096,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.781770239,19.6541,21.88382,20.79628556,21.0439,1,CMIP5 -2097,tas,temperature,tgav,rcp45,C,Simulated,global,0.771007375,14.9069,16.83326,15.79518444,15.9325,1,CMIP5 -2097,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.337652539,-9.1663,-5.1993,-7.071198889,-7.44764,1,CMIP5 -2097,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.809962759,19.5231,21.90284,20.78867667,21.0352,1,CMIP5 -2098,tas,temperature,tgav,rcp45,C,Simulated,global,0.79974168,14.9122,16.92272,15.82033833,15.9052,1,CMIP5 -2098,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.39697306,-9.118,-5.0905,-7.042373889,-7.19964,1,CMIP5 -2098,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.820944557,19.5009,21.9592,20.81385833,21.2184,1,CMIP5 -2099,tas,temperature,tgav,rcp45,C,Simulated,global,0.76339489,14.8541,16.8521,15.83516944,15.9081,1,CMIP5 -2099,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.509342213,-9.1575,-4.9596,-7.081108889,-7.39628,1,CMIP5 -2099,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.785300949,19.633,21.9149,20.83961389,21.1393,1,CMIP5 -2100,tas,temperature,tgav,rcp45,C,Simulated,global,0.751787712,14.8611,16.85088,15.84288667,15.9998,1,CMIP5 -2100,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.373210982,-8.9065,-4.9566,-7.000851667,-7.27134,1,CMIP5 -2100,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.803765712,19.5457,21.88732,20.83133278,21.1216,1,CMIP5 -2101,tas,temperature,tgav,rcp45,C,Simulated,global,0.634942761,15.2806,16.8635,16.23121667,16.46465,1,CMIP5 -2101,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.54289388,-8.5853,-4.9621,-6.634808333,-6.522925,1,CMIP5 -2101,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.590000224,20.3747,21.8983,21.1803,21.3478,1,CMIP5 -2102,tas,temperature,tgav,rcp45,C,Simulated,global,0.603048078,15.4264,16.84485,16.26060833,16.51395,1,CMIP5 -2102,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.647073073,-8.8156,-4.8825,-6.669141667,-6.598675,1,CMIP5 -2102,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.552707625,20.3801,21.8577,21.22436667,21.35685,1,CMIP5 -2103,tas,temperature,tgav,rcp45,C,Simulated,global,0.517096841,15.5068,16.87855,16.38255,16.5377,1,CMIP5 -2103,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.40390555,-8.21,-5.0787,-6.42181,-6.2477,1,CMIP5 -2103,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.627312986,20.3304,21.96285,21.29327,21.5379,1,CMIP5 -2104,tas,temperature,tgav,rcp45,C,Simulated,global,0.555930837,15.4011,16.82625,16.33381,16.4125,1,CMIP5 -2104,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.354122159,-8.0017,-4.8284,-6.39793,-6.3882,1,CMIP5 -2104,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.619484655,20.2322,21.8965,21.22956,21.3431,1,CMIP5 -2105,tas,temperature,tgav,rcp45,C,Simulated,global,0.513981845,15.5086,16.8481,16.36542,16.4465,1,CMIP5 -2105,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.251833513,-7.7823,-4.8762,-6.33569,-6.2911,1,CMIP5 -2105,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.579708914,20.3423,21.90555,21.25511,21.3738,1,CMIP5 -2106,tas,temperature,tgav,rcp45,C,Simulated,global,0.552420718,15.4495,16.90415,16.38583,16.4791,1,CMIP5 -2106,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.289605533,-7.6001,-4.7678,-6.15941,-6.08,1,CMIP5 -2106,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.647455788,20.2233,21.96235,21.24129,21.4147,1,CMIP5 -2107,tas,temperature,tgav,rcp45,C,Simulated,global,0.570864829,15.4,16.92965,16.36171,16.4919,1,CMIP5 -2107,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.229047293,-7.7829,-5.0518,-6.35103,-6.2931,1,CMIP5 -2107,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.670516001,20.2098,22.0064,21.25256,21.398,1,CMIP5 -2108,tas,temperature,tgav,rcp45,C,Simulated,global,0.589394272,15.4098,16.9799,16.40896,16.5761,1,CMIP5 -2108,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.143561986,-7.4005,-4.8246,-6.1292,-6.0646,1,CMIP5 -2108,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.701012081,20.1713,22.0187,21.26364,21.4975,1,CMIP5 -2109,tas,temperature,tgav,rcp45,C,Simulated,global,0.593751689,15.454,17.0022,16.44766,16.649,1,CMIP5 -2109,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.428247026,-7.9012,-4.5251,-6.24499,-6.45,1,CMIP5 -2109,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.660955076,20.3108,22.0702,21.33586,21.4909,1,CMIP5 -2110,tas,temperature,tgav,rcp45,C,Simulated,global,0.641763264,15.3723,17.0578,16.43038,16.6682,1,CMIP5 -2110,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.403193981,-7.9647,-4.639,-6.10576,-6.0977,1,CMIP5 -2110,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.731978044,20.1327,22.0728,21.28408,21.4326,1,CMIP5 -2111,tas,temperature,tgav,rcp45,C,Simulated,global,0.552305405,15.5636,16.99565,16.48841,16.6716,1,CMIP5 -2111,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.310377307,-7.7124,-4.7471,-6.10152,-6.0606,1,CMIP5 -2111,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.636805387,20.3584,22.02495,21.35351,21.4985,1,CMIP5 -2112,tas,temperature,tgav,rcp45,C,Simulated,global,0.592302635,15.419,16.922,16.42358,16.6316,1,CMIP5 -2112,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.338620881,-7.679,-4.7103,-6.13496,-6.274,1,CMIP5 -2112,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.646240577,20.2289,21.9517,21.28214,21.4304,1,CMIP5 -2113,tas,temperature,tgav,rcp45,C,Simulated,global,0.62073892,15.3592,17.00335,16.40537,16.5457,1,CMIP5 -2113,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.21500384,-7.6929,-5.0297,-6.25597,-6.3556,1,CMIP5 -2113,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.693782408,20.1741,22.05005,21.28593,21.4958,1,CMIP5 -2114,tas,temperature,tgav,rcp45,C,Simulated,global,0.658249991,15.3701,17.1687,16.4176,16.54,1,CMIP5 -2114,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.316293183,-8.2817,-5.0379,-6.41759,-6.7122,1,CMIP5 -2114,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.697613909,20.2663,22.17105,21.33629,21.5052,1,CMIP5 -2115,tas,temperature,tgav,rcp45,C,Simulated,global,0.621746436,15.4004,17.05865,16.43849,16.5808,1,CMIP5 -2115,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.485403823,-8.2571,-4.6687,-6.22696,-6.3915,1,CMIP5 -2115,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.68977667,20.2322,22.06515,21.31963,21.5275,1,CMIP5 -2116,tas,temperature,tgav,rcp45,C,Simulated,global,0.552279896,15.4931,16.95475,16.41221,16.5809,1,CMIP5 -2116,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.332408167,-8.1464,-5.0015,-6.26156,-6.153,1,CMIP5 -2116,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.639922686,20.2927,21.94715,21.29563,21.5152,1,CMIP5 -2117,tas,temperature,tgav,rcp45,C,Simulated,global,0.544170141,15.4058,16.8641,16.32018,16.428,1,CMIP5 -2117,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.219315725,-7.8316,-5.1678,-6.36137,-6.2923,1,CMIP5 -2117,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.652548215,20.2168,21.91715,21.20529,21.453,1,CMIP5 -2118,tas,temperature,tgav,rcp45,C,Simulated,global,0.53350511,15.5352,16.94695,16.41535,16.5825,1,CMIP5 -2118,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.423193399,-8.0267,-4.8528,-6.26865,-6.3096,1,CMIP5 -2118,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.61663186,20.3788,22.00685,21.30061,21.4641,1,CMIP5 -2119,tas,temperature,tgav,rcp45,C,Simulated,global,0.558140744,15.568,17.085,16.4543,16.5704,1,CMIP5 -2119,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.373811324,-8.021,-4.8879,-6.28816,-6.4674,1,CMIP5 -2119,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.636198041,20.4538,22.14145,21.35267,21.4788,1,CMIP5 -2120,tas,temperature,tgav,rcp45,C,Simulated,global,0.612854136,15.3893,17.028,16.41982,16.579,1,CMIP5 -2120,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.270520807,-7.6805,-4.6995,-6.123,-6.2893,1,CMIP5 -2120,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.690833274,20.196,22.0356,21.27442,21.523,1,CMIP5 -2121,tas,temperature,tgav,rcp45,C,Simulated,global,0.63534887,15.2949,16.97125,16.37607,16.5824,1,CMIP5 -2121,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.23407993,-7.66,-4.7578,-6.18275,-6.3999,1,CMIP5 -2121,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.7013194,20.1052,21.97525,21.23409,21.4788,1,CMIP5 -2122,tas,temperature,tgav,rcp45,C,Simulated,global,0.625293167,15.437,17.09325,16.46855,16.6173,1,CMIP5 -2122,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.303064326,-7.9661,-4.5924,-6.15038,-6.1353,1,CMIP5 -2122,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.700242624,20.22,22.0714,21.33888,21.5272,1,CMIP5 -2123,tas,temperature,tgav,rcp45,C,Simulated,global,0.585621487,15.6157,17.16215,16.52939,16.747,1,CMIP5 -2123,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.3804856,-7.9017,-4.414,-6.03287,-6.246,1,CMIP5 -2123,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.605324677,20.4627,22.12865,21.38775,21.4161,1,CMIP5 -2124,tas,temperature,tgav,rcp45,C,Simulated,global,0.616040928,15.437,16.97855,16.45731,16.6723,1,CMIP5 -2124,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.532516677,-8.1332,-4.6419,-6.25189,-6.6458,1,CMIP5 -2124,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.621642938,20.3334,22.0102,21.34798,21.4687,1,CMIP5 -2125,tas,temperature,tgav,rcp45,C,Simulated,global,0.587424342,15.474,16.8736,16.46374,16.7171,1,CMIP5 -2125,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.493776374,-8.0037,-4.5573,-6.18878,-6.3823,1,CMIP5 -2125,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.609046511,20.3201,21.8992,21.34256,21.4795,1,CMIP5 -2126,tas,temperature,tgav,rcp45,C,Simulated,global,0.630608612,15.3947,17.0117,16.44968,16.6791,1,CMIP5 -2126,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.413470681,-7.9386,-4.6912,-6.1587,-6.2901,1,CMIP5 -2126,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.701753902,20.2027,22.03905,21.31857,21.4677,1,CMIP5 -2127,tas,temperature,tgav,rcp45,C,Simulated,global,0.542014491,15.591,17.0042,16.50606,16.7,1,CMIP5 -2127,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.311976058,-7.5284,-4.5803,-5.93745,-5.9651,1,CMIP5 -2127,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.618126185,20.3704,21.99925,21.33949,21.518,1,CMIP5 -2128,tas,temperature,tgav,rcp45,C,Simulated,global,0.575108472,15.5474,17.07965,16.51293,16.6691,1,CMIP5 -2128,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.358231456,-7.6848,-4.566,-6.09189,-6.2317,1,CMIP5 -2128,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.656371597,20.3763,22.1282,21.38054,21.6045,1,CMIP5 -2129,tas,temperature,tgav,rcp45,C,Simulated,global,0.643484802,15.3622,17.0583,16.4547,16.5702,1,CMIP5 -2129,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.302693364,-7.7619,-4.5362,-6.27137,-6.565,1,CMIP5 -2129,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.715626844,20.2237,22.10305,21.34789,21.6267,1,CMIP5 -2130,tas,temperature,tgav,rcp45,C,Simulated,global,0.575487977,15.5331,17.0525,16.50822,16.6647,1,CMIP5 -2130,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.324158068,-7.6261,-4.5181,-6.14434,-6.6383,1,CMIP5 -2130,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.608214419,20.4491,22.0611,21.3867,21.6065,1,CMIP5 -2131,tas,temperature,tgav,rcp45,C,Simulated,global,0.630898358,15.4359,17.0843,16.52116,16.6686,1,CMIP5 -2131,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.325080102,-7.7747,-4.5868,-6.18661,-6.4338,1,CMIP5 -2131,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.709721515,20.2849,22.11945,21.41077,21.6764,1,CMIP5 -2132,tas,temperature,tgav,rcp45,C,Simulated,global,0.636260312,15.4899,17.19365,16.54635,16.6616,1,CMIP5 -2132,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.283448834,-7.5129,-4.44,-5.84871,-5.8759,1,CMIP5 -2132,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.737270339,20.2271,22.1729,21.36894,21.6049,1,CMIP5 -2133,tas,temperature,tgav,rcp45,C,Simulated,global,0.624453419,15.455,17.0663,16.51164,16.6266,1,CMIP5 -2133,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.452201631,-8.0763,-4.5297,-6.06771,-6.1417,1,CMIP5 -2133,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.718941847,20.2435,22.0421,21.3739,21.6929,1,CMIP5 -2134,tas,temperature,tgav,rcp45,C,Simulated,global,0.567392655,15.617,17.01415,16.58645,16.8202,1,CMIP5 -2134,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.510475948,-7.9668,-4.4393,-6.01677,-6.0655,1,CMIP5 -2134,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.633924826,20.4245,22.02335,21.45379,21.6846,1,CMIP5 -2135,tas,temperature,tgav,rcp45,C,Simulated,global,0.61559294,15.5152,17.1438,16.55724,16.7054,1,CMIP5 -2135,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.371113098,-7.7285,-4.2887,-6.06077,-6.3693,1,CMIP5 -2135,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.670874842,20.3675,22.1471,21.42706,21.6601,1,CMIP5 -2136,tas,temperature,tgav,rcp45,C,Simulated,global,0.668725947,15.3751,17.0928,16.53122,16.6946,1,CMIP5 -2136,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.291380892,-7.4457,-4.5839,-6.11683,-6.6763,1,CMIP5 -2136,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.694171397,20.2644,22.1196,21.40854,21.5953,1,CMIP5 -2137,tas,temperature,tgav,rcp45,C,Simulated,global,0.583886159,15.5078,16.99325,16.49207,16.6964,1,CMIP5 -2137,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.426410106,-7.6997,-4.5538,-6.09209,-6.3857,1,CMIP5 -2137,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.617225775,20.3622,22.0325,21.35552,21.4968,1,CMIP5 -2138,tas,temperature,tgav,rcp45,C,Simulated,global,0.520001413,15.6508,17.0273,16.5264,16.6995,1,CMIP5 -2138,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.344145066,-7.7798,-4.637,-6.19426,-6.4648,1,CMIP5 -2138,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.565960862,20.5543,22.062,21.41932,21.6229,1,CMIP5 -2139,tas,temperature,tgav,rcp45,C,Simulated,global,0.668415649,15.3383,17.07775,16.46267,16.7024,1,CMIP5 -2139,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.349721798,-7.6229,-4.5543,-6.17214,-6.859,1,CMIP5 -2139,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.677719293,20.2695,22.07545,21.33921,21.4618,1,CMIP5 -2140,tas,temperature,tgav,rcp45,C,Simulated,global,0.734814754,15.2396,17.1947,16.46968,16.6517,1,CMIP5 -2140,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.374143315,-7.5503,-4.5247,-6.0078,-6.5511,1,CMIP5 -2140,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.742745089,20.1316,22.1526,21.31128,21.5185,1,CMIP5 -2141,tas,temperature,tgav,rcp45,C,Simulated,global,0.692295326,15.3128,17.1548,16.46694,16.5624,1,CMIP5 -2141,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.146516712,-7.4829,-4.9079,-6.11388,-6.5501,1,CMIP5 -2141,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.701321039,20.193,22.10415,21.33107,21.5128,1,CMIP5 -2142,tas,temperature,tgav,rcp45,C,Simulated,global,0.626704617,15.3837,17.0052,16.46732,16.6208,1,CMIP5 -2142,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.170900501,-7.3055,-4.7499,-6.08559,-6.6096,1,CMIP5 -2142,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.651403592,20.2601,21.9847,21.325,21.5427,1,CMIP5 -2143,tas,temperature,tgav,rcp45,C,Simulated,global,0.561158438,15.59,17.0945,16.53468,16.6517,1,CMIP5 -2143,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.084216631,-7.1353,-4.7804,-6.01094,-6.4573,1,CMIP5 -2143,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.591884657,20.4785,22.07375,21.39117,21.5522,1,CMIP5 -2144,tas,temperature,tgav,rcp45,C,Simulated,global,0.709565048,15.3214,17.2587,16.49126,16.6236,1,CMIP5 -2144,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.179281621,-7.5359,-4.8977,-6.15172,-6.5981,1,CMIP5 -2144,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.755793022,20.2236,22.23975,21.36875,21.5504,1,CMIP5 -2145,tas,temperature,tgav,rcp45,C,Simulated,global,0.616719963,15.4972,17.19205,16.50225,16.6146,1,CMIP5 -2145,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.090895704,-7.2901,-4.8291,-5.99782,-6.1864,1,CMIP5 -2145,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.694453845,20.3051,22.1903,21.34826,21.4991,1,CMIP5 -2146,tas,temperature,tgav,rcp45,C,Simulated,global,0.641173165,15.3601,17.0909,16.42448,16.5204,1,CMIP5 -2146,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.281646701,-7.841,-4.8227,-6.1802,-6.4013,1,CMIP5 -2146,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.70569299,20.1852,22.09205,21.29221,21.4064,1,CMIP5 -2147,tas,temperature,tgav,rcp45,C,Simulated,global,0.582964032,15.491,17.0233,16.47144,16.6065,1,CMIP5 -2147,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.497856643,-8.127,-4.5583,-6.10916,-6.0058,1,CMIP5 -2147,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.667368856,20.2574,22.04485,21.33275,21.4811,1,CMIP5 -2148,tas,temperature,tgav,rcp45,C,Simulated,global,0.514281451,15.7538,17.11795,16.61099,16.7608,1,CMIP5 -2148,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.327465982,-7.5484,-4.4376,-5.87103,-5.7995,1,CMIP5 -2148,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.586849938,20.5327,22.1168,21.452,21.6431,1,CMIP5 -2149,tas,temperature,tgav,rcp45,C,Simulated,global,0.652851966,15.4723,17.20725,16.56973,16.7187,1,CMIP5 -2149,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.271316195,-7.335,-4.5058,-5.90936,-6.5332,1,CMIP5 -2149,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.690707896,20.3514,22.1679,21.41192,21.6176,1,CMIP5 -2150,tas,temperature,tgav,rcp45,C,Simulated,global,0.620381251,15.4637,17.1008,16.51892,16.7103,1,CMIP5 -2150,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.407202438,-7.9242,-4.5683,-6.09631,-6.4585,1,CMIP5 -2150,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.667452322,20.3244,22.07825,21.38905,21.6109,1,CMIP5 -2151,tas,temperature,tgav,rcp45,C,Simulated,global,0.5759152,15.6065,17.13965,16.56919,16.7031,1,CMIP5 -2151,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.274802464,-7.5617,-4.4736,-5.90984,-6.1013,1,CMIP5 -2151,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.639352691,20.4197,22.0958,21.41036,21.6333,1,CMIP5 -2152,tas,temperature,tgav,rcp45,C,Simulated,global,0.55588339,15.6328,17.1089,16.57544,16.7457,1,CMIP5 -2152,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.171911694,-7.5851,-4.6498,-5.98337,-5.979,1,CMIP5 -2152,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.623311108,20.4248,22.0586,21.43352,21.6745,1,CMIP5 -2153,tas,temperature,tgav,rcp45,C,Simulated,global,0.543374589,15.5802,16.99655,16.50427,16.6904,1,CMIP5 -2153,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.184508177,-7.4629,-4.8605,-6.09137,-6.2168,1,CMIP5 -2153,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.607170678,20.4133,22.0065,21.37048,21.4531,1,CMIP5 -2154,tas,temperature,tgav,rcp45,C,Simulated,global,0.614994462,15.4842,17.1466,16.50464,16.662,1,CMIP5 -2154,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.185183957,-7.5132,-4.8425,-6.06134,-6.0878,1,CMIP5 -2154,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.709727528,20.2673,22.17335,21.36407,21.4691,1,CMIP5 -2155,tas,temperature,tgav,rcp45,C,Simulated,global,0.543059322,15.7288,17.15335,16.61255,16.7616,1,CMIP5 -2155,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.416101898,-7.8015,-4.5839,-5.89845,-5.4944,1,CMIP5 -2155,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.641005748,20.4347,22.18015,21.45943,21.6089,1,CMIP5 -2156,tas,temperature,tgav,rcp45,C,Simulated,global,0.536345756,15.7377,17.09685,16.63941,16.8614,1,CMIP5 -2156,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.44416425,-7.5857,-4.3644,-5.92497,-5.9179,1,CMIP5 -2156,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.611104936,20.5393,22.1557,21.49824,21.6324,1,CMIP5 -2157,tas,temperature,tgav,rcp45,C,Simulated,global,0.52702244,15.7457,17.14985,16.59705,16.7799,1,CMIP5 -2157,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.430412541,-7.8292,-4.4283,-5.90568,-5.869,1,CMIP5 -2157,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.59280216,20.5383,22.14065,21.44261,21.5949,1,CMIP5 -2158,tas,temperature,tgav,rcp45,C,Simulated,global,0.551099442,15.725,17.22715,16.60919,16.6919,1,CMIP5 -2158,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.385316532,-7.6499,-4.337,-5.89531,-5.8064,1,CMIP5 -2158,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.657502725,20.499,22.2604,21.45464,21.6434,1,CMIP5 -2159,tas,temperature,tgav,rcp45,C,Simulated,global,0.57378166,15.681,17.21575,16.59301,16.6756,1,CMIP5 -2159,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.460823096,-7.9088,-4.3583,-5.88488,-5.7681,1,CMIP5 -2159,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.676434556,20.4368,22.2092,21.43306,21.6088,1,CMIP5 -2160,tas,temperature,tgav,rcp45,C,Simulated,global,0.500128831,15.8135,17.19205,16.56965,16.6369,1,CMIP5 -2160,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.331581121,-7.8492,-4.6965,-5.93905,-5.3237,1,CMIP5 -2160,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.631856956,20.5001,22.1981,21.41614,21.5492,1,CMIP5 -2161,tas,temperature,tgav,rcp45,C,Simulated,global,0.536198977,15.796,17.2647,16.64616,16.731,1,CMIP5 -2161,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.227632349,-7.5485,-4.7023,-5.831,-5.569,1,CMIP5 -2161,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624905863,20.5333,22.2442,21.48672,21.6468,1,CMIP5 -2162,tas,temperature,tgav,rcp45,C,Simulated,global,0.530033562,15.698,17.10765,16.58847,16.7515,1,CMIP5 -2162,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.152817234,-7.2468,-4.674,-5.77233,-5.5821,1,CMIP5 -2162,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624442411,20.4163,22.06785,21.40457,21.5934,1,CMIP5 -2163,tas,temperature,tgav,rcp45,C,Simulated,global,0.542561889,15.6544,17.06635,16.58929,16.7474,1,CMIP5 -2163,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.268144732,-7.5098,-4.6854,-5.92963,-5.6816,1,CMIP5 -2163,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.650460624,20.3851,22.0835,21.43846,21.6837,1,CMIP5 -2164,tas,temperature,tgav,rcp45,C,Simulated,global,0.579236301,15.5938,16.97905,16.60987,16.7983,1,CMIP5 -2164,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.336113375,-7.1597,-4.4911,-5.90658,-6.2431,1,CMIP5 -2164,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.605973619,20.4356,22.0129,21.45922,21.6951,1,CMIP5 -2165,tas,temperature,tgav,rcp45,C,Simulated,global,0.579134331,15.544,17.00435,16.54321,16.7965,1,CMIP5 -2165,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.406074645,-7.3892,-4.3279,-5.92604,-6.2933,1,CMIP5 -2165,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.619690427,20.386,22.0256,21.382,21.5748,1,CMIP5 -2166,tas,temperature,tgav,rcp45,C,Simulated,global,0.568873516,15.6263,17.1116,16.57448,16.7641,1,CMIP5 -2166,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.287652798,-7.5167,-4.3967,-5.96015,-6.1244,1,CMIP5 -2166,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.620777228,20.4489,22.1062,21.42712,21.5541,1,CMIP5 -2167,tas,temperature,tgav,rcp45,C,Simulated,global,0.628765694,15.5374,17.20155,16.58349,16.6892,1,CMIP5 -2167,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.220656356,-7.5356,-4.6756,-6.0128,-6.4584,1,CMIP5 -2167,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.64339567,20.4145,22.16065,21.45099,21.6391,1,CMIP5 -2168,tas,temperature,tgav,rcp45,C,Simulated,global,0.606431516,15.6354,17.2623,16.59206,16.6354,1,CMIP5 -2168,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.194474138,-7.6168,-4.744,-6.02011,-6.2779,1,CMIP5 -2168,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624148972,20.4941,22.23105,21.46273,21.5591,1,CMIP5 -2169,tas,temperature,tgav,rcp45,C,Simulated,global,0.575089404,15.6663,17.2278,16.58994,16.6201,1,CMIP5 -2169,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.087040397,-7.5109,-4.9263,-5.9312,-5.8996,1,CMIP5 -2169,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624712784,20.448,22.1593,21.44064,21.5825,1,CMIP5 -2170,tas,temperature,tgav,rcp45,C,Simulated,global,0.534830639,15.5934,17.03115,16.48915,16.5934,1,CMIP5 -2170,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.154503776,-7.4743,-4.9413,-6.17264,-6.2533,1,CMIP5 -2170,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.606940909,20.4373,22.0742,21.36972,21.5106,1,CMIP5 -2171,tas,temperature,tgav,rcp45,C,Simulated,global,0.611012277,15.5843,17.2356,16.59514,16.7053,1,CMIP5 -2171,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.158596839,-7.2934,-4.5647,-5.9427,-6.3674,1,CMIP5 -2171,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.649852037,20.4515,22.2073,21.4506,21.6341,1,CMIP5 -2172,tas,temperature,tgav,rcp45,C,Simulated,global,0.600592578,15.5906,17.17295,16.59143,16.7527,1,CMIP5 -2172,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.320095471,-7.3252,-4.262,-5.85025,-6.1874,1,CMIP5 -2172,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.648492328,20.4194,22.17225,21.42573,21.5622,1,CMIP5 -2173,tas,temperature,tgav,rcp45,C,Simulated,global,0.579188691,15.5643,17.07195,16.53543,16.6382,1,CMIP5 -2173,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.335677247,-7.5196,-4.5167,-6.00226,-6.33,1,CMIP5 -2173,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.610781723,20.4188,22.08335,21.38961,21.5561,1,CMIP5 -2174,tas,temperature,tgav,rcp45,C,Simulated,global,0.517539947,15.5924,16.9341,16.47292,16.573,1,CMIP5 -2174,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.360148579,-7.653,-4.6112,-6.03635,-6.0018,1,CMIP5 -2174,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.591714421,20.3803,21.95815,21.32039,21.4925,1,CMIP5 -2175,tas,temperature,tgav,rcp45,C,Simulated,global,0.563551818,15.5547,17.0181,16.52922,16.6801,1,CMIP5 -2175,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.173276081,-7.06425,-4.6808,-5.92185,-6.1312,1,CMIP5 -2175,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.634085434,20.3632,22.0462,21.36502,21.6003,1,CMIP5 -2176,tas,temperature,tgav,rcp45,C,Simulated,global,0.679126147,15.3877,17.183,16.54784,16.6993,1,CMIP5 -2176,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.221879319,-7.1367,-4.522,-6.03111,-6.6667,1,CMIP5 -2176,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.71515755,20.2777,22.2165,21.41048,21.5868,1,CMIP5 -2177,tas,temperature,tgav,rcp45,C,Simulated,global,0.574486219,15.5694,17.05005,16.55041,16.6811,1,CMIP5 -2177,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.219807657,-7.3399,-4.7101,-6.00371,-6.1929,1,CMIP5 -2177,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.621377413,20.3946,22.06935,21.40785,21.6035,1,CMIP5 -2178,tas,temperature,tgav,rcp45,C,Simulated,global,0.528199184,15.7163,17.1271,16.59656,16.7456,1,CMIP5 -2178,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.345794176,-7.4399,-4.4019,-5.97634,-6.3364,1,CMIP5 -2178,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.578320102,20.6059,22.1565,21.4578,21.6239,1,CMIP5 -2179,tas,temperature,tgav,rcp45,C,Simulated,global,0.551085783,15.757,17.2741,16.6344,16.7003,1,CMIP5 -2179,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.234435799,-7.3019,-4.2675,-5.85756,-6.001,1,CMIP5 -2179,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.626376044,20.581,22.2824,21.47744,21.6256,1,CMIP5 -2180,tas,temperature,tgav,rcp45,C,Simulated,global,0.603467768,15.5473,17.1443,16.57158,16.7528,1,CMIP5 -2180,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.276230547,-7.1971,-4.2688,-5.94113,-6.2688,1,CMIP5 -2180,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.661763951,20.3844,22.1839,21.41902,21.6115,1,CMIP5 -2181,tas,temperature,tgav,rcp45,C,Simulated,global,0.618786661,15.4669,17.01385,16.53283,16.8029,1,CMIP5 -2181,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.437830754,-7.5222,-4.3163,-6.05338,-6.7731,1,CMIP5 -2181,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.615674656,20.3979,22.01515,21.39715,21.5714,1,CMIP5 -2182,tas,temperature,tgav,rcp45,C,Simulated,global,0.57887214,15.6129,17.13955,16.59725,16.7783,1,CMIP5 -2182,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.203636797,-7.3388,-4.7098,-5.97706,-6.3673,1,CMIP5 -2182,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.619788988,20.4865,22.12765,21.45995,21.665,1,CMIP5 -2183,tas,temperature,tgav,rcp45,C,Simulated,global,0.625780735,15.5415,17.20815,16.58989,16.7397,1,CMIP5 -2183,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.256355074,-7.3653,-4.5986,-5.99462,-6.3554,1,CMIP5 -2183,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.693504077,20.3966,22.2415,21.4542,21.6305,1,CMIP5 -2184,tas,temperature,tgav,rcp45,C,Simulated,global,0.567070305,15.6647,17.15355,16.61379,16.777,1,CMIP5 -2184,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.42122447,-7.5917,-4.2838,-5.88773,-6.1793,1,CMIP5 -2184,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.623668189,20.5081,22.15415,21.45945,21.6514,1,CMIP5 -2185,tas,temperature,tgav,rcp45,C,Simulated,global,0.552228379,15.6918,17.1523,16.62414,16.7779,1,CMIP5 -2185,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.247181999,-7.3405,-4.4381,-5.80969,-5.783,1,CMIP5 -2185,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.639334926,20.4533,22.14085,21.45523,21.6688,1,CMIP5 -2186,tas,temperature,tgav,rcp45,C,Simulated,global,0.602664062,15.6066,17.13255,16.63753,16.8567,1,CMIP5 -2186,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.464904091,-7.642,-4.0867,-5.91205,-6.1073,1,CMIP5 -2186,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.658879927,20.4212,22.15335,21.49241,21.7134,1,CMIP5 -2187,tas,temperature,tgav,rcp45,C,Simulated,global,0.642016454,15.5416,17.204,16.64642,16.8685,1,CMIP5 -2187,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.37264955,-7.3396,-4.141,-5.78252,-6.1198,1,CMIP5 -2187,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.700427387,20.3447,22.19945,21.47597,21.7407,1,CMIP5 -2188,tas,temperature,tgav,rcp45,C,Simulated,global,0.58779143,15.7476,17.29935,16.69405,16.9083,1,CMIP5 -2188,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.362136682,-7.4544,-4.2754,-5.73293,-5.8627,1,CMIP5 -2188,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.646486177,20.5391,22.288,21.52378,21.5933,1,CMIP5 -2189,tas,temperature,tgav,rcp45,C,Simulated,global,0.608316757,15.7088,17.21435,16.69497,16.9005,1,CMIP5 -2189,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.515160614,-7.6299,-4.0308,-5.84868,-6.2167,1,CMIP5 -2189,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.639335477,20.5702,22.2292,21.54958,21.5881,1,CMIP5 -2190,tas,temperature,tgav,rcp45,C,Simulated,global,0.551057922,15.8269,17.1823,16.74514,16.938,1,CMIP5 -2190,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.359300714,-7.5456,-4.3175,-5.79532,-5.7713,1,CMIP5 -2190,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.619143955,20.6158,22.1684,21.59948,21.7185,1,CMIP5 -2191,tas,temperature,tgav,rcp45,C,Simulated,global,0.522126601,15.853,17.1378,16.70612,16.8716,1,CMIP5 -2191,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.438381317,-7.6095,-4.0385,-5.75448,-5.5483,1,CMIP5 -2191,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.592045691,20.5983,22.04925,21.54221,21.6464,1,CMIP5 -2192,tas,temperature,tgav,rcp45,C,Simulated,global,0.599415711,15.7058,17.1278,16.73235,17.0638,1,CMIP5 -2192,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.473157546,-7.1643,-3.8447,-5.6808,-6.2402,1,CMIP5 -2192,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.588419963,20.572,22.04715,21.55909,21.6731,1,CMIP5 -2193,tas,temperature,tgav,rcp45,C,Simulated,global,0.65657234,15.6387,17.2143,16.72876,17.0461,1,CMIP5 -2193,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.494628404,-7.2435,-3.9208,-5.70113,-6.2137,1,CMIP5 -2193,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.672566344,20.4839,22.2295,21.55912,21.5672,1,CMIP5 -2194,tas,temperature,tgav,rcp45,C,Simulated,global,0.633996007,15.6966,17.2991,16.73562,16.9023,1,CMIP5 -2194,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.446201859,-7.2612,-3.8283,-5.65318,-6.171,1,CMIP5 -2194,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.663617186,20.5452,22.27575,21.55705,21.6182,1,CMIP5 -2195,tas,temperature,tgav,rcp45,C,Simulated,global,0.592170727,15.6744,17.19345,16.67455,16.9132,1,CMIP5 -2195,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.363219168,-7.0719,-4.0346,-5.66063,-6.1495,1,CMIP5 -2195,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.618285201,20.5134,22.17095,21.48467,21.5944,1,CMIP5 -2196,tas,temperature,tgav,rcp45,C,Simulated,global,0.592946319,15.6641,17.2184,16.67928,16.8538,1,CMIP5 -2196,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.271180283,-6.9321,-4.0077,-5.74166,-6.1972,1,CMIP5 -2196,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.658236066,20.511,22.26075,21.50701,21.7126,1,CMIP5 -2197,tas,temperature,tgav,rcp45,C,Simulated,global,0.638663536,15.5667,17.2719,16.64732,16.7879,1,CMIP5 -2197,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.301315729,-7.2418,-4.1962,-5.84662,-6.5165,1,CMIP5 -2197,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.667365286,20.4631,22.24045,21.49155,21.6984,1,CMIP5 -2198,tas,temperature,tgav,rcp45,C,Simulated,global,0.611472008,15.609,17.1892,16.65422,16.7733,1,CMIP5 -2198,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.295068567,-7.2535,-4.061,-5.84114,-6.2632,1,CMIP5 -2198,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.654545573,20.4584,22.1646,21.49808,21.7439,1,CMIP5 -2199,tas,temperature,tgav,rcp45,C,Simulated,global,0.564287989,15.7282,17.19415,16.69607,16.8575,1,CMIP5 -2199,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.278976312,-7.287,-4.1761,-5.81299,-6.0505,1,CMIP5 -2199,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.616928004,20.5571,22.17855,21.54295,21.7844,1,CMIP5 -2200,tas,temperature,tgav,rcp45,C,Simulated,global,0.550643206,15.7908,17.2404,16.7111,16.7941,1,CMIP5 -2200,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.246570999,-7.3605,-4.4624,-5.83779,-6.2428,1,CMIP5 -2200,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.562090676,20.6762,22.19305,21.56831,21.7312,1,CMIP5 -2201,tas,temperature,tgav,rcp45,C,Simulated,global,0.578827409,15.6562,17.10635,16.66407,16.84,1,CMIP5 -2201,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.301923621,-6.9965,-4.3701,-5.87193,-6.5506,1,CMIP5 -2201,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.575345368,20.58,22.11745,21.51807,21.7132,1,CMIP5 -2202,tas,temperature,tgav,rcp45,C,Simulated,global,0.443601975,15.9207,17.02205,16.69087,16.8083,1,CMIP5 -2202,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.29034259,-6.99805,-4.2921,-5.65055,-5.7979,1,CMIP5 -2202,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.484804294,20.7363,22.0372,21.50254,21.668,1,CMIP5 -2203,tas,temperature,tgav,rcp45,C,Simulated,global,0.451545549,15.9648,17.15075,16.68489,16.8669,1,CMIP5 -2203,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.365385644,-7.398,-4.2403,-5.77898,-5.5261,1,CMIP5 -2203,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.532088111,20.7297,22.1845,21.52156,21.5769,1,CMIP5 -2204,tas,temperature,tgav,rcp45,C,Simulated,global,0.556322053,15.8173,17.288,16.74572,16.9318,1,CMIP5 -2204,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.267463003,-6.8832,-4.2567,-5.59866,-5.9335,1,CMIP5 -2204,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.613792165,20.6401,22.28565,21.55863,21.6589,1,CMIP5 -2205,tas,temperature,tgav,rcp45,C,Simulated,global,0.654545484,15.5266,17.21145,16.65175,16.8226,1,CMIP5 -2205,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.224357157,-6.9512,-4.4997,-5.82082,-6.3691,1,CMIP5 -2205,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.710843356,20.3816,22.2214,21.49288,21.6767,1,CMIP5 -2206,tas,temperature,tgav,rcp45,C,Simulated,global,0.553993973,15.7131,17.1744,16.65032,16.8331,1,CMIP5 -2206,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.303966029,-7.4851,-4.4672,-5.7868,-5.9517,1,CMIP5 -2206,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.611029334,20.5167,22.12045,21.48267,21.7253,1,CMIP5 -2207,tas,temperature,tgav,rcp45,C,Simulated,global,0.528535304,15.8678,17.32535,16.71121,16.7504,1,CMIP5 -2207,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.20544648,-7.231,-4.4577,-5.67842,-5.6397,1,CMIP5 -2207,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.610935328,20.6365,22.2994,21.5333,21.6597,1,CMIP5 -2208,tas,temperature,tgav,rcp45,C,Simulated,global,0.57146628,15.8447,17.41155,16.73387,16.7963,1,CMIP5 -2208,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.402102931,-7.6651,-4.38,-5.8447,-5.991,1,CMIP5 -2208,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.633462895,20.6862,22.43665,21.59637,21.7085,1,CMIP5 -2209,tas,temperature,tgav,rcp45,C,Simulated,global,0.572380955,15.7146,17.2293,16.66644,16.8281,1,CMIP5 -2209,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.091158168,-7.1369,-4.6896,-5.86962,-5.9428,1,CMIP5 -2209,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.636422837,20.5167,22.2304,21.52112,21.6122,1,CMIP5 -2210,tas,temperature,tgav,rcp45,C,Simulated,global,0.531957601,15.724,17.10615,16.63087,16.7916,1,CMIP5 -2210,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.290401295,-7.3725,-4.4073,-5.82274,-6.0102,1,CMIP5 -2210,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.576071629,20.5431,22.07725,21.46643,21.674,1,CMIP5 -2211,tas,temperature,tgav,rcp45,C,Simulated,global,0.469383447,15.9504,17.18245,16.69741,16.7196,1,CMIP5 -2211,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.220087479,-7.1911,-4.5027,-5.72742,-5.5596,1,CMIP5 -2211,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.525222615,20.7197,22.18135,21.52699,21.6228,1,CMIP5 -2212,tas,temperature,tgav,rcp45,C,Simulated,global,0.564260358,15.7956,17.3264,16.69068,16.7236,1,CMIP5 -2212,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.127853588,-7.3189,-4.6622,-5.81472,-5.8431,1,CMIP5 -2212,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.613599743,20.5935,22.2945,21.5381,21.6662,1,CMIP5 -2213,tas,temperature,tgav,rcp45,C,Simulated,global,0.508291253,15.868,17.20155,16.70575,16.8028,1,CMIP5 -2213,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.171937613,-7.0463,-4.395,-5.85026,-6.2274,1,CMIP5 -2213,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.525889283,20.7672,22.20005,21.56499,21.6321,1,CMIP5 -2214,tas,temperature,tgav,rcp45,C,Simulated,global,0.473054379,15.9192,17.17165,16.70441,16.8057,1,CMIP5 -2214,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.262485642,-7.285,-4.4413,-5.87955,-6.1061,1,CMIP5 -2214,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.513940841,20.8027,22.18625,21.56931,21.7049,1,CMIP5 -2215,tas,temperature,tgav,rcp45,C,Simulated,global,0.576659482,15.7747,17.31595,16.68601,16.8313,1,CMIP5 -2215,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.324931872,-7.6191,-4.5214,-5.91939,-6.0918,1,CMIP5 -2215,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.620375679,20.6229,22.32845,21.55491,21.6129,1,CMIP5 -2216,tas,temperature,tgav,rcp45,C,Simulated,global,0.526503948,15.8535,17.283,16.68462,16.735,1,CMIP5 -2216,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.283363333,-7.4761,-4.4852,-5.82983,-5.9169,1,CMIP5 -2216,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.577447874,20.6804,22.2762,21.53368,21.6577,1,CMIP5 -2217,tas,temperature,tgav,rcp45,C,Simulated,global,0.499060484,15.9093,17.2462,16.72862,16.7891,1,CMIP5 -2217,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.293734728,-7.3773,-4.4428,-5.84602,-6.0272,1,CMIP5 -2217,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.545919841,20.7731,22.2592,21.59086,21.7197,1,CMIP5 -2218,tas,temperature,tgav,rcp45,C,Simulated,global,0.547294731,15.8877,17.3658,16.76036,16.9076,1,CMIP5 -2218,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.185812134,-7.1439,-4.2619,-5.66283,-5.7788,1,CMIP5 -2218,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.592826335,20.6918,22.33035,21.58929,21.6504,1,CMIP5 -2219,tas,temperature,tgav,rcp45,C,Simulated,global,0.645264819,15.6093,17.267,16.72392,16.914,1,CMIP5 -2219,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.227584014,-6.932,-4.1398,-5.71158,-6.2453,1,CMIP5 -2219,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.665873235,20.455,22.24185,21.55537,21.763,1,CMIP5 -2220,tas,temperature,tgav,rcp45,C,Simulated,global,0.608335352,15.6362,17.19185,16.68895,16.8713,1,CMIP5 -2220,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.235070518,-7.08835,-4.443,-5.86227,-6.2672,1,CMIP5 -2220,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.653258553,20.4926,22.26125,21.54583,21.7104,1,CMIP5 -2221,tas,temperature,tgav,rcp45,C,Simulated,global,0.577462373,15.8085,17.3344,16.76548,16.9399,1,CMIP5 -2221,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.344555323,-7.1746,-3.9827,-5.66473,-5.9892,1,CMIP5 -2221,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.62360083,20.6418,22.32955,21.59551,21.7197,1,CMIP5 -2222,tas,temperature,tgav,rcp45,C,Simulated,global,0.566873303,15.7267,17.21965,16.68387,16.8306,1,CMIP5 -2222,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.368073596,-7.3961,-4.3614,-5.7868,-6.2048,1,CMIP5 -2222,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.597948467,20.5895,22.19415,21.52347,21.7114,1,CMIP5 -2223,tas,temperature,tgav,rcp45,C,Simulated,global,0.668904724,15.5244,17.2794,16.6729,16.8304,1,CMIP5 -2223,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.308710205,-6.9881,-4.3483,-5.7666,-6.4279,1,CMIP5 -2223,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.707950865,20.3918,22.28975,21.50595,21.6956,1,CMIP5 -2224,tas,temperature,tgav,rcp45,C,Simulated,global,0.638764911,15.6164,17.31665,16.69967,16.8353,1,CMIP5 -2224,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.230981528,-7.0675,-4.2634,-5.67716,-6.0444,1,CMIP5 -2224,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.69409689,20.4192,22.28705,21.51859,21.6946,1,CMIP5 -2225,tas,temperature,tgav,rcp45,C,Simulated,global,0.645536974,15.628,17.33785,16.72195,16.9182,1,CMIP5 -2225,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.169966205,-6.5745,-4.1144,-5.62301,-6.2711,1,CMIP5 -2225,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.675384037,20.4837,22.3242,21.53466,21.6604,1,CMIP5 -2226,tas,temperature,tgav,rcp45,C,Simulated,global,0.691489628,15.5186,17.24665,16.71649,16.9196,1,CMIP5 -2226,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.377874721,-6.8969,-3.9446,-5.72615,-6.4324,1,CMIP5 -2226,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.708911307,20.3858,22.26875,21.55151,21.7414,1,CMIP5 -2227,tas,temperature,tgav,rcp45,C,Simulated,global,0.589370248,15.7475,17.22485,16.75437,17.0291,1,CMIP5 -2227,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.362395033,-7.1206,-4.2317,-5.79607,-6.3039,1,CMIP5 -2227,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.610054805,20.637,22.25605,21.61129,21.7169,1,CMIP5 -2228,tas,temperature,tgav,rcp45,C,Simulated,global,0.707771487,15.5298,17.32585,16.73685,16.9425,1,CMIP5 -2228,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.491430081,-7.5282,-4.0837,-5.82062,-6.201,1,CMIP5 -2228,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.777219461,20.3481,22.36715,21.59419,21.8222,1,CMIP5 -2229,tas,temperature,tgav,rcp45,C,Simulated,global,0.657692242,15.6165,17.2659,16.7445,16.9691,1,CMIP5 -2229,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.435684768,-7.439,-3.9006,-5.69716,-5.8879,1,CMIP5 -2229,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.721336638,20.3846,22.2516,21.5762,21.8108,1,CMIP5 -2230,tas,temperature,tgav,rcp45,C,Simulated,global,0.696067125,15.5084,17.19145,16.71447,17.0636,1,CMIP5 -2230,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.650024811,-7.5706,-3.9125,-5.84714,-6.6182,1,CMIP5 -2230,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.694452158,20.4145,22.21645,21.57273,21.8021,1,CMIP5 -2231,tas,temperature,tgav,rcp45,C,Simulated,global,0.610137113,15.7338,17.3059,16.76782,16.986,1,CMIP5 -2231,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.403573795,-7.1694,-4.0237,-5.64118,-5.9387,1,CMIP5 -2231,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.65726526,20.5391,22.32305,21.59307,21.7539,1,CMIP5 -2232,tas,temperature,tgav,rcp45,C,Simulated,global,0.584603848,15.8304,17.34075,16.77183,16.9901,1,CMIP5 -2232,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.475911125,-7.4274,-3.9576,-5.61835,-5.7625,1,CMIP5 -2232,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.626115273,20.6181,22.34275,21.59267,21.6506,1,CMIP5 -2233,tas,temperature,tgav,rcp45,C,Simulated,global,0.510052139,15.9286,17.2187,16.7781,16.9625,1,CMIP5 -2233,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.567288054,-7.6574,-3.9137,-5.72194,-5.8621,1,CMIP5 -2233,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.539459445,20.76,22.22555,21.62209,21.7706,1,CMIP5 -2234,tas,temperature,tgav,rcp45,C,Simulated,global,0.592149496,15.7945,17.28605,16.77461,17.0251,1,CMIP5 -2234,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.461373764,-7.6985,-4.0419,-5.72857,-5.8981,1,CMIP5 -2234,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624085389,20.6043,22.23565,21.62019,21.7544,1,CMIP5 -2235,tas,temperature,tgav,rcp45,C,Simulated,global,0.586024243,15.8,17.1946,16.79436,17.0627,1,CMIP5 -2235,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.470586243,-7.5541,-4.0345,-5.68644,-5.6557,1,CMIP5 -2235,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.647618022,20.5574,22.165,21.63504,21.8051,1,CMIP5 -2236,tas,temperature,tgav,rcp45,C,Simulated,global,0.56081998,15.7888,17.15065,16.76477,16.9753,1,CMIP5 -2236,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.505723527,-7.3811,-3.849,-5.656,-5.8543,1,CMIP5 -2236,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.616522609,20.5877,22.1465,21.59214,21.8639,1,CMIP5 -2237,tas,temperature,tgav,rcp45,C,Simulated,global,0.591454206,15.7455,17.2342,16.75396,16.9221,1,CMIP5 -2237,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.41467438,-7.3206,-3.9043,-5.75227,-6.0857,1,CMIP5 -2237,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.635339956,20.5862,22.2377,21.6,21.7913,1,CMIP5 -2238,tas,temperature,tgav,rcp45,C,Simulated,global,0.676005499,15.6087,17.37585,16.74255,16.9805,1,CMIP5 -2238,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.418701454,-7.2086,-3.8736,-5.63957,-6.32375,1,CMIP5 -2238,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.68283844,20.4811,22.32405,21.56255,21.7106,1,CMIP5 -2239,tas,temperature,tgav,rcp45,C,Simulated,global,0.529805429,15.8583,17.20215,16.73749,16.8324,1,CMIP5 -2239,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.289128301,-6.8232,-4.0397,-5.45747,-5.6118,1,CMIP5 -2239,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.615185326,20.6188,22.1671,21.5181,21.6177,1,CMIP5 -2240,tas,temperature,tgav,rcp45,C,Simulated,global,0.507170839,15.9416,17.2011,16.7554,16.8263,1,CMIP5 -2240,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.600094051,-7.6052,-3.7659,-5.66273,-5.3515,1,CMIP5 -2240,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.618571785,20.6629,22.24685,21.58119,21.7266,1,CMIP5 -2241,tas,temperature,tgav,rcp45,C,Simulated,global,0.521981362,15.9788,17.2723,16.82288,17.0569,1,CMIP5 -2241,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.663356004,-7.6834,-3.6918,-5.56812,-5.4954,1,CMIP5 -2241,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.578392246,20.7403,22.28175,21.64311,21.756,1,CMIP5 -2242,tas,temperature,tgav,rcp45,C,Simulated,global,0.596409991,15.8811,17.41685,16.83187,16.975,1,CMIP5 -2242,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.533223303,-7.653,-4.078,-5.58721,-5.7902,1,CMIP5 -2242,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.61230818,20.686,22.3753,21.65938,21.7688,1,CMIP5 -2243,tas,temperature,tgav,rcp45,C,Simulated,global,0.580509791,15.8625,17.4192,16.78092,16.9276,1,CMIP5 -2243,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.374582004,-7.4775,-4.2504,-5.65937,-5.9658,1,CMIP5 -2243,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.604070654,20.7023,22.36745,21.61381,21.7058,1,CMIP5 -2244,tas,temperature,tgav,rcp45,C,Simulated,global,0.568869082,15.8171,17.29315,16.77235,16.9901,1,CMIP5 -2244,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.504094487,-7.621,-4.1395,-5.68497,-5.9046,1,CMIP5 -2244,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.616146502,20.6332,22.2686,21.60832,21.8258,1,CMIP5 -2245,tas,temperature,tgav,rcp45,C,Simulated,global,0.55840349,15.9139,17.38765,16.80945,17.0191,1,CMIP5 -2245,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.318463537,-7.3045,-4.2667,-5.52779,-5.4756,1,CMIP5 -2245,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624206538,20.6566,22.3375,21.62022,21.6978,1,CMIP5 -2246,tas,temperature,tgav,rcp45,C,Simulated,global,0.5849323,15.8835,17.4262,16.8402,16.9754,1,CMIP5 -2246,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.159566604,-6.9195,-4.2375,-5.50774,-5.5093,1,CMIP5 -2246,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.673189467,20.6269,22.39555,21.65361,21.7273,1,CMIP5 -2247,tas,temperature,tgav,rcp45,C,Simulated,global,0.565606132,15.9391,17.3933,16.88458,17.1231,1,CMIP5 -2247,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.381728494,-7.1249,-3.9034,-5.47559,-5.6264,1,CMIP5 -2247,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.617155655,20.7207,22.3728,21.69954,21.8255,1,CMIP5 -2248,tas,temperature,tgav,rcp45,C,Simulated,global,0.538473458,16.0125,17.33265,16.90597,17.1925,1,CMIP5 -2248,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.362758331,-7.085,-4.0798,-5.43946,-5.1362,1,CMIP5 -2248,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.62428533,20.7017,22.3352,21.71776,21.7806,1,CMIP5 -2249,tas,temperature,tgav,rcp45,C,Simulated,global,0.488029084,16.0579,17.2897,16.88978,17.0698,1,CMIP5 -2249,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.318931499,-7.167,-4.2014,-5.49051,-5.2603,1,CMIP5 -2249,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.581915058,20.7845,22.25925,21.70957,21.9014,1,CMIP5 -2250,tas,temperature,tgav,rcp45,C,Simulated,global,0.504527485,16.0195,17.3273,16.86886,17.0587,1,CMIP5 -2250,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.247730629,-7.0692,-4.1956,-5.58015,-5.7028,1,CMIP5 -2250,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.555277584,20.8359,22.2979,21.7038,21.8394,1,CMIP5 -2251,tas,temperature,tgav,rcp45,C,Simulated,global,0.555976769,15.883,17.362,16.80094,16.9526,1,CMIP5 -2251,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.10004955,-7.017,-4.3088,-5.65542,-5.817,1,CMIP5 -2251,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.605250917,20.6944,22.3064,21.63758,21.738,1,CMIP5 -2252,tas,temperature,tgav,rcp45,C,Simulated,global,0.535942397,15.885,17.30955,16.79169,16.9259,1,CMIP5 -2252,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.24231923,-6.9006,-4.2354,-5.60354,-6.0251,1,CMIP5 -2252,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.573456797,20.743,22.28475,21.61535,21.7997,1,CMIP5 -2253,tas,temperature,tgav,rcp45,C,Simulated,global,0.547321901,15.8346,17.301,16.73854,16.8707,1,CMIP5 -2253,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.239090863,-7.3291,-4.5179,-5.81578,-5.9154,1,CMIP5 -2253,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.610526653,20.657,22.30895,21.59643,21.7538,1,CMIP5 -2254,tas,temperature,tgav,rcp45,C,Simulated,global,0.522163878,15.8842,17.24105,16.70295,16.9115,1,CMIP5 -2254,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.500661666,-7.9237,-4.3873,-5.8654,-5.8294,1,CMIP5 -2254,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.576852055,20.6984,22.2391,21.56294,21.6397,1,CMIP5 -2255,tas,temperature,tgav,rcp45,C,Simulated,global,0.509450408,15.9352,17.2629,16.74986,16.9098,1,CMIP5 -2255,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.312687919,-7.3816,-4.3024,-5.63939,-5.4902,1,CMIP5 -2255,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.587432491,20.6858,22.2275,21.57168,21.6387,1,CMIP5 -2256,tas,temperature,tgav,rcp45,C,Simulated,global,0.50075355,15.9611,17.27495,16.79109,16.9203,1,CMIP5 -2256,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.158756729,-6.9212,-4.2812,-5.63571,-5.661,1,CMIP5 -2256,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.573725788,20.7552,22.26555,21.62127,21.7026,1,CMIP5 -2257,tas,temperature,tgav,rcp45,C,Simulated,global,0.564129458,15.826,17.21925,16.81201,17.0367,1,CMIP5 -2257,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.126994203,-6.6527,-4.17,-5.58664,-5.8538,1,CMIP5 -2257,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.608642798,20.6327,22.20345,21.63621,21.7868,1,CMIP5 -2258,tas,temperature,tgav,rcp45,C,Simulated,global,0.559025931,15.8886,17.19315,16.86353,17.1583,1,CMIP5 -2258,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.282204778,-6.88945,-3.9695,-5.46639,-5.7065,1,CMIP5 -2258,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.596855833,20.6768,22.22135,21.67259,21.7648,1,CMIP5 -2259,tas,temperature,tgav,rcp45,C,Simulated,global,0.512453954,16.0284,17.3395,16.8823,17.0759,1,CMIP5 -2259,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.36846705,-7.0372,-4.0766,-5.42474,-5.3175,1,CMIP5 -2259,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.584377423,20.7613,22.33385,21.68603,21.8003,1,CMIP5 -2260,tas,temperature,tgav,rcp45,C,Simulated,global,0.487510192,16.032,17.26215,16.88177,17.0321,1,CMIP5 -2260,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.282750542,-6.80175,-3.9493,-5.36375,-5.2958,1,CMIP5 -2260,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.579581532,20.7608,22.28645,21.67323,21.8706,1,CMIP5 -2261,tas,temperature,tgav,rcp45,C,Simulated,global,0.459607044,16.1014,17.33,16.8786,16.9993,1,CMIP5 -2261,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.245497156,-6.7667,-4.2809,-5.4058,-4.985,1,CMIP5 -2261,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.596423335,20.7768,22.3611,21.6775,21.8921,1,CMIP5 -2262,tas,temperature,tgav,rcp45,C,Simulated,global,0.483496693,16.0027,17.2953,16.79712,16.9247,1,CMIP5 -2262,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,0.977184068,-6.6414,-4.4024,-5.48664,-5.3888,1,CMIP5 -2262,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.571187605,20.7458,22.29305,21.59621,21.645,1,CMIP5 -2263,tas,temperature,tgav,rcp45,C,Simulated,global,0.498684763,15.9909,17.30985,16.82379,16.9134,1,CMIP5 -2263,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,0.961329609,-6.6163,-4.5361,-5.52116,-5.6133,1,CMIP5 -2263,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.536214558,20.7811,22.2363,21.63718,21.7719,1,CMIP5 -2264,tas,temperature,tgav,rcp45,C,Simulated,global,0.582440295,15.8692,17.4059,16.86088,17.0093,1,CMIP5 -2264,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.081250722,-6.6551,-4.2774,-5.42991,-5.6402,1,CMIP5 -2264,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.636968942,20.6385,22.34025,21.66225,21.8657,1,CMIP5 -2265,tas,temperature,tgav,rcp45,C,Simulated,global,0.569954956,15.8751,17.3997,16.83338,16.9895,1,CMIP5 -2265,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.100901472,-6.6339,-4.2102,-5.50498,-5.9286,1,CMIP5 -2265,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.60504069,20.7093,22.34665,21.64503,21.7983,1,CMIP5 -2266,tas,temperature,tgav,rcp45,C,Simulated,global,0.543641481,15.9648,17.3677,16.8875,16.9662,1,CMIP5 -2266,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.171809875,-6.474,-4.0875,-5.36476,-5.6944,1,CMIP5 -2266,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.575342892,20.7673,22.34555,21.68049,21.8146,1,CMIP5 -2267,tas,temperature,tgav,rcp45,C,Simulated,global,0.50469405,16.0077,17.29205,16.86717,17.0516,1,CMIP5 -2267,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.220766884,-6.6611,-3.9684,-5.4136,-5.5874,1,CMIP5 -2267,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.556663188,20.7959,22.2584,21.6658,21.7724,1,CMIP5 -2268,tas,temperature,tgav,rcp45,C,Simulated,global,0.527774116,15.9415,17.22675,16.86715,17.1011,1,CMIP5 -2268,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.243620198,-6.7084,-4.0546,-5.40632,-5.4101,1,CMIP5 -2268,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.602629363,20.6756,22.22415,21.66403,21.8488,1,CMIP5 -2269,tas,temperature,tgav,rcp45,C,Simulated,global,0.592376747,15.8743,17.27875,16.89339,17.159,1,CMIP5 -2269,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.322834782,-6.8508,-3.9201,-5.45685,-5.5061,1,CMIP5 -2269,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.659546092,20.615,22.27755,21.70649,21.8343,1,CMIP5 -2270,tas,temperature,tgav,rcp45,C,Simulated,global,0.556373748,15.9459,17.29465,16.89445,17.19,1,CMIP5 -2270,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.342673182,-7.2014,-3.9438,-5.47976,-5.5021,1,CMIP5 -2270,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.5991757,20.7014,22.2296,21.7124,21.8706,1,CMIP5 -2271,tas,temperature,tgav,rcp45,C,Simulated,global,0.474052771,16.1254,17.26255,16.91707,17.1084,1,CMIP5 -2271,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.434269836,-7.3665,-4.0989,-5.43459,-5.2135,1,CMIP5 -2271,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.519589591,20.8567,22.2,21.73034,21.8939,1,CMIP5 -2272,tas,temperature,tgav,rcp45,C,Simulated,global,0.464233214,16.0929,17.25795,16.87073,17.0248,1,CMIP5 -2272,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.450240081,-7.2047,-4.007,-5.40677,-5.1729,1,CMIP5 -2272,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.533208974,20.8081,22.2351,21.6676,21.8393,1,CMIP5 -2273,tas,temperature,tgav,rcp45,C,Simulated,global,0.544949762,15.9009,17.29605,16.82939,17.0426,1,CMIP5 -2273,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.53842754,-7.3037,-3.974,-5.56167,-5.7553,1,CMIP5 -2273,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.608760185,20.7026,22.3205,21.65104,21.8664,1,CMIP5 -2274,tas,temperature,tgav,rcp45,C,Simulated,global,0.615294947,15.8518,17.457,16.89008,17.1018,1,CMIP5 -2274,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.555910023,-7.1918,-3.8293,-5.41187,-5.5752,1,CMIP5 -2274,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.696937865,20.6029,22.4864,21.69208,21.912,1,CMIP5 -2275,tas,temperature,tgav,rcp45,C,Simulated,global,0.536156224,15.9883,17.42765,16.89227,17.0117,1,CMIP5 -2275,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.231924627,-6.7551,-4.1114,-5.39808,-5.5544,1,CMIP5 -2275,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.617865626,20.7649,22.40425,21.69287,21.859,1,CMIP5 -2276,tas,temperature,tgav,rcp45,C,Simulated,global,0.560087841,15.8805,17.32605,16.82455,16.9861,1,CMIP5 -2276,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.551923389,-7.5234,-3.781,-5.586,-5.8628,1,CMIP5 -2276,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.614259267,20.7017,22.2988,21.64992,21.8937,1,CMIP5 -2277,tas,temperature,tgav,rcp45,C,Simulated,global,0.594054494,15.7553,17.30765,16.77703,16.9367,1,CMIP5 -2277,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.298456412,-6.8506,-4.0167,-5.47186,-5.5587,1,CMIP5 -2277,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.691694125,20.4812,22.3061,21.56796,21.8356,1,CMIP5 -2278,tas,temperature,tgav,rcp45,C,Simulated,global,0.574958969,15.9024,17.31315,16.89479,17.1046,1,CMIP5 -2278,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.424773043,-6.7699,-3.7231,-5.35226,-5.7414,1,CMIP5 -2278,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.636001985,20.7013,22.29465,21.68709,21.8608,1,CMIP5 -2279,tas,temperature,tgav,rcp45,C,Simulated,global,0.677807174,15.6483,17.3491,16.81675,16.9743,1,CMIP5 -2279,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.474857174,-6.9488,-3.846,-5.67836,-6.5119,1,CMIP5 -2279,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.698374058,20.5617,22.2306,21.66205,21.8774,1,CMIP5 -2280,tas,temperature,tgav,rcp45,C,Simulated,global,0.668154499,15.7452,17.4789,16.8663,16.9624,1,CMIP5 -2280,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.358446677,-6.7131,-3.6562,-5.39291,-5.9903,1,CMIP5 -2280,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.723870425,20.5645,22.4568,21.65998,21.8306,1,CMIP5 -2281,tas,temperature,tgav,rcp45,C,Simulated,global,0.647892829,15.8778,17.59725,16.94411,17.1722,1,CMIP5 -2281,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.261116252,-6.5138,-3.8886,-5.2825,-5.915,1,CMIP5 -2281,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.678328759,20.7097,22.55355,21.73191,21.7698,1,CMIP5 -2282,tas,temperature,tgav,rcp45,C,Simulated,global,0.443586116,16.1753,17.2319,16.94013,17.1342,1,CMIP5 -2282,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.300507011,-6.61165,-3.8537,-5.27355,-5.3898,1,CMIP5 -2282,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.496127267,20.9566,22.1979,21.7246,21.8246,1,CMIP5 -2283,tas,temperature,tgav,rcp45,C,Simulated,global,0.624219823,15.792,17.2662,16.87592,17.1959,1,CMIP5 -2283,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.31708885,-6.66215,-3.8472,-5.42183,-5.857,1,CMIP5 -2283,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.641038176,20.5921,22.1772,21.67836,21.7826,1,CMIP5 -2284,tas,temperature,tgav,rcp45,C,Simulated,global,0.666635165,15.7876,17.47,16.92664,17.2111,1,CMIP5 -2284,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.310280857,-6.6615,-3.9601,-5.39274,-6.0202,1,CMIP5 -2284,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.683358656,20.6229,22.43785,21.73425,21.8381,1,CMIP5 -2285,tas,temperature,tgav,rcp45,C,Simulated,global,0.666689011,15.6996,17.3415,16.84552,17.1742,1,CMIP5 -2285,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.474172298,-7.1004,-3.7898,-5.59169,-6.2839,1,CMIP5 -2285,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.665689481,20.5739,22.32655,21.67727,21.8314,1,CMIP5 -2286,tas,temperature,tgav,rcp45,C,Simulated,global,0.547798281,15.9183,17.2777,16.85928,17.1188,1,CMIP5 -2286,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.376006432,-6.8082,-3.8295,-5.45273,-5.6778,1,CMIP5 -2286,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.592292898,20.7068,22.28585,21.66385,21.7934,1,CMIP5 -2287,tas,temperature,tgav,rcp45,C,Simulated,global,0.51698781,16.0354,17.30215,16.94039,17.1662,1,CMIP5 -2287,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.276632685,-6.6401,-3.9109,-5.34312,-5.4019,1,CMIP5 -2287,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.584248853,20.7886,22.30105,21.73927,21.9246,1,CMIP5 -2288,tas,temperature,tgav,rcp45,C,Simulated,global,0.533415806,16.0124,17.2911,16.90792,17.1607,1,CMIP5 -2288,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.562212898,-7.1428,-3.6609,-5.531,-5.4571,1,CMIP5 -2288,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.598671134,20.7727,22.3238,21.73868,21.8274,1,CMIP5 -2289,tas,temperature,tgav,rcp45,C,Simulated,global,0.630101366,15.844,17.4024,16.92942,17.2178,1,CMIP5 -2289,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.316635909,-6.6269,-3.738,-5.32028,-5.716,1,CMIP5 -2289,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.666214457,20.6244,22.3703,21.72106,21.8513,1,CMIP5 -2290,tas,temperature,tgav,rcp45,C,Simulated,global,0.588099039,15.9085,17.3859,16.912,17.1694,1,CMIP5 -2290,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.317964341,-6.7773,-3.9399,-5.43006,-5.947,1,CMIP5 -2290,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.607469637,20.7543,22.34745,21.72437,21.8343,1,CMIP5 -2291,tas,temperature,tgav,rcp45,C,Simulated,global,0.525303777,16.0412,17.28425,16.93311,17.1833,1,CMIP5 -2291,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.348534241,-6.6658,-3.6435,-5.29455,-5.6857,1,CMIP5 -2291,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.53585341,20.8586,22.2207,21.72032,21.794,1,CMIP5 -2292,tas,temperature,tgav,rcp45,C,Simulated,global,0.519677455,16.039,17.3367,16.93638,17.1659,1,CMIP5 -2292,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.343497673,-7.0686,-3.8108,-5.40852,-5.5641,1,CMIP5 -2292,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.557641913,20.8291,22.2644,21.74806,21.9716,1,CMIP5 -2293,tas,temperature,tgav,rcp45,C,Simulated,global,0.46986485,16.0904,17.23045,16.87945,17.1071,1,CMIP5 -2293,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.505568147,-7.2573,-3.8908,-5.4304,-5.3231,1,CMIP5 -2293,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.522409387,20.8384,22.21245,21.68331,21.831,1,CMIP5 -2294,tas,temperature,tgav,rcp45,C,Simulated,global,0.561994081,15.8767,17.2196,16.84815,17.13835,1,CMIP5 -2294,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.346536668,-6.8905,-3.9117,-5.53736,-5.814,1,CMIP5 -2294,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.582579207,20.6858,22.115,21.66902,21.8017,1,CMIP5 -2295,tas,temperature,tgav,rcp45,C,Simulated,global,0.506219915,15.9972,17.208,16.87038,17.13,1,CMIP5 -2295,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.360925692,-6.9492,-4.2099,-5.55774,-5.4986,1,CMIP5 -2295,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.558162987,20.7635,22.18115,21.70063,21.8329,1,CMIP5 -2296,tas,temperature,tgav,rcp45,C,Simulated,global,0.523585249,15.9908,17.28305,16.87725,17.1188,1,CMIP5 -2296,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.37066968,-7.0194,-3.9905,-5.48605,-5.6518,1,CMIP5 -2296,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.557661887,20.7896,22.26625,21.69335,21.8032,1,CMIP5 -2297,tas,temperature,tgav,rcp45,C,Simulated,global,0.537941351,16.0164,17.32245,16.92145,17.2047,1,CMIP5 -2297,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.343424459,-6.865,-3.9661,-5.37388,-5.3684,1,CMIP5 -2297,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.597650818,20.7579,22.3092,21.723,21.7903,1,CMIP5 -2298,tas,temperature,tgav,rcp45,C,Simulated,global,0.488093601,16.1829,17.34835,16.96909,17.1494,1,CMIP5 -2298,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.44703608,-7.2563,-3.9106,-5.43652,-5.2678,1,CMIP5 -2298,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.560195823,20.939,22.3351,21.7941,21.8526,1,CMIP5 -2299,tas,temperature,tgav,rcp45,C,Simulated,global,0.461705789,16.2631,17.3562,16.99769,17.1899,1,CMIP5 -2299,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.51214898,-7.0614,-3.4348,-5.33754,-5.3081,1,CMIP5 -2299,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.49767523,21.0463,22.3378,21.8064,21.8231,1,CMIP5 -2300,tas,temperature,tgav,rcp45,C,Simulated,global,0.512766201,16.2109,17.33515,16.9424125,17.1118,1,CMIP5 -2300,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.175286538,-6.8484,-4.2995,-5.6396,-5.70525,1,CMIP5 -2300,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.577924569,20.9234,22.28405,21.7260125,21.8483,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp60/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp60/ensemble_mean_model.csv deleted file mode 100644 index 97ca0c8cd..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp60/ensemble_mean_model.csv +++ /dev/null @@ -1,1717 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",15.0402 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",15.0919 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",15.0668 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",15.2343 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",15.0462 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",15.0553 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",15.1341 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",15.1177 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",15.1742 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",15.1177 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",15.1216 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",15.0605 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",15.1017000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",15.2313 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",15.1272 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",15.1522000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",15.0775 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",15.0732 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",15.0706 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",15.2599 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",15.4032 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",15.4318 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",15.4755 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",15.4501 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",15.4312 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",15.4587 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",15.4731 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",15.5241 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",15.4498 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",15.6001 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",15.6566 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",15.5555 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",15.5981 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",15.6731 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",15.6937 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",15.7143 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",15.7802 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",15.8089000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",15.8129 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",15.7584 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",15.8387 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",16.01 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",15.7803 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",15.7605 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",15.8455 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",15.9928 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",16.0725 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",16.0663 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",16.0989 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",16.0229 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",16.0437 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",16.0742 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",16.1471 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",16.1678 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",16.0809 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",16.1494 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",16.0832 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",16.0653 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",16.1716 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",16.1808 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",16.188 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",16.1787 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",16.2099 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",16.2807 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",16.2797 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",16.2879 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",16.3778 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",16.2626 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",16.34 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",16.2597 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",16.2929 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",16.3695 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",16.5069 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",16.424 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",16.4027 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",16.5244 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",16.5909 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",16.7013 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",16.5622 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",16.5465 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",16.6373 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",16.7485 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",16.8214 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",16.7603 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",16.7252 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",16.7793 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",16.8221 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",16.7749 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",16.8559 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",16.8904 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",16.7751 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",16.8096 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",16.8501 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",16.8615 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",16.8415 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-10.5741 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-10.0059 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-10.0965 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-9.87799999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-10.4337 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-10.3213 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-10.2567 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-10.5225 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-10.1159 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-10.5224 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-10.2519 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-10.5952 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-10.2606 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-9.97489999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-10.0691 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-10.2845 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-10.4943 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-10.1711 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-10.4048 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-9.77549999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-9.33269999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-9.31549999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-9.0496 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-9.25709999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-9.21279999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-9.56739999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-9.55829999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-9.411 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-9.64079999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-9.38 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-9.08569999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-9.19729999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-9.11689999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-8.9819 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-9.09359999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-9.0145 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-8.88369999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-8.76479999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-8.40959999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-8.78579999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-8.95209999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-8.27979999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-8.8134 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-8.7824 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-9.19839999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-8.65979999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-8.3954 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-8.41019999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-8.48749999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-8.45749999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-8.59609999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-8.60579999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-7.98129999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-8.21909999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-8.27759999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-8.74129999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-8.82649999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-8.98139999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-8.32299999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-8.20759999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-8.40159999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-8.60749999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-8.26159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-8.36309999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-8.34449999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-8.12629999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-8.25039999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-8.23309999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-8.25449999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-8.65170000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-8.1995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-8.43359999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-7.77509999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-8.10209999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-8.30549999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-8.01159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-7.60179999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-7.8229 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-8.07509999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-8.11689999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-7.54469999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-7.30869999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-7.0487 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-7.82459999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-7.34499999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-7.48469999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-7.4572 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-7.3236 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-6.9348 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-7.03499999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-7.34569999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-7.06359999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-7.54839999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-7.53499999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-7.39059999999995 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",20.3882 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",20.3320000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",20.3206 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",20.4775 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",20.3661 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",20.3536 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",20.4354 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",20.4711 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",20.4545 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",20.4711 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",20.4192 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",20.4171 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",20.397 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",20.494 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",20.3879 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",20.4631 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",20.4166 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",20.3439 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",20.3896 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",20.487 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",20.5678 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",20.5988 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",20.5961 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",20.6087 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",20.5766 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",20.6838 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",20.6994 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",20.7302 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",20.6884 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",20.8157 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",20.8225 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",20.7236 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",20.7583 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",20.8208 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",20.869 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",20.8774 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",20.9297 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",20.9396 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",20.8702 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",20.883 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",21.0148 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",21.0814 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",20.9152 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",20.8848 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",21.0743000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",21.14 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",21.1811 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",21.1767 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",21.2322 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",21.1341 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",21.1882 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",21.2271 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",21.1848 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",21.2595 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",21.1667 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",21.3464 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",21.2841 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",21.2948 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",21.2858 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",21.2728 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",21.322 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",21.3538 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",21.3192 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",21.426 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",21.421 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",21.3853 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",21.5199 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",21.377 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",21.475 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",21.4609 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",21.4066 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",21.5481 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",21.5767 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",21.5448 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",21.5615 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",21.6472 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",21.6421 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",21.8216 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",21.7061 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",21.696 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",21.6863 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",21.7713 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",21.8052 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",21.8933 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",21.7508 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",21.8454 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",21.8913 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",21.8064 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",21.8231 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",21.8858 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",21.8113 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",21.794 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",21.9442 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",21.9552 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",21.9009 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",14.0618 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",14.1197 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",14.1457 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",14.1392 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",14.1645 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",14.067 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",14.0761 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",14.0592 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",14.1562 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",14.2687 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",14.3395 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",14.1304 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",14.1263 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",14.1839000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",14.2301 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",14.4053 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",14.1841 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",14.2806 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",14.1498 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",14.0583 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",14.1009 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",14.1533 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",14.2713 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",14.2125 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",14.2891 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",14.2875 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",14.3447 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",14.2719 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",14.2838 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",14.3507 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",14.3736 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",14.3655 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",14.3614 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",14.4074 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",14.4116 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",14.4374 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",14.5999 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",14.4625 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",14.3959 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",14.5201 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",14.7375 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",14.5831 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",14.4829 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",14.5499 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",14.5869 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",14.7457 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",14.464 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",14.484 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",14.4434 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",14.5713 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",14.6817 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",14.7104 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",14.6461 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",14.7271 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",14.7059 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",14.8225 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",14.7801 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",14.7308 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",14.7998 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",14.7957 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",14.8454 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",14.9242 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",14.8977 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",14.8482 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",14.9059 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",14.9125 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",14.9616 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",15.0252 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",15.052 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",15.027 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",14.9661 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",15.1438 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",15.1106 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",15.3763 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",15.1505 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",15.2969000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",15.2164 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",15.1982 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",15.2652 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",15.3226 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",15.3166000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",15.3688 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",15.2767 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",15.2947 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",15.2713 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",15.5653 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",15.3906 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",15.2457 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",15.4365 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",15.7204 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",15.6214000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",15.4102 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",15.5196 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",15.5314 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",15.5709 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-8.56609999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-8.33689999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-8.80549999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-8.7595 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-8.49279999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-8.78789999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-8.94369999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-8.87189999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-8.70209999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-8.43459999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-8.20909999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-8.601 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-8.61429999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-8.7022 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-8.5127 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-8.07639999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-8.38989999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-8.20909999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-8.53679999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-8.81799999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-9.28129999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-9.13139999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-8.74369999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-8.79749999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-8.71019999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-8.58009999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-8.29999999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-8.46539999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-8.44599999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-8.39269999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-8.52349999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-8.42689999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-8.24169999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-8.36009999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-8.22699999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-8.14689999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-8.17879999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-8.39369999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-8.50959999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-8.45279999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-8.05519999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-8.0659 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-7.97949999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-8.09909999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-8.13189999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-7.99289999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-8.27319999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-8.33139999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-8.49449999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-7.98809999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-7.99709999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-7.94069999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-8.04179999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-7.97229999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-8.01849999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-7.81219999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-7.90879999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-8.15639999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-7.75259999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-7.7337 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-7.81579999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-7.9194 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-7.8023 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-7.64439999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-7.86939999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-7.59629999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-7.4828 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-7.37889999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-7.65159999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-7.56969999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-7.52769999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-7.46439999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-7.47969999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-7.14889999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-7.41829999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-7.27419999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-7.46809999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-7.4905 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-7.28159999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-7.28559999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-7.0204 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-7.29269999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-7.29489999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-7.154 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-7.2638 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-6.78949999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-7.12359999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-7.52209999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-6.92699999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-6.54969999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-6.77719999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-7.1524 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-7.00039999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-6.94739999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-6.86899999999997 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",19.1916000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",19.2106 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",19.3487 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",19.3303 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",19.3009 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",19.2482 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",19.2946 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",19.2577 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",19.3381 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",19.4155 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",19.4513 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",19.2835 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",19.2816 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",19.3722 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",19.3858 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",19.5018 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",19.3016 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",19.379 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",19.2928 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",19.2443 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",19.4016 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",19.4319 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",19.4888 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",19.4289 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",19.503 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",19.4716 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",19.4782 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",19.4264 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",19.4366 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",19.5066 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",19.5643 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",19.5325 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",19.4855 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",19.5688 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",19.5438 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",19.5573 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",19.7638 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",19.644 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",19.5886 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",19.728 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",19.9046 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",19.7177 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",19.5751 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",19.6844 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",19.7373 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",19.9005 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",19.6185 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",19.6563 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",19.6434 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",19.6855 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",19.8229 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",19.8454 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",19.7895 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",19.873 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",19.8575 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",19.9538 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",19.9236 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",19.9193 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",19.9124 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",19.9031 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",19.9826 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",20.1028 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",20.0438 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",19.9472 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",20.069 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",20.0152 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",20.0497 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",20.1042 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",20.1989 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",20.1496 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",20.0654 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",20.269 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",20.2318 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",20.4827 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",20.2668 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",20.4138 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",20.3589 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",20.3416 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",20.3765 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",20.4479 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",20.3804 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",20.5062 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",20.3937 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",20.3838 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",20.3799 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",20.6331 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",20.4946 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",20.4071 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",20.5063 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",20.769 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",20.6991 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",20.5251 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",20.6248000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",20.6273 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",20.658 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2005,"Simulated","C","global",12.395375 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",14.334325 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",14.3964 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",14.44195 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",14.477175 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",14.453825 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",14.447725 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",14.58405 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",14.627325 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",14.699975 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",14.666475 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",14.65015 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",14.652325 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",14.63205 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",14.630575 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",14.68845 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",14.741875 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",14.73635 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",14.749525 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",14.75415 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",14.81385 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",14.9031 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",14.954975 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",15.025925 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",14.9924 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",14.937525 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",14.9695 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",15.0213 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",15.0449 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",15.083975 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",15.0979 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",15.11205 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",15.180625 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",15.20205 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",15.246725 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",15.3157 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",15.379575 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",15.41755 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",15.3933 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",15.481525 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",15.45555 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",15.50485 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",15.54255 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",15.504925 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",15.5341 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",15.60055 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",15.682575 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",15.7247 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",15.752175 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",15.8041 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",15.82415 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",15.7753666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",15.8401666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",15.9791666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",15.9429666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",15.9718 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",15.9673666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",15.9494333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",16.0445333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",16.1707333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",16.1432333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",16.1708666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",16.1923666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",16.3444666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",16.4393333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",16.4232666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",16.4023 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",16.4235666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",16.3855 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",16.4950333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",16.4905666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",16.5953 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",16.64 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",16.6803666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",16.6978333333334 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",16.3837 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",16.838925 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",16.856525 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",16.7896 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",16.740975 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",16.798175 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",16.8845 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",16.9436666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",16.9765 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",17.0665666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",17.1802333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",17.1535 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",17.1324 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",17.2580666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",17.2831 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",17.3457666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",17.3297666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",17.2633 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",17.2772333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",17.3910666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",17.4030333333333 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2005,"Simulated","C","HL",-11.078525 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-8.40069999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-8.11374999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-8.24837499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-8.03934999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-8.03344999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-8.08414999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-7.89779999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-7.95762499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-7.92287499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-7.83214999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-7.81624999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-7.58219999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-7.90122499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-7.87692499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-7.71064999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-7.80554999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-7.93144999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-7.83199999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-7.74912499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-7.55247499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-7.37322499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-7.49077499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-7.38384999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-7.29984999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-7.31399999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-7.34589999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-7.29102499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-7.21899999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-7.17619999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-7.15572499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-7.18074999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-7.03392499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-7.06624999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-6.93442499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-6.83722499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-6.66079999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-6.66034999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-6.63949999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-6.64339999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-6.61189999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-6.52619999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-6.51802499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-6.49537499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-6.52077499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-6.51539999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-6.32149999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-6.14894999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-6.25864999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-5.94164999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-6.079375 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-6.15346666666664 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-6.19556666666665 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-6.02669999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-5.88936666666664 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-5.69499999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-5.73809999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-5.93476666666663 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-5.78019999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-5.73046666666666 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-5.62903333333331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-5.57263333333331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-5.56883333333331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-5.26249999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-5.18349999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-5.17873333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-5.22333333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-5.17239999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-5.23283333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-5.1931 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-5.22079999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-4.97983333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-5.0158333333333 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-4.9166333333333 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-4.89919999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-5.11509999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-4.68839999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-4.64479999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-4.55829999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-4.68372499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-4.62449999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-4.56444999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-4.49489999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-4.4416333333333 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-4.25533333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-4.05613333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-4.06716666666665 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-4.23113333333331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-4.05056666666665 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-3.8976333333333 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-3.86769999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-3.90183333333331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-4.03926666666664 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-4.05626666666666 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-3.92219999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-3.7285333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2005,"Simulated","C","LL",17.801 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",19.5706 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",19.580875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",19.667925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",19.663125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",19.633075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",19.637175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",19.762025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",19.829075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",19.910425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",19.848275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",19.824575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",19.773275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",19.8218 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",19.814425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",19.847325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",19.934925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",19.9571 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",19.950475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",19.937 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",19.96515 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",20.03365 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",20.124575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",20.1873 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",20.126625 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",20.06235 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",20.1091 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",20.1602 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",20.172675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",20.21085 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",20.22325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",20.246425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",20.29695 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",20.330725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",20.3554 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",20.4179 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",20.45585 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",20.5024 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",20.467825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",20.577225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",20.538 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",20.5789 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",20.623425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",20.57195 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",20.613675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",20.69415 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",20.75045 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",20.762525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",20.821575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",20.812475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",20.868875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",20.8258666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",20.9153 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",21.0474333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",20.9712333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",20.9619666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",20.9664333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",20.9897333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",21.0711 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",21.2149333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",21.1576666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",21.1786333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",21.2041666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",21.3208333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",21.4192666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",21.3985333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",21.3829333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",21.3974333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",21.3644666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",21.4900333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",21.4909666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",21.5642666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",21.6276 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",21.6544333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",21.6719 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",21.3349 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",21.796925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",21.808575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",21.7063 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",21.67535 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",21.7321 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",21.824425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",21.8812 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",21.9093333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",21.9773 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",22.0712333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",22.0408 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",22.0527 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",22.1656666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",22.1611666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",22.2314666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",22.2196666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",22.1695666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",22.1906 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",22.2997333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",22.2698333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",13.429 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",13.4088 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",13.343 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",13.4265 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",13.473 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",13.428 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",13.4774 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",13.6922 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",13.727 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",13.7234 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",13.7423 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",13.8132 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",13.917 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",13.7787 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",13.7917 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",13.8403 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",13.896 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",13.8617 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",13.9451 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",14.0926 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",14.0022 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",13.9471 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",14.0007 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",14.0207 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",14.044 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",14.0236 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",14.2392 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",14.0527 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",14.1067 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",14.2301 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",14.0598 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",14.1826 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",14.3323 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",14.1864 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",14.1965 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",14.2347 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",14.2391 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",14.4399 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",14.5095 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",14.6848 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",14.7205 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",14.6103 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",14.4623 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",14.5658 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",14.5778 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",14.6416 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",14.6768 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",14.7582 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",14.6833 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",14.6089 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",14.7931 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",14.7415 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",14.966 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",14.8203 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",14.9036 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",14.7081 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",15.0065 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",14.8767 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",14.934 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",14.7933 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",14.9872 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",14.8883 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",15.1211 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",14.9904 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",15.2189 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",15.2517 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",15.0362 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",15.1491 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",15.0676 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",15.0799 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",15.1187 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",15.1723 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",15.2712 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",15.4312 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",15.5277 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",15.3102 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",15.5272000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",15.4232 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",15.447 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",15.464 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",15.486 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",15.5572 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",15.6464 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",15.8567 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",15.9191 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",16.0228 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",15.8174 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",15.5329 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",15.5937 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",15.7759 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",15.7648 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",15.8585 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",16.0582 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",15.9869 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",15.916 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-8.68919999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-9.0437 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-9.04179999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-8.80079999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-9.07799999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-8.96689999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-8.37419999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-8.12119999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-8.375 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-8.49639999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-8.6909 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-8.24519999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-7.87009999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-8.32779999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-8.12289999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-8.39209999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-8.43119999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-8.39589999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-8.32259999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-7.83239999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-8.06629999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-8.44959999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-8.1823 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-8.048 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-8.08159999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-7.93029999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-7.89789999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-8.14029999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-8.21199999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-7.7586 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-7.88129999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-7.92399999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-7.76329999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-8.11689999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-8.05419999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-8.19259999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-7.88999999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-7.74979999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-7.43449999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-6.88549999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-6.97449999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-7.76130000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-7.94129999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-7.21549999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-7.32069999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-7.2269 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-6.9819 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-7.05439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-7.57279999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-7.58150000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-7.10909999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-7.15659999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-6.61559999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-6.51919999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-6.71569999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-7.08459999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-6.49559999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-7.16039999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-7.02069999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-6.90249999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-6.50619999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-7.26669999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-6.72319999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-6.61439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-6.36989999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-6.3546 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-6.89549999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-6.5172 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-6.75789999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-6.72399999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-6.99689999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-7.00199999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-6.6875 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-6.6053 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-6.30959999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-6.66909999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-5.9982 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-6.601 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-6.60849999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-6.43739999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-6.1712 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-6.21420000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-6.28129999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-5.72319999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-5.42169999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-5.80219999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-5.98649999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-6.3913 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-6.07319999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-6.12629999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-6.0643 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-5.99309999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-5.47139999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-5.91199999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-5.72669999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",18.3333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",18.3872 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",18.3063 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",18.3548 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",18.4732 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",18.3936 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",18.3225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",18.5289 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",18.6276 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",18.6502 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",18.7164 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",18.7042 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",18.7479 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",18.6804 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",18.6508 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",18.7699 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",18.8466 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",18.797 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",18.8822 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",18.954 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",18.8953 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",18.9129 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",18.9193 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",18.9139 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",18.95 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",18.8915 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",19.1477 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",18.9734 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",19.0555 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",19.1058 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",18.9246 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",19.0843 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",19.2316 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",19.1317 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",19.1301 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",19.2073 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",19.1456 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",19.3599 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",19.3751 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",19.4676 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",19.5309 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",19.5707 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",19.4298 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",19.3955 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",19.4335 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",19.4905 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",19.4792 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",19.5947 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",19.6183 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",19.5291 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",19.6495 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",19.5968 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",19.7512 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",19.552 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",19.6972 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",19.5402 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",19.7742 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",19.7629 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",19.802 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",19.6039 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",19.7529 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",19.8004 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",19.9645 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",19.7807 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",20.0056 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",20.0423 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",19.8991 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",19.953 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",19.9067 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",19.9143 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",20.0222 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",20.0889 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",20.14 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",20.3172 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",20.3696 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",20.1835 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",20.3 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",20.3065 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",20.3373 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",20.3201 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",20.2879 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",20.3845 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",20.5084 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",20.6415 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",20.6509 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",20.8619 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",20.6519 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",20.3941 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",20.3978 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",20.6321 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",20.6048 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",20.7034 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",20.8317 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",20.8424 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",20.7146 -"MIROC-ESM","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",14.1874 -"MIROC-ESM","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",14.1828 -"MIROC-ESM","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",14.3402 -"MIROC-ESM","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",14.3406 -"MIROC-ESM","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",14.4861 -"MIROC-ESM","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",14.4221 -"MIROC-ESM","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",14.3661 -"MIROC-ESM","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",14.3068 -"MIROC-ESM","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",14.3885 -"MIROC-ESM","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",14.3542 -"MIROC-ESM","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",14.6441 -"MIROC-ESM","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",14.8425 -"MIROC-ESM","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",14.7261 -"MIROC-ESM","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",14.628 -"MIROC-ESM","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",14.7591 -"MIROC-ESM","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",14.7638 -"MIROC-ESM","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",14.6213 -"MIROC-ESM","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",14.7106 -"MIROC-ESM","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",14.7233 -"MIROC-ESM","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",14.6971 -"MIROC-ESM","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",14.8187 -"MIROC-ESM","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",14.8839 -"MIROC-ESM","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",14.9754 -"MIROC-ESM","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",15.0673 -"MIROC-ESM","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",15.1024 -"MIROC-ESM","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",15.0204 -"MIROC-ESM","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",15.0262 -"MIROC-ESM","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",14.9593 -"MIROC-ESM","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",14.9819 -"MIROC-ESM","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",15.0423 -"MIROC-ESM","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",15.1385 -"MIROC-ESM","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",15.1895 -"MIROC-ESM","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",15.1813 -"MIROC-ESM","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",15.1961 -"MIROC-ESM","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",15.2083 -"MIROC-ESM","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",15.2872 -"MIROC-ESM","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",15.4676 -"MIROC-ESM","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",15.5113 -"MIROC-ESM","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",15.5121 -"MIROC-ESM","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",15.442 -"MIROC-ESM","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",15.5038 -"MIROC-ESM","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",15.546 -"MIROC-ESM","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",15.5366 -"MIROC-ESM","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",15.5562 -"MIROC-ESM","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",15.5849 -"MIROC-ESM","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",15.6049 -"MIROC-ESM","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",15.598 -"MIROC-ESM","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",15.7381 -"MIROC-ESM","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",15.7548 -"MIROC-ESM","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",15.8417 -"MIROC-ESM","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",15.8986 -"MIROC-ESM","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",15.7195 -"MIROC-ESM","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",15.777 -"MIROC-ESM","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",15.8938 -"MIROC-ESM","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",15.9472 -"MIROC-ESM","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",16.0119 -"MIROC-ESM","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",15.9521 -"MIROC-ESM","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",15.9435 -"MIROC-ESM","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",15.9491 -"MIROC-ESM","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",16.0227 -"MIROC-ESM","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",16.0154 -"MIROC-ESM","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",16.0646 -"MIROC-ESM","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",16.1549 -"MIROC-ESM","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",16.2046 -"MIROC-ESM","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",16.1829 -"MIROC-ESM","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",16.391 -"MIROC-ESM","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",16.4507 -"MIROC-ESM","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",16.4146 -"MIROC-ESM","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",16.356 -"MIROC-ESM","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",16.4787 -"MIROC-ESM","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",16.3716 -"MIROC-ESM","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",16.3841 -"MIROC-ESM","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",16.5936 -"MIROC-ESM","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",16.8169 -"MIROC-ESM","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",16.7357 -"MIROC-ESM","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",16.8383 -"MIROC-ESM","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",16.7573 -"MIROC-ESM","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",16.899 -"MIROC-ESM","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",16.962 -"MIROC-ESM","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",16.8756 -"MIROC-ESM","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",16.9782 -"MIROC-ESM","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",17.022 -"MIROC-ESM","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",16.9343 -"MIROC-ESM","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",16.8765 -"MIROC-ESM","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",16.8508 -"MIROC-ESM","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",17.0268 -"MIROC-ESM","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",17.1418 -"MIROC-ESM","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",17.0143 -"MIROC-ESM","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",17.0534 -"MIROC-ESM","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",17.2413 -"MIROC-ESM","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",17.2019 -"MIROC-ESM","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",17.2229 -"MIROC-ESM","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",17.3508 -"MIROC-ESM","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",17.2873 -"MIROC-ESM","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",17.266 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-9.22669999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-8.976 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-8.84139999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-8.67140000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-8.5804 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-8.6087 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-8.46839999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-8.67759999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-8.46199999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-8.79849999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-8.39179999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-7.9622 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-8.17599999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-8.25379999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-8.02629999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-7.95929999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-8.08629999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-8.0754 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-8.24349999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-7.87139999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-7.94639999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-7.85229999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-7.40589999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-7.34739999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-7.23059999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-7.31999999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-7.5367 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-7.39329999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-7.49879999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-7.39249999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-7.24169999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-7.35919999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-7.1798 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-7.23909999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-7.1037 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-6.89909999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-6.99119999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-6.60169999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-6.73359999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-6.96129999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-6.60179999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-6.51829999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-6.60769999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-6.68429999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-6.47979999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-6.70609999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-6.68449999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-6.66129999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-6.5736 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-6.45529999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-6.24379999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-6.37709999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-6.12219999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-6.02969999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-5.87899999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-5.99439999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-6.10019999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-5.97469999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-6.12829999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-6.03739999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-6.00389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-5.90469999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-5.74609999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-5.68329999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-5.65379999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-5.22229999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-5.34289999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-5.40729999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-5.5598 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-5.5487 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-5.3415 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-5.34719999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-4.84289999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-4.67509999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-4.8415 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-4.8793 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-4.93059999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-4.464 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-4.56359999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-4.59949999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-4.28659999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-4.47379999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-4.5849 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-4.51769999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-4.89259999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-4.5034 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-4.34809999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-4.74899999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-4.66489999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-4.06449999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-4.2996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-4.02109999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-3.97919999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-3.82909999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-3.93099999999998 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",19.076 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",19.018 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",19.1803 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",19.1452 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",19.3021 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",19.2307 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",19.1337 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",19.1057 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",19.1594 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",19.1882 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",19.4537 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",19.6039 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",19.5078 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",19.4055 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",19.5164 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",19.5081 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",19.3624 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",19.4681 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",19.5186 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",19.4091 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",19.5718 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",19.631 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",19.6484 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",19.7473 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",19.7653 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",19.6848 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",19.7371 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",19.6263 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",19.6757 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",19.7264 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",19.8113 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",19.8974 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",19.85 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",19.8803 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",19.8668 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",19.9194 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",20.1567 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",20.1282 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",20.1567 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",20.1195 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",20.1193 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",20.1528 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",20.1601 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",20.1997 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",20.1917 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",20.2632 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",20.2503 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",20.4148 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",20.4167 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",20.497 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",20.5217 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",20.333 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",20.3493 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",20.4711 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",20.5042 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",20.6065 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",20.5564 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",20.5197 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",20.5586 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",20.6286 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",20.6128 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",20.6515 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",20.7275 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",20.7746 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",20.7421000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",20.9036 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",21.001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",20.9708 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",20.9318 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",21.0778 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",20.905 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",20.9213 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",21.0693 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",21.3042 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",21.2408 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",21.3726 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",21.2855 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",21.3594000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",21.4563 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",21.3594000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",21.418 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",21.5101 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",21.4273 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",21.3434 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",21.3906 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",21.522 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",21.6287 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",21.5583 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",21.5879 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",21.6897 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",21.6912 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",21.6584 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",21.8043 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",21.6962 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",21.6917 -"NorESM1-ME","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",13.5479 -"NorESM1-ME","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",13.5754 -"NorESM1-ME","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",13.6732 -"NorESM1-ME","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",13.5485 -"NorESM1-ME","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",13.5542 -"NorESM1-ME","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",13.6853 -"NorESM1-ME","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",13.6582 -"NorESM1-ME","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",13.6046 -"NorESM1-ME","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",13.753 -"NorESM1-ME","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",13.794 -"NorESM1-ME","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",13.6729 -"NorESM1-ME","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",13.6876 -"NorESM1-ME","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",13.9682 -"NorESM1-ME","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",13.86 -"NorESM1-ME","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",13.7844 -"NorESM1-ME","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",13.6861 -"NorESM1-ME","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",13.5495 -"NorESM1-ME","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",13.6774 -"NorESM1-ME","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",13.7437 -"NorESM1-ME","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",13.7797 -"NorESM1-ME","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",13.8197 -"NorESM1-ME","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",13.9123 -"NorESM1-ME","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",13.8625 -"NorESM1-ME","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",13.8264 -"NorESM1-ME","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",13.841 -"NorESM1-ME","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",14.0479 -"NorESM1-ME","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",14.105 -"NorESM1-ME","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",14.1264 -"NorESM1-ME","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",14.3352 -"NorESM1-ME","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",14.2124 -"NorESM1-ME","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",13.9198 -"NorESM1-ME","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",14.0251 -"NorESM1-ME","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",14.1402 -"NorESM1-ME","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",14.1493 -"NorESM1-ME","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",14.1898 -"NorESM1-ME","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",14.3087 -"NorESM1-ME","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",14.0994 -"NorESM1-ME","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",14.1273 -"NorESM1-ME","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",14.0686 -"NorESM1-ME","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",14.1696 -"NorESM1-ME","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",14.0624 -"NorESM1-ME","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",14.2445 -"NorESM1-ME","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",14.3904 -"NorESM1-ME","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",14.2981 -"NorESM1-ME","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",14.2664 -"NorESM1-ME","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",14.365 -"NorESM1-ME","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",14.3344 -"NorESM1-ME","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",14.2974 -"NorESM1-ME","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",14.3895 -"NorESM1-ME","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",14.4547 -"NorESM1-ME","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",14.3144 -"NorESM1-ME","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",14.2869 -"NorESM1-ME","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",14.4098 -"NorESM1-ME","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",14.4758 -"NorESM1-ME","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",14.4276 -"NorESM1-ME","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",14.4488 -"NorESM1-ME","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",14.4143 -"NorESM1-ME","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",14.4913 -"NorESM1-ME","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",14.5243 -"NorESM1-ME","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",14.5549 -"NorESM1-ME","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",14.7129 -"NorESM1-ME","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",14.7137 -"NorESM1-ME","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",14.6511 -"NorESM1-ME","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",14.7079 -"NorESM1-ME","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",14.7099 -"NorESM1-ME","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",14.9575 -"NorESM1-ME","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",14.8926 -"NorESM1-ME","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",14.8033 -"NorESM1-ME","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",14.8229 -"NorESM1-ME","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",14.8538 -"NorESM1-ME","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",14.9079 -"NorESM1-ME","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",15.0304 -"NorESM1-ME","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",15.2509 -"NorESM1-ME","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",15.131 -"NorESM1-ME","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",15.1058 -"NorESM1-ME","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",15.0426 -"NorESM1-ME","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",14.9848 -"NorESM1-ME","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",15.0822 -"NorESM1-ME","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",15.1327 -"NorESM1-ME","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",15.2684 -"NorESM1-ME","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",15.1311 -"NorESM1-ME","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",15.1877 -"NorESM1-ME","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",15.1993000000001 -"NorESM1-ME","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",15.1438 -"NorESM1-ME","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",15.3058 -"NorESM1-ME","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",15.1954 -"NorESM1-ME","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",15.2031 -"NorESM1-ME","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",15.3342 -"NorESM1-ME","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",15.5013 -"NorESM1-ME","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",15.4775 -"NorESM1-ME","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",15.4041 -"NorESM1-ME","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",15.3872 -"NorESM1-ME","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",15.3573 -"NorESM1-ME","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",15.4655 -"NorESM1-ME","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",15.5245 -"NorESM1-ME","tas","temperature","tgav","rcp60",2101,"Simulated","C","global",15.6171000000001 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-11.3482 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-11.2931 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-11.1168 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-11.6551 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-11.7083 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-11.1071 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-11.0317 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-11.1807 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-10.9456 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-10.5445 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-10.9205 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-11.0165 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-10.5568 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-10.8982999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-11.1693 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-11.1491 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-11.3506 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-11.0822 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-11.3280999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-10.9147 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-10.9162 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-10.8646 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-10.6208 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-10.7631 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-10.9772 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-10.6161 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-10.3003 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-10.5533 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-10.1288 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-10.0779 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-10.7047 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-10.3937 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-10.3966 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-10.1525999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-10.1255 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-9.94229999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-10.4136 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-10.2337 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-10.5639 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-10.4909 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-10.5052 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-10.3083 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-9.90119999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-9.97289999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-10.0334 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-10.0428 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-10.1371 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-10.2994 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-10.1125 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-9.8768 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-10.1471 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-10.3666 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-9.94739999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-9.87989999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-10.0624 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-9.90569999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-10.0757 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-9.84299999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-9.77079999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-9.86839999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-9.75409999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-9.36179999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-9.61899999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-9.68219999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-9.93859999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-9.2072 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-9.19889999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-9.5523 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-9.43519999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-9.45419999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-9.49519999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-9.53899999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-8.64349999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-8.9205 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-8.87819999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-8.89179999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-9.10239999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-9.15449999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-8.98809999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-8.60909999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-8.91499999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-8.87649999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-8.67129999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-9.09739999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-8.43489999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-8.60299999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-8.73859999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-8.31389999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-8.05579999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-8.40949999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-8.5865 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-8.34719999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-8.52069999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-8.44139999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-8.11469999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2101,"Simulated","C","HL",-8.05239999999998 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",19.0673 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",19.0888 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",19.1692 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",19.1361 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",19.1548 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",19.182 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",19.1321 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",19.0993 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",19.2288 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",19.1899 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",19.1252 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",19.1647 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",19.4054 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",19.3491 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",19.3167 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",19.1922 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",19.0699 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",19.1668 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",19.3021 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",19.2545 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",19.3036 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",19.4053 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",19.2903 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",19.2779 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",19.3432 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",19.5158 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",19.5156 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",19.5981 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",19.7589 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",19.5977 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",19.379 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",19.4386 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",19.58 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",19.5372 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",19.5805 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",19.6853 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",19.5339 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",19.5282 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",19.5295 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",19.6369 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",19.5092 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",19.6877 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",19.7759 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",19.6791 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",19.6535 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",19.7756 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",19.7592 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",19.7499 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",19.8212 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",19.8484 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",19.737 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",19.7519 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",19.8092 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",19.8749 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",19.8564 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",19.8476 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",19.8431 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",19.8856 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",19.91 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",19.9690000000001 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",20.1368000000001 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",20.0507 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",20.0312 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",20.1146 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",20.1739 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",20.3144 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",20.2332 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",20.2023 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",20.2003 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",20.2423 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",20.3177 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",20.4771 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",20.548 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",20.4628 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",20.4228 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",20.3485 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",20.3245 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",20.4549 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",20.4799 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",20.5617 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",20.4616 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",20.5222 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",20.4909 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",20.5177 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",20.5687 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",20.4712 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",20.5108 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",20.5766 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",20.7235 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",20.7728 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",20.7223 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",20.6486 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",20.6507 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",20.7653 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",20.765 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2101,"Simulated","C","LL",20.8644 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp60/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp60/summary.csv deleted file mode 100644 index cdcbd90bf..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp60/summary.csv +++ /dev/null @@ -1,286 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,tas,temperature,tgav,rcp60,C,Simulated,global,0.583615899,13.429,15.0402,14.10010417,14.1246,1,CMIP5 -2006,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.214571182,-11.3482,-8.4007,-9.4675,-8.95795,1,CMIP5 -2006,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.678675206,18.3333,20.3882,19.27116667,19.1338,1,CMIP5 -2007,tas,temperature,tgav,rcp60,C,Simulated,global,0.604453627,13.4088,15.0919,14.12916667,14.15125,1,CMIP5 -2007,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.181186032,-11.2931,-8.11375,-9.294891667,-9.00985,1,CMIP5 -2007,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.648642867,18.3872,20.332,19.26957917,19.1497,1,CMIP5 -2008,tas,temperature,tgav,rcp60,C,Simulated,global,0.60638121,13.343,15.0668,14.168475,14.24295,1,CMIP5 -2008,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.052819134,-11.1168,-8.248375,-9.358395833,-8.9416,1,CMIP5 -2008,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.662122572,18.3063,20.3206,19.33217083,19.2645,1,CMIP5 -2009,tas,temperature,tgav,rcp60,C,Simulated,global,0.66221332,13.4265,15.2343,14.19437917,14.2399,1,CMIP5 -2009,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.296633673,-11.6551,-8.03935,-9.300691667,-8.78015,1,CMIP5 -2009,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.699686025,18.3548,20.4775,19.35117083,19.23775,1,CMIP5 -2010,tas,temperature,tgav,rcp60,C,Simulated,global,0.601514707,13.473,15.0462,14.19630417,14.3091625,1,CMIP5 -2010,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.404406407,-11.7083,-8.03345,-9.387775,-8.8292,1,CMIP5 -2010,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.619895622,18.4732,20.3661,19.37169583,19.3015,1,CMIP5 -2011,tas,temperature,tgav,rcp60,C,Simulated,global,0.586401318,13.428,15.0553,14.1842375,14.24455,1,CMIP5 -2011,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.152136198,-11.1071,-8.08415,-9.312675,-8.8774,1,CMIP5 -2011,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.641358557,18.3936,20.3536,19.34087917,19.23945,1,CMIP5 -2012,tas,temperature,tgav,rcp60,C,Simulated,global,0.612721998,13.4774,15.1341,14.21599167,14.2211,1,CMIP5 -2012,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.219976432,-11.0317,-7.8978,-9.162083333,-8.70605,1,CMIP5 -2012,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.707231893,18.3225,20.4354,19.34672083,19.21415,1,CMIP5 -2013,tas,temperature,tgav,rcp60,C,Simulated,global,0.576398176,13.6046,15.1177,14.2346375,14.183,1,CMIP5 -2013,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.323416189,-11.1807,-7.957625,-9.221920833,-8.77475,1,CMIP5 -2013,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.676092588,18.5289,20.4711,19.3819625,19.1817,1,CMIP5 -2014,tas,temperature,tgav,rcp60,C,Simulated,global,0.56189411,13.727,15.1742,14.31647917,14.27235,1,CMIP5 -2014,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.175919456,-10.9456,-7.922875,-9.087245833,-8.58205,1,CMIP5 -2014,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.639248549,18.6276,20.4545,19.4531375,19.28345,1,CMIP5 -2015,tas,temperature,tgav,rcp60,C,Simulated,global,0.527783245,13.7234,15.1177,14.32074583,14.31145,1,CMIP5 -2015,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.150226252,-10.5445,-7.83215,-9.104758333,-8.64745,1,CMIP5 -2015,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.628914071,18.6502,20.4711,19.46052917,19.3027,1,CMIP5 -2016,tas,temperature,tgav,rcp60,C,Simulated,global,0.565507877,13.6729,15.1216,14.36175833,14.4918,1,CMIP5 -2016,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.243760594,-10.9205,-7.81625,-9.046741667,-8.54135,1,CMIP5 -2016,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.584684789,18.7164,20.4192,19.49839583,19.4525,1,CMIP5 -2017,tas,temperature,tgav,rcp60,C,Simulated,global,0.567920999,13.6876,15.0605,14.36442083,14.3913625,1,CMIP5 -2017,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.444094466,-11.0165,-7.5822,-9.000383333,-8.4231,1,CMIP5 -2017,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.586288137,18.7042,20.4171,19.4911125,19.4437,1,CMIP5 -2018,tas,temperature,tgav,rcp60,C,Simulated,global,0.478826641,13.917,15.1017,14.41189167,14.379175,1,CMIP5 -2018,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.2050055,-10.5568,-7.8701,-8.896504167,-8.39515,1,CMIP5 -2018,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.552481704,18.7479,20.397,19.52691667,19.4566,1,CMIP5 -2019,tas,temperature,tgav,rcp60,C,Simulated,global,0.551224936,13.7787,15.2313,14.3854125,14.40595,1,CMIP5 -2019,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.175791704,-10.8983,-7.876925,-9.005654167,-8.515,1,CMIP5 -2019,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.600741034,18.6804,20.494,19.51927083,19.38885,1,CMIP5 -2020,tas,temperature,tgav,rcp60,C,Simulated,global,0.551139516,13.7844,15.1272,14.396825,14.459275,1,CMIP5 -2020,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.37411,-11.1693,-7.71065,-8.935158333,-8.3178,1,CMIP5 -2020,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.578829218,18.6508,20.3879,19.5174875,19.4511,1,CMIP5 -2021,tas,temperature,tgav,rcp60,C,Simulated,global,0.57131242,13.6861,15.1522,14.43159583,14.5735875,1,CMIP5 -2021,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.412970677,-11.1491,-7.80555,-8.944491667,-8.23425,1,CMIP5 -2021,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.586814675,18.7699,20.4631,19.56167083,19.50495,1,CMIP5 -2022,tas,temperature,tgav,rcp60,C,Simulated,global,0.570325912,13.5495,15.0775,14.344125,14.4027,1,CMIP5 -2022,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.438939615,-11.3506,-7.93145,-9.113958333,-8.41055,1,CMIP5 -2022,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.58633783,18.8466,20.4166,19.49236667,19.332,1,CMIP5 -2023,tas,temperature,tgav,rcp60,C,Simulated,global,0.547292346,13.6774,15.0732,14.39217083,14.4956,1,CMIP5 -2023,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.334724797,-11.0822,-7.832,-8.96095,-8.3025,1,CMIP5 -2023,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.553920147,18.797,20.3439,19.51754583,19.42355,1,CMIP5 -2024,tas,temperature,tgav,rcp60,C,Simulated,global,0.525334847,13.7437,15.0706,14.397775,14.43655,1,CMIP5 -2024,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.42456276,-11.3281,-7.749125,-9.0974875,-8.4297,1,CMIP5 -2024,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.534633207,18.8822,20.3896,19.55371667,19.41035,1,CMIP5 -2025,tas,temperature,tgav,rcp60,C,Simulated,global,0.562111845,13.7797,15.2599,14.45024167,14.39485,1,CMIP5 -2025,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.325031045,-10.9147,-7.552475,-8.794079167,-8.3447,1,CMIP5 -2025,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.566767531,18.954,20.487,19.55234167,19.3318,1,CMIP5 -2026,tas,temperature,tgav,rcp60,C,Simulated,global,0.624394502,13.8197,15.4032,14.50796667,14.4598,1,CMIP5 -2026,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.287952598,-10.9162,-7.373225,-8.819354167,-8.6738,1,CMIP5 -2026,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.590638722,18.8953,20.5678,19.62895833,19.4867,1,CMIP5 -2027,tas,temperature,tgav,rcp60,C,Simulated,global,0.629371071,13.9123,15.4318,14.54722917,14.5186,1,CMIP5 -2027,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.213070857,-10.8646,-7.490775,-8.850695833,-8.7905,1,CMIP5 -2027,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.594911362,18.9129,20.5988,19.68407917,19.53145,1,CMIP5 -2028,tas,temperature,tgav,rcp60,C,Simulated,global,0.648062739,13.8625,15.4755,14.6018875,14.62335,1,CMIP5 -2028,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.21475672,-10.6208,-7.38385,-8.564358333,-8.463,1,CMIP5 -2028,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.610615931,18.9193,20.5961,19.68836667,19.5686,1,CMIP5 -2029,tas,temperature,tgav,rcp60,C,Simulated,global,0.660160996,13.8264,15.4501,14.5949,14.60245,1,CMIP5 -2029,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.320047431,-10.7631,-7.29985,-8.585491667,-8.42275,1,CMIP5 -2029,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.612868832,18.9139,20.6087,19.6838875,19.5881,1,CMIP5 -2030,tas,temperature,tgav,rcp60,C,Simulated,global,0.638554188,13.841,15.4312,14.6075375,14.6133125,1,CMIP5 -2030,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.402543105,-10.9772,-7.2306,-8.587733333,-8.3959,1,CMIP5 -2030,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.571420052,18.95,20.5766,19.700075,19.63415,1,CMIP5 -2031,tas,temperature,tgav,rcp60,C,Simulated,global,0.596348348,14.0236,15.4587,14.6346,14.6285,1,CMIP5 -2031,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.315368152,-10.6161,-7.32,-8.559966667,-8.2552,1,CMIP5 -2031,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.611741364,18.8915,20.6838,19.7261,19.6003,1,CMIP5 -2032,tas,temperature,tgav,rcp60,C,Simulated,global,0.547705839,14.105,15.4731,14.70158333,14.683,1,CMIP5 -2032,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.195904416,-10.3003,-7.291025,-8.480704167,-8.09895,1,CMIP5 -2032,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.557120841,19.1477,20.6994,19.7897,19.62635,1,CMIP5 -2033,tas,temperature,tgav,rcp60,C,Simulated,global,0.59808011,14.0527,15.5241,14.66321667,14.6156,1,CMIP5 -2033,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.267813089,-10.5533,-7.219,-8.530383333,-8.30285,1,CMIP5 -2033,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.614088567,18.9734,20.7302,19.7545125,19.6122,1,CMIP5 -2034,tas,temperature,tgav,rcp60,C,Simulated,global,0.537982436,14.1067,15.4498,14.70689583,14.65855,1,CMIP5 -2034,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.165621508,-10.1288,-7.1762,-8.5171,-8.329,1,CMIP5 -2034,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.576440727,19.0555,20.6884,19.804325,19.7173,1,CMIP5 -2035,tas,temperature,tgav,rcp60,C,Simulated,global,0.574056953,14.2124,15.6001,14.75558333,14.6965,1,CMIP5 -2035,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.161091304,-10.0779,-7.155725,-8.359570833,-8.07565,1,CMIP5 -2035,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.603323471,19.1058,20.8157,19.82924167,19.66205,1,CMIP5 -2036,tas,temperature,tgav,rcp60,C,Simulated,global,0.693058299,13.9198,15.6566,14.71005833,14.742825,1,CMIP5 -2036,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.333151358,-10.7047,-7.18075,-8.436275,-8.2024,1,CMIP5 -2036,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.669865862,18.9246,20.8225,19.79135417,19.6878,1,CMIP5 -2037,tas,temperature,tgav,rcp60,C,Simulated,global,0.636033204,14.0251,15.5555,14.74980417,14.7730625,1,CMIP5 -2037,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.247922154,-10.3937,-7.033925,-8.389170833,-8.17545,1,CMIP5 -2037,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.603136361,19.0843,20.7236,19.82889167,19.71495,1,CMIP5 -2038,tas,temperature,tgav,rcp60,C,Simulated,global,0.598399118,14.1402,15.5981,14.80255833,14.77135,1,CMIP5 -2038,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.275247474,-10.3966,-7.06625,-8.294091667,-8.0025,1,CMIP5 -2038,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.572921616,19.2316,20.7583,19.8726875,19.715,1,CMIP5 -2039,tas,temperature,tgav,rcp60,C,Simulated,global,0.643775053,14.1493,15.6731,14.8098375,14.80175,1,CMIP5 -2039,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.176819315,-10.1526,-6.934425,-8.297504167,-8.2385,1,CMIP5 -2039,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.614066194,19.1317,20.8208,19.88236667,19.72455,1,CMIP5 -2040,tas,temperature,tgav,rcp60,C,Simulated,global,0.649772067,14.1898,15.6937,14.83593333,14.80995,1,CMIP5 -2040,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.231047439,-10.1255,-6.837225,-8.240204167,-8.1406,1,CMIP5 -2040,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.637177748,19.1301,20.869,19.90135,19.72365,1,CMIP5 -2041,tas,temperature,tgav,rcp60,C,Simulated,global,0.640158855,14.2347,15.7143,14.89364583,14.8623,1,CMIP5 -2041,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.244481548,-9.9423,-6.6608,-8.1427,-8.16975,1,CMIP5 -2041,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.615267898,19.2073,20.8774,19.950425,19.80235,1,CMIP5 -2042,tas,temperature,tgav,rcp60,C,Simulated,global,0.710727792,14.0994,15.7802,14.93395833,15.008725,1,CMIP5 -2042,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.363099243,-10.4136,-6.66035,-8.169608333,-8.0344,1,CMIP5 -2042,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.654854185,19.1456,20.9297,20.00535,19.96025,1,CMIP5 -2043,tas,temperature,tgav,rcp60,C,Simulated,global,0.696227592,14.1273,15.8089,14.9572,14.9279,1,CMIP5 -2043,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.383738696,-10.2337,-6.6017,-8.063866667,-8.07175,1,CMIP5 -2043,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.612607286,19.3599,20.9396,20.0112875,19.8861,1,CMIP5 -2044,tas,temperature,tgav,rcp60,C,Simulated,global,0.723867937,14.0686,15.8129,14.96342083,14.9955125,1,CMIP5 -2044,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.4663223,-10.5639,-6.6434,-8.0491,-7.92205,1,CMIP5 -2044,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.615553923,19.3751,20.8702,20.01622083,19.87265,1,CMIP5 -2045,tas,temperature,tgav,rcp60,C,Simulated,global,0.632000797,14.1696,15.7584,15.005075,15.0634,1,CMIP5 -2045,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.501267373,-10.4909,-6.6119,-8.031366667,-7.70705,1,CMIP5 -2045,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.556686708,19.4676,20.883,20.06216667,19.92375,1,CMIP5 -2046,tas,temperature,tgav,rcp60,C,Simulated,global,0.665685497,14.0624,15.8387,15.06129167,15.12065,1,CMIP5 -2046,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.570959214,-10.5052,-6.5262,-7.935833333,-7.51485,1,CMIP5 -2046,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.596174885,19.5092,21.0148,20.10961667,20.01195,1,CMIP5 -2047,tas,temperature,tgav,rcp60,C,Simulated,global,0.701578984,14.2445,16.01,15.08940833,15.076425,1,CMIP5 -2047,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.400672912,-10.3083,-6.518025,-7.908604167,-7.9136,1,CMIP5 -2047,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.604500792,19.5707,21.0814,20.13895417,19.93525,1,CMIP5 -2048,tas,temperature,tgav,rcp60,C,Simulated,global,0.64432171,14.3904,15.7803,15.0262375,14.9939125,1,CMIP5 -2048,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.301617717,-9.9012,-6.495375,-7.9564125,-7.9604,1,CMIP5 -2048,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.585781685,19.4298,20.9152,20.07134167,19.968,1,CMIP5 -2049,tas,temperature,tgav,rcp60,C,Simulated,global,0.639546073,14.2981,15.7605,15.0441,15.04995,1,CMIP5 -2049,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.338753757,-9.9729,-6.520775,-7.8791625,-7.6573,1,CMIP5 -2049,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.588644838,19.3955,20.8848,20.07619583,19.94205,1,CMIP5 -2050,tas,temperature,tgav,rcp60,C,Simulated,global,0.67366613,14.2664,15.8455,15.07700833,15.0859,1,CMIP5 -2050,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.452422808,-10.0334,-6.4798,-7.9466,-7.7263,1,CMIP5 -2050,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.645003735,19.4335,21.0743,20.13074167,19.9645,1,CMIP5 -2051,tas,temperature,tgav,rcp60,C,Simulated,global,0.668746092,14.365,15.9928,15.17209583,15.1753,1,CMIP5 -2051,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.379412292,-10.0428,-6.3215,-7.825,-7.6099,1,CMIP5 -2051,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.626320252,19.4905,21.14,20.22004167,20.08185,1,CMIP5 -2052,tas,temperature,tgav,rcp60,C,Simulated,global,0.740481183,14.3344,16.0725,15.14506667,15.1374,1,CMIP5 -2052,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.461144249,-10.1371,-6.14895,-7.770175,-7.62755,1,CMIP5 -2052,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.682614436,19.4792,21.1811,20.1751375,20.00475,1,CMIP5 -2053,tas,temperature,tgav,rcp60,C,Simulated,global,0.757054546,14.2974,16.0663,15.18269583,15.24815,1,CMIP5 -2053,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.491463574,-10.2994,-6.25865,-7.835891667,-7.6929,1,CMIP5 -2053,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.669834952,19.5947,21.1767,20.2356625,20.08235,1,CMIP5 -2054,tas,temperature,tgav,rcp60,C,Simulated,global,0.771619219,14.3895,16.0989,15.19566667,15.21905,1,CMIP5 -2054,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.502490833,-10.1125,-5.94165,-7.863758333,-8.03015,1,CMIP5 -2054,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.672225414,19.6183,21.2322,20.25737917,20.11895,1,CMIP5 -2055,tas,temperature,tgav,rcp60,C,Simulated,global,0.745129961,14.4547,16.0229,15.22060833,15.216525,1,CMIP5 -2055,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.383873223,-9.8768,-6.079375,-7.7397625,-7.7848,1,CMIP5 -2055,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.667027244,19.5291,21.1341,20.26049583,20.1727,1,CMIP5 -2056,tas,temperature,tgav,rcp60,C,Simulated,global,0.739420555,14.3144,16.0437,15.25114444,15.28423333,1,CMIP5 -2056,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.532360641,-10.1471,-6.153466667,-7.707777778,-7.5531,1,CMIP5 -2056,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.645264043,19.6495,21.1882,20.29086111,20.1723,1,CMIP5 -2057,tas,temperature,tgav,rcp60,C,Simulated,global,0.737920363,14.2869,16.0742,15.22877778,15.2305,1,CMIP5 -2057,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.566219563,-10.3666,-6.195566667,-7.773727778,-7.54865,1,CMIP5 -2057,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.669017808,19.5968,21.2271,20.27825,20.0892,1,CMIP5 -2058,tas,temperature,tgav,rcp60,C,Simulated,global,0.73964328,14.4098,16.1471,15.32086111,15.3715,1,CMIP5 -2058,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.506941844,-9.9474,-6.0267,-7.455833333,-7.29845,1,CMIP5 -2058,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.654790856,19.7512,21.1848,20.32190556,20.07925,1,CMIP5 -2059,tas,temperature,tgav,rcp60,C,Simulated,global,0.741359195,14.4758,16.1678,15.33796111,15.35705,1,CMIP5 -2059,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.554470913,-9.8799,-5.889366667,-7.418261111,-7.24575,1,CMIP5 -2059,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.680621765,19.552,21.2595,20.33362222,20.173,1,CMIP5 -2060,tas,temperature,tgav,rcp60,C,Simulated,global,0.740512784,14.4276,16.0809,15.3395,15.4254,1,CMIP5 -2060,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.668506101,-10.0624,-5.695,-7.441366667,-7.3671,1,CMIP5 -2060,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.628824537,19.6972,21.1667,20.34066111,20.18085,1,CMIP5 -2061,tas,temperature,tgav,rcp60,C,Simulated,global,0.769511017,14.4488,16.1494,15.35134444,15.39493333,1,CMIP5 -2061,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.60976045,-9.9057,-5.7381,-7.54605,-7.4484,1,CMIP5 -2061,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.707026862,19.5402,21.3464,20.37682222,20.28015,1,CMIP5 -2062,tas,temperature,tgav,rcp60,C,Simulated,global,0.717846438,14.4143,16.0832,15.36427222,15.47796667,1,CMIP5 -2062,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.670911149,-10.0757,-5.934766667,-7.556927778,-7.2022,1,CMIP5 -2062,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.645361992,19.7742,21.2841,20.39518889,20.24,1,CMIP5 -2063,tas,temperature,tgav,rcp60,C,Simulated,global,0.733567602,14.4913,16.0653,15.35868889,15.4101,1,CMIP5 -2063,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.635897532,-9.843,-5.7802,-7.64935,-7.6584,1,CMIP5 -2063,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.658250916,19.7629,21.2948,20.4089,20.2195,1,CMIP5 -2064,tas,temperature,tgav,rcp60,C,Simulated,global,0.752519378,14.5243,16.1716,15.42492222,15.44155,1,CMIP5 -2064,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.491823123,-9.7708,-5.730466667,-7.454311111,-7.38665,1,CMIP5 -2064,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.677635929,19.802,21.2858,20.44728889,20.2355,1,CMIP5 -2065,tas,temperature,tgav,rcp60,C,Simulated,global,0.774065636,14.5549,16.1808,15.41510556,15.4092,1,CMIP5 -2065,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.555442308,-9.8684,-5.629033333,-7.396438889,-7.3181,1,CMIP5 -2065,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.700214524,19.6039,21.2728,20.42251111,20.2988,1,CMIP5 -2066,tas,temperature,tgav,rcp60,C,Simulated,global,0.706959936,14.7129,16.188,15.48662778,15.5013,1,CMIP5 -2066,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.599074472,-9.7541,-5.572633333,-7.342372222,-7.161,1,CMIP5 -2066,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.649105928,19.7529,21.322,20.49762222,20.3748,1,CMIP5 -2067,tas,temperature,tgav,rcp60,C,Simulated,global,0.718683006,14.7137,16.19236667,15.49364444,15.4944,1,CMIP5 -2067,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.494966161,-9.3618,-5.568833333,-7.438155556,-7.59305,1,CMIP5 -2067,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.646901501,19.8004,21.3538,20.52722778,20.37715,1,CMIP5 -2068,tas,temperature,tgav,rcp60,C,Simulated,global,0.754847859,14.6511,16.34446667,15.56319444,15.638,1,CMIP5 -2068,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.638823228,-9.619,-5.2625,-7.235783333,-7.26275,1,CMIP5 -2068,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.645546542,19.9645,21.32083333,20.56783889,20.38565,1,CMIP5 -2069,tas,temperature,tgav,rcp60,C,Simulated,global,0.807869313,14.7079,16.43933333,15.57852222,15.5975,1,CMIP5 -2069,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.698296039,-9.6822,-5.1835,-7.19515,-7.1294,1,CMIP5 -2069,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.736724557,19.7807,21.426,20.57706111,20.4446,1,CMIP5 -2070,tas,temperature,tgav,rcp60,C,Simulated,global,0.761104436,14.7099,16.42326667,15.62009444,15.7009,1,CMIP5 -2070,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.812138253,-9.9386,-5.178733333,-7.225822222,-7.11965,1,CMIP5 -2070,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.654425416,20.0056,21.421,20.63502222,20.458,1,CMIP5 -2071,tas,temperature,tgav,rcp60,C,Simulated,global,0.733316669,14.9125,16.4023,15.70048333,15.7698,1,CMIP5 -2071,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.625854429,-9.2072,-5.2223,-6.955005556,-6.97545,1,CMIP5 -2071,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.636179974,20.0152,21.3853,20.67395556,20.609,1,CMIP5 -2072,tas,temperature,tgav,rcp60,C,Simulated,global,0.797962421,14.8926,16.4507,15.69041111,15.707,1,CMIP5 -2072,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.594313827,-9.1989,-5.1724,-7.05715,-7.18915,1,CMIP5 -2072,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.711312566,19.8991,21.5199,20.68338889,20.6171,1,CMIP5 -2073,tas,temperature,tgav,rcp60,C,Simulated,global,0.755744431,14.8033,16.4146,15.67338333,15.70585,1,CMIP5 -2073,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.676529865,-9.5523,-5.232833333,-7.053605556,-6.94805,1,CMIP5 -2073,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.651949044,19.953,21.377,20.66196111,20.58655,1,CMIP5 -2074,tas,temperature,tgav,rcp60,C,Simulated,global,0.782357446,14.8229,16.49503333,15.68892222,15.7038,1,CMIP5 -2074,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.625128642,-9.4352,-5.1931,-7.142016667,-7.20475,1,CMIP5 -2074,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.694065394,19.9067,21.49003333,20.70045556,20.56605,1,CMIP5 -2075,tas,temperature,tgav,rcp60,C,Simulated,global,0.787162383,14.8538,16.49056667,15.69827778,15.6698,1,CMIP5 -2075,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.68499079,-9.4542,-5.2208,-7.19485,-7.14685,1,CMIP5 -2075,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.703421244,19.9143,21.49096667,20.72264444,20.66005,1,CMIP5 -2076,tas,temperature,tgav,rcp60,C,Simulated,global,0.788368061,14.9079,16.5953,15.70875,15.7058,1,CMIP5 -2076,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.716174917,-9.4952,-4.979833333,-7.090105556,-7.2623,1,CMIP5 -2076,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.677561911,20.0222,21.56426667,20.71352778,20.61135,1,CMIP5 -2077,tas,temperature,tgav,rcp60,C,Simulated,global,0.746645156,15.0304,16.64,15.79001667,15.7709,1,CMIP5 -2077,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.748076482,-9.539,-5.015833333,-7.133672222,-7.2332,1,CMIP5 -2077,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.655480538,20.0889,21.6276,20.822,20.6992,1,CMIP5 -2078,tas,temperature,tgav,rcp60,C,Simulated,global,0.761343896,15.1106,16.68036667,15.90226111,15.88905,1,CMIP5 -2078,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.559924189,-8.6435,-4.8429,-6.724222222,-7.0836,1,CMIP5 -2078,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.663078316,20.14,21.65443333,20.87003889,20.80865,1,CMIP5 -2079,tas,temperature,tgav,rcp60,C,Simulated,global,0.748232204,15.131,16.8169,15.97953889,15.9276,1,CMIP5 -2079,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.699781128,-8.9205,-4.6751,-6.725183333,-6.8771,1,CMIP5 -2079,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.609161462,20.3172,21.6719,20.96393333,20.89345,1,CMIP5 -2080,tas,temperature,tgav,rcp60,C,Simulated,global,0.709183913,15.1058,16.7357,15.88435,15.9557,1,CMIP5 -2080,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.666257339,-8.8782,-4.8415,-6.811366667,-6.86395,1,CMIP5 -2080,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.573749477,20.2668,21.5615,20.86606667,20.8318,1,CMIP5 -2081,tas,temperature,tgav,rcp60,C,Simulated,global,0.844350848,15.0426,16.838925,15.97522083,15.9173,1,CMIP5 -2081,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.685749926,-8.8918,-4.6884,-6.735733333,-6.97165,1,CMIP5 -2081,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.723621992,20.1835,21.796925,20.96042083,20.8932,1,CMIP5 -2082,tas,temperature,tgav,rcp60,C,Simulated,global,0.839494567,14.9848,16.856525,15.98885417,16.05905,1,CMIP5 -2082,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.731330439,-9.1024,-4.6448,-6.624316667,-6.73315,1,CMIP5 -2082,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.705946073,20.3,21.808575,20.9532625,20.8222,1,CMIP5 -2083,tas,temperature,tgav,rcp60,C,Simulated,global,0.86486671,15.0822,16.899,16.01558333,16.06225,1,CMIP5 -2083,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.871083531,-9.1545,-4.464,-6.681866667,-7.04575,1,CMIP5 -2083,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.709169338,20.3065,21.8216,20.99838333,20.90715,1,CMIP5 -2084,tas,temperature,tgav,rcp60,C,Simulated,global,0.822980766,15.1327,16.962,16.01834583,16.0046,1,CMIP5 -2084,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.794575281,-8.9881,-4.5636,-6.700104167,-6.94505,1,CMIP5 -2084,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.67248007,20.3373,21.7061,21.00524167,20.9681,1,CMIP5 -2085,tas,temperature,tgav,rcp60,C,Simulated,global,0.770869233,15.2684,16.8756,16.04587917,16.00525,1,CMIP5 -2085,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.716838191,-8.6091,-4.5995,-6.612166667,-6.8615,1,CMIP5 -2085,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.649068683,20.3201,21.7321,21.01953333,20.96055,1,CMIP5 -2086,tas,temperature,tgav,rcp60,C,Simulated,global,0.848555981,15.1311,16.9782,16.07228333,16.06165,1,CMIP5 -2086,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.783634836,-8.915,-4.2866,-6.417058333,-6.5958,1,CMIP5 -2086,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.707912507,20.2879,21.824425,21.00977083,20.9398,1,CMIP5 -2087,tas,temperature,tgav,rcp60,C,Simulated,global,0.852681933,15.1877,17.022,16.13797778,16.15285,1,CMIP5 -2087,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.738881204,-8.8765,-4.4738,-6.443466667,-6.75345,1,CMIP5 -2087,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.696762604,20.3845,21.8812,21.09591667,21.01615,1,CMIP5 -2088,tas,temperature,tgav,rcp60,C,Simulated,global,0.856593196,15.1993,16.9765,16.14243333,16.2339,1,CMIP5 -2088,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.644587734,-8.6713,-4.441633333,-6.387122222,-6.665,1,CMIP5 -2088,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.704073583,20.3937,21.90933333,21.08913889,20.96785,1,CMIP5 -2089,tas,temperature,tgav,rcp60,C,Simulated,global,0.844836669,15.1438,17.06656667,16.16642778,16.3085,1,CMIP5 -2089,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.921964126,-9.0974,-4.255333333,-6.428705556,-6.4386,1,CMIP5 -2089,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.709415753,20.3838,21.9773,21.12616667,20.99245,1,CMIP5 -2090,tas,temperature,tgav,rcp60,C,Simulated,global,0.82471292,15.2713,17.18023333,16.20873889,16.32215,1,CMIP5 -2090,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.693578531,-8.4349,-4.056133333,-6.235688889,-6.34275,1,CMIP5 -2090,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.699470887,20.3799,22.07123333,21.13535556,21.02075,1,CMIP5 -2091,tas,temperature,tgav,rcp60,C,Simulated,global,0.815187643,15.1954,17.1535,16.29051667,16.40105,1,CMIP5 -2091,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.752577054,-8.603,-4.067166667,-6.208327778,-6.29585,1,CMIP5 -2091,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.661655081,20.4712,22.0408,21.22906667,21.19195,1,CMIP5 -2092,tas,temperature,tgav,rcp60,C,Simulated,global,0.885769385,15.2031,17.1418,16.25123333,16.31975,1,CMIP5 -2092,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.797297747,-8.7386,-4.231133333,-6.314188889,-6.55505,1,CMIP5 -2092,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.729606206,20.4946,22.0527,21.205,21.1403,1,CMIP5 -2093,tas,temperature,tgav,rcp60,C,Simulated,global,0.918493803,15.2457,17.25806667,16.19334444,16.1539,1,CMIP5 -2093,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.674542525,-8.3139,-4.050566667,-6.391744444,-6.85745,1,CMIP5 -2093,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.785010865,20.3941,22.16566667,21.15136111,21.06745,1,CMIP5 -2094,tas,temperature,tgav,rcp60,C,Simulated,global,0.863084052,15.4365,17.2831,16.28731667,16.2248,1,CMIP5 -2094,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.556679794,-8.0558,-3.897633333,-6.092222222,-6.5001,1,CMIP5 -2094,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.750247713,20.3978,22.16116667,21.19996111,21.1557,1,CMIP5 -2095,tas,temperature,tgav,rcp60,C,Simulated,global,0.841983089,15.4775,17.34576667,16.40854444,16.33315,1,CMIP5 -2095,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.75996805,-8.4095,-3.8677,-6.008783333,-6.338,1,CMIP5 -2095,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.687487746,20.6321,22.23146667,21.33014444,21.23125,1,CMIP5 -2096,tas,temperature,tgav,rcp60,C,Simulated,global,0.852575946,15.4041,17.32976667,16.34951111,16.26995,1,CMIP5 -2096,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.802456532,-8.5865,-3.901833333,-6.162522222,-6.42075,1,CMIP5 -2096,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.698273401,20.6048,22.21966667,21.29139444,21.20675,1,CMIP5 -2097,tas,temperature,tgav,rcp60,C,Simulated,global,0.878113672,15.3872,17.2633,16.32528333,16.33405,1,CMIP5 -2097,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.770073838,-8.3472,-4.0211,-6.102777778,-6.52835,1,CMIP5 -2097,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.706294952,20.5251,22.16956667,21.24984444,21.1809,1,CMIP5 -2098,tas,temperature,tgav,rcp60,C,Simulated,global,0.878097315,15.3573,17.3508,16.40220556,16.45415,1,CMIP5 -2098,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.888812042,-8.5207,-3.9792,-6.096061111,-6.2359,1,CMIP5 -2098,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.714025251,20.6248,22.1906,21.34105,21.318,1,CMIP5 -2099,tas,temperature,tgav,rcp60,C,Simulated,global,0.869293459,15.4655,17.39106667,16.42061111,16.4242,1,CMIP5 -2099,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.907594382,-8.4414,-3.8291,-6.09785,-6.4297,1,CMIP5 -2099,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.708336859,20.6273,22.29973333,21.36435556,21.2693,1,CMIP5 -2100,tas,temperature,tgav,rcp60,C,Simulated,global,0.85283518,15.5245,17.40303333,16.42032222,16.37875,1,CMIP5 -2100,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.825724118,-8.1147,-3.728533333,-5.960088889,-6.29785,1,CMIP5 -2100,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.705620247,20.658,22.26983333,21.33333889,21.22835,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp85/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp85/ensemble_mean_model.csv deleted file mode 100644 index d9db0491f..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp85/ensemble_mean_model.csv +++ /dev/null @@ -1,4366 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",15.0207 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",15.1295 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",15.2107 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",15.1682 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",15.1788 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",15.1829 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",15.0633 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",15.1302 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",15.0699 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",15.1419 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",15.1301 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",15.234 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",15.3001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",15.4094 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",15.4027 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",15.2229 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",15.1982 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",15.4587 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",15.4038 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",15.3169 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",15.4259 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",15.505 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",15.5431 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",15.4973 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",15.5519 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",15.4626 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",15.5768 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",15.622 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",15.8002 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",15.8312 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",15.7476 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",15.8308 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",15.9371 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",16.022 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",16.0009 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",15.9748 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",16.0355 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",15.965 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",16.0023 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",16.0852 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",16.177 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",16.1292 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",16.2138 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",16.2575000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",16.3322 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",16.2954 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",16.308 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",16.4819 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",16.5267 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",16.5932 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",16.4923 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",16.548 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",16.6783 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",16.7757 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",16.845 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",16.8088 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",16.9386 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",17.1183 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",17.1428 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",17.1581 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",17.3146 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",17.3423 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",17.1956 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",17.2298 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",17.2833 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",17.3135 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",17.4182 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",17.3958 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",17.2765 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",17.3577 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",17.5382 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",17.5261 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",17.5057 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",17.6221 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",17.6297 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",17.7189 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",17.6915 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",17.7115 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",17.8155 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",17.8282 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",17.792 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",17.9318 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",18.0138 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",18.1653 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",18.1344 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",18.2759 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",18.2706 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",18.257 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",18.3092 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",18.3495 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",18.2697 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",18.3833 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",18.5188 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",18.5321 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",18.589 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2101,"Simulated","C","global",18.6089 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2102,"Simulated","C","global",18.6156 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2103,"Simulated","C","global",18.6417 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2104,"Simulated","C","global",18.7654 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2105,"Simulated","C","global",18.7822 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2106,"Simulated","C","global",19.0244 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2107,"Simulated","C","global",18.9105 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2108,"Simulated","C","global",18.8981 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2109,"Simulated","C","global",18.9069 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2110,"Simulated","C","global",18.9531 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2111,"Simulated","C","global",19.0633 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2112,"Simulated","C","global",19.0842 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2113,"Simulated","C","global",18.9325 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2114,"Simulated","C","global",19.1039 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2115,"Simulated","C","global",19.1134 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2116,"Simulated","C","global",19.0757 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2117,"Simulated","C","global",19.1734 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2118,"Simulated","C","global",19.2993 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2119,"Simulated","C","global",19.3234 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2120,"Simulated","C","global",19.3824 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2121,"Simulated","C","global",19.4218 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2122,"Simulated","C","global",19.476 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2123,"Simulated","C","global",19.436 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2124,"Simulated","C","global",19.5427 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2125,"Simulated","C","global",19.6266 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2126,"Simulated","C","global",19.6339 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2127,"Simulated","C","global",19.7213 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2128,"Simulated","C","global",19.7079 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2129,"Simulated","C","global",19.7392 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2130,"Simulated","C","global",19.8451 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2131,"Simulated","C","global",19.7237 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2132,"Simulated","C","global",19.8288 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2133,"Simulated","C","global",19.8245 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2134,"Simulated","C","global",19.8427 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2135,"Simulated","C","global",19.7632 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2136,"Simulated","C","global",19.8151 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2137,"Simulated","C","global",19.8928 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2138,"Simulated","C","global",19.8861 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2139,"Simulated","C","global",19.9148 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2140,"Simulated","C","global",19.9727 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2141,"Simulated","C","global",19.9656 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2142,"Simulated","C","global",20.0668 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2143,"Simulated","C","global",20.1328 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2144,"Simulated","C","global",20.1177 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2145,"Simulated","C","global",20.08 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2146,"Simulated","C","global",20.3325 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2147,"Simulated","C","global",20.3002 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2148,"Simulated","C","global",20.2362 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2149,"Simulated","C","global",20.2807 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2150,"Simulated","C","global",20.2503 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2151,"Simulated","C","global",20.1941 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2152,"Simulated","C","global",20.3665 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2153,"Simulated","C","global",20.3743 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2154,"Simulated","C","global",20.4386 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2155,"Simulated","C","global",20.5314 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2156,"Simulated","C","global",20.6345 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2157,"Simulated","C","global",20.6612 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2158,"Simulated","C","global",20.5134 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2159,"Simulated","C","global",20.6621 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2160,"Simulated","C","global",20.6795 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2161,"Simulated","C","global",20.7232 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2162,"Simulated","C","global",20.7714 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2163,"Simulated","C","global",20.7229 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2164,"Simulated","C","global",20.741 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2165,"Simulated","C","global",20.7248 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2166,"Simulated","C","global",20.9137 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2167,"Simulated","C","global",20.874 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2168,"Simulated","C","global",20.913 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2169,"Simulated","C","global",21.04 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2170,"Simulated","C","global",20.9867 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2171,"Simulated","C","global",21.0445 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2172,"Simulated","C","global",21.1844 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2173,"Simulated","C","global",21.1776 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2174,"Simulated","C","global",21.049 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2175,"Simulated","C","global",21.1682 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2176,"Simulated","C","global",21.2109 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2177,"Simulated","C","global",21.2798 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2178,"Simulated","C","global",21.2034 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2179,"Simulated","C","global",21.2335 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2180,"Simulated","C","global",21.3064 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2181,"Simulated","C","global",21.4066 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2182,"Simulated","C","global",21.4857 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2183,"Simulated","C","global",21.395 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2184,"Simulated","C","global",21.4273 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2185,"Simulated","C","global",21.3895 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2186,"Simulated","C","global",21.3412 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2187,"Simulated","C","global",21.5518 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2188,"Simulated","C","global",21.5334 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2189,"Simulated","C","global",21.5258 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2190,"Simulated","C","global",21.6175 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2191,"Simulated","C","global",21.6225 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2192,"Simulated","C","global",21.6278 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2193,"Simulated","C","global",21.641 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2194,"Simulated","C","global",21.6561 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2195,"Simulated","C","global",21.6602 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2196,"Simulated","C","global",21.661 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2197,"Simulated","C","global",21.7788 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2198,"Simulated","C","global",21.8533 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2199,"Simulated","C","global",21.7778 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2200,"Simulated","C","global",21.8349 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2201,"Simulated","C","global",21.8662 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2202,"Simulated","C","global",21.8371 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2203,"Simulated","C","global",21.8614 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2204,"Simulated","C","global",21.9049 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2205,"Simulated","C","global",21.8514 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2206,"Simulated","C","global",21.852 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2207,"Simulated","C","global",21.92 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2208,"Simulated","C","global",22.0146 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2209,"Simulated","C","global",22.1181 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2210,"Simulated","C","global",21.9683 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2211,"Simulated","C","global",21.9658 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2212,"Simulated","C","global",22.1042 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2213,"Simulated","C","global",22.1058 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2214,"Simulated","C","global",22.124 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2215,"Simulated","C","global",22.0987 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2216,"Simulated","C","global",22.1488000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2217,"Simulated","C","global",22.1241 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2218,"Simulated","C","global",22.0764 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2219,"Simulated","C","global",22.1376 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2220,"Simulated","C","global",22.208 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2221,"Simulated","C","global",22.1633 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2222,"Simulated","C","global",22.2698 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2223,"Simulated","C","global",22.2827 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2224,"Simulated","C","global",22.2453 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2225,"Simulated","C","global",22.244 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2226,"Simulated","C","global",22.2692 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2227,"Simulated","C","global",22.2131 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2228,"Simulated","C","global",22.2476 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2229,"Simulated","C","global",22.3154 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2230,"Simulated","C","global",22.3613 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2231,"Simulated","C","global",22.3155 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2232,"Simulated","C","global",22.2070000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2233,"Simulated","C","global",22.3355 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2234,"Simulated","C","global",22.4035 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2235,"Simulated","C","global",22.4427 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2236,"Simulated","C","global",22.4783 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2237,"Simulated","C","global",22.3926 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2238,"Simulated","C","global",22.3773 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2239,"Simulated","C","global",22.4753 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2240,"Simulated","C","global",22.475 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2241,"Simulated","C","global",22.577 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2242,"Simulated","C","global",22.5739 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2243,"Simulated","C","global",22.5257 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2244,"Simulated","C","global",22.5021 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2245,"Simulated","C","global",22.4733 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2246,"Simulated","C","global",22.5293 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2247,"Simulated","C","global",22.4576 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2248,"Simulated","C","global",22.5209 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2249,"Simulated","C","global",22.6392 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2250,"Simulated","C","global",22.5178 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2251,"Simulated","C","global",22.5547 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2252,"Simulated","C","global",22.543 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2253,"Simulated","C","global",22.6044 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2254,"Simulated","C","global",22.6271 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2255,"Simulated","C","global",22.6052 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2256,"Simulated","C","global",22.4485 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2257,"Simulated","C","global",22.5732 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2258,"Simulated","C","global",22.5305 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2259,"Simulated","C","global",22.587 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2260,"Simulated","C","global",22.623 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2261,"Simulated","C","global",22.7245 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2262,"Simulated","C","global",22.609 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2263,"Simulated","C","global",22.6747 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2264,"Simulated","C","global",22.6753 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2265,"Simulated","C","global",22.6582 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2266,"Simulated","C","global",22.6691 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2267,"Simulated","C","global",22.6991 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2268,"Simulated","C","global",22.6365 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2269,"Simulated","C","global",22.6197 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2270,"Simulated","C","global",22.563 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2271,"Simulated","C","global",22.691 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2272,"Simulated","C","global",22.7057 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2273,"Simulated","C","global",22.6772 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2274,"Simulated","C","global",22.6692 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2275,"Simulated","C","global",22.7493 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2276,"Simulated","C","global",22.6547 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2277,"Simulated","C","global",22.6626 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2278,"Simulated","C","global",22.6812 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2279,"Simulated","C","global",22.7157 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2280,"Simulated","C","global",22.6524 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2281,"Simulated","C","global",22.6445000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2282,"Simulated","C","global",22.7468 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2283,"Simulated","C","global",22.7109 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2284,"Simulated","C","global",22.7786 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2285,"Simulated","C","global",22.7287 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2286,"Simulated","C","global",22.7602 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2287,"Simulated","C","global",22.8403 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2288,"Simulated","C","global",22.8483 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2289,"Simulated","C","global",22.7806 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2290,"Simulated","C","global",22.9046 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2291,"Simulated","C","global",22.8801 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2292,"Simulated","C","global",22.8558 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2293,"Simulated","C","global",22.8502 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2294,"Simulated","C","global",22.8639 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2295,"Simulated","C","global",22.8718 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2296,"Simulated","C","global",22.8188 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2297,"Simulated","C","global",22.767 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2298,"Simulated","C","global",22.7952 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2299,"Simulated","C","global",22.8363000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2300,"Simulated","C","global",22.8883 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-10.3236 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-10.2464 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-9.79539999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-10.051 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-9.7998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-9.70929999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-9.9588 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-9.96789999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-10.2746 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-10.0934999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-10.1327 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-9.90129999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-9.84739999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-9.5849 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-9.52979999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-10.2714 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-10.1667 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-10.0459 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-9.76900000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-10.339 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-9.87979999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-9.48939999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-9.37049999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-9.72489999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-9.45099999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-9.75899999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-9.44039999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-9.24489999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-9.30509999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-8.71279999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-9.19109999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-9.23139999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-8.82869999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-8.28799999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-8.24279999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-8.44239999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-8.5292 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-8.8304 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-8.81459999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-8.79689999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-8.46319999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-8.20439999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-8.04679999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-8.32139999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-8.55439999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-8.25119999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-8.50549999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-8.2867 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-7.96079999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-7.60999999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-7.84559999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-7.53099999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-7.31969999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-7.30769999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-6.71129999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-6.82369999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-6.80019999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-6.67319999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-6.6909 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-6.483 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-6.23489999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-6.40899999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-6.54809999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-6.48439999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-6.52209999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-6.52889999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-6.46999999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-6.52889999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-7.03979999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-6.84769999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-6.17359999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-6.18079999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-6.25639999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-6.26059999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-6.68739999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-6.56419999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-6.55189999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-6.41929999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-5.93119999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-5.72239999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-6.2559 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-5.6628 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-5.37449999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-5.0915 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-5.2448 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-4.952 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-5.1977 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-5.3125 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-4.95189999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-4.71159999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-5.11719999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-4.71689999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-4.48249999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-4.31759999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-4.55739999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2101,"Simulated","C","HL",-4.54589999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2102,"Simulated","C","HL",-4.37309999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2103,"Simulated","C","HL",-4.49239999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2104,"Simulated","C","HL",-4.42199999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2105,"Simulated","C","HL",-4.38139999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2106,"Simulated","C","HL",-3.88749999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2107,"Simulated","C","HL",-3.97899999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2108,"Simulated","C","HL",-4.04969999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2109,"Simulated","C","HL",-4.12849999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2110,"Simulated","C","HL",-4.01499999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2111,"Simulated","C","HL",-3.9803 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2112,"Simulated","C","HL",-4.11719999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2113,"Simulated","C","HL",-4.25709999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2114,"Simulated","C","HL",-4.0514 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2115,"Simulated","C","HL",-3.93119999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2116,"Simulated","C","HL",-3.6456 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2117,"Simulated","C","HL",-3.90969999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2118,"Simulated","C","HL",-3.59069999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2119,"Simulated","C","HL",-3.72589999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2120,"Simulated","C","HL",-3.65709999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2121,"Simulated","C","HL",-3.35969999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2122,"Simulated","C","HL",-3.3177 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2123,"Simulated","C","HL",-3.04499999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2124,"Simulated","C","HL",-2.71689999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2125,"Simulated","C","HL",-2.7604 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2126,"Simulated","C","HL",-2.66249999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2127,"Simulated","C","HL",-2.47949999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2128,"Simulated","C","HL",-2.7002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2129,"Simulated","C","HL",-2.93039999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2130,"Simulated","C","HL",-2.4599 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2131,"Simulated","C","HL",-2.5675 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2132,"Simulated","C","HL",-2.44099999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2133,"Simulated","C","HL",-2.7448 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2134,"Simulated","C","HL",-2.6968 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2135,"Simulated","C","HL",-3.0077 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2136,"Simulated","C","HL",-2.75629999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2137,"Simulated","C","HL",-2.53489999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2138,"Simulated","C","HL",-2.9325 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2139,"Simulated","C","HL",-2.5634 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2140,"Simulated","C","HL",-2.68379999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2141,"Simulated","C","HL",-2.58519999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2142,"Simulated","C","HL",-2.46299999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2143,"Simulated","C","HL",-2.35389999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2144,"Simulated","C","HL",-2.31319999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2145,"Simulated","C","HL",-2.27259999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2146,"Simulated","C","HL",-1.51159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2147,"Simulated","C","HL",-2.01139999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2148,"Simulated","C","HL",-1.92879999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2149,"Simulated","C","HL",-1.84589999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2150,"Simulated","C","HL",-2.10569999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2151,"Simulated","C","HL",-2.29489999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2152,"Simulated","C","HL",-2.11869999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2153,"Simulated","C","HL",-2.1463 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2154,"Simulated","C","HL",-1.66109999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2155,"Simulated","C","HL",-1.5849 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2156,"Simulated","C","HL",-1.55349999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2157,"Simulated","C","HL",-1.53859999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2158,"Simulated","C","HL",-1.50579999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2159,"Simulated","C","HL",-1.31489999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2160,"Simulated","C","HL",-1.27549999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2161,"Simulated","C","HL",-1.18979999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2162,"Simulated","C","HL",-0.94399999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2163,"Simulated","C","HL",-1.10069999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2164,"Simulated","C","HL",-1.0292 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2165,"Simulated","C","HL",-1.23429999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2166,"Simulated","C","HL",-1.10699999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2167,"Simulated","C","HL",-0.914099999999962 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2168,"Simulated","C","HL",-0.953899999999976 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2169,"Simulated","C","HL",-0.738699999999994 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2170,"Simulated","C","HL",-0.989399999999989 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2171,"Simulated","C","HL",-0.838499999999954 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2172,"Simulated","C","HL",-0.283299999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2173,"Simulated","C","HL",-0.372199999999964 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2174,"Simulated","C","HL",-0.802699999999959 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2175,"Simulated","C","HL",-0.612199999999973 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2176,"Simulated","C","HL",-0.363499999999988 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2177,"Simulated","C","HL",-0.204399999999964 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2178,"Simulated","C","HL",-0.462400000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2179,"Simulated","C","HL",-0.502299999999991 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2180,"Simulated","C","HL",-0.671199999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2181,"Simulated","C","HL",-0.515799999999956 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2182,"Simulated","C","HL",-0.16459999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2183,"Simulated","C","HL",-0.28589999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2184,"Simulated","C","HL",-0.221299999999985 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2185,"Simulated","C","HL",-0.314899999999966 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2186,"Simulated","C","HL",-0.3827 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2187,"Simulated","C","HL",-0.00449999999995043 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2188,"Simulated","C","HL",-0.131599999999992 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2189,"Simulated","C","HL",0.170000000000016 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2190,"Simulated","C","HL",0.218600000000038 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2191,"Simulated","C","HL",0.065400000000011 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2192,"Simulated","C","HL",-0.0115999999999872 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2193,"Simulated","C","HL",0.167700000000025 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2194,"Simulated","C","HL",0.00140000000004648 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2195,"Simulated","C","HL",0.201300000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2196,"Simulated","C","HL",0.0520000000000209 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2197,"Simulated","C","HL",0.29060000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2198,"Simulated","C","HL",0.655200000000036 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2199,"Simulated","C","HL",0.697900000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2200,"Simulated","C","HL",0.482100000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2201,"Simulated","C","HL",0.529100000000028 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2202,"Simulated","C","HL",0.645500000000027 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2203,"Simulated","C","HL",0.71410000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2204,"Simulated","C","HL",0.792900000000031 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2205,"Simulated","C","HL",0.759000000000015 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2206,"Simulated","C","HL",0.921300000000031 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2207,"Simulated","C","HL",0.873800000000017 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2208,"Simulated","C","HL",1.00480000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2209,"Simulated","C","HL",0.993600000000015 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2210,"Simulated","C","HL",0.660400000000038 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2211,"Simulated","C","HL",0.953000000000031 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2212,"Simulated","C","HL",1.02960000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2213,"Simulated","C","HL",1.04900000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2214,"Simulated","C","HL",1.07800000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2215,"Simulated","C","HL",0.944800000000043 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2216,"Simulated","C","HL",1.25790000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2217,"Simulated","C","HL",1.0591 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2218,"Simulated","C","HL",1.05890000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2219,"Simulated","C","HL",1.05790000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2220,"Simulated","C","HL",0.915099999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2221,"Simulated","C","HL",1.03570000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2222,"Simulated","C","HL",1.12170000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2223,"Simulated","C","HL",1.154 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2224,"Simulated","C","HL",0.977400000000046 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2225,"Simulated","C","HL",0.841600000000028 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2226,"Simulated","C","HL",1.15050000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2227,"Simulated","C","HL",1.15860000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2228,"Simulated","C","HL",1.02300000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2229,"Simulated","C","HL",1.04390000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2230,"Simulated","C","HL",1.17830000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2231,"Simulated","C","HL",1.35120000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2232,"Simulated","C","HL",1.21130000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2233,"Simulated","C","HL",1.11990000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2234,"Simulated","C","HL",1.27780000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2235,"Simulated","C","HL",1.27330000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2236,"Simulated","C","HL",1.38580000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2237,"Simulated","C","HL",1.22030000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2238,"Simulated","C","HL",1.05020000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2239,"Simulated","C","HL",1.4006 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2240,"Simulated","C","HL",1.49200000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2241,"Simulated","C","HL",1.66210000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2242,"Simulated","C","HL",1.822 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2243,"Simulated","C","HL",1.84680000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2244,"Simulated","C","HL",1.77480000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2245,"Simulated","C","HL",1.83390000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2246,"Simulated","C","HL",1.62430000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2247,"Simulated","C","HL",1.42860000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2248,"Simulated","C","HL",1.61590000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2249,"Simulated","C","HL",1.73790000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2250,"Simulated","C","HL",1.483 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2251,"Simulated","C","HL",1.59620000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2252,"Simulated","C","HL",1.61720000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2253,"Simulated","C","HL",1.7593 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2254,"Simulated","C","HL",1.72470000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2255,"Simulated","C","HL",1.75800000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2256,"Simulated","C","HL",1.666 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2257,"Simulated","C","HL",1.529 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2258,"Simulated","C","HL",1.64860000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2259,"Simulated","C","HL",1.80950000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2260,"Simulated","C","HL",1.72670000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2261,"Simulated","C","HL",1.84900000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2262,"Simulated","C","HL",1.72450000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2263,"Simulated","C","HL",1.72480000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2264,"Simulated","C","HL",1.91570000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2265,"Simulated","C","HL",1.94050000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2266,"Simulated","C","HL",1.48050000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2267,"Simulated","C","HL",1.50850000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2268,"Simulated","C","HL",1.66150000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2269,"Simulated","C","HL",1.81720000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2270,"Simulated","C","HL",1.75780000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2271,"Simulated","C","HL",1.91360000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2272,"Simulated","C","HL",1.74170000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2273,"Simulated","C","HL",1.77140000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2274,"Simulated","C","HL",1.8141 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2275,"Simulated","C","HL",2.26750000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2276,"Simulated","C","HL",2.1379 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2277,"Simulated","C","HL",1.77080000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2278,"Simulated","C","HL",1.77260000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2279,"Simulated","C","HL",1.79900000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2280,"Simulated","C","HL",1.66840000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2281,"Simulated","C","HL",2.01930000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2282,"Simulated","C","HL",2.04590000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2283,"Simulated","C","HL",1.791 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2284,"Simulated","C","HL",2.07040000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2285,"Simulated","C","HL",1.93040000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2286,"Simulated","C","HL",1.99650000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2287,"Simulated","C","HL",2.08140000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2288,"Simulated","C","HL",1.98560000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2289,"Simulated","C","HL",2.19 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2290,"Simulated","C","HL",2.45230000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2291,"Simulated","C","HL",2.4076 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2292,"Simulated","C","HL",2.12270000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2293,"Simulated","C","HL",2.26130000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2294,"Simulated","C","HL",2.17340000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2295,"Simulated","C","HL",2.2534 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2296,"Simulated","C","HL",2.08070000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2297,"Simulated","C","HL",2.2133 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2298,"Simulated","C","HL",1.94490000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2299,"Simulated","C","HL",1.92650000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2300,"Simulated","C","HL",2.05420000000004 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",20.3123000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",20.4277 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",20.4317 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",20.4337 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",20.394 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",20.3801 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",20.2876 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",20.3704 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",20.3616 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",20.4108 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",20.4047 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",20.482 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",20.5506 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",20.6279 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",20.6083 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",20.5458 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",20.4941 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",20.7838 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",20.6596 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",20.6735 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",20.7095 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",20.7235 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",20.7448 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",20.7634 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",20.7722 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",20.7286 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",20.8001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",20.814 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",21.0419 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",20.9557 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",20.9545 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",21.0635 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",21.1079 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",21.0977 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",21.0627 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",21.0728 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",21.1643 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",21.142 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",21.1838 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",21.2803 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",21.3217 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",21.2097 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",21.2791 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",21.3893 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",21.5282 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",21.4205 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",21.4888 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",21.6533 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",21.6394 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",21.6466 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",21.5737 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",21.5754 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",21.6888 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",21.804 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",21.7633 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",21.743 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",21.895 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",22.0858 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",22.1191 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",22.0941 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",22.2315 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",22.3013 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",22.153 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",22.181 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",22.2536 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",22.2915 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",22.4058 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",22.391 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",22.3535 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",22.4115 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",22.489 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",22.4758 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",22.467 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",22.6086 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",22.7069 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",22.789 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",22.7532 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",22.7498000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",22.7736 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",22.7453 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",22.8129 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",22.858 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",22.897 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",23.0211 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",23.0157 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",23.1256 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",23.1706 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",23.178 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",23.1659 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",23.1644 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",23.1526 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",23.2063 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",23.3213 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",23.3028 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",23.4217 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2101,"Simulated","C","LL",23.4434 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2102,"Simulated","C","LL",23.4154 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2103,"Simulated","C","LL",23.4719 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2104,"Simulated","C","LL",23.6067 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2105,"Simulated","C","LL",23.6185 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2106,"Simulated","C","LL",23.8082 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2107,"Simulated","C","LL",23.6895 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2108,"Simulated","C","LL",23.6893 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2109,"Simulated","C","LL",23.7164 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2110,"Simulated","C","LL",23.7486 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2111,"Simulated","C","LL",23.8745 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2112,"Simulated","C","LL",23.9284 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2113,"Simulated","C","LL",23.7742 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2114,"Simulated","C","LL",23.9384 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2115,"Simulated","C","LL",23.9248 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2116,"Simulated","C","LL",23.8197 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2117,"Simulated","C","LL",23.9928 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2118,"Simulated","C","LL",24.0784 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2119,"Simulated","C","LL",24.1359 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2120,"Simulated","C","LL",24.1927 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2121,"Simulated","C","LL",24.1784 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2122,"Simulated","C","LL",24.2351 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2123,"Simulated","C","LL",24.1298 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2124,"Simulated","C","LL",24.1902 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2125,"Simulated","C","LL",24.3008 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2126,"Simulated","C","LL",24.2891 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2127,"Simulated","C","LL",24.3565 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2128,"Simulated","C","LL",24.3865 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2129,"Simulated","C","LL",24.4723 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2130,"Simulated","C","LL",24.5021 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2131,"Simulated","C","LL",24.3779 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2132,"Simulated","C","LL",24.4785 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2133,"Simulated","C","LL",24.5367 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2134,"Simulated","C","LL",24.5486 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2135,"Simulated","C","LL",24.5175 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2136,"Simulated","C","LL",24.5277 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2137,"Simulated","C","LL",24.5754 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2138,"Simulated","C","LL",24.6504 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2139,"Simulated","C","LL",24.608 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2140,"Simulated","C","LL",24.7031 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2141,"Simulated","C","LL",24.6739 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2142,"Simulated","C","LL",24.7707 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2143,"Simulated","C","LL",24.8278 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2144,"Simulated","C","LL",24.801 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2145,"Simulated","C","LL",24.747 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2146,"Simulated","C","LL",24.8933 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2147,"Simulated","C","LL",24.9586 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2148,"Simulated","C","LL",24.864 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2149,"Simulated","C","LL",24.9004 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2150,"Simulated","C","LL",24.9179 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2151,"Simulated","C","LL",24.8896 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2152,"Simulated","C","LL",25.0612 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2153,"Simulated","C","LL",25.0764 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2154,"Simulated","C","LL",25.0527 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2155,"Simulated","C","LL",25.1491 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2156,"Simulated","C","LL",25.2671 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2157,"Simulated","C","LL",25.2962 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2158,"Simulated","C","LL",25.1107 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2159,"Simulated","C","LL",25.2506 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2160,"Simulated","C","LL",25.2635 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2161,"Simulated","C","LL",25.2984 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2162,"Simulated","C","LL",25.3054 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2163,"Simulated","C","LL",25.2795 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2164,"Simulated","C","LL",25.2864 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2165,"Simulated","C","LL",25.3097 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2166,"Simulated","C","LL",25.5114 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2167,"Simulated","C","LL",25.4231 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2168,"Simulated","C","LL",25.4786 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2169,"Simulated","C","LL",25.5871 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2170,"Simulated","C","LL",25.5751 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2171,"Simulated","C","LL",25.6134 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2172,"Simulated","C","LL",25.6667 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2173,"Simulated","C","LL",25.6769 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2174,"Simulated","C","LL",25.6114 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2175,"Simulated","C","LL",25.7157 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2176,"Simulated","C","LL",25.7154 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2177,"Simulated","C","LL",25.7654 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2178,"Simulated","C","LL",25.727 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2179,"Simulated","C","LL",25.7717 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2180,"Simulated","C","LL",25.8951 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2181,"Simulated","C","LL",25.9837 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2182,"Simulated","C","LL",26.006 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2183,"Simulated","C","LL",25.9218 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2184,"Simulated","C","LL",25.9472 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2185,"Simulated","C","LL",25.9212 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2186,"Simulated","C","LL",25.8769 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2187,"Simulated","C","LL",26.0525 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2188,"Simulated","C","LL",26.0568 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2189,"Simulated","C","LL",25.9846 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2190,"Simulated","C","LL",26.0853 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2191,"Simulated","C","LL",26.1234 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2192,"Simulated","C","LL",26.1458 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2193,"Simulated","C","LL",26.1244 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2194,"Simulated","C","LL",26.1773 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2195,"Simulated","C","LL",26.1406 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2196,"Simulated","C","LL",26.1727 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2197,"Simulated","C","LL",26.2653 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2198,"Simulated","C","LL",26.2792 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2199,"Simulated","C","LL",26.179 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2200,"Simulated","C","LL",26.2931 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2201,"Simulated","C","LL",26.3212 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2202,"Simulated","C","LL",26.2617 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2203,"Simulated","C","LL",26.2767 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2204,"Simulated","C","LL",26.3128 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2205,"Simulated","C","LL",26.2553 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2206,"Simulated","C","LL",26.2221 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2207,"Simulated","C","LL",26.3142 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2208,"Simulated","C","LL",26.4012 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2209,"Simulated","C","LL",26.5287 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2210,"Simulated","C","LL",26.4171 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2211,"Simulated","C","LL",26.353 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2212,"Simulated","C","LL",26.5044 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2213,"Simulated","C","LL",26.5022 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2214,"Simulated","C","LL",26.5182 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2215,"Simulated","C","LL",26.5154 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2216,"Simulated","C","LL",26.5106 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2217,"Simulated","C","LL",26.5223 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2218,"Simulated","C","LL",26.4646 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2219,"Simulated","C","LL",26.5389 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2220,"Simulated","C","LL",26.6537 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2221,"Simulated","C","LL",26.5745 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2222,"Simulated","C","LL",26.6853 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2223,"Simulated","C","LL",26.6941 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2224,"Simulated","C","LL",26.6859 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2225,"Simulated","C","LL",26.7125 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2226,"Simulated","C","LL",26.6785 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2227,"Simulated","C","LL",26.6091 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2228,"Simulated","C","LL",26.679 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2229,"Simulated","C","LL",26.7566 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2230,"Simulated","C","LL",26.784 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2231,"Simulated","C","LL",26.6926 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2232,"Simulated","C","LL",26.5907 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2233,"Simulated","C","LL",26.7651 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2234,"Simulated","C","LL",26.8143 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2235,"Simulated","C","LL",26.8627 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2236,"Simulated","C","LL",26.8822 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2237,"Simulated","C","LL",26.8131 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2238,"Simulated","C","LL",26.8301 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2239,"Simulated","C","LL",26.8755 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2240,"Simulated","C","LL",26.856 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2241,"Simulated","C","LL",26.9438 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2242,"Simulated","C","LL",26.9066 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2243,"Simulated","C","LL",26.8433 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2244,"Simulated","C","LL",26.8297 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2245,"Simulated","C","LL",26.7826 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2246,"Simulated","C","LL",26.8941 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2247,"Simulated","C","LL",26.8482 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2248,"Simulated","C","LL",26.8856 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2249,"Simulated","C","LL",27.0032 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2250,"Simulated","C","LL",26.9096 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2251,"Simulated","C","LL",26.9306 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2252,"Simulated","C","LL",26.9121 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2253,"Simulated","C","LL",26.9566 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2254,"Simulated","C","LL",26.9913 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2255,"Simulated","C","LL",26.9578 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2256,"Simulated","C","LL",26.7877 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2257,"Simulated","C","LL",26.967 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2258,"Simulated","C","LL",26.8904 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2259,"Simulated","C","LL",26.9251 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2260,"Simulated","C","LL",26.9859 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2261,"Simulated","C","LL",27.0831 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2262,"Simulated","C","LL",26.9695 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2263,"Simulated","C","LL",27.0488 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2264,"Simulated","C","LL",27.0097 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2265,"Simulated","C","LL",26.9838 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2266,"Simulated","C","LL",27.0931 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2267,"Simulated","C","LL",27.1235 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2268,"Simulated","C","LL",27.0159 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2269,"Simulated","C","LL",26.963 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2270,"Simulated","C","LL",26.9069 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2271,"Simulated","C","LL",27.0291 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2272,"Simulated","C","LL",27.0828 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2273,"Simulated","C","LL",27.0421 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2274,"Simulated","C","LL",27.0235 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2275,"Simulated","C","LL",27.0256 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2276,"Simulated","C","LL",26.9384 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2277,"Simulated","C","LL",27.0246 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2278,"Simulated","C","LL",27.0467 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2279,"Simulated","C","LL",27.0829 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2280,"Simulated","C","LL",27.0336 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2281,"Simulated","C","LL",26.9508 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2282,"Simulated","C","LL",27.0689 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2283,"Simulated","C","LL",27.0787 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2284,"Simulated","C","LL",27.1022 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2285,"Simulated","C","LL",27.0711 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2286,"Simulated","C","LL",27.0954 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2287,"Simulated","C","LL",27.1745 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2288,"Simulated","C","LL",27.2042 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2289,"Simulated","C","LL",27.0796 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2290,"Simulated","C","LL",27.1748 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2291,"Simulated","C","LL",27.1546 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2292,"Simulated","C","LL",27.1846 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2293,"Simulated","C","LL",27.1489 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2294,"Simulated","C","LL",27.1838 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2295,"Simulated","C","LL",27.1767 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2296,"Simulated","C","LL",27.1487 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2297,"Simulated","C","LL",27.0584 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2298,"Simulated","C","LL",27.1486 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2299,"Simulated","C","LL",27.202 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2300,"Simulated","C","LL",27.2382 -"CanESM2","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.92522 -"CanESM2","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",14.91342 -"CanESM2","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",14.9243 -"CanESM2","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",15.0395 -"CanESM2","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",15.07086 -"CanESM2","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",15.04616 -"CanESM2","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",15.0722 -"CanESM2","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",15.12272 -"CanESM2","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",15.15614 -"CanESM2","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",15.2482 -"CanESM2","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",15.27766 -"CanESM2","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",15.23208 -"CanESM2","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",15.2618 -"CanESM2","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",15.36386 -"CanESM2","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",15.38158 -"CanESM2","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",15.39848 -"CanESM2","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",15.52448 -"CanESM2","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",15.54526 -"CanESM2","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",15.59688 -"CanESM2","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",15.60614 -"CanESM2","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",15.6213 -"CanESM2","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",15.78436 -"CanESM2","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",15.7436 -"CanESM2","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",15.7435 -"CanESM2","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",15.80408 -"CanESM2","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",15.8363 -"CanESM2","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",15.99066 -"CanESM2","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",15.93398 -"CanESM2","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",15.94178 -"CanESM2","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",15.9791 -"CanESM2","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",15.9981 -"CanESM2","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",16.137 -"CanESM2","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",16.1379 -"CanESM2","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",16.16506 -"CanESM2","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",16.23586 -"CanESM2","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",16.25276 -"CanESM2","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",16.36444 -"CanESM2","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",16.41768 -"CanESM2","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",16.5099 -"CanESM2","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",16.4892 -"CanESM2","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",16.52766 -"CanESM2","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",16.6611 -"CanESM2","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",16.6767 -"CanESM2","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",16.6917 -"CanESM2","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",16.7989 -"CanESM2","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",16.88592 -"CanESM2","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",16.82604 -"CanESM2","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",16.81074 -"CanESM2","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",16.92226 -"CanESM2","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",17.03604 -"CanESM2","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",17.01862 -"CanESM2","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",17.09418 -"CanESM2","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",17.19916 -"CanESM2","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",17.2552 -"CanESM2","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",17.29774 -"CanESM2","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",17.2953 -"CanESM2","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",17.46632 -"CanESM2","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",17.47304 -"CanESM2","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",17.52136 -"CanESM2","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",17.5213 -"CanESM2","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",17.55382 -"CanESM2","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",17.68086 -"CanESM2","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",17.73024 -"CanESM2","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",17.72206 -"CanESM2","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",17.78648 -"CanESM2","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",17.85268 -"CanESM2","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",17.9122 -"CanESM2","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",17.94464 -"CanESM2","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",18.0106 -"CanESM2","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",18.10782 -"CanESM2","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",18.17624 -"CanESM2","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",18.17648 -"CanESM2","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",18.27032 -"CanESM2","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",18.42962 -"CanESM2","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",18.40174 -"CanESM2","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",18.40682 -"CanESM2","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",18.41054 -"CanESM2","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",18.56948 -"CanESM2","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",18.63472 -"CanESM2","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",18.6052 -"CanESM2","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",18.68192 -"CanESM2","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",18.81518 -"CanESM2","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",18.81132 -"CanESM2","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",18.92322 -"CanESM2","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",18.90958 -"CanESM2","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",18.998 -"CanESM2","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",19.07014 -"CanESM2","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",19.19328 -"CanESM2","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",19.19684 -"CanESM2","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",19.22524 -"CanESM2","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",19.22604 -"CanESM2","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",19.36578 -"CanESM2","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",19.43854 -"CanESM2","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",19.50066 -"CanESM2","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",19.5398 -"CanESM2","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-10.13692 -"CanESM2","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-10.25482 -"CanESM2","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-10.19436 -"CanESM2","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-9.94097999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-9.93162 -"CanESM2","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-9.97823999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-9.86435999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-9.86987999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-9.94389999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-9.7275 -"CanESM2","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-9.65567999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-9.71815999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-9.60647999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-9.63925999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-9.64055999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-9.44137999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-9.22711999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-9.25545999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-9.07661999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-9.08383999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-9.34731999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-8.90573999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-9.02027999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-8.99311999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-8.88509999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-8.98731999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-8.68051999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-8.67143999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-8.56683999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-8.60337999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-8.71471999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-8.44445999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-8.51641999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-8.39785999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-8.30789999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-8.32097999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-7.96423999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-7.98943999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-8.00373999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-7.80839999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-7.88725999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-7.78739999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-7.72551999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-7.72155999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-7.45549999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-7.35803999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-7.27647999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-7.37415999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-7.25751999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-7.18979999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-7.14155999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-7.06977999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-6.91747999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-6.93145999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-6.76967999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-6.81793999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-6.47449999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-6.51527999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-6.41671999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-6.44925999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-6.44815999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-6.21249999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-6.18747999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-6.12697999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-6.01787999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-5.95351999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-5.86453999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-5.71827999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-5.81245999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-5.60199999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-5.70589999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-5.60957999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-5.47351999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-5.17497999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-5.25669999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-5.03767999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-5.06149999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-4.89345999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-4.87713999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-4.87701999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-4.71329999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-4.61467999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-4.67141999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-4.50979999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-4.39191999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-4.26244 -"CanESM2","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-4.18401999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-4.00997999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-3.95241999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-3.92133999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-3.93693999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-3.77631999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-3.69133999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-3.55849999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-3.55599999999997 -"CanESM2","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",20.15792 -"CanESM2","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",20.16824 -"CanESM2","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",20.16876 -"CanESM2","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",20.25512 -"CanESM2","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",20.2911 -"CanESM2","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",20.27098 -"CanESM2","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",20.27866 -"CanESM2","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",20.34088 -"CanESM2","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",20.39676 -"CanESM2","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",20.46284 -"CanESM2","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",20.48344 -"CanESM2","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",20.44144 -"CanESM2","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",20.45398 -"CanESM2","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",20.58422 -"CanESM2","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",20.60592 -"CanESM2","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",20.5848 -"CanESM2","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",20.6923 -"CanESM2","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",20.72336 -"CanESM2","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",20.74842 -"CanESM2","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",20.76116 -"CanESM2","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",20.83448 -"CanESM2","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",20.93938 -"CanESM2","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",20.91404 -"CanESM2","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",20.90822 -"CanESM2","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",20.95892 -"CanESM2","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",21.01916 -"CanESM2","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",21.1417 -"CanESM2","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",21.07132 -"CanESM2","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",21.05888 -"CanESM2","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",21.11164 -"CanESM2","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",21.15786 -"CanESM2","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",21.26934 -"CanESM2","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",21.28544 -"CanESM2","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",21.2935 -"CanESM2","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",21.36034 -"CanESM2","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",21.3835 -"CanESM2","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",21.44396 -"CanESM2","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",21.5136 -"CanESM2","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",21.62808 -"CanESM2","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",21.5623 -"CanESM2","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",21.62522 -"CanESM2","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",21.76566 -"CanESM2","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",21.77162 -"CanESM2","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",21.78892 -"CanESM2","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",21.86294 -"CanESM2","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",21.9478 -"CanESM2","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",21.85836 -"CanESM2","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",21.8603 -"CanESM2","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",21.97072 -"CanESM2","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",22.09412 -"CanESM2","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",22.06296 -"CanESM2","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",22.13932 -"CanESM2","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",22.23446 -"CanESM2","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",22.3051 -"CanESM2","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",22.32276 -"CanESM2","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",22.32988 -"CanESM2","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",22.4649 -"CanESM2","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",22.48156 -"CanESM2","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",22.51938 -"CanESM2","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",22.52608 -"CanESM2","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",22.56516 -"CanESM2","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",22.66952 -"CanESM2","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",22.72398 -"CanESM2","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",22.70148 -"CanESM2","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",22.75656 -"CanESM2","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",22.82314 -"CanESM2","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",22.87652 -"CanESM2","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",22.88516 -"CanESM2","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",22.98456 -"CanESM2","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",23.05814 -"CanESM2","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",23.16256 -"CanESM2","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",23.14274 -"CanESM2","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",23.2278 -"CanESM2","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",23.35802 -"CanESM2","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",23.34136 -"CanESM2","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",23.30176 -"CanESM2","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",23.31126 -"CanESM2","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",23.46826 -"CanESM2","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",23.54376 -"CanESM2","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",23.50806 -"CanESM2","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",23.56662 -"CanESM2","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",23.70708 -"CanESM2","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",23.71428 -"CanESM2","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",23.81578 -"CanESM2","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",23.77466 -"CanESM2","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",23.85454 -"CanESM2","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",23.92536 -"CanESM2","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",24.03782 -"CanESM2","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",24.03016 -"CanESM2","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",24.05796 -"CanESM2","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",24.06222 -"CanESM2","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",24.19762 -"CanESM2","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",24.26778 -"CanESM2","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",24.31516 -"CanESM2","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",24.36196 -"CESM1-BGC","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.6755 -"CESM1-BGC","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",14.6508 -"CESM1-BGC","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",14.7783 -"CESM1-BGC","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",14.9065000000001 -"CESM1-BGC","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",14.8122 -"CESM1-BGC","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",14.8686 -"CESM1-BGC","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",14.7795 -"CESM1-BGC","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",14.7041 -"CESM1-BGC","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",14.8438 -"CESM1-BGC","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",14.9548 -"CESM1-BGC","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.9076 -"CESM1-BGC","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.9559 -"CESM1-BGC","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",15.0644 -"CESM1-BGC","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",15.0979 -"CESM1-BGC","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",14.962 -"CESM1-BGC","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",15.1283 -"CESM1-BGC","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",15.0479 -"CESM1-BGC","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",14.926 -"CESM1-BGC","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",15.0378 -"CESM1-BGC","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",15.0548 -"CESM1-BGC","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",15.1095 -"CESM1-BGC","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",15.3491 -"CESM1-BGC","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",15.4082 -"CESM1-BGC","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",15.2052 -"CESM1-BGC","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",15.3297 -"CESM1-BGC","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",15.4183 -"CESM1-BGC","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",15.3108 -"CESM1-BGC","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",15.4627 -"CESM1-BGC","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",15.6534 -"CESM1-BGC","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",15.511 -"CESM1-BGC","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",15.511 -"CESM1-BGC","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",15.5672 -"CESM1-BGC","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",15.5992 -"CESM1-BGC","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",15.7626 -"CESM1-BGC","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",15.7748 -"CESM1-BGC","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",15.7135 -"CESM1-BGC","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",15.6993000000001 -"CESM1-BGC","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",15.7274 -"CESM1-BGC","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",15.8513 -"CESM1-BGC","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",15.9767000000001 -"CESM1-BGC","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",15.8507 -"CESM1-BGC","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",15.7835 -"CESM1-BGC","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",15.8595 -"CESM1-BGC","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",16.0676 -"CESM1-BGC","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",16.0861 -"CESM1-BGC","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",15.9898 -"CESM1-BGC","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",16.0357 -"CESM1-BGC","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",16.213 -"CESM1-BGC","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",16.274 -"CESM1-BGC","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",16.3128 -"CESM1-BGC","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",16.2741 -"CESM1-BGC","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",16.4709 -"CESM1-BGC","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",16.5329 -"CESM1-BGC","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",16.4274 -"CESM1-BGC","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",16.5071 -"CESM1-BGC","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",16.5166 -"CESM1-BGC","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",16.5474 -"CESM1-BGC","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",16.581 -"CESM1-BGC","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",16.6448 -"CESM1-BGC","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",16.8369 -"CESM1-BGC","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",16.8635 -"CESM1-BGC","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",16.7745 -"CESM1-BGC","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",16.7596 -"CESM1-BGC","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",16.8654 -"CESM1-BGC","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",16.9852 -"CESM1-BGC","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",17.0579 -"CESM1-BGC","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",17.0237 -"CESM1-BGC","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",17.0976 -"CESM1-BGC","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",17.1266 -"CESM1-BGC","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",17.2443 -"CESM1-BGC","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",17.1383 -"CESM1-BGC","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",17.2158 -"CESM1-BGC","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",17.3271 -"CESM1-BGC","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",17.3182 -"CESM1-BGC","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",17.5354 -"CESM1-BGC","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",17.5909 -"CESM1-BGC","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",17.6067 -"CESM1-BGC","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",17.5421 -"CESM1-BGC","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",17.5132 -"CESM1-BGC","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",17.6199 -"CESM1-BGC","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",17.6594 -"CESM1-BGC","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",17.8012 -"CESM1-BGC","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",17.8745 -"CESM1-BGC","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",17.8278 -"CESM1-BGC","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",17.8286 -"CESM1-BGC","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",17.9977 -"CESM1-BGC","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",18.0616 -"CESM1-BGC","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",17.9844000000001 -"CESM1-BGC","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",18.0034 -"CESM1-BGC","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",18.1289 -"CESM1-BGC","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",18.1724 -"CESM1-BGC","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",18.1344 -"CESM1-BGC","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",18.1884 -"CESM1-BGC","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",18.2358 -"CESM1-BGC","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",18.3124 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-10.0258 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-9.7063 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-9.74849999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-9.255 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-9.49639999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-9.58359999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-9.73789999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-9.92379999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-9.41759999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-9.31689999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-9.45939999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-9.0745 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-9.09639999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-8.93349999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-9.45919999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-9.26589999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-9.58429999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-9.55129999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-9.31979999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-9.51139999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-9.19989999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-8.75309999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-8.81299999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-9.0378 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-9.07689999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-8.79559999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-9.26419999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-8.78909999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-8.48379999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-8.6902 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-8.57589999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-8.31349999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-8.5378 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-7.99079999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-8.07259999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-8.22749999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-8.26159999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-8.43119999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-8.23239999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-7.98429999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-8.12099999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-8.17409999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-8.15439999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-7.76839999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-7.84649999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-8.0949 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-7.8374 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-7.34589999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-7.32759999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-7.16059999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-7.3372 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-7.50739999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-7.07679999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-7.01939999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-6.79749999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-7.03709999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-6.99189999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-6.76939999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-6.57219999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-6.20759999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-6.31319999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-6.4957 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-6.7373 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-6.56059999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-6.1026 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-6.30359999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-6.40029999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-6.21949999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-5.94 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-5.94579999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-5.83519999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-5.9776 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-5.70189999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-5.8141 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-5.36199999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-5.47589999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-5.55579999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-5.6635 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-5.39329999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-5.57569999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-5.39879999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-5.02759999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-4.76759999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-4.86019999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-4.82489999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-4.49899999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-4.55439999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-4.40349999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-4.5453 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-4.61839999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-4.75689999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-4.5831 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-4.41269999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-4.4948 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-4.2921 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",20.2563 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",20.1538 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",20.3197 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",20.3654 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",20.3043 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",20.3931 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",20.3187 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",20.2682 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",20.3251 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",20.4385 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",20.4129 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",20.3851 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",20.5231 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",20.5274 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",20.4794 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",20.6396 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",20.6131 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",20.4562 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",20.5409 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",20.605 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",20.6017000000001 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",20.7945 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",20.8806 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",20.6824 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",20.8439 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",20.889 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",20.8631 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",20.942 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",21.1067 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",20.9788 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",20.9529 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",20.9626 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",21.0525 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",21.1293 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",21.1627 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",21.1225 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",21.1128 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",21.1856 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",21.2925 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",21.3902 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",21.2667 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",21.1963 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",21.285 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",21.4529 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",21.4932 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",21.4313 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",21.4294 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",21.5357 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",21.6064 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",21.6161 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",21.6086 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",21.8883 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",21.867 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",21.7248 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",21.7723 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",21.8381 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",21.8656 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",21.8565 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",21.8902 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",22.0434 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",22.0998 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",22.0319 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",22.0683 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",22.158 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",22.2014 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",22.3359 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",22.3159 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",22.3656 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",22.338 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",22.4836 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",22.3287 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",22.4559 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",22.53 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",22.5446 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",22.7086 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",22.8024 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",22.8398 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",22.7849000000001 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",22.6885 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",22.8605 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",22.869 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",22.9589 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",22.99 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",22.9537 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",22.9467 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",23.0804 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",23.1713 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",23.0425 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",23.0978 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",23.2682 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",23.3529 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",23.2669 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",23.2946 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",23.3713 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",23.4194 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.0578 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",13.9753 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",14.0936 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",14.1079 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",14.1467 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",14.0873 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",14.117 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",14.2129 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",14.1759 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",14.3623 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.2739 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.1134 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",14.1326 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",14.1823 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",14.0956 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",14.2503 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",14.3803 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",14.2514 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",14.33 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",14.5287 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",14.3694 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",14.5335 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",14.7319 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",14.4885 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",14.3025 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",14.605 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",14.6528 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",14.6165 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",14.6389 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",14.5893 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",14.7682 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",14.8105 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",14.7194 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",14.7313 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",14.8621 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",14.662 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",14.7132 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",14.8839 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",14.9984 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",14.9785 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",14.9319 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",14.9392 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",14.9894 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",15.092 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",15.1771 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",15.0815 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",15.1838 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",15.2019 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",15.0643 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",15.2137 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",15.3938 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",15.3644 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",15.2332 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",15.2969000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",15.4619 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",15.6393 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",15.289 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",15.4838 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",15.5785 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",15.5362 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",15.6153 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",15.7226 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",15.8622 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",15.9069 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",15.5978 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",15.7995 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",15.9425 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",16.0262 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",15.9866 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",15.9676 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",16.0878 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",16.0291 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",16.1246 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",16.3528 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",16.3584 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",16.208 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",16.2004 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",16.308 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",16.2586 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",16.3538 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",16.529 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",16.6051 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",16.6482 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",16.6311 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",16.7132 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",16.6899 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",16.739 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",16.7578 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",16.8649 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",16.9195 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",17.0534 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",16.897 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",16.88 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",17.0376 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",16.9229 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-8.56099999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-8.86009999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-8.67439999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-8.74879999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-8.59089999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-8.63349999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-8.64659999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-8.61809999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-8.7672 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-7.94159999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-8.65719999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-8.89209999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-9.00959999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-8.77769999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-8.66719999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-8.49179999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-8.20709999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-8.65209999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-8.5147 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-8.07529999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-8.30429999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-8.13029999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-8.20729999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-8.00149999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-8.29359999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-8.072 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-7.81629999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-7.6053 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-7.57209999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-8.21449999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-7.80929999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-7.505 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-7.87479999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-7.90569999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-7.59219999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-8.29379999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-8.18359999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-8.22499999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-7.57029999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-7.7167 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-7.52699999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-7.3836 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-7.70999999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-7.57979999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-7.33599999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-7.4128 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-7.24019999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-7.14579999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-7.55509999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-7.31739999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-6.97989999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-6.78809999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-7.17079999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-7.49629999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-7.01859999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-6.7448 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-7.3725 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-7.28789999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-7.04640000000001 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-7.10089999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-6.74869999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-6.5677 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-6.6669 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-6.30119999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-7.06950000000001 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-6.61829999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-6.58319999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-6.45429999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-6.24119999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-6.12979999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-5.8888 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-6.1103 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-6.19479999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-5.85890000000001 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-6.05679999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-6.14819999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-6.0292 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-6.24879999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-6.3818 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-5.98469999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-5.53149999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-5.30039999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-5.23819999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-5.35309999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-5.06779999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-5.43579999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-5.31959999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-5.46719999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-5.53369999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-5.17059999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-4.95119999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-4.95329999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-5.08769999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-5.18859999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-5.11249999999995 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",19.1854 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",19.1521 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",19.2551 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",19.2895 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",19.3013 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",19.2381 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",19.2774 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",19.3887 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",19.3771 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",19.4186 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",19.4723 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",19.3287 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",19.3789 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",19.3873 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",19.256 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",19.4059 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",19.5008 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",19.4436 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",19.5089 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",19.653 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",19.5095 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",19.6714 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",19.9322 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",19.587 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",19.4251 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",19.7459 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",19.7465 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",19.6541 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",19.6741 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",19.7589 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",19.8865 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",19.8694 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",19.8415 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",19.863 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",19.9525 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",19.8661 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",19.9039 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",20.1227 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",20.1147 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",20.1234 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",20.0233 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",19.9998000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",20.1353 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",20.2316 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",20.2807 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",20.181 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",20.2673 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",20.2682 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",20.1921 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",20.3215 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",20.4659 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",20.3864 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",20.3121 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",20.4641 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",20.5582 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",20.7138 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",20.4264 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",20.6461 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",20.7075 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",20.668 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",20.6852 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",20.7758 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",20.9695 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",20.9415 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",20.7364 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",20.8816 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",21.0491 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",21.1226 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",21.0256 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",20.977 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",21.0699 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",21.0481 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",21.1843 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",21.3882 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",21.4399 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",21.2761 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",21.2398 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",21.4216 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",21.3912 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",21.4179 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",21.5301 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",21.571 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",21.6098 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",21.6149 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",21.6509 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",21.7058 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",21.7397 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",21.7962 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",21.9426 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",21.9273 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",22.0418 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",21.8504 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",21.8601 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",22.0762 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",21.9183 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2005,"Simulated","C","global",12.37105 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.35405 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",14.3638 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",14.47025 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",14.503625 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",14.560325 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",14.560375 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",14.536325 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",14.59935 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",14.6498 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",14.709025 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.78585 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.8042 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",14.8126 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",14.8481 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",14.920325 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",14.955725 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",14.9696 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",15.02985 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",14.950375 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",15.0238 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",15.110975 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",15.156425 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",15.185875 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",15.279475 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",15.31815 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",15.29035 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",15.36095 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",15.3934 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",15.422475 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",15.492075 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",15.55365 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",15.6141 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",15.694725 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",15.727875 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",15.738675 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",15.765925 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",15.749775 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",15.855575 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",15.892225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",15.994525 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",16.037825 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",16.128 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",16.196125 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",16.206225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",16.334425 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",16.358725 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",16.41225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",16.4447 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",16.545525 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",16.594475 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",16.6642 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",16.77385 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",16.869825 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",16.994175 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",17.01285 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",16.97225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",16.97375 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",16.99565 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",17.014975 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",17.127475 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",17.236 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",17.3175 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",17.41965 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",17.443675 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",17.524625 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",17.54595 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",17.577975 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",17.664725 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",17.682725 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",17.715875 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",17.82695 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",17.93205 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",18.0451 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",18.0816 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",18.195225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",18.217 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",18.2386 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",18.233675 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",18.2603 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",18.3044 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",18.48395 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",18.523575 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",18.5995 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",18.59895 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",18.692825 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",18.81845 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",18.805225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",18.881 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",18.846775 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",18.900125 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",18.902 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",19.0906 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",19.1139 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",19.1729 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",19.15625 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2101,"Simulated","C","global",19.2548 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2102,"Simulated","C","global",19.3068 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2103,"Simulated","C","global",19.2332 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2104,"Simulated","C","global",19.1872 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2105,"Simulated","C","global",19.3369 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2106,"Simulated","C","global",19.4731 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2107,"Simulated","C","global",19.6104 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2108,"Simulated","C","global",19.8106 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2109,"Simulated","C","global",19.8551 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2110,"Simulated","C","global",19.8607 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2111,"Simulated","C","global",19.8188 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2112,"Simulated","C","global",19.8593 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2113,"Simulated","C","global",19.8259 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2114,"Simulated","C","global",19.8484 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2115,"Simulated","C","global",20.1199 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2116,"Simulated","C","global",20.1219 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2117,"Simulated","C","global",20.2127 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2118,"Simulated","C","global",20.1369 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2119,"Simulated","C","global",20.2451 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2120,"Simulated","C","global",20.3301 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2121,"Simulated","C","global",20.2164 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2122,"Simulated","C","global",20.3228 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2123,"Simulated","C","global",20.3744 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2124,"Simulated","C","global",20.4744 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2125,"Simulated","C","global",20.5867 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2126,"Simulated","C","global",20.521 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2127,"Simulated","C","global",20.648 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2128,"Simulated","C","global",20.7367 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2129,"Simulated","C","global",20.6311 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2130,"Simulated","C","global",20.6593 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2131,"Simulated","C","global",20.7866 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2132,"Simulated","C","global",20.8612 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2133,"Simulated","C","global",20.9357 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2134,"Simulated","C","global",21.0639 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2135,"Simulated","C","global",21.1613 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2136,"Simulated","C","global",21.2483 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2137,"Simulated","C","global",21.2669 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2138,"Simulated","C","global",21.2827 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2139,"Simulated","C","global",21.3795 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2140,"Simulated","C","global",21.3216 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2141,"Simulated","C","global",21.5185 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2142,"Simulated","C","global",21.4276 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2143,"Simulated","C","global",21.4841 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2144,"Simulated","C","global",21.4536 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2145,"Simulated","C","global",21.4655 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2146,"Simulated","C","global",21.5373 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2147,"Simulated","C","global",21.5506 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2148,"Simulated","C","global",21.6345 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2149,"Simulated","C","global",21.6189 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2150,"Simulated","C","global",21.6262 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2151,"Simulated","C","global",21.5864 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2152,"Simulated","C","global",21.5913 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2153,"Simulated","C","global",21.6719000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2154,"Simulated","C","global",21.7542 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2155,"Simulated","C","global",21.6986 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2156,"Simulated","C","global",21.7087 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2157,"Simulated","C","global",21.742 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2158,"Simulated","C","global",21.889 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2159,"Simulated","C","global",21.993 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2160,"Simulated","C","global",22.1144 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2161,"Simulated","C","global",22.1123 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2162,"Simulated","C","global",22.2065 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2163,"Simulated","C","global",22.187 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2164,"Simulated","C","global",22.0877 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2165,"Simulated","C","global",22.1734 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2166,"Simulated","C","global",22.3244 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2167,"Simulated","C","global",22.3187 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2168,"Simulated","C","global",22.3804 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2169,"Simulated","C","global",22.4953 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2170,"Simulated","C","global",22.4544 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2171,"Simulated","C","global",22.6399 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2172,"Simulated","C","global",22.7243 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2173,"Simulated","C","global",22.855 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2174,"Simulated","C","global",22.825 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2175,"Simulated","C","global",22.8687 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2176,"Simulated","C","global",22.818 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2177,"Simulated","C","global",22.7223 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2178,"Simulated","C","global",22.7962 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2179,"Simulated","C","global",22.6971 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2180,"Simulated","C","global",22.7399 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2181,"Simulated","C","global",22.8534 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2182,"Simulated","C","global",22.9392 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2183,"Simulated","C","global",22.9471 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2184,"Simulated","C","global",23.0812 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2185,"Simulated","C","global",23.0916 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2186,"Simulated","C","global",23.1815 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2187,"Simulated","C","global",23.1433 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2188,"Simulated","C","global",22.99 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2189,"Simulated","C","global",23.0723 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2190,"Simulated","C","global",23.1841 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2191,"Simulated","C","global",23.2493 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2192,"Simulated","C","global",23.2242 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2193,"Simulated","C","global",23.1161 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2194,"Simulated","C","global",23.235 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2195,"Simulated","C","global",23.3131 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2196,"Simulated","C","global",23.3178 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2197,"Simulated","C","global",23.3403 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2198,"Simulated","C","global",23.3149 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2199,"Simulated","C","global",23.335 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2200,"Simulated","C","global",23.3504 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2201,"Simulated","C","global",23.4814 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2202,"Simulated","C","global",23.623 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2203,"Simulated","C","global",23.5726 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2204,"Simulated","C","global",23.6093 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2205,"Simulated","C","global",23.603 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2206,"Simulated","C","global",23.7112 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2207,"Simulated","C","global",23.7106 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2208,"Simulated","C","global",23.7438 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2209,"Simulated","C","global",23.7775 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2210,"Simulated","C","global",23.8329 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2211,"Simulated","C","global",23.9002 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2212,"Simulated","C","global",23.7685 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2213,"Simulated","C","global",23.7761 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2214,"Simulated","C","global",23.7768 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2215,"Simulated","C","global",23.9564 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2216,"Simulated","C","global",23.8891 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2217,"Simulated","C","global",23.812 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2218,"Simulated","C","global",23.8741 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2219,"Simulated","C","global",23.9191 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2220,"Simulated","C","global",23.9362 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2221,"Simulated","C","global",23.9512 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2222,"Simulated","C","global",24.0149 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2223,"Simulated","C","global",24.0904 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2224,"Simulated","C","global",24.0309 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2225,"Simulated","C","global",24.0822 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2226,"Simulated","C","global",24.0662 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2227,"Simulated","C","global",24.0858 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2228,"Simulated","C","global",24.1861 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2229,"Simulated","C","global",24.144 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2230,"Simulated","C","global",24.0889 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2231,"Simulated","C","global",24.2736 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2232,"Simulated","C","global",24.2345 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2233,"Simulated","C","global",24.3665 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2234,"Simulated","C","global",24.3546 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2235,"Simulated","C","global",24.3737 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2236,"Simulated","C","global",24.37 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2237,"Simulated","C","global",24.409 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2238,"Simulated","C","global",24.325 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2239,"Simulated","C","global",24.3917 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2240,"Simulated","C","global",24.3226 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2241,"Simulated","C","global",24.3654 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2242,"Simulated","C","global",24.4323 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2243,"Simulated","C","global",24.519 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2244,"Simulated","C","global",24.5043 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2245,"Simulated","C","global",24.5558 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2246,"Simulated","C","global",24.6085 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2247,"Simulated","C","global",24.5339 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2248,"Simulated","C","global",24.5963 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2249,"Simulated","C","global",24.6761 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2250,"Simulated","C","global",24.6547 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2251,"Simulated","C","global",24.703 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2252,"Simulated","C","global",24.68 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2253,"Simulated","C","global",24.7276 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2254,"Simulated","C","global",24.7425 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2255,"Simulated","C","global",24.7945 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2256,"Simulated","C","global",24.7667 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2257,"Simulated","C","global",24.7444 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2258,"Simulated","C","global",24.6919 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2259,"Simulated","C","global",24.6927 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2260,"Simulated","C","global",24.7417 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2261,"Simulated","C","global",24.7586 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2262,"Simulated","C","global",24.8399 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2263,"Simulated","C","global",24.7407 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2264,"Simulated","C","global",24.7965 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2265,"Simulated","C","global",24.6513 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2266,"Simulated","C","global",24.8063 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2267,"Simulated","C","global",24.8305 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2268,"Simulated","C","global",24.6601 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2269,"Simulated","C","global",24.7684 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2270,"Simulated","C","global",24.7472 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2271,"Simulated","C","global",24.7013 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2272,"Simulated","C","global",24.7843 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2273,"Simulated","C","global",24.8471 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2274,"Simulated","C","global",24.8344 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2275,"Simulated","C","global",24.8476 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2276,"Simulated","C","global",24.7794 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2277,"Simulated","C","global",24.8495 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2278,"Simulated","C","global",24.79 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2279,"Simulated","C","global",24.7098 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2280,"Simulated","C","global",24.7149 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2281,"Simulated","C","global",24.8374 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2282,"Simulated","C","global",24.8473 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2283,"Simulated","C","global",24.6753 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2284,"Simulated","C","global",24.7395 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2285,"Simulated","C","global",24.7514 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2286,"Simulated","C","global",24.6704 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2287,"Simulated","C","global",24.7404 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2288,"Simulated","C","global",24.9416000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2289,"Simulated","C","global",24.9378 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2290,"Simulated","C","global",24.9108 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2291,"Simulated","C","global",24.8677 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2292,"Simulated","C","global",24.9805 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2293,"Simulated","C","global",25.0362 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2294,"Simulated","C","global",25.0198 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2295,"Simulated","C","global",24.8913 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2296,"Simulated","C","global",24.8789 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2297,"Simulated","C","global",25.0146 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2298,"Simulated","C","global",24.9116 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2299,"Simulated","C","global",24.9794 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2005,"Simulated","C","HL",-11.2308 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-8.27592499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-8.29529999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-8.15787499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-7.99397499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-7.80332499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-8.01077499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-7.95134999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-8.00179999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-7.85544999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-7.78447499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-7.54277499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-7.66069999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-7.72932499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-7.65694999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-7.58044999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-7.42322499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-7.49259999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-7.48339999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-7.55279999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-7.34707499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-7.27337499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-7.178225 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-7.03432499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-6.87607499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-6.83409999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-7.03274999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-6.82319999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-6.80509999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-6.58934999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-6.58652499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-6.45624999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-6.31252499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-6.30727499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-6.36899999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-6.25387499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-6.19364999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-6.28674999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-5.98772499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-6.13399999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-5.91967499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-5.80149999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-5.74967499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-5.51882499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-5.55784999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-5.35804999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-5.15927499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-5.12394999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-5.11557499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-5.02842499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-4.93664999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-4.97284999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-4.81542499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-4.60052499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-4.48837499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-4.44519999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-4.49949999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-4.57459999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-4.39539999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-4.26494999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-4.10572499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-4.23939999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-4.02942499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-3.94824999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-3.795175 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-3.77419999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-3.62404999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-3.68497499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-3.59542499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-3.52594999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-3.49177499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-3.36922499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-3.19752499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-3.04327499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-3.01092499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-2.75907499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-2.72894999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-2.67677499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-2.60142499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-2.65707499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-2.64059999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-2.31737499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-2.28062499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-2.15282499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-2.16139999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-2.03634999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-1.87332499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-1.76479999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-1.79654999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-1.71549999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-1.66709999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-1.64184999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-1.35859999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-1.21735 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-1.11209999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-1.15314999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2101,"Simulated","C","HL",-1.41319999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2102,"Simulated","C","HL",-1.12059999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2103,"Simulated","C","HL",-1.04129999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2104,"Simulated","C","HL",-1.20259999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2105,"Simulated","C","HL",-0.868799999999965 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2106,"Simulated","C","HL",-0.726099999999974 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2107,"Simulated","C","HL",-0.532399999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2108,"Simulated","C","HL",-0.266699999999958 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2109,"Simulated","C","HL",-0.497399999999971 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2110,"Simulated","C","HL",-0.193799999999953 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2111,"Simulated","C","HL",-0.404200000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2112,"Simulated","C","HL",-0.0883999999999787 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2113,"Simulated","C","HL",-0.134099999999989 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2114,"Simulated","C","HL",-0.0675999999999704 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2115,"Simulated","C","HL",0.263599999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2116,"Simulated","C","HL",-0.0797999999999774 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2117,"Simulated","C","HL",0.0859000000000378 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2118,"Simulated","C","HL",0.270600000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2119,"Simulated","C","HL",0.299300000000017 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2120,"Simulated","C","HL",0.344200000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2121,"Simulated","C","HL",0.405900000000031 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2122,"Simulated","C","HL",0.324700000000007 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2123,"Simulated","C","HL",0.527100000000019 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2124,"Simulated","C","HL",0.687100000000044 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2125,"Simulated","C","HL",1.09860000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2126,"Simulated","C","HL",0.867000000000019 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2127,"Simulated","C","HL",0.866200000000049 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2128,"Simulated","C","HL",1.01180000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2129,"Simulated","C","HL",0.933800000000019 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2130,"Simulated","C","HL",0.87560000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2131,"Simulated","C","HL",0.995400000000018 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2132,"Simulated","C","HL",1.18990000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2133,"Simulated","C","HL",1.28660000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2134,"Simulated","C","HL",1.30200000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2135,"Simulated","C","HL",1.4708 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2136,"Simulated","C","HL",1.88260000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2137,"Simulated","C","HL",1.94570000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2138,"Simulated","C","HL",1.70890000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2139,"Simulated","C","HL",1.67500000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2140,"Simulated","C","HL",1.38810000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2141,"Simulated","C","HL",1.70980000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2142,"Simulated","C","HL",1.69930000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2143,"Simulated","C","HL",2.02010000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2144,"Simulated","C","HL",2.18640000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2145,"Simulated","C","HL",2.32780000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2146,"Simulated","C","HL",2.44050000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2147,"Simulated","C","HL",2.35820000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2148,"Simulated","C","HL",2.50530000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2149,"Simulated","C","HL",2.37050000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2150,"Simulated","C","HL",2.52890000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2151,"Simulated","C","HL",2.34640000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2152,"Simulated","C","HL",2.4905 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2153,"Simulated","C","HL",2.56200000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2154,"Simulated","C","HL",2.75170000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2155,"Simulated","C","HL",2.3879 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2156,"Simulated","C","HL",2.42470000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2157,"Simulated","C","HL",2.52860000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2158,"Simulated","C","HL",2.70510000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2159,"Simulated","C","HL",2.7201 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2160,"Simulated","C","HL",2.98869999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2161,"Simulated","C","HL",2.8759 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2162,"Simulated","C","HL",3.0136 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2163,"Simulated","C","HL",2.81390000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2164,"Simulated","C","HL",3.0129 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2165,"Simulated","C","HL",2.87140000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2166,"Simulated","C","HL",3.06210000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2167,"Simulated","C","HL",3.27440000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2168,"Simulated","C","HL",3.25190000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2169,"Simulated","C","HL",3.24240000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2170,"Simulated","C","HL",3.06560000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2171,"Simulated","C","HL",3.4128 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2172,"Simulated","C","HL",3.65950000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2173,"Simulated","C","HL",3.38510000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2174,"Simulated","C","HL",3.47210000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2175,"Simulated","C","HL",3.40950000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2176,"Simulated","C","HL",3.56040000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2177,"Simulated","C","HL",3.4658 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2178,"Simulated","C","HL",3.52410000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2179,"Simulated","C","HL",3.63600000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2180,"Simulated","C","HL",3.7056 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2181,"Simulated","C","HL",3.59750000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2182,"Simulated","C","HL",3.83640000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2183,"Simulated","C","HL",3.83610000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2184,"Simulated","C","HL",3.9871 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2185,"Simulated","C","HL",4.13120000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2186,"Simulated","C","HL",4.084 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2187,"Simulated","C","HL",4.24110000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2188,"Simulated","C","HL",4.14660000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2189,"Simulated","C","HL",4.10230000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2190,"Simulated","C","HL",4.05280000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2191,"Simulated","C","HL",4.29080000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2192,"Simulated","C","HL",4.12470000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2193,"Simulated","C","HL",4.13530000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2194,"Simulated","C","HL",4.18100000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2195,"Simulated","C","HL",4.41860000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2196,"Simulated","C","HL",4.29640000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2197,"Simulated","C","HL",4.40370000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2198,"Simulated","C","HL",4.42200000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2199,"Simulated","C","HL",4.4452 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2200,"Simulated","C","HL",4.55360000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2201,"Simulated","C","HL",4.45230000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2202,"Simulated","C","HL",4.48660000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2203,"Simulated","C","HL",4.4855 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2204,"Simulated","C","HL",4.447 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2205,"Simulated","C","HL",4.42860000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2206,"Simulated","C","HL",4.9984 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2207,"Simulated","C","HL",4.8501 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2208,"Simulated","C","HL",4.9402 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2209,"Simulated","C","HL",4.9572 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2210,"Simulated","C","HL",4.85940000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2211,"Simulated","C","HL",4.95430000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2212,"Simulated","C","HL",4.71230000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2213,"Simulated","C","HL",5.02080000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2214,"Simulated","C","HL",4.93600000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2215,"Simulated","C","HL",5.15660000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2216,"Simulated","C","HL",5.08940000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2217,"Simulated","C","HL",5.16120000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2218,"Simulated","C","HL",5.22500000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2219,"Simulated","C","HL",5.27020000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2220,"Simulated","C","HL",5.15820000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2221,"Simulated","C","HL",4.95520000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2222,"Simulated","C","HL",5.00040000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2223,"Simulated","C","HL",5.2355 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2224,"Simulated","C","HL",5.27720000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2225,"Simulated","C","HL",5.25600000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2226,"Simulated","C","HL",5.31390000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2227,"Simulated","C","HL",5.10700000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2228,"Simulated","C","HL",5.26280000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2229,"Simulated","C","HL",5.3331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2230,"Simulated","C","HL",5.38030000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2231,"Simulated","C","HL",5.47790000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2232,"Simulated","C","HL",5.45260000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2233,"Simulated","C","HL",5.51420000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2234,"Simulated","C","HL",5.39920000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2235,"Simulated","C","HL",5.6377 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2236,"Simulated","C","HL",5.48830000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2237,"Simulated","C","HL",5.58250000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2238,"Simulated","C","HL",5.3451 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2239,"Simulated","C","HL",5.71070000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2240,"Simulated","C","HL",5.46000000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2241,"Simulated","C","HL",5.69030000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2242,"Simulated","C","HL",5.6576 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2243,"Simulated","C","HL",5.60470000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2244,"Simulated","C","HL",5.5727 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2245,"Simulated","C","HL",5.46100000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2246,"Simulated","C","HL",5.48080000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2247,"Simulated","C","HL",5.65640000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2248,"Simulated","C","HL",5.69110000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2249,"Simulated","C","HL",5.78380000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2250,"Simulated","C","HL",5.81810000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2251,"Simulated","C","HL",5.83150000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2252,"Simulated","C","HL",5.7527 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2253,"Simulated","C","HL",5.79610000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2254,"Simulated","C","HL",5.81890000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2255,"Simulated","C","HL",5.88300000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2256,"Simulated","C","HL",6.05240000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2257,"Simulated","C","HL",5.94530000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2258,"Simulated","C","HL",5.97040000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2259,"Simulated","C","HL",5.77370000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2260,"Simulated","C","HL",5.82030000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2261,"Simulated","C","HL",5.83190000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2262,"Simulated","C","HL",6.03970000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2263,"Simulated","C","HL",6.03280000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2264,"Simulated","C","HL",5.9246 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2265,"Simulated","C","HL",5.89830000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2266,"Simulated","C","HL",5.97160000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2267,"Simulated","C","HL",6.12280000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2268,"Simulated","C","HL",5.84980000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2269,"Simulated","C","HL",5.96950000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2270,"Simulated","C","HL",6.00240000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2271,"Simulated","C","HL",6.03720000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2272,"Simulated","C","HL",6.02730000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2273,"Simulated","C","HL",6.16060000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2274,"Simulated","C","HL",5.99980000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2275,"Simulated","C","HL",6.03660000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2276,"Simulated","C","HL",6.08440000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2277,"Simulated","C","HL",6.08420000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2278,"Simulated","C","HL",6.28980000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2279,"Simulated","C","HL",6.02760000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2280,"Simulated","C","HL",6.20730000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2281,"Simulated","C","HL",6.23020000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2282,"Simulated","C","HL",6.07260000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2283,"Simulated","C","HL",5.84190000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2284,"Simulated","C","HL",5.96850000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2285,"Simulated","C","HL",6.11930000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2286,"Simulated","C","HL",5.93740000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2287,"Simulated","C","HL",5.87569999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2288,"Simulated","C","HL",6.37890000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2289,"Simulated","C","HL",6.2029 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2290,"Simulated","C","HL",6.16610000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2291,"Simulated","C","HL",6.15290000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2292,"Simulated","C","HL",6.22970000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2293,"Simulated","C","HL",6.23930000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2294,"Simulated","C","HL",6.33570000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2295,"Simulated","C","HL",6.26130000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2296,"Simulated","C","HL",6.23070000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2297,"Simulated","C","HL",6.33320000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2298,"Simulated","C","HL",6.04920000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2299,"Simulated","C","HL",6.19480000000004 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2005,"Simulated","C","LL",17.806075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",19.5661 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",19.5826 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",19.6819 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",19.685225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",19.711075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",19.75895 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",19.71565 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",19.804775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",19.833175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",19.88965 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",19.928475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",19.978225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",20.004475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",20.031425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",20.10265 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",20.109975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",20.143 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",20.215 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",20.133225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",20.17615 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",20.2664 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",20.300425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",20.303575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",20.382275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",20.4202 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",20.4317 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",20.470325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",20.506075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",20.49215 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",20.577125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",20.622875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",20.6642 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",20.76215 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",20.81715 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",20.8039 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",20.8236 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",20.825075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",20.88645 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",20.96515 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",21.041675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",21.06775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",21.166775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",21.197425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",21.218775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",21.3305 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",21.3146 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",21.3723 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",21.4103 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",21.51425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",21.553375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",21.64745 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",21.746175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",21.81465 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",21.941875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",21.9549 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",21.91745 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",21.936575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",21.922275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",21.916025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",22.017725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",22.182 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",22.2339 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",22.34095 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",22.335225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",22.43 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",22.42165 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",22.475075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",22.561125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",22.567275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",22.60025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",22.7087 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",22.798425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",22.902 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",22.939425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",23.021225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",23.041 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",23.05565 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",23.032175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",23.07775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",23.1282 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",23.274675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",23.315 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",23.37895 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",23.380225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",23.466875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",23.583925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",23.54265 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",23.643175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",23.582425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",23.636925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",23.633375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",23.800175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",23.796325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",23.844625 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",23.83365 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2101,"Simulated","C","LL",24.0147 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2102,"Simulated","C","LL",24.0113 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2103,"Simulated","C","LL",23.9025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2104,"Simulated","C","LL",23.8832 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2105,"Simulated","C","LL",23.9903 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2106,"Simulated","C","LL",24.1251 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2107,"Simulated","C","LL",24.2495 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2108,"Simulated","C","LL",24.4346 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2109,"Simulated","C","LL",24.5424 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2110,"Simulated","C","LL",24.4794 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2111,"Simulated","C","LL",24.4762 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2112,"Simulated","C","LL",24.4534 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2113,"Simulated","C","LL",24.4228 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2114,"Simulated","C","LL",24.4352 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2115,"Simulated","C","LL",24.693 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2116,"Simulated","C","LL",24.7746 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2117,"Simulated","C","LL",24.848 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2118,"Simulated","C","LL",24.7122 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2119,"Simulated","C","LL",24.8387 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2120,"Simulated","C","LL",24.933 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2121,"Simulated","C","LL",24.7789 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2122,"Simulated","C","LL",24.9285 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2123,"Simulated","C","LL",24.9454 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2124,"Simulated","C","LL",25.0316 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2125,"Simulated","C","LL",25.0748 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2126,"Simulated","C","LL",25.0474 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2127,"Simulated","C","LL",25.2039 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2128,"Simulated","C","LL",25.2794 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2129,"Simulated","C","LL",25.1675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2130,"Simulated","C","LL",25.2156 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2131,"Simulated","C","LL",25.3446 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2132,"Simulated","C","LL",25.3916 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2133,"Simulated","C","LL",25.461 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2134,"Simulated","C","LL",25.6153 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2135,"Simulated","C","LL",25.6962 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2136,"Simulated","C","LL",25.7084 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2137,"Simulated","C","LL",25.7168 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2138,"Simulated","C","LL",25.7906 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2139,"Simulated","C","LL",25.9175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2140,"Simulated","C","LL",25.9125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2141,"Simulated","C","LL",26.0805 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2142,"Simulated","C","LL",25.9712 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2143,"Simulated","C","LL",25.9668 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2144,"Simulated","C","LL",25.8911 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2145,"Simulated","C","LL",25.8731 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2146,"Simulated","C","LL",25.9354 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2147,"Simulated","C","LL",25.9708 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2148,"Simulated","C","LL",26.0401 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2149,"Simulated","C","LL",26.0519 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2150,"Simulated","C","LL",26.0245 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2151,"Simulated","C","LL",26.0175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2152,"Simulated","C","LL",25.9903 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2153,"Simulated","C","LL",26.0732 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2154,"Simulated","C","LL",26.1306 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2155,"Simulated","C","LL",26.1461 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2156,"Simulated","C","LL",26.1499 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2157,"Simulated","C","LL",26.1671 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2158,"Simulated","C","LL",26.3072 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2159,"Simulated","C","LL",26.4316 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2160,"Simulated","C","LL",26.5192 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2161,"Simulated","C","LL",26.5426 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2162,"Simulated","C","LL",26.6268 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2163,"Simulated","C","LL",26.6487 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2164,"Simulated","C","LL",26.4807 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2165,"Simulated","C","LL",26.6188 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2166,"Simulated","C","LL",26.7606 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2167,"Simulated","C","LL",26.7047 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2168,"Simulated","C","LL",26.7858 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2169,"Simulated","C","LL",26.9294 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2170,"Simulated","C","LL",26.9197 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2171,"Simulated","C","LL",27.068 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2172,"Simulated","C","LL",27.1151 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2173,"Simulated","C","LL",27.3391 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2174,"Simulated","C","LL",27.2821 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2175,"Simulated","C","LL",27.3502 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2176,"Simulated","C","LL",27.2532 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2177,"Simulated","C","LL",27.1572 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2178,"Simulated","C","LL",27.2348 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2179,"Simulated","C","LL",27.087 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2180,"Simulated","C","LL",27.1237 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2181,"Simulated","C","LL",27.2882 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2182,"Simulated","C","LL",27.3386 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2183,"Simulated","C","LL",27.3484 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2184,"Simulated","C","LL",27.4787 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2185,"Simulated","C","LL",27.4582 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2186,"Simulated","C","LL",27.5797 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2187,"Simulated","C","LL",27.4965 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2188,"Simulated","C","LL",27.3298 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2189,"Simulated","C","LL",27.4412 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2190,"Simulated","C","LL",27.5901 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2191,"Simulated","C","LL",27.6155 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2192,"Simulated","C","LL",27.623 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2193,"Simulated","C","LL",27.4875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2194,"Simulated","C","LL",27.6232 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2195,"Simulated","C","LL",27.6646 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2196,"Simulated","C","LL",27.6985 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2197,"Simulated","C","LL",27.7015 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2198,"Simulated","C","LL",27.6662 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2199,"Simulated","C","LL",27.6854 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2200,"Simulated","C","LL",27.6794 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2201,"Simulated","C","LL",27.8639 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2202,"Simulated","C","LL",28.0303 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2203,"Simulated","C","LL",27.9684 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2204,"Simulated","C","LL",28.0225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2205,"Simulated","C","LL",28.0189 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2206,"Simulated","C","LL",28.0208 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2207,"Simulated","C","LL",28.0543 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2208,"Simulated","C","LL",28.0744 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2209,"Simulated","C","LL",28.1119 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2210,"Simulated","C","LL",28.2027 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2211,"Simulated","C","LL",28.2636 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2212,"Simulated","C","LL",28.1573 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2213,"Simulated","C","LL",28.0955 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2214,"Simulated","C","LL",28.116 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2215,"Simulated","C","LL",28.2861 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2216,"Simulated","C","LL",28.2188 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2217,"Simulated","C","LL",28.1075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2218,"Simulated","C","LL",28.169 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2219,"Simulated","C","LL",28.2141 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2220,"Simulated","C","LL",28.261 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2221,"Simulated","C","LL",28.3261 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2222,"Simulated","C","LL",28.3941 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2223,"Simulated","C","LL",28.4328 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2224,"Simulated","C","LL",28.3499 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2225,"Simulated","C","LL",28.418 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2226,"Simulated","C","LL",28.385 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2227,"Simulated","C","LL",28.4567 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2228,"Simulated","C","LL",28.5443 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2229,"Simulated","C","LL",28.4763 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2230,"Simulated","C","LL",28.3976 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2231,"Simulated","C","LL",28.6024 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2232,"Simulated","C","LL",28.5601 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2233,"Simulated","C","LL",28.7083 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2234,"Simulated","C","LL",28.7201 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2235,"Simulated","C","LL",28.6886 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2236,"Simulated","C","LL",28.7186 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2237,"Simulated","C","LL",28.7448 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2238,"Simulated","C","LL",28.6962 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2239,"Simulated","C","LL",28.694 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2240,"Simulated","C","LL",28.6667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2241,"Simulated","C","LL",28.6663 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2242,"Simulated","C","LL",28.7563 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2243,"Simulated","C","LL",28.8751 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2244,"Simulated","C","LL",28.8643 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2245,"Simulated","C","LL",28.9534 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2246,"Simulated","C","LL",29.0138 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2247,"Simulated","C","LL",28.8815 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2248,"Simulated","C","LL",28.9503 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2249,"Simulated","C","LL",29.0271 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2250,"Simulated","C","LL",28.9929 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2251,"Simulated","C","LL",29.0492 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2252,"Simulated","C","LL",29.0391 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2253,"Simulated","C","LL",29.0875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2254,"Simulated","C","LL",29.1008 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2255,"Simulated","C","LL",29.15 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2256,"Simulated","C","LL",29.0766 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2257,"Simulated","C","LL",29.074 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2258,"Simulated","C","LL",29.0035 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2259,"Simulated","C","LL",29.0499 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2260,"Simulated","C","LL",29.0993 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2261,"Simulated","C","LL",29.1175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2262,"Simulated","C","LL",29.1698 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2263,"Simulated","C","LL",29.0493 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2264,"Simulated","C","LL",29.1428 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2265,"Simulated","C","LL",28.9702 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2266,"Simulated","C","LL",29.1441 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2267,"Simulated","C","LL",29.1389 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2268,"Simulated","C","LL",28.9922 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2269,"Simulated","C","LL",29.0978 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2270,"Simulated","C","LL",29.0642 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2271,"Simulated","C","LL",28.9997 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2272,"Simulated","C","LL",29.1042 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2273,"Simulated","C","LL",29.1508 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2274,"Simulated","C","LL",29.172 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2275,"Simulated","C","LL",29.1798 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2276,"Simulated","C","LL",29.0849 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2277,"Simulated","C","LL",29.1712 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2278,"Simulated","C","LL",29.0507 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2279,"Simulated","C","LL",29.0125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2280,"Simulated","C","LL",28.9774 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2281,"Simulated","C","LL",29.1227 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2282,"Simulated","C","LL",29.1713 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2283,"Simulated","C","LL",29.0127 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2284,"Simulated","C","LL",29.0626 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2285,"Simulated","C","LL",29.0424 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2286,"Simulated","C","LL",28.9846 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2287,"Simulated","C","LL",29.085 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2288,"Simulated","C","LL",29.2167 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2289,"Simulated","C","LL",29.2526 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2290,"Simulated","C","LL",29.2277 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2291,"Simulated","C","LL",29.1779 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2292,"Simulated","C","LL",29.2989 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2293,"Simulated","C","LL",29.3652 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2294,"Simulated","C","LL",29.3228 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2295,"Simulated","C","LL",29.1819 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2296,"Simulated","C","LL",29.1737 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2297,"Simulated","C","LL",29.317 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2298,"Simulated","C","LL",29.2557 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2299,"Simulated","C","LL",29.3056 -"inmcm4","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.074 -"inmcm4","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",13.9136 -"inmcm4","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",13.9098 -"inmcm4","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",14.0113 -"inmcm4","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",14.0809 -"inmcm4","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",14.0091 -"inmcm4","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",14.0317 -"inmcm4","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",13.9685 -"inmcm4","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",14.0478 -"inmcm4","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",14.012 -"inmcm4","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.0859 -"inmcm4","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.1197 -"inmcm4","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",13.991 -"inmcm4","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",14.0374 -"inmcm4","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",14.1777 -"inmcm4","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",14.1283 -"inmcm4","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",14.1249 -"inmcm4","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",14.1454 -"inmcm4","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",14.2717 -"inmcm4","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",14.2714 -"inmcm4","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",14.3053 -"inmcm4","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",14.3088 -"inmcm4","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",14.3539 -"inmcm4","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",14.4293 -"inmcm4","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",14.34 -"inmcm4","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",14.3723 -"inmcm4","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",14.4916 -"inmcm4","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",14.5113 -"inmcm4","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",14.4386 -"inmcm4","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",14.4508 -"inmcm4","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",14.5024 -"inmcm4","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",14.5954 -"inmcm4","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",14.571 -"inmcm4","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",14.5607 -"inmcm4","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",14.5974000000001 -"inmcm4","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",14.6837 -"inmcm4","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",14.6121 -"inmcm4","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",14.6753 -"inmcm4","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",14.7321 -"inmcm4","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",14.6884 -"inmcm4","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",14.599 -"inmcm4","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",14.7194 -"inmcm4","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",14.8316 -"inmcm4","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",14.8025 -"inmcm4","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",14.854 -"inmcm4","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",14.7889 -"inmcm4","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",14.8785 -"inmcm4","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",14.8778 -"inmcm4","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",14.9843 -"inmcm4","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",15.0821 -"inmcm4","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",15.1516 -"inmcm4","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",15.1849 -"inmcm4","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",15.1204 -"inmcm4","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",15.2719 -"inmcm4","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",15.3723 -"inmcm4","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",15.3288 -"inmcm4","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",15.3565 -"inmcm4","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",15.4325 -"inmcm4","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",15.4681 -"inmcm4","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",15.4892 -"inmcm4","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",15.6796000000001 -"inmcm4","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",15.6237 -"inmcm4","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",15.6654 -"inmcm4","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",15.7431 -"inmcm4","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",15.7376 -"inmcm4","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",15.8412 -"inmcm4","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",15.8563 -"inmcm4","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",15.8822 -"inmcm4","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",15.891 -"inmcm4","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",15.9718 -"inmcm4","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",16.0457 -"inmcm4","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",16.0723 -"inmcm4","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",16.0312 -"inmcm4","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",16.0132 -"inmcm4","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",16.0377 -"inmcm4","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",16.1449 -"inmcm4","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",16.0795 -"inmcm4","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",16.1325000000001 -"inmcm4","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",16.1517 -"inmcm4","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",16.1283 -"inmcm4","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",16.1855 -"inmcm4","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",16.2595 -"inmcm4","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",16.3492 -"inmcm4","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",16.4117 -"inmcm4","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",16.3642 -"inmcm4","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",16.4213 -"inmcm4","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",16.5454 -"inmcm4","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",16.4394 -"inmcm4","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",16.5115 -"inmcm4","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",16.5452 -"inmcm4","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",16.5657 -"inmcm4","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",16.6205 -"inmcm4","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",16.6294 -"inmcm4","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",16.7045 -"inmcm4","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",16.7697 -"inmcm4","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-7.72929999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-7.81559999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-7.7937 -"inmcm4","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-7.74709999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-7.58449999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-7.74979999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-7.61239999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-7.80899999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-7.51279999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-7.8442 -"inmcm4","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-7.80249999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-7.3877 -"inmcm4","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-7.7706 -"inmcm4","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-7.47179999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-7.31869999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-7.70919999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-7.53479999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-7.63389999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-7.45519999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-7.55289999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-7.44819999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-7.20509999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-7.20939999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-7.24579999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-7.50059999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-7.13279999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-6.84619999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-6.95669999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-7.22279999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-6.9674 -"inmcm4","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-7.09019999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-7.21469999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-7.41359999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-7.05669999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-7.18259999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-6.87529999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-6.93389999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-6.88479999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-6.6105 -"inmcm4","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-7.0292 -"inmcm4","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-7.18459999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-7.02289999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-6.78489999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-6.70739999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-6.4239 -"inmcm4","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-6.79039999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-6.86339999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-6.33249999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-6.57380000000001 -"inmcm4","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-6.30369999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-6.11099999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-6.16549999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-6.1567 -"inmcm4","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-6.01769999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-5.6069 -"inmcm4","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-5.91049999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-5.91409999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-5.66699999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-5.74599999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-5.5772 -"inmcm4","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-5.20739999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-5.08689999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-4.82929999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-5.11319999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-5.01369999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-4.95839999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-4.99189999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-4.84449999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-4.91889999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-4.72629999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-4.51939999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-4.43809999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-4.63169999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-4.66749999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-4.70149999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-4.93039999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-4.92379999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-4.8811 -"inmcm4","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-4.85929999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-4.63999999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-4.447 -"inmcm4","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-4.50879999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-4.3014 -"inmcm4","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-4.02319999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-4.37779999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-4.43119999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-4.28799999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-4.3929 -"inmcm4","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-4.30809999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-4.19829999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-4.00969999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-3.99029999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-3.97279999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-3.87099999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-3.96509999999995 -"inmcm4","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",18.727 -"inmcm4","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",18.5508 -"inmcm4","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",18.5415 -"inmcm4","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",18.6547 -"inmcm4","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",18.7044 -"inmcm4","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",18.6526 -"inmcm4","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",18.6507 -"inmcm4","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",18.616 -"inmcm4","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",18.649 -"inmcm4","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",18.6763 -"inmcm4","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",18.757 -"inmcm4","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",18.7095 -"inmcm4","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",18.635 -"inmcm4","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",18.6277 -"inmcm4","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",18.7652 -"inmcm4","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",18.7886 -"inmcm4","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",18.7473 -"inmcm4","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",18.7932 -"inmcm4","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",18.9084 -"inmcm4","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",18.9289 -"inmcm4","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",18.9477 -"inmcm4","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",18.9001 -"inmcm4","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",18.9556 -"inmcm4","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",19.0549 -"inmcm4","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",19.0009 -"inmcm4","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",18.9617 -"inmcm4","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",19.0452 -"inmcm4","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",19.0927 -"inmcm4","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",19.0613 -"inmcm4","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",19.0216 -"inmcm4","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",19.1104 -"inmcm4","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",19.2498000000001 -"inmcm4","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",19.2626 -"inmcm4","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",19.174 -"inmcm4","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",19.2454 -"inmcm4","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",19.2846 -"inmcm4","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",19.2102 -"inmcm4","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",19.2763 -"inmcm4","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",19.2868 -"inmcm4","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",19.3231 -"inmcm4","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",19.2478 -"inmcm4","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",19.3593 -"inmcm4","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",19.4447 -"inmcm4","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",19.3929 -"inmcm4","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",19.3948 -"inmcm4","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",19.3941 -"inmcm4","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",19.5183 -"inmcm4","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",19.4042 -"inmcm4","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",19.5849 -"inmcm4","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",19.646 -"inmcm4","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",19.6892 -"inmcm4","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",19.7412 -"inmcm4","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",19.6611 -"inmcm4","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",19.8152 -"inmcm4","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",19.8494 -"inmcm4","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",19.8614 -"inmcm4","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",19.8959 -"inmcm4","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",19.9353 -"inmcm4","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",19.9953 -"inmcm4","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",19.9849 -"inmcm4","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",20.137 -"inmcm4","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",20.0435 -"inmcm4","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",20.0391 -"inmcm4","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",20.1939 -"inmcm4","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",20.1661 -"inmcm4","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",20.2799 -"inmcm4","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",20.3054 -"inmcm4","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",20.3054 -"inmcm4","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",20.3320000000001 -"inmcm4","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",20.3889 -"inmcm4","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",20.4344 -"inmcm4","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",20.4494 -"inmcm4","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",20.4408 -"inmcm4","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",20.4266 -"inmcm4","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",20.4637 -"inmcm4","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",20.6425 -"inmcm4","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",20.5617 -"inmcm4","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",20.6169 -"inmcm4","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",20.6356 -"inmcm4","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",20.5604 -"inmcm4","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",20.5886 -"inmcm4","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",20.6916000000001 -"inmcm4","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",20.7561 -"inmcm4","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",20.7727 -"inmcm4","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",20.7907 -"inmcm4","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",20.8714000000001 -"inmcm4","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",20.9914 -"inmcm4","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",20.8852 -"inmcm4","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",20.9545 -"inmcm4","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",20.972 -"inmcm4","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",20.9566 -"inmcm4","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",21.019 -"inmcm4","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",21.026 -"inmcm4","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",21.0955 -"inmcm4","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",21.1946 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",13.4116 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",13.450175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",13.5582 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",13.623825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",13.6127 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",13.609625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",13.634375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",13.627775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",13.6656 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",13.72395 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",13.7609 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",13.82285 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",13.721125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",13.81115 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",13.851825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",13.87965 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",13.9383 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",13.9809 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",14.010525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",13.9731 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",14.103175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",14.166325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",14.174075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",14.219675 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",14.25435 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",14.281725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",14.392875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",14.311025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",14.421725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",14.50295 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",14.580575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",14.5404 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",14.6179 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",14.630575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",14.68415 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",14.6202 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",14.77585 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",14.885925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",14.932625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",14.9551 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",14.94885 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",15.07185 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",15.138225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",15.200625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",15.22235 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",15.3015 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",15.374875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",15.44165 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",15.4954 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",15.460975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",15.596 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",15.559925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",15.69985 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",15.809575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",15.788575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",15.805275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",15.92795 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",15.96785 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",16.094875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",16.14355 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",16.1696 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",16.1175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",16.22645 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",16.4286 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",16.522275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",16.419975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",16.4055 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",16.555025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",16.585075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",16.617625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",16.6916 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",16.739825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",16.7938 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",16.90495 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",16.939775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",17.0112 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",17.049225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",17.118825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",17.2015 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",17.262275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",17.16295 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",17.3167 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",17.386575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",17.416475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",17.598175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",17.645875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",17.621875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",17.6477 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",17.715625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",17.7992 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",17.91805 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",18.005275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",17.970425 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",18.031625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",18.07565 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2101,"Simulated","C","global",18.3579 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2102,"Simulated","C","global",18.3202 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2103,"Simulated","C","global",18.2095 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2104,"Simulated","C","global",18.3341 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2105,"Simulated","C","global",18.4024 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2106,"Simulated","C","global",18.4685 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2107,"Simulated","C","global",18.6484 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2108,"Simulated","C","global",18.42 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2109,"Simulated","C","global",18.484 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2110,"Simulated","C","global",18.5687 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2111,"Simulated","C","global",18.688 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2112,"Simulated","C","global",18.6673 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2113,"Simulated","C","global",18.8852 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2114,"Simulated","C","global",18.7128 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2115,"Simulated","C","global",18.7791 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2116,"Simulated","C","global",18.7765 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2117,"Simulated","C","global",18.9167 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2118,"Simulated","C","global",19.0511 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2119,"Simulated","C","global",19.0644 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2120,"Simulated","C","global",19.148 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2121,"Simulated","C","global",19.2391 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2122,"Simulated","C","global",19.4971 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2123,"Simulated","C","global",19.375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2124,"Simulated","C","global",19.5315000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2125,"Simulated","C","global",19.5734 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2126,"Simulated","C","global",19.504 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2127,"Simulated","C","global",19.4157 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2128,"Simulated","C","global",19.3974 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2129,"Simulated","C","global",19.5432 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2130,"Simulated","C","global",19.5343 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2131,"Simulated","C","global",19.6926 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2132,"Simulated","C","global",19.678 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2133,"Simulated","C","global",19.8706 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2134,"Simulated","C","global",19.8105 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2135,"Simulated","C","global",19.9043 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2136,"Simulated","C","global",19.7508 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2137,"Simulated","C","global",19.8949 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2138,"Simulated","C","global",20.089 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2139,"Simulated","C","global",20.182 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2140,"Simulated","C","global",20.1161 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2141,"Simulated","C","global",20.1878 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2142,"Simulated","C","global",19.9708 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2143,"Simulated","C","global",20.1621 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2144,"Simulated","C","global",20.1662 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2145,"Simulated","C","global",20.1611 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2146,"Simulated","C","global",20.2636 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2147,"Simulated","C","global",20.4267 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2148,"Simulated","C","global",20.5983 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2149,"Simulated","C","global",20.5237 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2150,"Simulated","C","global",20.6958 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2151,"Simulated","C","global",20.7372 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2152,"Simulated","C","global",20.5691 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2153,"Simulated","C","global",20.7678 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2154,"Simulated","C","global",20.8274 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2155,"Simulated","C","global",20.8627 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2156,"Simulated","C","global",20.9601 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2157,"Simulated","C","global",21.0101 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2158,"Simulated","C","global",20.8624 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2159,"Simulated","C","global",21.0411 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2160,"Simulated","C","global",21.1702 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2161,"Simulated","C","global",21.048 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2162,"Simulated","C","global",21.1932 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2163,"Simulated","C","global",21.1673 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2164,"Simulated","C","global",21.2139 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2165,"Simulated","C","global",21.4834 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2166,"Simulated","C","global",21.4733 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2167,"Simulated","C","global",21.3122 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2168,"Simulated","C","global",21.347 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2169,"Simulated","C","global",21.5866 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2170,"Simulated","C","global",21.5655 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2171,"Simulated","C","global",21.6961 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2172,"Simulated","C","global",21.6291000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2173,"Simulated","C","global",21.4582 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2174,"Simulated","C","global",21.5603 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2175,"Simulated","C","global",21.7279 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2176,"Simulated","C","global",21.7799 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2177,"Simulated","C","global",21.7975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2178,"Simulated","C","global",21.9505 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2179,"Simulated","C","global",21.9025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2180,"Simulated","C","global",21.9928 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2181,"Simulated","C","global",22.0046 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2182,"Simulated","C","global",21.9309 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2183,"Simulated","C","global",22.0313 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2184,"Simulated","C","global",22.0553 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2185,"Simulated","C","global",21.9243 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2186,"Simulated","C","global",22.0931 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2187,"Simulated","C","global",22.0846 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2188,"Simulated","C","global",22.1254 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2189,"Simulated","C","global",22.0851 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2190,"Simulated","C","global",22.3865 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2191,"Simulated","C","global",22.3572 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2192,"Simulated","C","global",22.2195 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2193,"Simulated","C","global",22.3689 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2194,"Simulated","C","global",22.3395 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2195,"Simulated","C","global",22.465 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2196,"Simulated","C","global",22.4348 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2197,"Simulated","C","global",22.5716 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2198,"Simulated","C","global",22.6472 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2199,"Simulated","C","global",22.7875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2200,"Simulated","C","global",22.8093 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2201,"Simulated","C","global",22.7589 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2202,"Simulated","C","global",22.7666 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2203,"Simulated","C","global",22.8308 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2204,"Simulated","C","global",22.8195 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2205,"Simulated","C","global",22.8506 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2206,"Simulated","C","global",22.8878 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2207,"Simulated","C","global",22.8287 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2208,"Simulated","C","global",22.7054 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2209,"Simulated","C","global",22.9904 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2210,"Simulated","C","global",22.9821 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2211,"Simulated","C","global",22.9492 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2212,"Simulated","C","global",22.8465 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2213,"Simulated","C","global",22.953 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2214,"Simulated","C","global",23.1594 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2215,"Simulated","C","global",23.3184 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2216,"Simulated","C","global",23.2717 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2217,"Simulated","C","global",23.2182 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2218,"Simulated","C","global",23.3484 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2219,"Simulated","C","global",23.3762 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2220,"Simulated","C","global",23.1864 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2221,"Simulated","C","global",23.2051 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2222,"Simulated","C","global",23.35 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2223,"Simulated","C","global",23.4811 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2224,"Simulated","C","global",23.4062 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2225,"Simulated","C","global",23.371 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2226,"Simulated","C","global",23.4653 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2227,"Simulated","C","global",23.5973 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2228,"Simulated","C","global",23.557 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2229,"Simulated","C","global",23.567 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2230,"Simulated","C","global",23.5688 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2231,"Simulated","C","global",23.7306 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2232,"Simulated","C","global",23.8779 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2233,"Simulated","C","global",23.7716 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2234,"Simulated","C","global",23.8247 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2235,"Simulated","C","global",23.9268 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2236,"Simulated","C","global",23.7396 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2237,"Simulated","C","global",23.6732 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2238,"Simulated","C","global",23.6213 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2239,"Simulated","C","global",23.8374 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2240,"Simulated","C","global",23.8819 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2241,"Simulated","C","global",23.8421 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2242,"Simulated","C","global",23.9766 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2243,"Simulated","C","global",23.8831 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2244,"Simulated","C","global",24.0128 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2245,"Simulated","C","global",24.1281 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2246,"Simulated","C","global",24.0587 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2247,"Simulated","C","global",23.8589 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2248,"Simulated","C","global",24.0046 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2249,"Simulated","C","global",24.1582 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2250,"Simulated","C","global",24.2009 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2251,"Simulated","C","global",24.2701 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2252,"Simulated","C","global",24.3095 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2253,"Simulated","C","global",24.1652 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2254,"Simulated","C","global",24.2143 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2255,"Simulated","C","global",24.3098 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2256,"Simulated","C","global",24.3613 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2257,"Simulated","C","global",24.3423 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2258,"Simulated","C","global",24.349 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2259,"Simulated","C","global",24.2715 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2260,"Simulated","C","global",24.3015 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2261,"Simulated","C","global",24.396 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2262,"Simulated","C","global",24.5107 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2263,"Simulated","C","global",24.4447 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2264,"Simulated","C","global",24.3823 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2265,"Simulated","C","global",24.2219 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2266,"Simulated","C","global",24.4952 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2267,"Simulated","C","global",24.6911 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2268,"Simulated","C","global",24.5536 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2269,"Simulated","C","global",24.4564 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2270,"Simulated","C","global",24.5537 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2271,"Simulated","C","global",24.7398 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2272,"Simulated","C","global",24.573 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2273,"Simulated","C","global",24.651 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2274,"Simulated","C","global",24.6148 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2275,"Simulated","C","global",24.6278 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2276,"Simulated","C","global",24.6803 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2277,"Simulated","C","global",24.6228 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2278,"Simulated","C","global",24.5926 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2279,"Simulated","C","global",24.4889 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2280,"Simulated","C","global",24.4623 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2281,"Simulated","C","global",24.4708 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2282,"Simulated","C","global",24.6945 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2283,"Simulated","C","global",24.6399 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2284,"Simulated","C","global",24.5544 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2285,"Simulated","C","global",24.7734 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2286,"Simulated","C","global",24.7337 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2287,"Simulated","C","global",24.6049 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2288,"Simulated","C","global",24.8296 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2289,"Simulated","C","global",24.9294 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2290,"Simulated","C","global",24.71 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2291,"Simulated","C","global",24.8219 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2292,"Simulated","C","global",24.8187 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2293,"Simulated","C","global",24.7338 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2294,"Simulated","C","global",24.8248 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2295,"Simulated","C","global",24.8763 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2296,"Simulated","C","global",24.9298 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2297,"Simulated","C","global",24.913 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2298,"Simulated","C","global",24.918 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2299,"Simulated","C","global",24.8816 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2300,"Simulated","C","global",24.8941 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-8.93537499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-8.64479999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-8.58344999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-8.52577499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-8.56362499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-8.56742499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-8.50202499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-8.57712499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-8.49087499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-8.20499999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-8.20624999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-8.31065 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-8.43492499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-8.36354999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-8.50542499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-8.16419999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-8.11124999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-8.16902499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-8.12434999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-8.30469999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-8.01157499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-7.94337499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-7.83932499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-7.78812499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-7.70434999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-7.92227499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-7.68809999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-7.63807499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-7.42704999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-7.52274999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-7.30139999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-7.47519999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-7.21969999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-7.40309999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-7.23229999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-7.57804999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-7.22532499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-7.01382499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-7.08034999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-6.92569999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-7.06989999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-6.75464999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-6.66637499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-6.64369999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-6.68509999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-6.56757499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-6.57647499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-6.55049999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-6.41757499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-6.54319999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-6.29229999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-6.29372499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-6.16292499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-5.86284999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-5.90174999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-5.94502499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-5.77407499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-5.76357499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-5.54787499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-5.53979999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-5.49332499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-5.67009999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-5.67217499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-5.09039999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-5.09894999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-5.33659999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-5.31774999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-5.15117499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-5.115625 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-5.02939999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-4.84512499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-4.99397499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-4.92522499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-4.92462499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-4.92092499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-4.76277499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-4.82359999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-4.59654999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-4.49527499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-4.47059999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-4.66772499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-4.50907499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-4.31677499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-4.19672499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-4.07059999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-4.06739999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-4.33202499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-4.19399999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-4.20407499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-3.93342499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-3.59164999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-3.65327499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-3.74049999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-3.518925 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-3.58029999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2101,"Simulated","C","HL",-3.22149999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2102,"Simulated","C","HL",-3.38579999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2103,"Simulated","C","HL",-3.70349999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2104,"Simulated","C","HL",-3.69959999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2105,"Simulated","C","HL",-3.32599999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2106,"Simulated","C","HL",-2.9862 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2107,"Simulated","C","HL",-2.69649999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2108,"Simulated","C","HL",-3.21179999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2109,"Simulated","C","HL",-3.03899999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2110,"Simulated","C","HL",-2.90009999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2111,"Simulated","C","HL",-2.73099999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2112,"Simulated","C","HL",-2.54449999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2113,"Simulated","C","HL",-2.315 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2114,"Simulated","C","HL",-2.86349999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2115,"Simulated","C","HL",-3.25729999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2116,"Simulated","C","HL",-2.99709999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2117,"Simulated","C","HL",-2.65609999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2118,"Simulated","C","HL",-2.71889999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2119,"Simulated","C","HL",-3.02379999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2120,"Simulated","C","HL",-2.97219999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2121,"Simulated","C","HL",-2.6515 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2122,"Simulated","C","HL",-1.87 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2123,"Simulated","C","HL",-1.95519999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2124,"Simulated","C","HL",-2.0136 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2125,"Simulated","C","HL",-2.21549999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2126,"Simulated","C","HL",-2.37399999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2127,"Simulated","C","HL",-2.4676 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2128,"Simulated","C","HL",-2.29689999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2129,"Simulated","C","HL",-2.04769999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2130,"Simulated","C","HL",-2.04999999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2131,"Simulated","C","HL",-2.0301 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2132,"Simulated","C","HL",-2.06529999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2133,"Simulated","C","HL",-2.08779999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2134,"Simulated","C","HL",-2.21899999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2135,"Simulated","C","HL",-2.0872 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2136,"Simulated","C","HL",-2.52539999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2137,"Simulated","C","HL",-1.74329999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2138,"Simulated","C","HL",-1.54509999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2139,"Simulated","C","HL",-1.6096 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2140,"Simulated","C","HL",-1.47639999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2141,"Simulated","C","HL",-1.63799999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2142,"Simulated","C","HL",-1.79509999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2143,"Simulated","C","HL",-1.33139999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2144,"Simulated","C","HL",-1.59549999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2145,"Simulated","C","HL",-1.6583 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2146,"Simulated","C","HL",-1.73399999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2147,"Simulated","C","HL",-1.26319999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2148,"Simulated","C","HL",-1.13959999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2149,"Simulated","C","HL",-0.963599999999985 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2150,"Simulated","C","HL",-1.13069999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2151,"Simulated","C","HL",-1.02079999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2152,"Simulated","C","HL",-1.00289999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2153,"Simulated","C","HL",-1.1574 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2154,"Simulated","C","HL",-0.989199999999983 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2155,"Simulated","C","HL",-0.740199999999959 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2156,"Simulated","C","HL",-0.86099999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2157,"Simulated","C","HL",-0.959199999999953 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2158,"Simulated","C","HL",-1.09349999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2159,"Simulated","C","HL",-0.629699999999957 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2160,"Simulated","C","HL",-0.259799999999984 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2161,"Simulated","C","HL",-0.648299999999949 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2162,"Simulated","C","HL",-0.489099999999951 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2163,"Simulated","C","HL",-0.455600000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2164,"Simulated","C","HL",-0.323999999999955 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2165,"Simulated","C","HL",-0.0421999999999798 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2166,"Simulated","C","HL",-0.0622999999999934 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2167,"Simulated","C","HL",-0.170099999999991 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2168,"Simulated","C","HL",-0.154799999999966 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2169,"Simulated","C","HL",-0.147199999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2170,"Simulated","C","HL",0.1404 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2171,"Simulated","C","HL",0.302600000000041 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2172,"Simulated","C","HL",0.0470000000000255 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2173,"Simulated","C","HL",-0.305700000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2174,"Simulated","C","HL",-0.201999999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2175,"Simulated","C","HL",0.255899999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2176,"Simulated","C","HL",0.28490000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2177,"Simulated","C","HL",0.247700000000009 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2178,"Simulated","C","HL",0.377900000000011 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2179,"Simulated","C","HL",0.0940000000000509 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2180,"Simulated","C","HL",0.501800000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2181,"Simulated","C","HL",0.153700000000015 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2182,"Simulated","C","HL",0.558600000000013 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2183,"Simulated","C","HL",0.269800000000032 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2184,"Simulated","C","HL",0.311599999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2185,"Simulated","C","HL",0.222700000000032 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2186,"Simulated","C","HL",0.582899999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2187,"Simulated","C","HL",0.857600000000048 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2188,"Simulated","C","HL",0.831400000000031 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2189,"Simulated","C","HL",0.663499999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2190,"Simulated","C","HL",0.682299999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2191,"Simulated","C","HL",0.806100000000015 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2192,"Simulated","C","HL",0.871100000000013 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2193,"Simulated","C","HL",0.88820000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2194,"Simulated","C","HL",0.725099999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2195,"Simulated","C","HL",1.01580000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2196,"Simulated","C","HL",0.958900000000028 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2197,"Simulated","C","HL",0.941700000000026 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2198,"Simulated","C","HL",1.28070000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2199,"Simulated","C","HL",1.5899 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2200,"Simulated","C","HL",1.39490000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2201,"Simulated","C","HL",1.43040000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2202,"Simulated","C","HL",0.923200000000008 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2203,"Simulated","C","HL",1.50940000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2204,"Simulated","C","HL",1.5324 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2205,"Simulated","C","HL",1.50420000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2206,"Simulated","C","HL",1.45300000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2207,"Simulated","C","HL",1.47630000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2208,"Simulated","C","HL",1.26530000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2209,"Simulated","C","HL",1.57620000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2210,"Simulated","C","HL",1.43780000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2211,"Simulated","C","HL",1.27660000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2212,"Simulated","C","HL",1.28320000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2213,"Simulated","C","HL",1.52200000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2214,"Simulated","C","HL",1.62100000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2215,"Simulated","C","HL",1.48470000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2216,"Simulated","C","HL",1.88400000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2217,"Simulated","C","HL",1.887 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2218,"Simulated","C","HL",1.99900000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2219,"Simulated","C","HL",2.05500000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2220,"Simulated","C","HL",1.68460000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2221,"Simulated","C","HL",1.9579 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2222,"Simulated","C","HL",1.82420000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2223,"Simulated","C","HL",2.01090000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2224,"Simulated","C","HL",2.16230000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2225,"Simulated","C","HL",2.233 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2226,"Simulated","C","HL",2.46700000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2227,"Simulated","C","HL",2.29349999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2228,"Simulated","C","HL",2.31440000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2229,"Simulated","C","HL",2.38170000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2230,"Simulated","C","HL",2.11850000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2231,"Simulated","C","HL",2.56180000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2232,"Simulated","C","HL",2.53320000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2233,"Simulated","C","HL",2.72070000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2234,"Simulated","C","HL",2.97830000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2235,"Simulated","C","HL",3.04420000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2236,"Simulated","C","HL",2.5958 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2237,"Simulated","C","HL",2.63900000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2238,"Simulated","C","HL",2.64100000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2239,"Simulated","C","HL",2.62600000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2240,"Simulated","C","HL",2.54040000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2241,"Simulated","C","HL",2.59890000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2242,"Simulated","C","HL",2.87430000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2243,"Simulated","C","HL",2.63320000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2244,"Simulated","C","HL",2.85910000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2245,"Simulated","C","HL",2.95050000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2246,"Simulated","C","HL",2.87360000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2247,"Simulated","C","HL",2.41550000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2248,"Simulated","C","HL",2.79830000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2249,"Simulated","C","HL",2.8802 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2250,"Simulated","C","HL",2.79910000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2251,"Simulated","C","HL",2.82980000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2252,"Simulated","C","HL",3.25540000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2253,"Simulated","C","HL",2.98500000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2254,"Simulated","C","HL",3.09910000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2255,"Simulated","C","HL",3.05500000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2256,"Simulated","C","HL",3.00460000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2257,"Simulated","C","HL",3.30400000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2258,"Simulated","C","HL",3.02510000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2259,"Simulated","C","HL",2.82650000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2260,"Simulated","C","HL",2.7226 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2261,"Simulated","C","HL",3.26240000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2262,"Simulated","C","HL",3.10599999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2263,"Simulated","C","HL",3.02680000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2264,"Simulated","C","HL",3.07480000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2265,"Simulated","C","HL",2.77210000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2266,"Simulated","C","HL",3.1345 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2267,"Simulated","C","HL",3.47140000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2268,"Simulated","C","HL",3.66060000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2269,"Simulated","C","HL",3.38840000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2270,"Simulated","C","HL",3.2681 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2271,"Simulated","C","HL",3.55350000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2272,"Simulated","C","HL",3.52850000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2273,"Simulated","C","HL",3.3501 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2274,"Simulated","C","HL",3.39430000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2275,"Simulated","C","HL",3.32370000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2276,"Simulated","C","HL",3.5822 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2277,"Simulated","C","HL",3.68210000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2278,"Simulated","C","HL",3.66030000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2279,"Simulated","C","HL",3.69310000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2280,"Simulated","C","HL",3.19980000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2281,"Simulated","C","HL",3.2842 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2282,"Simulated","C","HL",3.44 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2283,"Simulated","C","HL",3.52430000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2284,"Simulated","C","HL",3.3519 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2285,"Simulated","C","HL",3.77850000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2286,"Simulated","C","HL",3.76980000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2287,"Simulated","C","HL",3.45860000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2288,"Simulated","C","HL",3.45120000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2289,"Simulated","C","HL",3.53200000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2290,"Simulated","C","HL",3.5763 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2291,"Simulated","C","HL",3.72640000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2292,"Simulated","C","HL",3.64260000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2293,"Simulated","C","HL",3.39440000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2294,"Simulated","C","HL",3.52160000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2295,"Simulated","C","HL",3.88460000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2296,"Simulated","C","HL",3.93620000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2297,"Simulated","C","HL",3.70320000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2298,"Simulated","C","HL",3.71690000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2299,"Simulated","C","HL",3.76530000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2300,"Simulated","C","HL",3.92140000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",18.366575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",18.349325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",18.467575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",18.535025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",18.52985 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",18.5269 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",18.542675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",18.551275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",18.578325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",18.586175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",18.631675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",18.7304 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",18.6337 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",18.727875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",18.80905 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",18.767425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",18.827275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",18.892075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",18.918425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",18.91265 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",19.00665 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",19.06855 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",19.055025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",19.0994 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",19.123075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",19.204925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",19.288775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",19.17775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",19.266175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",19.386625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",19.43245 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",19.421875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",19.45985 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",19.51605 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",19.5437 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",19.5421 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",19.654125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",19.741625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",19.813425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",19.806675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",19.8309 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",19.911375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",19.97275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",20.04405 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",20.07975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",20.15045 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",20.242 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",20.3179 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",20.354025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",20.3398 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",20.4492 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",20.405425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",20.5474 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",20.614825 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",20.5979 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",20.627825 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",20.739825 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",20.786075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",20.8936 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",20.951225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",20.97285 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",20.948375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",21.0818 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",21.199825 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",21.31615 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",21.243875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",21.22195 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",21.3678 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",21.396625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",21.41725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",21.466725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",21.558675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",21.609375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",21.745025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",21.786725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",21.8389 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",21.89895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",21.933525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",22.01205 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",22.08095 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",22.00315 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",22.155925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",22.198725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",22.2085 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",22.402525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",22.46005 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",22.4895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",22.4904 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",22.575675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",22.6177 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",22.6872 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",22.80725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",22.78415 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",22.809875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",22.8772 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2101,"Simulated","C","LL",23.1424 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2102,"Simulated","C","LL",23.1328 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2103,"Simulated","C","LL",23.068 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2104,"Simulated","C","LL",23.2192 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2105,"Simulated","C","LL",23.2198 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2106,"Simulated","C","LL",23.2253 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2107,"Simulated","C","LL",23.381 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2108,"Simulated","C","LL",23.216 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2109,"Simulated","C","LL",23.256 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2110,"Simulated","C","LL",23.3288 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2111,"Simulated","C","LL",23.4368 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2112,"Simulated","C","LL",23.3701 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2113,"Simulated","C","LL",23.5857 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2114,"Simulated","C","LL",23.4964000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2115,"Simulated","C","LL",23.6647 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2116,"Simulated","C","LL",23.604 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2117,"Simulated","C","LL",23.6997 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2118,"Simulated","C","LL",23.8779 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2119,"Simulated","C","LL",23.9615 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2120,"Simulated","C","LL",24.0523 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2121,"Simulated","C","LL",24.0924 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2122,"Simulated","C","LL",24.2344000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2123,"Simulated","C","LL",24.1042 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2124,"Simulated","C","LL",24.3082 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2125,"Simulated","C","LL",24.4042 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2126,"Simulated","C","LL",24.3546 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2127,"Simulated","C","LL",24.2674 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2128,"Simulated","C","LL",24.2072 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2129,"Simulated","C","LL",24.33 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2130,"Simulated","C","LL",24.3197 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2131,"Simulated","C","LL",24.5086 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2132,"Simulated","C","LL",24.4986 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2133,"Simulated","C","LL",24.7391 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2134,"Simulated","C","LL",24.6945 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2135,"Simulated","C","LL",24.78 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2136,"Simulated","C","LL",24.6897 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2137,"Simulated","C","LL",24.6923 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2138,"Simulated","C","LL",24.8854 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2139,"Simulated","C","LL",25.0133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2140,"Simulated","C","LL",24.9033 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2141,"Simulated","C","LL",25.0266 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2142,"Simulated","C","LL",24.7965 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2143,"Simulated","C","LL",24.9272 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2144,"Simulated","C","LL",24.9909 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2145,"Simulated","C","LL",24.9985 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2146,"Simulated","C","LL",25.1407 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2147,"Simulated","C","LL",25.2355 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2148,"Simulated","C","LL",25.4177 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2149,"Simulated","C","LL",25.2875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2150,"Simulated","C","LL",25.5348 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2151,"Simulated","C","LL",25.561 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2152,"Simulated","C","LL",25.3517000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2153,"Simulated","C","LL",25.6286 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2154,"Simulated","C","LL",25.6643 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2155,"Simulated","C","LL",25.6522000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2156,"Simulated","C","LL",25.7978 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2157,"Simulated","C","LL",25.8809 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2158,"Simulated","C","LL",25.73 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2159,"Simulated","C","LL",25.8457 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2160,"Simulated","C","LL",25.9214 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2161,"Simulated","C","LL",25.8582 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2162,"Simulated","C","LL",26.0003 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2163,"Simulated","C","LL",25.9613000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2164,"Simulated","C","LL",25.9888 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2165,"Simulated","C","LL",26.2556 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2166,"Simulated","C","LL",26.2479 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2167,"Simulated","C","LL",26.0748 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2168,"Simulated","C","LL",26.1138 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2169,"Simulated","C","LL",26.405 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2170,"Simulated","C","LL",26.3155 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2171,"Simulated","C","LL",26.439 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2172,"Simulated","C","LL",26.414 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2173,"Simulated","C","LL",26.2833 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2174,"Simulated","C","LL",26.3852 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2175,"Simulated","C","LL",26.4883 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2176,"Simulated","C","LL",26.5454 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2177,"Simulated","C","LL",26.575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2178,"Simulated","C","LL",26.7331 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2179,"Simulated","C","LL",26.7374 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2180,"Simulated","C","LL",26.7573 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2181,"Simulated","C","LL",26.8491 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2182,"Simulated","C","LL",26.6692 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2183,"Simulated","C","LL",26.8558 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2184,"Simulated","C","LL",26.8759 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2185,"Simulated","C","LL",26.7356 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2186,"Simulated","C","LL",26.8618 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2187,"Simulated","C","LL",26.7906 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2188,"Simulated","C","LL",26.8462 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2189,"Simulated","C","LL",26.8343 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2190,"Simulated","C","LL",27.1983 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2191,"Simulated","C","LL",27.1351 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2192,"Simulated","C","LL",26.9523 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2193,"Simulated","C","LL",27.1312 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2194,"Simulated","C","LL",27.1315 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2195,"Simulated","C","LL",27.2202 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2196,"Simulated","C","LL",27.196 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2197,"Simulated","C","LL",27.3669 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2198,"Simulated","C","LL",27.3842 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2199,"Simulated","C","LL",27.487 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2200,"Simulated","C","LL",27.5567 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2201,"Simulated","C","LL",27.4874 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2202,"Simulated","C","LL",27.6092 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2203,"Simulated","C","LL",27.5577 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2204,"Simulated","C","LL",27.5389 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2205,"Simulated","C","LL",27.583 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2206,"Simulated","C","LL",27.6399 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2207,"Simulated","C","LL",27.5624 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2208,"Simulated","C","LL",27.4586 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2209,"Simulated","C","LL",27.7379 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2210,"Simulated","C","LL",27.7584 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2211,"Simulated","C","LL",27.7541000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2212,"Simulated","C","LL",27.6271 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2213,"Simulated","C","LL",27.7043 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2214,"Simulated","C","LL",27.9344 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2215,"Simulated","C","LL",28.1588 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2216,"Simulated","C","LL",28.0133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2217,"Simulated","C","LL",27.9473 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2218,"Simulated","C","LL",28.0814 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2219,"Simulated","C","LL",28.103 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2220,"Simulated","C","LL",27.9534 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2221,"Simulated","C","LL",27.9156 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2222,"Simulated","C","LL",28.1223 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2223,"Simulated","C","LL",28.2412 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2224,"Simulated","C","LL",28.116 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2225,"Simulated","C","LL",28.0571 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2226,"Simulated","C","LL",28.1207 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2227,"Simulated","C","LL",28.3204 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2228,"Simulated","C","LL",28.2663 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2229,"Simulated","C","LL",28.2638 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2230,"Simulated","C","LL",28.3243000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2231,"Simulated","C","LL",28.4236 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2232,"Simulated","C","LL",28.6099 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2233,"Simulated","C","LL",28.4384 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2234,"Simulated","C","LL",28.4463 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2235,"Simulated","C","LL",28.5565 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2236,"Simulated","C","LL",28.4272 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2237,"Simulated","C","LL",28.3365 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2238,"Simulated","C","LL",28.2726 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2239,"Simulated","C","LL",28.54 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2240,"Simulated","C","LL",28.6131 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2241,"Simulated","C","LL",28.5517 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2242,"Simulated","C","LL",28.655 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2243,"Simulated","C","LL",28.5942 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2244,"Simulated","C","LL",28.7026 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2245,"Simulated","C","LL",28.8232 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2246,"Simulated","C","LL",28.7554 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2247,"Simulated","C","LL",28.6128 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2248,"Simulated","C","LL",28.7058 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2249,"Simulated","C","LL",28.8755 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2250,"Simulated","C","LL",28.9456 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2251,"Simulated","C","LL",29.0232 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2252,"Simulated","C","LL",28.977 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2253,"Simulated","C","LL",28.8608 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2254,"Simulated","C","LL",28.8955 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2255,"Simulated","C","LL",29.0219 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2256,"Simulated","C","LL",29.0959 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2257,"Simulated","C","LL",29.0063 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2258,"Simulated","C","LL",29.0764 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2259,"Simulated","C","LL",29.0257 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2260,"Simulated","C","LL",29.0854 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2261,"Simulated","C","LL",29.0812 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2262,"Simulated","C","LL",29.2561 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2263,"Simulated","C","LL",29.1929 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2264,"Simulated","C","LL",29.1061 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2265,"Simulated","C","LL",28.9772 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2266,"Simulated","C","LL",29.2307 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2267,"Simulated","C","LL",29.3953 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2268,"Simulated","C","LL",29.1856 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2269,"Simulated","C","LL",29.1271 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2270,"Simulated","C","LL",29.2725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2271,"Simulated","C","LL",29.4368 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2272,"Simulated","C","LL",29.2385 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2273,"Simulated","C","LL",29.3732 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2274,"Simulated","C","LL",29.3193 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2275,"Simulated","C","LL",29.3508 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2276,"Simulated","C","LL",29.3577 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2277,"Simulated","C","LL",29.2653 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2278,"Simulated","C","LL",29.2333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2279,"Simulated","C","LL",29.0993 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2280,"Simulated","C","LL",29.176 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2281,"Simulated","C","LL",29.1677 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2282,"Simulated","C","LL",29.4066 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2283,"Simulated","C","LL",29.3212 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2284,"Simulated","C","LL",29.2549 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2285,"Simulated","C","LL",29.4279 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2286,"Simulated","C","LL",29.3813 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2287,"Simulated","C","LL",29.293 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2288,"Simulated","C","LL",29.5691 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2289,"Simulated","C","LL",29.6732 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2290,"Simulated","C","LL",29.3952 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2291,"Simulated","C","LL",29.4986 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2292,"Simulated","C","LL",29.5133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2293,"Simulated","C","LL",29.4646 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2294,"Simulated","C","LL",29.5475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2295,"Simulated","C","LL",29.5301 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2296,"Simulated","C","LL",29.5841 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2297,"Simulated","C","LL",29.6151 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2298,"Simulated","C","LL",29.6183 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2299,"Simulated","C","LL",29.5631 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2300,"Simulated","C","LL",29.5437 -"MIROC-ESM","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.202 -"MIROC-ESM","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",14.3933 -"MIROC-ESM","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",14.4654 -"MIROC-ESM","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",14.3291 -"MIROC-ESM","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",14.2502 -"MIROC-ESM","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",14.2864 -"MIROC-ESM","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",14.4749 -"MIROC-ESM","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",14.4236 -"MIROC-ESM","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",14.3401 -"MIROC-ESM","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",14.5606 -"MIROC-ESM","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.689 -"MIROC-ESM","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.5875 -"MIROC-ESM","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",14.724 -"MIROC-ESM","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",14.8304 -"MIROC-ESM","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",14.834 -"MIROC-ESM","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",14.9858 -"MIROC-ESM","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",14.944 -"MIROC-ESM","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",14.9551 -"MIROC-ESM","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",14.9809 -"MIROC-ESM","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",15.1635 -"MIROC-ESM","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",15.3027 -"MIROC-ESM","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",15.3563 -"MIROC-ESM","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",15.3131 -"MIROC-ESM","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",15.2473 -"MIROC-ESM","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",15.2658 -"MIROC-ESM","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",15.3517000000001 -"MIROC-ESM","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",15.4028 -"MIROC-ESM","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",15.6376 -"MIROC-ESM","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",15.6446 -"MIROC-ESM","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",15.5945 -"MIROC-ESM","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",15.5796 -"MIROC-ESM","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",15.6128 -"MIROC-ESM","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",15.7303 -"MIROC-ESM","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",15.8503 -"MIROC-ESM","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",15.8299 -"MIROC-ESM","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",15.81 -"MIROC-ESM","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",15.9122 -"MIROC-ESM","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",15.9305 -"MIROC-ESM","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",15.9086 -"MIROC-ESM","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",15.9003 -"MIROC-ESM","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",16.0445 -"MIROC-ESM","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",16.1329 -"MIROC-ESM","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",15.9927 -"MIROC-ESM","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",16.1295 -"MIROC-ESM","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",16.2941 -"MIROC-ESM","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",16.2357 -"MIROC-ESM","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",16.3408 -"MIROC-ESM","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",16.4829 -"MIROC-ESM","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",16.5165 -"MIROC-ESM","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",16.529 -"MIROC-ESM","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",16.5744 -"MIROC-ESM","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",16.5754 -"MIROC-ESM","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",16.7171 -"MIROC-ESM","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",16.6278 -"MIROC-ESM","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",16.7808 -"MIROC-ESM","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",16.8489 -"MIROC-ESM","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",16.7892000000001 -"MIROC-ESM","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",16.8458 -"MIROC-ESM","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",16.9736 -"MIROC-ESM","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",17.1673 -"MIROC-ESM","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",17.1814 -"MIROC-ESM","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",17.1506 -"MIROC-ESM","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",17.2497 -"MIROC-ESM","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",17.2576 -"MIROC-ESM","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",17.3111 -"MIROC-ESM","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",17.3238 -"MIROC-ESM","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",17.5517 -"MIROC-ESM","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",17.6927 -"MIROC-ESM","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",17.6813 -"MIROC-ESM","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",17.7063 -"MIROC-ESM","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",17.8522 -"MIROC-ESM","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",17.8572 -"MIROC-ESM","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",17.9471 -"MIROC-ESM","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",17.9174 -"MIROC-ESM","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",18.028 -"MIROC-ESM","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",18.1986 -"MIROC-ESM","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",18.2906 -"MIROC-ESM","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",18.3187 -"MIROC-ESM","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",18.4178 -"MIROC-ESM","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",18.4348 -"MIROC-ESM","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",18.3991 -"MIROC-ESM","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",18.5519 -"MIROC-ESM","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",18.6567 -"MIROC-ESM","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",18.6935 -"MIROC-ESM","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",18.7291 -"MIROC-ESM","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",18.7422 -"MIROC-ESM","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",18.7572 -"MIROC-ESM","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",18.8449 -"MIROC-ESM","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",18.8323 -"MIROC-ESM","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",19.0052 -"MIROC-ESM","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",19.1262 -"MIROC-ESM","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",19.3307 -"MIROC-ESM","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",19.2294 -"MIROC-ESM","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",19.2384 -"MIROC-ESM","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",19.5266 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-8.91229999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-8.7715 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-8.63200000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-8.8372 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-8.75529999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-8.86269999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-8.43189999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-8.44299999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-9.0025 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-8.17849999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-8.24559999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-8.16229999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-7.74779999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-7.92589999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-7.60759999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-7.29289999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-7.6807 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-7.69279999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-7.42749999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-7.10899999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-7.01869999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-6.78739999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-7.05949999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-7.24709999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-6.82619999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-6.83799999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-6.488 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-6.42499999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-6.46359999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-6.59639999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-6.64979999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-6.49309999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-6.50029999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-6.0378 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-6.0582 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-6.24679999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-6.04519999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-5.79699999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-5.68869999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-5.7122 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-5.80579999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-5.99629999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-6.15259999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-5.92089999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-5.6327 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-5.63599999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-5.63049999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-5.3657 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-4.96749999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-4.78999999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-4.96349999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-4.99289999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-4.74599999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-5.1782 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-4.9348 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-4.65349999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-4.66319999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-4.58699999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-4.45099999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-4.21179999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-4.19739999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-4.39179999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-4.2013 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-4.30779999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-3.95729999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-3.96749999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-3.82139999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-3.61219999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-3.56129999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-3.5505 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-3.17229999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-3.24160000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-3.09769999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-3.09829999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-3.00729999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-2.90749999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-2.69599999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-2.697 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-2.7373 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-2.73159999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-2.55859999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-2.83909999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-2.46849999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-2.47649999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-2.3519 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-2.23229999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-2.26049999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-2.07119999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-1.91209999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-1.90949999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-1.74160000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-1.52819999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-1.6431 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-1.76939999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-1.58599999999996 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",19.028 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",19.2298 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",19.2878 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",19.1659 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",19.0535 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",19.1197 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",19.2576 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",19.1979 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",19.2138 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",19.3082 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",19.4775 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",19.3374 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",19.4158 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",19.5816 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",19.5196 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",19.6374 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",19.6678 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",19.6838 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",19.6596 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",19.8138 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",19.9632 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",19.9796 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",19.9842 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",19.9438 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",19.8784 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",19.9847 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",19.9734 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",20.2441 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",20.2605 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",20.2277 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",20.2209 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",20.2282 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",20.3719 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",20.4203 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",20.3999 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",20.4152 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",20.4966 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",20.4669 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",20.4179 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",20.4127 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",20.6066 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",20.7533 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",20.6164 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",20.7333 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",20.8722 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",20.8023 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",20.9281 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",21.0446 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",21.0022 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",20.9802 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",21.0713 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",21.0787 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",21.1984 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",21.1806 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",21.3148 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",21.3384 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",21.2683 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",21.3207 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",21.4468 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",21.631 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",21.6451 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",21.6484 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",21.7284 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",21.7602 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",21.7517 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",21.7692 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",22.0141 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",22.1409 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",22.1165 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",22.1445000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",22.2419 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",22.2624 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",22.341 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",22.3053 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",22.4199 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",22.6053 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",22.6724 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",22.7066 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",22.8347 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",22.8542 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",22.7749 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",23.0181 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",23.0674 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",23.1135 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",23.1306 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",23.1214000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",23.1455 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",23.212 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",23.1635 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",23.3719 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",23.4831 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",23.6858 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",23.5873 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",23.6246 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",23.9347 -"NorESM1-ME","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",13.5787 -"NorESM1-ME","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",13.5921 -"NorESM1-ME","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",13.7509 -"NorESM1-ME","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",13.5164 -"NorESM1-ME","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",13.6274 -"NorESM1-ME","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",13.7141 -"NorESM1-ME","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",13.5264 -"NorESM1-ME","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",13.6631 -"NorESM1-ME","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",13.6847 -"NorESM1-ME","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",13.7778 -"NorESM1-ME","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.0388 -"NorESM1-ME","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.0104 -"NorESM1-ME","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",13.8509 -"NorESM1-ME","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",13.7721 -"NorESM1-ME","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",13.7922 -"NorESM1-ME","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",13.9866 -"NorESM1-ME","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",14.0192 -"NorESM1-ME","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",13.9267 -"NorESM1-ME","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",13.9482 -"NorESM1-ME","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",14.067 -"NorESM1-ME","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",13.9889 -"NorESM1-ME","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",13.9444 -"NorESM1-ME","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",14.1017000000001 -"NorESM1-ME","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",14.2011 -"NorESM1-ME","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",14.1762 -"NorESM1-ME","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",14.1005 -"NorESM1-ME","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",14.0943 -"NorESM1-ME","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",14.3634 -"NorESM1-ME","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",14.3631 -"NorESM1-ME","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",14.4049 -"NorESM1-ME","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",14.3031 -"NorESM1-ME","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",14.3431 -"NorESM1-ME","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",14.3755 -"NorESM1-ME","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",14.3416 -"NorESM1-ME","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",14.4541 -"NorESM1-ME","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",14.4337 -"NorESM1-ME","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",14.5378 -"NorESM1-ME","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",14.6361 -"NorESM1-ME","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",14.6894 -"NorESM1-ME","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",14.6677 -"NorESM1-ME","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",14.6528 -"NorESM1-ME","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",14.7306 -"NorESM1-ME","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",14.8332 -"NorESM1-ME","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",14.8446 -"NorESM1-ME","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",14.8734 -"NorESM1-ME","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",14.9261 -"NorESM1-ME","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",14.9317 -"NorESM1-ME","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",15.0438 -"NorESM1-ME","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",15.0018 -"NorESM1-ME","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",14.9993 -"NorESM1-ME","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",15.0342 -"NorESM1-ME","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",15.19 -"NorESM1-ME","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",15.3843 -"NorESM1-ME","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",15.3742 -"NorESM1-ME","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",15.273 -"NorESM1-ME","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",15.4052 -"NorESM1-ME","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",15.5661 -"NorESM1-ME","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",15.513 -"NorESM1-ME","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",15.5474 -"NorESM1-ME","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",15.5308 -"NorESM1-ME","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",15.5682 -"NorESM1-ME","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",15.6305 -"NorESM1-ME","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",15.6958 -"NorESM1-ME","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",15.8399 -"NorESM1-ME","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",15.7553 -"NorESM1-ME","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",15.7936 -"NorESM1-ME","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",15.8538 -"NorESM1-ME","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",15.9938 -"NorESM1-ME","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",16.1745 -"NorESM1-ME","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",16.0713 -"NorESM1-ME","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",15.983 -"NorESM1-ME","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",16.1045 -"NorESM1-ME","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",16.0903 -"NorESM1-ME","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",16.1574 -"NorESM1-ME","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",16.215 -"NorESM1-ME","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",16.2614 -"NorESM1-ME","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",16.2582 -"NorESM1-ME","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",16.465 -"NorESM1-ME","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",16.5571 -"NorESM1-ME","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",16.6301 -"NorESM1-ME","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",16.4647000000001 -"NorESM1-ME","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",16.3301 -"NorESM1-ME","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",16.4732 -"NorESM1-ME","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",16.6094000000001 -"NorESM1-ME","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",16.611 -"NorESM1-ME","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",16.7349 -"NorESM1-ME","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",16.7527 -"NorESM1-ME","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",16.8445 -"NorESM1-ME","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",16.8906 -"NorESM1-ME","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",16.8266 -"NorESM1-ME","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",16.824 -"NorESM1-ME","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",16.8869 -"NorESM1-ME","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",16.9896 -"NorESM1-ME","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",17.0441 -"NorESM1-ME","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",17.3341 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-11.0749 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-11.2804 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-10.9907 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-11.5236 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-11.1799999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-11.0757 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-11.6268 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-11.1383 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-11.1057 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-10.7883 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-10.4578 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-10.5314 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-10.6307 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-10.7921 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-11.0531 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-10.7208 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-10.561 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-10.3616 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-10.6596 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-10.6023 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-10.8027 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-10.5529 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-10.2986 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-10.1952 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-10.3289 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-10.2932 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-10.5414 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-10.2019 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-10.1659 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-9.95589999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-10.2441 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-10.0063 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-10.0861 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-10.109 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-9.68629999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-10.2479 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-9.90879999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-9.66359999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-9.71299999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-9.6807 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-9.65789999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-9.43029999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-9.63279999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-9.38499999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-9.63279999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-9.18429999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-9.2355 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-9.13579999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-9.36249999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-9.05239999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-9.12709999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-8.94549999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-8.63549999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-8.55989999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-8.69689999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-8.57589999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-8.05489999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-8.32380000000001 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-8.23649999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-8.47559999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-8.23869999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-8.06279999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-8.06449999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-7.89959999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-8.03579999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-7.84449999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-7.72059999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-7.70519999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-7.23109999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-7.20549999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-7.54719999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-7.1764 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-7.19899999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-7.00849999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-6.8023 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-7.15949999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-7.15319999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-6.75729999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-6.45159999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-6.358 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-6.91679999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-7.28379999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-6.82709999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-6.54789999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-6.7998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-6.40799999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-6.26779999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-6.04649999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-6.25939999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-6.44039999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-6.22409999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-6.10399999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-6.56889999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-6.30419999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-5.7056 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",19.0445 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",19.1065 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",19.2361 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",19.0676 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",19.1275 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",19.2102 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",19.1027 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",19.1615 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",19.1808 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",19.2242 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",19.4697 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",19.4514 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",19.2786 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",19.2179 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",19.3005 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",19.4643 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",19.4687 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",19.3116 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",19.404 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",19.5363 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",19.4851 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",19.3754 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",19.5113 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",19.6098 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",19.6091 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",19.5086 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",19.5562 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",19.8096 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",19.8012 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",19.8057 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",19.7452 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",19.7414 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",19.7987 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",19.7624 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",19.8062 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",19.9056 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",19.9576 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",20.0234 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",20.0994 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",20.0651 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",20.0419 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",20.0867 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",20.2569 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",20.2157 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",20.3058 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",20.271 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",20.289 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",20.4038 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",20.4028 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",20.331 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",20.3903 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",20.5404 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",20.7091 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",20.6799 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",20.5866 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",20.7213 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",20.8026 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",20.7973 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",20.8200000000001 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",20.8527 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",20.8458 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",20.8829 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",20.9631 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",21.1025 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",21.0294 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",21.0338 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",21.0799 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",21.2476 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",21.3633 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",21.2316 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",21.1992 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",21.2655 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",21.2533 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",21.293 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",21.3176 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",21.4535 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",21.4482 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",21.6131 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",21.658 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",21.7264 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",21.648 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",21.5649 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",21.6387 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",21.7431 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",21.8009 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",21.8654 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",21.856 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",21.9192 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",22.0228 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",21.9846 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",21.9335 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",21.9838 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",22.2121 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",22.2201 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",22.4418 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp85/summary.csv b/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp85/summary.csv deleted file mode 100644 index 1e7e299e7..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/CMIP5/Hector_models_tas/rcp85/summary.csv +++ /dev/null @@ -1,886 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,tas,temperature,tgav,rcp85,C,Simulated,global,0.555121975,13.4116,15.0207,14.25550778,14.202,1,CMIP5 -2006,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.104652058,-11.0749,-7.7293,-9.330568889,-8.935375,1,CMIP5 -2006,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.707024621,18.366575,20.3123,19.40489944,19.1854,1,CMIP5 -2007,tas,temperature,tgav,rcp85,C,Simulated,global,0.577387863,13.450175,15.1295,14.26466611,14.3638,1,CMIP5 -2007,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.118368424,-11.2804,-7.8156,-9.319468889,-8.8601,1,CMIP5 -2007,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.728690378,18.349325,20.4277,19.41342944,19.2298,1,CMIP5 -2008,tas,temperature,tgav,rcp85,C,Simulated,global,0.562051329,13.5582,15.2107,14.35127222,14.4654,1,CMIP5 -2008,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.054014413,-10.9907,-7.7937,-9.174487222,-8.6744,1,CMIP5 -2008,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.722688649,18.467575,20.4317,19.48779278,19.2878,1,CMIP5 -2009,tas,temperature,tgav,rcp85,C,Simulated,global,0.599352522,13.5164,15.1682,14.35626111,14.3291,1,CMIP5 -2009,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.17404906,-11.5236,-7.7471,-9.180381111,-8.8372,1,CMIP5 -2009,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.725739695,18.535025,20.4337,19.49468556,19.2895,1,CMIP5 -2010,tas,temperature,tgav,rcp85,C,Simulated,global,0.575528791,13.6127,15.1788,14.37112056,14.2502,1,CMIP5 -2010,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.134925411,-11.18,-7.5845,-9.078385556,-8.7553,1,CMIP5 -2010,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.713050835,18.52985,20.394,19.49078056,19.3013,1,CMIP5 -2011,tas,temperature,tgav,rcp85,C,Simulated,global,0.573175655,13.609625,15.1829,14.37384,14.2864,1,CMIP5 -2011,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.051110706,-11.0757,-7.7498,-9.130115556,-8.8627,1,CMIP5 -2011,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.724189044,18.5269,20.3931,19.50562556,19.2381,1,CMIP5 -2012,tas,temperature,tgav,rcp85,C,Simulated,global,0.571224664,13.5264,15.0722,14.35952222,14.4749,1,CMIP5 -2012,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.25670816,-11.6268,-7.6124,-9.148015,-8.6466,1,CMIP5 -2012,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.69343517,18.542675,20.3187,19.49240944,19.2774,1,CMIP5 -2013,tas,temperature,tgav,rcp85,C,Simulated,global,0.564182642,13.627775,15.1302,14.38358278,14.4236,1,CMIP5 -2013,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.116181405,-11.1383,-7.809,-9.149878333,-8.6181,1,CMIP5 -2013,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.710900471,18.551275,20.3704,19.52218111,19.3887,1,CMIP5 -2014,tas,temperature,tgav,rcp85,C,Simulated,global,0.559977322,13.6656,15.15614,14.40374889,14.3401,1,CMIP5 -2014,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.159221115,-11.1057,-7.5128,-9.152291667,-9.0025,1,CMIP5 -2014,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.715167893,18.578325,20.39676,19.54618444,19.3771,1,CMIP5 -2015,tas,temperature,tgav,rcp85,C,Simulated,global,0.570851071,13.72395,15.2482,14.49895278,14.5606,1,CMIP5 -2015,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.124973859,-10.7883,-7.784475,-8.875552778,-8.205,1,CMIP5 -2015,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.735627678,18.586175,20.46284,19.60169611,19.4186,1,CMIP5 -2016,tas,temperature,tgav,rcp85,C,Simulated,global,0.529676001,13.7609,15.27766,14.54996778,14.689,1,CMIP5 -2016,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.051482182,-10.4578,-7.542775,-8.906656111,-8.6572,1,CMIP5 -2016,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.693552569,18.631675,20.48344,19.67085444,19.4775,1,CMIP5 -2017,tas,temperature,tgav,rcp85,C,Simulated,global,0.543025872,13.82285,15.234,14.54222556,14.5875,1,CMIP5 -2017,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.063883433,-10.5314,-7.3877,-8.848756667,-8.8921,1,CMIP5 -2017,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.70154294,18.7095,20.482,19.64935167,19.4514,1,CMIP5 -2018,tas,temperature,tgav,rcp85,C,Simulated,global,0.621962616,13.721125,15.3001,14.53983611,14.724,1,CMIP5 -2018,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.038433822,-10.6307,-7.729325,-8.874803333,-9.0096,1,CMIP5 -2018,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.764422086,18.6337,20.5506,19.65268389,19.4158,1,CMIP5 -2019,tas,temperature,tgav,rcp85,C,Simulated,global,0.651881689,13.7721,15.4094,14.59473444,14.8304,1,CMIP5 -2019,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.080051918,-10.7921,-7.4718,-8.793962222,-8.7777,1,CMIP5 -2019,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.780731353,18.6277,20.6279,19.70148,19.5816,1,CMIP5 -2020,tas,temperature,tgav,rcp85,C,Simulated,global,0.631330964,13.7922,15.4027,14.60199222,14.834,1,CMIP5 -2020,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.222447139,-11.0531,-7.3187,-8.818003889,-8.6672,1,CMIP5 -2020,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.747481276,18.7652,20.6083,19.71629111,19.5196,1,CMIP5 -2021,tas,temperature,tgav,rcp85,C,Simulated,global,0.590347764,13.87965,15.39848,14.65956167,14.955725,1,CMIP5 -2021,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.240933626,-10.7208,-7.2929,-8.753422778,-8.4918,1,CMIP5 -2021,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.737346368,18.767425,20.6396,19.77153333,19.6374,1,CMIP5 -2022,tas,temperature,tgav,rcp85,C,Simulated,global,0.576112362,13.9383,15.52448,14.68298667,14.944,1,CMIP5 -2022,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.178483706,-10.561,-7.4926,-8.729507778,-8.2071,1,CMIP5 -2022,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.735497434,18.7473,20.6923,19.79493056,19.6678,1,CMIP5 -2023,tas,temperature,tgav,rcp85,C,Simulated,global,0.626322658,13.9267,15.54526,14.69103444,14.926,1,CMIP5 -2023,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.089031267,-10.3616,-7.4834,-8.760609444,-8.6521,1,CMIP5 -2023,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.761506823,18.7932,20.7838,19.81140389,19.6838,1,CMIP5 -2024,tas,temperature,tgav,rcp85,C,Simulated,global,0.603164819,13.9482,15.59688,14.72557556,14.950375,1,CMIP5 -2024,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.136965916,-10.6596,-7.4275,-8.655507778,-8.5147,1,CMIP5 -2024,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.717893965,18.9084,20.74842,19.83127444,19.6596,1,CMIP5 -2025,tas,temperature,tgav,rcp85,C,Simulated,global,0.584599545,13.9731,15.60614,14.77837111,15.0238,1,CMIP5 -2025,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.290311248,-10.6023,-7.109,-8.658390556,-8.3047,1,CMIP5 -2025,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.709896231,18.91265,20.76116,19.89560667,19.8138,1,CMIP5 -2026,tas,temperature,tgav,rcp85,C,Simulated,global,0.620784807,13.9889,15.6213,14.81523889,15.1095,1,CMIP5 -2026,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.29554354,-10.8027,-7.0187,-8.587318889,-8.3043,1,CMIP5 -2026,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.723115172,18.9477,20.83448,19.92491444,19.9632,1,CMIP5 -2027,tas,temperature,tgav,rcp85,C,Simulated,global,0.666995125,13.9444,15.78436,14.90046778,15.156425,1,CMIP5 -2027,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.222542221,-10.5529,-6.7874,-8.327282222,-8.1303,1,CMIP5 -2027,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.766198744,18.9001,20.93938,19.97253944,19.9796,1,CMIP5 -2028,tas,temperature,tgav,rcp85,C,Simulated,global,0.622852957,14.1017,15.7436,14.95060556,15.185875,1,CMIP5 -2028,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.144047976,-10.2986,-7.034325,-8.316914444,-8.2073,1,CMIP5 -2028,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.748033998,18.9556,20.91404,20.03126,19.9842,1,CMIP5 -2029,tas,temperature,tgav,rcp85,C,Simulated,global,0.587713365,14.2011,15.7435,14.92348333,15.2052,1,CMIP5 -2029,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.184633951,-10.1952,-6.876075,-8.345513333,-8.0015,1,CMIP5 -2029,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.711478811,19.0549,20.90822,20.00346611,19.9438,1,CMIP5 -2030,tas,temperature,tgav,rcp85,C,Simulated,global,0.64618576,14.1762,15.80408,14.92696444,15.2658,1,CMIP5 -2030,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.209209632,-10.3289,-6.8262,-8.322305556,-8.2936,1,CMIP5 -2030,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.764014151,19.0009,20.95892,20.00353278,19.8784,1,CMIP5 -2031,tas,temperature,tgav,rcp85,C,Simulated,global,0.628751876,14.1005,15.8363,14.96875278,15.29035,1,CMIP5 -2031,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.23075049,-10.2932,-6.838,-8.314771667,-8.072,1,CMIP5 -2031,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.753137017,18.9617,21.01916,20.05269833,19.9847,1,CMIP5 -2032,tas,temperature,tgav,rcp85,C,Simulated,global,0.638634284,14.0943,15.99066,15.03039833,15.3108,1,CMIP5 -2032,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.389593128,-10.5414,-6.488,-8.17648,-7.8163,1,CMIP5 -2032,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.750176179,19.0452,21.1417,20.09836667,19.9734,1,CMIP5 -2033,tas,temperature,tgav,rcp85,C,Simulated,global,0.634409104,14.311025,15.93398,15.09465611,15.3934,1,CMIP5 -2033,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.262074504,-10.2019,-6.425,-8.037501667,-7.638075,1,CMIP5 -2033,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.748115434,19.0927,21.07132,20.14573833,20.2441,1,CMIP5 -2034,tas,temperature,tgav,rcp85,C,Simulated,global,0.665093747,14.3631,15.94178,15.14719778,15.422475,1,CMIP5 -2034,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.245544441,-10.1659,-6.4636,-7.977393333,-7.5721,1,CMIP5 -2034,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.787536777,19.0613,21.1067,20.19587833,20.2605,1,CMIP5 -2035,tas,temperature,tgav,rcp85,C,Simulated,global,0.649371415,14.4049,15.9791,15.15064722,15.492075,1,CMIP5 -2035,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.144531148,-9.9559,-6.586525,-7.983317222,-8.2145,1,CMIP5 -2035,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.754310467,19.0216,21.11164,20.20264333,20.2277,1,CMIP5 -2036,tas,temperature,tgav,rcp85,C,Simulated,global,0.628158003,14.3031,15.9981,15.17158056,15.511,1,CMIP5 -2036,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.267646381,-10.2441,-6.45625,-8.003641111,-7.8093,1,CMIP5 -2036,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.733607129,19.1104,21.15786,20.23150944,20.2209,1,CMIP5 -2037,tas,temperature,tgav,rcp85,C,Simulated,global,0.654998135,14.3431,16.137,15.22792222,15.5672,1,CMIP5 -2037,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.223770184,-10.0063,-6.312525,-7.888465,-7.505,1,CMIP5 -2037,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.747077649,19.2498,21.26934,20.27447944,20.2282,1,CMIP5 -2038,tas,temperature,tgav,rcp85,C,Simulated,global,0.681523451,14.3755,16.1379,15.26478056,15.5992,1,CMIP5 -2038,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.205220427,-10.0861,-6.307275,-7.920521667,-7.8748,1,CMIP5 -2038,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.762056545,19.2626,21.28544,20.32694889,20.3719,1,CMIP5 -2039,tas,temperature,tgav,rcp85,C,Simulated,global,0.725019189,14.3416,16.16506,15.31022333,15.727875,1,CMIP5 -2039,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.214082542,-10.109,-6.0378,-7.728662222,-7.9057,1,CMIP5 -2039,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.78580903,19.174,21.2935,20.34148889,20.4203,1,CMIP5 -2040,tas,temperature,tgav,rcp85,C,Simulated,global,0.691068544,14.4541,16.23586,15.35309833,15.738675,1,CMIP5 -2040,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.117093551,-9.6863,-6.0582,-7.625419444,-7.5922,1,CMIP5 -2040,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.767936413,19.2454,21.36034,20.37081556,20.3999,1,CMIP5 -2041,tas,temperature,tgav,rcp85,C,Simulated,global,0.707595958,14.4337,16.25276,15.324065,15.7135,1,CMIP5 -2041,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.274477112,-10.2479,-6.19365,-7.825153333,-8.2275,1,CMIP5 -2041,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.760545421,19.2846,21.3835,20.37955556,20.4152,1,CMIP5 -2042,tas,temperature,tgav,rcp85,C,Simulated,global,0.70968939,14.5378,16.36444,15.37779611,15.6993,1,CMIP5 -2042,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.211050931,-9.9088,-6.0452,-7.704290556,-7.96424,1,CMIP5 -2042,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.773202812,19.2102,21.44396,20.41872889,20.4966,1,CMIP5 -2043,tas,temperature,tgav,rcp85,C,Simulated,global,0.668450524,14.6361,16.41768,15.44193111,15.7274,1,CMIP5 -2043,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.308194503,-9.6636,-5.797,-7.646998889,-7.98944,1,CMIP5 -2043,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.749990865,19.2763,21.5136,20.48428611,20.4669,1,CMIP5 -2044,tas,temperature,tgav,rcp85,C,Simulated,global,0.66489074,14.6894,16.5099,15.50187222,15.8513,1,CMIP5 -2044,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.300062679,-9.713,-5.6887,-7.538621111,-7.5703,1,CMIP5 -2044,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.77728427,19.2868,21.62808,20.53352833,20.4179,1,CMIP5 -2045,tas,temperature,tgav,rcp85,C,Simulated,global,0.695264424,14.6677,16.4892,15.52618056,15.9003,1,CMIP5 -2045,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.27762193,-9.6807,-5.7122,-7.508197222,-7.7167,1,CMIP5 -2045,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.790507006,19.3231,21.5623,20.55616111,20.4127,1,CMIP5 -2046,tas,temperature,tgav,rcp85,C,Simulated,global,0.739178532,14.599,16.52766,15.53002611,15.8507,1,CMIP5 -2046,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.232896456,-9.6579,-5.8015,-7.502017778,-7.527,1,CMIP5 -2046,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.812727649,19.2478,21.62522,20.55909667,20.6066,1,CMIP5 -2047,tas,temperature,tgav,rcp85,C,Simulated,global,0.728708509,14.7194,16.6611,15.58841667,15.7835,1,CMIP5 -2047,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.160298715,-9.4303,-5.749675,-7.389258333,-7.3836,1,CMIP5 -2047,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.795911256,19.3593,21.76566,20.60543444,20.7533,1,CMIP5 -2048,tas,temperature,tgav,rcp85,C,Simulated,global,0.69509436,14.8316,16.6767,15.63680556,15.8595,1,CMIP5 -2048,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.23397283,-9.6328,-5.518825,-7.376913333,-7.71,1,CMIP5 -2048,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.765454182,19.4447,21.77162,20.66213278,20.6164,1,CMIP5 -2049,tas,temperature,tgav,rcp85,C,Simulated,global,0.709435253,14.8025,16.6917,15.69913889,16.0676,1,CMIP5 -2049,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.203318781,-9.385,-5.55785,-7.289556667,-7.5798,1,CMIP5 -2049,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.797463683,19.3929,21.78892,20.718605,20.7333,1,CMIP5 -2050,tas,temperature,tgav,rcp85,C,Simulated,global,0.73841695,14.854,16.7989,15.77473056,16.0861,1,CMIP5 -2050,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.367917271,-9.6328,-5.35805,-7.213883333,-7.336,1,CMIP5 -2050,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.824184433,19.3948,21.86294,20.79423222,20.8722,1,CMIP5 -2051,tas,temperature,tgav,rcp85,C,Simulated,global,0.750072204,14.7889,16.88592,15.76261611,15.9898,1,CMIP5 -2051,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.278607561,-9.1843,-5.159275,-7.16161,-7.35804,1,CMIP5 -2051,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.822963116,19.3941,21.9478,20.76811667,20.8023,1,CMIP5 -2052,tas,temperature,tgav,rcp85,C,Simulated,global,0.724249483,14.8785,16.82604,15.810185,16.0357,1,CMIP5 -2052,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.299411591,-9.2355,-5.12395,-7.143267222,-7.2402,1,CMIP5 -2052,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.776973209,19.5183,21.85836,20.82150667,20.9281,1,CMIP5 -2053,tas,temperature,tgav,rcp85,C,Simulated,global,0.739657598,14.8778,16.81074,15.88871,16.213,1,CMIP5 -2053,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.292010658,-9.1358,-5.115575,-6.961403889,-7.1458,1,CMIP5 -2053,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.820989504,19.4042,21.8603,20.87758889,21.0446,1,CMIP5 -2054,tas,temperature,tgav,rcp85,C,Simulated,global,0.780694129,14.9843,16.92226,15.92564278,16.274,1,CMIP5 -2054,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.391574459,-9.3625,-4.9675,-6.93898,-7.25752,1,CMIP5 -2054,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.817979089,19.5849,21.97072,20.91853278,21.0022,1,CMIP5 -2055,tas,temperature,tgav,rcp85,C,Simulated,global,0.783068511,14.9993,17.03604,15.98017667,16.3128,1,CMIP5 -2055,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.327298314,-9.0524,-4.79,-6.767083333,-7.1606,1,CMIP5 -2055,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.825666975,19.646,22.09412,20.94763278,20.9802,1,CMIP5 -2056,tas,temperature,tgav,rcp85,C,Simulated,global,0.733570941,15.0342,17.01862,16.02213556,16.2741,1,CMIP5 -2056,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.340220433,-9.1271,-4.9635,-6.752334444,-6.9799,1,CMIP5 -2056,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.785180603,19.6892,22.06296,20.99540111,21.0713,1,CMIP5 -2057,tas,temperature,tgav,rcp85,C,Simulated,global,0.750242492,15.1849,17.09418,16.08461722,16.4709,1,CMIP5 -2057,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.296232444,-8.9455,-4.815425,-6.678814444,-6.7881,1,CMIP5 -2057,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.827578719,19.7412,22.13932,21.05570222,21.0787,1,CMIP5 -2058,tas,temperature,tgav,rcp85,C,Simulated,global,0.794899909,15.1204,17.19916,16.15944833,16.5329,1,CMIP5 -2058,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.279458318,-8.6355,-4.600525,-6.531825556,-6.91748,1,CMIP5 -2058,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.85803588,19.6611,22.23446,21.11477889,21.1984,1,CMIP5 -2059,tas,temperature,tgav,rcp85,C,Simulated,global,0.776332057,15.2719,17.2552,16.20365,16.4274,1,CMIP5 -2059,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.263028487,-8.5599,-4.488375,-6.540209444,-6.93146,1,CMIP5 -2059,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.827368536,19.8152,22.3051,21.17004444,21.1806,1,CMIP5 -2060,tas,temperature,tgav,rcp85,C,Simulated,global,0.785778981,15.273,17.29774,16.25991833,16.5071,1,CMIP5 -2060,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.26679357,-8.6969,-4.4452,-6.320292222,-6.7113,1,CMIP5 -2060,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.826330786,19.8494,22.32276,21.19112889,21.3148,1,CMIP5 -2061,tas,temperature,tgav,rcp85,C,Simulated,global,0.747838266,15.3288,17.2953,16.29115833,16.5166,1,CMIP5 -2061,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.259134114,-8.5759,-4.4995,-6.334218333,-6.7448,1,CMIP5 -2061,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.797488071,19.8614,22.32988,21.23235056,21.3384,1,CMIP5 -2062,tas,temperature,tgav,rcp85,C,Simulated,global,0.79916012,15.289,17.46632,16.31720222,16.5474,1,CMIP5 -2062,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.176341252,-8.0549,-4.5746,-6.291108333,-6.4745,1,CMIP5 -2062,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.845193288,19.8959,22.4649,21.25501111,21.2683,1,CMIP5 -2063,tas,temperature,tgav,rcp85,C,Simulated,global,0.790466404,15.4325,17.47304,16.37899333,16.581,1,CMIP5 -2063,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.258510625,-8.3238,-4.3954,-6.220283889,-6.51528,1,CMIP5 -2063,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.830346728,19.9353,22.48156,21.31462333,21.3207,1,CMIP5 -2064,tas,temperature,tgav,rcp85,C,Simulated,global,0.784464461,15.4681,17.52136,16.44293444,16.6448,1,CMIP5 -2064,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.257424709,-8.2365,-4.26495,-6.108060556,-6.41672,1,CMIP5 -2064,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.81509078,19.9953,22.51938,21.367545,21.4468,1,CMIP5 -2065,tas,temperature,tgav,rcp85,C,Simulated,global,0.825051845,15.4892,17.5213,16.50120278,16.8369,1,CMIP5 -2065,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.368975383,-8.4756,-4.105725,-6.016765,-6.2076,1,CMIP5 -2065,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.839257833,19.9849,22.52608,21.41879222,21.631,1,CMIP5 -2066,tas,temperature,tgav,rcp85,C,Simulated,global,0.813459137,15.5682,17.55382,16.57578,16.8635,1,CMIP5 -2066,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.278409636,-8.2387,-4.1974,-5.902353889,-6.2349,1,CMIP5 -2066,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.847133858,20.137,22.56516,21.48493444,21.6451,1,CMIP5 -2067,tas,temperature,tgav,rcp85,C,Simulated,global,0.826380375,15.6237,17.68086,16.59556222,16.7745,1,CMIP5 -2067,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.240940151,-8.0628,-4.029425,-5.880658333,-6.2125,1,CMIP5 -2067,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.879220376,20.0435,22.66952,21.503955,21.6484,1,CMIP5 -2068,tas,temperature,tgav,rcp85,C,Simulated,global,0.799088607,15.6654,17.73024,16.64496,16.7596,1,CMIP5 -2068,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.339939604,-8.0645,-3.94825,-5.872811667,-6.18748,1,CMIP5 -2068,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.855117885,20.0391,22.72398,21.56312556,21.7284,1,CMIP5 -2069,tas,temperature,tgav,rcp85,C,Simulated,global,0.756028339,15.7431,17.72206,16.71522611,16.8654,1,CMIP5 -2069,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.274972781,-7.8996,-3.795175,-5.742150556,-6.12698,1,CMIP5 -2069,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.809586242,20.1939,22.70148,21.61929222,21.7602,1,CMIP5 -2070,tas,temperature,tgav,rcp85,C,Simulated,global,0.845278037,15.5978,17.78648,16.72263111,16.9852,1,CMIP5 -2070,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.407079278,-8.0358,-3.7742,-5.732447778,-6.01788,1,CMIP5 -2070,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.868905787,20.1661,22.75656,21.62681222,21.7517,1,CMIP5 -2071,tas,temperature,tgav,rcp85,C,Simulated,global,0.816979591,15.7936,17.85268,16.77201167,17.0579,1,CMIP5 -2071,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.348516733,-7.8445,-3.62405,-5.681707778,-5.95352,1,CMIP5 -2071,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.856901155,20.2799,22.82314,21.67561833,21.7692,1,CMIP5 -2072,tas,temperature,tgav,rcp85,C,Simulated,global,0.829405954,15.8538,17.9122,16.83798611,17.0237,1,CMIP5 -2072,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.331737989,-7.7206,-3.684975,-5.650518333,-5.86454,1,CMIP5 -2072,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.860293755,20.3054,22.87652,21.749305,22.0141,1,CMIP5 -2073,tas,temperature,tgav,rcp85,C,Simulated,global,0.815963598,15.8822,17.94464,16.91696556,17.0976,1,CMIP5 -2073,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.375138591,-7.7052,-3.595425,-5.536608889,-5.71828,1,CMIP5 -2073,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.84580066,20.3054,22.88516,21.82079833,22.1409,1,CMIP5 -2074,tas,temperature,tgav,rcp85,C,Simulated,global,0.799727364,15.891,18.0106,16.93498889,17.1266,1,CMIP5 -2074,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.339202975,-7.2311,-3.52595,-5.487370556,-5.81246,1,CMIP5 -2074,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.850548488,20.332,22.98456,21.83081778,22.1165,1,CMIP5 -2075,tas,temperature,tgav,rcp85,C,Simulated,global,0.833035865,15.9676,18.10782,16.97336889,17.2443,1,CMIP5 -2075,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.317175031,-7.2055,-3.491775,-5.392086111,-5.602,1,CMIP5 -2075,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.886857848,20.3889,23.05814,21.85697111,22.1445,1,CMIP5 -2076,tas,temperature,tgav,rcp85,C,Simulated,global,0.863262055,15.983,18.17624,17.03777667,17.1383,1,CMIP5 -2076,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.398044912,-7.5472,-3.1723,-5.228527778,-5.7059,1,CMIP5 -2076,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.895233967,20.4344,23.16256,21.90012056,22.2419,1,CMIP5 -2077,tas,temperature,tgav,rcp85,C,Simulated,global,0.861424703,16.0291,18.17648,17.072595,17.2158,1,CMIP5 -2077,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.366363933,-7.1764,-3.197525,-5.213986667,-5.60958,1,CMIP5 -2077,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.898497714,20.4494,23.14274,21.93966,22.2624,1,CMIP5 -2078,tas,temperature,tgav,rcp85,C,Simulated,global,0.894249109,16.0312,18.27032,17.12613556,17.3271,1,CMIP5 -2078,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.409318388,-7.199,-3.043275,-5.16928,-5.47352,1,CMIP5 -2078,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.91806641,20.4408,23.2278,21.99506389,22.341,1,CMIP5 -2079,tas,temperature,tgav,rcp85,C,Simulated,global,0.887151117,16.0132,18.42962,17.19969667,17.3182,1,CMIP5 -2079,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.354112496,-7.0085,-3.010925,-5.090936667,-5.17498,1,CMIP5 -2079,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.92604664,20.4266,23.35802,22.06764111,22.3053,1,CMIP5 -2080,tas,temperature,tgav,rcp85,C,Simulated,global,0.900141106,16.0377,18.40174,17.26010444,17.5354,1,CMIP5 -2080,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.434539153,-6.8023,-2.759075,-5.061555556,-5.2567,1,CMIP5 -2080,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.938335663,20.4637,23.34136,22.13399,22.4199,1,CMIP5 -2081,tas,temperature,tgav,rcp85,C,Simulated,global,0.923442386,16.1449,18.40682,17.30641333,17.5909,1,CMIP5 -2081,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.508183944,-7.1595,-2.72895,-5.079456111,-5.03768,1,CMIP5 -2081,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.919375547,20.6425,23.30176,22.19449556,22.6053,1,CMIP5 -2082,tas,temperature,tgav,rcp85,C,Simulated,global,0.947900761,16.0795,18.41054,17.31391833,17.6067,1,CMIP5 -2082,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.546552456,-7.1532,-2.676775,-5.052419444,-5.0615,1,CMIP5 -2082,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.946531612,20.5617,23.31126,22.19788444,22.6724,1,CMIP5 -2083,tas,temperature,tgav,rcp85,C,Simulated,global,0.920039553,16.1325,18.56948,17.37775333,17.5421,1,CMIP5 -2083,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.514141533,-6.7573,-2.601425,-4.973159444,-4.89346,1,CMIP5 -2083,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.915065612,20.6169,23.46826,22.25854,22.7066,1,CMIP5 -2084,tas,temperature,tgav,rcp85,C,Simulated,global,0.941543333,16.1517,18.63472,17.42338,17.5132,1,CMIP5 -2084,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.404135925,-6.4516,-2.657075,-4.864887778,-4.87714,1,CMIP5 -2084,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.928936996,20.6356,23.54376,22.29057333,22.6885,1,CMIP5 -2085,tas,temperature,tgav,rcp85,C,Simulated,global,0.926061577,16.1283,18.6052,17.46299722,17.6199,1,CMIP5 -2085,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.339790878,-6.358,-2.6406,-4.777846667,-4.87702,1,CMIP5 -2085,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.94489059,20.5604,23.50806,22.32021222,22.7453,1,CMIP5 -2086,tas,temperature,tgav,rcp85,C,Simulated,global,0.944597906,16.1855,18.68192,17.48428,17.6594,1,CMIP5 -2086,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.533537706,-6.9168,-2.317375,-4.756333333,-4.7133,1,CMIP5 -2086,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.960891011,20.5886,23.56662,22.34088278,22.7749,1,CMIP5 -2087,tas,temperature,tgav,rcp85,C,Simulated,global,0.991098578,16.2595,18.81518,17.57056167,17.8012,1,CMIP5 -2087,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.477292008,-7.2838,-2.280625,-4.669653333,-4.61468,1,CMIP5 -2087,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.98781787,20.6916,23.70708,22.42672278,22.858,1,CMIP5 -2088,tas,temperature,tgav,rcp85,C,Simulated,global,0.974435264,16.3492,18.81132,17.64588833,17.8745,1,CMIP5 -2088,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.436972857,-6.8271,-2.152825,-4.457591111,-4.67142,1,CMIP5 -2088,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.976347585,20.7561,23.71428,22.47232833,22.897,1,CMIP5 -2089,tas,temperature,tgav,rcp85,C,Simulated,global,0.97443957,16.4117,18.92322,17.69749389,17.8278,1,CMIP5 -2089,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.373970092,-6.5479,-2.1614,-4.357813889,-4.5098,1,CMIP5 -2089,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.986343407,20.7727,23.81578,22.51372278,22.9537,1,CMIP5 -2090,tas,temperature,tgav,rcp85,C,Simulated,global,0.97843754,16.3642,18.90958,17.73123111,17.8286,1,CMIP5 -2090,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.456403977,-6.7998,-2.03635,-4.351763333,-4.39192,1,CMIP5 -2090,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.970703065,20.7907,23.77466,22.55328444,22.9467,1,CMIP5 -2091,tas,temperature,tgav,rcp85,C,Simulated,global,0.994696242,16.4213,18.998,17.81380278,17.9977,1,CMIP5 -2091,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.431915151,-6.408,-1.873325,-4.240162778,-4.4312,1,CMIP5 -2091,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.97850269,20.8714,23.85454,22.629835,23.0804,1,CMIP5 -2092,tas,temperature,tgav,rcp85,C,Simulated,global,0.977127232,16.5454,19.07014,17.84708222,18.0616,1,CMIP5 -2092,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.429706203,-6.2678,-1.7648,-4.240982778,-4.332025,1,CMIP5 -2092,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.964610083,20.9914,23.92536,22.67022333,23.1455,1,CMIP5 -2093,tas,temperature,tgav,rcp85,C,Simulated,global,1.016802938,16.4394,19.19328,17.87222,17.9844,1,CMIP5 -2093,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.443732197,-6.0465,-1.79655,-4.188258889,-4.3929,1,CMIP5 -2093,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.003132375,20.8852,24.03782,22.68938833,23.0425,1,CMIP5 -2094,tas,temperature,tgav,rcp85,C,Simulated,global,0.979616048,16.5115,19.19684,17.90790444,18.0034,1,CMIP5 -2094,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.506872865,-6.2594,-1.7155,-4.153610556,-4.3081,1,CMIP5 -2094,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.950425302,20.9545,24.03016,22.72615111,23.0978,1,CMIP5 -2095,tas,temperature,tgav,rcp85,C,Simulated,global,1.009437118,16.5452,19.22524,17.96660722,18.1289,1,CMIP5 -2095,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.501708216,-6.4404,-1.6671,-4.063407222,-4.1983,1,CMIP5 -2095,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.984814322,20.972,24.05796,22.77788722,23.1644,1,CMIP5 -2096,tas,temperature,tgav,rcp85,C,Simulated,global,1.001883039,16.5657,19.22604,18.00638778,18.1724,1,CMIP5 -2096,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.520871687,-6.2241,-1.64185,-3.996793333,-4.0097,1,CMIP5 -2096,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.994969557,20.9566,24.06222,22.81147722,23.1526,1,CMIP5 -2097,tas,temperature,tgav,rcp85,C,Simulated,global,1.077754644,16.6205,19.36578,18.07938389,18.1344,1,CMIP5 -2097,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.551143091,-6.104,-1.3586,-3.851555,-3.9903,1,CMIP5 -2097,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.049941214,21.019,24.19762,22.86858278,23.2063,1,CMIP5 -2098,tas,temperature,tgav,rcp85,C,Simulated,global,1.071149926,16.6294,19.43854,18.10649611,18.1884,1,CMIP5 -2098,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.639032034,-6.5689,-1.21735,-3.868543333,-3.9728,1,CMIP5 -2098,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.034373389,21.026,24.26778,22.90551722,23.2946,1,CMIP5 -2099,tas,temperature,tgav,rcp85,C,Simulated,global,1.047025041,16.7045,19.50066,18.16640944,18.2358,1,CMIP5 -2099,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.59843384,-6.3042,-1.1121,-3.792791667,-3.871,1,CMIP5 -2099,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.010865951,21.0955,24.31516,22.96224,23.3028,1,CMIP5 -2100,tas,temperature,tgav,rcp85,C,Simulated,global,1.063901239,16.7697,19.5398,18.24737778,18.3124,1,CMIP5 -2100,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.50662179,-5.7056,-1.15315,-3.723127778,-3.9651,1,CMIP5 -2100,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.031711964,21.1946,24.36196,23.04481222,23.4194,1,CMIP5 -2101,tas,temperature,tgav,rcp85,C,Simulated,global,0.462712549,18.3579,19.2548,18.74053333,18.6089,1,CMIP5 -2101,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.572566561,-4.5459,-1.4132,-3.0602,-3.2215,1,CMIP5 -2101,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.443074858,23.1424,24.0147,23.5335,23.4434,1,CMIP5 -2102,tas,temperature,tgav,rcp85,C,Simulated,global,0.506359253,18.3202,19.3068,18.74753333,18.6156,1,CMIP5 -2102,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.66756552,-4.3731,-1.1206,-2.959833333,-3.3858,1,CMIP5 -2102,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.448464384,23.1328,24.0113,23.51983333,23.4154,1,CMIP5 -2103,tas,temperature,tgav,rcp85,C,Simulated,global,0.513911597,18.2095,19.2332,18.6948,18.6417,1,CMIP5 -2103,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.808303222,-4.4924,-1.0413,-3.079066667,-3.7035,1,CMIP5 -2103,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.417321183,23.068,23.9025,23.4808,23.4719,1,CMIP5 -2104,tas,temperature,tgav,rcp85,C,Simulated,global,0.426558816,18.3341,19.1872,18.76223333,18.7654,1,CMIP5 -2104,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.689250678,-4.422,-1.2026,-3.108066667,-3.6996,1,CMIP5 -2104,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.333542726,23.2192,23.8832,23.5697,23.6067,1,CMIP5 -2105,tas,temperature,tgav,rcp85,C,Simulated,global,0.469969925,18.4024,19.3369,18.8405,18.7822,1,CMIP5 -2105,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.802316091,-4.3814,-0.8688,-2.858733333,-3.326,1,CMIP5 -2105,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.385328254,23.2198,23.9903,23.60953333,23.6185,1,CMIP5 -2106,tas,temperature,tgav,rcp85,C,Simulated,global,0.503252365,18.4685,19.4731,18.98866667,19.0244,1,CMIP5 -2106,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.628641748,-3.8875,-0.7261,-2.533266667,-2.9862,1,CMIP5 -2106,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.456405898,23.2253,24.1251,23.71953333,23.8082,1,CMIP5 -2107,tas,temperature,tgav,rcp85,C,Simulated,global,0.497326254,18.6484,19.6104,19.05643333,18.9105,1,CMIP5 -2107,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.741990558,-3.979,-0.5324,-2.402633333,-2.6965,1,CMIP5 -2107,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.44027728,23.381,24.2495,23.77333333,23.6895,1,CMIP5 -2108,tas,temperature,tgav,rcp85,C,Simulated,global,0.706517778,18.42,19.8106,19.0429,18.8981,1,CMIP5 -2108,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.986906281,-4.0497,-0.2667,-2.5094,-3.2118,1,CMIP5 -2108,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.614338525,23.216,24.4346,23.77996667,23.6893,1,CMIP5 -2109,tas,temperature,tgav,rcp85,C,Simulated,global,0.702120937,18.484,19.8551,19.082,18.9069,1,CMIP5 -2109,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.863313716,-4.1285,-0.4974,-2.554966667,-3.039,1,CMIP5 -2109,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.651801238,23.256,24.5424,23.83826667,23.7164,1,CMIP5 -2110,tas,temperature,tgav,rcp85,C,Simulated,global,0.663421073,18.5687,19.8607,19.1275,18.9531,1,CMIP5 -2110,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.965054331,-4.015,-0.1938,-2.369633333,-2.9001,1,CMIP5 -2110,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.582262976,23.3288,24.4794,23.85226667,23.7486,1,CMIP5 -2111,tas,temperature,tgav,rcp85,C,Simulated,global,0.575954133,18.688,19.8188,19.19003333,19.0633,1,CMIP5 -2111,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.814903117,-3.9803,-0.4042,-2.371833333,-2.731,1,CMIP5 -2111,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.521851917,23.4368,24.4762,23.92916667,23.8745,1,CMIP5 -2112,tas,temperature,tgav,rcp85,C,Simulated,global,0.604903521,18.6673,19.8593,19.2036,19.0842,1,CMIP5 -2112,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.030477856,-4.1172,-0.0884,-2.250033333,-2.5445,1,CMIP5 -2112,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.541735295,23.3701,24.4534,23.9173,23.9284,1,CMIP5 -2113,tas,temperature,tgav,rcp85,C,Simulated,global,0.529987003,18.8852,19.8259,19.21453333,18.9325,1,CMIP5 -2113,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.062652266,-4.2571,-0.1341,-2.2354,-2.315,1,CMIP5 -2113,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.439118553,23.5857,24.4228,23.92756667,23.7742,1,CMIP5 -2114,tas,temperature,tgav,rcp85,C,Simulated,global,0.576892078,18.7128,19.8484,19.2217,19.1039,1,CMIP5 -2114,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.045272014,-4.0514,-0.0676,-2.3275,-2.8635,1,CMIP5 -2114,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.469666492,23.4964,24.4352,23.95666667,23.9384,1,CMIP5 -2115,tas,temperature,tgav,rcp85,C,Simulated,global,0.697918737,18.7791,20.1199,19.33746667,19.1134,1,CMIP5 -2115,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.252673414,-3.9312,0.2636,-2.3083,-3.2573,1,CMIP5 -2115,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.534662532,23.6647,24.693,24.09416667,23.9248,1,CMIP5 -2116,tas,temperature,tgav,rcp85,C,Simulated,global,0.706417752,18.7765,20.1219,19.3247,19.0757,1,CMIP5 -2116,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.899391182,-3.6456,-0.0798,-2.240833333,-2.9971,1,CMIP5 -2116,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.622985401,23.604,24.7746,24.0661,23.8197,1,CMIP5 -2117,tas,temperature,tgav,rcp85,C,Simulated,global,0.686252551,18.9167,20.2127,19.43426667,19.1734,1,CMIP5 -2117,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.043481356,-3.9097,0.0859,-2.159966667,-2.6561,1,CMIP5 -2117,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.596638855,23.6997,24.848,24.18016667,23.9928,1,CMIP5 -2118,tas,temperature,tgav,rcp85,C,Simulated,global,0.568937407,19.0511,20.1369,19.49576667,19.2993,1,CMIP5 -2118,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.025124818,-3.5907,0.2706,-2.013,-2.7189,1,CMIP5 -2118,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.435499556,23.8779,24.7122,24.22283333,24.0784,1,CMIP5 -2119,tas,temperature,tgav,rcp85,C,Simulated,global,0.620572905,19.0644,20.2451,19.5443,19.3234,1,CMIP5 -2119,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.150122983,-3.7259,0.2993,-2.150133333,-3.0238,1,CMIP5 -2119,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.464367498,23.9615,24.8387,24.31203333,24.1359,1,CMIP5 -2120,tas,temperature,tgav,rcp85,C,Simulated,global,0.625891239,19.148,20.3301,19.62016667,19.3824,1,CMIP5 -2120,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.140015524,-3.6571,0.3442,-2.095033333,-2.9722,1,CMIP5 -2120,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.473178744,24.0523,24.933,24.39266667,24.1927,1,CMIP5 -2121,tas,temperature,tgav,rcp85,C,Simulated,global,0.519596597,19.2391,20.2164,19.62576667,19.4218,1,CMIP5 -2121,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.001207359,-3.3597,0.4059,-1.868433333,-2.6515,1,CMIP5 -2121,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.374005013,24.0924,24.7789,24.3499,24.1784,1,CMIP5 -2122,tas,temperature,tgav,rcp85,C,Simulated,global,0.482924414,19.476,20.3228,19.7653,19.4971,1,CMIP5 -2122,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.833922078,-3.3177,0.3247,-1.621,-1.87,1,CMIP5 -2122,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.400536902,24.2344,24.9285,24.466,24.2351,1,CMIP5 -2123,tas,temperature,tgav,rcp85,C,Simulated,global,0.560225538,19.375,20.3744,19.72846667,19.436,1,CMIP5 -2123,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.830727348,-3.045,0.5271,-1.491033333,-1.9552,1,CMIP5 -2123,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.478448214,24.1042,24.9454,24.39313333,24.1298,1,CMIP5 -2124,tas,temperature,tgav,rcp85,C,Simulated,global,0.541179382,19.5315,20.4744,19.84953333,19.5427,1,CMIP5 -2124,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.797017315,-2.7169,0.6871,-1.3478,-2.0136,1,CMIP5 -2124,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.455555617,24.1902,25.0316,24.51,24.3082,1,CMIP5 -2125,tas,temperature,tgav,rcp85,C,Simulated,global,0.570292197,19.5734,20.5867,19.9289,19.6266,1,CMIP5 -2125,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.088542387,-2.7604,1.0986,-1.292433333,-2.2155,1,CMIP5 -2125,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.420212629,24.3008,25.0748,24.59326667,24.4042,1,CMIP5 -2126,tas,temperature,tgav,rcp85,C,Simulated,global,0.553490352,19.504,20.521,19.8863,19.6339,1,CMIP5 -2126,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.959790954,-2.6625,0.867,-1.389833333,-2.374,1,CMIP5 -2126,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.420174761,24.2891,25.0474,24.5637,24.3546,1,CMIP5 -2127,tas,temperature,tgav,rcp85,C,Simulated,global,0.641707039,19.4157,20.648,19.92833333,19.7213,1,CMIP5 -2127,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.928214742,-2.4795,0.8662,-1.3603,-2.4676,1,CMIP5 -2127,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.516890998,24.2674,25.2039,24.60926667,24.3565,1,CMIP5 -2128,tas,temperature,tgav,rcp85,C,Simulated,global,0.701018804,19.3974,20.7367,19.94733333,19.7079,1,CMIP5 -2128,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.036708561,-2.7002,1.0118,-1.328433333,-2.2969,1,CMIP5 -2128,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.574315787,24.2072,25.2794,24.62436667,24.3865,1,CMIP5 -2129,tas,temperature,tgav,rcp85,C,Simulated,global,0.579860331,19.5432,20.6311,19.97116667,19.7392,1,CMIP5 -2129,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.024868028,-2.9304,0.9338,-1.3481,-2.0477,1,CMIP5 -2129,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.44813662,24.33,25.1675,24.6566,24.4723,1,CMIP5 -2130,tas,temperature,tgav,rcp85,C,Simulated,global,0.580968054,19.5343,20.6593,20.0129,19.8451,1,CMIP5 -2130,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.819006763,-2.4599,0.8756,-1.211433333,-2.05,1,CMIP5 -2130,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.473460456,24.3197,25.2156,24.67913333,24.5021,1,CMIP5 -2131,tas,temperature,tgav,rcp85,C,Simulated,global,0.622837542,19.6926,20.7866,20.06763333,19.7237,1,CMIP5 -2131,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.920794342,-2.5675,0.9954,-1.200733333,-2.0301,1,CMIP5 -2131,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.524481868,24.3779,25.3446,24.7437,24.5086,1,CMIP5 -2132,tas,temperature,tgav,rcp85,C,Simulated,global,0.644017681,19.678,20.8612,20.12266667,19.8288,1,CMIP5 -2132,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.996701962,-2.441,1.1899,-1.105466667,-2.0653,1,CMIP5 -2132,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.521473013,24.4785,25.3916,24.78956667,24.4986,1,CMIP5 -2133,tas,temperature,tgav,rcp85,C,Simulated,global,0.628666401,19.8245,20.9357,20.21026667,19.8706,1,CMIP5 -2133,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.162961331,-2.7448,1.2866,-1.182,-2.0878,1,CMIP5 -2133,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.485873073,24.5367,25.461,24.91226667,24.7391,1,CMIP5 -2134,tas,temperature,tgav,rcp85,C,Simulated,global,0.714536894,19.8105,21.0639,20.23903333,19.8427,1,CMIP5 -2134,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.183885501,-2.6968,1.302,-1.2046,-2.219,1,CMIP5 -2134,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.578360951,24.5486,25.6153,24.9528,24.6945,1,CMIP5 -2135,tas,temperature,tgav,rcp85,C,Simulated,global,0.769701438,19.7632,21.1613,20.27626667,19.9043,1,CMIP5 -2135,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.365151387,-3.0077,1.4708,-1.208033333,-2.0872,1,CMIP5 -2135,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.618824474,24.5175,25.6962,24.9979,24.78,1,CMIP5 -2136,tas,temperature,tgav,rcp85,C,Simulated,global,0.84663087,19.7508,21.2483,20.2714,19.8151,1,CMIP5 -2136,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.614165642,-2.7563,1.8826,-1.133033333,-2.5254,1,CMIP5 -2136,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.640058094,24.5277,25.7084,24.97526667,24.6897,1,CMIP5 -2137,tas,temperature,tgav,rcp85,C,Simulated,global,0.792731482,19.8928,21.2669,20.35153333,19.8949,1,CMIP5 -2137,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.391342995,-2.5349,1.9457,-0.7775,-1.7433,1,CMIP5 -2137,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.627967597,24.5754,25.7168,24.99483333,24.6923,1,CMIP5 -2138,tas,temperature,tgav,rcp85,C,Simulated,global,0.75460582,19.8861,21.2827,20.41926667,20.089,1,CMIP5 -2138,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.382435334,-2.9325,1.7089,-0.9229,-1.5451,1,CMIP5 -2138,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.602033786,24.6504,25.7906,25.1088,24.8854,1,CMIP5 -2139,tas,temperature,tgav,rcp85,C,Simulated,global,0.780037198,19.9148,21.3795,20.4921,20.182,1,CMIP5 -2139,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.223449503,-2.5634,1.675,-0.832666667,-1.6096,1,CMIP5 -2139,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.670402364,24.608,25.9175,25.1796,25.0133,1,CMIP5 -2140,tas,temperature,tgav,rcp85,C,Simulated,global,0.740869424,19.9727,21.3216,20.47013333,20.1161,1,CMIP5 -2140,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.091392862,-2.6838,1.3881,-0.924033333,-1.4764,1,CMIP5 -2140,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.648230031,24.7031,25.9125,25.17296667,24.9033,1,CMIP5 -2141,tas,temperature,tgav,rcp85,C,Simulated,global,0.839804912,19.9656,21.5185,20.5573,20.1878,1,CMIP5 -2141,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.256545209,-2.5852,1.7098,-0.8378,-1.638,1,CMIP5 -2141,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.731849946,24.6739,26.0805,25.26033333,25.0266,1,CMIP5 -2142,tas,temperature,tgav,rcp85,C,Simulated,global,0.814786156,19.9708,21.4276,20.4884,20.0668,1,CMIP5 -2142,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.235384496,-2.463,1.6993,-0.852933333,-1.7951,1,CMIP5 -2142,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.685782519,24.7707,25.9712,25.17946667,24.7965,1,CMIP5 -2143,tas,temperature,tgav,rcp85,C,Simulated,global,0.77185428,20.1328,21.4841,20.593,20.1621,1,CMIP5 -2143,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.288009852,-2.3539,2.0201,-0.555066667,-1.3314,1,CMIP5 -2143,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.630868386,24.8278,25.9668,25.2406,24.9272,1,CMIP5 -2144,tas,temperature,tgav,rcp85,C,Simulated,global,0.757669653,20.1177,21.4536,20.57916667,20.1662,1,CMIP5 -2144,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.417445658,-2.3132,2.1864,-0.5741,-1.5955,1,CMIP5 -2144,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.582342977,24.801,25.8911,25.22766667,24.9909,1,CMIP5 -2145,tas,temperature,tgav,rcp85,C,Simulated,global,0.777565305,20.08,21.4655,20.56886667,20.1611,1,CMIP5 -2145,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.49766684,-2.2726,2.3278,-0.534366667,-1.6583,1,CMIP5 -2145,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.591083556,24.747,25.8731,25.2062,24.9985,1,CMIP5 -2146,tas,temperature,tgav,rcp85,C,Simulated,global,0.716310214,20.2636,21.5373,20.71113333,20.3325,1,CMIP5 -2146,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.34858136,-1.734,2.4405,-0.268366667,-1.5116,1,CMIP5 -2146,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.544476394,24.8933,25.9354,25.32313333,25.1407,1,CMIP5 -2147,tas,temperature,tgav,rcp85,C,Simulated,global,0.688313594,20.3002,21.5506,20.75916667,20.4267,1,CMIP5 -2147,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.336940498,-2.0114,2.3582,-0.305466667,-1.2632,1,CMIP5 -2147,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.52311384,24.9586,25.9708,25.3883,25.2355,1,CMIP5 -2148,tas,temperature,tgav,rcp85,C,Simulated,global,0.725726043,20.2362,21.6345,20.823,20.5983,1,CMIP5 -2148,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.365353232,-1.9288,2.5053,-0.1877,-1.1396,1,CMIP5 -2148,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.588384322,24.864,26.0401,25.4406,25.4177,1,CMIP5 -2149,tas,temperature,tgav,rcp85,C,Simulated,global,0.712892147,20.2807,21.6189,20.80776667,20.5237,1,CMIP5 -2149,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.223836964,-1.8459,2.3705,-0.146333333,-0.9636,1,CMIP5 -2149,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.585961606,24.9004,26.0519,25.41326667,25.2875,1,CMIP5 -2150,tas,temperature,tgav,rcp85,C,Simulated,global,0.70204644,20.2503,21.6262,20.85743333,20.6958,1,CMIP5 -2150,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.443454328,-2.1057,2.5289,-0.235833333,-1.1307,1,CMIP5 -2150,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.554517096,24.9179,26.0245,25.4924,25.5348,1,CMIP5 -2151,tas,temperature,tgav,rcp85,C,Simulated,global,0.701735651,20.1941,21.5864,20.83923333,20.7372,1,CMIP5 -2151,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.39802114,-2.2949,2.3464,-0.3231,-1.0208,1,CMIP5 -2151,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.567351834,24.8896,26.0175,25.48936667,25.561,1,CMIP5 -2152,tas,temperature,tgav,rcp85,C,Simulated,global,0.656515377,20.3665,21.5913,20.8423,20.5691,1,CMIP5 -2152,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.404633646,-2.1187,2.4905,-0.210366667,-1.0029,1,CMIP5 -2152,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.475294123,25.0612,25.9903,25.46773333,25.3517,1,CMIP5 -2153,tas,temperature,tgav,rcp85,C,Simulated,global,0.665332601,20.3743,21.6719,20.938,20.7678,1,CMIP5 -2153,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.482604427,-2.1463,2.562,-0.247233333,-1.1574,1,CMIP5 -2153,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.499366973,25.0764,26.0732,25.59273333,25.6286,1,CMIP5 -2154,tas,temperature,tgav,rcp85,C,Simulated,global,0.675885474,20.4386,21.7542,21.00673333,20.8274,1,CMIP5 -2154,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.377624384,-1.6611,2.7517,0.0338,-0.9892,1,CMIP5 -2154,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.540579729,25.0527,26.1306,25.61586667,25.6643,1,CMIP5 -2155,tas,temperature,tgav,rcp85,C,Simulated,global,0.601504273,20.5314,21.6986,21.0309,20.8627,1,CMIP5 -2155,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.092911351,-1.5849,2.3879,0.020933333,-0.7402,1,CMIP5 -2155,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.498507075,25.1491,26.1461,25.64913333,25.6522,1,CMIP5 -2156,tas,temperature,tgav,rcp85,C,Simulated,global,0.550805919,20.6345,21.7087,21.1011,20.9601,1,CMIP5 -2156,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.125302174,-1.5535,2.4247,0.0034,-0.861,1,CMIP5 -2156,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.444400859,25.2671,26.1499,25.73826667,25.7978,1,CMIP5 -2157,tas,temperature,tgav,rcp85,C,Simulated,global,0.551594274,20.6612,21.742,21.13776667,21.0101,1,CMIP5 -2157,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.20009731,-1.5386,2.5286,0.010266667,-0.9592,1,CMIP5 -2157,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.443894008,25.2962,26.1671,25.7814,25.8809,1,CMIP5 -2158,tas,temperature,tgav,rcp85,C,Simulated,global,0.71507388,20.5134,21.889,21.08826667,20.8624,1,CMIP5 -2158,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.321315434,-1.5058,2.7051,0.035266667,-1.0935,1,CMIP5 -2158,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.598373431,25.1107,26.3072,25.71596667,25.73,1,CMIP5 -2159,tas,temperature,tgav,rcp85,C,Simulated,global,0.68569301,20.6621,21.993,21.23206667,21.0411,1,CMIP5 -2159,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.159162032,-1.3149,2.7201,0.2585,-0.6297,1,CMIP5 -2159,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.590505972,25.2506,26.4316,25.84263333,25.8457,1,CMIP5 -2160,tas,temperature,tgav,rcp85,C,Simulated,global,0.729296252,20.6795,22.1144,21.32136667,21.1702,1,CMIP5 -2160,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.227397599,-1.2755,2.9887,0.484466667,-0.2598,1,CMIP5 -2160,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.628089662,25.2635,26.5192,25.90136667,25.9214,1,CMIP5 -2161,tas,temperature,tgav,rcp85,C,Simulated,global,0.726616398,20.7232,22.1123,21.2945,21.048,1,CMIP5 -2161,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.207680698,-1.1898,2.8759,0.345933333,-0.6483,1,CMIP5 -2161,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.623138968,25.2984,26.5426,25.89973333,25.8582,1,CMIP5 -2162,tas,temperature,tgav,rcp85,C,Simulated,global,0.737586621,20.7714,22.2065,21.39036667,21.1932,1,CMIP5 -2162,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.165580717,-0.944,3.0136,0.526833333,-0.4891,1,CMIP5 -2162,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.660994985,25.3054,26.6268,25.9775,26.0003,1,CMIP5 -2163,tas,temperature,tgav,rcp85,C,Simulated,global,0.750651746,20.7229,22.187,21.35906667,21.1673,1,CMIP5 -2163,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.098804319,-1.1007,2.8139,0.4192,-0.4556,1,CMIP5 -2163,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.684601909,25.2795,26.6487,25.96316667,25.9613,1,CMIP5 -2164,tas,temperature,tgav,rcp85,C,Simulated,global,0.683222968,20.741,22.0877,21.34753333,21.2139,1,CMIP5 -2164,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.15911946,-1.0292,3.0129,0.553233333,-0.324,1,CMIP5 -2164,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.600233824,25.2864,26.4807,25.91863333,25.9888,1,CMIP5 -2165,tas,temperature,tgav,rcp85,C,Simulated,global,0.724570668,20.7248,22.1734,21.46053333,21.4834,1,CMIP5 -2165,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.112145034,-1.2343,2.8714,0.531633333,-0.0422,1,CMIP5 -2165,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.675818499,25.3097,26.6188,26.06136667,26.2556,1,CMIP5 -2166,tas,temperature,tgav,rcp85,C,Simulated,global,0.710351774,20.9137,22.3244,21.57046667,21.4733,1,CMIP5 -2166,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.169280536,-1.107,3.0621,0.630933333,-0.0623,1,CMIP5 -2166,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.627932345,25.5114,26.7606,26.1733,26.2479,1,CMIP5 -2167,tas,temperature,tgav,rcp85,C,Simulated,global,0.740745073,20.874,22.3187,21.50163333,21.3122,1,CMIP5 -2167,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.234638244,-0.9141,3.2744,0.730066667,-0.1701,1,CMIP5 -2167,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.640830901,25.4231,26.7047,26.06753333,26.0748,1,CMIP5 -2168,tas,temperature,tgav,rcp85,C,Simulated,global,0.753827381,20.913,22.3804,21.5468,21.347,1,CMIP5 -2168,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.23356663,-0.9539,3.2519,0.7144,-0.1548,1,CMIP5 -2168,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.653686326,25.4786,26.7858,26.12606667,26.1138,1,CMIP5 -2169,tas,temperature,tgav,rcp85,C,Simulated,global,0.735119643,21.04,22.4953,21.7073,21.5866,1,CMIP5 -2169,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.148193723,-0.7387,3.2424,0.7855,-0.1472,1,CMIP5 -2169,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.676476787,25.5871,26.9294,26.30716667,26.405,1,CMIP5 -2170,tas,temperature,tgav,rcp85,C,Simulated,global,0.739289742,20.9867,22.4544,21.66886667,21.5655,1,CMIP5 -2170,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.09269635,-0.9894,3.0656,0.738866667,0.1404,1,CMIP5 -2170,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.673448706,25.5751,26.9197,26.2701,26.3155,1,CMIP5 -2171,tas,temperature,tgav,rcp85,C,Simulated,global,0.802147343,21.0445,22.6399,21.7935,21.6961,1,CMIP5 -2171,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.20034107,-0.8385,3.4128,0.958966667,0.3026,1,CMIP5 -2171,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.729510969,25.6134,27.068,26.37346667,26.439,1,CMIP5 -2172,tas,temperature,tgav,rcp85,C,Simulated,global,0.792518469,21.1844,22.7243,21.84593333,21.6291,1,CMIP5 -2172,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.187270985,-0.2833,3.6595,1.141066667,0.047,1,CMIP5 -2172,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.724322794,25.6667,27.1151,26.3986,26.414,1,CMIP5 -2173,tas,temperature,tgav,rcp85,C,Simulated,global,0.898466968,21.1776,22.855,21.83026667,21.4582,1,CMIP5 -2173,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.150338352,-0.3722,3.3851,0.9024,-0.3057,1,CMIP5 -2173,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.841164217,25.6769,27.3391,26.4331,26.2833,1,CMIP5 -2174,tas,temperature,tgav,rcp85,C,Simulated,global,0.914245571,21.049,22.825,21.81143333,21.5603,1,CMIP5 -2174,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.31422292,-0.8027,3.4721,0.822466667,-0.202,1,CMIP5 -2174,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.83610551,25.6114,27.2821,26.42623333,26.3852,1,CMIP5 -2175,tas,temperature,tgav,rcp85,C,Simulated,global,0.866639966,21.1682,22.8687,21.9216,21.7279,1,CMIP5 -2175,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.116319977,-0.6122,3.4095,1.017733333,0.2559,1,CMIP5 -2175,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.81765647,25.7157,27.3502,26.51806667,26.4883,1,CMIP5 -2176,tas,temperature,tgav,rcp85,C,Simulated,global,0.814880668,21.2109,22.818,21.93626667,21.7799,1,CMIP5 -2176,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.103422371,-0.3635,3.5604,1.1606,0.2849,1,CMIP5 -2176,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.769708785,25.7154,27.2532,26.50466667,26.5454,1,CMIP5 -2177,tas,temperature,tgav,rcp85,C,Simulated,global,0.730761541,21.2798,22.7223,21.9332,21.7975,1,CMIP5 -2177,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.001288338,-0.2044,3.4658,1.1697,0.2477,1,CMIP5 -2177,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.698989299,25.7654,27.1572,26.4992,26.575,1,CMIP5 -2178,tas,temperature,tgav,rcp85,C,Simulated,global,0.796908479,21.2034,22.7962,21.98336667,21.9505,1,CMIP5 -2178,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.10146222,-0.4624,3.5241,1.146533333,0.3779,1,CMIP5 -2178,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.767832549,25.727,27.2348,26.56496667,26.7331,1,CMIP5 -2179,tas,temperature,tgav,rcp85,C,Simulated,global,0.732697655,21.2335,22.6971,21.94436667,21.9025,1,CMIP5 -2179,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.237068937,-0.5023,3.636,1.0759,0.094,1,CMIP5 -2179,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.681274631,25.7717,27.087,26.53203333,26.7374,1,CMIP5 -2180,tas,temperature,tgav,rcp85,C,Simulated,global,0.716964158,21.3064,22.7399,22.01303333,21.9928,1,CMIP5 -2180,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.265562538,-0.6712,3.7056,1.178733333,0.5018,1,CMIP5 -2180,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.630752957,25.8951,27.1237,26.59203333,26.7573,1,CMIP5 -2181,tas,temperature,tgav,rcp85,C,Simulated,global,0.727013948,21.4066,22.8534,22.0882,22.0046,1,CMIP5 -2181,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.207080484,-0.5158,3.5975,1.078466667,0.1537,1,CMIP5 -2181,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.663757765,25.9837,27.2882,26.707,26.8491,1,CMIP5 -2182,tas,temperature,tgav,rcp85,C,Simulated,global,0.744707345,21.4857,22.9392,22.1186,21.9309,1,CMIP5 -2182,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.132095686,-0.1646,3.8364,1.410133333,0.5586,1,CMIP5 -2182,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.666302404,26.006,27.3386,26.67126667,26.6692,1,CMIP5 -2183,tas,temperature,tgav,rcp85,C,Simulated,global,0.780233057,21.395,22.9471,22.12446667,22.0313,1,CMIP5 -2183,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.236745485,-0.2859,3.8361,1.273333333,0.2698,1,CMIP5 -2183,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.724591646,25.9218,27.3484,26.70866667,26.8558,1,CMIP5 -2184,tas,temperature,tgav,rcp85,C,Simulated,global,0.834889216,21.4273,23.0812,22.18793333,22.0553,1,CMIP5 -2184,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.291430165,-0.2213,3.9871,1.359133333,0.3116,1,CMIP5 -2184,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.771507591,25.9472,27.4787,26.76726667,26.8759,1,CMIP5 -2185,tas,temperature,tgav,rcp85,C,Simulated,global,0.870416063,21.3895,23.0916,22.13513333,21.9243,1,CMIP5 -2185,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.426698416,-0.3149,4.1312,1.346333333,0.2227,1,CMIP5 -2185,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.768956774,25.9212,27.4582,26.705,26.7356,1,CMIP5 -2186,tas,temperature,tgav,rcp85,C,Simulated,global,0.925263229,21.3412,23.1815,22.20526667,22.0931,1,CMIP5 -2186,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.350230253,-0.3827,4.084,1.428066667,0.5829,1,CMIP5 -2186,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.854881694,25.8769,27.5797,26.7728,26.8618,1,CMIP5 -2187,tas,temperature,tgav,rcp85,C,Simulated,global,0.810102234,21.5518,23.1433,22.2599,22.0846,1,CMIP5 -2187,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.244118536,-0.0045,4.2411,1.698066667,0.8576,1,CMIP5 -2187,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.722059834,26.0525,27.4965,26.77986667,26.7906,1,CMIP5 -2188,tas,temperature,tgav,rcp85,C,Simulated,global,0.732539046,21.5334,22.99,22.21626667,22.1254,1,CMIP5 -2188,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.244285903,-0.1316,4.1466,1.615466667,0.8314,1,CMIP5 -2188,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.642592447,26.0568,27.3298,26.74426667,26.8462,1,CMIP5 -2189,tas,temperature,tgav,rcp85,C,Simulated,global,0.783054125,21.5258,23.0723,22.22773333,22.0851,1,CMIP5 -2189,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.142112313,0.17,4.1023,1.645266667,0.6635,1,CMIP5 -2189,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.731664912,25.9846,27.4412,26.75336667,26.8343,1,CMIP5 -2190,tas,temperature,tgav,rcp85,C,Simulated,global,0.783343509,21.6175,23.1841,22.39603333,22.3865,1,CMIP5 -2190,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.09270071,0.2186,4.0528,1.651233333,0.6823,1,CMIP5 -2190,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.78067271,26.0853,27.5901,26.9579,27.1983,1,CMIP5 -2191,tas,temperature,tgav,rcp85,C,Simulated,global,0.814668106,21.6225,23.2493,22.40966667,22.3572,1,CMIP5 -2191,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.256316162,0.0654,4.2908,1.720766667,0.8061,1,CMIP5 -2191,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.761652092,26.1234,27.6155,26.958,27.1351,1,CMIP5 -2192,tas,temperature,tgav,rcp85,C,Simulated,global,0.807054721,21.6278,23.2242,22.35716667,22.2195,1,CMIP5 -2192,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.17845702,-0.0116,4.1247,1.6614,0.8711,1,CMIP5 -2192,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.739639617,26.1458,27.623,26.90703333,26.9523,1,CMIP5 -2193,tas,temperature,tgav,rcp85,C,Simulated,global,0.737571043,21.641,23.1161,22.37533333,22.3689,1,CMIP5 -2193,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.113631489,0.1677,4.1353,1.7304,0.8882,1,CMIP5 -2193,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.706946196,26.1244,27.4875,26.91436667,27.1312,1,CMIP5 -2194,tas,temperature,tgav,rcp85,C,Simulated,global,0.791820794,21.6561,23.235,22.4102,22.3395,1,CMIP5 -2194,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.233683156,0.0014,4.181,1.635833333,0.7251,1,CMIP5 -2194,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.735174961,26.1773,27.6232,26.97733333,27.1315,1,CMIP5 -2195,tas,temperature,tgav,rcp85,C,Simulated,global,0.82654452,21.6602,23.3131,22.47943333,22.465,1,CMIP5 -2195,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.237114115,0.2013,4.4186,1.878566667,1.0158,1,CMIP5 -2195,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.783752036,26.1406,27.6646,27.00846667,27.2202,1,CMIP5 -2196,tas,temperature,tgav,rcp85,C,Simulated,global,0.828999566,21.661,23.3178,22.4712,22.4348,1,CMIP5 -2196,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.235184751,0.052,4.2964,1.7691,0.9589,1,CMIP5 -2196,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.777572588,26.1727,27.6985,27.0224,27.196,1,CMIP5 -2197,tas,temperature,tgav,rcp85,C,Simulated,global,0.780780996,21.7788,23.3403,22.56356667,22.5716,1,CMIP5 -2197,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.210843234,0.2906,4.4037,1.878666667,0.9417,1,CMIP5 -2197,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.751459708,26.2653,27.7015,27.11123333,27.3669,1,CMIP5 -2198,tas,temperature,tgav,rcp85,C,Simulated,global,0.731707485,21.8533,23.3149,22.60513333,22.6472,1,CMIP5 -2198,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.018572027,0.6552,4.422,2.1193,1.2807,1,CMIP5 -2198,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.733066391,26.2792,27.6662,27.10986667,27.3842,1,CMIP5 -2199,tas,temperature,tgav,rcp85,C,Simulated,global,0.789949595,21.7778,23.335,22.63343333,22.7875,1,CMIP5 -2199,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.957492417,0.6979,4.4452,2.244333333,1.5899,1,CMIP5 -2199,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.818481065,26.179,27.6854,27.11713333,27.487,1,CMIP5 -2200,tas,temperature,tgav,rcp85,C,Simulated,global,0.768004429,21.8349,23.3504,22.66486667,22.8093,1,CMIP5 -2200,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.136496422,0.4821,4.5536,2.143533333,1.3949,1,CMIP5 -2200,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.767416438,26.2931,27.6794,27.1764,27.5567,1,CMIP5 -2201,tas,temperature,tgav,rcp85,C,Simulated,global,0.809093173,21.8662,23.4814,22.70216667,22.7589,1,CMIP5 -2201,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.054901439,0.5291,4.4523,2.137266667,1.4304,1,CMIP5 -2201,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.804331812,26.3212,27.8639,27.22416667,27.4874,1,CMIP5 -2202,tas,temperature,tgav,rcp85,C,Simulated,global,0.893199308,21.8371,23.623,22.74223333,22.7666,1,CMIP5 -2202,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.14200008,0.6455,4.4866,2.018433333,0.9232,1,CMIP5 -2202,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.923853111,26.2617,28.0303,27.3004,27.6092,1,CMIP5 -2203,tas,temperature,tgav,rcp85,C,Simulated,global,0.858118974,21.8614,23.5726,22.75493333,22.8308,1,CMIP5 -2203,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.988011203,0.7141,4.4855,2.236333333,1.5094,1,CMIP5 -2203,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.882372217,26.2767,27.9684,27.2676,27.5577,1,CMIP5 -2204,tas,temperature,tgav,rcp85,C,Simulated,global,0.852961171,21.9049,23.6093,22.7779,22.8195,1,CMIP5 -2204,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.931933411,0.7929,4.447,2.257433333,1.5324,1,CMIP5 -2204,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.881311925,26.3128,28.0225,27.2914,27.5389,1,CMIP5 -2205,tas,temperature,tgav,rcp85,C,Simulated,global,0.87869306,21.8514,23.603,22.76833333,22.8506,1,CMIP5 -2205,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.939647844,0.759,4.4286,2.2306,1.5042,1,CMIP5 -2205,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.918611367,26.2553,28.0189,27.28573333,27.583,1,CMIP5 -2206,tas,temperature,tgav,rcp85,C,Simulated,global,0.931619901,21.852,23.7112,22.817,22.8878,1,CMIP5 -2206,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.216427699,0.9213,4.9984,2.457566667,1.453,1,CMIP5 -2206,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.94785401,26.2221,28.0208,27.29426667,27.6399,1,CMIP5 -2207,tas,temperature,tgav,rcp85,C,Simulated,global,0.895333426,21.92,23.7106,22.81976667,22.8287,1,CMIP5 -2207,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.143070009,0.8738,4.8501,2.400066667,1.4763,1,CMIP5 -2207,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.89702442,26.3142,28.0543,27.3103,27.5624,1,CMIP5 -2208,tas,temperature,tgav,rcp85,C,Simulated,global,0.870403339,22.0146,23.7438,22.82126667,22.7054,1,CMIP5 -2208,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.200762119,1.0048,4.9402,2.403433333,1.2653,1,CMIP5 -2208,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.846256722,26.4012,28.0744,27.3114,27.4586,1,CMIP5 -2209,tas,temperature,tgav,rcp85,C,Simulated,global,0.830064461,22.1181,23.7775,22.962,22.9904,1,CMIP5 -2209,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.140121053,0.9936,4.9572,2.509,1.5762,1,CMIP5 -2209,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.827502556,26.5287,28.1119,27.4595,27.7379,1,CMIP5 -2210,tas,temperature,tgav,rcp85,C,Simulated,global,0.933486675,21.9683,23.8329,22.92776667,22.9821,1,CMIP5 -2210,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.233953831,0.6604,4.8594,2.3192,1.4378,1,CMIP5 -2210,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.929592701,26.4171,28.2027,27.4594,27.7584,1,CMIP5 -2211,tas,temperature,tgav,rcp85,C,Simulated,global,0.967245222,21.9658,23.9002,22.9384,22.9492,1,CMIP5 -2211,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.222633421,0.953,4.9543,2.394633333,1.2766,1,CMIP5 -2211,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.989365438,26.353,28.2636,27.4569,27.7541,1,CMIP5 -2212,tas,temperature,tgav,rcp85,C,Simulated,global,0.833765333,22.1042,23.7685,22.9064,22.8465,1,CMIP5 -2212,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.056911887,1.0296,4.7123,2.3417,1.2832,1,CMIP5 -2212,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.843963441,26.5044,28.1573,27.4296,27.6271,1,CMIP5 -2213,tas,temperature,tgav,rcp85,C,Simulated,global,0.835178977,22.1058,23.7761,22.94496667,22.953,1,CMIP5 -2213,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.169505538,1.049,5.0208,2.5306,1.522,1,CMIP5 -2213,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.830329928,26.5022,28.0955,27.434,27.7043,1,CMIP5 -2214,tas,temperature,tgav,rcp85,C,Simulated,global,0.835163034,22.124,23.7768,23.02006667,23.1594,1,CMIP5 -2214,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.08839005,1.078,4.936,2.545,1.621,1,CMIP5 -2214,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.87479196,26.5182,28.116,27.52286667,27.9344,1,CMIP5 -2215,tas,temperature,tgav,rcp85,C,Simulated,global,0.943906897,22.0987,23.9564,23.1245,23.3184,1,CMIP5 -2215,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.291782453,0.9448,5.1566,2.5287,1.4847,1,CMIP5 -2215,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.987618967,26.5154,28.2861,27.65343333,28.1588,1,CMIP5 -2216,tas,temperature,tgav,rcp85,C,Simulated,global,0.882301088,22.1488,23.8891,23.1032,23.2717,1,CMIP5 -2216,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.055358145,1.2579,5.0894,2.743766667,1.884,1,CMIP5 -2216,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.93258465,26.5106,28.2188,27.5809,28.0133,1,CMIP5 -2217,tas,temperature,tgav,rcp85,C,Simulated,global,0.856218397,22.1241,23.812,23.05143333,23.2182,1,CMIP5 -2217,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.169217542,1.0591,5.1612,2.702433333,1.887,1,CMIP5 -2217,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.872653815,26.5223,28.1075,27.5257,27.9473,1,CMIP5 -2218,tas,temperature,tgav,rcp85,C,Simulated,global,0.924307829,22.0764,23.8741,23.09963333,23.3484,1,CMIP5 -2218,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.185072585,1.0589,5.225,2.760966667,1.999,1,CMIP5 -2218,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.959747828,26.4646,28.169,27.57166667,28.0814,1,CMIP5 -2219,tas,temperature,tgav,rcp85,C,Simulated,global,0.913109397,22.1376,23.9191,23.1443,23.3762,1,CMIP5 -2219,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.201332579,1.0579,5.2702,2.794366667,2.055,1,CMIP5 -2219,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.936753886,26.5389,28.2141,27.61866667,28.103,1,CMIP5 -2220,tas,temperature,tgav,rcp85,C,Simulated,global,0.866616201,22.208,23.9362,23.1102,23.1864,1,CMIP5 -2220,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.260601867,0.9151,5.1582,2.585966667,1.6846,1,CMIP5 -2220,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.853156017,26.6537,28.261,27.6227,27.9534,1,CMIP5 -2221,tas,temperature,tgav,rcp85,C,Simulated,global,0.898016227,22.1633,23.9512,23.10653333,23.2051,1,CMIP5 -2221,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.049257605,1.0357,4.9552,2.6496,1.9579,1,CMIP5 -2221,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.916075144,26.5745,28.3261,27.6054,27.9156,1,CMIP5 -2222,tas,temperature,tgav,rcp85,C,Simulated,global,0.880747605,22.2698,24.0149,23.21156667,23.35,1,CMIP5 -2222,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.066642461,1.1217,5.0004,2.648766667,1.8242,1,CMIP5 -2222,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.918226704,26.6853,28.3941,27.7339,28.1223,1,CMIP5 -2223,tas,temperature,tgav,rcp85,C,Simulated,global,0.919709043,22.2827,24.0904,23.28473333,23.4811,1,CMIP5 -2223,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.152168094,1.154,5.2355,2.800133333,2.0109,1,CMIP5 -2223,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.953354312,26.6941,28.4328,27.78936667,28.2412,1,CMIP5 -2224,tas,temperature,tgav,rcp85,C,Simulated,global,0.90611867,22.2453,24.0309,23.22746667,23.4062,1,CMIP5 -2224,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.220918356,0.9774,5.2772,2.805633333,2.1623,1,CMIP5 -2224,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.900813634,26.6859,28.3499,27.71726667,28.116,1,CMIP5 -2225,tas,temperature,tgav,rcp85,C,Simulated,global,0.926904677,22.244,24.0822,23.2324,23.371,1,CMIP5 -2225,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.256895003,0.8416,5.256,2.776866667,2.233,1,CMIP5 -2225,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.898788835,26.7125,28.418,27.7292,28.0571,1,CMIP5 -2226,tas,temperature,tgav,rcp85,C,Simulated,global,0.914780941,22.2692,24.0662,23.2669,23.4653,1,CMIP5 -2226,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.128062946,1.1505,5.3139,2.977133333,2.467,1,CMIP5 -2226,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.918507628,26.6785,28.385,27.72806667,28.1207,1,CMIP5 -2227,tas,temperature,tgav,rcp85,C,Simulated,global,0.971394803,22.2131,24.0858,23.29873333,23.5973,1,CMIP5 -2227,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.032799499,1.1586,5.107,2.853033333,2.2935,1,CMIP5 -2227,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.02962381,26.6091,28.4567,27.7954,28.3204,1,CMIP5 -2228,tas,temperature,tgav,rcp85,C,Simulated,global,0.988945349,22.2476,24.1861,23.33023333,23.557,1,CMIP5 -2228,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.173195825,1.023,5.2628,2.866733333,2.3144,1,CMIP5 -2228,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.006325774,26.679,28.5443,27.82986667,28.2663,1,CMIP5 -2229,tas,temperature,tgav,rcp85,C,Simulated,global,0.934809207,22.3154,24.144,23.34213333,23.567,1,CMIP5 -2229,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.194603512,1.0439,5.3331,2.919566667,2.3817,1,CMIP5 -2229,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.937565658,26.7566,28.4763,27.83223333,28.2638,1,CMIP5 -2230,tas,temperature,tgav,rcp85,C,Simulated,global,0.886299613,22.3613,24.0889,23.33966667,23.5688,1,CMIP5 -2230,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.205301162,1.1783,5.3803,2.892366667,2.1185,1,CMIP5 -2230,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.911189876,26.784,28.3976,27.8353,28.3243,1,CMIP5 -2231,tas,temperature,tgav,rcp85,C,Simulated,global,1.01089998,22.3155,24.2736,23.4399,23.7306,1,CMIP5 -2231,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.121274949,1.3512,5.4779,3.1303,2.5618,1,CMIP5 -2231,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.054803811,26.6926,28.6024,27.9062,28.4236,1,CMIP5 -2232,tas,temperature,tgav,rcp85,C,Simulated,global,1.082422177,22.207,24.2345,23.4398,23.8779,1,CMIP5 -2232,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.170212803,1.2113,5.4526,3.0657,2.5332,1,CMIP5 -2232,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.15167885,26.5907,28.6099,27.92023333,28.5601,1,CMIP5 -2233,tas,temperature,tgav,rcp85,C,Simulated,global,1.044130437,22.3355,24.3665,23.4912,23.7716,1,CMIP5 -2233,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.223963256,1.1199,5.5142,3.118266667,2.7207,1,CMIP5 -2233,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.052679529,26.7651,28.7083,27.9706,28.4384,1,CMIP5 -2234,tas,temperature,tgav,rcp85,C,Simulated,global,1.008909862,22.4035,24.3546,23.5276,23.8247,1,CMIP5 -2234,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.071166942,1.2778,5.3992,3.218433333,2.9783,1,CMIP5 -2234,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.030409634,26.8143,28.7201,27.99356667,28.4463,1,CMIP5 -2235,tas,temperature,tgav,rcp85,C,Simulated,global,1.010860477,22.4427,24.3737,23.58106667,23.9268,1,CMIP5 -2235,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.195082247,1.2733,5.6377,3.3184,3.0442,1,CMIP5 -2235,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.018194453,26.8627,28.6886,28.03593333,28.5565,1,CMIP5 -2236,tas,temperature,tgav,rcp85,C,Simulated,global,0.963224683,22.4783,24.37,23.5293,23.7396,1,CMIP5 -2236,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.107967524,1.3858,5.4883,3.156633333,2.5958,1,CMIP5 -2236,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.986940045,26.8822,28.7186,28.00933333,28.4272,1,CMIP5 -2237,tas,temperature,tgav,rcp85,C,Simulated,global,1.02039265,22.3926,24.409,23.4916,23.6732,1,CMIP5 -2237,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.225072687,1.2203,5.5825,3.147266667,2.639,1,CMIP5 -2237,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.018080002,26.8131,28.7448,27.9648,28.3365,1,CMIP5 -2238,tas,temperature,tgav,rcp85,C,Simulated,global,0.986261035,22.3773,24.325,23.4412,23.6213,1,CMIP5 -2238,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.171365448,1.0502,5.3451,3.0121,2.641,1,CMIP5 -2238,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.978312528,26.8301,28.6962,27.93296667,28.2726,1,CMIP5 -2239,tas,temperature,tgav,rcp85,C,Simulated,global,0.986167148,22.4753,24.3917,23.56813333,23.8374,1,CMIP5 -2239,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.220883505,1.4006,5.7107,3.245766667,2.626,1,CMIP5 -2239,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.008399598,26.8755,28.694,28.0365,28.54,1,CMIP5 -2240,tas,temperature,tgav,rcp85,C,Simulated,global,0.964987898,22.475,24.3226,23.55983333,23.8819,1,CMIP5 -2240,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.056219457,1.492,5.46,3.164133333,2.5404,1,CMIP5 -2240,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.030283768,26.856,28.6667,28.04526667,28.6131,1,CMIP5 -2241,tas,temperature,tgav,rcp85,C,Simulated,global,0.919483139,22.577,24.3654,23.59483333,23.8421,1,CMIP5 -2241,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.107950958,1.6621,5.6903,3.3171,2.5989,1,CMIP5 -2241,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.963109705,26.9438,28.6663,28.05393333,28.5517,1,CMIP5 -2242,tas,temperature,tgav,rcp85,C,Simulated,global,0.968579745,22.5739,24.4323,23.66093333,23.9766,1,CMIP5 -2242,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.981830868,1.822,5.6576,3.4513,2.8743,1,CMIP5 -2242,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.03991621,26.9066,28.7563,28.10596667,28.655,1,CMIP5 -2243,tas,temperature,tgav,rcp85,C,Simulated,global,1.018180441,22.5257,24.519,23.6426,23.8831,1,CMIP5 -2243,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.982004441,1.8468,5.6047,3.361566667,2.6332,1,CMIP5 -2243,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.100966762,26.8433,28.8751,28.1042,28.5942,1,CMIP5 -2244,tas,temperature,tgav,rcp85,C,Simulated,global,1.043439152,22.5021,24.5043,23.67306667,24.0128,1,CMIP5 -2244,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.956330573,1.7748,5.5727,3.4022,2.8591,1,CMIP5 -2244,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.130891865,26.8297,28.8643,28.1322,28.7026,1,CMIP5 -2245,tas,temperature,tgav,rcp85,C,Simulated,global,1.099855792,22.4733,24.5558,23.71906667,24.1281,1,CMIP5 -2245,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.857653548,1.8339,5.461,3.415133333,2.9505,1,CMIP5 -2245,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.217468209,26.7826,28.9534,28.1864,28.8232,1,CMIP5 -2246,tas,temperature,tgav,rcp85,C,Simulated,global,1.077374667,22.5293,24.6085,23.73216667,24.0587,1,CMIP5 -2246,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.967690464,1.6243,5.4808,3.326233333,2.8736,1,CMIP5 -2246,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.156455529,26.8941,29.0138,28.2211,28.7554,1,CMIP5 -2247,tas,temperature,tgav,rcp85,C,Simulated,global,1.059110348,22.4576,24.5339,23.6168,23.8589,1,CMIP5 -2247,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.211775202,1.4286,5.6564,3.166833333,2.4155,1,CMIP5 -2247,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.104560376,26.8482,28.8815,28.11416667,28.6128,1,CMIP5 -2248,tas,temperature,tgav,rcp85,C,Simulated,global,1.069170998,22.5209,24.5963,23.70726667,24.0046,1,CMIP5 -2248,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.096569287,1.6159,5.6911,3.368433333,2.7983,1,CMIP5 -2248,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.128117486,26.8856,28.9503,28.18056667,28.7058,1,CMIP5 -2249,tas,temperature,tgav,rcp85,C,Simulated,global,1.058658193,22.6392,24.6761,23.8245,24.1582,1,CMIP5 -2249,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.085867088,1.7379,5.7838,3.4673,2.8802,1,CMIP5 -2249,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.127287383,27.0032,29.0271,28.30193333,28.8755,1,CMIP5 -2250,tas,temperature,tgav,rcp85,C,Simulated,global,1.12584055,22.5178,24.6547,23.79113333,24.2009,1,CMIP5 -2250,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.222595038,1.483,5.8181,3.366733333,2.7991,1,CMIP5 -2250,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.189374638,26.9096,28.9929,28.2827,28.9456,1,CMIP5 -2251,tas,temperature,tgav,rcp85,C,Simulated,global,1.136162581,22.5547,24.703,23.8426,24.2701,1,CMIP5 -2251,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.178292066,1.5962,5.8315,3.419166667,2.8298,1,CMIP5 -2251,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.215738234,26.9306,29.0492,28.33433333,29.0232,1,CMIP5 -2252,tas,temperature,tgav,rcp85,C,Simulated,global,1.141969169,22.543,24.68,23.84416667,24.3095,1,CMIP5 -2252,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.082569198,1.6172,5.7527,3.541766667,3.2554,1,CMIP5 -2252,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.210495589,26.9121,29.0391,28.3094,28.977,1,CMIP5 -2253,tas,temperature,tgav,rcp85,C,Simulated,global,1.100027927,22.6044,24.7276,23.8324,24.1652,1,CMIP5 -2253,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.069636761,1.7593,5.7961,3.513466667,2.985,1,CMIP5 -2253,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.17033509,26.9566,29.0875,28.30163333,28.8608,1,CMIP5 -2254,tas,temperature,tgav,rcp85,C,Simulated,global,1.100993206,22.6271,24.7425,23.8613,24.2143,1,CMIP5 -2254,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.083617089,1.7247,5.8189,3.547566667,3.0991,1,CMIP5 -2254,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.163193591,26.9913,29.1008,28.3292,28.8955,1,CMIP5 -2255,tas,temperature,tgav,rcp85,C,Simulated,global,1.149900702,22.6052,24.7945,23.90316667,24.3098,1,CMIP5 -2255,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.109321297,1.758,5.883,3.565333333,3.055,1,CMIP5 -2255,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.230356267,26.9578,29.15,28.37656667,29.0219,1,CMIP5 -2256,tas,temperature,tgav,rcp85,C,Simulated,global,1.238090212,22.4485,24.7667,23.85883333,24.3613,1,CMIP5 -2256,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.248015412,1.666,6.0524,3.574333333,3.0046,1,CMIP5 -2256,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.327103547,26.7877,29.0959,28.32006667,29.0766,1,CMIP5 -2257,tas,temperature,tgav,rcp85,C,Simulated,global,1.155098023,22.5732,24.7444,23.88663333,24.3423,1,CMIP5 -2257,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.222265975,1.529,5.9453,3.592766667,3.304,1,CMIP5 -2257,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.197412264,26.967,29.074,28.3491,29.0063,1,CMIP5 -2258,tas,temperature,tgav,rcp85,C,Simulated,global,1.161620464,22.5305,24.6919,23.85713333,24.349,1,CMIP5 -2258,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.207845842,1.6486,5.9704,3.548033333,3.0251,1,CMIP5 -2258,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.241578432,26.8904,29.0764,28.32343333,29.0035,1,CMIP5 -2259,tas,temperature,tgav,rcp85,C,Simulated,global,1.114220369,22.587,24.6927,23.8504,24.2715,1,CMIP5 -2259,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.058930081,1.8095,5.7737,3.4699,2.8265,1,CMIP5 -2259,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.219827928,26.9251,29.0499,28.33356667,29.0257,1,CMIP5 -2260,tas,temperature,tgav,rcp85,C,Simulated,global,1.118036074,22.623,24.7417,23.88873333,24.3015,1,CMIP5 -2260,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.134835008,1.7267,5.8203,3.4232,2.7226,1,CMIP5 -2260,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.216179333,26.9859,29.0993,28.3902,29.0854,1,CMIP5 -2261,tas,temperature,tgav,rcp85,C,Simulated,global,1.084969571,22.7245,24.7586,23.9597,24.396,1,CMIP5 -2261,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.019221064,1.849,5.8319,3.647766667,3.2624,1,CMIP5 -2261,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.164223966,27.0831,29.1175,28.42726667,29.0812,1,CMIP5 -2262,tas,temperature,tgav,rcp85,C,Simulated,global,1.204280583,22.609,24.8399,23.98653333,24.5107,1,CMIP5 -2262,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.203636728,1.7245,6.0397,3.6234,3.106,1,CMIP5 -2262,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.295975009,26.9695,29.2561,28.46513333,29.1698,1,CMIP5 -2263,tas,temperature,tgav,rcp85,C,Simulated,global,1.117204249,22.6747,24.7407,23.95336667,24.4447,1,CMIP5 -2263,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.209453326,1.7248,6.0328,3.5948,3.0268,1,CMIP5 -2263,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.198595429,27.0488,29.1929,28.43033333,29.0493,1,CMIP5 -2264,tas,temperature,tgav,rcp85,C,Simulated,global,1.124344259,22.6753,24.7965,23.95136667,24.3823,1,CMIP5 -2264,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.063013656,1.9157,5.9246,3.638366667,3.0748,1,CMIP5 -2264,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.221089367,27.0097,29.1428,28.41953333,29.1061,1,CMIP5 -2265,tas,temperature,tgav,rcp85,C,Simulated,global,1.048966925,22.6582,24.6513,23.8438,24.2219,1,CMIP5 -2265,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.086818385,1.9405,5.8983,3.536966667,2.7721,1,CMIP5 -2265,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.148874632,26.9838,28.9772,28.3104,28.9702,1,CMIP5 -2266,tas,temperature,tgav,rcp85,C,Simulated,global,1.15463185,22.6691,24.8063,23.9902,24.4952,1,CMIP5 -2266,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.271373726,1.4805,5.9716,3.528866667,3.1345,1,CMIP5 -2266,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.209919716,27.0931,29.2307,28.4893,29.1441,1,CMIP5 -2267,tas,temperature,tgav,rcp85,C,Simulated,global,1.192361964,22.6991,24.8305,24.07356667,24.6911,1,CMIP5 -2267,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.315695103,1.5085,6.1228,3.7009,3.4714,1,CMIP5 -2267,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.244230241,27.1235,29.3953,28.55256667,29.1389,1,CMIP5 -2268,tas,temperature,tgav,rcp85,C,Simulated,global,1.138827732,22.6365,24.6601,23.95006667,24.5536,1,CMIP5 -2268,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.094868904,1.6615,5.8498,3.723966667,3.6606,1,CMIP5 -2268,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.200747222,27.0159,29.1856,28.3979,28.9922,1,CMIP5 -2269,tas,temperature,tgav,rcp85,C,Simulated,global,1.16101411,22.6197,24.7684,23.94816667,24.4564,1,CMIP5 -2269,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.09651862,1.8172,5.9695,3.725033333,3.3884,1,CMIP5 -2269,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.241072006,26.963,29.1271,28.39596667,29.0978,1,CMIP5 -2270,tas,temperature,tgav,rcp85,C,Simulated,global,1.209067022,22.563,24.7472,23.95463333,24.5537,1,CMIP5 -2270,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.151512326,1.7578,6.0024,3.6761,3.2681,1,CMIP5 -2270,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.309796138,26.9069,29.2725,28.41453333,29.0642,1,CMIP5 -2271,tas,temperature,tgav,rcp85,C,Simulated,global,1.17191935,22.691,24.7398,24.04403333,24.7013,1,CMIP5 -2271,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.07613883,1.9136,6.0372,3.834766667,3.5535,1,CMIP5 -2271,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.282662599,27.0291,29.4368,28.48853333,28.9997,1,CMIP5 -2272,tas,temperature,tgav,rcp85,C,Simulated,global,1.143972242,22.7057,24.7843,24.021,24.573,1,CMIP5 -2272,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.152634937,1.7417,6.0273,3.765833333,3.5285,1,CMIP5 -2272,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.207693183,27.0828,29.2385,28.47516667,29.1042,1,CMIP5 -2273,tas,temperature,tgav,rcp85,C,Simulated,global,1.200194961,22.6772,24.8471,24.05843333,24.651,1,CMIP5 -2273,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.223221408,1.7714,6.1606,3.7607,3.3501,1,CMIP5 -2273,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.286474813,27.0421,29.3732,28.52203333,29.1508,1,CMIP5 -2274,tas,temperature,tgav,rcp85,C,Simulated,global,1.191754628,22.6692,24.8344,24.03946667,24.6148,1,CMIP5 -2274,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.113675581,1.8141,5.9998,3.736066667,3.3943,1,CMIP5 -2274,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.285071151,27.0235,29.3193,28.50493333,29.172,1,CMIP5 -2275,tas,temperature,tgav,rcp85,C,Simulated,global,1.15325172,22.7493,24.8476,24.0749,24.6278,1,CMIP5 -2275,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.944286487,2.2675,6.0366,3.875933333,3.3237,1,CMIP5 -2275,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.295914971,27.0256,29.3508,28.51873333,29.1798,1,CMIP5 -2276,tas,temperature,tgav,rcp85,C,Simulated,global,1.199112607,22.6547,24.7794,24.03813333,24.6803,1,CMIP5 -2276,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.996741912,2.1379,6.0844,3.934833333,3.5822,1,CMIP5 -2276,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.325071984,26.9384,29.3577,28.46033333,29.0849,1,CMIP5 -2277,tas,temperature,tgav,rcp85,C,Simulated,global,1.202518783,22.6626,24.8495,24.04496667,24.6228,1,CMIP5 -2277,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.161348794,1.7708,6.0842,3.8457,3.6821,1,CMIP5 -2277,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.267378059,27.0246,29.2653,28.48703333,29.1712,1,CMIP5 -2278,tas,temperature,tgav,rcp85,C,Simulated,global,1.164721294,22.6812,24.79,24.02126667,24.5926,1,CMIP5 -2278,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.268728623,1.7726,6.2898,3.907566667,3.6603,1,CMIP5 -2278,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.213162418,27.0467,29.2333,28.44356667,29.0507,1,CMIP5 -2279,tas,temperature,tgav,rcp85,C,Simulated,global,1.093120141,22.7157,24.7098,23.97146667,24.4889,1,CMIP5 -2279,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.118118781,1.799,6.0276,3.8399,3.6931,1,CMIP5 -2279,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.139938548,27.0829,29.0993,28.39823333,29.0125,1,CMIP5 -2280,tas,temperature,tgav,rcp85,C,Simulated,global,1.124977853,22.6524,24.7149,23.9432,24.4623,1,CMIP5 -2280,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.309107166,1.6684,6.2073,3.691833333,3.1998,1,CMIP5 -2280,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.183756602,27.0336,29.176,28.39566667,28.9774,1,CMIP5 -2281,tas,temperature,tgav,rcp85,C,Simulated,global,1.17463311,22.6445,24.8374,23.98423333,24.4708,1,CMIP5 -2281,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.160654485,2.0193,6.2302,3.844566667,3.2842,1,CMIP5 -2281,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.267137208,26.9508,29.1677,28.41373333,29.1227,1,CMIP5 -2282,tas,temperature,tgav,rcp85,C,Simulated,global,1.171109401,22.7468,24.8473,24.0962,24.6945,1,CMIP5 -2282,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.044847609,2.0459,6.0726,3.852833333,3.44,1,CMIP5 -2282,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.287134617,27.0689,29.4066,28.54893333,29.1713,1,CMIP5 -2283,tas,temperature,tgav,rcp85,C,Simulated,global,1.124067133,22.7109,24.6753,24.0087,24.6399,1,CMIP5 -2283,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.03246113,1.791,5.8419,3.719066667,3.5243,1,CMIP5 -2283,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.215478952,27.0787,29.3212,28.47086667,29.0127,1,CMIP5 -2284,tas,temperature,tgav,rcp85,C,Simulated,global,1.082655413,22.7786,24.7395,24.02416667,24.5544,1,CMIP5 -2284,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.986790604,2.0704,5.9685,3.796933333,3.3519,1,CMIP5 -2284,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.191236384,27.1022,29.2549,28.47323333,29.0626,1,CMIP5 -2285,tas,temperature,tgav,rcp85,C,Simulated,global,1.174208768,22.7287,24.7734,24.0845,24.7514,1,CMIP5 -2285,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.099273742,1.9304,6.1193,3.942733333,3.7785,1,CMIP5 -2285,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.264195408,27.0711,29.4279,28.5138,29.0424,1,CMIP5 -2286,tas,temperature,tgav,rcp85,C,Simulated,global,1.121574279,22.7602,24.7337,24.05476667,24.6704,1,CMIP5 -2286,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.973734846,1.9965,5.9374,3.901233333,3.7698,1,CMIP5 -2286,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.221459942,27.0954,29.3813,28.4871,28.9846,1,CMIP5 -2287,tas,temperature,tgav,rcp85,C,Simulated,global,1.060074952,22.8403,24.7404,24.06186667,24.6049,1,CMIP5 -2287,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.92075353,2.0814,5.8757,3.805233333,3.4586,1,CMIP5 -2287,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.167712614,27.1745,29.293,28.5175,29.085,1,CMIP5 -2288,tas,temperature,tgav,rcp85,C,Simulated,global,1.177568015,22.8483,24.9416,24.2065,24.8296,1,CMIP5 -2288,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.236831671,1.9856,6.3789,3.938566667,3.4512,1,CMIP5 -2288,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.27587186,27.2042,29.5691,28.66333333,29.2167,1,CMIP5 -2289,tas,temperature,tgav,rcp85,C,Simulated,global,1.243042225,22.7806,24.9378,24.21593333,24.9294,1,CMIP5 -2289,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.042793725,2.19,6.2029,3.974966667,3.532,1,CMIP5 -2289,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.391976671,27.0796,29.6732,28.66846667,29.2526,1,CMIP5 -2290,tas,temperature,tgav,rcp85,C,Simulated,global,1.104885231,22.9046,24.9108,24.17513333,24.71,1,CMIP5 -2290,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.904501268,2.4523,6.1661,4.0649,3.5763,1,CMIP5 -2290,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.236435119,27.1748,29.3952,28.59923333,29.2277,1,CMIP5 -2291,tas,temperature,tgav,rcp85,C,Simulated,global,1.134551206,22.8801,24.8677,24.1899,24.8219,1,CMIP5 -2291,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.899754711,2.4076,6.1529,4.095633333,3.7264,1,CMIP5 -2291,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.270887313,27.1546,29.4986,28.61036667,29.1779,1,CMIP5 -2292,tas,temperature,tgav,rcp85,C,Simulated,global,1.182758481,22.8558,24.9805,24.21833333,24.8187,1,CMIP5 -2292,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.076480653,2.1227,6.2297,3.998333333,3.6426,1,CMIP5 -2292,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.287055784,27.1846,29.5133,28.6656,29.2989,1,CMIP5 -2293,tas,temperature,tgav,rcp85,C,Simulated,global,1.184482357,22.8502,25.0362,24.20673333,24.7338,1,CMIP5 -2293,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.049465606,2.2613,6.2393,3.965,3.3944,1,CMIP5 -2293,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.309219395,27.1489,29.4646,28.65956667,29.3652,1,CMIP5 -2294,tas,temperature,tgav,rcp85,C,Simulated,global,1.192410627,22.8639,25.0198,24.23616667,24.8248,1,CMIP5 -2294,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.123736618,2.1734,6.3357,4.010233333,3.5216,1,CMIP5 -2294,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.304663991,27.1838,29.5475,28.6847,29.3228,1,CMIP5 -2295,tas,temperature,tgav,rcp85,C,Simulated,global,1.161652953,22.8718,24.8913,24.21313333,24.8763,1,CMIP5 -2295,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.015472597,2.2534,6.2613,4.1331,3.8846,1,CMIP5 -2295,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.270207453,27.1767,29.5301,28.62956667,29.1819,1,CMIP5 -2296,tas,temperature,tgav,rcp85,C,Simulated,global,1.204361783,22.8188,24.9298,24.20916667,24.8789,1,CMIP5 -2296,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.078866298,2.0807,6.2307,4.082533333,3.9362,1,CMIP5 -2296,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.303854946,27.1487,29.5841,28.6355,29.1737,1,CMIP5 -2297,tas,temperature,tgav,rcp85,C,Simulated,global,1.269340007,22.767,25.0146,24.23153333,24.913,1,CMIP5 -2297,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.086075982,2.2133,6.3332,4.083233333,3.7032,1,CMIP5 -2297,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.39802554,27.0584,29.6151,28.6635,29.317,1,CMIP5 -2298,tas,temperature,tgav,rcp85,C,Simulated,global,1.223755814,22.7952,24.918,24.20826667,24.9116,1,CMIP5 -2298,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.058514261,1.9449,6.0492,3.903666667,3.7169,1,CMIP5 -2298,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.333589596,27.1486,29.6183,28.6742,29.2557,1,CMIP5 -2299,tas,temperature,tgav,rcp85,C,Simulated,global,1.210075379,22.8363,24.9794,24.23243333,24.8816,1,CMIP5 -2299,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.140951524,1.9265,6.1948,3.9622,3.7653,1,CMIP5 -2299,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.295262677,27.202,29.5631,28.69023333,29.3056,1,CMIP5 -2300,tas,temperature,tgav,rcp85,C,Simulated,global,1.418314782,22.8883,24.8941,23.8912,23.8912,1,CMIP5 -2300,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.320309782,2.0542,3.9214,2.9878,2.9878,1,CMIP5 -2300,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.630234684,27.2382,29.5437,28.39095,28.39095,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/BATS_PH.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/BATS_PH.csv deleted file mode 100644 index e6fa21303..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/BATS_PH.csv +++ /dev/null @@ -1,18 +0,0 @@ -#Bermuda Atlantic Time Series,,,,,,, -# surface values from ODV data sets,,,,,,, -year,value,vtag,ctag,type,scenario,model,units -1992,8.123473333,PH_LL,ocean,Observed,historical,BATS,U_PH -1993,8.110631667,PH_LL,ocean,Observed,historical,BATS,U_PH -1994,8.121494,PH_LL,ocean,Observed,historical,BATS,U_PH -1995,8.111846667,PH_LL,ocean,Observed,historical,BATS,U_PH -1996,8.105546667,PH_LL,ocean,Observed,historical,BATS,U_PH -1997,8.107123077,PH_LL,ocean,Observed,historical,BATS,U_PH -1998,8.08757,PH_LL,ocean,Observed,historical,BATS,U_PH -1999,8.108839,PH_LL,ocean,Observed,historical,BATS,U_PH -2000,8.109815,PH_LL,ocean,Observed,historical,BATS,U_PH -2001,8.103787222,PH_LL,ocean,Observed,historical,BATS,U_PH -2002,8.106296364,PH_LL,ocean,Observed,historical,BATS,U_PH -2003,8.0763965,PH_LL,ocean,Observed,historical,BATS,U_PH -2004,8.0893435,PH_LL,ocean,Observed,historical,BATS,U_PH -2005,8.09519625,PH_LL,ocean,Observed,historical,BATS,U_PH -2006,8.097756667,PH_LL,ocean,Observed,historical,BATS,U_PH diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/HOTS_PCO2.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/HOTS_PCO2.csv deleted file mode 100644 index f6dfd452c..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/HOTS_PCO2.csv +++ /dev/null @@ -1,33 +0,0 @@ -#HOT_surface_CO2.txt pCO2 (insitu),,,,,,, -#Hawaii Ocean Time-series surface CO2 system data product,,,,,,, -#Created 5 October 2009 by J.E. Dore,,,,,,, -#Last updated 19 May 2013 by J.E. Dore,,,,,,, -"#See HOT_surface_CO2_readme.pdf for explanatory material, metadata, and notes (http://hahana.soest.hawaii.edu/hot/products/products.html)",,,,,,, -#When using this data product please cite as adapted from: Dore J.E. etal 2009. Physical and biogeochemical modulation of ocean acidification in the central North Pacific. Proc Natl Acad Sci USA 106:12235-12240.,,,,,,, -#Please direct questions or comments regarding this data product to John Dore: jdore@montana.edu,,,,,,, -,,,,,,, -Year,value,ctag,vtag,units,type,scenario,model -1988,330.75,ocean,pco2_ll,uatm,Observed,historical,HOTS -1989,331.56,ocean,pco2_ll,uatm,Observed,historical,HOTS -1990,323.0222222,ocean,pco2_ll,uatm,Observed,historical,HOTS -1991,329.36,ocean,pco2_ll,uatm,Observed,historical,HOTS -1992,332.7727273,ocean,pco2_ll,uatm,Observed,historical,HOTS -1993,331.7833333,ocean,pco2_ll,uatm,Observed,historical,HOTS -1994,333.5222222,ocean,pco2_ll,uatm,Observed,historical,HOTS -1995,334.9444444,ocean,pco2_ll,uatm,Observed,historical,HOTS -1996,341.8,ocean,pco2_ll,uatm,Observed,historical,HOTS -1997,340.25,ocean,pco2_ll,uatm,Observed,historical,HOTS -1998,347.8333333,ocean,pco2_ll,uatm,Observed,historical,HOTS -1999,347.67,ocean,pco2_ll,uatm,Observed,historical,HOTS -2000,354.4181818,ocean,pco2_ll,uatm,Observed,historical,HOTS -2001,353.725,ocean,pco2_ll,uatm,Observed,historical,HOTS -2002,351.72,ocean,pco2_ll,uatm,Observed,historical,HOTS -2003,347.7181818,ocean,pco2_ll,uatm,Observed,historical,HOTS -2004,348.825,ocean,pco2_ll,uatm,Observed,historical,HOTS -2005,357.93,ocean,pco2_ll,uatm,Observed,historical,HOTS -2006,353.9166667,ocean,pco2_ll,uatm,Observed,historical,HOTS -2007,363.9444444,ocean,pco2_ll,uatm,Observed,historical,HOTS -2008,362.25,ocean,pco2_ll,uatm,Observed,historical,HOTS -2009,368.16,ocean,pco2_ll,uatm,Observed,historical,HOTS -2010,365.4222222,ocean,pco2_ll,uatm,Observed,historical,HOTS -2011,363.64,ocean,pco2_ll,uatm,Observed,historical,HOTS diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/HOTS_PH.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/HOTS_PH.csv deleted file mode 100644 index 1fdd06ee3..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/HOTS_PH.csv +++ /dev/null @@ -1,25 +0,0 @@ -#Hawaii Ocean Time-Series,,,,,,, -#(2) ALOHA Station,,,,,,, -#0 -100 m pH,,,,,,, -Year,value,ctag,vtag,units,type,scenario,model -1992,8.0955,ocean,ph_LL,U_PH,Observed,historical,HOTS -1993,8.094142857,ocean,ph_LL,U_PH,Observed,historical,HOTS -1994,8.101553191,ocean,ph_LL,U_PH,Observed,historical,HOTS -1995,8.087835443,ocean,ph_LL,U_PH,Observed,historical,HOTS -1996,8.0949875,ocean,ph_LL,U_PH,Observed,historical,HOTS -1997,8.082925,ocean,ph_LL,U_PH,Observed,historical,HOTS -1998,8.082384615,ocean,ph_LL,U_PH,Observed,historical,HOTS -1999,NA,ocean,ph_LL,U_PH,Observed,historical,HOTS -2000,NA,ocean,ph_LL,U_PH,Observed,historical,HOTS -2001,NA,ocean,ph_LL,U_PH,Observed,historical,HOTS -2002,NA,ocean,ph_LL,U_PH,Observed,historical,HOTS -2003,8.082090909,ocean,ph_LL,U_PH,Observed,historical,HOTS -2004,8.084511628,ocean,ph_LL,U_PH,Observed,historical,HOTS -2005,8.084022222,ocean,ph_LL,U_PH,Observed,historical,HOTS -2006,8.076020408,ocean,ph_LL,U_PH,Observed,historical,HOTS -2007,8.081128205,ocean,ph_LL,U_PH,Observed,historical,HOTS -2008,8.0736,ocean,ph_LL,U_PH,Observed,historical,HOTS -2009,8.06565,ocean,ph_LL,U_PH,Observed,historical,HOTS -2010,8.062725,ocean,ph_LL,U_PH,Observed,historical,HOTS -2011,8.072088889,ocean,ph_LL,U_PH,Observed,historical,HOTS -2012,8.061431818,ocean,ph_LL,U_PH,Observed,historical,HOTS diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/HadCRUT4.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/HadCRUT4.csv deleted file mode 100644 index a12165f4e..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/HadCRUT4.csv +++ /dev/null @@ -1,166 +0,0 @@ -#Global Temperature (Climatic Research Unit) Anomaly from 1850,,,,,,,,,, -year,1961:1990, Smoothed,value,valuesmoothed,vtag,ctag,model,units,type,scenario -1850,-0.374,-0.297,0,0,tgav,temperature,HadCRUT4,degC,Observed,Historical -1851,-0.219,-0.294,0.155,0.003,tgav,temperature,HadCRUT4,degC,Observed,Historical -1852,-0.223,-0.294,0.151,0.003,tgav,temperature,HadCRUT4,degC,Observed,Historical -1853,-0.268,-0.299,0.106,-0.002,tgav,temperature,HadCRUT4,degC,Observed,Historical -1854,-0.243,-0.307,0.131,-0.01,tgav,temperature,HadCRUT4,degC,Observed,Historical -1855,-0.264,-0.319,0.11,-0.022,tgav,temperature,HadCRUT4,degC,Observed,Historical -1856,-0.356,-0.333,0.018,-0.036,tgav,temperature,HadCRUT4,degC,Observed,Historical -1857,-0.454,-0.345,-0.08,-0.048,tgav,temperature,HadCRUT4,degC,Observed,Historical -1858,-0.461,-0.356,-0.087,-0.059,tgav,temperature,HadCRUT4,degC,Observed,Historical -1859,-0.282,-0.363,0.092,-0.066,tgav,temperature,HadCRUT4,degC,Observed,Historical -1860,-0.338,-0.367,0.036,-0.07,tgav,temperature,HadCRUT4,degC,Observed,Historical -1861,-0.391,-0.365,-0.017,-0.068,tgav,temperature,HadCRUT4,degC,Observed,Historical -1862,-0.503,-0.36,-0.129,-0.063,tgav,temperature,HadCRUT4,degC,Observed,Historical -1863,-0.275,-0.351,0.099,-0.054,tgav,temperature,HadCRUT4,degC,Observed,Historical -1864,-0.478,-0.339,-0.104,-0.042,tgav,temperature,HadCRUT4,degC,Observed,Historical -1865,-0.27,-0.325,0.104,-0.028,tgav,temperature,HadCRUT4,degC,Observed,Historical -1866,-0.241,-0.312,0.133,-0.015,tgav,temperature,HadCRUT4,degC,Observed,Historical -1867,-0.308,-0.301,0.066,-0.004,tgav,temperature,HadCRUT4,degC,Observed,Historical -1868,-0.23,-0.293,0.144,0.004,tgav,temperature,HadCRUT4,degC,Observed,Historical -1869,-0.259,-0.289,0.115,0.008,tgav,temperature,HadCRUT4,degC,Observed,Historical -1870,-0.271,-0.288,0.103,0.009,tgav,temperature,HadCRUT4,degC,Observed,Historical -1871,-0.326,-0.288,0.048,0.009,tgav,temperature,HadCRUT4,degC,Observed,Historical -1872,-0.229,-0.287,0.145,0.01,tgav,temperature,HadCRUT4,degC,Observed,Historical -1873,-0.306,-0.284,0.068,0.013,tgav,temperature,HadCRUT4,degC,Observed,Historical -1874,-0.373,-0.276,0.001,0.021,tgav,temperature,HadCRUT4,degC,Observed,Historical -1875,-0.408,-0.265,-0.034,0.032,tgav,temperature,HadCRUT4,degC,Observed,Historical -1876,-0.384,-0.252,-0.01,0.045,tgav,temperature,HadCRUT4,degC,Observed,Historical -1877,-0.073,-0.239,0.301,0.058,tgav,temperature,HadCRUT4,degC,Observed,Historical -1878,0.032,-0.231,0.406,0.066,tgav,temperature,HadCRUT4,degC,Observed,Historical -1879,-0.234,-0.229,0.14,0.068,tgav,temperature,HadCRUT4,degC,Observed,Historical -1880,-0.23,-0.235,0.144,0.062,tgav,temperature,HadCRUT4,degC,Observed,Historical -1881,-0.207,-0.248,0.167,0.049,tgav,temperature,HadCRUT4,degC,Observed,Historical -1882,-0.214,-0.266,0.16,0.031,tgav,temperature,HadCRUT4,degC,Observed,Historical -1883,-0.292,-0.286,0.082,0.011,tgav,temperature,HadCRUT4,degC,Observed,Historical -1884,-0.403,-0.305,-0.029,-0.008,tgav,temperature,HadCRUT4,degC,Observed,Historical -1885,-0.385,-0.321,-0.011,-0.024,tgav,temperature,HadCRUT4,degC,Observed,Historical -1886,-0.366,-0.333,0.008,-0.036,tgav,temperature,HadCRUT4,degC,Observed,Historical -1887,-0.418,-0.342,-0.044,-0.045,tgav,temperature,HadCRUT4,degC,Observed,Historical -1888,-0.309,-0.349,0.065,-0.052,tgav,temperature,HadCRUT4,degC,Observed,Historical -1889,-0.173,-0.355,0.201,-0.058,tgav,temperature,HadCRUT4,degC,Observed,Historical -1890,-0.419,-0.36,-0.045,-0.063,tgav,temperature,HadCRUT4,degC,Observed,Historical -1891,-0.339,-0.363,0.035,-0.066,tgav,temperature,HadCRUT4,degC,Observed,Historical -1892,-0.456,-0.364,-0.082,-0.067,tgav,temperature,HadCRUT4,degC,Observed,Historical -1893,-0.475,-0.36,-0.101,-0.063,tgav,temperature,HadCRUT4,degC,Observed,Historical -1894,-0.408,-0.353,-0.034,-0.056,tgav,temperature,HadCRUT4,degC,Observed,Historical -1895,-0.393,-0.344,-0.019,-0.047,tgav,temperature,HadCRUT4,degC,Observed,Historical -1896,-0.191,-0.334,0.183,-0.037,tgav,temperature,HadCRUT4,degC,Observed,Historical -1897,-0.21,-0.326,0.164,-0.029,tgav,temperature,HadCRUT4,degC,Observed,Historical -1898,-0.408,-0.323,-0.034,-0.026,tgav,temperature,HadCRUT4,degC,Observed,Historical -1899,-0.288,-0.327,0.086,-0.03,tgav,temperature,HadCRUT4,degC,Observed,Historical -1900,-0.198,-0.336,0.176,-0.039,tgav,temperature,HadCRUT4,degC,Observed,Historical -1901,-0.267,-0.351,0.107,-0.054,tgav,temperature,HadCRUT4,degC,Observed,Historical -1902,-0.412,-0.369,-0.038,-0.072,tgav,temperature,HadCRUT4,degC,Observed,Historical -1903,-0.481,-0.387,-0.107,-0.09,tgav,temperature,HadCRUT4,degC,Observed,Historical -1904,-0.528,-0.406,-0.154,-0.109,tgav,temperature,HadCRUT4,degC,Observed,Historical -1905,-0.382,-0.423,-0.008,-0.126,tgav,temperature,HadCRUT4,degC,Observed,Historical -1906,-0.294,-0.437,0.08,-0.14,tgav,temperature,HadCRUT4,degC,Observed,Historical -1907,-0.476,-0.448,-0.102,-0.151,tgav,temperature,HadCRUT4,degC,Observed,Historical -1908,-0.523,-0.455,-0.149,-0.158,tgav,temperature,HadCRUT4,degC,Observed,Historical -1909,-0.536,-0.456,-0.162,-0.159,tgav,temperature,HadCRUT4,degC,Observed,Historical -1910,-0.496,-0.451,-0.122,-0.154,tgav,temperature,HadCRUT4,degC,Observed,Historical -1911,-0.554,-0.439,-0.18,-0.142,tgav,temperature,HadCRUT4,degC,Observed,Historical -1912,-0.449,-0.422,-0.075,-0.125,tgav,temperature,HadCRUT4,degC,Observed,Historical -1913,-0.439,-0.403,-0.065,-0.106,tgav,temperature,HadCRUT4,degC,Observed,Historical -1914,-0.258,-0.383,0.116,-0.086,tgav,temperature,HadCRUT4,degC,Observed,Historical -1915,-0.164,-0.364,0.21,-0.067,tgav,temperature,HadCRUT4,degC,Observed,Historical -1916,-0.398,-0.348,-0.024,-0.051,tgav,temperature,HadCRUT4,degC,Observed,Historical -1917,-0.481,-0.333,-0.107,-0.036,tgav,temperature,HadCRUT4,degC,Observed,Historical -1918,-0.343,-0.318,0.031,-0.021,tgav,temperature,HadCRUT4,degC,Observed,Historical -1919,-0.284,-0.304,0.09,-0.007,tgav,temperature,HadCRUT4,degC,Observed,Historical -1920,-0.252,-0.291,0.122,0.006,tgav,temperature,HadCRUT4,degC,Observed,Historical -1921,-0.19,-0.278,0.184,0.019,tgav,temperature,HadCRUT4,degC,Observed,Historical -1922,-0.309,-0.266,0.065,0.031,tgav,temperature,HadCRUT4,degC,Observed,Historical -1923,-0.275,-0.254,0.099,0.043,tgav,temperature,HadCRUT4,degC,Observed,Historical -1924,-0.3,-0.243,0.074,0.054,tgav,temperature,HadCRUT4,degC,Observed,Historical -1925,-0.219,-0.233,0.155,0.064,tgav,temperature,HadCRUT4,degC,Observed,Historical -1926,-0.112,-0.223,0.262,0.074,tgav,temperature,HadCRUT4,degC,Observed,Historical -1927,-0.213,-0.214,0.161,0.083,tgav,temperature,HadCRUT4,degC,Observed,Historical -1928,-0.211,-0.205,0.163,0.092,tgav,temperature,HadCRUT4,degC,Observed,Historical -1929,-0.349,-0.196,0.025,0.101,tgav,temperature,HadCRUT4,degC,Observed,Historical -1930,-0.138,-0.187,0.236,0.11,tgav,temperature,HadCRUT4,degC,Observed,Historical -1931,-0.087,-0.177,0.287,0.12,tgav,temperature,HadCRUT4,degC,Observed,Historical -1932,-0.135,-0.165,0.239,0.132,tgav,temperature,HadCRUT4,degC,Observed,Historical -1933,-0.273,-0.152,0.101,0.145,tgav,temperature,HadCRUT4,degC,Observed,Historical -1934,-0.126,-0.137,0.248,0.16,tgav,temperature,HadCRUT4,degC,Observed,Historical -1935,-0.176,-0.119,0.198,0.178,tgav,temperature,HadCRUT4,degC,Observed,Historical -1936,-0.143,-0.099,0.231,0.198,tgav,temperature,HadCRUT4,degC,Observed,Historical -1937,-0.025,-0.078,0.349,0.219,tgav,temperature,HadCRUT4,degC,Observed,Historical -1938,-0.005,-0.057,0.369,0.24,tgav,temperature,HadCRUT4,degC,Observed,Historical -1939,-0.055,-0.038,0.319,0.259,tgav,temperature,HadCRUT4,degC,Observed,Historical -1940,0.018,-0.023,0.392,0.274,tgav,temperature,HadCRUT4,degC,Observed,Historical -1941,0.018,-0.011,0.392,0.286,tgav,temperature,HadCRUT4,degC,Observed,Historical -1942,-0.023,-0.003,0.351,0.294,tgav,temperature,HadCRUT4,degC,Observed,Historical -1943,-0.003,0,0.371,0.297,tgav,temperature,HadCRUT4,degC,Observed,Historical -1944,0.15,-0.002,0.524,0.295,tgav,temperature,HadCRUT4,degC,Observed,Historical -1945,0.033,-0.007,0.407,0.29,tgav,temperature,HadCRUT4,degC,Observed,Historical -1946,-0.068,-0.016,0.306,0.281,tgav,temperature,HadCRUT4,degC,Observed,Historical -1947,-0.038,-0.026,0.336,0.271,tgav,temperature,HadCRUT4,degC,Observed,Historical -1948,-0.035,-0.036,0.339,0.261,tgav,temperature,HadCRUT4,degC,Observed,Historical -1949,-0.076,-0.044,0.298,0.253,tgav,temperature,HadCRUT4,degC,Observed,Historical -1950,-0.174,-0.05,0.2,0.247,tgav,temperature,HadCRUT4,degC,Observed,Historical -1951,-0.048,-0.055,0.326,0.242,tgav,temperature,HadCRUT4,degC,Observed,Historical -1952,0.033,-0.059,0.407,0.238,tgav,temperature,HadCRUT4,degC,Observed,Historical -1953,0.101,-0.062,0.475,0.235,tgav,temperature,HadCRUT4,degC,Observed,Historical -1954,-0.128,-0.064,0.246,0.233,tgav,temperature,HadCRUT4,degC,Observed,Historical -1955,-0.185,-0.063,0.189,0.234,tgav,temperature,HadCRUT4,degC,Observed,Historical -1956,-0.262,-0.059,0.112,0.238,tgav,temperature,HadCRUT4,degC,Observed,Historical -1957,-0.001,-0.053,0.373,0.244,tgav,temperature,HadCRUT4,degC,Observed,Historical -1958,0.049,-0.045,0.423,0.252,tgav,temperature,HadCRUT4,degC,Observed,Historical -1959,0.017,-0.039,0.391,0.258,tgav,temperature,HadCRUT4,degC,Observed,Historical -1960,-0.05,-0.035,0.324,0.262,tgav,temperature,HadCRUT4,degC,Observed,Historical -1961,0.039,-0.036,0.413,0.261,tgav,temperature,HadCRUT4,degC,Observed,Historical -1962,0.018,-0.042,0.392,0.255,tgav,temperature,HadCRUT4,degC,Observed,Historical -1963,0.05,-0.05,0.424,0.247,tgav,temperature,HadCRUT4,degC,Observed,Historical -1964,-0.224,-0.058,0.15,0.239,tgav,temperature,HadCRUT4,degC,Observed,Historical -1965,-0.141,-0.066,0.233,0.231,tgav,temperature,HadCRUT4,degC,Observed,Historical -1966,-0.073,-0.071,0.301,0.226,tgav,temperature,HadCRUT4,degC,Observed,Historical -1967,-0.076,-0.074,0.298,0.223,tgav,temperature,HadCRUT4,degC,Observed,Historical -1968,-0.113,-0.076,0.261,0.221,tgav,temperature,HadCRUT4,degC,Observed,Historical -1969,0.029,-0.077,0.403,0.22,tgav,temperature,HadCRUT4,degC,Observed,Historical -1970,-0.029,-0.078,0.345,0.219,tgav,temperature,HadCRUT4,degC,Observed,Historical -1971,-0.184,-0.08,0.19,0.217,tgav,temperature,HadCRUT4,degC,Observed,Historical -1972,-0.069,-0.082,0.305,0.215,tgav,temperature,HadCRUT4,degC,Observed,Historical -1973,0.063,-0.082,0.437,0.215,tgav,temperature,HadCRUT4,degC,Observed,Historical -1974,-0.211,-0.078,0.163,0.219,tgav,temperature,HadCRUT4,degC,Observed,Historical -1975,-0.145,-0.07,0.229,0.227,tgav,temperature,HadCRUT4,degC,Observed,Historical -1976,-0.238,-0.057,0.136,0.24,tgav,temperature,HadCRUT4,degC,Observed,Historical -1977,0.046,-0.038,0.42,0.259,tgav,temperature,HadCRUT4,degC,Observed,Historical -1978,-0.062,-0.016,0.312,0.281,tgav,temperature,HadCRUT4,degC,Observed,Historical -1979,0.058,0.006,0.432,0.303,tgav,temperature,HadCRUT4,degC,Observed,Historical -1980,0.093,0.027,0.467,0.324,tgav,temperature,HadCRUT4,degC,Observed,Historical -1981,0.142,0.044,0.516,0.341,tgav,temperature,HadCRUT4,degC,Observed,Historical -1982,0.013,0.059,0.387,0.356,tgav,temperature,HadCRUT4,degC,Observed,Historical -1983,0.191,0.07,0.565,0.367,tgav,temperature,HadCRUT4,degC,Observed,Historical -1984,-0.014,0.082,0.36,0.379,tgav,temperature,HadCRUT4,degC,Observed,Historical -1985,-0.029,0.095,0.345,0.392,tgav,temperature,HadCRUT4,degC,Observed,Historical -1986,0.047,0.11,0.421,0.407,tgav,temperature,HadCRUT4,degC,Observed,Historical -1987,0.186,0.126,0.56,0.423,tgav,temperature,HadCRUT4,degC,Observed,Historical -1988,0.201,0.144,0.575,0.441,tgav,temperature,HadCRUT4,degC,Observed,Historical -1989,0.121,0.161,0.495,0.458,tgav,temperature,HadCRUT4,degC,Observed,Historical -1990,0.291,0.178,0.665,0.475,tgav,temperature,HadCRUT4,degC,Observed,Historical -1991,0.253,0.193,0.627,0.49,tgav,temperature,HadCRUT4,degC,Observed,Historical -1992,0.102,0.209,0.476,0.506,tgav,temperature,HadCRUT4,degC,Observed,Historical -1993,0.143,0.227,0.517,0.524,tgav,temperature,HadCRUT4,degC,Observed,Historical -1994,0.203,0.248,0.577,0.545,tgav,temperature,HadCRUT4,degC,Observed,Historical -1995,0.324,0.271,0.698,0.568,tgav,temperature,HadCRUT4,degC,Observed,Historical -1996,0.179,0.297,0.553,0.594,tgav,temperature,HadCRUT4,degC,Observed,Historical -1997,0.392,0.323,0.766,0.62,tgav,temperature,HadCRUT4,degC,Observed,Historical -1998,0.531,0.349,0.905,0.646,tgav,temperature,HadCRUT4,degC,Observed,Historical -1999,0.301,0.373,0.675,0.67,tgav,temperature,HadCRUT4,degC,Observed,Historical -2000,0.294,0.395,0.668,0.692,tgav,temperature,HadCRUT4,degC,Observed,Historical -2001,0.437,0.416,0.811,0.713,tgav,temperature,HadCRUT4,degC,Observed,Historical -2002,0.492,0.434,0.866,0.731,tgav,temperature,HadCRUT4,degC,Observed,Historical -2003,0.503,0.449,0.877,0.746,tgav,temperature,HadCRUT4,degC,Observed,Historical -2004,0.445,0.46,0.819,0.757,tgav,temperature,HadCRUT4,degC,Observed,Historical -2005,0.539,0.467,0.913,0.764,tgav,temperature,HadCRUT4,degC,Observed,Historical -2006,0.495,0.472,0.869,0.769,tgav,temperature,HadCRUT4,degC,Observed,Historical -2007,0.483,0.473,0.857,0.77,tgav,temperature,HadCRUT4,degC,Observed,Historical -2008,0.388,0.473,0.762,0.77,tgav,temperature,HadCRUT4,degC,Observed,Historical -2009,0.494,0.472,0.868,0.769,tgav,temperature,HadCRUT4,degC,Observed,Historical -2010,0.547,0.471,0.921,0.768,tgav,temperature,HadCRUT4,degC,Observed,Historical -2011,0.406,0.471,0.78,0.768,tgav,temperature,HadCRUT4,degC,Observed,Historical -2012,0.448,0.471,0.822,0.768,tgav,temperature,HadCRUT4,degC,Observed,Historical -2013,0.486,0.471,0.86,0.768,tgav,temperature,HadCRUT4,degC,Observed,Historical diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/LeQuere_atmco2.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/LeQuere_atmco2.csv deleted file mode 100644 index 3bff1bba1..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/LeQuere_atmco2.csv +++ /dev/null @@ -1,57 +0,0 @@ -"# All values in PgC/yr, for the globe. For values in billion tonnes of CO2, multiply the numbers below by 3.67.",,,,,, -# Global Carbon Project (GCP) www.tyndall.ac.uk/global-carbon-budget-2010,,,,,, -# LeQuere et al. 2009,,,,,, -,,,,,, -year,value,ctag,vtag,type,units,scenario -1959.5,2,carbon_cycle,atmos_CO2,Observed,PgC/yr,historical -1960.5,1.15,,,,, -1961.5,2.02,,,,, -1962.5,1.36,,,,, -1963.5,1.51,,,,, -1964.5,0.59,,,,, -1965.5,2.17,,,,, -1966.5,2.63,,,,, -1967.5,1.57,,,,, -1968.5,2.19,,,,, -1969.5,2.78,,,,, -1970.5,2.25,,,,, -1971.5,1.8,,,,, -1972.5,3.59,,,,, -1973.5,2.57,,,,, -1974.5,1.66,,,,, -1975.5,2.4,,,,, -1976.5,1.78,,,,, -1977.5,4.46,,,,, -1978.5,2.76,,,,, -1979.5,3.72,,,,, -1980.5,3.74,,,,, -1981.5,2.34,,,,, -1982.5,2.21,,,,, -1983.5,3.89,,,,, -1984.5,2.48,,,,, -1985.5,3.69,,,,, -1986.5,2.23,,,,, -1987.5,5.71,,,,, -1988.5,4.73,,,,, -1989.5,2.87,,,,, -1990.5,2.59,,,,, -1991.5,1.49,,,,, -1992.5,1.46,,,,, -1993.5,2.65,,,,, -1994.5,3.57,,,,, -1995.5,4.14,,,,, -1996.5,2.27,,,,, -1997.5,4.18,,,,, -1998.5,6.03,,,,, -1999.5,2.82,,,,, -2000.5,2.63,,,,, -2001.5,3.91,,,,, -2002.5,5.12,,,,, -2003.5,4.67,,,,, -2004.5,3.35,,,,, -2005.5,5.12,,,,, -2006.5,3.8,,,,, -2007.5,4.5,,,,, -2008.5,3.84,,,,, -2009.5,3.46,,,,, -2010.5,5.01,,,,, diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/LeQuere_fgco2.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/LeQuere_fgco2.csv deleted file mode 100644 index d327a5803..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/LeQuere_fgco2.csv +++ /dev/null @@ -1,58 +0,0 @@ -# All values in PgC/yr for the globe. For values in billion tonnes of CO2 multiply the numbers below by 3.67.,,,,,,, -# Global Carbon Project (GCP) www.tyndall.ac.uk/global-carbon-budget-2010 http://www.globalcarbonproject.org/carbonbudget,,,,,,, -# LeQuere et al. 2009,,,,,,, -#updated from 2009 to 2012 reference on 6/18/14,,,,,,, -Year,value,ctag,vtag,units,type,model,scenario -1959,1.03,ocean,fgco2,PgC/yr,Observed,GCP,historical -1960,1,ocean,fgco2,PgC/yr,Observed,GCP,historical -1961,0.92,ocean,fgco2,PgC/yr,Observed,GCP,historical -1962,0.92,ocean,fgco2,PgC/yr,Observed,GCP,historical -1963,1.07,ocean,fgco2,PgC/yr,Observed,GCP,historical -1964,1.34,ocean,fgco2,PgC/yr,Observed,GCP,historical -1965,1.49,ocean,fgco2,PgC/yr,Observed,GCP,historical -1966,1.47,ocean,fgco2,PgC/yr,Observed,GCP,historical -1967,1.26,ocean,fgco2,PgC/yr,Observed,GCP,historical -1968,1.23,ocean,fgco2,PgC/yr,Observed,GCP,historical -1969,1.31,ocean,fgco2,PgC/yr,Observed,GCP,historical -1970,1.24,ocean,fgco2,PgC/yr,Observed,GCP,historical -1971,1.36,ocean,fgco2,PgC/yr,Observed,GCP,historical -1972,1.6,ocean,fgco2,PgC/yr,Observed,GCP,historical -1973,1.55,ocean,fgco2,PgC/yr,Observed,GCP,historical -1974,1.45,ocean,fgco2,PgC/yr,Observed,GCP,historical -1975,1.58,ocean,fgco2,PgC/yr,Observed,GCP,historical -1976,1.6,ocean,fgco2,PgC/yr,Observed,GCP,historical -1977,1.7,ocean,fgco2,PgC/yr,Observed,GCP,historical -1978,1.72,ocean,fgco2,PgC/yr,Observed,GCP,historical -1979,1.41,ocean,fgco2,PgC/yr,Observed,GCP,historical -1980,1.85,ocean,fgco2,PgC/yr,Observed,GCP,historical -1981,1.82,ocean,fgco2,PgC/yr,Observed,GCP,historical -1982,1.87,ocean,fgco2,PgC/yr,Observed,GCP,historical -1983,2.09,ocean,fgco2,PgC/yr,Observed,GCP,historical -1984,1.96,ocean,fgco2,PgC/yr,Observed,GCP,historical -1985,1.91,ocean,fgco2,PgC/yr,Observed,GCP,historical -1986,1.94,ocean,fgco2,PgC/yr,Observed,GCP,historical -1987,1.93,ocean,fgco2,PgC/yr,Observed,GCP,historical -1988,1.93,ocean,fgco2,PgC/yr,Observed,GCP,historical -1989,1.86,ocean,fgco2,PgC/yr,Observed,GCP,historical -1990,2.03,ocean,fgco2,PgC/yr,Observed,GCP,historical -1991,2.16,ocean,fgco2,PgC/yr,Observed,GCP,historical -1992,2.4,ocean,fgco2,PgC/yr,Observed,GCP,historical -1993,2.35,ocean,fgco2,PgC/yr,Observed,GCP,historical -1994,2.22,ocean,fgco2,PgC/yr,Observed,GCP,historical -1995,2.09,ocean,fgco2,PgC/yr,Observed,GCP,historical -1996,2.07,ocean,fgco2,PgC/yr,Observed,GCP,historical -1997,2.17,ocean,fgco2,PgC/yr,Observed,GCP,historical -1998,2.34,ocean,fgco2,PgC/yr,Observed,GCP,historical -1999,2.18,ocean,fgco2,PgC/yr,Observed,GCP,historical -2000,2.1,ocean,fgco2,PgC/yr,Observed,GCP,historical -2001,1.96,ocean,fgco2,PgC/yr,Observed,GCP,historical -2002,2.43,ocean,fgco2,PgC/yr,Observed,GCP,historical -2003,2.38,ocean,fgco2,PgC/yr,Observed,GCP,historical -2004,2.31,ocean,fgco2,PgC/yr,Observed,GCP,historical -2005,2.43,ocean,fgco2,PgC/yr,Observed,GCP,historical -2006,2.48,ocean,fgco2,PgC/yr,Observed,GCP,historical -2007,2.56,ocean,fgco2,PgC/yr,Observed,GCP,historical -2008,2.36,ocean,fgco2,PgC/yr,Observed,GCP,historical -2009,2.55,ocean,fgco2,PgC/yr,Observed,GCP,historical -2010,2.54,ocean,fgco2,PgC/yr,Observed,GCP,historical -2011,2.69,ocean,fgco2,PgC/yr,Observed,GCP,historical diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/LeQuere_nbp.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/LeQuere_nbp.csv deleted file mode 100644 index d964fd198..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/LeQuere_nbp.csv +++ /dev/null @@ -1,58 +0,0 @@ -# All values in PgC/yr for the globe. For values in billion tonnes of CO2 multiply the numbers below by 3.67.,,,,,,, -# Global Carbon Project (GCP) www.tyndall.ac.uk/global-carbon-budget-2010 http://www.globalcarbonproject.org/carbonbudget,,,,,,, -# LeQuere et al. 2009,,,,,,, -#updated from 2009 to 2012 reference on 6/18/14,,,,,,, -year,value,ctag,vtag,type,units,model,scenario -1959,0.84,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1960,1.51,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1961,1.52,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1962,2.09,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1963,2.06,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1964,2.12,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1965,0.84,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1966,1.02,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1967,2.41,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1968,1.78,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1969,1.21,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1970,1.94,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1971,2.7,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1972,0.98,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1973,1.27,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1974,3.02,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1975,1.71,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1976,2.52,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1977,0.6,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1978,1.93,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1979,0.67,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1980,1.07,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1981,2.15,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1982,2.38,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1983,0.59,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1984,2.14,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1985,1.55,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1986,3.02,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1987,-0.41,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1988,0.8,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1989,2.91,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1990,3.08,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1991,4.04,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1992,4.03,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1993,2.8,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1994,2,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1995,1.71,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1996,3.68,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1997,2.5,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1998,-0.15,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1999,2.84,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2000,3.17,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2001,2.08,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2002,0.59,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2003,1.2,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2004,3.1,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2005,1.65,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2006,3.37,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2007,2.59,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2008,3.3,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2009,3.34,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2010,2.65,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2011,4.1,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/church_slr.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/church_slr.csv deleted file mode 100644 index e919f8b58..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/church_slr.csv +++ /dev/null @@ -1,135 +0,0 @@ -# Sea level data of Church & White (200x),,,,,,, -# as downloaded from SI of Vermeer et al (2006) and renormalized to 1990,,,,,,, -Year,value_slr,value_sl_rc,ctag,type,units,scenario,model -1870.5,-15.245,,slr,Observed,cm,historical,Church -1871.5,-15.545,-0.3,slr,Observed,cm,historical,Church -1872.5,-14.705,0.84,slr,Observed,cm,historical,Church -1873.5,-15.075,-0.37,slr,Observed,cm,historical,Church -1874.5,-15.245,-0.17,slr,Observed,cm,historical,Church -1875.5,-15.605,-0.36,slr,Observed,cm,historical,Church -1876.5,-14.355,1.25,slr,Observed,cm,historical,Church -1877.5,-13.345,1.01,slr,Observed,cm,historical,Church -1878.5,-13.205,0.14,slr,Observed,cm,historical,Church -1879.5,-14.405,-1.2,slr,Observed,cm,historical,Church -1880.5,-14.325,0.08,slr,Observed,cm,historical,Church -1881.5,-13.955,0.37,slr,Observed,cm,historical,Church -1882.5,-15.205,-1.25,slr,Observed,cm,historical,Church -1883.5,-15.075,0.13,slr,Observed,cm,historical,Church -1884.5,-13.985,1.09,slr,Observed,cm,historical,Church -1885.5,-14.225,-0.24,slr,Observed,cm,historical,Church -1886.5,-13.655,0.57,slr,Observed,cm,historical,Church -1887.5,-13.985,-0.33,slr,Observed,cm,historical,Church -1888.5,-14.305,-0.32,slr,Observed,cm,historical,Church -1889.5,-13.725,0.58,slr,Observed,cm,historical,Church -1890.5,-13.755,-0.03,slr,Observed,cm,historical,Church -1891.5,-13.695,0.06,slr,Observed,cm,historical,Church -1892.5,-13.335,0.36,slr,Observed,cm,historical,Church -1893.5,-12.795,0.54,slr,Observed,cm,historical,Church -1894.5,-13.535,-0.74,slr,Observed,cm,historical,Church -1895.5,-12.355,1.18,slr,Observed,cm,historical,Church -1896.5,-12.915,-0.56,slr,Observed,cm,historical,Church -1897.5,-12.535,0.38,slr,Observed,cm,historical,Church -1898.5,-12.085,0.45,slr,Observed,cm,historical,Church -1899.5,-11.635,0.45,slr,Observed,cm,historical,Church -1900.5,-12.485,-0.85,slr,Observed,cm,historical,Church -1901.5,-12.855,-0.37,slr,Observed,cm,historical,Church -1902.5,-12.635,0.22,slr,Observed,cm,historical,Church -1903.5,-11.915,0.72,slr,Observed,cm,historical,Church -1904.5,-12.185,-0.27,slr,Observed,cm,historical,Church -1905.5,-12.585,-0.4,slr,Observed,cm,historical,Church -1906.5,-11.965,0.62,slr,Observed,cm,historical,Church -1907.5,-12.205,-0.24,slr,Observed,cm,historical,Church -1908.5,-12.465,-0.26,slr,Observed,cm,historical,Church -1909.5,-12.045,0.42,slr,Observed,cm,historical,Church -1910.5,-12.275,-0.23,slr,Observed,cm,historical,Church -1911.5,-11.455,0.82,slr,Observed,cm,historical,Church -1912.5,-11.775,-0.32,slr,Observed,cm,historical,Church -1913.5,-11.655,0.12,slr,Observed,cm,historical,Church -1914.5,-10.835,0.82,slr,Observed,cm,historical,Church -1915.5,-10.195,0.64,slr,Observed,cm,historical,Church -1916.5,-11.065,-0.87,slr,Observed,cm,historical,Church -1917.5,-11.495,-0.43,slr,Observed,cm,historical,Church -1918.5,-11.195,0.3,slr,Observed,cm,historical,Church -1919.5,-10.995,0.2,slr,Observed,cm,historical,Church -1920.5,-11.045,-0.05,slr,Observed,cm,historical,Church -1921.5,-11.205,-0.16,slr,Observed,cm,historical,Church -1922.5,-11.325,-0.12,slr,Observed,cm,historical,Church -1923.5,-11.015,0.31,slr,Observed,cm,historical,Church -1924.5,-11.765,-0.75,slr,Observed,cm,historical,Church -1925.5,-11.905,-0.14,slr,Observed,cm,historical,Church -1926.5,-11.355,0.55,slr,Observed,cm,historical,Church -1927.5,-11.115,0.24,slr,Observed,cm,historical,Church -1928.5,-11.195,-0.08,slr,Observed,cm,historical,Church -1929.5,-11.485,-0.29,slr,Observed,cm,historical,Church -1930.5,-10.725,0.76,slr,Observed,cm,historical,Church -1931.5,-10.725,0,slr,Observed,cm,historical,Church -1932.5,-10.235,0.49,slr,Observed,cm,historical,Church -1933.5,-10.055,0.18,slr,Observed,cm,historical,Church -1934.5,-10.675,-0.62,slr,Observed,cm,historical,Church -1935.5,-9.835,0.84,slr,Observed,cm,historical,Church -1936.5,-9.865,-0.03,slr,Observed,cm,historical,Church -1937.5,-9.535,0.33,slr,Observed,cm,historical,Church -1938.5,-9.025,0.51,slr,Observed,cm,historical,Church -1939.5,-8.985,0.04,slr,Observed,cm,historical,Church -1940.5,-9.455,-0.47,slr,Observed,cm,historical,Church -1941.5,-7.955,1.5,slr,Observed,cm,historical,Church -1942.5,-7.845,0.11,slr,Observed,cm,historical,Church -1943.5,-8.085,-0.24,slr,Observed,cm,historical,Church -1944.5,-8.275,-0.19,slr,Observed,cm,historical,Church -1945.5,-8.015,0.26,slr,Observed,cm,historical,Church -1946.5,-7.435,0.58,slr,Observed,cm,historical,Church -1947.5,-7.405,0.03,slr,Observed,cm,historical,Church -1948.5,-6.805,0.6,slr,Observed,cm,historical,Church -1949.5,-6.845,-0.04,slr,Observed,cm,historical,Church -1950.5,-6.355,0.49,slr,Observed,cm,historical,Church -1951.5,-5.295,1.06,slr,Observed,cm,historical,Church -1952.5,-5.595,-0.3,slr,Observed,cm,historical,Church -1953.5,-5.345,0.25,slr,Observed,cm,historical,Church -1954.5,-5.505,-0.16,slr,Observed,cm,historical,Church -1955.5,-5.195,0.31,slr,Observed,cm,historical,Church -1956.5,-5.715,-0.52,slr,Observed,cm,historical,Church -1957.5,-4.255,1.46,slr,Observed,cm,historical,Church -1958.5,-3.945,0.31,slr,Observed,cm,historical,Church -1959.5,-4.075,-0.13,slr,Observed,cm,historical,Church -1960.5,-3.935,0.14,slr,Observed,cm,historical,Church -1961.5,-3.505,0.43,slr,Observed,cm,historical,Church -1962.5,-3.875,-0.37,slr,Observed,cm,historical,Church -1963.5,-3.845,0.03,slr,Observed,cm,historical,Church -1964.5,-4.415,-0.57,slr,Observed,cm,historical,Church -1965.5,-3.285,1.13,slr,Observed,cm,historical,Church -1966.5,-3.935,-0.65,slr,Observed,cm,historical,Church -1967.5,-3.995,-0.06,slr,Observed,cm,historical,Church -1968.5,-3.875,0.12,slr,Observed,cm,historical,Church -1969.5,-2.945,0.93,slr,Observed,cm,historical,Church -1970.5,-3.165,-0.22,slr,Observed,cm,historical,Church -1971.5,-2.365,0.8,slr,Observed,cm,historical,Church -1972.5,-1.915,0.45,slr,Observed,cm,historical,Church -1973.5,-1.955,-0.04,slr,Observed,cm,historical,Church -1974.5,-1.135,0.82,slr,Observed,cm,historical,Church -1975.5,-1.255,-0.12,slr,Observed,cm,historical,Church -1976.5,-1.515,-0.26,slr,Observed,cm,historical,Church -1977.5,-1.945,-0.43,slr,Observed,cm,historical,Church -1978.5,-1.415,0.53,slr,Observed,cm,historical,Church -1979.5,-1.475,-0.06,slr,Observed,cm,historical,Church -1980.5,-0.955,0.52,slr,Observed,cm,historical,Church -1981.5,0.115,1.07,slr,Observed,cm,historical,Church -1982.5,-0.525,-0.64,slr,Observed,cm,historical,Church -1983.5,0.025,0.55,slr,Observed,cm,historical,Church -1984.5,-0.045,-0.07,slr,Observed,cm,historical,Church -1985.5,-1.005,-0.96,slr,Observed,cm,historical,Church -1986.5,-1.095,-0.09,slr,Observed,cm,historical,Church -1987.5,-0.535,0.56,slr,Observed,cm,historical,Church -1988.5,-0.405,0.13,slr,Observed,cm,historical,Church -1989.5,-0.315,0.09,slr,Observed,cm,historical,Church -1990.5,0.315,0.63,slr,Observed,cm,historical,Church -1991.5,1.315,1,slr,Observed,cm,historical,Church -1992.5,1.565,0.25,slr,Observed,cm,historical,Church -1993.5,1.035,-0.53,slr,Observed,cm,historical,Church -1994.5,1.355,0.32,slr,Observed,cm,historical,Church -1995.5,2.025,0.67,slr,Observed,cm,historical,Church -1996.5,2.435,0.41,slr,Observed,cm,historical,Church -1997.5,3.375,0.94,slr,Observed,cm,historical,Church -1998.5,2.735,-0.64,slr,Observed,cm,historical,Church -1999.5,3.205,0.47,slr,Observed,cm,historical,Church -2000.5,3.565,0.36,slr,Observed,cm,historical,Church -2001.5,3.795,0.23,slr,Observed,cm,historical,Church diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/historical_SO2.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/historical_SO2.csv deleted file mode 100644 index 306c62f37..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/historical_SO2.csv +++ /dev/null @@ -1,25 +0,0 @@ -# Historical SO2 record ,,,,,, -# constructed using : Smith et al. through 1999,,,,,, -# Klimont et al. from 2000-2011,,,,,, -# Constant open burning emissions from 2000 - 2011,,,,,, -Year,value,vtag,units,type,ctag,scenario -1992,124770,SO2_emissions,Gg,observed,Forcing,historical -1993,122657,SO2_emissions,Gg,observed,Forcing,historical -1994,120543,SO2_emissions,Gg,observed,Forcing,historical -1995,118311,SO2_emissions,Gg,observed,Forcing,historical -1996,117804,SO2_emissions,Gg,observed,Forcing,historical -1997,116703,SO2_emissions,Gg,observed,Forcing,historical -1998,114790,SO2_emissions,Gg,observed,Forcing,historical -1999,110752,SO2_emissions,Gg,observed,Forcing,historical -2000,110425,SO2_emissions,Gg,observed,Forcing,historical -2001,108731,SO2_emissions,Gg,observed,Forcing,historical -2002,108097,SO2_emissions,Gg,observed,Forcing,historical -2003,110944,SO2_emissions,Gg,observed,Forcing,historical -2004,114584,SO2_emissions,Gg,observed,Forcing,historical -2005,116005,SO2_emissions,Gg,observed,Forcing,historical -2006,115887,SO2_emissions,Gg,observed,Forcing,historical -2007,114739,SO2_emissions,Gg,observed,Forcing,historical -2008,112351,SO2_emissions,Gg,observed,Forcing,historical -2009,107799,SO2_emissions,Gg,observed,Forcing,historical -2010,106726,SO2_emissions,Gg,observed,Forcing,historical -2011,104701,SO2_emissions,Gg,observed,Forcing,historical diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/lawdome_co2.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/lawdome_co2.csv deleted file mode 100644 index dc41b400c..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/lawdome_co2.csv +++ /dev/null @@ -1,197 +0,0 @@ -# Historical CO2 record derived from a spline fit (75 year cutoff) of the Law Dome ,,,,,,, -# from http://cdiac.ornl.gov/ftp/trends/co2/lawdome.smoothed.yr75,,,,,,, -Year,value,vtag,units,type,ctag,scenario,model -1010,279.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1015,279.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1020,279.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1025,279.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1030,279.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1035,280,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1040,280.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1045,280.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1050,280.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1055,280.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1060,280.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1065,281.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1070,281.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1075,281.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1080,281.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1085,281.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1090,282.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1095,282.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1100,282.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1105,282.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1110,282.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1115,283,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1120,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1125,283.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1130,283.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1135,283.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1140,283.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1145,283.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1150,283.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1155,284,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1160,284,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1165,284.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1170,284.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1175,284.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1180,284,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1185,284,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1190,283.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1195,283.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1200,283.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1205,283.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1210,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1215,283,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1220,282.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1225,282.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1230,282.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1235,282.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1240,282,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1245,281.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1250,281.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1255,281.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1260,282,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1265,282.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1270,282.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1275,282.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1280,282.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1285,282.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1290,282.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1295,282.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1300,283,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1305,283.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1310,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1315,283.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1320,283.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1325,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1330,283.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1335,282.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1340,282.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1345,282.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1350,282.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1355,281.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1360,281.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1365,281.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1370,281,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1375,280.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1380,280.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1385,280.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1390,280.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1395,280.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1400,280.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1405,280.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1410,280.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1415,280.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1420,280.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1425,280.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1430,280.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1435,280.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1440,280.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1445,280.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1450,280.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1455,280.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1460,280.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1465,280.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1470,280.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1475,280.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1480,281,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1485,281.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1490,281.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1495,281.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1500,282.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1505,282.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1510,282.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1515,282.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1520,283.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1525,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1530,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1535,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1540,283.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1545,283,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1550,282.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1555,282.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1560,282.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1565,281.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1570,281.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1575,280.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1580,279.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1585,278.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1590,278,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1595,277.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1600,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1605,275.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1610,275.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1615,275.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1620,275.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1625,275.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1630,275.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1635,275.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1640,276.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1645,276.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1650,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1655,276.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1660,276.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1665,276.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1670,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1675,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1680,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1685,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1690,276.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1695,276.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1700,276.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1705,276.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1710,276.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1715,277,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1720,277,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1725,277,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1730,277,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1735,276.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1740,276.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1745,276.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1750,277,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1755,277.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1760,277.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1765,278,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1770,278.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1775,279.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1780,280.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1785,280.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1790,281.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1795,282.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1800,282.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1805,283.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1810,283.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1815,284,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1820,284.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1825,284.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1830,284.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1835,284.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1840,284.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1845,284.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1850,285.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1855,285.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1860,286.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1865,287.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1870,288.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1875,289.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1880,290.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1885,292.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1890,293.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1895,295.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1900,296.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1905,298.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1910,299.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1915,301.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1920,303.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1925,304.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1930,306.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1935,308,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1940,309.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1945,310.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1950,312,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1955,314.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1960,316.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1965,320.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1970,324.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1975,329.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/marland.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/marland.csv deleted file mode 100644 index 314cbf009..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/marland.csv +++ /dev/null @@ -1,242 +0,0 @@ -# Atmospheric CO2 record,,,,,,,,,, -# Observed data set for Hector backend,,,,,,,,,, -# from ???,,,,,,,,,, -# Changes from original: added component, variable, type, value and units,,,,,,, -year,CO2,EFOSS,component,vtag,value,units,type,scenario,model,ctag -1764,277.951,0.003,carbon_cycle,atmos_CO2,277.951,ppmv CO2,Observed,historical,Marland,carbon_cycle -1765,277.98,0.003,carbon_cycle,atmos_CO2,277.98,ppmv CO2,Observed,historical,Marland,carbon_cycle -1766,278.011,0.003,carbon_cycle,atmos_CO2,278.011,ppmv CO2,Observed,historical,Marland,carbon_cycle -1767,278.045,0.003,carbon_cycle,atmos_CO2,278.045,ppmv CO2,Observed,historical,Marland,carbon_cycle -1768,278.082,0.003,carbon_cycle,atmos_CO2,278.082,ppmv CO2,Observed,historical,Marland,carbon_cycle -1769,278.121,0.003,carbon_cycle,atmos_CO2,278.121,ppmv CO2,Observed,historical,Marland,carbon_cycle -1770,278.164,0.003,carbon_cycle,atmos_CO2,278.164,ppmv CO2,Observed,historical,Marland,carbon_cycle -1771,278.21,0.004,carbon_cycle,atmos_CO2,278.21,ppmv CO2,Observed,historical,Marland,carbon_cycle -1772,278.258,0.004,carbon_cycle,atmos_CO2,278.258,ppmv CO2,Observed,historical,Marland,carbon_cycle -1773,278.31,0.004,carbon_cycle,atmos_CO2,278.31,ppmv CO2,Observed,historical,Marland,carbon_cycle -1774,278.364,0.004,carbon_cycle,atmos_CO2,278.364,ppmv CO2,Observed,historical,Marland,carbon_cycle -1775,278.422,0.004,carbon_cycle,atmos_CO2,278.422,ppmv CO2,Observed,historical,Marland,carbon_cycle -1776,278.483,0.004,carbon_cycle,atmos_CO2,278.483,ppmv CO2,Observed,historical,Marland,carbon_cycle -1777,278.546,0.004,carbon_cycle,atmos_CO2,278.546,ppmv CO2,Observed,historical,Marland,carbon_cycle -1778,278.613,0.004,carbon_cycle,atmos_CO2,278.613,ppmv CO2,Observed,historical,Marland,carbon_cycle -1779,278.683,0.004,carbon_cycle,atmos_CO2,278.683,ppmv CO2,Observed,historical,Marland,carbon_cycle -1780,278.756,0.004,carbon_cycle,atmos_CO2,278.756,ppmv CO2,Observed,historical,Marland,carbon_cycle -1781,278.833,0.005,carbon_cycle,atmos_CO2,278.833,ppmv CO2,Observed,historical,Marland,carbon_cycle -1782,278.912,0.005,carbon_cycle,atmos_CO2,278.912,ppmv CO2,Observed,historical,Marland,carbon_cycle -1783,278.995,0.005,carbon_cycle,atmos_CO2,278.995,ppmv CO2,Observed,historical,Marland,carbon_cycle -1784,279.081,0.005,carbon_cycle,atmos_CO2,279.081,ppmv CO2,Observed,historical,Marland,carbon_cycle -1785,279.171,0.005,carbon_cycle,atmos_CO2,279.171,ppmv CO2,Observed,historical,Marland,carbon_cycle -1786,279.263,0.005,carbon_cycle,atmos_CO2,279.263,ppmv CO2,Observed,historical,Marland,carbon_cycle -1787,279.359,0.005,carbon_cycle,atmos_CO2,279.359,ppmv CO2,Observed,historical,Marland,carbon_cycle -1788,279.459,0.005,carbon_cycle,atmos_CO2,279.459,ppmv CO2,Observed,historical,Marland,carbon_cycle -1789,279.561,0.005,carbon_cycle,atmos_CO2,279.561,ppmv CO2,Observed,historical,Marland,carbon_cycle -1790,279.668,0.005,carbon_cycle,atmos_CO2,279.668,ppmv CO2,Observed,historical,Marland,carbon_cycle -1791,279.777,0.006,carbon_cycle,atmos_CO2,279.777,ppmv CO2,Observed,historical,Marland,carbon_cycle -1792,279.89,0.006,carbon_cycle,atmos_CO2,279.89,ppmv CO2,Observed,historical,Marland,carbon_cycle -1793,280.007,0.006,carbon_cycle,atmos_CO2,280.007,ppmv CO2,Observed,historical,Marland,carbon_cycle -1794,280.127,0.006,carbon_cycle,atmos_CO2,280.127,ppmv CO2,Observed,historical,Marland,carbon_cycle -1795,280.25,0.006,carbon_cycle,atmos_CO2,280.25,ppmv CO2,Observed,historical,Marland,carbon_cycle -1796,280.377,0.006,carbon_cycle,atmos_CO2,280.377,ppmv CO2,Observed,historical,Marland,carbon_cycle -1797,280.507,0.007,carbon_cycle,atmos_CO2,280.507,ppmv CO2,Observed,historical,Marland,carbon_cycle -1798,280.64,0.007,carbon_cycle,atmos_CO2,280.64,ppmv CO2,Observed,historical,Marland,carbon_cycle -1799,280.776,0.007,carbon_cycle,atmos_CO2,280.776,ppmv CO2,Observed,historical,Marland,carbon_cycle -1800,280.914,0.008,carbon_cycle,atmos_CO2,280.914,ppmv CO2,Observed,historical,Marland,carbon_cycle -1801,281.054,0.008,carbon_cycle,atmos_CO2,281.054,ppmv CO2,Observed,historical,Marland,carbon_cycle -1802,281.195,0.01,carbon_cycle,atmos_CO2,281.195,ppmv CO2,Observed,historical,Marland,carbon_cycle -1803,281.337,0.009,carbon_cycle,atmos_CO2,281.337,ppmv CO2,Observed,historical,Marland,carbon_cycle -1804,281.479,0.009,carbon_cycle,atmos_CO2,281.479,ppmv CO2,Observed,historical,Marland,carbon_cycle -1805,281.622,0.009,carbon_cycle,atmos_CO2,281.622,ppmv CO2,Observed,historical,Marland,carbon_cycle -1806,281.764,0.01,carbon_cycle,atmos_CO2,281.764,ppmv CO2,Observed,historical,Marland,carbon_cycle -1807,281.906,0.01,carbon_cycle,atmos_CO2,281.906,ppmv CO2,Observed,historical,Marland,carbon_cycle -1808,282.047,0.01,carbon_cycle,atmos_CO2,282.047,ppmv CO2,Observed,historical,Marland,carbon_cycle -1809,282.185,0.01,carbon_cycle,atmos_CO2,282.185,ppmv CO2,Observed,historical,Marland,carbon_cycle -1810,282.322,0.01,carbon_cycle,atmos_CO2,282.322,ppmv CO2,Observed,historical,Marland,carbon_cycle -1811,282.457,0.011,carbon_cycle,atmos_CO2,282.457,ppmv CO2,Observed,historical,Marland,carbon_cycle -1812,282.588,0.011,carbon_cycle,atmos_CO2,282.588,ppmv CO2,Observed,historical,Marland,carbon_cycle -1813,282.717,0.011,carbon_cycle,atmos_CO2,282.717,ppmv CO2,Observed,historical,Marland,carbon_cycle -1814,282.841,0.011,carbon_cycle,atmos_CO2,282.841,ppmv CO2,Observed,historical,Marland,carbon_cycle -1815,282.962,0.012,carbon_cycle,atmos_CO2,282.962,ppmv CO2,Observed,historical,Marland,carbon_cycle -1816,283.078,0.013,carbon_cycle,atmos_CO2,283.078,ppmv CO2,Observed,historical,Marland,carbon_cycle -1817,283.19,0.014,carbon_cycle,atmos_CO2,283.19,ppmv CO2,Observed,historical,Marland,carbon_cycle -1818,283.297,0.014,carbon_cycle,atmos_CO2,283.297,ppmv CO2,Observed,historical,Marland,carbon_cycle -1819,283.401,0.014,carbon_cycle,atmos_CO2,283.401,ppmv CO2,Observed,historical,Marland,carbon_cycle -1820,283.502,0.014,carbon_cycle,atmos_CO2,283.502,ppmv CO2,Observed,historical,Marland,carbon_cycle -1821,283.6,0.014,carbon_cycle,atmos_CO2,283.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1822,283.696,0.015,carbon_cycle,atmos_CO2,283.696,ppmv CO2,Observed,historical,Marland,carbon_cycle -1823,283.79,0.016,carbon_cycle,atmos_CO2,283.79,ppmv CO2,Observed,historical,Marland,carbon_cycle -1824,283.883,0.016,carbon_cycle,atmos_CO2,283.883,ppmv CO2,Observed,historical,Marland,carbon_cycle -1825,283.974,0.017,carbon_cycle,atmos_CO2,283.974,ppmv CO2,Observed,historical,Marland,carbon_cycle -1826,284.066,0.017,carbon_cycle,atmos_CO2,284.066,ppmv CO2,Observed,historical,Marland,carbon_cycle -1827,284.157,0.018,carbon_cycle,atmos_CO2,284.157,ppmv CO2,Observed,historical,Marland,carbon_cycle -1828,284.249,0.018,carbon_cycle,atmos_CO2,284.249,ppmv CO2,Observed,historical,Marland,carbon_cycle -1829,284.343,0.018,carbon_cycle,atmos_CO2,284.343,ppmv CO2,Observed,historical,Marland,carbon_cycle -1830,284.438,0.024,carbon_cycle,atmos_CO2,284.438,ppmv CO2,Observed,historical,Marland,carbon_cycle -1831,284.535,0.023,carbon_cycle,atmos_CO2,284.535,ppmv CO2,Observed,historical,Marland,carbon_cycle -1832,284.3,0.023,carbon_cycle,atmos_CO2,284.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1833,284.1,0.024,carbon_cycle,atmos_CO2,284.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1834,284,0.024,carbon_cycle,atmos_CO2,284,ppmv CO2,Observed,historical,Marland,carbon_cycle -1835,283.8,0.025,carbon_cycle,atmos_CO2,283.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1836,283.7,0.029,carbon_cycle,atmos_CO2,283.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1837,283.5,0.029,carbon_cycle,atmos_CO2,283.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1838,283.4,0.03,carbon_cycle,atmos_CO2,283.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1839,283.4,0.031,carbon_cycle,atmos_CO2,283.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1840,283.4,0.033,carbon_cycle,atmos_CO2,283.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1841,283.4,0.034,carbon_cycle,atmos_CO2,283.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1842,283.5,0.036,carbon_cycle,atmos_CO2,283.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1843,283.6,0.037,carbon_cycle,atmos_CO2,283.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1844,283.7,0.039,carbon_cycle,atmos_CO2,283.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1845,283.9,0.043,carbon_cycle,atmos_CO2,283.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1846,284.1,0.043,carbon_cycle,atmos_CO2,284.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1847,284.2,0.046,carbon_cycle,atmos_CO2,284.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1848,284.4,0.047,carbon_cycle,atmos_CO2,284.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1849,284.6,0.05,carbon_cycle,atmos_CO2,284.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1850,284.7,0.054,carbon_cycle,atmos_CO2,284.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1851,284.9,0.054,carbon_cycle,atmos_CO2,284.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1852,285,0.057,carbon_cycle,atmos_CO2,285,ppmv CO2,Observed,historical,Marland,carbon_cycle -1853,285.1,0.059,carbon_cycle,atmos_CO2,285.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1854,285.3,0.069,carbon_cycle,atmos_CO2,285.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1855,285.4,0.071,carbon_cycle,atmos_CO2,285.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1856,285.6,0.076,carbon_cycle,atmos_CO2,285.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1857,285.7,0.077,carbon_cycle,atmos_CO2,285.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1858,285.9,0.078,carbon_cycle,atmos_CO2,285.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1859,286.1,0.083,carbon_cycle,atmos_CO2,286.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1860,286.2,0.091,carbon_cycle,atmos_CO2,286.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1861,286.4,0.095,carbon_cycle,atmos_CO2,286.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1862,286.5,0.097,carbon_cycle,atmos_CO2,286.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1863,286.6,0.104,carbon_cycle,atmos_CO2,286.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1864,286.8,0.112,carbon_cycle,atmos_CO2,286.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1865,286.9,0.119,carbon_cycle,atmos_CO2,286.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1866,287,0.122,carbon_cycle,atmos_CO2,287,ppmv CO2,Observed,historical,Marland,carbon_cycle -1867,287.1,0.13,carbon_cycle,atmos_CO2,287.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1868,287.2,0.135,carbon_cycle,atmos_CO2,287.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1869,287.4,0.142,carbon_cycle,atmos_CO2,287.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1870,287.5,0.147,carbon_cycle,atmos_CO2,287.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1871,287.7,0.156,carbon_cycle,atmos_CO2,287.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1872,287.9,0.173,carbon_cycle,atmos_CO2,287.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1873,288.1,0.184,carbon_cycle,atmos_CO2,288.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1874,288.4,0.174,carbon_cycle,atmos_CO2,288.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1875,288.7,0.188,carbon_cycle,atmos_CO2,288.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1876,289,0.191,carbon_cycle,atmos_CO2,289,ppmv CO2,Observed,historical,Marland,carbon_cycle -1877,289.4,0.194,carbon_cycle,atmos_CO2,289.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1878,289.8,0.196,carbon_cycle,atmos_CO2,289.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1879,290.2,0.21,carbon_cycle,atmos_CO2,290.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1880,290.7,0.236,carbon_cycle,atmos_CO2,290.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1881,291.2,0.243,carbon_cycle,atmos_CO2,291.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1882,291.7,0.256,carbon_cycle,atmos_CO2,291.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1883,292.1,0.272,carbon_cycle,atmos_CO2,292.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1884,292.6,0.275,carbon_cycle,atmos_CO2,292.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1885,293,0.277,carbon_cycle,atmos_CO2,293,ppmv CO2,Observed,historical,Marland,carbon_cycle -1886,293.3,0.281,carbon_cycle,atmos_CO2,293.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1887,293.6,0.295,carbon_cycle,atmos_CO2,293.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1888,293.8,0.327,carbon_cycle,atmos_CO2,293.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1889,294,0.327,carbon_cycle,atmos_CO2,294,ppmv CO2,Observed,historical,Marland,carbon_cycle -1890,294.2,0.356,carbon_cycle,atmos_CO2,294.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1891,294.3,0.372,carbon_cycle,atmos_CO2,294.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1892,294.5,0.374,carbon_cycle,atmos_CO2,294.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1893,294.6,0.37,carbon_cycle,atmos_CO2,294.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1894,294.7,0.383,carbon_cycle,atmos_CO2,294.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1895,294.8,0.406,carbon_cycle,atmos_CO2,294.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1896,294.9,0.419,carbon_cycle,atmos_CO2,294.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1897,295,0.44,carbon_cycle,atmos_CO2,295,ppmv CO2,Observed,historical,Marland,carbon_cycle -1898,295.2,0.465,carbon_cycle,atmos_CO2,295.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1899,295.5,0.507,carbon_cycle,atmos_CO2,295.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1900,295.8,0.534,carbon_cycle,atmos_CO2,295.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1901,296.1,0.552,carbon_cycle,atmos_CO2,296.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1902,296.5,0.566,carbon_cycle,atmos_CO2,296.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1903,296.8,0.617,carbon_cycle,atmos_CO2,296.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1904,297.2,0.624,carbon_cycle,atmos_CO2,297.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1905,297.6,0.663,carbon_cycle,atmos_CO2,297.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1906,298.1,0.707,carbon_cycle,atmos_CO2,298.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1907,298.5,0.784,carbon_cycle,atmos_CO2,298.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1908,298.9,0.75,carbon_cycle,atmos_CO2,298.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1909,299.3,0.785,carbon_cycle,atmos_CO2,299.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1910,299.7,0.819,carbon_cycle,atmos_CO2,299.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1911,300.1,0.836,carbon_cycle,atmos_CO2,300.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1912,300.4,0.879,carbon_cycle,atmos_CO2,300.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1913,300.8,0.943,carbon_cycle,atmos_CO2,300.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1914,301.1,0.85,carbon_cycle,atmos_CO2,301.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1915,301.4,0.838,carbon_cycle,atmos_CO2,301.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1916,301.7,0.901,carbon_cycle,atmos_CO2,301.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1917,302.1,0.955,carbon_cycle,atmos_CO2,302.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1918,302.4,0.936,carbon_cycle,atmos_CO2,302.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1919,302.7,0.806,carbon_cycle,atmos_CO2,302.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1920,303,0.932,carbon_cycle,atmos_CO2,303,ppmv CO2,Observed,historical,Marland,carbon_cycle -1921,303.4,0.803,carbon_cycle,atmos_CO2,303.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1922,303.8,0.845,carbon_cycle,atmos_CO2,303.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1923,304.1,0.97,carbon_cycle,atmos_CO2,304.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1924,304.5,0.963,carbon_cycle,atmos_CO2,304.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1925,305,0.975,carbon_cycle,atmos_CO2,305,ppmv CO2,Observed,historical,Marland,carbon_cycle -1926,305.4,0.983,carbon_cycle,atmos_CO2,305.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1927,305.8,1.062,carbon_cycle,atmos_CO2,305.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1928,306.3,1.055,carbon_cycle,atmos_CO2,306.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1929,306.8,1.135,carbon_cycle,atmos_CO2,306.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1930,307.2,1.043,carbon_cycle,atmos_CO2,307.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1931,307.7,0.932,carbon_cycle,atmos_CO2,307.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1932,308.2,0.84,carbon_cycle,atmos_CO2,308.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1933,308.6,0.886,carbon_cycle,atmos_CO2,308.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1934,309,0.965,carbon_cycle,atmos_CO2,309,ppmv CO2,Observed,historical,Marland,carbon_cycle -1935,309.4,1.018,carbon_cycle,atmos_CO2,309.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1936,309.8,1.119,carbon_cycle,atmos_CO2,309.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1937,310,1.198,carbon_cycle,atmos_CO2,310,ppmv CO2,Observed,historical,Marland,carbon_cycle -1938,310.2,1.13,carbon_cycle,atmos_CO2,310.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1939,310.3,1.179,carbon_cycle,atmos_CO2,310.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1940,310.4,1.288,carbon_cycle,atmos_CO2,310.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1941,310.4,1.322,carbon_cycle,atmos_CO2,310.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1942,310.3,1.331,carbon_cycle,atmos_CO2,310.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1943,310.2,1.381,carbon_cycle,atmos_CO2,310.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1944,310.1,1.376,carbon_cycle,atmos_CO2,310.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1945,310.1,1.153,carbon_cycle,atmos_CO2,310.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1946,310.1,1.228,carbon_cycle,atmos_CO2,310.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1947,310.2,1.38,carbon_cycle,atmos_CO2,310.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1948,310.3,1.455,carbon_cycle,atmos_CO2,310.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1949,310.5,1.403,carbon_cycle,atmos_CO2,310.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1950,310.7,1.612,carbon_cycle,atmos_CO2,310.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1951,311.1,1.748,carbon_cycle,atmos_CO2,311.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1952,311.5,1.774,carbon_cycle,atmos_CO2,311.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1953,311.9,1.817,carbon_cycle,atmos_CO2,311.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1954,312.4,1.838,carbon_cycle,atmos_CO2,312.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1955,313,2.013,carbon_cycle,atmos_CO2,313,ppmv CO2,Observed,historical,Marland,carbon_cycle -1956,313.6,2.146,carbon_cycle,atmos_CO2,313.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1957,314.2,2.236,carbon_cycle,atmos_CO2,314.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1958,314.9,2.294,carbon_cycle,atmos_CO2,314.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1959,315.39,2.422,carbon_cycle,atmos_CO2,315.39,ppmv CO2,Observed,historical,Marland,carbon_cycle -1960,316.32,2.534,carbon_cycle,atmos_CO2,316.32,ppmv CO2,Observed,historical,Marland,carbon_cycle -1961,317.06,2.549,carbon_cycle,atmos_CO2,317.06,ppmv CO2,Observed,historical,Marland,carbon_cycle -1962,317.86,2.651,carbon_cycle,atmos_CO2,317.86,ppmv CO2,Observed,historical,Marland,carbon_cycle -1963,318.4,2.797,carbon_cycle,atmos_CO2,318.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1964,318.93,2.951,carbon_cycle,atmos_CO2,318.93,ppmv CO2,Observed,historical,Marland,carbon_cycle -1965,319.44,3.086,carbon_cycle,atmos_CO2,319.44,ppmv CO2,Observed,historical,Marland,carbon_cycle -1966,320.78,3.242,carbon_cycle,atmos_CO2,320.78,ppmv CO2,Observed,historical,Marland,carbon_cycle -1967,321.59,3.346,carbon_cycle,atmos_CO2,321.59,ppmv CO2,Observed,historical,Marland,carbon_cycle -1968,322.46,3.518,carbon_cycle,atmos_CO2,322.46,ppmv CO2,Observed,historical,Marland,carbon_cycle -1969,324.03,3.726,carbon_cycle,atmos_CO2,324.03,ppmv CO2,Observed,historical,Marland,carbon_cycle -1970,325.09,3.998,carbon_cycle,atmos_CO2,325.09,ppmv CO2,Observed,historical,Marland,carbon_cycle -1971,325.73,4.147,carbon_cycle,atmos_CO2,325.73,ppmv CO2,Observed,historical,Marland,carbon_cycle -1972,326.87,4.31,carbon_cycle,atmos_CO2,326.87,ppmv CO2,Observed,historical,Marland,carbon_cycle -1973,329.09,4.54,carbon_cycle,atmos_CO2,329.09,ppmv CO2,Observed,historical,Marland,carbon_cycle -1974,329.66,4.548,carbon_cycle,atmos_CO2,329.66,ppmv CO2,Observed,historical,Marland,carbon_cycle -1975,330.56,4.52,carbon_cycle,atmos_CO2,330.56,ppmv CO2,Observed,historical,Marland,carbon_cycle -1976,331.56,4.78,carbon_cycle,atmos_CO2,331.56,ppmv CO2,Observed,historical,Marland,carbon_cycle -1977,333.31,4.921,carbon_cycle,atmos_CO2,333.31,ppmv CO2,Observed,historical,Marland,carbon_cycle -1978,334.91,4.989,carbon_cycle,atmos_CO2,334.91,ppmv CO2,Observed,historical,Marland,carbon_cycle -1979,336.26,5.268,carbon_cycle,atmos_CO2,336.26,ppmv CO2,Observed,historical,Marland,carbon_cycle -1980,338.1,5.212,carbon_cycle,atmos_CO2,338.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1981,339.34,5.047,carbon_cycle,atmos_CO2,339.34,ppmv CO2,Observed,historical,Marland,carbon_cycle -1982,340.56,5.006,carbon_cycle,atmos_CO2,340.56,ppmv CO2,Observed,historical,Marland,carbon_cycle -1983,342.21,4.985,carbon_cycle,atmos_CO2,342.21,ppmv CO2,Observed,historical,Marland,carbon_cycle -1984,343.81,5.162,carbon_cycle,atmos_CO2,343.81,ppmv CO2,Observed,historical,Marland,carbon_cycle -1985,345.3,5.313,carbon_cycle,atmos_CO2,345.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1986,346.72,5.473,carbon_cycle,atmos_CO2,346.72,ppmv CO2,Observed,historical,Marland,carbon_cycle -1987,348.44,5.61,carbon_cycle,atmos_CO2,348.44,ppmv CO2,Observed,historical,Marland,carbon_cycle -1988,350.96,5.812,carbon_cycle,atmos_CO2,350.96,ppmv CO2,Observed,historical,Marland,carbon_cycle -1989,352.59,5.933,carbon_cycle,atmos_CO2,352.59,ppmv CO2,Observed,historical,Marland,carbon_cycle -1990,353.83,6.007,carbon_cycle,atmos_CO2,353.83,ppmv CO2,Observed,historical,Marland,carbon_cycle -1991,355.18,6.091,carbon_cycle,atmos_CO2,355.18,ppmv CO2,Observed,historical,Marland,carbon_cycle -1992,355.88,5.98,carbon_cycle,atmos_CO2,355.88,ppmv CO2,Observed,historical,Marland,carbon_cycle -1993,356.6,5.979,carbon_cycle,atmos_CO2,356.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1994,358.03,6.087,carbon_cycle,atmos_CO2,358.03,ppmv CO2,Observed,historical,Marland,carbon_cycle -1995,358.85,6.204,carbon_cycle,atmos_CO2,358.85,ppmv CO2,Observed,historical,Marland,carbon_cycle -1996,361.62,6.322,carbon_cycle,atmos_CO2,361.62,ppmv CO2,Observed,historical,Marland,carbon_cycle -1997,362.76,6.424,carbon_cycle,atmos_CO2,362.76,ppmv CO2,Observed,historical,Marland,carbon_cycle -1998,365.48,6.382,carbon_cycle,atmos_CO2,365.48,ppmv CO2,Observed,historical,Marland,carbon_cycle -1999,367.56,6.356,carbon_cycle,atmos_CO2,367.56,ppmv CO2,Observed,historical,Marland,carbon_cycle -2000,368.77,6.519,carbon_cycle,atmos_CO2,368.77,ppmv CO2,Observed,historical,Marland,carbon_cycle diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Historical/maunaloa.csv b/scripts/outputplotter/comparison_data/GMD_2014/Historical/maunaloa.csv deleted file mode 100644 index 475733d23..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Historical/maunaloa.csv +++ /dev/null @@ -1,56 +0,0 @@ -# Atmospheric CO2 record,,,,,,,,,,,,,,,,,,,, -# Observed data set for Hector backend,,,,,,,,,,,,,,,,,,,, -# from http://cdiac.ornl.gov/ftp/trends/co2/maunaloa.co2,,,,,,,,,,,,,,,,,,,, -# Changes from original: added vtag, vtag, type, value and units,,,,,,,,,,,,,,,,, -Year,Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec,Average,value,ctag,vtag,units,type,scenario,model -1958,,,315.7,317.45,317.5,317.26,315.86,314.93,313.2,312.44,313.33,314.67,,,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1959,315.62,316.38,316.71,317.72,318.29,318.16,316.54,314.8,313.84,313.26,314.8,315.58,315.98,315.98,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1960,316.43,316.97,317.58,319.02,320.03,319.59,318.18,315.91,314.16,313.84,315,316.19,316.91,316.91,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1961,316.93,317.7,318.54,319.48,320.58,319.77,318.57,316.79,314.8,315.38,316.1,317.01,317.64,317.64,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1962,317.94,318.56,319.68,320.63,321.01,320.55,319.58,317.4,316.25,315.42,316.69,317.7,318.45,318.45,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1963,318.74,319.08,319.86,321.39,322.24,321.47,319.74,317.77,316.21,315.99,317.12,318.31,318.99,318.99,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1964,319.57,,,,322.24,321.89,320.44,318.7,316.7,316.79,317.79,318.71,,,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1965,319.44,320.44,320.89,322.13,322.16,321.87,321.39,318.8,317.81,317.3,318.87,319.42,320.04,320.04,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1966,320.62,321.59,322.39,323.87,324.01,323.75,322.39,320.37,318.64,318.1,319.79,321.08,321.38,321.38,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1967,322.06,322.5,323.04,324.42,325,324.09,322.55,320.92,319.31,319.31,320.72,321.96,322.16,322.16,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1968,322.57,323.15,323.89,325.02,325.57,325.36,324.14,322.03,320.41,320.25,321.31,322.84,323.05,323.05,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1969,324,324.42,325.64,326.66,327.34,326.76,325.88,323.67,322.38,321.78,322.85,324.12,324.63,324.63,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1970,325.03,325.99,326.87,328.14,328.07,327.66,326.35,324.69,323.1,323.16,323.98,325.13,325.68,325.68,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1971,326.17,326.68,327.18,327.78,328.92,328.57,327.34,325.46,323.36,323.57,324.8,326.01,326.32,326.32,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1972,326.77,327.63,327.75,329.72,330.07,329.09,328.05,326.32,324.93,325.06,326.5,327.55,327.45,327.45,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1973,328.55,329.56,330.3,331.5,332.48,332.07,330.87,329.31,327.51,327.18,328.16,328.64,329.68,329.68,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1974,329.35,330.71,331.48,332.65,333.09,332.25,331.18,329.4,327.43,327.37,328.46,329.57,330.25,330.25,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1975,330.4,331.41,332.04,333.31,333.96,333.6,331.91,330.06,328.56,328.34,329.49,330.76,331.15,331.15,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1976,331.75,332.56,333.5,334.58,334.87,334.34,333.05,330.94,329.3,328.94,330.31,331.68,332.15,332.15,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1977,332.93,333.42,334.7,336.07,336.74,336.27,334.93,332.75,331.59,331.16,332.4,333.85,333.9,333.9,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1978,334.97,335.39,336.64,337.76,338.01,337.89,336.54,334.68,332.76,332.55,333.92,334.95,335.51,335.51,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1979,336.23,336.76,337.96,338.89,339.47,339.29,337.73,336.09,333.91,333.86,335.29,336.73,336.85,336.85,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1980,338.01,338.36,340.08,340.77,341.46,341.17,339.56,337.6,335.88,336.02,337.1,338.21,338.69,338.69,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1981,339.23,340.47,341.38,342.51,342.91,342.25,340.49,338.43,336.69,336.86,338.36,339.61,339.93,339.93,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1982,340.75,341.61,342.7,343.57,344.13,343.35,342.06,339.81,337.98,337.86,339.26,340.49,341.13,341.13,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1983,341.37,342.52,343.1,344.94,345.75,345.32,343.99,342.39,339.86,339.99,341.15,342.99,342.78,342.78,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1984,343.7,344.5,345.28,347.08,347.43,346.79,345.4,343.28,341.07,341.35,342.98,344.22,344.42,344.42,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1985,344.97,346,347.43,348.35,348.93,348.25,346.56,344.68,343.09,342.8,344.24,345.55,345.9,345.9,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1986,346.3,346.96,347.86,349.55,350.21,349.54,347.94,345.9,344.85,344.17,345.66,346.9,347.15,347.15,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1987,348.02,348.47,349.42,350.99,351.84,351.25,349.52,348.1,346.45,346.36,347.81,348.96,348.93,348.93,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1988,350.43,351.73,352.22,353.59,354.22,353.79,352.38,350.43,348.72,348.88,350.07,351.34,351.48,351.48,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1989,352.76,353.07,353.68,355.42,355.67,355.13,353.9,351.67,349.8,349.99,351.29,352.52,352.91,352.91,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1990,353.66,354.7,355.39,356.2,357.16,356.23,354.82,352.91,350.96,351.18,352.83,354.21,354.19,354.19,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1991,354.72,355.75,357.16,358.6,359.33,358.24,356.17,354.02,352.15,352.21,353.75,354.99,355.59,355.59,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1992,355.98,356.72,357.81,359.15,359.66,359.25,357.02,355,353.01,353.31,354.16,355.4,356.37,356.37,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1993,356.7,357.16,358.38,359.46,360.28,359.6,357.57,355.52,353.69,353.99,355.34,356.8,357.04,357.04,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1994,358.37,358.91,359.97,361.26,361.68,360.95,359.55,357.48,355.84,355.99,357.58,359.04,358.89,358.89,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1995,359.97,361,361.64,363.45,363.79,363.26,361.9,359.46,358.05,357.76,359.56,360.7,360.88,360.88,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1996,362.05,363.25,364.02,364.72,365.41,364.97,363.65,361.48,359.45,359.6,360.76,362.33,362.64,362.64,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1997,363.18,364,364.56,366.35,366.79,365.62,364.47,362.51,360.19,360.77,362.43,364.28,363.76,363.76,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1998,365.33,366.15,367.31,368.61,369.3,368.87,367.64,365.77,363.9,364.23,365.46,366.97,366.63,366.63,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1999,368.15,368.87,369.59,371.14,371,370.35,369.27,366.93,364.63,365.13,366.67,368.01,368.31,368.31,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2000,369.14,369.46,370.52,371.66,371.82,371.7,370.12,368.12,366.62,366.73,368.29,369.53,369.48,369.48,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2001,370.28,371.5,372.12,372.87,374.02,373.3,371.62,369.55,367.96,368.09,369.68,371.24,371.02,371.02,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2002,372.43,373.09,373.52,374.86,375.55,375.41,374.02,371.49,370.7,370.25,372.08,373.78,373.1,373.1,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2003,374.68,375.63,376.11,377.65,378.35,378.13,376.62,374.5,372.99,373.01,374.35,375.7,375.64,375.64,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2004,376.79,377.37,378.41,380.52,380.63,379.57,377.79,375.86,374.07,374.24,375.86,377.47,377.38,377.38,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2005,378.37,379.69,380.41,382.1,382.28,382.13,380.66,378.71,376.42,376.88,378.32,380.04,379.67,379.67,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2006,381.38,382.03,382.64,384.62,384.95,384.06,382.29,380.47,378.67,379.06,380.14,381.74,381.84,381.84,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2007,382.45,383.68,384.23,386.26,386.39,385.87,384.39,381.78,380.73,380.81,382.33,383.69,383.55,383.55,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2008,385.07,385.72,385.85,386.71,388.45,387.64,386.1,383.95,382.91,382.73,383.96,385.02,385.34,385.34,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa diff --git a/scripts/outputplotter/comparison_data/GMD_2014/IPCC/IPCC2005.csv b/scripts/outputplotter/comparison_data/GMD_2014/IPCC/IPCC2005.csv deleted file mode 100644 index 77acd5045..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/IPCC/IPCC2005.csv +++ /dev/null @@ -1,15 +0,0 @@ -"vtag","error_max","error_min","value","year","type","units","source","ctag" -"FCO2",1.83,1.49,1.66,2005,"Observed","W/m2","IPCC","forcing" -"FCH4",0.53,0.43,0.48,2005,"Observed","W/m2","IPCC","forcing" -"FN2O",0.18,0.14,0.16,2005,"Observed","W/m2","IPCC","forcing" -"Fhalos",0.37,0.31,0.34,2005,"Observed","W/m2","IPCC","forcing" -"FO3s",0.05,-0.15,-0.05,2005,"Observed","W/m2","IPCC","forcing" -"FO3t",0.65,0.25,0.35,2005,"Observed","W/m2","IPCC","forcing" -"FwvCH4",0.12,0.02,0.07,2005,"Observed","W/m2","IPCC","forcing" -"Falbedo_lu",0,-0.4,-0.2,2005,"Observed","W/m2","IPCC","forcing" -"Falbedo_bc",0.2,0,0.1,2005,"Observed","W/m2","IPCC","forcing" -"Faerosol_direct",-0.1,-0.9,-0.5,2005,"Observed","W/m2","IPCC","forcing" -"Faerosol_cloud",-0.3,-1.8,-0.8,2005,"Observed","W/m2","IPCC","forcing" -"Fcontrail",0.03,0.003,0.01,2005,"Observed","W/m2","IPCC","forcing" -"Fsolar",0.3,0.06,0.12,2005,"Observed","W/m2","IPCC","forcing" -"Ftot",2.4,0.6,1.6,2005,"Observed","W/m2","IPCC","forcing" diff --git a/scripts/outputplotter/comparison_data/GMD_2014/IPCC/IPCC_alflux.xlsx b/scripts/outputplotter/comparison_data/GMD_2014/IPCC/IPCC_alflux.xlsx deleted file mode 100644 index 9a028ef95..000000000 Binary files a/scripts/outputplotter/comparison_data/GMD_2014/IPCC/IPCC_alflux.xlsx and /dev/null differ diff --git a/scripts/outputplotter/comparison_data/GMD_2014/IPCC/IPCC_aoflux.xlsx b/scripts/outputplotter/comparison_data/GMD_2014/IPCC/IPCC_aoflux.xlsx deleted file mode 100644 index e3938cb43..000000000 Binary files a/scripts/outputplotter/comparison_data/GMD_2014/IPCC/IPCC_aoflux.xlsx and /dev/null differ diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC/MAGICC53_aoflux.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC/MAGICC53_aoflux.csv deleted file mode 100644 index 404db5fd7..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC/MAGICC53_aoflux.csv +++ /dev/null @@ -1,25 +0,0 @@ -#MAGICC 5.3,,,,,,, -#3 climate sensitivity for RCP 4.5,,,,,,, -Year,value,ctag,vtag,type,scenario,units,model -1990,2.24,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -1995,2.33121,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2000,2.47924,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2005,2.67979,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2010,2.90364,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2015,3.08354,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2020,3.28317,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2025,3.50961,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2030,3.75161,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2035,3.98262,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2040,4.19039,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2045,4.36006,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2050,4.48307,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2055,4.53838,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2060,4.52437,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2065,4.45329,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2070,4.32561,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2075,4.14301,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2080,3.90181,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2085,3.68223,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2090,3.54139,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2095,3.43219,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC/MAGICC53_aoflux_rcp85.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC/MAGICC53_aoflux_rcp85.csv deleted file mode 100644 index e807f12f0..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC/MAGICC53_aoflux_rcp85.csv +++ /dev/null @@ -1,25 +0,0 @@ -#MAGICC 5.3,,,,,,, -#3 climate sensitivity for RCP 4.5,,,,,,, -Year,value,ctag,vtag,type,scenario,units,model -1990,2.24,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -1995,2.33121,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2000,2.47924,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2005,2.67979,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2010,2.93349,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2015,3.20421,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2020,3.57009,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2025,3.98049,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2030,4.40974,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2035,4.87384,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2040,5.34899,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2045,5.8163,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2050,6.29892,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2055,6.77887,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2060,7.2441,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2065,7.66882,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2070,8.03235,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2075,8.33935,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2080,8.5742,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2085,8.75353,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2090,8.8713,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2095,8.94463,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC/magicc.csv1 b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC/magicc.csv1 deleted file mode 100644 index 9d8a815ce..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC/magicc.csv1 +++ /dev/null @@ -1 +0,0 @@ -# MAGICC (DT2X=3.0) output,,,,,,,,,,, # Observed data set for Hector backend,,,,,,,,,,, # Changes from original: added component, variable, type, value and units,,,,,,,, YEAR,RUN,FILE,DT2X,VARIABLE_magicc,VALUE,misc,units,run_name,component,variable,type 1765,EPA_Baseline,concs.dis,1.5,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CO2HI,278,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CO2HI,278.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CO2HI,278.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CO2HI,278.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CO2HI,279.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CO2HI,279.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CO2HI,280.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CO2HI,280.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CO2HI,281.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CO2HI,282.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CO2HI,282.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CO2HI,283.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CO2HI,283.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CO2HI,284.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CO2HI,284.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CO2HI,285.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CO2HI,286.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CO2HI,286.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CO2HI,287.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CO2HI,288,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CO2HI,288.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CO2HI,289.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CO2HI,290.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CO2HI,291.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CO2HI,292.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CO2HI,293.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CO2HI,294.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CO2HI,296,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CO2HI,297.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CO2HI,298.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CO2HI,300.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CO2HI,301.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CO2HI,303.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CO2HI,304.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CO2HI,306.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CO2HI,307.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CO2HI,309.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CO2HI,311.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CO2HI,313.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CO2HI,316.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CO2HI,320.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CO2HI,325.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CO2HI,331.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CO2HI,338.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CO2HI,345.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CO2HI,353.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CO2HI,361.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CO2HI,369.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CO2HI,380.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CO2HI,392.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CO2HI,405.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CO2HI,420.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CO2HI,435.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CO2HI,452.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CO2HI,471,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CO2HI,490.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CO2HI,511.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CO2HI,533.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CO2HI,556.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CO2HI,580.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CO2HI,606.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CO2HI,632.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CO2HI,659.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CO2HI,687.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CO2HI,717.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CO2HI,747.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CO2HI,778.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CO2HI,810.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CO2LO,278,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CO2LO,278.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CO2LO,278.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CO2LO,278.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CO2LO,279.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CO2LO,279.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CO2LO,280.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CO2LO,280.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CO2LO,281.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CO2LO,282.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CO2LO,282.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CO2LO,283.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CO2LO,283.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CO2LO,284.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CO2LO,284.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CO2LO,285.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CO2LO,286.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CO2LO,286.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CO2LO,287.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CO2LO,288,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CO2LO,288.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CO2LO,289.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CO2LO,290.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CO2LO,291.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CO2LO,292.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CO2LO,293.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CO2LO,294.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CO2LO,296,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CO2LO,297.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CO2LO,298.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CO2LO,300.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CO2LO,301.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CO2LO,303.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CO2LO,304.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CO2LO,306.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CO2LO,307.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CO2LO,309.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CO2LO,311.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CO2LO,313.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CO2LO,316.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CO2LO,320.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CO2LO,325.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CO2LO,331.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CO2LO,338.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CO2LO,345.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CO2LO,353.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CO2LO,361.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CO2LO,369.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CO2LO,377.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CO2LO,386,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CO2LO,395.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CO2LO,406.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CO2LO,418.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CO2LO,431.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CO2LO,445.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CO2LO,460.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CO2LO,476.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CO2LO,493.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CO2LO,511.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CO2LO,530.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CO2LO,549.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CO2LO,569.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CO2LO,589.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CO2LO,611.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CO2LO,633.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CO2LO,656,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CO2LO,679.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CO2LO,703.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CO2MID,278,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CO2MID,278.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CO2MID,278.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CO2MID,278.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CO2MID,279.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CO2MID,279.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CO2MID,280.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CO2MID,280.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CO2MID,281.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CO2MID,282.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CO2MID,282.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CO2MID,283.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CO2MID,283.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CO2MID,284.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CO2MID,284.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CO2MID,285.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CO2MID,286.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CO2MID,286.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CO2MID,287.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CO2MID,288,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CO2MID,288.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CO2MID,289.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CO2MID,290.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CO2MID,291.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CO2MID,292.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CO2MID,293.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CO2MID,294.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CO2MID,296,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CO2MID,297.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CO2MID,298.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CO2MID,300.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CO2MID,301.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CO2MID,303.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CO2MID,304.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CO2MID,306.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CO2MID,307.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CO2MID,309.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CO2MID,311.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CO2MID,313.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CO2MID,316.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CO2MID,320.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CO2MID,325.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CO2MID,331.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CO2MID,338.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CO2MID,345.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CO2MID,353.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CO2MID,361.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CO2MID,369.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CO2MID,378.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CO2MID,389.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CO2MID,400.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CO2MID,413,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CO2MID,426.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CO2MID,441.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CO2MID,457.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CO2MID,475.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CO2MID,493.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CO2MID,513.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CO2MID,533.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CO2MID,554.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CO2MID,577.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CO2MID,600.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CO2MID,624.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CO2MID,649.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CO2MID,675,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CO2MID,701.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CO2MID,729.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CO2MID,757.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CO2USER,278,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1770,EPA_Baseline,concs.dis,1.5,CO2USER,278.1,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1775,EPA_Baseline,concs.dis,1.5,CO2USER,278.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1780,EPA_Baseline,concs.dis,1.5,CO2USER,278.7,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1785,EPA_Baseline,concs.dis,1.5,CO2USER,279.1,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1790,EPA_Baseline,concs.dis,1.5,CO2USER,279.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1795,EPA_Baseline,concs.dis,1.5,CO2USER,280.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1800,EPA_Baseline,concs.dis,1.5,CO2USER,280.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1805,EPA_Baseline,concs.dis,1.5,CO2USER,281.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1810,EPA_Baseline,concs.dis,1.5,CO2USER,282.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1815,EPA_Baseline,concs.dis,1.5,CO2USER,282.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1820,EPA_Baseline,concs.dis,1.5,CO2USER,283.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1825,EPA_Baseline,concs.dis,1.5,CO2USER,283.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1830,EPA_Baseline,concs.dis,1.5,CO2USER,284.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1835,EPA_Baseline,concs.dis,1.5,CO2USER,284.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1840,EPA_Baseline,concs.dis,1.5,CO2USER,285.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1845,EPA_Baseline,concs.dis,1.5,CO2USER,286.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1850,EPA_Baseline,concs.dis,1.5,CO2USER,286.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1855,EPA_Baseline,concs.dis,1.5,CO2USER,287.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1860,EPA_Baseline,concs.dis,1.5,CO2USER,288,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1865,EPA_Baseline,concs.dis,1.5,CO2USER,288.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1870,EPA_Baseline,concs.dis,1.5,CO2USER,289.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1875,EPA_Baseline,concs.dis,1.5,CO2USER,290.1,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1880,EPA_Baseline,concs.dis,1.5,CO2USER,291.1,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1885,EPA_Baseline,concs.dis,1.5,CO2USER,292.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1890,EPA_Baseline,concs.dis,1.5,CO2USER,293.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1895,EPA_Baseline,concs.dis,1.5,CO2USER,294.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1900,EPA_Baseline,concs.dis,1.5,CO2USER,296,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1905,EPA_Baseline,concs.dis,1.5,CO2USER,297.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1910,EPA_Baseline,concs.dis,1.5,CO2USER,298.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1915,EPA_Baseline,concs.dis,1.5,CO2USER,300.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1920,EPA_Baseline,concs.dis,1.5,CO2USER,301.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1925,EPA_Baseline,concs.dis,1.5,CO2USER,303.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1930,EPA_Baseline,concs.dis,1.5,CO2USER,304.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1935,EPA_Baseline,concs.dis,1.5,CO2USER,306.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1940,EPA_Baseline,concs.dis,1.5,CO2USER,307.7,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1945,EPA_Baseline,concs.dis,1.5,CO2USER,309.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1950,EPA_Baseline,concs.dis,1.5,CO2USER,311.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1955,EPA_Baseline,concs.dis,1.5,CO2USER,313.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1960,EPA_Baseline,concs.dis,1.5,CO2USER,316.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1965,EPA_Baseline,concs.dis,1.5,CO2USER,320.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1970,EPA_Baseline,concs.dis,1.5,CO2USER,325.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1975,EPA_Baseline,concs.dis,1.5,CO2USER,331.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1980,EPA_Baseline,concs.dis,1.5,CO2USER,338.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1985,EPA_Baseline,concs.dis,1.5,CO2USER,345.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1990,EPA_Baseline,concs.dis,1.5,CO2USER,353.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1995,EPA_Baseline,concs.dis,1.5,CO2USER,361.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2000,EPA_Baseline,concs.dis,1.5,CO2USER,369.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2005,EPA_Baseline,concs.dis,1.5,CO2USER,378.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2010,EPA_Baseline,concs.dis,1.5,CO2USER,389.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2015,EPA_Baseline,concs.dis,1.5,CO2USER,400.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2020,EPA_Baseline,concs.dis,1.5,CO2USER,413,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2025,EPA_Baseline,concs.dis,1.5,CO2USER,426.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2030,EPA_Baseline,concs.dis,1.5,CO2USER,441.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2035,EPA_Baseline,concs.dis,1.5,CO2USER,457.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2040,EPA_Baseline,concs.dis,1.5,CO2USER,475.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2045,EPA_Baseline,concs.dis,1.5,CO2USER,493.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2050,EPA_Baseline,concs.dis,1.5,CO2USER,513.1,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2055,EPA_Baseline,concs.dis,1.5,CO2USER,533.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2060,EPA_Baseline,concs.dis,1.5,CO2USER,554.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2065,EPA_Baseline,concs.dis,1.5,CO2USER,577.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2070,EPA_Baseline,concs.dis,1.5,CO2USER,600.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2075,EPA_Baseline,concs.dis,1.5,CO2USER,624.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2080,EPA_Baseline,concs.dis,1.5,CO2USER,649.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2085,EPA_Baseline,concs.dis,1.5,CO2USER,675,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2090,EPA_Baseline,concs.dis,1.5,CO2USER,701.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2095,EPA_Baseline,concs.dis,1.5,CO2USER,729.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2100,EPA_Baseline,concs.dis,1.5,CO2USER,757.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1765,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,1.5,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,CH4tot,0,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,CH4tot,0.012,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,CH4tot,0.0237,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,CH4tot,0.0318,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,CH4tot,0.0454,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,CH4tot,0.0664,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,CH4tot,0.092,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,CH4tot,0.1194,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,CH4tot,0.1468,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,CH4tot,0.1741,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,CH4tot,0.1994,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2215,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2414,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2581,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2712,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2819,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2884,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,CH4tot,0.29,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2882,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2854,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2829,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2806,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2788,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,CO2,0,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,CO2,0.114,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,CO2,0.2311,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,CO2,0.3678,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,CO2,0.5127,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,CO2,0.6675,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,CO2,0.8305,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,CO2,1.0033,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,CO2,1.1875,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,CO2,1.3811,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,CO2,1.5806,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,CO2,1.7839,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,CO2,1.9911,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,CO2,2.2005,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,CO2,2.4104,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,CO2,2.6211,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,CO2,2.8317,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,CO2,3.0414,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,CO2,3.2505,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,CO2,3.4588,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,CO2,3.6664,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,CO2,3.8735,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,CO2,4.0756,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,TOTAL,0.50541,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,TOTAL,0.71904,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,TOTAL,0.94235,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,TOTAL,1.1701,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,TOTAL,1.42745,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,TOTAL,1.69603,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,TOTAL,1.97543,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,TOTAL,2.25424,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,TOTAL,2.53241,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,TOTAL,2.81093,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,TOTAL,3.06744,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,TOTAL,3.31989,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,TOTAL,3.57066,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,TOTAL,3.81233,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,TOTAL,4.04677,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,TOTAL,4.27605,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,TOTAL,4.50523,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,TOTAL,4.73428,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,TOTAL,4.9622,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,TOTAL,5.17965,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,1.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,1.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,1.5,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,1.5,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,1.5,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,1.5,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,1.5,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,1.5,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,1.5,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,1.5,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,1.5,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,1.5,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,1.5,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,1.5,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,1.5,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,1.5,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,1.5,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,1.5,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,1.5,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,1.5,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,1.5,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,1.5,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,1.5,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,1.5,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,1.5,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,1.5,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,1.5,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,1.5,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,1.5,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,1.5,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,1.5,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,1.5,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,1.5,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,1.5,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,1.5,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,1.5,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,1.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,1.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,1.5,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,1.5,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,1.5,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,1.5,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,1.5,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,1.5,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,1.5,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,1.5,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,1.5,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,1.5,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,1.5,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,1.5,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,1.5,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,1.5,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,1.5,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,1.5,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,1.5,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,1.5,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,1.5,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,1.5,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,1.5,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,1.5,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,1.5,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,1.5,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,1.5,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,1.5,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,1.5,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,1.5,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,1.5,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,1.5,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,1.5,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,1.5,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,1.5,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,1.5,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,1.5,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,1.5,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,1.5,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,1.5,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,1.5,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,1.5,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,1.5,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,1.5,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,1.5,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,1.5,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,1.5,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,1.5,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,1.5,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,1.5,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,1.5,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,1.5,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,1.5,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,1.5,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,1.5,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,1.5,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,1.5,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,1.5,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,1.5,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,1.5,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,1.5,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1770,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1775,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1780,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1785,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1790,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1795,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1800,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1805,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1810,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1815,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1820,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1825,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1830,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1835,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1840,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1845,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1850,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1855,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1860,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1865,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1870,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1875,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1880,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1885,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1890,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1895,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1900,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1905,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1910,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1915,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.9,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1920,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.9,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1925,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.8,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1930,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1935,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1940,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1945,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1950,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1955,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1960,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1965,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1970,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1975,EPA_Baseline,sealev.dis,1.5,MSLUSER,-2.8,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1980,EPA_Baseline,sealev.dis,1.5,MSLUSER,-2.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1985,EPA_Baseline,sealev.dis,1.5,MSLUSER,-2.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1990,EPA_Baseline,sealev.dis,1.5,MSLUSER,0,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1995,EPA_Baseline,sealev.dis,1.5,MSLUSER,0.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2000,EPA_Baseline,sealev.dis,1.5,MSLUSER,1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2005,EPA_Baseline,sealev.dis,1.5,MSLUSER,1.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2010,EPA_Baseline,sealev.dis,1.5,MSLUSER,2.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2015,EPA_Baseline,sealev.dis,1.5,MSLUSER,2.8,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2020,EPA_Baseline,sealev.dis,1.5,MSLUSER,3.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2025,EPA_Baseline,sealev.dis,1.5,MSLUSER,4.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2030,EPA_Baseline,sealev.dis,1.5,MSLUSER,5.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2035,EPA_Baseline,sealev.dis,1.5,MSLUSER,6.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2040,EPA_Baseline,sealev.dis,1.5,MSLUSER,7.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2045,EPA_Baseline,sealev.dis,1.5,MSLUSER,8.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2050,EPA_Baseline,sealev.dis,1.5,MSLUSER,9.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2055,EPA_Baseline,sealev.dis,1.5,MSLUSER,10.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2060,EPA_Baseline,sealev.dis,1.5,MSLUSER,11.9,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2065,EPA_Baseline,sealev.dis,1.5,MSLUSER,13.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2070,EPA_Baseline,sealev.dis,1.5,MSLUSER,14.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2075,EPA_Baseline,sealev.dis,1.5,MSLUSER,15.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2080,EPA_Baseline,sealev.dis,1.5,MSLUSER,17.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2085,EPA_Baseline,sealev.dis,1.5,MSLUSER,18.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2090,EPA_Baseline,sealev.dis,1.5,MSLUSER,19.9,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2095,EPA_Baseline,sealev.dis,1.5,MSLUSER,21.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2100,EPA_Baseline,sealev.dis,1.5,MSLUSER,22.8,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1765,EPA_Baseline,temps.dis,1.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,1.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,1.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,1.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,1.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,1.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,1.5,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,1.5,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,1.5,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,1.5,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,1.5,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,1.5,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,1.5,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,1.5,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,1.5,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,1.5,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,1.5,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,1.5,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,1.5,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,1.5,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,1.5,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,1.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,1.5,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,1.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,1.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,1.5,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,1.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,1.5,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,1.5,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,1.5,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,1.5,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,1.5,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,1.5,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,1.5,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,1.5,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,1.5,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,1.5,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,1.5,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,1.5,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,1.5,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,1.5,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,1.5,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,1.5,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,1.5,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,1.5,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,1.5,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,1.5,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,1.5,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,1.5,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,1.5,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,1.5,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,1.5,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,1.5,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,1.5,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,1.5,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,1.5,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,1.5,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,1.5,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,1.5,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,1.5,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,1.5,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,1.5,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,1.5,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,1.5,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,1.5,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,1.5,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,1.5,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,1.5,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,1.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,1.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,1.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,1.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,1.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,1.5,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,1.5,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,1.5,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,1.5,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,1.5,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,1.5,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,1.5,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,1.5,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,1.5,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,1.5,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,1.5,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,1.5,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,1.5,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,1.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,1.5,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,1.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,1.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,1.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,1.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,1.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,1.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,1.5,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,1.5,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,1.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,1.5,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,1.5,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,1.5,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,1.5,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,1.5,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,1.5,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,1.5,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,1.5,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,1.5,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,1.5,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,1.5,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,1.5,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,1.5,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,1.5,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,1.5,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,1.5,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,1.5,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,1.5,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,1.5,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,1.5,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,1.5,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,1.5,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,1.5,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,1.5,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,1.5,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,1.5,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,1.5,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,1.5,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,1.5,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,1.5,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,1.5,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,1.5,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,1.5,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,1.5,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,1.5,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,1.5,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,1.5,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,1.5,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,1.5,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,1.5,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,1.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,1.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,1.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,1.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,1.5,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,1.5,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,1.5,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,1.5,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,1.5,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,1.5,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,1.5,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,1.5,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,1.5,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,1.5,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,1.5,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,1.5,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,1.5,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,1.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,1.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,1.5,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,1.5,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,1.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,1.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,1.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,1.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,1.5,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,1.5,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,1.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,1.5,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,1.5,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,1.5,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,1.5,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,1.5,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,1.5,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,1.5,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,1.5,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,1.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,1.5,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,1.5,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,1.5,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,1.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,1.5,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,1.5,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,1.5,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,1.5,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,1.5,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,1.5,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,1.5,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,1.5,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,1.5,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,1.5,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,1.5,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,1.5,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,1.5,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,1.5,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,1.5,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,1.5,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,1.5,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,1.5,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,1.5,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,1.5,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,1.5,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,1.5,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,1.5,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,1.5,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,1.5,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,1.5,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,1.5,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,1.5,TEMUSER,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,1.5,TEMUSER,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,1.5,TEMUSER,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,1.5,TEMUSER,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,1.5,TEMUSER,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,1.5,TEMUSER,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,1.5,TEMUSER,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,1.5,TEMUSER,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,1.5,TEMUSER,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,1.5,TEMUSER,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,1.5,TEMUSER,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,1.5,TEMUSER,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,1.5,TEMUSER,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,1.5,TEMUSER,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,1.5,TEMUSER,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,1.5,TEMUSER,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,1.5,TEMUSER,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,1.5,TEMUSER,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,1.5,TEMUSER,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,1.5,TEMUSER,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,1.5,TEMUSER,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,1.5,TEMUSER,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CO2HI,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CO2HI,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CO2HI,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CO2HI,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CO2HI,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CO2HI,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CO2HI,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CO2HI,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CO2HI,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CO2HI,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CO2HI,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CO2HI,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CO2HI,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CO2HI,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CO2HI,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CO2HI,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CO2HI,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CO2HI,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CO2HI,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CO2HI,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CO2HI,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CO2HI,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CO2HI,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CO2HI,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CO2HI,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CO2HI,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CO2HI,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CO2HI,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CO2HI,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CO2HI,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CO2HI,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CO2HI,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CO2HI,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CO2HI,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CO2HI,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CO2HI,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CO2HI,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CO2HI,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CO2HI,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CO2HI,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CO2HI,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CO2HI,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CO2HI,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CO2HI,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CO2HI,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CO2HI,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CO2HI,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CO2HI,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CO2HI,380.5,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CO2HI,392.8,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CO2HI,406.2,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CO2HI,420.6,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CO2HI,436.3,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CO2HI,453.6,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CO2HI,472.2,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CO2HI,492.2,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CO2HI,513.5,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CO2HI,536,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CO2HI,559.7,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CO2HI,584.4,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CO2HI,610.3,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CO2HI,637.2,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CO2HI,665.2,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CO2HI,694.2,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CO2HI,724.2,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CO2HI,755.4,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CO2HI,787.8,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CO2HI,820.7,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CO2LO,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CO2LO,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CO2LO,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CO2LO,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CO2LO,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CO2LO,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CO2LO,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CO2LO,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CO2LO,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CO2LO,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CO2LO,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CO2LO,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CO2LO,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CO2LO,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CO2LO,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CO2LO,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CO2LO,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CO2LO,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CO2LO,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CO2LO,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CO2LO,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CO2LO,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CO2LO,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CO2LO,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CO2LO,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CO2LO,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CO2LO,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CO2LO,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CO2LO,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CO2LO,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CO2LO,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CO2LO,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CO2LO,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CO2LO,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CO2LO,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CO2LO,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CO2LO,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CO2LO,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CO2LO,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CO2LO,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CO2LO,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CO2LO,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CO2LO,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CO2LO,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CO2LO,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CO2LO,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CO2LO,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CO2LO,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CO2LO,377.4,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CO2LO,386.2,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CO2LO,396,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CO2LO,406.9,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CO2LO,418.8,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CO2LO,432.1,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CO2LO,446.6,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CO2LO,462.2,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CO2LO,478.6,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CO2LO,496,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CO2LO,514.3,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CO2LO,533.2,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CO2LO,553.1,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CO2LO,573.6,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CO2LO,594.9,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CO2LO,616.9,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CO2LO,639.7,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CO2LO,663.3,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CO2LO,687.8,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CO2LO,712.6,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CO2MID,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CO2MID,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CO2MID,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CO2MID,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CO2MID,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CO2MID,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CO2MID,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CO2MID,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CO2MID,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CO2MID,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CO2MID,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CO2MID,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CO2MID,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CO2MID,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CO2MID,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CO2MID,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CO2MID,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CO2MID,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CO2MID,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CO2MID,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CO2MID,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CO2MID,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CO2MID,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CO2MID,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CO2MID,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CO2MID,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CO2MID,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CO2MID,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CO2MID,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CO2MID,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CO2MID,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CO2MID,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CO2MID,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CO2MID,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CO2MID,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CO2MID,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CO2MID,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CO2MID,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CO2MID,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CO2MID,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CO2MID,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CO2MID,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CO2MID,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CO2MID,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CO2MID,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CO2MID,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CO2MID,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CO2MID,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CO2MID,378.9,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CO2MID,389.4,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CO2MID,400.9,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CO2MID,413.5,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CO2MID,427.2,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CO2MID,442.4,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CO2MID,459,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CO2MID,476.7,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CO2MID,495.5,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CO2MID,515.4,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CO2MID,536.4,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CO2MID,558.3,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CO2MID,581.2,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CO2MID,605,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CO2MID,629.7,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CO2MID,655.3,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CO2MID,681.9,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CO2MID,709.5,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CO2MID,738.2,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CO2MID,767.3,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CO2USER,278,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CO2USER,278.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CO2USER,278.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CO2USER,278.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CO2USER,279.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CO2USER,279.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CO2USER,280.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CO2USER,280.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CO2USER,281.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CO2USER,282.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CO2USER,282.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CO2USER,283.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CO2USER,283.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CO2USER,284.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CO2USER,284.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CO2USER,285.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CO2USER,286.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CO2USER,286.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CO2USER,287.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CO2USER,288,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CO2USER,288.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CO2USER,289.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CO2USER,290.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CO2USER,291.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CO2USER,292.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CO2USER,293.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CO2USER,294.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CO2USER,296,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CO2USER,297.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CO2USER,298.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CO2USER,300.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CO2USER,301.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CO2USER,303.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CO2USER,304.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CO2USER,306.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CO2USER,307.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CO2USER,309.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CO2USER,311.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CO2USER,313.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CO2USER,316.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CO2USER,320.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CO2USER,325.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CO2USER,331.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CO2USER,338.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CO2USER,345.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CO2USER,353.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CO2USER,361.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CO2USER,369.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CO2USER,378.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CO2USER,389.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CO2USER,400.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CO2USER,413.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CO2USER,427.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CO2USER,442.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CO2USER,459,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CO2USER,476.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CO2USER,495.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CO2USER,515.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CO2USER,536.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CO2USER,558.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CO2USER,581.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CO2USER,605,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CO2USER,629.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CO2USER,655.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CO2USER,681.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CO2USER,709.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CO2USER,738.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CO2USER,767.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,CH4tot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,CH4tot,0.012,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,CH4tot,0.0237,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,CH4tot,0.0318,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,CH4tot,0.0454,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,CH4tot,0.0664,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,CH4tot,0.092,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,CH4tot,0.1194,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,CH4tot,0.1468,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,CH4tot,0.1741,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,CH4tot,0.1994,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,CH4tot,0.2215,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,CH4tot,0.2414,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,CH4tot,0.2581,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,CH4tot,0.2712,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,CH4tot,0.2819,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,CH4tot,0.2884,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,CH4tot,0.29,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,CH4tot,0.2882,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,CH4tot,0.2854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,CH4tot,0.2829,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,CH4tot,0.2806,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,CH4tot,0.2788,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,CO2,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,CO2,0.114,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,CO2,0.2311,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,CO2,0.3687,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,CO2,0.5149,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,CO2,0.6714,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,CO2,0.8364,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,CO2,1.0116,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,CO2,1.1984,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,CO2,1.3949,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,CO2,1.5976,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,CO2,1.8043,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,CO2,2.0153,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,CO2,2.2286,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,CO2,2.4427,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,CO2,2.6576,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,CO2,2.8726,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,CO2,3.0867,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,CO2,3.3003,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,CO2,3.5133,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,CO2,3.7256,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,CO2,3.9373,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,CO2,4.1442,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,TOTAL,0.50632,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,TOTAL,0.7213,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,TOTAL,0.94632,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,TOTAL,1.17608,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,TOTAL,1.43574,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,TOTAL,1.70693,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,TOTAL,1.98923,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,TOTAL,2.27121,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,TOTAL,2.55287,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,TOTAL,2.83513,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,TOTAL,3.09559,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,TOTAL,3.35215,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,TOTAL,3.60717,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,TOTAL,3.85321,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,TOTAL,4.09211,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,TOTAL,4.32592,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,TOTAL,4.55969,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,TOTAL,4.79339,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,TOTAL,5.026,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,TOTAL,5.24822,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2,MSLUSER,-4.8,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2,MSLUSER,-4.8,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2,MSLUSER,-4.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2,MSLUSER,-4.4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2,MSLUSER,-4.3,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2,MSLUSER,-4.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2,MSLUSER,-4.2,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2,MSLUSER,-4.1,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2,MSLUSER,-4,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2,MSLUSER,-4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2,MSLUSER,-3.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2,MSLUSER,-3.8,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2,MSLUSER,-3.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2,MSLUSER,-3.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2,MSLUSER,-3.5,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2,MSLUSER,-3.3,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2,MSLUSER,-3.2,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2,MSLUSER,-3,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2,MSLUSER,-2.7,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2,MSLUSER,-2.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2,MSLUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2,MSLUSER,0.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2,MSLUSER,1.2,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2,MSLUSER,1.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2,MSLUSER,2.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2,MSLUSER,3.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2,MSLUSER,4.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2,MSLUSER,5.3,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2,MSLUSER,6.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2,MSLUSER,7.5,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2,MSLUSER,8.8,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2,MSLUSER,10.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2,MSLUSER,11.5,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2,MSLUSER,13,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2,MSLUSER,14.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2,MSLUSER,16.1,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2,MSLUSER,17.7,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2,MSLUSER,19.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2,MSLUSER,21.1,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2,MSLUSER,22.8,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2,MSLUSER,24.6,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2,MSLUSER,26.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2,MSLUSER,28.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2,TEMUSER,-0.332,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2,TEMUSER,-0.333,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2,TEMUSER,-0.333,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2,TEMUSER,-0.333,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2,TEMUSER,-0.332,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2,TEMUSER,-0.331,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2,TEMUSER,-0.329,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2,TEMUSER,-0.326,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2,TEMUSER,-0.322,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2,TEMUSER,-0.318,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2,TEMUSER,-0.314,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2,TEMUSER,-0.31,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2,TEMUSER,-0.307,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2,TEMUSER,-0.303,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2,TEMUSER,-0.299,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2,TEMUSER,-0.294,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2,TEMUSER,-0.289,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2,TEMUSER,-0.283,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2,TEMUSER,-0.277,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2,TEMUSER,-0.271,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2,TEMUSER,-0.273,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2,TEMUSER,-0.276,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2,TEMUSER,-0.279,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2,TEMUSER,-0.28,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2,TEMUSER,-0.28,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2,TEMUSER,-0.279,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2,TEMUSER,-0.278,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2,TEMUSER,-0.275,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2,TEMUSER,-0.272,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2,TEMUSER,-0.268,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2,TEMUSER,-0.263,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2,TEMUSER,-0.258,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2,TEMUSER,-0.252,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2,TEMUSER,-0.246,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2,TEMUSER,-0.242,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2,TEMUSER,-0.234,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2,TEMUSER,-0.226,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2,TEMUSER,-0.213,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2,TEMUSER,-0.21,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2,TEMUSER,-0.218,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2,TEMUSER,-0.222,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2,TEMUSER,-0.214,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2,TEMUSER,-0.178,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2,TEMUSER,-0.124,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2,TEMUSER,-0.067,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2,TEMUSER,0.061,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2,TEMUSER,0.126,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2,TEMUSER,0.198,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2,TEMUSER,0.28,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2,TEMUSER,0.367,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2,TEMUSER,0.458,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2,TEMUSER,0.561,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2,TEMUSER,0.67,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2,TEMUSER,0.785,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2,TEMUSER,0.902,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2,TEMUSER,1.021,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2,TEMUSER,1.142,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2,TEMUSER,1.257,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2,TEMUSER,1.37,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2,TEMUSER,1.484,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2,TEMUSER,1.595,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2,TEMUSER,1.704,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2,TEMUSER,1.812,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2,TEMUSER,1.919,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2,TEMUSER,2.027,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2,TEMUSER,2.134,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2,TEMUSER,2.239,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CO2HI,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CO2HI,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CO2HI,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CO2HI,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CO2HI,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CO2HI,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CO2HI,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CO2HI,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CO2HI,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CO2HI,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CO2HI,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CO2HI,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CO2HI,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CO2HI,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CO2HI,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CO2HI,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CO2HI,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CO2HI,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CO2HI,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CO2HI,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CO2HI,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CO2HI,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CO2HI,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CO2HI,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CO2HI,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CO2HI,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CO2HI,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CO2HI,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CO2HI,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CO2HI,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CO2HI,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CO2HI,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CO2HI,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CO2HI,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CO2HI,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CO2HI,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CO2HI,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CO2HI,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CO2HI,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CO2HI,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CO2HI,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CO2HI,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CO2HI,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CO2HI,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CO2HI,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CO2HI,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CO2HI,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CO2HI,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CO2HI,380.5,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CO2HI,392.9,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CO2HI,406.5,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CO2HI,421.1,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CO2HI,436.9,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CO2HI,454.4,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CO2HI,473.3,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CO2HI,493.6,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CO2HI,515.2,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CO2HI,538.1,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CO2HI,562.3,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CO2HI,587.6,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CO2HI,614,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CO2HI,641.5,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CO2HI,670.2,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CO2HI,699.9,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CO2HI,730.8,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CO2HI,762.8,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CO2HI,796.1,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CO2HI,830,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CO2LO,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CO2LO,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CO2LO,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CO2LO,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CO2LO,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CO2LO,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CO2LO,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CO2LO,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CO2LO,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CO2LO,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CO2LO,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CO2LO,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CO2LO,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CO2LO,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CO2LO,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CO2LO,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CO2LO,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CO2LO,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CO2LO,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CO2LO,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CO2LO,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CO2LO,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CO2LO,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CO2LO,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CO2LO,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CO2LO,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CO2LO,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CO2LO,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CO2LO,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CO2LO,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CO2LO,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CO2LO,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CO2LO,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CO2LO,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CO2LO,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CO2LO,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CO2LO,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CO2LO,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CO2LO,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CO2LO,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CO2LO,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CO2LO,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CO2LO,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CO2LO,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CO2LO,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CO2LO,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CO2LO,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CO2LO,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CO2LO,377.4,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CO2LO,386.3,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CO2LO,396.3,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CO2LO,407.2,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CO2LO,419.4,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CO2LO,432.9,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CO2LO,447.6,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CO2LO,463.5,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CO2LO,480.2,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CO2LO,498,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CO2LO,516.6,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CO2LO,536.1,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CO2LO,556.4,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CO2LO,577.5,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CO2LO,599.4,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CO2LO,622.1,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CO2LO,645.6,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CO2LO,670.1,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CO2LO,695.4,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CO2LO,721.1,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CO2MID,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CO2MID,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CO2MID,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CO2MID,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CO2MID,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CO2MID,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CO2MID,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CO2MID,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CO2MID,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CO2MID,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CO2MID,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CO2MID,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CO2MID,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CO2MID,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CO2MID,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CO2MID,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CO2MID,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CO2MID,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CO2MID,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CO2MID,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CO2MID,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CO2MID,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CO2MID,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CO2MID,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CO2MID,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CO2MID,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CO2MID,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CO2MID,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CO2MID,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CO2MID,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CO2MID,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CO2MID,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CO2MID,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CO2MID,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CO2MID,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CO2MID,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CO2MID,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CO2MID,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CO2MID,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CO2MID,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CO2MID,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CO2MID,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CO2MID,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CO2MID,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CO2MID,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CO2MID,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CO2MID,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CO2MID,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CO2MID,378.9,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CO2MID,389.5,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CO2MID,401.2,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CO2MID,413.9,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CO2MID,427.8,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CO2MID,443.2,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CO2MID,460,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CO2MID,478,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CO2MID,497.1,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CO2MID,517.5,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CO2MID,538.9,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CO2MID,561.3,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CO2MID,584.7,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CO2MID,609.1,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CO2MID,634.5,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CO2MID,660.9,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CO2MID,688.3,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CO2MID,716.7,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CO2MID,746.3,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CO2MID,776.4,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CO2USER,278,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CO2USER,278.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CO2USER,278.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CO2USER,278.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CO2USER,279.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CO2USER,279.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CO2USER,280.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CO2USER,280.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CO2USER,281.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CO2USER,282.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CO2USER,282.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CO2USER,283.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CO2USER,283.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CO2USER,284.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CO2USER,284.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CO2USER,285.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CO2USER,286.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CO2USER,286.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CO2USER,287.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CO2USER,288,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CO2USER,288.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CO2USER,289.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CO2USER,290.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CO2USER,291.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CO2USER,292.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CO2USER,293.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CO2USER,294.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CO2USER,296,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CO2USER,297.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CO2USER,298.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CO2USER,300.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CO2USER,301.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CO2USER,303.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CO2USER,304.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CO2USER,306.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CO2USER,307.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CO2USER,309.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CO2USER,311.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CO2USER,313.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CO2USER,316.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CO2USER,320.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CO2USER,325.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CO2USER,331.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CO2USER,338.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CO2USER,345.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CO2USER,353.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CO2USER,361.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CO2USER,369.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CO2USER,378.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CO2USER,389.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CO2USER,401.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CO2USER,413.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CO2USER,427.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CO2USER,443.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CO2USER,460,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CO2USER,478,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CO2USER,497.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CO2USER,517.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CO2USER,538.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CO2USER,561.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CO2USER,584.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CO2USER,609.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CO2USER,634.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CO2USER,660.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CO2USER,688.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CO2USER,716.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CO2USER,746.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CO2USER,776.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,CH4tot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,CH4tot,0.012,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,CH4tot,0.0237,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,CH4tot,0.0318,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,CH4tot,0.0454,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,CH4tot,0.0664,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,CH4tot,0.092,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,CH4tot,0.1194,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,CH4tot,0.1468,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,CH4tot,0.1741,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,CH4tot,0.1994,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2215,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2414,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2581,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2712,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2819,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2884,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,CH4tot,0.29,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2882,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2829,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2806,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2788,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,CO2,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,CO2,0.114,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,CO2,0.2311,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,CO2,0.3695,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,CO2,0.5169,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,CO2,0.6748,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,CO2,0.8416,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,CO2,1.0188,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,CO2,1.2079,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,CO2,1.4069,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,CO2,1.6124,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,CO2,1.8223,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,CO2,2.0366,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,CO2,2.2535,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,CO2,2.4713,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,CO2,2.6902,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,CO2,2.9092,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,CO2,3.1274,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,CO2,3.3453,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,CO2,3.5626,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,CO2,3.7793,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,CO2,3.9955,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,CO2,4.2069,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,TOTAL,0.50709,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,TOTAL,0.72323,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,TOTAL,0.94973,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,TOTAL,1.18124,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,TOTAL,1.44292,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,TOTAL,1.7164,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,TOTAL,2.00124,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,TOTAL,2.28606,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,TOTAL,2.57082,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,TOTAL,2.85645,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,TOTAL,3.12049,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,TOTAL,3.3808,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,TOTAL,3.63972,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,TOTAL,3.8898,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,TOTAL,4.13285,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,TOTAL,4.3709,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,TOTAL,4.609,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,TOTAL,4.8471,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,TOTAL,5.08416,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,TOTAL,5.31093,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2.5,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2.5,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2.5,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2.5,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2.5,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2.5,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2.5,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2.5,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2.5,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2.5,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2.5,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2.5,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2.5,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2.5,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2.5,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2.5,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2.5,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2.5,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2.5,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2.5,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2.5,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2.5,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2.5,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2.5,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2.5,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2.5,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2.5,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2.5,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2.5,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2.5,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2.5,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2.5,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2.5,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2.5,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2.5,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2.5,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2.5,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2.5,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2.5,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2.5,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2.5,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2.5,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2.5,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2.5,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2.5,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2.5,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2.5,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2.5,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2.5,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2.5,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2.5,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2.5,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2.5,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2.5,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2.5,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2.5,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2.5,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2.5,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2.5,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2.5,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2.5,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2.5,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2.5,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2.5,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2.5,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2.5,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2.5,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2.5,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2.5,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2.5,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2.5,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2.5,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2.5,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2.5,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2.5,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2.5,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2.5,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2.5,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2.5,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2.5,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2.5,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2.5,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2.5,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2.5,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2.5,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2.5,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2.5,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2.5,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2.5,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2.5,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2.5,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2.5,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2.5,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.4,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.4,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.4,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.8,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.4,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.1,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.7,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.6,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.5,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.4,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.1,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2.5,MSLUSER,-2.8,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2.5,MSLUSER,-2.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2.5,MSLUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2.5,MSLUSER,0.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2.5,MSLUSER,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2.5,MSLUSER,2.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2.5,MSLUSER,2.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2.5,MSLUSER,3.9,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2.5,MSLUSER,4.9,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2.5,MSLUSER,6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2.5,MSLUSER,7.3,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2.5,MSLUSER,8.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2.5,MSLUSER,10.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2.5,MSLUSER,11.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2.5,MSLUSER,13.3,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2.5,MSLUSER,15,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2.5,MSLUSER,16.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2.5,MSLUSER,18.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2.5,MSLUSER,20.6,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2.5,MSLUSER,22.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2.5,MSLUSER,24.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2.5,MSLUSER,26.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2.5,MSLUSER,28.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2.5,MSLUSER,30.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2.5,MSLUSER,33.1,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2.5,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2.5,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2.5,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2.5,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2.5,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2.5,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2.5,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2.5,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2.5,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2.5,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2.5,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2.5,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2.5,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2.5,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2.5,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2.5,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2.5,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2.5,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2.5,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2.5,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2.5,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2.5,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2.5,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2.5,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2.5,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2.5,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2.5,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2.5,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2.5,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2.5,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2.5,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2.5,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2.5,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2.5,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2.5,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2.5,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2.5,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2.5,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2.5,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2.5,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2.5,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2.5,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2.5,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2.5,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2.5,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2.5,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2.5,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2.5,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2.5,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2.5,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2.5,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2.5,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2.5,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2.5,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2.5,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2.5,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2.5,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2.5,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2.5,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2.5,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2.5,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2.5,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2.5,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2.5,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2.5,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2.5,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2.5,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2.5,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2.5,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2.5,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2.5,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2.5,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2.5,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2.5,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2.5,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2.5,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2.5,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2.5,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2.5,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2.5,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2.5,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2.5,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2.5,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2.5,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2.5,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2.5,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2.5,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2.5,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2.5,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2.5,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2.5,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2.5,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2.5,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2.5,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2.5,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2.5,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2.5,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2.5,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2.5,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2.5,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2.5,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2.5,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2.5,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2.5,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2.5,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2.5,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2.5,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2.5,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2.5,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2.5,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2.5,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2.5,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2.5,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2.5,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2.5,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2.5,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2.5,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2.5,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2.5,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2.5,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2.5,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2.5,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2.5,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2.5,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2.5,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2.5,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2.5,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2.5,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2.5,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2.5,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2.5,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2.5,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2.5,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2.5,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2.5,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2.5,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2.5,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2.5,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2.5,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2.5,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2.5,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2.5,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2.5,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2.5,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2.5,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2.5,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2.5,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2.5,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2.5,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2.5,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2.5,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2.5,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2.5,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2.5,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2.5,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2.5,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2.5,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2.5,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2.5,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2.5,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2.5,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2.5,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2.5,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2.5,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2.5,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2.5,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2.5,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2.5,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.38,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.381,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.381,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.381,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.381,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.379,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.377,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.373,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.369,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.365,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.36,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.355,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.351,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.347,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.342,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.337,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.33,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.323,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.316,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.31,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.311,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.314,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.317,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.319,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.319,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.318,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.316,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.314,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.31,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.305,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.299,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.293,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.287,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.28,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.275,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.266,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.257,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.242,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.238,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.247,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.252,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.242,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.203,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.141,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.077,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2.5,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2.5,TEMUSER,0.071,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2.5,TEMUSER,0.147,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2.5,TEMUSER,0.231,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2.5,TEMUSER,0.325,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2.5,TEMUSER,0.427,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2.5,TEMUSER,0.535,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2.5,TEMUSER,0.655,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2.5,TEMUSER,0.783,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2.5,TEMUSER,0.918,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2.5,TEMUSER,1.057,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2.5,TEMUSER,1.198,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2.5,TEMUSER,1.342,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2.5,TEMUSER,1.48,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2.5,TEMUSER,1.616,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2.5,TEMUSER,1.753,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2.5,TEMUSER,1.887,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2.5,TEMUSER,2.02,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2.5,TEMUSER,2.151,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2.5,TEMUSER,2.281,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2.5,TEMUSER,2.412,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2.5,TEMUSER,2.543,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2.5,TEMUSER,2.672,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CO2HI,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CO2HI,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CO2HI,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CO2HI,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CO2HI,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CO2HI,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CO2HI,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CO2HI,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CO2HI,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CO2HI,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CO2HI,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CO2HI,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CO2HI,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CO2HI,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CO2HI,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CO2HI,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CO2HI,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CO2HI,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CO2HI,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CO2HI,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CO2HI,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CO2HI,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CO2HI,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CO2HI,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CO2HI,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CO2HI,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CO2HI,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CO2HI,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CO2HI,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CO2HI,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CO2HI,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CO2HI,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CO2HI,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CO2HI,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CO2HI,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CO2HI,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CO2HI,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CO2HI,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CO2HI,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CO2HI,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CO2HI,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CO2HI,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CO2HI,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CO2HI,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CO2HI,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CO2HI,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CO2HI,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CO2HI,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CO2HI,380.6,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CO2HI,393,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CO2HI,406.7,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CO2HI,421.4,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CO2HI,437.5,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CO2HI,455.1,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CO2HI,474.3,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CO2HI,494.8,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CO2HI,516.8,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CO2HI,540,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CO2HI,564.6,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CO2HI,590.3,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CO2HI,617.3,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CO2HI,645.4,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CO2HI,674.7,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CO2HI,705.1,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CO2HI,736.7,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CO2HI,769.6,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CO2HI,803.7,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CO2HI,838.6,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CO2LO,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CO2LO,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CO2LO,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CO2LO,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CO2LO,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CO2LO,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CO2LO,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CO2LO,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CO2LO,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CO2LO,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CO2LO,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CO2LO,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CO2LO,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CO2LO,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CO2LO,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CO2LO,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CO2LO,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CO2LO,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CO2LO,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CO2LO,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CO2LO,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CO2LO,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CO2LO,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CO2LO,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CO2LO,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CO2LO,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CO2LO,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CO2LO,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CO2LO,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CO2LO,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CO2LO,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CO2LO,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CO2LO,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CO2LO,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CO2LO,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CO2LO,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CO2LO,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CO2LO,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CO2LO,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CO2LO,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CO2LO,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CO2LO,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CO2LO,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CO2LO,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CO2LO,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CO2LO,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CO2LO,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CO2LO,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CO2LO,377.5,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CO2LO,386.4,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CO2LO,396.5,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CO2LO,407.6,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CO2LO,419.9,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CO2LO,433.5,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CO2LO,448.5,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CO2LO,464.6,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CO2LO,481.6,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CO2LO,499.7,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CO2LO,518.7,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CO2LO,538.6,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CO2LO,559.4,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CO2LO,581,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CO2LO,603.5,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CO2LO,626.8,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CO2LO,651.1,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CO2LO,676.3,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CO2LO,702.4,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CO2LO,729,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CO2MID,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CO2MID,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CO2MID,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CO2MID,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CO2MID,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CO2MID,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CO2MID,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CO2MID,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CO2MID,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CO2MID,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CO2MID,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CO2MID,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CO2MID,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CO2MID,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CO2MID,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CO2MID,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CO2MID,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CO2MID,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CO2MID,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CO2MID,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CO2MID,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CO2MID,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CO2MID,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CO2MID,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CO2MID,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CO2MID,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CO2MID,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CO2MID,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CO2MID,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CO2MID,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CO2MID,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CO2MID,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CO2MID,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CO2MID,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CO2MID,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CO2MID,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CO2MID,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CO2MID,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CO2MID,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CO2MID,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CO2MID,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CO2MID,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CO2MID,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CO2MID,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CO2MID,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CO2MID,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CO2MID,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CO2MID,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CO2MID,379,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CO2MID,389.6,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CO2MID,401.4,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CO2MID,414.2,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CO2MID,428.3,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CO2MID,443.9,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CO2MID,460.9,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CO2MID,479.2,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CO2MID,498.6,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CO2MID,519.3,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CO2MID,541.1,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CO2MID,564,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CO2MID,587.9,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CO2MID,612.9,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CO2MID,638.9,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CO2MID,665.9,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CO2MID,694,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CO2MID,723.3,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CO2MID,753.7,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CO2MID,784.7,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CO2USER,278,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CO2USER,278.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CO2USER,278.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CO2USER,278.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CO2USER,279.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CO2USER,279.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CO2USER,280.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CO2USER,280.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CO2USER,281.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CO2USER,282.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CO2USER,282.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CO2USER,283.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CO2USER,283.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CO2USER,284.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CO2USER,284.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CO2USER,285.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CO2USER,286.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CO2USER,286.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CO2USER,287.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CO2USER,288,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CO2USER,288.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CO2USER,289.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CO2USER,290.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CO2USER,291.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CO2USER,292.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CO2USER,293.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CO2USER,294.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CO2USER,296,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CO2USER,297.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CO2USER,298.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CO2USER,300.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CO2USER,301.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CO2USER,303.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CO2USER,304.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CO2USER,306.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CO2USER,307.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CO2USER,309.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CO2USER,311.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CO2USER,313.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CO2USER,316.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CO2USER,320.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CO2USER,325.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CO2USER,331.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CO2USER,338.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CO2USER,345.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CO2USER,353.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CO2USER,361.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CO2USER,369.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CO2USER,379,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CO2USER,389.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CO2USER,401.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CO2USER,414.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CO2USER,428.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CO2USER,443.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CO2USER,460.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CO2USER,479.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CO2USER,498.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CO2USER,519.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CO2USER,541.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CO2USER,564,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CO2USER,587.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CO2USER,612.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CO2USER,638.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CO2USER,665.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CO2USER,694,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CO2USER,723.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CO2USER,753.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CO2USER,784.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,CH4tot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,CH4tot,0.012,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,CH4tot,0.0237,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,CH4tot,0.0318,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,CH4tot,0.0454,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,CH4tot,0.0664,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,CH4tot,0.092,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,CH4tot,0.1194,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,CH4tot,0.1468,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,CH4tot,0.1741,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,CH4tot,0.1994,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,CH4tot,0.2215,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,CH4tot,0.2414,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,CH4tot,0.2581,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,CH4tot,0.2712,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,CH4tot,0.2819,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,CH4tot,0.2884,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,CH4tot,0.29,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,CH4tot,0.2882,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,CH4tot,0.2854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,CH4tot,0.2829,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,CH4tot,0.2806,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,CH4tot,0.2788,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,CO2,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,CO2,0.114,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,CO2,0.2311,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,CO2,0.3702,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,CO2,0.5185,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,CO2,0.6778,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,CO2,0.8461,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,CO2,1.025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,CO2,1.2162,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,CO2,1.4175,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,CO2,1.6255,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,CO2,1.8382,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,CO2,2.0555,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,CO2,2.2757,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,CO2,2.4969,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,CO2,2.7194,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,CO2,2.942,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,CO2,3.1642,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,CO2,3.386,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,CO2,3.6074,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,CO2,3.8281,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,CO2,4.0485,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,CO2,4.2643,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,TOTAL,0.50776,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,TOTAL,0.7249,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,TOTAL,0.95269,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,TOTAL,1.18573,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,TOTAL,1.44917,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,TOTAL,1.72467,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,TOTAL,2.01178,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,TOTAL,2.29912,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,TOTAL,2.58668,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,TOTAL,2.87534,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,TOTAL,3.14263,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,TOTAL,3.40637,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,TOTAL,3.66888,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,TOTAL,3.92268,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,TOTAL,4.16959,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,TOTAL,4.4116,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,TOTAL,4.65375,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,TOTAL,4.89598,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,TOTAL,5.13726,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,TOTAL,5.36833,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,3,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,3,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,3,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,3,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,3,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,3,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,3,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,3,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,3,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,3,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,3,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,3,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,3,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,3,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,3,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,3,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,3,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,3,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,3,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,3,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,3,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,3,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,3,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,3,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,3,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,3,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,3,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,3,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,3,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,3,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,3,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,3,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,3,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,3,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,3,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,3,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,3,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,3,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,3,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,3,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,3,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,3,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,3,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,3,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,3,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,3,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,3,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,3,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,3,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,3,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,3,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,3,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,3,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,3,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,3,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,3,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,3,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,3,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,3,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,3,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,3,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,3,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,3,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,3,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,3,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,3,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,3,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,3,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,3,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,3,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,3,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,3,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,3,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,3,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,3,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,3,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,3,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,3,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,3,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,3,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,3,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,3,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,3,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,3,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,3,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,3,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,3,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,3,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,3,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,3,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,3,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,3,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,3,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,3,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,3,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,3,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,3,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,3,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,3,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,3,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,3,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,3,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,3,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,3,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,3,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,3,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,3,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,3,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,3,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,3,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,3,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,3,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,3,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,3,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,3,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,3,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,3,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,3,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,3,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,3,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,3,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,3,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,3,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,3,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,3,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,3,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,3,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,3,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,3,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,3,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,3,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,3,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,3,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,3,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,3,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,3,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,3,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,3,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,3,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,3,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,3,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,3,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,3,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,3,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,3,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,3,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,3,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,3,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,3,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,3,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,3,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,3,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,3,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,3,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,3,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,3,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,3,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,3,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,3,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,3,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,3,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,3,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,3,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,3,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,3,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,3,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,3,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,3,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,3,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,3,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,3,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,3,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,3,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,3,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,3,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,3,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,3,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,3,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,3,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,3,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,3,MSLUSER,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,3,MSLUSER,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,3,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,3,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,3,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,3,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,3,MSLUSER,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,3,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,3,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,3,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,3,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,3,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,3,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,3,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,3,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,3,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,3,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,3,MSLUSER,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,3,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,3,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,3,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,3,MSLUSER,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,3,MSLUSER,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,3,MSLUSER,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,3,MSLUSER,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,3,MSLUSER,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,3,MSLUSER,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,3,MSLUSER,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,3,MSLUSER,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,3,MSLUSER,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,3,MSLUSER,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,3,MSLUSER,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,3,MSLUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,3,MSLUSER,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,3,MSLUSER,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,3,MSLUSER,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,3,MSLUSER,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,3,MSLUSER,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,3,MSLUSER,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,3,MSLUSER,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,3,MSLUSER,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,3,MSLUSER,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,3,MSLUSER,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,3,MSLUSER,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,3,MSLUSER,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,3,MSLUSER,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,3,MSLUSER,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,3,MSLUSER,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,3,MSLUSER,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,3,MSLUSER,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,3,MSLUSER,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,3,MSLUSER,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,3,MSLUSER,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,3,MSLUSER,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,3,MSLUSER,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,3,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,3,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,3,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,3,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,3,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,3,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,3,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,3,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,3,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,3,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,3,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,3,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,3,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,3,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,3,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,3,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,3,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,3,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,3,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,3,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,3,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,3,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,3,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,3,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,3,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,3,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,3,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,3,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,3,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,3,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,3,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,3,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,3,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,3,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,3,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,3,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,3,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,3,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,3,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,3,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,3,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,3,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,3,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,3,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,3,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,3,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,3,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,3,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,3,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,3,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,3,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,3,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,3,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,3,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,3,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,3,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,3,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,3,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,3,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,3,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,3,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,3,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,3,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,3,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,3,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,3,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,3,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,3,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,3,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,3,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,3,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,3,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,3,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,3,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,3,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,3,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,3,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,3,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,3,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,3,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,3,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,3,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,3,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,3,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,3,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,3,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,3,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,3,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,3,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,3,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,3,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,3,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,3,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,3,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,3,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,3,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,3,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,3,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,3,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,3,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,3,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,3,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,3,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,3,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,3,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,3,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,3,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,3,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,3,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,3,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,3,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,3,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,3,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,3,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,3,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,3,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,3,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,3,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,3,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,3,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,3,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,3,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,3,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,3,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,3,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,3,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,3,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,3,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,3,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,3,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,3,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,3,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,3,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,3,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,3,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,3,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,3,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,3,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,3,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,3,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,3,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,3,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,3,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,3,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,3,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,3,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,3,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,3,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,3,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,3,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,3,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,3,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,3,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,3,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,3,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,3,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,3,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,3,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,3,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,3,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,3,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,3,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,3,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,3,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,3,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,3,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,3,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,3,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,3,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,3,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,3,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,3,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,3,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,3,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,3,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,3,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,3,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,3,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,3,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,3,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,3,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,3,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,3,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,3,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,3,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,3,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,3,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,3,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,3,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,3,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,3,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,3,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,3,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,3,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,3,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,3,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,3,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,3,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,3,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,3,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,3,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,3,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,3,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,3,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,3,TEMUSER,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,3,TEMUSER,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,3,TEMUSER,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,3,TEMUSER,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,3,TEMUSER,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,3,TEMUSER,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,3,TEMUSER,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,3,TEMUSER,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,3,TEMUSER,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,3,TEMUSER,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,3,TEMUSER,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,3,TEMUSER,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,3,TEMUSER,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,3,TEMUSER,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,3,TEMUSER,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,3,TEMUSER,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,3,TEMUSER,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,3,TEMUSER,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,3,TEMUSER,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,3,TEMUSER,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,3,TEMUSER,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,3,TEMUSER,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,3,TEMUSER,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,3,TEMUSER,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,3,TEMUSER,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,3,TEMUSER,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,3,TEMUSER,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,3,TEMUSER,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,3,TEMUSER,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,3,TEMUSER,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,3,TEMUSER,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,3,TEMUSER,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,3,TEMUSER,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,3,TEMUSER,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,3,TEMUSER,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,3,TEMUSER,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,3,TEMUSER,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,3,TEMUSER,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,3,TEMUSER,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,3,TEMUSER,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,3,TEMUSER,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,3,TEMUSER,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,3,TEMUSER,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,3,TEMUSER,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,3,TEMUSER,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,3,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,3,TEMUSER,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,3,TEMUSER,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,3,TEMUSER,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,3,TEMUSER,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,3,TEMUSER,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,3,TEMUSER,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,3,TEMUSER,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,3,TEMUSER,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,3,TEMUSER,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,3,TEMUSER,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,3,TEMUSER,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,3,TEMUSER,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,3,TEMUSER,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,3,TEMUSER,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,3,TEMUSER,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,3,TEMUSER,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,3,TEMUSER,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,3,TEMUSER,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,3,TEMUSER,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,3,TEMUSER,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,3,TEMUSER,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,3,TEMUSER,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CO2HI,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CO2HI,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CO2HI,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CO2HI,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CO2HI,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CO2HI,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CO2HI,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CO2HI,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CO2HI,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CO2HI,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CO2HI,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CO2HI,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CO2HI,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CO2HI,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CO2HI,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CO2HI,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CO2HI,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CO2HI,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CO2HI,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CO2HI,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CO2HI,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CO2HI,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CO2HI,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CO2HI,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CO2HI,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CO2HI,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CO2HI,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CO2HI,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CO2HI,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CO2HI,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CO2HI,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CO2HI,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CO2HI,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CO2HI,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CO2HI,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CO2HI,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CO2HI,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CO2HI,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CO2HI,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CO2HI,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CO2HI,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CO2HI,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CO2HI,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CO2HI,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CO2HI,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CO2HI,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CO2HI,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CO2HI,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CO2HI,380.7,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CO2HI,393.3,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CO2HI,407.2,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CO2HI,422.3,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CO2HI,438.7,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CO2HI,456.8,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CO2HI,476.5,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CO2HI,497.8,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CO2HI,520.4,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CO2HI,544.7,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CO2HI,570.3,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CO2HI,597.2,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CO2HI,625.5,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CO2HI,655.1,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CO2HI,686,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CO2HI,718.2,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CO2HI,751.8,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CO2HI,786.8,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CO2HI,823.3,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CO2HI,860.6,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CO2LO,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CO2LO,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CO2LO,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CO2LO,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CO2LO,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CO2LO,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CO2LO,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CO2LO,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CO2LO,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CO2LO,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CO2LO,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CO2LO,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CO2LO,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CO2LO,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CO2LO,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CO2LO,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CO2LO,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CO2LO,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CO2LO,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CO2LO,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CO2LO,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CO2LO,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CO2LO,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CO2LO,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CO2LO,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CO2LO,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CO2LO,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CO2LO,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CO2LO,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CO2LO,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CO2LO,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CO2LO,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CO2LO,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CO2LO,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CO2LO,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CO2LO,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CO2LO,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CO2LO,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CO2LO,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CO2LO,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CO2LO,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CO2LO,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CO2LO,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CO2LO,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CO2LO,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CO2LO,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CO2LO,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CO2LO,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CO2LO,377.6,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CO2LO,386.7,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CO2LO,397,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CO2LO,408.4,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CO2LO,421,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CO2LO,435.1,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CO2LO,450.5,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CO2LO,467.2,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CO2LO,485,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CO2LO,503.9,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CO2LO,523.8,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CO2LO,544.8,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CO2LO,566.8,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CO2LO,589.8,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CO2LO,613.8,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CO2LO,638.8,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CO2LO,664.9,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CO2LO,692.1,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CO2LO,720.5,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CO2LO,749.5,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CO2MID,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CO2MID,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CO2MID,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CO2MID,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CO2MID,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CO2MID,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CO2MID,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CO2MID,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CO2MID,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CO2MID,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CO2MID,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CO2MID,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CO2MID,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CO2MID,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CO2MID,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CO2MID,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CO2MID,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CO2MID,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CO2MID,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CO2MID,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CO2MID,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CO2MID,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CO2MID,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CO2MID,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CO2MID,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CO2MID,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CO2MID,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CO2MID,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CO2MID,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CO2MID,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CO2MID,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CO2MID,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CO2MID,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CO2MID,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CO2MID,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CO2MID,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CO2MID,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CO2MID,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CO2MID,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CO2MID,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CO2MID,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CO2MID,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CO2MID,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CO2MID,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CO2MID,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CO2MID,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CO2MID,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CO2MID,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CO2MID,379.1,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CO2MID,389.9,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CO2MID,401.9,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CO2MID,415,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CO2MID,429.5,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CO2MID,445.5,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CO2MID,463.1,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CO2MID,482,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CO2MID,502.2,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CO2MID,523.7,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CO2MID,546.6,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CO2MID,570.6,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CO2MID,595.8,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CO2MID,622.2,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CO2MID,649.8,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CO2MID,678.6,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CO2MID,708.7,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CO2MID,740.1,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CO2MID,772.8,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CO2MID,806.3,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CO2USER,278,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CO2USER,278.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CO2USER,278.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CO2USER,278.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CO2USER,279.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CO2USER,279.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CO2USER,280.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CO2USER,280.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CO2USER,281.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CO2USER,282.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CO2USER,282.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CO2USER,283.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CO2USER,283.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CO2USER,284.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CO2USER,284.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CO2USER,285.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CO2USER,286.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CO2USER,286.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CO2USER,287.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CO2USER,288,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CO2USER,288.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CO2USER,289.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CO2USER,290.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CO2USER,291.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CO2USER,292.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CO2USER,293.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CO2USER,294.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CO2USER,296,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CO2USER,297.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CO2USER,298.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CO2USER,300.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CO2USER,301.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CO2USER,303.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CO2USER,304.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CO2USER,306.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CO2USER,307.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CO2USER,309.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CO2USER,311.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CO2USER,313.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CO2USER,316.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CO2USER,320.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CO2USER,325.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CO2USER,331.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CO2USER,338.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CO2USER,345.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CO2USER,353.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CO2USER,361.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CO2USER,369.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CO2USER,379.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CO2USER,389.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CO2USER,401.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CO2USER,415,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CO2USER,429.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CO2USER,445.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CO2USER,463.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CO2USER,482,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CO2USER,502.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CO2USER,523.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CO2USER,546.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CO2USER,570.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CO2USER,595.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CO2USER,622.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CO2USER,649.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CO2USER,678.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CO2USER,708.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CO2USER,740.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CO2USER,772.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CO2USER,806.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,CH4tot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,CH4tot,0.012,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,CH4tot,0.0237,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,CH4tot,0.0318,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,CH4tot,0.0454,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,CH4tot,0.0664,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,CH4tot,0.092,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,CH4tot,0.1194,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,CH4tot,0.1468,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,CH4tot,0.1741,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,CH4tot,0.1994,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2215,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2414,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2581,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2712,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2819,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2884,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,CH4tot,0.29,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2882,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2829,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2806,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2788,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,CO2,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,CO2,0.114,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,CO2,0.2311,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,CO2,0.3717,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,CO2,0.5224,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,CO2,0.6847,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,CO2,0.8566,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,CO2,1.0397,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,CO2,1.2357,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,CO2,1.4424,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,CO2,1.6566,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,CO2,1.8761,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,CO2,2.101,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,CO2,2.3292,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,CO2,2.5591,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,CO2,2.7907,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,CO2,3.0229,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,CO2,3.255,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,CO2,3.4872,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,CO2,3.7192,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,CO2,3.9509,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,CO2,4.1824,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,CO2,4.4097,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,TOTAL,0.50931,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,TOTAL,0.72877,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,TOTAL,0.95956,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,TOTAL,1.19621,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,TOTAL,1.46385,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,TOTAL,1.74418,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,TOTAL,2.03675,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,TOTAL,2.33023,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,TOTAL,2.62465,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,TOTAL,2.92083,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,TOTAL,3.19622,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,TOTAL,3.4686,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,TOTAL,3.74022,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,TOTAL,4.00358,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,TOTAL,4.26045,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,TOTAL,4.51277,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,TOTAL,4.76555,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,TOTAL,5.01869,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,TOTAL,5.27113,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,TOTAL,5.51368,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,4.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,4.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,4.5,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,4.5,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,4.5,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,4.5,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,4.5,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,4.5,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,4.5,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,4.5,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,4.5,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,4.5,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,4.5,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,4.5,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,4.5,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,4.5,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,4.5,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,4.5,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,4.5,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,4.5,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,4.5,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,4.5,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,4.5,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,4.5,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,4.5,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,4.5,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,4.5,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,4.5,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,4.5,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,4.5,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,4.5,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,4.5,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,4.5,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,4.5,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,4.5,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,4.5,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,4.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,4.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,4.5,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,4.5,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,4.5,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,4.5,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,4.5,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,4.5,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,4.5,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,4.5,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,4.5,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,4.5,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,4.5,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,4.5,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,4.5,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,4.5,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,4.5,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,4.5,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,4.5,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,4.5,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,4.5,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,4.5,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,4.5,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,4.5,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,4.5,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,4.5,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,4.5,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,4.5,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,4.5,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,4.5,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,4.5,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,4.5,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,4.5,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,4.5,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,4.5,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,4.5,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,4.5,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,4.5,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,4.5,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,4.5,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,4.5,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,4.5,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,4.5,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,4.5,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,4.5,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,4.5,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,4.5,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,4.5,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,4.5,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,4.5,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,4.5,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,4.5,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,4.5,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,4.5,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,4.5,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,4.5,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,4.5,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,4.5,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,4.5,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,4.5,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,4.5,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.4,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.4,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.3,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.2,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.2,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.1,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.7,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.2,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.1,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,4.5,MSLUSER,-3.9,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,4.5,MSLUSER,-3.7,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,4.5,MSLUSER,-3.5,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,4.5,MSLUSER,-3.1,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,4.5,MSLUSER,-2.6,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,4.5,MSLUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,4.5,MSLUSER,0.8,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,4.5,MSLUSER,1.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,4.5,MSLUSER,2.7,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,4.5,MSLUSER,3.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,4.5,MSLUSER,5.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,4.5,MSLUSER,6.6,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,4.5,MSLUSER,8.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,4.5,MSLUSER,9.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,4.5,MSLUSER,11.8,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,4.5,MSLUSER,13.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,4.5,MSLUSER,16.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,4.5,MSLUSER,18.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,4.5,MSLUSER,20.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,4.5,MSLUSER,23.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,4.5,MSLUSER,26.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,4.5,MSLUSER,29.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,4.5,MSLUSER,32,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,4.5,MSLUSER,35,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,4.5,MSLUSER,38.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,4.5,MSLUSER,41.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,4.5,MSLUSER,44.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,4.5,MSLUSER,47.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,4.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,4.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,4.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,4.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,4.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,4.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,4.5,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,4.5,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,4.5,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,4.5,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,4.5,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,4.5,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,4.5,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,4.5,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,4.5,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,4.5,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,4.5,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,4.5,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,4.5,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,4.5,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,4.5,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,4.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,4.5,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,4.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,4.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,4.5,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,4.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,4.5,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,4.5,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,4.5,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,4.5,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,4.5,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,4.5,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,4.5,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,4.5,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,4.5,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,4.5,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,4.5,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,4.5,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,4.5,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,4.5,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,4.5,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,4.5,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,4.5,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,4.5,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,4.5,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,4.5,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,4.5,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,4.5,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,4.5,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,4.5,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,4.5,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,4.5,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,4.5,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,4.5,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,4.5,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,4.5,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,4.5,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,4.5,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,4.5,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,4.5,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,4.5,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,4.5,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,4.5,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,4.5,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,4.5,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,4.5,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,4.5,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,4.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,4.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,4.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,4.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,4.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,4.5,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,4.5,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,4.5,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,4.5,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,4.5,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,4.5,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,4.5,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,4.5,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,4.5,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,4.5,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,4.5,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,4.5,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,4.5,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,4.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,4.5,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,4.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,4.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,4.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,4.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,4.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,4.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,4.5,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,4.5,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,4.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,4.5,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,4.5,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,4.5,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,4.5,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,4.5,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,4.5,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,4.5,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,4.5,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,4.5,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,4.5,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,4.5,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,4.5,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,4.5,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,4.5,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,4.5,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,4.5,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,4.5,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,4.5,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,4.5,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,4.5,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,4.5,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,4.5,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,4.5,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,4.5,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,4.5,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,4.5,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,4.5,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,4.5,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,4.5,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,4.5,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,4.5,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,4.5,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,4.5,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,4.5,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,4.5,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,4.5,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,4.5,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,4.5,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,4.5,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,4.5,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,4.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,4.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,4.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,4.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,4.5,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,4.5,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,4.5,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,4.5,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,4.5,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,4.5,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,4.5,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,4.5,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,4.5,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,4.5,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,4.5,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,4.5,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,4.5,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,4.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,4.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,4.5,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,4.5,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,4.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,4.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,4.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,4.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,4.5,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,4.5,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,4.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,4.5,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,4.5,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,4.5,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,4.5,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,4.5,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,4.5,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,4.5,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,4.5,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,4.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,4.5,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,4.5,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,4.5,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,4.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,4.5,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,4.5,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,4.5,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,4.5,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,4.5,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,4.5,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,4.5,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,4.5,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,4.5,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,4.5,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,4.5,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,4.5,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,4.5,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,4.5,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,4.5,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,4.5,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,4.5,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,4.5,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,4.5,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,4.5,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,4.5,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,4.5,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,4.5,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,4.5,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,4.5,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,4.5,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.515,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.516,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.517,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.517,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.516,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.514,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.511,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.507,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.502,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.496,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.489,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.483,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.477,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.47,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.464,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.456,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.447,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.437,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.427,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.417,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.418,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.421,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.424,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.426,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.426,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.424,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.422,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.418,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.414,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.407,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.399,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.391,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.381,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.372,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.364,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.352,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.339,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.319,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.312,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.322,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.328,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.317,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.268,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.189,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.103,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,4.5,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,4.5,TEMUSER,0.099,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,4.5,TEMUSER,0.205,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,4.5,TEMUSER,0.322,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,4.5,TEMUSER,0.455,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,4.5,TEMUSER,0.6,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,4.5,TEMUSER,0.754,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,4.5,TEMUSER,0.927,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,4.5,TEMUSER,1.112,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,4.5,TEMUSER,1.309,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,4.5,TEMUSER,1.513,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,4.5,TEMUSER,1.723,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,4.5,TEMUSER,1.938,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,4.5,TEMUSER,2.148,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,4.5,TEMUSER,2.358,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,4.5,TEMUSER,2.57,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,4.5,TEMUSER,2.78,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,4.5,TEMUSER,2.989,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,4.5,TEMUSER,3.197,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,4.5,TEMUSER,3.406,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,4.5,TEMUSER,3.617,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,4.5,TEMUSER,3.827,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,4.5,TEMUSER,4.036,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CO2HI,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CO2HI,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CO2HI,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CO2HI,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CO2HI,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CO2HI,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CO2HI,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CO2HI,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CO2HI,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CO2HI,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CO2HI,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CO2HI,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CO2HI,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CO2HI,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CO2HI,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CO2HI,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CO2HI,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CO2HI,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CO2HI,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CO2HI,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CO2HI,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CO2HI,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CO2HI,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CO2HI,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CO2HI,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CO2HI,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CO2HI,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CO2HI,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CO2HI,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CO2HI,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CO2HI,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CO2HI,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CO2HI,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CO2HI,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CO2HI,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CO2HI,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CO2HI,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CO2HI,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CO2HI,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CO2HI,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CO2HI,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CO2HI,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CO2HI,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CO2HI,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CO2HI,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CO2HI,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CO2HI,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CO2HI,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CO2HI,380.8,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CO2HI,393.5,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CO2HI,407.6,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CO2HI,422.9,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CO2HI,439.6,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CO2HI,458,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CO2HI,478.1,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CO2HI,499.9,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CO2HI,523.2,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CO2HI,548.1,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CO2HI,574.5,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CO2HI,602.3,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CO2HI,631.7,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CO2HI,662.5,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CO2HI,694.7,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CO2HI,728.4,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CO2HI,763.6,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CO2HI,800.4,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CO2HI,838.8,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CO2HI,878.2,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CO2LO,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CO2LO,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CO2LO,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CO2LO,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CO2LO,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CO2LO,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CO2LO,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CO2LO,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CO2LO,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CO2LO,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CO2LO,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CO2LO,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CO2LO,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CO2LO,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CO2LO,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CO2LO,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CO2LO,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CO2LO,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CO2LO,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CO2LO,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CO2LO,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CO2LO,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CO2LO,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CO2LO,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CO2LO,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CO2LO,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CO2LO,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CO2LO,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CO2LO,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CO2LO,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CO2LO,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CO2LO,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CO2LO,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CO2LO,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CO2LO,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CO2LO,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CO2LO,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CO2LO,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CO2LO,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CO2LO,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CO2LO,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CO2LO,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CO2LO,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CO2LO,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CO2LO,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CO2LO,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CO2LO,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CO2LO,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CO2LO,377.6,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CO2LO,386.9,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CO2LO,397.3,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CO2LO,408.9,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CO2LO,421.8,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CO2LO,436.2,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CO2LO,452,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CO2LO,469.2,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CO2LO,487.4,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CO2LO,507,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CO2LO,527.7,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CO2LO,549.5,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CO2LO,572.5,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CO2LO,596.6,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CO2LO,621.8,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CO2LO,648.2,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CO2LO,675.8,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CO2LO,704.7,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CO2LO,734.9,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CO2LO,766,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CO2MID,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CO2MID,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CO2MID,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CO2MID,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CO2MID,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CO2MID,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CO2MID,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CO2MID,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CO2MID,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CO2MID,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CO2MID,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CO2MID,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CO2MID,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CO2MID,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CO2MID,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CO2MID,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CO2MID,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CO2MID,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CO2MID,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CO2MID,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CO2MID,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CO2MID,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CO2MID,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CO2MID,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CO2MID,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CO2MID,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CO2MID,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CO2MID,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CO2MID,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CO2MID,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CO2MID,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CO2MID,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CO2MID,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CO2MID,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CO2MID,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CO2MID,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CO2MID,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CO2MID,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CO2MID,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CO2MID,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CO2MID,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CO2MID,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CO2MID,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CO2MID,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CO2MID,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CO2MID,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CO2MID,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CO2MID,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CO2MID,379.2,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CO2MID,390.1,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CO2MID,402.3,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CO2MID,415.6,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CO2MID,430.3,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CO2MID,446.7,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CO2MID,464.6,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CO2MID,484,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CO2MID,504.8,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CO2MID,527,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CO2MID,550.6,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CO2MID,575.5,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CO2MID,601.8,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CO2MID,629.4,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CO2MID,658.3,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CO2MID,688.5,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CO2MID,720.2,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CO2MID,753.3,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CO2MID,788,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CO2MID,823.6,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CO2USER,278,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CO2USER,278.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CO2USER,278.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CO2USER,278.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CO2USER,279.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CO2USER,279.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CO2USER,280.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CO2USER,280.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CO2USER,281.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CO2USER,282.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CO2USER,282.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CO2USER,283.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CO2USER,283.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CO2USER,284.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CO2USER,284.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CO2USER,285.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CO2USER,286.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CO2USER,286.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CO2USER,287.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CO2USER,288,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CO2USER,288.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CO2USER,289.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CO2USER,290.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CO2USER,291.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CO2USER,292.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CO2USER,293.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CO2USER,294.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CO2USER,296,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CO2USER,297.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CO2USER,298.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CO2USER,300.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CO2USER,301.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CO2USER,303.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CO2USER,304.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CO2USER,306.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CO2USER,307.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CO2USER,309.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CO2USER,311.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CO2USER,313.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CO2USER,316.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CO2USER,320.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CO2USER,325.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CO2USER,331.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CO2USER,338.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CO2USER,345.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CO2USER,353.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CO2USER,361.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CO2USER,369.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CO2USER,379.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CO2USER,390.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CO2USER,402.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CO2USER,415.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CO2USER,430.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CO2USER,446.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CO2USER,464.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CO2USER,484,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CO2USER,504.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CO2USER,527,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CO2USER,550.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CO2USER,575.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CO2USER,601.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CO2USER,629.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CO2USER,658.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CO2USER,688.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CO2USER,720.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CO2USER,753.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CO2USER,788,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CO2USER,823.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,CH4tot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,CH4tot,0.012,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,CH4tot,0.0237,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,CH4tot,0.0318,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,CH4tot,0.0454,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,CH4tot,0.0664,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,CH4tot,0.092,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,CH4tot,0.1194,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,CH4tot,0.1468,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,CH4tot,0.1741,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,CH4tot,0.1994,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,CH4tot,0.2215,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,CH4tot,0.2414,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,CH4tot,0.2581,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,CH4tot,0.2712,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,CH4tot,0.2819,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,CH4tot,0.2884,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,CH4tot,0.29,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,CH4tot,0.2882,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,CH4tot,0.2854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,CH4tot,0.2829,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,CH4tot,0.2806,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,CH4tot,0.2788,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,CO2,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,CO2,0.114,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,CO2,0.2311,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,CO2,0.3728,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,CO2,0.5251,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,CO2,0.6895,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,CO2,0.864,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,CO2,1.0502,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,CO2,1.2497,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,CO2,1.4605,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,CO2,1.6792,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,CO2,1.9039,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,CO2,2.1345,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,CO2,2.3689,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,CO2,2.6055,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,CO2,2.8442,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,CO2,3.084,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,CO2,3.3241,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,CO2,3.5645,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,CO2,3.8051,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,CO2,4.0458,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,CO2,4.2865,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,CO2,4.5233,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,TOTAL,0.51038,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,TOTAL,0.7315,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,TOTAL,0.96442,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,TOTAL,1.20364,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,TOTAL,1.47433,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,TOTAL,1.75818,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,TOTAL,2.05478,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,TOTAL,2.35282,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,TOTAL,2.65241,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,TOTAL,2.95429,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,TOTAL,3.2359,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,TOTAL,3.51498,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,TOTAL,3.79373,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,TOTAL,4.06466,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,TOTAL,4.32948,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,TOTAL,4.59012,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,TOTAL,4.85153,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,TOTAL,5.11359,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,TOTAL,5.37523,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,TOTAL,5.62726,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,6,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,6,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,6,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,6,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,6,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,6,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,6,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,6,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,6,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,6,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,6,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,6,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,6,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,6,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,6,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,6,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,6,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,6,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,6,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,6,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,6,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,6,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,6,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,6,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,6,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,6,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,6,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,6,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,6,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,6,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,6,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,6,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,6,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,6,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,6,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,6,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,6,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,6,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,6,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,6,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,6,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,6,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,6,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,6,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,6,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,6,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,6,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,6,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,6,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,6,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,6,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,6,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,6,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,6,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,6,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,6,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,6,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,6,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,6,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,6,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,6,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,6,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,6,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,6,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,6,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,6,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,6,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,6,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,6,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,6,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,6,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,6,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,6,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,6,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,6,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,6,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,6,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,6,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,6,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,6,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,6,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,6,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,6,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,6,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,6,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,6,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,6,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,6,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,6,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,6,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,6,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,6,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,6,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,6,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,6,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,6,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,6,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,6,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,6,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,6,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,6,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,6,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,6,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,6,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,6,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,6,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,6,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,6,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,6,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,6,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,6,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,6,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,6,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,6,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,6,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,6,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,6,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,6,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,6,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,6,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,6,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,6,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,6,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,6,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,6,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,6,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,6,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,6,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,6,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,6,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,6,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,6,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,6,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,6,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,6,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,6,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,6,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,6,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,6,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,6,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,6,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,6,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,6,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,6,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,6,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,6,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,6,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,6,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,6,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,6,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,6,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,6,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,6,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,6,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,6,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,6,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,6,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,6,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,6,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,6,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,6,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,6,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,6,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,6,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,6,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,6,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,6,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,6,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,6,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,6,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,6,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,6,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,6,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,6,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,6,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,6,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,6,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,6,MSLUSER,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,6,MSLUSER,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,6,MSLUSER,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,6,MSLUSER,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,6,MSLUSER,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,6,MSLUSER,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,6,MSLUSER,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,6,MSLUSER,-6.8,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,6,MSLUSER,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,6,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,6,MSLUSER,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,6,MSLUSER,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,6,MSLUSER,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,6,MSLUSER,-6.3,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,6,MSLUSER,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,6,MSLUSER,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,6,MSLUSER,-6.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,6,MSLUSER,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,6,MSLUSER,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,6,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,6,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,6,MSLUSER,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,6,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,6,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,6,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,6,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,6,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,6,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,6,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,6,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,6,MSLUSER,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,6,MSLUSER,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,6,MSLUSER,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,6,MSLUSER,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,6,MSLUSER,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,6,MSLUSER,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,6,MSLUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,6,MSLUSER,0.9,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,6,MSLUSER,1.9,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,6,MSLUSER,3.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,6,MSLUSER,4.3,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,6,MSLUSER,5.8,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,6,MSLUSER,7.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,6,MSLUSER,9.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,6,MSLUSER,11.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,6,MSLUSER,13.4,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,6,MSLUSER,15.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,6,MSLUSER,18.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,6,MSLUSER,21,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,6,MSLUSER,23.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,6,MSLUSER,26.9,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,6,MSLUSER,30.1,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,6,MSLUSER,33.4,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,6,MSLUSER,36.9,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,6,MSLUSER,40.4,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,6,MSLUSER,44,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,6,MSLUSER,47.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,6,MSLUSER,51.7,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,6,MSLUSER,55.6,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,6,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,6,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,6,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,6,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,6,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,6,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,6,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,6,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,6,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,6,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,6,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,6,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,6,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,6,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,6,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,6,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,6,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,6,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,6,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,6,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,6,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,6,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,6,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,6,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,6,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,6,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,6,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,6,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,6,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,6,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,6,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,6,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,6,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,6,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,6,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,6,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,6,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,6,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,6,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,6,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,6,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,6,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,6,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,6,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,6,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,6,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,6,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,6,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,6,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,6,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,6,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,6,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,6,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,6,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,6,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,6,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,6,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,6,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,6,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,6,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,6,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,6,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,6,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,6,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,6,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,6,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,6,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,6,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,6,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,6,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,6,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,6,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,6,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,6,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,6,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,6,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,6,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,6,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,6,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,6,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,6,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,6,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,6,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,6,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,6,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,6,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,6,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,6,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,6,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,6,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,6,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,6,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,6,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,6,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,6,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,6,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,6,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,6,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,6,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,6,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,6,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,6,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,6,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,6,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,6,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,6,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,6,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,6,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,6,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,6,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,6,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,6,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,6,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,6,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,6,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,6,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,6,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,6,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,6,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,6,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,6,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,6,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,6,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,6,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,6,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,6,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,6,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,6,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,6,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,6,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,6,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,6,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,6,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,6,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,6,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,6,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,6,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,6,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,6,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,6,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,6,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,6,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,6,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,6,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,6,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,6,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,6,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,6,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,6,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,6,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,6,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,6,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,6,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,6,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,6,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,6,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,6,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,6,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,6,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,6,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,6,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,6,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,6,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,6,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,6,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,6,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,6,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,6,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,6,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,6,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,6,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,6,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,6,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,6,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,6,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,6,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,6,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,6,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,6,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,6,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,6,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,6,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,6,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,6,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,6,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,6,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,6,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,6,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,6,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,6,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,6,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,6,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,6,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,6,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,6,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,6,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,6,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,6,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,6,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,6,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,6,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,6,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,6,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,6,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,6,TEMUSER,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,6,TEMUSER,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,6,TEMUSER,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,6,TEMUSER,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,6,TEMUSER,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,6,TEMUSER,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,6,TEMUSER,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,6,TEMUSER,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,6,TEMUSER,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,6,TEMUSER,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,6,TEMUSER,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,6,TEMUSER,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,6,TEMUSER,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,6,TEMUSER,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,6,TEMUSER,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,6,TEMUSER,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,6,TEMUSER,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,6,TEMUSER,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,6,TEMUSER,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,6,TEMUSER,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,6,TEMUSER,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,6,TEMUSER,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,6,TEMUSER,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,6,TEMUSER,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,6,TEMUSER,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,6,TEMUSER,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,6,TEMUSER,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,6,TEMUSER,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,6,TEMUSER,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,6,TEMUSER,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,6,TEMUSER,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,6,TEMUSER,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,6,TEMUSER,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,6,TEMUSER,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,6,TEMUSER,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,6,TEMUSER,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,6,TEMUSER,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,6,TEMUSER,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,6,TEMUSER,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,6,TEMUSER,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,6,TEMUSER,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,6,TEMUSER,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,6,TEMUSER,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,6,TEMUSER,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,6,TEMUSER,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,6,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,6,TEMUSER,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,6,TEMUSER,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,6,TEMUSER,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,6,TEMUSER,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,6,TEMUSER,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,6,TEMUSER,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,6,TEMUSER,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,6,TEMUSER,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,6,TEMUSER,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,6,TEMUSER,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,6,TEMUSER,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,6,TEMUSER,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,6,TEMUSER,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,6,TEMUSER,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,6,TEMUSER,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,6,TEMUSER,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,6,TEMUSER,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,6,TEMUSER,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,6,TEMUSER,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,6,TEMUSER,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,6,TEMUSER,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,6,TEMUSER,4.779,,,EPA_Baseline,,,Simulated \ No newline at end of file diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP3PD/RCP3PD_MAGICC_CO2.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP3PD/RCP3PD_MAGICC_CO2.csv deleted file mode 100644 index 59eff4ef8..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP3PD/RCP3PD_MAGICC_CO2.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC 6 RCP 3PD,,,,,,, -# CO2 concentration (ppm),,,,,,, -year,value,vtag,ctag,units,type,scenario,model -1765,2.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1766,2.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1767,2.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1768,2.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1769,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1770,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1771,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1772,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1773,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1774,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1775,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1776,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1777,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1778,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1779,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1780,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1781,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1782,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1783,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1784,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1785,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1786,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1787,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1788,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1789,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1790,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1791,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1792,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1793,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1794,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1795,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1796,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1797,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1798,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1799,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1800,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1801,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1802,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1803,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1804,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1805,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1806,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1807,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1808,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1809,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1810,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1811,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1812,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1813,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1814,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1815,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1816,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1817,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1818,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1819,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1820,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1821,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1822,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1823,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1824,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1825,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1826,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1827,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1828,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1829,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1830,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1831,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1832,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1833,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1834,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1835,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1836,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1837,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1838,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1839,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1840,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1841,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1842,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1843,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1844,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1845,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1846,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1847,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1848,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1849,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1850,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1851,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1852,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1853,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1854,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1855,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1856,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1857,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1858,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1859,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1860,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1861,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1862,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1863,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1864,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1865,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1866,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1867,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1868,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1869,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1870,2.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1871,2.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1872,2.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1873,2.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1874,2.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1875,2.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1876,2.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1877,2.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1878,2.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1879,2.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1880,2.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1881,2.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1882,2.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1883,2.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1884,2.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1885,2.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1886,2.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1887,2.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1888,2.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1889,2.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1890,2.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1891,2.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1892,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1893,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1894,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1895,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1896,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1897,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1898,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1899,2.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1900,2.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1901,2.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1902,2.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1903,2.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1904,2.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1905,2.98E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1906,2.98E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1907,2.99E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1908,2.99E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1909,3.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1910,3.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1911,3.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1912,3.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1913,3.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1914,3.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1915,3.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1916,3.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1917,3.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1918,3.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1919,3.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1920,3.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1921,3.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1922,3.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1923,3.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1924,3.05E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1925,3.05E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1926,3.06E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1927,3.06E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1928,3.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1929,3.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1930,3.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1931,3.08E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1932,3.08E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1933,3.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1934,3.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1935,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1936,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1937,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1938,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1939,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1940,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1941,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1942,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1943,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1944,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1945,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1946,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1947,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1948,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1949,3.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1950,3.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1951,3.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1952,3.12E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1953,3.12E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1954,3.13E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1955,3.13E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1956,3.14E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1957,3.15E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1958,3.15E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1959,3.16E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1960,3.17E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1961,3.17E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1962,3.18E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1963,3.19E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1964,3.19E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1965,3.20E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1966,3.21E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1967,3.22E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1968,3.23E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1969,3.25E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1970,3.25E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1971,3.26E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1972,3.28E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1973,3.29E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1974,3.30E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1975,3.31E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1976,3.32E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1977,3.34E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1978,3.36E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1979,3.37E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1980,3.39E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1981,3.40E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1982,3.41E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1983,3.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1984,3.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1985,3.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1986,3.48E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1987,3.50E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1988,3.52E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1989,3.53E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1990,3.55E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1991,3.56E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1992,3.56E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1993,3.57E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1994,3.59E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1995,3.61E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1996,3.62E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1997,3.64E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1998,3.67E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1999,3.68E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2000,3.70E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2001,3.71E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2002,3.74E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2003,3.76E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2004,3.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2005,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2006,3.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2007,3.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2008,3.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2009,3.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2010,3.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2011,3.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2012,3.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2013,3.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2014,4.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2015,4.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2016,4.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2017,4.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2018,4.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2019,4.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2020,4.14E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2021,4.16E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2022,4.18E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2023,4.21E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2024,4.23E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2025,4.25E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2026,4.26E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2027,4.28E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2028,4.30E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2029,4.31E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2030,4.33E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2031,4.34E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2032,4.36E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2033,4.37E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2034,4.38E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2035,4.39E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2036,4.40E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2037,4.41E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2038,4.41E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2039,4.42E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2040,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2041,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2042,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2043,4.44E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2044,4.44E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2045,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2046,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2047,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2048,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2049,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2050,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2051,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2052,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2053,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2054,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2055,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2056,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2057,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2058,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2059,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2060,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2061,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2062,4.44E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2063,4.44E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2064,4.44E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2065,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2066,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2067,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2068,4.42E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2069,4.42E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2070,4.41E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2071,4.41E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2072,4.40E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2073,4.39E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2074,4.39E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2075,4.38E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2076,4.38E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2077,4.37E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2078,4.37E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2079,4.36E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2080,4.36E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2081,4.35E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2082,4.34E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2083,4.34E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2084,4.33E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2085,4.33E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2086,4.32E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2087,4.32E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2088,4.31E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2089,4.31E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2090,4.30E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2091,4.30E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2092,4.29E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2093,4.29E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2094,4.28E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2095,4.28E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2096,4.27E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2097,4.27E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2098,4.26E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2099,4.26E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2100,4.25E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2101,4.25E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2102,4.24E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2103,4.24E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2104,4.24E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2105,4.23E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2106,4.23E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2107,4.22E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2108,4.22E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2109,4.21E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2110,4.21E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2111,4.20E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2112,4.20E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2113,4.20E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2114,4.19E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2115,4.19E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2116,4.18E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2117,4.18E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2118,4.17E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2119,4.17E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2120,4.16E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2121,4.16E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2122,4.16E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2123,4.15E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2124,4.15E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2125,4.14E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2126,4.14E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2127,4.13E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2128,4.13E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2129,4.12E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2130,4.12E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2131,4.12E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2132,4.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2133,4.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2134,4.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2135,4.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2136,4.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2137,4.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2138,4.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2139,4.08E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2140,4.08E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2141,4.08E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2142,4.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2143,4.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2144,4.06E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2145,4.06E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2146,4.06E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2147,4.05E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2148,4.05E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2149,4.05E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2150,4.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2151,4.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2152,4.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2153,4.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2154,4.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2155,4.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2156,4.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2157,4.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2158,4.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2159,4.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2160,4.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2161,4.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2162,4.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2163,4.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2164,4.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2165,3.99E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2166,3.99E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2167,3.99E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2168,3.98E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2169,3.98E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2170,3.98E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2171,3.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2172,3.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2173,3.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2174,3.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2175,3.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2176,3.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2177,3.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2178,3.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2179,3.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2180,3.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2181,3.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2182,3.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2183,3.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2184,3.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2185,3.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2186,3.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2187,3.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2188,3.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2189,3.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2190,3.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2191,3.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2192,3.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2193,3.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2194,3.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2195,3.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2196,3.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2197,3.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2198,3.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2199,3.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2200,3.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2201,3.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2202,3.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2203,3.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2204,3.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2205,3.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2206,3.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2207,3.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2208,3.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2209,3.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2210,3.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2211,3.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2212,3.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2213,3.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2214,3.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2215,3.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2216,3.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2217,3.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2218,3.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2219,3.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2220,3.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2221,3.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2222,3.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2223,3.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2224,3.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2225,3.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2226,3.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2227,3.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2228,3.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2229,3.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2230,3.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2231,3.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2232,3.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2233,3.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2234,3.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2235,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2236,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2237,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2238,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2239,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2240,3.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2241,3.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2242,3.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2243,3.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2244,3.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2245,3.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2246,3.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2247,3.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2248,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2249,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2250,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2251,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2252,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2253,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2254,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2255,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2256,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2257,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2258,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2259,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2260,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2261,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2262,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2263,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2264,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2265,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2266,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2267,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2268,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2269,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2270,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2271,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2272,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2273,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2274,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2275,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2276,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2277,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2278,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2279,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2280,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2281,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2282,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2283,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2284,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2285,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2286,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2287,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2288,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2289,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2290,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2291,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2292,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2293,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2294,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2295,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2296,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2297,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2298,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2299,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2300,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP3PD/RCP3PD_MAGICC_RF.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP3PD/RCP3PD_MAGICC_RF.csv deleted file mode 100644 index 0f692f74e..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP3PD/RCP3PD_MAGICC_RF.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC 6 RCP 3PD ,,,,,,, -# TOTAL_INCLVOLCANIC_RF,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,0.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1766,1.96E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1767,6.16E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1768,3.13E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1769,-1.21E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1770,3.28E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1771,7.06E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1772,6.43E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1773,5.23E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1774,3.90E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1775,3.38E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1776,5.50E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1777,9.16E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1778,1.19E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1779,1.11E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1780,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1781,9.51E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1782,2.20E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1783,-1.36E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1784,-1.49E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1785,8.68E-03,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1786,1.06E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1787,1.36E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1788,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1789,-8.59E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1790,-2.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1791,-4.76E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1792,4.83E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1793,7.60E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1794,4.26E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1795,6.17E-03,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1796,1.90E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1797,4.02E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1798,4.99E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1799,5.65E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1800,8.55E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1801,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1802,7.98E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1803,7.19E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1804,7.57E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1805,7.05E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1806,5.77E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1807,5.21E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1808,-9.30E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1809,-2.23E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1810,-1.73E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1811,-6.43E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1812,-3.80E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1813,-2.41E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1814,-1.42E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1815,-3.17E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1816,-2.42E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1817,-8.29E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1818,-1.67E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1819,7.32E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1820,8.56E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1821,8.74E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1822,9.07E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1823,9.55E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1824,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1825,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1826,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1827,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1828,1.64E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1829,1.10E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1830,-2.72E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1831,-6.79E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1832,-4.88E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1833,-1.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1834,-7.94E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1835,-1.31E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1836,-6.26E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1837,-8.84E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1838,1.22E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1839,1.40E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1840,8.19E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1841,9.19E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1842,8.31E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1843,3.89E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1844,7.34E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1845,1.39E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1846,1.79E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1847,2.16E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1848,2.37E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1849,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1850,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1851,1.75E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1852,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1853,1.60E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1854,1.43E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1855,-1.22E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1856,-7.65E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1857,-5.89E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1858,-6.96E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1859,1.29E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1860,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1861,6.30E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1862,-1.17E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1863,7.46E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1864,1.33E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1865,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1866,1.42E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1867,1.53E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1868,1.92E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1869,2.25E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1870,2.50E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1871,2.22E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1872,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1873,1.16E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1874,1.26E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1875,7.39E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1876,3.78E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1877,8.33E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1878,1.20E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1879,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1880,1.84E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1881,2.10E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1882,4.89E-03,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1883,-1.60E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1884,-1.47E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1885,-4.31E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1886,-5.05E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1887,-1.94E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1888,-3.04E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1889,-3.30E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1890,-3.82E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1891,-1.39E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1892,1.72E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1893,1.99E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1894,2.54E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1895,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1896,-9.06E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1897,-4.80E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1898,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1899,1.71E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1900,1.94E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1901,1.38E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1902,-6.86E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1903,-5.85E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1904,-4.29E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1905,1.48E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1906,1.66E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1907,1.08E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1908,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1909,2.40E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1910,2.44E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1911,2.42E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1912,-2.31E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1913,5.16E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1914,2.59E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1915,3.65E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1916,4.09E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1917,4.37E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1918,4.24E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1919,3.93E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1920,2.19E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1921,3.43E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1922,3.90E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1923,3.83E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1924,3.96E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1925,4.53E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1926,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1927,4.93E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1928,3.91E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1929,3.92E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1930,4.48E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1931,4.44E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1932,3.81E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1933,4.68E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1934,5.02E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1935,5.80E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1936,6.18E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1937,6.07E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1938,5.95E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1939,6.15E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1940,6.17E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1941,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1942,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1943,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1944,5.86E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1945,6.30E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1946,6.54E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1947,6.60E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1948,6.73E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1949,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1950,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1951,5.39E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1952,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1953,4.98E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1954,5.46E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1955,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1956,7.14E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1957,7.55E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1958,7.45E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1959,7.28E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1960,5.68E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1961,4.70E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1962,3.55E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1963,-4.96E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1964,-3.40E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1965,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1966,5.21E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1967,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1968,2.02E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1969,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1970,7.46E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1971,8.63E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1972,8.67E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1973,7.93E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1974,5.73E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1975,6.06E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1976,8.85E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1977,1.05E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1978,1.04E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1979,1.21E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1980,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1981,1.09E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1982,-1.28E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1983,4.80E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1984,9.59E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1985,1.08E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1986,1.14E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1987,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1988,1.42E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1989,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1990,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1991,-3.64E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1992,2.65E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1993,1.06E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1994,1.34E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1995,1.47E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1996,1.54E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1997,1.63E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1998,1.75E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1999,1.85E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2000,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2001,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2002,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2003,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2004,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2005,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2006,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2007,1.97E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2008,2.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2009,2.15E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2010,2.18E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2011,2.23E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2012,2.28E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2013,2.33E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2014,2.38E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2015,2.42E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2016,2.46E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2017,2.50E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2018,2.54E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2019,2.58E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2020,2.62E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2021,2.65E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2022,2.68E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2023,2.71E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2024,2.74E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2025,2.77E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2026,2.79E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2027,2.82E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2028,2.84E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2029,2.87E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2030,2.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2031,2.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2032,2.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2033,2.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2034,2.95E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2035,2.96E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2036,2.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2037,2.99E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2038,3.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2039,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2040,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2041,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2042,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2043,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2044,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2045,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2046,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2047,3.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2048,3.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2049,2.99E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2050,2.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2051,2.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2052,2.97E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2053,2.95E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2054,2.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2055,2.93E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2056,2.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2057,2.91E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2058,2.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2059,2.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2060,2.88E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2061,2.87E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2062,2.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2063,2.85E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2064,2.84E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2065,2.83E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2066,2.82E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2067,2.81E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2068,2.81E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2069,2.80E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2070,2.79E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2071,2.78E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2072,2.77E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2073,2.77E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2074,2.76E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2075,2.75E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2076,2.74E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2077,2.74E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2078,2.73E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2079,2.73E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2080,2.72E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2081,2.71E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2082,2.71E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2083,2.70E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2084,2.69E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2085,2.69E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2086,2.68E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2087,2.67E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2088,2.67E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2089,2.66E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2090,2.65E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2091,2.65E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2092,2.64E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2093,2.63E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2094,2.63E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2095,2.62E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2096,2.62E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2097,2.61E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2098,2.60E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2099,2.60E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2100,2.59E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2101,2.58E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2102,2.57E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2103,2.56E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2104,2.56E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2105,2.55E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2106,2.54E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2107,2.53E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2108,2.52E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2109,2.52E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2110,2.51E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2111,2.50E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2112,2.50E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2113,2.49E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2114,2.48E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2115,2.47E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2116,2.47E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2117,2.46E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2118,2.45E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2119,2.45E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2120,2.44E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2121,2.43E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2122,2.43E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2123,2.42E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2124,2.41E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2125,2.41E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2126,2.40E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2127,2.39E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2128,2.39E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2129,2.38E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2130,2.37E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2131,2.37E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2132,2.36E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2133,2.35E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2134,2.35E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2135,2.34E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2136,2.34E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2137,2.33E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2138,2.33E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2139,2.32E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2140,2.31E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2141,2.31E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2142,2.30E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2143,2.30E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2144,2.29E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2145,2.29E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2146,2.28E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2147,2.28E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2148,2.27E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2149,2.27E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2150,2.26E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2151,2.25E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2152,2.25E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2153,2.24E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2154,2.24E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2155,2.23E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2156,2.23E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2157,2.22E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2158,2.22E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2159,2.22E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2160,2.21E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2161,2.21E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2162,2.20E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2163,2.20E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2164,2.19E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2165,2.19E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2166,2.18E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2167,2.18E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2168,2.17E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2169,2.17E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2170,2.16E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2171,2.16E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2172,2.15E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2173,2.15E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2174,2.15E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2175,2.14E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2176,2.14E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2177,2.13E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2178,2.13E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2179,2.12E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2180,2.12E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2181,2.12E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2182,2.11E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2183,2.11E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2184,2.10E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2185,2.10E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2186,2.09E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2187,2.09E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2188,2.09E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2189,2.08E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2190,2.08E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2191,2.07E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2192,2.07E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2193,2.07E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2194,2.06E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2195,2.06E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2196,2.05E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2197,2.05E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2198,2.05E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2199,2.04E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2200,2.04E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2201,2.03E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2202,2.03E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2203,2.03E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2204,2.02E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2205,2.02E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2206,2.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2207,2.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2208,2.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2209,2.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2210,2.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2211,2.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2212,1.99E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2213,1.99E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2214,1.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2215,1.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2216,1.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2217,1.97E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2218,1.97E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2219,1.97E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2220,1.96E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2221,1.96E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2222,1.95E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2223,1.95E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2224,1.95E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2225,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2226,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2227,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2228,1.93E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2229,1.93E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2230,1.93E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2231,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2232,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2233,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2234,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2235,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2236,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2237,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2238,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2239,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2240,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2241,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2242,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2243,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2244,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2245,1.87E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2246,1.87E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2247,1.87E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2248,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2249,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2250,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2251,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2252,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2253,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2254,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2255,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2256,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2257,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2258,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2259,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2260,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2261,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2262,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2263,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2264,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2265,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2266,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2267,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2268,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2269,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2270,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2271,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2272,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2273,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2274,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2275,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2276,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2277,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2278,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2279,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2280,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2281,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2282,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2283,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2284,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2285,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2286,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2287,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2288,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2289,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2290,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2291,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2292,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2293,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2294,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2295,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2296,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2297,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2298,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2299,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2300,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP3PD/RCP3PD_MAGICC_temp.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP3PD/RCP3PD_MAGICC_temp.csv deleted file mode 100644 index 9d553fdae..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP3PD/RCP3PD_MAGICC_temp.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC 6 RCP 3PD,,,,,,, -# global temperature change,,,,,,, -year,value,vtag,ctag,units,type,scenario,model -1765,0.00E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1766,-6.73E-04,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1767,8.00E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1768,1.73E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1769,1.36E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1770,-4.08E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1771,-2.61E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1772,6.34E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1773,9.33E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1774,1.08E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1775,1.05E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1776,1.31E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1777,1.93E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1778,2.65E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1779,2.98E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1780,3.15E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1781,3.14E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1782,2.81E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1783,1.72E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1784,-1.51E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1785,-3.51E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1786,-9.93E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1787,1.06E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1788,2.30E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1789,2.75E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1790,8.08E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1791,-2.94E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1792,-2.13E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1793,-6.26E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1794,2.71E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1795,4.93E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1796,1.57E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1797,1.06E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1798,4.51E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1799,8.47E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1800,1.42E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1801,1.99E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1802,2.07E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1803,2.06E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1804,2.15E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1805,2.18E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1806,2.05E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1807,1.92E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1808,1.84E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1809,-9.67E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1810,-3.91E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1811,-4.91E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1812,-3.54E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1813,-2.66E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1814,-2.17E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1815,-3.18E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1816,-6.83E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1817,-7.92E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1818,-5.83E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1819,-4.14E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1820,-2.95E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1821,-2.30E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1822,-1.87E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1823,-1.55E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1824,-1.29E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1825,-1.06E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1826,-8.64E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1827,-6.87E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1828,-5.34E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1829,-4.19E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1830,-4.48E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1831,-9.98E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1832,-2.04E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1833,-2.27E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1834,-1.61E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1835,-2.06E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1836,-3.67E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1837,-3.33E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1838,-2.36E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1839,-1.62E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1840,-1.22E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1841,-1.09E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1842,-9.31E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1843,-7.87E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1844,-7.61E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1845,-6.65E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1846,-4.54E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1847,-2.68E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1848,-9.96E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1849,-8.05E-04,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1850,-5.26E-05,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1851,-3.90E-04,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1852,-5.74E-04,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1853,1.42E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1854,2.82E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1855,4.46E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1856,-1.77E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1857,-1.40E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1858,-1.87E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1859,-1.22E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1860,-7.60E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1861,-4.84E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1862,-4.09E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1863,-5.75E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1864,-4.61E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1865,-3.12E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1866,-2.09E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1867,-1.30E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1868,-1.10E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1869,1.25E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1870,2.15E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1871,2.47E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1872,2.02E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1873,1.20E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1874,3.97E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1875,3.34E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1876,-1.62E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1877,-1.57E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1878,-1.17E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1879,-3.35E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1880,5.04E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1881,1.49E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1882,2.48E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1883,-1.55E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1884,-2.58E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1885,-4.04E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1886,-2.88E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1887,-2.71E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1888,-2.19E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1889,-2.12E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1890,-1.95E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1891,-2.28E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1892,-1.88E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1893,-1.57E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1894,-1.05E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1895,-7.19E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1896,-5.54E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1897,-8.25E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1898,-8.39E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1899,-6.82E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1900,-5.06E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1901,-3.90E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1902,-3.05E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1903,-1.49E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1904,-2.21E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1905,-1.53E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1906,-1.03E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1907,-7.72E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1908,-7.96E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1909,-6.25E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1910,-4.04E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1911,-2.74E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1912,-1.15E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1913,-1.07E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1914,-7.77E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1915,-2.92E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1916,6.35E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1917,3.02E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1918,4.61E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1919,5.73E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1920,6.18E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1921,3.73E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1922,5.10E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1923,6.24E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1924,7.54E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1925,8.54E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1926,9.91E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1927,1.06E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1928,1.16E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1929,1.08E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1930,1.01E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1931,1.11E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1932,1.18E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1933,1.10E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1934,1.27E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1935,1.43E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1936,1.58E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1937,1.69E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1938,1.79E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1939,1.81E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1940,1.88E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1941,1.91E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1942,1.91E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1943,1.77E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1944,1.84E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1945,1.94E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1946,2.04E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1947,2.13E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1948,2.13E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1949,2.18E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1950,2.08E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1951,2.00E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1952,1.88E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1953,1.81E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1954,1.74E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1955,1.84E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1956,2.00E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1957,2.17E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1958,2.25E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1959,2.32E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1960,2.35E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1961,2.07E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1962,1.85E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1963,1.70E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1964,3.35E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1965,-2.27E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1966,2.12E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1967,8.13E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1968,1.13E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1969,7.14E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1970,9.57E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1971,1.53E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1972,1.99E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1973,2.24E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1974,2.28E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1975,2.15E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1976,1.95E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1977,2.47E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1978,3.03E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1979,3.22E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1980,3.58E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1981,3.81E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1982,3.92E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1983,1.52E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1984,1.62E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1985,2.57E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1986,3.15E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1987,3.55E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1988,4.06E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1989,4.53E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1990,4.90E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1991,5.11E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1992,2.23E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1993,1.78E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1994,3.00E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1995,3.93E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1996,4.57E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1997,5.05E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1998,5.54E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1999,6.03E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2000,6.43E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2001,6.76E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2002,7.03E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2003,7.22E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2004,7.38E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2005,7.55E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2006,7.74E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2007,7.94E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2008,8.15E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2009,8.50E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2010,8.80E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2011,9.09E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2012,9.38E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2013,9.67E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2014,9.95E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2015,1.02E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2016,1.05E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2017,1.08E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2018,1.10E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2019,1.13E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2020,1.16E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2021,1.18E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2022,1.20E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2023,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2024,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2025,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2026,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2027,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2028,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2029,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2030,1.37E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2031,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2032,1.41E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2033,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2034,1.44E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2035,1.46E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2036,1.47E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2037,1.48E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2038,1.50E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2039,1.51E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2040,1.52E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2041,1.53E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2042,1.54E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2043,1.55E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2044,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2045,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2046,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2047,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2048,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2049,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2050,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2051,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2052,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2053,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2054,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2055,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2056,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2057,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2058,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2059,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2060,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2061,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2062,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2063,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2064,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2065,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2066,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2067,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2068,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2069,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2070,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2071,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2072,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2073,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2074,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2075,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2076,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2077,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2078,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2079,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2080,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2081,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2082,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2083,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2084,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2085,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2086,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2087,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2088,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2089,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2090,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2091,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2092,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2093,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2094,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2095,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2096,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2097,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2098,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2099,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2100,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2101,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2102,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2103,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2104,1.55E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2105,1.55E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2106,1.55E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2107,1.55E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2108,1.54E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2109,1.54E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2110,1.54E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2111,1.54E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2112,1.53E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2113,1.53E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2114,1.53E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2115,1.52E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2116,1.52E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2117,1.52E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2118,1.52E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2119,1.51E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2120,1.51E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2121,1.51E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2122,1.51E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2123,1.50E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2124,1.50E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2125,1.50E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2126,1.50E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2127,1.49E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2128,1.49E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2129,1.49E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2130,1.49E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2131,1.48E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2132,1.48E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2133,1.48E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2134,1.48E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2135,1.47E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2136,1.47E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2137,1.47E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2138,1.47E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2139,1.46E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2140,1.46E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2141,1.46E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2142,1.46E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2143,1.45E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2144,1.45E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2145,1.45E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2146,1.45E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2147,1.44E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2148,1.44E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2149,1.44E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2150,1.44E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2151,1.43E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2152,1.43E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2153,1.43E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2154,1.43E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2155,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2156,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2157,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2158,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2159,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2160,1.41E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2161,1.41E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2162,1.41E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2163,1.41E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2164,1.40E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2165,1.40E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2166,1.40E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2167,1.40E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2168,1.40E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2169,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2170,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2171,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2172,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2173,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2174,1.38E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2175,1.38E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2176,1.38E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2177,1.38E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2178,1.38E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2179,1.37E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2180,1.37E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2181,1.37E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2182,1.37E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2183,1.36E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2184,1.36E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2185,1.36E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2186,1.36E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2187,1.36E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2188,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2189,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2190,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2191,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2192,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2193,1.34E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2194,1.34E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2195,1.34E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2196,1.34E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2197,1.34E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2198,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2199,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2200,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2201,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2202,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2203,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2204,1.32E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2205,1.32E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2206,1.32E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2207,1.32E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2208,1.32E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2209,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2210,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2211,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2212,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2213,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2214,1.30E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2215,1.30E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2216,1.30E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2217,1.30E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2218,1.30E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2219,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2220,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2221,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2222,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2223,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2224,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2225,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2226,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2227,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2228,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2229,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2230,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2231,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2232,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2233,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2234,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2235,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2236,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2237,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2238,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2239,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2240,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2241,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2242,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2243,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2244,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2245,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2246,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2247,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2248,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2249,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2250,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2251,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2252,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2253,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2254,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2255,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2256,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2257,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2258,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2259,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2260,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2261,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2262,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2263,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2264,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2265,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2266,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2267,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2268,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2269,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2270,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2271,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2272,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2273,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2274,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2275,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2276,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2277,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2278,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2279,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2280,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2281,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2282,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2283,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2284,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2285,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2286,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2287,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2288,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2289,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2290,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2291,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2292,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2293,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2294,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2295,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2296,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2297,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2298,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2299,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2300,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP45/RCP45_MAGICC_RF.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP45/RCP45_MAGICC_RF.csv deleted file mode 100644 index 6f8a0df66..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP45/RCP45_MAGICC_RF.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC6 RCP4.5,,,,,,, -# TOTAL_INCLVOLCANIC_RF W/m2,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,0.00E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1766,1.96E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1767,6.16E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1768,3.13E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1769,-1.21E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1770,3.28E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1771,7.06E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1772,6.43E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1773,5.23E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1774,3.90E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1775,3.38E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1776,5.50E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1777,9.16E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1778,1.19E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1779,1.11E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1780,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1781,9.51E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1782,2.20E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1783,-1.36E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1784,-1.49E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1785,8.68E-03,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1786,1.06E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1787,1.36E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1788,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1789,-8.59E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1790,-2.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1791,-4.76E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1792,4.83E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1793,7.60E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1794,4.26E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1795,6.17E-03,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1796,1.90E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1797,4.02E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1798,4.99E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1799,5.65E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1800,8.55E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1801,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1802,7.98E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1803,7.19E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1804,7.57E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1805,7.05E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1806,5.77E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1807,5.21E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1808,-9.30E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1809,-2.23E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1810,-1.73E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1811,-6.43E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1812,-3.80E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1813,-2.41E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1814,-1.42E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1815,-3.17E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1816,-2.42E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1817,-8.29E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1818,-1.67E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1819,7.32E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1820,8.56E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1821,8.74E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1822,9.07E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1823,9.55E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1824,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1825,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1826,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1827,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1828,1.64E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1829,1.10E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1830,-2.72E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1831,-6.79E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1832,-4.88E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1833,-1.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1834,-7.94E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1835,-1.31E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1836,-6.26E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1837,-8.84E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1838,1.22E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1839,1.40E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1840,8.19E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1841,9.19E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1842,8.31E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1843,3.89E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1844,7.34E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1845,1.39E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1846,1.79E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1847,2.16E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1848,2.37E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1849,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1850,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1851,1.75E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1852,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1853,1.60E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1854,1.43E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1855,-1.22E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1856,-7.65E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1857,-5.89E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1858,-6.96E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1859,1.29E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1860,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1861,6.30E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1862,-1.17E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1863,7.46E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1864,1.33E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1865,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1866,1.42E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1867,1.53E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1868,1.92E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1869,2.25E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1870,2.50E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1871,2.22E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1872,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1873,1.16E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1874,1.26E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1875,7.39E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1876,3.78E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1877,8.33E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1878,1.20E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1879,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1880,1.84E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1881,2.10E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1882,4.89E-03,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1883,-1.60E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1884,-1.47E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1885,-4.31E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1886,-5.05E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1887,-1.94E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1888,-3.04E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1889,-3.30E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1890,-3.82E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1891,-1.39E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1892,1.72E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1893,1.99E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1894,2.54E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1895,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1896,-9.06E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1897,-4.80E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1898,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1899,1.71E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1900,1.94E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1901,1.38E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1902,-6.86E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1903,-5.85E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1904,-4.29E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1905,1.48E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1906,1.66E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1907,1.08E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1908,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1909,2.40E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1910,2.44E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1911,2.42E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1912,-2.31E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1913,5.16E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1914,2.59E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1915,3.65E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1916,4.09E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1917,4.37E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1918,4.24E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1919,3.93E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1920,2.19E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1921,3.43E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1922,3.90E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1923,3.83E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1924,3.96E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1925,4.53E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1926,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1927,4.93E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1928,3.91E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1929,3.92E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1930,4.48E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1931,4.44E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1932,3.81E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1933,4.68E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1934,5.02E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1935,5.80E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1936,6.18E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1937,6.07E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1938,5.95E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1939,6.15E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1940,6.17E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1941,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1942,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1943,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1944,5.86E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1945,6.30E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1946,6.54E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1947,6.60E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1948,6.73E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1949,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1950,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1951,5.39E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1952,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1953,4.98E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1954,5.46E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1955,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1956,7.14E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1957,7.55E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1958,7.45E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1959,7.28E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1960,5.68E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1961,4.70E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1962,3.55E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1963,-4.96E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1964,-3.40E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1965,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1966,5.21E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1967,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1968,2.02E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1969,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1970,7.46E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1971,8.63E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1972,8.67E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1973,7.93E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1974,5.73E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1975,6.06E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1976,8.85E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1977,1.05E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1978,1.04E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1979,1.21E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1980,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1981,1.09E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1982,-1.28E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1983,4.80E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1984,9.59E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1985,1.08E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1986,1.14E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1987,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1988,1.42E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1989,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1990,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1991,-3.64E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1992,2.65E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1993,1.06E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1994,1.34E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1995,1.47E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1996,1.54E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1997,1.63E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1998,1.75E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1999,1.85E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2000,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2001,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2002,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2003,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2004,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2005,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2006,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2007,1.97E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2008,2.01E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2009,2.14E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2010,2.17E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2011,2.21E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2012,2.26E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2013,2.30E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2014,2.34E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2015,2.38E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2016,2.43E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2017,2.47E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2018,2.51E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2019,2.56E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2020,2.60E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2021,2.64E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2022,2.68E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2023,2.72E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2024,2.77E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2025,2.81E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2026,2.85E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2027,2.89E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2028,2.93E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2029,2.97E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2030,3.02E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2031,3.06E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2032,3.10E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2033,3.14E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2034,3.18E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2035,3.22E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2036,3.26E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2037,3.30E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2038,3.34E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2039,3.38E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2040,3.42E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2041,3.45E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2042,3.49E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2043,3.53E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2044,3.56E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2045,3.59E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2046,3.63E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2047,3.66E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2048,3.70E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2049,3.73E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2050,3.76E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2051,3.79E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2052,3.81E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2053,3.84E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2054,3.87E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2055,3.89E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2056,3.91E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2057,3.94E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2058,3.96E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2059,3.98E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2060,4.00E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2061,4.02E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2062,4.04E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2063,4.05E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2064,4.07E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2065,4.09E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2066,4.10E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2067,4.11E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2068,4.13E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2069,4.14E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2070,4.15E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2071,4.16E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2072,4.17E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2073,4.18E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2074,4.18E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2075,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2076,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2077,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2078,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2079,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2080,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2081,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2082,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2083,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2084,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2085,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2086,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2087,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2088,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2089,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2090,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2091,4.21E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2092,4.21E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2093,4.21E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2094,4.22E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2095,4.22E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2096,4.23E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2097,4.23E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2098,4.23E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2099,4.24E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2100,4.24E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2101,4.25E+00,Ftot,W/m3,forcing,Simulated,rcp45,MAGICC6 -2102,4.25E+00,Ftot,W/m4,forcing,Simulated,rcp45,MAGICC6 -2103,4.26E+00,Ftot,W/m5,forcing,Simulated,rcp45,MAGICC6 -2104,4.26E+00,Ftot,W/m6,forcing,Simulated,rcp45,MAGICC6 -2105,4.26E+00,Ftot,W/m7,forcing,Simulated,rcp45,MAGICC6 -2106,4.27E+00,Ftot,W/m8,forcing,Simulated,rcp45,MAGICC6 -2107,4.27E+00,Ftot,W/m9,forcing,Simulated,rcp45,MAGICC6 -2108,4.27E+00,Ftot,W/m10,forcing,Simulated,rcp45,MAGICC6 -2109,4.27E+00,Ftot,W/m11,forcing,Simulated,rcp45,MAGICC6 -2110,4.27E+00,Ftot,W/m12,forcing,Simulated,rcp45,MAGICC6 -2111,4.28E+00,Ftot,W/m13,forcing,Simulated,rcp45,MAGICC6 -2112,4.28E+00,Ftot,W/m14,forcing,Simulated,rcp45,MAGICC6 -2113,4.28E+00,Ftot,W/m15,forcing,Simulated,rcp45,MAGICC6 -2114,4.28E+00,Ftot,W/m16,forcing,Simulated,rcp45,MAGICC6 -2115,4.28E+00,Ftot,W/m17,forcing,Simulated,rcp45,MAGICC6 -2116,4.28E+00,Ftot,W/m18,forcing,Simulated,rcp45,MAGICC6 -2117,4.28E+00,Ftot,W/m19,forcing,Simulated,rcp45,MAGICC6 -2118,4.28E+00,Ftot,W/m20,forcing,Simulated,rcp45,MAGICC6 -2119,4.28E+00,Ftot,W/m21,forcing,Simulated,rcp45,MAGICC6 -2120,4.28E+00,Ftot,W/m22,forcing,Simulated,rcp45,MAGICC6 -2121,4.28E+00,Ftot,W/m23,forcing,Simulated,rcp45,MAGICC6 -2122,4.28E+00,Ftot,W/m24,forcing,Simulated,rcp45,MAGICC6 -2123,4.28E+00,Ftot,W/m25,forcing,Simulated,rcp45,MAGICC6 -2124,4.28E+00,Ftot,W/m26,forcing,Simulated,rcp45,MAGICC6 -2125,4.28E+00,Ftot,W/m27,forcing,Simulated,rcp45,MAGICC6 -2126,4.28E+00,Ftot,W/m28,forcing,Simulated,rcp45,MAGICC6 -2127,4.28E+00,Ftot,W/m29,forcing,Simulated,rcp45,MAGICC6 -2128,4.28E+00,Ftot,W/m30,forcing,Simulated,rcp45,MAGICC6 -2129,4.28E+00,Ftot,W/m31,forcing,Simulated,rcp45,MAGICC6 -2130,4.28E+00,Ftot,W/m32,forcing,Simulated,rcp45,MAGICC6 -2131,4.28E+00,Ftot,W/m33,forcing,Simulated,rcp45,MAGICC6 -2132,4.28E+00,Ftot,W/m34,forcing,Simulated,rcp45,MAGICC6 -2133,4.28E+00,Ftot,W/m35,forcing,Simulated,rcp45,MAGICC6 -2134,4.28E+00,Ftot,W/m36,forcing,Simulated,rcp45,MAGICC6 -2135,4.28E+00,Ftot,W/m37,forcing,Simulated,rcp45,MAGICC6 -2136,4.28E+00,Ftot,W/m38,forcing,Simulated,rcp45,MAGICC6 -2137,4.28E+00,Ftot,W/m39,forcing,Simulated,rcp45,MAGICC6 -2138,4.28E+00,Ftot,W/m40,forcing,Simulated,rcp45,MAGICC6 -2139,4.28E+00,Ftot,W/m41,forcing,Simulated,rcp45,MAGICC6 -2140,4.28E+00,Ftot,W/m42,forcing,Simulated,rcp45,MAGICC6 -2141,4.28E+00,Ftot,W/m43,forcing,Simulated,rcp45,MAGICC6 -2142,4.28E+00,Ftot,W/m44,forcing,Simulated,rcp45,MAGICC6 -2143,4.28E+00,Ftot,W/m45,forcing,Simulated,rcp45,MAGICC6 -2144,4.28E+00,Ftot,W/m46,forcing,Simulated,rcp45,MAGICC6 -2145,4.28E+00,Ftot,W/m47,forcing,Simulated,rcp45,MAGICC6 -2146,4.28E+00,Ftot,W/m48,forcing,Simulated,rcp45,MAGICC6 -2147,4.28E+00,Ftot,W/m49,forcing,Simulated,rcp45,MAGICC6 -2148,4.28E+00,Ftot,W/m50,forcing,Simulated,rcp45,MAGICC6 -2149,4.28E+00,Ftot,W/m51,forcing,Simulated,rcp45,MAGICC6 -2150,4.28E+00,Ftot,W/m52,forcing,Simulated,rcp45,MAGICC6 -2151,4.27E+00,Ftot,W/m53,forcing,Simulated,rcp45,MAGICC6 -2152,4.27E+00,Ftot,W/m54,forcing,Simulated,rcp45,MAGICC6 -2153,4.27E+00,Ftot,W/m55,forcing,Simulated,rcp45,MAGICC6 -2154,4.27E+00,Ftot,W/m56,forcing,Simulated,rcp45,MAGICC6 -2155,4.27E+00,Ftot,W/m57,forcing,Simulated,rcp45,MAGICC6 -2156,4.27E+00,Ftot,W/m58,forcing,Simulated,rcp45,MAGICC6 -2157,4.27E+00,Ftot,W/m59,forcing,Simulated,rcp45,MAGICC6 -2158,4.27E+00,Ftot,W/m60,forcing,Simulated,rcp45,MAGICC6 -2159,4.27E+00,Ftot,W/m61,forcing,Simulated,rcp45,MAGICC6 -2160,4.27E+00,Ftot,W/m62,forcing,Simulated,rcp45,MAGICC6 -2161,4.27E+00,Ftot,W/m63,forcing,Simulated,rcp45,MAGICC6 -2162,4.27E+00,Ftot,W/m64,forcing,Simulated,rcp45,MAGICC6 -2163,4.27E+00,Ftot,W/m65,forcing,Simulated,rcp45,MAGICC6 -2164,4.27E+00,Ftot,W/m66,forcing,Simulated,rcp45,MAGICC6 -2165,4.27E+00,Ftot,W/m67,forcing,Simulated,rcp45,MAGICC6 -2166,4.27E+00,Ftot,W/m68,forcing,Simulated,rcp45,MAGICC6 -2167,4.27E+00,Ftot,W/m69,forcing,Simulated,rcp45,MAGICC6 -2168,4.27E+00,Ftot,W/m70,forcing,Simulated,rcp45,MAGICC6 -2169,4.27E+00,Ftot,W/m71,forcing,Simulated,rcp45,MAGICC6 -2170,4.27E+00,Ftot,W/m72,forcing,Simulated,rcp45,MAGICC6 -2171,4.27E+00,Ftot,W/m73,forcing,Simulated,rcp45,MAGICC6 -2172,4.27E+00,Ftot,W/m74,forcing,Simulated,rcp45,MAGICC6 -2173,4.27E+00,Ftot,W/m75,forcing,Simulated,rcp45,MAGICC6 -2174,4.27E+00,Ftot,W/m76,forcing,Simulated,rcp45,MAGICC6 -2175,4.27E+00,Ftot,W/m77,forcing,Simulated,rcp45,MAGICC6 -2176,4.27E+00,Ftot,W/m78,forcing,Simulated,rcp45,MAGICC6 -2177,4.27E+00,Ftot,W/m79,forcing,Simulated,rcp45,MAGICC6 -2178,4.27E+00,Ftot,W/m80,forcing,Simulated,rcp45,MAGICC6 -2179,4.27E+00,Ftot,W/m81,forcing,Simulated,rcp45,MAGICC6 -2180,4.27E+00,Ftot,W/m82,forcing,Simulated,rcp45,MAGICC6 -2181,4.27E+00,Ftot,W/m83,forcing,Simulated,rcp45,MAGICC6 -2182,4.27E+00,Ftot,W/m84,forcing,Simulated,rcp45,MAGICC6 -2183,4.27E+00,Ftot,W/m85,forcing,Simulated,rcp45,MAGICC6 -2184,4.27E+00,Ftot,W/m86,forcing,Simulated,rcp45,MAGICC6 -2185,4.27E+00,Ftot,W/m87,forcing,Simulated,rcp45,MAGICC6 -2186,4.27E+00,Ftot,W/m88,forcing,Simulated,rcp45,MAGICC6 -2187,4.27E+00,Ftot,W/m89,forcing,Simulated,rcp45,MAGICC6 -2188,4.27E+00,Ftot,W/m90,forcing,Simulated,rcp45,MAGICC6 -2189,4.27E+00,Ftot,W/m91,forcing,Simulated,rcp45,MAGICC6 -2190,4.27E+00,Ftot,W/m92,forcing,Simulated,rcp45,MAGICC6 -2191,4.27E+00,Ftot,W/m93,forcing,Simulated,rcp45,MAGICC6 -2192,4.27E+00,Ftot,W/m94,forcing,Simulated,rcp45,MAGICC6 -2193,4.27E+00,Ftot,W/m95,forcing,Simulated,rcp45,MAGICC6 -2194,4.27E+00,Ftot,W/m96,forcing,Simulated,rcp45,MAGICC6 -2195,4.27E+00,Ftot,W/m97,forcing,Simulated,rcp45,MAGICC6 -2196,4.27E+00,Ftot,W/m98,forcing,Simulated,rcp45,MAGICC6 -2197,4.27E+00,Ftot,W/m99,forcing,Simulated,rcp45,MAGICC6 -2198,4.27E+00,Ftot,W/m100,forcing,Simulated,rcp45,MAGICC6 -2199,4.27E+00,Ftot,W/m101,forcing,Simulated,rcp45,MAGICC6 -2200,4.27E+00,Ftot,W/m102,forcing,Simulated,rcp45,MAGICC6 -2201,4.27E+00,Ftot,W/m103,forcing,Simulated,rcp45,MAGICC6 -2202,4.27E+00,Ftot,W/m104,forcing,Simulated,rcp45,MAGICC6 -2203,4.27E+00,Ftot,W/m105,forcing,Simulated,rcp45,MAGICC6 -2204,4.27E+00,Ftot,W/m106,forcing,Simulated,rcp45,MAGICC6 -2205,4.27E+00,Ftot,W/m107,forcing,Simulated,rcp45,MAGICC6 -2206,4.27E+00,Ftot,W/m108,forcing,Simulated,rcp45,MAGICC6 -2207,4.27E+00,Ftot,W/m109,forcing,Simulated,rcp45,MAGICC6 -2208,4.27E+00,Ftot,W/m110,forcing,Simulated,rcp45,MAGICC6 -2209,4.27E+00,Ftot,W/m111,forcing,Simulated,rcp45,MAGICC6 -2210,4.27E+00,Ftot,W/m112,forcing,Simulated,rcp45,MAGICC6 -2211,4.27E+00,Ftot,W/m113,forcing,Simulated,rcp45,MAGICC6 -2212,4.27E+00,Ftot,W/m114,forcing,Simulated,rcp45,MAGICC6 -2213,4.27E+00,Ftot,W/m115,forcing,Simulated,rcp45,MAGICC6 -2214,4.27E+00,Ftot,W/m116,forcing,Simulated,rcp45,MAGICC6 -2215,4.27E+00,Ftot,W/m117,forcing,Simulated,rcp45,MAGICC6 -2216,4.27E+00,Ftot,W/m118,forcing,Simulated,rcp45,MAGICC6 -2217,4.27E+00,Ftot,W/m119,forcing,Simulated,rcp45,MAGICC6 -2218,4.27E+00,Ftot,W/m120,forcing,Simulated,rcp45,MAGICC6 -2219,4.27E+00,Ftot,W/m121,forcing,Simulated,rcp45,MAGICC6 -2220,4.27E+00,Ftot,W/m122,forcing,Simulated,rcp45,MAGICC6 -2221,4.27E+00,Ftot,W/m123,forcing,Simulated,rcp45,MAGICC6 -2222,4.27E+00,Ftot,W/m124,forcing,Simulated,rcp45,MAGICC6 -2223,4.27E+00,Ftot,W/m125,forcing,Simulated,rcp45,MAGICC6 -2224,4.27E+00,Ftot,W/m126,forcing,Simulated,rcp45,MAGICC6 -2225,4.27E+00,Ftot,W/m127,forcing,Simulated,rcp45,MAGICC6 -2226,4.27E+00,Ftot,W/m128,forcing,Simulated,rcp45,MAGICC6 -2227,4.27E+00,Ftot,W/m129,forcing,Simulated,rcp45,MAGICC6 -2228,4.27E+00,Ftot,W/m130,forcing,Simulated,rcp45,MAGICC6 -2229,4.27E+00,Ftot,W/m131,forcing,Simulated,rcp45,MAGICC6 -2230,4.27E+00,Ftot,W/m132,forcing,Simulated,rcp45,MAGICC6 -2231,4.27E+00,Ftot,W/m133,forcing,Simulated,rcp45,MAGICC6 -2232,4.27E+00,Ftot,W/m134,forcing,Simulated,rcp45,MAGICC6 -2233,4.27E+00,Ftot,W/m135,forcing,Simulated,rcp45,MAGICC6 -2234,4.27E+00,Ftot,W/m136,forcing,Simulated,rcp45,MAGICC6 -2235,4.27E+00,Ftot,W/m137,forcing,Simulated,rcp45,MAGICC6 -2236,4.27E+00,Ftot,W/m138,forcing,Simulated,rcp45,MAGICC6 -2237,4.27E+00,Ftot,W/m139,forcing,Simulated,rcp45,MAGICC6 -2238,4.27E+00,Ftot,W/m140,forcing,Simulated,rcp45,MAGICC6 -2239,4.27E+00,Ftot,W/m141,forcing,Simulated,rcp45,MAGICC6 -2240,4.27E+00,Ftot,W/m142,forcing,Simulated,rcp45,MAGICC6 -2241,4.27E+00,Ftot,W/m143,forcing,Simulated,rcp45,MAGICC6 -2242,4.27E+00,Ftot,W/m144,forcing,Simulated,rcp45,MAGICC6 -2243,4.27E+00,Ftot,W/m145,forcing,Simulated,rcp45,MAGICC6 -2244,4.27E+00,Ftot,W/m146,forcing,Simulated,rcp45,MAGICC6 -2245,4.27E+00,Ftot,W/m147,forcing,Simulated,rcp45,MAGICC6 -2246,4.27E+00,Ftot,W/m148,forcing,Simulated,rcp45,MAGICC6 -2247,4.27E+00,Ftot,W/m149,forcing,Simulated,rcp45,MAGICC6 -2248,4.27E+00,Ftot,W/m150,forcing,Simulated,rcp45,MAGICC6 -2249,4.27E+00,Ftot,W/m151,forcing,Simulated,rcp45,MAGICC6 -2250,4.27E+00,Ftot,W/m152,forcing,Simulated,rcp45,MAGICC6 -2251,4.27E+00,Ftot,W/m153,forcing,Simulated,rcp45,MAGICC6 -2252,4.27E+00,Ftot,W/m154,forcing,Simulated,rcp45,MAGICC6 -2253,4.27E+00,Ftot,W/m155,forcing,Simulated,rcp45,MAGICC6 -2254,4.27E+00,Ftot,W/m156,forcing,Simulated,rcp45,MAGICC6 -2255,4.27E+00,Ftot,W/m157,forcing,Simulated,rcp45,MAGICC6 -2256,4.27E+00,Ftot,W/m158,forcing,Simulated,rcp45,MAGICC6 -2257,4.27E+00,Ftot,W/m159,forcing,Simulated,rcp45,MAGICC6 -2258,4.27E+00,Ftot,W/m160,forcing,Simulated,rcp45,MAGICC6 -2259,4.27E+00,Ftot,W/m161,forcing,Simulated,rcp45,MAGICC6 -2260,4.27E+00,Ftot,W/m162,forcing,Simulated,rcp45,MAGICC6 -2261,4.27E+00,Ftot,W/m163,forcing,Simulated,rcp45,MAGICC6 -2262,4.27E+00,Ftot,W/m164,forcing,Simulated,rcp45,MAGICC6 -2263,4.27E+00,Ftot,W/m165,forcing,Simulated,rcp45,MAGICC6 -2264,4.27E+00,Ftot,W/m166,forcing,Simulated,rcp45,MAGICC6 -2265,4.27E+00,Ftot,W/m167,forcing,Simulated,rcp45,MAGICC6 -2266,4.27E+00,Ftot,W/m168,forcing,Simulated,rcp45,MAGICC6 -2267,4.27E+00,Ftot,W/m169,forcing,Simulated,rcp45,MAGICC6 -2268,4.27E+00,Ftot,W/m170,forcing,Simulated,rcp45,MAGICC6 -2269,4.27E+00,Ftot,W/m171,forcing,Simulated,rcp45,MAGICC6 -2270,4.27E+00,Ftot,W/m172,forcing,Simulated,rcp45,MAGICC6 -2271,4.27E+00,Ftot,W/m173,forcing,Simulated,rcp45,MAGICC6 -2272,4.27E+00,Ftot,W/m174,forcing,Simulated,rcp45,MAGICC6 -2273,4.27E+00,Ftot,W/m175,forcing,Simulated,rcp45,MAGICC6 -2274,4.27E+00,Ftot,W/m176,forcing,Simulated,rcp45,MAGICC6 -2275,4.27E+00,Ftot,W/m177,forcing,Simulated,rcp45,MAGICC6 -2276,4.27E+00,Ftot,W/m178,forcing,Simulated,rcp45,MAGICC6 -2277,4.27E+00,Ftot,W/m179,forcing,Simulated,rcp45,MAGICC6 -2278,4.27E+00,Ftot,W/m180,forcing,Simulated,rcp45,MAGICC6 -2279,4.27E+00,Ftot,W/m181,forcing,Simulated,rcp45,MAGICC6 -2280,4.27E+00,Ftot,W/m182,forcing,Simulated,rcp45,MAGICC6 -2281,4.27E+00,Ftot,W/m183,forcing,Simulated,rcp45,MAGICC6 -2282,4.27E+00,Ftot,W/m184,forcing,Simulated,rcp45,MAGICC6 -2283,4.27E+00,Ftot,W/m185,forcing,Simulated,rcp45,MAGICC6 -2284,4.27E+00,Ftot,W/m186,forcing,Simulated,rcp45,MAGICC6 -2285,4.27E+00,Ftot,W/m187,forcing,Simulated,rcp45,MAGICC6 -2286,4.27E+00,Ftot,W/m188,forcing,Simulated,rcp45,MAGICC6 -2287,4.27E+00,Ftot,W/m189,forcing,Simulated,rcp45,MAGICC6 -2288,4.27E+00,Ftot,W/m190,forcing,Simulated,rcp45,MAGICC6 -2289,4.27E+00,Ftot,W/m191,forcing,Simulated,rcp45,MAGICC6 -2290,4.27E+00,Ftot,W/m192,forcing,Simulated,rcp45,MAGICC6 -2291,4.27E+00,Ftot,W/m193,forcing,Simulated,rcp45,MAGICC6 -2292,4.27E+00,Ftot,W/m194,forcing,Simulated,rcp45,MAGICC6 -2293,4.27E+00,Ftot,W/m195,forcing,Simulated,rcp45,MAGICC6 -2294,4.27E+00,Ftot,W/m196,forcing,Simulated,rcp45,MAGICC6 -2295,4.27E+00,Ftot,W/m197,forcing,Simulated,rcp45,MAGICC6 -2296,4.27E+00,Ftot,W/m198,forcing,Simulated,rcp45,MAGICC6 -2297,4.27E+00,Ftot,W/m199,forcing,Simulated,rcp45,MAGICC6 -2298,4.27E+00,Ftot,W/m200,forcing,Simulated,rcp45,MAGICC6 -2299,4.27E+00,Ftot,W/m201,forcing,Simulated,rcp45,MAGICC6 -2300,4.27E+00,Ftot,W/m202,forcing,Simulated,rcp45,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP45/RCP45_MAGICC_co2.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP45/RCP45_MAGICC_co2.csv deleted file mode 100644 index 3554caa85..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP45/RCP45_MAGICC_co2.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC6 RCP4.5,,,,,,, -#Atmospheric CO2,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1766,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1767,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1768,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1769,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1770,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1771,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1772,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1773,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1774,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1775,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1776,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1777,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1778,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1779,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1780,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1781,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1782,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1783,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1784,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1785,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1786,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1787,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1788,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1789,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1790,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1791,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1792,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1793,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1794,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1795,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1796,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1797,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1798,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1799,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1800,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1801,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1802,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1803,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1804,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1805,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1806,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1807,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1808,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1809,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1810,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1811,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1812,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1813,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1814,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1815,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1816,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1817,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1818,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1819,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1820,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1821,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1822,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1823,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1824,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1825,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1826,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1827,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1828,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1829,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1830,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1831,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1832,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1833,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1834,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1835,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1836,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1837,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1838,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1839,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1840,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1841,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1842,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1843,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1844,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1845,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1846,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1847,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1848,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1849,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1850,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1851,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1852,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1853,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1854,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1855,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1856,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1857,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1858,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1859,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1860,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1861,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1862,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1863,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1864,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1865,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1866,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1867,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1868,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1869,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1870,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1871,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1872,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1873,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1874,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1875,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1876,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1877,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1878,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1879,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1880,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1881,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1882,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1883,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1884,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1885,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1886,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1887,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1888,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1889,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1890,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1891,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1892,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1893,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1894,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1895,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1896,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1897,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1898,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1899,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1900,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1901,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1902,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1903,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1904,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1905,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1906,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1907,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1908,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1909,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1910,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1911,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1912,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1913,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1914,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1915,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1916,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1917,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1918,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1919,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1920,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1921,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1922,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1923,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1924,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1925,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1926,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1927,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1928,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1929,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1930,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1931,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1932,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1933,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1934,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1935,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1936,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1937,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1938,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1939,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1940,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1941,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1942,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1943,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1944,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1945,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1946,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1947,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1948,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1949,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1950,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1951,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1952,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1953,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1954,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1955,3.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1956,3.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1957,3.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1958,3.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1959,3.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1960,3.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1961,3.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1962,3.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1963,3.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1964,3.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1965,3.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1966,3.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1967,3.22E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1968,3.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1969,3.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1970,3.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1971,3.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1972,3.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1973,3.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1974,3.30E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1975,3.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1976,3.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1977,3.33E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1978,3.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1979,3.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1980,3.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1981,3.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1982,3.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1983,3.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1984,3.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1985,3.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1986,3.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1987,3.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1988,3.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1989,3.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1990,3.54E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1991,3.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1992,3.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1993,3.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1994,3.58E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1995,3.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1996,3.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1997,3.63E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1998,3.65E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1999,3.67E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2000,3.69E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2001,3.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2002,3.73E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2003,3.75E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2004,3.77E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2005,3.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2006,3.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2007,3.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2008,3.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2009,3.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2010,3.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2011,3.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2012,3.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2013,3.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2014,3.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2015,4.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2016,4.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2017,4.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2018,4.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2019,4.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2020,4.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2021,4.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2022,4.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2023,4.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2024,4.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2025,4.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2026,4.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2027,4.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2028,4.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2029,4.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2030,4.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2031,4.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2032,4.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2033,4.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2034,4.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2035,4.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2036,4.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2037,4.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2038,4.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2039,4.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2040,4.63E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2041,4.66E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2042,4.68E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2043,4.71E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2044,4.74E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2045,4.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2046,4.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2047,4.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2048,4.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2049,4.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2050,4.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2051,4.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2052,4.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2053,4.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2054,4.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2055,5.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2056,5.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2057,5.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2058,5.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2059,5.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2060,5.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2061,5.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2062,5.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2063,5.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2064,5.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2065,5.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2066,5.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2067,5.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2068,5.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2069,5.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2070,5.28E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2071,5.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2072,5.30E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2073,5.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2074,5.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2075,5.33E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2076,5.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2077,5.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2078,5.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2079,5.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2080,5.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2081,5.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2082,5.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2083,5.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2084,5.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2085,5.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2086,5.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2087,5.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2088,5.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2089,5.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2090,5.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2091,5.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2092,5.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2093,5.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2094,5.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2095,5.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2096,5.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2097,5.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2098,5.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2099,5.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2100,5.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2101,5.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2102,5.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2103,5.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2104,5.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2105,5.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2106,5.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2107,5.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2108,5.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2109,5.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2110,5.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2111,5.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2112,5.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2113,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2114,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2115,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2116,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2117,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2118,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2119,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2120,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2121,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2122,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2123,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2124,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2125,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2126,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2127,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2128,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2129,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2130,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2131,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2132,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2133,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2134,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2135,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2136,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2137,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2138,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2139,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2140,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2141,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2142,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2143,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2144,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2145,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2146,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2147,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2148,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2149,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2150,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2151,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2152,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2153,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2154,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2155,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2156,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2157,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2158,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2159,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2160,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2161,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2162,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2163,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2164,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2165,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2166,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2167,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2168,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2169,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2170,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2171,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2172,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2173,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2174,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2175,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2176,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2177,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2178,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2179,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2180,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2181,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2182,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2183,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2184,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2185,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2186,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2187,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2188,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2189,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2190,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2191,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2192,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2193,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2194,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2195,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2196,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2197,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2198,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2199,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2200,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2201,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2202,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2203,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2204,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2205,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2206,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2207,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2208,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2209,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2210,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2211,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2212,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2213,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2214,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2215,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2216,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2217,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2218,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2219,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2220,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2221,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2222,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2223,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2224,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2225,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2226,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2227,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2228,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2229,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2230,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2231,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2232,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2233,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2234,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2235,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2236,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2237,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2238,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2239,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2240,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2241,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2242,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2243,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2244,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2245,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2246,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2247,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2248,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2249,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2250,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2251,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2252,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2253,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2254,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2255,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2256,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2257,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2258,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2259,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2260,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2261,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2262,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2263,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2264,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2265,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2266,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2267,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2268,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2269,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2270,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2271,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2272,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2273,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2274,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2275,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2276,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2277,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2278,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2279,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2280,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2281,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2282,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2283,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2284,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2285,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2286,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2287,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2288,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2289,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2290,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2291,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2292,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2293,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2294,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2295,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2296,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2297,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2298,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2299,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2300,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP45/RCP45_MAGICC_temp.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP45/RCP45_MAGICC_temp.csv deleted file mode 100644 index 453898ec1..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP45/RCP45_MAGICC_temp.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC global temperature,,,,,,, -# RCP 4.5,,,,,,, -Year,value,vtag,ctag,units,type,Scenario,model -1765,0.00E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1766,-6.73E-04,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1767,8.00E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1768,1.73E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1769,1.36E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1770,-4.08E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1771,-2.61E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1772,6.34E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1773,9.33E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1774,1.08E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1775,1.05E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1776,1.31E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1777,1.93E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1778,2.65E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1779,2.98E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1780,3.15E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1781,3.14E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1782,2.81E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1783,1.72E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1784,-1.51E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1785,-3.51E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1786,-9.93E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1787,1.06E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1788,2.30E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1789,2.75E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1790,8.08E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1791,-2.94E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1792,-2.13E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1793,-6.26E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1794,2.71E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1795,4.93E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1796,1.57E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1797,1.06E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1798,4.51E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1799,8.47E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1800,1.42E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1801,1.99E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1802,2.07E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1803,2.06E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1804,2.15E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1805,2.18E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1806,2.05E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1807,1.92E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1808,1.84E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1809,-9.67E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1810,-3.91E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1811,-4.91E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1812,-3.54E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1813,-2.66E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1814,-2.17E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1815,-3.18E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1816,-6.83E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1817,-7.92E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1818,-5.83E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1819,-4.14E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1820,-2.95E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1821,-2.30E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1822,-1.87E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1823,-1.55E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1824,-1.29E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1825,-1.06E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1826,-8.64E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1827,-6.87E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1828,-5.34E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1829,-4.19E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1830,-4.48E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1831,-9.98E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1832,-2.04E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1833,-2.27E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1834,-1.61E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1835,-2.06E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1836,-3.67E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1837,-3.33E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1838,-2.36E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1839,-1.62E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1840,-1.22E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1841,-1.09E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1842,-9.31E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1843,-7.87E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1844,-7.61E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1845,-6.65E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1846,-4.54E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1847,-2.68E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1848,-9.96E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1849,-8.05E-04,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1850,-5.26E-05,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1851,-3.90E-04,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1852,-5.74E-04,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1853,1.42E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1854,2.82E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1855,4.46E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1856,-1.77E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1857,-1.40E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1858,-1.87E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1859,-1.22E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1860,-7.60E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1861,-4.84E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1862,-4.09E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1863,-5.75E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1864,-4.61E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1865,-3.12E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1866,-2.09E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1867,-1.30E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1868,-1.10E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1869,1.25E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1870,2.15E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1871,2.47E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1872,2.02E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1873,1.20E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1874,3.97E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1875,3.34E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1876,-1.62E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1877,-1.57E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1878,-1.17E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1879,-3.35E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1880,5.04E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1881,1.49E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1882,2.48E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1883,-1.55E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1884,-2.58E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1885,-4.04E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1886,-2.88E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1887,-2.71E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1888,-2.19E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1889,-2.12E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1890,-1.95E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1891,-2.28E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1892,-1.88E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1893,-1.57E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1894,-1.05E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1895,-7.19E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1896,-5.54E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1897,-8.25E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1898,-8.39E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1899,-6.82E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1900,-5.06E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1901,-3.90E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1902,-3.05E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1903,-1.49E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1904,-2.21E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1905,-1.53E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1906,-1.03E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1907,-7.72E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1908,-7.96E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1909,-6.25E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1910,-4.04E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1911,-2.74E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1912,-1.15E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1913,-1.07E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1914,-7.77E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1915,-2.92E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1916,6.35E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1917,3.02E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1918,4.61E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1919,5.73E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1920,6.18E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1921,3.73E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1922,5.10E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1923,6.24E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1924,7.54E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1925,8.54E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1926,9.91E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1927,1.06E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1928,1.16E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1929,1.08E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1930,1.01E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1931,1.11E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1932,1.18E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1933,1.10E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1934,1.27E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1935,1.43E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1936,1.58E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1937,1.69E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1938,1.79E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1939,1.81E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1940,1.88E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1941,1.91E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1942,1.91E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1943,1.77E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1944,1.84E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1945,1.94E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1946,2.04E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1947,2.13E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1948,2.13E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1949,2.18E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1950,2.08E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1951,2.00E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1952,1.88E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1953,1.81E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1954,1.74E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1955,1.84E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1956,2.00E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1957,2.17E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1958,2.25E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1959,2.32E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1960,2.35E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1961,2.07E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1962,1.85E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1963,1.70E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1964,3.35E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1965,-2.27E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1966,2.12E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1967,8.13E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1968,1.13E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1969,7.14E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1970,9.57E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1971,1.53E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1972,1.99E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1973,2.24E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1974,2.28E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1975,2.15E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1976,1.95E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1977,2.47E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1978,3.03E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1979,3.22E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1980,3.58E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1981,3.81E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1982,3.92E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1983,1.52E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1984,1.62E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1985,2.57E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1986,3.15E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1987,3.55E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1988,4.06E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1989,4.53E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1990,4.90E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1991,5.11E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1992,2.23E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1993,1.78E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1994,3.00E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1995,3.93E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1996,4.57E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1997,5.05E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1998,5.54E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1999,6.03E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2000,6.43E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2001,6.76E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2002,7.03E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2003,7.22E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2004,7.38E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2005,7.55E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2006,7.74E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2007,7.94E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2008,8.15E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2009,8.50E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2010,8.79E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2011,9.06E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2012,9.33E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2013,9.59E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2014,9.86E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2015,1.01E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2016,1.04E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2017,1.07E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2018,1.09E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2019,1.12E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2020,1.14E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2021,1.17E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2022,1.20E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2023,1.22E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2024,1.25E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2025,1.28E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2026,1.30E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2027,1.33E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2028,1.36E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2029,1.38E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2030,1.41E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2031,1.43E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2032,1.46E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2033,1.49E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2034,1.51E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2035,1.54E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2036,1.57E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2037,1.59E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2038,1.62E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2039,1.64E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2040,1.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2041,1.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2042,1.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2043,1.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2044,1.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2045,1.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2046,1.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2047,1.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2048,1.87E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2049,1.89E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2050,1.91E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2051,1.94E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2052,1.96E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2053,1.98E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2054,2.00E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2055,2.02E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2056,2.04E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2057,2.06E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2058,2.08E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2059,2.10E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2060,2.12E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2061,2.13E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2062,2.15E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2063,2.17E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2064,2.19E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2065,2.20E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2066,2.22E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2067,2.23E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2068,2.25E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2069,2.26E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2070,2.27E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2071,2.29E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2072,2.30E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2073,2.31E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2074,2.32E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2075,2.33E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2076,2.34E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2077,2.35E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2078,2.36E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2079,2.37E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2080,2.38E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2081,2.39E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2082,2.39E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2083,2.40E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2084,2.40E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2085,2.41E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2086,2.42E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2087,2.42E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2088,2.43E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2089,2.43E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2090,2.44E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2091,2.44E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2092,2.45E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2093,2.46E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2094,2.46E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2095,2.47E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2096,2.47E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2097,2.48E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2098,2.49E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2099,2.49E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2100,2.50E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2101,2.50E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2102,2.51E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2103,2.51E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2104,2.52E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2105,2.53E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2106,2.53E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2107,2.54E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2108,2.54E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2109,2.55E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2110,2.55E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2111,2.56E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2112,2.56E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2113,2.56E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2114,2.57E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2115,2.57E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2116,2.58E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2117,2.58E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2118,2.58E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2119,2.59E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2120,2.59E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2121,2.59E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2122,2.60E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2123,2.60E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2124,2.60E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2125,2.61E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2126,2.61E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2127,2.61E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2128,2.61E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2129,2.62E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2130,2.62E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2131,2.62E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2132,2.62E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2133,2.63E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2134,2.63E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2135,2.63E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2136,2.63E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2137,2.64E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2138,2.64E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2139,2.64E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2140,2.64E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2141,2.65E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2142,2.65E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2143,2.65E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2144,2.65E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2145,2.65E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2146,2.66E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2147,2.66E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2148,2.66E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2149,2.66E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2150,2.66E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2151,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2152,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2153,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2154,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2155,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2156,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2157,2.68E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2158,2.68E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2159,2.68E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2160,2.68E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2161,2.68E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2162,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2163,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2164,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2165,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2166,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2167,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2168,2.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2169,2.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2170,2.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2171,2.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2172,2.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2173,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2174,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2175,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2176,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2177,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2178,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2179,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2180,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2181,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2182,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2183,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2184,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2185,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2186,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2187,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2188,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2189,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2190,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2191,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2192,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2193,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2194,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2195,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2196,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2197,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2198,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2199,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2200,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2201,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2202,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2203,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2204,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2205,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2206,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2207,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2208,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2209,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2210,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2211,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2212,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2213,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2214,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2215,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2216,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2217,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2218,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2219,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2220,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2221,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2222,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2223,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2224,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2225,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2226,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2227,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2228,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2229,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2230,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2231,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2232,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2233,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2234,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2235,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2236,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2237,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2238,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2239,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2240,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2241,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2242,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2243,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2244,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2245,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2246,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2247,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2248,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2249,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2250,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2251,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2252,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2253,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2254,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2255,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2256,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2257,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2258,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2259,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2260,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2261,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2262,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2263,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2264,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2265,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2266,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2267,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2268,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2269,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2270,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2271,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2272,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2273,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2274,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2275,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2276,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2277,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2278,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2279,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2280,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2281,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2282,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2283,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2284,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2285,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2286,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2287,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2288,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2289,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2290,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2291,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2292,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2293,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2294,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2295,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2296,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2297,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2298,2.86E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2299,2.86E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2300,2.86E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP60/RCP6_MAGICC_CO2.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP60/RCP6_MAGICC_CO2.csv deleted file mode 100644 index f14b69b9e..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP60/RCP6_MAGICC_CO2.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC atmospheric CO2,,,,,,, -# RCP 6.0,,,,,,, -Year,value,vtag,units,ctag,type,Scenario,model -1765,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1766,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1767,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1768,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1769,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1770,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1771,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1772,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1773,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1774,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1775,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1776,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1777,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1778,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1779,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1780,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1781,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1782,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1783,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1784,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1785,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1786,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1787,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1788,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1789,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1790,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1791,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1792,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1793,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1794,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1795,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1796,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1797,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1798,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1799,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1800,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1801,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1802,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1803,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1804,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1805,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1806,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1807,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1808,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1809,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1810,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1811,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1812,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1813,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1814,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1815,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1816,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1817,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1818,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1819,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1820,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1821,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1822,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1823,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1824,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1825,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1826,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1827,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1828,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1829,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1830,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1831,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1832,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1833,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1834,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1835,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1836,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1837,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1838,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1839,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1840,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1841,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1842,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1843,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1844,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1845,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1846,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1847,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1848,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1849,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1850,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1851,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1852,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1853,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1854,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1855,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1856,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1857,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1858,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1859,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1860,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1861,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1862,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1863,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1864,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1865,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1866,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1867,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1868,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1869,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1870,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1871,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1872,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1873,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1874,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1875,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1876,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1877,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1878,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1879,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1880,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1881,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1882,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1883,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1884,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1885,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1886,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1887,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1888,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1889,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1890,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1891,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1892,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1893,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1894,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1895,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1896,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1897,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1898,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1899,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1900,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1901,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1902,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1903,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1904,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1905,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1906,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1907,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1908,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1909,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1910,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1911,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1912,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1913,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1914,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1915,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1916,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1917,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1918,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1919,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1920,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1921,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1922,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1923,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1924,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1925,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1926,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1927,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1928,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1929,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1930,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1931,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1932,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1933,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1934,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1935,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1936,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1937,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1938,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1939,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1940,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1941,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1942,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1943,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1944,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1945,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1946,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1947,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1948,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1949,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1950,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1951,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1952,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1953,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1954,3.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1955,3.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1956,3.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1957,3.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1958,3.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1959,3.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1960,3.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1961,3.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1962,3.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1963,3.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1964,3.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1965,3.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1966,3.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1967,3.22E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1968,3.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1969,3.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1970,3.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1971,3.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1972,3.28E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1973,3.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1974,3.30E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1975,3.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1976,3.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1977,3.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1978,3.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1979,3.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1980,3.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1981,3.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1982,3.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1983,3.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1984,3.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1985,3.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1986,3.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1987,3.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1988,3.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1989,3.53E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1990,3.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1991,3.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1992,3.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1993,3.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1994,3.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1995,3.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1996,3.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1997,3.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1998,3.67E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1999,3.68E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2000,3.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2001,3.71E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2002,3.74E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2003,3.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2004,3.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2005,3.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2006,3.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2007,3.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2008,3.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2009,3.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2010,3.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2011,3.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2012,3.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2013,3.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2014,3.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2015,4.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2016,4.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2017,4.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2018,4.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2019,4.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2020,4.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2021,4.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2022,4.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2023,4.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2024,4.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2025,4.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2026,4.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2027,4.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2028,4.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2029,4.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2030,4.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2031,4.33E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2032,4.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2033,4.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2034,4.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2035,4.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2036,4.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2037,4.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2038,4.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2039,4.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2040,4.54E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2041,4.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2042,4.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2043,4.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2044,4.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2045,4.67E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2046,4.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2047,4.73E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2048,4.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2049,4.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2050,4.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2051,4.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2052,4.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2053,4.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2054,4.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2055,4.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2056,5.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2057,5.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2058,5.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2059,5.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2060,5.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2061,5.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2062,5.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2063,5.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2064,5.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2065,5.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2066,5.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2067,5.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2068,5.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2069,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2070,5.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2071,5.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2072,5.65E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2073,5.69E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2074,5.74E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2075,5.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2076,5.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2077,5.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2078,5.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2079,5.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2080,6.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2081,6.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2082,6.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2083,6.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2084,6.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2085,6.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2086,6.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2087,6.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2088,6.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2089,6.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2090,6.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2091,6.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2092,6.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2093,6.53E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2094,6.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2095,6.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2096,6.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2097,6.67E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2098,6.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2099,6.74E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2100,6.77E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2101,6.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2102,6.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2103,6.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2104,6.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2105,6.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2106,6.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2107,6.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2108,7.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2109,7.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2110,7.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2111,7.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2112,7.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2113,7.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2114,7.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2115,7.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2116,7.22E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2117,7.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2118,7.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2119,7.28E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2120,7.30E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2121,7.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2122,7.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2123,7.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2124,7.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2125,7.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2126,7.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2127,7.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2128,7.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2129,7.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2130,7.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2131,7.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2132,7.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2133,7.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2134,7.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2135,7.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2136,7.53E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2137,7.54E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2138,7.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2139,7.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2140,7.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2141,7.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2142,7.58E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2143,7.58E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2144,7.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2145,7.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2146,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2147,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2148,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2149,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2150,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2151,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2152,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2153,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2154,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2155,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2156,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2157,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2158,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2159,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2160,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2161,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2162,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2163,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2164,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2165,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2166,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2167,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2168,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2169,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2170,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2171,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2172,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2173,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2174,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2175,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2176,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2177,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2178,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2179,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2180,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2181,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2182,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2183,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2184,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2185,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2186,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2187,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2188,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2189,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2190,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2191,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2192,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2193,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2194,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2195,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2196,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2197,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2198,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2199,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2200,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2201,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2202,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2203,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2204,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2205,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2206,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2207,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2208,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2209,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2210,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2211,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2212,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2213,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2214,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2215,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2216,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2217,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2218,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2219,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2220,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2221,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2222,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2223,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2224,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2225,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2226,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2227,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2228,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2229,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2230,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2231,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2232,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2233,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2234,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2235,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2236,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2237,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2238,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2239,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2240,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2241,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2242,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2243,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2244,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2245,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2246,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2247,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2248,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2249,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2250,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2251,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2252,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2253,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2254,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2255,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2256,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2257,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2258,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2259,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2260,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2261,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2262,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2263,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2264,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2265,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2266,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2267,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2268,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2269,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2270,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2271,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2272,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2273,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2274,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2275,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2276,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2277,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2278,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2279,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2280,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2281,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2282,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2283,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2284,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2285,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2286,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2287,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2288,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2289,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2290,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2291,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2292,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2293,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2294,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2295,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2296,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2297,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2298,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2299,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2300,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP60/RCP6_MAGICC_RF.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP60/RCP6_MAGICC_RF.csv deleted file mode 100644 index bd4cede9c..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP60/RCP6_MAGICC_RF.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC6 RCP 6,,,,,,, -# Total Including Volcanic forcing W/m2,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,0.00E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1766,1.96E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1767,6.16E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1768,3.13E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1769,-1.21E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1770,3.28E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1771,7.06E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1772,6.43E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1773,5.23E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1774,3.90E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1775,3.38E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1776,5.50E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1777,9.16E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1778,1.19E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1779,1.11E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1780,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1781,9.51E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1782,2.20E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1783,-1.36E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1784,-1.49E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1785,8.68E-03,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1786,1.06E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1787,1.36E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1788,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1789,-8.59E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1790,-2.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1791,-4.76E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1792,4.83E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1793,7.60E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1794,4.26E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1795,6.17E-03,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1796,1.90E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1797,4.02E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1798,4.99E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1799,5.65E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1800,8.55E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1801,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1802,7.98E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1803,7.19E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1804,7.57E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1805,7.05E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1806,5.77E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1807,5.21E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1808,-9.30E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1809,-2.23E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1810,-1.73E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1811,-6.43E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1812,-3.80E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1813,-2.41E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1814,-1.42E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1815,-3.17E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1816,-2.42E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1817,-8.29E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1818,-1.67E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1819,7.32E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1820,8.56E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1821,8.74E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1822,9.07E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1823,9.55E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1824,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1825,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1826,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1827,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1828,1.64E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1829,1.10E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1830,-2.72E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1831,-6.79E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1832,-4.88E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1833,-1.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1834,-7.94E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1835,-1.31E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1836,-6.26E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1837,-8.84E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1838,1.22E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1839,1.40E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1840,8.19E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1841,9.19E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1842,8.31E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1843,3.89E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1844,7.34E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1845,1.39E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1846,1.79E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1847,2.16E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1848,2.37E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1849,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1850,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1851,1.75E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1852,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1853,1.60E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1854,1.43E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1855,-1.22E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1856,-7.65E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1857,-5.89E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1858,-6.96E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1859,1.29E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1860,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1861,6.30E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1862,-1.17E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1863,7.46E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1864,1.33E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1865,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1866,1.42E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1867,1.53E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1868,1.92E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1869,2.25E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1870,2.50E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1871,2.22E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1872,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1873,1.16E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1874,1.26E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1875,7.39E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1876,3.78E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1877,8.33E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1878,1.20E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1879,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1880,1.84E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1881,2.10E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1882,4.89E-03,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1883,-1.60E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1884,-1.47E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1885,-4.31E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1886,-5.05E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1887,-1.94E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1888,-3.04E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1889,-3.30E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1890,-3.82E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1891,-1.39E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1892,1.72E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1893,1.99E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1894,2.54E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1895,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1896,-9.06E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1897,-4.80E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1898,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1899,1.71E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1900,1.94E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1901,1.38E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1902,-6.86E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1903,-5.85E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1904,-4.29E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1905,1.48E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1906,1.66E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1907,1.08E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1908,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1909,2.40E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1910,2.44E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1911,2.42E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1912,-2.31E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1913,5.16E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1914,2.59E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1915,3.65E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1916,4.09E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1917,4.37E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1918,4.24E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1919,3.93E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1920,2.19E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1921,3.43E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1922,3.90E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1923,3.83E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1924,3.96E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1925,4.53E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1926,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1927,4.93E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1928,3.91E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1929,3.92E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1930,4.48E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1931,4.44E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1932,3.81E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1933,4.68E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1934,5.02E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1935,5.80E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1936,6.18E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1937,6.07E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1938,5.95E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1939,6.15E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1940,6.17E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1941,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1942,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1943,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1944,5.86E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1945,6.30E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1946,6.54E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1947,6.60E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1948,6.73E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1949,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1950,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1951,5.39E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1952,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1953,4.98E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1954,5.46E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1955,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1956,7.14E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1957,7.55E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1958,7.45E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1959,7.28E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1960,5.68E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1961,4.70E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1962,3.55E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1963,-4.96E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1964,-3.40E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1965,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1966,5.21E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1967,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1968,2.02E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1969,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1970,7.46E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1971,8.63E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1972,8.67E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1973,7.93E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1974,5.73E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1975,6.06E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1976,8.85E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1977,1.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1978,1.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1979,1.21E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1980,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1981,1.09E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1982,-1.28E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1983,4.80E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1984,9.59E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1985,1.08E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1986,1.14E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1987,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1988,1.42E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1989,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1990,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1991,-3.64E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1992,2.65E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1993,1.06E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1994,1.34E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1995,1.47E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1996,1.54E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1997,1.63E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1998,1.75E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1999,1.85E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2000,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2001,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2002,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2003,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2004,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2005,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2006,1.93E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2007,1.95E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2008,1.98E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2009,2.11E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2010,2.13E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2011,2.17E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2012,2.21E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2013,2.25E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2014,2.29E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2015,2.33E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2016,2.36E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2017,2.40E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2018,2.43E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2019,2.47E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2020,2.51E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2021,2.54E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2022,2.58E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2023,2.62E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2024,2.66E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2025,2.69E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2026,2.73E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2027,2.77E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2028,2.81E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2029,2.85E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2030,2.88E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2031,2.91E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2032,2.93E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2033,2.96E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2034,2.99E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2035,3.02E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2036,3.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2037,3.08E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2038,3.11E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2039,3.14E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2040,3.18E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2041,3.22E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2042,3.25E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2043,3.29E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2044,3.33E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2045,3.37E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2046,3.41E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2047,3.44E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2048,3.48E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2049,3.52E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2050,3.56E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2051,3.60E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2052,3.63E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2053,3.67E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2054,3.71E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2055,3.74E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2056,3.78E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2057,3.82E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2058,3.86E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2059,3.90E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2060,3.94E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2061,4.00E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2062,4.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2063,4.10E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2064,4.16E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2065,4.21E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2066,4.26E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2067,4.32E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2068,4.37E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2069,4.43E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2070,4.48E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2071,4.53E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2072,4.58E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2073,4.63E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2074,4.67E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2075,4.72E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2076,4.77E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2077,4.82E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2078,4.87E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2079,4.91E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2080,4.96E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2081,5.00E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2082,5.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2083,5.07E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2084,5.11E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2085,5.14E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2086,5.17E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2087,5.20E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2088,5.22E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2089,5.25E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2090,5.27E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2091,5.29E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2092,5.31E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2093,5.33E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2094,5.35E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2095,5.38E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2096,5.40E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2097,5.42E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2098,5.44E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2099,5.46E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2100,5.48E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2101,5.50E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2102,5.52E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2103,5.54E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2104,5.57E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2105,5.59E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2106,5.61E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2107,5.62E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2108,5.64E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2109,5.66E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2110,5.68E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2111,5.70E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2112,5.72E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2113,5.73E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2114,5.75E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2115,5.77E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2116,5.78E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2117,5.80E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2118,5.81E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2119,5.83E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2120,5.84E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2121,5.86E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2122,5.87E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2123,5.88E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2124,5.90E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2125,5.91E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2126,5.92E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2127,5.93E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2128,5.94E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2129,5.95E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2130,5.96E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2131,5.97E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2132,5.98E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2133,5.98E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2134,5.99E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2135,6.00E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2136,6.01E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2137,6.01E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2138,6.02E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2139,6.02E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2140,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2141,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2142,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2143,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2144,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2145,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2146,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2147,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2148,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2149,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2150,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2151,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2152,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2153,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2154,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2155,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2156,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2157,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2158,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2159,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2160,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2161,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2162,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2163,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2164,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2165,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2166,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2167,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2168,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2169,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2170,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2171,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2172,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2173,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2174,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2175,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2176,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2177,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2178,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2179,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2180,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2181,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2182,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2183,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2184,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2185,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2186,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2187,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2188,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2189,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2190,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2191,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2192,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2193,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2194,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2195,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2196,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2197,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2198,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2199,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2200,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2201,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2202,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2203,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2204,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2205,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2206,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2207,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2208,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2209,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2210,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2211,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2212,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2213,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2214,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2215,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2216,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2217,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2218,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2219,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2220,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2221,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2222,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2223,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2224,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2225,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2226,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2227,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2228,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2229,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2230,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2231,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2232,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2233,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2234,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2235,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2236,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2237,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2238,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2239,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2240,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2241,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2242,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2243,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2244,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2245,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2246,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2247,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2248,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2249,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2250,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2251,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2252,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2253,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2254,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2255,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2256,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2257,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2258,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2259,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2260,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2261,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2262,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2263,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2264,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2265,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2266,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2267,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2268,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2269,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2270,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2271,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2272,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2273,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2274,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2275,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2276,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2277,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2278,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2279,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2280,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2281,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2282,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2283,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2284,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2285,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2286,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2287,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2288,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2289,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2290,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2291,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2292,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2293,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2294,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2295,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2296,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2297,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2298,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2299,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2300,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP60/RCP6_MAGICC_temp.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP60/RCP6_MAGICC_temp.csv deleted file mode 100644 index 96447ca14..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP60/RCP6_MAGICC_temp.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC global temperature,,,,,,, -# RCP 6.0,,,,,,, -Year,value,vtag,ctag,units,type,Scenario,model -1765,0.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1766,-6.73E-04,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1767,8.00E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1768,1.73E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1769,1.36E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1770,-4.08E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1771,-2.61E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1772,6.34E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1773,9.33E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1774,1.08E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1775,1.05E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1776,1.31E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1777,1.93E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1778,2.65E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1779,2.98E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1780,3.15E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1781,3.14E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1782,2.81E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1783,1.72E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1784,-1.51E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1785,-3.51E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1786,-9.93E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1787,1.06E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1788,2.30E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1789,2.75E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1790,8.08E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1791,-2.94E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1792,-2.13E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1793,-6.26E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1794,2.71E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1795,4.93E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1796,1.57E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1797,1.06E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1798,4.51E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1799,8.47E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1800,1.42E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1801,1.99E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1802,2.07E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1803,2.06E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1804,2.15E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1805,2.18E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1806,2.05E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1807,1.92E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1808,1.84E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1809,-9.67E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1810,-3.91E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1811,-4.91E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1812,-3.54E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1813,-2.66E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1814,-2.17E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1815,-3.18E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1816,-6.83E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1817,-7.92E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1818,-5.83E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1819,-4.14E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1820,-2.95E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1821,-2.30E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1822,-1.87E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1823,-1.55E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1824,-1.29E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1825,-1.06E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1826,-8.64E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1827,-6.87E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1828,-5.34E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1829,-4.19E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1830,-4.48E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1831,-9.98E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1832,-2.04E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1833,-2.27E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1834,-1.61E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1835,-2.06E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1836,-3.67E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1837,-3.33E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1838,-2.36E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1839,-1.62E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1840,-1.22E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1841,-1.09E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1842,-9.31E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1843,-7.87E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1844,-7.61E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1845,-6.65E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1846,-4.54E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1847,-2.68E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1848,-9.96E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1849,-8.05E-04,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1850,-5.26E-05,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1851,-3.90E-04,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1852,-5.74E-04,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1853,1.42E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1854,2.82E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1855,4.46E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1856,-1.77E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1857,-1.40E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1858,-1.87E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1859,-1.22E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1860,-7.60E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1861,-4.84E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1862,-4.09E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1863,-5.75E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1864,-4.61E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1865,-3.12E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1866,-2.09E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1867,-1.30E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1868,-1.10E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1869,1.25E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1870,2.15E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1871,2.47E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1872,2.02E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1873,1.20E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1874,3.97E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1875,3.34E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1876,-1.62E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1877,-1.57E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1878,-1.17E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1879,-3.35E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1880,5.04E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1881,1.49E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1882,2.48E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1883,-1.55E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1884,-2.58E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1885,-4.04E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1886,-2.88E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1887,-2.71E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1888,-2.19E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1889,-2.12E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1890,-1.95E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1891,-2.28E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1892,-1.88E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1893,-1.57E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1894,-1.05E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1895,-7.19E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1896,-5.54E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1897,-8.25E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1898,-8.39E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1899,-6.82E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1900,-5.06E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1901,-3.90E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1902,-3.05E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1903,-1.49E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1904,-2.21E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1905,-1.53E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1906,-1.03E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1907,-7.72E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1908,-7.96E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1909,-6.25E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1910,-4.04E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1911,-2.74E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1912,-1.15E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1913,-1.07E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1914,-7.77E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1915,-2.92E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1916,6.35E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1917,3.02E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1918,4.61E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1919,5.73E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1920,6.18E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1921,3.73E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1922,5.10E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1923,6.24E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1924,7.54E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1925,8.54E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1926,9.91E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1927,1.06E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1928,1.16E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1929,1.08E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1930,1.01E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1931,1.11E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1932,1.18E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1933,1.10E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1934,1.27E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1935,1.43E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1936,1.58E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1937,1.69E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1938,1.79E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1939,1.81E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1940,1.88E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1941,1.91E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1942,1.91E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1943,1.77E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1944,1.84E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1945,1.94E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1946,2.04E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1947,2.13E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1948,2.13E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1949,2.18E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1950,2.08E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1951,2.00E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1952,1.88E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1953,1.81E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1954,1.74E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1955,1.84E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1956,2.00E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1957,2.17E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1958,2.25E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1959,2.32E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1960,2.35E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1961,2.07E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1962,1.85E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1963,1.70E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1964,3.35E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1965,-2.27E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1966,2.12E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1967,8.13E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1968,1.13E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1969,7.14E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1970,9.57E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1971,1.53E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1972,1.99E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1973,2.24E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1974,2.28E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1975,2.15E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1976,1.95E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1977,2.47E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1978,3.03E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1979,3.22E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1980,3.58E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1981,3.81E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1982,3.92E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1983,1.52E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1984,1.62E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1985,2.57E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1986,3.15E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1987,3.55E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1988,4.06E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1989,4.53E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1990,4.90E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1991,5.11E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1992,2.23E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1993,1.78E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1994,3.00E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1995,3.93E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1996,4.57E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1997,5.05E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1998,5.54E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1999,6.03E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2000,6.43E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2001,6.76E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2002,7.03E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2003,7.22E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2004,7.38E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2005,7.54E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2006,7.72E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2007,7.89E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2008,8.08E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2009,8.40E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2010,8.67E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2011,8.92E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2012,9.16E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2013,9.41E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2014,9.65E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2015,9.89E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2016,1.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2017,1.04E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2018,1.06E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2019,1.08E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2020,1.11E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2021,1.13E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2022,1.15E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2023,1.18E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2024,1.20E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2025,1.22E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2026,1.25E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2027,1.27E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2028,1.30E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2029,1.32E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2030,1.34E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2031,1.37E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2032,1.39E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2033,1.41E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2034,1.43E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2035,1.45E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2036,1.47E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2037,1.49E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2038,1.51E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2039,1.53E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2040,1.55E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2041,1.57E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2042,1.59E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2043,1.62E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2044,1.64E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2045,1.66E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2046,1.69E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2047,1.71E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2048,1.74E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2049,1.76E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2050,1.78E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2051,1.81E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2052,1.83E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2053,1.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2054,1.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2055,1.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2056,1.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2057,1.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2058,1.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2059,2.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2060,2.02E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2061,2.05E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2062,2.08E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2063,2.11E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2064,2.14E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2065,2.17E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2066,2.21E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2067,2.24E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2068,2.27E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2069,2.30E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2070,2.34E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2071,2.37E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2072,2.40E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2073,2.43E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2074,2.46E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2075,2.50E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2076,2.53E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2077,2.56E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2078,2.59E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2079,2.62E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2080,2.65E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2081,2.68E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2082,2.71E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2083,2.74E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2084,2.77E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2085,2.79E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2086,2.82E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2087,2.84E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2088,2.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2089,2.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2090,2.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2091,2.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2092,2.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2093,2.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2094,2.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2095,3.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2096,3.03E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2097,3.05E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2098,3.07E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2099,3.09E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2100,3.11E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2101,3.12E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2102,3.14E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2103,3.16E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2104,3.18E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2105,3.19E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2106,3.21E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2107,3.23E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2108,3.24E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2109,3.26E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2110,3.28E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2111,3.29E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2112,3.31E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2113,3.32E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2114,3.34E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2115,3.35E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2116,3.37E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2117,3.38E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2118,3.40E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2119,3.41E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2120,3.42E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2121,3.44E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2122,3.45E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2123,3.46E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2124,3.47E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2125,3.49E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2126,3.50E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2127,3.51E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2128,3.52E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2129,3.53E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2130,3.54E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2131,3.55E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2132,3.56E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2133,3.57E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2134,3.58E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2135,3.59E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2136,3.60E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2137,3.61E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2138,3.62E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2139,3.63E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2140,3.63E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2141,3.64E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2142,3.65E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2143,3.66E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2144,3.66E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2145,3.67E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2146,3.67E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2147,3.68E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2148,3.69E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2149,3.69E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2150,3.70E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2151,3.70E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2152,3.71E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2153,3.71E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2154,3.71E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2155,3.72E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2156,3.72E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2157,3.73E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2158,3.73E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2159,3.73E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2160,3.74E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2161,3.74E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2162,3.74E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2163,3.75E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2164,3.75E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2165,3.75E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2166,3.76E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2167,3.76E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2168,3.76E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2169,3.77E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2170,3.77E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2171,3.77E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2172,3.78E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2173,3.78E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2174,3.78E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2175,3.79E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2176,3.79E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2177,3.79E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2178,3.79E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2179,3.80E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2180,3.80E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2181,3.80E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2182,3.81E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2183,3.81E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2184,3.81E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2185,3.81E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2186,3.82E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2187,3.82E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2188,3.82E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2189,3.82E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2190,3.83E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2191,3.83E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2192,3.83E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2193,3.83E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2194,3.84E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2195,3.84E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2196,3.84E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2197,3.84E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2198,3.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2199,3.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2200,3.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2201,3.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2202,3.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2203,3.86E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2204,3.86E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2205,3.86E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2206,3.86E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2207,3.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2208,3.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2209,3.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2210,3.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2211,3.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2212,3.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2213,3.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2214,3.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2215,3.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2216,3.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2217,3.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2218,3.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2219,3.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2220,3.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2221,3.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2222,3.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2223,3.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2224,3.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2225,3.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2226,3.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2227,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2228,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2229,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2230,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2231,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2232,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2233,3.92E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2234,3.92E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2235,3.92E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2236,3.92E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2237,3.92E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2238,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2239,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2240,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2241,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2242,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2243,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2244,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2245,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2246,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2247,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2248,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2249,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2250,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2251,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2252,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2253,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2254,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2255,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2256,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2257,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2258,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2259,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2260,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2261,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2262,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2263,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2264,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2265,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2266,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2267,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2268,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2269,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2270,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2271,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2272,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2273,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2274,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2275,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2276,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2277,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2278,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2279,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2280,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2281,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2282,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2283,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2284,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2285,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2286,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2287,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2288,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2289,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2290,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2291,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2292,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2293,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2294,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2295,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2296,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2297,4.02E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2298,4.02E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2299,4.02E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2300,4.02E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP85/RCP85_MAGICC_CO2.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP85/RCP85_MAGICC_CO2.csv deleted file mode 100644 index eb9392d7d..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP85/RCP85_MAGICC_CO2.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC6 RCP8.5,,,,,,, -#Atmospheric CO2,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1766,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1767,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1768,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1769,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1770,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1771,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1772,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1773,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1774,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1775,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1776,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1777,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1778,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1779,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1780,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1781,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1782,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1783,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1784,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1785,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1786,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1787,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1788,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1789,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1790,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1791,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1792,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1793,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1794,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1795,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1796,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1797,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1798,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1799,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1800,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1801,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1802,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1803,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1804,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1805,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1806,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1807,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1808,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1809,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1810,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1811,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1812,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1813,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1814,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1815,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1816,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1817,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1818,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1819,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1820,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1821,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1822,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1823,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1824,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1825,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1826,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1827,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1828,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1829,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1830,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1831,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1832,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1833,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1834,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1835,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1836,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1837,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1838,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1839,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1840,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1841,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1842,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1843,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1844,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1845,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1846,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1847,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1848,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1849,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1850,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1851,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1852,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1853,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1854,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1855,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1856,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1857,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1858,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1859,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1860,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1861,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1862,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1863,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1864,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1865,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1866,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1867,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1868,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1869,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1870,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1871,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1872,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1873,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1874,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1875,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1876,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1877,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1878,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1879,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1880,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1881,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1882,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1883,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1884,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1885,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1886,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1887,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1888,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1889,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1890,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1891,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1892,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1893,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1894,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1895,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1896,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1897,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1898,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1899,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1900,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1901,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1902,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1903,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1904,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1905,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1906,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1907,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1908,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1909,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1910,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1911,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1912,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1913,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1914,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1915,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1916,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1917,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1918,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1919,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1920,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1921,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1922,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1923,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1924,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1925,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1926,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1927,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1928,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1929,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1930,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1931,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1932,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1933,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1934,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1935,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1936,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1937,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1938,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1939,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1940,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1941,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1942,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1943,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1944,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1945,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1946,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1947,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1948,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1949,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1950,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1951,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1952,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1953,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1954,3.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1955,3.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1956,3.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1957,3.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1958,3.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1959,3.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1960,3.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1961,3.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1962,3.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1963,3.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1964,3.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1965,3.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1966,3.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1967,3.22E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1968,3.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1969,3.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1970,3.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1971,3.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1972,3.28E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1973,3.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1974,3.30E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1975,3.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1976,3.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1977,3.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1978,3.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1979,3.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1980,3.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1981,3.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1982,3.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1983,3.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1984,3.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1985,3.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1986,3.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1987,3.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1988,3.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1989,3.53E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1990,3.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1991,3.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1992,3.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1993,3.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1994,3.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1995,3.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1996,3.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1997,3.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1998,3.67E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1999,3.68E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2000,3.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2001,3.71E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2002,3.74E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2003,3.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2004,3.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2005,3.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2006,3.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2007,3.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2008,3.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2009,3.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2010,3.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2011,3.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2012,3.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2013,3.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2014,4.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2015,4.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2016,4.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2017,4.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2018,4.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2019,4.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2020,4.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2021,4.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2022,4.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2023,4.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2024,4.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2025,4.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2026,4.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2027,4.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2028,4.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2029,4.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2030,4.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2031,4.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2032,4.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2033,4.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2034,4.68E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2035,4.72E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2036,4.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2037,4.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2038,4.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2039,4.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2040,4.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2041,4.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2042,5.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2043,5.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2044,5.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2045,5.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2046,5.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2047,5.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2048,5.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2049,5.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2050,5.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2051,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2052,5.58E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2053,5.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2054,5.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2055,5.77E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2056,5.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2057,5.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2058,5.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2059,6.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2060,6.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2061,6.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2062,6.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2063,6.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2064,6.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2065,6.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2066,6.54E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2067,6.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2068,6.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2069,6.77E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2070,6.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2071,6.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2072,7.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2073,7.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2074,7.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2075,7.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2076,7.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2077,7.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2078,7.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2079,7.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2080,7.68E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2081,7.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2082,7.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2083,7.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2084,8.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2085,8.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2086,8.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2087,8.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2088,8.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2089,8.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2090,8.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2091,8.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2092,8.73E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2093,8.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2094,8.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2095,9.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2096,9.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2097,9.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2098,9.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2099,9.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2100,9.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2101,9.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2102,9.66E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2103,9.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2104,9.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2105,9.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2106,1.00E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2107,1.01E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2108,1.02E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2109,1.03E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2110,1.04E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2111,1.05E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2112,1.06E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2113,1.07E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2114,1.08E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2115,1.09E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2116,1.10E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2117,1.11E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2118,1.12E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2119,1.13E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2120,1.14E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2121,1.15E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2122,1.16E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2123,1.17E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2124,1.18E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2125,1.19E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2126,1.20E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2127,1.21E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2128,1.22E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2129,1.23E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2130,1.24E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2131,1.25E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2132,1.26E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2133,1.27E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2134,1.28E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2135,1.29E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2136,1.30E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2137,1.31E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2138,1.32E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2139,1.33E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2140,1.34E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2141,1.35E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2142,1.36E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2143,1.37E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2144,1.38E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2145,1.39E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2146,1.40E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2147,1.41E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2148,1.42E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2149,1.44E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2150,1.45E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2151,1.46E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2152,1.47E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2153,1.48E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2154,1.49E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2155,1.50E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2156,1.51E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2157,1.52E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2158,1.53E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2159,1.54E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2160,1.55E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2161,1.56E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2162,1.56E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2163,1.57E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2164,1.58E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2165,1.59E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2166,1.60E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2167,1.61E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2168,1.62E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2169,1.63E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2170,1.64E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2171,1.64E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2172,1.65E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2173,1.66E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2174,1.67E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2175,1.68E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2176,1.69E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2177,1.69E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2178,1.70E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2179,1.71E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2180,1.72E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2181,1.72E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2182,1.73E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2183,1.74E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2184,1.75E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2185,1.75E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2186,1.76E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2187,1.77E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2188,1.77E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2189,1.78E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2190,1.79E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2191,1.79E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2192,1.80E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2193,1.81E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2194,1.81E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2195,1.82E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2196,1.82E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2197,1.83E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2198,1.83E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2199,1.84E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2200,1.85E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2201,1.85E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2202,1.86E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2203,1.86E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2204,1.87E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2205,1.87E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2206,1.88E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2207,1.88E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2208,1.89E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2209,1.89E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2210,1.89E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2211,1.90E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2212,1.90E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2213,1.91E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2214,1.91E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2215,1.91E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2216,1.92E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2217,1.92E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2218,1.92E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2219,1.93E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2220,1.93E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2221,1.93E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2222,1.94E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2223,1.94E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2224,1.94E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2225,1.95E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2226,1.95E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2227,1.95E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2228,1.95E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2229,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2230,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2231,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2232,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2233,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2234,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2235,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2236,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2237,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2238,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2239,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2240,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2241,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2242,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2243,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2244,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2245,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2246,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2247,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2248,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2249,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2250,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2251,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2252,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2253,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2254,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2255,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2256,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2257,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2258,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2259,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2260,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2261,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2262,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2263,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2264,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2265,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2266,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2267,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2268,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2269,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2270,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2271,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2272,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2273,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2274,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2275,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2276,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2277,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2278,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2279,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2280,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2281,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2282,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2283,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2284,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2285,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2286,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2287,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2288,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2289,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2290,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2291,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2292,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2293,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2294,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2295,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2296,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2297,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2298,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2299,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2300,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP85/RCP85_MAGICC_RF.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP85/RCP85_MAGICC_RF.csv deleted file mode 100644 index 500b0c6cb..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP85/RCP85_MAGICC_RF.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC6 RCP8.5,,,,,,, -# total including volcanic radiative forcing W/m2,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,0.00E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1766,1.96E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1767,6.16E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1768,3.13E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1769,-1.21E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1770,3.28E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1771,7.06E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1772,6.43E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1773,5.23E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1774,3.90E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1775,3.38E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1776,5.50E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1777,9.16E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1778,1.19E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1779,1.11E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1780,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1781,9.51E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1782,2.20E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1783,-1.36E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1784,-1.49E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1785,8.68E-03,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1786,1.06E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1787,1.36E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1788,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1789,-8.59E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1790,-2.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1791,-4.76E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1792,4.83E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1793,7.60E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1794,4.26E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1795,6.17E-03,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1796,1.90E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1797,4.02E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1798,4.99E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1799,5.65E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1800,8.55E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1801,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1802,7.98E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1803,7.19E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1804,7.57E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1805,7.05E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1806,5.77E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1807,5.21E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1808,-9.30E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1809,-2.23E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1810,-1.73E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1811,-6.43E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1812,-3.80E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1813,-2.41E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1814,-1.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1815,-3.17E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1816,-2.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1817,-8.29E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1818,-1.67E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1819,7.32E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1820,8.56E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1821,8.74E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1822,9.07E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1823,9.55E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1824,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1825,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1826,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1827,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1828,1.64E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1829,1.10E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1830,-2.72E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1831,-6.79E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1832,-4.88E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1833,-1.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1834,-7.94E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1835,-1.31E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1836,-6.26E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1837,-8.84E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1838,1.22E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1839,1.40E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1840,8.19E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1841,9.19E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1842,8.31E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1843,3.89E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1844,7.34E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1845,1.39E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1846,1.79E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1847,2.16E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1848,2.37E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1849,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1850,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1851,1.75E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1852,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1853,1.60E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1854,1.43E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1855,-1.22E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1856,-7.65E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1857,-5.89E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1858,-6.96E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1859,1.29E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1860,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1861,6.30E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1862,-1.17E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1863,7.46E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1864,1.33E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1865,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1866,1.42E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1867,1.53E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1868,1.92E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1869,2.25E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1870,2.50E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1871,2.22E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1872,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1873,1.16E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1874,1.26E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1875,7.39E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1876,3.78E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1877,8.33E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1878,1.20E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1879,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1880,1.84E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1881,2.10E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1882,4.89E-03,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1883,-1.60E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1884,-1.47E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1885,-4.31E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1886,-5.05E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1887,-1.94E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1888,-3.04E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1889,-3.30E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1890,-3.82E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1891,-1.39E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1892,1.72E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1893,1.99E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1894,2.54E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1895,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1896,-9.06E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1897,-4.80E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1898,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1899,1.71E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1900,1.94E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1901,1.38E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1902,-6.86E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1903,-5.85E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1904,-4.29E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1905,1.48E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1906,1.66E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1907,1.08E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1908,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1909,2.40E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1910,2.44E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1911,2.42E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1912,-2.31E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1913,5.16E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1914,2.59E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1915,3.65E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1916,4.09E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1917,4.37E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1918,4.24E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1919,3.93E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1920,2.19E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1921,3.43E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1922,3.90E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1923,3.83E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1924,3.96E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1925,4.53E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1926,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1927,4.93E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1928,3.91E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1929,3.92E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1930,4.48E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1931,4.44E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1932,3.81E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1933,4.68E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1934,5.02E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1935,5.80E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1936,6.18E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1937,6.07E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1938,5.95E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1939,6.15E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1940,6.17E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1941,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1942,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1943,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1944,5.86E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1945,6.30E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1946,6.54E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1947,6.60E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1948,6.73E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1949,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1950,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1951,5.39E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1952,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1953,4.98E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1954,5.46E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1955,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1956,7.14E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1957,7.55E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1958,7.45E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1959,7.28E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1960,5.68E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1961,4.70E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1962,3.55E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1963,-4.96E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1964,-3.40E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1965,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1966,5.21E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1967,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1968,2.02E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1969,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1970,7.46E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1971,8.63E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1972,8.67E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1973,7.93E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1974,5.73E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1975,6.06E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1976,8.85E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1977,1.05E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1978,1.04E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1979,1.21E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1980,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1981,1.09E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1982,-1.28E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1983,4.80E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1984,9.59E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1985,1.08E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1986,1.14E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1987,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1988,1.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1989,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1990,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1991,-3.64E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1992,2.65E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1993,1.06E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1994,1.34E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1995,1.47E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1996,1.54E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1997,1.63E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1998,1.75E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1999,1.85E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2000,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2001,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2002,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2003,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2004,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2005,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2006,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2007,1.98E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2008,2.02E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2009,2.17E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2010,2.20E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2011,2.24E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2012,2.29E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2013,2.33E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2014,2.38E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2015,2.43E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2016,2.48E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2017,2.53E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2018,2.58E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2019,2.64E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2020,2.69E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2021,2.75E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2022,2.81E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2023,2.87E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2024,2.92E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2025,2.98E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2026,3.04E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2027,3.10E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2028,3.16E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2029,3.22E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2030,3.29E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2031,3.35E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2032,3.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2033,3.49E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2034,3.56E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2035,3.63E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2036,3.70E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2037,3.77E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2038,3.84E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2039,3.91E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2040,3.98E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2041,4.06E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2042,4.13E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2043,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2044,4.28E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2045,4.35E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2046,4.43E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2047,4.51E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2048,4.58E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2049,4.66E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2050,4.74E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2051,4.81E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2052,4.89E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2053,4.96E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2054,5.04E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2055,5.12E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2056,5.19E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2057,5.27E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2058,5.35E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2059,5.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2060,5.50E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2061,5.58E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2062,5.65E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2063,5.73E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2064,5.81E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2065,5.88E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2066,5.96E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2067,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2068,6.10E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2069,6.18E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2070,6.25E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2071,6.32E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2072,6.39E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2073,6.47E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2074,6.54E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2075,6.61E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2076,6.68E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2077,6.75E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2078,6.82E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2079,6.89E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2080,6.96E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2081,7.03E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2082,7.11E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2083,7.18E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2084,7.25E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2085,7.32E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2086,7.39E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2087,7.46E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2088,7.53E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2089,7.60E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2090,7.67E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2091,7.74E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2092,7.81E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2093,7.87E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2094,7.94E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2095,8.00E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2096,8.06E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2097,8.13E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2098,8.19E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2099,8.25E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2100,8.31E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2101,8.37E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2102,8.43E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2103,8.49E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2104,8.54E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2105,8.60E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2106,8.65E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2107,8.71E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2108,8.76E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2109,8.82E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2110,8.87E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2111,8.92E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2112,8.97E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2113,9.02E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2114,9.08E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2115,9.13E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2116,9.18E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2117,9.22E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2118,9.27E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2119,9.32E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2120,9.37E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2121,9.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2122,9.47E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2123,9.51E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2124,9.56E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2125,9.61E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2126,9.65E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2127,9.70E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2128,9.74E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2129,9.79E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2130,9.83E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2131,9.88E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2132,9.92E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2133,9.96E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2134,1.00E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2135,1.01E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2136,1.01E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2137,1.01E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2138,1.02E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2139,1.02E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2140,1.03E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2141,1.03E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2142,1.03E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2143,1.04E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2144,1.04E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2145,1.05E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2146,1.05E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2147,1.05E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2148,1.06E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2149,1.06E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2150,1.07E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2151,1.07E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2152,1.07E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2153,1.08E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2154,1.08E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2155,1.09E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2156,1.09E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2157,1.09E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2158,1.10E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2159,1.10E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2160,1.10E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2161,1.11E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2162,1.11E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2163,1.11E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2164,1.12E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2165,1.12E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2166,1.12E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2167,1.13E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2168,1.13E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2169,1.13E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2170,1.13E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2171,1.14E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2172,1.14E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2173,1.14E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2174,1.15E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2175,1.15E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2176,1.15E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2177,1.15E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2178,1.16E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2179,1.16E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2180,1.16E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2181,1.16E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2182,1.16E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2183,1.17E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2184,1.17E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2185,1.17E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2186,1.17E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2187,1.18E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2188,1.18E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2189,1.18E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2190,1.18E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2191,1.18E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2192,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2193,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2194,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2195,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2196,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2197,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2198,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2199,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2200,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2201,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2202,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2203,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2204,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2205,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2206,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2207,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2208,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2209,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2210,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2211,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2212,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2213,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2214,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2215,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2216,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2217,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2218,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2219,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2220,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2221,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2222,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2223,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2224,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2225,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2226,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2227,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2228,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2229,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2230,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2231,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2232,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2233,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2234,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2235,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2236,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2237,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2238,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2239,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2240,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2241,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2242,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2243,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2244,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2245,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2246,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2247,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2248,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2249,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2250,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2251,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2252,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2253,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2254,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2255,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2256,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2257,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2258,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2259,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2260,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2261,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2262,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2263,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2264,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2265,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2266,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2267,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2268,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2269,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2270,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2271,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2272,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2273,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2274,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2275,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2276,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2277,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2278,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2279,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2280,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2281,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2282,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2283,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2284,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2285,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2286,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2287,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2288,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2289,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2290,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2291,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2292,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2293,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2294,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2295,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2296,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2297,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2298,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2299,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2300,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP85/RCP85_MAGICC_temp.csv b/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP85/RCP85_MAGICC_temp.csv deleted file mode 100644 index 5f3eaff89..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/MAGICC6/RCP85/RCP85_MAGICC_temp.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC global temperature,,,,,,, -# RCP 8.5,,,,,,, -Year,value,vtag,ctag,units,type,Scenario,model -1765,0.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1766,-6.73E-04,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1767,8.00E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1768,1.73E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1769,1.36E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1770,-4.08E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1771,-2.61E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1772,6.34E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1773,9.33E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1774,1.08E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1775,1.05E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1776,1.31E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1777,1.93E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1778,2.65E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1779,2.98E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1780,3.15E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1781,3.14E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1782,2.81E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1783,1.72E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1784,-1.51E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1785,-3.51E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1786,-9.93E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1787,1.06E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1788,2.30E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1789,2.75E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1790,8.08E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1791,-2.94E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1792,-2.13E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1793,-6.26E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1794,2.71E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1795,4.93E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1796,1.57E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1797,1.06E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1798,4.51E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1799,8.47E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1800,1.42E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1801,1.99E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1802,2.07E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1803,2.06E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1804,2.15E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1805,2.18E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1806,2.05E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1807,1.92E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1808,1.84E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1809,-9.67E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1810,-3.91E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1811,-4.91E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1812,-3.54E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1813,-2.66E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1814,-2.17E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1815,-3.18E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1816,-6.83E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1817,-7.92E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1818,-5.83E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1819,-4.14E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1820,-2.95E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1821,-2.30E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1822,-1.87E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1823,-1.55E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1824,-1.29E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1825,-1.06E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1826,-8.64E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1827,-6.87E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1828,-5.34E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1829,-4.19E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1830,-4.48E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1831,-9.98E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1832,-2.04E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1833,-2.27E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1834,-1.61E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1835,-2.06E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1836,-3.67E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1837,-3.33E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1838,-2.36E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1839,-1.62E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1840,-1.22E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1841,-1.09E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1842,-9.31E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1843,-7.87E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1844,-7.61E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1845,-6.65E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1846,-4.54E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1847,-2.68E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1848,-9.96E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1849,-8.05E-04,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1850,-5.26E-05,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1851,-3.90E-04,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1852,-5.74E-04,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1853,1.42E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1854,2.82E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1855,4.46E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1856,-1.77E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1857,-1.40E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1858,-1.87E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1859,-1.22E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1860,-7.60E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1861,-4.84E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1862,-4.09E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1863,-5.75E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1864,-4.61E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1865,-3.12E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1866,-2.09E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1867,-1.30E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1868,-1.10E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1869,1.25E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1870,2.15E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1871,2.47E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1872,2.02E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1873,1.20E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1874,3.97E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1875,3.34E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1876,-1.62E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1877,-1.57E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1878,-1.17E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1879,-3.35E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1880,5.04E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1881,1.49E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1882,2.48E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1883,-1.55E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1884,-2.58E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1885,-4.04E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1886,-2.88E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1887,-2.71E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1888,-2.19E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1889,-2.12E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1890,-1.95E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1891,-2.28E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1892,-1.88E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1893,-1.57E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1894,-1.05E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1895,-7.19E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1896,-5.54E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1897,-8.25E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1898,-8.39E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1899,-6.82E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1900,-5.06E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1901,-3.90E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1902,-3.05E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1903,-1.49E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1904,-2.21E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1905,-1.53E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1906,-1.03E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1907,-7.72E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1908,-7.96E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1909,-6.25E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1910,-4.04E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1911,-2.74E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1912,-1.15E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1913,-1.07E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1914,-7.77E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1915,-2.92E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1916,6.35E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1917,3.02E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1918,4.61E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1919,5.73E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1920,6.18E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1921,3.73E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1922,5.10E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1923,6.24E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1924,7.54E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1925,8.54E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1926,9.91E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1927,1.06E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1928,1.16E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1929,1.08E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1930,1.01E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1931,1.11E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1932,1.18E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1933,1.10E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1934,1.27E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1935,1.43E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1936,1.58E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1937,1.69E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1938,1.79E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1939,1.81E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1940,1.88E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1941,1.91E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1942,1.91E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1943,1.77E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1944,1.84E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1945,1.94E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1946,2.04E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1947,2.13E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1948,2.13E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1949,2.18E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1950,2.08E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1951,2.00E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1952,1.88E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1953,1.81E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1954,1.74E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1955,1.84E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1956,2.00E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1957,2.17E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1958,2.25E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1959,2.32E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1960,2.35E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1961,2.07E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1962,1.85E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1963,1.70E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1964,3.35E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1965,-2.27E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1966,2.12E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1967,8.13E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1968,1.13E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1969,7.14E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1970,9.57E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1971,1.53E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1972,1.99E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1973,2.24E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1974,2.28E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1975,2.15E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1976,1.95E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1977,2.47E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1978,3.03E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1979,3.22E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1980,3.58E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1981,3.81E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1982,3.92E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1983,1.52E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1984,1.62E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1985,2.57E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1986,3.15E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1987,3.55E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1988,4.06E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1989,4.53E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1990,4.90E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1991,5.11E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1992,2.23E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1993,1.78E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1994,3.00E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1995,3.93E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1996,4.57E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1997,5.05E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1998,5.54E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1999,6.03E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2000,6.43E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2001,6.76E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2002,7.03E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2003,7.22E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2004,7.38E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2005,7.55E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2006,7.75E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2007,7.97E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2008,8.20E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2009,8.58E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2010,8.89E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2011,9.17E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2012,9.44E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2013,9.71E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2014,9.99E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2015,1.03E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2016,1.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2017,1.08E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2018,1.11E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2019,1.14E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2020,1.17E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2021,1.20E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2022,1.24E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2023,1.27E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2024,1.30E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2025,1.33E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2026,1.37E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2027,1.40E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2028,1.43E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2029,1.47E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2030,1.50E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2031,1.54E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2032,1.58E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2033,1.62E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2034,1.65E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2035,1.69E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2036,1.73E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2037,1.77E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2038,1.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2039,1.86E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2040,1.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2041,1.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2042,1.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2043,2.03E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2044,2.07E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2045,2.11E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2046,2.16E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2047,2.20E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2048,2.25E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2049,2.29E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2050,2.34E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2051,2.39E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2052,2.43E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2053,2.48E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2054,2.52E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2055,2.57E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2056,2.62E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2057,2.67E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2058,2.71E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2059,2.76E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2060,2.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2061,2.86E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2062,2.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2063,2.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2064,3.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2065,3.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2066,3.09E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2067,3.14E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2068,3.19E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2069,3.24E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2070,3.29E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2071,3.33E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2072,3.38E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2073,3.43E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2074,3.48E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2075,3.52E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2076,3.57E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2077,3.62E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2078,3.66E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2079,3.71E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2080,3.76E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2081,3.80E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2082,3.85E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2083,3.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2084,3.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2085,3.99E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2086,4.04E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2087,4.09E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2088,4.14E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2089,4.19E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2090,4.23E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2091,4.28E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2092,4.33E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2093,4.37E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2094,4.42E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2095,4.46E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2096,4.51E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2097,4.55E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2098,4.60E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2099,4.64E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2100,4.69E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2101,4.73E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2102,4.77E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2103,4.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2104,4.85E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2105,4.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2106,4.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2107,4.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2108,5.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2109,5.06E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2110,5.09E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2111,5.13E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2112,5.17E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2113,5.21E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2114,5.25E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2115,5.29E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2116,5.32E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2117,5.36E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2118,5.40E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2119,5.43E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2120,5.47E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2121,5.50E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2122,5.54E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2123,5.57E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2124,5.61E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2125,5.64E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2126,5.68E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2127,5.71E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2128,5.75E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2129,5.78E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2130,5.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2131,5.85E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2132,5.88E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2133,5.91E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2134,5.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2135,5.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2136,6.01E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2137,6.04E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2138,6.07E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2139,6.10E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2140,6.14E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2141,6.17E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2142,6.20E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2143,6.23E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2144,6.26E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2145,6.29E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2146,6.32E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2147,6.35E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2148,6.38E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2149,6.41E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2150,6.44E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2151,6.47E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2152,6.50E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2153,6.53E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2154,6.55E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2155,6.58E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2156,6.61E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2157,6.64E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2158,6.66E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2159,6.69E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2160,6.72E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2161,6.74E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2162,6.77E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2163,6.79E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2164,6.82E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2165,6.84E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2166,6.87E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2167,6.89E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2168,6.91E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2169,6.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2170,6.96E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2171,6.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2172,7.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2173,7.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2174,7.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2175,7.07E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2176,7.09E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2177,7.11E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2178,7.13E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2179,7.15E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2180,7.17E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2181,7.19E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2182,7.21E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2183,7.22E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2184,7.24E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2185,7.26E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2186,7.28E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2187,7.30E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2188,7.31E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2189,7.33E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2190,7.35E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2191,7.36E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2192,7.38E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2193,7.39E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2194,7.41E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2195,7.42E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2196,7.44E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2197,7.45E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2198,7.47E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2199,7.48E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2200,7.50E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2201,7.51E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2202,7.52E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2203,7.54E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2204,7.55E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2205,7.56E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2206,7.57E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2207,7.59E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2208,7.60E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2209,7.61E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2210,7.62E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2211,7.63E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2212,7.64E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2213,7.65E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2214,7.67E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2215,7.68E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2216,7.69E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2217,7.70E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2218,7.71E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2219,7.72E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2220,7.72E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2221,7.73E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2222,7.74E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2223,7.75E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2224,7.76E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2225,7.77E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2226,7.78E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2227,7.78E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2228,7.79E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2229,7.80E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2230,7.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2231,7.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2232,7.82E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2233,7.83E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2234,7.83E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2235,7.84E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2236,7.85E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2237,7.85E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2238,7.86E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2239,7.86E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2240,7.87E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2241,7.87E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2242,7.88E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2243,7.88E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2244,7.89E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2245,7.89E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2246,7.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2247,7.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2248,7.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2249,7.91E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2250,7.91E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2251,7.91E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2252,7.92E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2253,7.92E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2254,7.92E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2255,7.93E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2256,7.93E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2257,7.93E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2258,7.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2259,7.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2260,7.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2261,7.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2262,7.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2263,7.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2264,7.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2265,7.96E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2266,7.96E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2267,7.96E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2268,7.96E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2269,7.97E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2270,7.97E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2271,7.97E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2272,7.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2273,7.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2274,7.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2275,7.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2276,7.99E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2277,7.99E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2278,7.99E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2279,7.99E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2280,8.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2281,8.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2282,8.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2283,8.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2284,8.01E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2285,8.01E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2286,8.01E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2287,8.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2288,8.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2289,8.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2290,8.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2291,8.03E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2292,8.03E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2293,8.03E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2294,8.04E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2295,8.04E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2296,8.04E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2297,8.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2298,8.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2299,8.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2300,8.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Other_models/g-carbon.csv b/scripts/outputplotter/comparison_data/GMD_2014/Other_models/g-carbon.csv deleted file mode 100644 index 4abb79106..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Other_models/g-carbon.csv +++ /dev/null @@ -1 +0,0 @@ -# LUC emissions flux from the G-Carbon model (Steve Smith),,,,, Year,value,vtag,units,type,ctag 1505,0.28,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1506,0.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1507,0.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1508,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1509,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1510,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1511,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1512,0.23,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1513,0.22,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1514,0.21,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1515,0.2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1516,0.2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1517,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1518,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1519,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1520,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1521,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1522,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1523,0.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1524,0.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1525,0.14,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1526,0.13,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1527,0.13,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1528,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1529,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1530,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1531,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1532,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1533,0.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1534,0.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1535,0.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1536,0.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1537,0.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1538,0.08,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1539,0.08,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1540,0.08,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1541,0.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1542,0.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1543,0.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1544,0.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1545,0.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1546,0.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1547,0.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1548,0.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1549,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1550,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1551,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1552,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1553,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1554,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1555,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1556,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1557,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1558,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1559,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1560,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1561,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1562,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1563,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1564,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1565,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1566,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1567,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1568,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1569,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1570,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1571,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1572,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1573,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1574,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1575,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1576,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1577,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1578,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1579,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1580,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1581,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1582,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1583,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1584,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1585,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1586,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1587,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1588,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1589,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1590,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1591,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1592,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1593,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1594,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1595,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1596,-0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1597,-0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1598,-0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1599,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1600,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1601,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1602,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1603,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1604,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1605,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1606,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1607,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1608,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1609,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1610,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1611,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1612,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1613,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1614,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1615,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1616,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1617,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1618,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1619,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1620,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1621,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1622,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1623,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1624,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1625,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1626,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1627,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1628,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1629,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1630,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1631,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1632,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1633,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1634,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1635,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1636,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1637,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1638,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1639,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1640,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1641,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1642,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1643,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1644,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1645,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1646,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1647,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1648,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1649,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1650,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1651,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1652,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1653,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1654,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1655,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1656,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1657,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1658,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1659,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1660,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1661,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1662,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1663,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1664,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1665,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1666,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1667,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1668,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1669,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1670,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1671,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1672,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1673,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1674,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1675,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1676,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1677,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1678,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1679,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1680,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1681,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1682,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1683,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1684,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1685,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1686,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1687,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1688,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1689,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1690,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1691,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1692,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1693,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1694,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1695,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1696,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1697,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1698,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1699,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1700,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1701,0.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1702,0.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1703,0.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1704,0.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1705,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1706,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1707,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1708,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1709,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1710,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1711,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1712,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1713,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1714,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1715,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1716,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1717,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1718,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1719,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1720,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1721,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1722,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1723,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1724,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1725,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1726,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1727,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1728,0.13,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1729,0.14,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1730,0.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1731,0.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1732,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1733,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1734,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1735,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1736,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1737,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1738,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1739,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1740,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1741,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1742,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1743,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1744,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1745,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1746,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1747,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1748,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1749,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1750,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1751,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1752,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1753,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1754,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1755,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1756,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1757,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1758,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1759,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1760,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1761,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1762,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1763,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1764,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1765,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1766,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1767,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1768,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1769,0.2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1770,0.21,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1771,0.22,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1772,0.23,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1773,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1774,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1775,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1776,0.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1777,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1778,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1779,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1780,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1781,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1782,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1783,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1784,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1785,0.23,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1786,0.23,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1787,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1788,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1789,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1790,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1791,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1792,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1793,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1794,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1795,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1796,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1797,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1798,0.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1799,0.28,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1800,0.28,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1801,0.29,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1802,0.3,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1803,0.31,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1804,0.31,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1805,0.32,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1806,0.33,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1807,0.33,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1808,0.33,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1809,0.34,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1810,0.34,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1811,0.35,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1812,0.35,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1813,0.36,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1814,0.36,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1815,0.36,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1816,0.37,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1817,0.38,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1818,0.39,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1819,0.41,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1820,0.42,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1821,0.43,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1822,0.45,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1823,0.46,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1824,0.47,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1825,0.49,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1826,0.49,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1827,0.5,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1828,0.52,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1829,0.53,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1830,0.55,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1831,0.56,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1832,0.57,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1833,0.59,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1834,0.61,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1835,0.62,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1836,0.63,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1837,0.64,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1838,0.65,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1839,0.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1840,0.68,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1841,0.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1842,0.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1843,0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1844,0.73,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1845,0.74,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1846,0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1847,0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1848,0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1849,0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1850,0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1851,0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1852,0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1853,0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1854,0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1855,0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1856,0.8,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1857,0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1858,0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1859,0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1860,0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1861,0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1862,0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1863,0.74,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1864,0.73,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1865,0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1866,0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1867,0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1868,0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1869,0.83,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1870,0.87,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1871,0.91,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1872,0.96,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1873,1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1874,1.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1875,1.08,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1876,1.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1877,1.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1878,1.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1879,1.14,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1880,1.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1881,1.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1882,1.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1883,1.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1884,1.21,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1885,1.22,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1886,1.23,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1887,1.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1888,1.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1889,1.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1890,1.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1891,1.28,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1892,1.29,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1893,1.3,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1894,1.3,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1895,1.31,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1896,1.31,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1897,1.34,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1898,1.37,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1899,1.41,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1900,1.44,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1901,1.48,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1902,1.52,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1903,1.57,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1904,1.61,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1905,1.65,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1906,1.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1907,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1908,1.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1909,1.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1910,1.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1911,1.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1912,1.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1913,1.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1914,1.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1915,1.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1916,1.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1917,1.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1918,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1919,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1920,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1921,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1922,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1923,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1924,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1925,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1926,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1927,1.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1928,1.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1929,1.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1930,1.82,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1931,1.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1932,1.89,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1933,1.93,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1934,1.96,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1935,2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1936,2.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1937,2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1938,1.98,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1939,1.97,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1940,1.95,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1941,1.93,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1942,1.9,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1943,1.88,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1944,1.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1945,1.82,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1946,1.81,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1947,1.92,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1948,2.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1949,2.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1950,2.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1951,2.39,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1952,2.51,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1953,2.64,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1954,2.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1955,2.9,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1956,2.92,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1957,2.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1958,2.57,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1959,2.38,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1960,2.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1961,1.99,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1962,1.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1963,1.59,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1964,1.38,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1965,1.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1966,1.14,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1967,1.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1968,1.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1969,1.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1970,1.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1971,1.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1972,1.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1973,1.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1974,1.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1975,1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1976,0.98,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1977,1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1978,1.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1979,1.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1980,1.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1981,1.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1982,1.13,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1983,1.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1984,1.2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1985,1.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1986,1.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1987,1.21,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1988,1.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1989,1.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1990,1.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1991,0.97,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1992,0.9,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1993,0.83,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1994,0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1995,0.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1996,0.65,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1997,0.58,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1998,0.51,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1999,0.43,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2000,0.37,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2001,0.3,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2002,0.21,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2003,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2004,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2005,-0.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2006,-0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2007,-0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2008,-0.33,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2009,-0.42,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2010,-0.52,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2011,-0.59,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2012,-0.64,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2013,-0.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2014,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2015,-0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2016,-0.82,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2017,-0.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2018,-0.87,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2019,-0.89,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2020,-0.91,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2021,-0.93,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2022,-0.94,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2023,-0.95,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2024,-0.96,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2025,-0.96,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2026,-0.95,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2027,-0.93,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2028,-0.91,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2029,-0.9,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2030,-0.88,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2031,-0.86,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2032,-0.84,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2033,-0.82,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2034,-0.8,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2035,-0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2036,-0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2037,-0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2038,-0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2039,-0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2040,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2041,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2042,-0.73,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2043,-0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2044,-0.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2045,-0.68,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2046,-0.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2047,-0.66,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2048,-0.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2049,-0.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2050,-0.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2051,-0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2052,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2053,-0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2054,-0.8,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2055,-0.83,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2056,-0.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2057,-0.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2058,-0.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2059,-0.84,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2060,-0.83,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2061,-0.82,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2062,-0.8,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2063,-0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2064,-0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2065,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2066,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2067,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2068,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2069,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2070,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2071,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2072,-0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2073,-0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2074,-0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2075,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2076,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2077,-0.73,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2078,-0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2079,-0.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2080,-0.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2081,-0.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2082,-0.66,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2083,-0.65,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2084,-0.63,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2085,-0.62,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2086,-0.6,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2087,-0.59,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2088,-0.58,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2089,-0.57,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2090,-0.56,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2091,-0.55,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2092,-0.54,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2093,-0.53,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2094,-0.52,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2095,-0.51,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2096,-0.5,lucEmissions,Pg C/yr,Simulated,carbon_cycle \ No newline at end of file diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Other_models/potter_npp.csv b/scripts/outputplotter/comparison_data/GMD_2014/Other_models/potter_npp.csv deleted file mode 100644 index 66d103fa2..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Other_models/potter_npp.csv +++ /dev/null @@ -1 +0,0 @@ -# Global NPP data from Potter et al. (2011), 10.1007/s10584-012-0460-2",,,, Year,value_npp,units,type,ctag 2000,49.9,Pg C/yr,Observed,carbon_cycle 2001,50,Pg C/yr,Observed,carbon_cycle 2002,50.3,Pg C/yr,Observed,carbon_cycle 2003,50.3,Pg C/yr,Observed,carbon_cycle 2004,50.5,Pg C/yr,Observed,carbon_cycle 2005,50.9,Pg C/yr,Observed,carbon_cycle 2006,51.1,Pg C/yr,Observed,carbon_cycle 2007,51.2,Pg C/yr,Observed,carbon_cycle 2008,50.7,Pg C/yr,Observed,carbon_cycle 2009,50,Pg C/yr,Observed,carbon_cycle \ No newline at end of file diff --git a/scripts/outputplotter/comparison_data/GMD_2014/Other_models/zhao_npp.csv b/scripts/outputplotter/comparison_data/GMD_2014/Other_models/zhao_npp.csv deleted file mode 100644 index 777dc6bb5..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2014/Other_models/zhao_npp.csv +++ /dev/null @@ -1 +0,0 @@ -# Global NPP data from Zhao and Running (2010), doi 10.1126/science.1192666 Year,value_npp,value_npp_tropics,units,type,ctag 2000,54.692,30.089,Pg C/yr,Observed,carbon_cycle 2001,53.841,28.85,Pg C/yr,Observed,carbon_cycle 2002,52.727,28.153,Pg C/yr,Observed,carbon_cycle 2003,53.465,28.423,Pg C/yr,Observed,carbon_cycle 2004,54.565,29.249,Pg C/yr,Observed,carbon_cycle 2005,51.672,26.419,Pg C/yr,Observed,carbon_cycle 2006,53.557,28.615,Pg C/yr,Observed,carbon_cycle 2007,53.123,27.89,Pg C/yr,Observed,carbon_cycle 2008,53.725,28.708,Pg C/yr,Observed,carbon_cycle 2009,53.841,29.09,Pg C/yr,Observed,carbon_cycle \ No newline at end of file diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/CCSM4_pco2.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/CCSM4_pco2.csv deleted file mode 100644 index cf4712abf..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/CCSM4_pco2.csv +++ /dev/null @@ -1,98 +0,0 @@ -#global avg surface temperature from CCSM4 email communication 7/3/2014,,,,,,,,,,,, -,K,value,units,ctag,vtag,model,scenario,type,,,, -2005,278.613,5.463,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2006,278.631,5.481,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2007,278.845,5.695,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2008,278.667,5.517,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2009,278.63,5.48,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2010,278.868,5.718,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2011,278.961,5.811,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2012,278.877,5.727,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2013,279.056,5.906,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2014,278.917,5.767,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2015,279.081,5.931,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2016,279.151,6.001,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2017,279.104,5.954,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2018,278.875,5.725,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2019,278.969,5.819,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2020,279.311,6.161,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2021,279.491,6.341,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2022,279.178,6.028,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2023,279.179,6.029,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2024,279.257,6.107,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2025,279.301,6.151,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2026,279.415,6.265,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2027,279.327,6.177,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2028,279.414,6.264,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2029,279.3,6.15,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2030,279.514,6.364,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2031,279.468,6.318,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2032,279.355,6.205,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2033,279.325,6.175,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2034,279.439,6.289,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2035,279.335,6.185,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2036,279.21,6.06,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2037,279.679,6.529,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2038,279.512,6.362,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2039,279.559,6.409,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2040,279.592,6.442,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2041,279.72,6.57,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2042,279.879,6.729,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2043,279.843,6.693,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2044,279.705,6.555,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2045,279.634,6.484,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2046,279.937,6.787,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2047,280.145,6.995,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2048,279.801,6.651,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2049,279.601,6.451,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2050,279.793,6.643,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2051,280.256,7.106,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2054,279.938,6.788,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2055,279.949,6.799,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2056,279.922,6.772,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2059,280.293,7.143,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2060,280.391,7.241,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2061,280.402,7.252,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2062,280.359,7.209,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2063,280.277,7.127,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2064,280.348,7.198,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2065,280.325,7.175,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2066,280.416,7.266,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2067,280.347,7.197,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2068,280.451,7.301,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2069,280.483,7.333,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2070,280.337,7.187,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2071,280.437,7.287,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2072,280.654,7.504,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2073,280.697,7.547,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2074,280.516,7.366,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2075,280.5,7.35,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2076,280.56,7.41,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2077,280.72,7.57,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2078,280.604,7.454,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2079,280.911,7.761,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2080,280.659,7.509,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2081,280.584,7.434,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2082,280.626,7.476,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2083,280.594,7.444,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2084,280.495,7.345,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2085,280.71,7.56,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2086,281.133,7.983,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2087,280.847,7.697,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2088,280.756,7.606,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2089,280.678,7.528,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2090,280.752,7.602,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2091,280.688,7.538,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2092,280.823,7.673,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2093,281.005,7.855,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2094,280.805,7.655,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2095,280.52,7.37,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2096,280.62,7.47,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2097,281.028,7.878,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2098,280.658,7.508,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2099,280.511,7.361,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2100,280.815,7.665,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/CCSM4_temp.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/CCSM4_temp.csv deleted file mode 100644 index cf4712abf..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/CCSM4_temp.csv +++ /dev/null @@ -1,98 +0,0 @@ -#global avg surface temperature from CCSM4 email communication 7/3/2014,,,,,,,,,,,, -,K,value,units,ctag,vtag,model,scenario,type,,,, -2005,278.613,5.463,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2006,278.631,5.481,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2007,278.845,5.695,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2008,278.667,5.517,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2009,278.63,5.48,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2010,278.868,5.718,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2011,278.961,5.811,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2012,278.877,5.727,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2013,279.056,5.906,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2014,278.917,5.767,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2015,279.081,5.931,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2016,279.151,6.001,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2017,279.104,5.954,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2018,278.875,5.725,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2019,278.969,5.819,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2020,279.311,6.161,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2021,279.491,6.341,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2022,279.178,6.028,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2023,279.179,6.029,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2024,279.257,6.107,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2025,279.301,6.151,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2026,279.415,6.265,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2027,279.327,6.177,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2028,279.414,6.264,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2029,279.3,6.15,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2030,279.514,6.364,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2031,279.468,6.318,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2032,279.355,6.205,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2033,279.325,6.175,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2034,279.439,6.289,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2035,279.335,6.185,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2036,279.21,6.06,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2037,279.679,6.529,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2038,279.512,6.362,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2039,279.559,6.409,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2040,279.592,6.442,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2041,279.72,6.57,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2042,279.879,6.729,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2043,279.843,6.693,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2044,279.705,6.555,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2045,279.634,6.484,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2046,279.937,6.787,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2047,280.145,6.995,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2048,279.801,6.651,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2049,279.601,6.451,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2050,279.793,6.643,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2051,280.256,7.106,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2054,279.938,6.788,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2055,279.949,6.799,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2056,279.922,6.772,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2059,280.293,7.143,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2060,280.391,7.241,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2061,280.402,7.252,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2062,280.359,7.209,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2063,280.277,7.127,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2064,280.348,7.198,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2065,280.325,7.175,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2066,280.416,7.266,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2067,280.347,7.197,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2068,280.451,7.301,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2069,280.483,7.333,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2070,280.337,7.187,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2071,280.437,7.287,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2072,280.654,7.504,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2073,280.697,7.547,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2074,280.516,7.366,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2075,280.5,7.35,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2076,280.56,7.41,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2077,280.72,7.57,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2078,280.604,7.454,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2079,280.911,7.761,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2080,280.659,7.509,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2081,280.584,7.434,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2082,280.626,7.476,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2083,280.594,7.444,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2084,280.495,7.345,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2085,280.71,7.56,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2086,281.133,7.983,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2087,280.847,7.697,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2088,280.756,7.606,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2089,280.678,7.528,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2090,280.752,7.602,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2091,280.688,7.538,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2092,280.823,7.673,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2093,281.005,7.855,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2094,280.805,7.655,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2095,280.52,7.37,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2096,280.62,7.47,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2097,281.028,7.878,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2098,280.658,7.508,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2099,280.511,7.361,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -2100,280.815,7.665,degC,temperature,tgav,CCSM4,rcp45,Simulated,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, -,,,,,,,,,,,, diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/hist/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/hist/ensemble_mean_model.csv deleted file mode 100644 index 3e87f2651..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/hist/ensemble_mean_model.csv +++ /dev/null @@ -1,1873 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1850,"Simulated","ppmv CO2","global",288.617533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1851,"Simulated","ppmv CO2","global",288.4534 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1852,"Simulated","ppmv CO2","global",288.8388 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1853,"Simulated","ppmv CO2","global",289.0769 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1854,"Simulated","ppmv CO2","global",289.1285 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1855,"Simulated","ppmv CO2","global",288.8738 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1856,"Simulated","ppmv CO2","global",288.806966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1857,"Simulated","ppmv CO2","global",288.644833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1858,"Simulated","ppmv CO2","global",288.3537 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1859,"Simulated","ppmv CO2","global",288.122533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1860,"Simulated","ppmv CO2","global",288.0458 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1861,"Simulated","ppmv CO2","global",288.1408 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1862,"Simulated","ppmv CO2","global",288.743266666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1863,"Simulated","ppmv CO2","global",288.869433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1864,"Simulated","ppmv CO2","global",288.5819 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1865,"Simulated","ppmv CO2","global",288.436433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1866,"Simulated","ppmv CO2","global",288.4592 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1867,"Simulated","ppmv CO2","global",288.836366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1868,"Simulated","ppmv CO2","global",288.8973 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1869,"Simulated","ppmv CO2","global",288.9415 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1870,"Simulated","ppmv CO2","global",288.7341 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1871,"Simulated","ppmv CO2","global",289.331666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1872,"Simulated","ppmv CO2","global",289.752566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1873,"Simulated","ppmv CO2","global",289.875233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1874,"Simulated","ppmv CO2","global",290.404866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1875,"Simulated","ppmv CO2","global",290.598266666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1876,"Simulated","ppmv CO2","global",290.2969 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1877,"Simulated","ppmv CO2","global",290.058366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1878,"Simulated","ppmv CO2","global",290.5741 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1879,"Simulated","ppmv CO2","global",290.7713 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1880,"Simulated","ppmv CO2","global",290.890133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1881,"Simulated","ppmv CO2","global",290.8681 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1882,"Simulated","ppmv CO2","global",290.7926 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1883,"Simulated","ppmv CO2","global",291.4797 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1884,"Simulated","ppmv CO2","global",291.0582 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1885,"Simulated","ppmv CO2","global",290.148633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1886,"Simulated","ppmv CO2","global",289.7319 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1887,"Simulated","ppmv CO2","global",289.7105 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1888,"Simulated","ppmv CO2","global",289.577333333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1889,"Simulated","ppmv CO2","global",289.8144 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1890,"Simulated","ppmv CO2","global",289.901566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1891,"Simulated","ppmv CO2","global",289.7977 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1892,"Simulated","ppmv CO2","global",289.7867 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1893,"Simulated","ppmv CO2","global",289.700933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1894,"Simulated","ppmv CO2","global",290.040666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1895,"Simulated","ppmv CO2","global",289.733066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1896,"Simulated","ppmv CO2","global",289.5657 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1897,"Simulated","ppmv CO2","global",289.8857 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1898,"Simulated","ppmv CO2","global",290.235066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1899,"Simulated","ppmv CO2","global",290.583133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1900,"Simulated","ppmv CO2","global",290.948133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1901,"Simulated","ppmv CO2","global",291.069533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1902,"Simulated","ppmv CO2","global",291.325333333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1903,"Simulated","ppmv CO2","global",291.924 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1904,"Simulated","ppmv CO2","global",292.5151 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1905,"Simulated","ppmv CO2","global",292.2349 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1906,"Simulated","ppmv CO2","global",292.164833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1907,"Simulated","ppmv CO2","global",292.1939 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1908,"Simulated","ppmv CO2","global",292.734466666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1909,"Simulated","ppmv CO2","global",293.242633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1910,"Simulated","ppmv CO2","global",293.517633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1911,"Simulated","ppmv CO2","global",293.838433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1912,"Simulated","ppmv CO2","global",294.1648 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1913,"Simulated","ppmv CO2","global",294.799233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1914,"Simulated","ppmv CO2","global",295.163933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1915,"Simulated","ppmv CO2","global",295.1864 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1916,"Simulated","ppmv CO2","global",295.6219 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1917,"Simulated","ppmv CO2","global",296.215966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1918,"Simulated","ppmv CO2","global",296.525933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1919,"Simulated","ppmv CO2","global",296.747066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1920,"Simulated","ppmv CO2","global",296.817766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1921,"Simulated","ppmv CO2","global",297.063 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1922,"Simulated","ppmv CO2","global",297.393166666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1923,"Simulated","ppmv CO2","global",298.061866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1924,"Simulated","ppmv CO2","global",298.312533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1925,"Simulated","ppmv CO2","global",298.5587 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1926,"Simulated","ppmv CO2","global",299.078 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1927,"Simulated","ppmv CO2","global",299.7574 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1928,"Simulated","ppmv CO2","global",300.203933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1929,"Simulated","ppmv CO2","global",300.7766 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1930,"Simulated","ppmv CO2","global",300.907766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1931,"Simulated","ppmv CO2","global",300.604166666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1932,"Simulated","ppmv CO2","global",300.980666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1933,"Simulated","ppmv CO2","global",301.657766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1934,"Simulated","ppmv CO2","global",301.907433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1935,"Simulated","ppmv CO2","global",302.083766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1936,"Simulated","ppmv CO2","global",301.491833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1937,"Simulated","ppmv CO2","global",301.814066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1938,"Simulated","ppmv CO2","global",302.3909 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1939,"Simulated","ppmv CO2","global",303.020766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1940,"Simulated","ppmv CO2","global",303.246733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1941,"Simulated","ppmv CO2","global",303.2811 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1942,"Simulated","ppmv CO2","global",303.9517 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1943,"Simulated","ppmv CO2","global",304.592866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1944,"Simulated","ppmv CO2","global",304.801066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1945,"Simulated","ppmv CO2","global",305.308366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1946,"Simulated","ppmv CO2","global",305.658666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1947,"Simulated","ppmv CO2","global",305.684233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1948,"Simulated","ppmv CO2","global",306.428566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1949,"Simulated","ppmv CO2","global",306.8936 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1950,"Simulated","ppmv CO2","global",307.112833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1951,"Simulated","ppmv CO2","global",307.6232 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1952,"Simulated","ppmv CO2","global",308.4225 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1953,"Simulated","ppmv CO2","global",309.2584 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1954,"Simulated","ppmv CO2","global",309.719433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1955,"Simulated","ppmv CO2","global",310.198233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1956,"Simulated","ppmv CO2","global",310.516466666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1957,"Simulated","ppmv CO2","global",311.2354 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1958,"Simulated","ppmv CO2","global",312.166 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1959,"Simulated","ppmv CO2","global",313.174733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1960,"Simulated","ppmv CO2","global",314.0637 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1961,"Simulated","ppmv CO2","global",314.865333333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1962,"Simulated","ppmv CO2","global",316.241733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1963,"Simulated","ppmv CO2","global",317.528033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1964,"Simulated","ppmv CO2","global",318.084133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1965,"Simulated","ppmv CO2","global",318.765133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1966,"Simulated","ppmv CO2","global",319.3191 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1967,"Simulated","ppmv CO2","global",320.085633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1968,"Simulated","ppmv CO2","global",320.717966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1969,"Simulated","ppmv CO2","global",321.7016 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1970,"Simulated","ppmv CO2","global",322.417433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1971,"Simulated","ppmv CO2","global",323.570733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1972,"Simulated","ppmv CO2","global",324.9192 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1973,"Simulated","ppmv CO2","global",325.8786 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1974,"Simulated","ppmv CO2","global",327.431933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1975,"Simulated","ppmv CO2","global",329.704966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1976,"Simulated","ppmv CO2","global",331.21 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1977,"Simulated","ppmv CO2","global",332.5856 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1978,"Simulated","ppmv CO2","global",334.314933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1979,"Simulated","ppmv CO2","global",335.4854 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1980,"Simulated","ppmv CO2","global",336.941766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1981,"Simulated","ppmv CO2","global",338.804766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1982,"Simulated","ppmv CO2","global",340.389666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1983,"Simulated","ppmv CO2","global",341.8687 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1984,"Simulated","ppmv CO2","global",343.71 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1985,"Simulated","ppmv CO2","global",345.1661 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1986,"Simulated","ppmv CO2","global",346.742033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1987,"Simulated","ppmv CO2","global",348.593966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1988,"Simulated","ppmv CO2","global",350.231366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1989,"Simulated","ppmv CO2","global",352.217933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1990,"Simulated","ppmv CO2","global",354.494966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1991,"Simulated","ppmv CO2","global",356.067566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1992,"Simulated","ppmv CO2","global",357.653833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1993,"Simulated","ppmv CO2","global",360.0821 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1994,"Simulated","ppmv CO2","global",362.053566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1995,"Simulated","ppmv CO2","global",363.538966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1996,"Simulated","ppmv CO2","global",365.627766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1997,"Simulated","ppmv CO2","global",367.1302 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1998,"Simulated","ppmv CO2","global",368.7632 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",1999,"Simulated","ppmv CO2","global",370.971066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2000,"Simulated","ppmv CO2","global",373.532266666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2001,"Simulated","ppmv CO2","global",375.8911 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2002,"Simulated","ppmv CO2","global",377.8793 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2003,"Simulated","ppmv CO2","global",379.9574 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2004,"Simulated","ppmv CO2","global",381.780666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmHistorical",2005,"Simulated","ppmv CO2","global",384.710133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1850,"Simulated","ppmv CO2","HL",288.574966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1851,"Simulated","ppmv CO2","HL",288.3834 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1852,"Simulated","ppmv CO2","HL",288.6578 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1853,"Simulated","ppmv CO2","HL",288.897533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1854,"Simulated","ppmv CO2","HL",288.950466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1855,"Simulated","ppmv CO2","HL",288.803866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1856,"Simulated","ppmv CO2","HL",288.8046 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1857,"Simulated","ppmv CO2","HL",288.637666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1858,"Simulated","ppmv CO2","HL",288.429 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1859,"Simulated","ppmv CO2","HL",288.178233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1860,"Simulated","ppmv CO2","HL",288.0812 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1861,"Simulated","ppmv CO2","HL",288.074966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1862,"Simulated","ppmv CO2","HL",288.517766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1863,"Simulated","ppmv CO2","HL",288.647366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1864,"Simulated","ppmv CO2","HL",288.523133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1865,"Simulated","ppmv CO2","HL",288.444433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1866,"Simulated","ppmv CO2","HL",288.4627 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1867,"Simulated","ppmv CO2","HL",288.695566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1868,"Simulated","ppmv CO2","HL",288.776833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1869,"Simulated","ppmv CO2","HL",288.840933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1870,"Simulated","ppmv CO2","HL",288.720833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1871,"Simulated","ppmv CO2","HL",289.121633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1872,"Simulated","ppmv CO2","HL",289.525833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1873,"Simulated","ppmv CO2","HL",289.649833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1874,"Simulated","ppmv CO2","HL",290.1163 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1875,"Simulated","ppmv CO2","HL",290.428166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1876,"Simulated","ppmv CO2","HL",290.236 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1877,"Simulated","ppmv CO2","HL",290.034066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1878,"Simulated","ppmv CO2","HL",290.417166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1879,"Simulated","ppmv CO2","HL",290.6464 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1880,"Simulated","ppmv CO2","HL",290.697 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1881,"Simulated","ppmv CO2","HL",290.7732 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1882,"Simulated","ppmv CO2","HL",290.688666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1883,"Simulated","ppmv CO2","HL",291.2397 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1884,"Simulated","ppmv CO2","HL",291.089 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1885,"Simulated","ppmv CO2","HL",290.323433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1886,"Simulated","ppmv CO2","HL",289.9526 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1887,"Simulated","ppmv CO2","HL",289.818966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1888,"Simulated","ppmv CO2","HL",289.664233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1889,"Simulated","ppmv CO2","HL",289.723633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1890,"Simulated","ppmv CO2","HL",289.8104 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1891,"Simulated","ppmv CO2","HL",289.7473 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1892,"Simulated","ppmv CO2","HL",289.748866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1893,"Simulated","ppmv CO2","HL",289.670566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1894,"Simulated","ppmv CO2","HL",289.872666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1895,"Simulated","ppmv CO2","HL",289.764733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1896,"Simulated","ppmv CO2","HL",289.5736 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1897,"Simulated","ppmv CO2","HL",289.833166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1898,"Simulated","ppmv CO2","HL",290.0738 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1899,"Simulated","ppmv CO2","HL",290.371466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1900,"Simulated","ppmv CO2","HL",290.755 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1901,"Simulated","ppmv CO2","HL",290.931366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1902,"Simulated","ppmv CO2","HL",291.149666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1903,"Simulated","ppmv CO2","HL",291.5737 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1904,"Simulated","ppmv CO2","HL",292.177766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1905,"Simulated","ppmv CO2","HL",292.150566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1906,"Simulated","ppmv CO2","HL",292.114733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1907,"Simulated","ppmv CO2","HL",292.232266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1908,"Simulated","ppmv CO2","HL",292.581566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1909,"Simulated","ppmv CO2","HL",293.033766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1910,"Simulated","ppmv CO2","HL",293.2688 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1911,"Simulated","ppmv CO2","HL",293.613533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1912,"Simulated","ppmv CO2","HL",293.9529 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1913,"Simulated","ppmv CO2","HL",294.4886 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1914,"Simulated","ppmv CO2","HL",294.9308 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1915,"Simulated","ppmv CO2","HL",295.0241 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1916,"Simulated","ppmv CO2","HL",295.380566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1917,"Simulated","ppmv CO2","HL",295.920666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1918,"Simulated","ppmv CO2","HL",296.314333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1919,"Simulated","ppmv CO2","HL",296.5209 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1920,"Simulated","ppmv CO2","HL",296.694166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1921,"Simulated","ppmv CO2","HL",296.8968 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1922,"Simulated","ppmv CO2","HL",297.2211 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1923,"Simulated","ppmv CO2","HL",297.701133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1924,"Simulated","ppmv CO2","HL",298.111 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1925,"Simulated","ppmv CO2","HL",298.3404 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1926,"Simulated","ppmv CO2","HL",298.832733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1927,"Simulated","ppmv CO2","HL",299.4305 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1928,"Simulated","ppmv CO2","HL",299.927033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1929,"Simulated","ppmv CO2","HL",300.418866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1930,"Simulated","ppmv CO2","HL",300.7059 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1931,"Simulated","ppmv CO2","HL",300.524633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1932,"Simulated","ppmv CO2","HL",300.844066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1933,"Simulated","ppmv CO2","HL",301.381266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1934,"Simulated","ppmv CO2","HL",301.686633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1935,"Simulated","ppmv CO2","HL",301.9293 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1936,"Simulated","ppmv CO2","HL",301.586733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1937,"Simulated","ppmv CO2","HL",301.727833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1938,"Simulated","ppmv CO2","HL",302.2499 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1939,"Simulated","ppmv CO2","HL",302.753766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1940,"Simulated","ppmv CO2","HL",303.044266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1941,"Simulated","ppmv CO2","HL",303.133733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1942,"Simulated","ppmv CO2","HL",303.6331 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1943,"Simulated","ppmv CO2","HL",304.347833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1944,"Simulated","ppmv CO2","HL",304.587566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1945,"Simulated","ppmv CO2","HL",305.025933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1946,"Simulated","ppmv CO2","HL",305.494866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1947,"Simulated","ppmv CO2","HL",305.5314 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1948,"Simulated","ppmv CO2","HL",306.1414 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1949,"Simulated","ppmv CO2","HL",306.6528 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1950,"Simulated","ppmv CO2","HL",306.896433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1951,"Simulated","ppmv CO2","HL",307.357533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1952,"Simulated","ppmv CO2","HL",308.086133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1953,"Simulated","ppmv CO2","HL",308.8735 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1954,"Simulated","ppmv CO2","HL",309.4233 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1955,"Simulated","ppmv CO2","HL",309.9241 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1956,"Simulated","ppmv CO2","HL",310.299033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1957,"Simulated","ppmv CO2","HL",310.8831 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1958,"Simulated","ppmv CO2","HL",311.813466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1959,"Simulated","ppmv CO2","HL",312.735733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1960,"Simulated","ppmv CO2","HL",313.648633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1961,"Simulated","ppmv CO2","HL",314.386866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1962,"Simulated","ppmv CO2","HL",315.660733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1963,"Simulated","ppmv CO2","HL",316.946 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1964,"Simulated","ppmv CO2","HL",317.654666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1965,"Simulated","ppmv CO2","HL",318.3942 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1966,"Simulated","ppmv CO2","HL",319.059933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1967,"Simulated","ppmv CO2","HL",319.826666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1968,"Simulated","ppmv CO2","HL",320.424533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1969,"Simulated","ppmv CO2","HL",321.326933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1970,"Simulated","ppmv CO2","HL",322.113433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1971,"Simulated","ppmv CO2","HL",323.112633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1972,"Simulated","ppmv CO2","HL",324.427533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1973,"Simulated","ppmv CO2","HL",325.431833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1974,"Simulated","ppmv CO2","HL",326.7708 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1975,"Simulated","ppmv CO2","HL",328.8116 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1976,"Simulated","ppmv CO2","HL",330.451766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1977,"Simulated","ppmv CO2","HL",331.869666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1978,"Simulated","ppmv CO2","HL",333.559766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1979,"Simulated","ppmv CO2","HL",334.927466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1980,"Simulated","ppmv CO2","HL",336.2948 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1981,"Simulated","ppmv CO2","HL",338.0178 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1982,"Simulated","ppmv CO2","HL",339.596733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1983,"Simulated","ppmv CO2","HL",341.0907 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1984,"Simulated","ppmv CO2","HL",342.873733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1985,"Simulated","ppmv CO2","HL",344.4674 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1986,"Simulated","ppmv CO2","HL",346.0156 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1987,"Simulated","ppmv CO2","HL",347.858133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1988,"Simulated","ppmv CO2","HL",349.468666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1989,"Simulated","ppmv CO2","HL",351.337266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1990,"Simulated","ppmv CO2","HL",353.5333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1991,"Simulated","ppmv CO2","HL",355.2462 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1992,"Simulated","ppmv CO2","HL",356.823266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1993,"Simulated","ppmv CO2","HL",359.102566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1994,"Simulated","ppmv CO2","HL",361.1851 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1995,"Simulated","ppmv CO2","HL",362.6913 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1996,"Simulated","ppmv CO2","HL",364.766033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1997,"Simulated","ppmv CO2","HL",366.395333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1998,"Simulated","ppmv CO2","HL",368.002833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1999,"Simulated","ppmv CO2","HL",370.035266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2000,"Simulated","ppmv CO2","HL",372.380266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2001,"Simulated","ppmv CO2","HL",374.767433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2002,"Simulated","ppmv CO2","HL",376.8003 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2003,"Simulated","ppmv CO2","HL",378.944433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2004,"Simulated","ppmv CO2","HL",380.8543 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2005,"Simulated","ppmv CO2","HL",383.508533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1850,"Simulated","ppmv CO2","LL",288.626466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1851,"Simulated","ppmv CO2","LL",288.468 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1852,"Simulated","ppmv CO2","LL",288.8766 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1853,"Simulated","ppmv CO2","LL",289.114333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1854,"Simulated","ppmv CO2","LL",289.1657 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1855,"Simulated","ppmv CO2","LL",288.8884 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1856,"Simulated","ppmv CO2","LL",288.807466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1857,"Simulated","ppmv CO2","LL",288.646333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1858,"Simulated","ppmv CO2","LL",288.338 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1859,"Simulated","ppmv CO2","LL",288.1109 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1860,"Simulated","ppmv CO2","LL",288.038433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1861,"Simulated","ppmv CO2","LL",288.154566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1862,"Simulated","ppmv CO2","LL",288.790366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1863,"Simulated","ppmv CO2","LL",288.915833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1864,"Simulated","ppmv CO2","LL",288.594133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1865,"Simulated","ppmv CO2","LL",288.434766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1866,"Simulated","ppmv CO2","LL",288.458466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1867,"Simulated","ppmv CO2","LL",288.865766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1868,"Simulated","ppmv CO2","LL",288.922466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1869,"Simulated","ppmv CO2","LL",288.9625 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1870,"Simulated","ppmv CO2","LL",288.736866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1871,"Simulated","ppmv CO2","LL",289.3755 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1872,"Simulated","ppmv CO2","LL",289.7999 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1873,"Simulated","ppmv CO2","LL",289.922266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1874,"Simulated","ppmv CO2","LL",290.4651 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1875,"Simulated","ppmv CO2","LL",290.6338 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1876,"Simulated","ppmv CO2","LL",290.309633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1877,"Simulated","ppmv CO2","LL",290.0634 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1878,"Simulated","ppmv CO2","LL",290.6069 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1879,"Simulated","ppmv CO2","LL",290.797333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1880,"Simulated","ppmv CO2","LL",290.930433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1881,"Simulated","ppmv CO2","LL",290.887933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1882,"Simulated","ppmv CO2","LL",290.814333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1883,"Simulated","ppmv CO2","LL",291.529833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1884,"Simulated","ppmv CO2","LL",291.051766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1885,"Simulated","ppmv CO2","LL",290.112166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1886,"Simulated","ppmv CO2","LL",289.685866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1887,"Simulated","ppmv CO2","LL",289.687833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1888,"Simulated","ppmv CO2","LL",289.559166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1889,"Simulated","ppmv CO2","LL",289.833366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1890,"Simulated","ppmv CO2","LL",289.9206 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1891,"Simulated","ppmv CO2","LL",289.808233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1892,"Simulated","ppmv CO2","LL",289.7946 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1893,"Simulated","ppmv CO2","LL",289.7073 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1894,"Simulated","ppmv CO2","LL",290.075733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1895,"Simulated","ppmv CO2","LL",289.726433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1896,"Simulated","ppmv CO2","LL",289.564 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1897,"Simulated","ppmv CO2","LL",289.8967 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1898,"Simulated","ppmv CO2","LL",290.2687 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1899,"Simulated","ppmv CO2","LL",290.627333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1900,"Simulated","ppmv CO2","LL",290.988433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1901,"Simulated","ppmv CO2","LL",291.0984 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1902,"Simulated","ppmv CO2","LL",291.362 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1903,"Simulated","ppmv CO2","LL",291.997133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1904,"Simulated","ppmv CO2","LL",292.585533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1905,"Simulated","ppmv CO2","LL",292.252533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1906,"Simulated","ppmv CO2","LL",292.175266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1907,"Simulated","ppmv CO2","LL",292.1859 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1908,"Simulated","ppmv CO2","LL",292.766333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1909,"Simulated","ppmv CO2","LL",293.286233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1910,"Simulated","ppmv CO2","LL",293.569566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1911,"Simulated","ppmv CO2","LL",293.8854 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1912,"Simulated","ppmv CO2","LL",294.209033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1913,"Simulated","ppmv CO2","LL",294.864066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1914,"Simulated","ppmv CO2","LL",295.2126 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1915,"Simulated","ppmv CO2","LL",295.2203 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1916,"Simulated","ppmv CO2","LL",295.6723 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1917,"Simulated","ppmv CO2","LL",296.277633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1918,"Simulated","ppmv CO2","LL",296.5701 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1919,"Simulated","ppmv CO2","LL",296.7943 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1920,"Simulated","ppmv CO2","LL",296.843566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1921,"Simulated","ppmv CO2","LL",297.097666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1922,"Simulated","ppmv CO2","LL",297.429066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1923,"Simulated","ppmv CO2","LL",298.1372 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1924,"Simulated","ppmv CO2","LL",298.354633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1925,"Simulated","ppmv CO2","LL",298.604266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1926,"Simulated","ppmv CO2","LL",299.1292 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1927,"Simulated","ppmv CO2","LL",299.8257 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1928,"Simulated","ppmv CO2","LL",300.261766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1929,"Simulated","ppmv CO2","LL",300.851233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1930,"Simulated","ppmv CO2","LL",300.949866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1931,"Simulated","ppmv CO2","LL",300.6208 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1932,"Simulated","ppmv CO2","LL",301.0092 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1933,"Simulated","ppmv CO2","LL",301.715433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1934,"Simulated","ppmv CO2","LL",301.953533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1935,"Simulated","ppmv CO2","LL",302.116 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1936,"Simulated","ppmv CO2","LL",301.472 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1937,"Simulated","ppmv CO2","LL",301.832133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1938,"Simulated","ppmv CO2","LL",302.420366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1939,"Simulated","ppmv CO2","LL",303.076533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1940,"Simulated","ppmv CO2","LL",303.289 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1941,"Simulated","ppmv CO2","LL",303.3119 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1942,"Simulated","ppmv CO2","LL",304.018233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1943,"Simulated","ppmv CO2","LL",304.644 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1944,"Simulated","ppmv CO2","LL",304.845666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1945,"Simulated","ppmv CO2","LL",305.367333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1946,"Simulated","ppmv CO2","LL",305.692833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1947,"Simulated","ppmv CO2","LL",305.716166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1948,"Simulated","ppmv CO2","LL",306.488533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1949,"Simulated","ppmv CO2","LL",306.943866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1950,"Simulated","ppmv CO2","LL",307.158033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1951,"Simulated","ppmv CO2","LL",307.678666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1952,"Simulated","ppmv CO2","LL",308.492766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1953,"Simulated","ppmv CO2","LL",309.338766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1954,"Simulated","ppmv CO2","LL",309.781266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1955,"Simulated","ppmv CO2","LL",310.255433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1956,"Simulated","ppmv CO2","LL",310.561866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1957,"Simulated","ppmv CO2","LL",311.308933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1958,"Simulated","ppmv CO2","LL",312.2396 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1959,"Simulated","ppmv CO2","LL",313.266366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1960,"Simulated","ppmv CO2","LL",314.150366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1961,"Simulated","ppmv CO2","LL",314.9652 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1962,"Simulated","ppmv CO2","LL",316.363033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1963,"Simulated","ppmv CO2","LL",317.6495 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1964,"Simulated","ppmv CO2","LL",318.1738 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1965,"Simulated","ppmv CO2","LL",318.842566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1966,"Simulated","ppmv CO2","LL",319.3732 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1967,"Simulated","ppmv CO2","LL",320.1397 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1968,"Simulated","ppmv CO2","LL",320.779233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1969,"Simulated","ppmv CO2","LL",321.779833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1970,"Simulated","ppmv CO2","LL",322.480866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1971,"Simulated","ppmv CO2","LL",323.666366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1972,"Simulated","ppmv CO2","LL",325.021866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1973,"Simulated","ppmv CO2","LL",325.9719 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1974,"Simulated","ppmv CO2","LL",327.57 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1975,"Simulated","ppmv CO2","LL",329.891466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1976,"Simulated","ppmv CO2","LL",331.368333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1977,"Simulated","ppmv CO2","LL",332.735066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1978,"Simulated","ppmv CO2","LL",334.4726 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1979,"Simulated","ppmv CO2","LL",335.601866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1980,"Simulated","ppmv CO2","LL",337.0768 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1981,"Simulated","ppmv CO2","LL",338.969033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1982,"Simulated","ppmv CO2","LL",340.555233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1983,"Simulated","ppmv CO2","LL",342.031133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1984,"Simulated","ppmv CO2","LL",343.884566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1985,"Simulated","ppmv CO2","LL",345.311933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1986,"Simulated","ppmv CO2","LL",346.893666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1987,"Simulated","ppmv CO2","LL",348.747533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1988,"Simulated","ppmv CO2","LL",350.3906 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1989,"Simulated","ppmv CO2","LL",352.401833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1990,"Simulated","ppmv CO2","LL",354.695766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1991,"Simulated","ppmv CO2","LL",356.239066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1992,"Simulated","ppmv CO2","LL",357.827266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1993,"Simulated","ppmv CO2","LL",360.286666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1994,"Simulated","ppmv CO2","LL",362.234866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1995,"Simulated","ppmv CO2","LL",363.715966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1996,"Simulated","ppmv CO2","LL",365.807733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1997,"Simulated","ppmv CO2","LL",367.283633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1998,"Simulated","ppmv CO2","LL",368.921966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1999,"Simulated","ppmv CO2","LL",371.166466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2000,"Simulated","ppmv CO2","LL",373.772766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2001,"Simulated","ppmv CO2","LL",376.1257 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2002,"Simulated","ppmv CO2","LL",378.104566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2003,"Simulated","ppmv CO2","LL",380.168866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2004,"Simulated","ppmv CO2","LL",381.974066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2005,"Simulated","ppmv CO2","LL",384.961 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1850,"Simulated","ppmv CO2","global",283.9229 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1851,"Simulated","ppmv CO2","global",284.0351 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1852,"Simulated","ppmv CO2","global",283.6682 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1853,"Simulated","ppmv CO2","global",283.9208 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1854,"Simulated","ppmv CO2","global",284.428 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1855,"Simulated","ppmv CO2","global",284.7773 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1856,"Simulated","ppmv CO2","global",285.0639 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1857,"Simulated","ppmv CO2","global",285.4244 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1858,"Simulated","ppmv CO2","global",285.4983 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1859,"Simulated","ppmv CO2","global",285.4399 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1860,"Simulated","ppmv CO2","global",285.8116 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1861,"Simulated","ppmv CO2","global",285.7951 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1862,"Simulated","ppmv CO2","global",286.0426 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1863,"Simulated","ppmv CO2","global",286.1184 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1864,"Simulated","ppmv CO2","global",286.0779 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1865,"Simulated","ppmv CO2","global",285.99 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1866,"Simulated","ppmv CO2","global",286.4302 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1867,"Simulated","ppmv CO2","global",286.6725 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1868,"Simulated","ppmv CO2","global",286.5956 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1869,"Simulated","ppmv CO2","global",286.5514 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1870,"Simulated","ppmv CO2","global",286.9672 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1871,"Simulated","ppmv CO2","global",287.5988 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1872,"Simulated","ppmv CO2","global",287.7669 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1873,"Simulated","ppmv CO2","global",287.6107 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1874,"Simulated","ppmv CO2","global",288.0605 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1875,"Simulated","ppmv CO2","global",288.2498 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1876,"Simulated","ppmv CO2","global",288.2283 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1877,"Simulated","ppmv CO2","global",288.3595 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1878,"Simulated","ppmv CO2","global",288.5756 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1879,"Simulated","ppmv CO2","global",288.6501 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1880,"Simulated","ppmv CO2","global",288.9465 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1881,"Simulated","ppmv CO2","global",289.5297 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1882,"Simulated","ppmv CO2","global",289.9898 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1883,"Simulated","ppmv CO2","global",289.8413 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1884,"Simulated","ppmv CO2","global",289.6494 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1885,"Simulated","ppmv CO2","global",289.9939 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1886,"Simulated","ppmv CO2","global",289.9902 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1887,"Simulated","ppmv CO2","global",290.1569 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1888,"Simulated","ppmv CO2","global",290.7355 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1889,"Simulated","ppmv CO2","global",291.4207 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1890,"Simulated","ppmv CO2","global",291.2178 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1891,"Simulated","ppmv CO2","global",291.1007 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1892,"Simulated","ppmv CO2","global",291.8337 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1893,"Simulated","ppmv CO2","global",291.9475 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1894,"Simulated","ppmv CO2","global",291.7609 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1895,"Simulated","ppmv CO2","global",292.2671 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1896,"Simulated","ppmv CO2","global",293.028 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1897,"Simulated","ppmv CO2","global",293.4843 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1898,"Simulated","ppmv CO2","global",293.1639 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1899,"Simulated","ppmv CO2","global",293.2214 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1900,"Simulated","ppmv CO2","global",293.5865 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1901,"Simulated","ppmv CO2","global",294.0375 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1902,"Simulated","ppmv CO2","global",293.8646 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1903,"Simulated","ppmv CO2","global",293.5003 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1904,"Simulated","ppmv CO2","global",294.0028 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1905,"Simulated","ppmv CO2","global",294.3061 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1906,"Simulated","ppmv CO2","global",294.2264 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1907,"Simulated","ppmv CO2","global",294.74 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1908,"Simulated","ppmv CO2","global",295.463 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1909,"Simulated","ppmv CO2","global",295.9045 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1910,"Simulated","ppmv CO2","global",295.8882 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1911,"Simulated","ppmv CO2","global",296.2473 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1912,"Simulated","ppmv CO2","global",296.5166 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1913,"Simulated","ppmv CO2","global",296.574 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1914,"Simulated","ppmv CO2","global",297.3224 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1915,"Simulated","ppmv CO2","global",298.0192 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1916,"Simulated","ppmv CO2","global",298.0182 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1917,"Simulated","ppmv CO2","global",297.9461 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1918,"Simulated","ppmv CO2","global",298.5976 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1919,"Simulated","ppmv CO2","global",299.3327 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1920,"Simulated","ppmv CO2","global",299.6497 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1921,"Simulated","ppmv CO2","global",299.6975 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1922,"Simulated","ppmv CO2","global",300.4253 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1923,"Simulated","ppmv CO2","global",300.7293 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1924,"Simulated","ppmv CO2","global",300.9647 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1925,"Simulated","ppmv CO2","global",301.4259 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1926,"Simulated","ppmv CO2","global",301.6245 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1927,"Simulated","ppmv CO2","global",301.9669 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1928,"Simulated","ppmv CO2","global",302.3702 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1929,"Simulated","ppmv CO2","global",302.7873 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1930,"Simulated","ppmv CO2","global",303.4911 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1931,"Simulated","ppmv CO2","global",303.5749 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1932,"Simulated","ppmv CO2","global",303.7261 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1933,"Simulated","ppmv CO2","global",304.2011 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1934,"Simulated","ppmv CO2","global",304.6839 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1935,"Simulated","ppmv CO2","global",305.2983 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1936,"Simulated","ppmv CO2","global",305.7233 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1937,"Simulated","ppmv CO2","global",306.532 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1938,"Simulated","ppmv CO2","global",307.0409 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1939,"Simulated","ppmv CO2","global",307.0923 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1940,"Simulated","ppmv CO2","global",307.6473 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1941,"Simulated","ppmv CO2","global",308.2826 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1942,"Simulated","ppmv CO2","global",309.0568 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1943,"Simulated","ppmv CO2","global",309.6407 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1944,"Simulated","ppmv CO2","global",310.1516 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1945,"Simulated","ppmv CO2","global",311.0573 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1946,"Simulated","ppmv CO2","global",311.4665 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1947,"Simulated","ppmv CO2","global",311.8318 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1948,"Simulated","ppmv CO2","global",311.8096 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1949,"Simulated","ppmv CO2","global",312.4875 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1950,"Simulated","ppmv CO2","global",313.6661 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1951,"Simulated","ppmv CO2","global",314.0217 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1952,"Simulated","ppmv CO2","global",314.6384 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1953,"Simulated","ppmv CO2","global",315.5313 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1954,"Simulated","ppmv CO2","global",316.085 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1955,"Simulated","ppmv CO2","global",316.4082 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1956,"Simulated","ppmv CO2","global",317.7786 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1957,"Simulated","ppmv CO2","global",318.963 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1958,"Simulated","ppmv CO2","global",319.4291 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1959,"Simulated","ppmv CO2","global",320.2538 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1960,"Simulated","ppmv CO2","global",321.7083 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1961,"Simulated","ppmv CO2","global",322.7569 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1962,"Simulated","ppmv CO2","global",323.8398 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1963,"Simulated","ppmv CO2","global",324.4192 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1964,"Simulated","ppmv CO2","global",325.4377 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1965,"Simulated","ppmv CO2","global",326.4018 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1966,"Simulated","ppmv CO2","global",327.6766 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1967,"Simulated","ppmv CO2","global",328.8535 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1968,"Simulated","ppmv CO2","global",329.9614 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1969,"Simulated","ppmv CO2","global",331.1119 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1970,"Simulated","ppmv CO2","global",332.5111 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1971,"Simulated","ppmv CO2","global",333.8336 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1972,"Simulated","ppmv CO2","global",334.9864 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1973,"Simulated","ppmv CO2","global",336.1915 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1974,"Simulated","ppmv CO2","global",338.0377 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1975,"Simulated","ppmv CO2","global",339.1646 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1976,"Simulated","ppmv CO2","global",340.6474 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1977,"Simulated","ppmv CO2","global",342.4848 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1978,"Simulated","ppmv CO2","global",344.4 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1979,"Simulated","ppmv CO2","global",345.6192 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1980,"Simulated","ppmv CO2","global",347.2443 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1981,"Simulated","ppmv CO2","global",349.0645 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1982,"Simulated","ppmv CO2","global",350.8126 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1983,"Simulated","ppmv CO2","global",352.7702 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1984,"Simulated","ppmv CO2","global",354.2856 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1985,"Simulated","ppmv CO2","global",355.6637 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1986,"Simulated","ppmv CO2","global",357.7089 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1987,"Simulated","ppmv CO2","global",359.3792 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1988,"Simulated","ppmv CO2","global",361.6479 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1989,"Simulated","ppmv CO2","global",363.8528 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1990,"Simulated","ppmv CO2","global",365.7562 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1991,"Simulated","ppmv CO2","global",367.747 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1992,"Simulated","ppmv CO2","global",369.5572 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1993,"Simulated","ppmv CO2","global",371.5824 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1994,"Simulated","ppmv CO2","global",373.0319 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1995,"Simulated","ppmv CO2","global",374.7251 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1996,"Simulated","ppmv CO2","global",377.2286 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1997,"Simulated","ppmv CO2","global",379.5032 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1998,"Simulated","ppmv CO2","global",381.6096 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",1999,"Simulated","ppmv CO2","global",383.6204 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2000,"Simulated","ppmv CO2","global",385.3662 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2001,"Simulated","ppmv CO2","global",387.324 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2002,"Simulated","ppmv CO2","global",389.6233 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2003,"Simulated","ppmv CO2","global",392.2221 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2004,"Simulated","ppmv CO2","global",393.9981 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmHistorical",2005,"Simulated","ppmv CO2","global",396.082 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1850,"Simulated","ppmv CO2","HL",283.7856 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1851,"Simulated","ppmv CO2","HL",283.95 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1852,"Simulated","ppmv CO2","HL",283.6569 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1853,"Simulated","ppmv CO2","HL",283.7749 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1854,"Simulated","ppmv CO2","HL",284.2294 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1855,"Simulated","ppmv CO2","HL",284.5648 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1856,"Simulated","ppmv CO2","HL",284.821 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1857,"Simulated","ppmv CO2","HL",285.1399 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1858,"Simulated","ppmv CO2","HL",285.3459 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1859,"Simulated","ppmv CO2","HL",285.3016 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1860,"Simulated","ppmv CO2","HL",285.5935 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1861,"Simulated","ppmv CO2","HL",285.6592 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1862,"Simulated","ppmv CO2","HL",285.8189 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1863,"Simulated","ppmv CO2","HL",285.9592 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1864,"Simulated","ppmv CO2","HL",285.9968 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1865,"Simulated","ppmv CO2","HL",285.9498 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1866,"Simulated","ppmv CO2","HL",286.1833 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1867,"Simulated","ppmv CO2","HL",286.4751 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1868,"Simulated","ppmv CO2","HL",286.4724 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1869,"Simulated","ppmv CO2","HL",286.4602 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1870,"Simulated","ppmv CO2","HL",286.7672 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1871,"Simulated","ppmv CO2","HL",287.3145 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1872,"Simulated","ppmv CO2","HL",287.5335 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1873,"Simulated","ppmv CO2","HL",287.4843 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1874,"Simulated","ppmv CO2","HL",287.8034 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1875,"Simulated","ppmv CO2","HL",288.0758 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1876,"Simulated","ppmv CO2","HL",288.0714 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1877,"Simulated","ppmv CO2","HL",288.2362 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1878,"Simulated","ppmv CO2","HL",288.4396 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1879,"Simulated","ppmv CO2","HL",288.4512 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1880,"Simulated","ppmv CO2","HL",288.7873 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1881,"Simulated","ppmv CO2","HL",289.2309 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1882,"Simulated","ppmv CO2","HL",289.6901 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1883,"Simulated","ppmv CO2","HL",289.7045 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1884,"Simulated","ppmv CO2","HL",289.5746 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1885,"Simulated","ppmv CO2","HL",289.8307 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1886,"Simulated","ppmv CO2","HL",289.9082 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1887,"Simulated","ppmv CO2","HL",290.0028 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1888,"Simulated","ppmv CO2","HL",290.4874 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1889,"Simulated","ppmv CO2","HL",291.0661 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1890,"Simulated","ppmv CO2","HL",291.0889 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1891,"Simulated","ppmv CO2","HL",290.9436 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1892,"Simulated","ppmv CO2","HL",291.5424 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1893,"Simulated","ppmv CO2","HL",291.7854 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1894,"Simulated","ppmv CO2","HL",291.6627 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1895,"Simulated","ppmv CO2","HL",292.0714 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1896,"Simulated","ppmv CO2","HL",292.6543 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1897,"Simulated","ppmv CO2","HL",293.1137 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1898,"Simulated","ppmv CO2","HL",293.0172 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1899,"Simulated","ppmv CO2","HL",293.0968 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1900,"Simulated","ppmv CO2","HL",293.4176 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1901,"Simulated","ppmv CO2","HL",293.7295 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1902,"Simulated","ppmv CO2","HL",293.7948 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1903,"Simulated","ppmv CO2","HL",293.4755 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1904,"Simulated","ppmv CO2","HL",293.8797 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1905,"Simulated","ppmv CO2","HL",294.1655 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1906,"Simulated","ppmv CO2","HL",294.1163 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1907,"Simulated","ppmv CO2","HL",294.486 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1908,"Simulated","ppmv CO2","HL",295.1869 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1909,"Simulated","ppmv CO2","HL",295.563 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1910,"Simulated","ppmv CO2","HL",295.7184 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1911,"Simulated","ppmv CO2","HL",296.0491 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1912,"Simulated","ppmv CO2","HL",296.3027 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1913,"Simulated","ppmv CO2","HL",296.4141 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1914,"Simulated","ppmv CO2","HL",297.0279 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1915,"Simulated","ppmv CO2","HL",297.661 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1916,"Simulated","ppmv CO2","HL",297.8196 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1917,"Simulated","ppmv CO2","HL",297.7898 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1918,"Simulated","ppmv CO2","HL",298.3215 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1919,"Simulated","ppmv CO2","HL",299.0073 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1920,"Simulated","ppmv CO2","HL",299.3619 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1921,"Simulated","ppmv CO2","HL",299.465 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1922,"Simulated","ppmv CO2","HL",300.0658 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1923,"Simulated","ppmv CO2","HL",300.5092 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1924,"Simulated","ppmv CO2","HL",300.6945 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1925,"Simulated","ppmv CO2","HL",301.1859 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1926,"Simulated","ppmv CO2","HL",301.3908 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1927,"Simulated","ppmv CO2","HL",301.7826 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1928,"Simulated","ppmv CO2","HL",302.1094 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1929,"Simulated","ppmv CO2","HL",302.4799 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1930,"Simulated","ppmv CO2","HL",303.1562 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1931,"Simulated","ppmv CO2","HL",303.3457 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1932,"Simulated","ppmv CO2","HL",303.5306 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1933,"Simulated","ppmv CO2","HL",303.9301 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1934,"Simulated","ppmv CO2","HL",304.415 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1935,"Simulated","ppmv CO2","HL",304.9651 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1936,"Simulated","ppmv CO2","HL",305.4166 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1937,"Simulated","ppmv CO2","HL",306.1524 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1938,"Simulated","ppmv CO2","HL",306.7205 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1939,"Simulated","ppmv CO2","HL",306.8363 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1940,"Simulated","ppmv CO2","HL",307.3503 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1941,"Simulated","ppmv CO2","HL",307.9971 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1942,"Simulated","ppmv CO2","HL",308.5986 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1943,"Simulated","ppmv CO2","HL",309.3057 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1944,"Simulated","ppmv CO2","HL",309.7545 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1945,"Simulated","ppmv CO2","HL",310.5729 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1946,"Simulated","ppmv CO2","HL",311.0396 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1947,"Simulated","ppmv CO2","HL",311.5258 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1948,"Simulated","ppmv CO2","HL",311.647 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1949,"Simulated","ppmv CO2","HL",312.1331 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1950,"Simulated","ppmv CO2","HL",313.2076 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1951,"Simulated","ppmv CO2","HL",313.6561 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1952,"Simulated","ppmv CO2","HL",314.2367 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1953,"Simulated","ppmv CO2","HL",315.1079 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1954,"Simulated","ppmv CO2","HL",315.7059 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1955,"Simulated","ppmv CO2","HL",316.0293 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1956,"Simulated","ppmv CO2","HL",317.2125 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1957,"Simulated","ppmv CO2","HL",318.3634 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1958,"Simulated","ppmv CO2","HL",318.9539 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1959,"Simulated","ppmv CO2","HL",319.7529 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1960,"Simulated","ppmv CO2","HL",321.0973 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1961,"Simulated","ppmv CO2","HL",322.1316 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1962,"Simulated","ppmv CO2","HL",323.165 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1963,"Simulated","ppmv CO2","HL",323.8646 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1964,"Simulated","ppmv CO2","HL",324.9425 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1965,"Simulated","ppmv CO2","HL",325.8834 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1966,"Simulated","ppmv CO2","HL",327.078 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1967,"Simulated","ppmv CO2","HL",328.2335 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1968,"Simulated","ppmv CO2","HL",329.3129 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1969,"Simulated","ppmv CO2","HL",330.4412 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1970,"Simulated","ppmv CO2","HL",331.8669 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1971,"Simulated","ppmv CO2","HL",333.1666 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1972,"Simulated","ppmv CO2","HL",334.4094 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1973,"Simulated","ppmv CO2","HL",335.5266 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1974,"Simulated","ppmv CO2","HL",337.289 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1975,"Simulated","ppmv CO2","HL",338.4569 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1976,"Simulated","ppmv CO2","HL",339.8875 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1977,"Simulated","ppmv CO2","HL",341.6177 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1978,"Simulated","ppmv CO2","HL",343.4588 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1979,"Simulated","ppmv CO2","HL",344.842 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1980,"Simulated","ppmv CO2","HL",346.4109 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1981,"Simulated","ppmv CO2","HL",348.1573 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1982,"Simulated","ppmv CO2","HL",349.9238 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1983,"Simulated","ppmv CO2","HL",351.7809 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1984,"Simulated","ppmv CO2","HL",353.4765 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1985,"Simulated","ppmv CO2","HL",354.864 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1986,"Simulated","ppmv CO2","HL",356.7716 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1987,"Simulated","ppmv CO2","HL",358.5606 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1988,"Simulated","ppmv CO2","HL",360.5472 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1989,"Simulated","ppmv CO2","HL",362.7485 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1990,"Simulated","ppmv CO2","HL",364.6808 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1991,"Simulated","ppmv CO2","HL",366.721 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1992,"Simulated","ppmv CO2","HL",368.4471 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1993,"Simulated","ppmv CO2","HL",370.5676 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1994,"Simulated","ppmv CO2","HL",372.1369 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1995,"Simulated","ppmv CO2","HL",373.7725 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1996,"Simulated","ppmv CO2","HL",376.1237 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1997,"Simulated","ppmv CO2","HL",378.3334 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1998,"Simulated","ppmv CO2","HL",380.3654 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1999,"Simulated","ppmv CO2","HL",382.5054 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2000,"Simulated","ppmv CO2","HL",384.3293 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2001,"Simulated","ppmv CO2","HL",386.2489 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2002,"Simulated","ppmv CO2","HL",388.433 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2003,"Simulated","ppmv CO2","HL",390.9109 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2004,"Simulated","ppmv CO2","HL",392.8515 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2005,"Simulated","ppmv CO2","HL",394.9414 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1850,"Simulated","ppmv CO2","LL",283.9539 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1851,"Simulated","ppmv CO2","LL",284.0543 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1852,"Simulated","ppmv CO2","LL",283.6707 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1853,"Simulated","ppmv CO2","LL",283.9537 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1854,"Simulated","ppmv CO2","LL",284.4728 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1855,"Simulated","ppmv CO2","LL",284.8253 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1856,"Simulated","ppmv CO2","LL",285.1187 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1857,"Simulated","ppmv CO2","LL",285.4887 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1858,"Simulated","ppmv CO2","LL",285.5327 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1859,"Simulated","ppmv CO2","LL",285.4711 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1860,"Simulated","ppmv CO2","LL",285.8609 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1861,"Simulated","ppmv CO2","LL",285.8258 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1862,"Simulated","ppmv CO2","LL",286.0932 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1863,"Simulated","ppmv CO2","LL",286.1544 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1864,"Simulated","ppmv CO2","LL",286.0963 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1865,"Simulated","ppmv CO2","LL",285.9991 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1866,"Simulated","ppmv CO2","LL",286.486 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1867,"Simulated","ppmv CO2","LL",286.7171 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1868,"Simulated","ppmv CO2","LL",286.6234 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1869,"Simulated","ppmv CO2","LL",286.572 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1870,"Simulated","ppmv CO2","LL",287.0124 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1871,"Simulated","ppmv CO2","LL",287.663 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1872,"Simulated","ppmv CO2","LL",287.8196 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1873,"Simulated","ppmv CO2","LL",287.6393 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1874,"Simulated","ppmv CO2","LL",288.1185 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1875,"Simulated","ppmv CO2","LL",288.2892 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1876,"Simulated","ppmv CO2","LL",288.2638 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1877,"Simulated","ppmv CO2","LL",288.3873 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1878,"Simulated","ppmv CO2","LL",288.6063 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1879,"Simulated","ppmv CO2","LL",288.695 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1880,"Simulated","ppmv CO2","LL",288.9825 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1881,"Simulated","ppmv CO2","LL",289.5971 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1882,"Simulated","ppmv CO2","LL",290.0575 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1883,"Simulated","ppmv CO2","LL",289.8722 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1884,"Simulated","ppmv CO2","LL",289.6663 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1885,"Simulated","ppmv CO2","LL",290.0308 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1886,"Simulated","ppmv CO2","LL",290.0087 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1887,"Simulated","ppmv CO2","LL",290.1917 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1888,"Simulated","ppmv CO2","LL",290.7916 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1889,"Simulated","ppmv CO2","LL",291.5008 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1890,"Simulated","ppmv CO2","LL",291.2469 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1891,"Simulated","ppmv CO2","LL",291.1361 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1892,"Simulated","ppmv CO2","LL",291.8995 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1893,"Simulated","ppmv CO2","LL",291.9841 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1894,"Simulated","ppmv CO2","LL",291.7831 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1895,"Simulated","ppmv CO2","LL",292.3112 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1896,"Simulated","ppmv CO2","LL",293.1124 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1897,"Simulated","ppmv CO2","LL",293.5681 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1898,"Simulated","ppmv CO2","LL",293.197 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1899,"Simulated","ppmv CO2","LL",293.2495 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1900,"Simulated","ppmv CO2","LL",293.6246 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1901,"Simulated","ppmv CO2","LL",294.107 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1902,"Simulated","ppmv CO2","LL",293.8804 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1903,"Simulated","ppmv CO2","LL",293.5059 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1904,"Simulated","ppmv CO2","LL",294.0306 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1905,"Simulated","ppmv CO2","LL",294.3379 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1906,"Simulated","ppmv CO2","LL",294.2512 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1907,"Simulated","ppmv CO2","LL",294.7973 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1908,"Simulated","ppmv CO2","LL",295.5254 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1909,"Simulated","ppmv CO2","LL",295.9817 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1910,"Simulated","ppmv CO2","LL",295.9266 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1911,"Simulated","ppmv CO2","LL",296.2921 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1912,"Simulated","ppmv CO2","LL",296.565 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1913,"Simulated","ppmv CO2","LL",296.6102 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1914,"Simulated","ppmv CO2","LL",297.3889 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1915,"Simulated","ppmv CO2","LL",298.1001 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1916,"Simulated","ppmv CO2","LL",298.0631 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1917,"Simulated","ppmv CO2","LL",297.9814 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1918,"Simulated","ppmv CO2","LL",298.66 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1919,"Simulated","ppmv CO2","LL",299.4062 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1920,"Simulated","ppmv CO2","LL",299.7147 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1921,"Simulated","ppmv CO2","LL",299.75 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1922,"Simulated","ppmv CO2","LL",300.5065 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1923,"Simulated","ppmv CO2","LL",300.779 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1924,"Simulated","ppmv CO2","LL",301.0257 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1925,"Simulated","ppmv CO2","LL",301.4801 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1926,"Simulated","ppmv CO2","LL",301.6773 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1927,"Simulated","ppmv CO2","LL",302.0086 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1928,"Simulated","ppmv CO2","LL",302.4291 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1929,"Simulated","ppmv CO2","LL",302.8567 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1930,"Simulated","ppmv CO2","LL",303.5668 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1931,"Simulated","ppmv CO2","LL",303.6266 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1932,"Simulated","ppmv CO2","LL",303.7703 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1933,"Simulated","ppmv CO2","LL",304.2623 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1934,"Simulated","ppmv CO2","LL",304.7447 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1935,"Simulated","ppmv CO2","LL",305.3736 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1936,"Simulated","ppmv CO2","LL",305.7926 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1937,"Simulated","ppmv CO2","LL",306.6177 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1938,"Simulated","ppmv CO2","LL",307.1133 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1939,"Simulated","ppmv CO2","LL",307.1501 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1940,"Simulated","ppmv CO2","LL",307.7144 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1941,"Simulated","ppmv CO2","LL",308.3471 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1942,"Simulated","ppmv CO2","LL",309.1603 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1943,"Simulated","ppmv CO2","LL",309.7164 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1944,"Simulated","ppmv CO2","LL",310.2413 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1945,"Simulated","ppmv CO2","LL",311.1667 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1946,"Simulated","ppmv CO2","LL",311.563 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1947,"Simulated","ppmv CO2","LL",311.901 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1948,"Simulated","ppmv CO2","LL",311.8463 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1949,"Simulated","ppmv CO2","LL",312.5676 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1950,"Simulated","ppmv CO2","LL",313.7696 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1951,"Simulated","ppmv CO2","LL",314.1043 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1952,"Simulated","ppmv CO2","LL",314.7291 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1953,"Simulated","ppmv CO2","LL",315.627 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1954,"Simulated","ppmv CO2","LL",316.1706 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1955,"Simulated","ppmv CO2","LL",316.4938 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1956,"Simulated","ppmv CO2","LL",317.9065 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1957,"Simulated","ppmv CO2","LL",319.0984 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1958,"Simulated","ppmv CO2","LL",319.5364 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1959,"Simulated","ppmv CO2","LL",320.3669 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1960,"Simulated","ppmv CO2","LL",321.8464 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1961,"Simulated","ppmv CO2","LL",322.8981 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1962,"Simulated","ppmv CO2","LL",323.9923 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1963,"Simulated","ppmv CO2","LL",324.5444 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1964,"Simulated","ppmv CO2","LL",325.5496 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1965,"Simulated","ppmv CO2","LL",326.5189 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1966,"Simulated","ppmv CO2","LL",327.8119 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1967,"Simulated","ppmv CO2","LL",328.9936 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1968,"Simulated","ppmv CO2","LL",330.1078 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1969,"Simulated","ppmv CO2","LL",331.2634 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1970,"Simulated","ppmv CO2","LL",332.6566 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1971,"Simulated","ppmv CO2","LL",333.9843 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1972,"Simulated","ppmv CO2","LL",335.1167 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1973,"Simulated","ppmv CO2","LL",336.3417 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1974,"Simulated","ppmv CO2","LL",338.2069 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1975,"Simulated","ppmv CO2","LL",339.3245 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1976,"Simulated","ppmv CO2","LL",340.8191 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1977,"Simulated","ppmv CO2","LL",342.6806 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1978,"Simulated","ppmv CO2","LL",344.6126 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1979,"Simulated","ppmv CO2","LL",345.7948 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1980,"Simulated","ppmv CO2","LL",347.4326 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1981,"Simulated","ppmv CO2","LL",349.2694 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1982,"Simulated","ppmv CO2","LL",351.0134 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1983,"Simulated","ppmv CO2","LL",352.9936 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1984,"Simulated","ppmv CO2","LL",354.4683 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1985,"Simulated","ppmv CO2","LL",355.8443 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1986,"Simulated","ppmv CO2","LL",357.9206 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1987,"Simulated","ppmv CO2","LL",359.5641 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1988,"Simulated","ppmv CO2","LL",361.8966 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1989,"Simulated","ppmv CO2","LL",364.1023 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1990,"Simulated","ppmv CO2","LL",365.9991 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1991,"Simulated","ppmv CO2","LL",367.9787 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1992,"Simulated","ppmv CO2","LL",369.808 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1993,"Simulated","ppmv CO2","LL",371.8117 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1994,"Simulated","ppmv CO2","LL",373.2341 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1995,"Simulated","ppmv CO2","LL",374.9403 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1996,"Simulated","ppmv CO2","LL",377.4782 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1997,"Simulated","ppmv CO2","LL",379.7675 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1998,"Simulated","ppmv CO2","LL",381.8907 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1999,"Simulated","ppmv CO2","LL",383.8723 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2000,"Simulated","ppmv CO2","LL",385.6005 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2001,"Simulated","ppmv CO2","LL",387.5669 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2002,"Simulated","ppmv CO2","LL",389.8922 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2003,"Simulated","ppmv CO2","LL",392.5184 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2004,"Simulated","ppmv CO2","LL",394.2571 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2005,"Simulated","ppmv CO2","LL",396.3396 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1850,"Simulated","ppmv CO2","global",284.542666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1851,"Simulated","ppmv CO2","global",284.353266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1852,"Simulated","ppmv CO2","global",284.399666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1853,"Simulated","ppmv CO2","global",284.856733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1854,"Simulated","ppmv CO2","global",284.985366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1855,"Simulated","ppmv CO2","global",285.129233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1856,"Simulated","ppmv CO2","global",285.388466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1857,"Simulated","ppmv CO2","global",285.425433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1858,"Simulated","ppmv CO2","global",285.251366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1859,"Simulated","ppmv CO2","global",285.216566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1860,"Simulated","ppmv CO2","global",285.194 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1861,"Simulated","ppmv CO2","global",284.827833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1862,"Simulated","ppmv CO2","global",284.573233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1863,"Simulated","ppmv CO2","global",284.6772 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1864,"Simulated","ppmv CO2","global",284.778066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1865,"Simulated","ppmv CO2","global",285.0637 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1866,"Simulated","ppmv CO2","global",285.0827 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1867,"Simulated","ppmv CO2","global",285.3404 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1868,"Simulated","ppmv CO2","global",285.662433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1869,"Simulated","ppmv CO2","global",285.888366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1870,"Simulated","ppmv CO2","global",286.013533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1871,"Simulated","ppmv CO2","global",286.2667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1872,"Simulated","ppmv CO2","global",286.3327 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1873,"Simulated","ppmv CO2","global",286.6637 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1874,"Simulated","ppmv CO2","global",287.062666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1875,"Simulated","ppmv CO2","global",286.889533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1876,"Simulated","ppmv CO2","global",286.7041 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1877,"Simulated","ppmv CO2","global",286.612133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1878,"Simulated","ppmv CO2","global",286.64 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1879,"Simulated","ppmv CO2","global",286.702366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1880,"Simulated","ppmv CO2","global",286.8218 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1881,"Simulated","ppmv CO2","global",287.0223 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1882,"Simulated","ppmv CO2","global",287.533533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1883,"Simulated","ppmv CO2","global",287.911766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1884,"Simulated","ppmv CO2","global",288.394733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1885,"Simulated","ppmv CO2","global",288.722733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1886,"Simulated","ppmv CO2","global",288.861533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1887,"Simulated","ppmv CO2","global",289.221966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1888,"Simulated","ppmv CO2","global",289.544266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1889,"Simulated","ppmv CO2","global",289.7233 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1890,"Simulated","ppmv CO2","global",289.752333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1891,"Simulated","ppmv CO2","global",289.827433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1892,"Simulated","ppmv CO2","global",289.886933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1893,"Simulated","ppmv CO2","global",289.839266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1894,"Simulated","ppmv CO2","global",290.0819 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1895,"Simulated","ppmv CO2","global",290.301533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1896,"Simulated","ppmv CO2","global",290.644066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1897,"Simulated","ppmv CO2","global",290.825266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1898,"Simulated","ppmv CO2","global",290.889933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1899,"Simulated","ppmv CO2","global",290.751866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1900,"Simulated","ppmv CO2","global",290.825866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1901,"Simulated","ppmv CO2","global",290.738666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1902,"Simulated","ppmv CO2","global",290.739066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1903,"Simulated","ppmv CO2","global",290.621566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1904,"Simulated","ppmv CO2","global",290.565866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1905,"Simulated","ppmv CO2","global",290.8152 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1906,"Simulated","ppmv CO2","global",291.186666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1907,"Simulated","ppmv CO2","global",291.765833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1908,"Simulated","ppmv CO2","global",292.4634 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1909,"Simulated","ppmv CO2","global",293.246733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1910,"Simulated","ppmv CO2","global",294.105633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1911,"Simulated","ppmv CO2","global",294.8883 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1912,"Simulated","ppmv CO2","global",295.658533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1913,"Simulated","ppmv CO2","global",296.133666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1914,"Simulated","ppmv CO2","global",296.9209 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1915,"Simulated","ppmv CO2","global",297.4642 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1916,"Simulated","ppmv CO2","global",298.0284 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1917,"Simulated","ppmv CO2","global",298.783466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1918,"Simulated","ppmv CO2","global",299.541 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1919,"Simulated","ppmv CO2","global",300.413633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1920,"Simulated","ppmv CO2","global",300.803633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1921,"Simulated","ppmv CO2","global",301.178466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1922,"Simulated","ppmv CO2","global",301.771133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1923,"Simulated","ppmv CO2","global",302.3667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1924,"Simulated","ppmv CO2","global",303.191 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1925,"Simulated","ppmv CO2","global",304.061733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1926,"Simulated","ppmv CO2","global",304.439 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1927,"Simulated","ppmv CO2","global",304.927133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1928,"Simulated","ppmv CO2","global",305.565933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1929,"Simulated","ppmv CO2","global",306.295866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1930,"Simulated","ppmv CO2","global",306.615166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1931,"Simulated","ppmv CO2","global",306.781633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1932,"Simulated","ppmv CO2","global",306.942833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1933,"Simulated","ppmv CO2","global",307.161433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1934,"Simulated","ppmv CO2","global",307.243366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1935,"Simulated","ppmv CO2","global",307.446333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1936,"Simulated","ppmv CO2","global",307.599333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1937,"Simulated","ppmv CO2","global",308.108466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1938,"Simulated","ppmv CO2","global",308.2343 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1939,"Simulated","ppmv CO2","global",308.4404 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1940,"Simulated","ppmv CO2","global",308.991966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1941,"Simulated","ppmv CO2","global",309.380133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1942,"Simulated","ppmv CO2","global",309.914466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1943,"Simulated","ppmv CO2","global",310.630866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1944,"Simulated","ppmv CO2","global",311.336866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1945,"Simulated","ppmv CO2","global",312.098266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1946,"Simulated","ppmv CO2","global",312.944633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1947,"Simulated","ppmv CO2","global",313.746566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1948,"Simulated","ppmv CO2","global",314.448066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1949,"Simulated","ppmv CO2","global",315.1401 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1950,"Simulated","ppmv CO2","global",316.0536 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1951,"Simulated","ppmv CO2","global",316.9629 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1952,"Simulated","ppmv CO2","global",317.849166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1953,"Simulated","ppmv CO2","global",319.092433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1954,"Simulated","ppmv CO2","global",320.2294 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1955,"Simulated","ppmv CO2","global",321.190133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1956,"Simulated","ppmv CO2","global",322.3436 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1957,"Simulated","ppmv CO2","global",323.7005 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1958,"Simulated","ppmv CO2","global",324.858466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1959,"Simulated","ppmv CO2","global",326.088366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1960,"Simulated","ppmv CO2","global",327.090566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1961,"Simulated","ppmv CO2","global",327.954833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1962,"Simulated","ppmv CO2","global",328.787233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1963,"Simulated","ppmv CO2","global",329.6789 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1964,"Simulated","ppmv CO2","global",330.5571 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1965,"Simulated","ppmv CO2","global",331.082266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1966,"Simulated","ppmv CO2","global",331.4647 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1967,"Simulated","ppmv CO2","global",331.831366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1968,"Simulated","ppmv CO2","global",332.200533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1969,"Simulated","ppmv CO2","global",332.752133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1970,"Simulated","ppmv CO2","global",333.387033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1971,"Simulated","ppmv CO2","global",334.5051 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1972,"Simulated","ppmv CO2","global",335.954466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1973,"Simulated","ppmv CO2","global",337.166533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1974,"Simulated","ppmv CO2","global",338.350133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1975,"Simulated","ppmv CO2","global",339.477233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1976,"Simulated","ppmv CO2","global",340.765866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1977,"Simulated","ppmv CO2","global",342.021466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1978,"Simulated","ppmv CO2","global",343.100433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1979,"Simulated","ppmv CO2","global",344.310266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1980,"Simulated","ppmv CO2","global",345.8719 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1981,"Simulated","ppmv CO2","global",347.382633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1982,"Simulated","ppmv CO2","global",348.948333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1983,"Simulated","ppmv CO2","global",350.3276 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1984,"Simulated","ppmv CO2","global",351.698566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1985,"Simulated","ppmv CO2","global",352.879433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1986,"Simulated","ppmv CO2","global",354.362533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1987,"Simulated","ppmv CO2","global",355.955766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1988,"Simulated","ppmv CO2","global",357.755 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1989,"Simulated","ppmv CO2","global",359.341233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1990,"Simulated","ppmv CO2","global",361.264766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1991,"Simulated","ppmv CO2","global",362.9636 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1992,"Simulated","ppmv CO2","global",364.729466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1993,"Simulated","ppmv CO2","global",366.689733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1994,"Simulated","ppmv CO2","global",368.667066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1995,"Simulated","ppmv CO2","global",370.4921 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1996,"Simulated","ppmv CO2","global",372.335233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1997,"Simulated","ppmv CO2","global",374.314733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1998,"Simulated","ppmv CO2","global",376.249366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",1999,"Simulated","ppmv CO2","global",378.211266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2000,"Simulated","ppmv CO2","global",379.994866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2001,"Simulated","ppmv CO2","global",381.915433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2002,"Simulated","ppmv CO2","global",383.854566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2003,"Simulated","ppmv CO2","global",385.626066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2004,"Simulated","ppmv CO2","global",387.6578 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmHistorical",2005,"Simulated","ppmv CO2","global",389.691066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1850,"Simulated","ppmv CO2","HL",284.7762 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1851,"Simulated","ppmv CO2","HL",284.672966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1852,"Simulated","ppmv CO2","HL",284.672533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1853,"Simulated","ppmv CO2","HL",285.0001 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1854,"Simulated","ppmv CO2","HL",285.134333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1855,"Simulated","ppmv CO2","HL",285.211466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1856,"Simulated","ppmv CO2","HL",285.4879 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1857,"Simulated","ppmv CO2","HL",285.563833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1858,"Simulated","ppmv CO2","HL",285.4767 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1859,"Simulated","ppmv CO2","HL",285.434566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1860,"Simulated","ppmv CO2","HL",285.454266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1861,"Simulated","ppmv CO2","HL",285.1816 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1862,"Simulated","ppmv CO2","HL",284.902666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1863,"Simulated","ppmv CO2","HL",284.958333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1864,"Simulated","ppmv CO2","HL",284.9844 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1865,"Simulated","ppmv CO2","HL",285.197533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1866,"Simulated","ppmv CO2","HL",285.2554 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1867,"Simulated","ppmv CO2","HL",285.430133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1868,"Simulated","ppmv CO2","HL",285.781333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1869,"Simulated","ppmv CO2","HL",285.973666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1870,"Simulated","ppmv CO2","HL",286.133166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1871,"Simulated","ppmv CO2","HL",286.368533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1872,"Simulated","ppmv CO2","HL",286.4726 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1873,"Simulated","ppmv CO2","HL",286.727 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1874,"Simulated","ppmv CO2","HL",287.160266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1875,"Simulated","ppmv CO2","HL",287.0705 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1876,"Simulated","ppmv CO2","HL",286.9443 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1877,"Simulated","ppmv CO2","HL",286.8543 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1878,"Simulated","ppmv CO2","HL",286.902666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1879,"Simulated","ppmv CO2","HL",286.968966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1880,"Simulated","ppmv CO2","HL",287.0319 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1881,"Simulated","ppmv CO2","HL",287.176066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1882,"Simulated","ppmv CO2","HL",287.595733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1883,"Simulated","ppmv CO2","HL",287.909866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1884,"Simulated","ppmv CO2","HL",288.334533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1885,"Simulated","ppmv CO2","HL",288.710266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1886,"Simulated","ppmv CO2","HL",288.939466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1887,"Simulated","ppmv CO2","HL",289.245533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1888,"Simulated","ppmv CO2","HL",289.617566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1889,"Simulated","ppmv CO2","HL",289.806166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1890,"Simulated","ppmv CO2","HL",289.897133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1891,"Simulated","ppmv CO2","HL",289.9933 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1892,"Simulated","ppmv CO2","HL",290.0749 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1893,"Simulated","ppmv CO2","HL",290.068233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1894,"Simulated","ppmv CO2","HL",290.254333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1895,"Simulated","ppmv CO2","HL",290.4294 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1896,"Simulated","ppmv CO2","HL",290.730133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1897,"Simulated","ppmv CO2","HL",290.912833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1898,"Simulated","ppmv CO2","HL",291.0499 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1899,"Simulated","ppmv CO2","HL",290.963666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1900,"Simulated","ppmv CO2","HL",291.0478 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1901,"Simulated","ppmv CO2","HL",291.003733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1902,"Simulated","ppmv CO2","HL",291.016233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1903,"Simulated","ppmv CO2","HL",290.9378 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1904,"Simulated","ppmv CO2","HL",290.833533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1905,"Simulated","ppmv CO2","HL",290.974766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1906,"Simulated","ppmv CO2","HL",291.2849 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1907,"Simulated","ppmv CO2","HL",291.7509 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1908,"Simulated","ppmv CO2","HL",292.340033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1909,"Simulated","ppmv CO2","HL",293.045333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1910,"Simulated","ppmv CO2","HL",293.870466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1911,"Simulated","ppmv CO2","HL",294.6437 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1912,"Simulated","ppmv CO2","HL",295.452 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1913,"Simulated","ppmv CO2","HL",295.9735 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1914,"Simulated","ppmv CO2","HL",296.714466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1915,"Simulated","ppmv CO2","HL",297.332533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1916,"Simulated","ppmv CO2","HL",297.926633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1917,"Simulated","ppmv CO2","HL",298.6347 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1918,"Simulated","ppmv CO2","HL",299.369 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1919,"Simulated","ppmv CO2","HL",300.195466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1920,"Simulated","ppmv CO2","HL",300.692566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1921,"Simulated","ppmv CO2","HL",301.0932 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1922,"Simulated","ppmv CO2","HL",301.689233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1923,"Simulated","ppmv CO2","HL",302.268166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1924,"Simulated","ppmv CO2","HL",303.0133 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1925,"Simulated","ppmv CO2","HL",303.868 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1926,"Simulated","ppmv CO2","HL",304.334833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1927,"Simulated","ppmv CO2","HL",304.839366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1928,"Simulated","ppmv CO2","HL",305.4692 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1929,"Simulated","ppmv CO2","HL",306.195633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1930,"Simulated","ppmv CO2","HL",306.614666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1931,"Simulated","ppmv CO2","HL",306.802266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1932,"Simulated","ppmv CO2","HL",307.0484 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1933,"Simulated","ppmv CO2","HL",307.287933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1934,"Simulated","ppmv CO2","HL",307.430133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1935,"Simulated","ppmv CO2","HL",307.590533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1936,"Simulated","ppmv CO2","HL",307.768466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1937,"Simulated","ppmv CO2","HL",308.1934 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1938,"Simulated","ppmv CO2","HL",308.368266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1939,"Simulated","ppmv CO2","HL",308.5292 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1940,"Simulated","ppmv CO2","HL",309.0249 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1941,"Simulated","ppmv CO2","HL",309.415433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1942,"Simulated","ppmv CO2","HL",309.886066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1943,"Simulated","ppmv CO2","HL",310.5526 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1944,"Simulated","ppmv CO2","HL",311.2146 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1945,"Simulated","ppmv CO2","HL",311.900933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1946,"Simulated","ppmv CO2","HL",312.719533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1947,"Simulated","ppmv CO2","HL",313.529566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1948,"Simulated","ppmv CO2","HL",314.287066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1949,"Simulated","ppmv CO2","HL",314.941166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1950,"Simulated","ppmv CO2","HL",315.838766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1951,"Simulated","ppmv CO2","HL",316.748766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1952,"Simulated","ppmv CO2","HL",317.5723 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1953,"Simulated","ppmv CO2","HL",318.7093 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1954,"Simulated","ppmv CO2","HL",319.8569 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1955,"Simulated","ppmv CO2","HL",320.847966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1956,"Simulated","ppmv CO2","HL",321.930633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1957,"Simulated","ppmv CO2","HL",323.243933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1958,"Simulated","ppmv CO2","HL",324.459166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1959,"Simulated","ppmv CO2","HL",325.663366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1960,"Simulated","ppmv CO2","HL",326.7367 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1961,"Simulated","ppmv CO2","HL",327.6558 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1962,"Simulated","ppmv CO2","HL",328.5506 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1963,"Simulated","ppmv CO2","HL",329.450433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1964,"Simulated","ppmv CO2","HL",330.380333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1965,"Simulated","ppmv CO2","HL",330.9994 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1966,"Simulated","ppmv CO2","HL",331.453333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1967,"Simulated","ppmv CO2","HL",331.897133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1968,"Simulated","ppmv CO2","HL",332.291133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1969,"Simulated","ppmv CO2","HL",332.7993 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1970,"Simulated","ppmv CO2","HL",333.387266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1971,"Simulated","ppmv CO2","HL",334.288033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1972,"Simulated","ppmv CO2","HL",335.586533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1973,"Simulated","ppmv CO2","HL",336.809433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1974,"Simulated","ppmv CO2","HL",337.941066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1975,"Simulated","ppmv CO2","HL",339.080866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1976,"Simulated","ppmv CO2","HL",340.362533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1977,"Simulated","ppmv CO2","HL",341.6588 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1978,"Simulated","ppmv CO2","HL",342.770333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1979,"Simulated","ppmv CO2","HL",343.968633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1980,"Simulated","ppmv CO2","HL",345.4147 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1981,"Simulated","ppmv CO2","HL",346.910333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1982,"Simulated","ppmv CO2","HL",348.3942 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1983,"Simulated","ppmv CO2","HL",349.7893 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1984,"Simulated","ppmv CO2","HL",351.250733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1985,"Simulated","ppmv CO2","HL",352.4952 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1986,"Simulated","ppmv CO2","HL",353.960566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1987,"Simulated","ppmv CO2","HL",355.465066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1988,"Simulated","ppmv CO2","HL",357.188733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1989,"Simulated","ppmv CO2","HL",358.751733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1990,"Simulated","ppmv CO2","HL",360.608166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1991,"Simulated","ppmv CO2","HL",362.313433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1992,"Simulated","ppmv CO2","HL",364.1033 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1993,"Simulated","ppmv CO2","HL",365.9692 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1994,"Simulated","ppmv CO2","HL",367.938433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1995,"Simulated","ppmv CO2","HL",369.8262 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1996,"Simulated","ppmv CO2","HL",371.653333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1997,"Simulated","ppmv CO2","HL",373.639666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1998,"Simulated","ppmv CO2","HL",375.5121 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1999,"Simulated","ppmv CO2","HL",377.505433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2000,"Simulated","ppmv CO2","HL",379.3333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2001,"Simulated","ppmv CO2","HL",381.240366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2002,"Simulated","ppmv CO2","HL",383.168633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2003,"Simulated","ppmv CO2","HL",384.959133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2004,"Simulated","ppmv CO2","HL",386.9909 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2005,"Simulated","ppmv CO2","HL",388.962533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1850,"Simulated","ppmv CO2","LL",284.493933333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1851,"Simulated","ppmv CO2","LL",284.2865 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1852,"Simulated","ppmv CO2","LL",284.3427 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1853,"Simulated","ppmv CO2","LL",284.8268 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1854,"Simulated","ppmv CO2","LL",284.954266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1855,"Simulated","ppmv CO2","LL",285.1121 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1856,"Simulated","ppmv CO2","LL",285.367666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1857,"Simulated","ppmv CO2","LL",285.396533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1858,"Simulated","ppmv CO2","LL",285.2043 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1859,"Simulated","ppmv CO2","LL",285.171066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1860,"Simulated","ppmv CO2","LL",285.139666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1861,"Simulated","ppmv CO2","LL",284.753966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1862,"Simulated","ppmv CO2","LL",284.504466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1863,"Simulated","ppmv CO2","LL",284.6185 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1864,"Simulated","ppmv CO2","LL",284.735 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1865,"Simulated","ppmv CO2","LL",285.035766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1866,"Simulated","ppmv CO2","LL",285.0466 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1867,"Simulated","ppmv CO2","LL",285.321666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1868,"Simulated","ppmv CO2","LL",285.637566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1869,"Simulated","ppmv CO2","LL",285.870533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1870,"Simulated","ppmv CO2","LL",285.988566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1871,"Simulated","ppmv CO2","LL",286.245466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1872,"Simulated","ppmv CO2","LL",286.3035 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1873,"Simulated","ppmv CO2","LL",286.650466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1874,"Simulated","ppmv CO2","LL",287.042266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1875,"Simulated","ppmv CO2","LL",286.8518 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1876,"Simulated","ppmv CO2","LL",286.653866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1877,"Simulated","ppmv CO2","LL",286.561533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1878,"Simulated","ppmv CO2","LL",286.585166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1879,"Simulated","ppmv CO2","LL",286.6467 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1880,"Simulated","ppmv CO2","LL",286.7779 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1881,"Simulated","ppmv CO2","LL",286.990166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1882,"Simulated","ppmv CO2","LL",287.520533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1883,"Simulated","ppmv CO2","LL",287.912166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1884,"Simulated","ppmv CO2","LL",288.407266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1885,"Simulated","ppmv CO2","LL",288.725333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1886,"Simulated","ppmv CO2","LL",288.845266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1887,"Simulated","ppmv CO2","LL",289.217033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1888,"Simulated","ppmv CO2","LL",289.528966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1889,"Simulated","ppmv CO2","LL",289.706033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1890,"Simulated","ppmv CO2","LL",289.722066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1891,"Simulated","ppmv CO2","LL",289.792733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1892,"Simulated","ppmv CO2","LL",289.847666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1893,"Simulated","ppmv CO2","LL",289.791466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1894,"Simulated","ppmv CO2","LL",290.0459 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1895,"Simulated","ppmv CO2","LL",290.274833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1896,"Simulated","ppmv CO2","LL",290.6261 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1897,"Simulated","ppmv CO2","LL",290.807033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1898,"Simulated","ppmv CO2","LL",290.8565 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1899,"Simulated","ppmv CO2","LL",290.707633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1900,"Simulated","ppmv CO2","LL",290.779533333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1901,"Simulated","ppmv CO2","LL",290.6833 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1902,"Simulated","ppmv CO2","LL",290.681233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1903,"Simulated","ppmv CO2","LL",290.5555 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1904,"Simulated","ppmv CO2","LL",290.509966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1905,"Simulated","ppmv CO2","LL",290.781866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1906,"Simulated","ppmv CO2","LL",291.166133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1907,"Simulated","ppmv CO2","LL",291.768966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1908,"Simulated","ppmv CO2","LL",292.489133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1909,"Simulated","ppmv CO2","LL",293.2888 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1910,"Simulated","ppmv CO2","LL",294.154733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1911,"Simulated","ppmv CO2","LL",294.939333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1912,"Simulated","ppmv CO2","LL",295.701633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1913,"Simulated","ppmv CO2","LL",296.167133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1914,"Simulated","ppmv CO2","LL",296.964 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1915,"Simulated","ppmv CO2","LL",297.491666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1916,"Simulated","ppmv CO2","LL",298.049633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1917,"Simulated","ppmv CO2","LL",298.8145 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1918,"Simulated","ppmv CO2","LL",299.5769 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1919,"Simulated","ppmv CO2","LL",300.4592 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1920,"Simulated","ppmv CO2","LL",300.826833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1921,"Simulated","ppmv CO2","LL",301.196333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1922,"Simulated","ppmv CO2","LL",301.788233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1923,"Simulated","ppmv CO2","LL",302.3873 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1924,"Simulated","ppmv CO2","LL",303.228133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1925,"Simulated","ppmv CO2","LL",304.102166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1926,"Simulated","ppmv CO2","LL",304.460766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1927,"Simulated","ppmv CO2","LL",304.945433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1928,"Simulated","ppmv CO2","LL",305.586166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1929,"Simulated","ppmv CO2","LL",306.316766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1930,"Simulated","ppmv CO2","LL",306.615233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1931,"Simulated","ppmv CO2","LL",306.777333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1932,"Simulated","ppmv CO2","LL",306.920766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1933,"Simulated","ppmv CO2","LL",307.135 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1934,"Simulated","ppmv CO2","LL",307.204333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1935,"Simulated","ppmv CO2","LL",307.4162 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1936,"Simulated","ppmv CO2","LL",307.563966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1937,"Simulated","ppmv CO2","LL",308.090733333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1938,"Simulated","ppmv CO2","LL",308.206366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1939,"Simulated","ppmv CO2","LL",308.4219 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1940,"Simulated","ppmv CO2","LL",308.985066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1941,"Simulated","ppmv CO2","LL",309.372766666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1942,"Simulated","ppmv CO2","LL",309.9204 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1943,"Simulated","ppmv CO2","LL",310.6472 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1944,"Simulated","ppmv CO2","LL",311.3624 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1945,"Simulated","ppmv CO2","LL",312.139466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1946,"Simulated","ppmv CO2","LL",312.991633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1947,"Simulated","ppmv CO2","LL",313.791833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1948,"Simulated","ppmv CO2","LL",314.481666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1949,"Simulated","ppmv CO2","LL",315.181666666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1950,"Simulated","ppmv CO2","LL",316.098466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1951,"Simulated","ppmv CO2","LL",317.007566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1952,"Simulated","ppmv CO2","LL",317.907033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1953,"Simulated","ppmv CO2","LL",319.1724 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1954,"Simulated","ppmv CO2","LL",320.307166666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1955,"Simulated","ppmv CO2","LL",321.2616 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1956,"Simulated","ppmv CO2","LL",322.4298 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1957,"Simulated","ppmv CO2","LL",323.7958 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1958,"Simulated","ppmv CO2","LL",324.941833333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1959,"Simulated","ppmv CO2","LL",326.177133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1960,"Simulated","ppmv CO2","LL",327.164466666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1961,"Simulated","ppmv CO2","LL",328.017266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1962,"Simulated","ppmv CO2","LL",328.836633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1963,"Simulated","ppmv CO2","LL",329.726566666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1964,"Simulated","ppmv CO2","LL",330.594 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1965,"Simulated","ppmv CO2","LL",331.0996 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1966,"Simulated","ppmv CO2","LL",331.467133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1967,"Simulated","ppmv CO2","LL",331.817633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1968,"Simulated","ppmv CO2","LL",332.181633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1969,"Simulated","ppmv CO2","LL",332.742266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1970,"Simulated","ppmv CO2","LL",333.386966666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1971,"Simulated","ppmv CO2","LL",334.550433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1972,"Simulated","ppmv CO2","LL",336.031266666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1973,"Simulated","ppmv CO2","LL",337.2411 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1974,"Simulated","ppmv CO2","LL",338.4355 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1975,"Simulated","ppmv CO2","LL",339.56 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1976,"Simulated","ppmv CO2","LL",340.8501 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1977,"Simulated","ppmv CO2","LL",342.0972 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1978,"Simulated","ppmv CO2","LL",343.169366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1979,"Simulated","ppmv CO2","LL",344.3816 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1980,"Simulated","ppmv CO2","LL",345.967433333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1981,"Simulated","ppmv CO2","LL",347.481233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1982,"Simulated","ppmv CO2","LL",349.064033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1983,"Simulated","ppmv CO2","LL",350.44 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1984,"Simulated","ppmv CO2","LL",351.792066666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1985,"Simulated","ppmv CO2","LL",352.959633333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1986,"Simulated","ppmv CO2","LL",354.4465 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1987,"Simulated","ppmv CO2","LL",356.0582 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1988,"Simulated","ppmv CO2","LL",357.873233333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1989,"Simulated","ppmv CO2","LL",359.464333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1990,"Simulated","ppmv CO2","LL",361.401866666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1991,"Simulated","ppmv CO2","LL",363.099366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1992,"Simulated","ppmv CO2","LL",364.8602 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1993,"Simulated","ppmv CO2","LL",366.840133333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1994,"Simulated","ppmv CO2","LL",368.8192 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1995,"Simulated","ppmv CO2","LL",370.6311 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1996,"Simulated","ppmv CO2","LL",372.4776 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1997,"Simulated","ppmv CO2","LL",374.4557 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1998,"Simulated","ppmv CO2","LL",376.4033 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1999,"Simulated","ppmv CO2","LL",378.3586 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2000,"Simulated","ppmv CO2","LL",380.133 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2001,"Simulated","ppmv CO2","LL",382.056366666667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2002,"Simulated","ppmv CO2","LL",383.9978 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2003,"Simulated","ppmv CO2","LL",385.765333333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2004,"Simulated","ppmv CO2","LL",387.797033333333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2005,"Simulated","ppmv CO2","LL",389.843133333333 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1850,"Simulated","ppmv CO2","global",279.2436 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1851,"Simulated","ppmv CO2","global",279.823 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1852,"Simulated","ppmv CO2","global",279.7383 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1853,"Simulated","ppmv CO2","global",279.5493 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1854,"Simulated","ppmv CO2","global",279.7808 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1855,"Simulated","ppmv CO2","global",279.7888 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1856,"Simulated","ppmv CO2","global",279.934 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1857,"Simulated","ppmv CO2","global",280.0207 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1858,"Simulated","ppmv CO2","global",280.3125 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1859,"Simulated","ppmv CO2","global",280.5158 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1860,"Simulated","ppmv CO2","global",280.6631 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1861,"Simulated","ppmv CO2","global",280.8736 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1862,"Simulated","ppmv CO2","global",280.7887 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1863,"Simulated","ppmv CO2","global",281.202 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1864,"Simulated","ppmv CO2","global",281.6083 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1865,"Simulated","ppmv CO2","global",281.7013 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1866,"Simulated","ppmv CO2","global",281.9819 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1867,"Simulated","ppmv CO2","global",282.3664 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1868,"Simulated","ppmv CO2","global",282.4269 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1869,"Simulated","ppmv CO2","global",282.4297 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1870,"Simulated","ppmv CO2","global",282.6963 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1871,"Simulated","ppmv CO2","global",283.1589 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1872,"Simulated","ppmv CO2","global",283.2903 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1873,"Simulated","ppmv CO2","global",283.1965 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1874,"Simulated","ppmv CO2","global",283.1632 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1875,"Simulated","ppmv CO2","global",283.6292 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1876,"Simulated","ppmv CO2","global",283.7691 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1877,"Simulated","ppmv CO2","global",283.6236 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1878,"Simulated","ppmv CO2","global",283.854 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1879,"Simulated","ppmv CO2","global",284.3049 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1880,"Simulated","ppmv CO2","global",284.5657 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1881,"Simulated","ppmv CO2","global",284.537 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1882,"Simulated","ppmv CO2","global",284.4935 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1883,"Simulated","ppmv CO2","global",284.561 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1884,"Simulated","ppmv CO2","global",284.8185 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1885,"Simulated","ppmv CO2","global",284.9509 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1886,"Simulated","ppmv CO2","global",284.8095 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1887,"Simulated","ppmv CO2","global",285.123 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1888,"Simulated","ppmv CO2","global",285.6384 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1889,"Simulated","ppmv CO2","global",285.4758 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1890,"Simulated","ppmv CO2","global",285.7652 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1891,"Simulated","ppmv CO2","global",286.1046 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1892,"Simulated","ppmv CO2","global",286.275 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1893,"Simulated","ppmv CO2","global",286.3165 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1894,"Simulated","ppmv CO2","global",287.0825 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1895,"Simulated","ppmv CO2","global",286.9654 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1896,"Simulated","ppmv CO2","global",287.017 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1897,"Simulated","ppmv CO2","global",287.713 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1898,"Simulated","ppmv CO2","global",287.9261 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1899,"Simulated","ppmv CO2","global",287.9171 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1900,"Simulated","ppmv CO2","global",288.1931 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1901,"Simulated","ppmv CO2","global",288.3693 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1902,"Simulated","ppmv CO2","global",288.6728 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1903,"Simulated","ppmv CO2","global",288.7832 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1904,"Simulated","ppmv CO2","global",288.851 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1905,"Simulated","ppmv CO2","global",289.1416 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1906,"Simulated","ppmv CO2","global",289.5593 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1907,"Simulated","ppmv CO2","global",290.0538 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1908,"Simulated","ppmv CO2","global",290.6339 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1909,"Simulated","ppmv CO2","global",291.2366 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1910,"Simulated","ppmv CO2","global",291.4115 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1911,"Simulated","ppmv CO2","global",292.216 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1912,"Simulated","ppmv CO2","global",292.6871 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1913,"Simulated","ppmv CO2","global",292.9659 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1914,"Simulated","ppmv CO2","global",293.6047 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1915,"Simulated","ppmv CO2","global",293.9486 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1916,"Simulated","ppmv CO2","global",294.0376 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1917,"Simulated","ppmv CO2","global",294.7268 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1918,"Simulated","ppmv CO2","global",295.2352 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1919,"Simulated","ppmv CO2","global",295.2798 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1920,"Simulated","ppmv CO2","global",295.7095 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1921,"Simulated","ppmv CO2","global",296.1326 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1922,"Simulated","ppmv CO2","global",296.3642 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1923,"Simulated","ppmv CO2","global",296.6309 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1924,"Simulated","ppmv CO2","global",296.7035 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1925,"Simulated","ppmv CO2","global",297.2934 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1926,"Simulated","ppmv CO2","global",297.6235 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1927,"Simulated","ppmv CO2","global",298.0233 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1928,"Simulated","ppmv CO2","global",298.4358 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1929,"Simulated","ppmv CO2","global",298.2329 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1930,"Simulated","ppmv CO2","global",298.6381 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1931,"Simulated","ppmv CO2","global",299.2894 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1932,"Simulated","ppmv CO2","global",299.6889 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1933,"Simulated","ppmv CO2","global",300.0163 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1934,"Simulated","ppmv CO2","global",300.6236 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1935,"Simulated","ppmv CO2","global",301.0181 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1936,"Simulated","ppmv CO2","global",301.149 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1937,"Simulated","ppmv CO2","global",301.833 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1938,"Simulated","ppmv CO2","global",302.1963 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1939,"Simulated","ppmv CO2","global",302.7319 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1940,"Simulated","ppmv CO2","global",303.1429 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1941,"Simulated","ppmv CO2","global",303.6972 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1942,"Simulated","ppmv CO2","global",304.126 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1943,"Simulated","ppmv CO2","global",304.2888 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1944,"Simulated","ppmv CO2","global",304.6127 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1945,"Simulated","ppmv CO2","global",305.0016 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1946,"Simulated","ppmv CO2","global",305.3943 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1947,"Simulated","ppmv CO2","global",305.8155 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1948,"Simulated","ppmv CO2","global",306.0731 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1949,"Simulated","ppmv CO2","global",306.6386 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1950,"Simulated","ppmv CO2","global",307.451 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1951,"Simulated","ppmv CO2","global",308.2051 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1952,"Simulated","ppmv CO2","global",308.4455 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1953,"Simulated","ppmv CO2","global",309.2283 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1954,"Simulated","ppmv CO2","global",310.2085 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1955,"Simulated","ppmv CO2","global",311.1634 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1956,"Simulated","ppmv CO2","global",312.1996 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1957,"Simulated","ppmv CO2","global",313.2736 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1958,"Simulated","ppmv CO2","global",314.2161 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1959,"Simulated","ppmv CO2","global",315.179 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1960,"Simulated","ppmv CO2","global",316.4955 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1961,"Simulated","ppmv CO2","global",317.4375 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1962,"Simulated","ppmv CO2","global",318.013 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1963,"Simulated","ppmv CO2","global",318.7876 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1964,"Simulated","ppmv CO2","global",320.0643 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1965,"Simulated","ppmv CO2","global",320.8047 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1966,"Simulated","ppmv CO2","global",321.9362 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1967,"Simulated","ppmv CO2","global",322.9595 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1968,"Simulated","ppmv CO2","global",323.7302 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1969,"Simulated","ppmv CO2","global",324.6028 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1970,"Simulated","ppmv CO2","global",325.6826 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1971,"Simulated","ppmv CO2","global",326.7125 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1972,"Simulated","ppmv CO2","global",327.8833 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1973,"Simulated","ppmv CO2","global",329.5002 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1974,"Simulated","ppmv CO2","global",330.7468 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1975,"Simulated","ppmv CO2","global",332.191 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1976,"Simulated","ppmv CO2","global",333.6079 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1977,"Simulated","ppmv CO2","global",335.0145 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1978,"Simulated","ppmv CO2","global",336.8021 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1979,"Simulated","ppmv CO2","global",338.4957 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1980,"Simulated","ppmv CO2","global",339.6572 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1981,"Simulated","ppmv CO2","global",341.1646 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1982,"Simulated","ppmv CO2","global",343.0393 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1983,"Simulated","ppmv CO2","global",344.3461 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1984,"Simulated","ppmv CO2","global",346.1373 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1985,"Simulated","ppmv CO2","global",347.9643 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1986,"Simulated","ppmv CO2","global",349.8008 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1987,"Simulated","ppmv CO2","global",351.2761 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1988,"Simulated","ppmv CO2","global",353.5586 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1989,"Simulated","ppmv CO2","global",355.3436 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1990,"Simulated","ppmv CO2","global",357.3821 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1991,"Simulated","ppmv CO2","global",359.3584 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1992,"Simulated","ppmv CO2","global",361.3248 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1993,"Simulated","ppmv CO2","global",363.0231 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1994,"Simulated","ppmv CO2","global",364.6789 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1995,"Simulated","ppmv CO2","global",366.4488 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1996,"Simulated","ppmv CO2","global",368.2953 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1997,"Simulated","ppmv CO2","global",370.1908 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1998,"Simulated","ppmv CO2","global",372.4689 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",1999,"Simulated","ppmv CO2","global",374.2209 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2000,"Simulated","ppmv CO2","global",376.2558 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2001,"Simulated","ppmv CO2","global",377.797 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2002,"Simulated","ppmv CO2","global",379.4667 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2003,"Simulated","ppmv CO2","global",381.2698 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2004,"Simulated","ppmv CO2","global",383.4447 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmHistorical",2005,"Simulated","ppmv CO2","global",385.3799 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1850,"Simulated","ppmv CO2","HL",279.2695 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1851,"Simulated","ppmv CO2","HL",279.6505 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1852,"Simulated","ppmv CO2","HL",279.6161 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1853,"Simulated","ppmv CO2","HL",279.4237 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1854,"Simulated","ppmv CO2","HL",279.5893 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1855,"Simulated","ppmv CO2","HL",279.7028 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1856,"Simulated","ppmv CO2","HL",279.786 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1857,"Simulated","ppmv CO2","HL",279.8353 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1858,"Simulated","ppmv CO2","HL",280.0675 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1859,"Simulated","ppmv CO2","HL",280.2782 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1860,"Simulated","ppmv CO2","HL",280.4103 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1861,"Simulated","ppmv CO2","HL",280.7389 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1862,"Simulated","ppmv CO2","HL",280.6325 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1863,"Simulated","ppmv CO2","HL",280.9259 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1864,"Simulated","ppmv CO2","HL",281.3178 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1865,"Simulated","ppmv CO2","HL",281.4748 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1866,"Simulated","ppmv CO2","HL",281.7012 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1867,"Simulated","ppmv CO2","HL",282.0935 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1868,"Simulated","ppmv CO2","HL",282.2001 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1869,"Simulated","ppmv CO2","HL",282.2217 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1870,"Simulated","ppmv CO2","HL",282.5121 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1871,"Simulated","ppmv CO2","HL",282.8324 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1872,"Simulated","ppmv CO2","HL",283.0436 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1873,"Simulated","ppmv CO2","HL",283.0543 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1874,"Simulated","ppmv CO2","HL",283.0103 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1875,"Simulated","ppmv CO2","HL",283.3951 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1876,"Simulated","ppmv CO2","HL",283.5899 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1877,"Simulated","ppmv CO2","HL",283.4269 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1878,"Simulated","ppmv CO2","HL",283.6171 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1879,"Simulated","ppmv CO2","HL",284.1047 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1880,"Simulated","ppmv CO2","HL",284.3191 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1881,"Simulated","ppmv CO2","HL",284.3776 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1882,"Simulated","ppmv CO2","HL",284.3024 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1883,"Simulated","ppmv CO2","HL",284.405 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1884,"Simulated","ppmv CO2","HL",284.618 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1885,"Simulated","ppmv CO2","HL",284.7946 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1886,"Simulated","ppmv CO2","HL",284.7133 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1887,"Simulated","ppmv CO2","HL",284.8566 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1888,"Simulated","ppmv CO2","HL",285.3611 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1889,"Simulated","ppmv CO2","HL",285.3239 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1890,"Simulated","ppmv CO2","HL",285.5513 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1891,"Simulated","ppmv CO2","HL",285.8607 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1892,"Simulated","ppmv CO2","HL",286.0976 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1893,"Simulated","ppmv CO2","HL",286.1037 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1894,"Simulated","ppmv CO2","HL",286.7022 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1895,"Simulated","ppmv CO2","HL",286.8129 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1896,"Simulated","ppmv CO2","HL",286.8114 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1897,"Simulated","ppmv CO2","HL",287.4001 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1898,"Simulated","ppmv CO2","HL",287.6839 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1899,"Simulated","ppmv CO2","HL",287.6955 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1900,"Simulated","ppmv CO2","HL",287.9981 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1901,"Simulated","ppmv CO2","HL",288.1698 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1902,"Simulated","ppmv CO2","HL",288.4057 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1903,"Simulated","ppmv CO2","HL",288.5652 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1904,"Simulated","ppmv CO2","HL",288.6915 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1905,"Simulated","ppmv CO2","HL",288.955 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1906,"Simulated","ppmv CO2","HL",289.2914 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1907,"Simulated","ppmv CO2","HL",289.7438 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1908,"Simulated","ppmv CO2","HL",290.2608 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1909,"Simulated","ppmv CO2","HL",290.8865 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1910,"Simulated","ppmv CO2","HL",291.1235 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1911,"Simulated","ppmv CO2","HL",291.7758 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1912,"Simulated","ppmv CO2","HL",292.3368 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1913,"Simulated","ppmv CO2","HL",292.6315 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1914,"Simulated","ppmv CO2","HL",293.1805 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1915,"Simulated","ppmv CO2","HL",293.668 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1916,"Simulated","ppmv CO2","HL",293.7771 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1917,"Simulated","ppmv CO2","HL",294.349 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1918,"Simulated","ppmv CO2","HL",294.9502 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1919,"Simulated","ppmv CO2","HL",294.9998 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1920,"Simulated","ppmv CO2","HL",295.3609 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1921,"Simulated","ppmv CO2","HL",295.8082 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1922,"Simulated","ppmv CO2","HL",296.0881 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1923,"Simulated","ppmv CO2","HL",296.3424 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1924,"Simulated","ppmv CO2","HL",296.5177 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1925,"Simulated","ppmv CO2","HL",296.9748 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1926,"Simulated","ppmv CO2","HL",297.336 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1927,"Simulated","ppmv CO2","HL",297.6669 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1928,"Simulated","ppmv CO2","HL",298.1814 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1929,"Simulated","ppmv CO2","HL",298.0772 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1930,"Simulated","ppmv CO2","HL",298.3127 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1931,"Simulated","ppmv CO2","HL",298.9668 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1932,"Simulated","ppmv CO2","HL",299.3794 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1933,"Simulated","ppmv CO2","HL",299.7123 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1934,"Simulated","ppmv CO2","HL",300.2314 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1935,"Simulated","ppmv CO2","HL",300.6812 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1936,"Simulated","ppmv CO2","HL",300.8198 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1937,"Simulated","ppmv CO2","HL",301.533 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1938,"Simulated","ppmv CO2","HL",301.9303 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1939,"Simulated","ppmv CO2","HL",302.3547 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1940,"Simulated","ppmv CO2","HL",302.7687 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1941,"Simulated","ppmv CO2","HL",303.2532 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1942,"Simulated","ppmv CO2","HL",303.8532 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1943,"Simulated","ppmv CO2","HL",304.0253 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1944,"Simulated","ppmv CO2","HL",304.3445 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1945,"Simulated","ppmv CO2","HL",304.6877 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1946,"Simulated","ppmv CO2","HL",305.07 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1947,"Simulated","ppmv CO2","HL",305.4619 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1948,"Simulated","ppmv CO2","HL",305.7966 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1949,"Simulated","ppmv CO2","HL",306.3057 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1950,"Simulated","ppmv CO2","HL",307.0018 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1951,"Simulated","ppmv CO2","HL",307.7884 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1952,"Simulated","ppmv CO2","HL",308.116 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1953,"Simulated","ppmv CO2","HL",308.7645 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1954,"Simulated","ppmv CO2","HL",309.7138 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1955,"Simulated","ppmv CO2","HL",310.5847 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1956,"Simulated","ppmv CO2","HL",311.6041 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1957,"Simulated","ppmv CO2","HL",312.7111 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1958,"Simulated","ppmv CO2","HL",313.6085 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1959,"Simulated","ppmv CO2","HL",314.5319 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1960,"Simulated","ppmv CO2","HL",315.773 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1961,"Simulated","ppmv CO2","HL",316.8769 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1962,"Simulated","ppmv CO2","HL",317.4957 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1963,"Simulated","ppmv CO2","HL",318.2189 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1964,"Simulated","ppmv CO2","HL",319.4912 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1965,"Simulated","ppmv CO2","HL",320.2964 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1966,"Simulated","ppmv CO2","HL",321.3474 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1967,"Simulated","ppmv CO2","HL",322.3739 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1968,"Simulated","ppmv CO2","HL",323.1638 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1969,"Simulated","ppmv CO2","HL",324.1861 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1970,"Simulated","ppmv CO2","HL",325.1742 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1971,"Simulated","ppmv CO2","HL",326.1026 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1972,"Simulated","ppmv CO2","HL",327.3333 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1973,"Simulated","ppmv CO2","HL",328.7159 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1974,"Simulated","ppmv CO2","HL",330.0737 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1975,"Simulated","ppmv CO2","HL",331.4385 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1976,"Simulated","ppmv CO2","HL",332.8672 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1977,"Simulated","ppmv CO2","HL",334.2073 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1978,"Simulated","ppmv CO2","HL",335.9461 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1979,"Simulated","ppmv CO2","HL",337.6841 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1980,"Simulated","ppmv CO2","HL",338.9078 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1981,"Simulated","ppmv CO2","HL",340.3654 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1982,"Simulated","ppmv CO2","HL",342.1848 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1983,"Simulated","ppmv CO2","HL",343.484 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1984,"Simulated","ppmv CO2","HL",345.2198 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1985,"Simulated","ppmv CO2","HL",347.0947 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1986,"Simulated","ppmv CO2","HL",348.8846 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1987,"Simulated","ppmv CO2","HL",350.3203 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1988,"Simulated","ppmv CO2","HL",352.4796 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1989,"Simulated","ppmv CO2","HL",354.3609 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1990,"Simulated","ppmv CO2","HL",356.3415 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1991,"Simulated","ppmv CO2","HL",358.3893 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1992,"Simulated","ppmv CO2","HL",360.2037 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1993,"Simulated","ppmv CO2","HL",362.0347 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1994,"Simulated","ppmv CO2","HL",363.6977 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1995,"Simulated","ppmv CO2","HL",365.4908 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1996,"Simulated","ppmv CO2","HL",367.317 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1997,"Simulated","ppmv CO2","HL",369.1744 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1998,"Simulated","ppmv CO2","HL",371.3288 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",1999,"Simulated","ppmv CO2","HL",373.1578 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2000,"Simulated","ppmv CO2","HL",375.122 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2001,"Simulated","ppmv CO2","HL",376.8572 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2002,"Simulated","ppmv CO2","HL",378.5051 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2003,"Simulated","ppmv CO2","HL",380.2494 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2004,"Simulated","ppmv CO2","HL",382.327 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmHistorical",2005,"Simulated","ppmv CO2","HL",384.2981 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1850,"Simulated","ppmv CO2","LL",279.2379 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1851,"Simulated","ppmv CO2","LL",279.8612 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1852,"Simulated","ppmv CO2","LL",279.7654 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1853,"Simulated","ppmv CO2","LL",279.5772 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1854,"Simulated","ppmv CO2","LL",279.8233 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1855,"Simulated","ppmv CO2","LL",279.8078 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1856,"Simulated","ppmv CO2","LL",279.9668 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1857,"Simulated","ppmv CO2","LL",280.0618 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1858,"Simulated","ppmv CO2","LL",280.3667 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1859,"Simulated","ppmv CO2","LL",280.5685 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1860,"Simulated","ppmv CO2","LL",280.7191 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1861,"Simulated","ppmv CO2","LL",280.9035 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1862,"Simulated","ppmv CO2","LL",280.8233 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1863,"Simulated","ppmv CO2","LL",281.2632 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1864,"Simulated","ppmv CO2","LL",281.6727 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1865,"Simulated","ppmv CO2","LL",281.7515 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1866,"Simulated","ppmv CO2","LL",282.0441 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1867,"Simulated","ppmv CO2","LL",282.4268 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1868,"Simulated","ppmv CO2","LL",282.4771 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1869,"Simulated","ppmv CO2","LL",282.4758 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1870,"Simulated","ppmv CO2","LL",282.7372 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1871,"Simulated","ppmv CO2","LL",283.2312 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1872,"Simulated","ppmv CO2","LL",283.345 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1873,"Simulated","ppmv CO2","LL",283.228 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1874,"Simulated","ppmv CO2","LL",283.1971 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1875,"Simulated","ppmv CO2","LL",283.6811 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1876,"Simulated","ppmv CO2","LL",283.8088 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1877,"Simulated","ppmv CO2","LL",283.6672 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1878,"Simulated","ppmv CO2","LL",283.9065 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1879,"Simulated","ppmv CO2","LL",284.3492 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1880,"Simulated","ppmv CO2","LL",284.6204 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1881,"Simulated","ppmv CO2","LL",284.5724 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1882,"Simulated","ppmv CO2","LL",284.5359 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1883,"Simulated","ppmv CO2","LL",284.5956 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1884,"Simulated","ppmv CO2","LL",284.8629 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1885,"Simulated","ppmv CO2","LL",284.9855 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1886,"Simulated","ppmv CO2","LL",284.8308 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1887,"Simulated","ppmv CO2","LL",285.182 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1888,"Simulated","ppmv CO2","LL",285.6999 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1889,"Simulated","ppmv CO2","LL",285.5094 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1890,"Simulated","ppmv CO2","LL",285.8127 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1891,"Simulated","ppmv CO2","LL",286.1587 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1892,"Simulated","ppmv CO2","LL",286.3143 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1893,"Simulated","ppmv CO2","LL",286.3637 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1894,"Simulated","ppmv CO2","LL",287.1667 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1895,"Simulated","ppmv CO2","LL",286.9992 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1896,"Simulated","ppmv CO2","LL",287.0626 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1897,"Simulated","ppmv CO2","LL",287.7823 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1898,"Simulated","ppmv CO2","LL",287.9797 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1899,"Simulated","ppmv CO2","LL",287.9661 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1900,"Simulated","ppmv CO2","LL",288.2364 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1901,"Simulated","ppmv CO2","LL",288.4135 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1902,"Simulated","ppmv CO2","LL",288.732 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1903,"Simulated","ppmv CO2","LL",288.8315 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1904,"Simulated","ppmv CO2","LL",288.8863 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1905,"Simulated","ppmv CO2","LL",289.183 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1906,"Simulated","ppmv CO2","LL",289.6187 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1907,"Simulated","ppmv CO2","LL",290.1224 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1908,"Simulated","ppmv CO2","LL",290.7166 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1909,"Simulated","ppmv CO2","LL",291.3142 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1910,"Simulated","ppmv CO2","LL",291.4754 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1911,"Simulated","ppmv CO2","LL",292.3135 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1912,"Simulated","ppmv CO2","LL",292.7647 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1913,"Simulated","ppmv CO2","LL",293.04 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1914,"Simulated","ppmv CO2","LL",293.6987 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1915,"Simulated","ppmv CO2","LL",294.0108 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1916,"Simulated","ppmv CO2","LL",294.0954 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1917,"Simulated","ppmv CO2","LL",294.8106 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1918,"Simulated","ppmv CO2","LL",295.2983 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1919,"Simulated","ppmv CO2","LL",295.3419 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1920,"Simulated","ppmv CO2","LL",295.7867 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1921,"Simulated","ppmv CO2","LL",296.2045 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1922,"Simulated","ppmv CO2","LL",296.4254 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1923,"Simulated","ppmv CO2","LL",296.6949 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1924,"Simulated","ppmv CO2","LL",296.7447 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1925,"Simulated","ppmv CO2","LL",297.364 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1926,"Simulated","ppmv CO2","LL",297.6872 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1927,"Simulated","ppmv CO2","LL",298.1023 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1928,"Simulated","ppmv CO2","LL",298.4922 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1929,"Simulated","ppmv CO2","LL",298.2674 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1930,"Simulated","ppmv CO2","LL",298.7102 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1931,"Simulated","ppmv CO2","LL",299.3609 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1932,"Simulated","ppmv CO2","LL",299.7575 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1933,"Simulated","ppmv CO2","LL",300.0837 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1934,"Simulated","ppmv CO2","LL",300.7105 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1935,"Simulated","ppmv CO2","LL",301.0928 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1936,"Simulated","ppmv CO2","LL",301.2219 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1937,"Simulated","ppmv CO2","LL",301.8995 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1938,"Simulated","ppmv CO2","LL",302.2552 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1939,"Simulated","ppmv CO2","LL",302.8155 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1940,"Simulated","ppmv CO2","LL",303.2258 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1941,"Simulated","ppmv CO2","LL",303.7956 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1942,"Simulated","ppmv CO2","LL",304.1865 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1943,"Simulated","ppmv CO2","LL",304.3472 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1944,"Simulated","ppmv CO2","LL",304.6721 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1945,"Simulated","ppmv CO2","LL",305.0711 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1946,"Simulated","ppmv CO2","LL",305.4661 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1947,"Simulated","ppmv CO2","LL",305.8939 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1948,"Simulated","ppmv CO2","LL",306.1343 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1949,"Simulated","ppmv CO2","LL",306.7124 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1950,"Simulated","ppmv CO2","LL",307.5505 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1951,"Simulated","ppmv CO2","LL",308.2974 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1952,"Simulated","ppmv CO2","LL",308.5185 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1953,"Simulated","ppmv CO2","LL",309.3311 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1954,"Simulated","ppmv CO2","LL",310.3181 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1955,"Simulated","ppmv CO2","LL",311.2917 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1956,"Simulated","ppmv CO2","LL",312.3315 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1957,"Simulated","ppmv CO2","LL",313.3983 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1958,"Simulated","ppmv CO2","LL",314.3507 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1959,"Simulated","ppmv CO2","LL",315.3225 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1960,"Simulated","ppmv CO2","LL",316.6556 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1961,"Simulated","ppmv CO2","LL",317.5617 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1962,"Simulated","ppmv CO2","LL",318.1277 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1963,"Simulated","ppmv CO2","LL",318.9137 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1964,"Simulated","ppmv CO2","LL",320.1913 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1965,"Simulated","ppmv CO2","LL",320.9173 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1966,"Simulated","ppmv CO2","LL",322.0668 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1967,"Simulated","ppmv CO2","LL",323.0893 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1968,"Simulated","ppmv CO2","LL",323.8557 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1969,"Simulated","ppmv CO2","LL",324.6952 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1970,"Simulated","ppmv CO2","LL",325.7953 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1971,"Simulated","ppmv CO2","LL",326.8477 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1972,"Simulated","ppmv CO2","LL",328.0052 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1973,"Simulated","ppmv CO2","LL",329.6741 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1974,"Simulated","ppmv CO2","LL",330.8961 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1975,"Simulated","ppmv CO2","LL",332.3578 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1976,"Simulated","ppmv CO2","LL",333.7721 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1977,"Simulated","ppmv CO2","LL",335.1934 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1978,"Simulated","ppmv CO2","LL",336.9919 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1979,"Simulated","ppmv CO2","LL",338.6756 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1980,"Simulated","ppmv CO2","LL",339.8234 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1981,"Simulated","ppmv CO2","LL",341.3417 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1982,"Simulated","ppmv CO2","LL",343.2287 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1983,"Simulated","ppmv CO2","LL",344.5372 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1984,"Simulated","ppmv CO2","LL",346.3407 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1985,"Simulated","ppmv CO2","LL",348.1571 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1986,"Simulated","ppmv CO2","LL",350.0039 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1987,"Simulated","ppmv CO2","LL",351.488 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1988,"Simulated","ppmv CO2","LL",353.7978 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1989,"Simulated","ppmv CO2","LL",355.5614 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1990,"Simulated","ppmv CO2","LL",357.6128 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1991,"Simulated","ppmv CO2","LL",359.5732 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1992,"Simulated","ppmv CO2","LL",361.5733 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1993,"Simulated","ppmv CO2","LL",363.2422 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1994,"Simulated","ppmv CO2","LL",364.8964 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1995,"Simulated","ppmv CO2","LL",366.6611 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1996,"Simulated","ppmv CO2","LL",368.5122 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1997,"Simulated","ppmv CO2","LL",370.4161 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1998,"Simulated","ppmv CO2","LL",372.7216 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",1999,"Simulated","ppmv CO2","LL",374.4566 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2000,"Simulated","ppmv CO2","LL",376.5071 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2001,"Simulated","ppmv CO2","LL",378.0054 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2002,"Simulated","ppmv CO2","LL",379.6798 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2003,"Simulated","ppmv CO2","LL",381.496 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2004,"Simulated","ppmv CO2","LL",383.6925 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmHistorical",2005,"Simulated","ppmv CO2","LL",385.6197 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/hist/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/hist/summary.csv deleted file mode 100644 index 009f1a4e4..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/hist/summary.csv +++ /dev/null @@ -1,469 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -1850,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.839214474,279.2436,288.6175333,284.081675,284.2327833,1,CMIP5 -1850,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.82601363,279.2695,288.5749667,284.1015667,284.2809,1,CMIP5 -1850,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.842894671,279.2379,288.6264667,284.07805,284.2239167,1,CMIP5 -1851,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.525887653,279.823,288.4534,284.1661917,284.1941833,1,CMIP5 -1851,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.581427159,279.6505,288.3834,284.1642167,284.3114833,1,CMIP5 -1851,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.514991474,279.8612,288.468,284.1675,284.1704,1,CMIP5 -1852,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.73014305,279.7383,288.8388,284.1612417,284.0339333,1,CMIP5 -1852,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.714507413,279.6161,288.6578,284.1508333,284.1647167,1,CMIP5 -1852,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.7341469,279.7654,288.8766,284.16385,284.0067,1,CMIP5 -1853,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.908592753,279.5493,289.0769,284.3509333,284.3887667,1,CMIP5 -1853,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.902084596,279.4237,288.8975333,284.2740583,284.3875,1,CMIP5 -1853,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.909884341,279.5772,289.1143333,284.3680083,284.39025,1,CMIP5 -1854,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.825728569,279.7808,289.1285,284.5806667,284.7066833,1,CMIP5 -1854,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.846855994,279.5893,288.9504667,284.475875,284.6818667,1,CMIP5 -1854,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.821173448,279.8233,289.1657,284.6040167,284.7135333,1,CMIP5 -1855,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.729047402,279.7888,288.8738,284.6422833,284.9532667,1,CMIP5 -1855,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.742849501,279.7028,288.8038667,284.5707333,284.8881333,1,CMIP5 -1855,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.726254583,279.8078,288.8884,284.6584,284.9687,1,CMIP5 -1856,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.658308488,279.934,288.8069667,284.7983333,285.2261833,1,CMIP5 -1856,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.72505434,279.786,288.8046,284.724875,285.15445,1,CMIP5 -1856,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.644288104,279.9668,288.8074667,284.8151583,285.2431833,1,CMIP5 -1857,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.576806305,280.0207,288.6448333,284.8788417,285.4249167,1,CMIP5 -1857,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.654894854,279.8353,288.6376667,284.794175,285.3518667,1,CMIP5 -1857,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.560725335,280.0618,288.6463333,284.8983417,285.4426167,1,CMIP5 -1858,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.338969157,280.3125,288.3537,284.8539667,285.3748333,1,CMIP5 -1858,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.479395577,280.0675,288.429,284.829775,285.4113,1,CMIP5 -1858,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.309445872,280.3667,288.338,284.860425,285.3685,1,CMIP5 -1859,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.16092552,280.5158,288.1225333,284.8237,285.3282333,1,CMIP5 -1859,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.292081379,280.2782,288.1782333,284.79815,285.3680833,1,CMIP5 -1859,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.133263588,280.5685,288.1109,284.8303917,285.3210833,1,CMIP5 -1860,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.096317826,280.6631,288.0458,284.928625,285.5028,1,CMIP5 -1860,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.217901551,280.4103,288.0812,284.8848167,285.5238833,1,CMIP5 -1860,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.07160157,280.7191,288.0384333,284.939525,285.5002833,1,CMIP5 -1861,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.028792124,280.8736,288.1408,284.9093333,285.3114667,1,CMIP5 -1861,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.057782564,280.7389,288.0749667,284.9136667,285.4204,1,CMIP5 -1861,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.024471853,280.9035,288.1545667,284.9094583,285.2898833,1,CMIP5 -1862,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.317166279,280.7887,288.7432667,285.03695,285.3079167,1,CMIP5 -1862,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.272394785,280.6325,288.5177667,284.9679583,285.3607833,1,CMIP5 -1862,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.328722299,280.8233,288.7903667,285.0528333,285.2988333,1,CMIP5 -1863,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.191885546,281.202,288.8694333,285.2167583,285.3978,1,CMIP5 -1863,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.202246816,280.9259,288.6473667,285.1227,285.4587667,1,CMIP5 -1863,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.191084574,281.2632,288.9158333,285.2379833,285.38645,1,CMIP5 -1864,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.902363585,281.6083,288.5819,285.2615417,285.4279833,1,CMIP5 -1864,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.988642006,281.3178,288.5231333,285.2055333,285.4906,1,CMIP5 -1864,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.884403127,281.6727,288.5941333,285.2745333,285.41565,1,CMIP5 -1865,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.788056377,281.7013,288.4364333,285.2978583,285.52685,1,CMIP5 -1865,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.883742035,281.4748,288.4444333,285.2666417,285.5736667,1,CMIP5 -1865,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.767493614,281.7515,288.4347667,285.3052833,285.5174333,1,CMIP5 -1866,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.718625546,281.9819,288.4592,285.4885,285.75645,1,CMIP5 -1866,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.810440006,281.7012,288.4627,285.40065,285.71935,1,CMIP5 -1866,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.700199265,282.0441,288.4584667,285.5087917,285.7663,1,CMIP5 -1867,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.70687757,282.3664,288.8363667,285.8039167,286.00645,1,CMIP5 -1867,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.747791647,282.0935,288.6955667,285.673575,285.9526167,1,CMIP5 -1867,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.698330754,282.4268,288.8657667,285.8328333,286.0193833,1,CMIP5 -1868,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.682439764,282.4269,288.8973,285.8955583,286.1290167,1,CMIP5 -1868,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.724766155,282.2001,288.7768333,285.8076667,286.1268667,1,CMIP5 -1868,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.673500321,282.4771,288.9224667,285.9151333,286.1304833,1,CMIP5 -1869,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.689921616,282.4297,288.9415,285.9527417,286.2198833,1,CMIP5 -1869,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.738342109,282.2217,288.8409333,285.874125,286.2169333,1,CMIP5 -1869,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.679352368,282.4758,288.9625,285.9702083,286.2212667,1,CMIP5 -1870,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.535293398,282.6963,288.7341,286.1027833,286.4903667,1,CMIP5 -1870,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.592956319,282.5121,288.7208333,286.033325,286.4501833,1,CMIP5 -1870,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.523553929,282.7372,288.7368667,286.1187583,286.5004833,1,CMIP5 -1871,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.608408185,283.1589,289.3316667,286.5890167,286.93275,1,CMIP5 -1871,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.643987814,282.8324,289.1216333,286.4092667,286.8415167,1,CMIP5 -1871,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.60157393,283.2312,289.3755,286.6287917,286.9542333,1,CMIP5 -1872,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.719563776,283.2903,289.7525667,286.7856167,287.0498,1,CMIP5 -1872,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.713449937,283.0436,289.5258333,286.6438833,287.00305,1,CMIP5 -1872,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.721602801,283.345,289.7999,286.817,287.06155,1,CMIP5 -1873,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.775652821,283.1965,289.8752333,286.8365333,287.1372,1,CMIP5 -1873,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.745005735,283.0543,289.6498333,286.7288583,287.10565,1,CMIP5 -1873,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.782092369,283.228,289.9222667,286.8600083,287.1448833,1,CMIP5 -1874,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.017906987,283.1632,290.4048667,287.1728083,287.5615833,1,CMIP5 -1874,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.960750565,283.0103,290.1163,287.0225667,287.4818333,1,CMIP5 -1874,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.030537719,283.1971,290.4651,287.2057417,287.5803833,1,CMIP5 -1875,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.910726313,283.6292,290.5982667,287.3417,287.5696667,1,CMIP5 -1875,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.925459036,283.3951,290.4281667,287.2423917,287.57315,1,CMIP5 -1875,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.908246226,283.6811,290.6338,287.363975,287.5705,1,CMIP5 -1876,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.748050308,283.7691,290.2969,287.2496,287.4662,1,CMIP5 -1876,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.773349709,283.5899,290.236,287.2104,287.50785,1,CMIP5 -1876,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.743844818,283.8088,290.3096333,287.259025,287.4588333,1,CMIP5 -1877,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.747457381,283.6236,290.0583667,287.1634,287.4858167,1,CMIP5 -1877,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.795591423,283.4269,290.0340667,287.1378667,287.54525,1,CMIP5 -1877,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.738212452,283.6672,290.0634,287.1698583,287.4744167,1,CMIP5 -1878,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.864040546,283.854,290.5741,287.410925,287.6078,1,CMIP5 -1878,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.871077113,283.6171,290.4171667,287.3441333,287.6711333,1,CMIP5 -1878,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.863861825,283.9065,290.6069,287.4262167,287.5957333,1,CMIP5 -1879,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.758204601,284.3049,290.7713,287.6071667,287.6762333,1,CMIP5 -1879,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.745137509,284.1047,290.6464,287.5428167,287.7100833,1,CMIP5 -1879,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.76263767,284.3492,290.7973333,287.6220583,287.67085,1,CMIP5 -1880,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.725240809,284.5657,290.8901333,287.8060333,287.88415,1,CMIP5 -1880,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.710520318,284.3191,290.697,287.708825,287.9096,1,CMIP5 -1880,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.729430372,284.6204,290.9304333,287.8278083,287.8802,1,CMIP5 -1881,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.799630088,284.537,290.8681,287.989275,288.276,1,CMIP5 -1881,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.766315743,284.3776,290.7732,287.8894417,288.2034833,1,CMIP5 -1881,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.808233492,284.5724,290.8879333,288.0119,288.2936333,1,CMIP5 -1882,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.834740236,284.4935,290.7926,288.2023583,288.7616667,1,CMIP5 -1882,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.822639152,284.3024,290.6886667,288.069225,288.6429167,1,CMIP5 -1882,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.838323197,284.5359,290.8143333,288.2320667,288.7890167,1,CMIP5 -1883,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.973707237,284.561,291.4797,288.4484417,288.8765333,1,CMIP5 -1883,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.940340861,284.405,291.2397,288.3147667,288.8071833,1,CMIP5 -1883,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.980529944,284.5956,291.5298333,288.47745,288.8921833,1,CMIP5 -1884,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.672605725,284.8185,291.0582,288.4802083,289.0220667,1,CMIP5 -1884,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.763943498,284.618,291.089,288.4040333,288.9545667,1,CMIP5 -1884,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.652598102,284.8629,291.0517667,288.4970583,289.0367833,1,CMIP5 -1885,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.421225678,284.9509,290.1486333,288.4540417,289.3583167,1,CMIP5 -1885,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.506046195,284.7946,290.3234333,288.41475,289.2704833,1,CMIP5 -1885,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.404133368,284.9855,290.1121667,288.46345,289.3780667,1,CMIP5 -1886,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.408090424,284.8095,289.9902,288.3482833,289.2967167,1,CMIP5 -1886,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.487712972,284.7133,289.9526,288.3783917,289.4238333,1,CMIP5 -1886,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.39204707,284.8308,290.0087,288.3426583,289.2655667,1,CMIP5 -1887,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.318384339,285.123,290.1569,288.5530917,289.4662333,1,CMIP5 -1887,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.437677625,284.8566,290.0028,288.480975,289.53225,1,CMIP5 -1887,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.293226103,285.182,290.1917,288.5696417,289.4524333,1,CMIP5 -1888,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.226972888,285.6384,290.7355,288.873875,289.5608,1,CMIP5 -1888,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.315703778,285.3611,290.4874,288.782575,289.6409,1,CMIP5 -1888,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.209735024,285.6999,290.7916,288.8949083,289.5440667,1,CMIP5 -1889,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.544212515,285.4758,291.4207,289.10855,289.76885,1,CMIP5 -1889,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.51359121,285.3239,291.0661,288.97995,289.7649,1,CMIP5 -1889,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.553152106,285.5094,291.5008,289.1374,289.7697,1,CMIP5 -1890,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.356550118,285.7652,291.2178,289.159225,289.82695,1,CMIP5 -1890,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.428195603,285.5513,291.0889,289.0869333,289.8537667,1,CMIP5 -1890,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.341867553,285.8127,291.2469,289.1755667,289.8213333,1,CMIP5 -1891,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.15598763,286.1046,291.1007,289.2076083,289.8125667,1,CMIP5 -1891,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.243780933,285.8607,290.9436,289.136225,289.8703,1,CMIP5 -1891,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.138299689,286.1587,291.1361,289.2239417,289.8004833,1,CMIP5 -1892,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.314220552,286.275,291.8337,289.4455833,289.8368167,1,CMIP5 -1892,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.314323631,286.0976,291.5424,289.3659417,289.9118833,1,CMIP5 -1892,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.31723735,286.3143,291.8995,289.4640167,289.8211333,1,CMIP5 -1893,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.328863826,286.3165,291.9475,289.45105,289.7701,1,CMIP5 -1893,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.385740581,286.1037,291.7854,289.406975,289.8694,1,CMIP5 -1893,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.318704463,286.3637,291.9841,289.4616417,289.7493833,1,CMIP5 -1894,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.945390296,287.0825,291.7609,289.7414917,290.0612833,1,CMIP5 -1894,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.093829343,286.7022,291.6627,289.622975,290.0635,1,CMIP5 -1894,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.91479484,287.1667,291.7831,289.7678583,290.0608167,1,CMIP5 -1895,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.189096444,286.9654,292.2671,289.816775,290.0173,1,CMIP5 -1895,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.19664273,286.8129,292.0714,289.7696083,290.0970667,1,CMIP5 -1895,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.189243969,286.9992,292.3112,289.8279167,290.0006333,1,CMIP5 -1896,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.493610826,287.017,293.028,290.0636917,290.1048833,1,CMIP5 -1896,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.443637988,286.8114,292.6543,289.9423583,290.1518667,1,CMIP5 -1896,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.507596806,287.0626,293.1124,290.091275,290.09505,1,CMIP5 -1897,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.391267072,287.713,293.4843,290.4770667,290.3554833,1,CMIP5 -1897,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.374793447,287.4001,293.1137,290.31495,290.373,1,CMIP5 -1897,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.398377136,287.7823,293.5681,290.5135333,290.3518667,1,CMIP5 -1898,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.154994652,287.9261,293.1639,290.55375,290.5625,1,CMIP5 -1898,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.216835413,287.6839,293.0172,290.4562,290.56185,1,CMIP5 -1898,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.143480591,287.9797,293.197,290.575475,290.5626,1,CMIP5 -1899,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.167309221,287.9171,293.2214,290.618375,290.6675,1,CMIP5 -1899,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.223813412,287.6955,293.0968,290.5318583,290.6675667,1,CMIP5 -1899,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.15746332,287.9661,293.2495,290.6376417,290.6674833,1,CMIP5 -1900,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.202412631,288.1931,293.5865,290.8884,290.887,1,CMIP5 -1900,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.218544391,287.9981,293.4176,290.804625,290.9014,1,CMIP5 -1900,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.201539842,288.2364,293.6246,290.9072417,290.8839833,1,CMIP5 -1901,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.324404044,288.3693,294.0375,291.05375,290.9041,1,CMIP5 -1901,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.269953812,288.1698,293.7295,290.9586,290.96755,1,CMIP5 -1901,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.340269321,288.4135,294.107,291.07555,290.89085,1,CMIP5 -1902,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.13738003,288.6728,293.8646,291.15045,291.0322,1,CMIP5 -1902,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.200787808,288.4057,293.7948,291.0916,291.08295,1,CMIP5 -1902,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.126477571,288.732,293.8804,291.1639083,291.0216167,1,CMIP5 -1903,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.999237541,288.7832,293.5003,291.2072667,291.2727833,1,CMIP5 -1903,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.025925353,288.5652,293.4755,291.13805,291.25575,1,CMIP5 -1903,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.997977507,288.8315,293.5059,291.2225083,291.2763167,1,CMIP5 -1904,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.249679836,288.851,294.0028,291.4836917,291.5404833,1,CMIP5 -1904,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.191697459,288.6915,293.8797,291.395625,291.50565,1,CMIP5 -1904,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.265235398,288.8863,294.0306,291.5031,291.54775,1,CMIP5 -1905,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.189621399,289.1416,294.3061,291.62445,291.52505,1,CMIP5 -1905,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.18066609,288.955,294.1655,291.5614583,291.5626667,1,CMIP5 -1905,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.19295066,289.183,294.3379,291.638825,291.5172,1,CMIP5 -1906,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.95076469,289.5593,294.2264,291.7843,291.67575,1,CMIP5 -1906,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.998679393,289.2914,294.1163,291.7018333,291.6998167,1,CMIP5 -1906,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.941565625,289.6187,294.2512,291.802825,291.6707,1,CMIP5 -1907,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.936127799,290.0538,294.74,292.1883833,291.9798667,1,CMIP5 -1907,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.947245435,289.7438,294.486,292.0532417,291.9915833,1,CMIP5 -1907,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.936232385,290.1224,294.7973,292.2186417,291.9774333,1,CMIP5 -1908,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.991557783,290.6339,295.463,292.8236917,292.5989333,1,CMIP5 -1908,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.01920736,290.2608,295.1869,292.592325,292.4608,1,CMIP5 -1908,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.986958366,290.7166,295.5254,292.8743667,292.6277333,1,CMIP5 -1909,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.914927561,291.2366,295.9045,293.4076167,293.2446833,1,CMIP5 -1909,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.912170848,290.8865,295.563,293.13215,293.03955,1,CMIP5 -1909,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.916828423,291.3142,295.9817,293.4677333,293.2875167,1,CMIP5 -1910,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.845667656,291.4115,295.8882,293.7307417,293.8116333,1,CMIP5 -1910,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.893819872,291.1235,295.7184,293.4952917,293.5696333,1,CMIP5 -1910,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.835190277,291.4754,295.9266,293.781575,293.86215,1,CMIP5 -1911,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.702365916,292.216,296.2473,294.2975083,294.3633667,1,CMIP5 -1911,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.798878924,291.7758,296.0491,294.0205333,294.1286167,1,CMIP5 -1911,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.681469751,292.3135,296.2921,294.3575833,294.4123667,1,CMIP5 -1912,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.687615786,292.6871,296.5166,294.7567583,294.9116667,1,CMIP5 -1912,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.744925127,292.3368,296.3027,294.5111,294.70245,1,CMIP5 -1912,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.675256,292.7647,296.565,294.8100917,294.9553333,1,CMIP5 -1913,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.621178709,292.9659,296.574,295.1182,295.46645,1,CMIP5 -1913,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.708616736,292.6315,296.4141,294.876925,295.23105,1,CMIP5 -1913,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.601972288,293.04,296.6102,295.17035,295.5156,1,CMIP5 -1914,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.711646303,293.6047,297.3224,295.7529833,296.0424167,1,CMIP5 -1914,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.780273689,293.1805,297.0279,295.4634167,295.8226333,1,CMIP5 -1914,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.696955043,293.6987,297.3889,295.81605,296.0883,1,CMIP5 -1915,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.914474041,293.9486,298.0192,296.1546,296.3253,1,CMIP5 -1915,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.906171057,293.668,297.661,295.9214083,296.1783167,1,CMIP5 -1915,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.917555805,294.0108,298.1001,296.2057167,296.3559833,1,CMIP5 -1916,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.953954696,294.0376,298.0284,296.426525,296.82005,1,CMIP5 -1916,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.011929706,293.7771,297.9266333,296.225975,296.6000833,1,CMIP5 -1916,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.941499376,294.0954,298.0631,296.4701083,296.8609667,1,CMIP5 -1917,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.810263674,294.7268,298.7834667,296.9180833,297.0810333,1,CMIP5 -1917,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.920285517,294.349,298.6347,296.6735417,296.8552333,1,CMIP5 -1917,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.78582249,294.8106,298.8145,296.9710333,297.1295167,1,CMIP5 -1918,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,1.95328939,295.2352,299.541,297.4749333,297.5617667,1,CMIP5 -1918,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,1.983458251,294.9502,299.369,297.2387583,297.3179167,1,CMIP5 -1918,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,1.946667108,295.2983,299.5769,297.526325,297.61505,1,CMIP5 -1919,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.34933931,295.2798,300.4136333,297.9433,298.0398833,1,CMIP5 -1919,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.353457009,294.9998,300.1954667,297.6808667,297.7641,1,CMIP5 -1919,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.348351943,295.3419,300.4592,298.0004,298.10025,1,CMIP5 -1920,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.379463649,295.7095,300.8036333,298.24515,298.2337333,1,CMIP5 -1920,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.433908858,295.3609,300.6925667,298.0273833,298.0280333,1,CMIP5 -1920,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.36811732,295.7867,300.8268333,298.29295,298.2791333,1,CMIP5 -1921,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.329267499,296.1326,301.1784667,298.5178917,298.38025,1,CMIP5 -1921,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.403901701,295.8082,301.0932,298.3158,298.1809,1,CMIP5 -1921,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.313232544,296.2045,301.1963333,298.562125,298.4238333,1,CMIP5 -1922,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.53242186,296.3642,301.7711333,298.98845,298.9092333,1,CMIP5 -1922,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.568568834,296.0881,301.6892333,298.7660583,298.64345,1,CMIP5 -1922,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.525511097,296.4254,301.7882333,299.0373,298.9677833,1,CMIP5 -1923,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.583147614,296.6309,302.3667,299.4471917,299.3955833,1,CMIP5 -1923,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.679553519,296.3424,302.2681667,299.205225,299.1051667,1,CMIP5 -1923,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.562430584,296.6949,302.3873,299.4996,299.4581,1,CMIP5 -1924,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.866826159,296.7035,303.191,299.7929333,299.6386167,1,CMIP5 -1924,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,2.861539991,296.5177,303.0133,299.584125,299.40275,1,CMIP5 -1924,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.867781752,296.7447,303.2281333,299.8382917,299.6901667,1,CMIP5 -1925,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.026834231,297.2934,304.0617333,300.3349333,299.9923,1,CMIP5 -1925,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.068106436,296.9748,303.868,300.092275,299.76315,1,CMIP5 -1925,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.017393826,297.364,304.1021667,300.3876333,300.0421833,1,CMIP5 -1926,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.996122564,297.6235,304.439,300.69125,300.35125,1,CMIP5 -1926,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.070686995,297.336,304.3348333,300.4735917,300.1117667,1,CMIP5 -1926,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.97975909,297.6872,304.4607667,300.7386167,300.40325,1,CMIP5 -1927,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.980394449,298.0233,304.9271333,301.1686833,300.86215,1,CMIP5 -1927,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.104104608,297.6669,304.8393667,300.9298417,300.60655,1,CMIP5 -1927,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.953239364,298.1023,304.9454333,301.2205083,300.91715,1,CMIP5 -1928,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.070030768,298.4358,305.5659333,301.6439667,301.2870667,1,CMIP5 -1928,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.140528621,298.1814,305.4692,301.4217583,301.0182167,1,CMIP5 -1928,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.054621498,298.4922,305.5861667,301.6923083,301.3454333,1,CMIP5 -1929,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.403915143,298.2329,306.2958667,302.0231667,301.78195,1,CMIP5 -1929,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.442403419,298.0772,306.1956333,301.7929,301.4493833,1,CMIP5 -1929,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.396029366,298.2674,306.3167667,302.073025,301.8539667,1,CMIP5 -1930,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.432011155,298.6381,306.6151667,302.4130333,302.1994333,1,CMIP5 -1930,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.54715889,298.3127,306.6146667,302.1973667,301.93105,1,CMIP5 -1930,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.407465917,298.7102,306.6152333,302.460525,302.2583333,1,CMIP5 -1931,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.335380683,299.2894,306.7816333,302.562525,302.0895333,1,CMIP5 -1931,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.443727369,298.9668,306.8022667,302.40985,301.9351667,1,CMIP5 -1931,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.312248541,299.3609,306.7773333,302.5964083,302.1237,1,CMIP5 -1932,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.214801739,299.6889,306.9428333,302.834625,302.3533833,1,CMIP5 -1932,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.369933248,299.3794,307.0484,302.7006167,302.1873333,1,CMIP5 -1932,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.181685087,299.7575,306.9207667,302.8644417,302.38975,1,CMIP5 -1933,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.119593441,300.0163,307.1614333,303.25915,302.9294333,1,CMIP5 -1933,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.299315764,299.7123,307.2879333,303.0779,302.6556833,1,CMIP5 -1933,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.081594843,300.0837,307.135,303.2991083,302.9888667,1,CMIP5 -1934,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.953633301,300.6236,307.2433667,303.614575,303.2956667,1,CMIP5 -1934,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.174964312,300.2314,307.4301333,303.4407917,303.0508167,1,CMIP5 -1934,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.906903866,300.7105,307.2043333,303.6532667,303.3491167,1,CMIP5 -1935,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.950739092,301.0181,307.4463333,303.961625,303.6910333,1,CMIP5 -1935,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.106538596,300.6812,307.5905333,303.7915333,303.4472,1,CMIP5 -1935,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.918816355,301.0928,307.4162,303.99965,303.7448,1,CMIP5 -1936,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.180342261,301.149,307.5993333,303.9908667,303.6075667,1,CMIP5 -1936,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.271285526,300.8198,307.7684667,303.8979,303.5016667,1,CMIP5 -1936,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.163503335,301.2219,307.5639667,304.0126167,303.6323,1,CMIP5 -1937,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.238132883,301.8140667,308.1084667,304.5718833,304.1825,1,CMIP5 -1937,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.307614549,301.533,308.1934,304.4016583,303.9401167,1,CMIP5 -1937,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.225405261,301.8321333,308.0907333,304.6100167,304.2586,1,CMIP5 -1938,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.124599834,302.1963,308.2343,304.9656,304.7159,1,CMIP5 -1938,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.222723809,301.9303,308.3682667,304.8172417,304.4852,1,CMIP5 -1938,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.105653639,302.2552,308.2063667,304.9988083,304.7668333,1,CMIP5 -1939,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,2.878811779,302.7319,308.4404,305.3213417,305.0565333,1,CMIP5 -1939,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.044900957,302.3547,308.5292,305.1184917,304.7950333,1,CMIP5 -1939,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.84418972,302.8155,308.4219,305.3660083,305.1133167,1,CMIP5 -1940,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.009606883,303.1429,308.9919667,305.757225,305.4470167,1,CMIP5 -1940,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.126782389,302.7687,309.0249,305.5470417,305.1972833,1,CMIP5 -1940,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,2.985584967,303.2258,308.9850667,305.8035667,305.5017,1,CMIP5 -1941,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.121331886,303.2811,309.3801333,306.1602583,305.9899,1,CMIP5 -1941,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.235425511,303.1337333,309.4154333,305.9498667,305.62515,1,CMIP5 -1941,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.098309241,303.3119,309.3727667,306.2068417,306.07135,1,CMIP5 -1942,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.164934701,303.9517,309.9144667,306.7622417,306.5914,1,CMIP5 -1942,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.219421508,303.6331,309.8860667,306.4927417,306.2259,1,CMIP5 -1942,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.155666627,304.0182333,309.9204,306.8213583,306.6734,1,CMIP5 -1943,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.315061527,304.2888,310.6308667,307.2883083,307.1167833,1,CMIP5 -1943,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.356916096,304.0253,310.5526,307.0578583,306.8267667,1,CMIP5 -1943,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.307068686,304.3472,310.6472,307.3387,307.1802,1,CMIP5 -1944,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.519932033,304.6127,311.3368667,307.7255583,307.4763333,1,CMIP5 -1944,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.526945306,304.3445,311.2146,307.4752917,307.1710333,1,CMIP5 -1944,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.519514239,304.6721,311.3624,307.7803667,307.5434833,1,CMIP5 -1945,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.734578001,305.0016,312.0982667,308.3663833,308.1828333,1,CMIP5 -1945,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.725798043,304.6877,311.9009333,308.0468667,307.7994167,1,CMIP5 -1945,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.73772011,305.0711,312.1394667,308.43615,308.2670167,1,CMIP5 -1946,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,3.904592941,305.3943,312.9446333,308.866025,308.5625833,1,CMIP5 -1946,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,3.873995012,305.07,312.7195333,308.581,308.2672333,1,CMIP5 -1946,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,3.911836535,305.4661,312.9916333,308.9283917,308.6279167,1,CMIP5 -1947,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.138991838,305.6842333,313.7465667,309.269525,308.82365,1,CMIP5 -1947,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.141070123,305.4619,313.5295667,309.0121667,308.5286,1,CMIP5 -1947,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.138618899,305.7161667,313.7918333,309.325725,308.89745,1,CMIP5 -1948,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.117070781,306.0731,314.4480667,309.6898333,309.1190833,1,CMIP5 -1948,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.183972995,305.7966,314.2870667,309.4680167,308.8942,1,CMIP5 -1948,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.102559741,306.1343,314.4816667,309.7377,309.1674167,1,CMIP5 -1949,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.21191687,306.6386,315.1401,310.28995,309.69055,1,CMIP5 -1949,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.235428965,306.3057,314.9411667,310.0081917,309.39295,1,CMIP5 -1949,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.207003008,306.7124,315.1816667,310.3513833,309.7557333,1,CMIP5 -1950,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.484504063,307.1128333,316.0536,311.0708833,310.55855,1,CMIP5 -1950,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.503093602,306.8964333,315.8387667,310.73615,310.1047,1,CMIP5 -1950,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.481134073,307.1580333,316.0984667,311.14415,310.66005,1,CMIP5 -1951,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.543236363,307.6232,316.9629,311.703225,311.1134,1,CMIP5 -1951,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.585625301,307.3575333,316.7487667,311.3877,310.72225,1,CMIP5 -1951,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.53427703,307.6786667,317.0075667,311.7719833,311.20085,1,CMIP5 -1952,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.695653718,308.4225,317.8491667,312.3388917,311.54195,1,CMIP5 -1952,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.70663119,308.0861333,317.5723,312.0027833,311.17635,1,CMIP5 -1952,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.693402313,308.4927667,317.9070333,312.41185,311.6238,1,CMIP5 -1953,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.879967538,309.2283,319.0924333,313.2776083,312.39485,1,CMIP5 -1953,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.896686282,308.7645,318.7093,312.8638,311.9907,1,CMIP5 -1953,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.875975846,309.3311,319.1724,313.3673167,312.4828833,1,CMIP5 -1954,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.027812355,309.7194333,320.2294,314.0605833,313.14675,1,CMIP5 -1954,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.036814494,309.4233,319.8569,313.674975,312.70985,1,CMIP5 -1954,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.02535848,309.7812667,320.3071667,314.1442833,313.24435,1,CMIP5 -1955,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.09270142,310.1982333,321.1901333,314.7399917,313.7858,1,CMIP5 -1955,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.125415289,309.9241,320.8479667,314.3465167,313.307,1,CMIP5 -1955,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.085268259,310.2554333,321.2616,314.8256333,313.89275,1,CMIP5 -1956,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.403068598,310.5164667,322.3436,315.7095667,314.9891,1,CMIP5 -1956,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.363033674,310.2990333,321.9306333,315.2615667,314.4083,1,CMIP5 -1956,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.411712709,310.5618667,322.4298,315.8074167,315.119,1,CMIP5 -1957,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.647877191,311.2354,323.7005,316.793125,316.1183,1,CMIP5 -1957,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.618387608,310.8831,323.2439333,316.3003833,315.53725,1,CMIP5 -1957,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.654112045,311.3089333,323.7958,316.9003583,316.24835,1,CMIP5 -1958,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.686003293,312.166,324.8584667,317.6674167,316.8226,1,CMIP5 -1958,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.706282289,311.8134667,324.4591667,317.2087583,316.2812,1,CMIP5 -1958,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.681322208,312.2396,324.9418333,317.7671333,316.94355,1,CMIP5 -1959,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.771353393,313.1747333,326.0883667,318.673975,317.7164,1,CMIP5 -1959,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.814440025,312.7357333,325.6633667,318.170975,317.1424,1,CMIP5 -1959,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.761662097,313.2663667,326.1771333,318.783225,317.8447,1,CMIP5 -1960,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.791159437,314.0637,327.0905667,319.8395167,319.1019,1,CMIP5 -1960,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.85695298,313.6486333,326.7367,319.3139083,318.43515,1,CMIP5 -1960,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.77735838,314.1503667,327.1644667,319.9542083,319.251,1,CMIP5 -1961,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.817765205,314.8653333,327.9548333,320.7536417,320.0972,1,CMIP5 -1961,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.891795815,314.3868667,327.6558,320.2627917,319.50425,1,CMIP5 -1961,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.802521475,314.9652,328.0172667,320.8605667,320.2299,1,CMIP5 -1962,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.721089434,316.2417333,328.7872333,321.7204417,320.9264,1,CMIP5 -1962,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.839422399,315.6607333,328.5506,321.2180083,320.33035,1,CMIP5 -1962,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.696876388,316.3630333,328.8366333,321.8299167,321.06,1,CMIP5 -1963,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.588067833,317.5280333,329.6789,322.6034333,321.6034,1,CMIP5 -1963,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.737820121,316.946,329.4504333,322.1199833,321.04175,1,CMIP5 -1963,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.556311024,317.6495,329.7265667,322.7085417,321.72905,1,CMIP5 -1964,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.618061914,318.0841333,330.5571,323.5358083,322.751,1,CMIP5 -1964,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.746650396,317.6546667,330.3803333,323.117175,322.21685,1,CMIP5 -1964,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.590972019,318.1738,330.594,323.627175,322.87045,1,CMIP5 -1965,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.575638653,318.7651333,331.0822667,324.263475,323.60325,1,CMIP5 -1965,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.704820933,318.3942,330.9994,323.89335,323.0899,1,CMIP5 -1965,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.549064834,318.8425667,331.0996,324.3445917,323.7181,1,CMIP5 -1966,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.494746158,319.3191,331.4647,325.09915,324.8064,1,CMIP5 -1966,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.606777647,319.0599333,331.4533333,324.7346667,324.2127,1,CMIP5 -1966,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.473143016,319.3732,331.4671333,325.1797583,324.93935,1,CMIP5 -1967,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.365117202,320.0856333,331.8313667,325.9325,325.9065,1,CMIP5 -1967,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.487170676,319.8266667,331.8971333,325.5828,325.3037,1,CMIP5 -1967,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.342327347,320.1397,331.8176333,326.0100583,326.04145,1,CMIP5 -1968,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.338164986,320.7179667,332.2005333,326.652525,326.8458,1,CMIP5 -1968,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.456741685,320.4245333,332.2911333,326.2980917,326.23835,1,CMIP5 -1968,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.31673642,320.7792333,332.1816333,326.7310917,326.98175,1,CMIP5 -1969,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.248455141,321.7016,332.7521333,327.5421083,327.85735,1,CMIP5 -1969,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.336462731,321.3269333,332.7993,327.1883833,327.31365,1,CMIP5 -1969,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.233672419,321.7798333,332.7422667,327.620175,327.9793,1,CMIP5 -1970,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.320005551,322.4174333,333.3870333,328.4995417,329.09685,1,CMIP5 -1970,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.370877759,322.1134333,333.3872667,328.13545,328.52055,1,CMIP5 -1970,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.312864186,322.4808667,333.3869667,328.5799333,329.22595,1,CMIP5 -1971,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.374655777,323.5707333,334.5051,329.6554833,330.27305,1,CMIP5 -1971,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.424256778,323.1126333,334.2880333,329.1674667,329.6346,1,CMIP5 -1971,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.366774362,323.6663667,334.5504333,329.7622,330.416,1,CMIP5 -1972,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.388617858,324.9192,335.9544667,330.9358417,331.43485,1,CMIP5 -1972,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.417388036,324.4275333,335.5865333,330.4391917,330.87135,1,CMIP5 -1972,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.383930076,325.0218667,336.0312667,331.0437583,331.56095,1,CMIP5 -1973,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.411301325,325.8786,337.1665333,332.1842083,332.84585,1,CMIP5 -1973,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.444230642,325.4318333,336.8094333,331.6209417,332.12125,1,CMIP5 -1973,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.406471467,325.9719,337.2411,332.3072,333.0079,1,CMIP5 -1974,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.42942012,327.4319333,338.3501333,333.6416417,334.39225,1,CMIP5 -1974,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.482530896,326.7708,337.9410667,333.0186417,333.68135,1,CMIP5 -1974,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.420703214,327.57,338.4355,333.777125,334.5515,1,CMIP5 -1975,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.941155846,329.7049667,339.4772333,335.13445,335.6778,1,CMIP5 -1975,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.110799797,328.8116,339.0808667,334.4469667,334.9477,1,CMIP5 -1975,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.907541041,329.8914667,339.56,335.2834417,335.84115,1,CMIP5 -1976,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.889905523,331.21,340.7658667,336.5577917,337.12765,1,CMIP5 -1976,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.989831061,330.4517667,340.3625333,335.89225,336.37735,1,CMIP5 -1976,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.871329711,331.3683333,340.8501,336.7024083,337.2956,1,CMIP5 -1977,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.983697902,332.5856,342.4848,338.0265917,338.5179833,1,CMIP5 -1977,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.055989719,331.8696667,341.6588,337.3383667,337.9125,1,CMIP5 -1977,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.972152036,332.7350667,342.6806,338.1765667,338.6453,1,CMIP5 -1978,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.866257448,334.3149333,344.4,339.6543667,339.9512667,1,CMIP5 -1978,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.932923358,333.5597667,343.4588,338.93375,339.3582167,1,CMIP5 -1978,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.857290983,334.4726,344.6126,339.8116167,340.0806333,1,CMIP5 -1979,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.794969799,335.4854,345.6192,340.9776417,341.4029833,1,CMIP5 -1979,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.822977592,334.9274667,344.842,340.35555,340.8263667,1,CMIP5 -1979,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.792929018,335.6018667,345.7948,341.1134667,341.5286,1,CMIP5 -1980,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.927246669,336.9417667,347.2443,342.4287917,342.76455,1,CMIP5 -1980,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.93258296,336.2948,346.4109,341.75705,342.16125,1,CMIP5 -1980,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.929718973,337.0768,347.4326,342.5750583,342.8954167,1,CMIP5 -1981,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.901630443,338.8047667,349.0645,344.104125,344.2736167,1,CMIP5 -1981,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.937126517,338.0178,348.1573,343.3627083,343.6378667,1,CMIP5 -1981,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.898337186,338.9690333,349.2694,344.2653417,344.4114667,1,CMIP5 -1982,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.896641955,340.3896667,350.8126,345.797475,345.9938167,1,CMIP5 -1982,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.928913507,339.5967333,349.9238,345.0248833,345.2895,1,CMIP5 -1982,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.893644272,340.5552333,351.0134,345.9653417,346.1463667,1,CMIP5 -1983,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.076443145,341.8687,352.7702,347.32815,347.33685,1,CMIP5 -1983,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.068166427,341.0907,351.7809,346.536225,346.63665,1,CMIP5 -1983,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.082975719,342.0311333,352.9936,347.5004833,347.4886,1,CMIP5 -1984,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.878246947,343.71,354.2856,348.9578667,348.9179333,1,CMIP5 -1984,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.979927274,342.8737333,353.4765,348.2051917,348.2352667,1,CMIP5 -1984,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.860676081,343.8845667,354.4683,349.1214083,349.0663833,1,CMIP5 -1985,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.732128459,345.1661,355.6637,350.4183833,350.4218667,1,CMIP5 -1985,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.783445462,344.4674,354.864,349.730325,349.79495,1,CMIP5 -1985,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.725742519,345.3119333,355.8443,350.5682417,350.5583667,1,CMIP5 -1986,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.849792648,346.7420333,357.7089,352.1535667,352.0816667,1,CMIP5 -1986,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.855557875,346.0156,356.7716,351.4080917,351.4225833,1,CMIP5 -1986,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.854485091,346.8936667,357.9206,352.3161667,352.2252,1,CMIP5 -1987,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.804430265,348.5939667,359.3792,353.8012583,353.6159333,1,CMIP5 -1987,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.851322732,347.8581333,358.5606,353.051025,352.8926833,1,CMIP5 -1987,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.798919784,348.7475333,359.5641,353.9644583,353.7731,1,CMIP5 -1988,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.968349755,350.2313667,361.6479,355.7982167,355.6568,1,CMIP5 -1988,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.91545568,349.4686667,360.5472,354.92105,354.8341667,1,CMIP5 -1988,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.986431983,350.3906,361.8966,355.9895583,355.8355167,1,CMIP5 -1989,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.038378609,352.2179333,363.8528,357.6888917,357.3424167,1,CMIP5 -1989,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.999485937,351.3372667,362.7485,356.7996,356.5563167,1,CMIP5 -1989,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.053491237,352.4018333,364.1023,357.8824667,357.5128667,1,CMIP5 -1990,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.884966153,354.4949667,365.7562,359.7245083,359.3234333,1,CMIP5 -1990,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.886556329,353.5333,364.6808,358.7909417,358.4748333,1,CMIP5 -1990,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.891044651,354.6957667,365.9991,359.9273833,359.5073333,1,CMIP5 -1991,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.008667615,356.0675667,367.747,361.5341417,361.161,1,CMIP5 -1991,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.964361245,355.2462,366.721,360.6674833,360.3513667,1,CMIP5 -1991,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.024053206,356.2390667,367.9787,361.7225833,361.3362833,1,CMIP5 -1992,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.065421135,357.6538333,369.5572,363.316325,363.0271333,1,CMIP5 -1992,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.013056606,356.8232667,368.4471,362.3943417,362.1535,1,CMIP5 -1992,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.083696234,357.8272667,369.808,363.5171917,363.21675,1,CMIP5 -1993,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.95993282,360.0821,371.5824,365.3443333,364.8564167,1,CMIP5 -1993,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.971845765,359.1025667,370.5676,364.4185167,364.00195,1,CMIP5 -1993,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.963260232,360.2866667,371.8117,365.545175,365.0411667,1,CMIP5 -1994,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.794827183,362.0535667,373.0319,367.1078583,366.6729833,1,CMIP5 -1994,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.819177241,361.1851,372.1369,366.2395333,365.8180667,1,CMIP5 -1994,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.79424379,362.2348667,373.2341,367.2961417,366.8578,1,CMIP5 -1995,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,4.870886963,363.5389667,374.7251,368.8012417,368.47045,1,CMIP5 -1995,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.869056406,362.6913,373.7725,367.9452,367.6585,1,CMIP5 -1995,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,4.876421121,363.7159667,374.9403,368.9871167,368.6461,1,CMIP5 -1996,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.055979338,365.6277667,377.2286,370.871725,370.3152667,1,CMIP5 -1996,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,4.994036895,364.7660333,376.1237,369.9650167,369.4851667,1,CMIP5 -1996,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.075436,365.8077333,377.4782,371.0689333,370.4949,1,CMIP5 -1997,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.359755334,367.1302,379.5032,372.7847333,372.2527667,1,CMIP5 -1997,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.232733772,366.3953333,378.3334,371.8857,371.4070333,1,CMIP5 -1997,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.393515273,367.2836333,379.7675,372.9807333,372.4359,1,CMIP5 -1998,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.487723594,368.7632,381.6096,374.7727667,374.3591333,1,CMIP5 -1998,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.34632938,368.0028333,380.3654,373.8022833,373.42045,1,CMIP5 -1998,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.525203425,368.9219667,381.8907,374.9843917,374.56245,1,CMIP5 -1999,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.450687237,370.9710667,383.6204,376.7559083,376.2160833,1,CMIP5 -1999,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.418617888,370.0352667,382.5054,375.800975,375.3316167,1,CMIP5 -1999,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.464063339,371.1664667,383.8723,376.9634917,376.4076,1,CMIP5 -2000,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.12393111,373.5322667,385.3662,378.7872833,378.1253333,1,CMIP5 -2000,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.213049402,372.3802667,384.3293,377.7912167,377.22765,1,CMIP5 -2000,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.111710846,373.7727667,385.6005,379.0033417,378.32005,1,CMIP5 -2001,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.063052973,375.8911,387.324,380.7318833,379.8562167,1,CMIP5 -2001,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.087498178,374.7674333,386.2489,379.778475,379.0487833,1,CMIP5 -2001,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.064630025,376.1257,387.5669,380.9385917,380.0308833,1,CMIP5 -2002,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.258591131,377.8793,389.6233,382.7059667,381.6606333,1,CMIP5 -2002,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.218612681,376.8003,388.433,381.7267583,380.8368667,1,CMIP5 -2002,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.274482975,378.1045667,389.8922,382.9185917,381.8388,1,CMIP5 -2003,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.528084598,379.9574,392.2221,384.7688417,383.4479333,1,CMIP5 -2003,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.418706606,378.9444333,390.9109,383.7659667,382.6042667,1,CMIP5 -2003,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.55965462,380.1688667,392.5184,384.98715,383.6306667,1,CMIP5 -2004,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.445940749,381.7806667,393.9981,386.7203167,385.55125,1,CMIP5 -2004,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.405423268,380.8543,392.8515,385.755925,384.65895,1,CMIP5 -2004,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.461404659,381.9740667,394.2571,386.930175,385.7447667,1,CMIP5 -2005,co2,carbon_cycle,atmos_co2,esmHistorical,ppmv CO2,Simulated,global,5.232452954,384.7101333,396.082,388.965775,387.5354833,1,CMIP5 -2005,co2,carbon_cycle,atmos_co2_HL,esmHistorical,ppmv CO2,Simulated,HL,5.258830602,383.5085333,394.9414,387.9276417,386.6303167,1,CMIP5 -2005,co2,carbon_cycle,atmos_co2_LL,esmHistorical,ppmv CO2,Simulated,LL,5.233699885,384.961,396.3396,389.1908583,387.7314167,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/rcp85/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/rcp85/ensemble_mean_model.csv deleted file mode 100644 index d50c39470..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/rcp85/ensemble_mean_model.csv +++ /dev/null @@ -1,1426 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2006,"Simulated","ppmv CO2","global",387.725033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2007,"Simulated","ppmv CO2","global",389.917966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2008,"Simulated","ppmv CO2","global",392.239066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2009,"Simulated","ppmv CO2","global",394.654933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2010,"Simulated","ppmv CO2","global",397.7333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2011,"Simulated","ppmv CO2","global",401.064566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2012,"Simulated","ppmv CO2","global",403.6755 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2013,"Simulated","ppmv CO2","global",406.5956 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2014,"Simulated","ppmv CO2","global",410.0279 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2015,"Simulated","ppmv CO2","global",412.996233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2016,"Simulated","ppmv CO2","global",416.307766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2017,"Simulated","ppmv CO2","global",420.228533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2018,"Simulated","ppmv CO2","global",423.634833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2019,"Simulated","ppmv CO2","global",426.717966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2020,"Simulated","ppmv CO2","global",430.6733 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2021,"Simulated","ppmv CO2","global",434.5766 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2022,"Simulated","ppmv CO2","global",438.1823 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2023,"Simulated","ppmv CO2","global",441.4889 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2024,"Simulated","ppmv CO2","global",444.984366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2025,"Simulated","ppmv CO2","global",448.451833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2026,"Simulated","ppmv CO2","global",452.456633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2027,"Simulated","ppmv CO2","global",456.260233333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2028,"Simulated","ppmv CO2","global",460.064466666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2029,"Simulated","ppmv CO2","global",463.622433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2030,"Simulated","ppmv CO2","global",467.946866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2031,"Simulated","ppmv CO2","global",473.4655 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2032,"Simulated","ppmv CO2","global",478.201933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2033,"Simulated","ppmv CO2","global",482.392366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2034,"Simulated","ppmv CO2","global",486.779833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2035,"Simulated","ppmv CO2","global",491.613533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2036,"Simulated","ppmv CO2","global",497.111 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2037,"Simulated","ppmv CO2","global",501.682433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2038,"Simulated","ppmv CO2","global",506.060866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2039,"Simulated","ppmv CO2","global",511.277 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2040,"Simulated","ppmv CO2","global",516.643433333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2041,"Simulated","ppmv CO2","global",521.378566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2042,"Simulated","ppmv CO2","global",527.195733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2043,"Simulated","ppmv CO2","global",533.5082 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2044,"Simulated","ppmv CO2","global",539.341966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2045,"Simulated","ppmv CO2","global",545.113966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2046,"Simulated","ppmv CO2","global",551.353033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2047,"Simulated","ppmv CO2","global",557.4438 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2048,"Simulated","ppmv CO2","global",564.022966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2049,"Simulated","ppmv CO2","global",571.043766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2050,"Simulated","ppmv CO2","global",577.793333333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2051,"Simulated","ppmv CO2","global",584.047933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2052,"Simulated","ppmv CO2","global",591.224866666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2053,"Simulated","ppmv CO2","global",598.7612 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2054,"Simulated","ppmv CO2","global",605.880633333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2055,"Simulated","ppmv CO2","global",612.857766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2056,"Simulated","ppmv CO2","global",620.3911 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2057,"Simulated","ppmv CO2","global",628.008133333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2058,"Simulated","ppmv CO2","global",634.700933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2059,"Simulated","ppmv CO2","global",642.700833333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2060,"Simulated","ppmv CO2","global",650.795266666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2061,"Simulated","ppmv CO2","global",659.3961 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2062,"Simulated","ppmv CO2","global",667.032766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2063,"Simulated","ppmv CO2","global",674.786366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2064,"Simulated","ppmv CO2","global",683.549566666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2065,"Simulated","ppmv CO2","global",692.347066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2066,"Simulated","ppmv CO2","global",700.8271 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2067,"Simulated","ppmv CO2","global",709.1602 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2068,"Simulated","ppmv CO2","global",718.128766666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2069,"Simulated","ppmv CO2","global",727.2412 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2070,"Simulated","ppmv CO2","global",736.0871 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2071,"Simulated","ppmv CO2","global",744.436933333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2072,"Simulated","ppmv CO2","global",753.534733333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2073,"Simulated","ppmv CO2","global",763.2626 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2074,"Simulated","ppmv CO2","global",772.455 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2075,"Simulated","ppmv CO2","global",782.215033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2076,"Simulated","ppmv CO2","global",792.032366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2077,"Simulated","ppmv CO2","global",801.242466666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2078,"Simulated","ppmv CO2","global",810.3549 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2079,"Simulated","ppmv CO2","global",819.878666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2080,"Simulated","ppmv CO2","global",829.916366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2081,"Simulated","ppmv CO2","global",839.869033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2082,"Simulated","ppmv CO2","global",849.502066666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2083,"Simulated","ppmv CO2","global",858.416166666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2084,"Simulated","ppmv CO2","global",868.373 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2085,"Simulated","ppmv CO2","global",878.676366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2086,"Simulated","ppmv CO2","global",888.685533333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2087,"Simulated","ppmv CO2","global",899.366033333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2088,"Simulated","ppmv CO2","global",910.040366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2089,"Simulated","ppmv CO2","global",920.2626 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2090,"Simulated","ppmv CO2","global",930.892366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2091,"Simulated","ppmv CO2","global",941.7719 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2092,"Simulated","ppmv CO2","global",952.1594 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2093,"Simulated","ppmv CO2","global",962.395366666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2094,"Simulated","ppmv CO2","global",973.339666666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2095,"Simulated","ppmv CO2","global",984.4902 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2096,"Simulated","ppmv CO2","global",995.376966666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2097,"Simulated","ppmv CO2","global",1005.98613333333 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2098,"Simulated","ppmv CO2","global",1017.44346666667 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2099,"Simulated","ppmv CO2","global",1029.1412 -"CanESM2","co2","carbon_cycle","atmos_co2","esmrcp85",2100,"Simulated","ppmv CO2","global",1040.11356666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2006,"Simulated","ppmv CO2","HL",386.4236 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2007,"Simulated","ppmv CO2","HL",388.759266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2008,"Simulated","ppmv CO2","HL",391.158033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2009,"Simulated","ppmv CO2","HL",393.546333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2010,"Simulated","ppmv CO2","HL",396.399 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2011,"Simulated","ppmv CO2","HL",399.6568 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2012,"Simulated","ppmv CO2","HL",402.3799 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2013,"Simulated","ppmv CO2","HL",405.200933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2014,"Simulated","ppmv CO2","HL",408.543366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2015,"Simulated","ppmv CO2","HL",411.539033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2016,"Simulated","ppmv CO2","HL",414.7454 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2017,"Simulated","ppmv CO2","HL",418.607566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2018,"Simulated","ppmv CO2","HL",422.1018 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2019,"Simulated","ppmv CO2","HL",425.185366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2020,"Simulated","ppmv CO2","HL",428.9424 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2021,"Simulated","ppmv CO2","HL",432.872066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2022,"Simulated","ppmv CO2","HL",436.510433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2023,"Simulated","ppmv CO2","HL",439.9179 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2024,"Simulated","ppmv CO2","HL",443.4742 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2025,"Simulated","ppmv CO2","HL",446.913 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2026,"Simulated","ppmv CO2","HL",450.6897 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2027,"Simulated","ppmv CO2","HL",454.6061 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2028,"Simulated","ppmv CO2","HL",458.420333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2029,"Simulated","ppmv CO2","HL",462.030066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2030,"Simulated","ppmv CO2","HL",466.1059 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2031,"Simulated","ppmv CO2","HL",471.250566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2032,"Simulated","ppmv CO2","HL",476.001066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2033,"Simulated","ppmv CO2","HL",480.305033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2034,"Simulated","ppmv CO2","HL",484.812966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2035,"Simulated","ppmv CO2","HL",489.550733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2036,"Simulated","ppmv CO2","HL",494.824533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2037,"Simulated","ppmv CO2","HL",499.568833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2038,"Simulated","ppmv CO2","HL",504.028833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2039,"Simulated","ppmv CO2","HL",509.1186 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2040,"Simulated","ppmv CO2","HL",514.456733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2041,"Simulated","ppmv CO2","HL",519.2122 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2042,"Simulated","ppmv CO2","HL",524.795866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2043,"Simulated","ppmv CO2","HL",530.900033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2044,"Simulated","ppmv CO2","HL",536.7711 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2045,"Simulated","ppmv CO2","HL",542.514266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2046,"Simulated","ppmv CO2","HL",548.6762 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2047,"Simulated","ppmv CO2","HL",554.911466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2048,"Simulated","ppmv CO2","HL",561.328766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2049,"Simulated","ppmv CO2","HL",568.066766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2050,"Simulated","ppmv CO2","HL",574.8492 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2051,"Simulated","ppmv CO2","HL",581.2835 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2052,"Simulated","ppmv CO2","HL",588.240533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2053,"Simulated","ppmv CO2","HL",595.5963 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2054,"Simulated","ppmv CO2","HL",602.769566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2055,"Simulated","ppmv CO2","HL",609.827 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2056,"Simulated","ppmv CO2","HL",617.2659 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2057,"Simulated","ppmv CO2","HL",624.893 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2058,"Simulated","ppmv CO2","HL",631.652666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2059,"Simulated","ppmv CO2","HL",639.3901 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2060,"Simulated","ppmv CO2","HL",647.401766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2061,"Simulated","ppmv CO2","HL",655.863 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2062,"Simulated","ppmv CO2","HL",663.801366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2063,"Simulated","ppmv CO2","HL",671.4274 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2064,"Simulated","ppmv CO2","HL",679.999033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2065,"Simulated","ppmv CO2","HL",688.647566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2066,"Simulated","ppmv CO2","HL",697.188833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2067,"Simulated","ppmv CO2","HL",705.606 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2068,"Simulated","ppmv CO2","HL",714.427666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2069,"Simulated","ppmv CO2","HL",723.501433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2070,"Simulated","ppmv CO2","HL",732.4491 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2071,"Simulated","ppmv CO2","HL",740.813666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2072,"Simulated","ppmv CO2","HL",749.6928 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2073,"Simulated","ppmv CO2","HL",759.393333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2074,"Simulated","ppmv CO2","HL",768.642233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2075,"Simulated","ppmv CO2","HL",778.240833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2076,"Simulated","ppmv CO2","HL",788.0351 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2077,"Simulated","ppmv CO2","HL",797.3538 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2078,"Simulated","ppmv CO2","HL",806.545266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2079,"Simulated","ppmv CO2","HL",815.9676 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2080,"Simulated","ppmv CO2","HL",825.8558 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2081,"Simulated","ppmv CO2","HL",835.783466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2082,"Simulated","ppmv CO2","HL",845.6613 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2083,"Simulated","ppmv CO2","HL",854.698433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2084,"Simulated","ppmv CO2","HL",864.3457 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2085,"Simulated","ppmv CO2","HL",874.4521 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2086,"Simulated","ppmv CO2","HL",884.544266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2087,"Simulated","ppmv CO2","HL",895.025433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2088,"Simulated","ppmv CO2","HL",905.703766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2089,"Simulated","ppmv CO2","HL",915.981233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2090,"Simulated","ppmv CO2","HL",926.551133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2091,"Simulated","ppmv CO2","HL",937.359766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2092,"Simulated","ppmv CO2","HL",947.9622 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2093,"Simulated","ppmv CO2","HL",958.1803 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2094,"Simulated","ppmv CO2","HL",968.8669 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2095,"Simulated","ppmv CO2","HL",979.944533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2096,"Simulated","ppmv CO2","HL",990.883333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2097,"Simulated","ppmv CO2","HL",1001.54003333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2098,"Simulated","ppmv CO2","HL",1012.92933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2099,"Simulated","ppmv CO2","HL",1024.42636666667 -"CanESM2","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2100,"Simulated","ppmv CO2","HL",1035.6604 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2006,"Simulated","ppmv CO2","LL",387.996733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2007,"Simulated","ppmv CO2","LL",390.159866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2008,"Simulated","ppmv CO2","LL",392.464766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2009,"Simulated","ppmv CO2","LL",394.8864 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2010,"Simulated","ppmv CO2","LL",398.0119 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2011,"Simulated","ppmv CO2","LL",401.358466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2012,"Simulated","ppmv CO2","LL",403.946033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2013,"Simulated","ppmv CO2","LL",406.886766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2014,"Simulated","ppmv CO2","LL",410.337833333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2015,"Simulated","ppmv CO2","LL",413.300466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2016,"Simulated","ppmv CO2","LL",416.634 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2017,"Simulated","ppmv CO2","LL",420.567 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2018,"Simulated","ppmv CO2","LL",423.954866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2019,"Simulated","ppmv CO2","LL",427.037933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2020,"Simulated","ppmv CO2","LL",431.034633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2021,"Simulated","ppmv CO2","LL",434.932533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2022,"Simulated","ppmv CO2","LL",438.5314 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2023,"Simulated","ppmv CO2","LL",441.8169 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2024,"Simulated","ppmv CO2","LL",445.299633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2025,"Simulated","ppmv CO2","LL",448.7731 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2026,"Simulated","ppmv CO2","LL",452.825533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2027,"Simulated","ppmv CO2","LL",456.605566666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2028,"Simulated","ppmv CO2","LL",460.407733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2029,"Simulated","ppmv CO2","LL",463.9549 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2030,"Simulated","ppmv CO2","LL",468.331233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2031,"Simulated","ppmv CO2","LL",473.927933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2032,"Simulated","ppmv CO2","LL",478.661433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2033,"Simulated","ppmv CO2","LL",482.828166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2034,"Simulated","ppmv CO2","LL",487.190533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2035,"Simulated","ppmv CO2","LL",492.0442 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2036,"Simulated","ppmv CO2","LL",497.5884 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2037,"Simulated","ppmv CO2","LL",502.123766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2038,"Simulated","ppmv CO2","LL",506.4851 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2039,"Simulated","ppmv CO2","LL",511.727666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2040,"Simulated","ppmv CO2","LL",517.099966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2041,"Simulated","ppmv CO2","LL",521.830866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2042,"Simulated","ppmv CO2","LL",527.696766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2043,"Simulated","ppmv CO2","LL",534.052766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2044,"Simulated","ppmv CO2","LL",539.878733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2045,"Simulated","ppmv CO2","LL",545.656766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2046,"Simulated","ppmv CO2","LL",551.9119 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2047,"Simulated","ppmv CO2","LL",557.972533333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2048,"Simulated","ppmv CO2","LL",564.585466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2049,"Simulated","ppmv CO2","LL",571.6653 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2050,"Simulated","ppmv CO2","LL",578.408033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2051,"Simulated","ppmv CO2","LL",584.625133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2052,"Simulated","ppmv CO2","LL",591.847933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2053,"Simulated","ppmv CO2","LL",599.421933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2054,"Simulated","ppmv CO2","LL",606.530166666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2055,"Simulated","ppmv CO2","LL",613.4906 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2056,"Simulated","ppmv CO2","LL",621.0436 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2057,"Simulated","ppmv CO2","LL",628.6585 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2058,"Simulated","ppmv CO2","LL",635.337433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2059,"Simulated","ppmv CO2","LL",643.3921 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2060,"Simulated","ppmv CO2","LL",651.5038 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2061,"Simulated","ppmv CO2","LL",660.133766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2062,"Simulated","ppmv CO2","LL",667.707433333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2063,"Simulated","ppmv CO2","LL",675.487666666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2064,"Simulated","ppmv CO2","LL",684.2909 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2065,"Simulated","ppmv CO2","LL",693.1195 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2066,"Simulated","ppmv CO2","LL",701.586733333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2067,"Simulated","ppmv CO2","LL",709.902266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2068,"Simulated","ppmv CO2","LL",718.9015 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2069,"Simulated","ppmv CO2","LL",728.022033333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2070,"Simulated","ppmv CO2","LL",736.846633333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2071,"Simulated","ppmv CO2","LL",745.193466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2072,"Simulated","ppmv CO2","LL",754.336866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2073,"Simulated","ppmv CO2","LL",764.070466666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2074,"Simulated","ppmv CO2","LL",773.251066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2075,"Simulated","ppmv CO2","LL",783.0448 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2076,"Simulated","ppmv CO2","LL",792.866933333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2077,"Simulated","ppmv CO2","LL",802.0544 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2078,"Simulated","ppmv CO2","LL",811.1503 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2079,"Simulated","ppmv CO2","LL",820.695266666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2080,"Simulated","ppmv CO2","LL",830.7642 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2081,"Simulated","ppmv CO2","LL",840.722066666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2082,"Simulated","ppmv CO2","LL",850.303966666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2083,"Simulated","ppmv CO2","LL",859.1924 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2084,"Simulated","ppmv CO2","LL",869.213866666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2085,"Simulated","ppmv CO2","LL",879.558366666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2086,"Simulated","ppmv CO2","LL",889.550233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2087,"Simulated","ppmv CO2","LL",900.2723 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2088,"Simulated","ppmv CO2","LL",910.945766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2089,"Simulated","ppmv CO2","LL",921.1565 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2090,"Simulated","ppmv CO2","LL",931.798766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2091,"Simulated","ppmv CO2","LL",942.693133333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2092,"Simulated","ppmv CO2","LL",953.035766666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2093,"Simulated","ppmv CO2","LL",963.2754 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2094,"Simulated","ppmv CO2","LL",974.2735 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2095,"Simulated","ppmv CO2","LL",985.439333333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2096,"Simulated","ppmv CO2","LL",996.315233333333 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2097,"Simulated","ppmv CO2","LL",1006.91446666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2098,"Simulated","ppmv CO2","LL",1018.38596666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2099,"Simulated","ppmv CO2","LL",1030.12556666667 -"CanESM2","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2100,"Simulated","ppmv CO2","LL",1041.04336666667 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2006,"Simulated","ppmv CO2","global",397.5849 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2007,"Simulated","ppmv CO2","global",400.1924 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2008,"Simulated","ppmv CO2","global",403.3394 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2009,"Simulated","ppmv CO2","global",405.974 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2010,"Simulated","ppmv CO2","global",408.6471 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2011,"Simulated","ppmv CO2","global",411.6611 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2012,"Simulated","ppmv CO2","global",415.0536 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2013,"Simulated","ppmv CO2","global",418.3557 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2014,"Simulated","ppmv CO2","global",421.5208 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2015,"Simulated","ppmv CO2","global",425.0235 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2016,"Simulated","ppmv CO2","global",428.6396 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2017,"Simulated","ppmv CO2","global",432.4629 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2018,"Simulated","ppmv CO2","global",435.9357 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2019,"Simulated","ppmv CO2","global",439.9385 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2020,"Simulated","ppmv CO2","global",444.3049 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2021,"Simulated","ppmv CO2","global",448.6594 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2022,"Simulated","ppmv CO2","global",452.9583 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2023,"Simulated","ppmv CO2","global",457.5597 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2024,"Simulated","ppmv CO2","global",461.6181 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2025,"Simulated","ppmv CO2","global",466.0517 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2026,"Simulated","ppmv CO2","global",470.4007 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2027,"Simulated","ppmv CO2","global",475.8657 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2028,"Simulated","ppmv CO2","global",480.8614 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2029,"Simulated","ppmv CO2","global",485.5816 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2030,"Simulated","ppmv CO2","global",490.8057 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2031,"Simulated","ppmv CO2","global",495.9752 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2032,"Simulated","ppmv CO2","global",501.4305 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2033,"Simulated","ppmv CO2","global",507.0755 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2034,"Simulated","ppmv CO2","global",512.9777 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2035,"Simulated","ppmv CO2","global",518.4635 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2036,"Simulated","ppmv CO2","global",523.9535 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2037,"Simulated","ppmv CO2","global",530.5008 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2038,"Simulated","ppmv CO2","global",537.2632 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2039,"Simulated","ppmv CO2","global",543.1694 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2040,"Simulated","ppmv CO2","global",549.1965 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2041,"Simulated","ppmv CO2","global",556.4038 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2042,"Simulated","ppmv CO2","global",563.4965 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2043,"Simulated","ppmv CO2","global",569.82 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2044,"Simulated","ppmv CO2","global",576.3683 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2045,"Simulated","ppmv CO2","global",583.6641 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2046,"Simulated","ppmv CO2","global",590.7503 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2047,"Simulated","ppmv CO2","global",598.2731 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2048,"Simulated","ppmv CO2","global",605.8418 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2049,"Simulated","ppmv CO2","global",613.3175 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2050,"Simulated","ppmv CO2","global",620.4629 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2051,"Simulated","ppmv CO2","global",628.2155 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2052,"Simulated","ppmv CO2","global",636.3758 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2053,"Simulated","ppmv CO2","global",644.9045 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2054,"Simulated","ppmv CO2","global",653.28 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2055,"Simulated","ppmv CO2","global",661.3235 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2056,"Simulated","ppmv CO2","global",670.3555 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2057,"Simulated","ppmv CO2","global",678.9124 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2058,"Simulated","ppmv CO2","global",687.4831 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2059,"Simulated","ppmv CO2","global",696.8273 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2060,"Simulated","ppmv CO2","global",705.5871 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2061,"Simulated","ppmv CO2","global",714.6006 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2062,"Simulated","ppmv CO2","global",723.9965 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2063,"Simulated","ppmv CO2","global",733.3631 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2064,"Simulated","ppmv CO2","global",742.3715 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2065,"Simulated","ppmv CO2","global",751.5356 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2066,"Simulated","ppmv CO2","global",761.6527 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2067,"Simulated","ppmv CO2","global",771.6122 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2068,"Simulated","ppmv CO2","global",781.6223 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2069,"Simulated","ppmv CO2","global",791.3877 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2070,"Simulated","ppmv CO2","global",801.3596 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2071,"Simulated","ppmv CO2","global",811.6398 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2072,"Simulated","ppmv CO2","global",822.0872 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2073,"Simulated","ppmv CO2","global",832.1172 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2074,"Simulated","ppmv CO2","global",842.2373 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2075,"Simulated","ppmv CO2","global",852.5264 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2076,"Simulated","ppmv CO2","global",863.3348 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2077,"Simulated","ppmv CO2","global",874.1434 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2078,"Simulated","ppmv CO2","global",884.5393 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2079,"Simulated","ppmv CO2","global",895.0653 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2080,"Simulated","ppmv CO2","global",905.5481 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2081,"Simulated","ppmv CO2","global",916.6229 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2082,"Simulated","ppmv CO2","global",927.9983 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2083,"Simulated","ppmv CO2","global",938.9017 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2084,"Simulated","ppmv CO2","global",949.9079 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2085,"Simulated","ppmv CO2","global",960.6758 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2086,"Simulated","ppmv CO2","global",972.1195 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2087,"Simulated","ppmv CO2","global",983.5407 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2088,"Simulated","ppmv CO2","global",994.5426 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2089,"Simulated","ppmv CO2","global",1005.9824 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2090,"Simulated","ppmv CO2","global",1017.0815 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2091,"Simulated","ppmv CO2","global",1028.6499 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2092,"Simulated","ppmv CO2","global",1040.1685 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2093,"Simulated","ppmv CO2","global",1051.6808 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2094,"Simulated","ppmv CO2","global",1063.2268 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2095,"Simulated","ppmv CO2","global",1074.5491 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2096,"Simulated","ppmv CO2","global",1086.2766 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2097,"Simulated","ppmv CO2","global",1097.7172 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2098,"Simulated","ppmv CO2","global",1109.7597 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2099,"Simulated","ppmv CO2","global",1122.1158 -"CESM1-BGC","co2","carbon_cycle","atmos_co2","esmrcp85",2100,"Simulated","ppmv CO2","global",1133.2752 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2006,"Simulated","ppmv CO2","HL",396.5728 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2007,"Simulated","ppmv CO2","HL",398.9636 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2008,"Simulated","ppmv CO2","HL",401.9872 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2009,"Simulated","ppmv CO2","HL",404.516 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2010,"Simulated","ppmv CO2","HL",407.2164 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2011,"Simulated","ppmv CO2","HL",410.1977 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2012,"Simulated","ppmv CO2","HL",413.3695 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2013,"Simulated","ppmv CO2","HL",416.6226 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2014,"Simulated","ppmv CO2","HL",419.8157 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2015,"Simulated","ppmv CO2","HL",423.3931 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2016,"Simulated","ppmv CO2","HL",426.8959 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2017,"Simulated","ppmv CO2","HL",430.5209 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2018,"Simulated","ppmv CO2","HL",434.0594 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2019,"Simulated","ppmv CO2","HL",437.9625 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2020,"Simulated","ppmv CO2","HL",442.1721 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2021,"Simulated","ppmv CO2","HL",446.3948 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2022,"Simulated","ppmv CO2","HL",450.7144 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2023,"Simulated","ppmv CO2","HL",455.1747 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2024,"Simulated","ppmv CO2","HL",459.4692 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2025,"Simulated","ppmv CO2","HL",463.8271 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2026,"Simulated","ppmv CO2","HL",468.0729 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2027,"Simulated","ppmv CO2","HL",473.1881 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2028,"Simulated","ppmv CO2","HL",478.1825 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2029,"Simulated","ppmv CO2","HL",482.841 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2030,"Simulated","ppmv CO2","HL",488.0878 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2031,"Simulated","ppmv CO2","HL",493.2543 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2032,"Simulated","ppmv CO2","HL",498.5998 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2033,"Simulated","ppmv CO2","HL",504.1491 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2034,"Simulated","ppmv CO2","HL",509.9394 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2035,"Simulated","ppmv CO2","HL",515.4736 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2036,"Simulated","ppmv CO2","HL",520.9851 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2037,"Simulated","ppmv CO2","HL",527.3175 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2038,"Simulated","ppmv CO2","HL",533.993 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2039,"Simulated","ppmv CO2","HL",540.0711 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2040,"Simulated","ppmv CO2","HL",546.0724 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2041,"Simulated","ppmv CO2","HL",553.0006 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2042,"Simulated","ppmv CO2","HL",560.0575 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2043,"Simulated","ppmv CO2","HL",566.5684 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2044,"Simulated","ppmv CO2","HL",572.9199 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2045,"Simulated","ppmv CO2","HL",580.1404 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2046,"Simulated","ppmv CO2","HL",587.1378 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2047,"Simulated","ppmv CO2","HL",594.4944 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2048,"Simulated","ppmv CO2","HL",602.1029 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2049,"Simulated","ppmv CO2","HL",609.4541 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2050,"Simulated","ppmv CO2","HL",616.8611 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2051,"Simulated","ppmv CO2","HL",624.3117 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2052,"Simulated","ppmv CO2","HL",632.3727 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2053,"Simulated","ppmv CO2","HL",640.7532 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2054,"Simulated","ppmv CO2","HL",649.1932 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2055,"Simulated","ppmv CO2","HL",657.1484 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2056,"Simulated","ppmv CO2","HL",666.0094 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2057,"Simulated","ppmv CO2","HL",674.7705 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2058,"Simulated","ppmv CO2","HL",683.3198 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2059,"Simulated","ppmv CO2","HL",692.5023 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2060,"Simulated","ppmv CO2","HL",701.3119 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2061,"Simulated","ppmv CO2","HL",710.1049 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2062,"Simulated","ppmv CO2","HL",719.3962 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2063,"Simulated","ppmv CO2","HL",728.7348 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2064,"Simulated","ppmv CO2","HL",737.7452 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2065,"Simulated","ppmv CO2","HL",746.8807 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2066,"Simulated","ppmv CO2","HL",756.8662 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2067,"Simulated","ppmv CO2","HL",766.6132 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2068,"Simulated","ppmv CO2","HL",776.5737 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2069,"Simulated","ppmv CO2","HL",786.5992 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2070,"Simulated","ppmv CO2","HL",796.4408 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2071,"Simulated","ppmv CO2","HL",806.6591 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2072,"Simulated","ppmv CO2","HL",817.1871 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2073,"Simulated","ppmv CO2","HL",827.111 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2074,"Simulated","ppmv CO2","HL",837.2298 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2075,"Simulated","ppmv CO2","HL",847.4624 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2076,"Simulated","ppmv CO2","HL",858.1162 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2077,"Simulated","ppmv CO2","HL",868.8911 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2078,"Simulated","ppmv CO2","HL",879.2467 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2079,"Simulated","ppmv CO2","HL",889.9468 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2080,"Simulated","ppmv CO2","HL",900.3597 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2081,"Simulated","ppmv CO2","HL",911.3903 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2082,"Simulated","ppmv CO2","HL",922.6801 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2083,"Simulated","ppmv CO2","HL",933.5411 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2084,"Simulated","ppmv CO2","HL",944.4245 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2085,"Simulated","ppmv CO2","HL",955.4323 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2086,"Simulated","ppmv CO2","HL",966.6704 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2087,"Simulated","ppmv CO2","HL",978.0716 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2088,"Simulated","ppmv CO2","HL",989.0506 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2089,"Simulated","ppmv CO2","HL",1000.674 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2090,"Simulated","ppmv CO2","HL",1011.7398 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2091,"Simulated","ppmv CO2","HL",1023.1716 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2092,"Simulated","ppmv CO2","HL",1034.5413 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2093,"Simulated","ppmv CO2","HL",1045.9936 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2094,"Simulated","ppmv CO2","HL",1057.4381 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2095,"Simulated","ppmv CO2","HL",1068.8781 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2096,"Simulated","ppmv CO2","HL",1080.5544 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2097,"Simulated","ppmv CO2","HL",1092.3418 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2098,"Simulated","ppmv CO2","HL",1104.0484 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2099,"Simulated","ppmv CO2","HL",1116.4512 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2100,"Simulated","ppmv CO2","HL",1127.9533 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2006,"Simulated","ppmv CO2","LL",397.8136 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2007,"Simulated","ppmv CO2","LL",400.47 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2008,"Simulated","ppmv CO2","LL",403.6449 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2009,"Simulated","ppmv CO2","LL",406.3034 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2010,"Simulated","ppmv CO2","LL",408.9703 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2011,"Simulated","ppmv CO2","LL",411.9917 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2012,"Simulated","ppmv CO2","LL",415.434 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2013,"Simulated","ppmv CO2","LL",418.7472 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2014,"Simulated","ppmv CO2","LL",421.906 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2015,"Simulated","ppmv CO2","LL",425.3918 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2016,"Simulated","ppmv CO2","LL",429.0335 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2017,"Simulated","ppmv CO2","LL",432.9015 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2018,"Simulated","ppmv CO2","LL",436.3596 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2019,"Simulated","ppmv CO2","LL",440.3849 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2020,"Simulated","ppmv CO2","LL",444.7867 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2021,"Simulated","ppmv CO2","LL",449.171 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2022,"Simulated","ppmv CO2","LL",453.4652 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2023,"Simulated","ppmv CO2","LL",458.0985 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2024,"Simulated","ppmv CO2","LL",462.1036 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2025,"Simulated","ppmv CO2","LL",466.5542 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2026,"Simulated","ppmv CO2","LL",470.9266 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2027,"Simulated","ppmv CO2","LL",476.4705 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2028,"Simulated","ppmv CO2","LL",481.4666 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2029,"Simulated","ppmv CO2","LL",486.2007 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2030,"Simulated","ppmv CO2","LL",491.4197 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2031,"Simulated","ppmv CO2","LL",496.5899 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2032,"Simulated","ppmv CO2","LL",502.0699 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2033,"Simulated","ppmv CO2","LL",507.7366 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2034,"Simulated","ppmv CO2","LL",513.6641 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2035,"Simulated","ppmv CO2","LL",519.1389 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2036,"Simulated","ppmv CO2","LL",524.6241 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2037,"Simulated","ppmv CO2","LL",531.2199 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2038,"Simulated","ppmv CO2","LL",538.0019 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2039,"Simulated","ppmv CO2","LL",543.8694 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2040,"Simulated","ppmv CO2","LL",549.9023 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2041,"Simulated","ppmv CO2","LL",557.1726 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2042,"Simulated","ppmv CO2","LL",564.2734 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2043,"Simulated","ppmv CO2","LL",570.5546 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2044,"Simulated","ppmv CO2","LL",577.1473 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2045,"Simulated","ppmv CO2","LL",584.4602 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2046,"Simulated","ppmv CO2","LL",591.5664 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2047,"Simulated","ppmv CO2","LL",599.1267 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2048,"Simulated","ppmv CO2","LL",606.6864 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2049,"Simulated","ppmv CO2","LL",614.1903 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2050,"Simulated","ppmv CO2","LL",621.2766 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2051,"Simulated","ppmv CO2","LL",629.0973 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2052,"Simulated","ppmv CO2","LL",637.2802 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2053,"Simulated","ppmv CO2","LL",645.8423 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2054,"Simulated","ppmv CO2","LL",654.2033 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2055,"Simulated","ppmv CO2","LL",662.2667 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2056,"Simulated","ppmv CO2","LL",671.3373 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2057,"Simulated","ppmv CO2","LL",679.848 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2058,"Simulated","ppmv CO2","LL",688.4236 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2059,"Simulated","ppmv CO2","LL",697.8044 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2060,"Simulated","ppmv CO2","LL",706.5529 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2061,"Simulated","ppmv CO2","LL",715.6163 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2062,"Simulated","ppmv CO2","LL",725.0357 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2063,"Simulated","ppmv CO2","LL",734.4086 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2064,"Simulated","ppmv CO2","LL",743.4166 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2065,"Simulated","ppmv CO2","LL",752.5872 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2066,"Simulated","ppmv CO2","LL",762.7341 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2067,"Simulated","ppmv CO2","LL",772.7415 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2068,"Simulated","ppmv CO2","LL",782.7628 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2069,"Simulated","ppmv CO2","LL",792.4694 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2070,"Simulated","ppmv CO2","LL",802.4708 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2071,"Simulated","ppmv CO2","LL",812.765 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2072,"Simulated","ppmv CO2","LL",823.1941 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2073,"Simulated","ppmv CO2","LL",833.2481 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2074,"Simulated","ppmv CO2","LL",843.3685 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2075,"Simulated","ppmv CO2","LL",853.6703 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2076,"Simulated","ppmv CO2","LL",864.5137 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2077,"Simulated","ppmv CO2","LL",875.3299 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2078,"Simulated","ppmv CO2","LL",885.7349 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2079,"Simulated","ppmv CO2","LL",896.2216 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2080,"Simulated","ppmv CO2","LL",906.7201 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2081,"Simulated","ppmv CO2","LL",917.805 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2082,"Simulated","ppmv CO2","LL",929.1998 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2083,"Simulated","ppmv CO2","LL",940.1127 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2084,"Simulated","ppmv CO2","LL",951.1466 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2085,"Simulated","ppmv CO2","LL",961.8604 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2086,"Simulated","ppmv CO2","LL",973.3505 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2087,"Simulated","ppmv CO2","LL",984.7762 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2088,"Simulated","ppmv CO2","LL",995.7832 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2089,"Simulated","ppmv CO2","LL",1007.1816 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2090,"Simulated","ppmv CO2","LL",1018.2882 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2091,"Simulated","ppmv CO2","LL",1029.8875 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2092,"Simulated","ppmv CO2","LL",1041.4397 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2093,"Simulated","ppmv CO2","LL",1052.9656 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2094,"Simulated","ppmv CO2","LL",1064.5345 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2095,"Simulated","ppmv CO2","LL",1075.8303 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2096,"Simulated","ppmv CO2","LL",1087.5693 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2097,"Simulated","ppmv CO2","LL",1098.9316 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2098,"Simulated","ppmv CO2","LL",1111.0499 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2099,"Simulated","ppmv CO2","LL",1123.3955 -"CESM1-BGC","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2100,"Simulated","ppmv CO2","LL",1134.4775 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2006,"Simulated","ppmv CO2","global",387.3668 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2007,"Simulated","ppmv CO2","global",389.9797 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2008,"Simulated","ppmv CO2","global",392.3876 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2009,"Simulated","ppmv CO2","global",394.6141 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2010,"Simulated","ppmv CO2","global",397.1429 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2011,"Simulated","ppmv CO2","global",399.9856 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2012,"Simulated","ppmv CO2","global",402.9452 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2013,"Simulated","ppmv CO2","global",405.1241 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2014,"Simulated","ppmv CO2","global",407.5293 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2015,"Simulated","ppmv CO2","global",410.459 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2016,"Simulated","ppmv CO2","global",413.1846 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2017,"Simulated","ppmv CO2","global",416.0323 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2018,"Simulated","ppmv CO2","global",419.5546 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2019,"Simulated","ppmv CO2","global",423.1926 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2020,"Simulated","ppmv CO2","global",426.6933 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2021,"Simulated","ppmv CO2","global",431.0547 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2022,"Simulated","ppmv CO2","global",435.0698 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2023,"Simulated","ppmv CO2","global",438.9902 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2024,"Simulated","ppmv CO2","global",442.8606 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2025,"Simulated","ppmv CO2","global",447.3694 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2026,"Simulated","ppmv CO2","global",452.3492 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2027,"Simulated","ppmv CO2","global",457.0677 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2028,"Simulated","ppmv CO2","global",462.0225 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2029,"Simulated","ppmv CO2","global",466.7155 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2030,"Simulated","ppmv CO2","global",471.086 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2031,"Simulated","ppmv CO2","global",475.5194 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2032,"Simulated","ppmv CO2","global",479.8006 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2033,"Simulated","ppmv CO2","global",484.2881 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2034,"Simulated","ppmv CO2","global",489.045 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2035,"Simulated","ppmv CO2","global",493.8407 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2036,"Simulated","ppmv CO2","global",499.0871 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2037,"Simulated","ppmv CO2","global",504.1383 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2038,"Simulated","ppmv CO2","global",509.2559 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2039,"Simulated","ppmv CO2","global",514.385 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2040,"Simulated","ppmv CO2","global",520.2239 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2041,"Simulated","ppmv CO2","global",526.5123 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2042,"Simulated","ppmv CO2","global",532.2604 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2043,"Simulated","ppmv CO2","global",537.7576 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2044,"Simulated","ppmv CO2","global",543.0998 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2045,"Simulated","ppmv CO2","global",549.0451 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2046,"Simulated","ppmv CO2","global",554.9423 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2047,"Simulated","ppmv CO2","global",561.865 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2048,"Simulated","ppmv CO2","global",568.6024 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2049,"Simulated","ppmv CO2","global",575.562 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2050,"Simulated","ppmv CO2","global",581.996 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2051,"Simulated","ppmv CO2","global",588.6556 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2052,"Simulated","ppmv CO2","global",595.5404 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2053,"Simulated","ppmv CO2","global",602.3337 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2054,"Simulated","ppmv CO2","global",609.3506 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2055,"Simulated","ppmv CO2","global",617.0286 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2056,"Simulated","ppmv CO2","global",624.7797 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2057,"Simulated","ppmv CO2","global",632.5667 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2058,"Simulated","ppmv CO2","global",640.1954 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2059,"Simulated","ppmv CO2","global",648.6892 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2060,"Simulated","ppmv CO2","global",656.9419 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2061,"Simulated","ppmv CO2","global",665.2304 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2062,"Simulated","ppmv CO2","global",674.1954 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2063,"Simulated","ppmv CO2","global",684.0911 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2064,"Simulated","ppmv CO2","global",693.6471 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2065,"Simulated","ppmv CO2","global",703.4755 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2066,"Simulated","ppmv CO2","global",713.2459 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2067,"Simulated","ppmv CO2","global",723.1547 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2068,"Simulated","ppmv CO2","global",733.4644 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2069,"Simulated","ppmv CO2","global",743.4357 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2070,"Simulated","ppmv CO2","global",753.4973 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2071,"Simulated","ppmv CO2","global",763.7454 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2072,"Simulated","ppmv CO2","global",774.3573 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2073,"Simulated","ppmv CO2","global",785.2749 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2074,"Simulated","ppmv CO2","global",796.5182 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2075,"Simulated","ppmv CO2","global",807.2547 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2076,"Simulated","ppmv CO2","global",817.6956 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2077,"Simulated","ppmv CO2","global",828.4289 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2078,"Simulated","ppmv CO2","global",839.3979 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2079,"Simulated","ppmv CO2","global",851.1563 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2080,"Simulated","ppmv CO2","global",863.1695 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2081,"Simulated","ppmv CO2","global",875.7397 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2082,"Simulated","ppmv CO2","global",887.5153 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2083,"Simulated","ppmv CO2","global",899.7326 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2084,"Simulated","ppmv CO2","global",912.9964 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2085,"Simulated","ppmv CO2","global",926.1566 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2086,"Simulated","ppmv CO2","global",939.2438 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2087,"Simulated","ppmv CO2","global",952.2349 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2088,"Simulated","ppmv CO2","global",964.3616 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2089,"Simulated","ppmv CO2","global",976.955 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2090,"Simulated","ppmv CO2","global",989.0416 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2091,"Simulated","ppmv CO2","global",1001.9392 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2092,"Simulated","ppmv CO2","global",1015.5943 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2093,"Simulated","ppmv CO2","global",1029.6502 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2094,"Simulated","ppmv CO2","global",1044.1236 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2095,"Simulated","ppmv CO2","global",1057.6924 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2096,"Simulated","ppmv CO2","global",1071.8081 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2097,"Simulated","ppmv CO2","global",1085.82 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2098,"Simulated","ppmv CO2","global",1099.6989 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2099,"Simulated","ppmv CO2","global",1113.0642 -"MIROC-ESM","co2","carbon_cycle","atmos_co2","esmrcp85",2100,"Simulated","ppmv CO2","global",1126.9115 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2006,"Simulated","ppmv CO2","HL",386.7052 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2007,"Simulated","ppmv CO2","HL",389.0987 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2008,"Simulated","ppmv CO2","HL",391.5818 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2009,"Simulated","ppmv CO2","HL",393.6368 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2010,"Simulated","ppmv CO2","HL",396.1874 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2011,"Simulated","ppmv CO2","HL",398.8686 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2012,"Simulated","ppmv CO2","HL",401.8333 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2013,"Simulated","ppmv CO2","HL",404.2227 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2014,"Simulated","ppmv CO2","HL",406.5601 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2015,"Simulated","ppmv CO2","HL",409.3726 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2016,"Simulated","ppmv CO2","HL",412.1167 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2017,"Simulated","ppmv CO2","HL",414.9118 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2018,"Simulated","ppmv CO2","HL",418.1884 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2019,"Simulated","ppmv CO2","HL",421.786 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2020,"Simulated","ppmv CO2","HL",425.1992 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2021,"Simulated","ppmv CO2","HL",429.3302 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2022,"Simulated","ppmv CO2","HL",433.3007 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2023,"Simulated","ppmv CO2","HL",437.2303 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2024,"Simulated","ppmv CO2","HL",441.1331 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2025,"Simulated","ppmv CO2","HL",445.3927 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2026,"Simulated","ppmv CO2","HL",450.2992 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2027,"Simulated","ppmv CO2","HL",455.0176 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2028,"Simulated","ppmv CO2","HL",459.7698 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2029,"Simulated","ppmv CO2","HL",464.6923 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2030,"Simulated","ppmv CO2","HL",469.0442 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2031,"Simulated","ppmv CO2","HL",473.7948 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2032,"Simulated","ppmv CO2","HL",478.0876 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2033,"Simulated","ppmv CO2","HL",482.4031 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2034,"Simulated","ppmv CO2","HL",487.062 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2035,"Simulated","ppmv CO2","HL",491.7677 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2036,"Simulated","ppmv CO2","HL",497.0026 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2037,"Simulated","ppmv CO2","HL",502.06 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2038,"Simulated","ppmv CO2","HL",507.1691 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2039,"Simulated","ppmv CO2","HL",512.1173 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2040,"Simulated","ppmv CO2","HL",517.8312 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2041,"Simulated","ppmv CO2","HL",523.9139 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2042,"Simulated","ppmv CO2","HL",529.8231 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2043,"Simulated","ppmv CO2","HL",535.3469 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2044,"Simulated","ppmv CO2","HL",540.7843 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2045,"Simulated","ppmv CO2","HL",546.5668 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2046,"Simulated","ppmv CO2","HL",552.4453 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2047,"Simulated","ppmv CO2","HL",558.9681 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2048,"Simulated","ppmv CO2","HL",565.81 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2049,"Simulated","ppmv CO2","HL",572.6157 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2050,"Simulated","ppmv CO2","HL",579.1371 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2051,"Simulated","ppmv CO2","HL",585.8708 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2052,"Simulated","ppmv CO2","HL",592.7268 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2053,"Simulated","ppmv CO2","HL",599.7501 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2054,"Simulated","ppmv CO2","HL",606.4372 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2055,"Simulated","ppmv CO2","HL",613.957 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2056,"Simulated","ppmv CO2","HL",621.5988 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2057,"Simulated","ppmv CO2","HL",629.6144 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2058,"Simulated","ppmv CO2","HL",636.8801 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2059,"Simulated","ppmv CO2","HL",645.1696 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2060,"Simulated","ppmv CO2","HL",653.6948 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2061,"Simulated","ppmv CO2","HL",661.8207 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2062,"Simulated","ppmv CO2","HL",670.5294 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2063,"Simulated","ppmv CO2","HL",680.1703 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2064,"Simulated","ppmv CO2","HL",689.6762 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2065,"Simulated","ppmv CO2","HL",699.4184 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2066,"Simulated","ppmv CO2","HL",709.3768 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2067,"Simulated","ppmv CO2","HL",719.1984 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2068,"Simulated","ppmv CO2","HL",729.3614 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2069,"Simulated","ppmv CO2","HL",739.3561 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2070,"Simulated","ppmv CO2","HL",749.4109 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2071,"Simulated","ppmv CO2","HL",759.6235 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2072,"Simulated","ppmv CO2","HL",770.2466 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2073,"Simulated","ppmv CO2","HL",780.9893 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2074,"Simulated","ppmv CO2","HL",792.3967 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2075,"Simulated","ppmv CO2","HL",803.1645 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2076,"Simulated","ppmv CO2","HL",813.8165 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2077,"Simulated","ppmv CO2","HL",824.4981 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2078,"Simulated","ppmv CO2","HL",835.2922 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2079,"Simulated","ppmv CO2","HL",846.7968 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2080,"Simulated","ppmv CO2","HL",858.6611 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2081,"Simulated","ppmv CO2","HL",871.077 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2082,"Simulated","ppmv CO2","HL",882.9516 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2083,"Simulated","ppmv CO2","HL",895.0401 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2084,"Simulated","ppmv CO2","HL",908.114 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2085,"Simulated","ppmv CO2","HL",921.5459 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2086,"Simulated","ppmv CO2","HL",934.4461 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2087,"Simulated","ppmv CO2","HL",947.5967 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2088,"Simulated","ppmv CO2","HL",959.9842 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2089,"Simulated","ppmv CO2","HL",972.6829 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2090,"Simulated","ppmv CO2","HL",984.9184 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2091,"Simulated","ppmv CO2","HL",997.6438 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2092,"Simulated","ppmv CO2","HL",1011.2668 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2093,"Simulated","ppmv CO2","HL",1024.9557 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2094,"Simulated","ppmv CO2","HL",1039.5983 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2095,"Simulated","ppmv CO2","HL",1053.0897 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2096,"Simulated","ppmv CO2","HL",1067.1963 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2097,"Simulated","ppmv CO2","HL",1081.3327 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2098,"Simulated","ppmv CO2","HL",1095.3438 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2099,"Simulated","ppmv CO2","HL",1108.9246 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2100,"Simulated","ppmv CO2","HL",1122.6577 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2006,"Simulated","ppmv CO2","LL",387.5049 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2007,"Simulated","ppmv CO2","LL",390.1636 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2008,"Simulated","ppmv CO2","LL",392.5558 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2009,"Simulated","ppmv CO2","LL",394.8181 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2010,"Simulated","ppmv CO2","LL",397.3424 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2011,"Simulated","ppmv CO2","LL",400.2188 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2012,"Simulated","ppmv CO2","LL",403.1774 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2013,"Simulated","ppmv CO2","LL",405.3122 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2014,"Simulated","ppmv CO2","LL",407.7317 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2015,"Simulated","ppmv CO2","LL",410.6859 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2016,"Simulated","ppmv CO2","LL",413.4075 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2017,"Simulated","ppmv CO2","LL",416.2663 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2018,"Simulated","ppmv CO2","LL",419.8399 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2019,"Simulated","ppmv CO2","LL",423.4863 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2020,"Simulated","ppmv CO2","LL",427.0053 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2021,"Simulated","ppmv CO2","LL",431.4148 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2022,"Simulated","ppmv CO2","LL",435.4392 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2023,"Simulated","ppmv CO2","LL",439.3577 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2024,"Simulated","ppmv CO2","LL",443.2213 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2025,"Simulated","ppmv CO2","LL",447.7821 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2026,"Simulated","ppmv CO2","LL",452.7772 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2027,"Simulated","ppmv CO2","LL",457.4958 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2028,"Simulated","ppmv CO2","LL",462.4928 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2029,"Simulated","ppmv CO2","LL",467.1379 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2030,"Simulated","ppmv CO2","LL",471.5123 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2031,"Simulated","ppmv CO2","LL",475.8795 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2032,"Simulated","ppmv CO2","LL",480.1583 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2033,"Simulated","ppmv CO2","LL",484.6817 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2034,"Simulated","ppmv CO2","LL",489.459 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2035,"Simulated","ppmv CO2","LL",494.2735 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2036,"Simulated","ppmv CO2","LL",499.5223 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2037,"Simulated","ppmv CO2","LL",504.5722 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2038,"Simulated","ppmv CO2","LL",509.6916 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2039,"Simulated","ppmv CO2","LL",514.8585 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2040,"Simulated","ppmv CO2","LL",520.7235 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2041,"Simulated","ppmv CO2","LL",527.0548 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2042,"Simulated","ppmv CO2","LL",532.7692 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2043,"Simulated","ppmv CO2","LL",538.261 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2044,"Simulated","ppmv CO2","LL",543.5833 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2045,"Simulated","ppmv CO2","LL",549.5626 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2046,"Simulated","ppmv CO2","LL",555.4636 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2047,"Simulated","ppmv CO2","LL",562.4699 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2048,"Simulated","ppmv CO2","LL",569.1855 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2049,"Simulated","ppmv CO2","LL",576.1772 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2050,"Simulated","ppmv CO2","LL",582.5929 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2051,"Simulated","ppmv CO2","LL",589.2371 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2052,"Simulated","ppmv CO2","LL",596.1278 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2053,"Simulated","ppmv CO2","LL",602.8732 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2054,"Simulated","ppmv CO2","LL",609.9589 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2055,"Simulated","ppmv CO2","LL",617.6699 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2056,"Simulated","ppmv CO2","LL",625.4439 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2057,"Simulated","ppmv CO2","LL",633.1831 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2058,"Simulated","ppmv CO2","LL",640.8876 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2059,"Simulated","ppmv CO2","LL",649.424 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2060,"Simulated","ppmv CO2","LL",657.6199 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2061,"Simulated","ppmv CO2","LL",665.9423 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2062,"Simulated","ppmv CO2","LL",674.9608 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2063,"Simulated","ppmv CO2","LL",684.9097 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2064,"Simulated","ppmv CO2","LL",694.4761 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2065,"Simulated","ppmv CO2","LL",704.3225 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2066,"Simulated","ppmv CO2","LL",714.0537 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2067,"Simulated","ppmv CO2","LL",723.9807 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2068,"Simulated","ppmv CO2","LL",734.321 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2069,"Simulated","ppmv CO2","LL",744.2875 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2070,"Simulated","ppmv CO2","LL",754.3505 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2071,"Simulated","ppmv CO2","LL",764.606 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2072,"Simulated","ppmv CO2","LL",775.2156 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2073,"Simulated","ppmv CO2","LL",786.1697 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2074,"Simulated","ppmv CO2","LL",797.3787 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2075,"Simulated","ppmv CO2","LL",808.1087 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2076,"Simulated","ppmv CO2","LL",818.5055 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2077,"Simulated","ppmv CO2","LL",829.2497 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2078,"Simulated","ppmv CO2","LL",840.2551 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2079,"Simulated","ppmv CO2","LL",852.0665 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2080,"Simulated","ppmv CO2","LL",864.1109 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2081,"Simulated","ppmv CO2","LL",876.7132 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2082,"Simulated","ppmv CO2","LL",888.4681 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2083,"Simulated","ppmv CO2","LL",900.7124 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2084,"Simulated","ppmv CO2","LL",914.0158 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2085,"Simulated","ppmv CO2","LL",927.1193 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2086,"Simulated","ppmv CO2","LL",940.2455 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2087,"Simulated","ppmv CO2","LL",953.2033 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2088,"Simulated","ppmv CO2","LL",965.2755 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2089,"Simulated","ppmv CO2","LL",977.847 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2090,"Simulated","ppmv CO2","LL",989.9025 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2091,"Simulated","ppmv CO2","LL",1002.8361 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2092,"Simulated","ppmv CO2","LL",1016.4979 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2093,"Simulated","ppmv CO2","LL",1030.6304 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2094,"Simulated","ppmv CO2","LL",1045.0684 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2095,"Simulated","ppmv CO2","LL",1058.6534 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2096,"Simulated","ppmv CO2","LL",1072.771 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2097,"Simulated","ppmv CO2","LL",1086.7569 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2098,"Simulated","ppmv CO2","LL",1100.6082 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2099,"Simulated","ppmv CO2","LL",1113.9285 -"MIROC-ESM","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2100,"Simulated","ppmv CO2","LL",1127.7996 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2006,"Simulated","ppmv CO2","global",356.9636 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2007,"Simulated","ppmv CO2","global",358.0804 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2008,"Simulated","ppmv CO2","global",359.619 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2009,"Simulated","ppmv CO2","global",361.0838 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2010,"Simulated","ppmv CO2","global",362.7827 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2011,"Simulated","ppmv CO2","global",364.681 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2012,"Simulated","ppmv CO2","global",366.4689 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2013,"Simulated","ppmv CO2","global",367.8826 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2014,"Simulated","ppmv CO2","global",369.26 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2015,"Simulated","ppmv CO2","global",370.9555 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2016,"Simulated","ppmv CO2","global",372.937 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2017,"Simulated","ppmv CO2","global",375.1612 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2018,"Simulated","ppmv CO2","global",377.5038 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2019,"Simulated","ppmv CO2","global",379.4019 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2020,"Simulated","ppmv CO2","global",381.5057 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2021,"Simulated","ppmv CO2","global",383.6049 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2022,"Simulated","ppmv CO2","global",385.3841 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2023,"Simulated","ppmv CO2","global",388.1485 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2024,"Simulated","ppmv CO2","global",390.9015 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2025,"Simulated","ppmv CO2","global",393.1935 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2026,"Simulated","ppmv CO2","global",395.5386 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2027,"Simulated","ppmv CO2","global",398.5163 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2028,"Simulated","ppmv CO2","global",401.5114 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2029,"Simulated","ppmv CO2","global",404.1757 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2030,"Simulated","ppmv CO2","global",406.7464 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2031,"Simulated","ppmv CO2","global",409.7158 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2032,"Simulated","ppmv CO2","global",412.5824 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2033,"Simulated","ppmv CO2","global",415.1333 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2034,"Simulated","ppmv CO2","global",417.6207 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2035,"Simulated","ppmv CO2","global",420.2088 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2036,"Simulated","ppmv CO2","global",422.9388 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2037,"Simulated","ppmv CO2","global",425.8362 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2038,"Simulated","ppmv CO2","global",429.1766 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2039,"Simulated","ppmv CO2","global",432.6896 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2040,"Simulated","ppmv CO2","global",436.2168 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2041,"Simulated","ppmv CO2","global",439.98 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2042,"Simulated","ppmv CO2","global",443.2308 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2043,"Simulated","ppmv CO2","global",446.5578 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2044,"Simulated","ppmv CO2","global",450.2919 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2045,"Simulated","ppmv CO2","global",453.9559 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2046,"Simulated","ppmv CO2","global",458.296 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2047,"Simulated","ppmv CO2","global",462.1783 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2048,"Simulated","ppmv CO2","global",466.6179 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2049,"Simulated","ppmv CO2","global",470.7866 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2050,"Simulated","ppmv CO2","global",474.5485 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2051,"Simulated","ppmv CO2","global",478.6221 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2052,"Simulated","ppmv CO2","global",483.3812 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2053,"Simulated","ppmv CO2","global",487.8924 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2054,"Simulated","ppmv CO2","global",492.3244 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2055,"Simulated","ppmv CO2","global",496.819 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2056,"Simulated","ppmv CO2","global",501.0775 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2057,"Simulated","ppmv CO2","global",505.5576 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2058,"Simulated","ppmv CO2","global",510.2813 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2059,"Simulated","ppmv CO2","global",515.2222 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2060,"Simulated","ppmv CO2","global",520.7419 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2061,"Simulated","ppmv CO2","global",526.2248 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2062,"Simulated","ppmv CO2","global",531.4594 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2063,"Simulated","ppmv CO2","global",536.8848 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2064,"Simulated","ppmv CO2","global",542.2937 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2065,"Simulated","ppmv CO2","global",547.8545 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2066,"Simulated","ppmv CO2","global",553.458 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2067,"Simulated","ppmv CO2","global",559.2678 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2068,"Simulated","ppmv CO2","global",565.4422 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2069,"Simulated","ppmv CO2","global",571.4498 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2070,"Simulated","ppmv CO2","global",577.0843 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2071,"Simulated","ppmv CO2","global",582.8785 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2072,"Simulated","ppmv CO2","global",588.4496 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2073,"Simulated","ppmv CO2","global",594.4923 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2074,"Simulated","ppmv CO2","global",600.4433 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2075,"Simulated","ppmv CO2","global",606.2172 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2076,"Simulated","ppmv CO2","global",612.5488 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2077,"Simulated","ppmv CO2","global",619.2407 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2078,"Simulated","ppmv CO2","global",625.9894 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2079,"Simulated","ppmv CO2","global",632.6092 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2080,"Simulated","ppmv CO2","global",639.2751 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2081,"Simulated","ppmv CO2","global",645.684 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2082,"Simulated","ppmv CO2","global",651.772 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2083,"Simulated","ppmv CO2","global",658.4369 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2084,"Simulated","ppmv CO2","global",665.4794 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2085,"Simulated","ppmv CO2","global",672.6319 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2086,"Simulated","ppmv CO2","global",679.773 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2087,"Simulated","ppmv CO2","global",686.9411 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2088,"Simulated","ppmv CO2","global",694.0475 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2089,"Simulated","ppmv CO2","global",701.5208 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2090,"Simulated","ppmv CO2","global",709.2044 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2091,"Simulated","ppmv CO2","global",716.5251 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2092,"Simulated","ppmv CO2","global",723.3718 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2093,"Simulated","ppmv CO2","global",730.4244 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2094,"Simulated","ppmv CO2","global",737.876 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2095,"Simulated","ppmv CO2","global",744.9179 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2096,"Simulated","ppmv CO2","global",751.7006 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2097,"Simulated","ppmv CO2","global",759.2861 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2098,"Simulated","ppmv CO2","global",766.483 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2099,"Simulated","ppmv CO2","global",773.7771 -"MRI-ESM1","co2","carbon_cycle","atmos_co2","esmrcp85",2100,"Simulated","ppmv CO2","global",781.3091 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2006,"Simulated","ppmv CO2","HL",356.0642 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2007,"Simulated","ppmv CO2","HL",357.3041 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2008,"Simulated","ppmv CO2","HL",358.7904 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2009,"Simulated","ppmv CO2","HL",360.3214 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2010,"Simulated","ppmv CO2","HL",361.8835 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2011,"Simulated","ppmv CO2","HL",363.6407 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2012,"Simulated","ppmv CO2","HL",365.4208 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2013,"Simulated","ppmv CO2","HL",366.9324 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2014,"Simulated","ppmv CO2","HL",368.361 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2015,"Simulated","ppmv CO2","HL",370.0199 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2016,"Simulated","ppmv CO2","HL",371.8545 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2017,"Simulated","ppmv CO2","HL",373.921 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2018,"Simulated","ppmv CO2","HL",376.1712 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2019,"Simulated","ppmv CO2","HL",378.1873 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2020,"Simulated","ppmv CO2","HL",380.2052 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2021,"Simulated","ppmv CO2","HL",382.4313 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2022,"Simulated","ppmv CO2","HL",384.2699 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2023,"Simulated","ppmv CO2","HL",386.6579 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2024,"Simulated","ppmv CO2","HL",389.3853 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2025,"Simulated","ppmv CO2","HL",391.7747 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2026,"Simulated","ppmv CO2","HL",394.1056 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2027,"Simulated","ppmv CO2","HL",396.9287 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2028,"Simulated","ppmv CO2","HL",399.833 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2029,"Simulated","ppmv CO2","HL",402.4184 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2030,"Simulated","ppmv CO2","HL",405.1318 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2031,"Simulated","ppmv CO2","HL",407.9982 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2032,"Simulated","ppmv CO2","HL",410.9316 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2033,"Simulated","ppmv CO2","HL",413.6506 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2034,"Simulated","ppmv CO2","HL",416.191 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2035,"Simulated","ppmv CO2","HL",418.7359 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2036,"Simulated","ppmv CO2","HL",421.4497 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2037,"Simulated","ppmv CO2","HL",424.1595 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2038,"Simulated","ppmv CO2","HL",427.3515 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2039,"Simulated","ppmv CO2","HL",430.6966 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2040,"Simulated","ppmv CO2","HL",434.1857 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2041,"Simulated","ppmv CO2","HL",437.7893 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2042,"Simulated","ppmv CO2","HL",441.1958 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2043,"Simulated","ppmv CO2","HL",444.5663 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2044,"Simulated","ppmv CO2","HL",448.2742 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2045,"Simulated","ppmv CO2","HL",451.8936 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2046,"Simulated","ppmv CO2","HL",455.9557 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2047,"Simulated","ppmv CO2","HL",459.9735 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2048,"Simulated","ppmv CO2","HL",464.1846 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2049,"Simulated","ppmv CO2","HL",468.449 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2050,"Simulated","ppmv CO2","HL",472.3857 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2051,"Simulated","ppmv CO2","HL",476.3138 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2052,"Simulated","ppmv CO2","HL",480.9662 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2053,"Simulated","ppmv CO2","HL",485.3363 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2054,"Simulated","ppmv CO2","HL",489.8095 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2055,"Simulated","ppmv CO2","HL",494.31 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2056,"Simulated","ppmv CO2","HL",498.733 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2057,"Simulated","ppmv CO2","HL",503.1301 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2058,"Simulated","ppmv CO2","HL",507.773 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2059,"Simulated","ppmv CO2","HL",512.5442 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2060,"Simulated","ppmv CO2","HL",517.8285 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2061,"Simulated","ppmv CO2","HL",523.242 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2062,"Simulated","ppmv CO2","HL",528.4838 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2063,"Simulated","ppmv CO2","HL",533.8999 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2064,"Simulated","ppmv CO2","HL",539.4022 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2065,"Simulated","ppmv CO2","HL",544.7925 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2066,"Simulated","ppmv CO2","HL",550.3416 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2067,"Simulated","ppmv CO2","HL",556.0286 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2068,"Simulated","ppmv CO2","HL",562.0823 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2069,"Simulated","ppmv CO2","HL",568.3169 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2070,"Simulated","ppmv CO2","HL",573.8887 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2071,"Simulated","ppmv CO2","HL",579.7841 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2072,"Simulated","ppmv CO2","HL",585.251 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2073,"Simulated","ppmv CO2","HL",591.2377 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2074,"Simulated","ppmv CO2","HL",597.16 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2075,"Simulated","ppmv CO2","HL",602.9556 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2076,"Simulated","ppmv CO2","HL",609.3001 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2077,"Simulated","ppmv CO2","HL",615.7593 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2078,"Simulated","ppmv CO2","HL",622.3309 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2079,"Simulated","ppmv CO2","HL",628.9599 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2080,"Simulated","ppmv CO2","HL",635.7155 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2081,"Simulated","ppmv CO2","HL",642.1364 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2082,"Simulated","ppmv CO2","HL",648.3713 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2083,"Simulated","ppmv CO2","HL",654.9361 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2084,"Simulated","ppmv CO2","HL",661.6596 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2085,"Simulated","ppmv CO2","HL",668.7385 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2086,"Simulated","ppmv CO2","HL",676.0031 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2087,"Simulated","ppmv CO2","HL",683.0345 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2088,"Simulated","ppmv CO2","HL",690.1664 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2089,"Simulated","ppmv CO2","HL",697.4187 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2090,"Simulated","ppmv CO2","HL",705.1622 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2091,"Simulated","ppmv CO2","HL",712.6354 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2092,"Simulated","ppmv CO2","HL",719.6788 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2093,"Simulated","ppmv CO2","HL",726.6489 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2094,"Simulated","ppmv CO2","HL",733.9935 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2095,"Simulated","ppmv CO2","HL",740.9629 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2096,"Simulated","ppmv CO2","HL",747.937 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2097,"Simulated","ppmv CO2","HL",755.2962 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2098,"Simulated","ppmv CO2","HL",762.5579 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2099,"Simulated","ppmv CO2","HL",770.0872 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2100,"Simulated","ppmv CO2","HL",777.4871 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2006,"Simulated","ppmv CO2","LL",357.1627 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2007,"Simulated","ppmv CO2","LL",358.2523 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2008,"Simulated","ppmv CO2","LL",359.8025 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2009,"Simulated","ppmv CO2","LL",361.2527 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2010,"Simulated","ppmv CO2","LL",362.9818 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2011,"Simulated","ppmv CO2","LL",364.9113 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2012,"Simulated","ppmv CO2","LL",366.7011 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2013,"Simulated","ppmv CO2","LL",368.0931 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2014,"Simulated","ppmv CO2","LL",369.459 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2015,"Simulated","ppmv CO2","LL",371.1627 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2016,"Simulated","ppmv CO2","LL",373.1767 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2017,"Simulated","ppmv CO2","LL",375.4359 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2018,"Simulated","ppmv CO2","LL",377.7989 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2019,"Simulated","ppmv CO2","LL",379.6709 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2020,"Simulated","ppmv CO2","LL",381.7937 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2021,"Simulated","ppmv CO2","LL",383.8648 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2022,"Simulated","ppmv CO2","LL",385.6308 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2023,"Simulated","ppmv CO2","LL",388.4786 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2024,"Simulated","ppmv CO2","LL",391.2373 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2025,"Simulated","ppmv CO2","LL",393.5077 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2026,"Simulated","ppmv CO2","LL",395.8559 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2027,"Simulated","ppmv CO2","LL",398.8679 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2028,"Simulated","ppmv CO2","LL",401.8832 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2029,"Simulated","ppmv CO2","LL",404.5648 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2030,"Simulated","ppmv CO2","LL",407.1039 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2031,"Simulated","ppmv CO2","LL",410.0962 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2032,"Simulated","ppmv CO2","LL",412.948 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2033,"Simulated","ppmv CO2","LL",415.4616 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2034,"Simulated","ppmv CO2","LL",417.9373 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2035,"Simulated","ppmv CO2","LL",420.535 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2036,"Simulated","ppmv CO2","LL",423.2685 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2037,"Simulated","ppmv CO2","LL",426.2076 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2038,"Simulated","ppmv CO2","LL",429.5807 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2039,"Simulated","ppmv CO2","LL",433.131 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2040,"Simulated","ppmv CO2","LL",436.6667 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2041,"Simulated","ppmv CO2","LL",440.4651 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2042,"Simulated","ppmv CO2","LL",443.6814 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2043,"Simulated","ppmv CO2","LL",446.9988 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2044,"Simulated","ppmv CO2","LL",450.7388 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2045,"Simulated","ppmv CO2","LL",454.4126 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2046,"Simulated","ppmv CO2","LL",458.8143 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2047,"Simulated","ppmv CO2","LL",462.6666 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2048,"Simulated","ppmv CO2","LL",467.1568 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2049,"Simulated","ppmv CO2","LL",471.3043 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2050,"Simulated","ppmv CO2","LL",475.0274 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2051,"Simulated","ppmv CO2","LL",479.1333 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2052,"Simulated","ppmv CO2","LL",483.916 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2053,"Simulated","ppmv CO2","LL",488.4584 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2054,"Simulated","ppmv CO2","LL",492.8813 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2055,"Simulated","ppmv CO2","LL",497.3747 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2056,"Simulated","ppmv CO2","LL",501.5966 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2057,"Simulated","ppmv CO2","LL",506.0952 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2058,"Simulated","ppmv CO2","LL",510.8368 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2059,"Simulated","ppmv CO2","LL",515.8152 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2060,"Simulated","ppmv CO2","LL",521.3871 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2061,"Simulated","ppmv CO2","LL",526.8853 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2062,"Simulated","ppmv CO2","LL",532.1183 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2063,"Simulated","ppmv CO2","LL",537.5458 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2064,"Simulated","ppmv CO2","LL",542.934 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2065,"Simulated","ppmv CO2","LL",548.5326 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2066,"Simulated","ppmv CO2","LL",554.1482 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2067,"Simulated","ppmv CO2","LL",559.9851 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2068,"Simulated","ppmv CO2","LL",566.1863 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2069,"Simulated","ppmv CO2","LL",572.1436 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2070,"Simulated","ppmv CO2","LL",577.792 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2071,"Simulated","ppmv CO2","LL",583.5638 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2072,"Simulated","ppmv CO2","LL",589.158 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2073,"Simulated","ppmv CO2","LL",595.2131 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2074,"Simulated","ppmv CO2","LL",601.1704 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2075,"Simulated","ppmv CO2","LL",606.9395 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2076,"Simulated","ppmv CO2","LL",613.2683 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2077,"Simulated","ppmv CO2","LL",620.0117 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2078,"Simulated","ppmv CO2","LL",626.7996 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2079,"Simulated","ppmv CO2","LL",633.4174 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2080,"Simulated","ppmv CO2","LL",640.0634 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2081,"Simulated","ppmv CO2","LL",646.4697 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2082,"Simulated","ppmv CO2","LL",652.5252 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2083,"Simulated","ppmv CO2","LL",659.2122 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2084,"Simulated","ppmv CO2","LL",666.3253 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2085,"Simulated","ppmv CO2","LL",673.4941 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2086,"Simulated","ppmv CO2","LL",680.6078 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2087,"Simulated","ppmv CO2","LL",687.8062 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2088,"Simulated","ppmv CO2","LL",694.9071 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2089,"Simulated","ppmv CO2","LL",702.4293 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2090,"Simulated","ppmv CO2","LL",710.0996 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2091,"Simulated","ppmv CO2","LL",717.3865 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2092,"Simulated","ppmv CO2","LL",724.1897 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2093,"Simulated","ppmv CO2","LL",731.2606 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2094,"Simulated","ppmv CO2","LL",738.7358 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2095,"Simulated","ppmv CO2","LL",745.7938 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2096,"Simulated","ppmv CO2","LL",752.534 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2097,"Simulated","ppmv CO2","LL",760.1697 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2098,"Simulated","ppmv CO2","LL",767.3522 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2099,"Simulated","ppmv CO2","LL",774.5943 -"MRI-ESM1","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2100,"Simulated","ppmv CO2","LL",782.1556 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2006,"Simulated","ppmv CO2","global",387.092 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2007,"Simulated","ppmv CO2","global",389.5619 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2008,"Simulated","ppmv CO2","global",391.8357 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2009,"Simulated","ppmv CO2","global",394.4032 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2010,"Simulated","ppmv CO2","global",396.7407 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2011,"Simulated","ppmv CO2","global",399.3627 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2012,"Simulated","ppmv CO2","global",402.5565 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2013,"Simulated","ppmv CO2","global",405.9721 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2014,"Simulated","ppmv CO2","global",408.9693 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2015,"Simulated","ppmv CO2","global",412.3594 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2016,"Simulated","ppmv CO2","global",416.5741 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2017,"Simulated","ppmv CO2","global",420.0324 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2018,"Simulated","ppmv CO2","global",423.2899 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2019,"Simulated","ppmv CO2","global",427.26 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2020,"Simulated","ppmv CO2","global",431.5846 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2021,"Simulated","ppmv CO2","global",435.6829 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2022,"Simulated","ppmv CO2","global",439.9305 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2023,"Simulated","ppmv CO2","global",444.1734 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2024,"Simulated","ppmv CO2","global",448.6912 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2025,"Simulated","ppmv CO2","global",452.9911 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2026,"Simulated","ppmv CO2","global",457.3575 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2027,"Simulated","ppmv CO2","global",461.5758 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2028,"Simulated","ppmv CO2","global",466.4752 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2029,"Simulated","ppmv CO2","global",471.7164 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2030,"Simulated","ppmv CO2","global",476.5788 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2031,"Simulated","ppmv CO2","global",481.2158 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2032,"Simulated","ppmv CO2","global",486.1736 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2033,"Simulated","ppmv CO2","global",491.636 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2034,"Simulated","ppmv CO2","global",497.2255 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2035,"Simulated","ppmv CO2","global",502.6528 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2036,"Simulated","ppmv CO2","global",508.0091 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2037,"Simulated","ppmv CO2","global",514.1528 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2038,"Simulated","ppmv CO2","global",519.8133 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2039,"Simulated","ppmv CO2","global",525.847 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2040,"Simulated","ppmv CO2","global",531.7873 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2041,"Simulated","ppmv CO2","global",538.1027 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2042,"Simulated","ppmv CO2","global",544.8357 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2043,"Simulated","ppmv CO2","global",551.2558 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2044,"Simulated","ppmv CO2","global",557.7722 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2045,"Simulated","ppmv CO2","global",564.7165 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2046,"Simulated","ppmv CO2","global",572.1263 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2047,"Simulated","ppmv CO2","global",579.5154 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2048,"Simulated","ppmv CO2","global",586.6105 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2049,"Simulated","ppmv CO2","global",593.925 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2050,"Simulated","ppmv CO2","global",601.3416 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2051,"Simulated","ppmv CO2","global",608.8742 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2052,"Simulated","ppmv CO2","global",616.5262 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2053,"Simulated","ppmv CO2","global",624.8282 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2054,"Simulated","ppmv CO2","global",632.5265 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2055,"Simulated","ppmv CO2","global",640.6974 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2056,"Simulated","ppmv CO2","global",648.8981 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2057,"Simulated","ppmv CO2","global",657.8055 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2058,"Simulated","ppmv CO2","global",666.2678 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2059,"Simulated","ppmv CO2","global",674.1403 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2060,"Simulated","ppmv CO2","global",682.7734 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2061,"Simulated","ppmv CO2","global",691.9589 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2062,"Simulated","ppmv CO2","global",701.383 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2063,"Simulated","ppmv CO2","global",710.3484 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2064,"Simulated","ppmv CO2","global",718.7263 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2065,"Simulated","ppmv CO2","global",727.4593 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2066,"Simulated","ppmv CO2","global",736.6628 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2067,"Simulated","ppmv CO2","global",746.537 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2068,"Simulated","ppmv CO2","global",756.3266 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2069,"Simulated","ppmv CO2","global",765.9315 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2070,"Simulated","ppmv CO2","global",775.7276 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2071,"Simulated","ppmv CO2","global",784.338 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2072,"Simulated","ppmv CO2","global",794.0014 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2073,"Simulated","ppmv CO2","global",804.8431 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2074,"Simulated","ppmv CO2","global",814.9553 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2075,"Simulated","ppmv CO2","global",825.0519 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2076,"Simulated","ppmv CO2","global",834.7067 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2077,"Simulated","ppmv CO2","global",844.9497 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2078,"Simulated","ppmv CO2","global",854.8987 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2079,"Simulated","ppmv CO2","global",865.1015 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2080,"Simulated","ppmv CO2","global",875.5289 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2081,"Simulated","ppmv CO2","global",885.6575 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2082,"Simulated","ppmv CO2","global",896.0585 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2083,"Simulated","ppmv CO2","global",907.2833 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2084,"Simulated","ppmv CO2","global",917.7206 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2085,"Simulated","ppmv CO2","global",927.9204 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2086,"Simulated","ppmv CO2","global",938.5404 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2087,"Simulated","ppmv CO2","global",949.7239 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2088,"Simulated","ppmv CO2","global",960.3033 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2089,"Simulated","ppmv CO2","global",971.1628 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2090,"Simulated","ppmv CO2","global",982.2942 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2091,"Simulated","ppmv CO2","global",993.3028 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2092,"Simulated","ppmv CO2","global",1004.4194 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2093,"Simulated","ppmv CO2","global",1015.2414 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2094,"Simulated","ppmv CO2","global",1025.9037 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2095,"Simulated","ppmv CO2","global",1036.1827 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2096,"Simulated","ppmv CO2","global",1047.1569 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2097,"Simulated","ppmv CO2","global",1058.614 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2098,"Simulated","ppmv CO2","global",1069.6394 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2099,"Simulated","ppmv CO2","global",1080.7588 -"NorESM1-ME","co2","carbon_cycle","atmos_co2","esmrcp85",2100,"Simulated","ppmv CO2","global",1091.2787 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2006,"Simulated","ppmv CO2","HL",386.0241 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2007,"Simulated","ppmv CO2","HL",388.4488 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2008,"Simulated","ppmv CO2","HL",390.627 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2009,"Simulated","ppmv CO2","HL",393.1538 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2010,"Simulated","ppmv CO2","HL",395.4392 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2011,"Simulated","ppmv CO2","HL",397.9208 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2012,"Simulated","ppmv CO2","HL",401.0108 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2013,"Simulated","ppmv CO2","HL",404.212 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2014,"Simulated","ppmv CO2","HL",407.3657 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2015,"Simulated","ppmv CO2","HL",410.6063 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2016,"Simulated","ppmv CO2","HL",414.6107 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2017,"Simulated","ppmv CO2","HL",418.2173 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2018,"Simulated","ppmv CO2","HL",421.5131 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2019,"Simulated","ppmv CO2","HL",425.292 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2020,"Simulated","ppmv CO2","HL",429.4443 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2021,"Simulated","ppmv CO2","HL",433.5574 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2022,"Simulated","ppmv CO2","HL",437.7719 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2023,"Simulated","ppmv CO2","HL",441.9937 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2024,"Simulated","ppmv CO2","HL",446.3676 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2025,"Simulated","ppmv CO2","HL",450.7701 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2026,"Simulated","ppmv CO2","HL",455.1446 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2027,"Simulated","ppmv CO2","HL",459.2604 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2028,"Simulated","ppmv CO2","HL",463.9837 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2029,"Simulated","ppmv CO2","HL",469.2057 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2030,"Simulated","ppmv CO2","HL",474.0829 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2031,"Simulated","ppmv CO2","HL",478.7577 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2032,"Simulated","ppmv CO2","HL",483.5216 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2033,"Simulated","ppmv CO2","HL",488.8727 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2034,"Simulated","ppmv CO2","HL",494.5081 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2035,"Simulated","ppmv CO2","HL",499.9699 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2036,"Simulated","ppmv CO2","HL",505.1407 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2037,"Simulated","ppmv CO2","HL",511.045 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2038,"Simulated","ppmv CO2","HL",516.7974 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2039,"Simulated","ppmv CO2","HL",522.7848 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2040,"Simulated","ppmv CO2","HL",528.5976 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2041,"Simulated","ppmv CO2","HL",534.8705 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2042,"Simulated","ppmv CO2","HL",541.536 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2043,"Simulated","ppmv CO2","HL",548.0167 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2044,"Simulated","ppmv CO2","HL",554.4968 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2045,"Simulated","ppmv CO2","HL",561.2579 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2046,"Simulated","ppmv CO2","HL",568.412 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2047,"Simulated","ppmv CO2","HL",575.7792 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2048,"Simulated","ppmv CO2","HL",583.1719 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2049,"Simulated","ppmv CO2","HL",590.4328 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2050,"Simulated","ppmv CO2","HL",597.7584 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2051,"Simulated","ppmv CO2","HL",605.1334 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2052,"Simulated","ppmv CO2","HL",612.6649 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2053,"Simulated","ppmv CO2","HL",620.8882 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2054,"Simulated","ppmv CO2","HL",628.6991 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2055,"Simulated","ppmv CO2","HL",636.7149 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2056,"Simulated","ppmv CO2","HL",645.005 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2057,"Simulated","ppmv CO2","HL",653.5986 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2058,"Simulated","ppmv CO2","HL",662.2368 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2059,"Simulated","ppmv CO2","HL",670.1186 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2060,"Simulated","ppmv CO2","HL",678.4756 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2061,"Simulated","ppmv CO2","HL",687.4359 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2062,"Simulated","ppmv CO2","HL",696.7732 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2063,"Simulated","ppmv CO2","HL",705.9086 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2064,"Simulated","ppmv CO2","HL",714.5581 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2065,"Simulated","ppmv CO2","HL",723.0733 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2066,"Simulated","ppmv CO2","HL",732.0742 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2067,"Simulated","ppmv CO2","HL",741.9671 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2068,"Simulated","ppmv CO2","HL",751.6623 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2069,"Simulated","ppmv CO2","HL",761.3427 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2070,"Simulated","ppmv CO2","HL",771.0986 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2071,"Simulated","ppmv CO2","HL",779.8355 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2072,"Simulated","ppmv CO2","HL",789.4533 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2073,"Simulated","ppmv CO2","HL",799.8929 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2074,"Simulated","ppmv CO2","HL",810.0487 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2075,"Simulated","ppmv CO2","HL",820.1851 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2076,"Simulated","ppmv CO2","HL",830.0743 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2077,"Simulated","ppmv CO2","HL",840.2148 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2078,"Simulated","ppmv CO2","HL",850.2231 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2079,"Simulated","ppmv CO2","HL",860.2999 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2080,"Simulated","ppmv CO2","HL",870.6933 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2081,"Simulated","ppmv CO2","HL",880.8497 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2082,"Simulated","ppmv CO2","HL",890.9247 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2083,"Simulated","ppmv CO2","HL",902.1482 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2084,"Simulated","ppmv CO2","HL",912.6677 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2085,"Simulated","ppmv CO2","HL",922.7922 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2086,"Simulated","ppmv CO2","HL",933.5036 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2087,"Simulated","ppmv CO2","HL",944.3538 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2088,"Simulated","ppmv CO2","HL",955.1208 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2089,"Simulated","ppmv CO2","HL",965.9239 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2090,"Simulated","ppmv CO2","HL",977.1604 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2091,"Simulated","ppmv CO2","HL",988.0673 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2092,"Simulated","ppmv CO2","HL",999.2026 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2093,"Simulated","ppmv CO2","HL",1010.0228 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2094,"Simulated","ppmv CO2","HL",1020.8533 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2095,"Simulated","ppmv CO2","HL",1031.159 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2096,"Simulated","ppmv CO2","HL",1041.9684 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2097,"Simulated","ppmv CO2","HL",1053.2393 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2098,"Simulated","ppmv CO2","HL",1064.2464 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2099,"Simulated","ppmv CO2","HL",1075.3511 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_HL","esmrcp85",2100,"Simulated","ppmv CO2","HL",1086.1747 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2006,"Simulated","ppmv CO2","LL",387.3288 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2007,"Simulated","ppmv CO2","LL",389.8086 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2008,"Simulated","ppmv CO2","LL",392.1036 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2009,"Simulated","ppmv CO2","LL",394.6801 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2010,"Simulated","ppmv CO2","LL",397.0292 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2011,"Simulated","ppmv CO2","LL",399.6823 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2012,"Simulated","ppmv CO2","LL",402.8991 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2013,"Simulated","ppmv CO2","LL",406.3622 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2014,"Simulated","ppmv CO2","LL",409.3248 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2015,"Simulated","ppmv CO2","LL",412.748 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2016,"Simulated","ppmv CO2","LL",417.0093 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2017,"Simulated","ppmv CO2","LL",420.4348 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2018,"Simulated","ppmv CO2","LL",423.6838 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2019,"Simulated","ppmv CO2","LL",427.6963 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2020,"Simulated","ppmv CO2","LL",432.059 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2021,"Simulated","ppmv CO2","LL",436.154 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2022,"Simulated","ppmv CO2","LL",440.409 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2023,"Simulated","ppmv CO2","LL",444.6566 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2024,"Simulated","ppmv CO2","LL",449.2062 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2025,"Simulated","ppmv CO2","LL",453.4834 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2026,"Simulated","ppmv CO2","LL",457.848 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2027,"Simulated","ppmv CO2","LL",462.0891 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2028,"Simulated","ppmv CO2","LL",467.0275 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2029,"Simulated","ppmv CO2","LL",472.273 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2030,"Simulated","ppmv CO2","LL",477.132 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2031,"Simulated","ppmv CO2","LL",481.7606 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2032,"Simulated","ppmv CO2","LL",486.7614 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2033,"Simulated","ppmv CO2","LL",492.2484 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2034,"Simulated","ppmv CO2","LL",497.8278 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2035,"Simulated","ppmv CO2","LL",503.2475 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2036,"Simulated","ppmv CO2","LL",508.6449 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2037,"Simulated","ppmv CO2","LL",514.8417 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2038,"Simulated","ppmv CO2","LL",520.4817 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2039,"Simulated","ppmv CO2","LL",526.5257 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2040,"Simulated","ppmv CO2","LL",532.4943 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2041,"Simulated","ppmv CO2","LL",538.8192 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2042,"Simulated","ppmv CO2","LL",545.5671 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2043,"Simulated","ppmv CO2","LL",551.9737 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2044,"Simulated","ppmv CO2","LL",558.4982 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2045,"Simulated","ppmv CO2","LL",565.4831 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2046,"Simulated","ppmv CO2","LL",572.9496 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2047,"Simulated","ppmv CO2","LL",580.3436 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2048,"Simulated","ppmv CO2","LL",587.3728 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2049,"Simulated","ppmv CO2","LL",594.699 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2050,"Simulated","ppmv CO2","LL",602.1358 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2051,"Simulated","ppmv CO2","LL",609.7034 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2052,"Simulated","ppmv CO2","LL",617.382 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2053,"Simulated","ppmv CO2","LL",625.7015 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2054,"Simulated","ppmv CO2","LL",633.3748 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2055,"Simulated","ppmv CO2","LL",641.5802 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2056,"Simulated","ppmv CO2","LL",649.761 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2057,"Simulated","ppmv CO2","LL",658.7379 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2058,"Simulated","ppmv CO2","LL",667.1614 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2059,"Simulated","ppmv CO2","LL",675.0317 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2060,"Simulated","ppmv CO2","LL",683.726 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2061,"Simulated","ppmv CO2","LL",692.9614 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2062,"Simulated","ppmv CO2","LL",702.4048 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2063,"Simulated","ppmv CO2","LL",711.3325 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2064,"Simulated","ppmv CO2","LL",719.6502 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2065,"Simulated","ppmv CO2","LL",728.4315 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2066,"Simulated","ppmv CO2","LL",737.6798 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2067,"Simulated","ppmv CO2","LL",747.5499 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2068,"Simulated","ppmv CO2","LL",757.3605 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2069,"Simulated","ppmv CO2","LL",766.9486 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2070,"Simulated","ppmv CO2","LL",776.7537 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2071,"Simulated","ppmv CO2","LL",785.336 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2072,"Simulated","ppmv CO2","LL",795.0096 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2073,"Simulated","ppmv CO2","LL",805.9403 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2074,"Simulated","ppmv CO2","LL",816.0429 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2075,"Simulated","ppmv CO2","LL",826.1307 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2076,"Simulated","ppmv CO2","LL",835.7336 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2077,"Simulated","ppmv CO2","LL",845.9992 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2078,"Simulated","ppmv CO2","LL",855.9352 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2079,"Simulated","ppmv CO2","LL",866.1658 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2080,"Simulated","ppmv CO2","LL",876.6007 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2081,"Simulated","ppmv CO2","LL",886.7232 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2082,"Simulated","ppmv CO2","LL",897.1965 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2083,"Simulated","ppmv CO2","LL",908.4216 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2084,"Simulated","ppmv CO2","LL",918.8406 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2085,"Simulated","ppmv CO2","LL",929.0572 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2086,"Simulated","ppmv CO2","LL",939.6569 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2087,"Simulated","ppmv CO2","LL",950.9142 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2088,"Simulated","ppmv CO2","LL",961.4521 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2089,"Simulated","ppmv CO2","LL",972.3241 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2090,"Simulated","ppmv CO2","LL",983.4322 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2091,"Simulated","ppmv CO2","LL",994.4632 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2092,"Simulated","ppmv CO2","LL",1005.5758 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2093,"Simulated","ppmv CO2","LL",1016.3981 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2094,"Simulated","ppmv CO2","LL",1027.0232 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2095,"Simulated","ppmv CO2","LL",1037.2963 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2096,"Simulated","ppmv CO2","LL",1048.307 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2097,"Simulated","ppmv CO2","LL",1059.8053 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2098,"Simulated","ppmv CO2","LL",1070.8348 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2099,"Simulated","ppmv CO2","LL",1081.9574 -"NorESM1-ME","co2","carbon_cycle","atmos_co2_LL","esmrcp85",2100,"Simulated","ppmv CO2","LL",1092.4101 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/rcp85/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/rcp85/summary.csv deleted file mode 100644 index 5fbe73036..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/ESM_CO2/rcp85/summary.csv +++ /dev/null @@ -1,286 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,15.39604319,356.9636,397.5849,383.3464667,387.3668,1,CMIP5 -2006,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,15.34838752,356.0642,396.5728,382.35798,386.4236,1,CMIP5 -2006,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,15.40643732,357.1627,397.8136,383.5613467,387.5049,1,CMIP5 -2007,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,15.99824566,358.0804,400.1924,385.5464733,389.9179667,1,CMIP5 -2007,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,15.84056508,357.3041,398.9636,384.5148933,388.7592667,1,CMIP5 -2007,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,16.03276918,358.2523,400.47,385.7708733,390.1598667,1,CMIP5 -2008,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,16.52758728,359.619,403.3394,387.8841533,392.2390667,1,CMIP5 -2008,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,16.36832733,358.7904,401.9872,386.8288867,391.1580333,1,CMIP5 -2008,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,16.56295228,359.8025,403.6449,388.1143133,392.4647667,1,CMIP5 -2009,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,16.98201403,361.0838,405.974,390.1460067,394.6141,1,CMIP5 -2009,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,16.75280119,360.3214,404.516,389.0348667,393.5463333,1,CMIP5 -2009,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,17.0326831,361.2527,406.3034,390.38814,394.8181,1,CMIP5 -2010,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,17.39766125,362.7827,408.6471,392.60934,397.1429,1,CMIP5 -2010,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,17.21629655,361.8835,407.2164,391.4251,396.1874,1,CMIP5 -2010,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,17.43749236,362.9818,408.9703,392.86712,397.3424,1,CMIP5 -2011,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,17.86677335,364.681,411.6611,395.3509933,399.9856,1,CMIP5 -2011,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,17.71377788,363.6407,410.1977,394.05692,398.8686,1,CMIP5 -2011,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,17.89998098,364.9113,411.9917,395.6325133,400.2188,1,CMIP5 -2012,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,18.45511866,366.4689,415.0536,398.13994,402.9452,1,CMIP5 -2012,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,18.25789358,365.4208,413.3695,396.80286,401.8333,1,CMIP5 -2012,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,18.49862417,366.7011,415.434,398.4315267,403.1774,1,CMIP5 -2013,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,19.17546796,367.8826,418.3557,400.78602,405.9721,1,CMIP5 -2013,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,18.91309295,366.9324,416.6226,399.4381267,404.2227,1,CMIP5 -2013,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,19.23406626,368.0931,418.7472,401.0802933,406.3622,1,CMIP5 -2014,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,19.91156313,369.26,421.5208,403.46146,408.9693,1,CMIP5 -2014,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,19.62969023,368.361,419.8157,402.1291733,407.3657,1,CMIP5 -2014,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,19.9740136,369.459,421.906,403.7518667,409.3248,1,CMIP5 -2015,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,20.60727444,370.9555,425.0235,406.3587267,412.3594,1,CMIP5 -2015,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,20.34220832,370.0199,423.3931,404.9861867,410.6063,1,CMIP5 -2015,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,20.66582944,371.1627,425.3918,406.6577733,412.748,1,CMIP5 -2016,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,21.2904792,372.937,428.6396,409.5286133,416.3077667,1,CMIP5 -2016,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,21.03384914,371.8545,426.8959,408.04464,414.6107,1,CMIP5 -2016,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,21.34755033,373.1767,429.0335,409.8522,416.634,1,CMIP5 -2017,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,21.91601022,375.1612,432.4629,412.7834667,420.0324,1,CMIP5 -2017,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,21.6847103,373.921,430.5209,411.2357133,418.2173,1,CMIP5 -2017,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,21.96737604,375.4359,432.9015,413.1211,420.4348,1,CMIP5 -2018,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,22.37999517,377.5038,435.9357,415.9837667,423.2899,1,CMIP5 -2018,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,22.20472257,376.1712,434.0594,414.40678,421.5131,1,CMIP5 -2018,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,22.41855746,377.7989,436.3596,416.3274133,423.6838,1,CMIP5 -2019,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,23.19130336,379.4019,439.9385,419.3021933,426.7179667,1,CMIP5 -2019,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,22.92479789,378.1873,437.9625,417.6826333,425.1853667,1,CMIP5 -2019,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,23.25030148,379.6709,440.3849,419.6552667,427.0379333,1,CMIP5 -2020,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,24.09294349,381.5057,444.3049,422.95236,430.6733,1,CMIP5 -2020,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,23.7923789,380.2052,442.1721,421.19264,428.9424,1,CMIP5 -2020,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,24.15946329,381.7937,444.7867,423.3358667,431.0346333,1,CMIP5 -2021,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,25.00549136,383.6049,448.6594,426.7157,434.5766,1,CMIP5 -2021,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,24.61578015,382.4313,446.3948,424.9171533,432.8720667,1,CMIP5 -2021,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,25.0915936,383.8648,449.171,427.1074267,434.9325333,1,CMIP5 -2022,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,26.02145597,385.3841,452.9583,430.305,438.1823,1,CMIP5 -2022,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,25.60743202,384.2699,450.7144,428.5134667,436.5104333,1,CMIP5 -2022,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,26.11293992,385.6308,453.4652,430.69512,438.5314,1,CMIP5 -2023,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,26.65463038,388.1485,457.5597,434.07214,441.4889,1,CMIP5 -2023,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,26.37568028,386.6579,455.1747,432.1949,439.9179,1,CMIP5 -2023,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,26.71679049,388.4786,458.0985,434.48166,441.8169,1,CMIP5 -2024,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,27.21494811,390.9015,461.6181,437.8111533,444.9843667,1,CMIP5 -2024,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,26.9880867,389.3853,459.4692,435.96588,443.4742,1,CMIP5 -2024,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,27.26550497,391.2373,462.1036,438.2136067,445.2996333,1,CMIP5 -2025,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,28.06717375,393.1935,466.0517,441.6115067,448.4518333,1,CMIP5 -2025,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,27.77555734,391.7747,463.8271,439.73552,446.913,1,CMIP5 -2025,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,28.13176993,393.5077,466.5542,442.0201,448.7731,1,CMIP5 -2026,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,28.94831736,395.5386,470.4007,445.6205267,452.4566333,1,CMIP5 -2026,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,28.62263053,394.1056,468.0729,443.6624,450.6897,1,CMIP5 -2026,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,29.02003068,395.8559,470.9266,446.0466467,452.8255333,1,CMIP5 -2027,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,29.76006476,398.5163,475.8657,449.8571467,457.0677,1,CMIP5 -2027,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,29.42024091,396.9287,473.1881,447.80018,455.0176,1,CMIP5 -2027,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,29.83571015,398.8679,476.4705,450.3057733,457.4958,1,CMIP5 -2028,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,30.54988537,401.5114,480.8614,454.1869933,462.0225,1,CMIP5 -2028,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,30.21635138,399.833,478.1825,452.0378667,459.7698,1,CMIP5 -2028,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,30.62404519,401.8832,481.4666,454.6555667,462.4928,1,CMIP5 -2029,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,31.43586666,404.1757,485.5816,458.3623267,466.7155,1,CMIP5 -2029,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,31.13460061,402.4184,482.841,456.2374933,464.6923,1,CMIP5 -2029,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,31.50344081,404.5648,486.2007,458.82626,467.1379,1,CMIP5 -2030,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,32.44683656,406.7464,490.8057,462.6327533,471.086,1,CMIP5 -2030,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,32.07666002,405.1318,488.0878,460.49052,469.0442,1,CMIP5 -2030,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,32.52921088,407.1039,491.4197,463.0998267,471.5123,1,CMIP5 -2031,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,33.30673579,409.7158,495.9752,467.17834,475.5194,1,CMIP5 -2031,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,32.98940153,407.9982,493.2543,465.0111133,473.7948,1,CMIP5 -2031,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,33.37740198,410.0962,496.5899,467.6508267,475.8795,1,CMIP5 -2032,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,34.26424475,412.5824,501.4305,471.6378067,479.8006,1,CMIP5 -2032,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,33.87346368,410.9316,498.5998,469.4283333,478.0876,1,CMIP5 -2032,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,34.35148215,412.948,502.0699,472.1198067,480.1583,1,CMIP5 -2033,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,35.44159328,415.1333,507.0755,476.1050533,484.2881,1,CMIP5 -2033,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,34.93745949,413.6506,504.1491,473.8761067,482.4031,1,CMIP5 -2033,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,35.55407077,415.4616,507.7366,476.5912933,484.6817,1,CMIP5 -2034,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,36.74418025,417.6207,512.9777,480.7297467,489.045,1,CMIP5 -2034,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,36.19484761,416.191,509.9394,478.5026933,487.062,1,CMIP5 -2034,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,36.86687898,417.9373,513.6641,481.2157467,489.459,1,CMIP5 -2035,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,37.91632357,420.2088,518.4635,485.3558667,493.8407,1,CMIP5 -2035,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,37.39024557,418.7359,515.4736,483.0995667,491.7677,1,CMIP5 -2035,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,38.03352645,420.535,519.1389,485.84782,494.2735,1,CMIP5 -2036,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,39.07451957,422.9388,523.9535,490.2199,499.0871,1,CMIP5 -2036,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,38.53022366,421.4497,520.9851,487.8805267,497.0026,1,CMIP5 -2036,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,39.19550302,423.2685,524.6241,490.72964,499.5223,1,CMIP5 -2037,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,40.43076713,425.8362,530.5008,495.2621067,504.1383,1,CMIP5 -2037,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,39.89804577,424.1595,527.3175,492.8301667,502.06,1,CMIP5 -2037,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,40.5499663,426.2076,531.2199,495.7930333,504.5722,1,CMIP5 -2038,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,41.59020261,429.1766,537.2632,500.3139733,509.2559,1,CMIP5 -2038,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,41.11076778,427.3515,533.993,497.8679667,507.1691,1,CMIP5 -2038,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,41.69804752,429.5807,538.0019,500.8482,509.6916,1,CMIP5 -2039,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,42.56363449,432.6896,543.1694,505.4736,514.385,1,CMIP5 -2039,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,42.172384,430.6966,540.0711,502.95768,512.1173,1,CMIP5 -2039,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,42.65138815,433.131,543.8694,506.0224533,514.8585,1,CMIP5 -2040,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,43.59004008,436.2168,549.1965,510.8135867,520.2239,1,CMIP5 -2040,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,43.18680346,434.1857,546.0724,508.2287267,517.8312,1,CMIP5 -2040,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,43.68030859,436.6667,549.9023,511.3773533,520.7235,1,CMIP5 -2041,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,44.82840578,439.98,556.4038,516.4754733,526.5123,1,CMIP5 -2041,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,44.41242307,437.7893,553.0006,513.7573,523.9139,1,CMIP5 -2041,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,44.92192951,440.4651,557.1726,517.0685133,527.0548,1,CMIP5 -2042,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,46.31435874,443.2308,563.4965,522.2038267,532.2604,1,CMIP5 -2042,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,45.81663114,441.1958,560.0575,519.4816533,529.8231,1,CMIP5 -2042,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,46.42601603,443.6814,564.2734,522.7975733,532.7692,1,CMIP5 -2043,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,47.56018644,446.5578,569.82,527.77988,537.7576,1,CMIP5 -2043,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,47.08799595,444.5663,566.5684,525.0796667,535.3469,1,CMIP5 -2043,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,47.66569265,446.9988,570.5546,528.3681733,538.261,1,CMIP5 -2044,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,48.67397956,450.2919,576.3683,533.3748333,543.0998,1,CMIP5 -2044,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,48.16990409,448.2742,572.9199,530.64926,540.7843,1,CMIP5 -2044,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,48.78696841,450.7388,577.1473,533.9692667,543.5833,1,CMIP5 -2045,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,50.06634704,453.9559,583.6641,539.2991133,549.0451,1,CMIP5 -2045,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,49.53077246,451.8936,580.1404,536.4745933,546.5668,1,CMIP5 -2045,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,50.18642012,454.4126,584.4602,539.9150533,549.5626,1,CMIP5 -2046,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,51.19692847,458.296,590.7503,545.4935867,554.9423,1,CMIP5 -2046,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,50.72211551,455.9557,587.1378,542.5254,552.4453,1,CMIP5 -2046,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,51.30383682,458.8143,591.5664,546.14116,555.4636,1,CMIP5 -2047,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,52.661853,462.1783,598.2731,551.85512,561.865,1,CMIP5 -2047,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,52.07384084,459.9735,594.4944,548.8253333,558.9681,1,CMIP5 -2047,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,52.79370521,462.6666,599.1267,552.5158667,562.4699,1,CMIP5 -2048,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,53.86603466,466.6179,605.8418,558.3391133,568.6024,1,CMIP5 -2048,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,53.42325003,464.1846,602.1029,555.3196333,565.81,1,CMIP5 -2048,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,53.96555319,467.1568,606.6864,558.9973933,569.1855,1,CMIP5 -2049,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,55.21652259,470.7866,613.3175,564.9269733,575.562,1,CMIP5 -2049,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,54.68411869,468.449,609.4541,561.8036733,572.6157,1,CMIP5 -2049,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,55.33559627,471.3043,614.1903,565.60722,576.1772,1,CMIP5 -2050,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,56.6499855,474.5485,620.4629,571.2284667,581.996,1,CMIP5 -2050,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,56.09325662,472.3857,616.8611,568.1983,579.1371,1,CMIP5 -2050,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,56.77421238,475.0274,621.2766,571.8881467,582.5929,1,CMIP5 -2051,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,58.09560386,478.6221,628.2155,577.6830667,588.6556,1,CMIP5 -2051,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,57.52264194,476.3138,624.3117,574.58264,585.8708,1,CMIP5 -2051,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,58.22410052,479.1333,629.0973,578.3592467,589.2371,1,CMIP5 -2052,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,59.39032313,483.3812,636.3758,584.6096933,595.5404,1,CMIP5 -2052,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,58.81697762,480.9662,632.3727,581.3942267,592.7268,1,CMIP5 -2052,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,59.51896226,483.916,637.2802,585.3107867,596.1278,1,CMIP5 -2053,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,60.96544249,487.8924,644.9045,591.744,602.3337,1,CMIP5 -2053,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,60.41327967,485.3363,640.7532,588.46482,599.7501,1,CMIP5 -2053,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,61.08989959,488.4584,645.8423,592.4594667,602.8732,1,CMIP5 -2054,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,62.45792534,492.3244,653.28,598.6724267,609.3506,1,CMIP5 -2054,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,61.90319205,489.8095,649.1932,595.3817133,606.4372,1,CMIP5 -2054,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,62.5824482,492.8813,654.2033,599.3896933,609.9589,1,CMIP5 -2055,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,63.9402543,496.819,661.3235,605.7452533,617.0286,1,CMIP5 -2055,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,63.33851904,494.31,657.1484,602.39146,613.957,1,CMIP5 -2055,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,64.07516823,497.3747,662.2667,606.47642,617.6699,1,CMIP5 -2056,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,65.76152424,501.0775,670.3555,613.10038,624.7797,1,CMIP5 -2056,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,65.05706805,498.733,666.0094,609.72242,621.5988,1,CMIP5 -2056,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,65.91923255,501.5966,671.3373,613.83648,625.4439,1,CMIP5 -2057,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,67.48595574,505.5576,678.9124,620.5700667,632.5667,1,CMIP5 -2057,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,66.82900232,503.1301,674.7705,617.20132,629.6144,1,CMIP5 -2057,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,67.63313923,506.0952,679.848,621.30454,633.1831,1,CMIP5 -2058,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,69.01767294,510.2813,687.4831,627.7857067,640.1954,1,CMIP5 -2058,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,68.39841679,507.773,683.3198,624.3724733,636.8801,1,CMIP5 -2058,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,69.15628883,510.8368,688.4236,628.5293667,640.8876,1,CMIP5 -2059,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,70.61633204,515.2222,696.8273,635.5159667,648.6892,1,CMIP5 -2059,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,70.0201416,512.5442,692.5023,631.94496,645.1696,1,CMIP5 -2059,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,70.7496641,515.8152,697.8044,636.29348,649.424,1,CMIP5 -2060,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,71.93847616,520.7419,705.5871,643.3679133,656.9419,1,CMIP5 -2060,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,71.42723306,517.8285,701.3119,639.7425133,653.6948,1,CMIP5 -2060,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,72.05315327,521.3871,706.5529,644.15794,657.6199,1,CMIP5 -2061,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,73.42233096,526.2248,714.6006,651.48216,665.2304,1,CMIP5 -2061,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,72.8511077,523.242,710.1049,647.6933,661.8207,1,CMIP5 -2061,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,73.55037426,526.8853,715.6163,652.3078133,665.9423,1,CMIP5 -2062,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,75.1348995,531.4594,723.9965,659.6134133,674.1954,1,CMIP5 -2062,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,74.52125804,528.4838,719.3962,655.7967933,670.5294,1,CMIP5 -2062,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,75.27246618,532.1183,725.0357,660.4454067,674.9608,1,CMIP5 -2063,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,76.74933287,536.8848,733.3631,667.8947533,684.0911,1,CMIP5 -2063,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,76.1406626,533.8999,728.7348,664.0282,680.1703,1,CMIP5 -2063,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,76.885295,537.5458,734.4086,668.7368533,684.9097,1,CMIP5 -2064,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,78.22473121,542.2937,742.3715,676.1176333,693.6471,1,CMIP5 -2064,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,77.60774939,539.4022,737.7452,672.2761467,689.6762,1,CMIP5 -2064,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,78.36207179,542.934,743.4166,676.95356,694.4761,1,CMIP5 -2065,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,79.7384881,547.8545,751.5356,684.5343933,703.4755,1,CMIP5 -2065,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,79.15124436,544.7925,746.8807,680.5624933,699.4184,1,CMIP5 -2065,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,79.86890305,548.5326,752.5872,685.39866,704.3225,1,CMIP5 -2066,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,81.49021373,553.458,761.6527,693.1693,713.2459,1,CMIP5 -2066,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,80.88492902,550.3416,756.8662,689.1695267,709.3768,1,CMIP5 -2066,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,81.62494808,554.1482,762.7341,694.0405067,714.0537,1,CMIP5 -2067,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,83.21757491,559.2678,771.6122,701.94638,723.1547,1,CMIP5 -2067,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,82.6194742,556.0286,766.6132,697.88266,719.1984,1,CMIP5 -2067,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,83.35094749,559.9851,772.7415,702.8318933,723.9807,1,CMIP5 -2068,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,84.83005304,565.4422,781.6223,710.9968533,733.4644,1,CMIP5 -2068,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,84.24874425,562.0823,776.5737,706.8214733,729.3614,1,CMIP5 -2068,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,84.95939896,566.1863,782.7628,711.90642,734.321,1,CMIP5 -2069,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,86.42145846,571.4498,791.3877,719.88918,743.4357,1,CMIP5 -2069,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,85.80811186,568.3169,786.5992,715.8232667,739.3561,1,CMIP5 -2069,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,86.55740659,572.1436,792.4694,720.7742267,744.2875,1,CMIP5 -2070,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,88.24369008,577.0843,801.3596,728.75118,753.4973,1,CMIP5 -2070,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,87.62746262,573.8887,796.4408,724.65762,749.4109,1,CMIP5 -2070,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,88.38040733,577.792,802.4708,729.6427267,754.3505,1,CMIP5 -2071,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,89.90997712,582.8785,811.6398,737.4077267,763.7454,1,CMIP5 -2071,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,89.25191088,579.7841,806.6591,733.3431733,759.6235,1,CMIP5 -2071,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,90.05586929,583.5638,812.765,738.2928533,764.606,1,CMIP5 -2072,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,91.8902231,588.4496,822.0872,746.4860467,774.3573,1,CMIP5 -2072,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,91.28464261,585.251,817.1871,742.36616,770.2466,1,CMIP5 -2072,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,92.02414958,589.158,823.1941,747.3828333,775.2156,1,CMIP5 -2073,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,93.77363545,594.4923,832.1172,755.99802,785.2749,1,CMIP5 -2073,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,93.10554715,591.2377,827.111,751.7248467,780.9893,1,CMIP5 -2073,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,93.92119562,595.2131,833.2481,756.9283333,786.1697,1,CMIP5 -2074,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,95.64059826,600.4433,842.2373,765.32182,796.5182,1,CMIP5 -2074,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,95.00580758,597.16,837.2298,761.0954867,792.3967,1,CMIP5 -2074,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,95.78084473,601.1704,843.3685,766.2423133,797.3787,1,CMIP5 -2075,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,97.58968883,606.2172,852.5264,774.6530467,807.2547,1,CMIP5 -2075,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,96.94043001,602.9556,847.4624,770.4016867,803.1645,1,CMIP5 -2075,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,97.73296018,606.9395,853.6703,775.5788,808.1087,1,CMIP5 -2076,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,99.32344387,612.5488,863.3348,784.0636533,817.6956,1,CMIP5 -2076,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,98.68645303,609.3001,858.1162,779.86844,813.8165,1,CMIP5 -2076,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,99.46432539,613.2683,864.5137,784.9776067,818.5055,1,CMIP5 -2077,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,100.9909105,619.2407,874.1434,793.6010333,828.4289,1,CMIP5 -2077,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,100.4330562,615.7593,868.8911,789.34342,824.4981,1,CMIP5 -2077,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,101.1143086,620.0117,875.3299,794.52898,829.2497,1,CMIP5 -2078,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,102.5350918,625.9894,884.5393,803.03604,839.3979,1,CMIP5 -2078,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,102.0404254,622.3309,879.2467,798.7276333,835.2922,1,CMIP5 -2078,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,102.6442845,626.7996,885.7349,803.97502,840.2551,1,CMIP5 -2079,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,104.2749455,632.6092,895.0653,812.7621933,851.1563,1,CMIP5 -2079,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,103.7711573,628.9599,889.9468,808.3942,846.7968,1,CMIP5 -2079,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,104.3853578,633.4174,896.2216,813.7133133,852.0665,1,CMIP5 -2080,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,106.0533473,639.2751,905.5481,822.6875933,863.1695,1,CMIP5 -2080,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,105.4775464,635.7155,900.3597,818.25708,858.6611,1,CMIP5 -2080,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,106.1792754,640.0634,906.7201,823.65186,864.1109,1,CMIP5 -2081,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,108.0813859,645.684,916.6229,832.7146267,875.7397,1,CMIP5 -2081,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,107.4804808,642.1364,911.3903,828.2473733,871.077,1,CMIP5 -2081,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,108.212453,646.4697,917.805,833.6866333,876.7132,1,CMIP5 -2082,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,110.2622152,651.772,927.9983,842.5692333,887.5153,1,CMIP5 -2082,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,109.5559897,648.3713,922.6801,838.1178,882.9516,1,CMIP5 -2082,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,110.4168925,652.5252,929.1998,843.5387133,888.4681,1,CMIP5 -2083,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,112.2417652,658.4369,938.9017,852.5541333,899.7326,1,CMIP5 -2083,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,111.5578217,654.9361,933.5411,848.0727867,895.0401,1,CMIP5 -2083,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,112.3913928,659.2122,940.1127,853.53026,900.7124,1,CMIP5 -2084,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,114.1163541,665.4794,949.9079,862.89546,912.9964,1,CMIP5 -2084,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,113.5326953,661.6596,944.4245,858.2423,908.114,1,CMIP5 -2084,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,114.2431957,666.3253,951.1466,863.9084333,914.0158,1,CMIP5 -2085,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,115.8752474,672.6319,960.6758,873.2122133,926.1566,1,CMIP5 -2085,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,115.3893162,668.7385,955.4323,868.5922,921.5459,1,CMIP5 -2085,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,115.9802561,673.4941,961.8604,874.2178733,927.1193,1,CMIP5 -2086,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,117.8151776,679.773,972.1195,883.6724467,938.5404,1,CMIP5 -2086,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,117.2278616,676.0031,966.6704,879.0334933,933.5036,1,CMIP5 -2086,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,117.9423841,680.6078,973.3505,884.6821867,939.6569,1,CMIP5 -2087,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,119.8076825,686.9411,983.5407,894.3613267,949.7239,1,CMIP5 -2087,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,119.2555655,683.0345,978.0716,889.6164067,944.3538,1,CMIP5 -2087,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,119.9271424,687.8062,984.7762,895.39444,950.9142,1,CMIP5 -2088,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,121.579103,694.0475,994.5426,904.6590733,960.3033,1,CMIP5 -2088,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,121.0672217,690.1664,989.0506,900.0051533,955.1208,1,CMIP5 -2088,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,121.6898525,694.9071,995.7832,905.6727333,961.4521,1,CMIP5 -2089,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,123.3606368,701.5208,1005.9824,915.17672,971.1628,1,CMIP5 -2089,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,122.9873467,697.4187,1000.674,910.5361467,965.9239,1,CMIP5 -2089,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,123.440671,702.4293,1007.1816,916.1877,972.3241,1,CMIP5 -2090,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,124.9629403,709.2044,1017.0815,925.7028133,982.2942,1,CMIP5 -2090,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,124.5893034,705.1622,1011.7398,921.1063867,977.1604,1,CMIP5 -2090,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,125.04322,710.0996,1018.2882,926.7042533,983.4322,1,CMIP5 -2091,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,126.9027002,716.5251,1028.6499,936.43778,993.3028,1,CMIP5 -2091,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,126.4063035,712.6354,1023.1716,931.7755733,988.0673,1,CMIP5 -2091,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,127.0098154,717.3865,1029.8875,937.4532867,994.4632,1,CMIP5 -2092,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,129.1497429,723.3718,1040.1685,947.14268,1004.4194,1,CMIP5 -2092,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,128.5445222,719.6788,1034.5413,942.53034,999.2026,1,CMIP5 -2092,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,129.280908,724.1897,1041.4397,948.1477733,1005.5758,1,CMIP5 -2093,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,131.3357533,730.4244,1051.6808,957.8784333,1015.2414,1,CMIP5 -2093,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,130.7082244,726.6489,1045.9936,953.16026,1010.0228,1,CMIP5 -2093,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,131.4709657,731.2606,1052.9656,958.90602,1016.3981,1,CMIP5 -2094,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,133.4141635,737.876,1063.2268,968.8939533,1025.9037,1,CMIP5 -2094,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,132.8576714,733.9935,1057.4381,964.15002,1020.8533,1,CMIP5 -2094,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,133.5337487,738.7358,1064.5345,969.92708,1027.0232,1,CMIP5 -2095,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,135.4759692,744.9179,1074.5491,979.56646,1036.1827,1,CMIP5 -2095,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,134.9653272,740.9629,1068.8781,974.8068467,1031.159,1,CMIP5 -2095,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,135.5848299,745.7938,1075.8303,980.6026267,1037.2963,1,CMIP5 -2096,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,137.8795672,751.7006,1086.2766,990.4638333,1047.1569,1,CMIP5 -2096,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,137.2618372,747.937,1080.5544,985.7078867,1041.9684,1,CMIP5 -2096,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,138.0120074,752.534,1087.5693,991.4993067,1048.307,1,CMIP5 -2097,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,139.9261578,759.2861,1097.7172,1001.484687,1058.614,1,CMIP5 -2097,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,139.4685882,755.2962,1092.3418,996.7500067,1053.2393,1,CMIP5 -2097,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,140.022888,760.1697,1098.9316,1002.515593,1059.8053,1,CMIP5 -2098,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,142.1941943,766.483,1109.7597,1012.604893,1069.6394,1,CMIP5 -2098,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,141.672035,762.5579,1104.0484,1007.825167,1064.2464,1,CMIP5 -2098,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,142.3056622,767.3522,1111.0499,1013.646213,1070.8348,1,CMIP5 -2099,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,144.4111956,773.7771,1122.1158,1023.77142,1080.7588,1,CMIP5 -2099,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,143.8277029,770.0872,1116.4512,1019.048093,1075.3511,1,CMIP5 -2099,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,144.5364872,774.5943,1123.3955,1024.800253,1081.9574,1,CMIP5 -2100,co2,carbon_cycle,atmos_co2,esmrcp85,ppmv CO2,Simulated,global,146.3363934,781.3091,1133.2752,1034.577613,1091.2787,1,CMIP5 -2100,co2,carbon_cycle,atmos_co2_HL,esmrcp85,ppmv CO2,Simulated,HL,145.8858279,777.4871,1127.9533,1029.98664,1086.1747,1,CMIP5 -2100,co2,carbon_cycle,atmos_co2_LL,esmrcp85,ppmv CO2,Simulated,LL,146.4313877,782.1556,1134.4775,1035.577233,1092.4101,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/hist/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/hist/ensemble_mean_model.csv deleted file mode 100644 index eded35183..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/hist/ensemble_mean_model.csv +++ /dev/null @@ -1,4204 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.437009890277368 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.50394295263464 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",0.550668266141747 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.562809221705423 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.626484821776531 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.527967784148981 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.477351807075592 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",0.811527557747509 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.601967281016331 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.559575237009489 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.553699329756677 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.644667041529658 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.604986765910625 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.650278399027112 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.67342591568111 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.592762891766912 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.521316476120684 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.534547378810758 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.48793774579369 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.566780242660081 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.528592821630678 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.620339242385039 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.707943522566866 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.625737487393003 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.728290803004416 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",0.691461187062664 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.81191797940139 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.79168488542541 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.827476471730067 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",0.955634553961937 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",0.967683466700284 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",1.03302768313878 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",1.1552463619079 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",1.23112107793666 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",1.7924046297843 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",1.36620259481085 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",1.19336116248207 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",1.19235786900689 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",1.02046269028067 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.977919909472922 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",1.16698915888455 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",1.13343221230446 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",1.04234828645984 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",1.08710297641615 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.986992770858898 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",1.08907034511921 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",1.01255906624628 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",1.02713608858704 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",1.08763858562234 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.928858949245111 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.928920044337866 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.979481062506852 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",1.12753368119196 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",1.67226233043832 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",1.32859288257557 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",1.1948462267804 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",1.154456447713 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",1.25432974304158 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",1.19961180408984 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",1.16902354543608 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",1.12985769583387 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",1.18988530524862 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",1.31389612452463 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",1.29286004360465 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",1.26171333845239 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",1.23037598459584 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",1.2067336243696 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",1.22504342348236 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",1.22336200115666 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",1.22785913356509 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",1.34154168067578 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",1.175749608246 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",1.19358553354324 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",1.23716228876795 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",1.26040131466569 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",1.37366249238991 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",1.29475228401898 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",1.41661410341661 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",1.34259086216823 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",1.40840825876617 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",1.36266003987788 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",1.36129353741021 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",1.4038065443649 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",1.41348480742983 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",1.32081203566644 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",1.49786646820372 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",1.44112294679679 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",1.36221455260328 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",1.40713908158163 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",1.27795742977392 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",1.24374316402556 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",1.23171511432762 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",1.16083456196409 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",1.19151609068084 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",1.0467614864832 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",1.11089100441813 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",1.16298548273621 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",1.04634086411098 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",1.16098967413408 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",1.08989056674877 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",1.17262266001825 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",1.13464701752434 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",1.15873721278421 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",1.27722119388759 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",1.35834880729753 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.36305510369165 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",1.38840417801124 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",1.48758552472597 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",1.54297614999593 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",1.60760237903869 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",1.5863555867464 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",1.59641050506003 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",1.67391429905992 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",1.90829268306439 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",2.00813913923868 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",1.85741407712939 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",1.84735286255292 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.83372465500637 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",1.85585975393989 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",2.04214429435952 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.89412929317693 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",2.04640547698615 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",2.18182955324505 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",2.21804000110266 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",2.23546837677679 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",2.41248033621901 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",2.41124509482399 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",2.4609807689801 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",2.46945191040013 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",2.59594383073994 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",2.6357122006805 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",2.47606512070246 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",2.68787460393576 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",2.95952152810296 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",2.8179009687683 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",2.78478742849458 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",2.75426442687002 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",2.94029231454192 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",2.9979714179195 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",2.92921676135122 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",2.83582130667405 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",3.07624623732577 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",3.37406800669072 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",3.02230433944744 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",2.9907750029326 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",2.99473844702859 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",3.12845186069033 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",3.20110326365507 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",3.14785182036212 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",3.24829322001609 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",3.26988726721113 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",3.28391672811796 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",3.29911366555711 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",3.37768622349402 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",3.42972697014537 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",3.45422903703928 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2006,"Simulated","PgC/yr","global",3.54387181235094 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2007,"Simulated","PgC/yr","global",3.54509424778765 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2008,"Simulated","PgC/yr","global",3.76408627288636 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2009,"Simulated","PgC/yr","global",3.82843407905226 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2010,"Simulated","PgC/yr","global",3.90234633532864 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2011,"Simulated","PgC/yr","global",3.89553996848851 -"bcc-csm1-1","fgco2","ocean","fgco2","historical",2012,"Simulated","PgC/yr","global",3.90785396456381 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",0.77838409164321 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",0.75986870365316 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",0.728818142657338 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",0.777827843046206 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.778842395194635 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.779791461927234 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",0.746003346343408 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.789300246255869 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.764841066005616 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.731114661462068 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.723904000047774 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.789747698477581 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.719713688309731 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.73515899922563 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.764657065197447 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.745450589043789 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.724147919067834 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.719727936577441 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.700916920622264 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.702050837397531 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.699099464434496 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.720323816117743 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.764794358108158 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.709939754098555 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.744296101921763 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.732170448663405 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.770063669457183 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.749627879186177 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.779356559504233 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.840799902196518 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.825362611828668 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.845339721110694 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.919354942610995 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.907979257774857 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.923242549429752 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.890267056902312 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.911626531230328 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.923014294068233 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.90876376173338 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.865939319280664 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.880939820037738 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.862005098923838 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.906128398363451 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.910437508571999 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.93764264139586 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.940830762065407 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.929715320423593 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.936168842102118 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.924910445986265 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.874430248882263 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.840856423470412 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.877246970997474 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.936573549520702 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.912152584822915 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.872744612760654 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.898407724452667 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.956146800618643 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.952834125555874 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.939649665595739 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.921759880353461 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.89912353477614 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.945953722002396 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.988948766230072 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.957777236497802 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.937871085476156 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.936298303183559 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",0.966638715419237 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.955217266279528 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.949820381036838 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.983381751009367 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.995181203860627 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.940475121529002 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.903190330074237 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.979059807923941 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.945810767528356 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.995931927157957 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.962956906427462 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.973153476341095 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.914682926193104 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.907152575169539 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.926762720788503 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.958649305969135 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.997700788260491 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.965196149083189 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.946560735950577 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",1.0565319799925 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.994241573066909 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.976459263168479 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.994940493059783 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.936344067487129 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.950585163883103 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.953153815165145 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.889360357535287 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.9097885046958 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.912214107144416 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.934425741112728 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.926082483954609 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.907874235775117 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.92278481203466 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.900140162831123 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.898173430090265 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.906502627699451 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.909104210408188 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.941963074731065 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.992028090524327 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.988429034716533 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.994596553087592 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.998360171669459 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",1.01377613681544 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",1.03637379504335 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",1.02512945847643 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",1.01737264491973 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",1.04858408867347 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",1.05147233520539 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",1.07841316738121 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",1.06401260361816 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",1.08114572092161 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",1.08812491875517 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",1.07731595640819 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",1.12381890527407 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",1.08839233326304 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",1.12332691542084 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",1.14373628506298 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",1.15868130249944 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",1.16474917735592 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",1.19948994532912 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",1.2329665805705 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",1.25104225380872 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",1.2516593642115 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",1.24256142066173 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",1.25055309473716 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",1.21577326197699 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",1.26209268183165 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",1.27678330635589 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",1.30851589701399 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",1.25358467318068 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",1.28483631403404 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",1.31917407305765 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",1.31909584912434 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",1.27160108872273 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",1.32603664268665 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",1.34829564506814 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",1.33382704818576 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",1.35245406333277 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",1.36565286592 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",1.39369902397628 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",1.43006522678103 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",1.43309340828655 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",1.39217445933136 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",1.41564711217166 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",1.42494877764187 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",1.43624604982591 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",1.45241556905088 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",1.47619054937292 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",1.50410243401892 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",1.45422679751899 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2006,"Simulated","PgC/yr","HL",1.50791606307686 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2007,"Simulated","PgC/yr","HL",1.52151155253463 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2008,"Simulated","PgC/yr","HL",1.56988196806434 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2009,"Simulated","PgC/yr","HL",1.62113723318799 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2010,"Simulated","PgC/yr","HL",1.63070593572851 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2011,"Simulated","PgC/yr","HL",1.57675255824138 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","historical",2012,"Simulated","PgC/yr","HL",1.61866435668558 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",-0.330497405651074 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",-0.245519811457053 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",-0.168353806181275 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",-0.204495710615893 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",-0.141993516462491 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",-0.241174542237845 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",-0.25838774838704 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",0.0322458804734981 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",-0.152659540230535 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",-0.161732263480425 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",-0.160493226418028 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",-0.134597317554596 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",-0.105221165648157 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",-0.0752595085782537 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",-0.0812159590516741 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",-0.142749119210183 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",-0.193027377210632 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.175481350433843 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",-0.203443874450476 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",-0.125934054815255 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",-0.161111097865949 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",-0.0905114514128937 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",-0.0469281279480264 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",-0.0749051045713916 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",-0.00645645664200807 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",-0.0312474317673808 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",0.0515734320531633 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.0515146816907127 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.0579405816437578 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",0.125256949684766 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.152470477031395 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.197968218566295 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.246984793207338 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.333850603670615 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.878567923918698 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.485998801407391 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.292603421870359 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.280391814684766 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",0.122997691847124 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.122731646171708 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.296514563859854 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.281690550829581 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.147417655973976 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",0.187807331082221 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.0611887001424203 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.159847543419939 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.0944891707045744 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.102672776440193 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.174093144725397 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.0654461557535635 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.0985600182808725 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",0.113156369264427 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.202396562273795 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.769673011491878 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.465742883417008 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.307098237856248 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.209976017863249 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.312836544228182 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.271248613839489 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.258356431843658 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.241583326346195 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.255342620823711 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.336685036341094 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.346394658144927 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.334930695000628 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",0.305227634397505 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.251780537506815 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.281284402054475 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.284920678786632 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.256364778744579 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.358118992213722 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.246639213174621 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.301132590069806 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.269897346718679 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.325805853643618 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.389412608196202 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.343182362609493 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.454671409237168 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.438414785133289 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.511465168520955 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.446536530813229 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.41378184215811 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.417732645912926 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.459384658821667 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.385312512813119 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.453616046117427 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.458352135256706 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.397166637044177 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",0.423773444619039 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.352633502144319 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.304493035255767 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.289969054915313 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.282086904949464 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.292573071615833 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",0.14582744318794 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.187914022548601 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.248079378870193 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",0.149680594669404 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",0.249335510460899 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.200725031888297 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.285166247922743 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.239094781163979 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.26055772570229 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.346367426368073 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.377984178128476 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.38622078041563 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.40542845068603 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.500632499455234 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.540694659740149 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.582896183552464 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.572777645873619 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.590441494007521 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.637005328860688 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.867897240003035 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.940947228090716 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.804812325354964 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.777911590278965 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.757449281773363 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",0.790165758096446 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.930157119656882 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",0.817425381638045 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.934891495829551 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",1.04985101280612 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",1.0712486450022 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",1.08265594848176 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.22498054625191 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",1.19079091864548 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.22259526221063 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",1.23043568606678 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",1.36553745032648 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",1.3973292321365 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",1.27236054381071 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",1.43798715342342 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.69442616072103 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.52195414124062 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",1.54301089308161 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",1.48180483926978 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",1.63351746034356 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.69111530372228 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",1.66930660346237 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",1.52257607988619 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.74042853782659 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",2.05167720593088 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.68254080779104 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",1.63810337941015 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.61444467521302 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.71198889990281 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",1.78146023721194 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.76863934098035 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.84569692425426 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.85807376683424 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.86094276629243 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",1.86017983731832 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.91513004923134 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.93954992551375 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",2.0130867035738 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2006,"Simulated","PgC/yr","LL",2.04962691666712 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2007,"Simulated","PgC/yr","LL",2.03746133996886 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2008,"Simulated","PgC/yr","LL",2.20823225184033 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2009,"Simulated","PgC/yr","LL",2.22194389070835 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2010,"Simulated","PgC/yr","LL",2.28623284519334 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2011,"Simulated","PgC/yr","LL",2.33256156439893 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","historical",2012,"Simulated","PgC/yr","LL",2.30357992627132 -"CanESM2","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",-0.389169316302626 -"CanESM2","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.0636540728783858 -"CanESM2","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",-0.383692173315332 -"CanESM2","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.321743112089313 -"CanESM2","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.683665081460268 -"CanESM2","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",-0.311716790610791 -"CanESM2","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.24363782935209 -"CanESM2","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",0.93270389992513 -"CanESM2","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.0450082834571574 -"CanESM2","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.569518010645912 -"CanESM2","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.306810094222541 -"CanESM2","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.806137972018033 -"CanESM2","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.727383163154403 -"CanESM2","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",-0.00384445267106773 -"CanESM2","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",-0.0944173949752045 -"CanESM2","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",-0.0241780674838967 -"CanESM2","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",-0.095124422546612 -"CanESM2","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",-0.62275281545095 -"CanESM2","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",-0.0982913537353487 -"CanESM2","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.409046219549243 -"CanESM2","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.347761435265947 -"CanESM2","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.334235315499391 -"CanESM2","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.811712042574789 -"CanESM2","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.347546189215138 -"CanESM2","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.0317113361163332 -"CanESM2","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",-0.442166071453502 -"CanESM2","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.761210461535429 -"CanESM2","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.897420163428904 -"CanESM2","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.732637907504727 -"CanESM2","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",1.256980696452 -"CanESM2","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",1.19896268321043 -"CanESM2","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",1.22143624039146 -"CanESM2","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",1.25200724259293 -"CanESM2","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",1.15420930811986 -"CanESM2","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",1.41600389945249 -"CanESM2","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",1.92983191881775 -"CanESM2","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",1.17269586894077 -"CanESM2","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",1.53528414739108 -"CanESM2","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",1.31438721928236 -"CanESM2","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",1.42534734057961 -"CanESM2","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",1.12530134013442 -"CanESM2","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.862733422772875 -"CanESM2","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",0.673425748835582 -"CanESM2","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",0.651962228177426 -"CanESM2","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",1.19963143887533 -"CanESM2","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",0.976584835533506 -"CanESM2","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",1.03625612115933 -"CanESM2","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",1.23459094039649 -"CanESM2","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",1.08909673156635 -"CanESM2","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.952202003545622 -"CanESM2","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.748578080805925 -"CanESM2","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.613610629381334 -"CanESM2","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",1.11679773963107 -"CanESM2","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",2.03520667025468 -"CanESM2","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",0.804630135552377 -"CanESM2","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",1.46813301693524 -"CanESM2","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",1.16994118741662 -"CanESM2","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",1.73314495739027 -"CanESM2","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",1.20533367664578 -"CanESM2","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",1.2829508677947 -"CanESM2","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",0.873212144211932 -"CanESM2","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",0.76736743444096 -"CanESM2","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",1.5825761335136 -"CanESM2","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",1.09143002326754 -"CanESM2","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",1.57752353328056 -"CanESM2","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",1.1776791715322 -"CanESM2","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",1.25380276454119 -"CanESM2","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",1.39120202841372 -"CanESM2","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",1.40948693532575 -"CanESM2","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",1.62201535990897 -"CanESM2","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",1.48026500630212 -"CanESM2","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",1.60920394170346 -"CanESM2","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",1.79166443154006 -"CanESM2","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",1.93928625622543 -"CanESM2","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",1.29737665366348 -"CanESM2","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",1.847086679907 -"CanESM2","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",2.13880561949024 -"CanESM2","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",2.14455366946363 -"CanESM2","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",2.05801383876048 -"CanESM2","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",1.76044435108441 -"CanESM2","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",1.94320725493773 -"CanESM2","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",1.92368804784574 -"CanESM2","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",1.60356144251088 -"CanESM2","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",2.14731632801535 -"CanESM2","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",1.94406494137539 -"CanESM2","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",2.4151426885724 -"CanESM2","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",1.83490072305203 -"CanESM2","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",2.11639208832746 -"CanESM2","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",1.93183887656064 -"CanESM2","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",1.65871458874991 -"CanESM2","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",1.82338503705154 -"CanESM2","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",1.95683631846772 -"CanESM2","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",1.60210643714113 -"CanESM2","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.719980860379961 -"CanESM2","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",1.43310579980866 -"CanESM2","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",0.941188063665525 -"CanESM2","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",0.797608457316227 -"CanESM2","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",0.994503712748157 -"CanESM2","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.822487127522019 -"CanESM2","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",1.16639321501245 -"CanESM2","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.860687181511599 -"CanESM2","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",1.46662977060276 -"CanESM2","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",1.1727820342077 -"CanESM2","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",2.04784916710293 -"CanESM2","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",2.04189110739569 -"CanESM2","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.68344511218467 -"CanESM2","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",1.48188623688294 -"CanESM2","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",1.3867236627537 -"CanESM2","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",1.66609545604807 -"CanESM2","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",1.46889099052845 -"CanESM2","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",2.44521630527999 -"CanESM2","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",2.6542781543352 -"CanESM2","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",2.34207868671068 -"CanESM2","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",3.09887288307714 -"CanESM2","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",3.91844472655424 -"CanESM2","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",3.81635659959912 -"CanESM2","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",2.479010826545 -"CanESM2","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",2.98301569353021 -"CanESM2","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",3.02123033478476 -"CanESM2","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",3.75659796774978 -"CanESM2","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",3.7994807298785 -"CanESM2","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",3.50596778353658 -"CanESM2","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",3.91580228047086 -"CanESM2","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",4.6311616120566 -"CanESM2","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",3.91467168164912 -"CanESM2","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",4.19485095958481 -"CanESM2","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",4.24659312438451 -"CanESM2","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",3.96351827457484 -"CanESM2","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",4.1086651930377 -"CanESM2","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",5.7173388629485 -"CanESM2","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",5.37822806842288 -"CanESM2","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",5.52189366623795 -"CanESM2","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",5.00349472095438 -"CanESM2","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",5.25164199963532 -"CanESM2","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",5.06886868999465 -"CanESM2","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",5.59035394278314 -"CanESM2","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",5.32643688278346 -"CanESM2","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",5.48081286561326 -"CanESM2","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",6.22023229380386 -"CanESM2","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",5.60234978790876 -"CanESM2","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",5.64587806536791 -"CanESM2","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",5.48717554778805 -"CanESM2","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",6.41357427366805 -"CanESM2","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",4.67502880177587 -"CanESM2","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",5.19904197014037 -"CanESM2","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",6.03796077930442 -"CanESM2","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",5.54939524861377 -"CanESM2","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",5.97179044444055 -"CanESM2","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",5.99180008275184 -"CanESM2","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",6.565031288314 -"CanESM2","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",6.40850083957812 -"CanESM2","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",5.94871410696024 -"CanESM2","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",6.58758221152122 -"CanESM2","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",6.51819700085915 -"CanESM2","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",6.73329242399697 -"CanESM2","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",7.13502689563207 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",-2.03283652388139 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",-1.89037538956591 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",-1.94640080657124 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",-1.91448357272814 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",-1.6443351577624 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",-1.65938963114803 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",-2.03499456550016 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",-1.74167712617173 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",-1.73546142756227 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",-1.58546035087329 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",-1.54833561252446 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",-1.52656192402427 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",-1.48160454820874 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",-1.7457473893208 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",-1.78451076238893 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",-1.78045575932631 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",-1.72292430448343 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",-1.93671197863085 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",-1.8573784050832 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",-1.80465964976995 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",-1.66949874177409 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",-1.62683701374832 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",-1.50009801477537 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",-1.55115046816909 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",-1.82529725800702 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",-1.85812631519043 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",-1.81358510847205 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",-1.62996208041148 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",-1.66715525693069 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",-1.52982867727283 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",-1.67013608260266 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",-1.57668818969195 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",-1.57982559712068 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",-1.72290529572355 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",-1.72351895024399 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",-1.63207331337373 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",-1.53374033504498 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",-1.56594462438411 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",-1.56990481586604 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",-1.34827033891079 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",-1.51891715149158 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",-1.62375669894743 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",-1.71180471074066 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",-1.46507163783759 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",-1.43535507433306 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",-1.44592069376309 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",-1.44334907062705 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",-1.42423083621615 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",-1.36385553156435 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",-1.35809733698189 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",-1.7442728337051 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",-1.64374757808535 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",-1.46329337332716 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",-1.56950165101649 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",-1.60770066627827 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",-1.52398741474144 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",-1.77019155977804 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",-1.66421025928781 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",-1.51424063164659 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",-1.66436040526897 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",-1.73608340878206 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",-1.86187001248918 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",-1.68461521755451 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",-1.58311875695365 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",-1.5678761864153 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",-1.66218080048454 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",-1.74326115632076 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",-1.59165266174155 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",-1.61285631966412 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",-1.49085089998989 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",-1.36867138263358 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",-1.36471702979343 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",-1.3339017400635 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",-1.13218346734481 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",-1.36971961787723 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",-1.42094281836884 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",-1.35664703163402 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",-1.31824754527985 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",-1.34163060894225 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",-1.46912952704699 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",-1.3283855505479 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",-1.32320448580067 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",-1.39018545061928 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",-1.29634855820016 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",-1.21671953610893 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",-1.29992310075787 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",-1.35144291088659 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",-1.45398445519151 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",-1.40672605738187 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",-1.29330330842402 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",-1.40381685459397 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",-1.35153652819964 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",-1.41600176824241 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",-1.52292518002717 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",-1.50368861359797 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",-1.47520785170418 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",-1.60324717591434 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",-1.58724926427015 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",-1.54210180085585 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",-1.61524767473528 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",-1.59137864366722 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",-1.2830242137044 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",-1.40446802902266 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",-1.26821048476978 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",-1.36665917436284 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",-1.39175146723146 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",-1.51530213653064 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",-1.57862648606565 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",-1.70702714258399 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",-1.79300840788443 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",-1.53415103041547 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",-1.48232966770858 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",-1.52823512615681 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",-1.28887104948475 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",-1.07172310429803 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",-1.0697803625948 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",-1.3149316943618 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",-1.53404921909947 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",-1.43221225952586 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",-1.43208215070171 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",-1.29759842562973 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",-0.95276489167189 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",-1.04534654245708 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",-1.13306039153086 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",-1.11894693469442 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",-1.03170531894849 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",-1.11034751105703 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",-1.13789803798445 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",-0.889419509756845 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",-0.79532727628226 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",-0.828005988439898 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",-0.87282821296792 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",-1.08248932751686 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",-1.00295491796171 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",-1.06014305403327 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",-0.993865811419338 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",-0.839429324251496 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",-1.10151165560175 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",-0.883181584499708 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",-0.877130927042758 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",-1.0490268772229 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",-0.989487792135213 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",-0.88090690274179 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",-0.994333101806135 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",-0.935091588404488 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",-0.866353126062676 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",-0.620963272509423 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",-0.707220314111538 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",-0.721715571676474 -"CanESM2","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",-0.749844887144181 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",-0.570620247265753 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",-0.699013031569929 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",-0.644801849752756 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",-0.745523131135365 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",-0.692285765101051 -"CanESM2","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",-0.57615312335417 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",1.6436672980597 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",1.95402933899683 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",1.562708671979 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",2.23622635910183 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",2.3280005801375 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",1.34767274290044 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",2.27863276692815 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",2.67438127616849 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",1.78046984134835 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",2.15497797568758 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",1.85514578721787 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",2.33269986539607 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",2.20898761084249 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",1.74190323450796 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",1.69009313567126 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",1.75627776760172 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",1.62779968034224 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",1.31395913093976 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",1.75908685122812 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",2.21370642983453 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",2.01725984458869 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",1.96107229297591 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",2.31180977016212 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",1.89869690975505 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",1.85700907781335 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",1.41595983039025 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",2.57479564787202 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",2.52738215624906 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",2.39979330901738 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",2.78680929115751 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",2.86909884153046 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",2.79812444332941 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",2.8318328399729 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",2.87711487887294 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",3.13952327873416 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",3.5619049904963 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",2.70643632243931 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",3.10122862697916 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",2.88429210356363 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",2.77361757303729 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",2.64421872626939 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",2.48649012481593 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",2.38523081589216 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",2.11703398289553 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",2.63498666660648 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",2.42250535160511 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",2.47960529925401 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",2.65882161439685 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",2.45295218370294 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",2.31029941430436 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",2.49285087737719 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",2.25735819851106 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",2.58009099647324 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",3.60470833137263 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",2.41233100739739 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",2.99212039844041 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",2.9401331684672 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",3.39735509552666 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",2.71957437020448 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",2.94731153104528 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",2.60929544519286 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",2.62923768023382 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",3.26719120913921 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",2.67454892491011 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",3.14539970849412 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",2.83985987689345 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",2.99706413983919 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",2.98285477109959 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",3.02234344601889 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",3.11286637022515 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",2.8489364252802 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",2.97392102757985 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",3.12556614169858 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",3.0714694581586 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",2.66709614182397 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",3.2680294528473 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",3.49545274641731 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",3.46280125750803 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",3.39964452494841 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",3.229573979675 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",3.2715927471983 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",3.24689262569836 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",2.99374681881159 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",3.44366464673675 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",3.16078432525613 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",3.71506558096602 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",3.18634336208502 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",3.5703763724413 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",3.33856481616504 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",2.95201764362817 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",3.22720167412193 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",3.3083726811939 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",3.01810841881402 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",2.2429061373567 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",2.93679441722715 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",2.4163958445788 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",2.40085552689273 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",2.5817528810013 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",2.36458896975636 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",2.78164081699988 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",2.45206614872461 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",2.74965385432435 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",2.57725007096481 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",3.31605967943377 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",3.40855057987507 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",3.07519679794116 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",2.99718835921222 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",2.96535045978433 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",3.3731224560947 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",3.26189984314383 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",3.97936723579057 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",4.13660810078057 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",3.87031419479006 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",4.38774382959899 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",4.99016777309871 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",4.88613698772666 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",3.79394279671459 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",4.51706473108091 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",4.45344260258018 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",5.18867981359905 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",5.09707931003772 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",4.45873264104027 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",4.961148989671 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",5.76422211583091 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",5.03361857189799 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",5.22655629173949 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",5.35694054898414 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",5.10141674710737 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",4.99808462459066 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",6.51266602715392 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",6.20623409184219 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",6.39472191341067 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",6.08598385966219 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",6.25459658154553 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",6.12901174364947 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",6.58421979968262 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",6.16586601962099 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",6.58232464824032 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",7.10341391853231 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",6.47948030011665 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",6.69490495049124 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",6.47666327024334 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",7.29448133080611 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",5.6693619442029 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",6.13413375407214 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",6.90431359025312 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",6.170358588671 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",6.67901093947585 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",6.71351547799414 -"CanESM2","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",7.31487625537902 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",6.97912134141157 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",6.6477273808531 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",7.23238397140336 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",7.26372025214168 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",7.42557828485054 -"CanESM2","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",7.7111798640161 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.15469827975398 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.133202154376993 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",-0.132638516872142 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",-0.133215821077454 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.0992188672889159 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.186116771333266 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",-0.0838252539464229 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",-0.195575608611592 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",-0.0726538310443946 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.0405174960233871 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.100143670131287 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.115988717367846 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.211245050136142 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.0659646303369383 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.0117257898284004 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.113404697367073 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.0162386140430883 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.0581581882557008 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.0298358421102179 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.0283883676976273 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",-0.0535607557762414 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.256706759774273 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.141739969933409 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",-0.0794083813578893 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.221502136610569 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",0.251205685060323 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.290765202325969 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.398449576936944 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.381816405251542 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",0.346855049356047 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",0.242451138412428 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",0.409832343972687 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",0.474568087381993 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",0.403492475517934 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",0.792522506940378 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",0.522698334174332 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",0.393708712436145 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",0.404479894626252 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",0.196369643908384 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.261162445792116 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",0.462525104824807 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.534252162744181 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",0.423447908196268 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",0.266334950249146 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.182541334714291 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",-0.0665728896187955 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",0.0587223154839855 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",0.165522762075885 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",0.260497902482193 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.273042339057133 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.358861359600329 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.297826558675899 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",0.381740896731495 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",0.751541994494285 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",0.600737813258366 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",0.495207196750896 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",0.134000745240606 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",0.405851461906697 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",0.418926166459529 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",0.378260215902383 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",0.504057865858701 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",0.623967104032166 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",0.637758627024185 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",0.342736475282912 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",0.377463333376328 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",0.417059978511561 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",0.44044768912154 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",0.442997098203395 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",0.454124753497196 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",0.395372063771436 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",0.374486726015892 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",0.205823014506525 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",0.334214148653685 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",0.621450267253077 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",0.823381574914122 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",0.590520246326105 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",0.554033231102464 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",0.547123802905994 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",0.619788396477002 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",0.624970923181037 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",0.55961607824084 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",0.657708137465652 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",0.653735797087451 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",0.733463569235118 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",0.609449879245661 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",0.693685840318775 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",0.59562225338659 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",0.501253345034904 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",0.425803250131575 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",0.64447239362572 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",0.679140940463836 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",0.612038010645489 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",0.418949855406995 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.499086034120109 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",0.23068502042875 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",0.37943088268605 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",0.545057739463781 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",0.345791324503488 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.358485867005159 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",0.587593750200693 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.623411210990909 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",0.619042877966847 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",0.445527373904605 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",0.476786534534348 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",0.553610246723192 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",0.643807622537456 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",0.500760774372451 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",0.64873070971107 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",0.554297453978047 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",0.596296591165177 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",0.795703089805197 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",0.752661411151222 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",0.642657455804481 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",0.870502535877405 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",1.01077390495709 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",1.08970525013539 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",0.901557834891937 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",0.919912783057101 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",0.819451487418179 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",1.10806179274894 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.07222371801886 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",1.16202601230063 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",1.148809174063 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",0.984986207856968 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",1.22737334055557 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",1.17304934511424 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",1.35571049123591 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",1.36169081157936 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",1.44535037956053 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",1.41175421315193 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",1.59213985364682 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",1.66600495296416 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",1.76241213580046 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",1.85382641740162 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",1.61706677639623 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",1.5083345075274 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",1.50079162776455 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",1.52855780753477 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",1.69211062862835 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",1.64993291322186 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",1.53391173744042 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",1.69287254717906 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",1.86264713365758 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",1.87810872744595 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",1.63035422591957 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",1.78008659617183 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",1.802813180147 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",1.639524581929 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",1.8608864070815 -"CESM1-BGC","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",1.93483122881821 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",1.84931982292456 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",1.89842313878973 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",2.07891355732148 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",1.96631475111385 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",2.11887271168645 -"CESM1-BGC","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",2.0509754049038 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",0.254425556954494 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",0.309980186805117 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",0.203772515927696 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",0.237747222450429 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.29483707654575 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.318546438600992 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",0.24444915183166 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.2150297493469 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.3194027064351 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.33407258918122 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.311382172235406 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.301342636077903 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.338378602206282 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.315013823291753 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.273541498120641 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.36881524815533 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.255233498066645 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.286065095852531 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.264228734602144 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.333326077458598 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.249271614156506 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.323719609989053 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.312438043044357 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.232746938208522 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.336273497004423 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.37706193099404 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.360210028685764 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.34810248319044 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.336968789208351 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.34725353243043 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.325476218266378 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.371330109506738 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.337478261763065 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.317305258636368 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.375221942104888 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.367026138455844 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.324968447356804 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.366183994276392 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.287033672265834 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.351515643010897 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.280370029900238 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.373606740538641 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.353339296106712 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.320182400237939 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.360893409373717 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.30951733932722 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.381204245756699 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.328095560629341 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.368497721172332 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.32500979733369 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.401166074721605 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.320695105918417 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.352260282923866 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.399198802776031 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.403465677962888 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.348567032313475 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.371887398289867 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.377446502795527 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.377411108576629 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.362281100984836 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.396634423551069 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.459653660134368 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.434353259873858 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.370533399252506 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.438464604694981 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.44193493979212 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",0.355305206736174 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.379518766246197 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.373620523864269 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.388754955733425 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.395433232247219 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.4127712945718 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.352591593232493 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.453885253276571 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.462935793279098 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.372639525441449 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.423249855175249 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.412566416497026 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.438937832208227 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.399824497693761 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.388657111137914 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.476339311712532 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.418961028766095 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.4326194536414 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.40745926894037 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",0.466604029705941 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.423037830190889 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.425317354019529 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.452535848681086 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.447297504284188 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.394874752312493 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.443790753981068 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.336222617814757 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.399424781250534 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.376266752220434 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.366817516761762 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.458927738317932 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.386953253859908 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.415437091847067 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.432439930079201 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.407607312067491 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.415256717462298 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.425753485668738 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.445278672490893 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.420020302865324 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.434422686995542 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.396308728671402 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.381190122102042 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",0.411239643781894 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",0.430821155058161 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",0.465141125379663 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",0.443005104420241 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.44527288689742 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",0.497009535548939 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",0.441642937486212 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.527858319950732 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.412340097693495 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",0.543268758661486 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.468885425344233 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",0.491949013069101 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.519200689810875 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.479679981450055 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.478210951201275 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.576057588686623 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.572726958655423 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.540176699278819 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.593758441754909 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.614446192536251 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.621587997185997 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",0.566820548376826 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.607838364131224 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",0.607367008427631 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",0.578451973562167 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.642577109321514 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.605498602064653 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.582258723903351 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.611107734937409 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.625994917767821 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",0.672374447191718 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.674388344214109 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.664855047485555 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.666792030147649 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.618319307037868 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.669382274378729 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.649801613925031 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.703690843677797 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.739241613928573 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.655138483575496 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.690128731917378 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.742216259796626 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.703070594024513 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.734991074535053 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.760033845721469 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.695758624860834 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.772024658360236 -"CESM1-BGC","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.748926186910012 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",-0.099727267530453 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",-0.176777890861139 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",-0.336410957274927 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",-0.370963034365717 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",-0.195618181638464 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",-0.132429753795156 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",-0.328274423850914 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",-0.41060528848247 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",-0.392056584589685 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",-0.29355514444693 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",-0.211238423232365 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",-0.185354032684501 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",-0.127133431622913 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",-0.249049201721506 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",-0.261815669882961 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",-0.255410542567713 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",-0.238994879077149 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.227906924519822 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",-0.234392843682812 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",-0.304937785815809 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",-0.302832354138536 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",-0.0670128949831141 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",-0.170698062136684 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",-0.312155384626284 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",-0.114771407063769 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",-0.125856261694085 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",-0.0694447780365366 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.0503471545681515 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.0448475934312026 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",-0.000398467136777204 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",-0.0830250545367431 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.0385022268963778 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.137089719075525 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.0861872319577674 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.41730064646419 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.155672134674562 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.0687402711867636 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.0382958686301163 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",-0.0906640399881026 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",-0.09035323355609 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.182155101753844 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.160645483201271 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.0701086080315527 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",-0.0538474080916195 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",-0.178352072546778 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",-0.376090313643102 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",-0.322481919611358 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",-0.162572862820808 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",-0.107999810252105 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",-0.0519673604826427 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",-0.0423047039289447 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",-0.0228684812454325 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.0294807030596069 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.352343129024382 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.197272089571936 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.146640109835039 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",-0.237886655170459 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.02840502838654 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.0415150653336124 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.0159790193964194 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.107423514446082 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.16431337496517 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.203405295164624 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",-0.0277969486413754 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",-0.0610012162165571 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",-0.024874957440128 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.0851424984311862 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.0634783194552631 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.0805042907635314 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.00661714972939579 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",-0.0209465943090694 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",-0.206948317993582 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",-0.0183773457399401 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.167565004655026 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.360445756996703 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.217880791836728 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.130783498806495 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.134557369325107 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.180850613718225 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.225146342643166 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.170958940369264 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.181368785892778 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.234774715941569 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.300844235324113 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.201990662847369 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.22708176269839 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.172584367723316 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.0759359670754471 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",-0.0267326468255327 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.197174829361943 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.28426621315631 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.168247182343043 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.0827271806127326 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.0996612003360157 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",-0.145581775378694 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.01261330270526 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.0861299995553135 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",-0.0411619545851617 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",-0.0569512196993762 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.15515386562729 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.215803937611594 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.203786198696189 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.0197739016078076 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.031507822830746 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.133589998352012 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.209384957497513 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.10445204065991 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.267540556964574 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.14305775668212 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.165475460103689 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.330561976240126 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.309656165345804 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.197384461926111 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.373493059170876 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.56913100284404 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.561846852475531 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.489217693790749 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.37664403810557 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",0.350565998992194 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.616112818524636 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",0.553023007109389 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.682345955929768 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",0.670598395027978 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",0.408928615460006 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",0.654646267498385 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",0.632873252022535 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",0.761951984718022 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",0.747244574756354 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",0.823761816895586 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",0.84493373714932 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",0.984301418214864 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",1.05863766795591 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",1.18395996722223 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.21124901219728 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.01156915119171 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",0.926075392281005 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",0.889683702254197 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",0.90256331775158 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.0197364901404 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",0.975544124406754 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",0.869056884790931 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.02607971578813 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",1.2443281395939 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.20872644659149 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",0.980552443985064 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.07639540609711 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.0635713955405 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",0.984385697480495 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.17075718433387 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.19261554467527 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.14624935512465 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.16343263804149 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",1.31887944677139 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.27055642829463 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.34684756950745 -"CESM1-BGC","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",1.30204974927932 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",1.81011101533753 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.0671641255991246 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.0812941733451996 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.10460741140874 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.136592358236872 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.0974358481614761 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.123031419297665 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.0904440176065496 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.0950594655793547 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.125379723935475 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.101647841144605 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.120662298600811 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.0894760261421109 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.101366341613073 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.181056093300019 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.187469698361822 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",0.139832180490827 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.223018468244834 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.287081661509578 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.261216292049267 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",0.323456881911316 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",0.366478564245997 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",0.392000401080454 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",0.391128704241914 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",0.45122815477516 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",0.769788366668439 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",0.608611687727336 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",0.527817377744161 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",0.481911374384679 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",0.443486837393385 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.405769340080841 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",0.473268937443471 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.510620129907365 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",0.385832316355476 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",0.287379395136293 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.282156126036523 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",0.274716998115188 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",0.201292162405517 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",0.314672766427883 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",0.345255219524852 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.301125610072665 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.350577980076159 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.387537641664138 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",0.392108116216878 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",0.533771132968389 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",0.550145003275235 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",0.440055524366456 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",0.406825370380437 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",0.495614702781424 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",0.494670630177383 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",0.491536456818892 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",0.472044603676509 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",0.428149756807157 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",0.486034109886207 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",0.478772752072289 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",0.474325930918654 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",0.421364574657005 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",0.418801633219569 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",0.427577447046755 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",0.486799857410231 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",0.570516350391858 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",0.509097234641338 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",0.548553057492756 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",0.515347303954929 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",0.507903722493145 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",0.493730708401466 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",0.517584714976879 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",0.646033719462342 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",0.715828128525327 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",0.713380240704974 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",0.690603500157563 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",0.674567199961036 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",0.712539548947218 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",0.748813475383109 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",0.728793618557304 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",0.733363450992987 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",0.732592016146452 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",0.635744137604448 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",0.627534533425615 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",0.642845585338255 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",0.544197898549104 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",0.541236821603159 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",0.453203604970332 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",0.436352595824133 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.498856224352307 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",0.480180891847009 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",0.51316467927765 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",0.516186229890776 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",0.510378418700656 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.574674792188343 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",0.552584360111822 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.644965787064428 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",0.65386591934053 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",0.677889651213938 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",0.684001321368848 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",0.683876337870123 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",0.665955378243828 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",0.805023760494555 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",0.773567202620079 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",0.773200691376662 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",0.833500505364653 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",0.890681465072529 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",0.971992518757865 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",0.97688116231268 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",0.94564868035858 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",1.13529699016607 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",1.14515426671489 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",1.19534204421143 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.19629430380796 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",1.20349768762467 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",1.24714405812546 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.32088638632102 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",1.27925243361172 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",1.22544066210545 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",1.31540293597603 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",1.36869429453982 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",1.41000329015242 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",1.40722223531015 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",1.42127794837504 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",1.45083459653963 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",1.57190232785065 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",1.57653084519886 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",1.56039192093686 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",1.66430457774213 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",1.73517595470734 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",1.78835104421819 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",1.77246139897108 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",1.80307639364322 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",1.9148487925619 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",1.93389696575018 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",1.90653406464763 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",1.75915352295085 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",1.81318446276857 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",2.02310651789991 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",1.96453649846703 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",1.99303869869191 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",1.99535009077201 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",2.01953864033447 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",2.02619877018764 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",2.03949907839969 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",2.01651014109747 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",2.00491924022395 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",2.03007394663068 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",2.05073979614926 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",2.10150350678103 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",2.26098634972225 -"HadGEM2-ES","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",1.98369887676057 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.891107240852226 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.298035995822872 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.322790955513609 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.309993801299603 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.319933113622256 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.315321080144036 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.3010141880319 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.261519183346551 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.303925005715261 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.276959461493838 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.270165135733526 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.28889067081341 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.292575194886864 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.289594801367677 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.357532682000085 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.36263311763705 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.332276437073117 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.325708665823859 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.370142905285887 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.367551133227284 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.387068526484304 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.355822444442283 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.376666397722616 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.387742957394959 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.346352299879779 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.405171451659885 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.393541677483804 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.400758582620421 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.375586023566524 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.396127603440019 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.395289229053143 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.399709604199376 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.40428659715032 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.415849574193562 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.340280545157192 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.365095517615034 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.357541234631356 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.364091178877036 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.348638306348678 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.386258408258969 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.395664606565724 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.418259972729936 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.406945671560487 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.380660296090951 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.410855559272286 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.403632699772126 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.391699216968292 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.376139382418468 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.419085824909846 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.400936203089266 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.361404317437001 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.371234430340978 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.364555474885195 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.35782303841868 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.357745595605568 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.387189670717119 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.341597542111783 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",0.391770452808499 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.409359859237297 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.404443323216186 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.447550244826815 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.417771137526568 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.398832291883632 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.42409889379446 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.407263634573691 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.437266770291368 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.405239042707863 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.468563085509462 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.47008779953408 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.472345946799008 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.474714376094165 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.473140691940287 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.477570197110619 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.498446592650499 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.500007790684463 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.495485144833494 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",0.500986832399165 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.452011181819245 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.461635598528094 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.495818697453067 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.460727503957185 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.451115140323629 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.448790592883432 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.463092468895371 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.460900757892765 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.440078673365809 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.483574721655746 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.487342498557649 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.504787773301651 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.508964849544805 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.510468596992341 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.537071177646994 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.511652035768306 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.491833568238312 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.497388953337027 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.477385972711299 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.47490051310723 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.551248950287873 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.517028717786622 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",0.482189917130866 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",0.517470278952162 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",0.546643232043714 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",0.553383535487517 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.557286638833583 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",0.527712361639221 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",0.567888545513908 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.562730154071789 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.587475081562133 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",0.581950334370377 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.61571218913996 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",0.639538051595654 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.638019869327407 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.620112066840784 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.610605330007778 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.626342099372463 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.649900448513337 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.63755398548897 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.644004582081109 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.682508780672877 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.66589736943428 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",0.694007631025112 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.703365436595435 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",0.687223337465194 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",0.732917592427058 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.709526001552444 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.739528848573706 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.759626269013934 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.757184366481359 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.803712051904006 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",0.799743847516535 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.812886571338355 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.795241013456992 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.799331552949986 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.774014032209102 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.831223304522397 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.84078889933685 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.836728456445037 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.831796258643455 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.820571417275361 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.839009915945413 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.819241609417389 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.840328284207971 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.853943892756273 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.832018013576623 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.84095078585112 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.878382224654722 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.830680266567261 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",0.919003688099562 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",-0.230871885829457 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",-0.241496710582306 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",-0.205386405247224 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",-0.183340749940338 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",-0.217885237418596 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",-0.177982742475295 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",-0.171075186068497 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.208865543363548 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",-0.151579749576928 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",-0.168517263915132 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",-0.168228408062339 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",-0.20309921105827 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",-0.188228497062484 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",-0.176476585680814 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",-0.1751634007509 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",-0.19244423885988 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",-0.102690173772503 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",-0.0830612081169802 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",-0.106334834717762 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",-0.0636115918391755 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.010656127583153 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.015333970531131 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.003385737654606 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.10487590975867 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.36461693803585 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.215070013648591 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.1270588411622 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.106325361490259 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",0.0473592519704319 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.0104801050333454 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.0735593284632237 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.106333482034481 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",-0.0300172980848596 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",-0.0529011938297972 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",-0.0829393792769316 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",-0.0828242466056086 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",-0.162798978920021 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",-0.0339655313040541 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",-0.041003138546368 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",-0.0945390654792887 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",-0.0676819862720248 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",-0.0194080504462018 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.0114477869037709 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.122915593526682 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.14651226833529 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.048356284092168 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.0306860028624019 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.0765288721392232 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.0937344508152161 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.130132135645909 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.10081018111694 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.0635942711162338 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.128211031660326 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.121027131721092 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.087136303317474 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",0.0797671244167355 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.0270311376609464 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.018217608963476 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.0823565273748766 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.122966125909278 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.0913260960117549 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.1497207596482 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.0912484199134653 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.100640092208968 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.0564639664210271 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.11234563360774 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.177470552815474 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.245740348573781 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.241034266816373 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.215889102023779 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.201426502236117 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.234969352865507 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.250366892554223 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.228785800861213 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.237878267344414 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.231605194760535 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.183733001038377 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.165898932858808 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",0.14702685610933 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.0834704098824629 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.0901216521314182 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.00441297983179466 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",-0.0267398933559597 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.0379554750919624 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",0.0401022282918726 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.0295899757741344 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.0288437177992407 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",0.00559066319228808 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",0.0657098986873502 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.0421157535897192 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.107894542310963 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.142213891116213 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.1860560838472 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.186612398035672 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.206490368721545 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.191054812835398 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.253774813828169 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.256538471379068 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.291010735232104 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.316030216423778 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.344038200113847 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.418608962717708 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.419594508432737 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.417936311969792 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.567408452295617 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.582424222249323 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.607866822771526 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.614344204638278 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",0.587785331223891 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.607606083406947 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",0.68286661786426 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.659140379186117 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",0.614835247993597 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",0.68906103771252 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",0.718793692586808 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",0.772449246964356 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",0.763217995176449 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",0.738769249709435 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",0.784937103077099 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",0.877894561020856 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",0.87316540635147 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",0.873168362930644 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",0.931386730582017 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.02564999166978 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.04882172682264 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",1.01283482485095 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",1.04589181483439 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",1.11113656052444 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.13415323952512 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",1.09364733189388 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",0.963912637785004 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.01385322144568 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",1.24909209065786 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.13331322320716 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",1.15225001618964 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.15862192740851 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.18774229985735 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",1.20562709172758 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.20048940738306 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.19726866848924 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.16459112549037 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.17613009360501 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",1.2187218388567 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.2605524099017 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.38260386297029 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",1.15301872677461 -"inmcm4","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.236766785741651 -"inmcm4","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",-0.157444655390732 -"inmcm4","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",0.084062639220846 -"inmcm4","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.331769242734343 -"inmcm4","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",-0.0595484190680919 -"inmcm4","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.711230336961373 -"inmcm4","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.422750965468584 -"inmcm4","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",0.556987256773794 -"inmcm4","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.433353991193134 -"inmcm4","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.291434741986854 -"inmcm4","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.359099907661323 -"inmcm4","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.311300777179386 -"inmcm4","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",-0.0382496095664127 -"inmcm4","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.523221223469295 -"inmcm4","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.503445672791657 -"inmcm4","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.695819750142412 -"inmcm4","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.164811488730294 -"inmcm4","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.564188201836049 -"inmcm4","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",1.15219119680441 -"inmcm4","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.897593820462865 -"inmcm4","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.820535288209939 -"inmcm4","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",1.32205645133821 -"inmcm4","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",-0.227025990615474 -"inmcm4","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.544533182930146 -"inmcm4","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.34220740841471 -"inmcm4","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",1.03467946000226 -"inmcm4","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",1.22209391200441 -"inmcm4","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.801706854487451 -"inmcm4","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",1.11928990755703 -"inmcm4","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",1.42219264782181 -"inmcm4","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",1.6036300949234 -"inmcm4","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",0.825879472746852 -"inmcm4","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",1.25866816421814 -"inmcm4","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",1.07322049368559 -"inmcm4","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",1.48381808637517 -"inmcm4","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",-2.04062117517168 -"inmcm4","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",-0.14608644956081 -"inmcm4","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",0.199444208310036 -"inmcm4","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",-0.133236048971998 -"inmcm4","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.0238189860384997 -"inmcm4","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",0.241626329732878 -"inmcm4","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.467708059596325 -"inmcm4","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",0.207492531714431 -"inmcm4","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",1.08090276609791 -"inmcm4","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.52448983464782 -"inmcm4","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",0.742879695256458 -"inmcm4","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",0.273811740229839 -"inmcm4","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",0.613938804538842 -"inmcm4","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",0.944452917373395 -"inmcm4","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.47961774112498 -"inmcm4","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.420270067437093 -"inmcm4","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",1.14883915682081 -"inmcm4","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",1.43424011258905 -"inmcm4","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",0.749177051899138 -"inmcm4","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",1.13086952625295 -"inmcm4","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",1.6126648366379 -"inmcm4","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",1.02194285054582 -"inmcm4","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",0.983736563868355 -"inmcm4","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",1.33153790322094 -"inmcm4","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",0.97171046350046 -"inmcm4","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",1.00203203008834 -"inmcm4","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",1.16741704440547 -"inmcm4","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",1.09597038004602 -"inmcm4","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",0.998866100300143 -"inmcm4","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",0.330651896073142 -"inmcm4","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",1.09431698118294 -"inmcm4","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",1.10257392166334 -"inmcm4","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",0.839459461861067 -"inmcm4","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",0.520036671236746 -"inmcm4","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",1.04229112707341 -"inmcm4","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",0.779737282819864 -"inmcm4","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",0.600058342856227 -"inmcm4","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",0.503097444507062 -"inmcm4","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",0.696497470019124 -"inmcm4","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",1.49528517066809 -"inmcm4","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",1.33675561508362 -"inmcm4","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",0.446562331157155 -"inmcm4","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",1.15636925073081 -"inmcm4","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",0.907979888998292 -"inmcm4","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",0.855421638626887 -"inmcm4","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",1.57943691200152 -"inmcm4","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",1.31756878499343 -"inmcm4","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",1.04470336198186 -"inmcm4","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",0.904111790234663 -"inmcm4","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",1.33670991583368 -"inmcm4","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",1.50182816077924 -"inmcm4","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",0.859977282605966 -"inmcm4","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",1.22752755282309 -"inmcm4","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",1.3741124669527 -"inmcm4","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",0.761257420126345 -"inmcm4","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",1.13054014890896 -"inmcm4","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",1.16050960277599 -"inmcm4","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",0.657841502722184 -"inmcm4","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.90073347318234 -"inmcm4","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",1.18975940770449 -"inmcm4","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",1.05510759596914 -"inmcm4","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",1.39614636031458 -"inmcm4","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",1.30819015642308 -"inmcm4","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.864634493168052 -"inmcm4","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",0.658834204679155 -"inmcm4","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.768967797577383 -"inmcm4","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",1.18819192343132 -"inmcm4","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",1.26670780476505 -"inmcm4","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",1.30828155492297 -"inmcm4","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",1.12627092497892 -"inmcm4","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.06788590599116 -"inmcm4","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",0.669371080739407 -"inmcm4","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",1.31792638162426 -"inmcm4","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",0.975421356844271 -"inmcm4","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",0.638074406405787 -"inmcm4","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",0.863332293040816 -"inmcm4","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",1.45524006042089 -"inmcm4","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",1.73840403790424 -"inmcm4","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",1.00469138369087 -"inmcm4","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",1.36582262301233 -"inmcm4","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",2.08951937261484 -"inmcm4","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",1.45558394727674 -"inmcm4","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.38661463925691 -"inmcm4","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",1.70776040585236 -"inmcm4","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",1.65363535669652 -"inmcm4","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.53698116631963 -"inmcm4","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",1.82540512747185 -"inmcm4","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",2.14264475067809 -"inmcm4","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",2.53214174293783 -"inmcm4","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",1.91028234439819 -"inmcm4","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",1.73736437996794 -"inmcm4","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",2.22987547897669 -"inmcm4","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",2.08334311898452 -"inmcm4","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",2.71158441777924 -"inmcm4","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",2.15307903192221 -"inmcm4","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",2.39432879983552 -"inmcm4","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",2.37217837338627 -"inmcm4","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",2.46448743083522 -"inmcm4","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",3.03219093322531 -"inmcm4","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",2.68790877886301 -"inmcm4","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",2.57032460874969 -"inmcm4","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",2.35210612032835 -"inmcm4","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",2.75155183930153 -"inmcm4","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",2.42134848136661 -"inmcm4","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",3.10513493350926 -"inmcm4","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",3.06915248658234 -"inmcm4","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",2.82904976984269 -"inmcm4","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",2.87958628539645 -"inmcm4","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",2.44072267838159 -"inmcm4","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",2.88972580647841 -"inmcm4","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",3.416560469641 -"inmcm4","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",2.52362111778523 -"inmcm4","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",2.91388357248158 -"inmcm4","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",2.7005160594421 -"inmcm4","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",3.35279744867137 -"inmcm4","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",3.29670390432408 -"inmcm4","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",2.86741657513559 -"inmcm4","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",3.24209215815631 -"inmcm4","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",3.47246893202602 -"inmcm4","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",3.3601733076128 -"inmcm4","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",3.62406134146855 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",-0.193359782201523 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",-0.218069833450679 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",-0.225280792095271 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",-0.109834394443436 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.0536832674530338 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.143032048778299 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",-0.0406931425459589 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.0390911962232457 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",-0.104460080768391 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",-0.19578360351323 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",-0.116591391519046 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",-0.332772050407038 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.000631577771454476 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.0278151930724007 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",-0.0528055625823271 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",-0.172017228528259 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",-0.116884360886018 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",-0.148747031303615 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.0310034265361026 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.0165320444530125 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",-0.159421591239818 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",-0.0277071945666107 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",-0.310710824518736 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",-0.320678727352992 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",-0.118407598764037 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.128093722272268 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.0316431496604042 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.0505410661393407 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.0989469658941966 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.00104242914904607 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.0440386381980218 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",-0.0173362783682364 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.0539100247804859 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",-0.139966424472929 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.0507228742239725 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",-0.456812021348018 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",-0.184834552388269 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",-0.287251617017207 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",-0.196796379569437 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",-0.350646035166827 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",-0.202613997631609 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",-0.00582618678016373 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",-0.0676693747603937 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",-0.101943971699628 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",-0.0929477288264248 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.0114683377809082 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",-0.17479806543208 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",-0.115702720064431 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.0670944197993607 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.177271906742489 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",-0.056940411629725 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.0216990707842928 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.0150282610885781 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.0429627956898424 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.0431892264262377 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",-0.0633805638132089 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.0603270061879385 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.0427271172698381 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",-0.0149128025554902 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.293513398916658 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.0541879365808381 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",-0.180003067427668 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",-0.194296410974482 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.122673290502199 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",-0.0826920648931026 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",-0.021508238473091 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",-0.0589347485127078 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",-0.117228364402869 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",-0.0689575186445102 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",-0.0871880377043303 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.017347898134258 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",-0.129176096601584 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",-0.139303633706614 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",-0.0977311361456615 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",-0.0714804689364634 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",-0.0589768959480408 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",-0.113463216431793 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.105051519983292 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",-0.206424971484658 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.00125062115003817 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",-0.075348510279441 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.117177656844047 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",-0.0334408615381774 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.0765511044956733 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",-0.0428033504981014 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",-0.397345290381754 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",-0.0565995365114181 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",-0.217570321023771 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",-0.286423966523209 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",-0.101636099467063 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.114524121696374 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",-0.0313644643549174 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",-0.0760852653256247 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",-0.0517069446451851 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",-0.0174674304610548 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.0637402952677965 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.0992322689658348 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",-0.084095753255322 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",-0.156583979059119 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",-0.243018983731434 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",-0.295231955435659 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",-0.0216861618430469 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.15497314602186 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.0105203522336738 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.0319490451576251 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",-0.108509637982949 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",-0.347682822941275 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",-0.110689186373156 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",-0.278990925959979 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",-0.141849445372545 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",-0.102046435346455 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",-0.0361795166286598 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.0914291491682161 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",-0.122032931384787 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",-0.139384009484598 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.00552288510349407 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.145544221565377 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",-0.0187389353902764 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.029014022896978 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",-0.201109444199841 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.0197106125403327 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.0715754037999806 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.125369677834328 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.210166329875595 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.0858136050252009 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.186769002784833 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.111810270337207 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.267211130320482 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.15909886770867 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",-0.00401000016197618 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.0924828522405437 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",-0.00112977128616221 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",-0.0224097157349337 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.271384104576513 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.247101200051674 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.0214561042270205 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.0594520171797044 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.0845698603358091 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",-0.000211265394726815 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.15256235397442 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.146935705735473 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.145789336748023 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.252573491043766 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.0924814255532955 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.154004597270348 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.180007536568445 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.0218365656192147 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.0934793846889245 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.194235218123835 -"inmcm4","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.348930400778334 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.212809482865462 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.295803146005037 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.276486660114276 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.186916312540462 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.129069713862075 -"inmcm4","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.259334269700034 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",0.430126525094409 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",0.0606251463538483 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",0.309343436175777 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",0.441603669197193 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",-0.11323169511839 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",0.568198270097307 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",0.463444106920105 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",0.517896118416184 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",0.537814106112087 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",0.487218253528165 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",0.475691318095858 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",0.644072879796619 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",-0.0388811853980814 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",0.49540596693143 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",0.556251262785518 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",0.867836958794889 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",0.281695854131867 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",0.712935162058592 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",1.12118815226953 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",0.881061749446182 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",0.979956453435695 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",1.3497633548801 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",0.0836847534125646 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",0.865211897784615 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",0.460615027635647 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",0.906585774962555 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",1.19045051223188 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.751165779574559 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",1.02034275404854 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",1.42115033902032 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",1.55959158810021 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.843215777230212 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",1.20475896797892 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",1.21318661153147 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",1.43309443455846 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",-1.58380880959963 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.0387481658715495 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.486695881334225 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",0.0635602821407815 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.374465059880627 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.444240377302092 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.473534276171273 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.275161931106258 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",1.18284690062406 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.617437624393882 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.731411336499018 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.448609784850732 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.729641463411598 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.877358458650981 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.302345861724963 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.477210390412349 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",1.127139817623 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",1.41921206835645 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.706214303164247 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",1.08768043162408 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",1.67604506371017 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.96161587058853 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.941009442541156 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",1.34645072705045 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.678197119984231 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.94784405472634 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",1.347420347678 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",1.29026708376097 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.876192778597244 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.413344032330729 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",1.11582563578585 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",1.1615084526795 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.956687790734368 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.588994157550583 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",1.12947894246023 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.762389405251001 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.729234397454448 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.642401036422295 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.794228582532273 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",1.56676619838932 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",1.39573249618329 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.560025600857933 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",1.05131820220423 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",1.11440469024157 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.854171034434666 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",1.65478620424554 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",1.20039130749448 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",1.0781443728997 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.827560626167129 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",1.37951391691771 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",1.89917330840102 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.916576749791164 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",1.44509773616093 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",1.66053598662551 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.862893543599471 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",1.01601585839528 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",1.19187436954981 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.733926720701571 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.952440483561049 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",1.20722718144824 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.991367694394724 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",1.29691369242708 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",1.39228592676545 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",1.02121822732787 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.901853172179853 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",1.06419988885969 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",1.20987883665791 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",1.11173459379875 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",1.29776101856106 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",1.09432218733409 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",1.17639538079293 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",1.01705342040814 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",1.42861612667507 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",1.25441247354854 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.77992391209098 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.965378755684563 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",1.49142017266775 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",1.64697391552569 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",1.12672440458137 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",1.5052064503391 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",2.08399620005207 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",1.31003899747845 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",1.40535299634369 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",1.67874621907199 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",1.85474449536202 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",1.51727089918836 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",1.7538301851645 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",2.01727581849167 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",2.32197546098126 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",1.82446884347506 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.55059614868469 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",2.11806492242197 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.81613243549708 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",2.55248602248205 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",2.15708948355488 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",2.30184636969528 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",2.37330808935935 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",2.48689735028273 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",2.76080692753941 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",2.4408068850772 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",2.54886862900971 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",2.29265487085356 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",2.66698181560376 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",2.42156006120907 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",2.95257245817829 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",2.92221721781139 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",2.6832605715249 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",2.62701286921498 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",2.3482416005435 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",2.73572102689919 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",3.23655288992089 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",2.50178524898738 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",2.82040414014529 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",2.5062810275127 -"inmcm4","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",3.00386723349885 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",3.08389442066853 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",2.57161346363027 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",2.96560555706388 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",3.28555221700906 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",3.23110302022752 -"inmcm4","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",3.36472722508867 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.797308126201799 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.807820186599382 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",0.922045895445366 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.875015647397268 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.862946529787535 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.814079640511196 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.913667976733988 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",0.958798464135058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.951855611230594 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.877103196037792 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.724137403328725 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.756463967325082 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.755609615616218 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.837761778723292 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.855141679795995 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.972583647378579 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.905856408076743 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.93841809963069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.979239554050893 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.948463045438827 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.998847246257412 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",1.02599505758157 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",1.00665608626115 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",1.04246049934228 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",1.00124395648833 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",1.03938244947985 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",1.08182261323618 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",1.1418884885587 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",1.26002062528365 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",1.13745694933231 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",1.27598463835001 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",1.38611023640227 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",1.31087384560073 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",1.54625455015569 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",1.75263932121992 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",1.60146084803991 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",1.53500034748908 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",1.53963826044321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",1.51168045090063 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",1.4048109087389 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",1.42168289412967 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",1.49232961251167 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",1.2804031263752 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",1.43026239855415 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",1.26906557106666 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",1.32238974158357 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",1.31772698758575 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",1.30018449995144 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",1.29788980532275 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",1.39237138928703 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",1.30317922291394 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",1.41249196538421 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",1.43524314365322 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",1.77453269835016 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",1.67914695187957 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",1.58238125325444 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",1.5174807702474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",1.65488484608783 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",1.63974558141403 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",1.59951632203021 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",1.583570714504 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",1.61178609864053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",1.6208741622973 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",1.64678257286438 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",1.5486340132371 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",1.61766449351633 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",1.49125529529158 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",1.43133071788494 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",1.53263110398731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",1.46350236643992 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",1.51035213722655 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",1.54342434440586 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",1.66774038223099 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",1.64670686560065 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",1.70881282128952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",1.68973412747455 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",1.81325460835123 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",1.80857630617684 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",1.76935031605396 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",1.80532786992251 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",1.81814945234896 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",1.83783591511889 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",1.89401271267999 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",1.93301289385442 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",1.84436640669808 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",1.77397152244087 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",1.79260395269789 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",1.75861862479133 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",1.74473013884488 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",1.8053202245443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",1.82399134504864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",1.74944458280718 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",1.80676121101448 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",1.82957584334846 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",1.74998228199952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",1.69269489672034 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",1.63707206730456 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",1.6385118953841 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",1.57282738785095 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",1.51232497945186 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",1.60605100955771 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",1.79127633405819 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",1.79973438765974 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",1.90923499534955 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",1.82083846315097 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.80491033445239 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",1.89632975137699 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",1.96358539700405 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",1.94495950521864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",2.02786088964863 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",1.9222318808926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",2.03879712695599 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",2.22685515418168 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",2.25483028809981 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",2.30455690916598 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",2.34566355936136 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",2.36917399833883 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",2.37703303527023 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",2.42837573998708 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",2.50800068085131 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",2.42183675354321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",2.42169002406234 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",2.39072212357479 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",2.64075842609898 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",2.65513559844277 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",2.71274442425311 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",2.80051516808679 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",2.82783954388626 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",2.85946077669388 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",2.91371490321532 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",3.05347705052338 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",2.99347988063673 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",2.9972155617356 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",3.22338077966357 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",3.16199276875038 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",3.13065341099811 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",3.20304536071597 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",3.22605486009735 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",3.34342171248253 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",3.35079371050551 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",3.34405007504885 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",3.42837087414113 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",3.6723369522998 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",3.44710616948685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",3.31906255929731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",3.24624380698422 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",3.39897272167873 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",3.40456440200051 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",3.49871041306784 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",3.65701015705265 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",3.63549498159484 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",3.66840228543126 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",3.64044027994038 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",3.8576531975944 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",3.78786685455258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",3.84029844646956 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",0.317259520677736 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",0.302594910870857 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",0.308182568253671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",0.256481804037386 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.26026968942233 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.215210355971815 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",0.208221384216213 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.191324138597585 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.177816423268184 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.190775486944548 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.13093013006624 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.102270707678804 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.12521563971881 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.137004378949971 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.170381559112761 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.241033952627726 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.266581343077728 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.2710558707582 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.272625236740126 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.314349548742685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.350285305574097 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.31932450350349 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.334564863980786 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.331600845736046 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.296622731580924 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.317053546996091 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.321971650832243 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.286013075469569 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.324415077366782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.310610928028801 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.337396426237792 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.3616511272595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.379973295212324 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.402596082740663 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.406150711977176 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.398721773835241 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.421642333311431 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.454292129686532 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.453904770980342 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.414384665649022 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.435168563697327 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.4404342053049 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.435482818505257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.40967525735035 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.404049199731167 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.447650755472834 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.400946284079733 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.404991435416069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.404460108007602 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.443822000870806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.420164866745757 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.442837944238824 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.454181462338663 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.479871781392587 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.484365280316271 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.497276302317609 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.498215296603249 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.51475595014185 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.503775514736703 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.522054110007527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.521450014335049 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.497494556534616 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.49265687158428 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.465634728240481 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.435785146802993 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.44182964377945 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",0.404528154403466 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.362801898480897 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.422290930407258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.426502625297474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.415096550490734 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.459734158586736 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.532011550609977 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.516598444241773 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.524191686383572 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.513075755891524 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.570203601789571 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.558960452123632 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.51789495796947 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.540370084818782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.568356050187253 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.586679841138573 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.587746790234815 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.631668761741874 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.613433385127884 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",0.587448397593489 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.567544413007387 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.581424682354147 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.559070153948317 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.59598270299918 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.550052443268219 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.558959790050591 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.572267720242187 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.608028436915696 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.620468003141468 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.623378457838113 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.581750155621936 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.581265692869755 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.565774011305245 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.58611510203019 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.600282315671945 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.636793666850973 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.61438888526225 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.639843662636434 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.629473759724996 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.61151746528864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.618571209856737 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.651732701335554 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",0.655314010736294 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",0.619560825143625 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",0.624242647065595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",0.637329210377346 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.68950801431777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",0.670301873107638 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",0.655527161473611 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.674983832961492 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.718403686435282 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",0.733375410776254 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.747536003687601 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",0.709702207586777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.709006663075532 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.710173658764613 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.694268687299813 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.752106514579579 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.775715947261581 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.809381074024386 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.796715984571346 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.835175945446009 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.792562901536162 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",0.816678820094412 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.851541701356321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",0.830689205184617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",0.787363651141853 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.840237217979515 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.779861673929643 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.756384196082866 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.76341697500467 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.790221323904407 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",0.858900505273448 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.891730500458895 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.870073079792323 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.850507901889416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.885867016090897 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.852577569801479 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.828695721649545 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.791674344342593 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.822097290228913 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.875595274703223 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.87757248227604 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.914702779793671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.934270670356956 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.968162695068134 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.926836509654137 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.966365948376242 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.943833120022327 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.955106154929694 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",0.480048591910409 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",0.505225260901088 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",0.61386334836723 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",0.618533845989942 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",0.602676795372818 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",0.598869322875934 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",0.705446624918749 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",0.767474251110547 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",0.774039170924275 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",0.68632773007238 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",0.593207285164763 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",0.65419323816899 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",0.630393971318937 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",0.700757414604045 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",0.684760092801976 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",0.731549751889466 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",0.6392751206599 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",0.667362173578924 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",0.706614360331922 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",0.634113568168455 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",0.648561923103542 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",0.706670604129322 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",0.672091156293219 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",0.710859604100002 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",0.704621236619754 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",0.722328856181348 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",0.759850996412876 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.85587539738628 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.935605526222766 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",0.826846049417949 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.938588202460628 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",1.02445916019187 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.930900647993071 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",1.14365837385419 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",1.34648837171271 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",1.20273888849505 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",1.11335836009459 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",1.08534603107782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",1.05777582905491 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.990426122961944 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.986514345708449 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",1.05189554003668 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.844920310876883 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",1.02058730334796 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.865016304265237 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.874738953850164 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.916780769521376 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.895193131421963 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.893429740363462 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.948549465298812 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.883014425154834 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",0.969654041069123 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.98106165756046 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",1.29466093877663 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",1.19478163867568 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",1.08510490165468 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",1.01926542609906 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",1.14012886412446 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",1.13596982560525 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",1.07746208849363 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",1.06212059897125 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",1.11429133051432 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",1.12821727360641 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",1.18114790959865 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",1.112848677111 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",1.17583496402849 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",1.08672704889114 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",1.06852875505793 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",1.11034016145837 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",1.03699970860371 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",1.09525570186125 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",1.08369020099578 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",1.13572880190353 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",1.13010837614472 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",1.1846210063767 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",1.17665855506328 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",1.24305061535622 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",1.24961625407563 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",1.25145557426063 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",1.26495806076228 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",1.24979340089316 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",1.25115576944734 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",1.30626587373313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",1.3013442454406 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",1.23093310064912 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",1.18652261762453 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",1.22505928178203 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",1.17719401292996 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",1.18565971936441 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",1.20933776603007 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",1.27393879968436 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",1.19048467598713 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",1.23449356561171 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",1.22154727952006 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",1.1295142428879 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",1.0693163585201 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",1.05532201366689 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",1.05724620701082 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",1.00705345987204 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.92620974613559 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",1.00576866969856 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",1.15448295783819 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",1.18534551529322 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",1.26939140408739 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",1.19136491256073 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",1.19339283976558 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",1.27775832442354 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",1.31185276465635 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",1.28964576816842 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",1.40829986102593 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",1.29798962008993 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",1.40146786775169 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",1.53734744819022 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",1.58452817082392 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",1.64902965718567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",1.67068013609932 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",1.65077004326238 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",1.64365774020538 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",1.68083954202978 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",1.79829836961539 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",1.71282999906554 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",1.71151630465482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",1.696453327651 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",1.88865149282519 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",1.879419898109 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.90336326325953 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",2.0037990386462 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.99266361253228 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",2.06689760171564 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",2.09703645373698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",2.20193515330309 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",2.1627907389694 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",2.20985178495149 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",2.38314378792805 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",2.38213118813199 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",2.37426953162391 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",2.43962820728889 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",2.43583386539283 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",2.48452111831405 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",2.4590631880478 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",2.47397709784423 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",2.57786340905713 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",2.78646996207296 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",2.59452848851548 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",2.49036709015815 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",2.45456939321263 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",2.57687533663136 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",2.52896894214549 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",2.62113751364281 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",2.74230758608547 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",2.70122445228424 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",2.70023997438688 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",2.71360337378354 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",2.89128725614283 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",2.84403379716963 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",2.88519220462453 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.591405807963786 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.630642400478779 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",0.532104034576014 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.638187575342892 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.641811594345602 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.704283292142903 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.801281135035538 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",1.07849449294306 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",1.02723696426506 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.827094678510736 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.766259672499408 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.734015150372971 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.938933711449256 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.876739959640109 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.742888569344016 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.636120804354808 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.58751322398506 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.630201332091023 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.672403610979893 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.651951771589748 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.668594062360019 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.853726782302052 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.917767950232649 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.845821430177691 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.892286440981291 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",1.07332164203376 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",1.08991552678141 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",1.13678445716471 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",1.21837867812955 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",1.13523037189132 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",1.16368014059416 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",1.1149962791943 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",1.1114174498672 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",1.37931514108868 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",1.7673527744505 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",1.47478961482195 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",1.17247743935245 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",1.13533259812071 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",0.959058501953439 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",1.17615983505353 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",1.01482459866993 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",1.06624969902758 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",1.16822741200843 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",1.24180220774134 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",1.11896793170389 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",1.05065266743243 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",1.08148800071865 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",1.16608060758538 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",1.23067514802045 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",1.07984970075917 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",1.03773769400994 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",1.23582569892376 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",1.17508578957261 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",1.30895674597973 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",1.25268981042672 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",1.25395185139086 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",1.32919057064782 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",1.27424432078626 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",1.4662549307977 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",1.2419788924042 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",1.41116919868712 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",1.54622403882583 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",1.25484331557273 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",1.49390994015236 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",1.38772395873296 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",1.29412600906165 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",1.19593045214523 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",1.24484572971305 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",1.27673945559137 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",1.37223998173549 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",1.41943290547508 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",1.39658376183495 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",1.509319297899 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",1.51381494694364 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",1.67104816155185 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",1.55152452510598 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",1.4336099734675 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",1.51009684979065 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",1.44619795160982 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",1.65846248845823 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",1.66760602697302 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",1.74548660006491 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",1.65126971801574 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",1.66738779782783 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",1.63856504008245 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",1.4831827795774 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",1.57812371494614 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",1.55992782135453 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",1.51050076937034 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",1.66241966740624 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",1.68487566622918 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",1.45535151440615 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",1.23160735259788 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",1.50904204878604 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",1.51638244955666 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",1.40478153350905 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",1.28878017228855 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",1.06201425245673 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",1.36640520660985 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",1.36342794138671 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",1.35046097035408 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",1.4283660412891 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",1.36198782200933 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",1.46690216702932 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",1.55330053832362 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.52205104675303 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",1.539498871634 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",1.56371962646002 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",1.50505383208931 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",1.56680024363401 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",1.72073493355776 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",1.83644301753599 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",1.82285395138427 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",1.94175265160451 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",2.00158260277845 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",2.22174584463405 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",2.00176807878983 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.97595421367993 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",1.94706873716769 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",2.0811716458006 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",2.40625319950419 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",2.17633692137386 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",2.22320338589111 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",2.15873814260617 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",2.40089262114059 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",2.44003717252508 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",2.52957652110574 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",2.59295463909854 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",2.70122599271296 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",2.64909651235833 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",2.75544288228238 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",2.90367037884552 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",2.84887079440798 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",3.06616987924392 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",3.20433717839211 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",3.03571053692413 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",3.28209290361391 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",3.26262810751786 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",3.27144947527299 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",3.06199666898786 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",3.0995319747476 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",3.01066162634671 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",3.41493071575302 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",3.1478956488018 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",3.21567104922626 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",3.2571796156691 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",3.275760452393 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",3.37120447804116 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",3.6560291603498 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",3.54641015733478 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",3.39812047806261 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",3.34848473876273 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",3.61516868783113 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",3.6551076769291 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",3.6707884407583 -"MPI-ESM-LR","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",3.77431353828958 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",0.89923059582938 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",0.900577664377963 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",0.885954406381343 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",0.884186877766141 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.930824091841001 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.875287124398815 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",0.862993048198247 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.94409560237492 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.980707554878817 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.946700289643382 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.956336834368992 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.886810647664727 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.955258940997249 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.960628407791703 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.933059053150818 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.874496846630137 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.860301571660087 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.91273871262815 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.893540577546216 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.871932159490203 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.877371534766166 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.940402471242098 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.984309401314653 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.91549963893075 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.915625419151421 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",1.04718859418374 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",1.0270851350919 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",1.03528222565097 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",1.04610152647059 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.930040878315206 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",1.06965417095727 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.999367431350484 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.967145309465752 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.998213941405559 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",1.03026569577039 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",1.01876309000288 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",1.02379916123065 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.967094483614364 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.99457970954456 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.996027237131536 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.892291490963844 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.943373398219472 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.93407089126444 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",1.03189744413279 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",1.0404106824967 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.987317300887891 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.980810857963043 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",1.03246762945115 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",1.07169069126249 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.986469591742013 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.920672958305952 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",1.02333530652919 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.972140830104513 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",1.01530307888518 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",1.0641507587783 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",1.03345322894835 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",1.08949863839123 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.962702818126921 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",1.09379314760319 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",1.06951839070447 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",1.15418416733966 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",1.12794628486697 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",1.06765370581378 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",1.06782746784 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",1.08227246838312 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",1.07766089393218 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",1.07458996663348 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",1.02493641259129 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",1.03061661432915 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",1.14924259182837 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",1.14032971915283 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",1.05452448931506 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",1.10817989107838 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",1.12126222669251 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",1.20560341512877 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",1.17049311882615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",1.05896688891048 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",1.05189255425263 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",1.06956618902319 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",1.16667273957803 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",1.17048009126135 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",1.18639060110059 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",1.17225541806675 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",1.15047094439916 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",1.11178669165857 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",1.13148299347883 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",1.11085999143319 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",1.16112996947443 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",1.16868751669411 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",1.20613249939764 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",1.16522732208958 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",1.14898947174899 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.995392739679923 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",1.13679025823855 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",1.07755749910454 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",1.12261635948398 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",1.1240955385488 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",1.05879110852915 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",1.12990904346729 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",1.12404333654621 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",1.13135537838988 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",1.14219669762887 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",1.15238975790414 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",1.13134547010116 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",1.16996825475434 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",1.12047121497652 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",1.15421737845555 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",1.13043418276934 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",1.14695478631205 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",1.15282150241069 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",1.13342501806757 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",1.16269382771042 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",1.20953177637524 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",1.20210175250109 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",1.22837266260284 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",1.2435731701607 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",1.23185964628428 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",1.21697005715665 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",1.27146913135562 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",1.19599026497375 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",1.31959956123766 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",1.22469457738992 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",1.31278642007962 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",1.1556255481179 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",1.28014044362195 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",1.27334069700236 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",1.36563062657585 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",1.40085101497534 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",1.41469500441297 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",1.39203089489142 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",1.41564133772896 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",1.4135536245987 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",1.42929495958242 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",1.41593289829883 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",1.53916265205879 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",1.48917524373284 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",1.58613427087788 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",1.58030526132242 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",1.53265070452909 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",1.53392786459617 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",1.57944562553272 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",1.50679695173106 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",1.44833722260388 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",1.41365701942634 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",1.50410143848268 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",1.61982896630162 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",1.58000342549018 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",1.62766027586886 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",1.68999845782525 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",1.60195294555965 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",1.54590404986703 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",1.53862384298803 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",1.59738146298065 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",1.68554981967768 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",1.74616909702832 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",1.65081411173464 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",-0.299735708935015 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",-0.261900603049608 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",-0.345792942068036 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",-0.238143955086432 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",-0.280690735502283 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",-0.16335325482828 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",-0.0543543357735129 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",0.142097632754102 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",0.0546882185120393 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",-0.111444196368884 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",-0.181712637777964 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",-0.145079770785976 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",-0.00827105070865427 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",-0.0756720347928886 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",-0.182001388834731 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",-0.230615242698841 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",-0.265087021701736 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.274378667081566 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",-0.213246129961011 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",-0.212273159575504 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",-0.20104388743613 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",-0.078624329957843 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",-0.0581561503389947 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",-0.061865704791943 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",-0.0156057887488994 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",0.0348858489424719 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",0.0713506758200617 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.110024203020356 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.180767336628792 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",0.212647505139841 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.102849662545072 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.123824648965406 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.152147529576031 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.38882679328305 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.7444642322803 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.463794854972297 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.157021987581375 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.176071541895801 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",-0.0271033752588715 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.188188418290723 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.129817219771334 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.130589105001481 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.241598095393719 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",0.218210277275641 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.0871621732601994 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.0715205372237083 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.108742946850191 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.142055731682507 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.167712610237559 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.101505957982853 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.124596836329361 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",0.220719576743497 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.210760439584298 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.301674474916737 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.19715263148881 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.228798832022733 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.248429656236993 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.319089378698931 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.381005304350027 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.181147012188939 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.266236400908216 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.427028769586953 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.195835020623983 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.434315081798311 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.31401446379882 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",0.225143723859094 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.130158311067048 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.228138905140718 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.254354811215624 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.232266075162334 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.288199804749264 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.350325571215725 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.409754358025092 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.401292456499481 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.474766088845031 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.390204212423634 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.382890041697997 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.466246937406107 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.384964368009964 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.500738799420889 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.506097542373968 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.568093800072616 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.488032251140406 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.525685854584302 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.53520511335639 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.360596076813044 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.475786279190082 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.407861534154636 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",0.351039184609387 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.465628762750356 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.528536753643571 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.315483900456263 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.244167787855112 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.381156948862359 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",0.447116802228052 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.291107611599742 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.173843158444188 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",0.0121130783952412 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",0.245578979334935 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.24841312329734 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.22823076714753 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.295269193773365 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.218916426187008 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.344479770792917 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.392497096999932 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.410297132523378 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.394310388588795 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.44203149037046 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.367114302682566 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.422946097654731 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.595813643819857 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.682349076042243 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.622420302213458 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.748467549656699 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.782188659443111 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.986923768919127 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.778922281967547 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.767892354159625 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",0.6851096904109 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.893693895727333 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",1.09585531391215 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.960281032194433 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",0.919867258696303 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",1.01108167723709 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",1.12956331642311 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.17537115587089 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",1.17340008823067 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.20180502038566 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",1.29618455714516 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",1.2665802426386 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",1.34937050416395 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",1.49940788679929 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",1.42912178833507 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.65926999437204 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.67521732761737 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",1.5563645525944 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",1.70634244152859 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",1.69268199461486 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.74865983573764 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",1.53830583721429 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",1.53071872413903 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.51391519700192 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",1.97535083125467 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.74310723840211 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",1.7212376382219 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.64811947962991 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.70609007093672 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",1.75419466049627 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.97681840179154 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.95454269822935 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.86199200406349 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.81964839530352 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",2.02770750983567 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.98030227117683 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.93595080554247 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",2.13368494152913 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",-0.515806914203808 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",-0.122899266106739 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",-0.357077170835317 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",-0.234036420742155 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.010697085058521 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",-0.0488651230909633 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",-0.089969210566666 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.0953521970301213 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.0577435513090003 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.132821515254612 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.0958799322994805 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.0965326641068451 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.0673119421608294 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",-0.113981610312466 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",-0.0623037969814048 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",-0.12593649371529 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",-0.137434463711959 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",-0.070928364133802 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.109107817870149 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",-0.0356978474344788 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.159688753776465 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.266583556718972 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.110807519767048 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.230460184785326 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",-0.198246677176494 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.175629320946828 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.0908379222433055 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.220793519612927 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",0.219113853674106 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",0.26795937438695 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",0.449635310153553 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",0.342816269603775 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",0.313840691484236 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",0.601485965182152 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",0.327348076388084 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",0.388261724742886 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",0.290924393283256 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",0.239516985516247 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.146757345617347 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",0.496041601300462 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.248744137530821 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",-0.0978781425877347 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",0.268204575263421 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.520360530666848 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",0.393635149627259 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",0.164941460872422 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",0.243618994222623 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",0.389853990090094 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.201607948753951 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.519655278634523 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.138706906789857 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",0.307596683683403 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",0.535127351249842 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",0.349360930875758 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",0.449666345350574 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",0.305591034075863 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",0.347171808485823 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",0.635368527430823 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",0.289941992377525 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",0.485820752481242 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",0.346674218433571 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",0.528245068110258 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",0.544150378384004 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",0.394274223665934 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",0.091518209198026 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",0.368493559339815 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",0.67710847132551 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",0.189298956035107 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",0.193129178567563 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",0.403357609694303 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",0.487696784501221 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",0.401692320354103 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",0.362248638739069 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",0.606533748697773 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",0.393857644605908 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",0.309753401676447 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",0.670366759372436 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",0.717459476053477 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",0.392471101538959 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",0.573755674343116 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",0.673237629196951 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",0.628848625856465 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",0.499779745141755 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",0.644393380164809 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",0.583330945424285 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",0.445490856251249 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",0.53678944579035 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",0.553501557086676 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",0.438525622419624 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",0.69053028123757 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",0.750346401797689 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",0.208799671063842 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.430991371942602 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",0.590363041849494 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",0.284979555653715 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",0.512741047498004 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",0.503919977344463 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.269199413067958 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",0.402262820299358 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.263768595889092 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",0.294723694718679 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",0.438339981737438 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",0.683732546189872 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",0.871603540862004 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",0.701818763654341 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",0.753647770880894 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",0.619517186451898 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",0.457155868631889 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",0.640397712648229 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",0.75328139581605 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",0.818567013451323 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",0.992572121054009 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",0.730470640104942 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",0.789417889248437 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",0.872341539591186 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",0.915030224894833 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.02921236593806 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",0.944753386142635 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",1.02908092275067 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.12092388333753 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",0.955791875483395 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",1.25231127582976 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",1.42667089209843 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",1.05534890813003 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",1.30300818296495 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",1.18752187904687 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",1.36594003192609 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",1.37683087588101 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",1.27966674820476 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",1.40399922427397 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",1.47315066363829 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",1.42254617749423 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",1.57688809168377 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",1.52460747670055 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",1.57250893410399 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",1.60937578156629 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",1.70392131449382 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",1.92663422412257 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",1.95496296940417 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",1.83999125643672 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",1.88832515279866 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",1.86577899496216 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",1.70969819693948 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",1.93078404072435 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",1.8274162966434 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",1.7013380907417 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",1.80470811682244 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",1.93281730252925 -"MRI-ESM1","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",1.99888347818962 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",2.01924918523535 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",2.16022542670744 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",1.98727722730334 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",2.00151804693681 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",2.18544494728741 -"MRI-ESM1","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",2.48499849454262 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",-0.135959213993067 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",-0.0663485888590433 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",-0.0904566421646536 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",-0.0810598777866365 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",-0.0554002622490224 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",-0.132275182078961 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",-0.0496688744633867 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.0092212467031992 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.0632895364978145 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.0423260172154202 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.0357221033918246 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",-0.00655703378835455 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.0711014042989997 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",-0.00476157380696327 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",-0.100273247623513 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.00142636295214638 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",-0.0437563986815167 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",-0.11641717767589 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",-0.119533597341014 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",-0.0516639253671511 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.0412314315403677 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.0942406771132444 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",-0.0054188769891162 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.0444638295013968 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",-0.0648608225723177 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",-0.0628276377386054 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.0168317351234685 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",-0.0231603279285293 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.00344791509796755 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.0248483805519683 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.0924784411212571 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.125198596704738 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.0472226450416296 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.04895561057108 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.030180316735154 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.0474812270691409 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",-0.0135905700370655 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.00853937805326535 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",-0.00935205992114064 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.0786066241545399 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.0209446712765955 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.0124878040472286 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.0266146629095129 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.112080419702229 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.113853831370517 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.0639767004564407 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.0789880685544238 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.0974841456501702 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.0927013765950503 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.0880533112244963 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.0652814168727224 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.0475068715677371 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.0291862245631385 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",-0.0815763411722985 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.0790566991182897 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.1030755046641 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.0668769811405687 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.0619777783544593 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.0864108896931631 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.0892929004237148 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.154924879694255 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.121232317655468 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.113006319228729 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.0134210325752398 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.0172175604585292 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",-0.0169418523201727 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.0342789171931641 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.0553491659359042 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.0210729988699803 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.086223758423694 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.121473015097551 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.108992044328261 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.0726677856879791 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.100087342525425 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.122754434257594 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.0575068246815185 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.0642207260779865 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.12903544460638 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.114173809550747 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.105274905786869 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.163807335244894 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.209742745570787 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.175562867991737 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.162025883395693 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",0.162408799201234 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.162800350756644 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.0733754617421355 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.0718693904683654 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.0711054331478229 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.188870505989339 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.214305679614034 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.163145097598769 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.159731121172953 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.156077445758893 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.108786765722354 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.137615578844675 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.075934288730133 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.0506418764876496 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.128635607635782 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.118413892669386 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.110786878962248 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.126661191444685 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.163232260867222 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.148509428411913 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.173947212029977 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.119028940234078 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.229772255078833 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",0.149245271374364 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",0.179464545325964 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",0.151903102943007 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",0.209090422396114 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.191663198893154 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",0.165921394839548 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",0.290366316546609 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.212768411036986 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.153658542442197 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",0.1549843840397 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.256857154712946 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",0.322034995137445 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.188851763083944 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.206185972729291 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.184605881926346 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.220771281305857 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.201946572763278 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.241299842565956 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.225953957398512 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.33809521271797 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.333533855180785 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",0.352530227716698 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.344654003434747 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",0.300088804593612 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",0.259333495400473 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.31038916969573 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.275448365191121 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.370488558594956 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.362527202985697 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.368705179905014 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",0.405984993902481 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.510311158341696 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.470488965569471 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.46216974308431 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.48967013964923 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.46275375099633 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.475076598207677 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.477120275565064 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.409107702075116 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.506600763742899 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.483240972764155 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.575056160268715 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.525119805276938 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.532370331819918 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.503385216879992 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.535487434637669 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.521045588112675 -"MRI-ESM1","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.550633629037356 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",-0.379848800414121 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",-0.0565521095139622 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",-0.266621805347579 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",-0.152978635052589 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",0.0660961500766442 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",0.0834092134290993 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",-0.0403017948563848 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",0.0861294772784291 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",-0.00554723236154878 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",0.0904932228032847 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",0.0601558354309782 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",0.103087637522401 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",-0.00379201309411216 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",-0.109222962472954 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",0.0379680939530611 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",-0.12736401074034 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.0936797980057057 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",0.0454871701487984 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",0.228640044930182 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",0.0159648449145456 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",0.118455407648767 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",0.172340972659434 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",0.116224828186941 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",0.185994108571217 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",-0.133387203075385 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",0.238455560390084 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.0740043872953533 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.243952569702481 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",0.215664244102433 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.2431091122251 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.357155129323955 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.217615699310322 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.266616396711516 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.552529454734834 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.29716669117911 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.34077932465145 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.304513454024865 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",0.230976575709159 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.15610801392865 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.417432736332568 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.227797553280668 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",-0.110367661662456 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",0.241586967504668 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.408278040300153 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.27977937498014 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.100962333298219 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.164629513210611 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.292366913004834 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.108903273448549 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.431599789253071 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",0.0734238764551149 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.260088559315289 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.505940043189623 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.430935975759192 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.370607952535854 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.202513918178884 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.280292905657712 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.573388922120322 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.203529293016822 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.396525943381534 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.191746482771991 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.407010680971377 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.431142083426286 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.380851812655345 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",0.0742988971872323 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.385433506896959 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.64282730987692 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.133948349066864 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.172054508113698 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.317132574620852 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.366222031603142 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.292698964625954 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.289578471366281 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.506444784833594 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.271101797914662 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.252244974614083 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.606144781107952 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.588422322638684 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.278295283877719 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.468477318668647 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.509428613449903 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.419104101458652 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.324214797213481 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.48236563366636 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.420920533930553 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.282688255353869 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.463411454916656 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",0.481629479665146 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.367418499166386 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.501657465838819 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.536039199459936 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.0456520949155884 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.271258165446539 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",0.434283148819553 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.176190955708029 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.375123680734064 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",0.427983729714176 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",0.218554677163878 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.273621739405829 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.145352071873389 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.18393534988716 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.311676130078923 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.520498256396785 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.723089247639559 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.527869937601542 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.634617193499697 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.389743513759223 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.307909208227001 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.460931015785302 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.60137658550497 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.60947437610111 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.800907544312627 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.564546574820513 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.499050116925571 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.659570708636098 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.761369545451046 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.874226338695671 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",0.687894093787764 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.707044239011945 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",0.932069866310608 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.749603540611124 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",1.06770339184207 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",1.20589694072124 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",0.853399999206066 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.06170656660783 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",0.961565090414877 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.02784367571756 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",1.04329498995454 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",0.927133423492969 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",1.05934318581412 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",1.1730597590271 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",1.1632112122541 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.26649781031737 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.24915637094214 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",1.20201817600217 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",1.24684611068118 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",1.33521453149078 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.52064575558035 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",1.44464862393574 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",1.36949948915949 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.42615205443003 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",1.37610671760649 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.24694269346801 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",1.45570348971624 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.35029400199846 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.2922284305566 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",1.29810549313517 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.44957434606404 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.42382247761171 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.49412701980059 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.62785168313316 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",1.48389021022454 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.46602915545617 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.66439571218581 -"MRI-ESM1","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",1.93436005461999 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1850,"Simulated","PgC/yr","global",0.243448977721285 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1851,"Simulated","PgC/yr","global",0.230393602256122 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1852,"Simulated","PgC/yr","global",0.230883420897603 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1853,"Simulated","PgC/yr","global",0.200615248814219 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1854,"Simulated","PgC/yr","global",0.270914931530146 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1855,"Simulated","PgC/yr","global",0.166156279563369 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1856,"Simulated","PgC/yr","global",0.195343888941382 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1857,"Simulated","PgC/yr","global",0.164543523208463 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1858,"Simulated","PgC/yr","global",0.329036128060474 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1859,"Simulated","PgC/yr","global",0.281951912458469 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1860,"Simulated","PgC/yr","global",0.282538100069879 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1861,"Simulated","PgC/yr","global",0.175096836706151 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1862,"Simulated","PgC/yr","global",0.45139954546997 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1863,"Simulated","PgC/yr","global",0.220058998477421 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1864,"Simulated","PgC/yr","global",0.22754809768305 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1865,"Simulated","PgC/yr","global",0.21742662196905 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1866,"Simulated","PgC/yr","global",0.400721427975234 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1867,"Simulated","PgC/yr","global",0.223542406397539 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1868,"Simulated","PgC/yr","global",0.388655030520616 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1869,"Simulated","PgC/yr","global",0.326011554904982 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1870,"Simulated","PgC/yr","global",0.360532036264297 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1871,"Simulated","PgC/yr","global",0.369211166946102 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1872,"Simulated","PgC/yr","global",0.341463738285357 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1873,"Simulated","PgC/yr","global",0.493366067558989 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1874,"Simulated","PgC/yr","global",0.492800611806358 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1875,"Simulated","PgC/yr","global",0.585786187946846 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1876,"Simulated","PgC/yr","global",0.358364759642709 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1877,"Simulated","PgC/yr","global",0.4340759131452 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1878,"Simulated","PgC/yr","global",0.481780717574831 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1879,"Simulated","PgC/yr","global",0.491995828387272 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1880,"Simulated","PgC/yr","global",0.552444460843821 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1881,"Simulated","PgC/yr","global",0.607730063085219 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1882,"Simulated","PgC/yr","global",0.574360655533385 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1883,"Simulated","PgC/yr","global",0.630172414124784 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1884,"Simulated","PgC/yr","global",0.92829563207611 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1885,"Simulated","PgC/yr","global",0.836376379726996 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1886,"Simulated","PgC/yr","global",0.676737080232883 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1887,"Simulated","PgC/yr","global",0.596804487420006 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1888,"Simulated","PgC/yr","global",0.651496953459963 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1889,"Simulated","PgC/yr","global",0.503371923291337 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1890,"Simulated","PgC/yr","global",0.494962534596283 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1891,"Simulated","PgC/yr","global",0.650460588343638 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1892,"Simulated","PgC/yr","global",0.347015661719582 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1893,"Simulated","PgC/yr","global",0.496625298017145 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1894,"Simulated","PgC/yr","global",0.473384428680653 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1895,"Simulated","PgC/yr","global",0.544078700181253 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1896,"Simulated","PgC/yr","global",0.785702135216867 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1897,"Simulated","PgC/yr","global",0.474060264494586 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1898,"Simulated","PgC/yr","global",0.54043444948863 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1899,"Simulated","PgC/yr","global",0.534861566373002 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1900,"Simulated","PgC/yr","global",0.590031206898812 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1901,"Simulated","PgC/yr","global",0.615204353820292 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1902,"Simulated","PgC/yr","global",0.555356375711773 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1903,"Simulated","PgC/yr","global",0.84401766444542 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1904,"Simulated","PgC/yr","global",0.790637684542009 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1905,"Simulated","PgC/yr","global",0.813585004427548 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1906,"Simulated","PgC/yr","global",0.66043956100636 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1907,"Simulated","PgC/yr","global",0.645672668078811 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1908,"Simulated","PgC/yr","global",0.736567288176733 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1909,"Simulated","PgC/yr","global",0.68122131293999 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1910,"Simulated","PgC/yr","global",0.676796086292485 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1911,"Simulated","PgC/yr","global",0.779806199620485 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1912,"Simulated","PgC/yr","global",0.736441416177004 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1913,"Simulated","PgC/yr","global",0.756368719359529 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1914,"Simulated","PgC/yr","global",0.752460308334442 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1915,"Simulated","PgC/yr","global",0.907779863055935 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1916,"Simulated","PgC/yr","global",0.785602804552827 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1917,"Simulated","PgC/yr","global",0.695781798570245 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1918,"Simulated","PgC/yr","global",0.664655304751149 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1919,"Simulated","PgC/yr","global",0.61166353459894 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1920,"Simulated","PgC/yr","global",0.743279398323398 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1921,"Simulated","PgC/yr","global",0.772014551970257 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1922,"Simulated","PgC/yr","global",0.851286459173694 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1923,"Simulated","PgC/yr","global",0.757210182221069 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1924,"Simulated","PgC/yr","global",0.807863467049795 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1925,"Simulated","PgC/yr","global",0.765944332066557 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1926,"Simulated","PgC/yr","global",0.763167971659853 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1927,"Simulated","PgC/yr","global",0.797683099187505 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1928,"Simulated","PgC/yr","global",0.809900315219175 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1929,"Simulated","PgC/yr","global",0.965335945567568 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1930,"Simulated","PgC/yr","global",0.948871888002942 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1931,"Simulated","PgC/yr","global",0.898307567908866 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1932,"Simulated","PgC/yr","global",0.934042571676432 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1933,"Simulated","PgC/yr","global",0.856683577134949 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1934,"Simulated","PgC/yr","global",0.840773470280444 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1935,"Simulated","PgC/yr","global",0.834790164707779 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1936,"Simulated","PgC/yr","global",0.889770028987843 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1937,"Simulated","PgC/yr","global",0.875577021250011 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1938,"Simulated","PgC/yr","global",0.863398193330477 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1939,"Simulated","PgC/yr","global",0.811510565525217 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1940,"Simulated","PgC/yr","global",0.68987356055217 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1941,"Simulated","PgC/yr","global",0.903748883459166 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1942,"Simulated","PgC/yr","global",0.88968436768124 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1943,"Simulated","PgC/yr","global",0.743135300513753 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1944,"Simulated","PgC/yr","global",0.675910311930587 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1945,"Simulated","PgC/yr","global",0.664493778510772 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1946,"Simulated","PgC/yr","global",0.687080569093917 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1947,"Simulated","PgC/yr","global",0.644002272600047 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1948,"Simulated","PgC/yr","global",0.675305670686637 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1949,"Simulated","PgC/yr","global",0.778999479709096 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1950,"Simulated","PgC/yr","global",0.67271111273384 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1951,"Simulated","PgC/yr","global",0.72510462067557 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1952,"Simulated","PgC/yr","global",0.776131420696253 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1953,"Simulated","PgC/yr","global",0.922850671363827 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1954,"Simulated","PgC/yr","global",1.04689177457605 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1955,"Simulated","PgC/yr","global",1.01328235588989 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1956,"Simulated","PgC/yr","global",0.975826038287111 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1957,"Simulated","PgC/yr","global",0.94984890532573 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1958,"Simulated","PgC/yr","global",1.01877470370796 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1959,"Simulated","PgC/yr","global",1.06001424380397 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1960,"Simulated","PgC/yr","global",1.13760345310695 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1961,"Simulated","PgC/yr","global",1.10825955740891 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1962,"Simulated","PgC/yr","global",1.23588419658448 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1963,"Simulated","PgC/yr","global",1.22474025293421 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1964,"Simulated","PgC/yr","global",1.23265025443758 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1965,"Simulated","PgC/yr","global",1.17105840805407 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1966,"Simulated","PgC/yr","global",1.28164009237757 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1967,"Simulated","PgC/yr","global",1.39833197947527 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1968,"Simulated","PgC/yr","global",1.51396221314539 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1969,"Simulated","PgC/yr","global",1.41562257751957 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1970,"Simulated","PgC/yr","global",1.32674327635306 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1971,"Simulated","PgC/yr","global",1.47496809283098 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1972,"Simulated","PgC/yr","global",1.55442692849736 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1973,"Simulated","PgC/yr","global",1.55317959963126 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1974,"Simulated","PgC/yr","global",1.58765485819972 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1975,"Simulated","PgC/yr","global",1.60566195839633 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1976,"Simulated","PgC/yr","global",1.60439868194655 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1977,"Simulated","PgC/yr","global",1.70114925477036 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1978,"Simulated","PgC/yr","global",1.88630411858974 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1979,"Simulated","PgC/yr","global",1.83595190135856 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1980,"Simulated","PgC/yr","global",1.92999252407053 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1981,"Simulated","PgC/yr","global",2.10332339370717 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1982,"Simulated","PgC/yr","global",1.80504092774171 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1983,"Simulated","PgC/yr","global",2.14645135553307 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1984,"Simulated","PgC/yr","global",2.01454661272144 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1985,"Simulated","PgC/yr","global",2.03353790665349 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1986,"Simulated","PgC/yr","global",2.14620188975984 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1987,"Simulated","PgC/yr","global",2.22482347728323 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1988,"Simulated","PgC/yr","global",2.13301095983344 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1989,"Simulated","PgC/yr","global",2.09246650656308 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1990,"Simulated","PgC/yr","global",2.09305201070662 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1991,"Simulated","PgC/yr","global",2.1873990548478 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1992,"Simulated","PgC/yr","global",2.42091952261757 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1993,"Simulated","PgC/yr","global",2.1402739450848 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1994,"Simulated","PgC/yr","global",2.23318115024265 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1995,"Simulated","PgC/yr","global",2.24399930754067 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1996,"Simulated","PgC/yr","global",2.23872179645699 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1997,"Simulated","PgC/yr","global",2.34372182649384 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1998,"Simulated","PgC/yr","global",2.3631585136557 -"NorESM1-ME","fgco2","ocean","fgco2","historical",1999,"Simulated","PgC/yr","global",2.41695654807405 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2000,"Simulated","PgC/yr","global",2.34395192734402 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2001,"Simulated","PgC/yr","global",2.42377641832184 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2002,"Simulated","PgC/yr","global",2.50847631345207 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2003,"Simulated","PgC/yr","global",2.67280135476417 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2004,"Simulated","PgC/yr","global",2.48747448486371 -"NorESM1-ME","fgco2","ocean","fgco2","historical",2005,"Simulated","PgC/yr","global",2.0913182805384 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1850,"Simulated","PgC/yr","HL",0.263013247290764 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1851,"Simulated","PgC/yr","HL",0.285695797617346 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1852,"Simulated","PgC/yr","HL",0.212474894586229 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1853,"Simulated","PgC/yr","HL",0.192095576698917 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1854,"Simulated","PgC/yr","HL",0.233630864086044 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1855,"Simulated","PgC/yr","HL",0.255453191478242 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1856,"Simulated","PgC/yr","HL",0.174183910592905 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1857,"Simulated","PgC/yr","HL",0.19203549385447 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1858,"Simulated","PgC/yr","HL",0.279186255447683 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1859,"Simulated","PgC/yr","HL",0.273117888158495 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1860,"Simulated","PgC/yr","HL",0.231163042098387 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1861,"Simulated","PgC/yr","HL",0.139490459248571 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1862,"Simulated","PgC/yr","HL",0.265927350349643 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1863,"Simulated","PgC/yr","HL",0.190734096039612 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1864,"Simulated","PgC/yr","HL",0.218343609817239 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1865,"Simulated","PgC/yr","HL",0.137647226512993 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1866,"Simulated","PgC/yr","HL",0.253437777990702 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1867,"Simulated","PgC/yr","HL",0.24355832013488 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1868,"Simulated","PgC/yr","HL",0.256205503581521 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1869,"Simulated","PgC/yr","HL",0.24397430447434 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1870,"Simulated","PgC/yr","HL",0.242711883915512 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1871,"Simulated","PgC/yr","HL",0.237164688495157 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1872,"Simulated","PgC/yr","HL",0.201256593516744 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1873,"Simulated","PgC/yr","HL",0.198947233648578 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1874,"Simulated","PgC/yr","HL",0.257479838585424 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1875,"Simulated","PgC/yr","HL",0.333672885043568 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1876,"Simulated","PgC/yr","HL",0.229568889347411 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1877,"Simulated","PgC/yr","HL",0.2467667099871 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1878,"Simulated","PgC/yr","HL",0.25959346114165 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1879,"Simulated","PgC/yr","HL",0.276061266710985 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1880,"Simulated","PgC/yr","HL",0.260199055364154 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1881,"Simulated","PgC/yr","HL",0.242586952448587 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1882,"Simulated","PgC/yr","HL",0.290777989267077 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1883,"Simulated","PgC/yr","HL",0.27717782042083 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1884,"Simulated","PgC/yr","HL",0.268255773329927 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1885,"Simulated","PgC/yr","HL",0.303294624436973 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1886,"Simulated","PgC/yr","HL",0.266769361203697 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1887,"Simulated","PgC/yr","HL",0.290753139138779 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1888,"Simulated","PgC/yr","HL",0.282721781920379 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1889,"Simulated","PgC/yr","HL",0.27492394782544 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1890,"Simulated","PgC/yr","HL",0.244622790699113 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1891,"Simulated","PgC/yr","HL",0.333116991077661 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1892,"Simulated","PgC/yr","HL",0.256737058038205 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1893,"Simulated","PgC/yr","HL",0.258570180516104 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1894,"Simulated","PgC/yr","HL",0.21758278739605 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1895,"Simulated","PgC/yr","HL",0.26082915930224 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1896,"Simulated","PgC/yr","HL",0.377994620720917 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1897,"Simulated","PgC/yr","HL",0.247702164131811 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1898,"Simulated","PgC/yr","HL",0.235466539659316 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1899,"Simulated","PgC/yr","HL",0.21585791616197 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1900,"Simulated","PgC/yr","HL",0.339184677541416 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1901,"Simulated","PgC/yr","HL",0.347186759266204 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1902,"Simulated","PgC/yr","HL",0.232609625936796 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1903,"Simulated","PgC/yr","HL",0.342677141805485 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1904,"Simulated","PgC/yr","HL",0.309830548592158 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1905,"Simulated","PgC/yr","HL",0.292940461048109 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1906,"Simulated","PgC/yr","HL",0.327101898378592 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1907,"Simulated","PgC/yr","HL",0.337311386362979 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1908,"Simulated","PgC/yr","HL",0.350096096547053 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1909,"Simulated","PgC/yr","HL",0.263642159784343 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1910,"Simulated","PgC/yr","HL",0.30451057866001 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1911,"Simulated","PgC/yr","HL",0.342317325564233 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1912,"Simulated","PgC/yr","HL",0.362258191872801 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1913,"Simulated","PgC/yr","HL",0.355354451777529 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1914,"Simulated","PgC/yr","HL",0.338964770926611 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1915,"Simulated","PgC/yr","HL",0.42589375363508 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1916,"Simulated","PgC/yr","HL",0.357916397881275 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1917,"Simulated","PgC/yr","HL",0.324900959960605 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1918,"Simulated","PgC/yr","HL",0.334926625078128 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1919,"Simulated","PgC/yr","HL",0.336607242659073 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1920,"Simulated","PgC/yr","HL",0.318233806703242 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1921,"Simulated","PgC/yr","HL",0.371531544887045 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1922,"Simulated","PgC/yr","HL",0.403302774329214 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1923,"Simulated","PgC/yr","HL",0.330992645520868 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1924,"Simulated","PgC/yr","HL",0.352545536248023 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1925,"Simulated","PgC/yr","HL",0.358172728656736 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1926,"Simulated","PgC/yr","HL",0.340040815523202 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1927,"Simulated","PgC/yr","HL",0.344084067562432 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1928,"Simulated","PgC/yr","HL",0.378343203342526 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1929,"Simulated","PgC/yr","HL",0.401404462816121 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1930,"Simulated","PgC/yr","HL",0.423598180481929 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1931,"Simulated","PgC/yr","HL",0.406501462419016 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1932,"Simulated","PgC/yr","HL",0.434135485912225 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1933,"Simulated","PgC/yr","HL",0.326884374652803 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1934,"Simulated","PgC/yr","HL",0.344198956854222 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1935,"Simulated","PgC/yr","HL",0.334270649773594 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1936,"Simulated","PgC/yr","HL",0.341567055937253 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1937,"Simulated","PgC/yr","HL",0.359470381931713 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1938,"Simulated","PgC/yr","HL",0.404695062339355 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1939,"Simulated","PgC/yr","HL",0.344757574121861 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1940,"Simulated","PgC/yr","HL",0.280283746045408 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1941,"Simulated","PgC/yr","HL",0.353702088452046 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1942,"Simulated","PgC/yr","HL",0.42807443749644 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1943,"Simulated","PgC/yr","HL",0.372427000537577 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1944,"Simulated","PgC/yr","HL",0.376334257696598 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1945,"Simulated","PgC/yr","HL",0.380012757510188 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1946,"Simulated","PgC/yr","HL",0.374978393847114 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1947,"Simulated","PgC/yr","HL",0.325445109687796 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1948,"Simulated","PgC/yr","HL",0.284905869908903 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1949,"Simulated","PgC/yr","HL",0.375909252420153 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1950,"Simulated","PgC/yr","HL",0.367293236361309 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1951,"Simulated","PgC/yr","HL",0.379082069143507 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1952,"Simulated","PgC/yr","HL",0.365698743197617 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1953,"Simulated","PgC/yr","HL",0.427921932599485 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1954,"Simulated","PgC/yr","HL",0.397273384296056 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1955,"Simulated","PgC/yr","HL",0.434557938093297 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1956,"Simulated","PgC/yr","HL",0.44117760377672 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1957,"Simulated","PgC/yr","HL",0.404853013839772 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1958,"Simulated","PgC/yr","HL",0.447531917747697 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1959,"Simulated","PgC/yr","HL",0.483040708609755 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1960,"Simulated","PgC/yr","HL",0.46518146606207 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1961,"Simulated","PgC/yr","HL",0.446303878873227 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1962,"Simulated","PgC/yr","HL",0.424906386551115 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1963,"Simulated","PgC/yr","HL",0.382096593953728 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1964,"Simulated","PgC/yr","HL",0.393284257878736 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1965,"Simulated","PgC/yr","HL",0.434970688511951 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1966,"Simulated","PgC/yr","HL",0.423887361084524 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1967,"Simulated","PgC/yr","HL",0.436054392394661 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1968,"Simulated","PgC/yr","HL",0.491391883575227 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1969,"Simulated","PgC/yr","HL",0.451212460037586 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1970,"Simulated","PgC/yr","HL",0.465229974874159 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1971,"Simulated","PgC/yr","HL",0.524267582075808 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1972,"Simulated","PgC/yr","HL",0.594946112734373 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1973,"Simulated","PgC/yr","HL",0.493435891730947 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1974,"Simulated","PgC/yr","HL",0.525004064987774 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1975,"Simulated","PgC/yr","HL",0.481444853795197 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1976,"Simulated","PgC/yr","HL",0.49440436590915 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1977,"Simulated","PgC/yr","HL",0.537472872171013 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1978,"Simulated","PgC/yr","HL",0.619603227022525 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1979,"Simulated","PgC/yr","HL",0.583644410549365 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1980,"Simulated","PgC/yr","HL",0.622762086824506 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1981,"Simulated","PgC/yr","HL",0.679193494269275 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1982,"Simulated","PgC/yr","HL",0.566536118454094 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1983,"Simulated","PgC/yr","HL",0.587132109035404 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1984,"Simulated","PgC/yr","HL",0.526001814659589 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1985,"Simulated","PgC/yr","HL",0.615466872105355 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1986,"Simulated","PgC/yr","HL",0.604265251258974 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1987,"Simulated","PgC/yr","HL",0.694610105370318 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1988,"Simulated","PgC/yr","HL",0.596606816171408 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1989,"Simulated","PgC/yr","HL",0.611659355872244 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1990,"Simulated","PgC/yr","HL",0.535167256842728 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1991,"Simulated","PgC/yr","HL",0.658605673593159 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1992,"Simulated","PgC/yr","HL",0.655995729296398 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1993,"Simulated","PgC/yr","HL",0.599413859430973 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1994,"Simulated","PgC/yr","HL",0.671773518289558 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1995,"Simulated","PgC/yr","HL",0.685407728407447 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1996,"Simulated","PgC/yr","HL",0.704172979399873 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1997,"Simulated","PgC/yr","HL",0.658346619515966 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1998,"Simulated","PgC/yr","HL",0.666460186405381 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",1999,"Simulated","PgC/yr","HL",0.698530298212563 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2000,"Simulated","PgC/yr","HL",0.734590557675214 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2001,"Simulated","PgC/yr","HL",0.718269810399371 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2002,"Simulated","PgC/yr","HL",0.71886825595483 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2003,"Simulated","PgC/yr","HL",0.766536589047263 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2004,"Simulated","PgC/yr","HL",0.697499698713614 -"NorESM1-ME","fgco2","ocean","fgco2_HL","historical",2005,"Simulated","PgC/yr","HL",0.654484296835511 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1850,"Simulated","PgC/yr","LL",-0.0195643106645569 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1851,"Simulated","PgC/yr","LL",-0.0553023106052168 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1852,"Simulated","PgC/yr","LL",0.0184085114778114 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1853,"Simulated","PgC/yr","LL",0.00851960684308286 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1854,"Simulated","PgC/yr","LL",0.03728413290535 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1855,"Simulated","PgC/yr","LL",-0.0892968500301361 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1856,"Simulated","PgC/yr","LL",0.0211599644538281 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1857,"Simulated","PgC/yr","LL",-0.0274918476528798 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1858,"Simulated","PgC/yr","LL",0.0498498653173232 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1859,"Simulated","PgC/yr","LL",0.0088340219317288 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1860,"Simulated","PgC/yr","LL",0.0513750117615588 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1861,"Simulated","PgC/yr","LL",0.0356063255117698 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1862,"Simulated","PgC/yr","LL",0.185472201697901 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1863,"Simulated","PgC/yr","LL",0.0293248351533845 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1864,"Simulated","PgC/yr","LL",0.00920458129157757 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1865,"Simulated","PgC/yr","LL",0.079779424247773 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1866,"Simulated","PgC/yr","LL",0.147283613708811 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1867,"Simulated","PgC/yr","LL",-0.0200159277951674 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1868,"Simulated","PgC/yr","LL",0.132449554299316 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1869,"Simulated","PgC/yr","LL",0.0820372676741351 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1870,"Simulated","PgC/yr","LL",0.117820224888529 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1871,"Simulated","PgC/yr","LL",0.132046489086525 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1872,"Simulated","PgC/yr","LL",0.140207203176074 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1873,"Simulated","PgC/yr","LL",0.294418790901757 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1874,"Simulated","PgC/yr","LL",0.235320807436434 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1875,"Simulated","PgC/yr","LL",0.252113414973659 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1876,"Simulated","PgC/yr","LL",0.128796000682989 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1877,"Simulated","PgC/yr","LL",0.187309248917737 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1878,"Simulated","PgC/yr","LL",0.222187276284077 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1879,"Simulated","PgC/yr","LL",0.215934533389306 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1880,"Simulated","PgC/yr","LL",0.292245339254323 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1881,"Simulated","PgC/yr","LL",0.365143074161222 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1882,"Simulated","PgC/yr","LL",0.283582731462308 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1883,"Simulated","PgC/yr","LL",0.352994533622622 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1884,"Simulated","PgC/yr","LL",0.660039826768435 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1885,"Simulated","PgC/yr","LL",0.533081745321367 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1886,"Simulated","PgC/yr","LL",0.409967704559939 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1887,"Simulated","PgC/yr","LL",0.306051291699173 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1888,"Simulated","PgC/yr","LL",0.368775118047443 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1889,"Simulated","PgC/yr","LL",0.228447964214293 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1890,"Simulated","PgC/yr","LL",0.250339831146703 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1891,"Simulated","PgC/yr","LL",0.317343512441944 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1892,"Simulated","PgC/yr","LL",0.0902786044953104 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1893,"Simulated","PgC/yr","LL",0.238055256098786 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1894,"Simulated","PgC/yr","LL",0.255801558561372 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1895,"Simulated","PgC/yr","LL",0.283249524427022 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1896,"Simulated","PgC/yr","LL",0.407707438866673 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1897,"Simulated","PgC/yr","LL",0.226358032329701 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1898,"Simulated","PgC/yr","LL",0.304967957049121 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1899,"Simulated","PgC/yr","LL",0.319003637287126 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1900,"Simulated","PgC/yr","LL",0.250846569382976 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1901,"Simulated","PgC/yr","LL",0.268017535010573 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1902,"Simulated","PgC/yr","LL",0.322746717888217 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1903,"Simulated","PgC/yr","LL",0.501340553595436 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1904,"Simulated","PgC/yr","LL",0.480807190833348 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1905,"Simulated","PgC/yr","LL",0.520644567458512 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1906,"Simulated","PgC/yr","LL",0.333337740807679 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1907,"Simulated","PgC/yr","LL",0.308361262309304 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1908,"Simulated","PgC/yr","LL",0.386471134249106 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1909,"Simulated","PgC/yr","LL",0.417579145406385 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1910,"Simulated","PgC/yr","LL",0.372285564135094 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1911,"Simulated","PgC/yr","LL",0.437488725995408 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1912,"Simulated","PgC/yr","LL",0.3741832649182 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1913,"Simulated","PgC/yr","LL",0.401014134067441 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1914,"Simulated","PgC/yr","LL",0.413495590969297 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1915,"Simulated","PgC/yr","LL",0.481886068512297 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1916,"Simulated","PgC/yr","LL",0.427686393179821 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1917,"Simulated","PgC/yr","LL",0.370880746221571 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1918,"Simulated","PgC/yr","LL",0.329728756902382 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1919,"Simulated","PgC/yr","LL",0.275056351960962 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1920,"Simulated","PgC/yr","LL",0.425045637801308 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1921,"Simulated","PgC/yr","LL",0.400482979380777 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1922,"Simulated","PgC/yr","LL",0.447983730254804 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1923,"Simulated","PgC/yr","LL",0.426217627420038 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1924,"Simulated","PgC/yr","LL",0.455318063767456 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1925,"Simulated","PgC/yr","LL",0.407771677384962 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1926,"Simulated","PgC/yr","LL",0.423127105522829 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1927,"Simulated","PgC/yr","LL",0.453599126281849 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1928,"Simulated","PgC/yr","LL",0.43155717569208 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1929,"Simulated","PgC/yr","LL",0.563931542826702 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1930,"Simulated","PgC/yr","LL",0.525273713293009 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1931,"Simulated","PgC/yr","LL",0.491806123499408 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1932,"Simulated","PgC/yr","LL",0.499907056041772 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1933,"Simulated","PgC/yr","LL",0.529799282994701 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1934,"Simulated","PgC/yr","LL",0.496574598126212 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1935,"Simulated","PgC/yr","LL",0.500519502005727 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1936,"Simulated","PgC/yr","LL",0.548202891804299 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1937,"Simulated","PgC/yr","LL",0.516106692640949 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1938,"Simulated","PgC/yr","LL",0.458703230210842 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1939,"Simulated","PgC/yr","LL",0.466753004476198 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1940,"Simulated","PgC/yr","LL",0.409589734032272 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1941,"Simulated","PgC/yr","LL",0.550046721371465 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1942,"Simulated","PgC/yr","LL",0.461609853604716 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1943,"Simulated","PgC/yr","LL",0.370708280818021 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1944,"Simulated","PgC/yr","LL",0.299576087811957 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1945,"Simulated","PgC/yr","LL",0.28448100492091 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1946,"Simulated","PgC/yr","LL",0.31210221131552 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1947,"Simulated","PgC/yr","LL",0.31855716505142 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1948,"Simulated","PgC/yr","LL",0.390399857385703 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1949,"Simulated","PgC/yr","LL",0.403090210585342 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1950,"Simulated","PgC/yr","LL",0.305417820458493 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1951,"Simulated","PgC/yr","LL",0.346022474348101 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1952,"Simulated","PgC/yr","LL",0.410432586024115 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1953,"Simulated","PgC/yr","LL",0.494928716210424 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1954,"Simulated","PgC/yr","LL",0.649618459422915 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1955,"Simulated","PgC/yr","LL",0.578724520589509 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1956,"Simulated","PgC/yr","LL",0.534648370664063 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1957,"Simulated","PgC/yr","LL",0.544995907314355 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1958,"Simulated","PgC/yr","LL",0.57124281635843 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1959,"Simulated","PgC/yr","LL",0.576973512290096 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1960,"Simulated","PgC/yr","LL",0.672422067617912 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1961,"Simulated","PgC/yr","LL",0.661955742998658 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1962,"Simulated","PgC/yr","LL",0.810977478546953 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1963,"Simulated","PgC/yr","LL",0.842643386217514 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1964,"Simulated","PgC/yr","LL",0.839366349768713 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1965,"Simulated","PgC/yr","LL",0.736088058901081 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1966,"Simulated","PgC/yr","LL",0.857753099600661 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1967,"Simulated","PgC/yr","LL",0.962277695235631 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1968,"Simulated","PgC/yr","LL",1.02256966250317 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1969,"Simulated","PgC/yr","LL",0.964409677673672 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1970,"Simulated","PgC/yr","LL",0.861512748507373 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1971,"Simulated","PgC/yr","LL",0.950701003467679 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1972,"Simulated","PgC/yr","LL",0.95948104275919 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1973,"Simulated","PgC/yr","LL",1.05974467712904 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1974,"Simulated","PgC/yr","LL",1.06265042850683 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1975,"Simulated","PgC/yr","LL",1.12421767085387 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1976,"Simulated","PgC/yr","LL",1.10999411959481 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1977,"Simulated","PgC/yr","LL",1.16367639871664 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1978,"Simulated","PgC/yr","LL",1.26670122357546 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1979,"Simulated","PgC/yr","LL",1.25230714472637 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1980,"Simulated","PgC/yr","LL",1.30723059340969 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1981,"Simulated","PgC/yr","LL",1.42412919418667 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1982,"Simulated","PgC/yr","LL",1.2385040990018 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1983,"Simulated","PgC/yr","LL",1.55931978571432 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1984,"Simulated","PgC/yr","LL",1.48854405350581 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1985,"Simulated","PgC/yr","LL",1.41807158911367 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1986,"Simulated","PgC/yr","LL",1.54193662950595 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1987,"Simulated","PgC/yr","LL",1.5302128576916 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1988,"Simulated","PgC/yr","LL",1.53640320299093 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1989,"Simulated","PgC/yr","LL",1.4808073330151 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1990,"Simulated","PgC/yr","LL",1.55788483480051 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1991,"Simulated","PgC/yr","LL",1.52879340928597 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1992,"Simulated","PgC/yr","LL",1.76492373832166 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1993,"Simulated","PgC/yr","LL",1.5408601740939 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1994,"Simulated","PgC/yr","LL",1.56140777978538 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1995,"Simulated","PgC/yr","LL",1.55859116782965 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1996,"Simulated","PgC/yr","LL",1.53454871544938 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1997,"Simulated","PgC/yr","LL",1.68537455538762 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1998,"Simulated","PgC/yr","LL",1.69669913761623 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",1999,"Simulated","PgC/yr","LL",1.71842687174324 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2000,"Simulated","PgC/yr","LL",1.60936188213312 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2001,"Simulated","PgC/yr","LL",1.70550650007841 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2002,"Simulated","PgC/yr","LL",1.78960857588481 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2003,"Simulated","PgC/yr","LL",1.90626494997141 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2004,"Simulated","PgC/yr","LL",1.78997482264067 -"NorESM1-ME","fgco2","ocean","fgco2_LL","historical",2005,"Simulated","PgC/yr","LL",1.43683446855044 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/hist/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/hist/summary.csv deleted file mode 100644 index 6855b7655..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/hist/summary.csv +++ /dev/null @@ -1,469 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -1850,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.377304371,-0.389169316,0.797308126,0.295924079,0.243448978,1,CMIP5 -1850,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.983800204,-2.032836524,0.899230596,0.040873815,0.263013247,1,CMIP5 -1850,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.690581354,-0.330497406,1.643667298,0.257759675,-0.019564311,1,CMIP5 -1851,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.432639741,-0.515806914,0.807820187,0.212050475,0.181797878,1,CMIP5 -1851,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.868901068,-1.89037539,0.900577664,0.039289103,0.294145354,1,CMIP5 -1851,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.768991804,-0.3798488,1.954029339,0.175066291,-0.116040101,1,CMIP5 -1852,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.434873546,-0.383692173,0.922045895,0.210066787,0.15747303,1,CMIP5 -1852,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.873424017,-1.946400807,0.885954406,0.012646543,0.208123705,1,CMIP5 -1852,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.639231508,-0.345792942,1.562708672,0.199651769,-0.019071799,1,CMIP5 -1853,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.404381322,-0.357077171,0.875015647,0.304980882,0.326756177,1,CMIP5 -1853,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.863934872,-1.914483573,0.884186878,0.029195589,0.2149214,1,CMIP5 -1853,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.867424117,-0.370963034,2.236226359,0.278082372,-0.097988052,1,CMIP5 -1854,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.398743189,-0.234036421,0.86294653,0.361432123,0.448699877,1,CMIP5 -1854,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.784687812,-1.644335158,0.930824092,0.103336544,0.246950277,1,CMIP5 -1854,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.879532432,-0.280690736,2.32800058,0.260431093,-0.127612606,1,CMIP5 -1855,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.399408231,-0.311716791,0.814079641,0.3511018,0.357042278,1,CMIP5 -1855,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.780950292,-1.659389631,0.875287124,0.109066341,0.235331774,1,CMIP5 -1855,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.552254649,-0.241174542,1.347672743,0.244322761,-0.01160035,1,CMIP5 -1856,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.363234689,-0.083825254,0.913667977,0.365167903,0.333194397,1,CMIP5 -1856,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.894026836,-2.034994566,0.862993048,0.003485994,0.191202647,1,CMIP5 -1856,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.847702329,-0.328274424,2.278632767,0.363884521,0.052284589,1,CMIP5 -1857,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.503017728,-0.195575609,1.078494493,0.527188797,0.684257407,1,CMIP5 -1857,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.813237281,-1.741677126,0.944095602,0.072441303,0.191679816,1,CMIP5 -1857,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.965937164,-0.410605288,2.674381276,0.456962028,0.087171757,1,CMIP5 -1858,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.410847143,-0.072653831,1.027236964,0.426394578,0.38119506,1,CMIP5 -1858,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.821274727,-1.735461428,0.980707555,0.086406718,0.228501339,1,CMIP5 -1858,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.687759558,-0.392056585,1.780469841,0.342284319,0.070408848,1,CMIP5 -1859,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.547484949,0.040517496,1.810111015,0.590561093,0.559575237,1,CMIP5 -1859,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.766595355,-1.585460351,0.94670029,0.18321486,0.273117888,1,CMIP5 -1859,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.775704034,-0.293555144,2.154977976,0.409342537,0.008834022,1,CMIP5 -1860,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.261861764,0.067164126,0.766259672,0.365852647,0.306810094,1,CMIP5 -1860,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.70622457,-1.548335613,0.956336834,0.114350132,0.231163042,1,CMIP5 -1860,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.671645677,-0.230871886,1.855145787,0.253510717,0.051375012,1,CMIP5 -1861,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.315236797,0.081294173,0.806137972,0.413427174,0.311300777,1,CMIP5 -1861,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.708876108,-1.526561924,0.886810648,0.079871248,0.139490459,1,CMIP5 -1861,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.822154411,-0.241496711,2.332699865,0.335577813,0.035606326,1,CMIP5 -1862,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.347977764,-0.03824961,0.938933711,0.428049813,0.451399545,1,CMIP5 -1862,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.685148329,-1.481604548,0.955258941,0.136328669,0.26592735,1,CMIP5 -1862,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.759675807,-0.205386405,2.208987611,0.29367202,-0.008271051,1,CMIP5 -1863,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.349675193,-0.003844453,0.87673996,0.374898315,0.220058998,1,CMIP5 -1863,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.763196899,-1.745747389,0.960628408,0.11240467,0.190734096,1,CMIP5 -1863,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.637288595,-0.249049202,1.741903235,0.264475327,-0.003792013,1,CMIP5 -1864,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.376979881,-0.11398161,0.85514168,0.322579174,0.227548098,1,CMIP5 -1864,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.775919206,-1.784510762,0.933059053,0.092580663,0.21834361,1,CMIP5 -1864,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.644009813,-0.26181567,1.690093136,0.232018651,-0.081215959,1,CMIP5 -1865,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.36769741,-0.062303797,0.972583647,0.362740885,0.217426622,1,CMIP5 -1865,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.773923825,-1.780455759,0.874496847,0.068412424,0.241033953,1,CMIP5 -1865,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.685654879,-0.255410543,1.756277768,0.296294928,0.037968094,1,CMIP5 -1866,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.350537929,-0.125936494,0.905856408,0.273982304,0.164811489,1,CMIP5 -1866,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.745602182,-1.722924304,0.860301572,0.08698211,0.255233498,1,CMIP5 -1866,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.617280815,-0.265087022,1.62779968,0.188945088,-0.127364011,1,CMIP5 -1867,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.470550059,-0.622752815,0.9384181,0.253769755,0.223542406,1,CMIP5 -1867,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.820970095,-1.936711979,0.912738713,0.067539504,0.271055871,1,CMIP5 -1867,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.567024719,-0.274378667,1.313959131,0.188214251,-0.093679798,1,CMIP5 -1868,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.456260741,-0.098291354,1.152191197,0.407380332,0.388655031,1,CMIP5 -1868,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.789199543,-1.857378405,0.893540578,0.080187142,0.264228735,1,CMIP5 -1868,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.712408789,-0.234392844,1.759086851,0.329129277,0.04548717,1,CMIP5 -1869,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.341975462,0.028388368,0.948463045,0.448776742,0.40904622,1,CMIP5 -1869,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.77384854,-1.80465965,0.871932159,0.092015207,0.270165136,1,CMIP5 -1869,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.80331149,-0.304937786,2.21370643,0.3586552,0.082037268,1,CMIP5 -1870,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.37069187,-0.053560756,0.998847246,0.417362954,0.360532036,1,CMIP5 -1870,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.735274926,-1.669498742,0.877371535,0.091894024,0.249271614,1,CMIP5 -1870,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.765363729,-0.302832354,2.017259845,0.327371949,0.015964845,1,CMIP5 -1871,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.425556737,0.089476026,1.322056451,0.559048395,0.369211167,1,CMIP5 -1871,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.727621822,-1.626837014,0.940402471,0.135577501,0.292575195,1,CMIP5 -1871,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.760740452,-0.203099211,1.961072293,0.425417807,0.118455408,1,CMIP5 -1872,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.425200256,-0.227025991,1.006656086,0.452023024,0.341463738,1,CMIP5 -1872,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.715123341,-1.500098015,0.984309401,0.130043322,0.289594801,1,CMIP5 -1872,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.788814142,-0.188228497,2.31180977,0.324013669,0.083684753,1,CMIP5 -1873,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.358313972,-0.079408381,1.042460499,0.45688001,0.493366068,1,CMIP5 -1873,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.715778899,-1.551150468,0.915499639,0.096557669,0.232746938,1,CMIP5 -1873,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.699671848,-0.312155385,1.89869691,0.36222325,0.116224828,1,CMIP5 -1874,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.341687933,0.031711336,1.001243956,0.45866362,0.342207408,1,CMIP5 -1874,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.792523149,-1.825297258,0.915625419,0.112632187,0.296622732,1,CMIP5 -1874,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.632615365,-0.175163401,1.857009078,0.347951467,0.185994109,1,CMIP5 -1875,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.55953743,-0.442166071,1.073321642,0.463917338,0.585786188,1,CMIP5 -1875,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.819260892,-1.858126315,1.047188594,0.14939227,0.332276437,1,CMIP5 -1875,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.568242071,-0.192444239,1.41595983,0.316548732,0.034885849,1,CMIP5 -1876,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.412961741,0.175629321,1.222093912,0.668304249,0.761210462,1,CMIP5 -1876,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.804428739,-1.813585108,1.027085135,0.132204271,0.321971651,1,CMIP5 -1876,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.874247258,-0.102690174,2.574795648,0.53812643,0.128796001,1,CMIP5 -1877,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.3767653,0.090837922,1.141888489,0.664436658,0.791684885,1,CMIP5 -1877,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.746077196,-1.62996208,1.035282226,0.163705111,0.286013075,1,CMIP5 -1877,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.827236283,-0.083061208,2.527382156,0.502729089,0.110024203,1,CMIP5 -1878,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.409556498,0.22079352,1.260020625,0.722601169,0.732637908,1,CMIP5 -1878,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.762818635,-1.667155257,1.046101526,0.16917977,0.324415077,1,CMIP5 -1878,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.795056377,-0.106334835,2.399793309,0.55545579,0.222187276,1,CMIP5 -1879,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.462369477,0.219113854,1.422192648,0.809879648,0.955634554,1,CMIP5 -1879,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.714383337,-1.529828677,0.930040878,0.174055189,0.310610928,1,CMIP5 -1879,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.933174467,-0.063611592,2.786809291,0.637810984,0.215664244,1,CMIP5 -1880,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.501703002,0.242451138,1.603630095,0.848808285,0.967683467,1,CMIP5 -1880,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.771084616,-1.670136083,1.069654171,0.174740207,0.325476218,1,CMIP5 -1880,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.975667531,-0.083025055,2.869098842,0.676176033,0.243109112,1,CMIP5 -1881,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.378700249,0.392000401,1.386110236,0.82673867,0.825879473,1,CMIP5 -1881,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.738085571,-1.57668819,0.999367431,0.188377301,0.361651127,1,CMIP5 -1881,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.88147525,0.015333971,2.798124443,0.640414072,0.357155129,1,CMIP5 -1882,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.415606778,0.34281627,1.310873846,0.874565198,1.11141745,1,CMIP5 -1882,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.741176109,-1.579825597,0.967145309,0.209083976,0.337478262,1,CMIP5 -1882,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.905328397,0.003385738,2.83183284,0.667588741,0.246984793,1,CMIP5 -1883,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.463033425,0.313840691,1.54625455,0.909206034,1.073220494,1,CMIP5 -1883,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.793895311,-1.722905296,0.998213941,0.159330621,0.317305259,1,CMIP5 -1883,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.897623606,0.086187232,2.877114879,0.751923481,0.352994534,1,CMIP5 -1884,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.482228736,0.601485965,1.79240463,1.256034576,1.416003899,1,CMIP5 -1884,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.796662754,-1.72351895,1.030265696,0.198274184,0.375221942,1,CMIP5 -1884,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.865468502,0.364616938,3.139523279,1.059625012,0.744464232,1,CMIP5 -1885,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.176097576,-2.040621175,1.929831919,0.736299809,0.83637638,1,CMIP5 -1885,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.794727099,-1.632073313,1.01876309,0.145878816,0.367026138,1,CMIP5 -1885,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.340615961,-1.58380881,3.56190499,0.592402146,0.463794855,1,CMIP5 -1886,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.534142741,-0.14608645,1.535000347,0.768219252,0.67673708,1,CMIP5 -1886,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.747507198,-1.533740335,1.023799161,0.186496751,0.324968447,1,CMIP5 -1886,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.859738996,0.038748166,2.706436322,0.583857155,0.292603422,1,CMIP5 -1887,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.532609337,0.199444208,1.53963826,0.819575248,0.596804487,1,CMIP5 -1887,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.761149763,-1.565944624,0.967094484,0.167793028,0.366183994,1,CMIP5 -1887,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.967808401,0.038295869,3.101228627,0.653879986,0.304513454,1,CMIP5 -1888,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.551496353,-0.133236049,1.511680451,0.689247026,0.651496953,1,CMIP5 -1888,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.755941821,-1.569904816,0.99457971,0.173885498,0.287033672,1,CMIP5 -1888,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.95177463,-0.09066404,2.884292104,0.51755216,0.122997692,1,CMIP5 -1889,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.548622778,0.023818986,1.425347341,0.702790893,0.503371923,1,CMIP5 -1889,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.700809834,-1.348270339,0.996027237,0.176645734,0.351515643,1,CMIP5 -1889,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.897088741,-0.090353234,2.773617573,0.52823463,0.188188418,1,CMIP5 -1890,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.415454182,0.24162633,1.421682894,0.766358056,0.496041601,1,CMIP5 -1890,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.721753965,-1.518917151,0.892291491,0.165575308,0.28037003,1,CMIP5 -1890,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.811858881,0.073559328,2.644218726,0.602754692,0.296514564,1,CMIP5 -1891,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.395330695,0.248744138,1.492329613,0.774058892,0.650460588,1,CMIP5 -1891,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.753199113,-1.623756699,0.943373398,0.194242757,0.373606741,1,CMIP5 -1891,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.77078752,0.106333482,2.486490125,0.581813292,0.281690551,1,CMIP5 -1892,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.470229674,-0.097878143,1.280403126,0.603368317,0.423447908,1,CMIP5 -1892,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.784237888,-1.711804711,0.934070891,0.170513528,0.353339296,1,CMIP5 -1892,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.78124392,-0.110367662,2.385230816,0.434925674,0.147417656,1,CMIP5 -1893,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.458426705,0.26633495,1.430262399,0.756730755,0.651962228,1,CMIP5 -1893,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.722102237,-1.465071638,1.031897444,0.192293599,0.3201824,1,CMIP5 -1893,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.727743204,-0.053847408,2.117033983,0.566597713,0.238055256,1,CMIP5 -1894,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.415448465,0.182541335,1.269065571,0.728621107,0.524489835,1,CMIP5 -1894,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.716946528,-1.435355074,1.040410682,0.212161317,0.360893409,1,CMIP5 -1894,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.86118051,-0.178352073,2.634986667,0.518731068,0.255801559,1,CMIP5 -1895,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.450919439,-0.06657289,1.322389742,0.70304836,0.742879695,1,CMIP5 -1895,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.708769958,-1.445920694,0.987317301,0.220343114,0.309517339,1,CMIP5 -1895,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.820819023,-0.376090314,2.422505352,0.484904229,0.279779375,1,CMIP5 -1896,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.481934945,0.058722315,1.317726988,0.659166666,0.785702135,1,CMIP5 -1896,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.7187509,-1.443349071,0.980810858,0.208954675,0.377994621,1,CMIP5 -1896,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.842306592,-0.32248192,2.479605299,0.452401872,0.108742947,1,CMIP5 -1897,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.456172984,0.165522762,1.3001845,0.726645081,0.613938805,1,CMIP5 -1897,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.713269807,-1.424230836,1.032467629,0.204124272,0.328095561,1,CMIP5 -1897,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.870443469,-0.162572863,2.658821614,0.524759319,0.164629513,1,CMIP5 -1898,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.411397283,0.260497902,1.297889805,0.798421639,0.944452917,1,CMIP5 -1898,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.693562221,-1.363855532,1.071690691,0.243556328,0.368497721,1,CMIP5 -1898,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.793882451,-0.10799981,2.452952184,0.557097562,0.292366913,1,CMIP5 -1899,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.418711333,0.201607949,1.392371389,0.68261525,0.534861566,1,CMIP5 -1899,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.672016046,-1.358097337,0.986469592,0.239236679,0.325009797,1,CMIP5 -1899,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.765034003,-0.094539065,2.310299414,0.44550526,0.108903273,1,CMIP5 -1900,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.334252128,0.35057798,1.303179223,0.695312326,0.590031207,1,CMIP5 -1900,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.785926526,-1.744272834,0.920672958,0.180793893,0.401166075,1,CMIP5 -1900,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.798546514,-0.067681986,2.492850877,0.516521357,0.250846569,1,CMIP5 -1901,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.451697455,0.138706907,1.412491965,0.758835997,0.615204354,1,CMIP5 -1901,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.768399146,-1.643747578,1.023335307,0.206831185,0.347186759,1,CMIP5 -1901,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.765050561,-0.022868481,2.257358199,0.554132543,0.220719577,1,CMIP5 -1902,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.466266396,0.307596684,1.435243144,0.880633615,1.11679774,1,CMIP5 -1902,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.714356138,-1.463293373,0.97214083,0.214185312,0.352260283,1,CMIP5 -1902,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.856492112,0.011447787,2.580090996,0.668587277,0.260088559,1,CMIP5 -1903,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.574474467,0.533771133,2.03520667,1.133843738,0.844017664,1,CMIP5 -1903,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.752662894,-1.569501651,1.015303079,0.229189591,0.399198803,1,CMIP5 -1903,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.066615191,0.122915594,3.604708331,0.90660782,0.505940043,1,CMIP5 -1904,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.431283438,0.349360931,1.679146952,0.942978971,0.804630136,1,CMIP5 -1904,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.770214807,-1.607700666,1.064150759,0.210233533,0.403465678,1,CMIP5 -1904,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.733445534,0.146512268,2.412331007,0.734801791,0.465742883,1,CMIP5 -1905,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.491349019,0.440055524,1.612664837,1.034499028,1.194846227,1,CMIP5 -1905,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.740923621,-1.523987415,1.033453229,0.217114743,0.348567032,1,CMIP5 -1905,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.966579015,0.048356284,2.992120398,0.819490705,0.370607953,1,CMIP5 -1906,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.492553457,0.134000745,1.51748077,0.855540949,1.021942851,1,CMIP5 -1906,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.824179735,-1.77019156,1.089498638,0.223577818,0.371887398,1,CMIP5 -1906,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.955459595,-0.237886655,2.940133168,0.634230127,0.248429656,1,CMIP5 -1907,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.531624623,0.347171808,1.733144957,0.977183452,0.983736564,1,CMIP5 -1907,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.779322195,-1.664210259,0.962702818,0.223281161,0.377446503,1,CMIP5 -1907,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.058511815,0.028405028,3.397355096,0.756000822,0.312836544,1,CMIP5 -1908,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.448905447,0.418926166,1.639745581,1.014224056,1.199611804,1,CMIP5 -1908,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.751566814,-1.514240632,1.093793148,0.244276231,0.377411109,1,CMIP5 -1908,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.854464266,0.041515065,2.71957437,0.772150935,0.386471134,1,CMIP5 -1909,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.459554899,0.289941992,1.599516322,0.90068223,0.971710464,1,CMIP5 -1909,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.783852111,-1.664360405,1.069518391,0.246247094,0.361404317,1,CMIP5 -1909,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.919209702,0.015979019,2.947311531,0.656632642,0.258356432,1,CMIP5 -1910,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.411345471,0.472044604,1.583570715,0.904284566,0.873212144,1,CMIP5 -1910,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.818246416,-1.736083409,1.154184167,0.22828162,0.37123443,1,CMIP5 -1910,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.801691134,0.100810181,2.609295445,0.678236114,0.372285564,1,CMIP5 -1911,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.46129331,0.346674218,1.611786099,0.940141911,0.7798062,1,CMIP5 -1911,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.867340791,-1.861870012,1.127946285,0.205663647,0.364555475,1,CMIP5 -1911,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.836066244,0.063594271,2.62923768,0.736718178,0.42702877,1,CMIP5 -1912,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.444078158,0.48603411,1.620874162,1.028515482,1.09597038,1,CMIP5 -1912,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.812261353,-1.684615218,1.067653706,0.216223836,0.362258192,1,CMIP5 -1912,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.00969526,0.128211032,3.267191209,0.814556211,0.374183265,1,CMIP5 -1913,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.462776546,0.342736475,1.646782573,0.960653001,0.9988661,1,CMIP5 -1913,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.762296928,-1.583118757,1.067827468,0.247492637,0.357745596,1,CMIP5 -1913,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.820173413,-0.027796949,2.674548925,0.71533175,0.431142083,1,CMIP5 -1914,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.536702857,0.330651896,1.577523533,0.90053006,0.752460308,1,CMIP5 -1914,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.768606291,-1.567876186,1.082272468,0.220377836,0.387189671,1,CMIP5 -1914,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.977925908,-0.061001216,3.145399708,0.682335563,0.380851813,1,CMIP5 -1915,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.500980759,0.091518209,1.617664494,0.916876141,1.094316981,1,CMIP5 -1915,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.794222863,-1.6621808,1.077660894,0.222082622,0.425893754,1,CMIP5 -1915,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.915750427,-0.024874957,2.839859877,0.696996552,0.305227634,1,CMIP5 -1916,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.42320302,0.368493559,1.491255295,0.918182416,1.102573922,1,CMIP5 -1916,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.819310893,-1.743261156,1.074589967,0.192401237,0.357916398,1,CMIP5 -1916,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.946152046,0.027031138,2.99706414,0.728059114,0.385433507,1,CMIP5 -1917,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.397936114,0.427577447,1.431330718,0.93059402,0.839459462,1,CMIP5 -1917,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.767065639,-1.591652662,1.024936413,0.198014784,0.362801898,1,CMIP5 -1917,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.920719861,0.018217609,2.982854771,0.734766512,0.370880746,1,CMIP5 -1918,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.495936886,0.189298956,1.532631104,0.861903893,0.664655305,1,CMIP5 -1918,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.772215893,-1.61285632,1.030616614,0.209917081,0.373620524,1,CMIP5 -1918,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.945300052,0.080504291,3.022343446,0.654165687,0.284920679,1,CMIP5 -1919,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.514532627,0.193129179,1.62201536,0.944287677,1.042291127,1,CMIP5 -1919,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.761533033,-1.4908509,1.149242592,0.24167483,0.388754956,1,CMIP5 -1919,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.987950026,0.00661715,3.11286637,0.704963335,0.256364779,1,CMIP5 -1920,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.482828165,0.374486726,1.510352137,0.951283331,0.779737283,1,CMIP5 -1920,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.718256802,-1.368671383,1.140329719,0.268549547,0.395433232,1,CMIP5 -1920,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.878559424,-0.020946594,2.848936425,0.685050894,0.358118992,1,CMIP5 -1921,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.514171879,0.205823015,1.609203942,0.92656749,0.772014552,1,CMIP5 -1921,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.707018183,-1.36471703,1.054524489,0.251716532,0.398832292,1,CMIP5 -1921,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.933295959,-0.206948318,2.973921028,0.677031985,0.366222032,1,CMIP5 -1922,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.577566784,0.334214149,1.791664432,0.974216369,0.851286459,1,CMIP5 -1922,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.705855802,-1.33390174,1.108179891,0.262129078,0.403302774,1,CMIP5 -1922,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.96398344,-0.018377346,3.125566142,0.714237411,0.409754358,1,CMIP5 -1923,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.565147406,0.362248639,1.939286256,1.031364515,0.757210182,1,CMIP5 -1923,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.659490045,-1.132183467,1.121262227,0.294646133,0.407263635,1,CMIP5 -1923,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.933031837,0.100640092,3.071469458,0.738999713,0.401292456,1,CMIP5 -1924,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.458645967,0.493730708,1.708812821,1.129381513,1.260401315,1,CMIP5 -1924,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.733153801,-1.369719618,1.205603415,0.287471247,0.43726677,1,CMIP5 -1924,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.828100733,0.056463966,2.667096142,0.844191985,0.474766089,1,CMIP5 -1925,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.553021752,0.393857645,1.84708668,1.118518931,1.336755615,1,CMIP5 -1925,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.743526637,-1.420942818,1.170493119,0.273154091,0.372639525,1,CMIP5 -1925,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.009288018,0.112345634,3.268029453,0.847681914,0.390204212,1,CMIP5 -1926,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.649844591,0.309753402,2.138805619,1.04444146,0.763167972,1,CMIP5 -1926,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.715780883,-1.356647032,1.058966889,0.267930859,0.423249855,1,CMIP5 -1926,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.07094504,0.130783499,3.495452746,0.778691944,0.382890042,1,CMIP5 -1927,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.560184418,0.547123803,2.144553669,1.196356886,1.156369251,1,CMIP5 -1927,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.6929324,-1.318247545,1.051892554,0.295752163,0.412566416,1,CMIP5 -1927,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.02463733,0.134557369,3.462801258,0.902743965,0.466246937,1,CMIP5 -1928,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.520320684,0.619788396,2.058013839,1.153851254,0.907979889,1,CMIP5 -1928,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.710759894,-1.341630609,1.069566189,0.263638991,0.438937832,1,CMIP5 -1928,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.010162975,0.180850614,3.399644525,0.892305369,0.438414785,1,CMIP5 -1929,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.536759199,0.392471102,1.80532787,1.129049564,0.965335946,1,CMIP5 -1929,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.748242588,-1.469129527,1.16667274,0.28182596,0.401404463,1,CMIP5 -1929,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.953440187,0.215889102,3.22957398,0.849352146,0.511465169,1,CMIP5 -1930,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.553740232,0.559616078,1.943207255,1.236430059,1.36266004,1,CMIP5 -1930,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.71640508,-1.328385551,1.170480091,0.294726188,0.42359818,1,CMIP5 -1930,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.000381451,0.17095894,3.271592747,0.943882544,0.506097542,1,CMIP5 -1931,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.519160181,0.657708137,1.923688048,1.236407308,1.317568785,1,CMIP5 -1931,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.711409066,-1.323204486,1.186390601,0.338879025,0.476339312,1,CMIP5 -1931,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.958246085,0.181368786,3.246892626,0.899765358,0.509428613,1,CMIP5 -1932,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.475195126,0.628848626,1.894012713,1.173643806,1.044703362,1,CMIP5 -1932,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.739404705,-1.390185451,1.172255418,0.321706949,0.434135486,1,CMIP5 -1932,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.881751937,0.234774716,2.993746819,0.854230525,0.488032251,1,CMIP5 -1933,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.595123381,0.499779745,2.147316328,1.209337125,0.90411179,1,CMIP5 -1933,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.701799883,-1.296348558,1.150470944,0.32917921,0.432619454,1,CMIP5 -1933,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.015264854,0.228785801,3.443664647,0.882364905,0.525685855,1,CMIP5 -1934,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.524082587,0.609449879,1.944064941,1.212499836,1.320812036,1,CMIP5 -1934,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.676604136,-1.216719536,1.111786692,0.313491909,0.407459269,1,CMIP5 -1934,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.942825206,0.201990663,3.160784325,0.901173126,0.496574598,1,CMIP5 -1935,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.612116357,0.583330945,2.415142689,1.279598954,1.48318278,1,CMIP5 -1935,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.748154106,-1.299923101,1.131482993,0.282496143,0.46660403,1,CMIP5 -1935,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.156227786,0.227081763,3.715065581,0.999455625,0.453616046,1,CMIP5 -1936,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.543314768,0.445490856,1.834900723,1.119261766,0.889770029,1,CMIP5 -1936,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.717976435,-1.351442911,1.110859991,0.293779994,0.42303783,1,CMIP5 -1936,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.949228603,0.172584368,3.186343362,0.827702925,0.475786279,1,CMIP5 -1937,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.576998496,0.501253345,2.116392088,1.173981665,1.227527553,1,CMIP5 -1937,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.767064723,-1.453984455,1.161129969,0.263028659,0.425317354,1,CMIP5 -1937,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.092835445,0.075935967,3.570376372,0.913227704,0.463411455,1,CMIP5 -1938,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.551101445,0.42580325,1.931838877,1.161541102,1.374112467,1,CMIP5 -1938,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.764804128,-1.406726057,1.168687517,0.272718571,0.452535849,1,CMIP5 -1938,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.056505777,-0.026732647,3.338564816,0.891133341,0.45870323,1,CMIP5 -1939,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.536173404,0.438525622,1.805320225,1.067152868,0.811510566,1,CMIP5 -1939,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.717229953,-1.293303308,1.206132499,0.296378653,0.447297504,1,CMIP5 -1939,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.88621976,0.08347041,2.952017644,0.77303644,0.465628763,1,CMIP5 -1940,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.526533164,0.541236822,1.823991345,1.145257441,1.130540149,1,CMIP5 -1940,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.725979222,-1.403816855,1.165227322,0.299079593,0.394874752,1,CMIP5 -1940,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.966439396,0.090121652,3.227201674,0.848424576,0.501657466,1,CMIP5 -1941,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.512954857,0.453203605,1.956836318,1.141466004,1.160509603,1,CMIP5 -1941,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.71630154,-1.351536528,1.148989472,0.304310133,0.443790754,1,CMIP5 -1941,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.015079411,0.00441298,3.308372681,0.839436752,0.536039199,1,CMIP5 -1942,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.555109173,0.208799671,1.806761211,0.934770839,0.889684368,1,CMIP5 -1942,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.710721732,-1.416001768,0.99539274,0.261718712,0.428074437,1,CMIP5 -1942,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.963814009,-0.026739893,3.018108419,0.675114737,0.282086905,1,CMIP5 -1943,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.489021363,0.430991372,1.829575843,0.924768583,0.743135301,1,CMIP5 -1943,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.763923921,-1.52292518,1.136790258,0.274717637,0.399424781,1,CMIP5 -1943,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.71189819,0.037955475,2.242906137,0.652245227,0.370708281,1,CMIP5 -1944,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.523086476,0.23068502,1.749982282,0.990347855,1.046761486,1,CMIP5 -1944,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.748375122,-1.503688614,1.077557499,0.270871188,0.376334258,1,CMIP5 -1944,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.948239667,-0.145581775,2.936794417,0.721651086,0.434283149,1,CMIP5 -1945,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.475319795,0.284979556,1.692694897,0.894081332,0.941188064,1,CMIP5 -1945,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.747591148,-1.475207852,1.122616359,0.289793863,0.380012758,1,CMIP5 -1945,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.781594551,0.012613303,2.416395845,0.606552975,0.284481005,1,CMIP5 -1946,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.42821764,0.512741047,1.637072067,0.949295347,0.797608457,1,CMIP5 -1946,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.782949129,-1.603247176,1.124095539,0.28741972,0.458927738,1,CMIP5 -1946,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.784877549,0.028843718,2.400855527,0.66413482,0.312102211,1,CMIP5 -1947,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.425696785,0.345791325,1.638511895,0.894850319,0.994503713,1,CMIP5 -1947,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.774816983,-1.587249264,1.058791109,0.241078494,0.386953254,1,CMIP5 -1947,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.877319464,-0.041161955,2.581752881,0.656005366,0.318557165,1,CMIP5 -1948,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.443290535,0.269199413,1.572827388,0.851667737,0.822487128,1,CMIP5 -1948,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.777687086,-1.542101801,1.129909043,0.242192419,0.415437092,1,CMIP5 -1948,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.75917048,-0.05695122,2.36458897,0.611720929,0.24933551,1,CMIP5 -1949,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.392993945,0.40226282,1.512324979,0.901367924,0.77899948,1,CMIP5 -1949,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.802593538,-1.615247675,1.124043337,0.244387259,0.43243993,1,CMIP5 -1949,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.856080694,0.042115754,2.781640817,0.659202607,0.273621739,1,CMIP5 -1950,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.416891742,0.263768596,1.60605101,0.884849592,0.768967798,1,CMIP5 -1950,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.801969508,-1.591378644,1.131355378,0.241509572,0.407607312,1,CMIP5 -1950,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.767479686,0.107894542,2.452066149,0.645544455,0.285166248,1,CMIP5 -1951,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.488454289,0.294723695,1.791276334,1.033538689,1.134647018,1,CMIP5 -1951,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.698131171,-1.283024214,1.142196698,0.310840035,0.415256717,1,CMIP5 -1951,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.865103832,0.142213891,2.749653854,0.724926393,0.295269194,1,CMIP5 -1952,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.457234208,0.438339982,1.799734388,1.010870854,1.158737213,1,CMIP5 -1952,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.725221702,-1.404468029,1.152389758,0.315148329,0.425753486,1,CMIP5 -1952,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.815104132,0.019773902,2.577250071,0.697971448,0.31167613,1,CMIP5 -1953,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.552648618,0.476786535,2.047849167,1.197428906,1.277221194,1,CMIP5 -1953,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.693511676,-1.268210485,1.13134547,0.332142655,0.445278672,1,CMIP5 -1953,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.019124961,0.031507823,3.316059679,0.867511833,0.494928716,1,CMIP5 -1954,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.507164246,0.553610247,2.041891107,1.228514638,1.126270925,1,CMIP5 -1954,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.730388997,-1.366659174,1.169968255,0.322216563,0.420020303,1,CMIP5 -1954,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.006677772,0.133589998,3.40855058,0.908611892,0.649618459,1,CMIP5 -1955,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.448973259,0.643807623,1.804910334,1.162912403,1.067885906,1,CMIP5 -1955,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.737864173,-1.391751467,1.120471215,0.304220551,0.434557938,1,CMIP5 -1955,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.908656898,0.191054813,3.075196798,0.860948573,0.527869938,1,CMIP5 -1956,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.477214644,0.500760774,1.896329751,1.112305385,0.975826038,1,CMIP5 -1956,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.801898666,-1.515302137,1.154217378,0.268018267,0.441177604,1,CMIP5 -1956,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.886260135,0.104452041,2.997188359,0.846581262,0.534648371,1,CMIP5 -1957,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.465192833,0.619517186,1.963585397,1.190133844,1.317926382,1,CMIP5 -1957,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.795921273,-1.578626486,1.130434183,0.291561721,0.404853014,1,CMIP5 -1957,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.886311961,0.256538471,2.96535046,0.90081131,0.500632499,1,CMIP5 -1958,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.524704614,0.457155869,1.944959505,1.159770558,1.018774704,1,CMIP5 -1958,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.850770285,-1.707027143,1.146954786,0.257803735,0.447531918,1,CMIP5 -1958,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.012987799,0.143057757,3.373122456,0.904245575,0.54069466,1,CMIP5 -1959,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.523352645,0.596296591,2.02786089,1.159937551,1.060014244,1,CMIP5 -1959,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.869976625,-1.793008408,1.152821502,0.276077217,0.483040709,1,CMIP5 -1959,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,0.958869266,0.16547546,3.261899843,0.8861529,0.576973512,1,CMIP5 -1960,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.599621843,0.753281396,2.445216305,1.346126711,1.137603453,1,CMIP5 -1960,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.789618885,-1.53415103,1.133425018,0.308385398,0.465181466,1,CMIP5 -1960,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.142517731,0.330561976,3.979367236,1.039969526,0.601376586,1,CMIP5 -1961,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.631894896,0.752661411,2.654278154,1.470294374,1.45524006,1,CMIP5 -1961,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.772148968,-1.482329668,1.162693828,0.32785216,0.446303879,1,CMIP5 -1961,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.193872085,0.309656165,4.136608101,1.144664662,0.661955743,1,CMIP5 -1962,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.587589516,0.642657456,2.342078687,1.516900118,1.673914299,1,CMIP5 -1962,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.792100678,-1.528235126,1.209531776,0.34777189,0.445272887,1,CMIP5 -1962,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.118719642,0.197384462,3.870314195,1.171436131,0.800907544,1,CMIP5 -1963,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.796812331,0.73047064,3.098872883,1.553311333,1.224740253,1,CMIP5 -1963,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.73459997,-1.288871049,1.202101753,0.342856874,0.497009536,1,CMIP5 -1963,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.247693591,0.373493059,4.38774383,1.212664503,0.842643386,1,CMIP5 -1964,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.961890106,0.789417889,3.918444727,1.751853893,1.365822623,1,CMIP5 -1964,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.680802707,-1.071723104,1.228372663,0.382709771,0.441642937,1,CMIP5 -1964,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.41673102,0.499050117,4.990167773,1.37138841,0.83936635,1,CMIP5 -1965,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.92190742,0.87234154,3.8163566,1.84543988,1.857414077,1,CMIP5 -1965,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.672937782,-1.069780363,1.24357317,0.4062933,0.52785832,1,CMIP5 -1965,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.394797467,0.561846852,4.886136988,1.441386584,0.804812325,1,CMIP5 -1966,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.59472809,0.901557835,2.479010827,1.605162212,1.455583947,1,CMIP5 -1966,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.73796653,-1.314931694,1.231859646,0.382153629,0.423887361,1,CMIP5 -1966,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.028281565,0.489217694,3.793942797,1.225310319,0.778922282,1,CMIP5 -1967,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.679661796,0.919912783,2.983015694,1.677788185,1.398331979,1,CMIP5 -1967,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.811275424,-1.534049219,1.216970057,0.355771122,0.543268759,1,CMIP5 -1967,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.258418168,0.376644038,4.517064731,1.324323264,0.874226339,1,CMIP5 -1968,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.705888166,0.819451487,3.021230335,1.715773305,1.707760406,1,CMIP5 -1968,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.783672392,-1.43221226,1.271469131,0.39177439,0.491391884,1,CMIP5 -1968,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.261188793,0.350565999,4.453442603,1.326346544,0.790165758,1,CMIP5 -1969,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.8638161,1.029080923,3.756597968,1.871273255,1.653635357,1,CMIP5 -1969,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.793401842,-1.432082151,1.195990265,0.366783811,0.491949013,1,CMIP5 -1969,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.4580107,0.607606083,5.188679814,1.506749613,0.93015712,1,CMIP5 -1970,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.881770276,1.072223718,3.79948073,1.877717601,1.536981166,1,CMIP5 -1970,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.755058881,-1.297598426,1.319599561,0.405601449,0.51920069,1,CMIP5 -1970,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.409903245,0.553023007,5.09707931,1.474437016,0.932069866,1,CMIP5 -1971,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.786583082,0.955791875,3.505967784,1.871982639,1.825405127,1,CMIP5 -1971,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.644858763,-0.952764892,1.224694577,0.445250141,0.524267582,1,CMIP5 -1971,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.207734255,0.659140379,4.458732641,1.429004726,0.950701003,1,CMIP5 -1972,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.866609457,1.148809174,3.91580228,2.003910015,2.142644751,1,CMIP5 -1972,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.684155349,-1.045346542,1.31278642,0.455464756,0.594946113,1,CMIP5 -1972,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.357946342,0.614835248,4.96114899,1.550801609,1.049851013,1,CMIP5 -1973,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.088553105,0.984986208,4.631161612,2.162342173,2.158738143,1,CMIP5 -1973,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.685238415,-1.133060392,1.158681302,0.451125129,0.576057589,1,CMIP5 -1973,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.626022252,0.408928615,5.764222116,1.713423407,1.071248645,1,CMIP5 -1974,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.891854029,1.055348908,3.914671682,2.039502447,1.910282344,1,CMIP5 -1974,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.70901806,-1.118946935,1.280140444,0.459672254,0.572726959,1,CMIP5 -1974,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.365680041,0.654646267,5.033618572,1.582135218,1.082655948,1,CMIP5 -1975,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.956729133,1.173049345,4.19485096,2.109911117,1.73736438,1,CMIP5 -1975,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.681191407,-1.031705319,1.273340697,0.481972309,0.540176699,1,CMIP5 -1975,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.400687576,0.632873252,5.226556292,1.630234905,1.175371156,1,CMIP5 -1976,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.963352919,1.187521879,4.246593124,2.196962075,2.229875479,1,CMIP5 -1976,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.726363221,-1.110347511,1.365630627,0.483877478,0.593758442,1,CMIP5 -1976,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.450241622,0.761951985,5.356940549,1.715524967,1.173400088,1,CMIP5 -1977,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.865587974,1.361690812,3.963518275,2.19763271,2.083343119,1,CMIP5 -1977,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.732256043,-1.137898038,1.400851015,0.532100596,0.614446193,1,CMIP5 -1977,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.355858867,0.73876925,5.101416747,1.668016331,1.20180502,1,CMIP5 -1978,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.894958086,1.376830876,4.108665193,2.334412029,2.46945191,1,CMIP5 -1978,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.670243472,-0.88941951,1.414695004,0.552135453,0.621587997,1,CMIP5 -1978,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.336121253,0.784937103,4.998084625,1.784753736,1.266701224,1,CMIP5 -1979,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.352529892,1.279666748,5.717338863,2.458716481,2.153079032,1,CMIP5 -1979,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.655421622,-0.795327276,1.392030895,0.538770742,0.583644411,1,CMIP5 -1979,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.788428774,0.844933737,6.512666027,1.922353169,1.266580243,1,CMIP5 -1980,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.21876628,1.403999224,5.378228068,2.524427939,2.3943288,1,CMIP5 -1980,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.662591697,-0.828005988,1.415641338,0.562314765,0.622762087,1,CMIP5 -1980,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.668294994,0.873165406,6.206234092,1.964528439,1.349370504,1,CMIP5 -1981,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.240427731,1.473150664,5.521893666,2.563350928,2.372178373,1,CMIP5 -1981,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.679734863,-0.872828213,1.413553625,0.539992306,0.679193494,1,CMIP5 -1981,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.711172953,0.873168363,6.394721913,2.025731573,1.424129194,1,CMIP5 -1982,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.092964029,1.422546177,5.003494721,2.51736077,2.464487431,1,CMIP5 -1982,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.74388135,-1.082489328,1.42929496,0.501232381,0.578451974,1,CMIP5 -1982,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.6086867,0.931386731,6.08598386,2.018544883,1.429121788,1,CMIP5 -1983,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.133481688,1.576888092,5.251642,2.760582993,2.959521528,1,CMIP5 -1983,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.702074142,-1.002954918,1.415932898,0.561223,0.642577109,1,CMIP5 -1983,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.619197039,1.025649992,6.254596582,2.201662228,1.659269994,1,CMIP5 -1984,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.114088108,1.524607477,5.06886869,2.653953366,2.687908779,1,CMIP5 -1984,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.742114904,-1.060143054,1.539162652,0.551219556,0.605498602,1,CMIP5 -1984,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.594148808,1.011569151,6.129011744,2.105245843,1.521954141,1,CMIP5 -1985,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.258075321,1.508334508,5.590353943,2.666519186,2.570324609,1,CMIP5 -1985,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.721373564,-0.993865811,1.489175244,0.539397203,0.615466872,1,CMIP5 -1985,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.761188845,0.926075392,6.5842198,2.129525932,1.543010893,1,CMIP5 -1986,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.19065079,1.500791628,5.326436883,2.664154599,2.35210612,1,CMIP5 -1986,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.698984425,-0.839429324,1.586134271,0.576610534,0.611107735,1,CMIP5 -1986,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.613818847,0.889683702,6.16586602,2.090072737,1.54193663,1,CMIP5 -1987,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.200704384,1.528557808,5.480812866,2.781499042,2.751551839,1,CMIP5 -1987,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.77247422,-1.101511656,1.580305261,0.57397568,0.694610105,1,CMIP5 -1987,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.736420811,0.902563318,6.582324648,2.210051895,1.63351746,1,CMIP5 -1988,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.392949608,1.692110629,6.220232294,2.882230684,2.421348481,1,CMIP5 -1988,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.715521483,-0.883181584,1.532650705,0.589107146,0.672374447,1,CMIP5 -1988,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.870324077,1.01973649,7.103413919,2.29557877,1.691115304,1,CMIP5 -1989,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.20663641,1.649932913,5.602349788,2.85037648,2.929216761,1,CMIP5 -1989,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.693347736,-0.877130927,1.533927865,0.620215146,0.674388344,1,CMIP5 -1989,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.712762545,0.975544124,6.4794803,2.232597311,1.538305837,1,CMIP5 -1990,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.258279794,1.533911737,5.645878065,2.802282493,2.835821307,1,CMIP5 -1990,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.753892434,-1.049026877,1.579445626,0.593246273,0.664855047,1,CMIP5 -1990,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.806509676,0.869056885,6.69490495,2.211638657,1.530718724,1,CMIP5 -1991,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.179947515,1.692872547,5.487175548,2.823698364,2.82904977,1,CMIP5 -1991,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.728364735,-0.989487792,1.506796952,0.605422338,0.66679203,1,CMIP5 -1991,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.702152852,1.013853221,6.47666327,2.220778821,1.528793409,1,CMIP5 -1992,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.423259185,1.862647134,6.413574274,3.102994267,2.879586285,1,CMIP5 -1992,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.679715453,-0.880906903,1.448337223,0.61974412,0.655995729,1,CMIP5 -1992,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.887609611,1.24432814,7.294481331,2.485493654,1.975350831,1,CMIP5 -1993,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,0.957814541,1.709698197,4.675028802,2.71396389,2.440722678,1,CMIP5 -1993,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.721716532,-0.994333102,1.413657019,0.586623352,0.669382274,1,CMIP5 -1993,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.419040593,1.133313223,5.669361944,2.129735846,1.682540808,1,CMIP5 -1994,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.08013986,1.630354226,5.19904197,2.822403834,2.889725806,1,CMIP5 -1994,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.715008535,-0.935091588,1.504101438,0.617200407,0.671773518,1,CMIP5 -1994,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.578754771,0.980552444,6.134133754,2.207719624,1.638103379,1,CMIP5 -1995,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.321413448,1.780086596,6.037960779,2.977726157,2.994738447,1,CMIP5 -1995,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.716131168,-0.866353126,1.619828966,0.646867117,0.703690844,1,CMIP5 -1995,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.845166469,1.076395406,6.90431359,2.333544726,1.614444675,1,CMIP5 -1996,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.195448318,1.701338091,5.549395249,2.84873479,2.523621118,1,CMIP5 -1996,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.67216406,-0.620963273,1.580003425,0.657484199,0.739241614,1,CMIP5 -1996,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.583573293,1.063571396,6.170358589,2.193909887,1.706090071,1,CMIP5 -1997,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.314717382,1.639524582,5.971790444,2.964077717,2.913883572,1,CMIP5 -1997,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.691017264,-0.707220314,1.627660276,0.662585035,0.65834662,1,CMIP5 -1997,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.745553801,0.984385697,6.679010939,2.304170195,1.75419466,1,CMIP5 -1998,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.299135664,1.860886407,5.991800083,3.021252093,2.700516059,1,CMIP5 -1998,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.692041689,-0.721715572,1.689998458,0.67901165,0.690128732,1,CMIP5 -1998,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.716274014,1.170757184,6.713515478,2.344879093,1.768639341,1,CMIP5 -1999,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.446317154,1.934831229,6.565031288,3.192969296,3.24829322,1,CMIP5 -1999,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.673441792,-0.749844887,1.601952946,0.707381409,0.74221626,1,CMIP5 -1999,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.916878331,1.192615545,7.314876255,2.488158251,1.845696924,1,CMIP5 -2000,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.408925888,1.849319823,6.40850084,3.136238627,3.269887267,1,CMIP5 -2000,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.632358295,-0.570620247,1.54590405,0.705602442,0.734590558,1,CMIP5 -2000,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.824961221,1.146249355,6.979121341,2.433181708,1.858073767,1,CMIP5 -2001,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.250438301,1.898423139,5.948714107,3.069937041,2.867416575,1,CMIP5 -2001,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.660542214,-0.699013032,1.538623843,0.708821979,0.734991075,1,CMIP5 -2001,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.691293521,1.163432638,6.647727381,2.363676988,1.819648395,1,CMIP5 -2002,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.430703747,1.987277227,6.587582212,3.223311544,3.242092158,1,CMIP5 -2002,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.658512388,-0.64480185,1.597381463,0.713624854,0.760033846,1,CMIP5 -2002,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.866239498,1.218721839,7.232383971,2.512286702,1.860179837,1,CMIP5 -2003,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.419662829,1.966314751,6.518197001,3.291472299,3.377686223,1,CMIP5 -2003,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.711301452,-0.745523131,1.68554982,0.712025881,0.766536589,1,CMIP5 -2003,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.88692942,1.26055241,7.263720252,2.582154999,1.915130049,1,CMIP5 -2004,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.438230031,2.118872712,6.733292424,3.337180721,3.360173308,1,CMIP5 -2004,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.718464288,-0.692285765,1.746169097,0.72220453,0.772024658,1,CMIP5 -2004,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,1.910572548,1.34684757,7.425578285,2.617781978,1.935950806,1,CMIP5 -2005,fgco2,ocean,fgco2,historical,PgC/yr,Simulated,global,1.608971426,1.983698877,7.135026896,3.382102257,3.454229037,1,CMIP5 -2005,fgco2,ocean,fgco2_HL,historical,PgC/yr,Simulated,HL,0.651806355,-0.576153123,1.650814112,0.725339177,0.748926187,1,CMIP5 -2005,fgco2,ocean,fgco2_LL,historical,PgC/yr,Simulated,LL,2.027775235,1.153018727,7.711179864,2.659348215,2.013086704,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp45/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp45/ensemble_mean_model.csv deleted file mode 100644 index 0afd1a893..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp45/ensemble_mean_model.csv +++ /dev/null @@ -1,7434 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",12.048399375097 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",13.2507117412993 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",12.6908699037694 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",12.4468176069609 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",13.4271871221414 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",14.207004499017 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",14.5617929122913 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",13.6434905597904 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",13.2289912757709 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",13.7128106835805 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",14.4377034077027 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",13.8723230035334 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",13.6902546308308 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",14.9611235669831 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",15.1035063488994 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",16.0655729823014 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",14.0857387029693 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",14.6063383551924 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",14.8144363903579 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",14.6288127701102 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",14.2254322386561 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",15.0360847048879 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",15.1589912612839 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",15.5542544310536 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",15.2844253889873 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",15.7264446260884 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",15.4505183584934 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",15.3297087738597 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",16.1420724330792 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",16.2275680527912 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",16.8392595180705 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",15.6035668830448 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",15.2540833281065 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",16.585541942254 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",15.7584818725388 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",15.2001463330457 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",16.9021206486845 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",17.8458379787958 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",16.2546846189384 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",16.1499320753332 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",17.4195444291699 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",16.5133004646729 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",16.9817735608147 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",17.3290865098678 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",15.9250982846146 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",16.0103954123431 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",17.3039388561386 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",17.1798173367139 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",15.8607036433531 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",16.2236942576273 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",17.0413051484779 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",16.8138237308168 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",15.8109333792062 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",15.7005926459658 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",15.8805800543242 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",15.8033042437719 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",15.5651666879265 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",16.4421314841 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",16.7621838002436 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",15.8799173472176 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",15.5810204347459 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",16.4114932859857 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",15.2489289395 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",15.2441587289263 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",15.7981978774195 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",14.6647430206261 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",14.7727946930879 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",15.0051151532203 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",14.7753766896165 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",14.8848418170906 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",14.4585834837844 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",13.6501608508846 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",12.611316237631 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",13.1156555546166 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",13.9629874185282 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",12.3051103380856 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",12.5614755408447 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",12.8271362512554 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",13.6645867360155 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",12.321208998401 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",12.4951167893906 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",13.2923022148316 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",13.3657458495069 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",12.9242356482993 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",12.4710416326696 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",12.8438944171937 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",12.8324219006897 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",13.1499946677801 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",12.355007060835 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",11.6084274867622 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",13.1544127151571 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",12.4239334021415 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",12.7809788613584 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",12.6587174039091 -"BNU-ESM","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",12.4175720542154 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",7.32413506452735 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",7.53754769069162 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",7.00327162971547 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",7.4575781099894 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",7.77006809277589 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",8.40554742736923 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",8.7205822828301 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",8.16620484158611 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",7.73214128066091 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",7.56482510236053 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",8.56243500618971 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",8.32367273063824 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",7.69641681664455 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",8.08357715694479 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",8.32972211095543 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",8.8108021237703 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",7.78610163985899 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",8.58859142833798 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",8.76622014407192 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",8.6019555483555 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",8.18720357962678 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",8.06271712720339 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",8.39497162724521 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",8.38894489318096 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",8.29630756473918 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",8.95232421996948 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",8.69567989693851 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",8.96844269050112 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",8.30352888864613 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",8.38370794718807 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",8.93099994204277 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",8.90520585994157 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",7.8561974542784 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",9.65568852853875 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",8.50388311920759 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",7.93777774972114 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",8.55900692965058 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",9.28298215917888 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",8.89594637326982 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",8.82504944765258 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",9.6739923624793 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",8.76625694423295 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",9.36090791555307 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",9.70823632770956 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",8.2735735575668 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",8.54376317063885 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",8.99858768394883 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",9.241092252799 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",8.38667177554188 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",8.23058813870085 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",9.58857635794447 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",9.60239906458408 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",9.14485983170265 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",8.63036527267152 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",8.86900582461343 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",8.95238649716508 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",8.1691969777561 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",8.85985107686154 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",9.03434328656298 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",9.20032616672139 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",8.68107872535401 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",9.09084285687221 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",8.52903744466317 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",9.25551508514158 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",8.79106025276792 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",8.8951141234742 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",8.37651210031568 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",9.56582253530077 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",8.91082496145286 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",8.31783565894238 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",9.28455041219513 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",8.12533967815187 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",7.98702202674401 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",7.67213437192725 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",8.9298591370508 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",8.00286024989547 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",8.24504777120446 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",8.01074114591937 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",8.49099173972023 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",8.38776728802796 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",8.01046089853921 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",8.21422622095009 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",8.31491429231283 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",8.48170960679554 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",7.76977369148765 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",8.08780068311852 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",7.86438407471702 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",8.75852324885318 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",8.07677478871727 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",7.67882350889006 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",8.44711179386306 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",8.00427564070436 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",9.13754509200231 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",8.06782951880509 -"BNU-ESM","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",8.22557199367415 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",4.80483543305171 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",5.79374594897421 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",5.7614276128396 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",5.07078870945733 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",5.74082594180505 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",5.89288432603197 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",5.93654906378337 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",5.5665438426009 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",5.5805110772006 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",6.22772373995058 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",5.96849581877108 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",5.63972424592148 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",6.07567853236008 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",6.96190747369288 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",6.86157265804866 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",7.34738338368998 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",6.38178365524891 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",6.11091681112421 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",6.14356983382375 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",6.12017076287833 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",6.1262148860018 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",7.05719959058115 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",6.85266788715953 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",7.25278172254984 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",7.07489054263168 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",6.86985944468994 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",6.84735111436616 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",6.45834518347353 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",7.923074581644 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",7.92939936712311 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",8.00061776928152 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",6.79370639219418 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",7.47791641466966 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",7.03414179451887 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",7.34329203808318 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",7.34381119755792 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",8.42952650822911 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",8.65790924122519 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",7.45214686683321 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",7.41748572474406 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",7.84784916435184 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",7.83774136655804 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",7.71949686669881 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",7.7239215812069 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",7.73619034737273 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",7.55525009378819 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",8.39748224613193 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",8.03495213078759 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",7.56062879677271 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",8.07628592155722 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",7.55472829898616 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",7.31426390806135 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",6.7645688960901 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",7.16104334450264 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",7.1055986937964 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",6.94644864385102 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",7.48000227621412 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",7.67462778437909 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",7.82200187436055 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",6.77875881584521 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",6.9918724625638 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",7.4166582319772 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",6.81037483725891 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",6.09040737654455 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",7.1001765079117 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",5.86739412288752 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",6.48570383366161 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",5.54652853188681 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",5.96225668142866 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",6.65521071982902 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",5.27840506346366 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",5.61342763262844 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",4.71360567317012 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",5.52656329239108 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",5.13335796747306 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",4.39264521038723 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",4.40987761549052 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",4.90547989965168 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",5.2678347657317 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",4.02976591417789 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",4.57465013619409 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",5.16904293421165 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",5.1431587496384 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",4.53865156550882 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",4.78759380430293 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",4.84632866112195 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",5.05483970874084 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",4.49127365161573 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",4.36963748554332 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",4.01688575208241 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",4.80225940063261 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",4.50974993119658 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",3.75012870085549 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",4.68132027862655 -"BNU-ESM","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",4.28554155661672 -"CanESM2","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",7.36088038769236 -"CanESM2","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",6.92567693773245 -"CanESM2","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",7.31491867118468 -"CanESM2","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",7.78987757652061 -"CanESM2","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",7.54498750981765 -"CanESM2","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",7.0817802366967 -"CanESM2","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",7.92380407041356 -"CanESM2","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",7.44335193434203 -"CanESM2","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",8.02989786844052 -"CanESM2","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",8.61605052171119 -"CanESM2","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",7.63969889168159 -"CanESM2","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",7.63215614420132 -"CanESM2","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",7.77251372662269 -"CanESM2","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",8.02152934263282 -"CanESM2","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",8.47663280248062 -"CanESM2","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",8.7147965415068 -"CanESM2","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",8.2122705441274 -"CanESM2","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",8.01532776076314 -"CanESM2","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",8.06764502914165 -"CanESM2","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",8.06407809458539 -"CanESM2","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",8.35356063661361 -"CanESM2","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",8.48927839655465 -"CanESM2","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",8.31950296256806 -"CanESM2","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",8.87476112288767 -"CanESM2","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",8.80889895084811 -"CanESM2","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",8.15576979272203 -"CanESM2","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",8.85794452381872 -"CanESM2","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",8.65558827999441 -"CanESM2","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",8.93674886601268 -"CanESM2","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",8.98688470702327 -"CanESM2","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",8.69015109151117 -"CanESM2","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",8.94605168446121 -"CanESM2","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",8.70926699078539 -"CanESM2","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",8.85379312715969 -"CanESM2","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",8.98359206634749 -"CanESM2","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",9.23460238489058 -"CanESM2","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",9.35264278438143 -"CanESM2","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",9.61425943006583 -"CanESM2","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",9.39233874628378 -"CanESM2","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",9.55609397550769 -"CanESM2","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",9.39454735793556 -"CanESM2","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",8.95062644291789 -"CanESM2","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",9.33115561339632 -"CanESM2","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",9.42027371744721 -"CanESM2","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",9.22553442082875 -"CanESM2","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",8.99530938397465 -"CanESM2","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",9.22629201562456 -"CanESM2","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",9.02044214568158 -"CanESM2","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",8.99952428490333 -"CanESM2","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",8.81001506623993 -"CanESM2","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",8.78806910475936 -"CanESM2","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",8.57884860644103 -"CanESM2","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",8.60956350486108 -"CanESM2","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",8.70967832019512 -"CanESM2","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",8.67168360425335 -"CanESM2","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",8.97823787653911 -"CanESM2","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",8.55370871443014 -"CanESM2","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",8.25126439391164 -"CanESM2","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",8.0132570759286 -"CanESM2","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",7.77763038818038 -"CanESM2","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",8.0037503753512 -"CanESM2","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",8.16097491461323 -"CanESM2","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",7.9528941508186 -"CanESM2","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",7.82070589133803 -"CanESM2","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",7.66814078289221 -"CanESM2","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",7.68128015051551 -"CanESM2","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",7.16360604519393 -"CanESM2","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",7.01022875056261 -"CanESM2","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",6.63877088647598 -"CanESM2","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",6.55010087746461 -"CanESM2","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",6.58390542571956 -"CanESM2","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",6.56533388058833 -"CanESM2","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",6.5872424079731 -"CanESM2","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",6.30156611132782 -"CanESM2","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",6.16161807574019 -"CanESM2","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",5.89433751766912 -"CanESM2","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",5.98972070785934 -"CanESM2","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",5.79794516664648 -"CanESM2","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",5.64372426792783 -"CanESM2","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",5.7399290028275 -"CanESM2","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",5.59976482990106 -"CanESM2","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",5.4594974903892 -"CanESM2","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",5.05341130511818 -"CanESM2","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",5.08014437442026 -"CanESM2","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",5.44725074769297 -"CanESM2","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",5.70186387513413 -"CanESM2","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",5.41817916151383 -"CanESM2","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",5.7512784413347 -"CanESM2","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",5.46814721755934 -"CanESM2","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",5.28313009039109 -"CanESM2","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",4.82365308035149 -"CanESM2","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",5.08422201699769 -"CanESM2","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",5.59382172154995 -"CanESM2","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",5.45019823709266 -"CanESM2","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",4.98974771774045 -"CanESM2","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",5.38499049326346 -"CanESM2","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",4.99057438735587 -"CanESM2","fgco2","ocean","fgco2","rcp45",2103,"Simulated","PgC/yr","global",4.98380839736331 -"CanESM2","fgco2","ocean","fgco2","rcp45",2104,"Simulated","PgC/yr","global",4.98036635453735 -"CanESM2","fgco2","ocean","fgco2","rcp45",2105,"Simulated","PgC/yr","global",5.09813056616074 -"CanESM2","fgco2","ocean","fgco2","rcp45",2106,"Simulated","PgC/yr","global",5.3236654227628 -"CanESM2","fgco2","ocean","fgco2","rcp45",2107,"Simulated","PgC/yr","global",4.52162877930067 -"CanESM2","fgco2","ocean","fgco2","rcp45",2108,"Simulated","PgC/yr","global",4.9464366917301 -"CanESM2","fgco2","ocean","fgco2","rcp45",2109,"Simulated","PgC/yr","global",4.66700286479128 -"CanESM2","fgco2","ocean","fgco2","rcp45",2110,"Simulated","PgC/yr","global",4.39692199125071 -"CanESM2","fgco2","ocean","fgco2","rcp45",2111,"Simulated","PgC/yr","global",4.02943002450913 -"CanESM2","fgco2","ocean","fgco2","rcp45",2112,"Simulated","PgC/yr","global",4.45317173367446 -"CanESM2","fgco2","ocean","fgco2","rcp45",2113,"Simulated","PgC/yr","global",4.69157623187031 -"CanESM2","fgco2","ocean","fgco2","rcp45",2114,"Simulated","PgC/yr","global",5.28659174155294 -"CanESM2","fgco2","ocean","fgco2","rcp45",2115,"Simulated","PgC/yr","global",5.0571123785177 -"CanESM2","fgco2","ocean","fgco2","rcp45",2116,"Simulated","PgC/yr","global",5.59680564234644 -"CanESM2","fgco2","ocean","fgco2","rcp45",2117,"Simulated","PgC/yr","global",4.19403699082332 -"CanESM2","fgco2","ocean","fgco2","rcp45",2118,"Simulated","PgC/yr","global",4.14459947395686 -"CanESM2","fgco2","ocean","fgco2","rcp45",2119,"Simulated","PgC/yr","global",4.11899666924353 -"CanESM2","fgco2","ocean","fgco2","rcp45",2120,"Simulated","PgC/yr","global",4.21636821153975 -"CanESM2","fgco2","ocean","fgco2","rcp45",2121,"Simulated","PgC/yr","global",3.60652612605917 -"CanESM2","fgco2","ocean","fgco2","rcp45",2122,"Simulated","PgC/yr","global",4.14149779173403 -"CanESM2","fgco2","ocean","fgco2","rcp45",2123,"Simulated","PgC/yr","global",4.38023875114802 -"CanESM2","fgco2","ocean","fgco2","rcp45",2124,"Simulated","PgC/yr","global",3.09644869114156 -"CanESM2","fgco2","ocean","fgco2","rcp45",2125,"Simulated","PgC/yr","global",3.99014539201651 -"CanESM2","fgco2","ocean","fgco2","rcp45",2126,"Simulated","PgC/yr","global",3.5956045057896 -"CanESM2","fgco2","ocean","fgco2","rcp45",2127,"Simulated","PgC/yr","global",3.96601488366003 -"CanESM2","fgco2","ocean","fgco2","rcp45",2128,"Simulated","PgC/yr","global",3.5056941581221 -"CanESM2","fgco2","ocean","fgco2","rcp45",2129,"Simulated","PgC/yr","global",3.98816561855745 -"CanESM2","fgco2","ocean","fgco2","rcp45",2130,"Simulated","PgC/yr","global",4.04710482250633 -"CanESM2","fgco2","ocean","fgco2","rcp45",2131,"Simulated","PgC/yr","global",3.34455095977875 -"CanESM2","fgco2","ocean","fgco2","rcp45",2132,"Simulated","PgC/yr","global",4.09417875502086 -"CanESM2","fgco2","ocean","fgco2","rcp45",2133,"Simulated","PgC/yr","global",3.69694562199385 -"CanESM2","fgco2","ocean","fgco2","rcp45",2134,"Simulated","PgC/yr","global",4.14834622586613 -"CanESM2","fgco2","ocean","fgco2","rcp45",2135,"Simulated","PgC/yr","global",3.47467176534375 -"CanESM2","fgco2","ocean","fgco2","rcp45",2136,"Simulated","PgC/yr","global",3.56016299572071 -"CanESM2","fgco2","ocean","fgco2","rcp45",2137,"Simulated","PgC/yr","global",3.41043942481417 -"CanESM2","fgco2","ocean","fgco2","rcp45",2138,"Simulated","PgC/yr","global",2.79792514651337 -"CanESM2","fgco2","ocean","fgco2","rcp45",2139,"Simulated","PgC/yr","global",3.48164386568517 -"CanESM2","fgco2","ocean","fgco2","rcp45",2140,"Simulated","PgC/yr","global",3.97133085949561 -"CanESM2","fgco2","ocean","fgco2","rcp45",2141,"Simulated","PgC/yr","global",3.97657441818159 -"CanESM2","fgco2","ocean","fgco2","rcp45",2142,"Simulated","PgC/yr","global",3.23323187446969 -"CanESM2","fgco2","ocean","fgco2","rcp45",2143,"Simulated","PgC/yr","global",4.1458779151748 -"CanESM2","fgco2","ocean","fgco2","rcp45",2144,"Simulated","PgC/yr","global",4.73378930248173 -"CanESM2","fgco2","ocean","fgco2","rcp45",2145,"Simulated","PgC/yr","global",3.9296754009361 -"CanESM2","fgco2","ocean","fgco2","rcp45",2146,"Simulated","PgC/yr","global",3.42487327683929 -"CanESM2","fgco2","ocean","fgco2","rcp45",2147,"Simulated","PgC/yr","global",3.72829779133037 -"CanESM2","fgco2","ocean","fgco2","rcp45",2148,"Simulated","PgC/yr","global",3.48258751684995 -"CanESM2","fgco2","ocean","fgco2","rcp45",2149,"Simulated","PgC/yr","global",3.95477574204221 -"CanESM2","fgco2","ocean","fgco2","rcp45",2150,"Simulated","PgC/yr","global",4.18121302773928 -"CanESM2","fgco2","ocean","fgco2","rcp45",2151,"Simulated","PgC/yr","global",3.35394346408177 -"CanESM2","fgco2","ocean","fgco2","rcp45",2152,"Simulated","PgC/yr","global",3.49010998752833 -"CanESM2","fgco2","ocean","fgco2","rcp45",2153,"Simulated","PgC/yr","global",3.70599386630879 -"CanESM2","fgco2","ocean","fgco2","rcp45",2154,"Simulated","PgC/yr","global",3.48807339445959 -"CanESM2","fgco2","ocean","fgco2","rcp45",2155,"Simulated","PgC/yr","global",4.12108506842698 -"CanESM2","fgco2","ocean","fgco2","rcp45",2156,"Simulated","PgC/yr","global",3.34573971514217 -"CanESM2","fgco2","ocean","fgco2","rcp45",2157,"Simulated","PgC/yr","global",3.77620006462532 -"CanESM2","fgco2","ocean","fgco2","rcp45",2158,"Simulated","PgC/yr","global",2.96539147612673 -"CanESM2","fgco2","ocean","fgco2","rcp45",2159,"Simulated","PgC/yr","global",3.30676146289784 -"CanESM2","fgco2","ocean","fgco2","rcp45",2160,"Simulated","PgC/yr","global",3.36505559716028 -"CanESM2","fgco2","ocean","fgco2","rcp45",2161,"Simulated","PgC/yr","global",3.68318079302002 -"CanESM2","fgco2","ocean","fgco2","rcp45",2162,"Simulated","PgC/yr","global",3.13189744292541 -"CanESM2","fgco2","ocean","fgco2","rcp45",2163,"Simulated","PgC/yr","global",3.19595598229595 -"CanESM2","fgco2","ocean","fgco2","rcp45",2164,"Simulated","PgC/yr","global",2.66043171806415 -"CanESM2","fgco2","ocean","fgco2","rcp45",2165,"Simulated","PgC/yr","global",2.83522276383199 -"CanESM2","fgco2","ocean","fgco2","rcp45",2166,"Simulated","PgC/yr","global",2.57455723384932 -"CanESM2","fgco2","ocean","fgco2","rcp45",2167,"Simulated","PgC/yr","global",3.2767512390489 -"CanESM2","fgco2","ocean","fgco2","rcp45",2168,"Simulated","PgC/yr","global",3.59160485091173 -"CanESM2","fgco2","ocean","fgco2","rcp45",2169,"Simulated","PgC/yr","global",3.58930755610444 -"CanESM2","fgco2","ocean","fgco2","rcp45",2170,"Simulated","PgC/yr","global",3.45324631605231 -"CanESM2","fgco2","ocean","fgco2","rcp45",2171,"Simulated","PgC/yr","global",3.29735391810989 -"CanESM2","fgco2","ocean","fgco2","rcp45",2172,"Simulated","PgC/yr","global",2.69091655277047 -"CanESM2","fgco2","ocean","fgco2","rcp45",2173,"Simulated","PgC/yr","global",3.13639064853054 -"CanESM2","fgco2","ocean","fgco2","rcp45",2174,"Simulated","PgC/yr","global",2.66165111145241 -"CanESM2","fgco2","ocean","fgco2","rcp45",2175,"Simulated","PgC/yr","global",3.25926249742067 -"CanESM2","fgco2","ocean","fgco2","rcp45",2176,"Simulated","PgC/yr","global",2.59664000803713 -"CanESM2","fgco2","ocean","fgco2","rcp45",2177,"Simulated","PgC/yr","global",2.48130789853028 -"CanESM2","fgco2","ocean","fgco2","rcp45",2178,"Simulated","PgC/yr","global",3.03445626875458 -"CanESM2","fgco2","ocean","fgco2","rcp45",2179,"Simulated","PgC/yr","global",3.09782963047892 -"CanESM2","fgco2","ocean","fgco2","rcp45",2180,"Simulated","PgC/yr","global",2.7590070562087 -"CanESM2","fgco2","ocean","fgco2","rcp45",2181,"Simulated","PgC/yr","global",2.17576323272095 -"CanESM2","fgco2","ocean","fgco2","rcp45",2182,"Simulated","PgC/yr","global",2.83600152671768 -"CanESM2","fgco2","ocean","fgco2","rcp45",2183,"Simulated","PgC/yr","global",2.39017871452953 -"CanESM2","fgco2","ocean","fgco2","rcp45",2184,"Simulated","PgC/yr","global",3.18378154533832 -"CanESM2","fgco2","ocean","fgco2","rcp45",2185,"Simulated","PgC/yr","global",2.77015595491702 -"CanESM2","fgco2","ocean","fgco2","rcp45",2186,"Simulated","PgC/yr","global",2.55619614409591 -"CanESM2","fgco2","ocean","fgco2","rcp45",2187,"Simulated","PgC/yr","global",2.07777781581812 -"CanESM2","fgco2","ocean","fgco2","rcp45",2188,"Simulated","PgC/yr","global",3.36050445783547 -"CanESM2","fgco2","ocean","fgco2","rcp45",2189,"Simulated","PgC/yr","global",2.99875294283713 -"CanESM2","fgco2","ocean","fgco2","rcp45",2190,"Simulated","PgC/yr","global",2.48990548535271 -"CanESM2","fgco2","ocean","fgco2","rcp45",2191,"Simulated","PgC/yr","global",2.88082607115466 -"CanESM2","fgco2","ocean","fgco2","rcp45",2192,"Simulated","PgC/yr","global",2.61172728557364 -"CanESM2","fgco2","ocean","fgco2","rcp45",2193,"Simulated","PgC/yr","global",3.09121460239052 -"CanESM2","fgco2","ocean","fgco2","rcp45",2194,"Simulated","PgC/yr","global",2.62652656567676 -"CanESM2","fgco2","ocean","fgco2","rcp45",2195,"Simulated","PgC/yr","global",2.54682425082777 -"CanESM2","fgco2","ocean","fgco2","rcp45",2196,"Simulated","PgC/yr","global",2.43980005954496 -"CanESM2","fgco2","ocean","fgco2","rcp45",2197,"Simulated","PgC/yr","global",2.66280310118603 -"CanESM2","fgco2","ocean","fgco2","rcp45",2198,"Simulated","PgC/yr","global",2.97675539806385 -"CanESM2","fgco2","ocean","fgco2","rcp45",2199,"Simulated","PgC/yr","global",2.90182648748345 -"CanESM2","fgco2","ocean","fgco2","rcp45",2200,"Simulated","PgC/yr","global",3.14376327141475 -"CanESM2","fgco2","ocean","fgco2","rcp45",2201,"Simulated","PgC/yr","global",2.17361066080186 -"CanESM2","fgco2","ocean","fgco2","rcp45",2202,"Simulated","PgC/yr","global",2.20508883597868 -"CanESM2","fgco2","ocean","fgco2","rcp45",2203,"Simulated","PgC/yr","global",2.63333990534406 -"CanESM2","fgco2","ocean","fgco2","rcp45",2204,"Simulated","PgC/yr","global",2.41059422311157 -"CanESM2","fgco2","ocean","fgco2","rcp45",2205,"Simulated","PgC/yr","global",1.96247411611612 -"CanESM2","fgco2","ocean","fgco2","rcp45",2206,"Simulated","PgC/yr","global",4.32150510049301 -"CanESM2","fgco2","ocean","fgco2","rcp45",2207,"Simulated","PgC/yr","global",2.99779035180246 -"CanESM2","fgco2","ocean","fgco2","rcp45",2208,"Simulated","PgC/yr","global",3.35779215705548 -"CanESM2","fgco2","ocean","fgco2","rcp45",2209,"Simulated","PgC/yr","global",2.95098324863145 -"CanESM2","fgco2","ocean","fgco2","rcp45",2210,"Simulated","PgC/yr","global",2.40349734245083 -"CanESM2","fgco2","ocean","fgco2","rcp45",2211,"Simulated","PgC/yr","global",2.5717775294147 -"CanESM2","fgco2","ocean","fgco2","rcp45",2212,"Simulated","PgC/yr","global",3.7161495359576 -"CanESM2","fgco2","ocean","fgco2","rcp45",2213,"Simulated","PgC/yr","global",2.44631871711889 -"CanESM2","fgco2","ocean","fgco2","rcp45",2214,"Simulated","PgC/yr","global",2.47908970553256 -"CanESM2","fgco2","ocean","fgco2","rcp45",2215,"Simulated","PgC/yr","global",2.66936186671973 -"CanESM2","fgco2","ocean","fgco2","rcp45",2216,"Simulated","PgC/yr","global",1.58988732437274 -"CanESM2","fgco2","ocean","fgco2","rcp45",2217,"Simulated","PgC/yr","global",2.34890093925793 -"CanESM2","fgco2","ocean","fgco2","rcp45",2218,"Simulated","PgC/yr","global",2.72861135030189 -"CanESM2","fgco2","ocean","fgco2","rcp45",2219,"Simulated","PgC/yr","global",2.38067535628211 -"CanESM2","fgco2","ocean","fgco2","rcp45",2220,"Simulated","PgC/yr","global",2.55253907804114 -"CanESM2","fgco2","ocean","fgco2","rcp45",2221,"Simulated","PgC/yr","global",3.84911800666684 -"CanESM2","fgco2","ocean","fgco2","rcp45",2222,"Simulated","PgC/yr","global",2.65504722446394 -"CanESM2","fgco2","ocean","fgco2","rcp45",2223,"Simulated","PgC/yr","global",2.63959563295944 -"CanESM2","fgco2","ocean","fgco2","rcp45",2224,"Simulated","PgC/yr","global",2.55501741572243 -"CanESM2","fgco2","ocean","fgco2","rcp45",2225,"Simulated","PgC/yr","global",2.9297031906942 -"CanESM2","fgco2","ocean","fgco2","rcp45",2226,"Simulated","PgC/yr","global",1.90019369629574 -"CanESM2","fgco2","ocean","fgco2","rcp45",2227,"Simulated","PgC/yr","global",2.86957300316192 -"CanESM2","fgco2","ocean","fgco2","rcp45",2228,"Simulated","PgC/yr","global",2.15380969529242 -"CanESM2","fgco2","ocean","fgco2","rcp45",2229,"Simulated","PgC/yr","global",1.54237398687665 -"CanESM2","fgco2","ocean","fgco2","rcp45",2230,"Simulated","PgC/yr","global",3.04356356089919 -"CanESM2","fgco2","ocean","fgco2","rcp45",2231,"Simulated","PgC/yr","global",1.99294780972251 -"CanESM2","fgco2","ocean","fgco2","rcp45",2232,"Simulated","PgC/yr","global",2.25127482282812 -"CanESM2","fgco2","ocean","fgco2","rcp45",2233,"Simulated","PgC/yr","global",2.37445583724153 -"CanESM2","fgco2","ocean","fgco2","rcp45",2234,"Simulated","PgC/yr","global",2.08010017810027 -"CanESM2","fgco2","ocean","fgco2","rcp45",2235,"Simulated","PgC/yr","global",1.57712313328987 -"CanESM2","fgco2","ocean","fgco2","rcp45",2236,"Simulated","PgC/yr","global",1.08829729079917 -"CanESM2","fgco2","ocean","fgco2","rcp45",2237,"Simulated","PgC/yr","global",2.89797835156475 -"CanESM2","fgco2","ocean","fgco2","rcp45",2238,"Simulated","PgC/yr","global",3.09264511962261 -"CanESM2","fgco2","ocean","fgco2","rcp45",2239,"Simulated","PgC/yr","global",2.62198935272686 -"CanESM2","fgco2","ocean","fgco2","rcp45",2240,"Simulated","PgC/yr","global",2.28715696339958 -"CanESM2","fgco2","ocean","fgco2","rcp45",2241,"Simulated","PgC/yr","global",2.30921077072755 -"CanESM2","fgco2","ocean","fgco2","rcp45",2242,"Simulated","PgC/yr","global",2.51620182353721 -"CanESM2","fgco2","ocean","fgco2","rcp45",2243,"Simulated","PgC/yr","global",2.40353132280564 -"CanESM2","fgco2","ocean","fgco2","rcp45",2244,"Simulated","PgC/yr","global",1.91799271755726 -"CanESM2","fgco2","ocean","fgco2","rcp45",2245,"Simulated","PgC/yr","global",2.81841752868498 -"CanESM2","fgco2","ocean","fgco2","rcp45",2246,"Simulated","PgC/yr","global",3.09047316218962 -"CanESM2","fgco2","ocean","fgco2","rcp45",2247,"Simulated","PgC/yr","global",2.98039296719372 -"CanESM2","fgco2","ocean","fgco2","rcp45",2248,"Simulated","PgC/yr","global",1.81460219601934 -"CanESM2","fgco2","ocean","fgco2","rcp45",2249,"Simulated","PgC/yr","global",1.86843153448149 -"CanESM2","fgco2","ocean","fgco2","rcp45",2250,"Simulated","PgC/yr","global",2.0882108988554 -"CanESM2","fgco2","ocean","fgco2","rcp45",2251,"Simulated","PgC/yr","global",2.28590303260152 -"CanESM2","fgco2","ocean","fgco2","rcp45",2252,"Simulated","PgC/yr","global",1.86253399322913 -"CanESM2","fgco2","ocean","fgco2","rcp45",2253,"Simulated","PgC/yr","global",2.67509229147303 -"CanESM2","fgco2","ocean","fgco2","rcp45",2254,"Simulated","PgC/yr","global",1.65665872157829 -"CanESM2","fgco2","ocean","fgco2","rcp45",2255,"Simulated","PgC/yr","global",1.98171925214964 -"CanESM2","fgco2","ocean","fgco2","rcp45",2256,"Simulated","PgC/yr","global",2.5935182718344 -"CanESM2","fgco2","ocean","fgco2","rcp45",2257,"Simulated","PgC/yr","global",1.44835636130587 -"CanESM2","fgco2","ocean","fgco2","rcp45",2258,"Simulated","PgC/yr","global",2.10016028559428 -"CanESM2","fgco2","ocean","fgco2","rcp45",2259,"Simulated","PgC/yr","global",2.29833427191272 -"CanESM2","fgco2","ocean","fgco2","rcp45",2260,"Simulated","PgC/yr","global",2.47541815604788 -"CanESM2","fgco2","ocean","fgco2","rcp45",2261,"Simulated","PgC/yr","global",2.76230426473546 -"CanESM2","fgco2","ocean","fgco2","rcp45",2262,"Simulated","PgC/yr","global",1.81811164249992 -"CanESM2","fgco2","ocean","fgco2","rcp45",2263,"Simulated","PgC/yr","global",2.4327622267139 -"CanESM2","fgco2","ocean","fgco2","rcp45",2264,"Simulated","PgC/yr","global",2.86235134218188 -"CanESM2","fgco2","ocean","fgco2","rcp45",2265,"Simulated","PgC/yr","global",3.06845054994148 -"CanESM2","fgco2","ocean","fgco2","rcp45",2266,"Simulated","PgC/yr","global",2.35692141710355 -"CanESM2","fgco2","ocean","fgco2","rcp45",2267,"Simulated","PgC/yr","global",1.00814359428618 -"CanESM2","fgco2","ocean","fgco2","rcp45",2268,"Simulated","PgC/yr","global",2.26274514226965 -"CanESM2","fgco2","ocean","fgco2","rcp45",2269,"Simulated","PgC/yr","global",1.66126941008227 -"CanESM2","fgco2","ocean","fgco2","rcp45",2270,"Simulated","PgC/yr","global",1.69134659194184 -"CanESM2","fgco2","ocean","fgco2","rcp45",2271,"Simulated","PgC/yr","global",2.33037161889546 -"CanESM2","fgco2","ocean","fgco2","rcp45",2272,"Simulated","PgC/yr","global",1.79760979039336 -"CanESM2","fgco2","ocean","fgco2","rcp45",2273,"Simulated","PgC/yr","global",3.02442482237008 -"CanESM2","fgco2","ocean","fgco2","rcp45",2274,"Simulated","PgC/yr","global",2.24215416136358 -"CanESM2","fgco2","ocean","fgco2","rcp45",2275,"Simulated","PgC/yr","global",2.97173410432163 -"CanESM2","fgco2","ocean","fgco2","rcp45",2276,"Simulated","PgC/yr","global",2.65406402239438 -"CanESM2","fgco2","ocean","fgco2","rcp45",2277,"Simulated","PgC/yr","global",2.28142876686627 -"CanESM2","fgco2","ocean","fgco2","rcp45",2278,"Simulated","PgC/yr","global",1.30566733660591 -"CanESM2","fgco2","ocean","fgco2","rcp45",2279,"Simulated","PgC/yr","global",1.27745857291149 -"CanESM2","fgco2","ocean","fgco2","rcp45",2280,"Simulated","PgC/yr","global",2.85560039267423 -"CanESM2","fgco2","ocean","fgco2","rcp45",2281,"Simulated","PgC/yr","global",2.61638537945786 -"CanESM2","fgco2","ocean","fgco2","rcp45",2282,"Simulated","PgC/yr","global",0.0387560987115501 -"CanESM2","fgco2","ocean","fgco2","rcp45",2283,"Simulated","PgC/yr","global",2.07713441729668 -"CanESM2","fgco2","ocean","fgco2","rcp45",2284,"Simulated","PgC/yr","global",2.3988955111213 -"CanESM2","fgco2","ocean","fgco2","rcp45",2285,"Simulated","PgC/yr","global",2.33913242283198 -"CanESM2","fgco2","ocean","fgco2","rcp45",2286,"Simulated","PgC/yr","global",1.61922551707341 -"CanESM2","fgco2","ocean","fgco2","rcp45",2287,"Simulated","PgC/yr","global",3.0628805570273 -"CanESM2","fgco2","ocean","fgco2","rcp45",2288,"Simulated","PgC/yr","global",1.71441139838372 -"CanESM2","fgco2","ocean","fgco2","rcp45",2289,"Simulated","PgC/yr","global",2.3363465907924 -"CanESM2","fgco2","ocean","fgco2","rcp45",2290,"Simulated","PgC/yr","global",1.92867480417815 -"CanESM2","fgco2","ocean","fgco2","rcp45",2291,"Simulated","PgC/yr","global",0.703778709684262 -"CanESM2","fgco2","ocean","fgco2","rcp45",2292,"Simulated","PgC/yr","global",1.48989483831603 -"CanESM2","fgco2","ocean","fgco2","rcp45",2293,"Simulated","PgC/yr","global",1.61992150158656 -"CanESM2","fgco2","ocean","fgco2","rcp45",2294,"Simulated","PgC/yr","global",1.9739371938427 -"CanESM2","fgco2","ocean","fgco2","rcp45",2295,"Simulated","PgC/yr","global",2.52340621581235 -"CanESM2","fgco2","ocean","fgco2","rcp45",2296,"Simulated","PgC/yr","global",2.03411027460975 -"CanESM2","fgco2","ocean","fgco2","rcp45",2297,"Simulated","PgC/yr","global",1.98987063791954 -"CanESM2","fgco2","ocean","fgco2","rcp45",2298,"Simulated","PgC/yr","global",2.55535109166559 -"CanESM2","fgco2","ocean","fgco2","rcp45",2299,"Simulated","PgC/yr","global",1.9724905220157 -"CanESM2","fgco2","ocean","fgco2","rcp45",2300,"Simulated","PgC/yr","global",2.49532563047272 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",-0.443188241322742 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",-0.500753069311245 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",-0.652876592472089 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",-0.509556082406524 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",-0.487676104086702 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",-0.623134252027588 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",-0.375335528141324 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",-0.2772378032864 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",-0.301440086776581 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",-0.139512414538454 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",-0.364338412515996 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",-0.522809610148861 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",-0.45863300800673 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",-0.327497478601287 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",-0.150888039357982 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",-0.131106566756558 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",-0.152384751955749 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",-0.413510027078971 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",-0.290293155584136 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",-0.242400694878848 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",-0.275138131498351 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",-0.284233245870416 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",-0.26194600238216 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",-0.241489713828967 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",-0.235219948069681 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",-0.352722096324015 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",-0.266025541009876 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",-0.313525436322627 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",-0.203363830872865 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",-0.243703803091392 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",-0.224335744478025 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",-0.333339865734697 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",-0.259107460429411 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",-0.165089905173605 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",-0.0836130060383951 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",-0.0471782724034781 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.0588795275636802 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",-0.0972083497652884 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",-0.0328889463879582 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.0685455582618616 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",0.0397399920625167 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.0672915374348386 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.0656755340872564 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.273711220526515 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",0.149912027781377 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.0426063670860112 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.154786351189302 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",0.0508961403471855 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",-0.0390860973575483 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",-0.118756763892988 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.0238137663331896 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.0351381391571058 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",-0.0511721813781909 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",0.0828797124400737 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",-0.0126527388017444 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.0974932588969754 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.000370455185956386 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",-0.0228769827992855 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",-0.155372689491495 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",-0.141573269310913 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",-0.0569463433189505 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.000367043561408709 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",0.0207367924960069 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",-0.0893045405822918 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",0.0632206618918591 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",-0.0725998845728122 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",-0.153411221671729 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",-0.125272740199913 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",-0.280974603357811 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",-0.130972229893231 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",-0.362556545298194 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",-0.190000181702231 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",-0.155526601396604 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",-0.257555831424835 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",-0.127276363013313 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",-0.245149623300803 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",-0.299926725424481 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",-0.390414944470019 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",-0.426884829382364 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",-0.363973716353974 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",-0.47335116235634 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",-0.244660517625182 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",-0.468214915819576 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",-0.536408626248736 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",-0.397542171170289 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",-0.460716845796367 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",-0.481338779270712 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",-0.281627104418797 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",-0.483133508087476 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",-0.485313544135216 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",-0.642796110431712 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",-0.39781897255169 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",-0.264910287447369 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",-0.442511887751391 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",-0.465478019312315 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",-0.449747009897779 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",-0.324516246546577 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2103,"Simulated","PgC/yr","HL",-0.357840153501197 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2104,"Simulated","PgC/yr","HL",-0.595350046732667 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2105,"Simulated","PgC/yr","HL",-0.647184330751898 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2106,"Simulated","PgC/yr","HL",-0.411348319722038 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2107,"Simulated","PgC/yr","HL",-0.483145201958081 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2108,"Simulated","PgC/yr","HL",-0.544017355120677 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2109,"Simulated","PgC/yr","HL",-0.552884626449608 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2110,"Simulated","PgC/yr","HL",-0.679347368096419 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2111,"Simulated","PgC/yr","HL",-0.789429485082756 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2112,"Simulated","PgC/yr","HL",-0.544867524394259 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2113,"Simulated","PgC/yr","HL",-0.510852211119956 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2114,"Simulated","PgC/yr","HL",-0.208895456297673 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2115,"Simulated","PgC/yr","HL",-0.458146692273003 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2116,"Simulated","PgC/yr","HL",-0.218944339343357 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2117,"Simulated","PgC/yr","HL",-0.710621505404431 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2118,"Simulated","PgC/yr","HL",-0.788798928357847 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2119,"Simulated","PgC/yr","HL",-0.720663637520561 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2120,"Simulated","PgC/yr","HL",-0.9058702478798 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2121,"Simulated","PgC/yr","HL",-0.928602468854519 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2122,"Simulated","PgC/yr","HL",-0.749904119501531 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2123,"Simulated","PgC/yr","HL",-0.426378509665729 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2124,"Simulated","PgC/yr","HL",-0.862069072419652 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2125,"Simulated","PgC/yr","HL",-0.864632435204542 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2126,"Simulated","PgC/yr","HL",-0.839328474984433 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2127,"Simulated","PgC/yr","HL",-0.571246657228037 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2128,"Simulated","PgC/yr","HL",-0.771849699606096 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2129,"Simulated","PgC/yr","HL",-0.737856944720478 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2130,"Simulated","PgC/yr","HL",-0.79584660024649 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2131,"Simulated","PgC/yr","HL",-0.841654974688123 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2132,"Simulated","PgC/yr","HL",-0.564659856537647 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2133,"Simulated","PgC/yr","HL",-0.579451275889334 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2134,"Simulated","PgC/yr","HL",-0.684382864888422 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2135,"Simulated","PgC/yr","HL",-0.738483105877004 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2136,"Simulated","PgC/yr","HL",-0.912851156890163 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2137,"Simulated","PgC/yr","HL",-0.830358363942377 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2138,"Simulated","PgC/yr","HL",-1.1382534155415 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2139,"Simulated","PgC/yr","HL",-0.801726377909146 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2140,"Simulated","PgC/yr","HL",-0.710254102235767 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2141,"Simulated","PgC/yr","HL",-0.730344337806208 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2142,"Simulated","PgC/yr","HL",-0.895729422813172 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2143,"Simulated","PgC/yr","HL",-0.816637721635977 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2144,"Simulated","PgC/yr","HL",-0.613724683669479 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2145,"Simulated","PgC/yr","HL",-0.831950969596517 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2146,"Simulated","PgC/yr","HL",-0.712452881650576 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2147,"Simulated","PgC/yr","HL",-0.849896831277802 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2148,"Simulated","PgC/yr","HL",-1.09086421225158 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2149,"Simulated","PgC/yr","HL",-0.620945275559626 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2150,"Simulated","PgC/yr","HL",-0.655264297728657 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2151,"Simulated","PgC/yr","HL",-0.72007711941474 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2152,"Simulated","PgC/yr","HL",-0.597163923640532 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2153,"Simulated","PgC/yr","HL",-0.915436248711212 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2154,"Simulated","PgC/yr","HL",-0.68346684502434 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2155,"Simulated","PgC/yr","HL",-0.679074345245124 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2156,"Simulated","PgC/yr","HL",-1.12676646839122 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2157,"Simulated","PgC/yr","HL",-0.770495698673454 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2158,"Simulated","PgC/yr","HL",-1.06574511470933 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2159,"Simulated","PgC/yr","HL",-0.841618649047522 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2160,"Simulated","PgC/yr","HL",-0.92479905817395 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2161,"Simulated","PgC/yr","HL",-0.96469945696707 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2162,"Simulated","PgC/yr","HL",-1.01392783241687 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2163,"Simulated","PgC/yr","HL",-0.927817486689416 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2164,"Simulated","PgC/yr","HL",-0.994378915239631 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2165,"Simulated","PgC/yr","HL",-1.17276443282011 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2166,"Simulated","PgC/yr","HL",-1.21762958463484 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2167,"Simulated","PgC/yr","HL",-1.09679988827443 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2168,"Simulated","PgC/yr","HL",-0.874544939520983 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2169,"Simulated","PgC/yr","HL",-0.61392878732593 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2170,"Simulated","PgC/yr","HL",-0.899245379908503 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2171,"Simulated","PgC/yr","HL",-0.807373439253231 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2172,"Simulated","PgC/yr","HL",-1.15163095470822 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2173,"Simulated","PgC/yr","HL",-1.06519002906422 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2174,"Simulated","PgC/yr","HL",-0.961994357835628 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2175,"Simulated","PgC/yr","HL",-1.02058197653231 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2176,"Simulated","PgC/yr","HL",-0.989267200950558 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2177,"Simulated","PgC/yr","HL",-1.12402189207957 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2178,"Simulated","PgC/yr","HL",-0.953806492095342 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2179,"Simulated","PgC/yr","HL",-0.983008326248634 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2180,"Simulated","PgC/yr","HL",-1.2542963379322 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2181,"Simulated","PgC/yr","HL",-1.21663286877004 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2182,"Simulated","PgC/yr","HL",-1.37802271385736 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2183,"Simulated","PgC/yr","HL",-1.30210229086603 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2184,"Simulated","PgC/yr","HL",-1.0895714175353 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2185,"Simulated","PgC/yr","HL",-1.18011083748833 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2186,"Simulated","PgC/yr","HL",-1.36436750746521 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2187,"Simulated","PgC/yr","HL",-1.35849610626305 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2188,"Simulated","PgC/yr","HL",-1.2857708468103 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2189,"Simulated","PgC/yr","HL",-1.1169056327371 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2190,"Simulated","PgC/yr","HL",-1.11871536288233 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2191,"Simulated","PgC/yr","HL",-0.886773825440309 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2192,"Simulated","PgC/yr","HL",-1.08487014981095 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2193,"Simulated","PgC/yr","HL",-1.07277512138919 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2194,"Simulated","PgC/yr","HL",-1.0519691545895 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2195,"Simulated","PgC/yr","HL",-1.00474781225069 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2196,"Simulated","PgC/yr","HL",-1.15278499874703 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2197,"Simulated","PgC/yr","HL",-1.15392303628211 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2198,"Simulated","PgC/yr","HL",-1.07934259816574 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2199,"Simulated","PgC/yr","HL",-1.19115947182904 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2200,"Simulated","PgC/yr","HL",-1.13487753608767 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2201,"Simulated","PgC/yr","HL",-1.50098691481187 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2202,"Simulated","PgC/yr","HL",-1.59925324637169 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2203,"Simulated","PgC/yr","HL",-1.3817309978033 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2204,"Simulated","PgC/yr","HL",-1.38587601878899 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2205,"Simulated","PgC/yr","HL",-1.19283874482207 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2206,"Simulated","PgC/yr","HL",-0.587096745078141 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2207,"Simulated","PgC/yr","HL",-0.792469227958119 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2208,"Simulated","PgC/yr","HL",-0.952769635568333 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2209,"Simulated","PgC/yr","HL",-1.26535334873341 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2210,"Simulated","PgC/yr","HL",-1.39496398082487 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2211,"Simulated","PgC/yr","HL",-1.29768275419449 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2212,"Simulated","PgC/yr","HL",-0.8040153908787 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2213,"Simulated","PgC/yr","HL",-1.15203377122971 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2214,"Simulated","PgC/yr","HL",-1.12771242788146 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2215,"Simulated","PgC/yr","HL",-0.979619923571677 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2216,"Simulated","PgC/yr","HL",-1.46077592349807 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2217,"Simulated","PgC/yr","HL",-1.38733858196718 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2218,"Simulated","PgC/yr","HL",-1.12486808046103 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2219,"Simulated","PgC/yr","HL",-0.927165698539863 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2220,"Simulated","PgC/yr","HL",-1.16402869680168 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2221,"Simulated","PgC/yr","HL",-0.923264590131826 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2222,"Simulated","PgC/yr","HL",-1.30018656946807 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2223,"Simulated","PgC/yr","HL",-1.22118253085279 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2224,"Simulated","PgC/yr","HL",-0.955504923131694 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2225,"Simulated","PgC/yr","HL",-1.14959406490633 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2226,"Simulated","PgC/yr","HL",-1.02181049642788 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2227,"Simulated","PgC/yr","HL",-1.16128362287852 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2228,"Simulated","PgC/yr","HL",-1.35084483160657 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2229,"Simulated","PgC/yr","HL",-1.34939296707596 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2230,"Simulated","PgC/yr","HL",-1.27066020967167 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2231,"Simulated","PgC/yr","HL",-1.43769744784408 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2232,"Simulated","PgC/yr","HL",-1.44753099780012 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2233,"Simulated","PgC/yr","HL",-1.44644628763242 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2234,"Simulated","PgC/yr","HL",-1.1750004501633 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2235,"Simulated","PgC/yr","HL",-1.27540850168419 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2236,"Simulated","PgC/yr","HL",-1.42440450263493 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2237,"Simulated","PgC/yr","HL",-1.3067236919422 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2238,"Simulated","PgC/yr","HL",-0.843854915196469 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2239,"Simulated","PgC/yr","HL",-1.20047343242805 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2240,"Simulated","PgC/yr","HL",-1.26884608395804 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2241,"Simulated","PgC/yr","HL",-1.1384032795428 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2242,"Simulated","PgC/yr","HL",-1.3266925932382 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2243,"Simulated","PgC/yr","HL",-1.06134797055598 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2244,"Simulated","PgC/yr","HL",-1.36490774770012 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2245,"Simulated","PgC/yr","HL",-1.0181101742662 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2246,"Simulated","PgC/yr","HL",-0.910380183976583 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2247,"Simulated","PgC/yr","HL",-1.30875966945632 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2248,"Simulated","PgC/yr","HL",-1.46649928527447 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2249,"Simulated","PgC/yr","HL",-1.46363909722082 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2250,"Simulated","PgC/yr","HL",-1.48346236421339 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2251,"Simulated","PgC/yr","HL",-1.19257791345289 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2252,"Simulated","PgC/yr","HL",-0.88340582483547 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2253,"Simulated","PgC/yr","HL",-1.0236903068615 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2254,"Simulated","PgC/yr","HL",-1.38062124118933 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2255,"Simulated","PgC/yr","HL",-1.26661811133435 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2256,"Simulated","PgC/yr","HL",-1.20043586275865 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2257,"Simulated","PgC/yr","HL",-1.43665719097172 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2258,"Simulated","PgC/yr","HL",-1.59752794431352 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2259,"Simulated","PgC/yr","HL",-1.1773748035077 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2260,"Simulated","PgC/yr","HL",-1.34684702069409 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2261,"Simulated","PgC/yr","HL",-1.06626951431102 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2262,"Simulated","PgC/yr","HL",-1.31075310118589 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2263,"Simulated","PgC/yr","HL",-1.34503646119634 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2264,"Simulated","PgC/yr","HL",-0.835011031608748 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2265,"Simulated","PgC/yr","HL",-1.12901791169138 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2266,"Simulated","PgC/yr","HL",-0.969342918820411 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2267,"Simulated","PgC/yr","HL",-1.02962880268294 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2268,"Simulated","PgC/yr","HL",-1.30639833694657 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2269,"Simulated","PgC/yr","HL",-1.38283743700716 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2270,"Simulated","PgC/yr","HL",-1.54003672965515 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2271,"Simulated","PgC/yr","HL",-1.04036543460368 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2272,"Simulated","PgC/yr","HL",-1.02516572500383 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2273,"Simulated","PgC/yr","HL",-1.15184824506983 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2274,"Simulated","PgC/yr","HL",-1.34104155301769 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2275,"Simulated","PgC/yr","HL",-1.1719923885544 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2276,"Simulated","PgC/yr","HL",-0.963711200498041 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2277,"Simulated","PgC/yr","HL",-1.26586539098248 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2278,"Simulated","PgC/yr","HL",-1.50658064878859 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2279,"Simulated","PgC/yr","HL",-1.66600451371493 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2280,"Simulated","PgC/yr","HL",-1.13984054746897 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2281,"Simulated","PgC/yr","HL",-1.06269417557488 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2282,"Simulated","PgC/yr","HL",-1.56734647895745 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2283,"Simulated","PgC/yr","HL",-1.60172148242194 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2284,"Simulated","PgC/yr","HL",-0.886640548489507 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2285,"Simulated","PgC/yr","HL",-1.17838512075389 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2286,"Simulated","PgC/yr","HL",-1.10504929197209 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2287,"Simulated","PgC/yr","HL",-0.936005518300208 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2288,"Simulated","PgC/yr","HL",-1.41802976738522 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2289,"Simulated","PgC/yr","HL",-1.3948493643059 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2290,"Simulated","PgC/yr","HL",-1.57065584433876 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2291,"Simulated","PgC/yr","HL",-1.77154343756822 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2292,"Simulated","PgC/yr","HL",-1.54995910326664 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2293,"Simulated","PgC/yr","HL",-1.19647777783214 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2294,"Simulated","PgC/yr","HL",-1.12101092773683 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2295,"Simulated","PgC/yr","HL",-1.37967503289332 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2296,"Simulated","PgC/yr","HL",-1.46175920385194 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2297,"Simulated","PgC/yr","HL",-1.66211327460194 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2298,"Simulated","PgC/yr","HL",-1.13786784955253 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2299,"Simulated","PgC/yr","HL",-1.39309793764318 -"CanESM2","fgco2","ocean","fgco2_HL","rcp45",2300,"Simulated","PgC/yr","HL",-1.28575749423465 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",7.80406845609901 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",7.42642980391147 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",7.96779527919237 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",8.29943350624316 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",8.03266358402927 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",7.70491465606573 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",8.29913936235373 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",7.72058962375921 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",8.33133816173106 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",8.75556306141152 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",8.00403718210203 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",8.15496542716722 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",8.23114679804914 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",8.34902681080295 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",8.6275205764084 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",8.84590297539645 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",8.36465512511358 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",8.42883804244798 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",8.35793817587075 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",8.30647854634911 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",8.62869866914928 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",8.77351152810334 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",8.5814486540142 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",9.11625212238474 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",9.04411878588048 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",8.50849186633787 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",9.12397003323194 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",8.96911361126046 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",9.14011324158499 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",9.2305895124084 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",8.91448705149414 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",9.27939160593874 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",8.96837455340289 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",9.01888328836517 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",9.0672046244747 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",9.28178022121102 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",9.29376312363093 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",9.71146773893853 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",9.42522704635751 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",9.4875498971107 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",9.35480604072213 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",8.88333529816033 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",9.26547827756755 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",9.14656335623567 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",9.07562290500832 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",8.95270280972367 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",9.07150583879587 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",8.96954619811525 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",9.03861065233797 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",8.92877171044915 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",8.76425576245321 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",8.54371023954333 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",8.66073607816562 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",8.62679858686164 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",8.68433662115435 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",8.88074470787695 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",8.55333885296045 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",8.27414130400642 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",8.16862993749656 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",7.91920369482854 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",8.06069657768443 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",8.16060783142135 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",7.93215721518918 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",7.91001032333677 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",7.60491995725379 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",7.75387984678815 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",7.31701738014471 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",7.13550158424155 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",6.91974542934167 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",6.68107317071608 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",6.94646226658638 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",6.7553339773374 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",6.74276885587137 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",6.55912179689318 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",6.28889459350315 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",6.13948713493008 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",6.28964711636146 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",6.1883599671263 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",6.07060910459087 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",6.10390293092986 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",6.07311606015134 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",5.70415778189214 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",5.52162642149647 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",5.6165527802408 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",5.84479307695436 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",6.16258074908811 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",5.89951806397962 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",6.03290577498108 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",5.95128056119398 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",5.76844367803502 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",5.46644912423506 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",5.48204140544512 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",5.85873181814386 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",5.89270989409797 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",5.45522576164568 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",5.83473756611937 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",5.31509094738565 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2103,"Simulated","PgC/yr","LL",5.34164829074833 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2104,"Simulated","PgC/yr","LL",5.57571646736003 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2105,"Simulated","PgC/yr","LL",5.74531526348776 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2106,"Simulated","PgC/yr","LL",5.73501358968149 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2107,"Simulated","PgC/yr","LL",5.00477435936017 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2108,"Simulated","PgC/yr","LL",5.49045361724602 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2109,"Simulated","PgC/yr","LL",5.21988770271059 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2110,"Simulated","PgC/yr","LL",5.07626924621662 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2111,"Simulated","PgC/yr","LL",4.81885920634874 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2112,"Simulated","PgC/yr","LL",4.998039488391 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2113,"Simulated","PgC/yr","LL",5.20242871724288 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2114,"Simulated","PgC/yr","LL",5.49548734657229 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2115,"Simulated","PgC/yr","LL",5.51525908815316 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2116,"Simulated","PgC/yr","LL",5.81575001859574 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2117,"Simulated","PgC/yr","LL",4.90465828589366 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2118,"Simulated","PgC/yr","LL",4.93339847655956 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2119,"Simulated","PgC/yr","LL",4.83965978777495 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2120,"Simulated","PgC/yr","LL",5.12223800015444 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2121,"Simulated","PgC/yr","LL",4.53512888299036 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2122,"Simulated","PgC/yr","LL",4.89140142372055 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2123,"Simulated","PgC/yr","LL",4.80661696042865 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2124,"Simulated","PgC/yr","LL",3.95851772520674 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2125,"Simulated","PgC/yr","LL",4.85477804406456 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2126,"Simulated","PgC/yr","LL",4.4349331574068 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2127,"Simulated","PgC/yr","LL",4.5372619477204 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2128,"Simulated","PgC/yr","LL",4.27754341881705 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2129,"Simulated","PgC/yr","LL",4.72602276743771 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2130,"Simulated","PgC/yr","LL",4.84295112704056 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2131,"Simulated","PgC/yr","LL",4.18620662065755 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2132,"Simulated","PgC/yr","LL",4.65883857729732 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2133,"Simulated","PgC/yr","LL",4.27639747139484 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2134,"Simulated","PgC/yr","LL",4.83272957947109 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2135,"Simulated","PgC/yr","LL",4.21315463868964 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2136,"Simulated","PgC/yr","LL",4.47301445527681 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2137,"Simulated","PgC/yr","LL",4.24079771626699 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2138,"Simulated","PgC/yr","LL",3.93617862520995 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2139,"Simulated","PgC/yr","LL",4.2833703504757 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2140,"Simulated","PgC/yr","LL",4.6815854202743 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2141,"Simulated","PgC/yr","LL",4.70691858645695 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2142,"Simulated","PgC/yr","LL",4.12896140271897 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2143,"Simulated","PgC/yr","LL",4.962516066542 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2144,"Simulated","PgC/yr","LL",5.34751362610628 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2145,"Simulated","PgC/yr","LL",4.76162584140376 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2146,"Simulated","PgC/yr","LL",4.13732629736938 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2147,"Simulated","PgC/yr","LL",4.57819460173324 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2148,"Simulated","PgC/yr","LL",4.57345150781028 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2149,"Simulated","PgC/yr","LL",4.57572111902672 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2150,"Simulated","PgC/yr","LL",4.83647702193081 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2151,"Simulated","PgC/yr","LL",4.07402040673817 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2152,"Simulated","PgC/yr","LL",4.08727395007307 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2153,"Simulated","PgC/yr","LL",4.62143005534461 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2154,"Simulated","PgC/yr","LL",4.17154020048436 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2155,"Simulated","PgC/yr","LL",4.80015944950994 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2156,"Simulated","PgC/yr","LL",4.47250619891082 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2157,"Simulated","PgC/yr","LL",4.54669598239443 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2158,"Simulated","PgC/yr","LL",4.0311362758574 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2159,"Simulated","PgC/yr","LL",4.14837992509027 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2160,"Simulated","PgC/yr","LL",4.28985488621982 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2161,"Simulated","PgC/yr","LL",4.64788024764506 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2162,"Simulated","PgC/yr","LL",4.14582536790746 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2163,"Simulated","PgC/yr","LL",4.12377358447578 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2164,"Simulated","PgC/yr","LL",3.65481036641815 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2165,"Simulated","PgC/yr","LL",4.00798737933718 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2166,"Simulated","PgC/yr","LL",3.79218703647714 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2167,"Simulated","PgC/yr","LL",4.37355171881809 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2168,"Simulated","PgC/yr","LL",4.46614967549768 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2169,"Simulated","PgC/yr","LL",4.20323652775657 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2170,"Simulated","PgC/yr","LL",4.35249179389169 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2171,"Simulated","PgC/yr","LL",4.10472724610383 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2172,"Simulated","PgC/yr","LL",3.84254803572705 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2173,"Simulated","PgC/yr","LL",4.20158042748939 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2174,"Simulated","PgC/yr","LL",3.62364552737941 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2175,"Simulated","PgC/yr","LL",4.27984479605635 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2176,"Simulated","PgC/yr","LL",3.58590701808459 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2177,"Simulated","PgC/yr","LL",3.60532980753358 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2178,"Simulated","PgC/yr","LL",3.98826257561101 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2179,"Simulated","PgC/yr","LL",4.08083777454287 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2180,"Simulated","PgC/yr","LL",4.01330368403112 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2181,"Simulated","PgC/yr","LL",3.3923964667679 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2182,"Simulated","PgC/yr","LL",4.21402370018111 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2183,"Simulated","PgC/yr","LL",3.6922809980574 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2184,"Simulated","PgC/yr","LL",4.27335314851606 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2185,"Simulated","PgC/yr","LL",3.95026709341473 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2186,"Simulated","PgC/yr","LL",3.92056349142821 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2187,"Simulated","PgC/yr","LL",3.43627387851318 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2188,"Simulated","PgC/yr","LL",4.64627535231027 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2189,"Simulated","PgC/yr","LL",4.11565855093067 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2190,"Simulated","PgC/yr","LL",3.6086201985597 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2191,"Simulated","PgC/yr","LL",3.7676006088919 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2192,"Simulated","PgC/yr","LL",3.69659738421039 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2193,"Simulated","PgC/yr","LL",4.16398936943508 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2194,"Simulated","PgC/yr","LL",3.67849596648904 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2195,"Simulated","PgC/yr","LL",3.55157268855453 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2196,"Simulated","PgC/yr","LL",3.59258546880417 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2197,"Simulated","PgC/yr","LL",3.81672652620767 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2198,"Simulated","PgC/yr","LL",4.05609773216045 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2199,"Simulated","PgC/yr","LL",4.09298614475357 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2200,"Simulated","PgC/yr","LL",4.27864100602533 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2201,"Simulated","PgC/yr","LL",3.67459727983085 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2202,"Simulated","PgC/yr","LL",3.80434251848401 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2203,"Simulated","PgC/yr","LL",4.01507072831849 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2204,"Simulated","PgC/yr","LL",3.79647023424802 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2205,"Simulated","PgC/yr","LL",3.15531336270158 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2206,"Simulated","PgC/yr","LL",4.90860153980782 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2207,"Simulated","PgC/yr","LL",3.79025926559641 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2208,"Simulated","PgC/yr","LL",4.3105620660564 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2209,"Simulated","PgC/yr","LL",4.21633645629428 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2210,"Simulated","PgC/yr","LL",3.79846058893501 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2211,"Simulated","PgC/yr","LL",3.86946002065856 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2212,"Simulated","PgC/yr","LL",4.52016518973742 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2213,"Simulated","PgC/yr","LL",3.59835266137503 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2214,"Simulated","PgC/yr","LL",3.60680194933994 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2215,"Simulated","PgC/yr","LL",3.64898201240027 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2216,"Simulated","PgC/yr","LL",3.05066375623915 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2217,"Simulated","PgC/yr","LL",3.73623948427897 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2218,"Simulated","PgC/yr","LL",3.85347981467363 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2219,"Simulated","PgC/yr","LL",3.30784100331253 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2220,"Simulated","PgC/yr","LL",3.71656778196417 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2221,"Simulated","PgC/yr","LL",4.77238314428441 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2222,"Simulated","PgC/yr","LL",3.95523349773728 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2223,"Simulated","PgC/yr","LL",3.86077793989914 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2224,"Simulated","PgC/yr","LL",3.5105224528451 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2225,"Simulated","PgC/yr","LL",4.07929688537357 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2226,"Simulated","PgC/yr","LL",2.92200425180067 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2227,"Simulated","PgC/yr","LL",4.03085654520821 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2228,"Simulated","PgC/yr","LL",3.50465474688843 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2229,"Simulated","PgC/yr","LL",2.89176679098196 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2230,"Simulated","PgC/yr","LL",4.31422369284238 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2231,"Simulated","PgC/yr","LL",3.4306451289077 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2232,"Simulated","PgC/yr","LL",3.6988058339798 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2233,"Simulated","PgC/yr","LL",3.82090257291633 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2234,"Simulated","PgC/yr","LL",3.25510039706547 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2235,"Simulated","PgC/yr","LL",2.85253101153433 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2236,"Simulated","PgC/yr","LL",2.51270189177932 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2237,"Simulated","PgC/yr","LL",4.20470203188651 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2238,"Simulated","PgC/yr","LL",3.93650007839665 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2239,"Simulated","PgC/yr","LL",3.8224624268754 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2240,"Simulated","PgC/yr","LL",3.55600286344619 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2241,"Simulated","PgC/yr","LL",3.44761387455969 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2242,"Simulated","PgC/yr","LL",3.84289414314047 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2243,"Simulated","PgC/yr","LL",3.46487941917168 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2244,"Simulated","PgC/yr","LL",3.28290088239797 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2245,"Simulated","PgC/yr","LL",3.83652813733244 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2246,"Simulated","PgC/yr","LL",4.00085329954323 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2247,"Simulated","PgC/yr","LL",4.28915271487837 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2248,"Simulated","PgC/yr","LL",3.28110112384825 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2249,"Simulated","PgC/yr","LL",3.33207041873023 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2250,"Simulated","PgC/yr","LL",3.57167346923802 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2251,"Simulated","PgC/yr","LL",3.47848096639896 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2252,"Simulated","PgC/yr","LL",2.74594035883833 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2253,"Simulated","PgC/yr","LL",3.69878260211232 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2254,"Simulated","PgC/yr","LL",3.0372793558548 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2255,"Simulated","PgC/yr","LL",3.24833802715113 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2256,"Simulated","PgC/yr","LL",3.79395360664476 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2257,"Simulated","PgC/yr","LL",2.88501342934276 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2258,"Simulated","PgC/yr","LL",3.69768880786199 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2259,"Simulated","PgC/yr","LL",3.47570831413372 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2260,"Simulated","PgC/yr","LL",3.82226566718146 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2261,"Simulated","PgC/yr","LL",3.82857430450043 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2262,"Simulated","PgC/yr","LL",3.12886411864061 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2263,"Simulated","PgC/yr","LL",3.77779845047415 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2264,"Simulated","PgC/yr","LL",3.69736213935811 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2265,"Simulated","PgC/yr","LL",4.19746886106597 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2266,"Simulated","PgC/yr","LL",3.32626387422059 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2267,"Simulated","PgC/yr","LL",2.03777265903604 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2268,"Simulated","PgC/yr","LL",3.56914356628192 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2269,"Simulated","PgC/yr","LL",3.04410715429387 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2270,"Simulated","PgC/yr","LL",3.23138350509147 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2271,"Simulated","PgC/yr","LL",3.37073678036484 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2272,"Simulated","PgC/yr","LL",2.82277525637593 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2273,"Simulated","PgC/yr","LL",4.17627286377293 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2274,"Simulated","PgC/yr","LL",3.58319552726637 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2275,"Simulated","PgC/yr","LL",4.14372643979901 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2276,"Simulated","PgC/yr","LL",3.61777497670427 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2277,"Simulated","PgC/yr","LL",3.54729470610083 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2278,"Simulated","PgC/yr","LL",2.81224790157132 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2279,"Simulated","PgC/yr","LL",2.94346338555185 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2280,"Simulated","PgC/yr","LL",3.99544122266093 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2281,"Simulated","PgC/yr","LL",3.67908008201413 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2282,"Simulated","PgC/yr","LL",1.60610253847937 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2283,"Simulated","PgC/yr","LL",3.67885582337503 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2284,"Simulated","PgC/yr","LL",3.28553603993734 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2285,"Simulated","PgC/yr","LL",3.51751761555394 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2286,"Simulated","PgC/yr","LL",2.72427450887858 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2287,"Simulated","PgC/yr","LL",3.99888665084348 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2288,"Simulated","PgC/yr","LL",3.13244087799235 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2289,"Simulated","PgC/yr","LL",3.73119579843807 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2290,"Simulated","PgC/yr","LL",3.49933085627859 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2291,"Simulated","PgC/yr","LL",2.47532229113102 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2292,"Simulated","PgC/yr","LL",3.03985382606688 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2293,"Simulated","PgC/yr","LL",2.81639929405326 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2294,"Simulated","PgC/yr","LL",3.09494796272512 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2295,"Simulated","PgC/yr","LL",3.90308127409303 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2296,"Simulated","PgC/yr","LL",3.49586930802475 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2297,"Simulated","PgC/yr","LL",3.65198319038231 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2298,"Simulated","PgC/yr","LL",3.69321880691181 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2299,"Simulated","PgC/yr","LL",3.36558831406043 -"CanESM2","fgco2","ocean","fgco2_LL","rcp45",2300,"Simulated","PgC/yr","LL",3.7810826779436 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.24263607327912 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.16196495713213 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",2.05838047877032 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",2.22673942285941 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",2.26466793331419 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",2.41037887695575 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",2.24427493844276 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",2.38362517191136 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.44039209006012 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",2.45382303993831 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.38543942639758 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",2.50821195220682 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",2.55274489565945 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",2.36137692245233 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",2.39423736481944 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",2.60368182716983 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",2.48877676525938 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",2.65189908528843 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",2.54317251087813 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",2.54182064642418 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",2.5794006560172 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",2.60726933604087 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",2.66792784714594 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",2.56691270847083 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.67190144030502 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",2.65498775959265 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",2.85244083118009 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",2.77138590852848 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",2.6813314636232 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",2.81616143591429 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",2.87001506908141 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",2.88548577400343 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",2.75527628535991 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",2.70457282664908 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",2.92138933500655 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",2.97178870963212 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",2.89509346442761 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",2.95389899872848 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",2.81883783142126 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",2.93967424133185 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",2.86976792958141 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",2.75956421262959 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",2.76742939874498 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",2.75171610988978 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",3.02453078449507 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",2.90664979855921 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",2.98722524780297 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",2.89926066917655 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",2.79172423659807 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",2.87431780194326 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",2.74440328625137 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",2.90609629719053 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",2.94984112758323 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",2.85255244256719 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",2.61931311582226 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",2.61018375991421 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",2.65118955575616 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",2.69783058775492 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",2.7283608576934 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",2.68421741520392 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",2.53501804626965 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",2.59793839630103 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",2.51859181120706 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",2.51516488606643 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",2.28792182414882 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",2.43243351482492 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",2.3530766797056 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",2.28492767785612 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",2.44933580662023 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",2.32660086423726 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",2.35384770938995 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",2.16800336095254 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",1.98600163312813 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",2.3168200622739 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",2.18283173095288 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",2.09164408880104 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",2.04831153720558 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",2.09603793299929 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",1.89600641059152 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",2.11480231273244 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",2.03777451115004 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",1.8766008348284 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",1.88351846304515 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",1.81106445055041 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",1.82147164295157 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",2.0396878492146 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",2.03101974444712 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",1.84536900759958 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",1.83290383788732 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",1.93572753659012 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",1.79634655304547 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",1.790988067573 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",1.82968988549554 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",1.95592236430486 -"CESM1-BGC","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",1.83241980891265 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.718894872833151 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.744184382564769 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.757484100644705 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.760344395959396 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.790588585843187 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.845734991024885 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.81077094801815 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.783882742678135 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.803229256760662 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.86954185734661 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.832214739734894 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.828097949649325 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.86934582782656 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.848446392389886 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.841982012670105 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.893244753150322 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",0.821672537603234 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",0.871134256867991 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.897122121764788 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.875939022083388 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.946436818889507 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.926226549734259 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.923106923700334 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.863797103356249 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.868999032547166 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.917438743741243 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",0.917340218487677 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",0.922524620733658 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",0.869539985536957 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.957302673926666 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",0.964588097426171 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.954022752920617 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.942815547868509 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.930250940488762 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",0.981849585719483 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.951732508727599 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.972043004781553 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",0.969072102532806 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",0.924778790049721 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.991946126989153 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.01634380450325 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.9625854312617 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.981698309466597 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.978030073039754 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.0042750565171 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.00697692866932 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.991967908046936 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.05487977082194 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.02736910368996 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.0099946261594 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.946074708803858 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.946988151914648 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",0.964247428069278 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",0.979655484476837 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",0.9611466902964 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.92878565385929 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.966427575821781 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",0.96764646423508 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.95409643415515 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.02341192791847 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.936002330895166 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.930657463512547 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",0.93524220601143 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",0.985220034246943 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",0.963000973004723 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",0.885364264345595 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.90090368775791 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.922580945187769 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.972543969110571 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",0.911288487714182 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",0.972482369556527 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",0.875975947782912 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",0.830478551199241 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.965652306296305 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.841850135171807 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.822193751509409 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",0.898234487192365 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",0.850541287720909 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.809681895128982 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.870156661735448 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.912167217264129 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.844887741910016 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.771164136413279 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.8149998765184 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.801705944031938 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.792409686471292 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.878263469343706 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.771785747382675 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.829373332681249 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.807073783623938 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.842506119373017 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.856588594217041 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.843995399198954 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",0.7608451901239 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",0.776426814335669 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.52374102952249 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.41778068062594 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.30089696392184 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.46639528598724 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.47407923006754 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",1.56464359771495 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",1.4335040916657 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",1.59974252130515 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",1.63716251524537 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",1.584280666607 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",1.55322521031271 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",1.68011394144714 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",1.68339889535237 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",1.51293003406912 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",1.55225551439436 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",1.71043703998491 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",1.66710393526983 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",1.78076566533612 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",1.64605058722429 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",1.66588140155458 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",1.63296405159888 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",1.68104295082346 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",1.74482104290803 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",1.7031153998741 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",1.80290205038137 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",1.73754880788398 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",1.93510037525056 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",1.8488613745117 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",1.81179109108748 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",1.8588586391245 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",1.90542729265806 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",1.93146377337494 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",1.81246048157657 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",1.77432169206051 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",1.93953908324047 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",2.02005581246113 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",1.92305037771969 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",1.98482707942732 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",1.89405927906977 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",1.94772773418737 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",1.85342407958207 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",1.79697925233461 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",1.78573136091802 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",1.77368523829591 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",2.02025633898971 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",1.89967208441536 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",1.99525736509456 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",1.84438004252538 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",1.76435445799063 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",1.86432322920984 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",1.7983286893119 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",1.95910834122914 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",1.98559334263553 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",1.87289646485163 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",1.65816548947697 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",1.68139847370262 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",1.68476189451034 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",1.73018454377676 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",1.77426453715623 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",1.66080527107289 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",1.59901597591178 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",1.66728121234581 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",1.58334971977629 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",1.5299447584547 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",1.32492139826267 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.54706894901288 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",1.45217243336659 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",1.36234720456605 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.4767916662028 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.41531236374286 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.38136525678295 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.29202729775956 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.15552298052565 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.35116809278003 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.34098095763776 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.26945111056951 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.15007679625694 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.24549642458645 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.08632485980653 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.24464588211261 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.12560674740817 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.03171383313193 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.11235455943307 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",0.99606467249715 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.01976652068332 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.24727888261819 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.15275629566769 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.07358319106117 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.00353065295944 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.12865436315157 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",0.953839985434196 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",0.934399665034665 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",0.985694447915755 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.19507708046801 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.05599304272404 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.63520613180369 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",3.37836878674536 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",1.94881855229564 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",-17.0202265687296 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",11.6024459521385 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",3.97738633927642 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",3.33313956311456 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",3.68244681167824 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.92387086520421 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",3.24449844375924 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.5866718375101 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",3.10633196986973 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",2.73591513818158 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",3.36588949448339 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",3.13095635966139 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",2.74018591638113 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",-20.755348232195 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",15.4586267763869 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",5.07501321321971 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",3.47676493509668 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.28825427925294 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",3.11309537981391 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",3.36794536828479 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",3.35489564018666 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.99571812306413 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.20465258598143 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",3.32132866031717 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",-2.12516965533839 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",7.63634617564842 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.74933814181147 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",4.34731340282242 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",3.49488750875185 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",3.47668311500705 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",3.91705727572424 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",4.5194087088088 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",3.84208587331522 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",3.91907742526115 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",4.23257052247959 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",3.98216878113506 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",4.19279328256763 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",3.9982343285932 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",4.48375243566467 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",3.96691797738633 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",3.88005730927718 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",3.38194697517213 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",4.57758624972241 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",3.50006291751984 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",4.45482961017838 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",3.83225017662522 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",3.45721454325769 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",4.04689999598845 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",4.57300662949441 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",-26.8836614215043 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",22.2091875093084 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",7.48280904886482 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",4.803916751177 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",4.33583438996606 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",4.95741469650923 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",4.5418055178504 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",3.99821358547188 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",3.98449201072229 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.40582744325958 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",25.7292375766105 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",-4.22122403512051 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",11.7921072246914 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.9158927296156 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",5.21989469643699 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",4.86998820214644 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",-25.4931001883566 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",21.9755047237434 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",6.94680218451367 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",5.1458475153221 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",4.43219771242855 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",3.9919699059562 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",4.13347486998172 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",-2.48677987963287 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",7.22127631814376 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",4.17563641644922 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",3.43842473253358 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",4.51864812769393 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",3.34476032063324 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.46815077777299 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.17519913263412 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",3.60301909537347 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.4158193398832 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.43311218868579 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.43664428128741 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.31735980977231 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.0041744021867 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.18937359886575 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",-2.91852720667445 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",6.53885528438931 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.78295069163425 -"CNRM-CM5","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",-29.7317380738207 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.393593521163348 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.504592050889517 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.291074898031408 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",-2.54213544258833 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",1.73293751152739 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.594061115526968 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.497836628923287 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.550009044686435 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.436708390806211 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.484597220489213 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.386344454929915 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.46396072139012 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.408635385234151 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.502728147901535 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.467638612150781 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.409273267261435 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",-3.10001198581366 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",2.3088954111926 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.758002304424838 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.519288467246138 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.640492248801694 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.46497090207499 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.503035212536364 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.501086109439503 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.447439473610599 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.628005527390102 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",0.49607255636591 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",-0.317414640782434 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.1405621533062 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.709359582869331 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",0.649313300074303 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.52199524888701 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.51927624662446 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.585050386436208 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",0.675017398376662 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.573852682429454 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.585352115306642 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",0.632175341203644 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",0.594775419470095 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.626234225732578 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",0.597174964354706 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.669691789146711 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.592497564437963 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.579524083616452 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",0.505126487936122 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.683706776753731 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.522768246238476 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",0.665371885444396 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",0.572383626006661 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",0.51636842715092 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.604443652431396 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.68302276618265 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",-4.01533482825145 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",3.31715694209569 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.11762989854604 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.717511426014017 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.647598798489366 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",0.740437828645488 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.678362578409115 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",0.597171866168929 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.595122416277166 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.658052937909539 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",-4.69095620073328 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",3.84291046245214 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",-0.630480633583396 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.76126525681893 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.734236121326255 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.779641755108655 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.727379836200826 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",-3.80764105980487 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",3.28225415809874 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.0375720895718 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",0.768582092490429 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.661991592639799 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.596239312249926 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.617374447137751 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",-0.371424624954456 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.07856745590004 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.623671681851788 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.513561987200874 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.67490379823149 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.49957230144437 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.518001859541348 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.474246698171152 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.538145747101832 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.510185653189216 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.512768507398991 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.513296059588313 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.495479770153831 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.448702500679194 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.476363791785722 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",-0.435910263725662 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.976641274737318 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",0.565020271142328 -"CNRM-CM5","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",-4.44072262034841 -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",NA -"CNRM-CM5","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",NA -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.17250395731581 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.0643257223231 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",2.38144257584567 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",2.45478574163542 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",2.33599413275953 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",2.204390803794 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",2.27471736906096 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",2.49901933917669 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.48567769115238 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",2.36325864009135 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.53104180162096 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",2.75011173055794 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",2.51620609870984 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",2.38176395149638 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",2.60136266873808 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",2.73163604953205 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",2.45638236321926 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",2.75006842461919 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",2.89436837104767 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",2.59302969441897 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",2.55399622841738 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",2.64328281744622 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",2.85774408279643 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",2.91429366139166 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.79605705230972 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",3.16504188452286 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",2.98655417871271 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",2.75966410894179 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",2.98960268887458 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",3.1804200512983 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",3.01887180531845 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",2.87810015326797 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",3.0098174452302 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",3.12722212443618 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",3.06063696435107 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",3.25493703595411 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",2.92324203589298 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",2.93316365438615 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",3.04526107683557 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",3.02218015111281 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",3.16261789158294 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",3.32841125919007 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",3.39309437686017 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",2.9411114337764 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",3.13732266483419 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",3.30082765546748 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",3.30135758340216 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",3.17477774333141 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",3.08994254895389 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",3.35801542684426 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",3.21927915391494 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",3.00702307255098 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",3.05523853719713 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",3.15800352984633 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",3.11230322853747 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",3.19537883424586 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",2.97797504432072 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",2.81195375072017 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",3.05506075492227 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",3.1068090724663 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",3.14653429385789 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",2.81993457937946 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",2.857447779005 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",2.78754857497569 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",2.80751831088839 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",2.91468569410033 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",2.7934393222754 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",2.65337424080449 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",2.67267045540667 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",2.58695888558447 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",2.39952394490297 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",2.63864680274024 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",2.65142775282076 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",2.37253408839321 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",2.56016504542905 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",2.2697656768541 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",2.24017176586962 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",2.16868733655614 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",2.23557677784246 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",2.22409842481428 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",2.33939478858122 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",2.43747704169579 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",2.2794411352744 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",2.11333550905629 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",2.19327599272532 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",2.03322863941207 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",1.97853779729311 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",2.33764545658179 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",2.38030978365842 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",2.1156181878803 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",2.39097102200022 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",2.32066838896257 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",2.23091113275734 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",1.95302718048059 -"GFDL-ESM2G","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",2.16429634229308 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.443610995874048 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.401136946934383 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.469725535226766 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.49594858398357 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.467967064789027 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.475212127816923 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.472858744269756 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.471570023404137 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.493535966663603 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.499168840918762 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.538327858886755 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.527063312221102 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.497922184616436 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.462331615152442 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.466187132839404 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.537864976998438 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",0.509440320506511 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",0.581484727288527 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.569045463308383 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.558189200444815 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.537679377843664 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.610212592020352 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.624548366882673 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.659279617410826 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.626644555671421 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.649292459932518 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",0.623989337421115 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",0.602269428933889 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",0.610668606224867 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.672662844529681 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",0.636557370472563 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.634363145497529 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.628223436177714 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.667859243093725 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",0.673554441579396 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.738281674653585 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.67960950669634 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",0.682512820024027 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",0.732915781606264 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.70566893288654 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",0.752002448431354 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.748817044991462 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.730727222470367 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.707990381704023 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",0.721490016063338 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.794126417189165 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.754425195584931 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",0.736989519946064 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",0.75535044428528 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",0.792579128028366 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.790949426661932 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.729452236972354 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",0.659074617049309 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",0.759334559351452 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",0.740080492733666 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.732958532937938 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.693201339710709 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",0.719683643531074 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.689708435728542 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",0.761187975517766 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.72896068250416 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.729510440592584 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",0.675519629299603 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",0.705324346851728 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",0.695870636712811 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",0.729808154685441 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.716163440505789 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.714341443992873 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.669188654985877 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",0.698076365058215 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",0.676555276017084 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",0.679304409843395 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",0.661757134342732 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.642816577490549 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.688432420077958 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.62784966248674 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",0.612604091212626 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",0.616878022535281 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.666287058579141 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.619680380911065 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.654852880123556 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.634687300173027 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.664843814827956 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.59128388192273 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.595255120081772 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.595849518114915 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.614252850401613 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.656170960337432 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.662817676413998 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.588507792437493 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.583653713525585 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.633594308295791 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.617524443273232 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",0.580934625815912 -"GFDL-ESM2G","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",0.598125468527204 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.72889287735669 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.66318925460657 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.91171698261659 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.95883716616253 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.86802717088895 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",1.72917841902892 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",1.80185893796029 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",2.02744847428008 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",1.99214197246168 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",1.86408959962573 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",1.99271402374402 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",2.22304935945014 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",2.01828403850816 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",1.91943241539416 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",2.13517511974229 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",2.19377117469844 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",1.94694217765375 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",2.16858349539373 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",2.3253226429416 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",2.03483964787054 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",2.01631718875229 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",2.03307025744055 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",2.23319625216213 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",2.25501357179659 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",2.16941301815002 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",2.51574990018592 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",2.36256502050397 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",2.15739413359363 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",2.37893381785705 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",2.50775763717697 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",2.38231385690601 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",2.24373709558801 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",2.38159467906713 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",2.45936267945363 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",2.38708288680127 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",2.51665492209622 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",2.24363255829783 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",2.25065107580757 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",2.31234549989194 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",2.31651150449295 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",2.41061539234488 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",2.57959411428396 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",2.66236732140647 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",2.23312075300811 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",2.41583257747486 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",2.50670161695863 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",2.54693201873181 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",2.43778831222503 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",2.33459258394157 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",2.56543608703048 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",2.42832962334002 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",2.27757039596526 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",2.3961640799162 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",2.39866910312889 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",2.3722231045906 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",2.46242039519122 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",2.28477378960854 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",2.09227030562882 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",2.3653517136374 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",2.34562030011706 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",2.41757389770656 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",2.09042348016908 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",2.18192845483475 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",2.08222407845553 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",2.1116484218259 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",2.18487776153067 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",2.07727598005396 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",1.93903218936392 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",2.00348233256982 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.88888236027867 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.72296812964229 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.95934242973171 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.98967082707451 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.72971659248575 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.87173340500077 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.64191591605616 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.6275672050419 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.55180864367764 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.56928960164563 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.60441800289559 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.68454293200036 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.80279009419313 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.61459780549522 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.52205229761718 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.59801993356179 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.43737902845196 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.36428520004927 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.68147456894618 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.71749153716262 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.52711074093615 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.80731713962039 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",1.68707408953559 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.61338691521737 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.37209258692467 -"GFDL-ESM2G","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.5661709058221 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",4.29125101801663 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",4.56191564730427 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.91483338149669 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",4.06883914964643 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",4.31149880108605 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",4.50511812664103 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",4.53925554633733 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",4.30424904145909 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",4.60993469991843 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",4.58387462336137 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.72460543973668 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.94199738181186 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.64417776857374 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.63799890521316 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",5.08193102876915 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.76330657431407 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.54381445899302 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.9776747151229 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.92613723202517 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",5.23875250175082 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.91754124854167 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.65289700917609 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",5.34501454487656 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",5.11045144547781 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",5.23864525205 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",5.24963594527118 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",5.29289439176244 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",5.27760090457411 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",5.39103106949484 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",5.34082700431923 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",5.26259074868495 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",5.60025282540619 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",5.60616596562742 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",5.43655936786313 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",5.50193686459183 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",5.54939405683304 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",5.8203148048092 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",5.41454596658471 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",5.55391775316905 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",5.88550341400512 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",5.63978794646307 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",5.54261011307083 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",5.63011466374598 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",5.59508883234887 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",5.58656008002111 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",5.57907981357448 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",5.69473821108535 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",5.87367233133723 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",5.71567111164656 -"GFDL-ESM2M","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",5.6411277673524 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",1.21284442104265 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",1.34273964790314 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",1.2118590259615 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",1.25299735982186 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",1.22881625708648 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",1.28427579822933 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",1.32953773167231 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.23234822331098 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",1.33397583109266 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",1.32228979841815 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.37137357012328 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.4621406011502 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.34104259432328 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.37767489000446 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.39304660034532 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.38282521407984 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.43774435901187 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.40156866840564 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.43970977068909 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.57588112347435 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.48866983723753 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.44550466373884 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.56458064325618 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.59625340954301 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.55079247215231 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.62203079003266 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.61050724422301 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.56462055727699 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.60858287887924 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.58520005656008 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.58371502852339 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.62042743532435 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.65117255447504 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.60670635374482 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.70896550890543 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.64512628801762 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.65547619176854 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.63333098717267 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.65454344922549 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.72521702617309 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.75324855806497 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.67719055140219 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.69299706979954 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.66656691106883 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.7094996773967 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.6745109335228 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.71684385722586 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.72288672674533 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.7135375042963 -"GFDL-ESM2M","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.81445005664133 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",3.08545040653768 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",3.22749191176206 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",2.71103364748353 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",2.82411685885908 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",3.0899172862823 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",3.22840637032925 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",3.21789009680658 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",3.07920995153162 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",3.28400650534518 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",3.26952274659802 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",3.36154442232814 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",3.48898226141399 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",3.31119912991443 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",3.26897196319588 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",3.6965538148565 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",3.38886617793425 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",3.11590820161051 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",3.58419400082013 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",3.49524775202923 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",3.67294655305573 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",3.43847489637237 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",3.2170520627306 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",3.79004336788323 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",3.52494130219 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",3.69753810959669 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",3.63836710611234 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",3.69285249768758 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",3.72277400365834 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",3.79261412964776 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",3.76556644807908 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",3.68900755518174 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",3.98960089105826 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",3.96522806668179 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",3.83986423016763 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",3.80439008961168 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",3.91456521733048 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",4.17455343043112 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",3.79169967108057 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",3.90980449859381 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",4.17090481980786 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",3.89826571808536 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",3.87623306433615 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",3.94793636671463 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",3.93902764283458 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",3.88825410973739 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",3.91523986111492 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",3.98890516465556 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",4.16140051196186 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",4.01303553892201 -"GFDL-ESM2M","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",3.83935034134746 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",1.11571797898075 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",1.25750721588638 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",1.1991042705932 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",1.20332738345587 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",1.37103373563664 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",1.30980873305456 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",1.37652214162713 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",1.42846060685156 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",1.31395318734368 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",1.63615141220567 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",1.23656055035057 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",1.61537847112677 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",1.47290382689625 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",1.57358824873745 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",1.81735245500075 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",1.51781513783872 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",1.56129740426713 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",1.55521930025902 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",1.60634496022349 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",1.62778046707832 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",1.7275336936593 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",1.49984205592367 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",1.72703343156579 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",1.82784991616545 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.00951904985831 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",1.95968747624183 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",1.71359069743258 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",1.89448128818892 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",1.89111457255642 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",1.70264927376689 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",1.99754653936967 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",1.94394128449479 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",1.76481850094347 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",1.86795131163524 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",2.17491599275404 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",2.00491696031001 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",1.97852853701751 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",1.81289191871364 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",1.86352294654385 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",2.08355462257763 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",2.02146260627079 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",2.0352206181221 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",2.10112170400265 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",2.01104879021498 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",2.13308539551409 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",2.00515502715837 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",1.92122842031374 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",1.89049688559852 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",1.9280841021225 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",1.98337834477288 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",1.79421493103615 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",1.97707439897079 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",1.78623164881727 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",1.7562046632884 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",2.02655852367345 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",1.83728894499083 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",1.71034462378404 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",1.93248994737688 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",1.64600866657546 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",1.82750407581141 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",1.81615407796004 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",1.87165904194241 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",1.72728597545223 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",1.71362930286745 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",1.75739660608997 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",1.67652626283912 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",1.32279479706447 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",1.35871924533746 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",1.33211447075372 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",1.16229720556553 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",1.31007221514754 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",1.26786087180619 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",1.45435311116198 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",1.22891442226288 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",1.05966530039118 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",1.0356932556095 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",1.20503921278033 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",1.24249147113825 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",1.02416551190174 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",1.05455538851838 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",1.06764584805842 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",1.08501684604549 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",1.10651235218035 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",1.14754671232614 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",1.02412690646688 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",0.90346208095343 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",1.2048423250625 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",0.83399996541821 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",0.801902924300492 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",1.01641498828393 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",0.976652677217066 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",1.02869666396347 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",1.0957737679037 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",1.17972852454459 -"GISS-E2-H-CC","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",0.984824643498863 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",-0.10956437763858 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",-0.0815154894637639 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",-0.159319092811825 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.072819561777525 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.104530038641015 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.0263602647878972 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.0151029529936557 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",-0.0141979251204256 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.0718511108560539 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",-0.0371986563232178 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.0113891178162923 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.149353482360919 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.0368638540747059 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.033746053589302 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.148084817762791 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.0104161898710967 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",0.0921673732524615 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",-0.0123035593664377 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.133677208516267 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.130111385663209 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.118779890254932 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.10778357527131 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.021072347050211 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.112562354467574 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.206987497475141 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.305445889048607 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",0.235543199862623 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",0.199608175485783 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",0.290241491759095 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.233422737137926 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",0.288977830722245 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.121162050870636 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.225385097754892 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.140766091227743 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",0.34146018496313 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.348356081479748 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.309794914693974 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",0.170986088639955 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",0.293234290483976 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.233239176256172 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",0.357404963869366 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.444252533317186 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.280723554590173 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.37286858635972 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",0.349514755001186 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.28617822182553 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.222432763877319 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",0.343340011298941 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",0.256446507994974 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",0.306327039461973 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.200410577989971 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.329418474758158 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",0.202576596394672 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",0.262370608185778 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",0.276835409301324 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.307744036379604 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.116692561578463 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",0.24105846255229 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.215441596063119 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",0.379356343546542 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.302179901696063 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.412154978626022 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",0.317873338919516 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",0.2237653693341 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",0.33054689418815 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",0.273905911444699 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.176997227524611 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.22394637025427 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.250831901341568 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",0.127586972636762 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",0.0851505185510049 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",0.164188459739592 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",0.0814521885955077 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.267364278702726 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.079816285871981 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.129633545561196 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",0.223200926895323 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",0.261772740794048 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.229944912964315 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.211025924145153 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.174091816579253 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.141839093307538 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.144980777070901 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.130808247933006 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.248674580988158 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.0754186791374647 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.171478415797294 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.132366188190114 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.138582414906208 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.189047577599929 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.135603085070114 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.220229480577289 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.191138629856883 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",0.252149001576482 -"GISS-E2-H-CC","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",0.171867849953244 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.22528243390263 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.3390221552156 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.35842330833009 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.13050785364455 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.26650369129213 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",1.28344847184237 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",1.36141965593823 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",1.44265836105374 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",1.2421020372221 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",1.67334945612475 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",1.22517148734651 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",1.46602433824603 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",1.43603977968359 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",1.53984201005939 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",1.66926867840161 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",1.5073987071536 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",1.46913005122422 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",1.56752330757564 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",1.47266795506233 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",1.49767045984007 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",1.60875405208158 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",1.3920577714108 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",1.70596141887833 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",1.71528778139832 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",1.80253235828073 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",1.65424082243375 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",1.47804794067538 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",1.69487335154211 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",1.60087315716323 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",1.46922624004365 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",1.70856905824355 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",1.82277944594422 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",1.53943353699056 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",1.72718620659689 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",1.83345640490148 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",1.65656121299573 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",1.66873371044694 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",1.64190625341006 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",1.57028774789309 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",1.85031580140378 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",1.66405735263634 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",1.59096702641651 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",1.82039844324944 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",1.63817992489826 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",1.78357130195653 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",1.71897721556842 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",1.69879601065796 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",1.54715631330162 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",1.67163782220084 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",1.67705206684546 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",1.59380393776231 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",1.64765518244012 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",1.58365535848441 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",1.49383344830317 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",1.74972337875597 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",1.52954453575963 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",1.59365108977526 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",1.69143031886837 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",1.43056624056124 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",1.44814771203683 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",1.5139751235618 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",1.45950458100544 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",1.40941260621595 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",1.48986467126019 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",1.42685045328992 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.40262009437778 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",1.14579752767298 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",1.13477283954519 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.08128263235402 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.03471037776281 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.22492165994699 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.1036724906773 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.37290038448255 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",0.961550215824759 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",0.979849018715425 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",0.906059676485868 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",0.981838282560639 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",0.980718802821026 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",0.794220672598032 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",0.843529433219412 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",0.893553944069791 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",0.943177887781703 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",0.961531505122896 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.01673848509271 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",0.775452257443715 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",0.82804342858693 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.03336399782173 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",0.70163366327181 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",0.663320602366887 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",0.827367471540765 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",0.84104960639508 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",0.808467159114866 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",0.904635027834185 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",0.927579487172539 -"GISS-E2-H-CC","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",0.812956805203362 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2005,"Simulated","PgC/yr","global",4.59401387609227 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.41986629061182 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.45792204601725 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",2.46312548745958 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",2.37950006043639 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",2.30285192322734 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",2.23956555400587 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",2.58986219507976 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",2.54858897456037 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.67804665321242 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",2.52257520726148 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.51436528202411 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",2.54057627099072 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",2.50831332875557 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",2.51175668147733 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",2.68205759154766 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",2.67049375132157 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",2.69026178359701 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",2.58141720913379 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",2.59002731089459 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",2.73885055202344 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",2.69461785985074 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",2.81910486449386 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",2.68489666625265 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",2.59343053130025 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.77721016639365 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",2.70020083833967 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",2.88849019912561 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",2.76244032742962 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",2.80807306411556 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",2.97362689450954 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",2.87207493520129 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",2.72402223454165 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",2.79761802245155 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",2.85147329738849 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",2.74166898725157 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",2.79112805361867 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",2.94562485760707 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",2.91483190477895 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",2.87747789158655 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",2.88915524893534 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",2.9738034767004 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",2.85474809438261 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",2.83681926882236 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",2.8580114250007 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",3.0005522387028 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",2.94704554159717 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",3.11734989158031 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",2.96781802841282 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",3.00922196561896 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",2.93613643144238 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",2.92290538014156 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",2.87755586294355 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",2.66102825790894 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",2.77448002226095 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",2.89596398302185 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",2.8151237387363 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",2.74525796294891 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",2.92630745390961 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",2.60757315949545 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",2.72104900323712 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",2.60614559567973 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",2.35493105651726 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",2.66265877658038 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",2.5541765395997 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",2.66967046552263 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",2.54631060564324 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",2.50338049378753 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",2.63482988195597 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",2.43563026437764 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",2.284810727182 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",2.52096303479168 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",2.48036633045805 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",2.3613281477043 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",2.19339848419694 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",2.0724786691367 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",2.24021913743957 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",2.16593192705507 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",2.16008980846787 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",2.10995651919022 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",2.25707929675384 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",2.34539217829804 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",2.15169871448924 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",2.25824886710888 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",2.10695691522081 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",1.90503632661061 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",2.24194482703206 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",1.97956433089173 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",1.97771939098853 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",2.18061118164847 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",1.98009981065233 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",2.14272398197068 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",1.95304948296034 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",1.99700812874592 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.55283368009267 -"HadGEM2-CC","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",1.85166034619172 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2005,"Simulated","PgC/yr","HL",1.64770411013066 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.893452790956557 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.963931524817511 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.962154778823284 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.967520742987223 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.953944613673565 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.906168965826376 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.976739902104619 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.00090108544542 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.983149864676458 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.994524503396477 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.945131073018138 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.01692951036257 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.969798918565886 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.08685737537815 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.11735436239939 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.09663606423334 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.03398858147845 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.02690866279038 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.0591417978726 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.09900175091257 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.00978481541655 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.12959887950249 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.08363498208975 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.06516689203724 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.02672786666098 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.06466257548866 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.12403443655378 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.02535854348131 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.02791910024013 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.12767958965374 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.125262659361 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.08714950006228 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.09769395615618 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.11219481617161 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.09211670230409 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.06503282863989 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.11170132573857 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.10357542385475 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.18789895512984 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.16238306386534 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.13397335191886 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.14119437097938 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.1307639499691 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.14182607482073 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.1541391573222 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.16360515187375 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.15574178329161 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.21159461550272 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.24584772330814 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.17490978171333 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",1.10122525460779 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.11364984609925 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",1.12225462316015 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.21714191710184 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.2310269515787 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.18521498065394 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.14632198016633 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.21949948419441 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",1.14235890014021 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.19722258626213 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",1.10031965004345 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",1.13413664582815 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.14571319160286 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.11751909979075 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.1273010364806 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.20073548031733 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",1.10228044000174 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",1.17806920309638 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",1.06509922881516 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.15258687279003 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.19268481993646 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.03890580315355 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.11368665489206 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.10677580404156 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.05639701671446 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.06944753811899 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.12619117920321 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.06317109763873 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.03523971956355 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.13240988040063 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.15122151918606 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.07100469440316 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.994455757562843 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.10088369066272 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.0573706453714 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.08866840407156 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.05372747705928 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.06882539734636 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.105037851628 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.985511401344726 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.12155651914353 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.988850536245625 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.962755267364849 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.68127733788061 -"HadGEM2-CC","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.04783211584578 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2005,"Simulated","PgC/yr","LL",2.94630940823072 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.52641322662567 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.49399037456471 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.50097022029848 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.41197911959749 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.34890639677699 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",1.33339691674949 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",1.6131221573899 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",1.54768803604041 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",1.69489669278281 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",1.52804997339658 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",1.5692333821115 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",1.52364698931451 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",1.53851491098552 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",1.4248991773428 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",1.56470285932001 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",1.57385762653036 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",1.65627275407741 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",1.55450845838741 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",1.53088481107417 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",1.63984828043005 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",1.684833695369 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",1.68950624990507 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",1.60126105741373 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",1.52826350411462 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",1.75048231363888 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",1.63553805177302 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",1.76445553193926 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",1.73708205332856 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",1.78015342142385 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",1.84594697004534 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",1.74681171093365 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",1.63687334341257 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",1.6999248097815 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",1.7392782312567 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",1.64955185057185 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",1.7260953664738 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",1.83392354807536 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",1.81125644108278 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",1.68957968128322 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",1.72677170811467 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",1.83982994300485 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",1.71355309384503 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",1.70605439745247 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",1.71618599523271 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",1.8464126795752 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",1.78344044179848 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",1.96160815405053 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",1.75622348796753 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",1.76337435151621 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",1.76122744990762 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",1.82167983197093 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",1.76390576280546 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",1.53877385321374 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",1.55733749885094 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",1.6649376566993 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",1.62990895691629 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",1.59893540837148 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",1.70680803528087 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",1.46521397015037 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",1.52382573674817 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",1.50582538707759 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",1.22079376316338 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",1.51694540985584 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",1.43665689366815 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",1.54237005833848 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.34557493109453 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",1.40109968120293 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",1.45676066584184 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.37053097144029 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.13222392668442 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.32827797673045 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.44146085172302 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.24764162769889 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.08662304085227 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.01608157391187 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.17077153540464 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.03974097071185 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.096918893031 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.07471652936593 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.1246691905559 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.19417005757171 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.08069442326888 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.26379266608287 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.00607365003169 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",0.847666128399763 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.15327650956002 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",0.925836632428944 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",0.908894564185853 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.0755725846428 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",0.994588402767368 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.02116766305122 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",0.964199310020499 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.03425197519502 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.87155650134654 -"HadGEM2-CC","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",0.803827982124194 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2005,"Simulated","PgC/yr","global",4.60791714368785 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.34724743793966 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.23467170471634 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",2.3294275429517 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",2.39401763912776 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",2.40553647382793 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",2.37484299181187 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",2.38144733774566 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",2.42872750600768 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.42480055887686 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",2.5263490782723 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.51615117009076 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",2.48678893433176 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",2.51633549208544 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",2.56568419458325 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",2.58736281176466 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",2.55692904316567 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",2.57675784723406 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",2.59924283730977 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",2.60400424995616 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",2.64846340305544 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",2.76507157406907 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",2.7346455452739 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",2.67352345452806 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",2.70250586658107 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",2.77928099390464 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",2.84153653592103 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",2.78916615667996 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",2.80946364886857 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",2.87396516728981 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",2.81496062953728 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",2.86172939742837 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",2.85714686024805 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",2.91032561899923 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",2.86192919903069 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",2.96538113684708 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",2.97888508789742 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",2.97397031247163 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",2.96820329864742 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",2.93152436834378 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",2.99295318464842 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",2.83220003923873 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",2.8697716269163 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",2.8837210466754 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",2.88597304292766 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",2.96566836956663 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",3.02762062593703 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",2.91850773827472 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",2.91195011782325 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",2.91257962186729 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",2.87556157349257 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",2.87426271974778 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",2.83404440582314 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",2.86475537406265 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",2.85523226211047 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",2.8421032615563 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",2.79869758175476 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",2.80995297646565 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",2.83799399904661 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",2.76809095753713 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",2.71465965185389 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",2.6214661073526 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",2.60849878270045 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",2.65764682361774 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",2.61581375728869 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",2.61917770535644 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",2.64746525502204 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",2.58254091398471 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",2.44794371893668 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",2.38842978742902 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",2.37950894687781 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",2.3117125653044 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",2.24817221585386 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",2.20071087885057 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",2.17745563496505 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",2.20898386915609 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",2.15922151714301 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",2.16073049222854 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",2.18470811780392 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",2.08289787837561 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",2.07319101774755 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",2.19556448262898 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",2.10651459976547 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",2.05395273204469 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",2.0445781096621 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",2.049764064881 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",1.99030345202188 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",2.03700141504099 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",2.05082040477274 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",2.06488104837933 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",2.00874826450347 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",2.03580289208647 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",2.01332191524237 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",1.96934750318975 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",2.69969425384667 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",2.05757467357312 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",2.03332672818283 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",2.0334712045208 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2103,"Simulated","PgC/yr","global",2.10518765339941 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2104,"Simulated","PgC/yr","global",2.14246598851001 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2105,"Simulated","PgC/yr","global",2.12739343721879 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2106,"Simulated","PgC/yr","global",2.07181017941416 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2107,"Simulated","PgC/yr","global",2.00697011624064 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2108,"Simulated","PgC/yr","global",2.08810848630297 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2109,"Simulated","PgC/yr","global",1.73246048753596 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2110,"Simulated","PgC/yr","global",1.90574265537404 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2111,"Simulated","PgC/yr","global",1.7475433585656 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2112,"Simulated","PgC/yr","global",1.81327091924383 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2113,"Simulated","PgC/yr","global",1.95429473139718 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2114,"Simulated","PgC/yr","global",1.89493444932832 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2115,"Simulated","PgC/yr","global",1.85526996136591 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2116,"Simulated","PgC/yr","global",1.69524751076873 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2117,"Simulated","PgC/yr","global",1.96742831850175 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2118,"Simulated","PgC/yr","global",1.92804934330249 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2119,"Simulated","PgC/yr","global",1.78868700903586 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2120,"Simulated","PgC/yr","global",1.80124498406374 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2121,"Simulated","PgC/yr","global",1.7742508416143 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2122,"Simulated","PgC/yr","global",1.66946880417845 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2123,"Simulated","PgC/yr","global",1.81577288249354 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2124,"Simulated","PgC/yr","global",1.62744338939149 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2125,"Simulated","PgC/yr","global",1.56040522193306 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2126,"Simulated","PgC/yr","global",1.67454267557165 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2127,"Simulated","PgC/yr","global",1.86515971069165 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2128,"Simulated","PgC/yr","global",1.60822459652789 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2129,"Simulated","PgC/yr","global",1.77039125944265 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2130,"Simulated","PgC/yr","global",1.74079539627204 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2131,"Simulated","PgC/yr","global",1.73896421602008 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2132,"Simulated","PgC/yr","global",1.68552861044584 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2133,"Simulated","PgC/yr","global",1.62914385295672 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2134,"Simulated","PgC/yr","global",1.67302108747249 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2135,"Simulated","PgC/yr","global",1.77061370713763 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2136,"Simulated","PgC/yr","global",1.67854558744367 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2137,"Simulated","PgC/yr","global",1.7064616265259 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2138,"Simulated","PgC/yr","global",1.63523364526617 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2139,"Simulated","PgC/yr","global",1.54665359716048 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2140,"Simulated","PgC/yr","global",1.65913071954995 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2141,"Simulated","PgC/yr","global",1.53476525849274 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2142,"Simulated","PgC/yr","global",1.65860211961497 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2143,"Simulated","PgC/yr","global",1.74749749306148 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2144,"Simulated","PgC/yr","global",1.59786931233534 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2145,"Simulated","PgC/yr","global",1.76513965922099 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2146,"Simulated","PgC/yr","global",1.75240166208944 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2147,"Simulated","PgC/yr","global",1.70127653128521 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2148,"Simulated","PgC/yr","global",1.52784644719634 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2149,"Simulated","PgC/yr","global",1.35030452066316 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2150,"Simulated","PgC/yr","global",1.64764714395607 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2151,"Simulated","PgC/yr","global",1.46552440019897 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2152,"Simulated","PgC/yr","global",1.45003905937068 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2153,"Simulated","PgC/yr","global",1.58811601288436 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2154,"Simulated","PgC/yr","global",1.53262333945037 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2155,"Simulated","PgC/yr","global",1.42299790477952 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2156,"Simulated","PgC/yr","global",1.32385503107514 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2157,"Simulated","PgC/yr","global",1.51738796561952 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2158,"Simulated","PgC/yr","global",1.50498937321846 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2159,"Simulated","PgC/yr","global",1.42823574534995 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2160,"Simulated","PgC/yr","global",1.50767709175986 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2161,"Simulated","PgC/yr","global",1.48700436241567 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2162,"Simulated","PgC/yr","global",1.44270287198679 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2163,"Simulated","PgC/yr","global",1.44164452547924 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2164,"Simulated","PgC/yr","global",1.36900503333022 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2165,"Simulated","PgC/yr","global",1.7003489014644 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2166,"Simulated","PgC/yr","global",1.39029236042962 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2167,"Simulated","PgC/yr","global",1.39660345379644 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2168,"Simulated","PgC/yr","global",1.38738448746845 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2169,"Simulated","PgC/yr","global",1.30971010960474 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2170,"Simulated","PgC/yr","global",1.55650780072052 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2171,"Simulated","PgC/yr","global",1.32308219733073 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2172,"Simulated","PgC/yr","global",1.38231520262566 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2173,"Simulated","PgC/yr","global",1.52435378905765 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2174,"Simulated","PgC/yr","global",1.51235995973044 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2175,"Simulated","PgC/yr","global",1.44469343486557 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2176,"Simulated","PgC/yr","global",1.38244362603719 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2177,"Simulated","PgC/yr","global",1.41042961001321 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2178,"Simulated","PgC/yr","global",1.46002053970465 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2179,"Simulated","PgC/yr","global",1.51515431556891 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2180,"Simulated","PgC/yr","global",1.33708493573837 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2181,"Simulated","PgC/yr","global",1.31873529417782 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2182,"Simulated","PgC/yr","global",1.26102617025726 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2183,"Simulated","PgC/yr","global",1.23551004367806 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2184,"Simulated","PgC/yr","global",1.37413279669077 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2185,"Simulated","PgC/yr","global",1.33668590585253 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2186,"Simulated","PgC/yr","global",1.30625987705736 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2187,"Simulated","PgC/yr","global",1.30974221545762 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2188,"Simulated","PgC/yr","global",1.38335520293156 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2189,"Simulated","PgC/yr","global",1.2453642472381 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2190,"Simulated","PgC/yr","global",1.17156321119727 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2191,"Simulated","PgC/yr","global",1.19282301899419 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2192,"Simulated","PgC/yr","global",1.28659160225338 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2193,"Simulated","PgC/yr","global",1.20092860020968 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2194,"Simulated","PgC/yr","global",1.32912383086085 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2195,"Simulated","PgC/yr","global",1.46788418038591 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2196,"Simulated","PgC/yr","global",1.39678806245052 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2197,"Simulated","PgC/yr","global",1.36302761150587 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2198,"Simulated","PgC/yr","global",1.39753911008047 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2199,"Simulated","PgC/yr","global",2.8728290214209 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2200,"Simulated","PgC/yr","global",1.39803560416256 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2201,"Simulated","PgC/yr","global",1.33194341272659 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2202,"Simulated","PgC/yr","global",1.29614768003665 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2203,"Simulated","PgC/yr","global",1.31750495202982 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2204,"Simulated","PgC/yr","global",1.31582627457905 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2205,"Simulated","PgC/yr","global",1.06178171914865 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2206,"Simulated","PgC/yr","global",1.34905239240071 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2207,"Simulated","PgC/yr","global",1.54387185433564 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2208,"Simulated","PgC/yr","global",1.30637568745526 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2209,"Simulated","PgC/yr","global",1.27590493979357 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2210,"Simulated","PgC/yr","global",1.43261819426855 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2211,"Simulated","PgC/yr","global",1.31260422291467 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2212,"Simulated","PgC/yr","global",1.29467310407921 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2213,"Simulated","PgC/yr","global",1.34890332951232 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2214,"Simulated","PgC/yr","global",1.27901232769766 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2215,"Simulated","PgC/yr","global",1.19089552118357 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2216,"Simulated","PgC/yr","global",1.16206446529415 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2217,"Simulated","PgC/yr","global",1.1935178813816 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2218,"Simulated","PgC/yr","global",1.25332764539083 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2219,"Simulated","PgC/yr","global",1.33105132867147 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2220,"Simulated","PgC/yr","global",1.24313633037551 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2221,"Simulated","PgC/yr","global",1.14982869543272 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2222,"Simulated","PgC/yr","global",1.30498825595565 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2223,"Simulated","PgC/yr","global",1.28787927628153 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2224,"Simulated","PgC/yr","global",1.28686564864049 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2225,"Simulated","PgC/yr","global",1.17712440357174 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2226,"Simulated","PgC/yr","global",1.02913029609361 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2227,"Simulated","PgC/yr","global",1.15482574210652 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2228,"Simulated","PgC/yr","global",1.12166945451488 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2229,"Simulated","PgC/yr","global",1.17404224169492 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2230,"Simulated","PgC/yr","global",1.1944007923359 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2231,"Simulated","PgC/yr","global",1.2919418133089 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2232,"Simulated","PgC/yr","global",1.29159896866561 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2233,"Simulated","PgC/yr","global",1.24080521612864 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2234,"Simulated","PgC/yr","global",1.09924947879127 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2235,"Simulated","PgC/yr","global",1.11437294079206 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2236,"Simulated","PgC/yr","global",1.30080990853038 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2237,"Simulated","PgC/yr","global",1.12723683873241 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2238,"Simulated","PgC/yr","global",1.33277701826396 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2239,"Simulated","PgC/yr","global",1.16155765147364 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2240,"Simulated","PgC/yr","global",1.13307414144168 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2241,"Simulated","PgC/yr","global",1.29295314767473 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2242,"Simulated","PgC/yr","global",1.25988067929188 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2243,"Simulated","PgC/yr","global",1.17065851412852 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2244,"Simulated","PgC/yr","global",1.21052939685946 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2245,"Simulated","PgC/yr","global",1.07238433307216 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2246,"Simulated","PgC/yr","global",0.925398808029617 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2247,"Simulated","PgC/yr","global",1.20944123777423 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2248,"Simulated","PgC/yr","global",0.90796739386154 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2249,"Simulated","PgC/yr","global",0.878104937448236 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2250,"Simulated","PgC/yr","global",1.14995597220665 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2251,"Simulated","PgC/yr","global",1.15908664743921 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2252,"Simulated","PgC/yr","global",1.22056362252317 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2253,"Simulated","PgC/yr","global",1.113887913086 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2254,"Simulated","PgC/yr","global",1.25657377644487 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2255,"Simulated","PgC/yr","global",1.04872507142724 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2256,"Simulated","PgC/yr","global",1.20761005752227 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2257,"Simulated","PgC/yr","global",1.05374482152558 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2258,"Simulated","PgC/yr","global",1.05027016559726 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2259,"Simulated","PgC/yr","global",1.16862437902082 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2260,"Simulated","PgC/yr","global",1.11470156712907 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2261,"Simulated","PgC/yr","global",1.21886545223315 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2262,"Simulated","PgC/yr","global",1.31401688044154 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2263,"Simulated","PgC/yr","global",1.12957517679618 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2264,"Simulated","PgC/yr","global",1.00648798733878 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2265,"Simulated","PgC/yr","global",0.917145769218382 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2266,"Simulated","PgC/yr","global",1.07536260958215 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2267,"Simulated","PgC/yr","global",1.0633388530135 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2268,"Simulated","PgC/yr","global",0.887013394313336 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2269,"Simulated","PgC/yr","global",0.938679279411134 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2270,"Simulated","PgC/yr","global",0.854756987912524 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2271,"Simulated","PgC/yr","global",1.09336562259532 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2272,"Simulated","PgC/yr","global",1.26337448406817 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2273,"Simulated","PgC/yr","global",1.15357705375687 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2274,"Simulated","PgC/yr","global",1.09266044046948 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2275,"Simulated","PgC/yr","global",1.2051642795151 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2276,"Simulated","PgC/yr","global",1.26087022754325 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2277,"Simulated","PgC/yr","global",1.30507310713827 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2278,"Simulated","PgC/yr","global",0.929862897545553 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2279,"Simulated","PgC/yr","global",0.961051555010468 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2280,"Simulated","PgC/yr","global",0.96710901213951 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2281,"Simulated","PgC/yr","global",1.10384841288931 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2282,"Simulated","PgC/yr","global",0.955018177271088 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2283,"Simulated","PgC/yr","global",1.12816228994178 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2284,"Simulated","PgC/yr","global",0.8697054730151 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2285,"Simulated","PgC/yr","global",1.17418213148248 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2286,"Simulated","PgC/yr","global",1.13578387542505 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2287,"Simulated","PgC/yr","global",1.08921915169541 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2288,"Simulated","PgC/yr","global",1.14831513379678 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2289,"Simulated","PgC/yr","global",0.979925324619338 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2290,"Simulated","PgC/yr","global",1.05901958382683 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2291,"Simulated","PgC/yr","global",1.00147362643717 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2292,"Simulated","PgC/yr","global",1.19050107784815 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2293,"Simulated","PgC/yr","global",1.18413265260118 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2294,"Simulated","PgC/yr","global",0.920794484734837 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2295,"Simulated","PgC/yr","global",1.07413077680527 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2296,"Simulated","PgC/yr","global",1.21796304843961 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2297,"Simulated","PgC/yr","global",1.06672533251016 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2298,"Simulated","PgC/yr","global",1.0534082833891 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp45",2299,"Simulated","PgC/yr","global",2.86912859254855 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2005,"Simulated","PgC/yr","HL",1.79075128880333 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.931245903214827 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.889543976834547 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.894548844936645 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.920099560206111 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.923046925051159 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.965885413127146 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.94969482202108 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.960695102687731 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.966485676124636 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.994328595814144 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.0073047327832 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.02690482854113 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.01591009625869 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.0261285509486 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.03740097309446 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.06041512949454 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.04381436393621 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.02679904837061 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.0441887670984 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.04161923368546 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.09189589465603 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.08100978439944 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.04440384592699 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.05606208376516 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.10230804659635 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.10724159766237 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.09010060893895 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.10291733135678 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.12493268838131 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.12145186669338 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.12591804533008 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.12363964420734 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.16344014382951 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.12832094678144 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.18304244991935 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.20802127563579 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.13652384941199 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.18682938002399 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.15687396943229 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.20285194079522 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.17139566972013 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.17112190432358 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.17824129322454 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.16599767829774 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.17241377566838 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.18305805756925 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.22820927457598 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.20557313004326 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.20126230616445 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.2111468654078 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",1.19711252075421 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.15733561304215 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",1.18750353126 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.18586535954459 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.19423489413672 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.15582825688943 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.16437421205593 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.20272901927511 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",1.17498452701932 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.17640883784413 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",1.21655117206425 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",1.15631714622337 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.16408326020098 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.15061097137881 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.15375767207611 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.15651246739111 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",1.14467009537125 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",1.08134313854022 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",1.12573282853683 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.09604504854287 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.09684036205521 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.14109377832255 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.12293463854207 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.07136173067167 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.10629710929975 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.08764867420598 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.09988200432303 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.07077734597697 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.07075560352827 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.08210529707375 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.10048226732052 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.06665809923428 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.07176193607587 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.04569174769608 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.03833035000415 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.04561799478402 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.06192857533724 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.09022226741226 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.05166789879675 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.04169916650514 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.07758652155908 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.06079034461539 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.01683748838054 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.22741290551737 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.01196271410009 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",1.02140592870021 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",1.04578958871522 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2103,"Simulated","PgC/yr","HL",1.06145263223312 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2104,"Simulated","PgC/yr","HL",0.973824429191579 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2105,"Simulated","PgC/yr","HL",0.983235571424427 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2106,"Simulated","PgC/yr","HL",1.06844052893916 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2107,"Simulated","PgC/yr","HL",1.01680031871721 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2108,"Simulated","PgC/yr","HL",1.04759321956302 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2109,"Simulated","PgC/yr","HL",0.916760154652323 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2110,"Simulated","PgC/yr","HL",1.0143121164972 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2111,"Simulated","PgC/yr","HL",0.994153708939472 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2112,"Simulated","PgC/yr","HL",0.991425347389893 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2113,"Simulated","PgC/yr","HL",0.944057844098299 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2114,"Simulated","PgC/yr","HL",1.02965200046645 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2115,"Simulated","PgC/yr","HL",1.07807739568088 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2116,"Simulated","PgC/yr","HL",0.972449332083627 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2117,"Simulated","PgC/yr","HL",0.986212933631265 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2118,"Simulated","PgC/yr","HL",1.02894722034525 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2119,"Simulated","PgC/yr","HL",0.995501019017555 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2120,"Simulated","PgC/yr","HL",0.978611917915536 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2121,"Simulated","PgC/yr","HL",0.918574070309879 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2122,"Simulated","PgC/yr","HL",0.987034996670739 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2123,"Simulated","PgC/yr","HL",0.936778544449159 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2124,"Simulated","PgC/yr","HL",0.8836098671492 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2125,"Simulated","PgC/yr","HL",0.962649351867884 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2126,"Simulated","PgC/yr","HL",0.991667491507315 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2127,"Simulated","PgC/yr","HL",1.04673452816599 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2128,"Simulated","PgC/yr","HL",0.91801472100734 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2129,"Simulated","PgC/yr","HL",1.00123290588651 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2130,"Simulated","PgC/yr","HL",0.980927984898565 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2131,"Simulated","PgC/yr","HL",1.00490259818168 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2132,"Simulated","PgC/yr","HL",1.00608444912737 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2133,"Simulated","PgC/yr","HL",0.951788412329906 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2134,"Simulated","PgC/yr","HL",0.94946693228911 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2135,"Simulated","PgC/yr","HL",0.938845430339671 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2136,"Simulated","PgC/yr","HL",0.962858115462413 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2137,"Simulated","PgC/yr","HL",0.974333617492148 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2138,"Simulated","PgC/yr","HL",0.982977188133706 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2139,"Simulated","PgC/yr","HL",0.937633807576268 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2140,"Simulated","PgC/yr","HL",0.950756863954869 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2141,"Simulated","PgC/yr","HL",0.861805168289416 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2142,"Simulated","PgC/yr","HL",0.907386362518063 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2143,"Simulated","PgC/yr","HL",0.86188040979237 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2144,"Simulated","PgC/yr","HL",0.911688841266141 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2145,"Simulated","PgC/yr","HL",0.976731782517969 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2146,"Simulated","PgC/yr","HL",0.918868360217118 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2147,"Simulated","PgC/yr","HL",0.965242206538041 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2148,"Simulated","PgC/yr","HL",0.982117414125126 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2149,"Simulated","PgC/yr","HL",0.930535304056529 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2150,"Simulated","PgC/yr","HL",0.968617608925976 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2151,"Simulated","PgC/yr","HL",0.890434469945952 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2152,"Simulated","PgC/yr","HL",0.881659362000668 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2153,"Simulated","PgC/yr","HL",0.878690480250998 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2154,"Simulated","PgC/yr","HL",0.875645635257338 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2155,"Simulated","PgC/yr","HL",0.935493664970649 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2156,"Simulated","PgC/yr","HL",0.869489905965267 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2157,"Simulated","PgC/yr","HL",0.8716242746426 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2158,"Simulated","PgC/yr","HL",0.853053336492527 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2159,"Simulated","PgC/yr","HL",0.903601011221945 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2160,"Simulated","PgC/yr","HL",0.873022467463689 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2161,"Simulated","PgC/yr","HL",0.868949141494393 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2162,"Simulated","PgC/yr","HL",0.864506825420679 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2163,"Simulated","PgC/yr","HL",0.87265221431246 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2164,"Simulated","PgC/yr","HL",0.864003050177876 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2165,"Simulated","PgC/yr","HL",0.96365040668417 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2166,"Simulated","PgC/yr","HL",0.900166967374873 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2167,"Simulated","PgC/yr","HL",0.812821867254519 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2168,"Simulated","PgC/yr","HL",0.822712245534963 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2169,"Simulated","PgC/yr","HL",0.807528257629393 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2170,"Simulated","PgC/yr","HL",0.876308734833735 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2171,"Simulated","PgC/yr","HL",0.832426158132218 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2172,"Simulated","PgC/yr","HL",0.835468657467512 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2173,"Simulated","PgC/yr","HL",0.813646095517099 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2174,"Simulated","PgC/yr","HL",0.840045939114871 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2175,"Simulated","PgC/yr","HL",0.843594018045557 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2176,"Simulated","PgC/yr","HL",0.826560207865913 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2177,"Simulated","PgC/yr","HL",0.828037250895134 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2178,"Simulated","PgC/yr","HL",0.856687302606442 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2179,"Simulated","PgC/yr","HL",0.834858786292486 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2180,"Simulated","PgC/yr","HL",0.809110674849802 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2181,"Simulated","PgC/yr","HL",0.86660294182313 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2182,"Simulated","PgC/yr","HL",0.796441774017811 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2183,"Simulated","PgC/yr","HL",0.794994141935788 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2184,"Simulated","PgC/yr","HL",0.882948211054874 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2185,"Simulated","PgC/yr","HL",0.814310999446085 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2186,"Simulated","PgC/yr","HL",0.813401425306053 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2187,"Simulated","PgC/yr","HL",0.848589187752489 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2188,"Simulated","PgC/yr","HL",0.835382950719543 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2189,"Simulated","PgC/yr","HL",0.815240421464594 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2190,"Simulated","PgC/yr","HL",0.826112006682847 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2191,"Simulated","PgC/yr","HL",0.815246195392879 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2192,"Simulated","PgC/yr","HL",0.794951920085209 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2193,"Simulated","PgC/yr","HL",0.799776398037238 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2194,"Simulated","PgC/yr","HL",0.877878702021281 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2195,"Simulated","PgC/yr","HL",0.854960717614186 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2196,"Simulated","PgC/yr","HL",0.910415329208941 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2197,"Simulated","PgC/yr","HL",0.824118557942701 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2198,"Simulated","PgC/yr","HL",0.880375565133712 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2199,"Simulated","PgC/yr","HL",1.44258611979049 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2200,"Simulated","PgC/yr","HL",0.737228695980511 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2201,"Simulated","PgC/yr","HL",0.809420482189305 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2202,"Simulated","PgC/yr","HL",0.812535336063412 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2203,"Simulated","PgC/yr","HL",0.80240227235977 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2204,"Simulated","PgC/yr","HL",0.894283695323715 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2205,"Simulated","PgC/yr","HL",0.774189415280737 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2206,"Simulated","PgC/yr","HL",0.790800104778298 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2207,"Simulated","PgC/yr","HL",0.853069395230568 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2208,"Simulated","PgC/yr","HL",0.788642820823086 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2209,"Simulated","PgC/yr","HL",0.786593256717428 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2210,"Simulated","PgC/yr","HL",0.790585025949709 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2211,"Simulated","PgC/yr","HL",0.683041461644153 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2212,"Simulated","PgC/yr","HL",0.769305393693277 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2213,"Simulated","PgC/yr","HL",0.682029039406558 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2214,"Simulated","PgC/yr","HL",0.736390754638255 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2215,"Simulated","PgC/yr","HL",0.786218673119986 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2216,"Simulated","PgC/yr","HL",0.692149653077336 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2217,"Simulated","PgC/yr","HL",0.744049509636827 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2218,"Simulated","PgC/yr","HL",0.785803491589295 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2219,"Simulated","PgC/yr","HL",0.821283198284605 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2220,"Simulated","PgC/yr","HL",0.79559499134787 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2221,"Simulated","PgC/yr","HL",0.814177838225029 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2222,"Simulated","PgC/yr","HL",0.757792541564952 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2223,"Simulated","PgC/yr","HL",0.735360108439512 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2224,"Simulated","PgC/yr","HL",0.717035464417816 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2225,"Simulated","PgC/yr","HL",0.771310390289991 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2226,"Simulated","PgC/yr","HL",0.747857415340305 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2227,"Simulated","PgC/yr","HL",0.741250237030508 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2228,"Simulated","PgC/yr","HL",0.797522761653782 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2229,"Simulated","PgC/yr","HL",0.778492074464074 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2230,"Simulated","PgC/yr","HL",0.780557516872514 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2231,"Simulated","PgC/yr","HL",0.826249498350116 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2232,"Simulated","PgC/yr","HL",0.877604259992519 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2233,"Simulated","PgC/yr","HL",0.785018598213151 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2234,"Simulated","PgC/yr","HL",0.664081324640669 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2235,"Simulated","PgC/yr","HL",0.735112370829065 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2236,"Simulated","PgC/yr","HL",0.810782407523358 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2237,"Simulated","PgC/yr","HL",0.715842426486078 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2238,"Simulated","PgC/yr","HL",0.797451670161782 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2239,"Simulated","PgC/yr","HL",0.742727280059728 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2240,"Simulated","PgC/yr","HL",0.802881508407365 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2241,"Simulated","PgC/yr","HL",0.814767861521578 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2242,"Simulated","PgC/yr","HL",0.814696770029578 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2243,"Simulated","PgC/yr","HL",0.70736846498787 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2244,"Simulated","PgC/yr","HL",0.697915281339701 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2245,"Simulated","PgC/yr","HL",0.712339997675889 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2246,"Simulated","PgC/yr","HL",0.71645464331947 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2247,"Simulated","PgC/yr","HL",0.724809337111555 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2248,"Simulated","PgC/yr","HL",0.682892061249798 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2249,"Simulated","PgC/yr","HL",0.694747559934742 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2250,"Simulated","PgC/yr","HL",0.703411339325295 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2251,"Simulated","PgC/yr","HL",0.725400623454916 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2252,"Simulated","PgC/yr","HL",0.713429826639546 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2253,"Simulated","PgC/yr","HL",0.646334614753176 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2254,"Simulated","PgC/yr","HL",0.72902033518338 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2255,"Simulated","PgC/yr","HL",0.63618928145193 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2256,"Simulated","PgC/yr","HL",0.746108095505429 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2257,"Simulated","PgC/yr","HL",0.612870189464336 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2258,"Simulated","PgC/yr","HL",0.691287172539873 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2259,"Simulated","PgC/yr","HL",0.643938975820979 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2260,"Simulated","PgC/yr","HL",0.712248516999635 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2261,"Simulated","PgC/yr","HL",0.736370365454002 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2262,"Simulated","PgC/yr","HL",0.64570363265286 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2263,"Simulated","PgC/yr","HL",0.701606084560165 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2264,"Simulated","PgC/yr","HL",0.703753444576138 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2265,"Simulated","PgC/yr","HL",0.631081700578713 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2266,"Simulated","PgC/yr","HL",0.726245421337009 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2267,"Simulated","PgC/yr","HL",0.748479014807159 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2268,"Simulated","PgC/yr","HL",0.613634874091485 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2269,"Simulated","PgC/yr","HL",0.694600324763493 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2270,"Simulated","PgC/yr","HL",0.576749215858954 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2271,"Simulated","PgC/yr","HL",0.710173150651956 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2272,"Simulated","PgC/yr","HL",0.771106137576934 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2273,"Simulated","PgC/yr","HL",0.718488148687087 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2274,"Simulated","PgC/yr","HL",0.719913587232268 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2275,"Simulated","PgC/yr","HL",0.794733052116183 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2276,"Simulated","PgC/yr","HL",0.793993267554761 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2277,"Simulated","PgC/yr","HL",0.726012479417791 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2278,"Simulated","PgC/yr","HL",0.741341356836243 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2279,"Simulated","PgC/yr","HL",0.652911479939482 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2280,"Simulated","PgC/yr","HL",0.630577384030134 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2281,"Simulated","PgC/yr","HL",0.667554342503659 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2282,"Simulated","PgC/yr","HL",0.678389118929099 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2283,"Simulated","PgC/yr","HL",0.73266476654231 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2284,"Simulated","PgC/yr","HL",0.584668338936095 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2285,"Simulated","PgC/yr","HL",0.757098948429804 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2286,"Simulated","PgC/yr","HL",0.719065721950774 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2287,"Simulated","PgC/yr","HL",0.68295792011929 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2288,"Simulated","PgC/yr","HL",0.734416973341328 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2289,"Simulated","PgC/yr","HL",0.666171847550094 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2290,"Simulated","PgC/yr","HL",0.698685198589358 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2291,"Simulated","PgC/yr","HL",0.70601087010003 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2292,"Simulated","PgC/yr","HL",0.780494003661387 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2293,"Simulated","PgC/yr","HL",0.756893973975712 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2294,"Simulated","PgC/yr","HL",0.618128794649239 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2295,"Simulated","PgC/yr","HL",0.689730196690967 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2296,"Simulated","PgC/yr","HL",0.728039489116088 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2297,"Simulated","PgC/yr","HL",0.723306852710832 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2298,"Simulated","PgC/yr","HL",0.733325159589824 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp45",2299,"Simulated","PgC/yr","HL",1.53963150964606 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2005,"Simulated","PgC/yr","LL",2.81716631981714 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.4160011784054 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.34512757940921 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.43487859825384 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.47391824551779 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.48248990961347 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",1.40895732176632 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",1.43175269212009 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",1.46803214083753 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",1.45831480231233 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",1.53202082348024 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",1.508846460257 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",1.45988439802032 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",1.50042528217641 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",1.53955575246071 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",1.54996247635842 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",1.49651385353691 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",1.53294354671886 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",1.57244383095036 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",1.55981580786356 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",1.60684401610852 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",1.67317573943568 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",1.65363550477919 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",1.62911932805058 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",1.64644406073205 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",1.67697267309741 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",1.734295042667 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",1.69906561434702 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",1.70654619444562 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",1.74903204392039 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",1.69350850156492 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",1.7358110141449 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",1.73350758775656 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",1.74688562541297 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",1.73360807280035 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",1.78233848802503 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",1.77086411053709 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",1.83744632182195 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",1.78137421808562 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",1.77465041597303 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",1.79010144075871 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",1.66080400152065 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",1.69864966423788 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",1.70547974860832 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",1.71997544082627 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",1.79325464210868 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",1.84456264363683 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",1.69029829427665 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",1.7063771090354 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",1.71131730162079 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",1.66441469968055 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",1.67715045432872 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",1.67670865830688 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",1.67725190557485 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",1.66936696979524 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",1.64786824298725 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",1.64286911205888 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",1.64557882653291 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",1.63526485806022 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",1.59310655118011 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",1.538250896195 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",1.40491545581036 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",1.45218110828139 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",1.49356379622978 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",1.465203100374 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",1.46542001280026 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.49095287594544 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",1.43787068536293 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",1.36660094340566 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.26269699262466 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.28346382115699 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.21487263364816 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.10707836574887 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.07777600908852 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.10609419204116 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.10268639637352 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.07157274848882 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.06084819233001 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.1139303346024 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.01214236695498 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",0.99108550863401 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.09508238392545 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.03985621449644 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",0.982191157110455 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",0.998886481429922 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.01143411648169 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",0.944685621773408 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",0.975073241061706 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",0.96059824972898 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.01321316070283 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",0.967048906438893 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",0.958216512640657 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",0.952531522978322 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",0.952510000821109 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.47228174029747 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.0456116161546 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",1.01192110661818 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",0.987681988411741 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2103,"Simulated","PgC/yr","LL",1.04373525120236 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2104,"Simulated","PgC/yr","LL",1.1686410592359 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2105,"Simulated","PgC/yr","LL",1.1441574918364 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2106,"Simulated","PgC/yr","LL",1.00336924967055 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2107,"Simulated","PgC/yr","LL",0.990169959447799 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2108,"Simulated","PgC/yr","LL",1.04051489878948 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2109,"Simulated","PgC/yr","LL",0.815700193427323 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2110,"Simulated","PgC/yr","LL",0.891430456816244 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2111,"Simulated","PgC/yr","LL",0.753389997496779 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2112,"Simulated","PgC/yr","LL",0.821844950475096 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2113,"Simulated","PgC/yr","LL",1.01023701593241 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2114,"Simulated","PgC/yr","LL",0.865282605879037 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2115,"Simulated","PgC/yr","LL",0.777192682104387 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2116,"Simulated","PgC/yr","LL",0.722798195498118 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2117,"Simulated","PgC/yr","LL",0.981216162325024 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2118,"Simulated","PgC/yr","LL",0.899102103428399 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2119,"Simulated","PgC/yr","LL",0.793186422746744 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2120,"Simulated","PgC/yr","LL",0.822633371587882 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2121,"Simulated","PgC/yr","LL",0.85567633231329 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2122,"Simulated","PgC/yr","LL",0.682433256788884 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2123,"Simulated","PgC/yr","LL",0.878994659685801 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2124,"Simulated","PgC/yr","LL",0.74383338673152 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2125,"Simulated","PgC/yr","LL",0.597755766453128 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2126,"Simulated","PgC/yr","LL",0.682875197741076 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2127,"Simulated","PgC/yr","LL",0.81842565699956 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2128,"Simulated","PgC/yr","LL",0.690209253254202 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2129,"Simulated","PgC/yr","LL",0.769158226512023 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2130,"Simulated","PgC/yr","LL",0.759867031530689 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2131,"Simulated","PgC/yr","LL",0.734061022982823 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2132,"Simulated","PgC/yr","LL",0.679443730116004 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2133,"Simulated","PgC/yr","LL",0.67735567023017 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2134,"Simulated","PgC/yr","LL",0.723553862351439 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2135,"Simulated","PgC/yr","LL",0.831767945169238 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2136,"Simulated","PgC/yr","LL",0.715687042865776 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2137,"Simulated","PgC/yr","LL",0.732128135193451 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2138,"Simulated","PgC/yr","LL",0.652256631937483 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2139,"Simulated","PgC/yr","LL",0.609019366899708 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2140,"Simulated","PgC/yr","LL",0.708373760703048 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2141,"Simulated","PgC/yr","LL",0.672960029285921 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2142,"Simulated","PgC/yr","LL",0.751215752361851 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2143,"Simulated","PgC/yr","LL",0.88561672069156 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2144,"Simulated","PgC/yr","LL",0.686179996238836 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2145,"Simulated","PgC/yr","LL",0.788407779193294 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2146,"Simulated","PgC/yr","LL",0.833533390092378 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2147,"Simulated","PgC/yr","LL",0.736034201409944 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2148,"Simulated","PgC/yr","LL",0.545729441792248 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2149,"Simulated","PgC/yr","LL",0.419769410381066 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2150,"Simulated","PgC/yr","LL",0.679029809031792 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2151,"Simulated","PgC/yr","LL",0.575090495244994 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2152,"Simulated","PgC/yr","LL",0.568379447003344 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2153,"Simulated","PgC/yr","LL",0.709425955055773 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2154,"Simulated","PgC/yr","LL",0.656977303350287 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2155,"Simulated","PgC/yr","LL",0.487503673030918 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2156,"Simulated","PgC/yr","LL",0.454364671792506 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2157,"Simulated","PgC/yr","LL",0.645763945425599 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2158,"Simulated","PgC/yr","LL",0.65193604599971 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2159,"Simulated","PgC/yr","LL",0.524635215595621 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2160,"Simulated","PgC/yr","LL",0.634654454252902 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2161,"Simulated","PgC/yr","LL",0.618055387841967 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2162,"Simulated","PgC/yr","LL",0.578195869578932 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2163,"Simulated","PgC/yr","LL",0.568992792251379 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2164,"Simulated","PgC/yr","LL",0.505002080583742 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2165,"Simulated","PgC/yr","LL",0.736698852002451 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2166,"Simulated","PgC/yr","LL",0.490124883370227 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2167,"Simulated","PgC/yr","LL",0.583781485330174 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2168,"Simulated","PgC/yr","LL",0.564672225229267 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2169,"Simulated","PgC/yr","LL",0.502181542700845 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2170,"Simulated","PgC/yr","LL",0.680198817247919 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2171,"Simulated","PgC/yr","LL",0.490656487899951 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2172,"Simulated","PgC/yr","LL",0.546846275081793 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2173,"Simulated","PgC/yr","LL",0.710707912325925 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2174,"Simulated","PgC/yr","LL",0.672314026398656 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2175,"Simulated","PgC/yr","LL",0.601099889386293 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2176,"Simulated","PgC/yr","LL",0.555883938568036 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2177,"Simulated","PgC/yr","LL",0.582392279599827 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2178,"Simulated","PgC/yr","LL",0.60333326610468 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2179,"Simulated","PgC/yr","LL",0.680295340862094 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2180,"Simulated","PgC/yr","LL",0.527973831175424 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2181,"Simulated","PgC/yr","LL",0.4521326477574 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2182,"Simulated","PgC/yr","LL",0.464584483846755 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2183,"Simulated","PgC/yr","LL",0.440515707113582 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2184,"Simulated","PgC/yr","LL",0.491184227620298 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2185,"Simulated","PgC/yr","LL",0.52237459197113 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2186,"Simulated","PgC/yr","LL",0.492858656282624 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2187,"Simulated","PgC/yr","LL",0.461152533120512 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2188,"Simulated","PgC/yr","LL",0.547972287293607 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2189,"Simulated","PgC/yr","LL",0.43012362118138 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2190,"Simulated","PgC/yr","LL",0.345450961857343 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2191,"Simulated","PgC/yr","LL",0.377576610077264 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2192,"Simulated","PgC/yr","LL",0.491639212304135 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2193,"Simulated","PgC/yr","LL",0.401152043893539 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2194,"Simulated","PgC/yr","LL",0.451245384144813 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2195,"Simulated","PgC/yr","LL",0.612923500711514 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2196,"Simulated","PgC/yr","LL",0.486372153465743 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2197,"Simulated","PgC/yr","LL",0.53890911606548 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2198,"Simulated","PgC/yr","LL",0.517163186387757 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2199,"Simulated","PgC/yr","LL",1.43024261447649 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2200,"Simulated","PgC/yr","LL",0.660807522682768 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2201,"Simulated","PgC/yr","LL",0.522523193891653 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2202,"Simulated","PgC/yr","LL",0.483612582950758 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2203,"Simulated","PgC/yr","LL",0.515102759888964 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2204,"Simulated","PgC/yr","LL",0.421542778163427 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2205,"Simulated","PgC/yr","LL",0.287592253366538 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2206,"Simulated","PgC/yr","LL",0.558252583614597 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2207,"Simulated","PgC/yr","LL",0.690802791354182 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2208,"Simulated","PgC/yr","LL",0.517733245770777 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2209,"Simulated","PgC/yr","LL",0.48931124437626 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2210,"Simulated","PgC/yr","LL",0.642033341554795 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2211,"Simulated","PgC/yr","LL",0.629562954380433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2212,"Simulated","PgC/yr","LL",0.525367693592683 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2213,"Simulated","PgC/yr","LL",0.666873920720435 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2214,"Simulated","PgC/yr","LL",0.542621555332215 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2215,"Simulated","PgC/yr","LL",0.404676363563879 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2216,"Simulated","PgC/yr","LL",0.469914539077983 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2217,"Simulated","PgC/yr","LL",0.449468924514951 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2218,"Simulated","PgC/yr","LL",0.467524540959617 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2219,"Simulated","PgC/yr","LL",0.509767583785313 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2220,"Simulated","PgC/yr","LL",0.447541737319409 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2221,"Simulated","PgC/yr","LL",0.335650771481137 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2222,"Simulated","PgC/yr","LL",0.547196040330357 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2223,"Simulated","PgC/yr","LL",0.552519525385645 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2224,"Simulated","PgC/yr","LL",0.569830393063479 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2225,"Simulated","PgC/yr","LL",0.40581348710265 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2226,"Simulated","PgC/yr","LL",0.28127300017542 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2227,"Simulated","PgC/yr","LL",0.41357508715304 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2228,"Simulated","PgC/yr","LL",0.324146683271109 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2229,"Simulated","PgC/yr","LL",0.39555029256315 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2230,"Simulated","PgC/yr","LL",0.413843401543997 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2231,"Simulated","PgC/yr","LL",0.465692621315204 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2232,"Simulated","PgC/yr","LL",0.413995191932255 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2233,"Simulated","PgC/yr","LL",0.455786148681146 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2234,"Simulated","PgC/yr","LL",0.43516826024016 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2235,"Simulated","PgC/yr","LL",0.379260507522561 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2236,"Simulated","PgC/yr","LL",0.490027780034645 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2237,"Simulated","PgC/yr","LL",0.411394368462406 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2238,"Simulated","PgC/yr","LL",0.535325568191447 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2239,"Simulated","PgC/yr","LL",0.418829875221663 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2240,"Simulated","PgC/yr","LL",0.330192694439315 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2241,"Simulated","PgC/yr","LL",0.47818523114348 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2242,"Simulated","PgC/yr","LL",0.445183817118867 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2243,"Simulated","PgC/yr","LL",0.463290449047302 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2244,"Simulated","PgC/yr","LL",0.512613629410094 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2245,"Simulated","PgC/yr","LL",0.360044385442396 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2246,"Simulated","PgC/yr","LL",0.208944058898434 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2247,"Simulated","PgC/yr","LL",0.484631443322612 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2248,"Simulated","PgC/yr","LL",0.225075290134357 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2249,"Simulated","PgC/yr","LL",0.18335737828268 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2250,"Simulated","PgC/yr","LL",0.446544809740766 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2251,"Simulated","PgC/yr","LL",0.433686395705014 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2252,"Simulated","PgC/yr","LL",0.507134102676233 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2253,"Simulated","PgC/yr","LL",0.467553430409706 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2254,"Simulated","PgC/yr","LL",0.527553339915272 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2255,"Simulated","PgC/yr","LL",0.412535646671257 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2256,"Simulated","PgC/yr","LL",0.461501911888138 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2257,"Simulated","PgC/yr","LL",0.440874651284415 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2258,"Simulated","PgC/yr","LL",0.358983012167402 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2259,"Simulated","PgC/yr","LL",0.524684975016342 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2260,"Simulated","PgC/yr","LL",0.40245303534987 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2261,"Simulated","PgC/yr","LL",0.482495556420744 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2262,"Simulated","PgC/yr","LL",0.668313368972675 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2263,"Simulated","PgC/yr","LL",0.427969086574271 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2264,"Simulated","PgC/yr","LL",0.302734479883039 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2265,"Simulated","PgC/yr","LL",0.286064204359343 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2266,"Simulated","PgC/yr","LL",0.349117216652031 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2267,"Simulated","PgC/yr","LL",0.314859739580089 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2268,"Simulated","PgC/yr","LL",0.273378643922951 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2269,"Simulated","PgC/yr","LL",0.244078944319054 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2270,"Simulated","PgC/yr","LL",0.278007912594003 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2271,"Simulated","PgC/yr","LL",0.383192467961877 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2272,"Simulated","PgC/yr","LL",0.492268306650379 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2273,"Simulated","PgC/yr","LL",0.435088451926538 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2274,"Simulated","PgC/yr","LL",0.372746951040045 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2275,"Simulated","PgC/yr","LL",0.410431451206276 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2276,"Simulated","PgC/yr","LL",0.466877378629539 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2277,"Simulated","PgC/yr","LL",0.579060427436433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2278,"Simulated","PgC/yr","LL",0.188521439951191 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2279,"Simulated","PgC/yr","LL",0.308139995517341 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2280,"Simulated","PgC/yr","LL",0.336531658158253 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2281,"Simulated","PgC/yr","LL",0.436294079211506 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2282,"Simulated","PgC/yr","LL",0.276629141848972 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2283,"Simulated","PgC/yr","LL",0.395497441294928 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2284,"Simulated","PgC/yr","LL",0.285037034647331 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2285,"Simulated","PgC/yr","LL",0.417082788143061 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2286,"Simulated","PgC/yr","LL",0.416718143378398 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2287,"Simulated","PgC/yr","LL",0.406261225268906 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2288,"Simulated","PgC/yr","LL",0.413898281837142 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2289,"Simulated","PgC/yr","LL",0.313753534516328 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2290,"Simulated","PgC/yr","LL",0.360334342765861 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2291,"Simulated","PgC/yr","LL",0.295462744421108 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2292,"Simulated","PgC/yr","LL",0.410006901896279 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2293,"Simulated","PgC/yr","LL",0.427238927462834 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2294,"Simulated","PgC/yr","LL",0.302665589655905 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2295,"Simulated","PgC/yr","LL",0.384400607372939 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2296,"Simulated","PgC/yr","LL",0.489923236941014 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2297,"Simulated","PgC/yr","LL",0.343418555226529 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2298,"Simulated","PgC/yr","LL",0.320083126072528 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp45",2299,"Simulated","PgC/yr","LL",1.32949684098753 -"inmcm4","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.62871124015065 -"inmcm4","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",3.67780822933107 -"inmcm4","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.58864670772222 -"inmcm4","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",4.00936428506441 -"inmcm4","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",4.26947527591205 -"inmcm4","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",3.99783436430282 -"inmcm4","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",3.85145281183548 -"inmcm4","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",3.78743501754739 -"inmcm4","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",4.08715926073024 -"inmcm4","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",4.27273134747077 -"inmcm4","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.1958457868789 -"inmcm4","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.34931643549425 -"inmcm4","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.16064593960731 -"inmcm4","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.32587157779025 -"inmcm4","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",4.20173870515954 -"inmcm4","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.15905560570916 -"inmcm4","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.17928209373565 -"inmcm4","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.1375129792842 -"inmcm4","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.38116881270722 -"inmcm4","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.01279858369792 -"inmcm4","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.63672244585391 -"inmcm4","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.64653521729875 -"inmcm4","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",4.15894706999054 -"inmcm4","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",5.00600894482464 -"inmcm4","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.95298410511128 -"inmcm4","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.36635882828069 -"inmcm4","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",4.40630111521551 -"inmcm4","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",5.02564134260182 -"inmcm4","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",4.92035826809295 -"inmcm4","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.72572973249419 -"inmcm4","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",4.35096046601109 -"inmcm4","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",4.86190549996715 -"inmcm4","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",4.90891174846251 -"inmcm4","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",4.9259529987677 -"inmcm4","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",5.42946390723866 -"inmcm4","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",5.01748059904256 -"inmcm4","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",4.96923247342989 -"inmcm4","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",5.12436314729956 -"inmcm4","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",4.70207351575919 -"inmcm4","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",4.76709212362111 -"inmcm4","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",4.75643163108976 -"inmcm4","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",4.84975521188752 -"inmcm4","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",4.68398461014897 -"inmcm4","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",5.40015583576647 -"inmcm4","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",5.11073220352166 -"inmcm4","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",5.36517762985713 -"inmcm4","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",5.34105870821642 -"inmcm4","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",5.24840919135537 -"inmcm4","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",5.08174973920535 -"inmcm4","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",4.97404117700555 -"inmcm4","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",4.91594486302933 -"inmcm4","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",5.33138760444641 -"inmcm4","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",4.82357868151795 -"inmcm4","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",5.22031786241302 -"inmcm4","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",5.29835275914106 -"inmcm4","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",4.87590432270713 -"inmcm4","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",4.85789881822806 -"inmcm4","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",5.0474661618952 -"inmcm4","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",5.26903669030014 -"inmcm4","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",4.89429827081075 -"inmcm4","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",5.02602407382013 -"inmcm4","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.52215899616208 -"inmcm4","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.90486850732346 -"inmcm4","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",5.06857464544566 -"inmcm4","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",4.70005932131778 -"inmcm4","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",4.50955857047048 -"inmcm4","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.55374631772536 -"inmcm4","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",4.62474809988658 -"inmcm4","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",3.87236250364867 -"inmcm4","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",4.3528387051839 -"inmcm4","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",4.34885373058853 -"inmcm4","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",4.61040996021574 -"inmcm4","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",4.51771817154849 -"inmcm4","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",4.38796886109932 -"inmcm4","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",4.23496777227717 -"inmcm4","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",4.5113408412184 -"inmcm4","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",3.98176993546524 -"inmcm4","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",3.97611008335932 -"inmcm4","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",3.98035211623564 -"inmcm4","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",4.02645351958205 -"inmcm4","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",3.98369044644426 -"inmcm4","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",4.0976460961118 -"inmcm4","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.81962556920997 -"inmcm4","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.95114001318835 -"inmcm4","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",4.0169035188244 -"inmcm4","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.7054459932177 -"inmcm4","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.62973033342446 -"inmcm4","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.88451964661579 -"inmcm4","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.34399577313161 -"inmcm4","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.71424995371996 -"inmcm4","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.25233907247565 -"inmcm4","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",3.50717179995443 -"inmcm4","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",3.62576363852907 -"inmcm4","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.34358790732583 -"inmcm4","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.36055032642486 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.117074883795166 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",-0.00218567283197227 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.253995537261179 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.387245204114499 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.590688743030436 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.437933683143488 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.353501472343627 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.228203782053824 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.428457213904733 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.456308211670363 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.412923855682176 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.534844938224503 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.421866090707983 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.419778658184802 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.348288391516634 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.294062931342268 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",0.301391978437405 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",0.231916778589827 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.45201078903268 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.424944984923661 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.369808335700762 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.550309540435097 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.317041018650089 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.337716982787378 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.455008723044273 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.307977429263169 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",0.408974338465023 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",0.587502245656036 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",0.407999893885485 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.368227463095715 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",0.340571388623999 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.410381945919924 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.438280385333808 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.480821105055216 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",0.649132384538699 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.535908765619592 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.539287607937457 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",0.463063317955644 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",0.362883745845994 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",0.509542553932291 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",0.45429898911079 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",0.40160042807208 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.498821772767046 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",0.392454675250864 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",0.431708341930377 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.527147358905247 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",0.372806269712355 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",0.430084840597914 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",0.467511316259525 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",0.455184566544867 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.402008838783137 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",0.568776202018003 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",0.411610100183603 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",0.46731948698615 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",0.519825015521276 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",0.644316541570819 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",0.428217599203044 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",0.425431605598325 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.581119453175532 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",0.415419183246323 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.425842594659831 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.339348391061217 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",0.453828869878997 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",0.511497803022473 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",0.422868209582335 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",0.296291313689971 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.288169853556966 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.359880827023534 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.250285290965655 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",0.0959856960259827 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",0.225901658883292 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",0.456162792705063 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",0.471586828868599 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.551940433038847 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.354574925580391 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.168887317351704 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",0.157000021687504 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",0.11100579061924 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.223333621836494 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.192114782714913 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.233909327816499 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.137458428613578 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.24710927888308 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.292560440590858 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.227783167150644 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.0767783087372032 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.178389191936879 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.166986024541909 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.115036886844587 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.188983805820173 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.0959361401303608 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.0943177611207886 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.170863777671577 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",0.0493988568906145 -"inmcm4","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",0.168296651641938 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",3.51163688255228 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",3.67999369417696 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",3.33465054440155 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",3.62211928098439 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",3.67878627870082 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",3.55990050149663 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",3.49795154636768 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",3.55923079355568 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",3.6587018346109 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",3.81642290766034 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",3.78292198115342 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",3.8144710487194 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",3.73878046311517 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",3.90609291858846 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",3.85344999206504 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",3.8649922628386 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",3.87788947895356 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",3.90559694647567 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",3.92915804831121 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",3.58785352859708 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",4.26691311593831 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",4.09622494420616 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",3.84190675070026 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",4.66829237913795 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",4.49797497325136 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",4.05838159258648 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",3.99732752256123 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",4.43813899520566 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",4.51235816452225 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",4.3575022767506 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",4.01038876859216 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",4.45152344811244 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",4.47063147743629 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",4.44513113434566 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",4.78033160588496 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",4.48157198165422 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",4.42994526413684 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",4.66130023999796 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",4.33918916163493 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",4.25754885185966 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",4.30213295949367 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",4.44815549658333 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",4.18516312935532 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",5.00770133420183 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",4.67902323565262 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",4.83803034206693 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",4.96825262470631 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",4.81832442855233 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",4.61423821298244 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",4.51885724332311 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",4.51393537525274 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",4.76261152200396 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",4.41196894417408 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",4.7529987865733 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",4.77852727680928 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",4.23158747794011 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",4.42968126332534 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",4.62203400165157 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",4.68791773358139 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",4.47887956161336 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",4.60018114036106 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",4.18281138683225 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",4.4510400936855 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",4.55707621374445 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",4.27719070635382 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",4.21326659809469 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",4.26557661183007 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",4.26486710964915 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",3.62207754556199 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",4.2568529379558 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",4.12295114400609 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",4.15424688726397 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",4.04613176081443 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",3.83602787968819 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",3.88039263370676 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",4.34245325990364 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",3.82476999214173 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",3.86510388082876 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",3.75701787211578 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",3.83433808037632 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",3.74978114398866 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",3.96018784957516 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",3.57251624615815 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",3.65857954011733 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",3.78912114726768 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",3.62866688934619 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",3.45134084426889 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",3.71753325074517 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",3.22895801363405 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",3.52526689503741 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",3.15640340825765 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",3.41285399067117 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",3.45490000226811 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",3.29418853767364 -"inmcm4","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",3.19225316551398 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.98285089940545 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",4.01400388497501 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",4.13146894314431 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",4.1357094251414 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",4.25435372498063 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",4.37866911925541 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",4.36265475480931 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",4.2888529149744 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",4.480131396885 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",4.49059475339174 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.50380349571156 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.6322076228098 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.5311280002211 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.46573916546291 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",4.62101718311233 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.61601602459601 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.81571677870843 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.70804205208493 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.74617047994891 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.66897185263191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.64089671098867 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.89067160335879 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",4.88410314230867 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",4.77029898468702 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.95258179102977 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",5.10315751494758 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",5.12721613011717 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",5.13717404217534 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",5.13338224348554 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.9969902406749 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",5.24924293062062 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",5.1376099831856 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",5.25100136760976 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",5.30814091650146 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",5.14531173641032 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",5.15275941595501 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",5.21541869623884 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",5.3848221293333 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",5.36563300227747 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",5.3726269788221 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",5.22469315782034 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",5.27418115041499 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",5.25574343275328 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",5.21387958121058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",5.41985302063011 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",5.45692847140375 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",5.43134773093526 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",5.31054573546685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",5.35114578282302 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",5.25813628168208 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",5.31900353164825 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",5.22426571167476 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",5.17945105304575 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",5.30457539011637 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",5.36128980964377 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",5.19579401430296 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",5.16683695125366 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",5.26730108228313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",5.06463948169888 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",5.08979895410519 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",5.09387841980353 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.98007619283294 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.8273053186553 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",4.77566349173359 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",4.84024106691467 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",4.84755244249424 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.83607163287674 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",4.67925025276671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",4.47446648053285 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",4.59711765359042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",4.54331774490931 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",4.43292504771784 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",4.46035457964527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",4.30273120708324 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",4.10699601025638 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",4.17817023399311 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",4.13558779412436 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",3.97056500829424 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",4.07400929230619 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",4.02868918922861 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",4.01545998200751 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",3.97161026278032 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.98368030710257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.83306712855411 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",3.88244584629853 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.88016188608976 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.83977536874127 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.76100210241643 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.82511477682128 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.8504677004642 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.79612720948517 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",3.66861040961597 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",3.79762462245044 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.82138784800723 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.93429348062367 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",3.85130444463536 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",3.70993136207947 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2103,"Simulated","PgC/yr","global",3.70602990240923 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2104,"Simulated","PgC/yr","global",3.74454561887665 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2105,"Simulated","PgC/yr","global",3.74790649624896 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2106,"Simulated","PgC/yr","global",3.92088201994212 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2107,"Simulated","PgC/yr","global",4.05823162568054 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2108,"Simulated","PgC/yr","global",3.82291151782698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2109,"Simulated","PgC/yr","global",3.56510164185849 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2110,"Simulated","PgC/yr","global",3.83199175591143 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2111,"Simulated","PgC/yr","global",3.56701993675573 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2112,"Simulated","PgC/yr","global",3.81298179327434 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2113,"Simulated","PgC/yr","global",3.67993367810664 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2114,"Simulated","PgC/yr","global",3.52480509284958 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2115,"Simulated","PgC/yr","global",3.71114689998939 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2116,"Simulated","PgC/yr","global",3.65423748470452 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2117,"Simulated","PgC/yr","global",3.68223655869584 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2118,"Simulated","PgC/yr","global",3.65656816666905 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2119,"Simulated","PgC/yr","global",3.41557812277058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2120,"Simulated","PgC/yr","global",3.52192765050371 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2121,"Simulated","PgC/yr","global",3.41778060950445 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2122,"Simulated","PgC/yr","global",3.30946799576939 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2123,"Simulated","PgC/yr","global",3.2734157900597 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2124,"Simulated","PgC/yr","global",3.43670407897387 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2125,"Simulated","PgC/yr","global",3.31220334219694 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2126,"Simulated","PgC/yr","global",3.33496340146085 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2127,"Simulated","PgC/yr","global",3.22971511709465 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2128,"Simulated","PgC/yr","global",3.26438188760078 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2129,"Simulated","PgC/yr","global",3.3787938141774 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2130,"Simulated","PgC/yr","global",3.07023561659964 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2131,"Simulated","PgC/yr","global",3.13748250994187 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2132,"Simulated","PgC/yr","global",3.34364206412398 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2133,"Simulated","PgC/yr","global",3.18518812547419 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2134,"Simulated","PgC/yr","global",3.22857680522729 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2135,"Simulated","PgC/yr","global",3.19394092513818 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2136,"Simulated","PgC/yr","global",3.15182647508736 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2137,"Simulated","PgC/yr","global",2.9452282769835 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2138,"Simulated","PgC/yr","global",2.97475024853415 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2139,"Simulated","PgC/yr","global",3.21690795019615 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2140,"Simulated","PgC/yr","global",2.90297790909777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2141,"Simulated","PgC/yr","global",2.98750953528626 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2142,"Simulated","PgC/yr","global",3.010011659568 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2143,"Simulated","PgC/yr","global",2.96094068760319 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2144,"Simulated","PgC/yr","global",2.93454945981801 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2145,"Simulated","PgC/yr","global",2.83986260903261 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2146,"Simulated","PgC/yr","global",3.26079087662164 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2147,"Simulated","PgC/yr","global",3.05456336352208 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2148,"Simulated","PgC/yr","global",2.89397644157673 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2149,"Simulated","PgC/yr","global",2.92481743393434 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2150,"Simulated","PgC/yr","global",2.76342581662549 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2151,"Simulated","PgC/yr","global",2.64360961159038 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2152,"Simulated","PgC/yr","global",2.8996541002259 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2153,"Simulated","PgC/yr","global",2.78718518088015 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2154,"Simulated","PgC/yr","global",2.80061633420255 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2155,"Simulated","PgC/yr","global",2.69712108100251 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2156,"Simulated","PgC/yr","global",2.81393628202366 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2157,"Simulated","PgC/yr","global",2.80829569187492 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2158,"Simulated","PgC/yr","global",2.66404207793146 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2159,"Simulated","PgC/yr","global",2.66257014956022 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2160,"Simulated","PgC/yr","global",2.85775588309425 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2161,"Simulated","PgC/yr","global",2.83883395814568 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2162,"Simulated","PgC/yr","global",2.73712108200798 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2163,"Simulated","PgC/yr","global",3.04038466210768 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2164,"Simulated","PgC/yr","global",2.72691334370212 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2165,"Simulated","PgC/yr","global",2.89346211613327 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2166,"Simulated","PgC/yr","global",2.64956373947191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2167,"Simulated","PgC/yr","global",2.69728480021274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2168,"Simulated","PgC/yr","global",2.64206354621828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2169,"Simulated","PgC/yr","global",2.67239948025753 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2170,"Simulated","PgC/yr","global",2.76876831424993 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2171,"Simulated","PgC/yr","global",2.72671255599146 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2172,"Simulated","PgC/yr","global",2.7802873507585 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2173,"Simulated","PgC/yr","global",2.61544681838883 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2174,"Simulated","PgC/yr","global",2.96740914092819 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2175,"Simulated","PgC/yr","global",3.04249602211133 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2176,"Simulated","PgC/yr","global",2.86860150851167 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2177,"Simulated","PgC/yr","global",2.81872120762081 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2178,"Simulated","PgC/yr","global",2.67865324518421 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2179,"Simulated","PgC/yr","global",2.68321421525793 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2180,"Simulated","PgC/yr","global",2.85324279316692 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2181,"Simulated","PgC/yr","global",2.54565146564204 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2182,"Simulated","PgC/yr","global",2.47236549577145 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2183,"Simulated","PgC/yr","global",2.75363509894946 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2184,"Simulated","PgC/yr","global",2.50337175186014 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2185,"Simulated","PgC/yr","global",2.62577966288363 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2186,"Simulated","PgC/yr","global",2.63901620657878 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2187,"Simulated","PgC/yr","global",2.64905868115356 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2188,"Simulated","PgC/yr","global",2.52726548942886 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2189,"Simulated","PgC/yr","global",2.65188669883218 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2190,"Simulated","PgC/yr","global",2.49822077482125 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2191,"Simulated","PgC/yr","global",2.56296863342617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2192,"Simulated","PgC/yr","global",2.43008269294785 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2193,"Simulated","PgC/yr","global",2.76661370766245 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2194,"Simulated","PgC/yr","global",2.54762227424823 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2195,"Simulated","PgC/yr","global",2.60793890253094 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2196,"Simulated","PgC/yr","global",2.47952126087526 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2197,"Simulated","PgC/yr","global",2.81145578153657 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2198,"Simulated","PgC/yr","global",2.71018463836232 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2199,"Simulated","PgC/yr","global",2.85892662989949 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2200,"Simulated","PgC/yr","global",2.57955369832681 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2201,"Simulated","PgC/yr","global",2.59244735839298 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2202,"Simulated","PgC/yr","global",2.65138627407638 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2203,"Simulated","PgC/yr","global",2.55789179338814 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2204,"Simulated","PgC/yr","global",2.78988809236982 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2205,"Simulated","PgC/yr","global",2.68107814292066 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2206,"Simulated","PgC/yr","global",2.58261339413312 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2207,"Simulated","PgC/yr","global",2.58340882237151 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2208,"Simulated","PgC/yr","global",2.63977611083759 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2209,"Simulated","PgC/yr","global",2.68104416346193 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2210,"Simulated","PgC/yr","global",2.76360652556508 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2211,"Simulated","PgC/yr","global",2.63186353051668 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2212,"Simulated","PgC/yr","global",2.44664459003572 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2213,"Simulated","PgC/yr","global",2.59486607804602 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2214,"Simulated","PgC/yr","global",2.35973749077802 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2215,"Simulated","PgC/yr","global",2.5785466707318 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2216,"Simulated","PgC/yr","global",2.75702223317624 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2217,"Simulated","PgC/yr","global",2.63438264402505 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2218,"Simulated","PgC/yr","global",2.55067733649198 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2219,"Simulated","PgC/yr","global",2.81105729515695 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2220,"Simulated","PgC/yr","global",2.91798601820929 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2221,"Simulated","PgC/yr","global",2.71198709419572 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2222,"Simulated","PgC/yr","global",2.30763925794477 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2223,"Simulated","PgC/yr","global",2.65481047680358 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2224,"Simulated","PgC/yr","global",2.59071595051874 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2225,"Simulated","PgC/yr","global",2.38528386565757 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2226,"Simulated","PgC/yr","global",2.57204732698977 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2227,"Simulated","PgC/yr","global",2.18711102879724 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2228,"Simulated","PgC/yr","global",2.30620439807397 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2229,"Simulated","PgC/yr","global",2.58592948040074 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2230,"Simulated","PgC/yr","global",2.51763540192136 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2231,"Simulated","PgC/yr","global",2.31739290712037 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2232,"Simulated","PgC/yr","global",2.30601442200926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2233,"Simulated","PgC/yr","global",2.25284429170525 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2234,"Simulated","PgC/yr","global",2.38031205303742 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2235,"Simulated","PgC/yr","global",2.30292383578593 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2236,"Simulated","PgC/yr","global",2.55947956082321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2237,"Simulated","PgC/yr","global",2.07767709292417 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2238,"Simulated","PgC/yr","global",2.11275161693503 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2239,"Simulated","PgC/yr","global",2.23293696245359 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2240,"Simulated","PgC/yr","global",2.37603990836288 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2241,"Simulated","PgC/yr","global",2.29840920133775 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2242,"Simulated","PgC/yr","global",2.41306361768801 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2243,"Simulated","PgC/yr","global",2.1423075679444 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2244,"Simulated","PgC/yr","global",2.32084027766034 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2245,"Simulated","PgC/yr","global",2.09576806565477 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2246,"Simulated","PgC/yr","global",2.29242418303918 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2247,"Simulated","PgC/yr","global",2.42591248664949 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2248,"Simulated","PgC/yr","global",2.47247670127274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2249,"Simulated","PgC/yr","global",2.30809489159589 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2250,"Simulated","PgC/yr","global",2.14730254837732 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2251,"Simulated","PgC/yr","global",2.43030355942957 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2252,"Simulated","PgC/yr","global",2.20316168948334 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2253,"Simulated","PgC/yr","global",2.34025181571875 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2254,"Simulated","PgC/yr","global",2.53108972305653 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2255,"Simulated","PgC/yr","global",2.4200834649569 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2256,"Simulated","PgC/yr","global",2.37067424292567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2257,"Simulated","PgC/yr","global",2.49649554503041 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2258,"Simulated","PgC/yr","global",2.19032054312612 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2259,"Simulated","PgC/yr","global",2.09595649719862 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2260,"Simulated","PgC/yr","global",2.22164497051016 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2261,"Simulated","PgC/yr","global",2.3698463797494 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2262,"Simulated","PgC/yr","global",2.56811961046506 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2263,"Simulated","PgC/yr","global",2.23788097369842 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2264,"Simulated","PgC/yr","global",2.47486761955046 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2265,"Simulated","PgC/yr","global",2.44847484724444 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2266,"Simulated","PgC/yr","global",2.40494252705218 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2267,"Simulated","PgC/yr","global",2.16419188388565 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2268,"Simulated","PgC/yr","global",2.37039622917244 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2269,"Simulated","PgC/yr","global",2.44988345026077 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2270,"Simulated","PgC/yr","global",2.51521359322661 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2271,"Simulated","PgC/yr","global",2.15322733036268 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2272,"Simulated","PgC/yr","global",2.42544449683157 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2273,"Simulated","PgC/yr","global",2.55862852983418 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2274,"Simulated","PgC/yr","global",2.6126821260651 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2275,"Simulated","PgC/yr","global",2.43212454951319 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2276,"Simulated","PgC/yr","global",2.47678745896856 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2277,"Simulated","PgC/yr","global",2.39019080840196 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2278,"Simulated","PgC/yr","global",2.56805319606846 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2279,"Simulated","PgC/yr","global",2.39360728852491 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2280,"Simulated","PgC/yr","global",2.38758211268422 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2281,"Simulated","PgC/yr","global",2.40028270764398 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2282,"Simulated","PgC/yr","global",2.25602754917966 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2283,"Simulated","PgC/yr","global",2.39267594245161 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2284,"Simulated","PgC/yr","global",2.13997843050073 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2285,"Simulated","PgC/yr","global",2.08632023160772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2286,"Simulated","PgC/yr","global",2.46561748417238 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2287,"Simulated","PgC/yr","global",2.40840534280066 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2288,"Simulated","PgC/yr","global",2.3543687362991 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2289,"Simulated","PgC/yr","global",2.31324432411393 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2290,"Simulated","PgC/yr","global",2.26598816414932 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2291,"Simulated","PgC/yr","global",1.96076149804769 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2292,"Simulated","PgC/yr","global",2.01536957726421 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2293,"Simulated","PgC/yr","global",2.06592174472537 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2294,"Simulated","PgC/yr","global",2.32459037428715 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2295,"Simulated","PgC/yr","global",2.02291301710168 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2296,"Simulated","PgC/yr","global",1.93495255462344 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2297,"Simulated","PgC/yr","global",1.97852348783698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2298,"Simulated","PgC/yr","global",2.00879609652133 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2299,"Simulated","PgC/yr","global",1.98613025302935 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp45",2300,"Simulated","PgC/yr","global",2.04251298670394 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.992398453444507 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",1.06313530265174 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",1.09544446704506 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",1.10861647915864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",1.11761860353591 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",1.15194502172555 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",1.12868508544772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.15512276542379 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",1.20943130661155 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",1.22100496405902 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.19794475314851 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.27724131021665 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.19184485353218 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.22353766930402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.1960712243748 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.21967536966793 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.32880328277402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.25553165934352 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.26615869027447 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.23227510239683 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.26156893788474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.30995675297284 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.33309075744103 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.35531254939763 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.41483857097697 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.43001921614416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.45431053808094 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.46579433290631 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.41463801801835 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.43359861748718 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.49474995941586 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.49475851119263 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.53513800112416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.59724183167441 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.54650682972462 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.50994329431634 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.50379925649728 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.56061877865839 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.59074806756471 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.58599590038215 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.52230337039764 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.51861962358474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.52513359471538 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.484526586142 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.58633997146557 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.57851971643216 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.61538077091318 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.59900667012391 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.55932187412368 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.57854392347771 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",1.61531759811053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.52280385623696 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",1.56709819785219 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.60819017492799 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.64874021763348 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.56657295323979 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.664878385936 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.68794728655517 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",1.62073073487887 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.62252784938911 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",1.67211532703404 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",1.6378156676298 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.57405079237238 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.57567983688258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.56597991510664 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.61807147713074 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",1.59646251653258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",1.57911199593995 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",1.51085881719313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.53034500610408 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.49203890824547 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.48067456243122 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.50574733745403 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.47898820722344 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.41564892079259 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.45392412190929 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.46353631900731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.42046053661694 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.40535265051829 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.4317545371706 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.41086633962971 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.35889319212761 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.40954281424149 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.343299785799 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.34121260053774 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.33320710298477 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.33897555228503 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.29509397183119 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.34315481938944 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.34969492861199 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.33619146618233 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.30409906174395 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.32620954267056 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.32532815793493 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.3456715935019 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",1.3438606858033 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",1.28150443990623 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2103,"Simulated","PgC/yr","HL",1.41572126606549 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2104,"Simulated","PgC/yr","HL",1.33224516602918 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2105,"Simulated","PgC/yr","HL",1.33433428233681 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2106,"Simulated","PgC/yr","HL",1.39915702617481 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2107,"Simulated","PgC/yr","HL",1.44564696751176 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2108,"Simulated","PgC/yr","HL",1.38313706549645 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2109,"Simulated","PgC/yr","HL",1.27621337285479 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2110,"Simulated","PgC/yr","HL",1.42472325251087 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2111,"Simulated","PgC/yr","HL",1.4257919487443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2112,"Simulated","PgC/yr","HL",1.4183074888813 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2113,"Simulated","PgC/yr","HL",1.41972956660028 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2114,"Simulated","PgC/yr","HL",1.36252535241606 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2115,"Simulated","PgC/yr","HL",1.40357084644712 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2116,"Simulated","PgC/yr","HL",1.36069113422915 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2117,"Simulated","PgC/yr","HL",1.40852122174628 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2118,"Simulated","PgC/yr","HL",1.31862135803115 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2119,"Simulated","PgC/yr","HL",1.35134624912137 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2120,"Simulated","PgC/yr","HL",1.33296103250459 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2121,"Simulated","PgC/yr","HL",1.3092720591031 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2122,"Simulated","PgC/yr","HL",1.40856425649394 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2123,"Simulated","PgC/yr","HL",1.42651802217909 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2124,"Simulated","PgC/yr","HL",1.35421274952447 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2125,"Simulated","PgC/yr","HL",1.25435668659384 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2126,"Simulated","PgC/yr","HL",1.27732703488225 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2127,"Simulated","PgC/yr","HL",1.25809408890942 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2128,"Simulated","PgC/yr","HL",1.2260894781149 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2129,"Simulated","PgC/yr","HL",1.31009716763025 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2130,"Simulated","PgC/yr","HL",1.14505808278191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2131,"Simulated","PgC/yr","HL",1.13460091496551 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2132,"Simulated","PgC/yr","HL",1.21215228887754 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2133,"Simulated","PgC/yr","HL",1.34340909681669 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2134,"Simulated","PgC/yr","HL",1.32064785326368 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2135,"Simulated","PgC/yr","HL",1.32121861539764 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2136,"Simulated","PgC/yr","HL",1.26330681065102 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2137,"Simulated","PgC/yr","HL",1.16507586117191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2138,"Simulated","PgC/yr","HL",1.15871747720588 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2139,"Simulated","PgC/yr","HL",1.24619829154801 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2140,"Simulated","PgC/yr","HL",1.08063561726986 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2141,"Simulated","PgC/yr","HL",1.15612380606836 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2142,"Simulated","PgC/yr","HL",1.06787140076987 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2143,"Simulated","PgC/yr","HL",1.18343100863808 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2144,"Simulated","PgC/yr","HL",1.12283256666446 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2145,"Simulated","PgC/yr","HL",1.11671639108587 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2146,"Simulated","PgC/yr","HL",1.15043908142139 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2147,"Simulated","PgC/yr","HL",1.11776301821794 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2148,"Simulated","PgC/yr","HL",1.137907418077 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2149,"Simulated","PgC/yr","HL",0.952637036282985 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2150,"Simulated","PgC/yr","HL",0.946902656157952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2151,"Simulated","PgC/yr","HL",0.847895977765981 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2152,"Simulated","PgC/yr","HL",1.06958120439786 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2153,"Simulated","PgC/yr","HL",1.00523708419565 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2154,"Simulated","PgC/yr","HL",1.04664589080787 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2155,"Simulated","PgC/yr","HL",0.987866218650202 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2156,"Simulated","PgC/yr","HL",1.02422368382453 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2157,"Simulated","PgC/yr","HL",1.11167911870009 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2158,"Simulated","PgC/yr","HL",1.00310989868816 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2159,"Simulated","PgC/yr","HL",0.892527976632054 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2160,"Simulated","PgC/yr","HL",1.10338417108959 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2161,"Simulated","PgC/yr","HL",1.09852483083354 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2162,"Simulated","PgC/yr","HL",0.956941614503557 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2163,"Simulated","PgC/yr","HL",1.20463610468133 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2164,"Simulated","PgC/yr","HL",1.06638946061345 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2165,"Simulated","PgC/yr","HL",1.09103623301403 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2166,"Simulated","PgC/yr","HL",1.02661928477732 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2167,"Simulated","PgC/yr","HL",0.963175859774429 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2168,"Simulated","PgC/yr","HL",1.01495797161788 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2169,"Simulated","PgC/yr","HL",1.01847854501258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2170,"Simulated","PgC/yr","HL",1.10021918609057 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2171,"Simulated","PgC/yr","HL",1.10126250285744 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2172,"Simulated","PgC/yr","HL",1.03058124019926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2173,"Simulated","PgC/yr","HL",1.06384682427283 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2174,"Simulated","PgC/yr","HL",1.13343704573245 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2175,"Simulated","PgC/yr","HL",1.16999809836684 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2176,"Simulated","PgC/yr","HL",1.07372026435822 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2177,"Simulated","PgC/yr","HL",1.12170952526892 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2178,"Simulated","PgC/yr","HL",1.00989890599451 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2179,"Simulated","PgC/yr","HL",1.04618161208797 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2180,"Simulated","PgC/yr","HL",1.10140677960759 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2181,"Simulated","PgC/yr","HL",0.970723216576313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2182,"Simulated","PgC/yr","HL",0.937556667595101 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2183,"Simulated","PgC/yr","HL",1.08451012387765 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2184,"Simulated","PgC/yr","HL",0.985207167799901 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2185,"Simulated","PgC/yr","HL",0.918221927892244 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2186,"Simulated","PgC/yr","HL",0.891293210410875 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2187,"Simulated","PgC/yr","HL",0.875216421796517 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2188,"Simulated","PgC/yr","HL",0.883172884564892 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2189,"Simulated","PgC/yr","HL",0.80232714554711 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2190,"Simulated","PgC/yr","HL",0.807587591720403 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2191,"Simulated","PgC/yr","HL",0.970776458283348 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2192,"Simulated","PgC/yr","HL",0.964158486512552 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2193,"Simulated","PgC/yr","HL",0.951508477612109 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2194,"Simulated","PgC/yr","HL",1.05185640563933 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2195,"Simulated","PgC/yr","HL",0.938294327308111 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2196,"Simulated","PgC/yr","HL",1.04112723614864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2197,"Simulated","PgC/yr","HL",1.13418849863381 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2198,"Simulated","PgC/yr","HL",0.992819076723268 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2199,"Simulated","PgC/yr","HL",1.0587121719773 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2200,"Simulated","PgC/yr","HL",1.13067730460719 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2201,"Simulated","PgC/yr","HL",0.997597864759346 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2202,"Simulated","PgC/yr","HL",0.997096896158439 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2203,"Simulated","PgC/yr","HL",1.08994353663287 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2204,"Simulated","PgC/yr","HL",1.13966080818018 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2205,"Simulated","PgC/yr","HL",0.960864121406806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2206,"Simulated","PgC/yr","HL",1.03479671442308 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2207,"Simulated","PgC/yr","HL",1.06320157892177 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2208,"Simulated","PgC/yr","HL",1.07758263296026 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2209,"Simulated","PgC/yr","HL",1.04574574733608 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2210,"Simulated","PgC/yr","HL",1.10800902714367 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2211,"Simulated","PgC/yr","HL",1.13843045577927 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2212,"Simulated","PgC/yr","HL",0.925837147180815 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2213,"Simulated","PgC/yr","HL",1.05164150776482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2214,"Simulated","PgC/yr","HL",0.979287683087198 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2215,"Simulated","PgC/yr","HL",0.948833978390856 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2216,"Simulated","PgC/yr","HL",1.05304013706361 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2217,"Simulated","PgC/yr","HL",1.06048818290937 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2218,"Simulated","PgC/yr","HL",1.1210706247845 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2219,"Simulated","PgC/yr","HL",1.16554151921064 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2220,"Simulated","PgC/yr","HL",1.01578611464647 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2221,"Simulated","PgC/yr","HL",1.04164227380167 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2222,"Simulated","PgC/yr","HL",0.931537871926271 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2223,"Simulated","PgC/yr","HL",0.914894183270688 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2224,"Simulated","PgC/yr","HL",0.964018347718906 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2225,"Simulated","PgC/yr","HL",0.954270701511274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2226,"Simulated","PgC/yr","HL",0.949589017521188 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2227,"Simulated","PgC/yr","HL",0.927374260090647 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2228,"Simulated","PgC/yr","HL",0.877749954632824 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2229,"Simulated","PgC/yr","HL",0.933314710449644 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2230,"Simulated","PgC/yr","HL",0.826092809075833 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2231,"Simulated","PgC/yr","HL",0.909471253338621 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2232,"Simulated","PgC/yr","HL",0.739582207602308 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2233,"Simulated","PgC/yr","HL",0.768818801358561 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2234,"Simulated","PgC/yr","HL",0.82602742936305 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2235,"Simulated","PgC/yr","HL",0.82383569173408 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2236,"Simulated","PgC/yr","HL",0.816491370664722 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2237,"Simulated","PgC/yr","HL",0.707053179786678 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2238,"Simulated","PgC/yr","HL",0.650123450050646 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2239,"Simulated","PgC/yr","HL",0.791871908777074 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2240,"Simulated","PgC/yr","HL",0.949463775370961 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2241,"Simulated","PgC/yr","HL",0.873920137955293 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2242,"Simulated","PgC/yr","HL",0.833545268741863 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2243,"Simulated","PgC/yr","HL",0.684585179418014 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2244,"Simulated","PgC/yr","HL",0.672730209894121 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2245,"Simulated","PgC/yr","HL",0.683187377710527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2246,"Simulated","PgC/yr","HL",0.777568648320883 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2247,"Simulated","PgC/yr","HL",0.829635727435664 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2248,"Simulated","PgC/yr","HL",0.850246612924754 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2249,"Simulated","PgC/yr","HL",0.959345491369364 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2250,"Simulated","PgC/yr","HL",0.843852918396544 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2251,"Simulated","PgC/yr","HL",0.905713437104282 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2252,"Simulated","PgC/yr","HL",0.749096473063041 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2253,"Simulated","PgC/yr","HL",1.00050188263476 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2254,"Simulated","PgC/yr","HL",1.00051374477674 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2255,"Simulated","PgC/yr","HL",0.956257196497581 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2256,"Simulated","PgC/yr","HL",0.894261504544004 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2257,"Simulated","PgC/yr","HL",0.865051669573152 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2258,"Simulated","PgC/yr","HL",0.731430985014418 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2259,"Simulated","PgC/yr","HL",0.64277057720451 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2260,"Simulated","PgC/yr","HL",0.77900810545719 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2261,"Simulated","PgC/yr","HL",0.851721932350773 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2262,"Simulated","PgC/yr","HL",0.87377972329788 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2263,"Simulated","PgC/yr","HL",0.856793963571193 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2264,"Simulated","PgC/yr","HL",0.909912911229619 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2265,"Simulated","PgC/yr","HL",0.93365098838164 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2266,"Simulated","PgC/yr","HL",0.998507387599209 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2267,"Simulated","PgC/yr","HL",0.83414444484383 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2268,"Simulated","PgC/yr","HL",0.909774427618575 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2269,"Simulated","PgC/yr","HL",0.975980076520635 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2270,"Simulated","PgC/yr","HL",0.967168711938268 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2271,"Simulated","PgC/yr","HL",0.869409489500758 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2272,"Simulated","PgC/yr","HL",0.960476256950377 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2273,"Simulated","PgC/yr","HL",1.07127280101722 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2274,"Simulated","PgC/yr","HL",0.916984403033395 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2275,"Simulated","PgC/yr","HL",1.01334582376342 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2276,"Simulated","PgC/yr","HL",1.02761873920523 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2277,"Simulated","PgC/yr","HL",0.944406089066427 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2278,"Simulated","PgC/yr","HL",1.06346364950044 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2279,"Simulated","PgC/yr","HL",0.93655445452952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2280,"Simulated","PgC/yr","HL",0.950120607000234 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2281,"Simulated","PgC/yr","HL",0.920514907523709 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2282,"Simulated","PgC/yr","HL",0.985598066757768 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2283,"Simulated","PgC/yr","HL",1.04682658157526 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2284,"Simulated","PgC/yr","HL",0.850365510208339 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2285,"Simulated","PgC/yr","HL",0.826227154730372 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2286,"Simulated","PgC/yr","HL",0.974851241985992 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2287,"Simulated","PgC/yr","HL",0.964867180530025 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2288,"Simulated","PgC/yr","HL",0.89815752852562 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2289,"Simulated","PgC/yr","HL",0.807848282980237 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2290,"Simulated","PgC/yr","HL",0.788974235768301 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2291,"Simulated","PgC/yr","HL",0.730995120262528 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2292,"Simulated","PgC/yr","HL",0.701114660474051 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2293,"Simulated","PgC/yr","HL",0.65548100026993 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2294,"Simulated","PgC/yr","HL",0.853489943233601 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2295,"Simulated","PgC/yr","HL",0.728719795912151 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2296,"Simulated","PgC/yr","HL",0.545709841825094 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2297,"Simulated","PgC/yr","HL",0.697162912011498 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2298,"Simulated","PgC/yr","HL",0.720516986799828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2299,"Simulated","PgC/yr","HL",0.60470772222247 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp45",2300,"Simulated","PgC/yr","HL",0.80792111101473 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",2.99045215429538 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",2.950868150282 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",3.03602485407482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",3.02709319103763 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",3.13673497655595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",3.22672399518258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",3.23396929579058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",3.13373016225197 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",3.27070009002154 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",3.26958969790857 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",3.3058583837966 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",3.35496683086978 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",3.33928337483035 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",3.24220129444582 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",3.42494563847124 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",3.39634027570045 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",3.48691351091437 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",3.45251038526869 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",3.48001169921192 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",3.43669689187812 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",3.37932758420102 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",3.58071516124336 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",3.55101272725899 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",3.41498699752436 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",3.53774289132229 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",3.67313841565034 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",3.67290529991112 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",3.67137973976734 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",3.71874441767825 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",3.56339133159402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",3.75449295416175 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",3.64285113075015 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",3.71586361460425 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",3.71089935943369 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",3.59880525977156 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",3.64281655984461 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",3.71161932232899 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",3.82420375795416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",3.77488439664074 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",3.7866315269121 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",3.70238952487699 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",3.75556148059094 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",3.73060985022271 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",3.72935356254506 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",3.83351284647392 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",3.87840903486321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",3.81596636750631 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",3.71153907976841 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",3.79182445752209 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",3.67959239140206 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",3.70368640958134 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",3.70146150221989 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",3.61235324877397 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",3.69638592239018 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",3.71254924797172 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",3.62922067903726 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",3.50195851527617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",3.57935357502772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",3.44390920740193 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",3.46727152760789 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",3.42176289501119 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",3.34226027867848 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",3.25325446929212 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",3.1999835583256 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",3.27426121045695 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",3.22948110419087 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",3.23960879369422 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",3.10013834281165 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",2.96360768755749 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",3.06677297866086 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",3.05127855252698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",2.95225035217526 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",2.95460719987348 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",2.823743001486 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",2.69134689966933 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",2.72424603234166 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",2.67205094258257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",2.5501041348401 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",2.66865665055373 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",2.59693439095429 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",2.60459359093601 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",2.61271743657483 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",2.57413757464361 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",2.48976743824301 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",2.5412327330144 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",2.54695501079278 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",2.50079999741168 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",2.46590843878857 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",2.48195948821816 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",2.5007724041201 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",2.45993623556459 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",2.36451133849634 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",2.47141472769837 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",2.49605966021648 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",2.58862246690272 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",2.50744490605457 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",2.42842659956375 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2103,"Simulated","PgC/yr","LL",2.29030790280442 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2104,"Simulated","PgC/yr","LL",2.4123006993662 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2105,"Simulated","PgC/yr","LL",2.41357189376459 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2106,"Simulated","PgC/yr","LL",2.52172491019458 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2107,"Simulated","PgC/yr","LL",2.61258486190953 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2108,"Simulated","PgC/yr","LL",2.43977473718212 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2109,"Simulated","PgC/yr","LL",2.28888827552717 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2110,"Simulated","PgC/yr","LL",2.40726793671308 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2111,"Simulated","PgC/yr","LL",2.1412280088374 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2112,"Simulated","PgC/yr","LL",2.394673977838 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2113,"Simulated","PgC/yr","LL",2.26020520750998 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2114,"Simulated","PgC/yr","LL",2.162280104493 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2115,"Simulated","PgC/yr","LL",2.30757559437777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2116,"Simulated","PgC/yr","LL",2.29354551568336 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2117,"Simulated","PgC/yr","LL",2.27371640545695 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2118,"Simulated","PgC/yr","LL",2.33794724497407 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2119,"Simulated","PgC/yr","LL",2.06423194173884 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2120,"Simulated","PgC/yr","LL",2.18896630625962 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2121,"Simulated","PgC/yr","LL",2.1085093426353 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2122,"Simulated","PgC/yr","LL",1.90090376005892 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2123,"Simulated","PgC/yr","LL",1.84689829664064 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2124,"Simulated","PgC/yr","LL",2.08249045449497 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2125,"Simulated","PgC/yr","LL",2.05784552197686 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2126,"Simulated","PgC/yr","LL",2.05763619355797 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2127,"Simulated","PgC/yr","LL",1.97161997459058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2128,"Simulated","PgC/yr","LL",2.03829297899482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2129,"Simulated","PgC/yr","LL",2.06869634601822 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2130,"Simulated","PgC/yr","LL",1.92517824470844 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2131,"Simulated","PgC/yr","LL",2.00288095380291 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2132,"Simulated","PgC/yr","LL",2.13149106571599 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2133,"Simulated","PgC/yr","LL",1.8417792653058 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2134,"Simulated","PgC/yr","LL",1.90792831433426 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2135,"Simulated","PgC/yr","LL",1.87272308024708 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2136,"Simulated","PgC/yr","LL",1.88851912960274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2137,"Simulated","PgC/yr","LL",1.78015171012551 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2138,"Simulated","PgC/yr","LL",1.81603313843859 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2139,"Simulated","PgC/yr","LL",1.97071034746119 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2140,"Simulated","PgC/yr","LL",1.82234217011843 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2141,"Simulated","PgC/yr","LL",1.83138642647185 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2142,"Simulated","PgC/yr","LL",1.94214145858158 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2143,"Simulated","PgC/yr","LL",1.77750909741908 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2144,"Simulated","PgC/yr","LL",1.81171716703806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2145,"Simulated","PgC/yr","LL",1.72314587270305 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2146,"Simulated","PgC/yr","LL",2.11035143272159 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2147,"Simulated","PgC/yr","LL",1.936800412257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2148,"Simulated","PgC/yr","LL",1.75606879269571 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2149,"Simulated","PgC/yr","LL",1.97217945236472 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2150,"Simulated","PgC/yr","LL",1.8165228400731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2151,"Simulated","PgC/yr","LL",1.79571305792059 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2152,"Simulated","PgC/yr","LL",1.83007209773259 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2153,"Simulated","PgC/yr","LL",1.78194812855677 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2154,"Simulated","PgC/yr","LL",1.75397170253549 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2155,"Simulated","PgC/yr","LL",1.70925407763081 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2156,"Simulated","PgC/yr","LL",1.78971230991222 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2157,"Simulated","PgC/yr","LL",1.69661698441487 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2158,"Simulated","PgC/yr","LL",1.66093219794985 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2159,"Simulated","PgC/yr","LL",1.77004305047843 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2160,"Simulated","PgC/yr","LL",1.75437132951702 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2161,"Simulated","PgC/yr","LL",1.7403095343955 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2162,"Simulated","PgC/yr","LL",1.78017962058137 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2163,"Simulated","PgC/yr","LL",1.83574806952741 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2164,"Simulated","PgC/yr","LL",1.66052495902581 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2165,"Simulated","PgC/yr","LL",1.80242552255321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2166,"Simulated","PgC/yr","LL",1.62294479887697 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2167,"Simulated","PgC/yr","LL",1.73410833856782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2168,"Simulated","PgC/yr","LL",1.62710599411322 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2169,"Simulated","PgC/yr","LL",1.65392033024535 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2170,"Simulated","PgC/yr","LL",1.66854921508352 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2171,"Simulated","PgC/yr","LL",1.62545039661831 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2172,"Simulated","PgC/yr","LL",1.74970647741834 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2173,"Simulated","PgC/yr","LL",1.55160059908862 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2174,"Simulated","PgC/yr","LL",1.8339719496095 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2175,"Simulated","PgC/yr","LL",1.87249852794317 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2176,"Simulated","PgC/yr","LL",1.79488208753042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2177,"Simulated","PgC/yr","LL",1.69701153676806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2178,"Simulated","PgC/yr","LL",1.66875473753117 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2179,"Simulated","PgC/yr","LL",1.63703196714018 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2180,"Simulated","PgC/yr","LL",1.75183528400566 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2181,"Simulated","PgC/yr","LL",1.5749286655533 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2182,"Simulated","PgC/yr","LL",1.53480992257893 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2183,"Simulated","PgC/yr","LL",1.66912518539976 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2184,"Simulated","PgC/yr","LL",1.51816387297684 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2185,"Simulated","PgC/yr","LL",1.7075578831092 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2186,"Simulated","PgC/yr","LL",1.7477235663957 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2187,"Simulated","PgC/yr","LL",1.77384267844567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2188,"Simulated","PgC/yr","LL",1.64409331247096 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2189,"Simulated","PgC/yr","LL",1.84955993920334 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2190,"Simulated","PgC/yr","LL",1.69063399760567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2191,"Simulated","PgC/yr","LL",1.59219255115541 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2192,"Simulated","PgC/yr","LL",1.46592311156272 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2193,"Simulated","PgC/yr","LL",1.81510575011002 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2194,"Simulated","PgC/yr","LL",1.49576700081197 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2195,"Simulated","PgC/yr","LL",1.66964406614721 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2196,"Simulated","PgC/yr","LL",1.43839325283508 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2197,"Simulated","PgC/yr","LL",1.6772674265663 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2198,"Simulated","PgC/yr","LL",1.71736587102733 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2199,"Simulated","PgC/yr","LL",1.80021425325541 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2200,"Simulated","PgC/yr","LL",1.4488774349791 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2201,"Simulated","PgC/yr","LL",1.59485038774685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2202,"Simulated","PgC/yr","LL",1.65428950945686 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2203,"Simulated","PgC/yr","LL",1.46794788826914 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2204,"Simulated","PgC/yr","LL",1.65022726947318 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2205,"Simulated","PgC/yr","LL",1.72021400618141 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2206,"Simulated","PgC/yr","LL",1.54781619500638 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2207,"Simulated","PgC/yr","LL",1.52020641088244 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2208,"Simulated","PgC/yr","LL",1.56219388574188 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2209,"Simulated","PgC/yr","LL",1.63529771290604 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2210,"Simulated","PgC/yr","LL",1.65559749491069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2211,"Simulated","PgC/yr","LL",1.49343394043409 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2212,"Simulated","PgC/yr","LL",1.52080775434036 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2213,"Simulated","PgC/yr","LL",1.54322492501858 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2214,"Simulated","PgC/yr","LL",1.38044987782738 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2215,"Simulated","PgC/yr","LL",1.62971181576421 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2216,"Simulated","PgC/yr","LL",1.70398153878878 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2217,"Simulated","PgC/yr","LL",1.57389471002966 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2218,"Simulated","PgC/yr","LL",1.42960780252684 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2219,"Simulated","PgC/yr","LL",1.64551547706237 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2220,"Simulated","PgC/yr","LL",1.90219905894191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2221,"Simulated","PgC/yr","LL",1.6703443648577 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2222,"Simulated","PgC/yr","LL",1.37610092134266 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2223,"Simulated","PgC/yr","LL",1.73991625069939 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2224,"Simulated","PgC/yr","LL",1.6266974865321 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2225,"Simulated","PgC/yr","LL",1.43101347457616 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2226,"Simulated","PgC/yr","LL",1.62245763455663 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2227,"Simulated","PgC/yr","LL",1.25973664880075 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2228,"Simulated","PgC/yr","LL",1.42845459323728 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2229,"Simulated","PgC/yr","LL",1.6526136134486 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2230,"Simulated","PgC/yr","LL",1.69154235607798 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2231,"Simulated","PgC/yr","LL",1.40792264698622 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2232,"Simulated","PgC/yr","LL",1.56643246906026 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2233,"Simulated","PgC/yr","LL",1.48402557949749 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2234,"Simulated","PgC/yr","LL",1.55428507747883 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2235,"Simulated","PgC/yr","LL",1.4790879661257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2236,"Simulated","PgC/yr","LL",1.74298893815738 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2237,"Simulated","PgC/yr","LL",1.37062286005299 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2238,"Simulated","PgC/yr","LL",1.46262714045791 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2239,"Simulated","PgC/yr","LL",1.44106504465446 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2240,"Simulated","PgC/yr","LL",1.42657571209555 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2241,"Simulated","PgC/yr","LL",1.424488771192 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2242,"Simulated","PgC/yr","LL",1.57951866688402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2243,"Simulated","PgC/yr","LL",1.4577225121703 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2244,"Simulated","PgC/yr","LL",1.64811114945669 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2245,"Simulated","PgC/yr","LL",1.41258115579949 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2246,"Simulated","PgC/yr","LL",1.51485521530119 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2247,"Simulated","PgC/yr","LL",1.5962776269666 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2248,"Simulated","PgC/yr","LL",1.62223054493855 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2249,"Simulated","PgC/yr","LL",1.34874867460682 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2250,"Simulated","PgC/yr","LL",1.30345000475756 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2251,"Simulated","PgC/yr","LL",1.52458962110843 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2252,"Simulated","PgC/yr","LL",1.45406497379649 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2253,"Simulated","PgC/yr","LL",1.33974882125134 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2254,"Simulated","PgC/yr","LL",1.53057641388888 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2255,"Simulated","PgC/yr","LL",1.4638260214025 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2256,"Simulated","PgC/yr","LL",1.47641363699215 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2257,"Simulated","PgC/yr","LL",1.63144480134126 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2258,"Simulated","PgC/yr","LL",1.45888967668779 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2259,"Simulated","PgC/yr","LL",1.45318579443712 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2260,"Simulated","PgC/yr","LL",1.44263691078181 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2261,"Simulated","PgC/yr","LL",1.51812454460723 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2262,"Simulated","PgC/yr","LL",1.69433974494869 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2263,"Simulated","PgC/yr","LL",1.38108674368366 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2264,"Simulated","PgC/yr","LL",1.56495448355715 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2265,"Simulated","PgC/yr","LL",1.51482349887408 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2266,"Simulated","PgC/yr","LL",1.40643451222643 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2267,"Simulated","PgC/yr","LL",1.33004740052829 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2268,"Simulated","PgC/yr","LL",1.46062139360775 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2269,"Simulated","PgC/yr","LL",1.47390296462248 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2270,"Simulated","PgC/yr","LL",1.54804455328154 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2271,"Simulated","PgC/yr","LL",1.28381753637921 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2272,"Simulated","PgC/yr","LL",1.46496908143538 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2273,"Simulated","PgC/yr","LL",1.48735580434358 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2274,"Simulated","PgC/yr","LL",1.69569720802881 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2275,"Simulated","PgC/yr","LL",1.41877854565592 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2276,"Simulated","PgC/yr","LL",1.44916922610847 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2277,"Simulated","PgC/yr","LL",1.44578444900777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2278,"Simulated","PgC/yr","LL",1.50459051083274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2279,"Simulated","PgC/yr","LL",1.45705266122983 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2280,"Simulated","PgC/yr","LL",1.43746078987818 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2281,"Simulated","PgC/yr","LL",1.47976796632284 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2282,"Simulated","PgC/yr","LL",1.27042939816941 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2283,"Simulated","PgC/yr","LL",1.34584852451229 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2284,"Simulated","PgC/yr","LL",1.28961276193994 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2285,"Simulated","PgC/yr","LL",1.26009238024717 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2286,"Simulated","PgC/yr","LL",1.49076722324305 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2287,"Simulated","PgC/yr","LL",1.44353892596869 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2288,"Simulated","PgC/yr","LL",1.45621154158299 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2289,"Simulated","PgC/yr","LL",1.50539610808122 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2290,"Simulated","PgC/yr","LL",1.47701371179299 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2291,"Simulated","PgC/yr","LL",1.22976716250015 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2292,"Simulated","PgC/yr","LL",1.31425515714389 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2293,"Simulated","PgC/yr","LL",1.4104409312984 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2294,"Simulated","PgC/yr","LL",1.47109923246635 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2295,"Simulated","PgC/yr","LL",1.29419261401399 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2296,"Simulated","PgC/yr","LL",1.38924294007813 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2297,"Simulated","PgC/yr","LL",1.28136141626416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2298,"Simulated","PgC/yr","LL",1.28827940334443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2299,"Simulated","PgC/yr","LL",1.38142293781098 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp45",2300,"Simulated","PgC/yr","LL",1.23459173852575 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.79097546018584 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",3.78883629880687 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.96249604523714 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",3.85585769210483 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",4.19416027223581 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",3.97768949685081 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",4.27412938382972 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",4.30647319497558 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",4.55042099630418 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",4.48755281957522 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.74293161972385 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.55594883643078 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.6843649335656 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.57100945925124 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",4.41360733930115 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.51870580514477 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.53045188621847 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.75141721728058 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.87306213500356 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.87048741874454 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.8437656634972 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.74041405073633 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",4.65013680698123 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",4.83540980569198 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.72835288740898 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.900769294554 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",5.00263662277682 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",4.70023488531212 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",4.8949912420495 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",5.14637282223512 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",5.1079204311226 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",4.8520906308854 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",5.43550558106681 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",5.37783162796057 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",5.37562759670585 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",5.4253658016784 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",5.19992599371024 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",5.34376876510728 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",5.29195781315236 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",5.30826640882063 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",5.41919235183599 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",5.31088282714263 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",5.31683849954502 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",5.14156318430436 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",4.94345985088233 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",5.06404522730136 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",5.04689177872747 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",5.12132687211138 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",5.03638594789732 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",5.16493487382535 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",5.21641838735981 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",5.0684440226857 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",4.95486768188961 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",5.16483911353258 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",5.07911666176778 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",5.17488931071161 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",5.10212075532618 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",5.38881317121291 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",5.12502445502925 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",4.81463754476362 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",5.0200124823533 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.79524299643458 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.78897687534109 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",4.69298027087383 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",4.85131528141807 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",4.69936377555202 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.58877608260308 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",4.59911356066044 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",4.69839072741573 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",4.4190826657188 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",4.45416954589647 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",4.38223657629157 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",4.45551327903705 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",4.22929812160157 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",4.01519509668152 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",4.02367606067569 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",4.04191376288716 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",4.00373011840275 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",3.97583298278762 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",3.78898920637115 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",3.78322505455431 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",4.02194774184315 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.70931200921812 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.68941240257071 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",3.66711261052048 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.67302658085988 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.85713346632795 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.74780455787277 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.86598820436812 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.75982401913714 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.80980934744589 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",3.94578896318925 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",3.81470393402348 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.50850730882727 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.78204658514481 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",3.71045649916889 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",3.5418025448175 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2103,"Simulated","PgC/yr","global",3.52973365888589 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2104,"Simulated","PgC/yr","global",3.68247441490693 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2105,"Simulated","PgC/yr","global",3.80194619179222 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2106,"Simulated","PgC/yr","global",3.63268060718374 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2107,"Simulated","PgC/yr","global",3.5203630508814 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2108,"Simulated","PgC/yr","global",3.71999545994616 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2109,"Simulated","PgC/yr","global",3.49171373361171 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2110,"Simulated","PgC/yr","global",3.35779450868391 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2111,"Simulated","PgC/yr","global",3.52341502408346 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2112,"Simulated","PgC/yr","global",3.51468230319054 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2113,"Simulated","PgC/yr","global",3.60925485943295 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2114,"Simulated","PgC/yr","global",3.28110904841973 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2115,"Simulated","PgC/yr","global",3.28307367894251 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2116,"Simulated","PgC/yr","global",3.248919689359 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2117,"Simulated","PgC/yr","global",3.19001011957177 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2118,"Simulated","PgC/yr","global",3.50183806779161 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2119,"Simulated","PgC/yr","global",3.22160020454222 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2120,"Simulated","PgC/yr","global",3.27691412978776 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2121,"Simulated","PgC/yr","global",3.13158398481098 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2122,"Simulated","PgC/yr","global",2.84955447737416 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2123,"Simulated","PgC/yr","global",3.13279797820006 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2124,"Simulated","PgC/yr","global",3.12405290114032 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2125,"Simulated","PgC/yr","global",3.04025028879362 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2126,"Simulated","PgC/yr","global",3.4005622910548 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2127,"Simulated","PgC/yr","global",3.30685930005164 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2128,"Simulated","PgC/yr","global",3.15036072479953 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2129,"Simulated","PgC/yr","global",3.08040474188422 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2130,"Simulated","PgC/yr","global",3.18332388880674 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2131,"Simulated","PgC/yr","global",3.04478500201287 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2132,"Simulated","PgC/yr","global",3.11022789500085 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2133,"Simulated","PgC/yr","global",3.1396293939251 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2134,"Simulated","PgC/yr","global",2.87562598934313 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2135,"Simulated","PgC/yr","global",2.94070283088936 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2136,"Simulated","PgC/yr","global",2.65997689905099 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2137,"Simulated","PgC/yr","global",2.88060552456753 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2138,"Simulated","PgC/yr","global",3.16725160482871 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2139,"Simulated","PgC/yr","global",3.44996070144008 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2140,"Simulated","PgC/yr","global",3.15618974649212 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2141,"Simulated","PgC/yr","global",3.06579975271487 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2142,"Simulated","PgC/yr","global",3.25652182098881 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2143,"Simulated","PgC/yr","global",3.21318256590295 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2144,"Simulated","PgC/yr","global",3.1074261341767 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2145,"Simulated","PgC/yr","global",2.94125576935411 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2146,"Simulated","PgC/yr","global",2.96696740796474 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2147,"Simulated","PgC/yr","global",2.84817213121229 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2148,"Simulated","PgC/yr","global",2.6356259833103 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2149,"Simulated","PgC/yr","global",2.91916912118134 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2150,"Simulated","PgC/yr","global",2.88448536094585 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2151,"Simulated","PgC/yr","global",2.79998616969524 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2152,"Simulated","PgC/yr","global",3.30730257753595 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2153,"Simulated","PgC/yr","global",2.79870885095126 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2154,"Simulated","PgC/yr","global",3.23017229526662 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2155,"Simulated","PgC/yr","global",3.0176493151774 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2156,"Simulated","PgC/yr","global",2.90424287167494 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2157,"Simulated","PgC/yr","global",2.9017639157087 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2158,"Simulated","PgC/yr","global",2.79326595947149 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2159,"Simulated","PgC/yr","global",2.86053447610564 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2160,"Simulated","PgC/yr","global",2.7493258857745 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2161,"Simulated","PgC/yr","global",2.55700678294038 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2162,"Simulated","PgC/yr","global",2.5170639292064 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2163,"Simulated","PgC/yr","global",2.68130055392324 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2164,"Simulated","PgC/yr","global",2.89447686633253 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2165,"Simulated","PgC/yr","global",2.91518116834344 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2166,"Simulated","PgC/yr","global",2.63832271671657 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2167,"Simulated","PgC/yr","global",2.95924789275023 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2168,"Simulated","PgC/yr","global",2.56610709979589 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2169,"Simulated","PgC/yr","global",2.73180793027971 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2170,"Simulated","PgC/yr","global",2.63648164786189 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2171,"Simulated","PgC/yr","global",2.46802693670031 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2172,"Simulated","PgC/yr","global",2.68448381139765 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2173,"Simulated","PgC/yr","global",2.68425058874911 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2174,"Simulated","PgC/yr","global",2.49096616038296 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2175,"Simulated","PgC/yr","global",2.46928881023578 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2176,"Simulated","PgC/yr","global",2.54707551386689 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2177,"Simulated","PgC/yr","global",2.49535259960049 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2178,"Simulated","PgC/yr","global",2.89688014077707 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2179,"Simulated","PgC/yr","global",2.716999064358 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2180,"Simulated","PgC/yr","global",2.74975371805029 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2181,"Simulated","PgC/yr","global",2.67398570317175 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2182,"Simulated","PgC/yr","global",2.53302964124569 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2183,"Simulated","PgC/yr","global",2.51131676711893 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2184,"Simulated","PgC/yr","global",2.92348760148142 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2185,"Simulated","PgC/yr","global",2.54924093210033 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2186,"Simulated","PgC/yr","global",2.51153454455895 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2187,"Simulated","PgC/yr","global",2.62048041184302 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2188,"Simulated","PgC/yr","global",2.70832503525742 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2189,"Simulated","PgC/yr","global",2.48845476947884 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2190,"Simulated","PgC/yr","global",2.33237939293997 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2191,"Simulated","PgC/yr","global",2.1879358029318 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2192,"Simulated","PgC/yr","global",2.20500739190058 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2193,"Simulated","PgC/yr","global",2.47825475377724 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2194,"Simulated","PgC/yr","global",2.40393241041546 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2195,"Simulated","PgC/yr","global",2.57385596090658 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2196,"Simulated","PgC/yr","global",2.76546303962828 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2197,"Simulated","PgC/yr","global",2.91236396231077 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2198,"Simulated","PgC/yr","global",2.76770105034173 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2199,"Simulated","PgC/yr","global",2.76809026959624 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2200,"Simulated","PgC/yr","global",2.56714038424538 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2201,"Simulated","PgC/yr","global",2.51644457634505 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2202,"Simulated","PgC/yr","global",2.53044256881986 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2203,"Simulated","PgC/yr","global",2.5965202598777 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2204,"Simulated","PgC/yr","global",2.4555750095976 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2205,"Simulated","PgC/yr","global",2.28704770595601 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2206,"Simulated","PgC/yr","global",2.30122949641212 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2207,"Simulated","PgC/yr","global",2.33057230354401 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2208,"Simulated","PgC/yr","global",2.46849647103909 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2209,"Simulated","PgC/yr","global",2.51546998368792 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2210,"Simulated","PgC/yr","global",2.50118625485563 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2211,"Simulated","PgC/yr","global",2.43651562229327 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2212,"Simulated","PgC/yr","global",2.14492244174556 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2213,"Simulated","PgC/yr","global",1.99678281334036 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2214,"Simulated","PgC/yr","global",2.41964482103515 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2215,"Simulated","PgC/yr","global",2.45150519715457 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2216,"Simulated","PgC/yr","global",2.451168491609 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2217,"Simulated","PgC/yr","global",2.44282035640804 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2218,"Simulated","PgC/yr","global",2.57671332448137 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2219,"Simulated","PgC/yr","global",2.64632487924686 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2220,"Simulated","PgC/yr","global",2.43163802544505 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2221,"Simulated","PgC/yr","global",2.52338256400883 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2222,"Simulated","PgC/yr","global",2.46497805253996 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2223,"Simulated","PgC/yr","global",2.52535800617757 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2224,"Simulated","PgC/yr","global",2.49084414323571 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2225,"Simulated","PgC/yr","global",2.7087883915128 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2226,"Simulated","PgC/yr","global",2.53686932008188 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2227,"Simulated","PgC/yr","global",2.36431853962281 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2228,"Simulated","PgC/yr","global",2.54254543421019 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2229,"Simulated","PgC/yr","global",2.69285820345308 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2230,"Simulated","PgC/yr","global",2.61272691716979 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2231,"Simulated","PgC/yr","global",2.40183186205777 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2232,"Simulated","PgC/yr","global",2.2995984823932 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2233,"Simulated","PgC/yr","global",2.08432316614707 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2234,"Simulated","PgC/yr","global",2.20166041521594 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2235,"Simulated","PgC/yr","global",2.11535876813193 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2236,"Simulated","PgC/yr","global",2.30021474621285 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2237,"Simulated","PgC/yr","global",2.4811924324363 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2238,"Simulated","PgC/yr","global",2.58820455961462 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2239,"Simulated","PgC/yr","global",2.63654497321679 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2240,"Simulated","PgC/yr","global",2.84361579470113 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2241,"Simulated","PgC/yr","global",2.51187433914623 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2242,"Simulated","PgC/yr","global",2.53960157746773 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2243,"Simulated","PgC/yr","global",2.37816208001249 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2244,"Simulated","PgC/yr","global",2.27048271982644 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2245,"Simulated","PgC/yr","global",2.39277170274439 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2246,"Simulated","PgC/yr","global",2.57398570065808 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2247,"Simulated","PgC/yr","global",2.35400731841991 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2248,"Simulated","PgC/yr","global",2.69464984764052 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2249,"Simulated","PgC/yr","global",2.36870343431948 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2250,"Simulated","PgC/yr","global",2.42097928705062 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2251,"Simulated","PgC/yr","global",2.27629166274796 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2252,"Simulated","PgC/yr","global",2.47427143450189 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2253,"Simulated","PgC/yr","global",2.17638896504791 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2254,"Simulated","PgC/yr","global",2.33229135525145 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2255,"Simulated","PgC/yr","global",2.50884090019439 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2256,"Simulated","PgC/yr","global",2.15780837920747 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2257,"Simulated","PgC/yr","global",2.29159631986292 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2258,"Simulated","PgC/yr","global",2.10768558854296 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2259,"Simulated","PgC/yr","global",2.10712647199481 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2260,"Simulated","PgC/yr","global",2.35499890080641 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2261,"Simulated","PgC/yr","global",2.54279255754639 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2262,"Simulated","PgC/yr","global",2.35790877809015 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2263,"Simulated","PgC/yr","global",2.39608778901201 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2264,"Simulated","PgC/yr","global",2.31499581075924 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2265,"Simulated","PgC/yr","global",2.41164265850486 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2266,"Simulated","PgC/yr","global",2.3976307653424 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2267,"Simulated","PgC/yr","global",2.34220717911642 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2268,"Simulated","PgC/yr","global",2.44583680563052 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2269,"Simulated","PgC/yr","global",2.34688398825398 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2270,"Simulated","PgC/yr","global",2.09675501447872 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2271,"Simulated","PgC/yr","global",2.14446063001103 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2272,"Simulated","PgC/yr","global",2.07621752071975 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2273,"Simulated","PgC/yr","global",1.89590706750404 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2274,"Simulated","PgC/yr","global",2.07147275266473 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2275,"Simulated","PgC/yr","global",1.9478971838777 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2276,"Simulated","PgC/yr","global",2.20070744585072 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2277,"Simulated","PgC/yr","global",2.21899920629198 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2278,"Simulated","PgC/yr","global",1.9432404535112 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2279,"Simulated","PgC/yr","global",2.26954365114888 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2280,"Simulated","PgC/yr","global",2.39184653475449 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2281,"Simulated","PgC/yr","global",2.25119319891527 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2282,"Simulated","PgC/yr","global",2.04563755238601 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2283,"Simulated","PgC/yr","global",1.93257090347082 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2284,"Simulated","PgC/yr","global",2.30645769949357 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2285,"Simulated","PgC/yr","global",2.35738518552158 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2286,"Simulated","PgC/yr","global",2.43523984807014 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2287,"Simulated","PgC/yr","global",2.08829104021391 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2288,"Simulated","PgC/yr","global",2.3125261219181 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2289,"Simulated","PgC/yr","global",2.45597040693552 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2290,"Simulated","PgC/yr","global",2.35015373889606 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2291,"Simulated","PgC/yr","global",2.29162257671739 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2292,"Simulated","PgC/yr","global",2.28609164754909 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2293,"Simulated","PgC/yr","global",2.09495101412447 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2294,"Simulated","PgC/yr","global",1.95490158593808 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2295,"Simulated","PgC/yr","global",2.06765933068302 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2296,"Simulated","PgC/yr","global",2.05330146484987 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2297,"Simulated","PgC/yr","global",2.39097388047354 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2298,"Simulated","PgC/yr","global",2.08525142317866 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2299,"Simulated","PgC/yr","global",2.27346827863189 -"IPSL-CM5A-MR","fgco2","ocean","fgco2","rcp45",2300,"Simulated","PgC/yr","global",2.32814431676586 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.709241055322909 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.743461679757902 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.739843726453442 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.742507466987782 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.797481874343181 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.789372858911644 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.946275617815518 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.03712252184282 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",1.10121919224602 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",1.16844250258461 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.17947815672046 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.16607531559982 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.19216513136568 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.16977106248658 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.11759391372876 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.16365323172539 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.18048754224398 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.30775949806853 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.33709264414324 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.40643707098645 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.36540592187128 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.30337298830916 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.23754251413024 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.23215186025892 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.20251388472165 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.29197843541242 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.22070489324644 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.17349522334134 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.39413851252519 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.4038453308953 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.37134085495494 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.35616172703846 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.52361930953226 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.59313780641246 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.53116749392545 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.52403751900306 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.48519727992556 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.51309896891321 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.52740719491721 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.49438216404848 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.49929833224053 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.46273700374238 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.48639508040196 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.32593588581367 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.28811303230894 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.38255278603791 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.45047651448097 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.40901474202548 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.32942639005777 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.4484478123383 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",1.43466124471774 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.38113567386673 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",1.34306123260647 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.46185313623285 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.55928435665137 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.56164354358692 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.52754071298044 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.62938216744231 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",1.59914280889294 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.41664596141254 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",1.54817973657377 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",1.55911773493609 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.59222386975232 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.61410731479867 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.58485113471496 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.57170595035272 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",1.45193528208096 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",1.43903671992644 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",1.39314981678419 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.33116488351753 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.41948322025633 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.41030743963773 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.35892229575502 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.3495953417921 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.24357841335263 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.28742778671167 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.30383368080008 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.19849813586515 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.22634685900953 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.17128169247478 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.23244041375922 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.23391545732147 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.17878711798407 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.23608236721141 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.17142845199883 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.19064291509927 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.26914519141622 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.23918473113531 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.21008441407996 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.27474577761425 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.32358056097086 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.30575176157216 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.2226549742155 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.20596466458329 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.32245172643622 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",1.25034866192282 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",1.18339514634837 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2103,"Simulated","PgC/yr","HL",1.14508346224848 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2104,"Simulated","PgC/yr","HL",1.22025164907723 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2105,"Simulated","PgC/yr","HL",1.33695471225973 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2106,"Simulated","PgC/yr","HL",1.1765101384511 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2107,"Simulated","PgC/yr","HL",1.20480245053284 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2108,"Simulated","PgC/yr","HL",1.22573030349024 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2109,"Simulated","PgC/yr","HL",1.04962439190037 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2110,"Simulated","PgC/yr","HL",1.04706658305257 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2111,"Simulated","PgC/yr","HL",1.15665401622857 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2112,"Simulated","PgC/yr","HL",1.12051531102149 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2113,"Simulated","PgC/yr","HL",1.19803523646409 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2114,"Simulated","PgC/yr","HL",1.04705444504682 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2115,"Simulated","PgC/yr","HL",1.03854901338208 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2116,"Simulated","PgC/yr","HL",1.11213788014465 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2117,"Simulated","PgC/yr","HL",1.07505103117032 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2118,"Simulated","PgC/yr","HL",1.06298916382117 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2119,"Simulated","PgC/yr","HL",1.03252221766401 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2120,"Simulated","PgC/yr","HL",1.07346040068969 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2121,"Simulated","PgC/yr","HL",0.966993262582443 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2122,"Simulated","PgC/yr","HL",0.987904839577584 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2123,"Simulated","PgC/yr","HL",1.02725542662407 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2124,"Simulated","PgC/yr","HL",1.05430111034266 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2125,"Simulated","PgC/yr","HL",1.05179433629175 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2126,"Simulated","PgC/yr","HL",1.13972977412193 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2127,"Simulated","PgC/yr","HL",1.05138578205279 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2128,"Simulated","PgC/yr","HL",0.942837803550921 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2129,"Simulated","PgC/yr","HL",0.979526581109437 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2130,"Simulated","PgC/yr","HL",1.0807390661825 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2131,"Simulated","PgC/yr","HL",0.911087539149588 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2132,"Simulated","PgC/yr","HL",1.00289334563105 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2133,"Simulated","PgC/yr","HL",1.06451165595135 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2134,"Simulated","PgC/yr","HL",0.980300654839694 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2135,"Simulated","PgC/yr","HL",0.957488376489789 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2136,"Simulated","PgC/yr","HL",0.807938490432052 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2137,"Simulated","PgC/yr","HL",0.908758973092176 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2138,"Simulated","PgC/yr","HL",1.00231210067394 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2139,"Simulated","PgC/yr","HL",1.08853166587326 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2140,"Simulated","PgC/yr","HL",1.05799354686421 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2141,"Simulated","PgC/yr","HL",0.97946892558213 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2142,"Simulated","PgC/yr","HL",1.07753077057206 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2143,"Simulated","PgC/yr","HL",1.15160901965732 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2144,"Simulated","PgC/yr","HL",1.12482733756377 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2145,"Simulated","PgC/yr","HL",1.08978243219293 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2146,"Simulated","PgC/yr","HL",1.16218122266457 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2147,"Simulated","PgC/yr","HL",1.02399692380804 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2148,"Simulated","PgC/yr","HL",0.932319669842005 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2149,"Simulated","PgC/yr","HL",0.943078356755762 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2150,"Simulated","PgC/yr","HL",1.05543022074107 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2151,"Simulated","PgC/yr","HL",1.00820537832878 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2152,"Simulated","PgC/yr","HL",1.1873011014256 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2153,"Simulated","PgC/yr","HL",1.08971125934104 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2154,"Simulated","PgC/yr","HL",1.16238812048984 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2155,"Simulated","PgC/yr","HL",1.13078268456619 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2156,"Simulated","PgC/yr","HL",1.07642041890981 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2157,"Simulated","PgC/yr","HL",1.07520965283636 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2158,"Simulated","PgC/yr","HL",0.877762920229873 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2159,"Simulated","PgC/yr","HL",0.947469832062944 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2160,"Simulated","PgC/yr","HL",0.859239220002053 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2161,"Simulated","PgC/yr","HL",0.781177222257265 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2162,"Simulated","PgC/yr","HL",0.687724784950462 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2163,"Simulated","PgC/yr","HL",0.834194100321893 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2164,"Simulated","PgC/yr","HL",0.968780032201428 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2165,"Simulated","PgC/yr","HL",0.936088796490791 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2166,"Simulated","PgC/yr","HL",0.783103854806128 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2167,"Simulated","PgC/yr","HL",0.88785070646224 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2168,"Simulated","PgC/yr","HL",0.787552158049316 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2169,"Simulated","PgC/yr","HL",0.83066718206055 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2170,"Simulated","PgC/yr","HL",0.757254040517573 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2171,"Simulated","PgC/yr","HL",0.782635989857263 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2172,"Simulated","PgC/yr","HL",0.768195349245097 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2173,"Simulated","PgC/yr","HL",0.812606657097555 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2174,"Simulated","PgC/yr","HL",0.758767980870975 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2175,"Simulated","PgC/yr","HL",0.758944533681868 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2176,"Simulated","PgC/yr","HL",0.835901145312209 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2177,"Simulated","PgC/yr","HL",0.745767624986418 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2178,"Simulated","PgC/yr","HL",0.934916927208492 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2179,"Simulated","PgC/yr","HL",0.860385985681552 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2180,"Simulated","PgC/yr","HL",0.986582348678493 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2181,"Simulated","PgC/yr","HL",0.923164027278397 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2182,"Simulated","PgC/yr","HL",0.927133706885806 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2183,"Simulated","PgC/yr","HL",0.802563836659212 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2184,"Simulated","PgC/yr","HL",0.929400479459405 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2185,"Simulated","PgC/yr","HL",0.883376472024952 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2186,"Simulated","PgC/yr","HL",0.926989981863189 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2187,"Simulated","PgC/yr","HL",0.897424558496649 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2188,"Simulated","PgC/yr","HL",0.857829832016351 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2189,"Simulated","PgC/yr","HL",0.756390311063035 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2190,"Simulated","PgC/yr","HL",0.627934072086671 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2191,"Simulated","PgC/yr","HL",0.633940729749752 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2192,"Simulated","PgC/yr","HL",0.553755132726448 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2193,"Simulated","PgC/yr","HL",0.745410657271894 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2194,"Simulated","PgC/yr","HL",0.722424584748768 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2195,"Simulated","PgC/yr","HL",0.844316369525137 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2196,"Simulated","PgC/yr","HL",0.980790037162386 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2197,"Simulated","PgC/yr","HL",1.03456333367618 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2198,"Simulated","PgC/yr","HL",1.01021145964254 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2199,"Simulated","PgC/yr","HL",0.934606304606828 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2200,"Simulated","PgC/yr","HL",0.861636752001219 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2201,"Simulated","PgC/yr","HL",0.788823338287742 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2202,"Simulated","PgC/yr","HL",0.802406594312011 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2203,"Simulated","PgC/yr","HL",0.788792441545836 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2204,"Simulated","PgC/yr","HL",0.710769616455964 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2205,"Simulated","PgC/yr","HL",0.736805087059724 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2206,"Simulated","PgC/yr","HL",0.606088144512636 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2207,"Simulated","PgC/yr","HL",0.721820167235228 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2208,"Simulated","PgC/yr","HL",0.704155782641673 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2209,"Simulated","PgC/yr","HL",0.740316556950114 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2210,"Simulated","PgC/yr","HL",0.674517807104407 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2211,"Simulated","PgC/yr","HL",0.709365745745602 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2212,"Simulated","PgC/yr","HL",0.600545765569448 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2213,"Simulated","PgC/yr","HL",0.540520292639924 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2214,"Simulated","PgC/yr","HL",0.661071655372346 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2215,"Simulated","PgC/yr","HL",0.815328880750502 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2216,"Simulated","PgC/yr","HL",0.800780377405432 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2217,"Simulated","PgC/yr","HL",0.657895635822651 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2218,"Simulated","PgC/yr","HL",0.793581436541293 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2219,"Simulated","PgC/yr","HL",0.814822670738022 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2220,"Simulated","PgC/yr","HL",0.779755420402046 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2221,"Simulated","PgC/yr","HL",0.858008591737379 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2222,"Simulated","PgC/yr","HL",0.805923857341509 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2223,"Simulated","PgC/yr","HL",0.873941103601586 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2224,"Simulated","PgC/yr","HL",0.81703951196979 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2225,"Simulated","PgC/yr","HL",0.98509158088152 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2226,"Simulated","PgC/yr","HL",0.856857963965141 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2227,"Simulated","PgC/yr","HL",0.870571703551211 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2228,"Simulated","PgC/yr","HL",0.912571410352385 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2229,"Simulated","PgC/yr","HL",0.807367176570555 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2230,"Simulated","PgC/yr","HL",0.795836071109143 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2231,"Simulated","PgC/yr","HL",0.712780939181303 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2232,"Simulated","PgC/yr","HL",0.732155679130378 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2233,"Simulated","PgC/yr","HL",0.556085905693995 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2234,"Simulated","PgC/yr","HL",0.590919775283073 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2235,"Simulated","PgC/yr","HL",0.550783252364348 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2236,"Simulated","PgC/yr","HL",0.707085455847419 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2237,"Simulated","PgC/yr","HL",0.816935511329624 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2238,"Simulated","PgC/yr","HL",0.78470855433888 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2239,"Simulated","PgC/yr","HL",0.775939948640401 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2240,"Simulated","PgC/yr","HL",0.867059957797054 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2241,"Simulated","PgC/yr","HL",0.648649785807228 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2242,"Simulated","PgC/yr","HL",0.697220015811271 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2243,"Simulated","PgC/yr","HL",0.687395679476408 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2244,"Simulated","PgC/yr","HL",0.767967485773539 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2245,"Simulated","PgC/yr","HL",0.82011594469959 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2246,"Simulated","PgC/yr","HL",0.728109861123271 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2247,"Simulated","PgC/yr","HL",0.798103395410275 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2248,"Simulated","PgC/yr","HL",0.851988140885947 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2249,"Simulated","PgC/yr","HL",0.660915240616446 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2250,"Simulated","PgC/yr","HL",0.66779252432824 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2251,"Simulated","PgC/yr","HL",0.755911411563489 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2252,"Simulated","PgC/yr","HL",0.781583293722317 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2253,"Simulated","PgC/yr","HL",0.726902681278794 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2254,"Simulated","PgC/yr","HL",0.696024422245008 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2255,"Simulated","PgC/yr","HL",0.768999767989726 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2256,"Simulated","PgC/yr","HL",0.768924733045097 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2257,"Simulated","PgC/yr","HL",0.660336478433239 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2258,"Simulated","PgC/yr","HL",0.513285918104698 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2259,"Simulated","PgC/yr","HL",0.707989185548175 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2260,"Simulated","PgC/yr","HL",0.793091778354833 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2261,"Simulated","PgC/yr","HL",0.740935595243305 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2262,"Simulated","PgC/yr","HL",0.779855558949474 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2263,"Simulated","PgC/yr","HL",0.736342739386199 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2264,"Simulated","PgC/yr","HL",0.67816969165221 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2265,"Simulated","PgC/yr","HL",0.737855852148301 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2266,"Simulated","PgC/yr","HL",0.727745720950806 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2267,"Simulated","PgC/yr","HL",0.685685599984654 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2268,"Simulated","PgC/yr","HL",0.780830461502121 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2269,"Simulated","PgC/yr","HL",0.720917540989541 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2270,"Simulated","PgC/yr","HL",0.539656563185386 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2271,"Simulated","PgC/yr","HL",0.586879474551306 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2272,"Simulated","PgC/yr","HL",0.508732786630042 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2273,"Simulated","PgC/yr","HL",0.428080428112942 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2274,"Simulated","PgC/yr","HL",0.534328254525406 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2275,"Simulated","PgC/yr","HL",0.515111032787299 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2276,"Simulated","PgC/yr","HL",0.493722487338981 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2277,"Simulated","PgC/yr","HL",0.486170440853057 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2278,"Simulated","PgC/yr","HL",0.420056654585414 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2279,"Simulated","PgC/yr","HL",0.616113033806122 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2280,"Simulated","PgC/yr","HL",0.705082133171324 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2281,"Simulated","PgC/yr","HL",0.552843127112682 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2282,"Simulated","PgC/yr","HL",0.481103099316678 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2283,"Simulated","PgC/yr","HL",0.552466297206934 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2284,"Simulated","PgC/yr","HL",0.798063119300291 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2285,"Simulated","PgC/yr","HL",0.772237305159466 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2286,"Simulated","PgC/yr","HL",0.7480997772728 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2287,"Simulated","PgC/yr","HL",0.726522265144074 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2288,"Simulated","PgC/yr","HL",0.716960551115414 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2289,"Simulated","PgC/yr","HL",0.811436442997858 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2290,"Simulated","PgC/yr","HL",0.7307653257446 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2291,"Simulated","PgC/yr","HL",0.715013228784024 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2292,"Simulated","PgC/yr","HL",0.684561179270283 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2293,"Simulated","PgC/yr","HL",0.602552674474515 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2294,"Simulated","PgC/yr","HL",0.535422054361638 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2295,"Simulated","PgC/yr","HL",0.586510644694801 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2296,"Simulated","PgC/yr","HL",0.578434181187773 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2297,"Simulated","PgC/yr","HL",0.672476966955997 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2298,"Simulated","PgC/yr","HL",0.675812987490563 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2299,"Simulated","PgC/yr","HL",0.676101265127098 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_HL","rcp45",2300,"Simulated","PgC/yr","HL",0.655344723569023 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",3.0817342516551 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",3.04537453962128 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",3.22265160594223 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",3.11335045485102 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",3.3966783728134 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",3.18831667061482 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",3.32785372599431 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",3.26935214186955 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",3.4492020447573 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",3.31911014136985 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",3.56345349579115 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",3.38987456487071 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",3.49219937065578 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",3.40123792637409 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",3.29601423915157 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",3.35505246522296 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",3.34996388165815 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",3.44365801329925 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",3.53596930871855 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",3.46404913861396 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",3.478359590524 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",3.43704196660503 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",3.41259367593497 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",3.60325761180864 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",3.52583908190103 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",3.60879149401002 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",3.78193273823641 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",3.52673982843083 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",3.50085288062727 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",3.74252698054336 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",3.73657824747544 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",3.4959292224834 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",3.91188635800168 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",3.78469460470876 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",3.84446103994649 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",3.90132859374678 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",3.71472816651387 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",3.83067073744099 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",3.76455086752547 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",3.81388386690255 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",3.91989412151729 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",3.84814648877616 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",3.83044364782292 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",3.81562700173628 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",3.65534740302974 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",3.68149315687849 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",3.59641447549634 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",3.71231137476843 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",3.70696017918718 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",3.71648779388969 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",3.7817563949017 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",3.68730741229548 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",3.61180582324213 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",3.70298674519939 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",3.51983199060724 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",3.61324574903273 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",3.57458088707687 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",3.75943056753355 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",3.5258822162419 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",3.39799143289557 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",3.47183361848275 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",3.23612601283376 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",3.19675197156782 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",3.07887216127309 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",3.26646467834586 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",3.12765836944688 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",3.13684217807957 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",3.16007763257711 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",3.30524118212513 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",3.0879176862836 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",3.0346861036867 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",2.97192944370145 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",3.09659149476843 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",2.87970314830679 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",2.77161610204519 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",2.73624847985122 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",2.73808042068084 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",2.80523170880583 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",2.74948691652509 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",2.61770643055853 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",2.55078476936578 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",2.78803252471503 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",2.53052431573075 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",2.45332906946996 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",2.49568318622674 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",2.48238258535574 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",2.58798813836062 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",2.50861968251456 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",2.65590315805031 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",2.48507721300263 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",2.48622915363511 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",2.64003733255502 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",2.59204910968721 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",2.30254156306758 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",2.45959496680894 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",2.46010750427096 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",2.35840687777133 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2103,"Simulated","PgC/yr","LL",2.38465031821556 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2104,"Simulated","PgC/yr","LL",2.46222235563036 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2105,"Simulated","PgC/yr","LL",2.46499056538813 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2106,"Simulated","PgC/yr","LL",2.45617086133862 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2107,"Simulated","PgC/yr","LL",2.31556052206587 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2108,"Simulated","PgC/yr","LL",2.49426482760657 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2109,"Simulated","PgC/yr","LL",2.44208876770375 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2110,"Simulated","PgC/yr","LL",2.31072820723207 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2111,"Simulated","PgC/yr","LL",2.36676098467094 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2112,"Simulated","PgC/yr","LL",2.39416651500432 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2113,"Simulated","PgC/yr","LL",2.41121980353044 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2114,"Simulated","PgC/yr","LL",2.2340543790329 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2115,"Simulated","PgC/yr","LL",2.24452460594899 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2116,"Simulated","PgC/yr","LL",2.13678263441429 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2117,"Simulated","PgC/yr","LL",2.11496046390857 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2118,"Simulated","PgC/yr","LL",2.43884861751064 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2119,"Simulated","PgC/yr","LL",2.18907794808303 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2120,"Simulated","PgC/yr","LL",2.20345310150436 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2121,"Simulated","PgC/yr","LL",2.16459032904337 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2122,"Simulated","PgC/yr","LL",1.86165024121598 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2123,"Simulated","PgC/yr","LL",2.10554322237239 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2124,"Simulated","PgC/yr","LL",2.06975060005521 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2125,"Simulated","PgC/yr","LL",1.9884563227553 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2126,"Simulated","PgC/yr","LL",2.26083192410959 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2127,"Simulated","PgC/yr","LL",2.25547311658583 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2128,"Simulated","PgC/yr","LL",2.20752422208763 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2129,"Simulated","PgC/yr","LL",2.1008783702737 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2130,"Simulated","PgC/yr","LL",2.10258471405198 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2131,"Simulated","PgC/yr","LL",2.13369726038546 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2132,"Simulated","PgC/yr","LL",2.10733329751822 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2133,"Simulated","PgC/yr","LL",2.07511828817856 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2134,"Simulated","PgC/yr","LL",1.89532420620251 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2135,"Simulated","PgC/yr","LL",1.98321550034038 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2136,"Simulated","PgC/yr","LL",1.85203889514591 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2137,"Simulated","PgC/yr","LL",1.97184579555157 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2138,"Simulated","PgC/yr","LL",2.16494047839861 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2139,"Simulated","PgC/yr","LL",2.36142881894595 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2140,"Simulated","PgC/yr","LL",2.09819642919765 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2141,"Simulated","PgC/yr","LL",2.08633067948892 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2142,"Simulated","PgC/yr","LL",2.17899085560638 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2143,"Simulated","PgC/yr","LL",2.06157283649031 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2144,"Simulated","PgC/yr","LL",1.98259893299744 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2145,"Simulated","PgC/yr","LL",1.85147307408635 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2146,"Simulated","PgC/yr","LL",1.80478649338695 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2147,"Simulated","PgC/yr","LL",1.82417411094804 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2148,"Simulated","PgC/yr","LL",1.70330661321997 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2149,"Simulated","PgC/yr","LL",1.97609072215538 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2150,"Simulated","PgC/yr","LL",1.82905590340813 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2151,"Simulated","PgC/yr","LL",1.79178148961658 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2152,"Simulated","PgC/yr","LL",2.12000083850419 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2153,"Simulated","PgC/yr","LL",1.7089978088998 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2154,"Simulated","PgC/yr","LL",2.06778418157467 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2155,"Simulated","PgC/yr","LL",1.88686733807908 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2156,"Simulated","PgC/yr","LL",1.82782150006518 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2157,"Simulated","PgC/yr","LL",1.82655538029513 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2158,"Simulated","PgC/yr","LL",1.91550219712707 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2159,"Simulated","PgC/yr","LL",1.91306510686828 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2160,"Simulated","PgC/yr","LL",1.89008718975884 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2161,"Simulated","PgC/yr","LL",1.77582939543957 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2162,"Simulated","PgC/yr","LL",1.82933881393791 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2163,"Simulated","PgC/yr","LL",1.84710635640245 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2164,"Simulated","PgC/yr","LL",1.92569712545589 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2165,"Simulated","PgC/yr","LL",1.97909236481665 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2166,"Simulated","PgC/yr","LL",1.85521814979897 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2167,"Simulated","PgC/yr","LL",2.07139731695053 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2168,"Simulated","PgC/yr","LL",1.77855573951356 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2169,"Simulated","PgC/yr","LL",1.90114099893367 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2170,"Simulated","PgC/yr","LL",1.87922748511789 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2171,"Simulated","PgC/yr","LL",1.68539063787658 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2172,"Simulated","PgC/yr","LL",1.91628876451929 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2173,"Simulated","PgC/yr","LL",1.87164472172549 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2174,"Simulated","PgC/yr","LL",1.73219900965606 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2175,"Simulated","PgC/yr","LL",1.71034385406616 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2176,"Simulated","PgC/yr","LL",1.71117482445632 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2177,"Simulated","PgC/yr","LL",1.74958468633825 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2178,"Simulated","PgC/yr","LL",1.96196422552256 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2179,"Simulated","PgC/yr","LL",1.85661367259162 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2180,"Simulated","PgC/yr","LL",1.76317073505319 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2181,"Simulated","PgC/yr","LL",1.75082162699537 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2182,"Simulated","PgC/yr","LL",1.6058953163221 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2183,"Simulated","PgC/yr","LL",1.70875295808254 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2184,"Simulated","PgC/yr","LL",1.99408662289508 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2185,"Simulated","PgC/yr","LL",1.66586473669331 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2186,"Simulated","PgC/yr","LL",1.58454381759463 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2187,"Simulated","PgC/yr","LL",1.72305579805007 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2188,"Simulated","PgC/yr","LL",1.8504962081315 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2189,"Simulated","PgC/yr","LL",1.73206453200513 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2190,"Simulated","PgC/yr","LL",1.70444459862452 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2191,"Simulated","PgC/yr","LL",1.55399455500654 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2192,"Simulated","PgC/yr","LL",1.65125234439723 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2193,"Simulated","PgC/yr","LL",1.73284348745485 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2194,"Simulated","PgC/yr","LL",1.68150727854177 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2195,"Simulated","PgC/yr","LL",1.72953863575045 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2196,"Simulated","PgC/yr","LL",1.7846719353166 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2197,"Simulated","PgC/yr","LL",1.87780024589814 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2198,"Simulated","PgC/yr","LL",1.75748968863004 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2199,"Simulated","PgC/yr","LL",1.83348478528915 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2200,"Simulated","PgC/yr","LL",1.70550392728985 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2201,"Simulated","PgC/yr","LL",1.72762169489619 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2202,"Simulated","PgC/yr","LL",1.72803654576273 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2203,"Simulated","PgC/yr","LL",1.80772724050818 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2204,"Simulated","PgC/yr","LL",1.74480565510198 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2205,"Simulated","PgC/yr","LL",1.55024186735141 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2206,"Simulated","PgC/yr","LL",1.69514026756883 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2207,"Simulated","PgC/yr","LL",1.60875106341868 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2208,"Simulated","PgC/yr","LL",1.76434043688485 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2209,"Simulated","PgC/yr","LL",1.77515446987076 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2210,"Simulated","PgC/yr","LL",1.82666829077563 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2211,"Simulated","PgC/yr","LL",1.72714975446086 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2212,"Simulated","PgC/yr","LL",1.54437559699397 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2213,"Simulated","PgC/yr","LL",1.45626228786636 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2214,"Simulated","PgC/yr","LL",1.75857312177997 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2215,"Simulated","PgC/yr","LL",1.63617562360833 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2216,"Simulated","PgC/yr","LL",1.65038838892287 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2217,"Simulated","PgC/yr","LL",1.78492566673344 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2218,"Simulated","PgC/yr","LL",1.78313178561635 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2219,"Simulated","PgC/yr","LL",1.8315031429236 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2220,"Simulated","PgC/yr","LL",1.65188286696809 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2221,"Simulated","PgC/yr","LL",1.66537376640171 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2222,"Simulated","PgC/yr","LL",1.6590545854652 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2223,"Simulated","PgC/yr","LL",1.65141726981818 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2224,"Simulated","PgC/yr","LL",1.67380526138346 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2225,"Simulated","PgC/yr","LL",1.72369773853469 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2226,"Simulated","PgC/yr","LL",1.68001153183948 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2227,"Simulated","PgC/yr","LL",1.49374729873389 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2228,"Simulated","PgC/yr","LL",1.62997315912356 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2229,"Simulated","PgC/yr","LL",1.8854908451427 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2230,"Simulated","PgC/yr","LL",1.81689075062752 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2231,"Simulated","PgC/yr","LL",1.68905071356456 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2232,"Simulated","PgC/yr","LL",1.56744358875639 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2233,"Simulated","PgC/yr","LL",1.52823701022557 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2234,"Simulated","PgC/yr","LL",1.61074031772674 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2235,"Simulated","PgC/yr","LL",1.56457515508896 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2236,"Simulated","PgC/yr","LL",1.59312882008356 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2237,"Simulated","PgC/yr","LL",1.6642573481676 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2238,"Simulated","PgC/yr","LL",1.8034962691323 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2239,"Simulated","PgC/yr","LL",1.8606035991215 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2240,"Simulated","PgC/yr","LL",1.97655505064821 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2241,"Simulated","PgC/yr","LL",1.8632246446575 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2242,"Simulated","PgC/yr","LL",1.84238187742081 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2243,"Simulated","PgC/yr","LL",1.69076593794243 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2244,"Simulated","PgC/yr","LL",1.50251498784295 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2245,"Simulated","PgC/yr","LL",1.57265523205838 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2246,"Simulated","PgC/yr","LL",1.84587575903076 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2247,"Simulated","PgC/yr","LL",1.5559038839183 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2248,"Simulated","PgC/yr","LL",1.84266225063642 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2249,"Simulated","PgC/yr","LL",1.70778751004145 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2250,"Simulated","PgC/yr","LL",1.75318640380036 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2251,"Simulated","PgC/yr","LL",1.52038021690298 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2252,"Simulated","PgC/yr","LL",1.69268795342503 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2253,"Simulated","PgC/yr","LL",1.44948639037953 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2254,"Simulated","PgC/yr","LL",1.63626696691839 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2255,"Simulated","PgC/yr","LL",1.73984013127434 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2256,"Simulated","PgC/yr","LL",1.38888264146621 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2257,"Simulated","PgC/yr","LL",1.63125957740696 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2258,"Simulated","PgC/yr","LL",1.59440001448196 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2259,"Simulated","PgC/yr","LL",1.39913719667798 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2260,"Simulated","PgC/yr","LL",1.56190590058376 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2261,"Simulated","PgC/yr","LL",1.80185716417948 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2262,"Simulated","PgC/yr","LL",1.57805336795175 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2263,"Simulated","PgC/yr","LL",1.65974473491902 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2264,"Simulated","PgC/yr","LL",1.63682517603545 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2265,"Simulated","PgC/yr","LL",1.67378623152719 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2266,"Simulated","PgC/yr","LL",1.66988511099321 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2267,"Simulated","PgC/yr","LL",1.65652234592509 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2268,"Simulated","PgC/yr","LL",1.66500712450437 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2269,"Simulated","PgC/yr","LL",1.62596674005159 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2270,"Simulated","PgC/yr","LL",1.55709769023455 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2271,"Simulated","PgC/yr","LL",1.55758231724073 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2272,"Simulated","PgC/yr","LL",1.56748418578309 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2273,"Simulated","PgC/yr","LL",1.46782736584614 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2274,"Simulated","PgC/yr","LL",1.53714552027098 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2275,"Simulated","PgC/yr","LL",1.43278578852282 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2276,"Simulated","PgC/yr","LL",1.70698445010713 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2277,"Simulated","PgC/yr","LL",1.73282953222692 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2278,"Simulated","PgC/yr","LL",1.52318268040203 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2279,"Simulated","PgC/yr","LL",1.65343062861084 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2280,"Simulated","PgC/yr","LL",1.68676332484171 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2281,"Simulated","PgC/yr","LL",1.69834996999191 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2282,"Simulated","PgC/yr","LL",1.56453455806227 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2283,"Simulated","PgC/yr","LL",1.38010480310047 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2284,"Simulated","PgC/yr","LL",1.50839521342833 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2285,"Simulated","PgC/yr","LL",1.5851489670238 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2286,"Simulated","PgC/yr","LL",1.68713884733864 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2287,"Simulated","PgC/yr","LL",1.3617689022622 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2288,"Simulated","PgC/yr","LL",1.59556464168527 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2289,"Simulated","PgC/yr","LL",1.64453353647919 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2290,"Simulated","PgC/yr","LL",1.61938875306989 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2291,"Simulated","PgC/yr","LL",1.5766096361899 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2292,"Simulated","PgC/yr","LL",1.60153113595237 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2293,"Simulated","PgC/yr","LL",1.49239871625336 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2294,"Simulated","PgC/yr","LL",1.41948011302349 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2295,"Simulated","PgC/yr","LL",1.48114953388756 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2296,"Simulated","PgC/yr","LL",1.47486714400649 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2297,"Simulated","PgC/yr","LL",1.71849624448937 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2298,"Simulated","PgC/yr","LL",1.40943869220187 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2299,"Simulated","PgC/yr","LL",1.59736740340195 -"IPSL-CM5A-MR","fgco2","ocean","fgco2_LL","rcp45",2300,"Simulated","PgC/yr","LL",1.67279921631567 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.16679133761504 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.94177472836012 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.10901853517433 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",3.37606773487496 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",3.38689482604216 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",3.59535417177177 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",3.29871040804049 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",3.37222496699706 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",3.58147974096506 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",3.36534412660478 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",3.73731880581369 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",3.59701144264515 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",3.75717053231471 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",3.95575575624232 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",3.78573026737503 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",3.9799831103149 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",3.98213771690239 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",3.82714504948023 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.03208906575241 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.00809802337007 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",3.96000164406238 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.16175313573504 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",3.92556964072564 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",4.43034994532861 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.34862934708939 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.22806868300398 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",4.21919695523444 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",4.60480975355982 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",4.52732732053641 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.34781847364249 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",4.28660756778691 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",4.24951898858603 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",4.45355019303512 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",4.26482364570099 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",4.25900698017521 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",4.25405370180528 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",4.50103339756486 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",4.34824785043913 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",4.28892434906377 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",4.35254625196814 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",4.40338261126592 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",4.53963869624166 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",4.35120560786926 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",4.27003640357393 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",4.25080557445511 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",4.5975118925377 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",4.37893747975331 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",4.31591639546008 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",4.55034222574077 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",4.35462363251306 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",4.48315247967003 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",4.34930430270138 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",4.39083492387043 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",4.55773584705566 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",4.08420428831502 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",4.30777059249063 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",4.38752501568622 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",4.19065266538264 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",4.09118552256264 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",4.08807640208909 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",4.01872432682661 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",3.97132761546454 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.01568779883307 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",3.96756670719177 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",3.67884015734396 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",3.95363821815527 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",3.99796133302336 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",3.84243117234498 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",3.79959697557748 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",3.77184348040151 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",3.74111832710775 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",3.77021401090345 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",3.7324813665076 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",3.70647472441438 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",3.40563140848858 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",3.55321655390818 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",3.29550861631587 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",3.45604148003142 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",3.47356406908877 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",3.3612635025158 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",3.11591327625428 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",3.20756359904614 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.03998154216551 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",2.992101395777 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",2.94325746837732 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.26801923420546 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.12823546360549 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.08787867828338 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.16761765627046 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",2.86839917628016 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",2.95960931062942 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",2.82838373006618 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",2.84852891552893 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.20110904640879 -"IPSL-CM5B-LR","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.07692184736467 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.740034900043987 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.564510785138769 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.75298753149685 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.722106237961628 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.702186667072688 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.870261080949547 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.840552760151691 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.797186148384936 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.868099964198717 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.779106037094483 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.929739240165305 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.971996051997341 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.975020346475175 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.04910328524448 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.954013044752878 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.10502500877582 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.10662805312597 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.06890175193969 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.08688531091169 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.12494706243866 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.03747424814577 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.20520245299502 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.11071773347203 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",1.2537732347266 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.2361518848807 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.18875986902559 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.22907101370884 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",1.21891233048835 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.22960370664296 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",1.2363618172074 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.18897255998997 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.24516821624196 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",1.26222845918574 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",1.14733285540475 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.12455395657066 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",1.10492790472983 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.15461345194393 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.0698703096257 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.09673199221168 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.15972658686563 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.23131654477238 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.25894374931184 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",1.12953302170159 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.15979279416972 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.19829896222536 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",1.22035785662753 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.19449728365206 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.26467481907167 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",1.33010611837971 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.27448508635442 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",1.3965967345531 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.31755431698032 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",1.34001183452584 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.45077113698414 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",1.35441026798165 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.36311983883399 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.41112289293304 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.30743784091619 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",1.32915659529363 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.33036405100187 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",1.2493475523123 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",1.27534771235389 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.29526811083413 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.29360658336537 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.31547292485816 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.24577759930331 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",1.28898724458663 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",1.31599899706187 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",1.34606097520904 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.37404128537029 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.30638266200734 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.35149880178453 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.35885995054368 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.33564684214029 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.30528279316823 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.35841912024398 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.22123096545015 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.25034286878371 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.30569520949993 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.16082480052214 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.20757984693919 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.22966218976156 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.09883434998014 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.14886003721897 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.15006473428955 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.19599246526931 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.14151433683078 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.19862696424435 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.18082795813249 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.15692629376662 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.16260577700202 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.01473921165063 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.02299277969609 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.15686505201034 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.14235075577238 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",2.42675704684091 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",2.37726419667122 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",2.35603195170966 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",2.65396084405437 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",2.68470801714759 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",2.72509317810965 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",2.45815757833251 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",2.57503895550195 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",2.71338093590811 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",2.58623739158439 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",2.80757872441165 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",2.62501516402074 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",2.78214976181549 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",2.90665196208985 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",2.83171619409607 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",2.8749583708118 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",2.87551023664344 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",2.75824318772039 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",2.94520391356522 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",2.88315135826171 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",2.92252666818473 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",2.95654951386942 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",2.81485066681841 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",3.17657778661451 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",3.11247635011999 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",3.03930909010161 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",2.99012579226046 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",3.38589732491167 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",3.29772312024402 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",3.11145634982427 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",3.09763433089166 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",3.00435124414585 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",3.19132211924734 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",3.11749008291683 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",3.13445329678998 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",3.14912531596901 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",3.34642052242191 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",3.2783786370238 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",3.19219241800712 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",3.19281913460673 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",3.17206517336593 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",3.2806939362025 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",3.22167347133029 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",3.11024224499467 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",3.05250692974878 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",3.37715374028721 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",3.18443965456544 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",3.05124207863581 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",3.22023735151095 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",3.08013954970023 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",3.08655641723223 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",3.03174916253672 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",3.05082342179801 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",3.10696403508904 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",2.7297935526067 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",2.94465077907649 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",2.97640145992334 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",2.88321479111592 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",2.76202886045971 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",2.75771288905919 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",2.76937692229153 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",2.69598003534091 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",2.72041944541138 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",2.67395995433005 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",2.36336732697064 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",2.70786100893465 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",2.7089748898546 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",2.52643289663413 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",2.45353586057469 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",2.3978024862077 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",2.43473689990067 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",2.41871502958403 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",2.37362188218241 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",2.37082829928295 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",2.10034934026958 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",2.19479705421871 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",2.07427716853172 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",2.20569862454344 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",2.167868538949 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",2.20043750361516 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.90833301594413 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.97790109581457 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.94114683142755 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.84324202692391 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.79319350495132 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",2.07202657086431 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.98672079986408 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.88925241339742 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.98678930734663 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.71147295887112 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.79700328217524 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",1.81364552580608 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.82553537999941 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",2.04424298071983 -"IPSL-CM5B-LR","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.93457138176002 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.93977851063871 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",3.86292068229281 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.64737289840827 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",3.82250406566264 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",3.95536653646221 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",3.97037293953327 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",3.90761611257281 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",4.19921817410655 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",4.25799798797905 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",4.16150704137648 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.14158230765683 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.40527612611402 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.30985729518416 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.30519037566081 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",4.31705119134811 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.2961717386219 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.31934605494556 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.215920128114 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.44016813068266 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.46238022319007 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.48191524286268 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.47758657583408 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",4.64194619692464 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",4.73442314244855 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.71135550163432 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.67640560281935 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",4.48968593725856 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",4.77296248453579 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",4.65986661039414 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.7860546250732 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",4.63215456448569 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",4.60456098735908 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",4.93321697471551 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",4.58568692699869 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",4.81987451396914 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",4.90801689582824 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",4.69860643811218 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",4.92757764627701 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",4.85723399275855 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",5.02859828159682 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",4.98536521709442 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",4.83292269776397 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",4.93896405077912 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",4.88096848952121 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",4.75750740105571 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",4.88825726792219 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",4.79080838596604 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",4.91987556728419 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",4.88971802552627 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",4.6532050196617 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",4.74327238521118 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",4.88967299666802 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",4.63453144493211 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",4.72315359855476 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",4.6936677372658 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",4.73670782094712 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",4.68485119403119 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",4.63257644200291 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",4.65189221402045 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",4.67314690723212 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",4.48801558104046 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.51336629217974 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.39657376319855 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",4.37058996775453 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",4.05482724347822 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",4.41189804856657 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.45931450842392 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",4.12911842690363 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",3.94999630905756 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",3.97858695375981 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",3.86222541527905 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",3.8879765616221 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",4.04126444416049 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",3.7433015203405 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",3.67985317877114 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",3.59358699933929 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",3.5253645266793 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",3.40630179276113 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",3.46229356982673 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",3.46707466966923 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",3.35789898648488 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",3.32966535630165 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.40484532361975 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.37246689424579 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",3.31114509411326 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.58001240674915 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.45255339894008 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.14751397562231 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.42716998827278 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.39075933185372 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.3693400688863 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",3.24286365509127 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",3.46122949502156 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.2292515384526 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.10939275864743 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",3.0488316245847 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",3.03320500259698 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2103,"Simulated","PgC/yr","global",3.46698568406839 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2104,"Simulated","PgC/yr","global",3.4967095550367 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2105,"Simulated","PgC/yr","global",3.0874647767933 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2106,"Simulated","PgC/yr","global",2.90531178794046 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2107,"Simulated","PgC/yr","global",2.98142985647218 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2108,"Simulated","PgC/yr","global",2.95165130760457 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2109,"Simulated","PgC/yr","global",3.06888876458993 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2110,"Simulated","PgC/yr","global",3.14991015415084 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2111,"Simulated","PgC/yr","global",2.83146606857706 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2112,"Simulated","PgC/yr","global",3.41399315059722 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2113,"Simulated","PgC/yr","global",3.06122420964566 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2114,"Simulated","PgC/yr","global",2.832871612224 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2115,"Simulated","PgC/yr","global",2.89619987683802 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2116,"Simulated","PgC/yr","global",3.1289846004507 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2117,"Simulated","PgC/yr","global",2.71853530024901 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2118,"Simulated","PgC/yr","global",2.92735019770888 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2119,"Simulated","PgC/yr","global",2.98881780557289 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2120,"Simulated","PgC/yr","global",2.75987822482041 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2121,"Simulated","PgC/yr","global",2.89623525665522 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2122,"Simulated","PgC/yr","global",3.02130291045629 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2123,"Simulated","PgC/yr","global",2.92913687847746 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2124,"Simulated","PgC/yr","global",2.719596694765 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2125,"Simulated","PgC/yr","global",2.44217872358134 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2126,"Simulated","PgC/yr","global",2.90414264579936 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2127,"Simulated","PgC/yr","global",2.58218791745526 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2128,"Simulated","PgC/yr","global",2.96532239060525 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2129,"Simulated","PgC/yr","global",2.36403274825466 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2130,"Simulated","PgC/yr","global",2.30254423413503 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2131,"Simulated","PgC/yr","global",2.73874682491111 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2132,"Simulated","PgC/yr","global",2.80772138671551 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2133,"Simulated","PgC/yr","global",3.0367156453673 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2134,"Simulated","PgC/yr","global",2.48845391630508 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2135,"Simulated","PgC/yr","global",2.46003105770562 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2136,"Simulated","PgC/yr","global",2.7354854490347 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2137,"Simulated","PgC/yr","global",2.526964847327 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2138,"Simulated","PgC/yr","global",2.85557258947816 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2139,"Simulated","PgC/yr","global",2.57589513451423 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2140,"Simulated","PgC/yr","global",2.46084479350122 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2141,"Simulated","PgC/yr","global",2.74533872812483 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2142,"Simulated","PgC/yr","global",2.387738833952 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2143,"Simulated","PgC/yr","global",2.35265331250442 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2144,"Simulated","PgC/yr","global",2.4596193652873 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2145,"Simulated","PgC/yr","global",2.35828352795971 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2146,"Simulated","PgC/yr","global",2.10329636088067 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2147,"Simulated","PgC/yr","global",2.16638500764184 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2148,"Simulated","PgC/yr","global",2.56849110367843 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2149,"Simulated","PgC/yr","global",2.10800670108877 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2150,"Simulated","PgC/yr","global",2.15909033260466 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2151,"Simulated","PgC/yr","global",2.44509916667382 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2152,"Simulated","PgC/yr","global",2.45762362196253 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2153,"Simulated","PgC/yr","global",2.39161453210888 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2154,"Simulated","PgC/yr","global",2.58176335964886 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2155,"Simulated","PgC/yr","global",2.33397437719647 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2156,"Simulated","PgC/yr","global",2.32240517697215 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2157,"Simulated","PgC/yr","global",2.07146256626846 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2158,"Simulated","PgC/yr","global",2.8048331070932 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2159,"Simulated","PgC/yr","global",2.48890259671412 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2160,"Simulated","PgC/yr","global",2.39063515444185 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2161,"Simulated","PgC/yr","global",2.00207309569872 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2162,"Simulated","PgC/yr","global",2.49529991093323 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2163,"Simulated","PgC/yr","global",2.21115334178758 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2164,"Simulated","PgC/yr","global",2.04039747859358 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2165,"Simulated","PgC/yr","global",1.94901623528718 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2166,"Simulated","PgC/yr","global",2.08761666916715 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2167,"Simulated","PgC/yr","global",2.1896713600533 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2168,"Simulated","PgC/yr","global",2.12052633185695 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2169,"Simulated","PgC/yr","global",2.3386557702814 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2170,"Simulated","PgC/yr","global",2.43978736957334 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2171,"Simulated","PgC/yr","global",2.34344169464442 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2172,"Simulated","PgC/yr","global",2.28352597421666 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2173,"Simulated","PgC/yr","global",2.34777250590437 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2174,"Simulated","PgC/yr","global",2.28080012011877 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2175,"Simulated","PgC/yr","global",2.17875186192666 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2176,"Simulated","PgC/yr","global",2.50686589481053 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2177,"Simulated","PgC/yr","global",2.27207899517904 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2178,"Simulated","PgC/yr","global",2.12193991637143 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2179,"Simulated","PgC/yr","global",2.57122017412334 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2180,"Simulated","PgC/yr","global",2.33405800221894 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2181,"Simulated","PgC/yr","global",1.98918197684994 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2182,"Simulated","PgC/yr","global",2.37002480274949 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2183,"Simulated","PgC/yr","global",2.12264108002138 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2184,"Simulated","PgC/yr","global",2.43762759255064 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2185,"Simulated","PgC/yr","global",2.18488382751678 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2186,"Simulated","PgC/yr","global",2.36160601442946 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2187,"Simulated","PgC/yr","global",2.06247930904674 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2188,"Simulated","PgC/yr","global",2.22257619822257 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2189,"Simulated","PgC/yr","global",2.03653786217179 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2190,"Simulated","PgC/yr","global",2.27577136155588 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2191,"Simulated","PgC/yr","global",1.86056508411433 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2192,"Simulated","PgC/yr","global",2.07660389697698 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2193,"Simulated","PgC/yr","global",2.16721482517253 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2194,"Simulated","PgC/yr","global",2.11618587155594 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2195,"Simulated","PgC/yr","global",2.06958904413038 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2196,"Simulated","PgC/yr","global",2.07598957469651 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2197,"Simulated","PgC/yr","global",2.25787882309387 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2198,"Simulated","PgC/yr","global",2.26172879047461 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2199,"Simulated","PgC/yr","global",2.15836504635206 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2200,"Simulated","PgC/yr","global",1.9070557720883 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2201,"Simulated","PgC/yr","global",2.11862547076921 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2202,"Simulated","PgC/yr","global",2.14633430033065 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2203,"Simulated","PgC/yr","global",1.9139467955747 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2204,"Simulated","PgC/yr","global",1.56775785735289 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2205,"Simulated","PgC/yr","global",1.84996239616898 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2206,"Simulated","PgC/yr","global",2.0593546279186 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2207,"Simulated","PgC/yr","global",1.90812842381885 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2208,"Simulated","PgC/yr","global",2.0266910157757 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2209,"Simulated","PgC/yr","global",2.43491782018785 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2210,"Simulated","PgC/yr","global",2.01897660745265 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2211,"Simulated","PgC/yr","global",2.06293603032332 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2212,"Simulated","PgC/yr","global",2.208835963761 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2213,"Simulated","PgC/yr","global",2.26377760352517 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2214,"Simulated","PgC/yr","global",1.92890602555615 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2215,"Simulated","PgC/yr","global",1.8658736648678 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2216,"Simulated","PgC/yr","global",2.36644983303881 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2217,"Simulated","PgC/yr","global",1.94107185815233 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2218,"Simulated","PgC/yr","global",1.50188996513333 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2219,"Simulated","PgC/yr","global",1.78808309588664 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2220,"Simulated","PgC/yr","global",2.09745065017517 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2221,"Simulated","PgC/yr","global",1.84987233845247 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2222,"Simulated","PgC/yr","global",2.35858586457941 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2223,"Simulated","PgC/yr","global",1.75375180781482 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2224,"Simulated","PgC/yr","global",1.91280499238325 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2225,"Simulated","PgC/yr","global",1.57938077057241 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2226,"Simulated","PgC/yr","global",2.33217965556034 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2227,"Simulated","PgC/yr","global",2.08608890433353 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2228,"Simulated","PgC/yr","global",1.75801990030791 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2229,"Simulated","PgC/yr","global",2.04494217693024 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2230,"Simulated","PgC/yr","global",1.78102321418178 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2231,"Simulated","PgC/yr","global",2.19609922956909 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2232,"Simulated","PgC/yr","global",2.18881259539946 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2233,"Simulated","PgC/yr","global",2.17088467712024 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2234,"Simulated","PgC/yr","global",1.93369194991917 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2235,"Simulated","PgC/yr","global",1.9601431877965 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2236,"Simulated","PgC/yr","global",1.96259404422434 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2237,"Simulated","PgC/yr","global",2.35400578642556 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2238,"Simulated","PgC/yr","global",2.24632570460465 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2239,"Simulated","PgC/yr","global",2.11189526463372 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2240,"Simulated","PgC/yr","global",1.7559276665726 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2241,"Simulated","PgC/yr","global",1.88145525799727 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2242,"Simulated","PgC/yr","global",1.96448686444452 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2243,"Simulated","PgC/yr","global",1.53163072192348 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2244,"Simulated","PgC/yr","global",1.99198019875574 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2245,"Simulated","PgC/yr","global",1.69737406910704 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2246,"Simulated","PgC/yr","global",1.68876873265996 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2247,"Simulated","PgC/yr","global",2.17473303632747 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2248,"Simulated","PgC/yr","global",2.08643626981149 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2249,"Simulated","PgC/yr","global",1.8387888066279 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2250,"Simulated","PgC/yr","global",1.81675039685948 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2251,"Simulated","PgC/yr","global",1.85675692924483 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2252,"Simulated","PgC/yr","global",2.24094314786976 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2253,"Simulated","PgC/yr","global",2.0742511391332 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2254,"Simulated","PgC/yr","global",1.80515064133849 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2255,"Simulated","PgC/yr","global",1.58361107098804 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2256,"Simulated","PgC/yr","global",1.9238306299615 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2257,"Simulated","PgC/yr","global",1.86117136552726 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2258,"Simulated","PgC/yr","global",1.81552014412503 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2259,"Simulated","PgC/yr","global",1.56993516346683 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2260,"Simulated","PgC/yr","global",1.93009768212638 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2261,"Simulated","PgC/yr","global",1.29810559522721 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2262,"Simulated","PgC/yr","global",1.48463876626674 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2263,"Simulated","PgC/yr","global",2.00646501755201 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2264,"Simulated","PgC/yr","global",2.22517822296026 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2265,"Simulated","PgC/yr","global",1.99814111146902 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2266,"Simulated","PgC/yr","global",1.86873943006098 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2267,"Simulated","PgC/yr","global",2.22045340919059 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2268,"Simulated","PgC/yr","global",1.96395295083951 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2269,"Simulated","PgC/yr","global",1.68738087892162 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2270,"Simulated","PgC/yr","global",2.01537912331284 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2271,"Simulated","PgC/yr","global",1.6909204688151 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2272,"Simulated","PgC/yr","global",1.61909783172613 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2273,"Simulated","PgC/yr","global",1.95816191803332 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2274,"Simulated","PgC/yr","global",1.74861369345331 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2275,"Simulated","PgC/yr","global",1.79207136618915 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2276,"Simulated","PgC/yr","global",1.87197346698774 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2277,"Simulated","PgC/yr","global",1.9181988063327 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2278,"Simulated","PgC/yr","global",2.0591069691982 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2279,"Simulated","PgC/yr","global",1.99739813530782 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2280,"Simulated","PgC/yr","global",1.66783352991877 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2281,"Simulated","PgC/yr","global",2.00421679098632 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2282,"Simulated","PgC/yr","global",1.64128580163089 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2283,"Simulated","PgC/yr","global",1.61400796256989 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2284,"Simulated","PgC/yr","global",1.76818677323231 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2285,"Simulated","PgC/yr","global",2.12830185077334 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2286,"Simulated","PgC/yr","global",1.78179192111912 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2287,"Simulated","PgC/yr","global",1.55638501511403 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2288,"Simulated","PgC/yr","global",1.83742346731869 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2289,"Simulated","PgC/yr","global",2.10096772563953 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2290,"Simulated","PgC/yr","global",1.58315386725941 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2291,"Simulated","PgC/yr","global",1.91830816213132 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2292,"Simulated","PgC/yr","global",2.01494009194486 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2293,"Simulated","PgC/yr","global",2.140020611134 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2294,"Simulated","PgC/yr","global",1.37885214793542 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2295,"Simulated","PgC/yr","global",1.74672569775365 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2296,"Simulated","PgC/yr","global",1.9201639943608 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2297,"Simulated","PgC/yr","global",1.81896163543446 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2298,"Simulated","PgC/yr","global",1.74522527186968 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2299,"Simulated","PgC/yr","global",1.86749631193846 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp45",2300,"Simulated","PgC/yr","global",1.65794487101144 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",1.77795176795972 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",1.77839562259693 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",1.6701266508539 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",1.70416914556033 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",1.70739640363658 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",1.85557687977002 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",1.78575225173983 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.85169760125008 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",1.82594302308263 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",1.82653577728085 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.78697363181116 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.82161933946501 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.78688785171902 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.84035949142397 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.88575917858663 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.92038277607769 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.88437339431732 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.7846078443929 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.91895662470619 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",1.92142947668866 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.88525009438204 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.90474272582309 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.8442772104344 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",2.01396949880886 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.9537078372862 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.9905997906898 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.87976548960294 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",2.06232956245627 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",1.93294070633708 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",2.02706999961898 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.92023149118792 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",1.98041214327596 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",2.110063752533 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",2.02754211122771 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.99382420472021 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",2.10224996595785 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",1.97467203308872 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",2.13421795858565 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",2.05931010321287 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",2.05672348939697 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",2.12132424743081 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",2.06959921884265 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",2.12901518957454 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",2.096004533046 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",2.05225475944172 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",2.09784885089876 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",2.11384725092867 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",2.03535195283605 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",2.03864526617042 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",2.03575553211448 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",2.00502139666232 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",2.10821980165389 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",2.07784566735849 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",2.03066707539728 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",2.03096661764418 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",2.07144894955685 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",2.11758322623585 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",2.13352749765147 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",2.06868196818892 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",2.10685319175811 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",2.12464912049962 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",2.00124964142366 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",2.17320890955943 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",1.9811102189135 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.89194369387156 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.98887317963727 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",2.00488946963291 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",2.05693697632148 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",2.09438186728159 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",1.9644753948203 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",1.9152812917957 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.96588016997632 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.99649586468093 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.91114659961102 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",1.91576551353508 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.86681196174214 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",1.89368351597572 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.80931517148889 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",1.80035183993563 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.87188436336188 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.9187889177453 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",1.80766947812756 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.81941272687013 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.83987132471778 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.86985811831904 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.91146283915927 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.86807095661323 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.78658656634726 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.8669637970924 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.85859377019784 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.85156374760897 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.7637070432895 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.82857743521725 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.78847547149925 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.75680830552615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",1.72962858516476 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",1.61335977120288 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2103,"Simulated","PgC/yr","HL",1.83884627555253 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2104,"Simulated","PgC/yr","HL",1.74545157178699 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2105,"Simulated","PgC/yr","HL",1.80132468709827 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2106,"Simulated","PgC/yr","HL",1.67234574055309 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2107,"Simulated","PgC/yr","HL",1.83680076439274 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2108,"Simulated","PgC/yr","HL",1.6245850366297 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2109,"Simulated","PgC/yr","HL",1.72133397135654 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2110,"Simulated","PgC/yr","HL",1.74616166581178 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2111,"Simulated","PgC/yr","HL",1.7817046240551 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2112,"Simulated","PgC/yr","HL",1.8317929501365 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2113,"Simulated","PgC/yr","HL",1.72944170383033 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2114,"Simulated","PgC/yr","HL",1.64861181108023 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2115,"Simulated","PgC/yr","HL",1.65061548724321 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2116,"Simulated","PgC/yr","HL",1.6881255160273 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2117,"Simulated","PgC/yr","HL",1.57028431169192 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2118,"Simulated","PgC/yr","HL",1.77146275628355 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2119,"Simulated","PgC/yr","HL",1.7787244309929 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2120,"Simulated","PgC/yr","HL",1.62830147058969 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2121,"Simulated","PgC/yr","HL",1.7731529452007 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2122,"Simulated","PgC/yr","HL",1.67682758981655 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2123,"Simulated","PgC/yr","HL",1.74605735355 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2124,"Simulated","PgC/yr","HL",1.63296882503637 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2125,"Simulated","PgC/yr","HL",1.69559388864852 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2126,"Simulated","PgC/yr","HL",1.81939960756192 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2127,"Simulated","PgC/yr","HL",1.59512384104757 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2128,"Simulated","PgC/yr","HL",1.75129415936773 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2129,"Simulated","PgC/yr","HL",1.62048850970527 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2130,"Simulated","PgC/yr","HL",1.44321601348786 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2131,"Simulated","PgC/yr","HL",1.45345017481263 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2132,"Simulated","PgC/yr","HL",1.66197313841651 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2133,"Simulated","PgC/yr","HL",1.88140375174774 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2134,"Simulated","PgC/yr","HL",1.64238913053505 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2135,"Simulated","PgC/yr","HL",1.65252998880773 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2136,"Simulated","PgC/yr","HL",1.58011443502118 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2137,"Simulated","PgC/yr","HL",1.51172219691465 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2138,"Simulated","PgC/yr","HL",1.72698417299801 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2139,"Simulated","PgC/yr","HL",1.73170079365804 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2140,"Simulated","PgC/yr","HL",1.50764906456081 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2141,"Simulated","PgC/yr","HL",1.65225063011193 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2142,"Simulated","PgC/yr","HL",1.62939138234868 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2143,"Simulated","PgC/yr","HL",1.45205393179411 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2144,"Simulated","PgC/yr","HL",1.47345858772751 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2145,"Simulated","PgC/yr","HL",1.59202942743487 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2146,"Simulated","PgC/yr","HL",1.51931992774969 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2147,"Simulated","PgC/yr","HL",1.45790367536115 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2148,"Simulated","PgC/yr","HL",1.51013879733146 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2149,"Simulated","PgC/yr","HL",1.53495906057016 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2150,"Simulated","PgC/yr","HL",1.40180899970492 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2151,"Simulated","PgC/yr","HL",1.52247544247615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2152,"Simulated","PgC/yr","HL",1.69951729575062 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2153,"Simulated","PgC/yr","HL",1.60112386032683 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2154,"Simulated","PgC/yr","HL",1.69970582846651 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2155,"Simulated","PgC/yr","HL",1.40688369491001 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2156,"Simulated","PgC/yr","HL",1.57400157134264 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2157,"Simulated","PgC/yr","HL",1.46652498746681 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2158,"Simulated","PgC/yr","HL",1.57096275423886 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2159,"Simulated","PgC/yr","HL",1.59966651619455 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2160,"Simulated","PgC/yr","HL",1.64500904721025 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2161,"Simulated","PgC/yr","HL",1.44915383073239 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2162,"Simulated","PgC/yr","HL",1.55553389732341 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2163,"Simulated","PgC/yr","HL",1.52899014230826 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2164,"Simulated","PgC/yr","HL",1.42872982015184 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2165,"Simulated","PgC/yr","HL",1.25147356251871 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2166,"Simulated","PgC/yr","HL",1.45066567045262 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2167,"Simulated","PgC/yr","HL",1.4180024462331 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2168,"Simulated","PgC/yr","HL",1.52374645573448 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2169,"Simulated","PgC/yr","HL",1.64891098635346 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2170,"Simulated","PgC/yr","HL",1.52265186506138 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2171,"Simulated","PgC/yr","HL",1.51206568425688 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2172,"Simulated","PgC/yr","HL",1.49383938716004 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2173,"Simulated","PgC/yr","HL",1.5149324824593 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2174,"Simulated","PgC/yr","HL",1.49773224370526 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2175,"Simulated","PgC/yr","HL",1.4322365286673 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2176,"Simulated","PgC/yr","HL",1.39313677000445 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2177,"Simulated","PgC/yr","HL",1.49134167271236 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2178,"Simulated","PgC/yr","HL",1.44082371222294 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2179,"Simulated","PgC/yr","HL",1.51510312520944 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2180,"Simulated","PgC/yr","HL",1.7167321217075 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2181,"Simulated","PgC/yr","HL",1.38563454406344 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2182,"Simulated","PgC/yr","HL",1.56652741888633 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2183,"Simulated","PgC/yr","HL",1.47971319498077 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2184,"Simulated","PgC/yr","HL",1.55718059986231 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2185,"Simulated","PgC/yr","HL",1.60593983910428 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2186,"Simulated","PgC/yr","HL",1.46333066527621 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2187,"Simulated","PgC/yr","HL",1.37765837164541 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2188,"Simulated","PgC/yr","HL",1.4881723964738 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2189,"Simulated","PgC/yr","HL",1.46219919375066 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2190,"Simulated","PgC/yr","HL",1.33171473778082 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2191,"Simulated","PgC/yr","HL",1.3592573033448 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2192,"Simulated","PgC/yr","HL",1.42437265018808 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2193,"Simulated","PgC/yr","HL",1.45760642669961 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2194,"Simulated","PgC/yr","HL",1.38865354458978 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2195,"Simulated","PgC/yr","HL",1.45258815369416 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2196,"Simulated","PgC/yr","HL",1.19015639301735 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2197,"Simulated","PgC/yr","HL",1.46239928613672 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2198,"Simulated","PgC/yr","HL",1.62664843775523 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2199,"Simulated","PgC/yr","HL",1.58103425449051 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2200,"Simulated","PgC/yr","HL",1.46078313415471 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2201,"Simulated","PgC/yr","HL",1.32018396678519 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2202,"Simulated","PgC/yr","HL",1.50161959564564 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2203,"Simulated","PgC/yr","HL",1.47930034961752 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2204,"Simulated","PgC/yr","HL",1.2099740713744 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2205,"Simulated","PgC/yr","HL",1.2817621002088 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2206,"Simulated","PgC/yr","HL",1.36627705067129 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2207,"Simulated","PgC/yr","HL",1.29500562900144 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2208,"Simulated","PgC/yr","HL",1.43147469135698 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2209,"Simulated","PgC/yr","HL",1.52844133320538 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2210,"Simulated","PgC/yr","HL",1.38294664551843 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2211,"Simulated","PgC/yr","HL",1.37105890089871 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2212,"Simulated","PgC/yr","HL",1.54982782394279 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2213,"Simulated","PgC/yr","HL",1.28386128126582 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2214,"Simulated","PgC/yr","HL",1.39849137436582 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2215,"Simulated","PgC/yr","HL",1.45376558867015 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2216,"Simulated","PgC/yr","HL",1.34682625422704 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2217,"Simulated","PgC/yr","HL",1.2678269178176 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2218,"Simulated","PgC/yr","HL",1.36346309667536 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2219,"Simulated","PgC/yr","HL",1.24123802504273 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2220,"Simulated","PgC/yr","HL",1.30802456991646 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2221,"Simulated","PgC/yr","HL",1.19002428250111 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2222,"Simulated","PgC/yr","HL",1.732817953211 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2223,"Simulated","PgC/yr","HL",1.40729598981277 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2224,"Simulated","PgC/yr","HL",1.42548430513619 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2225,"Simulated","PgC/yr","HL",1.34646873014247 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2226,"Simulated","PgC/yr","HL",1.47951805673907 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2227,"Simulated","PgC/yr","HL",1.47266564939982 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2228,"Simulated","PgC/yr","HL",1.27634199104979 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2229,"Simulated","PgC/yr","HL",1.43512809759151 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2230,"Simulated","PgC/yr","HL",1.22671082240063 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2231,"Simulated","PgC/yr","HL",1.51976167228837 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2232,"Simulated","PgC/yr","HL",1.42624559198603 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2233,"Simulated","PgC/yr","HL",1.43334102762912 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2234,"Simulated","PgC/yr","HL",1.38151709964061 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2235,"Simulated","PgC/yr","HL",1.46005239786175 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2236,"Simulated","PgC/yr","HL",1.22864403962162 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2237,"Simulated","PgC/yr","HL",1.4420094041062 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2238,"Simulated","PgC/yr","HL",1.57587754067325 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2239,"Simulated","PgC/yr","HL",1.4747907020996 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2240,"Simulated","PgC/yr","HL",1.35066131242141 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2241,"Simulated","PgC/yr","HL",1.32010470047545 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2242,"Simulated","PgC/yr","HL",1.41180260979803 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2243,"Simulated","PgC/yr","HL",1.31882487984937 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2244,"Simulated","PgC/yr","HL",1.51692432372187 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2245,"Simulated","PgC/yr","HL",1.38693555741816 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2246,"Simulated","PgC/yr","HL",1.21253949246165 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2247,"Simulated","PgC/yr","HL",1.44432491613355 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2248,"Simulated","PgC/yr","HL",1.43328350450851 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2249,"Simulated","PgC/yr","HL",1.28984010781643 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2250,"Simulated","PgC/yr","HL",1.42726669618447 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2251,"Simulated","PgC/yr","HL",1.34958598786526 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2252,"Simulated","PgC/yr","HL",1.27529721705052 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2253,"Simulated","PgC/yr","HL",1.37143899386315 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2254,"Simulated","PgC/yr","HL",1.47260234644412 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2255,"Simulated","PgC/yr","HL",1.19401924946617 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2256,"Simulated","PgC/yr","HL",1.19431347059505 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2257,"Simulated","PgC/yr","HL",1.23382800123285 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2258,"Simulated","PgC/yr","HL",1.39821036428857 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2259,"Simulated","PgC/yr","HL",1.41833740143782 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2260,"Simulated","PgC/yr","HL",1.42183420166456 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2261,"Simulated","PgC/yr","HL",1.16212116531989 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2262,"Simulated","PgC/yr","HL",1.01820547353225 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2263,"Simulated","PgC/yr","HL",1.48715899872214 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2264,"Simulated","PgC/yr","HL",1.49908004620115 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2265,"Simulated","PgC/yr","HL",1.47083234075674 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2266,"Simulated","PgC/yr","HL",1.43744636192129 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2267,"Simulated","PgC/yr","HL",1.36258318559115 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2268,"Simulated","PgC/yr","HL",1.46942508852854 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2269,"Simulated","PgC/yr","HL",1.21141875491554 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2270,"Simulated","PgC/yr","HL",1.44543079124658 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2271,"Simulated","PgC/yr","HL",1.3233111327967 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2272,"Simulated","PgC/yr","HL",1.27935025759669 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2273,"Simulated","PgC/yr","HL",1.35159296679115 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2274,"Simulated","PgC/yr","HL",1.44861107669483 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2275,"Simulated","PgC/yr","HL",1.27969264401794 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2276,"Simulated","PgC/yr","HL",1.21081159700132 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2277,"Simulated","PgC/yr","HL",1.32830518554084 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2278,"Simulated","PgC/yr","HL",1.44468766959273 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2279,"Simulated","PgC/yr","HL",1.40495983551725 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2280,"Simulated","PgC/yr","HL",1.25674312073526 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2281,"Simulated","PgC/yr","HL",1.35117847004644 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2282,"Simulated","PgC/yr","HL",1.18854299333776 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2283,"Simulated","PgC/yr","HL",1.21776776614187 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2284,"Simulated","PgC/yr","HL",1.2150853722017 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2285,"Simulated","PgC/yr","HL",1.44550014926761 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2286,"Simulated","PgC/yr","HL",1.33069500973358 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2287,"Simulated","PgC/yr","HL",1.21840574984321 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2288,"Simulated","PgC/yr","HL",1.39785724388787 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2289,"Simulated","PgC/yr","HL",1.34076595952475 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2290,"Simulated","PgC/yr","HL",1.37272707139649 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2291,"Simulated","PgC/yr","HL",1.4263609134575 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2292,"Simulated","PgC/yr","HL",1.32252177246217 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2293,"Simulated","PgC/yr","HL",1.41877997166723 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2294,"Simulated","PgC/yr","HL",1.34379624449102 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2295,"Simulated","PgC/yr","HL",1.1361372286173 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2296,"Simulated","PgC/yr","HL",1.16749283395628 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2297,"Simulated","PgC/yr","HL",1.31526560235765 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2298,"Simulated","PgC/yr","HL",1.25903028404767 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2299,"Simulated","PgC/yr","HL",1.37422625052558 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp45",2300,"Simulated","PgC/yr","HL",1.24989841984279 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",2.17301432124819 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",2.0958502355267 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.98784761869638 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",2.12897831885367 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",2.25841510773034 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",2.12671720275856 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",2.13318686506173 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",2.35900478273894 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",2.443176595529 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",2.34626673256591 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",2.36553753769007 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",2.59447943007049 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",2.53360568832835 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",2.47601631879588 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",2.44291800453521 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",2.38780213339171 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",2.44658048831826 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",2.44208846950877 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",2.53296054378717 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",2.55268588256534 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",2.60799947362677 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",2.58438327345249 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",2.8083106332628 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",2.73265499500503 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",2.76927805557784 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",2.69787050751172 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",2.62118628136632 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",2.72325685634447 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",2.7384355256392 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",2.77122904020617 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",2.72335149531642 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",2.63623565516418 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",2.83598386842714 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",2.57074193205892 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",2.83789930790169 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",2.81856185561419 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",2.73579896385725 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",2.80644540131796 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",2.81037180786786 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",2.98399922055801 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",2.87689545180401 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",2.77591744599032 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",2.82296190133826 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",2.7977426147283 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",2.71780200818184 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",2.8031930197467 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",2.69007723254451 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",2.89662034626777 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",2.86325411041045 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",2.63001214305097 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",2.75034537372905 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",2.79434049919672 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",2.5697075680838 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",2.7048764573226 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",2.67514560206857 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",2.67803808895777 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",2.58060526791964 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",2.51263849073984 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",2.59610873105708 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",2.57954291213591 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",2.37711681584972 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",2.52457277612292 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",2.23776737221146 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",2.40197931797857 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",2.17502706558122 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",2.43553127726441 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",2.46701184271348 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",2.08586826771523 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.86999188523706 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",2.0271223477415 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.95965853448775 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.93527900213594 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",2.05799509106085 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.845033411193 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.77712217331599 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.73946386013922 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.6447604625973 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.60941747187515 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.67418518521436 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.60814984282832 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.45273443399397 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.5345429383718 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.59796882215565 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.54539531813656 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.45449658499283 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.68171453741471 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.59742853581813 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.37357755365701 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.57318540799397 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.54512299782713 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.53069961861887 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",1.49140889425455 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.64518256129848 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.45330209009991 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.36499824204531 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",1.33144703809399 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",1.43093592412133 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2103,"Simulated","PgC/yr","LL",1.64076518731194 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2104,"Simulated","PgC/yr","LL",1.76288411765327 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2105,"Simulated","PgC/yr","LL",1.29904238750942 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2106,"Simulated","PgC/yr","LL",1.2448773047982 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2107,"Simulated","PgC/yr","LL",1.15807617255127 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2108,"Simulated","PgC/yr","LL",1.3384136660785 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2109,"Simulated","PgC/yr","LL",1.3596794429588 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2110,"Simulated","PgC/yr","LL",1.41598429949639 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2111,"Simulated","PgC/yr","LL",1.06290948836122 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2112,"Simulated","PgC/yr","LL",1.59484529176685 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2113,"Simulated","PgC/yr","LL",1.34400269719666 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2114,"Simulated","PgC/yr","LL",1.19605639152701 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2115,"Simulated","PgC/yr","LL",1.25729073885429 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2116,"Simulated","PgC/yr","LL",1.45254293447796 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2117,"Simulated","PgC/yr","LL",1.15945123682542 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2118,"Simulated","PgC/yr","LL",1.1687658443746 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2119,"Simulated","PgC/yr","LL",1.22293865815676 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2120,"Simulated","PgC/yr","LL",1.14329343183825 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2121,"Simulated","PgC/yr","LL",1.13603089044849 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2122,"Simulated","PgC/yr","LL",1.3562311187273 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2123,"Simulated","PgC/yr","LL",1.19569623025629 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2124,"Simulated","PgC/yr","LL",1.09846255094223 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2125,"Simulated","PgC/yr","LL",0.759534933170419 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2126,"Simulated","PgC/yr","LL",1.09814704327095 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2127,"Simulated","PgC/yr","LL",0.998753729275846 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2128,"Simulated","PgC/yr","LL",1.2266363760735 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2129,"Simulated","PgC/yr","LL",0.755868939303434 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2130,"Simulated","PgC/yr","LL",0.869963417883629 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2131,"Simulated","PgC/yr","LL",1.29527868890097 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2132,"Simulated","PgC/yr","LL",1.15772427552881 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2133,"Simulated","PgC/yr","LL",1.16911467562755 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2134,"Simulated","PgC/yr","LL",0.858395869624721 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2135,"Simulated","PgC/yr","LL",0.819984043619164 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2136,"Simulated","PgC/yr","LL",1.16664286563339 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2137,"Simulated","PgC/yr","LL",1.02618303582234 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2138,"Simulated","PgC/yr","LL",1.14113992869623 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2139,"Simulated","PgC/yr","LL",0.857279529638683 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2140,"Simulated","PgC/yr","LL",0.964209304864905 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2141,"Simulated","PgC/yr","LL",1.10507274989717 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2142,"Simulated","PgC/yr","LL",0.77072085977201 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2143,"Simulated","PgC/yr","LL",0.911236006728631 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2144,"Simulated","PgC/yr","LL",0.99682922578708 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2145,"Simulated","PgC/yr","LL",0.778300375070647 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2146,"Simulated","PgC/yr","LL",0.595727535684815 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2147,"Simulated","PgC/yr","LL",0.719501448386338 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2148,"Simulated","PgC/yr","LL",1.06920351317324 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2149,"Simulated","PgC/yr","LL",0.584949356428572 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2150,"Simulated","PgC/yr","LL",0.767744797339978 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2151,"Simulated","PgC/yr","LL",0.933814199549531 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2152,"Simulated","PgC/yr","LL",0.771069424436308 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2153,"Simulated","PgC/yr","LL",0.802571005957544 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2154,"Simulated","PgC/yr","LL",0.894807081080971 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2155,"Simulated","PgC/yr","LL",0.937302778667691 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2156,"Simulated","PgC/yr","LL",0.760329500651825 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2157,"Simulated","PgC/yr","LL",0.616209675218497 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2158,"Simulated","PgC/yr","LL",1.24492808993667 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2159,"Simulated","PgC/yr","LL",0.901132963237078 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2160,"Simulated","PgC/yr","LL",0.758153204179939 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2161,"Simulated","PgC/yr","LL",0.564135713904408 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2162,"Simulated","PgC/yr","LL",0.95120471046994 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2163,"Simulated","PgC/yr","LL",0.69382616188477 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2164,"Simulated","PgC/yr","LL",0.622609402431591 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2165,"Simulated","PgC/yr","LL",0.706846351715958 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2166,"Simulated","PgC/yr","LL",0.648033962304653 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2167,"Simulated","PgC/yr","LL",0.78224402102013 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2168,"Simulated","PgC/yr","LL",0.608546451082699 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2169,"Simulated","PgC/yr","LL",0.702402052275423 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2170,"Simulated","PgC/yr","LL",0.928337535548773 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2171,"Simulated","PgC/yr","LL",0.842637814323298 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2172,"Simulated","PgC/yr","LL",0.800866971285125 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2173,"Simulated","PgC/yr","LL",0.844122846416964 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2174,"Simulated","PgC/yr","LL",0.794292761798393 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2175,"Simulated","PgC/yr","LL",0.757253600769101 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2176,"Simulated","PgC/yr","LL",1.12350255668279 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2177,"Simulated","PgC/yr","LL",0.791912658300997 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2178,"Simulated","PgC/yr","LL",0.692039484729802 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2179,"Simulated","PgC/yr","LL",1.06701362068004 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2180,"Simulated","PgC/yr","LL",0.630677574731877 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2181,"Simulated","PgC/yr","LL",0.614141880328538 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2182,"Simulated","PgC/yr","LL",0.815265424454299 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2183,"Simulated","PgC/yr","LL",0.654244011690865 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2184,"Simulated","PgC/yr","LL",0.892002968330371 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2185,"Simulated","PgC/yr","LL",0.591432392595847 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2186,"Simulated","PgC/yr","LL",0.909011724299136 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2187,"Simulated","PgC/yr","LL",0.69520709110929 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2188,"Simulated","PgC/yr","LL",0.74563300136817 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2189,"Simulated","PgC/yr","LL",0.585627824551429 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2190,"Simulated","PgC/yr","LL",0.953607607297201 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2191,"Simulated","PgC/yr","LL",0.511857545681828 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2192,"Simulated","PgC/yr","LL",0.663066896468876 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2193,"Simulated","PgC/yr","LL",0.720624053205731 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2194,"Simulated","PgC/yr","LL",0.737937253416659 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2195,"Simulated","PgC/yr","LL",0.628134718861591 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2196,"Simulated","PgC/yr","LL",0.894294964277824 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2197,"Simulated","PgC/yr","LL",0.806386822647731 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2198,"Simulated","PgC/yr","LL",0.647644476282061 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2199,"Simulated","PgC/yr","LL",0.5896118586819 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2200,"Simulated","PgC/yr","LL",0.457771639800664 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2201,"Simulated","PgC/yr","LL",0.8081480405863 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2202,"Simulated","PgC/yr","LL",0.656211569247152 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2203,"Simulated","PgC/yr","LL",0.446321523843571 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2204,"Simulated","PgC/yr","LL",0.367328906548539 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2205,"Simulated","PgC/yr","LL",0.577983394915694 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2206,"Simulated","PgC/yr","LL",0.703353907062324 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2207,"Simulated","PgC/yr","LL",0.622939972361785 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2208,"Simulated","PgC/yr","LL",0.606210867890417 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2209,"Simulated","PgC/yr","LL",0.917745301878264 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2210,"Simulated","PgC/yr","LL",0.646546264324453 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2211,"Simulated","PgC/yr","LL",0.702195579363378 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2212,"Simulated","PgC/yr","LL",0.67088660814421 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2213,"Simulated","PgC/yr","LL",0.989003782455698 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2214,"Simulated","PgC/yr","LL",0.54124401282713 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2215,"Simulated","PgC/yr","LL",0.423606837632139 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2216,"Simulated","PgC/yr","LL",1.02916962850618 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2217,"Simulated","PgC/yr","LL",0.682729542482062 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2218,"Simulated","PgC/yr","LL",0.149642076093814 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2219,"Simulated","PgC/yr","LL",0.556324533065982 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2220,"Simulated","PgC/yr","LL",0.799046837254158 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2221,"Simulated","PgC/yr","LL",0.668702180718396 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2222,"Simulated","PgC/yr","LL",0.639241202044474 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2223,"Simulated","PgC/yr","LL",0.357677597530142 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2224,"Simulated","PgC/yr","LL",0.498451202186216 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2225,"Simulated","PgC/yr","LL",0.243820782734437 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2226,"Simulated","PgC/yr","LL",0.863612076511124 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2227,"Simulated","PgC/yr","LL",0.624732114584147 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2228,"Simulated","PgC/yr","LL",0.491565617152334 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2229,"Simulated","PgC/yr","LL",0.620813927851061 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2230,"Simulated","PgC/yr","LL",0.56365705397726 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2231,"Simulated","PgC/yr","LL",0.687933086407429 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2232,"Simulated","PgC/yr","LL",0.77322772617409 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2233,"Simulated","PgC/yr","LL",0.74830621908996 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2234,"Simulated","PgC/yr","LL",0.562823831141114 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2235,"Simulated","PgC/yr","LL",0.511490852989101 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2236,"Simulated","PgC/yr","LL",0.742999505355734 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2237,"Simulated","PgC/yr","LL",0.922529101968881 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2238,"Simulated","PgC/yr","LL",0.682524935690591 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2239,"Simulated","PgC/yr","LL",0.648389458273938 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2240,"Simulated","PgC/yr","LL",0.415910556503321 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2241,"Simulated","PgC/yr","LL",0.571468234815686 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2242,"Simulated","PgC/yr","LL",0.563586674572767 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2243,"Simulated","PgC/yr","LL",0.223516991009867 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2244,"Simulated","PgC/yr","LL",0.486976959955992 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2245,"Simulated","PgC/yr","LL",0.321552835581951 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2246,"Simulated","PgC/yr","LL",0.485589499309465 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2247,"Simulated","PgC/yr","LL",0.741276276300271 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2248,"Simulated","PgC/yr","LL",0.664062205206279 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2249,"Simulated","PgC/yr","LL",0.558833398882962 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2250,"Simulated","PgC/yr","LL",0.400799111980676 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2251,"Simulated","PgC/yr","LL",0.51762932332188 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2252,"Simulated","PgC/yr","LL",0.974685172588212 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2253,"Simulated","PgC/yr","LL",0.713115850371874 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2254,"Simulated","PgC/yr","LL",0.34434296638229 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2255,"Simulated","PgC/yr","LL",0.398947787077263 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2256,"Simulated","PgC/yr","LL",0.738285151609323 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2257,"Simulated","PgC/yr","LL",0.63662090217038 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2258,"Simulated","PgC/yr","LL",0.428332787984972 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2259,"Simulated","PgC/yr","LL",0.163251293554649 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2260,"Simulated","PgC/yr","LL",0.519328026221232 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2261,"Simulated","PgC/yr","LL",0.145512217969943 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2262,"Simulated","PgC/yr","LL",0.474178705178746 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2263,"Simulated","PgC/yr","LL",0.530900239781574 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2264,"Simulated","PgC/yr","LL",0.737433000978786 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2265,"Simulated","PgC/yr","LL",0.538751942095313 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2266,"Simulated","PgC/yr","LL",0.442621006745972 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2267,"Simulated","PgC/yr","LL",0.867829375713304 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2268,"Simulated","PgC/yr","LL",0.506015788520264 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2269,"Simulated","PgC/yr","LL",0.485314246524848 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2270,"Simulated","PgC/yr","LL",0.58110394839786 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2271,"Simulated","PgC/yr","LL",0.378090157425292 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2272,"Simulated","PgC/yr","LL",0.349906271695397 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2273,"Simulated","PgC/yr","LL",0.616872947788112 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2274,"Simulated","PgC/yr","LL",0.311652532761296 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2275,"Simulated","PgC/yr","LL",0.522241440319719 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2276,"Simulated","PgC/yr","LL",0.670186946223408 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2277,"Simulated","PgC/yr","LL",0.600030143256077 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2278,"Simulated","PgC/yr","LL",0.625491625657632 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2279,"Simulated","PgC/yr","LL",0.603213744954767 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2280,"Simulated","PgC/yr","LL",0.420935619325249 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2281,"Simulated","PgC/yr","LL",0.663257107473064 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2282,"Simulated","PgC/yr","LL",0.461943752226095 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2283,"Simulated","PgC/yr","LL",0.405784053210271 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2284,"Simulated","PgC/yr","LL",0.562351302752994 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2285,"Simulated","PgC/yr","LL",0.693762047313631 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2286,"Simulated","PgC/yr","LL",0.461493883873513 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2287,"Simulated","PgC/yr","LL",0.34762973788984 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2288,"Simulated","PgC/yr","LL",0.450548553531599 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2289,"Simulated","PgC/yr","LL",0.770148360638872 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2290,"Simulated","PgC/yr","LL",0.221594753524655 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2291,"Simulated","PgC/yr","LL",0.503077981559992 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2292,"Simulated","PgC/yr","LL",0.702328340512762 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2293,"Simulated","PgC/yr","LL",0.73190995055234 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2294,"Simulated","PgC/yr","LL",0.0462851619885188 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2295,"Simulated","PgC/yr","LL",0.619074170299089 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2296,"Simulated","PgC/yr","LL",0.7611748532717 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2297,"Simulated","PgC/yr","LL",0.513872689312745 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2298,"Simulated","PgC/yr","LL",0.495930073291181 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2299,"Simulated","PgC/yr","LL",0.503960523297013 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp45",2300,"Simulated","PgC/yr","LL",0.417839192116214 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",3.99053174981652 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",3.86866655060004 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",3.86106741527969 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",3.95316683993385 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",4.03974117576758 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",4.00776130311178 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",4.01064144809672 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",4.0436097001284 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",3.89983070290562 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",3.99888245971906 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",4.17992533723985 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",4.11195915416614 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",4.28277505806926 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",4.34451696345093 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",4.22407098935231 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",4.15678261322754 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",4.25727283888926 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",4.41744054529792 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",4.55246097244305 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",4.48390678649565 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",4.47972180967918 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",4.45198250683881 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",4.52414382314227 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",4.51220789935443 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",4.41816218518836 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",4.62462923787138 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",4.52888633359262 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",4.67153636529791 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",4.87284502913447 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",4.82200950796362 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",4.58474500294898 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",4.6039005329296 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",4.64094524852015 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",4.68426555841717 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",4.76658756437799 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",4.76277890940068 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",4.92938685092045 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",4.78038692272736 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",4.91033288507255 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",4.79726741613488 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",4.72742122750956 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",4.81879527043681 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",4.67429677151585 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",4.92979845293203 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",5.00544929901681 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",4.81136184501723 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",4.96344718465299 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",4.86288051861769 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",4.88065477639321 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",4.75143205758266 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",4.73685065541128 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",4.64118151876576 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",4.85194526881126 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",4.66670993080105 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",4.65645248794356 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",4.73020355019825 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",4.4733360984709 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",4.54147814785865 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",4.59168076411819 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",4.41249383748599 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",4.41765543362085 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",4.15548579961702 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",4.23645326077609 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",4.20368225698114 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",4.30748668065819 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",4.05889937848854 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",4.03746186280993 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",4.23309309162698 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",4.06959568530904 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",3.90520718736341 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",3.84135809350167 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",3.79020023984642 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",3.41464654625699 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",3.95854332439164 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",3.8449930203572 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",3.44977544157544 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",3.46020875074697 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",3.50005022182402 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",3.6321937112726 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",3.4369179569201 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",3.44232223787739 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",3.48676777145542 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",3.24212222673176 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",3.30049273745492 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",3.3691848368036 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",3.37594847349524 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",3.51725785864853 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",3.31679538440201 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",3.32888739622541 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",3.25606324031889 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",3.31358435416359 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",3.24016684990271 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",3.19287752060828 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",3.09330244123725 -"MPI-ESM-MR","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",3.22282397241725 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",1.83718991853409 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",1.90736129707852 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",1.88640370108082 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",1.85944773251904 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",1.80972992659842 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",1.88793023050709 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",1.84569786666806 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",1.8974743977114 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",1.89159580416121 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",1.83647637517173 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",1.8660158016858 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",1.88892932181456 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",1.90664905971787 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",1.90961993374858 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",1.95614279305954 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",1.94206213563282 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",1.91660890860903 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",1.94065398593289 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",1.98803964594438 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",2.0970196115616 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",1.99581567340624 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",1.99345712760543 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",1.93697525897585 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",2.02039499871496 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",1.92796645918643 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",1.97914745345043 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",2.04526434968894 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",2.04227780363772 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",2.10441391338105 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",2.12104108756886 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",2.05314131242574 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",2.07568383478328 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",2.04970018449392 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",2.06260133580565 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",2.0214353223621 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",2.03245452521101 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",2.09748156302327 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",2.10327871803832 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",2.25345874642936 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",2.17316398892263 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",2.11938209225495 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",2.25574238370357 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",2.20126476126828 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",2.15792397512156 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",2.2658296610472 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",2.13916643228869 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",2.27386912771095 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",2.23859747312393 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",2.22301752573515 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",2.18725966536901 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",2.1873127450099 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",2.17506021011841 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",2.26291578466251 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",2.20955609969022 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",2.18921642907259 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",2.2514176523297 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",2.10447548203305 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",2.17467671204512 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",2.22273160464669 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",2.13996953005395 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",2.24536414783632 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",2.03434860083256 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",2.08148602723349 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",2.15454852041854 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",2.16280982080116 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",2.10770214582707 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",2.1136105908449 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",2.11580952457969 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",2.11251541512598 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",2.05471868263283 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",2.01782441420809 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",2.07630409230926 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.94537480896796 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",1.98453825536227 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",2.07517635983345 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",1.98094348565796 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",2.12468847048488 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",1.96694622576894 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",2.06263855685436 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",1.96361041754637 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",1.96397535173823 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",2.00219539846938 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",1.88384281830094 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",1.9184740656213 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",1.95977636967178 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",1.96960552510619 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",1.96482126770239 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",1.97411514900773 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",1.95251173516488 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",1.92417476308155 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",1.93141868813278 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",1.93779878633927 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",1.97011458591523 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.84569142994535 -"MPI-ESM-MR","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",1.81811623000177 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",2.15334159370502 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",1.96130427093644 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.97466392623089 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",2.09371956488949 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",2.23001090627635 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",2.11983169864903 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",2.16494326027265 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",2.14613489895443 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",2.00823471547471 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",2.16240600244655 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",2.31390985923425 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",2.22302969652561 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",2.37612606870364 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",2.4348969026763 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",2.26792768722961 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",2.21472072872292 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",2.34066358827713 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",2.47678592622966 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",2.56442104649428 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",2.3868866894597 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",2.48390613358304 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",2.45852517133965 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",2.58716811448307 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",2.49181267023141 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",2.49019632668062 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",2.64548224204703 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",2.48362240196875 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",2.62925879487582 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",2.76843069610421 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",2.70096787871267 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",2.53160393314037 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",2.52821724552031 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",2.59124537749405 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",2.62166423062451 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",2.74515190712752 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",2.73032373112955 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",2.83190538545535 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",2.67710882990271 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",2.65687342653065 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",2.62410396949764 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",2.608038494205 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",2.56305357484157 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",2.47303210843372 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",2.77187518907648 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",2.73961936127992 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",2.67219537496468 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",2.68957845927798 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",2.62428312196328 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",2.65763769271409 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",2.56417217459621 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",2.54953771271748 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",2.46612150063988 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",2.58902935857185 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",2.45715416958909 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",2.46723612903444 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",2.47878528539663 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",2.36886068607638 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",2.36680175650828 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",2.36894893852251 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",2.27252431588604 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",2.17229115893704 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",2.12113783485168 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",2.15496676250042 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",2.04913398784477 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",2.14467652728222 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.95119671828172 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",1.92385125658757 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",2.11728340926716 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.95708050886489 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.85048832191033 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.82353381855252 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.71389603968218 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.46927173184094 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.97400512172056 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.76981631964499 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.46883223465924 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.33551972221267 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.53310384359889 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.56955563394647 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.47330786921204 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.47834673087601 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.48457161716345 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.3582787484079 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.38201870054182 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.40940864146882 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.40634266323798 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.55243598318486 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.34268030506016 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.37637597151525 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.33188853119062 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.38216533198106 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",1.3023678673306 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.2227627930127 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.24761110761751 -"MPI-ESM-MR","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.40470756604239 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2006,"Simulated","PgC/yr","global",2.80047087499666 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2007,"Simulated","PgC/yr","global",2.76726914489605 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2008,"Simulated","PgC/yr","global",2.74392302150729 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2009,"Simulated","PgC/yr","global",2.70383649171107 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2010,"Simulated","PgC/yr","global",2.7670356267065 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2011,"Simulated","PgC/yr","global",2.91464646121289 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2012,"Simulated","PgC/yr","global",2.9286632481511 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2013,"Simulated","PgC/yr","global",2.90493666098035 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2014,"Simulated","PgC/yr","global",2.9745296379168 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2015,"Simulated","PgC/yr","global",3.00115071152476 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2016,"Simulated","PgC/yr","global",2.85262403007012 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2017,"Simulated","PgC/yr","global",2.88367511460069 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2018,"Simulated","PgC/yr","global",3.09992662747544 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2019,"Simulated","PgC/yr","global",3.11469978552515 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2020,"Simulated","PgC/yr","global",2.9130072774336 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2021,"Simulated","PgC/yr","global",3.06843014971506 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2022,"Simulated","PgC/yr","global",3.04206651567215 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2023,"Simulated","PgC/yr","global",3.13240160340566 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2024,"Simulated","PgC/yr","global",3.07650418350766 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2025,"Simulated","PgC/yr","global",3.14784683819601 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2026,"Simulated","PgC/yr","global",3.09977740365675 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2027,"Simulated","PgC/yr","global",3.30282545636077 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2028,"Simulated","PgC/yr","global",3.25559213085139 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2029,"Simulated","PgC/yr","global",3.25028728105283 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2030,"Simulated","PgC/yr","global",3.25773708085583 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2031,"Simulated","PgC/yr","global",3.27504248737069 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2032,"Simulated","PgC/yr","global",3.43950536137027 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2033,"Simulated","PgC/yr","global",3.32347529899514 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2034,"Simulated","PgC/yr","global",3.37489144788014 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2035,"Simulated","PgC/yr","global",3.46415463016799 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2036,"Simulated","PgC/yr","global",3.5262203476093 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2037,"Simulated","PgC/yr","global",3.34160200606931 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2038,"Simulated","PgC/yr","global",3.37648848447399 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2039,"Simulated","PgC/yr","global",3.53297870574863 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2040,"Simulated","PgC/yr","global",3.53012522738372 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2041,"Simulated","PgC/yr","global",3.35045633234893 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2042,"Simulated","PgC/yr","global",3.52814772700788 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2043,"Simulated","PgC/yr","global",3.58674598411275 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2044,"Simulated","PgC/yr","global",3.4357702094507 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2045,"Simulated","PgC/yr","global",3.44317900118138 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2046,"Simulated","PgC/yr","global",3.39904748069702 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2047,"Simulated","PgC/yr","global",3.44199432353687 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2048,"Simulated","PgC/yr","global",3.44230530141856 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2049,"Simulated","PgC/yr","global",3.53284884685298 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2050,"Simulated","PgC/yr","global",3.49313708527314 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2051,"Simulated","PgC/yr","global",3.34620857952548 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2052,"Simulated","PgC/yr","global",3.48717952365698 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2053,"Simulated","PgC/yr","global",3.44100671246207 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2054,"Simulated","PgC/yr","global",3.45648042508041 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2055,"Simulated","PgC/yr","global",3.51503197854737 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2056,"Simulated","PgC/yr","global",3.32119821186881 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2057,"Simulated","PgC/yr","global",3.51340190767304 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2058,"Simulated","PgC/yr","global",3.23792904281694 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2059,"Simulated","PgC/yr","global",3.38170448344921 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2060,"Simulated","PgC/yr","global",3.42394963260732 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2061,"Simulated","PgC/yr","global",3.36493559921375 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2062,"Simulated","PgC/yr","global",3.38637712546632 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2063,"Simulated","PgC/yr","global",3.31439201097845 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2064,"Simulated","PgC/yr","global",3.19579324851833 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2065,"Simulated","PgC/yr","global",3.32572732563283 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2066,"Simulated","PgC/yr","global",3.09385971099978 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2067,"Simulated","PgC/yr","global",3.1047872231573 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2068,"Simulated","PgC/yr","global",3.19793819852277 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2069,"Simulated","PgC/yr","global",3.02908062610729 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2070,"Simulated","PgC/yr","global",3.09872258490789 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2071,"Simulated","PgC/yr","global",3.00617078304339 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2072,"Simulated","PgC/yr","global",2.99103652613473 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2073,"Simulated","PgC/yr","global",3.03960033576795 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2074,"Simulated","PgC/yr","global",2.87087376136123 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2075,"Simulated","PgC/yr","global",2.83105150580878 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2076,"Simulated","PgC/yr","global",2.7822815167009 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2077,"Simulated","PgC/yr","global",2.8256008495309 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2078,"Simulated","PgC/yr","global",2.67363062911533 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2079,"Simulated","PgC/yr","global",2.53889405108808 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2080,"Simulated","PgC/yr","global",2.66154805625441 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2081,"Simulated","PgC/yr","global",2.49098067504622 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2082,"Simulated","PgC/yr","global",2.40641519526412 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2083,"Simulated","PgC/yr","global",2.57174151700845 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2084,"Simulated","PgC/yr","global",2.47067484457401 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2085,"Simulated","PgC/yr","global",2.48640827498365 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2086,"Simulated","PgC/yr","global",2.44650742062594 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2087,"Simulated","PgC/yr","global",2.54296182403861 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2088,"Simulated","PgC/yr","global",2.44603127134189 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2089,"Simulated","PgC/yr","global",2.59813476799247 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2090,"Simulated","PgC/yr","global",2.40130741203527 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2091,"Simulated","PgC/yr","global",2.32828798283469 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2092,"Simulated","PgC/yr","global",2.49503705686556 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2093,"Simulated","PgC/yr","global",2.52668389755775 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2094,"Simulated","PgC/yr","global",2.49745653313186 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2095,"Simulated","PgC/yr","global",2.52344995541085 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2096,"Simulated","PgC/yr","global",2.32687889990559 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2097,"Simulated","PgC/yr","global",2.57969252658413 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2098,"Simulated","PgC/yr","global",2.46166218157075 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2099,"Simulated","PgC/yr","global",2.67454419783735 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2100,"Simulated","PgC/yr","global",2.29902986235457 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2101,"Simulated","PgC/yr","global",2.29010263283528 -"NorESM1-ME","fgco2","ocean","fgco2","rcp45",2102,"Simulated","PgC/yr","global",2.29410319811176 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2006,"Simulated","PgC/yr","HL",0.833370838899343 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2007,"Simulated","PgC/yr","HL",0.762614183522361 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2008,"Simulated","PgC/yr","HL",0.766854874937112 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2009,"Simulated","PgC/yr","HL",0.806499169684548 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2010,"Simulated","PgC/yr","HL",0.814811367393991 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2011,"Simulated","PgC/yr","HL",0.879534717991576 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2012,"Simulated","PgC/yr","HL",0.784419320072381 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2013,"Simulated","PgC/yr","HL",0.911845331382907 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2014,"Simulated","PgC/yr","HL",0.813504012356596 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2015,"Simulated","PgC/yr","HL",0.831292619265624 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2016,"Simulated","PgC/yr","HL",0.836654970580966 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2017,"Simulated","PgC/yr","HL",0.788006248865255 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2018,"Simulated","PgC/yr","HL",0.851319780197804 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2019,"Simulated","PgC/yr","HL",0.856289125032043 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2020,"Simulated","PgC/yr","HL",0.801251026835564 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2021,"Simulated","PgC/yr","HL",0.91342161246627 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2022,"Simulated","PgC/yr","HL",0.834259486295547 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2023,"Simulated","PgC/yr","HL",0.956903039353146 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2024,"Simulated","PgC/yr","HL",0.854995897122379 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2025,"Simulated","PgC/yr","HL",0.900166792320827 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2026,"Simulated","PgC/yr","HL",0.810707692097597 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2027,"Simulated","PgC/yr","HL",0.959562854112862 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2028,"Simulated","PgC/yr","HL",0.971199352204464 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2029,"Simulated","PgC/yr","HL",0.928632273873881 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2030,"Simulated","PgC/yr","HL",0.900401847301512 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2031,"Simulated","PgC/yr","HL",0.902986941469974 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2032,"Simulated","PgC/yr","HL",1.03925057751773 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2033,"Simulated","PgC/yr","HL",0.940764583086943 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2034,"Simulated","PgC/yr","HL",0.934279040013788 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2035,"Simulated","PgC/yr","HL",0.972476070097382 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2036,"Simulated","PgC/yr","HL",1.01029456124032 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2037,"Simulated","PgC/yr","HL",0.950923860195659 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2038,"Simulated","PgC/yr","HL",0.99523963865047 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2039,"Simulated","PgC/yr","HL",0.989009405114627 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2040,"Simulated","PgC/yr","HL",1.04149287608076 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2041,"Simulated","PgC/yr","HL",0.951558389499059 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2042,"Simulated","PgC/yr","HL",0.995975951356078 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2043,"Simulated","PgC/yr","HL",1.02369899277463 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2044,"Simulated","PgC/yr","HL",1.02340062102869 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2045,"Simulated","PgC/yr","HL",1.04580113941972 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2046,"Simulated","PgC/yr","HL",1.05467229480952 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2047,"Simulated","PgC/yr","HL",1.01773172806222 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2048,"Simulated","PgC/yr","HL",0.971323602845956 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2049,"Simulated","PgC/yr","HL",1.05063295751653 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2050,"Simulated","PgC/yr","HL",1.04575518370301 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2051,"Simulated","PgC/yr","HL",0.931538036821207 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2052,"Simulated","PgC/yr","HL",1.03677781954569 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2053,"Simulated","PgC/yr","HL",1.05239152960953 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2054,"Simulated","PgC/yr","HL",0.972840481910305 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2055,"Simulated","PgC/yr","HL",1.10135836700873 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2056,"Simulated","PgC/yr","HL",0.93042080228593 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2057,"Simulated","PgC/yr","HL",1.07395973890893 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2058,"Simulated","PgC/yr","HL",0.966476125764194 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2059,"Simulated","PgC/yr","HL",1.02652731182897 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2060,"Simulated","PgC/yr","HL",0.97062320368193 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2061,"Simulated","PgC/yr","HL",1.02146758741852 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2062,"Simulated","PgC/yr","HL",1.06585246965477 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2063,"Simulated","PgC/yr","HL",1.04824257942186 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2064,"Simulated","PgC/yr","HL",0.955930820635062 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2065,"Simulated","PgC/yr","HL",1.00113967185139 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2066,"Simulated","PgC/yr","HL",0.990139745539486 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2067,"Simulated","PgC/yr","HL",0.974178644298536 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2068,"Simulated","PgC/yr","HL",1.09321331194305 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2069,"Simulated","PgC/yr","HL",0.938975884468536 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2070,"Simulated","PgC/yr","HL",1.05307116359786 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2071,"Simulated","PgC/yr","HL",1.0330423006021 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2072,"Simulated","PgC/yr","HL",0.89493311701229 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2073,"Simulated","PgC/yr","HL",0.984889049595129 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2074,"Simulated","PgC/yr","HL",0.905348214277393 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2075,"Simulated","PgC/yr","HL",0.982111962654608 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2076,"Simulated","PgC/yr","HL",0.898668295543164 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2077,"Simulated","PgC/yr","HL",1.04757843421213 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2078,"Simulated","PgC/yr","HL",1.006396665431 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2079,"Simulated","PgC/yr","HL",0.865540351219719 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2080,"Simulated","PgC/yr","HL",0.933786462813134 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2081,"Simulated","PgC/yr","HL",0.911893159369563 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2082,"Simulated","PgC/yr","HL",0.829901012080916 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2083,"Simulated","PgC/yr","HL",0.906377452125476 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2084,"Simulated","PgC/yr","HL",0.873934928806535 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2085,"Simulated","PgC/yr","HL",0.90153133669458 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2086,"Simulated","PgC/yr","HL",0.911419985693745 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2087,"Simulated","PgC/yr","HL",0.914749732679367 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2088,"Simulated","PgC/yr","HL",0.891435546557476 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2089,"Simulated","PgC/yr","HL",0.973395354638063 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2090,"Simulated","PgC/yr","HL",0.82948655959868 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2091,"Simulated","PgC/yr","HL",0.832537678775915 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2092,"Simulated","PgC/yr","HL",0.887027712498965 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2093,"Simulated","PgC/yr","HL",0.866560738337176 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2094,"Simulated","PgC/yr","HL",0.908663153309851 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2095,"Simulated","PgC/yr","HL",0.921872358151295 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2096,"Simulated","PgC/yr","HL",0.773663639884504 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2097,"Simulated","PgC/yr","HL",0.907363457558575 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2098,"Simulated","PgC/yr","HL",0.897305623439351 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2099,"Simulated","PgC/yr","HL",1.01066561110121 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2100,"Simulated","PgC/yr","HL",0.793986449260891 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2101,"Simulated","PgC/yr","HL",0.774081836906621 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp45",2102,"Simulated","PgC/yr","HL",0.85070465441924 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2006,"Simulated","PgC/yr","LL",1.96710066771351 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2007,"Simulated","PgC/yr","LL",2.00465549378989 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2008,"Simulated","PgC/yr","LL",1.97706781156923 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2009,"Simulated","PgC/yr","LL",1.89733744307079 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2010,"Simulated","PgC/yr","LL",1.95222407329719 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2011,"Simulated","PgC/yr","LL",2.03511114002464 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2012,"Simulated","PgC/yr","LL",2.14424395310806 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2013,"Simulated","PgC/yr","LL",1.99309159159119 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2014,"Simulated","PgC/yr","LL",2.16102541821753 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2015,"Simulated","PgC/yr","LL",2.16985797225552 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2016,"Simulated","PgC/yr","LL",2.01596941804412 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2017,"Simulated","PgC/yr","LL",2.09566975043295 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2018,"Simulated","PgC/yr","LL",2.24860683820454 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2019,"Simulated","PgC/yr","LL",2.25841023681756 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2020,"Simulated","PgC/yr","LL",2.11175554048765 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2021,"Simulated","PgC/yr","LL",2.15500850722851 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2022,"Simulated","PgC/yr","LL",2.20780714338384 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2023,"Simulated","PgC/yr","LL",2.17549894742107 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2024,"Simulated","PgC/yr","LL",2.22150845389844 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2025,"Simulated","PgC/yr","LL",2.24768056334053 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2026,"Simulated","PgC/yr","LL",2.28906935347223 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2027,"Simulated","PgC/yr","LL",2.34326321536414 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2028,"Simulated","PgC/yr","LL",2.28439244053439 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2029,"Simulated","PgC/yr","LL",2.3216546567688 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2030,"Simulated","PgC/yr","LL",2.3573356171684 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2031,"Simulated","PgC/yr","LL",2.37205524868936 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2032,"Simulated","PgC/yr","LL",2.4002552799833 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2033,"Simulated","PgC/yr","LL",2.38271128525252 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2034,"Simulated","PgC/yr","LL",2.44061315332075 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2035,"Simulated","PgC/yr","LL",2.49167841527972 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2036,"Simulated","PgC/yr","LL",2.51592530698668 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2037,"Simulated","PgC/yr","LL",2.39067763664571 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2038,"Simulated","PgC/yr","LL",2.3812492049494 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2039,"Simulated","PgC/yr","LL",2.54396934429201 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2040,"Simulated","PgC/yr","LL",2.48863217242152 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2041,"Simulated","PgC/yr","LL",2.39889881051718 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2042,"Simulated","PgC/yr","LL",2.53217193556379 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2043,"Simulated","PgC/yr","LL",2.56304711842627 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2044,"Simulated","PgC/yr","LL",2.41237049012931 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2045,"Simulated","PgC/yr","LL",2.39737859580836 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2046,"Simulated","PgC/yr","LL",2.34437552032636 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2047,"Simulated","PgC/yr","LL",2.42426285172016 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2048,"Simulated","PgC/yr","LL",2.47098159794697 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2049,"Simulated","PgC/yr","LL",2.48221607184675 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2050,"Simulated","PgC/yr","LL",2.44738193595671 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2051,"Simulated","PgC/yr","LL",2.41467067478115 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2052,"Simulated","PgC/yr","LL",2.45040201833236 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2053,"Simulated","PgC/yr","LL",2.38861483415044 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2054,"Simulated","PgC/yr","LL",2.48364036478618 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2055,"Simulated","PgC/yr","LL",2.41367463863031 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2056,"Simulated","PgC/yr","LL",2.39077743404215 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2057,"Simulated","PgC/yr","LL",2.43944174504608 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2058,"Simulated","PgC/yr","LL",2.27145269073434 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2059,"Simulated","PgC/yr","LL",2.35517689290374 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2060,"Simulated","PgC/yr","LL",2.45332617893861 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2061,"Simulated","PgC/yr","LL",2.34346862359758 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2062,"Simulated","PgC/yr","LL",2.32052394257811 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2063,"Simulated","PgC/yr","LL",2.26614889512179 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2064,"Simulated","PgC/yr","LL",2.23986245468185 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2065,"Simulated","PgC/yr","LL",2.32458850644267 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2066,"Simulated","PgC/yr","LL",2.10371942780763 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2067,"Simulated","PgC/yr","LL",2.13060852825324 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2068,"Simulated","PgC/yr","LL",2.10472515302609 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2069,"Simulated","PgC/yr","LL",2.0901043499948 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2070,"Simulated","PgC/yr","LL",2.04565090777642 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2071,"Simulated","PgC/yr","LL",1.97312823667691 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2072,"Simulated","PgC/yr","LL",2.09610382066211 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2073,"Simulated","PgC/yr","LL",2.05471115490336 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2074,"Simulated","PgC/yr","LL",1.96552522531929 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2075,"Simulated","PgC/yr","LL",1.84893958142628 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2076,"Simulated","PgC/yr","LL",1.88361384770067 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2077,"Simulated","PgC/yr","LL",1.7780223888306 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2078,"Simulated","PgC/yr","LL",1.66723371409175 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2079,"Simulated","PgC/yr","LL",1.67335429810425 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2080,"Simulated","PgC/yr","LL",1.72776228839045 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2081,"Simulated","PgC/yr","LL",1.57908742146278 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2082,"Simulated","PgC/yr","LL",1.57651400510419 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2083,"Simulated","PgC/yr","LL",1.66536469294878 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2084,"Simulated","PgC/yr","LL",1.59673993375085 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2085,"Simulated","PgC/yr","LL",1.5848776082696 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2086,"Simulated","PgC/yr","LL",1.53508839651555 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2087,"Simulated","PgC/yr","LL",1.62821196317843 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2088,"Simulated","PgC/yr","LL",1.55459636525192 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2089,"Simulated","PgC/yr","LL",1.62474037025191 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2090,"Simulated","PgC/yr","LL",1.57182158965816 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2091,"Simulated","PgC/yr","LL",1.49574981309121 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2092,"Simulated","PgC/yr","LL",1.60800928829405 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2093,"Simulated","PgC/yr","LL",1.66012290736898 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2094,"Simulated","PgC/yr","LL",1.58879296049289 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2095,"Simulated","PgC/yr","LL",1.6015776852111 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2096,"Simulated","PgC/yr","LL",1.55321470421 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2097,"Simulated","PgC/yr","LL",1.67232919475056 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2098,"Simulated","PgC/yr","LL",1.56435616306068 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2099,"Simulated","PgC/yr","LL",1.66387935888338 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2100,"Simulated","PgC/yr","LL",1.50504356674768 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2101,"Simulated","PgC/yr","LL",1.5160203114489 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp45",2102,"Simulated","PgC/yr","LL",1.44339881185971 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp45/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp45/summary.csv deleted file mode 100644 index 8d780b946..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp45/summary.csv +++ /dev/null @@ -1,889 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,valuemean,value,model -2005,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.009831095,4.594013876,4.607917144,4.60096551,4.60096551,CMIP5 -2005,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.10114963,1.64770411,1.790751289,1.719227699,1.719227699,CMIP5 -2005,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.091317954,2.81716632,2.946309408,2.881737864,2.881737864,CMIP5 -2006,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.582597526,1.115717979,12.04839938,3.87086367,3.397751289,CMIP5 -2006,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.751954601,-0.443188241,7.324135065,1.148267923,0.786702869,CMIP5 -2006,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.694080543,1.225282434,7.804068456,2.761248131,2.173014321,CMIP5 -2007,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.801949455,1.257507216,13.25071174,3.950896517,3.528088508,CMIP5 -2007,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.812598991,-0.500753069,7.537547691,1.163668804,0.753399283,CMIP5 -2007,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.743857002,1.339022155,7.426429804,2.788139219,2.095850236,CMIP5 -2008,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.737206195,1.199104271,12.6908699,3.834057152,3.348832621,CMIP5 -2008,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.68844467,-0.652876592,7.00327163,1.121473726,0.762169488,CMIP5 -2008,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.829970912,1.300896964,7.967795279,2.789072062,1.987847619,CMIP5 -2009,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,5.903476705,-17.02022657,12.44681761,2.737511534,3.5992859,CMIP5 -2009,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.992795253,-2.542135443,7.45757811,1.012888014,0.783421783,CMIP5 -2009,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.831628311,1.130507854,8.299433506,2.81150239,2.128978319,CMIP5 -2010,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.393315033,1.371033736,13.42718712,4.652076939,3.997553856,CMIP5 -2010,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.820205107,-0.487676104,7.770068093,1.314008536,0.868929146,CMIP5 -2010,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.838971237,1.266503691,8.032663584,2.909398063,2.258415108,CMIP5 -2011,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.983620248,1.309808733,14.2070045,4.197037751,3.973879639,CMIP5 -2011,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.991696844,-0.623134252,8.405547427,1.297041645,0.874897899,CMIP5 -2011,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.796791843,1.283448472,7.704914656,2.875168298,2.126717203,CMIP5 -2012,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.1217471,1.376522142,14.56179291,4.241167765,3.592296187,CMIP5 -2012,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.055461017,-0.375335528,8.720582283,1.317667054,0.893414189,CMIP5 -2012,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.899891282,1.361419656,8.299139362,2.937036152,2.16494326,CMIP5 -2013,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.855312726,1.428460607,13.64349056,4.204044411,3.734940915,CMIP5 -2013,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.921586539,-0.277237803,8.166204842,1.297051743,0.936270217,CMIP5 -2013,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.716526665,1.442658361,7.720589624,2.899166419,2.359004783,CMIP5 -2014,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.828125977,1.313953187,13.22899128,4.247944663,3.740655222,CMIP5 -2014,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.810275821,-0.301440087,7.732141281,1.291117988,0.91729282,CMIP5 -2014,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.851534369,1.242102037,8.331338162,2.994993027,2.443176596,CMIP5 -2015,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.963126546,1.636151412,13.71281068,4.339822182,3.682113293,CMIP5 -2015,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.762147978,-0.139512415,7.564825102,1.291983208,0.931935227,CMIP5 -2015,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.995396488,1.528049973,8.755563061,3.073632728,2.346266733,CMIP5 -2016,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.079946148,1.23656055,14.43770341,4.307891824,3.939450557,CMIP5 -2016,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.011872421,-0.364338413,8.562435006,1.343744534,0.937435157,CMIP5 -2016,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.840156481,1.225171487,8.004037182,3.022566492,2.365537538,CMIP5 -2017,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.902979054,1.615378471,13.872323,4.374329412,3.854485298,CMIP5 -2017,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.953081077,-0.52280961,8.323672731,1.357751628,0.994462781,CMIP5 -2017,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.806008616,1.459884398,8.154965427,3.048926496,2.59447943,CMIP5 -2018,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.890938926,1.472903827,13.69025463,4.327202081,3.958908236,CMIP5 -2018,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.809660454,-0.458633008,7.696416817,1.293940986,0.972409633,CMIP5 -2018,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.860447926,1.43603978,8.231146798,3.087029262,2.533605688,CMIP5 -2019,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.170243568,1.573588249,14.96112357,4.466468399,4.130473066,CMIP5 -2019,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.890705018,-0.327497479,8.083577157,1.347653246,1.037615918,CMIP5 -2019,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.007012317,1.424899177,8.349026811,3.14280488,2.476016319,CMIP5 -2020,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.22388284,1.817352455,15.10350635,4.521976399,3.993734486,CMIP5 -2020,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.94203962,-0.150888039,8.329722111,1.36935301,0.995707009,CMIP5 -2020,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.034493956,1.549962476,8.627520576,3.1923826,2.442918005,CMIP5 -2021,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.463693716,1.517815138,16.06557298,4.572472679,4.068382862,CMIP5 -2021,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.058819768,-0.131106567,8.810802124,1.414290889,1.078525597,CMIP5 -2021,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.139450048,1.496513854,8.845902975,3.220867046,2.387802133,CMIP5 -2022,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,6.980527496,-20.75534823,14.0857387,2.936639095,4.080709905,CMIP5 -2022,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.121542309,-3.100011986,7.78610164,1.126567818,1.038901473,CMIP5 -2022,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.922302473,1.469130051,8.364655125,3.114671185,2.446580488,CMIP5 -2023,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,4.085088443,1.5552193,15.45862678,5.274105877,4.176716554,CMIP5 -2023,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.016729675,-0.413510027,8.588591428,1.495365198,1.047905207,CMIP5 -2023,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.889866855,1.554508458,8.428838042,3.161477033,2.476785926,CMIP5 -2024,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.092653138,1.60634496,14.81443639,4.701423315,4.410668472,CMIP5 -2024,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.036401815,-0.290293156,8.766220144,1.455059627,1.051665282,CMIP5 -2024,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.881972498,1.472667955,8.357938176,3.182715372,2.564421046,CMIP5 -2025,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.071611404,1.627780467,14.62881277,4.575802674,4.010448304,CMIP5 -2025,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.003369298,-0.242400695,8.601955548,1.454175321,1.070310492,CMIP5 -2025,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.865448159,1.49767046,8.306478546,3.140245581,2.552685883,CMIP5 -2026,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.979692364,1.727533694,14.22543224,4.640513083,4.383988044,CMIP5 -2026,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.905176432,-0.275138131,8.18720358,1.404489702,1.023629532,CMIP5 -2026,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.929476063,1.608754052,8.628698669,3.215835673,2.607999474,CMIP5 -2027,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.186471669,1.499842056,15.0360847,4.641704291,4.306867821,CMIP5 -2027,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.868465376,-0.284233246,8.062717127,1.423149704,1.105304332,CMIP5 -2027,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.073962668,1.392057771,8.773511528,3.263585277,2.584383273,CMIP5 -2028,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.185929714,1.727033432,15.15899126,4.677688652,4.042258355,CMIP5 -2028,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.956751575,-0.261946002,8.394971627,1.415515737,1.064019414,CMIP5 -2028,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.980553177,1.601261057,8.581448654,3.295916934,2.808310633,CMIP5 -2029,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.304072716,1.827849916,15.55425443,4.814896333,4.471278922,CMIP5 -2029,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.95345773,-0.241489714,8.388944893,1.446475884,1.060614488,CMIP5 -2029,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.159258716,1.528263504,9.116252122,3.410089104,2.732654995,CMIP5 -2030,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.23250307,2.00951905,15.28442539,4.795716207,4.383395766,CMIP5 -2030,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.922970963,-0.235219948,8.296307565,1.436348486,1.064517957,CMIP5 -2030,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.09396177,1.676972673,9.044118786,3.42064621,2.769278056,CMIP5 -2031,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.242564739,1.959687476,15.72644463,4.864524318,4.297213756,CMIP5 -2031,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.081208614,-0.352722096,8.95232422,1.499074303,1.085952087,CMIP5 -2031,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.953942655,1.635538052,8.508491866,3.359274642,2.697870508,CMIP5 -2032,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.258587064,1.713590697,15.45051836,4.835397278,4.312749035,CMIP5 -2032,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.015392673,-0.266025541,8.695679897,1.487786447,1.107067523,CMIP5 -2032,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.077215875,1.478047941,9.123970033,3.390050896,2.621186281,CMIP5 -2033,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.650977789,-2.125169655,15.32970877,4.52318736,4.638173059,CMIP5 -2033,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.121225693,-0.317414641,8.968442691,1.452867335,1.064137937,CMIP5 -2033,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.003883409,1.694873352,8.969113611,3.403491515,2.723256856,CMIP5 -2034,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.438164944,1.891114573,16.14207243,5.233371729,4.76635582,CMIP5 -2034,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.906138781,-0.203363831,8.303528889,1.51191411,1.132747421,CMIP5 -2034,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.212303083,1.600873157,9.140113242,3.543582896,2.768430696,CMIP5 -2035,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.394611603,1.702649274,16.22756805,5.067597889,4.737533937,CMIP5 -2035,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.936122393,-0.243703803,8.383707947,1.506856493,1.124565728,CMIP5 -2035,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.22721751,1.46922624,9.230589512,3.535973706,2.77122904,CMIP5 -2036,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.505473745,1.997546539,16.83925952,5.031087739,4.349136934,CMIP5 -2036,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.063486236,-0.224335744,8.930999942,1.528768666,1.125590352,CMIP5 -2036,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.168729975,1.708569058,8.914487051,3.496868023,2.723351495,CMIP5 -2037,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.289164984,1.943941284,15.60356688,4.91154024,4.426709761,CMIP5 -2037,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.074691219,-0.333339866,8.90520586,1.509257251,1.105394572,CMIP5 -2037,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.1038926,1.636873343,9.279391606,3.438723048,2.636235655,CMIP5 -2038,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.199715873,1.764818501,15.25408333,4.955229679,4.547247721,CMIP5 -2038,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.817710171,-0.25910746,7.856197454,1.483710419,1.13056705,CMIP5 -2038,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.13757376,1.539433537,8.968374553,3.512666679,2.835983868,CMIP5 -2039,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.477273933,1.867951312,16.58554194,5.055361303,4.425255286,CMIP5 -2039,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.238669234,-0.165089905,9.655688529,1.597464616,1.120257881,CMIP5 -2039,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.073511888,1.727186207,9.018883288,3.474749126,2.621664231,CMIP5 -2040,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.269088785,2.174915993,15.75848187,5.122088091,4.642998137,CMIP5 -2040,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.938736719,-0.083613006,8.503883119,1.561524341,1.108335329,CMIP5 -2040,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.114220225,1.649551851,9.067204624,3.549106004,2.837899308,CMIP5 -2041,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.185666783,2.00491696,15.20014633,5.043674759,4.508416306,CMIP5 -2041,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.811633824,-0.047178272,7.93777775,1.511380199,1.084980367,CMIP5 -2041,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.147366843,1.656561213,9.281780221,3.556867661,2.818561856,CMIP5 -2042,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.566234026,1.978528537,16.90212065,5.172022903,4.599819918,CMIP5 -2042,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.953719281,0.058879528,8.55900693,1.551213407,1.124112588,CMIP5 -2042,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.297562977,1.66873371,9.293763124,3.647147943,2.831905385,CMIP5 -2043,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.793168546,1.812891919,17.84583798,5.261632257,4.564317387,CMIP5 -2043,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.144720834,-0.09720835,9.282982159,1.589506437,1.086722867,CMIP5 -2043,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.41308914,1.641906253,9.711467739,3.684816429,2.806445401,CMIP5 -2044,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.441290397,1.863522947,16.25468462,5.098228736,4.495498932,CMIP5 -2044,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.048526243,-0.032888946,8.895946373,1.58262616,1.126802981,CMIP5 -2044,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.206519316,1.570287748,9.425227046,3.53190224,2.810371808,CMIP5 -2045,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.409304527,2.083554623,16.14993208,5.173838541,4.559819188,CMIP5 -2045,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.018842704,0.068545558,8.825049448,1.597904458,1.161054825,CMIP5 -2045,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.191525606,1.726771708,9.487549897,3.58424892,2.983999221,CMIP5 -2046,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.680474348,2.021462606,17.41954443,5.20171873,4.565401919,CMIP5 -2046,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.219772594,0.039739992,9.673992362,1.656116999,1.152684511,CMIP5 -2046,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.238866428,1.660804002,9.354806041,3.563696196,2.876895452,CMIP5 -2047,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.435119961,2.035220618,16.51330046,5.150385965,4.679216983,CMIP5 -2047,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.000071658,0.067291537,8.766256944,1.602086015,1.156158138,CMIP5 -2047,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.1619609,1.590967026,8.883335298,3.53818961,2.775917446,CMIP5 -2048,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.575180786,2.101121704,16.98177356,5.159717868,4.51275119,CMIP5 -2048,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.150460165,0.065675534,9.360907916,1.622232465,1.130148486,CMIP5 -2048,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.193802686,1.705479749,9.265478278,3.556520566,2.822961901,CMIP5 -2049,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.67687026,2.01104879,17.32908651,5.190101123,4.575502447,CMIP5 -2049,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.224216808,0.273711221,9.708236328,1.641376422,1.150809434,CMIP5 -2049,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.218026568,1.638179925,9.146563356,3.57369453,2.797742615,CMIP5 -2050,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.335358924,2.133085396,15.92509828,5.085077728,4.504156488,CMIP5 -2050,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.888049306,0.149912028,8.273573558,1.556765276,1.163276466,CMIP5 -2050,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.155927309,1.783571302,9.075622905,3.578972575,2.739619361,CMIP5 -2051,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.314831392,2.005155027,16.01039541,5.179947526,4.704436869,CMIP5 -2051,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.947628555,0.042606367,8.543763171,1.578478941,1.173331605,CMIP5 -2051,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.120756415,1.718977216,8.95270281,3.589446141,2.80319302,CMIP5 -2052,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.638410825,1.92122842,17.30393886,5.21314823,4.584872933,CMIP5 -2052,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.06632702,0.154786351,8.998587684,1.612713631,1.175119533,CMIP5 -2052,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.264118325,1.690298294,9.071505839,3.649727728,2.690077233,CMIP5 -2053,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.594118719,1.890496886,17.17981734,5.224564116,4.658855064,CMIP5 -2053,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.113286191,0.05089614,9.241092253,1.64135913,1.208583873,CMIP5 -2053,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.222699035,1.547156313,8.969546198,3.577383958,2.896620346,CMIP5 -2054,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.313921744,1.928084102,15.86070364,5.086636163,4.715498501,CMIP5 -2054,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.92058788,-0.039086097,8.386671776,1.565040742,1.223555015,CMIP5 -2054,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.153410636,1.671637822,9.038610652,3.546356258,2.86325411,CMIP5 -2055,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.378572028,1.983378345,16.22369426,5.05192914,4.503914326,CMIP5 -2055,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.885857375,-0.118756764,8.230588139,1.563665141,1.193028324,CMIP5 -2055,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.202023195,1.6644147,8.92877171,3.531986496,2.630012143,CMIP5 -2056,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.692707362,1.794214931,17.04130515,5.077812016,4.48315248,CMIP5 -2056,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.286520034,0.023813766,9.588576358,1.628263042,1.101225255,CMIP5 -2056,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.183181355,1.593803938,8.764255762,3.458205123,2.649941543,CMIP5 -2057,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.605740494,1.977074399,16.81382373,5.105675405,4.573006629,CMIP5 -2057,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.276980142,0.035138139,9.602399065,1.649660939,1.113649846,CMIP5 -2057,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.114862127,1.647655182,8.54371024,3.433282559,2.630231,CMIP5 -2058,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,8.903993249,-26.88366142,15.81093338,2.861804567,4.390834924,CMIP5 -2058,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.617157709,-4.015334828,9.144859832,1.278868571,1.122254623,CMIP5 -2058,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.06689742,1.538773853,8.660736078,3.337420326,2.579368463,CMIP5 -2059,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,5.567680123,1.756204663,22.20918751,6.202331175,4.666709931,CMIP5 -2059,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.063340058,0.082879712,8.630365273,1.779310285,1.217141917,CMIP5 -2059,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.137276168,1.493833448,8.626798587,3.39689203,2.581015313,CMIP5 -2060,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.467155899,2.026558524,15.88058005,5.208556546,4.656452488,CMIP5 -2060,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.087426158,-0.012652739,8.869005825,1.643358235,1.194234894,CMIP5 -2060,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.135643808,1.647868243,8.684336621,3.372804512,2.571190866,CMIP5 -2061,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.428262996,1.837288945,15.80330424,5.015222463,4.73020355,CMIP5 -2061,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.108961146,0.097493259,8.952386497,1.637193981,1.155828257,CMIP5 -2061,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.141028069,1.529544536,8.880744708,3.335166536,2.578411687,CMIP5 -2062,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.362029295,1.710344624,15.56516669,4.893891728,4.387525016,CMIP5 -2062,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.938804372,0.000370455,8.169196978,1.548256978,1.14632198,CMIP5 -2062,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.167628174,1.59365109,8.553338853,3.328118154,2.474732977,CMIP5 -2063,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.525712915,1.932489947,16.44213148,5.0160044,4.541478148,CMIP5 -2063,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.100813532,-0.022876983,8.859851077,1.622311646,1.202729019,CMIP5 -2063,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.156287646,1.635264858,8.274141304,3.342453516,2.439720124,CMIP5 -2064,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.614897005,1.646008667,16.7621838,4.940772878,4.541805518,CMIP5 -2064,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.152846384,-0.155372689,9.034343287,1.607427804,1.1423589,CMIP5 -2064,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.182125587,1.430566241,8.168629937,3.303128069,2.482528835,CMIP5 -2065,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.381284741,1.827504076,15.87991735,4.800545319,4.088076402,CMIP5 -2065,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.189016957,-0.141573269,9.200326167,1.615095458,1.176408838,CMIP5 -2065,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.976088254,1.448147712,7.919203695,3.178080255,2.462581606,CMIP5 -2066,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.353214092,1.816154078,15.58102043,4.763516731,4.018724327,CMIP5 -2066,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.065825219,-0.056946343,8.681078725,1.583927117,1.10031965,CMIP5 -2066,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.062645015,1.404915456,8.060696578,3.172154061,2.397345357,CMIP5 -2067,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.571081627,1.871659042,16.41149329,4.751580174,4.1554858,CMIP5 -2067,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.155196495,0.000367044,9.090842857,1.59556306,1.134136646,CMIP5 -2067,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.146349986,1.220793763,8.160607831,3.121496219,2.327590652,CMIP5 -2068,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.399871035,1.727285975,15.24892894,4.713804141,4.12607053,CMIP5 -2068,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.584609248,-4.690956201,8.529037445,1.224035304,1.145713192,CMIP5 -2068,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.0158014,1.409412606,7.932157215,3.074761236,2.209847914,CMIP5 -2069,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,6.35278511,1.713629303,25.72923758,6.072571548,4.203682257,CMIP5 -2069,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.259246312,-0.089304541,9.255515085,1.817405799,1.150610971,CMIP5 -2069,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.929703333,1.436656894,7.910010323,3.003958625,2.246041834,CMIP5 -2070,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,4.107291451,-4.221224035,15.79819788,4.061219458,3.678840157,CMIP5 -2070,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.143474087,-0.630480634,8.791060253,1.49941829,1.127301036,CMIP5 -2070,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,2.020487628,1.324921398,7.604919957,3.008781802,2.159851796,CMIP5 -2071,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.653562312,1.676526263,14.66474302,5.05617553,4.058899378,CMIP5 -2071,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.103562304,-0.072599885,8.895114123,1.646104649,1.20073548,CMIP5 -2071,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.865059823,1.345574931,7.753879847,2.945035135,2.310204519,CMIP5 -2072,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.172837617,1.322794797,14.77279469,4.524792929,4.037461863,CMIP5 -2072,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.002420464,-0.153411222,8.3765121,1.509155998,1.10228044,CMIP5 -2072,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.890044013,1.145797528,7.31701738,2.939636208,2.281557832,CMIP5 -2073,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.227978529,1.358719245,15.00511515,4.517492554,4.129118427,CMIP5 -2073,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.286347258,-0.12527274,9.565822535,1.612809116,1.081343139,CMIP5 -2073,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.74866499,1.13477284,7.135501584,2.803637341,2.101575838,CMIP5 -2074,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.16608977,1.332114471,14.77537669,4.353173267,3.872362504,CMIP5 -2074,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.141526868,-0.280974603,8.910824961,1.536881812,1.065099229,CMIP5 -2074,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.754080066,1.081282632,6.919745429,2.729560472,1.984503779,CMIP5 -2075,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,8.332835172,-25.49310019,14.88484182,2.302516486,3.77184348,CMIP5 -2075,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.416339676,-3.80764106,8.317835659,1.179843268,1.096045049,CMIP5 -2075,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.874703784,1.034710378,6.681073171,2.75905522,1.958002354,CMIP5 -2076,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,5.530168743,1.310072215,21.97550472,5.432495832,3.841358094,CMIP5 -2076,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.272946967,-0.362556545,9.284550412,1.700236121,1.19268482,CMIP5 -2076,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.708338007,1.214872634,6.946462267,2.671980849,1.921636191,CMIP5 -2077,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.005919717,1.267860872,13.65016085,4.37766065,3.79020024,CMIP5 -2077,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.927730472,-0.190000182,8.125339678,1.510719085,1.047578434,CMIP5 -2077,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.728652437,1.103672491,6.755333977,2.656905871,1.947310716,CMIP5 -2078,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.711763179,1.454353111,12.61131624,4.152922447,3.732481367,CMIP5 -2078,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.900836771,-0.155526601,7.987022027,1.470251362,1.113686655,CMIP5 -2078,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.633412143,1.077776009,6.742768856,2.568952802,2.023832959,CMIP5 -2079,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.813757248,1.228914422,13.11565555,4.067050259,3.74330152,CMIP5 -2079,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.821826774,-0.257555831,7.672134372,1.440529124,1.071361731,CMIP5 -2079,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.692957902,0.961550216,6.559121797,2.551680885,1.909519266,CMIP5 -2080,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.014421125,1.0596653,13.96298742,4.009992304,3.679853179,CMIP5 -2080,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.144340048,-0.127276363,8.929859137,1.494361896,1.056397017,CMIP5 -2080,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.600478598,0.979849019,6.288894594,2.460856405,1.824427789,CMIP5 -2081,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.638207947,1.035693256,12.30511034,3.862014214,3.553216554,CMIP5 -2081,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.927115052,-0.245149623,8.00286025,1.409344347,1.069447538,CMIP5 -2081,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.552218505,0.906059676,6.139487135,2.384073691,1.690689888,CMIP5 -2082,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.146954906,-2.48677988,12.56147554,3.382091326,3.295508616,CMIP5 -2082,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.03493355,-0.371424625,8.245047771,1.368512206,1.099882004,CMIP5 -2082,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.558851317,0.981838283,6.289647116,2.316112064,1.636163834,CMIP5 -2083,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.874863804,1.242491471,12.82713625,4.038860842,3.45604148,CMIP5 -2083,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.925349156,-0.390414944,8.010741146,1.414998689,1.070777346,CMIP5 -2083,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.576980473,0.980718803,6.188359967,2.379766952,1.637391082,CMIP5 -2084,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.958441526,1.024165512,13.66458674,3.860098074,3.473564069,CMIP5 -2084,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.053026694,-0.426884829,8.49099174,1.42648943,1.03523972,CMIP5 -2084,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.624456376,0.794220673,6.070609105,2.361332045,1.635462559,CMIP5 -2085,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.63085771,1.054555389,12.321209,3.721272366,3.436917957,CMIP5 -2085,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.027650283,-0.363973716,8.387767288,1.409715709,1.082105297,CMIP5 -2085,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.48047977,0.843529433,6.103902931,2.275554899,1.606283923,CMIP5 -2086,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.665315837,1.067645848,12.49511679,3.782954597,3.357898986,CMIP5 -2086,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.93522829,-0.473351162,8.010460899,1.405587295,1.100482267,CMIP5 -2086,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.52428088,0.893553944,6.07311606,2.280027453,1.609815664,CMIP5 -2087,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.853213037,1.085016846,13.29230221,3.760802048,3.329665356,CMIP5 -2087,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.983172569,-0.244660518,8.214226221,1.394183921,1.066658099,CMIP5 -2087,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.555807431,0.943177888,5.704157782,2.339828471,1.715501029,CMIP5 -2088,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.860242327,1.106512352,13.36574585,3.674305315,3.242122227,CMIP5 -2088,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.017615913,-0.468214916,8.314914292,1.369391487,0.994455758,CMIP5 -2088,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.486874488,0.961531505,5.521626421,2.266315841,1.606283314,CMIP5 -2089,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.765672454,1.147546712,12.92423565,3.609325079,3.175199133,CMIP5 -2089,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.062278424,-0.536408626,8.481709607,1.3903839,1.045691748,CMIP5 -2089,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.445151122,0.996064672,5.61655278,2.192292314,1.585067844,CMIP5 -2090,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.69156403,1.024126906,12.47104163,3.607089546,3.311145094,CMIP5 -2090,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.879145412,-0.397542171,7.769773691,1.346754927,1.03833035,CMIP5 -2090,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.556006024,0.775452257,5.844793077,2.209977373,1.584920762,CMIP5 -2091,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.781395727,0.903462081,12.84389442,3.665407136,3.375948473,CMIP5 -2091,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.976369283,-0.460716846,8.087800683,1.349697374,1.045617995,CMIP5 -2091,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.57647085,0.828043429,6.162580749,2.280957925,1.588732175,CMIP5 -2092,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.751854009,1.204842325,12.8324219,3.655626787,3.433112189,CMIP5 -2092,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.910472587,-0.481338779,7.864384075,1.35489392,1.053727477,CMIP5 -2092,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.545347174,0.925836632,5.899518064,2.263599766,1.602718912,CMIP5 -2093,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.865945258,0.833999965,13.14999467,3.657044657,3.147513976,CMIP5 -2093,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.119300216,-0.281627104,8.758523249,1.415781127,1.068825397,CMIP5 -2093,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.549238401,0.701633663,6.032905775,2.200575587,1.670798738,CMIP5 -2094,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.65548516,0.801902924,12.35500706,3.590490213,3.31735981,CMIP5 -2094,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.96569783,-0.483133508,8.076774789,1.363589533,1.051667899,CMIP5 -2094,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.475790031,0.663320602,5.951280561,2.191857921,1.653142249,CMIP5 -2095,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.476973324,1.016414988,11.60842749,3.48770361,3.004174402,CMIP5 -2095,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.867785941,-0.485313544,7.678823509,1.328602926,0.985511401,CMIP5 -2095,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.418182485,0.827367472,5.768443678,2.137948429,1.573350342,CMIP5 -2096,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.821603613,0.976652677,13.15441272,3.555841652,3.189373599,CMIP5 -2096,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.071493369,-0.64279611,8.447111794,1.367769697,1.077586522,CMIP5 -2096,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.432167989,0.841049606,5.466449124,2.158282226,1.675108993,CMIP5 -2097,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,3.137209609,-2.918527207,12.4239334,3.113935378,2.82838373,CMIP5 -2097,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.984063499,-0.435910264,8.004275641,1.283891783,0.988850536,CMIP5 -2097,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.424425678,0.808467159,5.482041405,2.145401231,1.679701642,CMIP5 -2098,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.864097505,1.095773768,12.78097886,3.81591844,3.192877521,CMIP5 -2098,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.202859748,-0.264910287,9.137545092,1.461349735,0.976641275,CMIP5 -2098,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.407376721,0.904635028,5.858731818,2.133967116,1.629284738,CMIP5 -2099,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,2.657074656,1.179728525,12.6587174,3.740317508,3.229251538,CMIP5 -2099,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.954574566,-0.442511888,8.067829519,1.40502308,1.156865052,CMIP5 -2099,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.433871842,0.927579487,5.892709894,2.279603062,1.76771793,CMIP5 -2100,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,8.986746578,-29.73173807,12.41757205,1.290094423,3.076921847,CMIP5 -2100,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,2.493888178,-4.44072262,8.225571994,1.018217869,1.011962714,CMIP5 -2100,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.381832843,0.803827982,5.455225762,2.105365645,1.535607236,CMIP5 -2101,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.221649725,2.033326728,5.384990493,3.38650207,3.379644062,CMIP5 -2101,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.754763505,-0.44974701,1.729628585,0.944929781,1.135877295,CMIP5 -2101,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.769245907,1.011921107,5.834737566,2.443613072,1.988063908,CMIP5 -2102,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.073796506,2.033471205,4.990574387,3.267181283,3.287503774,CMIP5 -2102,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.670436996,-0.324516247,1.613359771,0.941706226,1.114592368,CMIP5 -2102,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.569548677,0.987681988,5.315090947,2.327323525,1.900902845,CMIP5 -2103,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.021590443,2.105187653,4.983808397,3.558349059,3.529733659,CMIP5 -2103,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.828086664,-0.357840154,1.838846276,1.020652697,1.145083462,CMIP5 -2103,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.65704134,1.043735251,5.341648291,2.54022139,2.290307903,CMIP5 -2104,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.008432874,2.142465989,4.980366355,3.609312386,3.682474415,CMIP5 -2104,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.899928077,-0.595350047,1.745451572,0.935284554,1.220251649,CMIP5 -2104,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.705102985,1.168641059,5.575716467,2.67635294,2.412300699,CMIP5 -2105,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.087951486,2.127393437,5.098130566,3.572568294,3.747906496,CMIP5 -2105,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.945200321,-0.647184331,1.801324687,0.961732984,1.334334282,CMIP5 -2105,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.854525501,1.144157492,5.745315263,2.61341552,2.413571894,CMIP5 -2106,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.213339281,2.071810179,5.323665423,3.570870003,3.632680607,CMIP5 -2106,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.811991092,-0.41134832,1.672345741,0.981021023,1.176510138,CMIP5 -2106,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.886823357,1.00336925,5.73501359,2.592231183,2.456170861,CMIP5 -2107,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.977237133,2.006970116,4.521628779,3.417724686,3.520363051,CMIP5 -2107,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.886100349,-0.483145202,1.836800764,1.00418106,1.204802451,CMIP5 -2107,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.609801988,0.990169959,5.004774359,2.416233175,2.315560522,CMIP5 -2108,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.06522339,2.088108486,4.946436692,3.505820693,3.71999546,CMIP5 -2108,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.860272999,-0.544017355,1.624585037,0.947405654,1.225730303,CMIP5 -2108,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.761209771,1.040514899,5.490453617,2.560684349,2.439774737,CMIP5 -2109,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.059032072,1.732460488,4.667002865,3.305033498,3.491713734,CMIP5 -2109,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.858499501,-0.552884626,1.721333971,0.882209453,1.049624392,CMIP5 -2109,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.699630044,0.815700193,5.219887703,2.425248876,2.288888276,CMIP5 -2110,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.928980686,1.905742655,4.396921991,3.328472213,3.357794509,CMIP5 -2110,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.938056232,-0.679347368,1.746161666,0.91058325,1.047066583,CMIP5 -2110,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.613415674,0.891430457,5.076269246,2.420336029,2.310728207,CMIP5 -2111,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.888055081,1.747543359,4.029430025,3.139774882,3.523415024,CMIP5 -2111,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.997724869,-0.789429485,1.781704624,0.913774963,1.156654016,CMIP5 -2111,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.602439078,0.753389997,4.818859206,2.228629537,2.141228009,CMIP5 -2112,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.976059496,1.813270919,4.453171734,3.40161998,3.514682303,CMIP5 -2112,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.902965766,-0.544867524,1.83179295,0.963434715,1.120515311,CMIP5 -2112,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.571657634,0.82184495,4.998039488,2.440714045,2.394166515,CMIP5 -2113,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.999393519,1.954294731,4.691576232,3.399256742,3.609254859,CMIP5 -2113,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.869430306,-0.510852211,1.729441704,0.956082428,1.198035236,CMIP5 -2113,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.65147217,1.010237016,5.202428717,2.445618688,2.260205208,CMIP5 -2114,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.241907719,1.894934449,5.286591742,3.364062389,3.281109048,CMIP5 -2114,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.709526742,-0.208895456,1.648611811,0.975789631,1.047054445,CMIP5 -2114,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.835108275,0.865282606,5.495487347,2.390632166,2.162280104,CMIP5 -2115,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.171402333,1.855269961,5.057112379,3.360560559,3.283073679,CMIP5 -2115,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.822105781,-0.458146692,1.650615487,0.94253321,1.078077396,CMIP5 -2115,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.848970505,0.777192682,5.515259088,2.420368542,2.244524606,CMIP5 -2116,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.402856632,1.695247511,5.596805642,3.464838986,3.248919689,CMIP5 -2116,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.724794907,-0.218944339,1.688125516,0.982891905,1.11213788,CMIP5 -2116,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.963614401,0.722798195,5.815750019,2.48428386,2.136782634,CMIP5 -2117,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.8601637,1.967428319,4.194036991,3.150449458,3.19001012,CMIP5 -2117,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.912994313,-0.710621505,1.570284312,0.865889599,1.075051031,CMIP5 -2117,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.569900188,0.981216162,4.904658286,2.286800511,2.114960464,CMIP5 -2118,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.848381815,1.928049343,4.144599474,3.23168105,3.501838068,CMIP5 -2118,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.978218473,-0.788798928,1.771462756,0.878644314,1.062989164,CMIP5 -2118,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.595481775,0.899102103,4.933398477,2.355612457,2.337947245,CMIP5 -2119,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.849177065,1.788687009,4.118996669,3.106735962,3.221600205,CMIP5 -2119,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.952407512,-0.720663638,1.778724431,0.887486056,1.032522218,CMIP5 -2119,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.574622893,0.793186423,4.839659788,2.221818952,2.064231942,CMIP5 -2120,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.90234162,1.801244984,4.216368212,3.11526664,3.27691413,CMIP5 -2120,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.998060265,-0.905870248,1.628301471,0.821492915,1.073460401,CMIP5 -2120,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.696112022,0.822633372,5.122238,2.296116842,2.188966306,CMIP5 -2121,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.718840741,1.774250842,3.606526126,2.965275364,3.131583985,CMIP5 -2121,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.029087876,-0.928602469,1.773152945,0.807877974,0.966993263,CMIP5 -2121,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.448592639,0.855676332,4.535128883,2.159987155,2.108509343,CMIP5 -2122,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.893332723,1.669468804,4.141497792,2.998258396,3.02130291,CMIP5 -2122,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.947681001,-0.74990412,1.67682759,0.862085513,0.98790484,CMIP5 -2122,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.615830976,0.682433257,4.891401424,2.13852396,1.861650241,CMIP5 -2123,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.914931252,1.815772882,4.380238751,3.106272456,3.132797978,CMIP5 -2123,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.830816079,-0.42637851,1.746057354,0.942046167,1.027255427,CMIP5 -2123,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.555330205,0.87899466,4.80661696,2.166749874,1.846898297,CMIP5 -2124,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.703497385,1.627443389,3.436704079,2.800849151,3.096448691,CMIP5 -2124,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.979071973,-0.862069072,1.632968825,0.812604696,1.05430111,CMIP5 -2124,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.248773905,0.743833387,3.958517725,1.990610943,2.0697506,CMIP5 -2125,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.918874249,1.560405222,3.990145392,2.869036594,3.040250289,CMIP5 -2125,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.983284581,-0.864632435,1.695593889,0.819952366,1.051794336,CMIP5 -2125,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.706233311,0.597755766,4.854778044,2.051674118,1.988456323,CMIP5 -2126,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.773271372,1.674542676,3.595604506,2.981963104,3.334963401,CMIP5 -2126,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.009496765,-0.839328475,1.819399608,0.877759087,1.139729774,CMIP5 -2126,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.456990864,0.682875198,4.434933157,2.106884703,2.057636194,CMIP5 -2127,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.797189528,1.865159711,3.966014884,2.989987386,3.229715117,CMIP5 -2127,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.839280693,-0.571246657,1.595123841,0.876018317,1.051385782,CMIP5 -2127,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.486165006,0.818425657,4.537261948,2.116306885,1.971619975,CMIP5 -2128,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.747539888,1.608224597,3.505694158,2.898796752,3.150360725,CMIP5 -2128,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.947453558,-0.7718497,1.751294159,0.813277292,0.942837804,CMIP5 -2128,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.369910897,0.690209253,4.277543419,2.08804125,2.038292979,CMIP5 -2129,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.867155226,1.770391259,3.988165619,2.916357636,3.080404742,CMIP5 -2129,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.917211718,-0.737856945,1.62048851,0.834697644,1.001232906,CMIP5 -2129,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.618142787,0.755868939,4.726022767,2.08412493,2.068696346,CMIP5 -2130,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.883309659,1.740795396,4.047104823,2.868800792,3.070235617,CMIP5 -2130,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.892581925,-0.7958466,1.443216013,0.770818909,1.080739066,CMIP5 -2130,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.647975767,0.759867032,4.842951127,2.100108907,1.925178245,CMIP5 -2131,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.632434715,1.738964216,3.34455096,2.800905903,3.044785002,CMIP5 -2131,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.903536782,-0.841654975,1.453450175,0.73247725,1.004902598,CMIP5 -2131,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.310707626,0.734061023,4.186206621,2.070424909,2.002880954,CMIP5 -2132,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.879194544,1.68552861,4.094178755,3.008259742,3.110227895,CMIP5 -2132,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.842395246,-0.564659857,1.661973138,0.863688673,1.006084449,CMIP5 -2132,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.536516748,0.67944373,4.658838577,2.146966189,2.107333298,CMIP5 -2133,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.774693956,1.629143853,3.696945622,2.937524528,3.139629394,CMIP5 -2133,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.91829465,-0.579451276,1.881403752,0.932332328,1.064511656,CMIP5 -2133,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.383121849,0.67735567,4.276397471,2.007953074,1.841779265,CMIP5 -2134,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.913823583,1.673021087,4.148346226,2.882804805,2.875625989,CMIP5 -2134,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.898644381,-0.684382865,1.642389131,0.841684341,0.980300655,CMIP5 -2134,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.655813015,0.723553862,4.832729579,2.043586366,1.895324206,CMIP5 -2135,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.670869065,1.770613707,3.474671765,2.767992057,2.940702831,CMIP5 -2135,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.922770754,-0.738483106,1.652529989,0.826319861,0.957488376,CMIP5 -2135,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.383487703,0.819984044,4.213154639,1.944169042,1.87272308,CMIP5 -2136,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.702477548,1.678545587,3.560162996,2.757199481,2.735485449,CMIP5 -2136,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.970288647,-0.912851157,1.580114435,0.740273339,0.962858115,CMIP5 -2136,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.457071155,0.715687043,4.473014455,2.019180478,1.852038895,CMIP5 -2137,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.635286448,1.706461627,3.410439425,2.69393994,2.880605525,CMIP5 -2137,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.911795952,-0.830358364,1.511722197,0.745906457,0.974333617,CMIP5 -2137,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.379649346,0.732128135,4.240797716,1.950221279,1.78015171,CMIP5 -2138,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.604229207,1.635233645,3.167251605,2.686146647,2.855572589,CMIP5 -2138,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.096007434,-1.138253416,1.726984173,0.746547505,1.002312101,CMIP5 -2138,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.259675876,0.652256632,3.936178625,1.942109761,1.816033138,CMIP5 -2139,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.816594279,1.546653597,3.481643866,2.85421225,3.21690795,CMIP5 -2139,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.965232111,-0.801726378,1.731700794,0.840467636,1.088531666,CMIP5 -2139,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.46497163,0.609019367,4.28337035,2.016361683,1.970710347,CMIP5 -2140,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.854630337,1.65913072,3.971330859,2.830094806,2.902977909,CMIP5 -2140,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.858358258,-0.710254102,1.507649065,0.777356198,1.057993547,CMIP5 -2140,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.57782866,0.708373761,4.68158542,2.054941417,1.82234217,CMIP5 -2141,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.876744693,1.534765258,3.976574418,2.861997539,2.987509535,CMIP5 -2141,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.898587184,-0.730344338,1.65225063,0.783860838,0.979468926,CMIP5 -2141,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.572640554,0.672960029,4.706918586,2.080533694,1.831386426,CMIP5 -2142,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.684059833,1.65860212,3.256521821,2.709221262,3.01001166,CMIP5 -2142,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.963662014,-0.895729423,1.629391382,0.757290099,1.067871401,CMIP5 -2142,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.380946891,0.751215752,4.128961403,1.954406066,1.942141459,CMIP5 -2143,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.905619146,1.747497493,4.145877915,2.884030395,2.960940688,CMIP5 -2143,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.909333146,-0.816637722,1.452053932,0.76646733,1.15160902,CMIP5 -2143,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.672230795,0.885616721,4.962516067,2.119690146,1.777509097,CMIP5 -2144,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.148288979,1.597869312,4.733789302,2.966650715,2.93454946,CMIP5 -2144,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.817664232,-0.613724684,1.473458588,0.80381653,1.122832567,CMIP5 -2144,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.85997335,0.686179996,5.347513626,2.16496779,1.811717167,CMIP5 -2145,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.799728281,1.765139659,3.929675401,2.766843393,2.839862609,CMIP5 -2145,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.936142225,-0.83195097,1.592029427,0.788661813,1.089782432,CMIP5 -2145,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.634312378,0.778300375,4.761625841,1.980590588,1.723145873,CMIP5 -2146,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.735728081,1.752401662,3.424873277,2.701665917,2.966967408,CMIP5 -2146,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.876463508,-0.712452882,1.519319928,0.807671142,1.150439081,CMIP5 -2146,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.40511149,0.595727536,4.137326297,1.89634503,1.804786493,CMIP5 -2147,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.788552423,1.701276531,3.728297791,2.699738965,2.848172131,CMIP5 -2147,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.910659894,-0.849896831,1.457903675,0.743001799,1.023996924,CMIP5 -2147,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.574075379,0.719501448,4.578194602,1.958940955,1.824174111,CMIP5 -2148,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.709718693,1.527846447,3.482587517,2.621705499,2.635625983,CMIP5 -2148,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.023313732,-1.090864212,1.510138797,0.694323817,0.982117414,CMIP5 -2148,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.559379075,0.545729442,4.573451508,1.929551974,1.703306613,CMIP5 -2149,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.978949877,1.350304521,3.954775742,2.651414704,2.919169121,CMIP5 -2149,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.807243262,-0.620945276,1.534959061,0.748052896,0.943078357,CMIP5 -2149,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.665139568,0.41976941,4.575721119,1.905742012,1.972179452,CMIP5 -2150,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.952416379,1.647647144,4.181213028,2.727172336,2.763425817,CMIP5 -2150,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.803004256,-0.655264298,1.401809,0.743499038,0.968617609,CMIP5 -2150,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.686037496,0.679029809,4.836477022,1.985766074,1.81652284,CMIP5 -2151,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.689985938,1.4655244,3.353943464,2.541632562,2.643609612,CMIP5 -2151,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.843465327,-0.720077119,1.522475442,0.70978683,0.89043447,CMIP5 -2151,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.361628372,0.575090495,4.074020407,1.83408393,1.79178149,CMIP5 -2152,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.81423384,1.450039059,3.490109988,2.720945869,2.8996541,CMIP5 -2152,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.862979828,-0.597163924,1.699517296,0.848179008,1.069581204,CMIP5 -2152,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.403755614,0.568379447,4.08727395,1.875359152,1.830072098,CMIP5 -2153,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.766538375,1.588116013,3.705993866,2.654323689,2.787185181,CMIP5 -2153,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.960931362,-0.915436249,1.60112386,0.731865287,1.005237084,CMIP5 -2153,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.587082453,0.709425955,4.621430055,1.924874591,1.708997809,CMIP5 -2154,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.755887411,1.532623339,3.488073394,2.726649745,2.800616334,CMIP5 -2154,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.895263809,-0.683466845,1.699705828,0.820183726,1.046645891,CMIP5 -2154,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.393241047,0.656977303,4.1715402,1.909016094,1.753971703,CMIP5 -2155,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.985314399,1.422997905,4.121085068,2.718565549,2.697121081,CMIP5 -2155,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.823032378,-0.679074345,1.406883695,0.756390384,0.987866219,CMIP5 -2155,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.684398536,0.487503673,4.80015945,1.964217463,1.709254078,CMIP5 -2156,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.771891478,1.323855031,3.345739715,2.542035815,2.813936282,CMIP5 -2156,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.045840459,-1.126766468,1.574001571,0.683473822,1.024223684,CMIP5 -2156,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.582422656,0.454364672,4.472506199,1.860946836,1.78971231,CMIP5 -2157,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.861418521,1.517387966,3.776200065,2.615022041,2.808295692,CMIP5 -2157,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.8770229,-0.770495699,1.466524987,0.750908467,1.075209653,CMIP5 -2157,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.602133627,0.616209675,4.546695982,1.866368394,1.696616984,CMIP5 -2158,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.591958619,1.504989373,2.965391476,2.546504399,2.793265959,CMIP5 -2158,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.001214678,-1.065745115,1.570962754,0.647828759,0.87776292,CMIP5 -2158,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.283151829,0.651936046,4.031136276,1.900886961,1.660932198,CMIP5 -2159,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.697115082,1.428235745,3.306761463,2.549400886,2.66257015,CMIP5 -2159,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.91183182,-0.841618649,1.599666516,0.700329337,0.903601011,CMIP5 -2159,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.409773966,0.524635216,4.148379925,1.851451252,1.77004305,CMIP5 -2160,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.690596245,1.507677092,3.365055597,2.574089922,2.749325886,CMIP5 -2160,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.968297836,-0.924799058,1.645009047,0.71117117,0.873022467,CMIP5 -2160,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.468983354,0.634654454,4.289854886,1.865424213,1.75437133,CMIP5 -2161,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.835335095,1.487004362,3.683180793,2.513619798,2.557006783,CMIP5 -2161,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.937038528,-0.964699457,1.449153831,0.646621114,0.868949141,CMIP5 -2161,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.659438939,0.564135714,4.647880248,1.869242056,1.740309534,CMIP5 -2162,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.626003608,1.442702872,3.131897443,2.464817047,2.517063929,CMIP5 -2162,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.964670823,-1.013927832,1.555533897,0.610155858,0.864506825,CMIP5 -2162,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.387551186,0.57819587,4.145825368,1.856948876,1.780179621,CMIP5 -2163,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.709189074,1.441644525,3.195955982,2.514087813,2.681300554,CMIP5 -2163,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.953868025,-0.927817487,1.528990142,0.702531015,0.872652214,CMIP5 -2163,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.42666178,0.568992792,4.123773584,1.813889393,1.83574807,CMIP5 -2164,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.630951763,1.369005033,2.894476866,2.338244888,2.660431718,CMIP5 -2164,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.952602372,-0.994378915,1.42872982,0.66670469,0.968780032,CMIP5 -2164,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.270740009,0.505002081,3.654810366,1.673728787,1.660524959,CMIP5 -2165,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.586096507,1.700348901,2.915181168,2.458646237,2.835222764,CMIP5 -2165,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.006536114,-1.172764433,1.251473563,0.613896913,0.963650407,CMIP5 -2165,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.343690808,0.706846352,4.007987379,1.846610094,1.802425523,CMIP5 -2166,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.543050633,1.39029236,2.649563739,2.268070544,2.574557234,CMIP5 -2166,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.040719601,-1.217629585,1.45066567,0.588585239,0.900166967,CMIP5 -2166,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.320609044,0.490124883,3.792187036,1.681701766,1.622944799,CMIP5 -2167,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.736016933,1.396603454,3.276751239,2.503911749,2.6972848,CMIP5 -2167,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.975738317,-1.096799888,1.418002446,0.597010198,0.887850706,CMIP5 -2167,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.5130068,0.583781485,4.373551719,1.909016576,1.734108339,CMIP5 -2168,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.804777917,1.387384487,3.591604851,2.461537263,2.5661071,CMIP5 -2168,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.904087285,-0.87454494,1.523746456,0.654884778,0.822712246,CMIP5 -2168,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.587757618,0.564672225,4.466149675,1.809006017,1.627105994,CMIP5 -2169,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.822928216,1.30971011,3.589307556,2.528376169,2.67239948,CMIP5 -2169,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.82908976,-0.613928787,1.648910986,0.738331237,0.830667182,CMIP5 -2169,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.474439981,0.502181543,4.203236528,1.79257629,1.65392033,CMIP5 -2170,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.683405056,1.556507801,3.453246316,2.57095829,2.636481648,CMIP5 -2170,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.925310899,-0.89924538,1.522651865,0.671437689,0.876308735,CMIP5 -2170,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.457801798,0.680198817,4.352491794,1.901760969,1.668549215,CMIP5 -2171,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.720161739,1.323082197,3.297353918,2.431723461,2.468026937,CMIP5 -2171,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.882575023,-0.807373439,1.512065684,0.684203379,0.832426158,CMIP5 -2171,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.411885206,0.490656488,4.104727246,1.749772517,1.625450397,CMIP5 -2172,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.581605559,1.382315203,2.780287351,2.364305778,2.684483811,CMIP5 -2172,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.016880565,-1.151630955,1.493839387,0.595290736,0.835468657,CMIP5 -2172,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.299286691,0.546846275,3.842548036,1.771251305,1.749706477,CMIP5 -2173,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.595812826,1.524353789,3.136390649,2.46164287,2.615446818,CMIP5 -2173,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.988944923,-1.065190029,1.514932482,0.627968406,0.813646096,CMIP5 -2173,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.407855361,0.710707912,4.201580427,1.835931301,1.551600599,CMIP5 -2174,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.547561735,1.51235996,2.967409141,2.382637299,2.49096616,CMIP5 -2174,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.948521264,-0.961994358,1.497732244,0.65359777,0.840045939,CMIP5 -2174,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.182259255,0.672314026,3.623645527,1.731284655,1.73219901,CMIP5 -2175,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.722213715,1.444693435,3.259262497,2.478898525,2.46928881,CMIP5 -2175,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.964574718,-1.020581977,1.432236529,0.63683824,0.843594018,CMIP5 -2175,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.472908195,0.601099889,4.279844796,1.844208134,1.710343854,CMIP5 -2176,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.57549798,1.382443626,2.868601509,2.38032531,2.547075514,CMIP5 -2176,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.933046498,-0.989267201,1.39313677,0.628010237,0.835901145,CMIP5 -2176,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.139341632,0.555883939,3.585907018,1.754270085,1.711174824,CMIP5 -2177,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.532006621,1.41042961,2.818721208,2.295578062,2.481307899,CMIP5 -2177,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.013827137,-1.124021892,1.491341673,0.612566836,0.828037251,CMIP5 -2177,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.194291684,0.58239228,3.605329808,1.685246194,1.697011537,CMIP5 -2178,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.648186333,1.46002054,3.034456269,2.438390022,2.678653245,CMIP5 -2178,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.92880638,-0.953806492,1.440823712,0.657704071,0.934916927,CMIP5 -2178,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.368399756,0.603333266,3.988262576,1.782870858,1.668754738,CMIP5 -2179,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.594059001,1.515154316,3.09782963,2.51688348,2.683214215,CMIP5 -2179,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.955301505,-0.983008326,1.515103125,0.654704237,0.860385986,CMIP5 -2179,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.323091279,0.680295341,4.080837775,1.864358475,1.637031967,CMIP5 -2180,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.630586989,1.337084936,2.853242793,2.406629301,2.749753718,CMIP5 -2180,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.129627629,-1.254296338,1.716732122,0.671907117,0.986582349,CMIP5 -2180,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.4025117,0.527973831,4.013303684,1.737392222,1.751835284,CMIP5 -2181,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.53576871,1.318735294,2.673985703,2.140663535,2.175763233,CMIP5 -2181,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.028266765,-1.216632869,1.385634544,0.585898372,0.923164027,CMIP5 -2181,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.174338291,0.452132648,3.392396467,1.556884257,1.574928666,CMIP5 -2182,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.603226446,1.26102617,2.836001527,2.294489527,2.472365496,CMIP5 -2182,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.129355749,-1.378022714,1.566527419,0.569927371,0.927133707,CMIP5 -2182,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.471550466,0.464584484,4.2140237,1.726915769,1.534809923,CMIP5 -2183,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.586469925,1.235510044,2.753635099,2.202656341,2.390178715,CMIP5 -2183,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.084176567,-1.302102291,1.479713195,0.571935801,0.802563837,CMIP5 -2183,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.287212477,0.440515707,3.692280998,1.632983772,1.669125185,CMIP5 -2184,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.692310133,1.374132797,3.183781545,2.484480258,2.503371752,CMIP5 -2184,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.011648741,-1.089571418,1.5571806,0.653033008,0.929400479,CMIP5 -2184,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.48039997,0.491184228,4.273353149,1.833758168,1.518163873,CMIP5 -2185,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.576694171,1.336685906,2.770155955,2.293349257,2.549240932,CMIP5 -2185,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.04974494,-1.180110837,1.605939839,0.60834768,0.883376472,CMIP5 -2185,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.385628624,0.522374592,3.950267093,1.68749934,1.665864737,CMIP5 -2186,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.550791625,1.306259877,2.639016207,2.274922557,2.511534545,CMIP5 -2186,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.098508508,-1.364367507,1.463330665,0.546129555,0.89129321,CMIP5 -2186,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.325195841,0.492858656,3.920563491,1.730940251,1.584543818,CMIP5 -2187,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.545237302,1.309742215,2.649058681,2.143907687,2.077777816,CMIP5 -2187,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.077102369,-1.358496106,1.377658372,0.528078487,0.875216422,CMIP5 -2187,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.175934344,0.461152533,3.436273879,1.617906396,1.723055798,CMIP5 -2188,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.722964827,1.383355203,3.360504458,2.440405277,2.527265489,CMIP5 -2188,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.065042618,-1.285770847,1.488172396,0.555757443,0.857829832,CMIP5 -2188,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.640857279,0.547972287,4.646275352,1.886894032,1.644093312,CMIP5 -2189,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.676020651,1.245364247,2.998752943,2.284199304,2.488454769,CMIP5 -2189,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.973025063,-1.116905633,1.462199194,0.543850288,0.802327146,CMIP5 -2189,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.475138737,0.430123621,4.115658551,1.742606894,1.732064532,CMIP5 -2190,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.557482964,1.171563211,2.498220775,2.153568045,2.332379393,CMIP5 -2190,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.93930645,-1.118715363,1.331714738,0.494926609,0.807587592,CMIP5 -2190,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.227503799,0.345450962,3.608620199,1.660551473,1.690633998,CMIP5 -2191,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.652917948,1.192823019,2.880826071,2.137023722,2.187935803,CMIP5 -2191,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.861628198,-0.886773825,1.359257303,0.578489372,0.815246195,CMIP5 -2191,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.357506766,0.37757661,3.767600609,1.560644374,1.553994555,CMIP5 -2192,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.510295499,1.286591602,2.611727286,2.122002574,2.205007392,CMIP5 -2192,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.95746597,-1.08487015,1.42437265,0.530473608,0.79495192,CMIP5 -2192,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.276952678,0.491639212,3.696597384,1.59369579,1.465923112,CMIP5 -2193,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.723320781,1.2009286,3.091214602,2.340845298,2.478254754,CMIP5 -2193,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.963777891,-1.072775121,1.457606427,0.576305368,0.799776398,CMIP5 -2193,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.475591559,0.401152044,4.163989369,1.766742941,1.732843487,CMIP5 -2194,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.526710373,1.329123831,2.626526566,2.204678191,2.40393241,CMIP5 -2194,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.954899232,-1.051969155,1.388653545,0.597768816,0.877878702,CMIP5 -2194,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.264914882,0.451245384,3.678495966,1.608990577,1.495767001,CMIP5 -2195,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.491250713,1.46788418,2.607938903,2.253218468,2.546824251,CMIP5 -2195,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.94071802,-1.004747812,1.452588154,0.617082351,0.854960718,CMIP5 -2195,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.198097467,0.612923501,3.551572689,1.638362722,1.669644066,CMIP5 -2196,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.527007471,1.396788062,2.76546304,2.231512399,2.43980006,CMIP5 -2196,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.981874256,-1.152784999,1.190156393,0.593940799,0.980790037,CMIP5 -2196,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.200114136,0.486372153,3.592585469,1.639263555,1.438393253,CMIP5 -2197,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.631739065,1.363027612,2.912363962,2.401505856,2.662803101,CMIP5 -2197,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.039981774,-1.153923036,1.462399286,0.660269328,1.034563334,CMIP5 -2197,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.289371146,0.538909116,3.816726526,1.743418027,1.677267427,CMIP5 -2198,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.629586585,1.39753911,2.976755398,2.422781797,2.710184638,CMIP5 -2198,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.029354986,-1.079342598,1.626648438,0.686142388,0.992819077,CMIP5 -2198,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.418951529,0.517163186,4.056097732,1.739152191,1.717365871,CMIP5 -2199,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.313506493,2.158365046,2.901826487,2.712007491,2.85892663,CMIP5 -2199,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.125458545,-1.191159472,1.581034254,0.765155876,1.058712172,CMIP5 -2199,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.298961356,0.589611859,4.092986145,1.949307931,1.800214253,CMIP5 -2200,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.675938189,1.398035604,3.143763271,2.319109746,2.567140384,CMIP5 -2200,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.0147705,-1.134877536,1.460783134,0.61108967,0.861636752,CMIP5 -2200,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.527661778,0.45777164,4.278641006,1.710320306,1.448877435,CMIP5 -2201,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.500185561,1.331943413,2.592447358,2.146614296,2.173610661,CMIP5 -2201,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.129377072,-1.500986915,1.320183967,0.483007747,0.809420482,CMIP5 -2201,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.23356908,0.522523194,3.67459728,1.665548119,1.594850388,CMIP5 -2202,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.530795602,1.29614768,2.651386274,2.165879932,2.205088836,CMIP5 -2202,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.208955946,-1.599253246,1.501619596,0.502881035,0.812535336,CMIP5 -2202,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.32232793,0.483612583,3.804342518,1.665298545,1.654289509,CMIP5 -2203,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.577418504,1.317504952,2.633339905,2.203840741,2.557891793,CMIP5 -2203,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.118848372,-1.381730998,1.47930035,0.55574152,0.802402272,CMIP5 -2203,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.448137863,0.446321524,4.015070728,1.650434028,1.467947888,CMIP5 -2204,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.631811637,1.315826275,2.789888092,2.107928291,2.410594223,CMIP5 -2204,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.080358034,-1.385876019,1.209974071,0.513762435,0.894283695,CMIP5 -2204,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.392491954,0.367328907,3.796470234,1.596074969,1.650227269,CMIP5 -2205,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.601137622,1.061781719,2.681078143,1.968468816,1.962474116,CMIP5 -2205,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.977211381,-1.192838745,1.2817621,0.512156396,0.774189415,CMIP5 -2205,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.129426907,0.287592253,3.155313363,1.458268977,1.550241867,CMIP5 -2206,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.104589994,1.349052392,4.3215051,2.522751002,2.301229496,CMIP5 -2206,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.743803787,-0.587096745,1.366277051,0.642173054,0.790800105,CMIP5 -2206,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.764116216,0.558252584,4.90860154,1.882632899,1.547816195,CMIP5 -2207,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.567835381,1.543871854,2.997790352,2.272754351,2.330572304,CMIP5 -2207,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.823329844,-0.792469228,1.295005629,0.628125508,0.853069395,CMIP5 -2207,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.282001471,0.622939972,3.790259266,1.646591901,1.520206411,CMIP5 -2208,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.759416596,1.306375687,3.357792157,2.359826288,2.468496471,CMIP5 -2208,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.918760241,-0.952769636,1.431474691,0.609817258,0.788642821,CMIP5 -2208,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.534492215,0.517733246,4.310562066,1.7522081,1.562193886,CMIP5 -2209,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.643563517,1.27590494,2.950983249,2.371664031,2.515469984,CMIP5 -2209,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.071137881,-1.265353349,1.528441333,0.567148709,0.786593257,CMIP5 -2209,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.445897237,0.489311244,4.216336456,1.806769037,1.635297713,CMIP5 -2210,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.516852607,1.432618194,2.763606526,2.223976985,2.403497342,CMIP5 -2210,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.101624693,-1.394963981,1.382946646,0.512218905,0.790585026,CMIP5 -2210,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.289345846,0.642033342,3.798460589,1.713861196,1.655597495,CMIP5 -2211,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.544718459,1.312604223,2.631863531,2.203139387,2.436515622,CMIP5 -2211,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.057493077,-1.297682754,1.371058901,0.520842762,0.709365746,CMIP5 -2211,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.312458531,0.629562954,3.869460021,1.68436045,1.49343394,CMIP5 -2212,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.873306069,1.294673104,3.716149536,2.362245127,2.208835964,CMIP5 -2212,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.867168108,-0.804015391,1.549827824,0.608300148,0.769305394,CMIP5 -2212,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.614979559,0.525367694,4.52016519,1.756320569,1.520807754,CMIP5 -2213,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.490385866,1.34890333,2.594866078,2.130129708,2.263777604,CMIP5 -2213,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.959293021,-1.152033771,1.283861281,0.48120367,0.682029039,CMIP5 -2213,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.145476258,0.666873921,3.598352661,1.650743515,1.456262288,CMIP5 -2214,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.504086641,1.279012328,2.479089706,2.093278074,2.359737491,CMIP5 -2214,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.970041608,-1.127712428,1.398491374,0.529505808,0.736390755,CMIP5 -2214,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.258353498,0.541244013,3.606801949,1.565938103,1.380449878,CMIP5 -2215,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.621469209,1.190895521,2.669361867,2.151236584,2.451505197,CMIP5 -2215,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.925570572,-0.979619924,1.453765589,0.604905439,0.815328881,CMIP5 -2215,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.322877934,0.404676364,3.648982012,1.548630531,1.629711816,CMIP5 -2216,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.663309318,1.162064465,2.757022233,2.065318469,2.366449833,CMIP5 -2216,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.117371514,-1.460775923,1.346826254,0.4864041,0.800780377,CMIP5 -2216,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.964219667,0.469914539,3.050663756,1.58082357,1.650388389,CMIP5 -2217,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.572554261,1.193517881,2.634382644,2.112138736,2.348900939,CMIP5 -2217,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.065986465,-1.387338582,1.267826918,0.468584333,0.74404951,CMIP5 -2217,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.299343652,0.449468925,3.736239484,1.645451666,1.57389471,CMIP5 -2218,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.688773115,1.253327645,2.72861135,2.122243924,2.550677336,CMIP5 -2218,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.987523941,-1.12486808,1.363463097,0.587810114,0.793581437,CMIP5 -2218,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.458315117,0.149642076,3.853479815,1.536677204,1.429607803,CMIP5 -2219,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.618389304,1.331051329,2.811057295,2.191438391,2.380675356,CMIP5 -2219,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.888213841,-0.927165699,1.241238025,0.623143943,0.821283198,CMIP5 -2219,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.145186489,0.509767584,3.307841003,1.570190348,1.645515477,CMIP5 -2220,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.633987939,1.24313633,2.917986018,2.24855002,2.431638025,CMIP5 -2220,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.980116392,-1.164028697,1.30802457,0.54702648,0.795594991,CMIP5 -2220,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.27377924,0.447541737,3.716567782,1.703447656,1.651882867,CMIP5 -2221,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,1.009536204,1.149828695,3.849118007,2.41683774,2.523382564,CMIP5 -2221,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.862536489,-0.92326459,1.190024283,0.596117679,0.858008592,CMIP5 -2221,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.752970378,0.335650771,4.772383144,1.822490846,1.665373766,CMIP5 -2222,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.527588418,1.304988256,2.655047224,2.218247731,2.358585865,CMIP5 -2222,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.125851444,-1.300186569,1.732817953,0.585577131,0.805923857,CMIP5 -2222,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.380755519,0.54719604,3.955233498,1.635365249,1.376100921,CMIP5 -2223,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.61911512,1.287879276,2.654810477,2.17227904,2.525358006,CMIP5 -2223,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.017862081,-1.221182531,1.40729599,0.542061771,0.873941104,CMIP5 -2223,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.393614784,0.357677598,3.86077794,1.632461717,1.65141727,CMIP5 -2224,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.564406551,1.286865649,2.590715951,2.16724963,2.490844143,CMIP5 -2224,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.907486755,-0.955504923,1.425484305,0.593614541,0.817039512,CMIP5 -2224,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.21737441,0.498451202,3.510522453,1.575861359,1.626697487,CMIP5 -2225,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.749574859,1.177124404,2.929703191,2.156056124,2.385283866,CMIP5 -2225,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.989916153,-1.149594065,1.34646873,0.581509468,0.954270702,CMIP5 -2225,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.537316355,0.243820783,4.079296885,1.576728474,1.431013475,CMIP5 -2226,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.642440109,1.029130296,2.572047327,2.074084059,2.332179656,CMIP5 -2226,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.950505491,-1.021810496,1.479518057,0.602402391,0.856857964,CMIP5 -2226,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.994531016,0.281273,2.922004252,1.473871699,1.622457635,CMIP5 -2227,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.624099289,1.154825742,2.869573003,2.132383444,2.187111029,CMIP5 -2227,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.007414332,-1.161283623,1.472665649,0.570115645,0.870571704,CMIP5 -2227,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.4481534,0.413575087,4.030856545,1.564529539,1.259736649,CMIP5 -2228,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.556556366,1.121669455,2.542545434,1.976449776,2.153809695,CMIP5 -2228,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.052345935,-1.350844832,1.276341991,0.502668257,0.877749955,CMIP5 -2228,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.268590281,0.324146683,3.504654747,1.47575896,1.428454593,CMIP5 -2229,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.655112794,1.174042242,2.692858203,2.008029218,2.044942177,CMIP5 -2229,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.078460915,-1.349392967,1.435128098,0.520981818,0.807367177,CMIP5 -2229,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.012559639,0.395550293,2.891766791,1.489247094,1.652613613,CMIP5 -2230,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.735721665,1.194400792,3.043563561,2.229869977,2.517635402,CMIP5 -2230,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.991452453,-1.27066021,1.226710822,0.471707402,0.795836071,CMIP5 -2230,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.563278263,0.413843402,4.314223693,1.760031451,1.691542356,CMIP5 -2231,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.445544903,1.291941813,2.401831862,2.040042724,2.19609923,CMIP5 -2231,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.130683376,-1.437697448,1.519761672,0.506113183,0.826249498,CMIP5 -2231,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.171994407,0.465692621,3.430645129,1.536248839,1.407922647,CMIP5 -2232,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.436254275,1.291598969,2.306014422,2.067459858,2.251274823,CMIP5 -2232,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.10665892,-1.447530998,1.426245592,0.465611348,0.739582208,CMIP5 -2232,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.274485503,0.413995192,3.698805834,1.603980962,1.566432469,CMIP5 -2233,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.451052899,1.240805216,2.374455837,2.024662638,2.170884677,CMIP5 -2233,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.093607821,-1.446446288,1.433341028,0.419363609,0.768818801,CMIP5 -2233,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.321489523,0.455786149,3.820902573,1.607451506,1.484025579,CMIP5 -2234,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.497208506,1.099249479,2.380312053,1.939002815,2.080100178,CMIP5 -2234,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.963736798,-1.17500045,1.3815171,0.457509036,0.664081325,CMIP5 -2234,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.129868638,0.43516826,3.255100397,1.483623577,1.554285077,CMIP5 -2235,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.473500297,1.114372941,2.302923836,1.813984373,1.960143188,CMIP5 -2235,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.028110641,-1.275408502,1.460052398,0.458875042,0.735112371,CMIP5 -2235,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.995673817,0.379260508,2.852531012,1.357389099,1.479087966,CMIP5 -2236,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.632501916,1.088297291,2.559479561,1.84227911,1.962594044,CMIP5 -2236,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.054486787,-1.424404503,1.22864404,0.427719754,0.810782408,CMIP5 -2236,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.814156766,0.49002778,2.512701892,1.416369387,1.59312882,CMIP5 -2237,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.662377891,1.127236839,2.897978352,2.1876181,2.354005786,CMIP5 -2237,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.041443727,-1.306723692,1.442009404,0.475023366,0.715842426,CMIP5 -2237,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.470304727,0.411394368,4.204702032,1.714701142,1.37062286,CMIP5 -2238,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.648376913,1.332777018,3.09264512,2.274540804,2.246325705,CMIP5 -2238,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.882102029,-0.843854915,1.575877541,0.59286126,0.784708554,CMIP5 -2238,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.365599421,0.535325568,3.936500078,1.684094798,1.46262714,CMIP5 -2239,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.601000042,1.161557651,2.636544973,2.152984841,2.232936962,CMIP5 -2239,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.007550902,-1.200473432,1.474790702,0.516971281,0.775939949,CMIP5 -2239,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.353321496,0.418829875,3.822462427,1.638270081,1.441065045,CMIP5 -2240,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.654856983,1.133074141,2.843615795,2.079162895,2.287156963,CMIP5 -2240,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.033541377,-1.268846084,1.350661312,0.540244094,0.867059958,CMIP5 -2240,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.322395387,0.330192694,3.556002863,1.541047375,1.426575712,CMIP5 -2241,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.485635418,1.292953148,2.511874339,2.058780543,2.298409201,CMIP5 -2241,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.95103317,-1.13840328,1.3201047,0.503807841,0.814767862,CMIP5 -2241,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.206323728,0.478185231,3.447613875,1.556996151,1.424488771,CMIP5 -2242,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.543410227,1.259880679,2.539601577,2.138646912,2.413063618,CMIP5 -2242,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.050762583,-1.326692593,1.41180261,0.486114414,0.81469677,CMIP5 -2242,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.367710497,0.445183817,3.842894143,1.654713036,1.579518667,CMIP5 -2243,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.548940072,1.170658514,2.403531323,1.925258041,2.142307568,CMIP5 -2243,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.896541555,-1.061347971,1.31882488,0.467365247,0.687395679,CMIP5 -2243,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.284048261,0.223516991,3.464879419,1.460035062,1.457722512,CMIP5 -2244,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.444281386,1.210529397,2.320840278,1.942365062,1.991980199,CMIP5 -2244,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.07750424,-1.364907748,1.516924324,0.458125911,0.697915281,CMIP5 -2244,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.140277561,0.48697696,3.282900882,1.486623522,1.502514988,CMIP5 -2245,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.667855636,1.072384333,2.818417529,2.01534314,2.095768066,CMIP5 -2245,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.904296177,-1.018110174,1.386935557,0.516893741,0.712339998,CMIP5 -2245,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.428331092,0.321552836,3.836528137,1.500672349,1.412581156,CMIP5 -2246,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.835241892,0.925398808,3.090473162,2.114210117,2.292424183,CMIP5 -2246,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.817419391,-0.910380184,1.212539492,0.504858492,0.728109861,CMIP5 -2246,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.500676401,0.208944059,4.0008533,1.611223566,1.514855215,CMIP5 -2247,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.644483838,1.209441238,2.980392967,2.228897409,2.354007318,CMIP5 -2247,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.050166346,-1.308759669,1.444324916,0.497622741,0.798103395,CMIP5 -2247,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.510456201,0.484631443,4.289152715,1.733448389,1.555903884,CMIP5 -2248,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.696426145,0.907967394,2.694649848,1.995226482,2.08643627,CMIP5 -2248,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.119572387,-1.466499285,1.433283505,0.470382207,0.850246613,CMIP5 -2248,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.18588067,0.22507529,3.281101124,1.527026283,1.622230545,CMIP5 -2249,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.59664064,0.878104937,2.368703434,1.852424721,1.868431534,CMIP5 -2249,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.08729002,-1.463639097,1.289840108,0.428241861,0.69474756,CMIP5 -2249,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.226235589,0.183357378,3.332070419,1.426159476,1.348748675,CMIP5 -2250,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.483337937,1.149955972,2.420979287,1.924639821,2.088210899,CMIP5 -2250,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.113377369,-1.483462364,1.427266696,0.431772223,0.703411339,CMIP5 -2250,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.295420598,0.400799112,3.571673469,1.49513076,1.303450005,CMIP5 -2251,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.517416348,1.159086647,2.430303559,2.001668366,2.276291663,CMIP5 -2251,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.983250736,-1.192577913,1.349585988,0.508806709,0.755911412,CMIP5 -2251,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.226515026,0.433686396,3.478480966,1.494953305,1.520380217,CMIP5 -2252,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.487513898,1.220563623,2.474271435,2.000294778,2.203161689,CMIP5 -2252,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.821292989,-0.883405825,1.275297217,0.527200197,0.749096473,CMIP5 -2252,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.844126026,0.507134103,2.745940359,1.474902512,1.454064974,CMIP5 -2253,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.584055062,1.113887913,2.675092291,2.075974425,2.176388965,CMIP5 -2253,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.921225743,-1.023690307,1.371438994,0.544297573,0.726902681,CMIP5 -2253,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.278897818,0.46755343,3.698782602,1.533737419,1.339748821,CMIP5 -2254,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.516241625,1.256573776,2.531089723,1.916352844,1.805150641,CMIP5 -2254,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.098182583,-1.380621241,1.472602346,0.503507921,0.729020335,CMIP5 -2254,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.075636455,0.344342966,3.037279356,1.415203809,1.530576414,CMIP5 -2255,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.606682288,1.048725071,2.5088409,1.908595952,1.981719252,CMIP5 -2255,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.986504461,-1.266618111,1.194019249,0.457769477,0.768999768,CMIP5 -2255,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.172521298,0.398947787,3.248338027,1.452697523,1.463826021,CMIP5 -2256,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.532776662,1.207610058,2.593518272,2.050688316,2.157808379,CMIP5 -2256,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.956557634,-1.200435863,1.194313471,0.480634388,0.768924733,CMIP5 -2256,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.314156842,0.461501912,3.793953607,1.57180739,1.388882641,CMIP5 -2257,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.592976122,1.053744822,2.496495545,1.830272883,1.861171366,CMIP5 -2257,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.048463966,-1.436657191,1.233828001,0.38708583,0.660336478,CMIP5 -2257,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.975299626,0.440874651,2.885013429,1.445042672,1.631259577,CMIP5 -2258,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.47050978,1.050270166,2.190320543,1.852791345,2.100160286,CMIP5 -2258,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.138003013,-1.597527944,1.398210364,0.347337299,0.691287173,CMIP5 -2258,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.3500495,0.358983012,3.697688808,1.50765886,1.458889677,CMIP5 -2259,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.466449675,1.168624379,2.298334272,1.847995357,2.095956497,CMIP5 -2259,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.965312928,-1.177374804,1.418337401,0.447132267,0.643938976,CMIP5 -2259,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.285210804,0.163251294,3.475708314,1.403193515,1.399137197,CMIP5 -2260,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.544962467,1.114701567,2.475418156,2.019372255,2.221644971,CMIP5 -2260,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.056582068,-1.346847021,1.421834202,0.471867116,0.779008105,CMIP5 -2260,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.374227801,0.402453035,3.822265667,1.549717908,1.442636911,CMIP5 -2261,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.725943975,1.218865452,2.762304265,2.03838285,2.36984638,CMIP5 -2261,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.884322515,-1.066269514,1.162121165,0.484975909,0.740935595,CMIP5 -2261,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.446405845,0.145512218,3.828574305,1.555312758,1.518124545,CMIP5 -2262,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.542748755,1.31401688,2.56811961,1.908559136,1.818111642,CMIP5 -2262,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.966691872,-1.310753101,1.018205474,0.401358257,0.779855559,CMIP5 -2262,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.053646972,0.474178705,3.128864119,1.508749861,1.578053368,CMIP5 -2263,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.536240146,1.129575177,2.432762227,2.040554237,2.237880974,CMIP5 -2263,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.07257285,-1.345036461,1.487158999,0.487373065,0.736342739,CMIP5 -2263,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.351020723,0.427969087,3.77779845,1.555499851,1.381086744,CMIP5 -2264,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.698192969,1.006487987,2.862351342,2.176776197,2.314995811,CMIP5 -2264,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.863153232,-0.835011032,1.499080046,0.591181012,0.703753445,CMIP5 -2264,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.30649294,0.30273448,3.697362139,1.587861856,1.564954484,CMIP5 -2265,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.797233412,0.917145769,3.06845055,2.168770987,2.411642659,CMIP5 -2265,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.981561937,-1.129017912,1.470832341,0.528880594,0.737855852,CMIP5 -2265,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.549461465,0.286064204,4.197468861,1.642178948,1.514823499,CMIP5 -2266,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.574351538,1.07536261,2.404942527,2.02071935,2.356921417,CMIP5 -2266,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.915690697,-0.969342919,1.437446362,0.584120395,0.727745721,CMIP5 -2266,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.20382192,0.349117217,3.326263874,1.438864344,1.406434512,CMIP5 -2267,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.664262349,1.008143594,2.342207179,1.759666984,2.164191884,CMIP5 -2267,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.906867775,-1.029628803,1.362583186,0.520252689,0.748479015,CMIP5 -2267,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.673131897,0.31485974,2.037772659,1.241406304,1.330047401,CMIP5 -2268,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.641103707,0.887013394,2.445836806,1.985988904,2.262745142,CMIP5 -2268,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.056212499,-1.306398337,1.469425089,0.493453303,0.780830462,CMIP5 -2268,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.304090125,0.273378644,3.569143566,1.494833303,1.460621394,CMIP5 -2269,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.611109393,0.938679279,2.44988345,1.816819401,1.687380879,CMIP5 -2269,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.042683223,-1.382837437,1.211418755,0.444015852,0.720917541,CMIP5 -2269,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.110090924,0.244078944,3.044107154,1.37467401,1.473902965,CMIP5 -2270,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.621541437,0.854756988,2.515213593,1.834690262,2.015379123,CMIP5 -2270,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.143357807,-1.54003673,1.445430791,0.397793711,0.576749216,CMIP5 -2270,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.153512526,0.278007913,3.231383505,1.439127522,1.548044553,CMIP5 -2271,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.500485121,1.093365623,2.330371619,1.882469134,2.14446063,CMIP5 -2271,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.899755404,-1.040365435,1.323311133,0.489881563,0.710173151,CMIP5 -2271,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.224764262,0.378090157,3.37073678,1.394683852,1.283817536,CMIP5 -2272,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.442031957,1.263374484,2.425444497,1.836348825,1.79760979,CMIP5 -2272,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.897095932,-1.025165725,1.279350258,0.498899943,0.771106138,CMIP5 -2272,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.995605601,0.349906272,2.822775256,1.33948062,1.464969081,CMIP5 -2273,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.710764459,1.153577054,3.024424822,2.118139878,1.958161918,CMIP5 -2273,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.978738589,-1.151848245,1.351592967,0.48351722,0.718488149,CMIP5 -2273,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.498680212,0.435088452,4.176272864,1.636683487,1.467827366,CMIP5 -2274,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.57331994,1.09266044,2.612682126,1.953516635,2.071472753,CMIP5 -2274,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.06100508,-1.341041553,1.448611077,0.455759154,0.719913587,CMIP5 -2274,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.328744698,0.311652533,3.583195527,1.500087548,1.53714552,CMIP5 -2275,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.667898313,1.20516428,2.971734104,2.069798297,1.947897184,CMIP5 -2275,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.968651612,-1.171992389,1.279692644,0.486178033,0.794733052,CMIP5 -2275,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.508885765,0.410431451,4.14372644,1.585592733,1.418778546,CMIP5 -2276,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.551130465,1.260870228,2.654064022,2.092880524,2.200707446,CMIP5 -2276,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.867723597,-0.9637112,1.210811597,0.512486978,0.793993268,CMIP5 -2276,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.250254593,0.466877379,3.617774977,1.582198596,1.449169226,CMIP5 -2277,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.437730589,1.305073107,2.390190808,2.022778139,2.218999206,CMIP5 -2277,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.004657997,-1.265865391,1.328305186,0.443805761,0.726012479,CMIP5 -2277,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.211799807,0.579060427,3.547294706,1.580999852,1.445784449,CMIP5 -2278,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.646438464,0.929862898,2.568053196,1.761186171,1.943240454,CMIP5 -2278,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.148717823,-1.506580649,1.44468767,0.432593736,0.741341357,CMIP5 -2278,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.007988385,0.18852144,2.812247902,1.330806832,1.504590511,CMIP5 -2279,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.629812096,0.961051555,2.393607289,1.779811841,1.997398135,CMIP5 -2279,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.191245501,-1.666004514,1.404959836,0.388906858,0.65291148,CMIP5 -2279,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.033990704,0.308139996,2.943463386,1.393060083,1.457052661,CMIP5 -2280,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.741356368,0.967109012,2.855600393,2.053994316,2.387582113,CMIP5 -2280,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.938291098,-1.139840547,1.256743121,0.480536539,0.705082133,CMIP5 -2280,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.479494112,0.336531658,3.995441223,1.575426523,1.43746079,CMIP5 -2281,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.586961777,1.103848413,2.616385379,2.075185298,2.251193199,CMIP5 -2281,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.918316469,-1.062694176,1.35117847,0.485879334,0.667554343,CMIP5 -2281,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.282383234,0.436294079,3.679080082,1.591349841,1.479767966,CMIP5 -2282,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.902502478,0.038756099,2.256027549,1.387345036,1.641285802,CMIP5 -2282,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.10773769,-1.567346479,1.188542993,0.35325736,0.678389119,CMIP5 -2282,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.625601206,0.276629142,1.606102538,1.035927878,1.270429398,CMIP5 -2283,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.481514076,1.12816229,2.392675942,1.828910303,1.932570903,CMIP5 -2283,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.143174171,-1.601721482,1.217767766,0.389600786,0.732664767,CMIP5 -2283,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.340289906,0.395497441,3.678855823,1.441218129,1.345848525,CMIP5 -2284,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.622599287,0.869705473,2.398895511,1.896644777,2.139978431,CMIP5 -2284,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.814267764,-0.886640548,1.215085372,0.512308358,0.798063119,CMIP5 -2284,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.175055819,0.285037035,3.28553604,1.386186471,1.289612762,CMIP5 -2285,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.48661245,1.174182131,2.357385186,2.017064364,2.128301851,CMIP5 -2285,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.994305577,-1.178385121,1.445500149,0.524535687,0.772237305,CMIP5 -2285,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.220427519,0.417082788,3.517517616,1.49472076,1.26009238,CMIP5 -2286,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.566229037,1.135783875,2.465617484,1.887531729,1.781791921,CMIP5 -2286,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.948108944,-1.105049292,1.33069501,0.533532492,0.748099777,CMIP5 -2286,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.959476659,0.416718143,2.724274509,1.356078521,1.490767223,CMIP5 -2287,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.761938557,1.089219152,3.062880557,2.041036221,2.08829104,CMIP5 -2287,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.847672127,-0.936005518,1.21840575,0.531349519,0.726522265,CMIP5 -2287,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.482420076,0.347629738,3.998886651,1.511617088,1.361768902,CMIP5 -2288,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.494085627,1.148315134,2.354368736,1.873408972,1.837423467,CMIP5 -2288,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.088544327,-1.418029767,1.397857244,0.465872506,0.734416973,CMIP5 -2288,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.108618248,0.413898282,3.132440878,1.409732779,1.456211542,CMIP5 -2289,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.604763141,0.979925325,2.455970407,2.037290874,2.313244324,CMIP5 -2289,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.060929515,-1.394849364,1.34076596,0.446274634,0.807848283,CMIP5 -2289,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.312989695,0.313753535,3.731195798,1.593005468,1.505396108,CMIP5 -2290,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.530436723,1.059019584,2.350153739,1.837398032,1.928674804,CMIP5 -2290,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.137927711,-1.570655844,1.372727071,0.404099197,0.730765326,CMIP5 -2290,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.315720658,0.221594754,3.499330856,1.435532483,1.477013712,CMIP5 -2291,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.683406761,0.70377871,2.291622577,1.575188915,1.918308162,CMIP5 -2291,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.231258398,-1.771543438,1.426360913,0.361367339,0.715013229,CMIP5 -2291,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.876323015,0.295462744,2.475322291,1.216047963,1.229767163,CMIP5 -2292,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.446239981,1.190501078,2.286091648,1.799359447,2.014940092,CMIP5 -2292,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.114569084,-1.549959103,1.322521772,0.387746503,0.70111466,CMIP5 -2292,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.025060425,0.410006902,3.039853826,1.413595072,1.314255157,CMIP5 -2293,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.413171438,1.184132653,2.140020611,1.820989505,2.065921745,CMIP5 -2293,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.975841914,-1.196477778,1.418779972,0.447445969,0.655481,CMIP5 -2293,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,0.922562194,0.427238927,2.816399294,1.375677564,1.410440931,CMIP5 -2294,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.556745748,0.920794485,2.324590374,1.710615157,1.954901586,CMIP5 -2294,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.930756952,-1.121010928,1.343796244,0.445965222,0.618128795,CMIP5 -2294,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.206895392,0.046285162,3.094947963,1.266895612,1.419480113,CMIP5 -2295,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.533046964,1.074130777,2.523406216,1.886967008,2.022913017,CMIP5 -2295,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.990523087,-1.379675033,1.136137229,0.352284567,0.689730197,CMIP5 -2295,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.399239665,0.384400607,3.903081274,1.53637964,1.294192614,CMIP5 -2296,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.348294541,1.217963048,2.053301465,1.832098267,1.934952555,CMIP5 -2296,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.021859231,-1.461759204,1.167492834,0.311583428,0.578434181,CMIP5 -2296,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.178987182,0.489923237,3.495869308,1.522215496,1.38924294,CMIP5 -2297,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.485595643,1.066725333,2.39097388,1.849010995,1.978523488,CMIP5 -2297,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.155876935,-1.662113275,1.315265602,0.349219812,0.697162912,CMIP5 -2297,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.326337638,0.343418555,3.65198319,1.501826419,1.281361416,CMIP5 -2298,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.551310338,1.053408283,2.555351092,1.889606433,2.008796097,CMIP5 -2298,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,0.919279373,-1.13786785,1.259030284,0.450163514,0.720516987,CMIP5 -2298,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.345958793,0.320083126,3.693218807,1.44139002,1.288279403,CMIP5 -2299,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.40650782,1.867496312,2.869128593,2.193742792,1.986130253,CMIP5 -2299,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.1675521,-1.393097938,1.53963151,0.560313762,0.676101265,CMIP5 -2299,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.052762357,0.503960523,3.365588314,1.635567204,1.381422938,CMIP5 -2300,fgco2,ocean,fgco2,rcp45,PgC/yr,Simulated,global,0.366610671,1.657944871,2.49532563,2.130981951,2.185328652,CMIP5 -2300,fgco2,ocean,fgco2_HL,rcp45,PgC/yr,Simulated,HL,1.123722847,-1.285757494,1.24989842,0.35685169,0.731632917,CMIP5 -2300,fgco2,ocean,fgco2_LL,rcp45,PgC/yr,Simulated,LL,1.433960634,0.417839192,3.781082678,1.776578206,1.453695477,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp85/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp85/ensemble_mean_model.csv deleted file mode 100644 index 3c2d3fa56..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp85/ensemble_mean_model.csv +++ /dev/null @@ -1,4966 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",3.49303482578043 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",3.4207531948618 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",3.76550880142162 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",3.82116669771308 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",3.98755131250535 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",4.05546291015175 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",3.88717981204048 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",4.03039364602116 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",3.9081447665337 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",4.06787508524073 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",4.27002033860508 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",4.17169779146932 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",4.31417528284735 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",4.37598644210529 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",4.71665374647563 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",4.57858950847912 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",4.5645989990288 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",4.49069421289476 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",4.79906008818067 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",4.62907699910416 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",4.79023198067284 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",4.9522145472971 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",5.01761457637056 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",5.01212402174646 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",5.13350209606905 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",5.24934799640305 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",5.11568260508497 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",5.27680076952352 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",5.37781897088289 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",5.65154953118294 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",5.55094112048939 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",5.60249950937785 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",5.7319997627566 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",5.77013590659462 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",5.81195696493545 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",6.01377726710777 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",6.00945685692397 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",5.99727038685014 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",5.9277132235613 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",6.09283004848119 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",6.13854571889211 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",6.26170702290894 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",6.32819555843848 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",6.39354756516829 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",6.35988390226896 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",6.32501808003358 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",6.38890540528203 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",6.59759450334122 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",6.66959600392189 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",6.84262851182024 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",6.91553283246155 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",7.14842999395519 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",7.01402505854488 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",7.05393162611883 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",6.97653881709094 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",7.06088526147949 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",7.05482484171074 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",7.11466068189983 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",7.20251755960926 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",7.14412559121927 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",7.19792822430102 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",7.16884749373079 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",7.33397712460898 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",7.10680102498896 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",7.38323364249177 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",7.47091924050884 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",7.59672017268169 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",7.23604675994636 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",7.26352354423866 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",7.49355697330591 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",7.48891801490922 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",7.41415042733426 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",7.3170380432585 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",7.36707572459801 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",7.36134345751087 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",7.58597917515176 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",7.35979713804531 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",7.45980206795365 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",7.35914723566124 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",7.30817471936532 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",7.48814325443165 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",7.6756785101126 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",7.50489825013147 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",7.13775622770637 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",7.28803414843811 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",7.59676819502534 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",7.44095169732586 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",7.38947014418724 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",7.40673097524018 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",7.35256337234669 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",7.2284464236912 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",7.39703526405705 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",7.38796704483096 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",7.17807578743571 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",7.02500456704828 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2101,"Simulated","PgC/yr","global",6.98221025587612 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2102,"Simulated","PgC/yr","global",6.99923097521081 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2103,"Simulated","PgC/yr","global",6.86798430926795 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2104,"Simulated","PgC/yr","global",6.95467744551623 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2105,"Simulated","PgC/yr","global",7.06511763069993 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2106,"Simulated","PgC/yr","global",7.02832931397371 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2107,"Simulated","PgC/yr","global",7.00439497789807 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2108,"Simulated","PgC/yr","global",7.01110209856133 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2109,"Simulated","PgC/yr","global",6.83648485332249 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2110,"Simulated","PgC/yr","global",6.90221463582235 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2111,"Simulated","PgC/yr","global",6.86146607648972 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2112,"Simulated","PgC/yr","global",7.11472951392573 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2113,"Simulated","PgC/yr","global",6.91268030524868 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2114,"Simulated","PgC/yr","global",7.00212672253296 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2115,"Simulated","PgC/yr","global",7.07268915354889 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2116,"Simulated","PgC/yr","global",7.05770458158501 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2117,"Simulated","PgC/yr","global",7.03377184625416 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2118,"Simulated","PgC/yr","global",7.03076564754161 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2119,"Simulated","PgC/yr","global",6.93233104827066 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2120,"Simulated","PgC/yr","global",6.96545846166588 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2121,"Simulated","PgC/yr","global",7.00634948728467 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2122,"Simulated","PgC/yr","global",6.50487776445431 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2123,"Simulated","PgC/yr","global",6.74477978514183 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2124,"Simulated","PgC/yr","global",6.73182975980396 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2125,"Simulated","PgC/yr","global",6.92137074870472 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2126,"Simulated","PgC/yr","global",6.76929199008607 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2127,"Simulated","PgC/yr","global",6.58808287780875 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2128,"Simulated","PgC/yr","global",6.55994338517407 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2129,"Simulated","PgC/yr","global",6.62272459577376 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2130,"Simulated","PgC/yr","global",6.57188494129528 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2131,"Simulated","PgC/yr","global",6.44124015539284 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2132,"Simulated","PgC/yr","global",6.49049187104127 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2133,"Simulated","PgC/yr","global",6.60526367162227 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2134,"Simulated","PgC/yr","global",6.46395952617411 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2135,"Simulated","PgC/yr","global",6.40183782242723 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2136,"Simulated","PgC/yr","global",6.35462225414961 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2137,"Simulated","PgC/yr","global",6.26146851193547 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2138,"Simulated","PgC/yr","global",6.25415630974222 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2139,"Simulated","PgC/yr","global",6.31304610976139 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2140,"Simulated","PgC/yr","global",6.42904408085029 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2141,"Simulated","PgC/yr","global",6.41497513490534 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2142,"Simulated","PgC/yr","global",6.29387879166551 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2143,"Simulated","PgC/yr","global",6.49855962477463 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2144,"Simulated","PgC/yr","global",6.22889175474745 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2145,"Simulated","PgC/yr","global",6.22278171189026 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2146,"Simulated","PgC/yr","global",6.28235663067885 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2147,"Simulated","PgC/yr","global",6.30700970116447 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2148,"Simulated","PgC/yr","global",6.17557414733658 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2149,"Simulated","PgC/yr","global",6.01351634570726 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2150,"Simulated","PgC/yr","global",6.36994138177426 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2151,"Simulated","PgC/yr","global",6.21197988605837 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2152,"Simulated","PgC/yr","global",6.36191364666061 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2153,"Simulated","PgC/yr","global",6.2956412116775 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2154,"Simulated","PgC/yr","global",6.22959448170954 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2155,"Simulated","PgC/yr","global",6.13140959862558 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2156,"Simulated","PgC/yr","global",6.05851808394257 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2157,"Simulated","PgC/yr","global",5.93168627212602 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2158,"Simulated","PgC/yr","global",5.8319822822379 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2159,"Simulated","PgC/yr","global",5.70337684519584 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2160,"Simulated","PgC/yr","global",5.86077968098059 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2161,"Simulated","PgC/yr","global",5.75666243771095 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2162,"Simulated","PgC/yr","global",5.90052297258613 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2163,"Simulated","PgC/yr","global",5.98098280862852 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2164,"Simulated","PgC/yr","global",5.74903969102875 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2165,"Simulated","PgC/yr","global",5.95082957905009 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2166,"Simulated","PgC/yr","global",5.64455427645778 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2167,"Simulated","PgC/yr","global",5.77067215609872 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2168,"Simulated","PgC/yr","global",5.75889867818029 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2169,"Simulated","PgC/yr","global",5.61736722697219 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2170,"Simulated","PgC/yr","global",5.4989185156123 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2171,"Simulated","PgC/yr","global",5.58025075756436 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2172,"Simulated","PgC/yr","global",5.43538175347251 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2173,"Simulated","PgC/yr","global",5.26867538897778 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2174,"Simulated","PgC/yr","global",5.29741516090809 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2175,"Simulated","PgC/yr","global",5.2232558563527 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2176,"Simulated","PgC/yr","global",5.18547027562334 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2177,"Simulated","PgC/yr","global",5.30864438559847 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2178,"Simulated","PgC/yr","global",5.28263068204274 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2179,"Simulated","PgC/yr","global",5.34940895237898 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2180,"Simulated","PgC/yr","global",5.37358340017288 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2181,"Simulated","PgC/yr","global",5.24805459461405 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2182,"Simulated","PgC/yr","global",5.25255909044851 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2183,"Simulated","PgC/yr","global",4.99964621612116 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2184,"Simulated","PgC/yr","global",5.16814221328928 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2185,"Simulated","PgC/yr","global",5.29190219585696 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2186,"Simulated","PgC/yr","global",5.18100739915337 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2187,"Simulated","PgC/yr","global",5.21640306791371 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2188,"Simulated","PgC/yr","global",4.80514772061083 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2189,"Simulated","PgC/yr","global",5.14305374022123 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2190,"Simulated","PgC/yr","global",4.99894829139343 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2191,"Simulated","PgC/yr","global",5.08045341378263 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2192,"Simulated","PgC/yr","global",4.91341729586149 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2193,"Simulated","PgC/yr","global",5.1292169022706 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2194,"Simulated","PgC/yr","global",5.07275863358495 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2195,"Simulated","PgC/yr","global",5.0913945044111 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2196,"Simulated","PgC/yr","global",4.86920952704121 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2197,"Simulated","PgC/yr","global",4.76652174886757 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2198,"Simulated","PgC/yr","global",4.55140726122788 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2199,"Simulated","PgC/yr","global",4.80117787353568 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2200,"Simulated","PgC/yr","global",4.7596241395745 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2201,"Simulated","PgC/yr","global",4.73905456904401 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2202,"Simulated","PgC/yr","global",4.66468556692134 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2203,"Simulated","PgC/yr","global",4.57720486423718 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2204,"Simulated","PgC/yr","global",4.60727965732099 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2205,"Simulated","PgC/yr","global",4.29152634483677 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2206,"Simulated","PgC/yr","global",4.44135925851734 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2207,"Simulated","PgC/yr","global",4.37891740581279 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2208,"Simulated","PgC/yr","global",4.36104989248506 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2209,"Simulated","PgC/yr","global",4.43651540478775 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2210,"Simulated","PgC/yr","global",4.36606182441743 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2211,"Simulated","PgC/yr","global",4.07653031231142 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2212,"Simulated","PgC/yr","global",4.22595343532617 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2213,"Simulated","PgC/yr","global",4.07306149835504 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2214,"Simulated","PgC/yr","global",4.15792498331022 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2215,"Simulated","PgC/yr","global",4.02934515818478 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2216,"Simulated","PgC/yr","global",4.21625132116389 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2217,"Simulated","PgC/yr","global",4.14370556735518 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2218,"Simulated","PgC/yr","global",4.12190182259285 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2219,"Simulated","PgC/yr","global",4.13992780965463 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2220,"Simulated","PgC/yr","global",4.19016718483748 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2221,"Simulated","PgC/yr","global",3.94239430202556 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2222,"Simulated","PgC/yr","global",4.04540703139124 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2223,"Simulated","PgC/yr","global",3.91917069663596 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2224,"Simulated","PgC/yr","global",3.89513071140429 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2225,"Simulated","PgC/yr","global",3.99875492527912 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2226,"Simulated","PgC/yr","global",4.04658517955547 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2227,"Simulated","PgC/yr","global",3.91393305968843 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2228,"Simulated","PgC/yr","global",3.88410638204682 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2229,"Simulated","PgC/yr","global",3.85515531180444 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2230,"Simulated","PgC/yr","global",3.74755965010968 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2231,"Simulated","PgC/yr","global",3.67243989868127 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2232,"Simulated","PgC/yr","global",3.68321131036218 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2233,"Simulated","PgC/yr","global",3.90510975441496 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2234,"Simulated","PgC/yr","global",3.56218379914824 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2235,"Simulated","PgC/yr","global",3.78287688237538 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2236,"Simulated","PgC/yr","global",3.56939995665419 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2237,"Simulated","PgC/yr","global",3.52038355048966 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2238,"Simulated","PgC/yr","global",3.56288012313118 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2239,"Simulated","PgC/yr","global",3.67414949411524 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2240,"Simulated","PgC/yr","global",3.55732874020513 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2241,"Simulated","PgC/yr","global",3.53086842885345 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2242,"Simulated","PgC/yr","global",3.5316319841175 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2243,"Simulated","PgC/yr","global",3.32690312866473 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2244,"Simulated","PgC/yr","global",3.43648051240749 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2245,"Simulated","PgC/yr","global",3.37723694779009 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2246,"Simulated","PgC/yr","global",3.53030976892231 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2247,"Simulated","PgC/yr","global",3.2889334622847 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2248,"Simulated","PgC/yr","global",3.30630954696241 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2249,"Simulated","PgC/yr","global",3.32277000562117 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2250,"Simulated","PgC/yr","global",3.26137824149778 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2251,"Simulated","PgC/yr","global",3.15940279475497 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2252,"Simulated","PgC/yr","global",3.21520155658781 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2253,"Simulated","PgC/yr","global",3.23647065259081 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2254,"Simulated","PgC/yr","global",3.40955278357761 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2255,"Simulated","PgC/yr","global",3.2012926851217 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2256,"Simulated","PgC/yr","global",3.03346900076469 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2257,"Simulated","PgC/yr","global",3.17282183831583 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2258,"Simulated","PgC/yr","global",3.14775737641961 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2259,"Simulated","PgC/yr","global",3.20286941873824 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2260,"Simulated","PgC/yr","global",3.27940582930435 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2261,"Simulated","PgC/yr","global",3.12299545528839 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2262,"Simulated","PgC/yr","global",2.97570772582131 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2263,"Simulated","PgC/yr","global",3.14580286703301 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2264,"Simulated","PgC/yr","global",2.91043575633093 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2265,"Simulated","PgC/yr","global",3.13182836503058 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2266,"Simulated","PgC/yr","global",3.20611092693468 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2267,"Simulated","PgC/yr","global",2.90876938100624 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2268,"Simulated","PgC/yr","global",2.86720284108676 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2269,"Simulated","PgC/yr","global",3.0118941625071 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2270,"Simulated","PgC/yr","global",2.9335537125645 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2271,"Simulated","PgC/yr","global",2.87536023652827 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2272,"Simulated","PgC/yr","global",3.0493996128985 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2273,"Simulated","PgC/yr","global",3.02935028442422 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2274,"Simulated","PgC/yr","global",2.78038324600019 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2275,"Simulated","PgC/yr","global",3.06003015903803 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2276,"Simulated","PgC/yr","global",2.97631120660653 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2277,"Simulated","PgC/yr","global",3.10767312617415 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2278,"Simulated","PgC/yr","global",2.97611431499756 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2279,"Simulated","PgC/yr","global",3.03232126675143 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2280,"Simulated","PgC/yr","global",2.70854021915356 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2281,"Simulated","PgC/yr","global",2.9006984257833 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2282,"Simulated","PgC/yr","global",3.0007641839936 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2283,"Simulated","PgC/yr","global",2.75191399993911 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2284,"Simulated","PgC/yr","global",2.71885541856979 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2285,"Simulated","PgC/yr","global",2.67947869752079 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2286,"Simulated","PgC/yr","global",3.05473329453333 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2287,"Simulated","PgC/yr","global",2.87215874695154 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2288,"Simulated","PgC/yr","global",2.71484395213015 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2289,"Simulated","PgC/yr","global",3.07741104595011 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2290,"Simulated","PgC/yr","global",2.86983766700841 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2291,"Simulated","PgC/yr","global",2.68808110001347 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2292,"Simulated","PgC/yr","global",2.80477219359572 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2293,"Simulated","PgC/yr","global",2.55824789171873 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2294,"Simulated","PgC/yr","global",2.67404737045387 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2295,"Simulated","PgC/yr","global",2.69145547002734 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2296,"Simulated","PgC/yr","global",2.55370657875414 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2297,"Simulated","PgC/yr","global",2.4977557461664 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2298,"Simulated","PgC/yr","global",2.95409767117838 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2299,"Simulated","PgC/yr","global",2.66970775133261 -"bcc-csm1-1","fgco2","ocean","fgco2","rcp85",2300,"Simulated","PgC/yr","global",2.82662235995691 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",1.46166958302975 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.4852066833326 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.56062040533438 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",1.64269722121721 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.65274791151575 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.60132195025776 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.55223563004518 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.62607402205086 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.54401673856151 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.59330715813207 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.64562481561427 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.56273358384666 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.62863842716041 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",1.67276323635025 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.79505272116307 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.73625766907698 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.6472782751843 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.64241385997263 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.74421301478772 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.72433668133294 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.77000398345157 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.79519567563711 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.77481631228061 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",1.84588506750609 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.85679008771087 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.94401071695563 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.9342051723492 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.98057988680569 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.97250508210873 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.95892950248199 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.99417896192024 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",2.05288852440007 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",2.03963338925772 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",2.10822237974542 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",2.07013421245437 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",2.14632923019545 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",2.1132079524123 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",2.0789973898448 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.02953400951456 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",2.18777725224367 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",2.18863186522807 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.12387037462847 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",2.25158476942246 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",2.23049855988442 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",2.31578859603423 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",2.23129995417354 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.29262827277087 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",2.20851838949685 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",2.27136570553516 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.3978962674372 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.36981010100007 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",2.46856843015154 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",2.48274866474173 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.59187133480013 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.51894502064663 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",2.52748605508369 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.50134888182232 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.47944910563401 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.60973017016288 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.64426768801259 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",2.67640130607311 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.60399557266765 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",2.66355153886507 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",2.52785717055986 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",2.49552653009551 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.53347938602301 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.61746528106015 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",2.5356616356079 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.57784792551413 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",2.77928833028173 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",2.57207766016994 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",2.60987170924608 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",2.52661785434729 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",2.53285689713507 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.51372477617979 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",2.57323403447974 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",2.62227930835819 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",2.77497138824391 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.67959640933743 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",2.73398280205978 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",2.79632227586755 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",2.75275286604022 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",2.76357664281124 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.6461631794149 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",2.61225437817279 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.71846643852412 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",2.91839435664857 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",2.82245888297258 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",2.85328071680994 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",2.67398806470443 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",2.71865978091178 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",2.7599940055371 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",2.72394796413856 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",2.54872201297176 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",2.65801254838284 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2101,"Simulated","PgC/yr","HL",2.65229889867193 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2102,"Simulated","PgC/yr","HL",2.70113044853473 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2103,"Simulated","PgC/yr","HL",2.60781769407058 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2104,"Simulated","PgC/yr","HL",2.64423654941428 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2105,"Simulated","PgC/yr","HL",2.6276195779676 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2106,"Simulated","PgC/yr","HL",2.72259060433061 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2107,"Simulated","PgC/yr","HL",2.72396013649972 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2108,"Simulated","PgC/yr","HL",2.70659470638103 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2109,"Simulated","PgC/yr","HL",2.69659553630878 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2110,"Simulated","PgC/yr","HL",2.70954862704756 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2111,"Simulated","PgC/yr","HL",2.58065860862846 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2112,"Simulated","PgC/yr","HL",2.67334094801601 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2113,"Simulated","PgC/yr","HL",2.81241385423737 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2114,"Simulated","PgC/yr","HL",2.79641399319347 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2115,"Simulated","PgC/yr","HL",2.84792204711972 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2116,"Simulated","PgC/yr","HL",2.82591045505567 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2117,"Simulated","PgC/yr","HL",2.8822339516708 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2118,"Simulated","PgC/yr","HL",2.82775669085703 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2119,"Simulated","PgC/yr","HL",2.84033272147815 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2120,"Simulated","PgC/yr","HL",2.77425633279555 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2121,"Simulated","PgC/yr","HL",2.80897275604644 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2122,"Simulated","PgC/yr","HL",2.64546539173469 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2123,"Simulated","PgC/yr","HL",2.71325157254243 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2124,"Simulated","PgC/yr","HL",2.71767976429965 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2125,"Simulated","PgC/yr","HL",2.86973038906028 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2126,"Simulated","PgC/yr","HL",2.83482685114139 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2127,"Simulated","PgC/yr","HL",2.64825144704854 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2128,"Simulated","PgC/yr","HL",2.59325785165923 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2129,"Simulated","PgC/yr","HL",2.73305430567394 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2130,"Simulated","PgC/yr","HL",2.70970573542992 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2131,"Simulated","PgC/yr","HL",2.68712685472038 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2132,"Simulated","PgC/yr","HL",2.65243307772281 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2133,"Simulated","PgC/yr","HL",2.71340500090863 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2134,"Simulated","PgC/yr","HL",2.59306649081873 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2135,"Simulated","PgC/yr","HL",2.68950584363093 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2136,"Simulated","PgC/yr","HL",2.57504913168279 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2137,"Simulated","PgC/yr","HL",2.45404652021448 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2138,"Simulated","PgC/yr","HL",2.5546907161106 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2139,"Simulated","PgC/yr","HL",2.60813332622613 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2140,"Simulated","PgC/yr","HL",2.62956715575253 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2141,"Simulated","PgC/yr","HL",2.68870416626365 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2142,"Simulated","PgC/yr","HL",2.68165382145093 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2143,"Simulated","PgC/yr","HL",2.56244734094852 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2144,"Simulated","PgC/yr","HL",2.56823996946786 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2145,"Simulated","PgC/yr","HL",2.62191979908684 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2146,"Simulated","PgC/yr","HL",2.42417667825078 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2147,"Simulated","PgC/yr","HL",2.55877808175546 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2148,"Simulated","PgC/yr","HL",2.59873909419551 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2149,"Simulated","PgC/yr","HL",2.60780325708409 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2150,"Simulated","PgC/yr","HL",2.67179279352389 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2151,"Simulated","PgC/yr","HL",2.75041803732363 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2152,"Simulated","PgC/yr","HL",2.67030125466505 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2153,"Simulated","PgC/yr","HL",2.74087773695914 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2154,"Simulated","PgC/yr","HL",2.62128938401024 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2155,"Simulated","PgC/yr","HL",2.64337938872638 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2156,"Simulated","PgC/yr","HL",2.67540062475484 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2157,"Simulated","PgC/yr","HL",2.518346876481 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2158,"Simulated","PgC/yr","HL",2.50379467718014 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2159,"Simulated","PgC/yr","HL",2.47729884388192 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2160,"Simulated","PgC/yr","HL",2.46406097650772 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2161,"Simulated","PgC/yr","HL",2.52885162415847 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2162,"Simulated","PgC/yr","HL",2.58111238292922 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2163,"Simulated","PgC/yr","HL",2.73665845688873 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2164,"Simulated","PgC/yr","HL",2.76039824115874 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2165,"Simulated","PgC/yr","HL",2.70712830872472 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2166,"Simulated","PgC/yr","HL",2.53758911484301 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2167,"Simulated","PgC/yr","HL",2.61839830669665 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2168,"Simulated","PgC/yr","HL",2.56875064248007 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2169,"Simulated","PgC/yr","HL",2.52131693260302 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2170,"Simulated","PgC/yr","HL",2.51157055133337 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2171,"Simulated","PgC/yr","HL",2.52064235733245 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2172,"Simulated","PgC/yr","HL",2.3609919330381 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2173,"Simulated","PgC/yr","HL",2.4911294769366 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2174,"Simulated","PgC/yr","HL",2.40258149416953 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2175,"Simulated","PgC/yr","HL",2.45705422573264 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2176,"Simulated","PgC/yr","HL",2.32481227874502 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2177,"Simulated","PgC/yr","HL",2.3675367002456 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2178,"Simulated","PgC/yr","HL",2.49611986193231 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2179,"Simulated","PgC/yr","HL",2.50462834238023 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2180,"Simulated","PgC/yr","HL",2.55903370133973 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2181,"Simulated","PgC/yr","HL",2.54768509764818 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2182,"Simulated","PgC/yr","HL",2.44766140909284 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2183,"Simulated","PgC/yr","HL",2.41516941407364 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2184,"Simulated","PgC/yr","HL",2.55022713958258 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2185,"Simulated","PgC/yr","HL",2.52186100883887 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2186,"Simulated","PgC/yr","HL",2.55161252412901 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2187,"Simulated","PgC/yr","HL",2.51090560072047 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2188,"Simulated","PgC/yr","HL",2.43032938219779 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2189,"Simulated","PgC/yr","HL",2.39134498943188 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2190,"Simulated","PgC/yr","HL",2.45223708457476 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2191,"Simulated","PgC/yr","HL",2.53571457122502 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2192,"Simulated","PgC/yr","HL",2.45984311182815 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2193,"Simulated","PgC/yr","HL",2.56888793539078 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2194,"Simulated","PgC/yr","HL",2.57384746486636 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2195,"Simulated","PgC/yr","HL",2.55997946549372 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2196,"Simulated","PgC/yr","HL",2.48730226012667 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2197,"Simulated","PgC/yr","HL",2.34123930474204 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2198,"Simulated","PgC/yr","HL",2.28739840364637 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2199,"Simulated","PgC/yr","HL",2.31382827973181 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2200,"Simulated","PgC/yr","HL",2.28039193594945 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2201,"Simulated","PgC/yr","HL",2.36255027834421 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2202,"Simulated","PgC/yr","HL",2.24886608671221 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2203,"Simulated","PgC/yr","HL",2.18024397607905 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2204,"Simulated","PgC/yr","HL",2.2071887713492 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2205,"Simulated","PgC/yr","HL",2.20516561169383 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2206,"Simulated","PgC/yr","HL",2.12927122296549 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2207,"Simulated","PgC/yr","HL",2.22098656733657 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2208,"Simulated","PgC/yr","HL",2.16903181606371 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2209,"Simulated","PgC/yr","HL",2.13912149392221 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2210,"Simulated","PgC/yr","HL",2.18656737616041 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2211,"Simulated","PgC/yr","HL",2.02781544196626 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2212,"Simulated","PgC/yr","HL",2.11678294657595 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2213,"Simulated","PgC/yr","HL",2.06113544062222 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2214,"Simulated","PgC/yr","HL",2.14665392085232 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2215,"Simulated","PgC/yr","HL",2.11685881152455 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2216,"Simulated","PgC/yr","HL",2.03477322021855 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2217,"Simulated","PgC/yr","HL",2.09712769716914 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2218,"Simulated","PgC/yr","HL",2.14690218040427 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2219,"Simulated","PgC/yr","HL",2.18581212361242 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2220,"Simulated","PgC/yr","HL",2.14255834594064 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2221,"Simulated","PgC/yr","HL",2.01657808799411 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2222,"Simulated","PgC/yr","HL",2.05879240263881 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2223,"Simulated","PgC/yr","HL",2.05842411794431 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2224,"Simulated","PgC/yr","HL",2.11639965873863 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2225,"Simulated","PgC/yr","HL",2.1652694241539 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2226,"Simulated","PgC/yr","HL",2.12063677273352 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2227,"Simulated","PgC/yr","HL",1.97041624831875 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2228,"Simulated","PgC/yr","HL",2.07988597220917 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2229,"Simulated","PgC/yr","HL",2.14782303367962 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2230,"Simulated","PgC/yr","HL",2.07312493328253 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2231,"Simulated","PgC/yr","HL",2.00436128356616 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2232,"Simulated","PgC/yr","HL",2.03736763161374 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2233,"Simulated","PgC/yr","HL",1.95231538112372 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2234,"Simulated","PgC/yr","HL",1.96829995594664 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2235,"Simulated","PgC/yr","HL",2.02865816566767 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2236,"Simulated","PgC/yr","HL",1.98193922816082 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2237,"Simulated","PgC/yr","HL",1.98449174398737 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2238,"Simulated","PgC/yr","HL",2.06674038831723 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2239,"Simulated","PgC/yr","HL",2.01478195702821 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2240,"Simulated","PgC/yr","HL",1.97729108466829 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2241,"Simulated","PgC/yr","HL",2.00030477344145 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2242,"Simulated","PgC/yr","HL",1.8824177202727 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2243,"Simulated","PgC/yr","HL",1.85429871676826 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2244,"Simulated","PgC/yr","HL",1.85969984818345 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2245,"Simulated","PgC/yr","HL",1.90090159222689 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2246,"Simulated","PgC/yr","HL",1.95124109948218 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2247,"Simulated","PgC/yr","HL",1.92577538763155 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2248,"Simulated","PgC/yr","HL",1.89600886919858 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2249,"Simulated","PgC/yr","HL",1.85423332571182 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2250,"Simulated","PgC/yr","HL",1.86153362854548 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2251,"Simulated","PgC/yr","HL",1.89305919470454 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2252,"Simulated","PgC/yr","HL",1.7980083402986 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2253,"Simulated","PgC/yr","HL",1.8715684664667 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2254,"Simulated","PgC/yr","HL",1.82930602853371 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2255,"Simulated","PgC/yr","HL",1.83598667326108 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2256,"Simulated","PgC/yr","HL",1.75779680368128 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2257,"Simulated","PgC/yr","HL",1.78221937248868 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2258,"Simulated","PgC/yr","HL",1.77299810121773 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2259,"Simulated","PgC/yr","HL",1.8401595285122 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2260,"Simulated","PgC/yr","HL",1.85940629612487 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2261,"Simulated","PgC/yr","HL",1.8334293451057 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2262,"Simulated","PgC/yr","HL",1.83488691458456 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2263,"Simulated","PgC/yr","HL",1.77070573422611 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2264,"Simulated","PgC/yr","HL",1.77910154956379 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2265,"Simulated","PgC/yr","HL",1.82260075600585 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2266,"Simulated","PgC/yr","HL",1.81617714625358 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2267,"Simulated","PgC/yr","HL",1.78897927910265 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2268,"Simulated","PgC/yr","HL",1.69031549805877 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2269,"Simulated","PgC/yr","HL",1.68900031689761 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2270,"Simulated","PgC/yr","HL",1.65962869250679 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2271,"Simulated","PgC/yr","HL",1.7479454004119 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2272,"Simulated","PgC/yr","HL",1.75806742640837 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2273,"Simulated","PgC/yr","HL",1.77195863819066 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2274,"Simulated","PgC/yr","HL",1.7390751460673 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2275,"Simulated","PgC/yr","HL",1.76083819550124 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2276,"Simulated","PgC/yr","HL",1.75108303880843 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2277,"Simulated","PgC/yr","HL",1.77836696172195 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2278,"Simulated","PgC/yr","HL",1.75329501160079 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2279,"Simulated","PgC/yr","HL",1.65920265986633 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2280,"Simulated","PgC/yr","HL",1.71435732673234 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2281,"Simulated","PgC/yr","HL",1.72047011665789 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2282,"Simulated","PgC/yr","HL",1.60240359193163 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2283,"Simulated","PgC/yr","HL",1.69030785494827 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2284,"Simulated","PgC/yr","HL",1.65369226027891 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2285,"Simulated","PgC/yr","HL",1.72335468317365 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2286,"Simulated","PgC/yr","HL",1.84220505134271 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2287,"Simulated","PgC/yr","HL",1.70357940862428 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2288,"Simulated","PgC/yr","HL",1.66494744817555 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2289,"Simulated","PgC/yr","HL",1.5823978917548 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2290,"Simulated","PgC/yr","HL",1.55923049153728 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2291,"Simulated","PgC/yr","HL",1.54273411138949 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2292,"Simulated","PgC/yr","HL",1.60623165797605 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2293,"Simulated","PgC/yr","HL",1.54821988317643 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2294,"Simulated","PgC/yr","HL",1.55670798199636 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2295,"Simulated","PgC/yr","HL",1.53824619013915 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2296,"Simulated","PgC/yr","HL",1.58662877803003 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2297,"Simulated","PgC/yr","HL",1.47243617801115 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2298,"Simulated","PgC/yr","HL",1.63201102043507 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2299,"Simulated","PgC/yr","HL",1.63082831985579 -"bcc-csm1-1","fgco2","ocean","fgco2_HL","rcp85",2300,"Simulated","PgC/yr","HL",1.62876354770997 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",2.044457271287 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",1.94920315118616 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",2.21876875337166 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",2.19347087189682 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",2.34950500026839 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",2.46785781625203 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",2.34835994797391 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",2.41848880092739 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",2.37736047265643 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",2.48812616423088 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",2.63821102780434 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",2.62176259536253 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",2.69896731807588 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",2.71716824712489 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",2.93650835068148 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",2.85670650705626 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",2.93035352989034 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",2.86144088322893 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",3.06874014919412 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",2.91879100528272 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",3.03454538268787 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",3.17128228338097 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",3.25656693782013 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",3.18112525304695 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",3.29143371430358 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",3.32109438996369 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",3.1974498248263 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",3.31247026192302 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",3.4211606285679 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",3.70750539751731 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",3.57247092209977 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",3.56608814498304 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",3.70828413849088 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",3.67878948882513 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",3.75799311180399 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",3.88424665685284 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",3.91254618289248 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",3.93407158482868 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",3.91340266619675 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",3.92227846856221 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",3.96702642704367 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",4.15360670304531 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",4.09417993839532 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",4.18011156714585 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",4.06257306913458 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",4.11098150549182 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",4.11431651971198 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",4.40523886250605 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",4.41516879816907 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",4.46315953420715 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",4.56351434180156 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",4.69854618188585 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",4.55054981990818 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",4.4829179452033 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",4.47753132405277 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",4.55323785981696 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",4.57292643448215 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",4.65415794639219 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",4.61351320177149 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",4.52128180890141 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",4.54330001815421 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",4.58558130471937 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",4.69162579678737 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",4.5986630989421 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",4.90616695850681 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",4.95624619614068 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",4.99902029002245 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",4.71987129849551 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",4.70574064164171 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",4.73682703258677 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",4.93619789848769 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",4.8244268272807 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",4.80954378278576 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",4.85330217363413 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",4.86641954485566 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",5.03185390690822 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",4.75800720586801 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",4.70741539591821 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",4.70093115847158 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",4.5965561500136 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",4.71465860933907 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",4.94457298753681 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",4.76360597134468 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",4.51306220451368 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",4.69631141929502 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",4.89963396739517 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",4.5474177263478 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",4.59052518988493 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",4.57739595966381 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",4.699887566507 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",4.53213279353317 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",4.65956433254205 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",4.68600858397799 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",4.64920088456041 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",4.38895513839198 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2101,"Simulated","PgC/yr","LL",4.35190367064934 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2102,"Simulated","PgC/yr","LL",4.32080278537143 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2103,"Simulated","PgC/yr","LL",4.28178272369559 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2104,"Simulated","PgC/yr","LL",4.33238375731176 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2105,"Simulated","PgC/yr","LL",4.45887975301905 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2106,"Simulated","PgC/yr","LL",4.32869429077029 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2107,"Simulated","PgC/yr","LL",4.30347810462602 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2108,"Simulated","PgC/yr","LL",4.32726198715223 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2109,"Simulated","PgC/yr","LL",4.16296872439427 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2110,"Simulated","PgC/yr","LL",4.21576630826923 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2111,"Simulated","PgC/yr","LL",4.30201944767552 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2112,"Simulated","PgC/yr","LL",4.46334400753422 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2113,"Simulated","PgC/yr","LL",4.12493295968503 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2114,"Simulated","PgC/yr","LL",4.22988642379005 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2115,"Simulated","PgC/yr","LL",4.24954600978956 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2116,"Simulated","PgC/yr","LL",4.256271380228 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2117,"Simulated","PgC/yr","LL",4.17695443791966 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2118,"Simulated","PgC/yr","LL",4.22758973086799 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2119,"Simulated","PgC/yr","LL",4.11704408961941 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2120,"Simulated","PgC/yr","LL",4.21513251062407 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2121,"Simulated","PgC/yr","LL",4.22173270273342 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2122,"Simulated","PgC/yr","LL",3.88260879724176 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2123,"Simulated","PgC/yr","LL",4.05511639372096 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2124,"Simulated","PgC/yr","LL",4.03784310197381 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2125,"Simulated","PgC/yr","LL",4.07717413297242 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2126,"Simulated","PgC/yr","LL",3.9598728149531 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2127,"Simulated","PgC/yr","LL",3.96284283551898 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2128,"Simulated","PgC/yr","LL",3.98891945796739 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2129,"Simulated","PgC/yr","LL",3.91390074417985 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2130,"Simulated","PgC/yr","LL",3.88618757978698 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2131,"Simulated","PgC/yr","LL",3.77812837545402 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2132,"Simulated","PgC/yr","LL",3.86140227062808 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2133,"Simulated","PgC/yr","LL",3.91583244344763 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2134,"Simulated","PgC/yr","LL",3.89338731020932 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2135,"Simulated","PgC/yr","LL",3.73649274553361 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2136,"Simulated","PgC/yr","LL",3.80208750764095 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2137,"Simulated","PgC/yr","LL",3.82831566175089 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2138,"Simulated","PgC/yr","LL",3.72194043536078 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2139,"Simulated","PgC/yr","LL",3.72805440848664 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2140,"Simulated","PgC/yr","LL",3.82263388327703 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2141,"Simulated","PgC/yr","LL",3.7503822693956 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2142,"Simulated","PgC/yr","LL",3.63656090892485 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2143,"Simulated","PgC/yr","LL",3.9580359876821 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2144,"Simulated","PgC/yr","LL",3.68340527500183 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2145,"Simulated","PgC/yr","LL",3.62446472933534 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2146,"Simulated","PgC/yr","LL",3.87855170171277 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2147,"Simulated","PgC/yr","LL",3.77062558170863 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2148,"Simulated","PgC/yr","LL",3.60020912215846 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2149,"Simulated","PgC/yr","LL",3.4296727549457 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2150,"Simulated","PgC/yr","LL",3.72212227335461 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2151,"Simulated","PgC/yr","LL",3.48718890299386 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2152,"Simulated","PgC/yr","LL",3.71558532924311 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2153,"Simulated","PgC/yr","LL",3.5800119281772 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2154,"Simulated","PgC/yr","LL",3.63188055708368 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2155,"Simulated","PgC/yr","LL",3.51221798047782 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2156,"Simulated","PgC/yr","LL",3.40800109201447 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2157,"Simulated","PgC/yr","LL",3.43613590972637 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2158,"Simulated","PgC/yr","LL",3.3510304579478 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2159,"Simulated","PgC/yr","LL",3.2488638587482 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2160,"Simulated","PgC/yr","LL",3.41886657097908 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2161,"Simulated","PgC/yr","LL",3.25124883533394 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2162,"Simulated","PgC/yr","LL",3.34326544854464 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2163,"Simulated","PgC/yr","LL",3.27037213101831 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2164,"Simulated","PgC/yr","LL",3.01569352632762 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2165,"Simulated","PgC/yr","LL",3.26937333971887 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2166,"Simulated","PgC/yr","LL",3.13084836541978 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2167,"Simulated","PgC/yr","LL",3.17706288685147 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2168,"Simulated","PgC/yr","LL",3.21419868525792 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2169,"Simulated","PgC/yr","LL",3.11975493012958 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2170,"Simulated","PgC/yr","LL",3.01122531881259 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2171,"Simulated","PgC/yr","LL",3.08340446102982 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2172,"Simulated","PgC/yr","LL",3.09610676726542 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2173,"Simulated","PgC/yr","LL",2.80173872625495 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2174,"Simulated","PgC/yr","LL",2.91757216365742 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2175,"Simulated","PgC/yr","LL",2.78999041065363 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2176,"Simulated","PgC/yr","LL",2.88249851351433 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2177,"Simulated","PgC/yr","LL",2.96327279510654 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2178,"Simulated","PgC/yr","LL",2.81074234228274 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2179,"Simulated","PgC/yr","LL",2.86896212430702 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2180,"Simulated","PgC/yr","LL",2.83950832230655 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2181,"Simulated","PgC/yr","LL",2.72549590017562 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2182,"Simulated","PgC/yr","LL",2.82846100534812 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2183,"Simulated","PgC/yr","LL",2.60822884148847 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2184,"Simulated","PgC/yr","LL",2.64330117396494 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2185,"Simulated","PgC/yr","LL",2.79464704449561 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2186,"Simulated","PgC/yr","LL",2.65476750890916 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2187,"Simulated","PgC/yr","LL",2.73013935735138 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2188,"Simulated","PgC/yr","LL",2.39933915191058 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2189,"Simulated","PgC/yr","LL",2.77469888950589 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2190,"Simulated","PgC/yr","LL",2.57104033641715 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2191,"Simulated","PgC/yr","LL",2.57014037011435 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2192,"Simulated","PgC/yr","LL",2.47825552356584 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2193,"Simulated","PgC/yr","LL",2.5861104895724 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2194,"Simulated","PgC/yr","LL",2.52492463998211 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2195,"Simulated","PgC/yr","LL",2.55716135388814 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2196,"Simulated","PgC/yr","LL",2.40713578531266 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2197,"Simulated","PgC/yr","LL",2.44852764690801 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2198,"Simulated","PgC/yr","LL",2.28700807238925 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2199,"Simulated","PgC/yr","LL",2.51007453715272 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2200,"Simulated","PgC/yr","LL",2.50155186944194 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2201,"Simulated","PgC/yr","LL",2.40015478754956 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2202,"Simulated","PgC/yr","LL",2.43790988926833 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2203,"Simulated","PgC/yr","LL",2.41822790293625 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2204,"Simulated","PgC/yr","LL",2.42169336615197 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2205,"Simulated","PgC/yr","LL",2.10879761477025 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2206,"Simulated","PgC/yr","LL",2.33293666016398 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2207,"Simulated","PgC/yr","LL",2.18037326567463 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2208,"Simulated","PgC/yr","LL",2.21370232521025 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2209,"Simulated","PgC/yr","LL",2.31840806799035 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2210,"Simulated","PgC/yr","LL",2.20143880195976 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2211,"Simulated","PgC/yr","LL",2.06899090612111 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2212,"Simulated","PgC/yr","LL",2.1304165710366 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2213,"Simulated","PgC/yr","LL",2.03272740301839 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2214,"Simulated","PgC/yr","LL",2.03316750367013 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2215,"Simulated","PgC/yr","LL",1.93427135302622 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2216,"Simulated","PgC/yr","LL",2.20147701429179 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2217,"Simulated","PgC/yr","LL",2.06774439349674 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2218,"Simulated","PgC/yr","LL",1.99699755489757 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2219,"Simulated","PgC/yr","LL",1.97666859425411 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2220,"Simulated","PgC/yr","LL",2.06935194677552 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2221,"Simulated","PgC/yr","LL",1.94628583728516 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2222,"Simulated","PgC/yr","LL",2.007455874876 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2223,"Simulated","PgC/yr","LL",1.88192704646921 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2224,"Simulated","PgC/yr","LL",1.80087869021963 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2225,"Simulated","PgC/yr","LL",1.85610736901208 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2226,"Simulated","PgC/yr","LL",1.94774581190229 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2227,"Simulated","PgC/yr","LL",1.96334830237281 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2228,"Simulated","PgC/yr","LL",1.82583134303951 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2229,"Simulated","PgC/yr","LL",1.73007650962233 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2230,"Simulated","PgC/yr","LL",1.69631657310133 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2231,"Simulated","PgC/yr","LL",1.68909839534628 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2232,"Simulated","PgC/yr","LL",1.66734635475111 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2233,"Simulated","PgC/yr","LL",1.97236904806668 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2234,"Simulated","PgC/yr","LL",1.61464627820618 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2235,"Simulated","PgC/yr","LL",1.77531332242053 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2236,"Simulated","PgC/yr","LL",1.6084163504176 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2237,"Simulated","PgC/yr","LL",1.5570207638284 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2238,"Simulated","PgC/yr","LL",1.51842762613808 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2239,"Simulated","PgC/yr","LL",1.6805454213032 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2240,"Simulated","PgC/yr","LL",1.60095308667087 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2241,"Simulated","PgC/yr","LL",1.55190953500185 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2242,"Simulated","PgC/yr","LL",1.66872990470416 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2243,"Simulated","PgC/yr","LL",1.49224427269329 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2244,"Simulated","PgC/yr","LL",1.59620421616536 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2245,"Simulated","PgC/yr","LL",1.4965609485468 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2246,"Simulated","PgC/yr","LL",1.59965518504825 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2247,"Simulated","PgC/yr","LL",1.38401113636623 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2248,"Simulated","PgC/yr","LL",1.4306446757837 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2249,"Simulated","PgC/yr","LL",1.4881871771643 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2250,"Simulated","PgC/yr","LL",1.41977656148585 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2251,"Simulated","PgC/yr","LL",1.28704404965686 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2252,"Simulated","PgC/yr","LL",1.43626584159294 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2253,"Simulated","PgC/yr","LL",1.38505868133068 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2254,"Simulated","PgC/yr","LL",1.59927306172788 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2255,"Simulated","PgC/yr","LL",1.38500597466581 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2256,"Simulated","PgC/yr","LL",1.29461957859978 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2257,"Simulated","PgC/yr","LL",1.40954751549964 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2258,"Simulated","PgC/yr","LL",1.39362878503985 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2259,"Simulated","PgC/yr","LL",1.38247078408517 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2260,"Simulated","PgC/yr","LL",1.43984989480465 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2261,"Simulated","PgC/yr","LL",1.30944214219677 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2262,"Simulated","PgC/yr","LL",1.1611226883634 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2263,"Simulated","PgC/yr","LL",1.39393711902939 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2264,"Simulated","PgC/yr","LL",1.15095069734192 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2265,"Simulated","PgC/yr","LL",1.32891158890273 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2266,"Simulated","PgC/yr","LL",1.40931297084094 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2267,"Simulated","PgC/yr","LL",1.13956342239502 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2268,"Simulated","PgC/yr","LL",1.19524445613879 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2269,"Simulated","PgC/yr","LL",1.34083383649814 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2270,"Simulated","PgC/yr","LL",1.29162452236809 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2271,"Simulated","PgC/yr","LL",1.1466441675214 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2272,"Simulated","PgC/yr","LL",1.31024104346966 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2273,"Simulated","PgC/yr","LL",1.2765701812123 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2274,"Simulated","PgC/yr","LL",1.06065996387265 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2275,"Simulated","PgC/yr","LL",1.31811462860246 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2276,"Simulated","PgC/yr","LL",1.24422844927649 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2277,"Simulated","PgC/yr","LL",1.34836957190908 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2278,"Simulated","PgC/yr","LL",1.24185493639037 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2279,"Simulated","PgC/yr","LL",1.390540174478 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2280,"Simulated","PgC/yr","LL",1.01334782614488 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2281,"Simulated","PgC/yr","LL",1.19896159367931 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2282,"Simulated","PgC/yr","LL",1.41498684331506 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2283,"Simulated","PgC/yr","LL",1.08027909750686 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2284,"Simulated","PgC/yr","LL",1.08335861616903 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2285,"Simulated","PgC/yr","LL",0.97550905259562 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2286,"Simulated","PgC/yr","LL",1.23272772323344 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2287,"Simulated","PgC/yr","LL",1.18712855211421 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2288,"Simulated","PgC/yr","LL",1.06827818521412 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2289,"Simulated","PgC/yr","LL",1.51111852938611 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2290,"Simulated","PgC/yr","LL",1.32692322997021 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2291,"Simulated","PgC/yr","LL",1.16190656823679 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2292,"Simulated","PgC/yr","LL",1.21576513727574 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2293,"Simulated","PgC/yr","LL",1.02702770924731 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2294,"Simulated","PgC/yr","LL",1.13415321501195 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2295,"Simulated","PgC/yr","LL",1.16968936613935 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2296,"Simulated","PgC/yr","LL",0.984687127684157 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2297,"Simulated","PgC/yr","LL",1.04130989776264 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2298,"Simulated","PgC/yr","LL",1.33930139021681 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2299,"Simulated","PgC/yr","LL",1.05685559680175 -"bcc-csm1-1","fgco2","ocean","fgco2_LL","rcp85",2300,"Simulated","PgC/yr","LL",1.21537313145571 -"CanESM2","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",7.45447253465649 -"CanESM2","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",6.56552996394724 -"CanESM2","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",7.1222431519188 -"CanESM2","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",7.11500255106887 -"CanESM2","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",7.07447100667114 -"CanESM2","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",8.11171431841381 -"CanESM2","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",7.87290885203118 -"CanESM2","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",7.6126774907131 -"CanESM2","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",7.83085164540789 -"CanESM2","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",8.20911761284485 -"CanESM2","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",8.47865491211943 -"CanESM2","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",8.71748221505794 -"CanESM2","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",9.07960138635424 -"CanESM2","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",9.04822180991187 -"CanESM2","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",8.7367529756213 -"CanESM2","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",8.752711932817 -"CanESM2","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",9.29149753123376 -"CanESM2","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",8.87651027557799 -"CanESM2","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",9.35552008485151 -"CanESM2","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",9.85689788047126 -"CanESM2","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",9.76248329750968 -"CanESM2","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",10.3918984015949 -"CanESM2","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",9.83725946360993 -"CanESM2","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",10.1296342351822 -"CanESM2","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",10.3805645606277 -"CanESM2","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",10.5877076894515 -"CanESM2","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",10.7939372480804 -"CanESM2","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",10.5756476715902 -"CanESM2","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",11.1051391416164 -"CanESM2","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",11.0133912923361 -"CanESM2","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",10.870631020302 -"CanESM2","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",11.2415021940659 -"CanESM2","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",11.4548052370456 -"CanESM2","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",11.7050557325729 -"CanESM2","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",11.604014869012 -"CanESM2","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",11.71462816564 -"CanESM2","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",12.2904559159537 -"CanESM2","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",12.6874266760772 -"CanESM2","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",12.6053769314712 -"CanESM2","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",12.5738097389059 -"CanESM2","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",12.7181360039473 -"CanESM2","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",12.8232010328059 -"CanESM2","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",13.1965526610601 -"CanESM2","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",13.4219995029726 -"CanESM2","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",13.3460996455326 -"CanESM2","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",13.485196278263 -"CanESM2","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",13.6692606185645 -"CanESM2","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",13.7768011998294 -"CanESM2","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",13.8387501719267 -"CanESM2","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",14.2020725820163 -"CanESM2","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",14.1377951200319 -"CanESM2","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",14.1962613842884 -"CanESM2","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",14.6887782174832 -"CanESM2","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",14.4158123561136 -"CanESM2","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",14.7151001801976 -"CanESM2","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",14.9220505679925 -"CanESM2","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",15.1457616265346 -"CanESM2","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",15.0637386205685 -"CanESM2","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",15.3624025430559 -"CanESM2","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",15.0977457140203 -"CanESM2","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",14.9901004064159 -"CanESM2","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",15.0894010301665 -"CanESM2","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",15.1780485341559 -"CanESM2","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",15.4418408138363 -"CanESM2","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",15.3616182096202 -"CanESM2","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",15.4171855596727 -"CanESM2","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",15.418941397023 -"CanESM2","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",15.8682931526167 -"CanESM2","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",15.5838341325507 -"CanESM2","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",15.5779382624633 -"CanESM2","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",15.277979744163 -"CanESM2","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",15.6539807259825 -"CanESM2","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",15.817262458459 -"CanESM2","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",15.7741018372978 -"CanESM2","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",15.8102346526179 -"CanESM2","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",15.6227945590351 -"CanESM2","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",15.7858646106127 -"CanESM2","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",15.6138215171447 -"CanESM2","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",15.7569267176329 -"CanESM2","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",15.6828517723628 -"CanESM2","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",15.4078448614844 -"CanESM2","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",15.5744065337828 -"CanESM2","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",15.4687955910272 -"CanESM2","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",15.5198173723049 -"CanESM2","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",15.5576993403153 -"CanESM2","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",15.6789924953441 -"CanESM2","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",15.486001905772 -"CanESM2","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",15.5504776793352 -"CanESM2","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",15.7040154058057 -"CanESM2","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",15.3964542009075 -"CanESM2","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",15.4665718274795 -"CanESM2","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",15.3382575512695 -"CanESM2","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",15.1742895270368 -"CanESM2","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",15.7356360756507 -"CanESM2","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",14.9478689529896 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",-0.424690382505146 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",-0.655721801755657 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",-0.587241997879404 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",-0.619480755109476 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",-0.541133261809834 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",-0.455551797505107 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",-0.489347853193618 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",-0.5078669567055 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",-0.539356045600993 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",-0.468482000506791 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",-0.289010047705349 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",-0.218501060370869 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",-0.178373253115338 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",-0.10008308565746 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",-0.276947038925885 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",-0.33206730390262 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",-0.169143599517931 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",-0.171443332698223 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",-0.11892049035588 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.0403182995783385 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.0758232693191241 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",0.0983516155386864 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.0590612659047143 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.020033321419269 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.0381046913403781 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.178302121207957 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.238838104617988 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",0.0958414938685066 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",0.219370480575266 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",0.283892066828599 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.185092262550475 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",0.24344701232772 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",0.17776050756526 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.340934601770833 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",0.250323542346672 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",0.320584118695395 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.499975335687213 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",0.63273185119021 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",0.535952044461743 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",0.504083384137336 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.58278373044494 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.622734039673027 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",0.599519036006341 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",0.775446999597099 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",0.655500348044379 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",0.784037267182614 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",0.836200688044996 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",0.84257276936661 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",0.99891378167332 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",1.01084683754691 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.895352299632912 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",0.977276372380069 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.08209787312496 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",1.04342927846342 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",1.09048236176193 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",1.12820579311165 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",1.19351674051142 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",1.11361592301064 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",1.20328180253593 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",1.17381975073433 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.17683521016775 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",1.28809188937438 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",1.33715900551918 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.31779269518093 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",1.4125688459219 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",1.37402375843841 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",1.53584665824028 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.52684032107993 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",1.51623565573301 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",1.51032691708017 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",1.39502339563978 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.46448067440224 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.62078592502806 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.70901294427033 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",1.62435582321163 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.59591603133259 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.70983387057388 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",1.66381664857934 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",1.58971317110022 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.75953590583787 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",1.81074497416245 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.70250395343386 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",1.69637818981222 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",1.80892537472216 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.70142675720003 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",1.85279079182891 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.82675678575497 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",1.80842341739981 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",1.76685746310443 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.73273013747808 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.84368217891515 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.7730405183985 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.84694252956221 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",1.99609328769415 -"CanESM2","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.78281954671954 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",7.87916276523098 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",7.2212522087486 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",7.70948536004962 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",7.73448341839694 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",7.61560415086985 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",8.56726621527608 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",8.36225664815062 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",8.12054414407606 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",8.37020763626418 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",8.67759975888226 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",8.76766506271122 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",8.93598326140934 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",9.25797504814061 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",9.1483048928808 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",9.01369907343204 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",9.08477910551213 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",9.46064037760186 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",9.04795365602107 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",9.47444086547389 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",9.81658103451099 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",9.68665819060159 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",10.293547393854 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",9.77819857577931 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",10.1095997429579 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",10.3424594831651 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",10.409407087553 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",10.5550983955695 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",10.4798062836802 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",10.8857703665812 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",10.7294967058697 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",10.6855401161272 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",10.9980533009284 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",11.2770443233218 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",11.3641192590989 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",11.3536905212012 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",11.3940475938443 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",11.790479973404 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",12.0546955280829 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",12.0694273767808 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",12.0697270204593 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",12.1353527789998 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",12.2004664882164 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",12.5970354142625 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",12.6465505838884 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",12.6905982046219 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",12.7011596960481 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",12.8330579124606 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",12.9342293764781 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",12.8398321353686 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",13.1912269321684 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",13.2424470363952 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",13.2189837984844 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",13.6066809958733 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",13.3723880865028 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",13.6246178940433 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",13.7938482991297 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",13.952246016296 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",13.9501219598411 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",14.1591215290875 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",13.9239258957236 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",13.8132644509022 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",13.8013109439065 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",13.8408904601688 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",14.1240518398339 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",13.9490504492187 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",14.0431632184817 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",13.8830928068571 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",14.341452810951 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",14.0675993501079 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",14.0676126254608 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",13.8829543638918 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",14.1895012258296 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",14.1964764755091 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",14.0650865154627 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",14.1858808474613 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",14.0268762570222 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",14.0760329921213 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",13.9500043781445 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",14.1672138048849 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",13.9233171259718 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",13.5970999840785 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",13.8719054773683 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",13.7724180866829 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",13.7108925156919 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",13.856274697635 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",13.8262022304874 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",13.6592438072162 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",13.7420554582517 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",13.9371576295503 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",13.6637270835192 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",13.6228920981738 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",13.5652163795072 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",13.3273486072639 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",13.7395483130433 -"CanESM2","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",13.1650498328407 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",2.42710691832019 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",2.12961701603231 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",2.21765106705275 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",2.34071059357168 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",2.3636729281298 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",2.44076450764769 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",2.37602193088815 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",2.25414685174252 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",2.4649978453487 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",2.49742209219275 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",2.599182066043 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",2.62630704978324 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",2.64666815568693 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",2.80633849495785 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",2.75542889684839 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",2.94116732835723 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",2.97243901679573 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",2.73561787563827 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",2.79239732159578 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",2.87050137583949 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",2.86871103807908 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",3.07280157052381 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",3.03213060884317 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",3.13351247064732 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",3.35412490505786 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",3.12278183300191 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",3.17558313023353 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",3.27733171516672 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",3.35747552445425 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",3.41092029549925 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",3.49102879914393 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",3.46655287750973 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",3.50968042859827 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",3.55253350678588 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",3.62475746315619 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",3.69438019087206 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",3.58039990902615 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",3.61801977982884 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",3.7289022762369 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",3.83999546761039 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",3.99060934004239 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",3.82055686398783 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",3.90903280498984 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",4.08532412980491 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",4.02147216635876 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",4.10685373859803 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",4.06546413625146 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",4.15203471143085 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",4.15411774435947 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",4.29093508267595 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",4.29260355902391 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",4.45297203891005 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",4.42044301402912 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",4.2510009839285 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",4.30043457838815 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",4.41376796974556 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",4.45952294399776 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",4.68059549065716 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",4.38682406978643 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",4.6463592671103 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",4.66645956681352 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",4.64092333700188 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",4.47037088748879 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",4.41715389478481 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",4.66526714719829 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",4.64418853952039 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",4.81202245453342 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",4.71898639114421 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",4.83286303384496 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",4.61392021467408 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",4.84699440212178 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",4.75116805405508 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",4.70110009691569 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",4.79205084959288 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",4.8502630213154 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",4.58340247254435 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",4.7259131304946 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",4.81426607119246 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",4.74045905535207 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",4.85324236201593 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",4.80262090350786 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",4.73989074839123 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",4.4533626787649 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",4.58714373179559 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",4.761162967659 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",4.68999931946613 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",4.78323241112033 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",4.67451836451878 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",4.56963668850487 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",4.77552211427683 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",4.80191592954241 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",4.76267997141018 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",4.67669023100039 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",4.6736744457653 -"CESM1-BGC","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",4.65289308882243 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.79692585267106 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.732798334608519 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.761029648457002 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.771157329832722 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.826525969869617 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.831026821263131 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.785608721342952 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.790287054324499 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.830293582372596 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.871663298341807 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",0.87878332193377 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.852991146227995 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.886418093180379 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.910398697470828 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",0.882617298597183 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.904938969041305 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.911878958577527 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.893201701528297 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.964712487685856 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.967277887897902 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.949828197652181 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",0.965443684602224 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.958865634987136 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.954058997962084 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.995532684449308 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.971842550984141 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.04577971294586 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.02806745885514 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.06627415683938 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.03303711348454 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.08214114694101 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.10677263049725 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.05505095632296 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.06735589265445 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.08812770470567 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.13893508494661 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.14653735477105 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",1.18399771119718 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",1.15636826923447 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",1.12844614430781 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",1.18600088785519 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",1.21763123786948 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.14722396858477 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.20790905853046 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.20385625030213 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.24521507574245 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",1.21276827639031 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.26450067092899 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",1.23543180734293 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",1.24851150270635 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",1.23834706579562 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",1.32502070129616 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.27618859073295 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",1.30100725525452 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",1.30484293356307 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",1.32385983898211 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",1.36815468294582 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",1.42393767357414 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",1.32075093331256 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",1.31301695615433 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.42872933612197 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",1.43271731167049 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",1.37795496779674 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.38264657361037 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",1.39448083489632 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",1.44427794841803 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",1.43509314861401 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.4261991599643 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",1.54127206168858 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",1.45372582256059 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",1.4461034733235 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.42027522274077 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.47408039122366 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.52943218497367 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",1.46471113308653 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.41138259540718 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.42824334627018 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",1.39753188463113 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",1.44098781754115 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.45960994128786 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",1.53165776665139 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.44004374481785 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",1.42613858139734 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",1.44522389295098 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.51069349853491 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",1.41636228974289 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.50947461012161 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",1.47030427049498 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",1.46987018081994 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.47424732261182 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.49081930429468 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.4839604832316 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.52257421473316 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",1.48873257686033 -"CESM1-BGC","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.510016754263 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",1.63018089837867 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",1.39681839293637 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",1.4566217973556 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",1.56955310711976 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",1.5371462763938 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",1.60973784846356 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",1.59041367845425 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",1.46386012692797 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",1.6347038856342 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",1.62575865875101 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",1.72039846169163 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",1.77331615323608 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",1.76024996088168 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",1.89593957854782 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",1.872812185586 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",2.0362277441904 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",2.06056023377802 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",1.84241643250889 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",1.82768499811289 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",1.90322343829817 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",1.91888194461612 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",2.1073575069287 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",2.07326509089012 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",2.17945309067659 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",2.35859206032075 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",2.15093957453191 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",2.12980291594794 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",2.24926441570772 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",2.29120158454034 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",2.37788232487837 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",2.40888740735872 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",2.35977971985712 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",2.45462876787103 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",2.48517757984434 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",2.53662958714856 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",2.55544420665532 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",2.43386313180127 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",2.43402297178781 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",2.57253352303462 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",2.71154974987521 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",2.80460859003986 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",2.60292540120296 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",2.7618092540071 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",2.87741425081887 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",2.81761569003559 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",2.86163852851079 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",2.85269523908197 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",2.88753454378494 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",2.91868590407116 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",3.04242336565273 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",3.05425636829278 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",3.12795132063328 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",3.14425403053335 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",2.94999419816234 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",2.99559121832317 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",3.08990843510914 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",3.09136830698622 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",3.25665738397833 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",3.06607290257058 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",3.33334279715794 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",3.23773039211739 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",3.20820649351233 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",3.09241550107986 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",3.03450789577374 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",3.27078627006143 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",3.19991031384722 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",3.37692873966992 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",3.29278800202712 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",3.29159162394603 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",3.16019443646393 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",3.40089020674333 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",3.33089288609149 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",3.2270201442919 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",3.26261893111274 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",3.38555138039846 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",3.17202065801365 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",3.29766941834338 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",3.41673470868198 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",3.29947125091895 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",3.39363250262714 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",3.27096257841022 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",3.29984711706912 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",3.02722403602339 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",3.14191939800265 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",3.25046915468118 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",3.27363723418502 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",3.27375735635673 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",3.20421436875755 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",3.0997671717336 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",3.3012740522217 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",3.31109694594009 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",3.27871917702986 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",3.15411567333939 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",3.18494154128937 -"CESM1-BGC","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",3.14287650046752 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2005,"Simulated","PgC/yr","global",4.61699736686587 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",2.34878106573365 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",2.22159602281071 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",2.29633500841078 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",2.33907879165601 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",2.38360932294608 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",2.38358209030301 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",2.43202896232607 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",2.50489262212646 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",2.57303012838676 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",2.60189930997648 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",2.62981964894973 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",2.60964542030344 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",2.63861923257443 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",2.75419342312956 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",2.74695985981114 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",2.82620771112554 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",2.89658202068986 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",2.8854493162025 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",2.95971015392213 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",3.06021895967105 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",3.0547391785664 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",3.12825154859068 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",3.19123807207898 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",3.17642924743644 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",3.19003668253045 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",3.23453625460524 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",3.36729882948849 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",3.34126642932855 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",3.42535022473355 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",3.40837138842736 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",3.41312506126993 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",3.49733355351425 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",3.51387466091549 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",3.4917408286057 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",3.58135571714808 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",3.70665454121411 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",3.75502630847418 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",3.81241724045991 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",3.77864847639265 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",3.78827105915689 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",3.83930331231527 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",3.88061523185377 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",3.98728893467514 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",3.96658094622466 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",4.01243097073636 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",4.14487420704718 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",4.18179565120385 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",4.17623073225718 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",4.21236013648959 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",4.22900960114431 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",4.23783240418047 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",4.21937612532285 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",4.25725644517501 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",4.31157524836295 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",4.45645692273154 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",4.54696504196665 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",4.65123510571276 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",4.64745578817333 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",4.71273071365778 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",4.72667325359126 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",4.64830687993414 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",4.61544481955143 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",4.60354931439868 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",4.59548357883989 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",4.69922934254205 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",4.83667621869289 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",4.8722661299331 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",4.72596749814662 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",4.83212206079324 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",4.75400106758317 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",4.76342585536089 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",4.70046513121866 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",4.62037192133146 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",4.75726325156366 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",4.72939508460134 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",4.79740646072531 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",4.79741563382613 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",4.93974603952809 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",4.92096411559121 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",4.83827205157684 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",4.70282605804321 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",4.77663827380067 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",4.774000433995 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",4.8618139548631 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",4.80863777604653 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",4.79771977945033 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",4.83782400293348 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",4.768619837043 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",4.9399071421113 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",4.93275413008449 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",4.87390696834296 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",4.79950308758236 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",4.88161036641921 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",4.99460376238943 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",4.54055361780956 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2101,"Simulated","PgC/yr","global",4.78268621383761 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2102,"Simulated","PgC/yr","global",4.87828139079835 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2103,"Simulated","PgC/yr","global",5.00837659995766 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2104,"Simulated","PgC/yr","global",4.91805595597065 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2105,"Simulated","PgC/yr","global",4.87913219589976 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2106,"Simulated","PgC/yr","global",4.70218652092014 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2107,"Simulated","PgC/yr","global",4.39836080861997 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2108,"Simulated","PgC/yr","global",4.54430942927814 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2109,"Simulated","PgC/yr","global",4.62951148300544 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2110,"Simulated","PgC/yr","global",4.81988313767839 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2111,"Simulated","PgC/yr","global",4.80994293629813 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2112,"Simulated","PgC/yr","global",4.66575899091096 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2113,"Simulated","PgC/yr","global",4.86338542169799 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2114,"Simulated","PgC/yr","global",4.61996228504779 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2115,"Simulated","PgC/yr","global",4.42773537073321 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2116,"Simulated","PgC/yr","global",4.63701049292895 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2117,"Simulated","PgC/yr","global",4.47209533967983 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2118,"Simulated","PgC/yr","global",4.82143912490564 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2119,"Simulated","PgC/yr","global",4.59984682157865 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2120,"Simulated","PgC/yr","global",4.7355284491397 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2121,"Simulated","PgC/yr","global",4.84331697037057 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2122,"Simulated","PgC/yr","global",4.74852902628233 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2123,"Simulated","PgC/yr","global",4.82029478057787 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2124,"Simulated","PgC/yr","global",4.80507889958627 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2125,"Simulated","PgC/yr","global",4.54166069641525 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2126,"Simulated","PgC/yr","global",4.79500912815687 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2127,"Simulated","PgC/yr","global",4.53897412451145 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2128,"Simulated","PgC/yr","global",4.35861261611254 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2129,"Simulated","PgC/yr","global",4.7061298076368 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2130,"Simulated","PgC/yr","global",4.77579033529326 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2131,"Simulated","PgC/yr","global",4.48936714189357 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2132,"Simulated","PgC/yr","global",4.69015141263923 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2133,"Simulated","PgC/yr","global",4.48556374496448 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2134,"Simulated","PgC/yr","global",4.56417607238743 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2135,"Simulated","PgC/yr","global",4.37789447404432 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2136,"Simulated","PgC/yr","global",4.59363663232089 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2137,"Simulated","PgC/yr","global",4.37332856310924 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2138,"Simulated","PgC/yr","global",4.4486408675108 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2139,"Simulated","PgC/yr","global",4.24162232811773 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2140,"Simulated","PgC/yr","global",4.28978569399345 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2141,"Simulated","PgC/yr","global",4.29685586145345 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2142,"Simulated","PgC/yr","global",4.43558639840083 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2143,"Simulated","PgC/yr","global",4.45669714330936 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2144,"Simulated","PgC/yr","global",4.73186494199817 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2145,"Simulated","PgC/yr","global",4.81358695060041 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2146,"Simulated","PgC/yr","global",4.67363180469304 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2147,"Simulated","PgC/yr","global",4.43595102915858 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2148,"Simulated","PgC/yr","global",4.35726531692904 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2149,"Simulated","PgC/yr","global",4.4795771500393 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2150,"Simulated","PgC/yr","global",4.30415764970925 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2151,"Simulated","PgC/yr","global",4.54062298938455 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2152,"Simulated","PgC/yr","global",4.48125124093966 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2153,"Simulated","PgC/yr","global",4.41664967838756 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2154,"Simulated","PgC/yr","global",4.43421731310287 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2155,"Simulated","PgC/yr","global",4.33655245526874 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2156,"Simulated","PgC/yr","global",4.46982041067551 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2157,"Simulated","PgC/yr","global",4.55672407460564 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2158,"Simulated","PgC/yr","global",4.19829318637619 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2159,"Simulated","PgC/yr","global",4.16730645179316 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2160,"Simulated","PgC/yr","global",4.25405990619729 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2161,"Simulated","PgC/yr","global",4.31102142240071 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2162,"Simulated","PgC/yr","global",4.07500671130339 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2163,"Simulated","PgC/yr","global",4.22107916882267 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2164,"Simulated","PgC/yr","global",4.37278620352302 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2165,"Simulated","PgC/yr","global",4.14989131987904 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2166,"Simulated","PgC/yr","global",4.16253758600235 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2167,"Simulated","PgC/yr","global",4.19360343857998 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2168,"Simulated","PgC/yr","global",4.05563541563858 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2169,"Simulated","PgC/yr","global",4.14673921310844 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2170,"Simulated","PgC/yr","global",4.19385684549024 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2171,"Simulated","PgC/yr","global",3.89628374803914 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2172,"Simulated","PgC/yr","global",4.08652812593817 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2173,"Simulated","PgC/yr","global",3.84472174830817 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2174,"Simulated","PgC/yr","global",4.00747892958847 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2175,"Simulated","PgC/yr","global",3.98625810747006 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2176,"Simulated","PgC/yr","global",4.13862331215452 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2177,"Simulated","PgC/yr","global",4.06316309150217 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2178,"Simulated","PgC/yr","global",4.0317371947172 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2179,"Simulated","PgC/yr","global",3.96186797901699 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2180,"Simulated","PgC/yr","global",4.03394791201575 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2181,"Simulated","PgC/yr","global",4.00905555629258 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2182,"Simulated","PgC/yr","global",3.99097881448154 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2183,"Simulated","PgC/yr","global",3.91582589270679 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2184,"Simulated","PgC/yr","global",3.82965951675538 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2185,"Simulated","PgC/yr","global",3.81865982222996 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2186,"Simulated","PgC/yr","global",3.73196369970597 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2187,"Simulated","PgC/yr","global",3.82917334241171 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2188,"Simulated","PgC/yr","global",4.03790725165885 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2189,"Simulated","PgC/yr","global",3.79206012311594 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2190,"Simulated","PgC/yr","global",3.64972341090718 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2191,"Simulated","PgC/yr","global",3.66916923801618 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2192,"Simulated","PgC/yr","global",3.84803323770559 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2193,"Simulated","PgC/yr","global",3.88167558497713 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2194,"Simulated","PgC/yr","global",3.7057664703906 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2195,"Simulated","PgC/yr","global",3.63019273261556 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2196,"Simulated","PgC/yr","global",3.56909988112859 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2197,"Simulated","PgC/yr","global",3.91263021370727 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2198,"Simulated","PgC/yr","global",3.70340439692846 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2199,"Simulated","PgC/yr","global",3.78761690240438 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2200,"Simulated","PgC/yr","global",3.6450428362118 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2201,"Simulated","PgC/yr","global",3.64740376303634 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2202,"Simulated","PgC/yr","global",3.27517079797977 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2203,"Simulated","PgC/yr","global",3.4879775639927 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2204,"Simulated","PgC/yr","global",3.39563425127402 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2205,"Simulated","PgC/yr","global",3.56967778648049 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2206,"Simulated","PgC/yr","global",3.54808430714111 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2207,"Simulated","PgC/yr","global",3.31516895748465 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2208,"Simulated","PgC/yr","global",3.2457056514959 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2209,"Simulated","PgC/yr","global",3.39707786801618 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2210,"Simulated","PgC/yr","global",3.29522319638075 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2211,"Simulated","PgC/yr","global",3.35547326922952 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2212,"Simulated","PgC/yr","global",3.32666973264257 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2213,"Simulated","PgC/yr","global",3.43009185788128 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2214,"Simulated","PgC/yr","global",3.30322787348718 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2215,"Simulated","PgC/yr","global",3.19375150170471 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2216,"Simulated","PgC/yr","global",3.44851373761082 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2217,"Simulated","PgC/yr","global",3.33884931726147 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2218,"Simulated","PgC/yr","global",3.24759760354082 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2219,"Simulated","PgC/yr","global",3.27351161336825 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2220,"Simulated","PgC/yr","global",3.33056486057991 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2221,"Simulated","PgC/yr","global",3.13000418416684 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2222,"Simulated","PgC/yr","global",3.06219088968878 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2223,"Simulated","PgC/yr","global",3.18772936101384 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2224,"Simulated","PgC/yr","global",3.25382957891304 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2225,"Simulated","PgC/yr","global",3.30552000205554 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2226,"Simulated","PgC/yr","global",3.1574283157174 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2227,"Simulated","PgC/yr","global",3.07474313152865 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2228,"Simulated","PgC/yr","global",2.98195607005761 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2229,"Simulated","PgC/yr","global",3.18240322934798 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2230,"Simulated","PgC/yr","global",3.17313381096547 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2231,"Simulated","PgC/yr","global",2.81146023159477 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2232,"Simulated","PgC/yr","global",3.11634314376489 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2233,"Simulated","PgC/yr","global",3.01953367758259 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2234,"Simulated","PgC/yr","global",3.22493775123066 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2235,"Simulated","PgC/yr","global",2.82955761288266 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2236,"Simulated","PgC/yr","global",3.00598615430334 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2237,"Simulated","PgC/yr","global",2.88629438811589 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2238,"Simulated","PgC/yr","global",3.07936522770627 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2239,"Simulated","PgC/yr","global",2.8044370762765 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2240,"Simulated","PgC/yr","global",3.00664661756266 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2241,"Simulated","PgC/yr","global",3.07971151226237 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2242,"Simulated","PgC/yr","global",2.62743062950392 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2243,"Simulated","PgC/yr","global",2.85195832509455 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2244,"Simulated","PgC/yr","global",2.6784628826623 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2245,"Simulated","PgC/yr","global",2.79157868219664 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2246,"Simulated","PgC/yr","global",2.52650817423971 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2247,"Simulated","PgC/yr","global",2.78146763181353 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2248,"Simulated","PgC/yr","global",2.60658934443209 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2249,"Simulated","PgC/yr","global",2.49540218934597 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2250,"Simulated","PgC/yr","global",2.65885881956409 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2251,"Simulated","PgC/yr","global",2.69469124465733 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2252,"Simulated","PgC/yr","global",2.6101313079877 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2253,"Simulated","PgC/yr","global",2.26456225375091 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2254,"Simulated","PgC/yr","global",2.47117603007013 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2255,"Simulated","PgC/yr","global",2.53485110943902 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2256,"Simulated","PgC/yr","global",2.49090278339186 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2257,"Simulated","PgC/yr","global",2.52398327823794 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2258,"Simulated","PgC/yr","global",2.59519405993363 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2259,"Simulated","PgC/yr","global",2.43934995676172 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2260,"Simulated","PgC/yr","global",2.51601873344762 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2261,"Simulated","PgC/yr","global",2.60006841638392 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2262,"Simulated","PgC/yr","global",2.43777562333282 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2263,"Simulated","PgC/yr","global",2.5436446732163 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2264,"Simulated","PgC/yr","global",2.63903460204611 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2265,"Simulated","PgC/yr","global",2.55166310997396 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2266,"Simulated","PgC/yr","global",2.43671154363725 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2267,"Simulated","PgC/yr","global",2.54919783912755 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2268,"Simulated","PgC/yr","global",2.46930013095165 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2269,"Simulated","PgC/yr","global",2.34344174773536 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2270,"Simulated","PgC/yr","global",2.46981153132258 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2271,"Simulated","PgC/yr","global",2.56909773472733 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2272,"Simulated","PgC/yr","global",2.42793403278641 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2273,"Simulated","PgC/yr","global",2.4750459319802 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2274,"Simulated","PgC/yr","global",2.49251266258645 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2275,"Simulated","PgC/yr","global",2.45322541839542 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2276,"Simulated","PgC/yr","global",2.51357639535326 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2277,"Simulated","PgC/yr","global",2.32909845795964 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2278,"Simulated","PgC/yr","global",2.53307038124158 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2279,"Simulated","PgC/yr","global",2.33143645203212 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2280,"Simulated","PgC/yr","global",2.32403031975445 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2281,"Simulated","PgC/yr","global",2.28216428759431 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2282,"Simulated","PgC/yr","global",2.53521918010958 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2283,"Simulated","PgC/yr","global",2.40865790804266 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2284,"Simulated","PgC/yr","global",2.32342030854966 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2285,"Simulated","PgC/yr","global",2.32317492810263 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2286,"Simulated","PgC/yr","global",2.37008043252788 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2287,"Simulated","PgC/yr","global",2.34044902359157 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2288,"Simulated","PgC/yr","global",2.30434828529924 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2289,"Simulated","PgC/yr","global",2.22030548218855 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2290,"Simulated","PgC/yr","global",2.27931718642611 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2291,"Simulated","PgC/yr","global",2.41630254094175 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2292,"Simulated","PgC/yr","global",2.26427444771256 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2293,"Simulated","PgC/yr","global",2.26035753366077 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2294,"Simulated","PgC/yr","global",2.25264983569352 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2295,"Simulated","PgC/yr","global",2.2353505141773 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2296,"Simulated","PgC/yr","global",2.32874414694032 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2297,"Simulated","PgC/yr","global",2.16575878477702 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2298,"Simulated","PgC/yr","global",2.4356165047264 -"HadGEM2-ES","fgco2","ocean","fgco2","rcp85",2299,"Simulated","PgC/yr","global",2.1435369480312 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2005,"Simulated","PgC/yr","HL",1.78181482662779 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.945700707130434 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.857431327396449 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.891291402099205 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.903577464420661 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.943220940258782 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.943805054300603 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.944230069552903 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.979842666816381 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.00968801190016 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.998392854911681 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.03100693393422 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.02127452672293 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.03717691761174 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",1.08680468828256 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.05120296224343 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.08061079693323 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.09582996971428 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.07182111884079 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.08784634103209 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.13695896903879 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.13806530782863 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.14224860908822 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.14586286265011 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",1.19485509523031 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.17990089162693 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.16315870993446 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.24952950476566 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.20767461439466 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.23203572000231 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.24677525075643 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.23698875807629 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.26595317311739 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.29046264161665 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.27709604274737 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.30780179336314 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.32137129168103 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.3183222515676 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",1.37411725427825 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",1.34524116229637 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",1.33904709051179 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",1.32323112811198 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",1.37869625006056 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.41727091764268 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.38294933465652 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.40143781389329 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.43652160052179 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",1.48083045552242 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.45158853105315 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",1.5113079555357 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",1.48478113062449 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",1.45891591669879 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",1.49168656841722 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.46384802428274 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",1.51918034588079 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",1.56882769377719 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",1.58441572133622 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",1.55955011874473 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",1.5629884479292 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",1.57126018661102 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",1.60931023867793 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.63659313243268 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",1.5729552856506 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",1.61374921669936 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.59031324777283 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",1.6278759442055 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",1.67750353444106 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",1.72948517328164 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.66293289108925 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",1.6326736726304 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",1.65840134978001 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",1.62134513511902 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.63946006826109 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.6326663198936 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.72228937004855 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",1.722001485593 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.69549929009463 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.6963997973629 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",1.72262759594132 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",1.73580081332189 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.69209240175401 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",1.70258854630734 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.75210309385321 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",1.74408175420191 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",1.73264247455039 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.76724495012583 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",1.77154580495658 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.74165102061186 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",1.74910326745664 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",1.78391825065822 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.807008686064 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.77567948651997 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.74635023138541 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.77178240068979 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",1.83676083633656 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.68783913672279 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2101,"Simulated","PgC/yr","HL",1.89377630313829 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2102,"Simulated","PgC/yr","HL",1.79263656660577 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2103,"Simulated","PgC/yr","HL",1.75452178338973 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2104,"Simulated","PgC/yr","HL",1.83990916095119 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2105,"Simulated","PgC/yr","HL",1.7976905582071 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2106,"Simulated","PgC/yr","HL",1.64345900979491 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2107,"Simulated","PgC/yr","HL",1.61011150655382 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2108,"Simulated","PgC/yr","HL",1.74332631688178 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2109,"Simulated","PgC/yr","HL",1.911116131517 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2110,"Simulated","PgC/yr","HL",1.79298625013749 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2111,"Simulated","PgC/yr","HL",1.89040035944458 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2112,"Simulated","PgC/yr","HL",1.71111447316011 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2113,"Simulated","PgC/yr","HL",1.68045509440587 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2114,"Simulated","PgC/yr","HL",1.75132068146187 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2115,"Simulated","PgC/yr","HL",1.73633300711797 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2116,"Simulated","PgC/yr","HL",1.96421281514867 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2117,"Simulated","PgC/yr","HL",1.75136597071185 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2118,"Simulated","PgC/yr","HL",1.80950401547673 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2119,"Simulated","PgC/yr","HL",1.79144785912025 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2120,"Simulated","PgC/yr","HL",1.90292978382146 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2121,"Simulated","PgC/yr","HL",1.89189075468296 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2122,"Simulated","PgC/yr","HL",2.02425264754217 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2123,"Simulated","PgC/yr","HL",1.90847816803213 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2124,"Simulated","PgC/yr","HL",1.88586963009402 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2125,"Simulated","PgC/yr","HL",1.72953366525746 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2126,"Simulated","PgC/yr","HL",1.87499840574628 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2127,"Simulated","PgC/yr","HL",1.85079842882482 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2128,"Simulated","PgC/yr","HL",1.77199495342475 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2129,"Simulated","PgC/yr","HL",1.84037287956653 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2130,"Simulated","PgC/yr","HL",1.92543186495682 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2131,"Simulated","PgC/yr","HL",1.9077871009906 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2132,"Simulated","PgC/yr","HL",1.93850079075776 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2133,"Simulated","PgC/yr","HL",1.85443239493873 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2134,"Simulated","PgC/yr","HL",2.00754253821697 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2135,"Simulated","PgC/yr","HL",1.8476011160374 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2136,"Simulated","PgC/yr","HL",1.93386360460445 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2137,"Simulated","PgC/yr","HL",1.76076899335805 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2138,"Simulated","PgC/yr","HL",1.81725912290354 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2139,"Simulated","PgC/yr","HL",1.83733434980693 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2140,"Simulated","PgC/yr","HL",1.78851127528192 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2141,"Simulated","PgC/yr","HL",1.91290424493254 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2142,"Simulated","PgC/yr","HL",1.86748327721378 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2143,"Simulated","PgC/yr","HL",1.84134362125932 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2144,"Simulated","PgC/yr","HL",1.8832370796669 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2145,"Simulated","PgC/yr","HL",2.04335532840018 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2146,"Simulated","PgC/yr","HL",2.09167769508178 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2147,"Simulated","PgC/yr","HL",1.84789883421456 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2148,"Simulated","PgC/yr","HL",1.83251311968956 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2149,"Simulated","PgC/yr","HL",1.84154570874927 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2150,"Simulated","PgC/yr","HL",1.73458152205999 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2151,"Simulated","PgC/yr","HL",1.87930539537583 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2152,"Simulated","PgC/yr","HL",1.91857171641407 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2153,"Simulated","PgC/yr","HL",2.0045635520928 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2154,"Simulated","PgC/yr","HL",1.85264067281802 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2155,"Simulated","PgC/yr","HL",1.87081591644536 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2156,"Simulated","PgC/yr","HL",1.94595637565483 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2157,"Simulated","PgC/yr","HL",2.00277182997208 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2158,"Simulated","PgC/yr","HL",1.81919338887877 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2159,"Simulated","PgC/yr","HL",1.90691740304278 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2160,"Simulated","PgC/yr","HL",1.89539300305789 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2161,"Simulated","PgC/yr","HL",1.89919116525739 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2162,"Simulated","PgC/yr","HL",1.84147714335089 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2163,"Simulated","PgC/yr","HL",1.84403571532186 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2164,"Simulated","PgC/yr","HL",1.84829759613669 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2165,"Simulated","PgC/yr","HL",1.91144813239335 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2166,"Simulated","PgC/yr","HL",1.98705411457074 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2167,"Simulated","PgC/yr","HL",1.9381543550607 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2168,"Simulated","PgC/yr","HL",1.98000811771134 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2169,"Simulated","PgC/yr","HL",1.84306858233425 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2170,"Simulated","PgC/yr","HL",2.09908275810636 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2171,"Simulated","PgC/yr","HL",1.93548571758182 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2172,"Simulated","PgC/yr","HL",2.01721025938795 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2173,"Simulated","PgC/yr","HL",1.94961560270499 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2174,"Simulated","PgC/yr","HL",1.8812667266399 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2175,"Simulated","PgC/yr","HL",2.02959894426289 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2176,"Simulated","PgC/yr","HL",2.05447555340517 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2177,"Simulated","PgC/yr","HL",1.9175486484962 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2178,"Simulated","PgC/yr","HL",1.98203079696342 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2179,"Simulated","PgC/yr","HL",1.89635652734033 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2180,"Simulated","PgC/yr","HL",1.88016246285553 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2181,"Simulated","PgC/yr","HL",2.09412981025001 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2182,"Simulated","PgC/yr","HL",1.90144480164084 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2183,"Simulated","PgC/yr","HL",1.96979367770594 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2184,"Simulated","PgC/yr","HL",1.99393591534456 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2185,"Simulated","PgC/yr","HL",1.83895826713688 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2186,"Simulated","PgC/yr","HL",1.92636651959784 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2187,"Simulated","PgC/yr","HL",1.83393675388215 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2188,"Simulated","PgC/yr","HL",1.93829148585746 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2189,"Simulated","PgC/yr","HL",1.92016495975001 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2190,"Simulated","PgC/yr","HL",1.89148657970306 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2191,"Simulated","PgC/yr","HL",1.80488126414413 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2192,"Simulated","PgC/yr","HL",1.9354406087671 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2193,"Simulated","PgC/yr","HL",1.94158623368467 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2194,"Simulated","PgC/yr","HL",1.94096914509929 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2195,"Simulated","PgC/yr","HL",1.83893481055322 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2196,"Simulated","PgC/yr","HL",1.70859649912239 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2197,"Simulated","PgC/yr","HL",2.07185868624601 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2198,"Simulated","PgC/yr","HL",1.8240867930997 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2199,"Simulated","PgC/yr","HL",1.89765746555688 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2200,"Simulated","PgC/yr","HL",1.93195640391805 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2201,"Simulated","PgC/yr","HL",1.87996578842334 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2202,"Simulated","PgC/yr","HL",1.74103244343559 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2203,"Simulated","PgC/yr","HL",1.88771548279239 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2204,"Simulated","PgC/yr","HL",1.75700475298722 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2205,"Simulated","PgC/yr","HL",1.93699776505126 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2206,"Simulated","PgC/yr","HL",1.82625923361665 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2207,"Simulated","PgC/yr","HL",1.69108110723679 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2208,"Simulated","PgC/yr","HL",1.61567649080831 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2209,"Simulated","PgC/yr","HL",1.82419505425503 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2210,"Simulated","PgC/yr","HL",1.74770259365074 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2211,"Simulated","PgC/yr","HL",1.81184967384221 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2212,"Simulated","PgC/yr","HL",1.76389142551303 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2213,"Simulated","PgC/yr","HL",1.77993879613236 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2214,"Simulated","PgC/yr","HL",1.79117810840822 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2215,"Simulated","PgC/yr","HL",1.71264727068433 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2216,"Simulated","PgC/yr","HL",1.8182677560007 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2217,"Simulated","PgC/yr","HL",1.74010248011131 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2218,"Simulated","PgC/yr","HL",1.81105575870312 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2219,"Simulated","PgC/yr","HL",1.81752616708669 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2220,"Simulated","PgC/yr","HL",1.81765247176791 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2221,"Simulated","PgC/yr","HL",1.76049852090499 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2222,"Simulated","PgC/yr","HL",1.7517984740274 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2223,"Simulated","PgC/yr","HL",1.75601253949862 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2224,"Simulated","PgC/yr","HL",1.68151587329285 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2225,"Simulated","PgC/yr","HL",1.91223663447467 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2226,"Simulated","PgC/yr","HL",1.64557172624117 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2227,"Simulated","PgC/yr","HL",1.68892797329253 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2228,"Simulated","PgC/yr","HL",1.65534319768601 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2229,"Simulated","PgC/yr","HL",1.65671270130094 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2230,"Simulated","PgC/yr","HL",1.77725933253794 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2231,"Simulated","PgC/yr","HL",1.57507585103063 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2232,"Simulated","PgC/yr","HL",1.78383096510174 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2233,"Simulated","PgC/yr","HL",1.71900707225419 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2234,"Simulated","PgC/yr","HL",1.81670879536395 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2235,"Simulated","PgC/yr","HL",1.61530912462122 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2236,"Simulated","PgC/yr","HL",1.71940475156477 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2237,"Simulated","PgC/yr","HL",1.60381269210146 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2238,"Simulated","PgC/yr","HL",1.76197249653481 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2239,"Simulated","PgC/yr","HL",1.61354212213098 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2240,"Simulated","PgC/yr","HL",1.744767814165 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2241,"Simulated","PgC/yr","HL",1.79557657871402 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2242,"Simulated","PgC/yr","HL",1.57412549852209 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2243,"Simulated","PgC/yr","HL",1.68848590690826 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2244,"Simulated","PgC/yr","HL",1.548303228188 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2245,"Simulated","PgC/yr","HL",1.59075332936924 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2246,"Simulated","PgC/yr","HL",1.51024095163229 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2247,"Simulated","PgC/yr","HL",1.52259300814968 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2248,"Simulated","PgC/yr","HL",1.4754562815542 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2249,"Simulated","PgC/yr","HL",1.55987327829339 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2250,"Simulated","PgC/yr","HL",1.56096617465645 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2251,"Simulated","PgC/yr","HL",1.59166380568557 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2252,"Simulated","PgC/yr","HL",1.49159657633185 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2253,"Simulated","PgC/yr","HL",1.40221688823233 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2254,"Simulated","PgC/yr","HL",1.53091323880732 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2255,"Simulated","PgC/yr","HL",1.58748745118345 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2256,"Simulated","PgC/yr","HL",1.56445182298756 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2257,"Simulated","PgC/yr","HL",1.49592612036876 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2258,"Simulated","PgC/yr","HL",1.48103191148896 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2259,"Simulated","PgC/yr","HL",1.4611663503564 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2260,"Simulated","PgC/yr","HL",1.49466668226176 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2261,"Simulated","PgC/yr","HL",1.5264362791639 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2262,"Simulated","PgC/yr","HL",1.4898752239621 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2263,"Simulated","PgC/yr","HL",1.51977695506429 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2264,"Simulated","PgC/yr","HL",1.53119056780023 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2265,"Simulated","PgC/yr","HL",1.47649865604477 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2266,"Simulated","PgC/yr","HL",1.52287250236569 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2267,"Simulated","PgC/yr","HL",1.57121579953733 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2268,"Simulated","PgC/yr","HL",1.43594583161069 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2269,"Simulated","PgC/yr","HL",1.50674610110298 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2270,"Simulated","PgC/yr","HL",1.52666326671958 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2271,"Simulated","PgC/yr","HL",1.48981189118624 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2272,"Simulated","PgC/yr","HL",1.52296398304195 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2273,"Simulated","PgC/yr","HL",1.513743741313 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2274,"Simulated","PgC/yr","HL",1.48198027920965 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2275,"Simulated","PgC/yr","HL",1.41462975143196 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2276,"Simulated","PgC/yr","HL",1.44994165333651 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2277,"Simulated","PgC/yr","HL",1.40791467283735 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2278,"Simulated","PgC/yr","HL",1.44640602443869 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2279,"Simulated","PgC/yr","HL",1.31103158449716 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2280,"Simulated","PgC/yr","HL",1.40503113696513 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2281,"Simulated","PgC/yr","HL",1.43239919616208 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2282,"Simulated","PgC/yr","HL",1.51149858538671 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2283,"Simulated","PgC/yr","HL",1.4727376635086 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2284,"Simulated","PgC/yr","HL",1.40118299419892 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2285,"Simulated","PgC/yr","HL",1.36012242494635 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2286,"Simulated","PgC/yr","HL",1.40819723445276 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2287,"Simulated","PgC/yr","HL",1.47647718424896 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2288,"Simulated","PgC/yr","HL",1.3537844560428 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2289,"Simulated","PgC/yr","HL",1.39921209986614 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2290,"Simulated","PgC/yr","HL",1.36525779284943 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2291,"Simulated","PgC/yr","HL",1.45587851465956 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2292,"Simulated","PgC/yr","HL",1.44288681514942 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2293,"Simulated","PgC/yr","HL",1.44802073957044 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2294,"Simulated","PgC/yr","HL",1.2367485536379 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2295,"Simulated","PgC/yr","HL",1.27107491815843 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2296,"Simulated","PgC/yr","HL",1.36699754961559 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2297,"Simulated","PgC/yr","HL",1.30680777552195 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2298,"Simulated","PgC/yr","HL",1.45098691479122 -"HadGEM2-ES","fgco2","ocean","fgco2_HL","rcp85",2299,"Simulated","PgC/yr","HL",1.32204210486475 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2005,"Simulated","PgC/yr","LL",2.83518285337698 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",1.40307991290716 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",1.36416466419501 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",1.40504371917154 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",1.4355015572152 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",1.44038836712107 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",1.43977724413843 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",1.48779870839313 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",1.52504967356756 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",1.56334244641952 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",1.60350651166142 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",1.59881294222436 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",1.5883707103905 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",1.60144222035325 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",1.66738915359687 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",1.69575685441964 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",1.74559719458711 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",1.80075188919772 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",1.81362846783754 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",1.87186365707173 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",1.92326006611437 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",1.91667370628523 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",1.98600307238495 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",2.04537499867697 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",1.9815740008396 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",2.01013590833354 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",2.07137743616139 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",2.11776915861218 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",2.13359241285093 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",2.19331458749268 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",2.16159609694056 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",2.17613647601693 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",2.23138030279377 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",2.22341251516315 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",2.21464471199162 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",2.27355382736081 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",2.38528353402785 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",2.43670385657851 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",2.43830026440155 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",2.43340741573103 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",2.44922414810395 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",2.51607182348285 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",2.50191864999589 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",2.57001804051158 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",2.58363183153995 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",2.61099347417193 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",2.708352370274 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",2.70096551180277 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",2.72464230024494 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",2.70105271156433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",2.74422842951278 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",2.7789163014189 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",2.72768921933706 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",2.79340861192865 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",2.79239506566968 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",2.88762879971591 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",2.96254885412918 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",3.09168493757577 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",3.08446764761593 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",3.1414706873108 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",3.11736297262316 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",3.01171406040871 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",3.0424892959224 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",2.98980034969394 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",3.0051704550333 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",3.07135338319946 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",3.15917272200765 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",3.1427808576894 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",3.06303486411793 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",3.1994481420697 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",3.09559998947407 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",3.14208036098993 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",3.06100487299298 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",2.98770562301193 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",3.03497344943823 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",3.00739368662707 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",3.10190735837635 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",3.10101579516333 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",3.21711877519036 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",3.18516308196277 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",3.14617947443478 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",3.00023775051608 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",3.02453532396433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",3.02991803722332 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",3.12917213922334 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",3.04139313936302 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",3.02617400313993 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",3.09617294746412 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",3.01951686898908 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",3.15598884373325 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",3.1257452610594 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",3.09822709364768 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",3.05315254654248 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",3.10982828519329 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",3.1578425029304 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",2.85271411180951 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2101,"Simulated","PgC/yr","LL",2.88891022557477 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2102,"Simulated","PgC/yr","LL",3.08564544827339 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2103,"Simulated","PgC/yr","LL",3.25385547916715 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2104,"Simulated","PgC/yr","LL",3.07814675188083 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2105,"Simulated","PgC/yr","LL",3.08144246807655 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2106,"Simulated","PgC/yr","LL",3.05872801716911 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2107,"Simulated","PgC/yr","LL",2.78824933296174 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2108,"Simulated","PgC/yr","LL",2.80098291365463 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2109,"Simulated","PgC/yr","LL",2.71839483588799 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2110,"Simulated","PgC/yr","LL",3.02689744714507 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2111,"Simulated","PgC/yr","LL",2.91954270469212 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2112,"Simulated","PgC/yr","LL",2.95464483585327 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2113,"Simulated","PgC/yr","LL",3.18293042989614 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2114,"Simulated","PgC/yr","LL",2.86864123280024 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2115,"Simulated","PgC/yr","LL",2.69140204100087 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2116,"Simulated","PgC/yr","LL",2.67279781486522 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2117,"Simulated","PgC/yr","LL",2.72072918075134 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2118,"Simulated","PgC/yr","LL",3.01193580384669 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2119,"Simulated","PgC/yr","LL",2.80839948284794 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2120,"Simulated","PgC/yr","LL",2.83259995296062 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2121,"Simulated","PgC/yr","LL",2.95142641584508 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2122,"Simulated","PgC/yr","LL",2.72427610955653 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2123,"Simulated","PgC/yr","LL",2.91181695074869 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2124,"Simulated","PgC/yr","LL",2.9192093648834 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2125,"Simulated","PgC/yr","LL",2.81212709149148 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2126,"Simulated","PgC/yr","LL",2.92001131282901 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2127,"Simulated","PgC/yr","LL",2.68817685757626 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2128,"Simulated","PgC/yr","LL",2.58661739678322 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2129,"Simulated","PgC/yr","LL",2.8657571188031 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2130,"Simulated","PgC/yr","LL",2.85035778584283 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2131,"Simulated","PgC/yr","LL",2.58157961776108 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2132,"Simulated","PgC/yr","LL",2.75164958816723 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2133,"Simulated","PgC/yr","LL",2.63113130497825 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2134,"Simulated","PgC/yr","LL",2.55663323943876 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2135,"Simulated","PgC/yr","LL",2.53029359733625 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2136,"Simulated","PgC/yr","LL",2.65977244106441 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2137,"Simulated","PgC/yr","LL",2.6125599297223 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2138,"Simulated","PgC/yr","LL",2.63138251758772 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2139,"Simulated","PgC/yr","LL",2.40428825103513 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2140,"Simulated","PgC/yr","LL",2.50127467613355 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2141,"Simulated","PgC/yr","LL",2.38395162409651 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2142,"Simulated","PgC/yr","LL",2.56810302746557 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2143,"Simulated","PgC/yr","LL",2.6153532206991 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2144,"Simulated","PgC/yr","LL",2.84862828364689 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2145,"Simulated","PgC/yr","LL",2.77023159164896 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2146,"Simulated","PgC/yr","LL",2.58195450427059 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2147,"Simulated","PgC/yr","LL",2.58805124106186 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2148,"Simulated","PgC/yr","LL",2.52475242689284 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2149,"Simulated","PgC/yr","LL",2.63803095591747 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2150,"Simulated","PgC/yr","LL",2.56957551983798 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2151,"Simulated","PgC/yr","LL",2.66131836481497 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2152,"Simulated","PgC/yr","LL",2.5626787675058 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2153,"Simulated","PgC/yr","LL",2.41208550395202 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2154,"Simulated","PgC/yr","LL",2.58157671915405 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2155,"Simulated","PgC/yr","LL",2.46573485531052 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2156,"Simulated","PgC/yr","LL",2.52386352073626 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2157,"Simulated","PgC/yr","LL",2.55395299413623 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2158,"Simulated","PgC/yr","LL",2.37910032212679 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2159,"Simulated","PgC/yr","LL",2.26038980352362 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2160,"Simulated","PgC/yr","LL",2.35866610875141 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2161,"Simulated","PgC/yr","LL",2.41183042653317 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2162,"Simulated","PgC/yr","LL",2.23352937835764 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2163,"Simulated","PgC/yr","LL",2.37704231113385 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2164,"Simulated","PgC/yr","LL",2.52448768745055 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2165,"Simulated","PgC/yr","LL",2.23844348347973 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2166,"Simulated","PgC/yr","LL",2.17548380633348 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2167,"Simulated","PgC/yr","LL",2.25544961093824 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2168,"Simulated","PgC/yr","LL",2.07562776027309 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2169,"Simulated","PgC/yr","LL",2.30367083752758 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2170,"Simulated","PgC/yr","LL",2.09477305972143 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2171,"Simulated","PgC/yr","LL",1.96079654408149 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2172,"Simulated","PgC/yr","LL",2.06931749276377 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2173,"Simulated","PgC/yr","LL",1.89510541290847 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2174,"Simulated","PgC/yr","LL",2.1262123177961 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2175,"Simulated","PgC/yr","LL",1.9566582994417 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2176,"Simulated","PgC/yr","LL",2.08414869874571 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2177,"Simulated","PgC/yr","LL",2.14561462706798 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2178,"Simulated","PgC/yr","LL",2.04970551758323 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2179,"Simulated","PgC/yr","LL",2.0655125879327 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2180,"Simulated","PgC/yr","LL",2.15378580029203 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2181,"Simulated","PgC/yr","LL",1.91492512159299 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2182,"Simulated","PgC/yr","LL",2.08953334440938 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2183,"Simulated","PgC/yr","LL",1.94603200606129 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2184,"Simulated","PgC/yr","LL",1.83572358304242 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2185,"Simulated","PgC/yr","LL",1.97970125914615 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2186,"Simulated","PgC/yr","LL",1.80559739395338 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2187,"Simulated","PgC/yr","LL",1.99523682663693 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2188,"Simulated","PgC/yr","LL",2.0996166320724 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2189,"Simulated","PgC/yr","LL",1.87189433399615 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2190,"Simulated","PgC/yr","LL",1.75823801985497 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2191,"Simulated","PgC/yr","LL",1.8642883891434 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2192,"Simulated","PgC/yr","LL",1.91259270913433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2193,"Simulated","PgC/yr","LL",1.94008986164508 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2194,"Simulated","PgC/yr","LL",1.76479756756907 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2195,"Simulated","PgC/yr","LL",1.79125798496459 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2196,"Simulated","PgC/yr","LL",1.86050280835921 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2197,"Simulated","PgC/yr","LL",1.84077199029034 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2198,"Simulated","PgC/yr","LL",1.87931670040353 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2199,"Simulated","PgC/yr","LL",1.88995941922379 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2200,"Simulated","PgC/yr","LL",1.71308545191049 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2201,"Simulated","PgC/yr","LL",1.76743819857549 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2202,"Simulated","PgC/yr","LL",1.53413801436675 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2203,"Simulated","PgC/yr","LL",1.60026297039227 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2204,"Simulated","PgC/yr","LL",1.63862989927414 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2205,"Simulated","PgC/yr","LL",1.63268099144152 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2206,"Simulated","PgC/yr","LL",1.72182571831522 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2207,"Simulated","PgC/yr","LL",1.62408758779309 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2208,"Simulated","PgC/yr","LL",1.63002876600696 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2209,"Simulated","PgC/yr","LL",1.57288176216282 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2210,"Simulated","PgC/yr","LL",1.54751991683254 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2211,"Simulated","PgC/yr","LL",1.54362418898113 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2212,"Simulated","PgC/yr","LL",1.56277818425057 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2213,"Simulated","PgC/yr","LL",1.65015379463222 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2214,"Simulated","PgC/yr","LL",1.51204966257828 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2215,"Simulated","PgC/yr","LL",1.48110413390144 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2216,"Simulated","PgC/yr","LL",1.63024616153438 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2217,"Simulated","PgC/yr","LL",1.59874699891438 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2218,"Simulated","PgC/yr","LL",1.43654288179155 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2219,"Simulated","PgC/yr","LL",1.45598480535953 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2220,"Simulated","PgC/yr","LL",1.51291151506922 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2221,"Simulated","PgC/yr","LL",1.36950486455086 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2222,"Simulated","PgC/yr","LL",1.31039260513881 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2223,"Simulated","PgC/yr","LL",1.43171670108277 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2224,"Simulated","PgC/yr","LL",1.57231363518449 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2225,"Simulated","PgC/yr","LL",1.39328213803681 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2226,"Simulated","PgC/yr","LL",1.51185642210946 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2227,"Simulated","PgC/yr","LL",1.38581532632161 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2228,"Simulated","PgC/yr","LL",1.32661321009157 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2229,"Simulated","PgC/yr","LL",1.52569050727229 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2230,"Simulated","PgC/yr","LL",1.39587445892603 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2231,"Simulated","PgC/yr","LL",1.23638537039013 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2232,"Simulated","PgC/yr","LL",1.33251284160464 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2233,"Simulated","PgC/yr","LL",1.30052671300321 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2234,"Simulated","PgC/yr","LL",1.4082283220977 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2235,"Simulated","PgC/yr","LL",1.21424870848445 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2236,"Simulated","PgC/yr","LL",1.28658151457081 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2237,"Simulated","PgC/yr","LL",1.2824819180248 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2238,"Simulated","PgC/yr","LL",1.31739274112182 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2239,"Simulated","PgC/yr","LL",1.19089559782755 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2240,"Simulated","PgC/yr","LL",1.26187861923921 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2241,"Simulated","PgC/yr","LL",1.28413509023555 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2242,"Simulated","PgC/yr","LL",1.05330548542067 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2243,"Simulated","PgC/yr","LL",1.16347187669496 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2244,"Simulated","PgC/yr","LL",1.13016011847742 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2245,"Simulated","PgC/yr","LL",1.20082525931787 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2246,"Simulated","PgC/yr","LL",1.01626805096429 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2247,"Simulated","PgC/yr","LL",1.2588746961514 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2248,"Simulated","PgC/yr","LL",1.13113308423793 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2249,"Simulated","PgC/yr","LL",0.935528511522377 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2250,"Simulated","PgC/yr","LL",1.09789282499386 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2251,"Simulated","PgC/yr","LL",1.10302722425041 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2252,"Simulated","PgC/yr","LL",1.11853477187321 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2253,"Simulated","PgC/yr","LL",0.862345060892269 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2254,"Simulated","PgC/yr","LL",0.940262709767998 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2255,"Simulated","PgC/yr","LL",0.947363234174555 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2256,"Simulated","PgC/yr","LL",0.926451040499557 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2257,"Simulated","PgC/yr","LL",1.02805765196699 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2258,"Simulated","PgC/yr","LL",1.11416174006381 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2259,"Simulated","PgC/yr","LL",0.978183253166893 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2260,"Simulated","PgC/yr","LL",1.02135220769894 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2261,"Simulated","PgC/yr","LL",1.07363245033585 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2262,"Simulated","PgC/yr","LL",0.947900249437406 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2263,"Simulated","PgC/yr","LL",1.02386819860298 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2264,"Simulated","PgC/yr","LL",1.10784470913809 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2265,"Simulated","PgC/yr","LL",1.07516484725359 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2266,"Simulated","PgC/yr","LL",0.913839297922253 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2267,"Simulated","PgC/yr","LL",0.977982283079321 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2268,"Simulated","PgC/yr","LL",1.03335437321735 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2269,"Simulated","PgC/yr","LL",0.83669606022532 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2270,"Simulated","PgC/yr","LL",0.943148756169825 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2271,"Simulated","PgC/yr","LL",1.07928570025118 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2272,"Simulated","PgC/yr","LL",0.90496946378318 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2273,"Simulated","PgC/yr","LL",0.961302345532184 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2274,"Simulated","PgC/yr","LL",1.01053267384971 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2275,"Simulated","PgC/yr","LL",1.03859505473175 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2276,"Simulated","PgC/yr","LL",1.06363515468145 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2277,"Simulated","PgC/yr","LL",0.921183788420696 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2278,"Simulated","PgC/yr","LL",1.08666362135073 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2279,"Simulated","PgC/yr","LL",1.02040532940172 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2280,"Simulated","PgC/yr","LL",0.918999398161154 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2281,"Simulated","PgC/yr","LL",0.849765492853024 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2282,"Simulated","PgC/yr","LL",1.02372036964433 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2283,"Simulated","PgC/yr","LL",0.935920596433613 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2284,"Simulated","PgC/yr","LL",0.922237915178109 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2285,"Simulated","PgC/yr","LL",0.963052621078521 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2286,"Simulated","PgC/yr","LL",0.961882743280284 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2287,"Simulated","PgC/yr","LL",0.863971469298093 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2288,"Simulated","PgC/yr","LL",0.950563489578684 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2289,"Simulated","PgC/yr","LL",0.821093148431152 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2290,"Simulated","PgC/yr","LL",0.914059205575771 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2291,"Simulated","PgC/yr","LL",0.960423970981162 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2292,"Simulated","PgC/yr","LL",0.821387260424696 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2293,"Simulated","PgC/yr","LL",0.812336359966339 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2294,"Simulated","PgC/yr","LL",1.01590089407353 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2295,"Simulated","PgC/yr","LL",0.964275736625917 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2296,"Simulated","PgC/yr","LL",0.961746991850939 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2297,"Simulated","PgC/yr","LL",0.858950695437211 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2298,"Simulated","PgC/yr","LL",0.984629755206729 -"HadGEM2-ES","fgco2","ocean","fgco2_LL","rcp85",2299,"Simulated","PgC/yr","LL",0.821494412264656 -"inmcm4","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",4.0638777778448 -"inmcm4","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",3.33486506299222 -"inmcm4","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",3.89832995994973 -"inmcm4","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",4.01421411796503 -"inmcm4","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",3.89993400362287 -"inmcm4","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",4.33849028318183 -"inmcm4","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",3.63686969874741 -"inmcm4","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",3.79344218395291 -"inmcm4","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",4.25526052421608 -"inmcm4","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",4.35058230471778 -"inmcm4","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",4.26017662102911 -"inmcm4","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",4.29144290536152 -"inmcm4","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",4.8351074597983 -"inmcm4","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",4.82385858942388 -"inmcm4","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",4.90742766532048 -"inmcm4","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",4.76694017361504 -"inmcm4","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",4.92945584627613 -"inmcm4","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",4.26108260865931 -"inmcm4","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",5.0018743051857 -"inmcm4","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",5.40635722398427 -"inmcm4","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",5.40414538028684 -"inmcm4","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",4.74220431210004 -"inmcm4","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",5.14867400579005 -"inmcm4","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",5.07989320717626 -"inmcm4","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",4.72425250423966 -"inmcm4","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",4.63022743995521 -"inmcm4","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",5.54084440417169 -"inmcm4","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",5.69375295201269 -"inmcm4","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",5.08218730952359 -"inmcm4","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",5.59074227270743 -"inmcm4","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",5.79083186867484 -"inmcm4","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",6.19965164629337 -"inmcm4","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",5.15558487486327 -"inmcm4","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",5.93310620105321 -"inmcm4","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",6.48824240970791 -"inmcm4","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",5.93993823892027 -"inmcm4","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",6.13974449953801 -"inmcm4","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",6.55060246370417 -"inmcm4","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",6.89286014129382 -"inmcm4","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",6.544077753293 -"inmcm4","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",6.59442347447823 -"inmcm4","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",7.06754209677201 -"inmcm4","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",6.99399143894501 -"inmcm4","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",6.34889397180739 -"inmcm4","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",5.85148048576059 -"inmcm4","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",7.9791804392248 -"inmcm4","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",6.32084262970874 -"inmcm4","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",7.91468166033103 -"inmcm4","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",7.3599556024446 -"inmcm4","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",6.41038231261091 -"inmcm4","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",8.24763839807524 -"inmcm4","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",6.6958758093603 -"inmcm4","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",7.6065144807205 -"inmcm4","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",7.3467565165787 -"inmcm4","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",6.86816312414128 -"inmcm4","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",8.58138459036229 -"inmcm4","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",7.19109801637214 -"inmcm4","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",8.66102695820721 -"inmcm4","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",7.52155500514426 -"inmcm4","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",7.25718827164531 -"inmcm4","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",9.30264556994262 -"inmcm4","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",7.26936140934991 -"inmcm4","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",9.09783866889944 -"inmcm4","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",8.15171795739924 -"inmcm4","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",8.5036421688339 -"inmcm4","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",8.55710914879051 -"inmcm4","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",7.4227155248779 -"inmcm4","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",9.42790607156577 -"inmcm4","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",7.84758830652152 -"inmcm4","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",9.67934677221724 -"inmcm4","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",8.69854033000735 -"inmcm4","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",9.59125347057589 -"inmcm4","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",9.03387457123005 -"inmcm4","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",8.54512794793568 -"inmcm4","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",9.37845148575451 -"inmcm4","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",8.97126431384033 -"inmcm4","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",9.45194844696282 -"inmcm4","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",8.8260800817216 -"inmcm4","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",8.7616018674903 -"inmcm4","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",9.07758133387924 -"inmcm4","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",9.35026875831227 -"inmcm4","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",8.9880679280458 -"inmcm4","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",9.3474034153406 -"inmcm4","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",9.06976219221333 -"inmcm4","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",8.95186383975663 -"inmcm4","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",9.23288109497372 -"inmcm4","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",9.68451878482998 -"inmcm4","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",9.3399110233118 -"inmcm4","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",9.06653125524209 -"inmcm4","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",9.47068628192229 -"inmcm4","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",9.372003321587 -"inmcm4","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",8.92838585009642 -"inmcm4","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",9.54804825719486 -"inmcm4","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",9.64653585323663 -"inmcm4","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",9.24765794744404 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.359143762575296 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.326198803773398 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.200206849652804 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.448020705768469 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.416309057931147 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.327833477957805 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.296857175668422 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.204391340540839 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.312983038824065 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.410176193554127 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",0.368100952033704 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.304355362552987 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.452849612378622 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.37039757472328 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",0.415288374933565 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.468743423993892 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.571718271769876 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.393555459002383 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.360350430585237 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.636373503288857 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.583766043965996 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",0.390420356746925 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.22579457139466 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.311374663814234 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.14410979926581 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.301654282623042 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.600315959825418 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",0.591529113386647 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",0.410236355064594 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",0.369314667534872 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.462754087791843 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",0.621244430416639 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",0.390461610354103 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.557693420449775 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",0.71492312159524 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",0.702874661838999 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.689356370437032 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",0.848945777913048 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",0.876360003112686 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",0.856629606029912 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.779774995308433 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.962631093452483 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",0.916593271072634 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",0.708914877489901 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",0.707632405976771 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.07438986553673 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",0.667876476629873 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",0.788910434727854 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",0.716013420054934 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",0.583800593862008 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.860644957128519 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",0.778212514936586 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",0.834865406113287 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",0.874273601929686 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",0.724581794265695 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",0.900502301593062 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",0.671648775226192 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",0.952067419774571 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",0.747524128447296 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",0.732169192075781 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.25855748460896 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",0.849969726821198 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",1.09197094968556 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",0.920305064378427 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",0.903850203705544 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",0.924681900209927 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",0.859980430272902 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.11153994203025 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",0.819696282864101 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",1.05370307232756 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",1.08979808781751 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.28995921472236 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.14252621394137 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.01057328547366 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",1.14148473225017 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.15623134980584 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.19420701411301 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",0.98810605533472 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",1.07049139965846 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.12798019205059 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",1.17045971892135 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.13311523480401 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",1.01897956738622 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",0.995588084556474 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.12838138338039 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",1.07431973440453 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.19520913298736 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",1.13751699468984 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",1.03490294408663 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.14859238498679 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.20363243201288 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.12852731801578 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.2009346179935 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",1.20741040298018 -"inmcm4","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.14310221743158 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",3.7047340643433 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",3.00866680707564 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",3.69812336755229 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",3.56619381495911 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",3.4836256199787 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",4.01065665176854 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",3.34001306088523 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",3.58905123816104 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",3.94227752981527 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",3.94040622994549 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",3.89207564020704 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",3.98708778520325 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",4.38225720578522 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",4.4534607481851 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",4.49213977884414 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",4.29819624151035 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",4.35773715982554 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",3.8675264765108 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",4.64152444391561 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",4.76998316231048 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",4.82037917016246 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",4.35178452388085 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",4.92287942641144 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",4.76851854016136 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",4.58014231405842 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",4.32857283488407 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",4.94052865713348 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",5.10222333063255 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",4.67195053744148 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",5.2214274617565 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",5.32807699546571 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",5.57840800024491 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",4.76512341207812 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",5.37541272920491 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",5.77331921702381 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",5.23706368629082 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",5.45038798908092 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",5.70165658497745 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",6.01649987629437 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",5.68744810012594 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",5.81464796171008 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",6.10491103041174 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",6.07739768113339 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",5.63997939538976 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",5.14384810564054 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",6.90479078325616 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",5.65296687648806 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",7.12577110957989 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",6.64394245203041 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",5.82658235133602 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",7.38699311842486 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",5.91766360189622 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",6.77164896223074 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",6.47248363087055 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",6.14358132574981 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",7.68088231591984 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",6.51944956935541 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",7.7089595786963 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",6.77403079308159 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",6.52501882176869 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",8.04408822648542 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",6.41939132061284 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",8.00586731488164 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",7.23141316960402 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",7.59979233136562 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",7.63242651991418 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",6.56273502593871 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",8.31636623990336 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",7.02789280871467 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",8.62564319058065 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",7.60874215299385 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",8.30129392886714 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",7.89134822757068 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",7.53455404259627 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",8.23696605466101 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",7.81503258122156 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",8.25774155969868 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",7.83797444585953 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",7.6911104061832 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",7.94960117133857 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",8.1798089083791 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",7.8549529980494 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",8.32842486520531 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",8.07417364249351 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",7.82348254837214 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",8.1585616960091 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",8.48930909503671 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",8.20239359544856 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",8.0316277764189 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",8.32209466927651 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",8.16837146145717 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",7.79985932869859 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",8.34711359912264 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",8.43912564666164 -"inmcm4","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",8.10455605941453 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",3.98429541253157 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",4.11144925000072 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",4.09574687876657 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",4.13845210804299 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",4.30416027500085 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",4.41762579642587 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",4.43771885430989 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",4.44825712007792 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",4.56595192572385 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",4.57913711410069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",4.68169909057636 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",4.66529396235489 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",4.8446186251373 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",4.93204352501038 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",4.99121604947253 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",5.12369925613889 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",5.1207488351828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",5.02467500467298 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",5.14657862963855 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",5.18205743198222 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",5.31449970884603 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",5.42069555675446 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",5.523199227568 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",5.52491094280139 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",5.61345368964055 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",5.54217675526721 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",5.54382630353634 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",5.63260458980531 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",5.74857030435828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",5.9212431019646 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",5.89401049644571 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",6.02253934360268 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",6.12401011609695 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",6.16428735859522 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",6.27166437882464 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",6.432118858107 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",6.27408734591003 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",6.54529787091411 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",6.51852437421825 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",6.67205090522237 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",6.75021871937352 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",6.91590796595095 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",6.98449627565248 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",7.01722930605286 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",7.0189846540003 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",7.03334908404706 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",7.2562381158294 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",7.12846299484784 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",7.32719378986568 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",7.38979167544567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",7.37526005101676 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",7.45122267552255 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",7.62835566321705 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",7.70924723988936 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",7.78211155556757 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",7.69863869842261 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",7.75058827112393 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",7.67911788551397 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",7.87676442689424 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",7.89114430214952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",7.94215442004307 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",8.26182776192679 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",8.00729033951187 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",7.96950633979772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",7.99470558361595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",8.21007588789444 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",8.28985502342365 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",8.15994460236524 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",8.34229729827651 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",8.3373988503968 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",8.3989750354337 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",8.44101805139515 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",8.19997703830859 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",8.43582073873072 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",8.23031837817081 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",8.2631873264061 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",8.39004229909053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",8.37405573601975 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",8.21823327477027 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",8.45732973610511 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",8.50949554172561 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",8.48193202261434 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",8.5169312512337 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",8.5231765212957 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",8.06246525788079 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",8.26475655959096 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",8.35748573019741 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",8.39276799226277 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",8.41868427988618 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",8.35358658730845 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",8.55248303218759 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",8.2420941912709 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",8.40300855163671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",8.42588174705297 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",8.23989595196937 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2101,"Simulated","PgC/yr","global",7.99522145358026 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2102,"Simulated","PgC/yr","global",8.11823172773574 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2103,"Simulated","PgC/yr","global",8.54486082178671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2104,"Simulated","PgC/yr","global",8.53823482733488 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2105,"Simulated","PgC/yr","global",8.21569099344913 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2106,"Simulated","PgC/yr","global",8.21784251099491 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2107,"Simulated","PgC/yr","global",8.39416810041442 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2108,"Simulated","PgC/yr","global",8.33975154178345 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2109,"Simulated","PgC/yr","global",8.47131073885056 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2110,"Simulated","PgC/yr","global",8.30021489703336 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2111,"Simulated","PgC/yr","global",8.11708878230582 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2112,"Simulated","PgC/yr","global",8.17418662913455 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2113,"Simulated","PgC/yr","global",8.28807496314259 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2114,"Simulated","PgC/yr","global",8.3114651869138 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2115,"Simulated","PgC/yr","global",8.24177795062661 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2116,"Simulated","PgC/yr","global",8.43156403926469 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2117,"Simulated","PgC/yr","global",8.60533190215454 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2118,"Simulated","PgC/yr","global",8.40747260302702 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2119,"Simulated","PgC/yr","global",8.14711117861227 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2120,"Simulated","PgC/yr","global",8.51138487685689 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2121,"Simulated","PgC/yr","global",8.0625949976323 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2122,"Simulated","PgC/yr","global",7.75705324927702 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2123,"Simulated","PgC/yr","global",8.04670187807302 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2124,"Simulated","PgC/yr","global",7.49758455791429 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2125,"Simulated","PgC/yr","global",8.00863407265245 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2126,"Simulated","PgC/yr","global",7.9458987247167 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2127,"Simulated","PgC/yr","global",8.14631420585303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2128,"Simulated","PgC/yr","global",8.16134393825646 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2129,"Simulated","PgC/yr","global",7.95372017830738 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2130,"Simulated","PgC/yr","global",8.10293942678759 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2131,"Simulated","PgC/yr","global",7.82215325863602 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2132,"Simulated","PgC/yr","global",8.01655283105677 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2133,"Simulated","PgC/yr","global",7.55081338001064 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2134,"Simulated","PgC/yr","global",7.72077090996049 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2135,"Simulated","PgC/yr","global",7.7377050365735 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2136,"Simulated","PgC/yr","global",8.00502143838139 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2137,"Simulated","PgC/yr","global",7.93997703177303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2138,"Simulated","PgC/yr","global",7.79386072568297 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2139,"Simulated","PgC/yr","global",7.61802783841501 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2140,"Simulated","PgC/yr","global",8.01977315703161 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2141,"Simulated","PgC/yr","global",8.04819697425702 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2142,"Simulated","PgC/yr","global",7.9261350359042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2143,"Simulated","PgC/yr","global",7.802415826678 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2144,"Simulated","PgC/yr","global",7.62445304515617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2145,"Simulated","PgC/yr","global",7.69141111309922 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2146,"Simulated","PgC/yr","global",8.16331938042521 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2147,"Simulated","PgC/yr","global",8.00427543481024 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2148,"Simulated","PgC/yr","global",7.62628793592745 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2149,"Simulated","PgC/yr","global",7.8488518460706 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2150,"Simulated","PgC/yr","global",7.61656363264803 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2151,"Simulated","PgC/yr","global",7.69350857241521 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2152,"Simulated","PgC/yr","global",7.84552340363617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2153,"Simulated","PgC/yr","global",7.70669414692226 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2154,"Simulated","PgC/yr","global",7.58621379792112 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2155,"Simulated","PgC/yr","global",7.69888968306094 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2156,"Simulated","PgC/yr","global",7.59413718988799 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2157,"Simulated","PgC/yr","global",7.69104042809492 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2158,"Simulated","PgC/yr","global",7.98633736964392 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2159,"Simulated","PgC/yr","global",7.60626785665365 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2160,"Simulated","PgC/yr","global",8.02915766572376 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2161,"Simulated","PgC/yr","global",7.67666557253241 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2162,"Simulated","PgC/yr","global",7.70541528365744 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2163,"Simulated","PgC/yr","global",7.82965962997306 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2164,"Simulated","PgC/yr","global",7.54876688988275 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2165,"Simulated","PgC/yr","global",7.37772356177449 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2166,"Simulated","PgC/yr","global",7.51863483259587 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2167,"Simulated","PgC/yr","global",7.64479438476703 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2168,"Simulated","PgC/yr","global",7.24223819270353 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2169,"Simulated","PgC/yr","global",7.40688102640424 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2170,"Simulated","PgC/yr","global",7.26319116257148 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2171,"Simulated","PgC/yr","global",7.23466231792818 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2172,"Simulated","PgC/yr","global",7.43224669234419 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2173,"Simulated","PgC/yr","global",7.62520368228988 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2174,"Simulated","PgC/yr","global",7.10068594572888 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2175,"Simulated","PgC/yr","global",7.1077397724565 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2176,"Simulated","PgC/yr","global",7.11390858873637 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2177,"Simulated","PgC/yr","global",7.12482835115465 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2178,"Simulated","PgC/yr","global",7.04981251793067 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2179,"Simulated","PgC/yr","global",7.44466309546733 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2180,"Simulated","PgC/yr","global",6.70546313866707 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2181,"Simulated","PgC/yr","global",7.17863327952852 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2182,"Simulated","PgC/yr","global",7.22306914441876 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2183,"Simulated","PgC/yr","global",6.84287606976039 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2184,"Simulated","PgC/yr","global",7.4003121792239 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2185,"Simulated","PgC/yr","global",7.1401901555411 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2186,"Simulated","PgC/yr","global",6.92140877696265 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2187,"Simulated","PgC/yr","global",7.06068285568171 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2188,"Simulated","PgC/yr","global",6.97806643534877 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2189,"Simulated","PgC/yr","global",7.18009902981635 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2190,"Simulated","PgC/yr","global",6.52102727025769 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2191,"Simulated","PgC/yr","global",7.09876765083164 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2192,"Simulated","PgC/yr","global",6.85817609331279 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2193,"Simulated","PgC/yr","global",6.74341973858635 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2194,"Simulated","PgC/yr","global",7.0436946708389 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2195,"Simulated","PgC/yr","global",6.82514805942983 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2196,"Simulated","PgC/yr","global",6.83361048917379 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2197,"Simulated","PgC/yr","global",6.7454708622768 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2198,"Simulated","PgC/yr","global",6.81425300934517 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2199,"Simulated","PgC/yr","global",6.37952444795029 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2200,"Simulated","PgC/yr","global",6.26848575491279 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2201,"Simulated","PgC/yr","global",6.81548244794276 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2202,"Simulated","PgC/yr","global",6.26228450369505 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2203,"Simulated","PgC/yr","global",6.48840853440031 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2204,"Simulated","PgC/yr","global",6.43513492119926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2205,"Simulated","PgC/yr","global",6.21982717001525 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2206,"Simulated","PgC/yr","global",6.46758839332556 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2207,"Simulated","PgC/yr","global",6.4055280010018 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2208,"Simulated","PgC/yr","global",6.38420125708785 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2209,"Simulated","PgC/yr","global",6.20478044788245 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2210,"Simulated","PgC/yr","global",6.24078168440405 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2211,"Simulated","PgC/yr","global",6.38359271587246 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2212,"Simulated","PgC/yr","global",6.49216480911053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2213,"Simulated","PgC/yr","global",6.11300965246419 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2214,"Simulated","PgC/yr","global",5.83622533783819 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2215,"Simulated","PgC/yr","global",6.0565033571215 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2216,"Simulated","PgC/yr","global",6.09425608028841 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2217,"Simulated","PgC/yr","global",6.11123808704782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2218,"Simulated","PgC/yr","global",5.67031290799775 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2219,"Simulated","PgC/yr","global",5.99206749172852 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2220,"Simulated","PgC/yr","global",6.07624078907952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2221,"Simulated","PgC/yr","global",5.94700764041439 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2222,"Simulated","PgC/yr","global",5.89963100782338 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2223,"Simulated","PgC/yr","global",6.1403785619482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2224,"Simulated","PgC/yr","global",5.93831198802189 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2225,"Simulated","PgC/yr","global",5.88724395059642 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2226,"Simulated","PgC/yr","global",5.92358343718445 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2227,"Simulated","PgC/yr","global",5.77105736956173 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2228,"Simulated","PgC/yr","global",5.8446985792281 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2229,"Simulated","PgC/yr","global",5.98428619567997 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2230,"Simulated","PgC/yr","global",5.90951903031303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2231,"Simulated","PgC/yr","global",5.60354327159855 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2232,"Simulated","PgC/yr","global",5.82147053014627 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2233,"Simulated","PgC/yr","global",5.65727560749242 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2234,"Simulated","PgC/yr","global",5.43888344816848 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2235,"Simulated","PgC/yr","global",5.54537507181992 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2236,"Simulated","PgC/yr","global",5.77831043947916 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2237,"Simulated","PgC/yr","global",5.84406532567909 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2238,"Simulated","PgC/yr","global",5.88347840876109 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2239,"Simulated","PgC/yr","global",5.64174390581233 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2240,"Simulated","PgC/yr","global",5.76707713932808 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2241,"Simulated","PgC/yr","global",5.5526204191331 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2242,"Simulated","PgC/yr","global",5.52071988547154 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2243,"Simulated","PgC/yr","global",5.46196631229029 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2244,"Simulated","PgC/yr","global",5.44700299428346 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2245,"Simulated","PgC/yr","global",5.38745862642637 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2246,"Simulated","PgC/yr","global",5.42520208246817 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2247,"Simulated","PgC/yr","global",5.41466381670015 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2248,"Simulated","PgC/yr","global",5.18468311742933 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2249,"Simulated","PgC/yr","global",5.195578167514 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2250,"Simulated","PgC/yr","global",5.05575115033019 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2251,"Simulated","PgC/yr","global",5.2514095072447 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2252,"Simulated","PgC/yr","global",5.20767485482093 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2253,"Simulated","PgC/yr","global",5.05570172566295 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2254,"Simulated","PgC/yr","global",5.13593958388498 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2255,"Simulated","PgC/yr","global",4.92821697460142 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2256,"Simulated","PgC/yr","global",5.19174621128207 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2257,"Simulated","PgC/yr","global",4.8938668308698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2258,"Simulated","PgC/yr","global",4.90321118201981 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2259,"Simulated","PgC/yr","global",4.96916994497211 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2260,"Simulated","PgC/yr","global",4.95159947576838 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2261,"Simulated","PgC/yr","global",4.83722616221304 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2262,"Simulated","PgC/yr","global",4.89627782791858 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2263,"Simulated","PgC/yr","global",4.71461282991633 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2264,"Simulated","PgC/yr","global",4.97999858066017 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2265,"Simulated","PgC/yr","global",4.81844478866194 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2266,"Simulated","PgC/yr","global",4.63536500955995 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2267,"Simulated","PgC/yr","global",4.7513183679461 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2268,"Simulated","PgC/yr","global",4.94675585837888 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2269,"Simulated","PgC/yr","global",4.85323512083617 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2270,"Simulated","PgC/yr","global",4.71381431263624 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2271,"Simulated","PgC/yr","global",4.81717055895966 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2272,"Simulated","PgC/yr","global",4.87588397459878 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2273,"Simulated","PgC/yr","global",4.4708055799852 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2274,"Simulated","PgC/yr","global",4.76961785099162 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2275,"Simulated","PgC/yr","global",4.50384905907667 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2276,"Simulated","PgC/yr","global",4.76487926102001 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2277,"Simulated","PgC/yr","global",4.77423287929513 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2278,"Simulated","PgC/yr","global",4.76668635041596 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2279,"Simulated","PgC/yr","global",4.99176010694238 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2280,"Simulated","PgC/yr","global",4.84571021524892 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2281,"Simulated","PgC/yr","global",4.76185972275583 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2282,"Simulated","PgC/yr","global",4.45717672799384 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2283,"Simulated","PgC/yr","global",4.58413170840339 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2284,"Simulated","PgC/yr","global",4.56836678407476 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2285,"Simulated","PgC/yr","global",4.42753273929595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2286,"Simulated","PgC/yr","global",4.64851814912913 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2287,"Simulated","PgC/yr","global",4.46518970217008 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2288,"Simulated","PgC/yr","global",4.38876372140892 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2289,"Simulated","PgC/yr","global",4.60754818902907 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2290,"Simulated","PgC/yr","global",4.59453868989906 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2291,"Simulated","PgC/yr","global",4.37026345065274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2292,"Simulated","PgC/yr","global",4.70970743169279 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2293,"Simulated","PgC/yr","global",4.28160795379144 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2294,"Simulated","PgC/yr","global",4.64826330318867 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2295,"Simulated","PgC/yr","global",4.38040014099944 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2296,"Simulated","PgC/yr","global",4.29044570210224 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2297,"Simulated","PgC/yr","global",4.47967421871303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2298,"Simulated","PgC/yr","global",4.48263352066401 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2299,"Simulated","PgC/yr","global",4.5326713626817 -"IPSL-CM5A-LR","fgco2","ocean","fgco2","rcp85",2300,"Simulated","PgC/yr","global",4.32281885914428 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",1.00963076641297 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.06272109320556 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.07320164047622 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",1.1004970498699 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.17895925697469 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.21809404958943 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.16819650107037 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.21079365982497 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.23122240626189 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.21570975905108 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.25256812386037 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.28949428219041 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.29610363321848 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",1.29058290958101 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.33981279881794 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.3372845073932 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.35617938231955 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.36484467703728 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.39190739534348 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.3800096669357 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.42811258371841 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.47080015682264 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.51636947180311 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",1.47748950834315 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.51521836126928 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.48745991454266 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.4846507938031 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.45866435798392 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.58825667291882 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.63532530747303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.61785278612944 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.59609603151809 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.68475154274614 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.64811676552001 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.70921190020615 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.73071465325402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.71644932406579 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",1.80146922670829 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",1.77172973330476 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",1.81614352393112 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",1.90489675989863 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",1.9575536357473 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.96804770034254 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.99363889234952 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.99787540118558 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.95739432442185 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.08744643529042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",2.0307938796743 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",2.05411843703956 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.05615775993725 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.08806257701405 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",2.08622022084602 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",2.21898552082916 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.2027385932365 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.26373172729479 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",2.1746361443924 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.2074815879488 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.21772854757474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.26819582373864 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.27094977172479 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",2.27663428947393 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.41485927823611 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",2.33889115544893 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",2.36539069787476 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",2.35860575955898 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.38983277936022 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.40080277791951 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",2.41784991733436 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.46092245832547 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",2.40319975819114 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",2.46869691997356 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",2.48731517250752 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",2.52532347542963 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",2.58406742322947 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.46364799234362 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",2.48243424591171 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",2.49817317037741 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",2.51511534362891 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.48985842954162 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",2.56081734908131 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",2.6180380461256 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",2.63850493072831 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",2.66782897329871 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.65745194390662 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",2.5332754554118 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.50463493429013 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",2.52093558635142 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",2.56158225034131 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",2.64567925075124 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",2.65877809000062 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",2.71461691646998 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",2.61082827760861 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",2.72554960445478 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",2.66352184333829 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",2.62804914223074 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2101,"Simulated","PgC/yr","HL",2.53211820690915 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2102,"Simulated","PgC/yr","HL",2.48013305933317 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2103,"Simulated","PgC/yr","HL",2.7025581525882 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2104,"Simulated","PgC/yr","HL",2.73296496044415 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2105,"Simulated","PgC/yr","HL",2.69669908204047 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2106,"Simulated","PgC/yr","HL",2.68791420037974 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2107,"Simulated","PgC/yr","HL",2.73943672441842 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2108,"Simulated","PgC/yr","HL",2.78603645953465 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2109,"Simulated","PgC/yr","HL",2.8510134112184 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2110,"Simulated","PgC/yr","HL",2.69820336716203 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2111,"Simulated","PgC/yr","HL",2.63468987276231 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2112,"Simulated","PgC/yr","HL",2.62084592547821 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2113,"Simulated","PgC/yr","HL",2.69880226740023 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2114,"Simulated","PgC/yr","HL",2.80299380529333 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2115,"Simulated","PgC/yr","HL",2.73793326688817 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2116,"Simulated","PgC/yr","HL",2.82650291551873 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2117,"Simulated","PgC/yr","HL",2.86781075599222 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2118,"Simulated","PgC/yr","HL",2.88657225078721 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2119,"Simulated","PgC/yr","HL",2.78764750393404 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2120,"Simulated","PgC/yr","HL",2.9772569469195 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2121,"Simulated","PgC/yr","HL",2.88043428197102 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2122,"Simulated","PgC/yr","HL",2.57585778648891 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2123,"Simulated","PgC/yr","HL",2.57153555298725 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2124,"Simulated","PgC/yr","HL",2.4112057385057 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2125,"Simulated","PgC/yr","HL",2.60969496028775 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2126,"Simulated","PgC/yr","HL",2.5512656351142 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2127,"Simulated","PgC/yr","HL",2.62320069859349 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2128,"Simulated","PgC/yr","HL",2.72368655850422 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2129,"Simulated","PgC/yr","HL",2.81503250008606 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2130,"Simulated","PgC/yr","HL",2.72066998821186 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2131,"Simulated","PgC/yr","HL",2.75191100809927 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2132,"Simulated","PgC/yr","HL",2.7308968097828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2133,"Simulated","PgC/yr","HL",2.61762025045045 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2134,"Simulated","PgC/yr","HL",2.53952956287389 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2135,"Simulated","PgC/yr","HL",2.47715207546676 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2136,"Simulated","PgC/yr","HL",2.69547038482217 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2137,"Simulated","PgC/yr","HL",2.73492083455232 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2138,"Simulated","PgC/yr","HL",2.64953713656706 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2139,"Simulated","PgC/yr","HL",2.46904499108159 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2140,"Simulated","PgC/yr","HL",2.57807683463082 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2141,"Simulated","PgC/yr","HL",2.73278675245065 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2142,"Simulated","PgC/yr","HL",2.69082345966673 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2143,"Simulated","PgC/yr","HL",2.57024175191993 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2144,"Simulated","PgC/yr","HL",2.56118376512985 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2145,"Simulated","PgC/yr","HL",2.57187983096849 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2146,"Simulated","PgC/yr","HL",2.9191241752955 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2147,"Simulated","PgC/yr","HL",2.85288376755879 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2148,"Simulated","PgC/yr","HL",2.79950412864053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2149,"Simulated","PgC/yr","HL",2.78381851484781 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2150,"Simulated","PgC/yr","HL",2.65601248677031 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2151,"Simulated","PgC/yr","HL",2.53060619760211 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2152,"Simulated","PgC/yr","HL",2.64247750690527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2153,"Simulated","PgC/yr","HL",2.7249505662847 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2154,"Simulated","PgC/yr","HL",2.70015372399486 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2155,"Simulated","PgC/yr","HL",2.751485074443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2156,"Simulated","PgC/yr","HL",2.73411200198741 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2157,"Simulated","PgC/yr","HL",2.78955096392647 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2158,"Simulated","PgC/yr","HL",2.94570364924782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2159,"Simulated","PgC/yr","HL",2.81515663878122 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2160,"Simulated","PgC/yr","HL",2.85757896887347 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2161,"Simulated","PgC/yr","HL",2.83318985323128 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2162,"Simulated","PgC/yr","HL",2.7417095659949 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2163,"Simulated","PgC/yr","HL",2.84649200407695 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2164,"Simulated","PgC/yr","HL",2.88071014573804 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2165,"Simulated","PgC/yr","HL",2.76182941397869 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2166,"Simulated","PgC/yr","HL",2.60394044210772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2167,"Simulated","PgC/yr","HL",2.80415243311481 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2168,"Simulated","PgC/yr","HL",2.67693482245237 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2169,"Simulated","PgC/yr","HL",2.7861799086935 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2170,"Simulated","PgC/yr","HL",2.58544681103051 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2171,"Simulated","PgC/yr","HL",2.53418994379946 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2172,"Simulated","PgC/yr","HL",2.54887886180195 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2173,"Simulated","PgC/yr","HL",2.76719220560955 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2174,"Simulated","PgC/yr","HL",2.56603620879172 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2175,"Simulated","PgC/yr","HL",2.56105024706661 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2176,"Simulated","PgC/yr","HL",2.68851696271068 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2177,"Simulated","PgC/yr","HL",2.58327355627393 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2178,"Simulated","PgC/yr","HL",2.54352048399136 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2179,"Simulated","PgC/yr","HL",2.66635710216977 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2180,"Simulated","PgC/yr","HL",2.5575991913412 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2181,"Simulated","PgC/yr","HL",2.65199453100367 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2182,"Simulated","PgC/yr","HL",2.64232964392615 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2183,"Simulated","PgC/yr","HL",2.48224700337984 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2184,"Simulated","PgC/yr","HL",2.75378660585124 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2185,"Simulated","PgC/yr","HL",2.64246702408212 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2186,"Simulated","PgC/yr","HL",2.4741070912064 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2187,"Simulated","PgC/yr","HL",2.4225956017184 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2188,"Simulated","PgC/yr","HL",2.47743152546275 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2189,"Simulated","PgC/yr","HL",2.51698928619827 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2190,"Simulated","PgC/yr","HL",2.55643752901828 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2191,"Simulated","PgC/yr","HL",2.70507292668835 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2192,"Simulated","PgC/yr","HL",2.59917296448609 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2193,"Simulated","PgC/yr","HL",2.58621785025933 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2194,"Simulated","PgC/yr","HL",2.7073283888475 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2195,"Simulated","PgC/yr","HL",2.60484224076211 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2196,"Simulated","PgC/yr","HL",2.58251631023346 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2197,"Simulated","PgC/yr","HL",2.56028693202327 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2198,"Simulated","PgC/yr","HL",2.569801197484 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2199,"Simulated","PgC/yr","HL",2.38637441324498 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2200,"Simulated","PgC/yr","HL",2.40993593758611 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2201,"Simulated","PgC/yr","HL",2.45886423875974 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2202,"Simulated","PgC/yr","HL",2.42321601933042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2203,"Simulated","PgC/yr","HL",2.47856836004664 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2204,"Simulated","PgC/yr","HL",2.40439024827772 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2205,"Simulated","PgC/yr","HL",2.28153983691095 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2206,"Simulated","PgC/yr","HL",2.35686830058835 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2207,"Simulated","PgC/yr","HL",2.33153379981658 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2208,"Simulated","PgC/yr","HL",2.34065330422671 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2209,"Simulated","PgC/yr","HL",2.40620736291107 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2210,"Simulated","PgC/yr","HL",2.359127900704 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2211,"Simulated","PgC/yr","HL",2.38483178305981 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2212,"Simulated","PgC/yr","HL",2.4730422570657 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2213,"Simulated","PgC/yr","HL",2.3751558614316 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2214,"Simulated","PgC/yr","HL",2.29593689104793 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2215,"Simulated","PgC/yr","HL",2.3092307659806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2216,"Simulated","PgC/yr","HL",2.46963285676911 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2217,"Simulated","PgC/yr","HL",2.37958154384589 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2218,"Simulated","PgC/yr","HL",2.13862999172538 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2219,"Simulated","PgC/yr","HL",2.18674808101527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2220,"Simulated","PgC/yr","HL",2.2890549176521 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2221,"Simulated","PgC/yr","HL",2.22715081246917 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2222,"Simulated","PgC/yr","HL",2.34282131757172 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2223,"Simulated","PgC/yr","HL",2.38047368726843 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2224,"Simulated","PgC/yr","HL",2.22312292560692 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2225,"Simulated","PgC/yr","HL",2.29746738322735 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2226,"Simulated","PgC/yr","HL",2.25671871860961 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2227,"Simulated","PgC/yr","HL",2.31799661304141 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2228,"Simulated","PgC/yr","HL",2.22352154875026 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2229,"Simulated","PgC/yr","HL",2.25805058887678 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2230,"Simulated","PgC/yr","HL",2.35440400955756 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2231,"Simulated","PgC/yr","HL",2.16947956092739 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2232,"Simulated","PgC/yr","HL",2.24562099512619 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2233,"Simulated","PgC/yr","HL",2.08557807896233 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2234,"Simulated","PgC/yr","HL",1.92372604821437 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2235,"Simulated","PgC/yr","HL",2.05316298288248 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2236,"Simulated","PgC/yr","HL",2.10409129636701 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2237,"Simulated","PgC/yr","HL",2.11684475418008 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2238,"Simulated","PgC/yr","HL",2.26511959790666 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2239,"Simulated","PgC/yr","HL",2.23918343825902 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2240,"Simulated","PgC/yr","HL",2.15180496937446 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2241,"Simulated","PgC/yr","HL",2.12128726428416 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2242,"Simulated","PgC/yr","HL",2.08102715439782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2243,"Simulated","PgC/yr","HL",2.12984897215738 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2244,"Simulated","PgC/yr","HL",2.13546666190896 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2245,"Simulated","PgC/yr","HL",2.09644600792783 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2246,"Simulated","PgC/yr","HL",2.10305929001459 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2247,"Simulated","PgC/yr","HL",2.17853203044213 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2248,"Simulated","PgC/yr","HL",2.05368850335866 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2249,"Simulated","PgC/yr","HL",2.05428740359685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2250,"Simulated","PgC/yr","HL",2.08201612600258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2251,"Simulated","PgC/yr","HL",2.13930034067923 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2252,"Simulated","PgC/yr","HL",1.97441987749692 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2253,"Simulated","PgC/yr","HL",1.9404078060698 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2254,"Simulated","PgC/yr","HL",1.90582524837248 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2255,"Simulated","PgC/yr","HL",1.92015775038797 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2256,"Simulated","PgC/yr","HL",1.99053639049373 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2257,"Simulated","PgC/yr","HL",1.88934404347567 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2258,"Simulated","PgC/yr","HL",1.96751390395336 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2259,"Simulated","PgC/yr","HL",1.9460897720791 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2260,"Simulated","PgC/yr","HL",1.89878548090191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2261,"Simulated","PgC/yr","HL",1.93342928035551 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2262,"Simulated","PgC/yr","HL",2.05813377210041 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2263,"Simulated","PgC/yr","HL",1.95150966750973 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2264,"Simulated","PgC/yr","HL",1.89993583281038 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2265,"Simulated","PgC/yr","HL",1.9929121292553 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2266,"Simulated","PgC/yr","HL",1.99665339366362 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2267,"Simulated","PgC/yr","HL",1.78407249893468 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2268,"Simulated","PgC/yr","HL",1.8693218512654 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2269,"Simulated","PgC/yr","HL",1.88263117456902 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2270,"Simulated","PgC/yr","HL",1.89243868321409 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2271,"Simulated","PgC/yr","HL",1.85518769529839 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2272,"Simulated","PgC/yr","HL",1.9275575200745 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2273,"Simulated","PgC/yr","HL",1.83811724539523 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2274,"Simulated","PgC/yr","HL",1.87204986805745 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2275,"Simulated","PgC/yr","HL",1.87824769931108 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2276,"Simulated","PgC/yr","HL",1.85419265469075 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2277,"Simulated","PgC/yr","HL",1.88427946057696 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2278,"Simulated","PgC/yr","HL",1.86215573818953 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2279,"Simulated","PgC/yr","HL",1.91844049843827 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2280,"Simulated","PgC/yr","HL",1.94755736731964 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2281,"Simulated","PgC/yr","HL",1.82621731007731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2282,"Simulated","PgC/yr","HL",1.76941640872048 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2283,"Simulated","PgC/yr","HL",1.79065902223604 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2284,"Simulated","PgC/yr","HL",1.8308269936242 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2285,"Simulated","PgC/yr","HL",1.76074545879552 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2286,"Simulated","PgC/yr","HL",1.79268082778453 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2287,"Simulated","PgC/yr","HL",1.83393184032201 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2288,"Simulated","PgC/yr","HL",1.81818526063677 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2289,"Simulated","PgC/yr","HL",1.78241648874127 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2290,"Simulated","PgC/yr","HL",1.82898477538805 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2291,"Simulated","PgC/yr","HL",1.80622849738285 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2292,"Simulated","PgC/yr","HL",1.88722678906379 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2293,"Simulated","PgC/yr","HL",1.81902167957838 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2294,"Simulated","PgC/yr","HL",1.87898315211395 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2295,"Simulated","PgC/yr","HL",1.75211312979795 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2296,"Simulated","PgC/yr","HL",1.78829762839035 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2297,"Simulated","PgC/yr","HL",1.83445129179531 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2298,"Simulated","PgC/yr","HL",1.72821725857119 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2299,"Simulated","PgC/yr","HL",1.81017803893527 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_HL","rcp85",2300,"Simulated","PgC/yr","HL",1.82205287065039 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",2.97466466837504 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",3.04872791745915 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",3.02254505539069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",3.03795511582847 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",3.12520098067474 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",3.19953191640362 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",3.26952245908311 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",3.23746317740053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",3.33472921306226 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",3.36342718780019 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",3.42913093819209 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",3.37579976601407 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",3.54851505862443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",3.64146068258584 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",3.65140346531917 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",3.78641458655069 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",3.76456958021746 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",3.65982988567258 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",3.75467088331781 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",3.80204761347103 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",3.88638698493734 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",3.94989564140926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",4.00682979970647 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",4.04742143460899 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",4.09823559113191 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",4.05471716433608 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",4.05917522533004 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",4.17394016531873 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",4.16031351957709 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",4.28591754852911 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",4.27615808674445 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",4.42644352210575 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",4.43925886164203 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",4.51617088020877 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",4.56245244213402 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",4.70140432943342 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",4.5576378884994 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",4.74382885665837 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",4.74679434259274 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",4.85590741527121 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",4.845322374889 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",4.95835401213637 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",5.0164483573371 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",5.023590579557 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",5.02110845197172 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",5.07595471787257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",5.16879155448901 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",5.09766905252612 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",5.27307548397639 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",5.33363387839895 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",5.28719754030941 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",5.36500237629917 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",5.40936985184861 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",5.50650838747338 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",5.51837952897472 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",5.52400253433627 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",5.54310660703903 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",5.4613895497658 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",5.60856867825638 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",5.6201946517762 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",5.66551996342423 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",5.8469683742381 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",5.66839918067687 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",5.60411569189076 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",5.6360998056411 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",5.82024284410187 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",5.88905258420021 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",5.7420951535351 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",5.88137498869076 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",5.93419901519936 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",5.9302779133163 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",5.95370303204793 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",5.67465334293782 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",5.85175311443125 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",5.76667030991358 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",5.78075303787699 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",5.89186932009146 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",5.85894037397764 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",5.7283749443335 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",5.89651228785544 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",5.89145764086762 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",5.84342723515176 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",5.84910257261804 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",5.86572483489979 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",5.52918943882511 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",5.76012150204482 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",5.83655016226246 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",5.83118564578183 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",5.77300439757083 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",5.69480849803486 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",5.83786607682308 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",5.63126590498594 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",5.67745834375103 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",5.7623603646342 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",5.61184752249055 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2101,"Simulated","PgC/yr","LL",5.46310255399378 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2102,"Simulated","PgC/yr","LL",5.63809857487729 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2103,"Simulated","PgC/yr","LL",5.84230288781087 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2104,"Simulated","PgC/yr","LL",5.80527078752241 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2105,"Simulated","PgC/yr","LL",5.51899324183921 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2106,"Simulated","PgC/yr","LL",5.52992779724813 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2107,"Simulated","PgC/yr","LL",5.65473066925145 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2108,"Simulated","PgC/yr","LL",5.5537151175773 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2109,"Simulated","PgC/yr","LL",5.62029804732856 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2110,"Simulated","PgC/yr","LL",5.60201289277366 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2111,"Simulated","PgC/yr","LL",5.4823988282448 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2112,"Simulated","PgC/yr","LL",5.55334086373746 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2113,"Simulated","PgC/yr","LL",5.58927176967681 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2114,"Simulated","PgC/yr","LL",5.50847226863975 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2115,"Simulated","PgC/yr","LL",5.50384547625359 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2116,"Simulated","PgC/yr","LL",5.60506020708997 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2117,"Simulated","PgC/yr","LL",5.73751942459658 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2118,"Simulated","PgC/yr","LL",5.52089876477971 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2119,"Simulated","PgC/yr","LL",5.35946468812654 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2120,"Simulated","PgC/yr","LL",5.53412578353982 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2121,"Simulated","PgC/yr","LL",5.18215971134973 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2122,"Simulated","PgC/yr","LL",5.18119553196572 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2123,"Simulated","PgC/yr","LL",5.47516621420765 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2124,"Simulated","PgC/yr","LL",5.08637863880508 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2125,"Simulated","PgC/yr","LL",5.39893895330213 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2126,"Simulated","PgC/yr","LL",5.39463439981536 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2127,"Simulated","PgC/yr","LL",5.52311384004877 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2128,"Simulated","PgC/yr","LL",5.43765709885552 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2129,"Simulated","PgC/yr","LL",5.13868790770175 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2130,"Simulated","PgC/yr","LL",5.38226879921544 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2131,"Simulated","PgC/yr","LL",5.07024258935085 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2132,"Simulated","PgC/yr","LL",5.28565675628062 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2133,"Simulated","PgC/yr","LL",4.93319337051352 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2134,"Simulated","PgC/yr","LL",5.18124120362075 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2135,"Simulated","PgC/yr","LL",5.26055256989803 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2136,"Simulated","PgC/yr","LL",5.30955064380488 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2137,"Simulated","PgC/yr","LL",5.2050551657487 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2138,"Simulated","PgC/yr","LL",5.14432328246987 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2139,"Simulated","PgC/yr","LL",5.14898305994022 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2140,"Simulated","PgC/yr","LL",5.44169650301169 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2141,"Simulated","PgC/yr","LL",5.3154105708769 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2142,"Simulated","PgC/yr","LL",5.23531136855033 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2143,"Simulated","PgC/yr","LL",5.23217397958105 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2144,"Simulated","PgC/yr","LL",5.06326878135888 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2145,"Simulated","PgC/yr","LL",5.11953118572999 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2146,"Simulated","PgC/yr","LL",5.24419450545406 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2147,"Simulated","PgC/yr","LL",5.15139223974316 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2148,"Simulated","PgC/yr","LL",4.82678348891725 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2149,"Simulated","PgC/yr","LL",5.06503221470595 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2150,"Simulated","PgC/yr","LL",4.9605506918777 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2151,"Simulated","PgC/yr","LL",5.16290276546832 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2152,"Simulated","PgC/yr","LL",5.20304561292729 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2153,"Simulated","PgC/yr","LL",4.98174360846964 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2154,"Simulated","PgC/yr","LL",4.88605895386339 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2155,"Simulated","PgC/yr","LL",4.9474035985139 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2156,"Simulated","PgC/yr","LL",4.86002484183806 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2157,"Simulated","PgC/yr","LL",4.90148836132171 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2158,"Simulated","PgC/yr","LL",5.04063467031926 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2159,"Simulated","PgC/yr","LL",4.79110885170891 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2160,"Simulated","PgC/yr","LL",5.17157911126731 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2161,"Simulated","PgC/yr","LL",4.84347521017437 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2162,"Simulated","PgC/yr","LL",4.96370584204616 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2163,"Simulated","PgC/yr","LL",4.98316704171814 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2164,"Simulated","PgC/yr","LL",4.66805545782472 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2165,"Simulated","PgC/yr","LL",4.61589335314982 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2166,"Simulated","PgC/yr","LL",4.91469381291139 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2167,"Simulated","PgC/yr","LL",4.8406422989053 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2168,"Simulated","PgC/yr","LL",4.56530311460227 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2169,"Simulated","PgC/yr","LL",4.62070156349903 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2170,"Simulated","PgC/yr","LL",4.67774419197694 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2171,"Simulated","PgC/yr","LL",4.70047218364078 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2172,"Simulated","PgC/yr","LL",4.88336813218776 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2173,"Simulated","PgC/yr","LL",4.8580114830454 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2174,"Simulated","PgC/yr","LL",4.53464982213328 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2175,"Simulated","PgC/yr","LL",4.54668937786255 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2176,"Simulated","PgC/yr","LL",4.42539180538293 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2177,"Simulated","PgC/yr","LL",4.5415551226427 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2178,"Simulated","PgC/yr","LL",4.50629279898673 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2179,"Simulated","PgC/yr","LL",4.77830556441493 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2180,"Simulated","PgC/yr","LL",4.14786418760962 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2181,"Simulated","PgC/yr","LL",4.52663825264641 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2182,"Simulated","PgC/yr","LL",4.58074013400309 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2183,"Simulated","PgC/yr","LL",4.36062939854753 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2184,"Simulated","PgC/yr","LL",4.64652507844838 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2185,"Simulated","PgC/yr","LL",4.49772302038281 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2186,"Simulated","PgC/yr","LL",4.44730151322746 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2187,"Simulated","PgC/yr","LL",4.63808724018121 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2188,"Simulated","PgC/yr","LL",4.5006345883911 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2189,"Simulated","PgC/yr","LL",4.66311023251042 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2190,"Simulated","PgC/yr","LL",3.96459017925154 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2191,"Simulated","PgC/yr","LL",4.39369440813363 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2192,"Simulated","PgC/yr","LL",4.25900235415878 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2193,"Simulated","PgC/yr","LL",4.15720277240658 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2194,"Simulated","PgC/yr","LL",4.33636633181177 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2195,"Simulated","PgC/yr","LL",4.22030577577582 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2196,"Simulated","PgC/yr","LL",4.25109354589574 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2197,"Simulated","PgC/yr","LL",4.1851842730562 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2198,"Simulated","PgC/yr","LL",4.24445085740275 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2199,"Simulated","PgC/yr","LL",3.99315018753157 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2200,"Simulated","PgC/yr","LL",3.85854947686679 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2201,"Simulated","PgC/yr","LL",4.3566191735043 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2202,"Simulated","PgC/yr","LL",3.83906924733855 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2203,"Simulated","PgC/yr","LL",4.00983937147452 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2204,"Simulated","PgC/yr","LL",4.03074557156542 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2205,"Simulated","PgC/yr","LL",3.93828711192435 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2206,"Simulated","PgC/yr","LL",4.11071917684066 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2207,"Simulated","PgC/yr","LL",4.07399409156658 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2208,"Simulated","PgC/yr","LL",4.04354759020232 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2209,"Simulated","PgC/yr","LL",3.79857244455307 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2210,"Simulated","PgC/yr","LL",3.88165425968465 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2211,"Simulated","PgC/yr","LL",3.99876145781508 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2212,"Simulated","PgC/yr","LL",4.01912213535978 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2213,"Simulated","PgC/yr","LL",3.73785324784509 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2214,"Simulated","PgC/yr","LL",3.54028908609033 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2215,"Simulated","PgC/yr","LL",3.74727302669544 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2216,"Simulated","PgC/yr","LL",3.62462306576404 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2217,"Simulated","PgC/yr","LL",3.73165585798866 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2218,"Simulated","PgC/yr","LL",3.53168378508805 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2219,"Simulated","PgC/yr","LL",3.80532043158405 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2220,"Simulated","PgC/yr","LL",3.78718497856509 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2221,"Simulated","PgC/yr","LL",3.71985734710539 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2222,"Simulated","PgC/yr","LL",3.55681080729816 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2223,"Simulated","PgC/yr","LL",3.75990504528305 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2224,"Simulated","PgC/yr","LL",3.71518868903545 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2225,"Simulated","PgC/yr","LL",3.58977686163169 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2226,"Simulated","PgC/yr","LL",3.6668655406974 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2227,"Simulated","PgC/yr","LL",3.45306003095043 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2228,"Simulated","PgC/yr","LL",3.6211761244662 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2229,"Simulated","PgC/yr","LL",3.72623615492486 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2230,"Simulated","PgC/yr","LL",3.55511461277656 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2231,"Simulated","PgC/yr","LL",3.43406315977127 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2232,"Simulated","PgC/yr","LL",3.57584954416109 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2233,"Simulated","PgC/yr","LL",3.57169722952443 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2234,"Simulated","PgC/yr","LL",3.51515698925188 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2235,"Simulated","PgC/yr","LL",3.49221205722662 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2236,"Simulated","PgC/yr","LL",3.67421867715756 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2237,"Simulated","PgC/yr","LL",3.72722063282222 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2238,"Simulated","PgC/yr","LL",3.61835843708215 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2239,"Simulated","PgC/yr","LL",3.40255986705586 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2240,"Simulated","PgC/yr","LL",3.61527179439623 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2241,"Simulated","PgC/yr","LL",3.43133300972603 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2242,"Simulated","PgC/yr","LL",3.43969219125397 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2243,"Simulated","PgC/yr","LL",3.33211768245439 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2244,"Simulated","PgC/yr","LL",3.31153625857704 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2245,"Simulated","PgC/yr","LL",3.29101192426848 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2246,"Simulated","PgC/yr","LL",3.32214223180114 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2247,"Simulated","PgC/yr","LL",3.23613108746209 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2248,"Simulated","PgC/yr","LL",3.1309936689213 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2249,"Simulated","PgC/yr","LL",3.14129008981685 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2250,"Simulated","PgC/yr","LL",2.9737347427323 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2251,"Simulated","PgC/yr","LL",3.11210970822265 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2252,"Simulated","PgC/yr","LL",3.23325504185216 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2253,"Simulated","PgC/yr","LL",3.11529403750404 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2254,"Simulated","PgC/yr","LL",3.23011511556871 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2255,"Simulated","PgC/yr","LL",3.00805952880303 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2256,"Simulated","PgC/yr","LL",3.20121003256178 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2257,"Simulated","PgC/yr","LL",3.00452251285222 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2258,"Simulated","PgC/yr","LL",2.93569786603313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2259,"Simulated","PgC/yr","LL",3.02307916002315 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2260,"Simulated","PgC/yr","LL",3.05281394476316 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2261,"Simulated","PgC/yr","LL",2.90379621499327 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2262,"Simulated","PgC/yr","LL",2.83814447954183 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2263,"Simulated","PgC/yr","LL",2.76310214435297 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2264,"Simulated","PgC/yr","LL",3.08006343027518 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2265,"Simulated","PgC/yr","LL",2.82553275946757 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2266,"Simulated","PgC/yr","LL",2.63871158590201 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2267,"Simulated","PgC/yr","LL",2.96724683040359 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2268,"Simulated","PgC/yr","LL",3.07743477279667 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2269,"Simulated","PgC/yr","LL",2.97060369704844 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2270,"Simulated","PgC/yr","LL",2.82137537020257 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2271,"Simulated","PgC/yr","LL",2.96198317216115 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2272,"Simulated","PgC/yr","LL",2.94832734730657 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2273,"Simulated","PgC/yr","LL",2.63268800206612 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2274,"Simulated","PgC/yr","LL",2.89756837736682 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2275,"Simulated","PgC/yr","LL",2.62560128359365 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2276,"Simulated","PgC/yr","LL",2.91068756027477 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2277,"Simulated","PgC/yr","LL",2.88995262889023 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2278,"Simulated","PgC/yr","LL",2.90453076744503 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2279,"Simulated","PgC/yr","LL",3.07331924921545 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2280,"Simulated","PgC/yr","LL",2.89815322828265 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2281,"Simulated","PgC/yr","LL",2.93564204512143 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2282,"Simulated","PgC/yr","LL",2.68775913743515 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2283,"Simulated","PgC/yr","LL",2.79347252629217 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2284,"Simulated","PgC/yr","LL",2.73753997276296 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2285,"Simulated","PgC/yr","LL",2.66678696717586 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2286,"Simulated","PgC/yr","LL",2.8558371712384 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2287,"Simulated","PgC/yr","LL",2.6312582255322 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2288,"Simulated","PgC/yr","LL",2.57057835719383 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2289,"Simulated","PgC/yr","LL",2.82513186382895 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2290,"Simulated","PgC/yr","LL",2.76555445849677 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2291,"Simulated","PgC/yr","LL",2.56403462395341 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2292,"Simulated","PgC/yr","LL",2.82248163918001 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2293,"Simulated","PgC/yr","LL",2.46258646021353 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2294,"Simulated","PgC/yr","LL",2.76928050435313 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2295,"Simulated","PgC/yr","LL",2.62828829929804 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2296,"Simulated","PgC/yr","LL",2.50214826272794 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2297,"Simulated","PgC/yr","LL",2.64522360271532 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2298,"Simulated","PgC/yr","LL",2.75441691795438 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2299,"Simulated","PgC/yr","LL",2.722492431087 -"IPSL-CM5A-LR","fgco2","ocean","fgco2_LL","rcp85",2300,"Simulated","PgC/yr","LL",2.50076542650613 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",3.87087095606386 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",3.98118790638182 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",3.8478633537273 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",3.76056151055561 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",3.78742872931395 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",4.10433057649253 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",4.0720352360832 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",4.25524693916286 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",4.35712526702085 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",4.38644709461188 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",4.42059183455665 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",4.49992303375951 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",4.58033599767615 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",4.79075692441375 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",4.7201377371674 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",4.57851608132171 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",4.7028026988552 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",4.92355667644647 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",5.10744595663129 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",5.04252023966492 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",5.00377397925284 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",5.13487657217565 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",5.31740051305126 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",5.37665205781976 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",5.41578427987401 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",5.42051123787503 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",5.26288182291997 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",5.5643838005756 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",5.42526124636302 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",5.60710385772861 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",5.66540014743272 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",5.652194362634 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",5.82545147169246 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",5.80912743845964 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",5.95758972835512 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",5.83648193379123 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",6.13733367329136 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",6.2833392101228 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",6.32187748009437 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",6.32773230378309 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",6.31271249926613 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",6.3019967031173 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",6.78146237763463 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",6.74752509207253 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",6.52181365161061 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",6.54431467929181 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",6.74006852756877 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",6.91666634906342 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",6.7241551146386 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",6.93060814127146 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",6.94838221095164 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",7.12706851377675 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",7.15433348744967 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",7.0437908567826 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",7.16619215890562 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",7.16431702859403 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",7.20714858577701 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",7.40688587983596 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",7.346728397324 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",7.55146067830216 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",7.62789019643681 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",7.62844501629744 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",7.39120672418027 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",7.3954855378301 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",7.76687551984328 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",7.63961002891314 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",7.56753866098809 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",7.32667179337661 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",7.70326957727003 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",7.64134095966675 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",7.58167718642208 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",7.54251708936033 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",7.58150618397228 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",7.93744215462105 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",7.87838948730984 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",7.64839708896675 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",7.79981627388758 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",7.64891331266316 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",7.73395031147624 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",8.0155420289738 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",7.85321567525655 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",7.79534876787936 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",7.805763835582 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",7.59063471286765 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",7.83438181923389 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",7.76165753286416 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",7.85864004450267 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",7.79975623540991 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",7.73095267605531 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",7.84118064077244 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",7.66228205904413 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",7.33460062483421 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",7.62884330726985 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",7.68560807973549 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",7.8556933345762 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2101,"Simulated","PgC/yr","global",7.80905737492859 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2102,"Simulated","PgC/yr","global",7.59156638138724 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2103,"Simulated","PgC/yr","global",7.46709053543751 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2104,"Simulated","PgC/yr","global",7.9291541644131 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2105,"Simulated","PgC/yr","global",7.57553449967523 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2106,"Simulated","PgC/yr","global",7.27756728739256 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2107,"Simulated","PgC/yr","global",7.97355905134578 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2108,"Simulated","PgC/yr","global",7.84898189046498 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2109,"Simulated","PgC/yr","global",7.48941680826405 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2110,"Simulated","PgC/yr","global",7.41826799587538 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2111,"Simulated","PgC/yr","global",7.60291847818783 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2112,"Simulated","PgC/yr","global",7.10156395403843 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2113,"Simulated","PgC/yr","global",8.11995430222426 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2114,"Simulated","PgC/yr","global",7.50564810349119 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2115,"Simulated","PgC/yr","global",7.65886361822167 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2116,"Simulated","PgC/yr","global",8.01003725105222 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2117,"Simulated","PgC/yr","global",7.0157920199317 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2118,"Simulated","PgC/yr","global",7.1851471639993 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2119,"Simulated","PgC/yr","global",7.71330833237154 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2120,"Simulated","PgC/yr","global",7.41934064760594 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2121,"Simulated","PgC/yr","global",7.16129312633913 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2122,"Simulated","PgC/yr","global",7.20857825202658 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2123,"Simulated","PgC/yr","global",7.55009962745564 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2124,"Simulated","PgC/yr","global",7.13795209602836 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2125,"Simulated","PgC/yr","global",6.8815963732931 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2126,"Simulated","PgC/yr","global",7.56776380527936 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2127,"Simulated","PgC/yr","global",7.46214379372358 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2128,"Simulated","PgC/yr","global",7.25080245568096 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2129,"Simulated","PgC/yr","global",7.17979194621406 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2130,"Simulated","PgC/yr","global",7.2074477060497 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2131,"Simulated","PgC/yr","global",7.44019061715115 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2132,"Simulated","PgC/yr","global",7.0604461737583 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2133,"Simulated","PgC/yr","global",6.98154757322938 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2134,"Simulated","PgC/yr","global",7.57964499116444 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2135,"Simulated","PgC/yr","global",6.95779645867379 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2136,"Simulated","PgC/yr","global",7.02049110292523 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2137,"Simulated","PgC/yr","global",7.0059966350879 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2138,"Simulated","PgC/yr","global",7.22178457288314 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2139,"Simulated","PgC/yr","global",6.9491895140532 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2140,"Simulated","PgC/yr","global",7.35479338747204 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2141,"Simulated","PgC/yr","global",7.03491159478114 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2142,"Simulated","PgC/yr","global",7.2732702477763 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2143,"Simulated","PgC/yr","global",7.2405004961818 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2144,"Simulated","PgC/yr","global",6.80635475932382 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2145,"Simulated","PgC/yr","global",7.35846002307274 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2146,"Simulated","PgC/yr","global",7.07294329009735 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2147,"Simulated","PgC/yr","global",7.00364387724412 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2148,"Simulated","PgC/yr","global",6.80874289698481 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2149,"Simulated","PgC/yr","global",7.18117336725836 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2150,"Simulated","PgC/yr","global",6.71529032619872 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2151,"Simulated","PgC/yr","global",7.03790762202856 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2152,"Simulated","PgC/yr","global",6.64886793575323 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2153,"Simulated","PgC/yr","global",6.89921552225857 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2154,"Simulated","PgC/yr","global",7.03109057452357 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2155,"Simulated","PgC/yr","global",6.83935447973012 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2156,"Simulated","PgC/yr","global",7.14540276389592 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2157,"Simulated","PgC/yr","global",6.94361719284424 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2158,"Simulated","PgC/yr","global",6.72900000536362 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2159,"Simulated","PgC/yr","global",6.96382710933283 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2160,"Simulated","PgC/yr","global",6.67873654233735 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2161,"Simulated","PgC/yr","global",7.00110939579381 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2162,"Simulated","PgC/yr","global",6.66059795332845 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2163,"Simulated","PgC/yr","global",7.73392511675793 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2164,"Simulated","PgC/yr","global",6.73862009929493 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2165,"Simulated","PgC/yr","global",6.70094059397721 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2166,"Simulated","PgC/yr","global",6.76917539596743 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2167,"Simulated","PgC/yr","global",6.86888536987734 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2168,"Simulated","PgC/yr","global",6.45232018582062 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2169,"Simulated","PgC/yr","global",7.00396872829295 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2170,"Simulated","PgC/yr","global",6.5709422801973 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2171,"Simulated","PgC/yr","global",6.00506783486365 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2172,"Simulated","PgC/yr","global",6.54016344740704 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2173,"Simulated","PgC/yr","global",6.45572308096583 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2174,"Simulated","PgC/yr","global",6.50932028767641 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2175,"Simulated","PgC/yr","global",6.56196706384313 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2176,"Simulated","PgC/yr","global",6.45824308885456 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2177,"Simulated","PgC/yr","global",6.73796396450322 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2178,"Simulated","PgC/yr","global",6.08377988726552 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2179,"Simulated","PgC/yr","global",6.50688712115718 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2180,"Simulated","PgC/yr","global",6.26141712490487 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2181,"Simulated","PgC/yr","global",6.74957497723877 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2182,"Simulated","PgC/yr","global",6.59402761092013 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2183,"Simulated","PgC/yr","global",6.28474850617459 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2184,"Simulated","PgC/yr","global",6.75737944327833 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2185,"Simulated","PgC/yr","global",6.18040055986449 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2186,"Simulated","PgC/yr","global",6.04598941797568 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2187,"Simulated","PgC/yr","global",6.34747048937569 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2188,"Simulated","PgC/yr","global",6.44691029013608 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2189,"Simulated","PgC/yr","global",6.04200436402018 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2190,"Simulated","PgC/yr","global",6.0873902367934 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2191,"Simulated","PgC/yr","global",6.2716949618014 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2192,"Simulated","PgC/yr","global",6.72130167877565 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2193,"Simulated","PgC/yr","global",6.20214949840128 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2194,"Simulated","PgC/yr","global",6.10756798981182 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2195,"Simulated","PgC/yr","global",5.98066058551636 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2196,"Simulated","PgC/yr","global",5.62236756856111 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2197,"Simulated","PgC/yr","global",6.19251975542891 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2198,"Simulated","PgC/yr","global",5.76128642079588 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2199,"Simulated","PgC/yr","global",5.93744896332741 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2200,"Simulated","PgC/yr","global",5.81996223944814 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2201,"Simulated","PgC/yr","global",6.10256335385156 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2202,"Simulated","PgC/yr","global",6.12931371200158 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2203,"Simulated","PgC/yr","global",5.29981459967164 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2204,"Simulated","PgC/yr","global",5.84801521814051 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2205,"Simulated","PgC/yr","global",6.28920475496825 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2206,"Simulated","PgC/yr","global",5.97419090348934 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2207,"Simulated","PgC/yr","global",5.53726463463417 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2208,"Simulated","PgC/yr","global",5.70520619418728 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2209,"Simulated","PgC/yr","global",5.91367211799568 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2210,"Simulated","PgC/yr","global",5.35064574794661 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2211,"Simulated","PgC/yr","global",5.04021197462155 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2212,"Simulated","PgC/yr","global",6.01064819694015 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2213,"Simulated","PgC/yr","global",6.23365522561765 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2214,"Simulated","PgC/yr","global",5.15764723694853 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2215,"Simulated","PgC/yr","global",5.58240124051348 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2216,"Simulated","PgC/yr","global",5.91070503787143 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2217,"Simulated","PgC/yr","global",5.32083664378232 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2218,"Simulated","PgC/yr","global",5.56654304154046 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2219,"Simulated","PgC/yr","global",5.1750364171022 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2220,"Simulated","PgC/yr","global",5.32507418097874 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2221,"Simulated","PgC/yr","global",5.12980332081234 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2222,"Simulated","PgC/yr","global",5.31587221215979 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2223,"Simulated","PgC/yr","global",5.38820624842466 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2224,"Simulated","PgC/yr","global",5.16002733374197 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2225,"Simulated","PgC/yr","global",5.14080322761444 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2226,"Simulated","PgC/yr","global",5.54757624317438 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2227,"Simulated","PgC/yr","global",5.03666112751351 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2228,"Simulated","PgC/yr","global",5.1469609239807 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2229,"Simulated","PgC/yr","global",5.26415978480185 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2230,"Simulated","PgC/yr","global",5.27660865593563 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2231,"Simulated","PgC/yr","global",5.21575697852559 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2232,"Simulated","PgC/yr","global",5.18318503227271 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2233,"Simulated","PgC/yr","global",4.87698557979705 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2234,"Simulated","PgC/yr","global",5.05160266758636 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2235,"Simulated","PgC/yr","global",4.92885560815889 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2236,"Simulated","PgC/yr","global",5.46870980611564 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2237,"Simulated","PgC/yr","global",4.65625572480842 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2238,"Simulated","PgC/yr","global",5.23986832394721 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2239,"Simulated","PgC/yr","global",5.13526146170215 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2240,"Simulated","PgC/yr","global",4.8949022408617 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2241,"Simulated","PgC/yr","global",5.01052026712343 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2242,"Simulated","PgC/yr","global",5.22467269245992 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2243,"Simulated","PgC/yr","global",4.85000525283524 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2244,"Simulated","PgC/yr","global",4.8092058909099 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2245,"Simulated","PgC/yr","global",5.03606449514164 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2246,"Simulated","PgC/yr","global",4.48329666390698 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2247,"Simulated","PgC/yr","global",4.4900123964809 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2248,"Simulated","PgC/yr","global",4.84354361167576 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2249,"Simulated","PgC/yr","global",4.51263135688609 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2250,"Simulated","PgC/yr","global",4.59068566632275 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2251,"Simulated","PgC/yr","global",4.75002188942878 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2252,"Simulated","PgC/yr","global",4.60288687873613 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2253,"Simulated","PgC/yr","global",4.55569663528572 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2254,"Simulated","PgC/yr","global",4.13766479698871 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2255,"Simulated","PgC/yr","global",4.9120132069983 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2256,"Simulated","PgC/yr","global",4.65538248659299 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2257,"Simulated","PgC/yr","global",4.59984903897748 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2258,"Simulated","PgC/yr","global",4.98785306151296 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2259,"Simulated","PgC/yr","global",4.17850275507827 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2260,"Simulated","PgC/yr","global",4.44911654414502 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2261,"Simulated","PgC/yr","global",4.25714083149872 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2262,"Simulated","PgC/yr","global",4.38262982675917 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2263,"Simulated","PgC/yr","global",4.09315537877794 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2264,"Simulated","PgC/yr","global",4.67811241097032 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2265,"Simulated","PgC/yr","global",4.54503605309403 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2266,"Simulated","PgC/yr","global",4.29165545135057 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2267,"Simulated","PgC/yr","global",4.63443120211671 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2268,"Simulated","PgC/yr","global",4.38126287927645 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2269,"Simulated","PgC/yr","global",4.35068667634833 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2270,"Simulated","PgC/yr","global",4.22636039053495 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2271,"Simulated","PgC/yr","global",3.97962958625153 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2272,"Simulated","PgC/yr","global",4.46542181535357 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2273,"Simulated","PgC/yr","global",4.68533471819959 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2274,"Simulated","PgC/yr","global",4.05588756587854 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2275,"Simulated","PgC/yr","global",3.86123906886015 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2276,"Simulated","PgC/yr","global",4.44306981175088 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2277,"Simulated","PgC/yr","global",4.1233311465023 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2278,"Simulated","PgC/yr","global",4.28525974530496 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2279,"Simulated","PgC/yr","global",4.20439434857444 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2280,"Simulated","PgC/yr","global",3.93993343135342 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2281,"Simulated","PgC/yr","global",4.403235353931 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2282,"Simulated","PgC/yr","global",4.19759177463103 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2283,"Simulated","PgC/yr","global",4.41252094777242 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2284,"Simulated","PgC/yr","global",4.3672958923501 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2285,"Simulated","PgC/yr","global",4.1647818186988 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2286,"Simulated","PgC/yr","global",3.81886530506943 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2287,"Simulated","PgC/yr","global",4.26406884297583 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2288,"Simulated","PgC/yr","global",4.22656784491762 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2289,"Simulated","PgC/yr","global",4.19902626540113 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2290,"Simulated","PgC/yr","global",4.08176790216015 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2291,"Simulated","PgC/yr","global",4.27985306596744 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2292,"Simulated","PgC/yr","global",3.95039138368296 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2293,"Simulated","PgC/yr","global",4.16518225390256 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2294,"Simulated","PgC/yr","global",3.84017682041174 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2295,"Simulated","PgC/yr","global",3.88406709182153 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2296,"Simulated","PgC/yr","global",4.03094640292624 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2297,"Simulated","PgC/yr","global",4.4072043261514 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2298,"Simulated","PgC/yr","global",4.14738942219812 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2299,"Simulated","PgC/yr","global",4.05415073848874 -"MPI-ESM-LR","fgco2","ocean","fgco2","rcp85",2300,"Simulated","PgC/yr","global",4.17486828294775 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",1.72725188028022 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.73090987368546 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.73679732379568 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",1.74027320652401 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.73094326828818 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.79775375819298 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.80760067056701 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.83621819371349 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.84552675573385 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.91545367767071 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.92448710119231 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.95314765199998 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.81952557126942 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",1.94445101855138 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.90515245191026 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.90376134652293 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.9965596263537 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.93812283308004 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",2.0188232758729 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.95314691805267 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.98777161646469 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.98270875616002 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",2.10156831239142 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",2.04942952100587 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",2.17554359596033 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",2.10053766687792 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",2.12686197164665 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",2.13057546981739 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",2.15412930696846 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",2.1685966929046 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",2.26307488639015 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",2.28626771320691 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",2.29493003461865 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",2.20949590689074 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",2.37794690687302 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",2.22955376950579 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",2.32061956670553 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",2.35394462791404 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.35772766759264 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",2.31629817667325 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",2.37486753918023 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.34491588330656 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",2.46716710181219 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",2.491075619002 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",2.44287115218482 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",2.47011408375849 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.44530345357827 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",2.52588472167628 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",2.50015326284918 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.5270290372798 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.56881770366522 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",2.48251549975351 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",2.62470292910716 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.566406503257 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.7040031839147 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",2.66013698791799 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.63571122135973 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.65738688733825 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.67078436157967 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.754007289542 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",2.9237488441298 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.78288903372096 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",2.83637241658292 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",2.68807157309023 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",2.77462377780524 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.76981238619849 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.81378170179261 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",2.70855191412702 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.86021185098194 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",2.77506047645615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",2.73906650758933 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",2.74337863153679 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",2.84349904498678 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",2.93950210575735 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.91893506719429 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",2.83941004102231 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",3.00384267946893 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",2.79901725068175 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.9585397816081 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",2.96022299802579 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",3.02290879577804 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",2.9727673502599 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",3.04915842140773 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.81398876667813 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",3.12384123018584 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.99186374189565 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",3.06150708493967 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",3.14692295572818 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",3.02537669361615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",2.99464631964396 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",3.03275102923796 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",2.77402194100904 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",3.04700520347984 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",3.04372812872976 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",3.2200837412671 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2101,"Simulated","PgC/yr","HL",2.91537634016306 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2102,"Simulated","PgC/yr","HL",2.93789017397239 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2103,"Simulated","PgC/yr","HL",2.97392882188185 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2104,"Simulated","PgC/yr","HL",3.25920772019126 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2105,"Simulated","PgC/yr","HL",2.88758083800653 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2106,"Simulated","PgC/yr","HL",2.99789311906741 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2107,"Simulated","PgC/yr","HL",3.14379267044059 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2108,"Simulated","PgC/yr","HL",3.00954086291595 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2109,"Simulated","PgC/yr","HL",3.06365388082857 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2110,"Simulated","PgC/yr","HL",2.88325146629723 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2111,"Simulated","PgC/yr","HL",3.18485977487445 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2112,"Simulated","PgC/yr","HL",2.7887896948828 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2113,"Simulated","PgC/yr","HL",3.23013239740865 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2114,"Simulated","PgC/yr","HL",3.10192464600201 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2115,"Simulated","PgC/yr","HL",3.29206470650126 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2116,"Simulated","PgC/yr","HL",3.44946888199706 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2117,"Simulated","PgC/yr","HL",3.0490061273404 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2118,"Simulated","PgC/yr","HL",2.86431562563608 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2119,"Simulated","PgC/yr","HL",3.11710909846241 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2120,"Simulated","PgC/yr","HL",3.20569195190414 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2121,"Simulated","PgC/yr","HL",3.00166102108268 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2122,"Simulated","PgC/yr","HL",3.12754858154784 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2123,"Simulated","PgC/yr","HL",3.07494107305988 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2124,"Simulated","PgC/yr","HL",3.03963453759458 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2125,"Simulated","PgC/yr","HL",3.07078784870556 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2126,"Simulated","PgC/yr","HL",3.12269902468084 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2127,"Simulated","PgC/yr","HL",3.32095562502162 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2128,"Simulated","PgC/yr","HL",3.23614342589759 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2129,"Simulated","PgC/yr","HL",2.93724613520572 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2130,"Simulated","PgC/yr","HL",2.972500376925 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2131,"Simulated","PgC/yr","HL",3.43561654390875 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2132,"Simulated","PgC/yr","HL",3.15553949717631 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2133,"Simulated","PgC/yr","HL",2.88636432033615 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2134,"Simulated","PgC/yr","HL",3.37896865546576 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2135,"Simulated","PgC/yr","HL",3.23624250878477 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2136,"Simulated","PgC/yr","HL",3.11825405626983 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2137,"Simulated","PgC/yr","HL",2.90106711987275 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2138,"Simulated","PgC/yr","HL",3.36248786856475 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2139,"Simulated","PgC/yr","HL",2.87590832343619 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2140,"Simulated","PgC/yr","HL",3.31298220490602 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2141,"Simulated","PgC/yr","HL",3.07025390203576 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2142,"Simulated","PgC/yr","HL",3.1512844376324 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2143,"Simulated","PgC/yr","HL",3.35535665299018 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2144,"Simulated","PgC/yr","HL",3.15212939447585 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2145,"Simulated","PgC/yr","HL",3.17401570333304 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2146,"Simulated","PgC/yr","HL",3.15382756507003 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2147,"Simulated","PgC/yr","HL",3.28441881037383 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2148,"Simulated","PgC/yr","HL",3.1716239525286 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2149,"Simulated","PgC/yr","HL",3.10050721025485 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2150,"Simulated","PgC/yr","HL",3.20348185305953 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2151,"Simulated","PgC/yr","HL",3.21776905493047 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2152,"Simulated","PgC/yr","HL",3.0522813672222 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2153,"Simulated","PgC/yr","HL",3.08303559448203 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2154,"Simulated","PgC/yr","HL",3.19441576888252 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2155,"Simulated","PgC/yr","HL",3.21497822027488 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2156,"Simulated","PgC/yr","HL",3.34317771477425 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2157,"Simulated","PgC/yr","HL",3.47551667211582 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2158,"Simulated","PgC/yr","HL",3.02392164306922 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2159,"Simulated","PgC/yr","HL",3.2892766241481 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2160,"Simulated","PgC/yr","HL",3.23028927864668 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2161,"Simulated","PgC/yr","HL",3.22539293263852 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2162,"Simulated","PgC/yr","HL",3.12695133192234 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2163,"Simulated","PgC/yr","HL",3.61642905150092 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2164,"Simulated","PgC/yr","HL",3.3115455030419 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2165,"Simulated","PgC/yr","HL",3.21758189836579 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2166,"Simulated","PgC/yr","HL",3.16518906946672 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2167,"Simulated","PgC/yr","HL",3.22608100824393 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2168,"Simulated","PgC/yr","HL",2.90838824431442 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2169,"Simulated","PgC/yr","HL",3.38395307515142 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2170,"Simulated","PgC/yr","HL",3.40697883721118 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2171,"Simulated","PgC/yr","HL",3.03043909520376 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2172,"Simulated","PgC/yr","HL",3.10887696191917 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2173,"Simulated","PgC/yr","HL",3.23297552581024 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2174,"Simulated","PgC/yr","HL",3.31256660724034 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2175,"Simulated","PgC/yr","HL",3.38945492769236 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2176,"Simulated","PgC/yr","HL",3.07114014341554 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2177,"Simulated","PgC/yr","HL",3.56214263853574 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2178,"Simulated","PgC/yr","HL",2.77441992393921 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2179,"Simulated","PgC/yr","HL",3.36345667901718 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2180,"Simulated","PgC/yr","HL",3.13214217428962 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2181,"Simulated","PgC/yr","HL",3.31416569494734 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2182,"Simulated","PgC/yr","HL",3.48192678445591 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2183,"Simulated","PgC/yr","HL",3.17947902364007 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2184,"Simulated","PgC/yr","HL",3.33588686565922 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2185,"Simulated","PgC/yr","HL",3.26865086980004 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2186,"Simulated","PgC/yr","HL",3.1052108950935 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2187,"Simulated","PgC/yr","HL",3.34026302650969 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2188,"Simulated","PgC/yr","HL",3.47831576367867 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2189,"Simulated","PgC/yr","HL",3.29335828863945 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2190,"Simulated","PgC/yr","HL",3.1368623729428 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2191,"Simulated","PgC/yr","HL",3.22020484257365 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2192,"Simulated","PgC/yr","HL",3.57820782777107 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2193,"Simulated","PgC/yr","HL",3.3969136672551 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2194,"Simulated","PgC/yr","HL",3.17301936985639 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2195,"Simulated","PgC/yr","HL",3.33046482988852 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2196,"Simulated","PgC/yr","HL",2.7633859435307 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2197,"Simulated","PgC/yr","HL",3.4109421526984 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2198,"Simulated","PgC/yr","HL",3.12723206676935 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2199,"Simulated","PgC/yr","HL",3.15094865673695 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2200,"Simulated","PgC/yr","HL",3.07665025286374 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2201,"Simulated","PgC/yr","HL",3.06496672908371 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2202,"Simulated","PgC/yr","HL",3.23316543467734 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2203,"Simulated","PgC/yr","HL",2.81735859401982 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2204,"Simulated","PgC/yr","HL",3.28929864256747 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2205,"Simulated","PgC/yr","HL",3.4487119988311 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2206,"Simulated","PgC/yr","HL",3.44205693157548 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2207,"Simulated","PgC/yr","HL",3.22309200781399 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2208,"Simulated","PgC/yr","HL",3.06870710807477 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2209,"Simulated","PgC/yr","HL",3.3289648250687 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2210,"Simulated","PgC/yr","HL",3.11236412908744 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2211,"Simulated","PgC/yr","HL",2.75417398732534 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2212,"Simulated","PgC/yr","HL",3.06538783135423 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2213,"Simulated","PgC/yr","HL",3.40163937051313 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2214,"Simulated","PgC/yr","HL",3.10591823681587 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2215,"Simulated","PgC/yr","HL",3.21358005064467 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2216,"Simulated","PgC/yr","HL",3.37526956101102 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2217,"Simulated","PgC/yr","HL",3.13069996782066 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2218,"Simulated","PgC/yr","HL",3.02533357421154 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2219,"Simulated","PgC/yr","HL",3.03133084118838 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2220,"Simulated","PgC/yr","HL",2.85685138146849 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2221,"Simulated","PgC/yr","HL",3.03315561769395 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2222,"Simulated","PgC/yr","HL",2.86544682193139 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2223,"Simulated","PgC/yr","HL",2.95026452566026 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2224,"Simulated","PgC/yr","HL",2.93508282550228 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2225,"Simulated","PgC/yr","HL",2.88666432130011 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2226,"Simulated","PgC/yr","HL",3.19935064712459 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2227,"Simulated","PgC/yr","HL",2.79532090852944 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2228,"Simulated","PgC/yr","HL",3.03819783573047 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2229,"Simulated","PgC/yr","HL",3.01816933100791 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2230,"Simulated","PgC/yr","HL",3.08358880726879 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2231,"Simulated","PgC/yr","HL",2.87926062778579 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2232,"Simulated","PgC/yr","HL",3.06803004167904 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2233,"Simulated","PgC/yr","HL",2.9157368917803 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2234,"Simulated","PgC/yr","HL",3.09709160294955 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2235,"Simulated","PgC/yr","HL",2.86050368678205 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2236,"Simulated","PgC/yr","HL",3.26565911706767 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2237,"Simulated","PgC/yr","HL",2.92529288578837 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2238,"Simulated","PgC/yr","HL",2.92625619163595 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2239,"Simulated","PgC/yr","HL",3.07458602604748 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2240,"Simulated","PgC/yr","HL",2.9499149832527 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2241,"Simulated","PgC/yr","HL",2.84755135158563 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2242,"Simulated","PgC/yr","HL",3.17699919915814 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2243,"Simulated","PgC/yr","HL",2.86382021120018 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2244,"Simulated","PgC/yr","HL",2.67389565598055 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2245,"Simulated","PgC/yr","HL",3.14429634178375 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2246,"Simulated","PgC/yr","HL",2.77370432530958 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2247,"Simulated","PgC/yr","HL",2.72470508529643 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2248,"Simulated","PgC/yr","HL",2.72997134075007 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2249,"Simulated","PgC/yr","HL",2.84786786636413 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2250,"Simulated","PgC/yr","HL",2.54074091620119 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2251,"Simulated","PgC/yr","HL",2.72062011804218 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2252,"Simulated","PgC/yr","HL",3.01825740468541 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2253,"Simulated","PgC/yr","HL",2.79364200405222 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2254,"Simulated","PgC/yr","HL",2.44224261805513 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2255,"Simulated","PgC/yr","HL",2.9318984116004 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2256,"Simulated","PgC/yr","HL",2.86167616761369 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2257,"Simulated","PgC/yr","HL",2.91564331349796 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2258,"Simulated","PgC/yr","HL",2.97673341804954 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2259,"Simulated","PgC/yr","HL",2.77038780089145 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2260,"Simulated","PgC/yr","HL",2.71906231487151 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2261,"Simulated","PgC/yr","HL",2.60900324563342 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2262,"Simulated","PgC/yr","HL",3.01935006874681 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2263,"Simulated","PgC/yr","HL",2.5459149695237 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2264,"Simulated","PgC/yr","HL",2.76754467248986 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2265,"Simulated","PgC/yr","HL",2.68442266228298 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2266,"Simulated","PgC/yr","HL",2.48116705505372 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2267,"Simulated","PgC/yr","HL",2.76763274616735 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2268,"Simulated","PgC/yr","HL",2.74340560410053 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2269,"Simulated","PgC/yr","HL",2.78763648016811 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2270,"Simulated","PgC/yr","HL",2.8116558234021 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2271,"Simulated","PgC/yr","HL",2.24652171393544 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2272,"Simulated","PgC/yr","HL",2.76654283440837 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2273,"Simulated","PgC/yr","HL",2.89196800806668 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2274,"Simulated","PgC/yr","HL",2.59273823924227 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2275,"Simulated","PgC/yr","HL",2.54661185249687 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2276,"Simulated","PgC/yr","HL",2.54367046689883 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2277,"Simulated","PgC/yr","HL",2.80056404464274 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2278,"Simulated","PgC/yr","HL",2.3467966232947 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2279,"Simulated","PgC/yr","HL",2.52435645988494 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2280,"Simulated","PgC/yr","HL",2.3981204579332 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2281,"Simulated","PgC/yr","HL",2.50250207773584 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2282,"Simulated","PgC/yr","HL",2.62160328611987 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2283,"Simulated","PgC/yr","HL",2.72283434534042 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2284,"Simulated","PgC/yr","HL",2.47380161854306 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2285,"Simulated","PgC/yr","HL",2.65711706995751 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2286,"Simulated","PgC/yr","HL",2.324621047453 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2287,"Simulated","PgC/yr","HL",2.63158148331942 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2288,"Simulated","PgC/yr","HL",2.51913754403295 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2289,"Simulated","PgC/yr","HL",2.6183217159425 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2290,"Simulated","PgC/yr","HL",2.5357647534228 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2291,"Simulated","PgC/yr","HL",2.82600082362389 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2292,"Simulated","PgC/yr","HL",2.35957226067565 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2293,"Simulated","PgC/yr","HL",2.58869785928725 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2294,"Simulated","PgC/yr","HL",2.20255258182816 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2295,"Simulated","PgC/yr","HL",2.3847368369473 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2296,"Simulated","PgC/yr","HL",2.66483122318499 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2297,"Simulated","PgC/yr","HL",2.73220043048139 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2298,"Simulated","PgC/yr","HL",2.45755835534104 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2299,"Simulated","PgC/yr","HL",2.39899679102426 -"MPI-ESM-LR","fgco2","ocean","fgco2_HL","rcp85",2300,"Simulated","PgC/yr","HL",2.49837444979405 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",2.1544122093296 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",2.2609165979279 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",2.12199547339274 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",2.03140420582924 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",2.06746076551361 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",2.31767954263489 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",2.27569316267046 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",2.43025948664378 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",2.52274708816168 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",2.48279922276677 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",2.50794342023936 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",2.55876676974899 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",2.77130812817334 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",2.8577050675903 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",2.82610809176259 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",2.68610906043892 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",2.71832318899921 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",2.99653821786984 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",3.10022609734517 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",3.10042337294867 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",3.02747049932178 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",3.16335740066703 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",3.22791006582585 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",3.33866876501772 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",3.25289786462179 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",3.33186275669687 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",3.14844931885548 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",3.44575165099386 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",3.28355555976074 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",3.45076174041976 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",3.41543652227451 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",3.37929598716432 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",3.54367766104076 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",3.61195057085752 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",3.59341199590132 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",3.61940216803397 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",3.82958999296338 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",3.94235521608637 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",3.97708105407594 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",4.02393578716555 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",3.95096602959062 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",3.96991648401629 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",4.32753938644105 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",4.26999400403638 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",4.09238997726662 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",4.08788596196772 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",4.30785847910511 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",4.40438578735058 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",4.23767946041666 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",4.41717049053795 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",4.39354940290502 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",4.65735353780266 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",4.54382409387331 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",4.49117949954666 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",4.47716626698162 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",4.51871588586893 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",4.58565140927456 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",4.76358645028894 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",4.69027101609345 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",4.81226864859749 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",4.72054526788596 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",4.86053052546254 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",4.57076198866874 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",4.72183200245295 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",5.00690280285974 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",4.88462080912542 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",4.76915104411387 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",4.63286470410297 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",4.85868573198114 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",4.88115337937377 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",4.85722260458849 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",4.81386196011587 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",4.75367823867157 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",5.01396695785995 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",4.97537469576749 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",4.82450062464351 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",4.81289113310314 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",4.86499855129322 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",4.79198347364721 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",5.07141992286477 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",4.84732416788841 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",4.83919188101698 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",4.77397229991029 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",4.79200124622411 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",4.72861357348057 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",4.78665614372379 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",4.81453331920797 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",4.67120104108818 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",4.72283126558871 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",4.86328660782409 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",4.64698012898514 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",4.57597335252794 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",4.59949047058605 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",4.65939960571737 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",4.65462189273434 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2101,"Simulated","PgC/yr","LL",4.90968458568758 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2102,"Simulated","PgC/yr","LL",4.67028664200708 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2103,"Simulated","PgC/yr","LL",4.51035211118348 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2104,"Simulated","PgC/yr","LL",4.68922909877315 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2105,"Simulated","PgC/yr","LL",4.70408208559634 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2106,"Simulated","PgC/yr","LL",4.29743575138671 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2107,"Simulated","PgC/yr","LL",4.84780269452123 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2108,"Simulated","PgC/yr","LL",4.85633219848619 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2109,"Simulated","PgC/yr","LL",4.44382491273195 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2110,"Simulated","PgC/yr","LL",4.55137477316594 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2111,"Simulated","PgC/yr","LL",4.43715219873779 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2112,"Simulated","PgC/yr","LL",4.32872392869091 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2113,"Simulated","PgC/yr","LL",4.90847827203102 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2114,"Simulated","PgC/yr","LL",4.42214459049564 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2115,"Simulated","PgC/yr","LL",4.38688290931278 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2116,"Simulated","PgC/yr","LL",4.58163791709789 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2117,"Simulated","PgC/yr","LL",3.98552169515644 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2118,"Simulated","PgC/yr","LL",4.33740272230177 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2119,"Simulated","PgC/yr","LL",4.61441365908797 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2120,"Simulated","PgC/yr","LL",4.23327186134741 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2121,"Simulated","PgC/yr","LL",4.17763614232981 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2122,"Simulated","PgC/yr","LL",4.10022679504721 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2123,"Simulated","PgC/yr","LL",4.49322912197674 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2124,"Simulated","PgC/yr","LL",4.11674462801077 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2125,"Simulated","PgC/yr","LL",3.82999654065979 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2126,"Simulated","PgC/yr","LL",4.46358846255044 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2127,"Simulated","PgC/yr","LL",4.16190474589372 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2128,"Simulated","PgC/yr","LL",4.03488325021669 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2129,"Simulated","PgC/yr","LL",4.25986274657902 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2130,"Simulated","PgC/yr","LL",4.25257421279555 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2131,"Simulated","PgC/yr","LL",4.02649103940822 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2132,"Simulated","PgC/yr","LL",3.92464484321335 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2133,"Simulated","PgC/yr","LL",4.11232991991076 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2134,"Simulated","PgC/yr","LL",4.22177655861357 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2135,"Simulated","PgC/yr","LL",3.74228887369704 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2136,"Simulated","PgC/yr","LL",3.92166704795507 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2137,"Simulated","PgC/yr","LL",4.12218303653977 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2138,"Simulated","PgC/yr","LL",3.88085232512225 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2139,"Simulated","PgC/yr","LL",4.09037634430474 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2140,"Simulated","PgC/yr","LL",4.06263246314725 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2141,"Simulated","PgC/yr","LL",3.98357559798675 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2142,"Simulated","PgC/yr","LL",4.14131210536321 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2143,"Simulated","PgC/yr","LL",3.9065954584361 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2144,"Simulated","PgC/yr","LL",3.67436874953159 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2145,"Simulated","PgC/yr","LL",4.20385247050341 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2146,"Simulated","PgC/yr","LL",3.93881403014061 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2147,"Simulated","PgC/yr","LL",3.74036810244942 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2148,"Simulated","PgC/yr","LL",3.65745636536102 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2149,"Simulated","PgC/yr","LL",4.09963630117997 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2150,"Simulated","PgC/yr","LL",3.53263156018786 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2151,"Simulated","PgC/yr","LL",3.84054545367412 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2152,"Simulated","PgC/yr","LL",3.61598983327068 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2153,"Simulated","PgC/yr","LL",3.83546427394066 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2154,"Simulated","PgC/yr","LL",3.85685668043132 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2155,"Simulated","PgC/yr","LL",3.64509998127675 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2156,"Simulated","PgC/yr","LL",3.82371571198611 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2157,"Simulated","PgC/yr","LL",3.49128366004828 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2158,"Simulated","PgC/yr","LL",3.72405687569223 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2159,"Simulated","PgC/yr","LL",3.69581314080965 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2160,"Simulated","PgC/yr","LL",3.4696060036985 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2161,"Simulated","PgC/yr","LL",3.79626507834734 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2162,"Simulated","PgC/yr","LL",3.55378670277701 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2163,"Simulated","PgC/yr","LL",4.14073760681517 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2164,"Simulated","PgC/yr","LL",3.44895338072098 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2165,"Simulated","PgC/yr","LL",3.50434783700727 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2166,"Simulated","PgC/yr","LL",3.62432606046194 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2167,"Simulated","PgC/yr","LL",3.66358790438881 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2168,"Simulated","PgC/yr","LL",3.56221890188349 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2169,"Simulated","PgC/yr","LL",3.64216617314628 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2170,"Simulated","PgC/yr","LL",3.1870966759363 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2171,"Simulated","PgC/yr","LL",2.99493024397553 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2172,"Simulated","PgC/yr","LL",3.45145398228971 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2173,"Simulated","PgC/yr","LL",3.24431859744153 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2174,"Simulated","PgC/yr","LL",3.21903932838456 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2175,"Simulated","PgC/yr","LL",3.19548622085824 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2176,"Simulated","PgC/yr","LL",3.4070296490901 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2177,"Simulated","PgC/yr","LL",3.20024082949131 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2178,"Simulated","PgC/yr","LL",3.32692908935161 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2179,"Simulated","PgC/yr","LL",3.16623611380914 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2180,"Simulated","PgC/yr","LL",3.15016215095346 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2181,"Simulated","PgC/yr","LL",3.45729227379878 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2182,"Simulated","PgC/yr","LL",3.13595430867145 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2183,"Simulated","PgC/yr","LL",3.12659571399447 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2184,"Simulated","PgC/yr","LL",3.44358161935533 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2185,"Simulated","PgC/yr","LL",2.93416136043705 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2186,"Simulated","PgC/yr","LL",2.96176528255151 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2187,"Simulated","PgC/yr","LL",3.03005329905863 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2188,"Simulated","PgC/yr","LL",2.99266957219485 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2189,"Simulated","PgC/yr","LL",2.77154894659023 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2190,"Simulated","PgC/yr","LL",2.97176502293988 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2191,"Simulated","PgC/yr","LL",3.07325132445269 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2192,"Simulated","PgC/yr","LL",3.16770235140274 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2193,"Simulated","PgC/yr","LL",2.82890816125195 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2194,"Simulated","PgC/yr","LL",2.95611626898634 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2195,"Simulated","PgC/yr","LL",2.67357894941553 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2196,"Simulated","PgC/yr","LL",2.87723935116688 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2197,"Simulated","PgC/yr","LL",2.80540970439957 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2198,"Simulated","PgC/yr","LL",2.65576016382346 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2199,"Simulated","PgC/yr","LL",2.80813823926694 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2200,"Simulated","PgC/yr","LL",2.76440303773632 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2201,"Simulated","PgC/yr","LL",3.05807976418871 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2202,"Simulated","PgC/yr","LL",2.91828733907141 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2203,"Simulated","PgC/yr","LL",2.5018185459279 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2204,"Simulated","PgC/yr","LL",2.58191244095006 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2205,"Simulated","PgC/yr","LL",2.86454040066302 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2206,"Simulated","PgC/yr","LL",2.55666116370169 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2207,"Simulated","PgC/yr","LL",2.33723870781912 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2208,"Simulated","PgC/yr","LL",2.65770892687969 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2209,"Simulated","PgC/yr","LL",2.60819408334374 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2210,"Simulated","PgC/yr","LL",2.26054781695739 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2211,"Simulated","PgC/yr","LL",2.30521207994505 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2212,"Simulated","PgC/yr","LL",2.96590407139527 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2213,"Simulated","PgC/yr","LL",2.85568299265439 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2214,"Simulated","PgC/yr","LL",2.07426499657677 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2215,"Simulated","PgC/yr","LL",2.39171076736471 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2216,"Simulated","PgC/yr","LL",2.55939503034213 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2217,"Simulated","PgC/yr","LL",2.21263783711481 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2218,"Simulated","PgC/yr","LL",2.56221820418145 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2219,"Simulated","PgC/yr","LL",2.16545564429596 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2220,"Simulated","PgC/yr","LL",2.48794260651936 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2221,"Simulated","PgC/yr","LL",2.11849472005941 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2222,"Simulated","PgC/yr","LL",2.47024911759438 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2223,"Simulated","PgC/yr","LL",2.45850055563983 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2224,"Simulated","PgC/yr","LL",2.24574548197835 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2225,"Simulated","PgC/yr","LL",2.27448240586968 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2226,"Simulated","PgC/yr","LL",2.37103148552185 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2227,"Simulated","PgC/yr","LL",2.26093703639133 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2228,"Simulated","PgC/yr","LL",2.13063116850464 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2229,"Simulated","PgC/yr","LL",2.26745246307999 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2230,"Simulated","PgC/yr","LL",2.21512111042106 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2231,"Simulated","PgC/yr","LL",2.35663303235268 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2232,"Simulated","PgC/yr","LL",2.13726122831425 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2233,"Simulated","PgC/yr","LL",1.98234123006078 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2234,"Simulated","PgC/yr","LL",1.97714141837656 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2235,"Simulated","PgC/yr","LL",2.08879674407263 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2236,"Simulated","PgC/yr","LL",2.22666439911251 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2237,"Simulated","PgC/yr","LL",1.75253647907224 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2238,"Simulated","PgC/yr","LL",2.3341822689081 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2239,"Simulated","PgC/yr","LL",2.08293046075496 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2240,"Simulated","PgC/yr","LL",1.96639656270199 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2241,"Simulated","PgC/yr","LL",2.18313980261807 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2242,"Simulated","PgC/yr","LL",2.07081400645873 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2243,"Simulated","PgC/yr","LL",2.00679940606533 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2244,"Simulated","PgC/yr","LL",2.15407097585327 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2245,"Simulated","PgC/yr","LL",1.91490496430121 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2246,"Simulated","PgC/yr","LL",1.72992976126542 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2247,"Simulated","PgC/yr","LL",1.78513627255108 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2248,"Simulated","PgC/yr","LL",2.13284118844118 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2249,"Simulated","PgC/yr","LL",1.68580267441433 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2250,"Simulated","PgC/yr","LL",2.06773490751217 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2251,"Simulated","PgC/yr","LL",2.04873913301542 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2252,"Simulated","PgC/yr","LL",1.60723766531933 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2253,"Simulated","PgC/yr","LL",1.78246905307399 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2254,"Simulated","PgC/yr","LL",1.71299871588912 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2255,"Simulated","PgC/yr","LL",2.00131301157872 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2256,"Simulated","PgC/yr","LL",1.81463830587762 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2257,"Simulated","PgC/yr","LL",1.70577949515553 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2258,"Simulated","PgC/yr","LL",2.03263984423767 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2259,"Simulated","PgC/yr","LL",1.4289471727671 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2260,"Simulated","PgC/yr","LL",1.74989858434702 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2261,"Simulated","PgC/yr","LL",1.66719878523805 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2262,"Simulated","PgC/yr","LL",1.38628232467981 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2263,"Simulated","PgC/yr","LL",1.56594574879695 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2264,"Simulated","PgC/yr","LL",1.93050573229714 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2265,"Simulated","PgC/yr","LL",1.8799391965236 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2266,"Simulated","PgC/yr","LL",1.82819300595884 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2267,"Simulated","PgC/yr","LL",1.88681051906453 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2268,"Simulated","PgC/yr","LL",1.65806412502991 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2269,"Simulated","PgC/yr","LL",1.58375920261595 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2270,"Simulated","PgC/yr","LL",1.43587314598197 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2271,"Simulated","PgC/yr","LL",1.74897618760632 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2272,"Simulated","PgC/yr","LL",1.71917424204472 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2273,"Simulated","PgC/yr","LL",1.81455299750854 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2274,"Simulated","PgC/yr","LL",1.48239419894043 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2275,"Simulated","PgC/yr","LL",1.33374303287124 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2276,"Simulated","PgC/yr","LL",1.91747487891982 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2277,"Simulated","PgC/yr","LL",1.34400269719666 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2278,"Simulated","PgC/yr","LL",1.95481728454233 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2279,"Simulated","PgC/yr","LL",1.6983323411233 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2280,"Simulated","PgC/yr","LL",1.55928636423547 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2281,"Simulated","PgC/yr","LL",1.91846125693733 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2282,"Simulated","PgC/yr","LL",1.59527983127187 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2283,"Simulated","PgC/yr","LL",1.70963036825364 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2284,"Simulated","PgC/yr","LL",1.91099410875609 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2285,"Simulated","PgC/yr","LL",1.52737303653908 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2286,"Simulated","PgC/yr","LL",1.51118310761918 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2287,"Simulated","PgC/yr","LL",1.65176596809376 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2288,"Simulated","PgC/yr","LL",1.72563368511617 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2289,"Simulated","PgC/yr","LL",1.59996112802526 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2290,"Simulated","PgC/yr","LL",1.56462613496271 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2291,"Simulated","PgC/yr","LL",1.47507234157529 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2292,"Simulated","PgC/yr","LL",1.60788280986051 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2293,"Simulated","PgC/yr","LL",1.59549976691091 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2294,"Simulated","PgC/yr","LL",1.65328818930457 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2295,"Simulated","PgC/yr","LL",1.51676414107774 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2296,"Simulated","PgC/yr","LL",1.38613436797718 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2297,"Simulated","PgC/yr","LL",1.6950533006867 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2298,"Simulated","PgC/yr","LL",1.70754697792745 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2299,"Simulated","PgC/yr","LL",1.67243858522028 -"MPI-ESM-LR","fgco2","ocean","fgco2_LL","rcp85",2300,"Simulated","PgC/yr","LL",1.69457477405388 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",7.27302539808949 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",7.85985647477791 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",8.28348805512674 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",7.96865994233726 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",8.88642662726951 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",8.9201808270305 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",9.46568831068427 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",8.77728770574235 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",8.77540163292333 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",9.25660578574757 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",9.04358681118861 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",9.89765261323351 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",8.75612558077303 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",9.29319993423605 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",11.213556376961 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",10.8525588446019 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",9.85201147661318 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",11.2500272974613 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",11.0852110042769 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",11.4535851009282 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",11.6470074023676 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",10.2652074719634 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",10.4376011454207 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",11.8233032954505 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",12.2899950706673 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",12.3208933477023 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",12.2250493568994 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",12.8486742570571 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",11.714178065922 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",12.1978136895129 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",12.1229412766976 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",13.517494162878 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",13.3102201227678 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",12.0226702063195 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",13.0542482073305 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",13.8977209663919 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",13.9429958420474 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",13.8751519885576 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",13.2052709528386 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",14.5713444817518 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",13.3313856707367 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",16.1297791822064 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",15.2166027398337 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",14.2338823541343 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",14.7999209898179 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",14.8775432123694 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",15.2930725524957 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",15.6479805684392 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",16.4659747999455 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",15.4942878831873 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",15.4713309653902 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",16.3471853013443 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",16.6982139176601 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",16.2221545333421 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",15.6197864611446 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",16.9140112269524 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",17.2386371058017 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",16.4718737693794 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",15.8260336013534 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",16.8113896967999 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",17.334560966597 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",16.268581818887 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",17.7710961147076 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",18.0142203713777 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",18.0795540251084 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",17.4456258959394 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",17.5415155267379 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",18.1952628240051 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",18.2643389573767 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",17.678823453562 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",18.2137584322303 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",18.1470898086277 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",17.1025728688583 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",17.9114162812427 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",17.7831678935492 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",17.6039510407467 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",19.254042262406 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",18.8721838290486 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",18.109779112208 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",18.9663619600114 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",18.9116738352592 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",18.4775804269143 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",18.1062306025485 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",18.3654885976705 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",17.4970849910014 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",18.8699588792621 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",17.3468951754134 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",18.1453098487985 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",18.1105892221303 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",18.4004260143179 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",18.4264864518172 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",19.0266409842271 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",17.7015179413843 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",17.1738511320185 -"MRI-ESM1","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",18.2708997067471 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",2.15784617466817 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",2.01717629049718 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.88805694073488 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",2.17905018119184 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",2.07563138357454 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",2.11731945885391 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",2.19398845195878 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",2.16319578523598 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",2.24337688351061 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",2.1875212737609 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",2.10711070627069 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",2.28356902970521 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",2.22279822439123 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",2.56792868299115 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",2.45030031074188 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",2.62750309537199 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",2.83039066708649 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",2.88728677083661 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",2.92239030580021 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",2.91369149568897 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",2.97575153262636 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",2.80041428016872 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",2.93325068088875 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",3.07235807238571 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",3.27146378122663 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",3.29722564194068 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",3.17930298855998 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",3.52018388748816 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",3.32426272089094 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",3.54112163965482 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",3.43452530648742 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",3.56433306389647 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",3.47932435372764 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",3.65561626818903 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",3.58074274032057 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",3.66248457959583 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",3.58168514061051 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",3.90546094877424 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",3.79622309211757 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",3.90480932626893 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",4.09210875638457 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",4.24013391716794 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",4.30588823330883 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",4.02202605526888 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",4.23594391439185 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",4.28546722479558 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",4.61108229003076 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",4.41158070300112 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",4.37119236938557 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",4.31861939559004 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",4.77105036006472 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",4.60418945519634 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",4.55627418097507 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",4.41899903985595 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",4.35799175863279 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",4.74190776968601 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",4.72120999677534 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",4.54188068063596 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",4.44707661280663 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",4.42174216040251 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",4.72565749554143 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",4.56082853181865 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",5.57366010588208 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",4.89445925453853 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",5.20381178391533 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",5.09453714211722 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",5.21270502977412 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",5.78271707131623 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",5.65148870677867 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",5.23484442989412 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",5.51766261058686 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",5.40490038704661 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",5.3013397038838 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",5.19570679108716 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",5.16198707811065 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",5.69009558854502 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",6.5135870329802 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",5.52244117562582 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",6.11384290107214 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",5.96477374294155 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",6.47038200853523 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",5.99578361716613 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",5.99131860166602 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",6.21602676894147 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",6.10147258351162 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",6.07432514913707 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",5.44367542945949 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",5.93638962714564 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",5.96796354020546 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",6.26418552576553 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",6.16419475299472 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",6.32552212158815 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",5.83582605717258 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",5.76949894382944 -"MRI-ESM1","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",5.38498210879955 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",5.11517119632302 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",5.84267137983708 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",6.3954223954849 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",5.78959237767923 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",6.81078343103998 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",6.80285301841341 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",7.27168711389661 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",6.61408196155528 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",6.53201749924204 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",7.06907477785795 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",6.93646757736899 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",7.61406826406763 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",6.53330881110195 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",6.72526516826972 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",8.76325179236262 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",8.22504421275557 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",7.02161303058209 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",8.36273070200388 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",8.16281205988989 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",8.53986932801628 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",8.67124509797316 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",7.46476866053094 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",7.50432414087694 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",8.75093362373039 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",9.01852202960855 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",9.02365154141707 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",9.0457236056912 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",9.32845619254422 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",8.38988302086524 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",8.65665916550618 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",8.68840882502062 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",9.95312661457672 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",9.83087212300801 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",8.36702477270632 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",9.47346558868994 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",10.2351966435121 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",10.3612758134392 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",9.96966158768192 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",9.40901686086652 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",10.6665063946563 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",9.23925426228429 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",11.8896211487856 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",10.9106869963185 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",10.2118236090994 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",10.5639547916008 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",10.5920507242895 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",10.6819692988277 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",11.2363834700647 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",12.0947533297327 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",11.175632897149 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",10.7002427620958 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",11.7429601869851 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",12.1419050462628 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",11.8031119466225 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",11.2617750847222 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",12.1720775088683 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",12.5173996048983 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",11.9299637788443 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",11.3789203468676 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",12.3896109196443 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",12.6088731623045 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",11.7077267863498 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",12.1974111738537 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",13.1197381549601 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",12.8757120857568 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",12.351055071142 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",12.3287734222204 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",12.4125106984015 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",12.6128137400071 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",12.4439387372358 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",12.6960777605328 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",12.7421574081291 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",11.8011899491646 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",12.7156744079805 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",12.6211488345105 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",11.9138247951651 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",12.7404189179662 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",13.3497114286797 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",11.9959105056914 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",13.0015497987169 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",12.4412633940407 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",12.4817702148369 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",12.1148811825079 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",12.1494288453568 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",11.3955905358744 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",12.7956063223605 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",11.9031910303352 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",12.2088948672077 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",12.1425907840493 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",12.1362163201186 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",12.2622665152097 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",12.7010807488905 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",11.8656686176519 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",11.4043216198038 -"MRI-ESM1","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",12.8858919114887 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2006,"Simulated","PgC/yr","global",2.76775554619817 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2007,"Simulated","PgC/yr","global",2.78609754565197 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2008,"Simulated","PgC/yr","global",2.77652671722005 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2009,"Simulated","PgC/yr","global",2.75581877981658 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2010,"Simulated","PgC/yr","global",2.96665608803327 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2011,"Simulated","PgC/yr","global",2.77908744351319 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2012,"Simulated","PgC/yr","global",2.96342100677325 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2013,"Simulated","PgC/yr","global",2.98772626340881 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2014,"Simulated","PgC/yr","global",3.06659162113982 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2015,"Simulated","PgC/yr","global",3.25444732216607 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2016,"Simulated","PgC/yr","global",3.28977463734808 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2017,"Simulated","PgC/yr","global",3.22738996823325 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2018,"Simulated","PgC/yr","global",3.22519945370402 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2019,"Simulated","PgC/yr","global",3.23626593766215 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2020,"Simulated","PgC/yr","global",3.27319028943802 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2021,"Simulated","PgC/yr","global",3.3733354193586 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2022,"Simulated","PgC/yr","global",3.38580642979334 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2023,"Simulated","PgC/yr","global",3.66641555570628 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2024,"Simulated","PgC/yr","global",3.52806343263702 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2025,"Simulated","PgC/yr","global",3.51826705980739 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2026,"Simulated","PgC/yr","global",3.63275020656594 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2027,"Simulated","PgC/yr","global",3.8546391902702 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2028,"Simulated","PgC/yr","global",3.78649972167452 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2029,"Simulated","PgC/yr","global",3.78696334071424 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2030,"Simulated","PgC/yr","global",3.72212046548705 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2031,"Simulated","PgC/yr","global",3.8600271953265 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2032,"Simulated","PgC/yr","global",3.88449420602506 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2033,"Simulated","PgC/yr","global",4.00988094356562 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2034,"Simulated","PgC/yr","global",3.99016859102878 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2035,"Simulated","PgC/yr","global",4.08764363979673 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2036,"Simulated","PgC/yr","global",4.11454721345838 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2037,"Simulated","PgC/yr","global",4.23493438351647 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2038,"Simulated","PgC/yr","global",4.26291214085002 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2039,"Simulated","PgC/yr","global",4.30235393262048 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2040,"Simulated","PgC/yr","global",4.52635483204871 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2041,"Simulated","PgC/yr","global",4.47832640558177 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2042,"Simulated","PgC/yr","global",4.44979617838515 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2043,"Simulated","PgC/yr","global",4.41972928759002 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2044,"Simulated","PgC/yr","global",4.55883550354454 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2045,"Simulated","PgC/yr","global",4.72086295369415 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2046,"Simulated","PgC/yr","global",4.63902564983378 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2047,"Simulated","PgC/yr","global",4.71946298367001 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2048,"Simulated","PgC/yr","global",4.75774515828459 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2049,"Simulated","PgC/yr","global",4.87512051325413 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2050,"Simulated","PgC/yr","global",4.93547072633713 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2051,"Simulated","PgC/yr","global",4.97081968466842 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2052,"Simulated","PgC/yr","global",4.97289514877256 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2053,"Simulated","PgC/yr","global",5.06694716261573 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2054,"Simulated","PgC/yr","global",5.04586559610899 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2055,"Simulated","PgC/yr","global",5.16762539747635 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2056,"Simulated","PgC/yr","global",5.06398432939133 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2057,"Simulated","PgC/yr","global",5.12323871565316 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2058,"Simulated","PgC/yr","global",5.19693249982062 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2059,"Simulated","PgC/yr","global",5.31511548599204 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2060,"Simulated","PgC/yr","global",5.53786222187545 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2061,"Simulated","PgC/yr","global",5.45505211541084 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2062,"Simulated","PgC/yr","global",5.48451755447875 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2063,"Simulated","PgC/yr","global",5.55738548163441 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2064,"Simulated","PgC/yr","global",5.60912969509789 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2065,"Simulated","PgC/yr","global",5.66294025976056 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2066,"Simulated","PgC/yr","global",5.66719598637585 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2067,"Simulated","PgC/yr","global",5.48337958047215 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2068,"Simulated","PgC/yr","global",5.54567767698988 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2069,"Simulated","PgC/yr","global",5.60178127636255 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2070,"Simulated","PgC/yr","global",5.74535053752015 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2071,"Simulated","PgC/yr","global",5.79680199891187 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2072,"Simulated","PgC/yr","global",5.78993314679993 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2073,"Simulated","PgC/yr","global",5.60024005631156 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2074,"Simulated","PgC/yr","global",5.74003315747728 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2075,"Simulated","PgC/yr","global",5.74114493188213 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2076,"Simulated","PgC/yr","global",5.74695099145336 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2077,"Simulated","PgC/yr","global",5.87469569315175 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2078,"Simulated","PgC/yr","global",5.85055219057919 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2079,"Simulated","PgC/yr","global",5.86843171010639 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2080,"Simulated","PgC/yr","global",5.69309600137903 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2081,"Simulated","PgC/yr","global",5.8393376219155 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2082,"Simulated","PgC/yr","global",5.89823432665774 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2083,"Simulated","PgC/yr","global",5.67344971740314 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2084,"Simulated","PgC/yr","global",5.72088010948223 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2085,"Simulated","PgC/yr","global",5.98293194356173 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2086,"Simulated","PgC/yr","global",5.91038182896648 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2087,"Simulated","PgC/yr","global",5.76275162953706 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2088,"Simulated","PgC/yr","global",5.80566771632268 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2089,"Simulated","PgC/yr","global",5.77203198412346 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2090,"Simulated","PgC/yr","global",5.90811955031071 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2091,"Simulated","PgC/yr","global",5.88459002970968 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2092,"Simulated","PgC/yr","global",5.83548855868395 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2093,"Simulated","PgC/yr","global",5.91350072068829 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2094,"Simulated","PgC/yr","global",5.78948205800452 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2095,"Simulated","PgC/yr","global",5.92561632782968 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2096,"Simulated","PgC/yr","global",5.80985851349015 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2097,"Simulated","PgC/yr","global",5.72591271124517 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2098,"Simulated","PgC/yr","global",5.78020170341812 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2099,"Simulated","PgC/yr","global",5.85340339071786 -"NorESM1-ME","fgco2","ocean","fgco2","rcp85",2100,"Simulated","PgC/yr","global",5.84035598904453 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.808977033847339 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.779303087151008 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.784824070792199 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.777044618983947 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.838785443566654 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.766152773709504 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.812298100308692 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.815957366803805 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.851485220777982 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.960139172841754 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2016,"Simulated","PgC/yr","HL",0.947835806238693 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.876185907893835 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.932851008668423 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.882213766069769 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2020,"Simulated","PgC/yr","HL",0.880762076040614 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.945733417302108 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.952361933716158 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.987663072821202 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.91504384926635 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.996993785378161 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.91841274371436 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.04959606038233 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.05082052492327 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2029,"Simulated","PgC/yr","HL",1.1233262208372 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.986309762067091 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.10286111894535 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.05074971907826 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.11151883556196 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.08521957032982 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.06561503178507 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.10162576119748 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.16155286682712 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.15048536859101 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.15765463060509 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.22306969984243 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.191759729631 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.25890835062669 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2043,"Simulated","PgC/yr","HL",1.18858810435216 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2044,"Simulated","PgC/yr","HL",1.17579182013572 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2045,"Simulated","PgC/yr","HL",1.22251380587652 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2046,"Simulated","PgC/yr","HL",1.22708282535626 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2047,"Simulated","PgC/yr","HL",1.26644100321554 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.34195577733623 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.34973063357281 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.23186426237103 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.4619619828734 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2052,"Simulated","PgC/yr","HL",1.33971279794777 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.35084310233006 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2054,"Simulated","PgC/yr","HL",1.26601480649459 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2055,"Simulated","PgC/yr","HL",1.33984232498636 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2056,"Simulated","PgC/yr","HL",1.28162238912954 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2057,"Simulated","PgC/yr","HL",1.4013753276057 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.39100924977176 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2059,"Simulated","PgC/yr","HL",1.44942696541681 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2060,"Simulated","PgC/yr","HL",1.48145197253907 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2061,"Simulated","PgC/yr","HL",1.49352011395509 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2062,"Simulated","PgC/yr","HL",1.55575470718296 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2063,"Simulated","PgC/yr","HL",1.54070250789484 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2064,"Simulated","PgC/yr","HL",1.51879269443452 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2065,"Simulated","PgC/yr","HL",1.58146233511397 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.59300641115307 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2067,"Simulated","PgC/yr","HL",1.47882960317816 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2068,"Simulated","PgC/yr","HL",1.5496528092412 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.46406011665103 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2070,"Simulated","PgC/yr","HL",1.46867509184748 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2071,"Simulated","PgC/yr","HL",1.67042051802499 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2072,"Simulated","PgC/yr","HL",1.60194701073701 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.46108678177949 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2074,"Simulated","PgC/yr","HL",1.54086199125248 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2075,"Simulated","PgC/yr","HL",1.56899999577234 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2076,"Simulated","PgC/yr","HL",1.61150937414749 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.57819011787742 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.58700425413722 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.72705327959152 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2080,"Simulated","PgC/yr","HL",1.55488188897807 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.66420662429954 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.73390238344581 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2083,"Simulated","PgC/yr","HL",1.52365055410413 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2084,"Simulated","PgC/yr","HL",1.57984809801273 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.71195767768206 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2086,"Simulated","PgC/yr","HL",1.61100539312084 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.65444324718001 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2088,"Simulated","PgC/yr","HL",1.74552747771141 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2089,"Simulated","PgC/yr","HL",1.66546530031849 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.71089388794326 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2091,"Simulated","PgC/yr","HL",1.60305573495438 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.77878239597808 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2093,"Simulated","PgC/yr","HL",1.7634893546931 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2094,"Simulated","PgC/yr","HL",1.64718343538337 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.68365457299473 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.67097828426084 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.72904809810972 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.7291927735142 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2099,"Simulated","PgC/yr","HL",1.60224316980029 -"NorESM1-ME","fgco2","ocean","fgco2_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.72522696536795 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2006,"Simulated","PgC/yr","LL",1.95877872753885 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2007,"Simulated","PgC/yr","LL",2.00679387101256 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2008,"Simulated","PgC/yr","LL",1.99170314820194 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2009,"Simulated","PgC/yr","LL",1.97877405637626 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2010,"Simulated","PgC/yr","LL",2.12787136665196 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2011,"Simulated","PgC/yr","LL",2.01293480206705 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2012,"Simulated","PgC/yr","LL",2.15112319111483 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2013,"Simulated","PgC/yr","LL",2.17176962529599 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2014,"Simulated","PgC/yr","LL",2.21510591801834 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2015,"Simulated","PgC/yr","LL",2.29430823233175 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2016,"Simulated","PgC/yr","LL",2.34193871982114 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2017,"Simulated","PgC/yr","LL",2.35120340627477 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2018,"Simulated","PgC/yr","LL",2.2923481339532 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2019,"Simulated","PgC/yr","LL",2.35405296106039 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2020,"Simulated","PgC/yr","LL",2.39242845116377 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2021,"Simulated","PgC/yr","LL",2.42760170442035 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2022,"Simulated","PgC/yr","LL",2.43344421219229 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2023,"Simulated","PgC/yr","LL",2.67875299497982 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2024,"Simulated","PgC/yr","LL",2.61301945355825 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2025,"Simulated","PgC/yr","LL",2.52127367231025 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2026,"Simulated","PgC/yr","LL",2.71433803361004 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2027,"Simulated","PgC/yr","LL",2.80504320899618 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2028,"Simulated","PgC/yr","LL",2.7356791739392 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2029,"Simulated","PgC/yr","LL",2.6636370805934 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2030,"Simulated","PgC/yr","LL",2.73581094525877 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2031,"Simulated","PgC/yr","LL",2.75716661918936 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2032,"Simulated","PgC/yr","LL",2.83374513399258 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2033,"Simulated","PgC/yr","LL",2.89836152591812 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2034,"Simulated","PgC/yr","LL",2.90494815408291 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2035,"Simulated","PgC/yr","LL",3.02202794042429 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2036,"Simulated","PgC/yr","LL",3.0129211857728 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2037,"Simulated","PgC/yr","LL",3.07338193659819 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2038,"Simulated","PgC/yr","LL",3.11242694127379 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2039,"Simulated","PgC/yr","LL",3.14469928768638 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2040,"Simulated","PgC/yr","LL",3.30328607078437 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2041,"Simulated","PgC/yr","LL",3.28656661570764 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2042,"Simulated","PgC/yr","LL",3.19088804191464 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2043,"Simulated","PgC/yr","LL",3.23114127332184 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2044,"Simulated","PgC/yr","LL",3.38304453757889 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2045,"Simulated","PgC/yr","LL",3.49834928673317 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2046,"Simulated","PgC/yr","LL",3.41194315064788 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2047,"Simulated","PgC/yr","LL",3.4530218906159 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2048,"Simulated","PgC/yr","LL",3.41578874158434 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2049,"Simulated","PgC/yr","LL",3.52538953663357 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2050,"Simulated","PgC/yr","LL",3.70360733962665 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2051,"Simulated","PgC/yr","LL",3.50885708056182 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2052,"Simulated","PgC/yr","LL",3.63318235166582 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2053,"Simulated","PgC/yr","LL",3.71610429903669 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2054,"Simulated","PgC/yr","LL",3.77985061269039 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2055,"Simulated","PgC/yr","LL",3.82778339908937 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2056,"Simulated","PgC/yr","LL",3.78236201901624 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2057,"Simulated","PgC/yr","LL",3.72186348082714 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2058,"Simulated","PgC/yr","LL",3.80592292473604 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2059,"Simulated","PgC/yr","LL",3.86568800050666 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2060,"Simulated","PgC/yr","LL",4.05641051416387 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2061,"Simulated","PgC/yr","LL",3.96153128844912 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2062,"Simulated","PgC/yr","LL",3.92876286177463 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2063,"Simulated","PgC/yr","LL",4.01668339912817 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2064,"Simulated","PgC/yr","LL",4.09033678441837 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2065,"Simulated","PgC/yr","LL",4.08147806989783 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2066,"Simulated","PgC/yr","LL",4.0741899532377 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2067,"Simulated","PgC/yr","LL",4.0045497797537 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2068,"Simulated","PgC/yr","LL",3.99602533806587 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2069,"Simulated","PgC/yr","LL",4.13772116959034 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2070,"Simulated","PgC/yr","LL",4.27667499497972 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2071,"Simulated","PgC/yr","LL",4.12638205376031 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2072,"Simulated","PgC/yr","LL",4.1879861145643 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2073,"Simulated","PgC/yr","LL",4.13915321378386 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2074,"Simulated","PgC/yr","LL",4.19917020531248 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2075,"Simulated","PgC/yr","LL",4.17214545792026 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2076,"Simulated","PgC/yr","LL",4.13544133198049 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2077,"Simulated","PgC/yr","LL",4.29650560966768 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2078,"Simulated","PgC/yr","LL",4.26354824617469 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2079,"Simulated","PgC/yr","LL",4.14137782370831 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2080,"Simulated","PgC/yr","LL",4.13821434313195 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2081,"Simulated","PgC/yr","LL",4.1751306596525 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2082,"Simulated","PgC/yr","LL",4.16433219379539 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2083,"Simulated","PgC/yr","LL",4.14979956127941 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2084,"Simulated","PgC/yr","LL",4.14103192399444 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2085,"Simulated","PgC/yr","LL",4.27097491650172 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2086,"Simulated","PgC/yr","LL",4.29937648040205 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2087,"Simulated","PgC/yr","LL",4.10830806703098 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2088,"Simulated","PgC/yr","LL",4.06014080519571 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2089,"Simulated","PgC/yr","LL",4.10656597267378 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2090,"Simulated","PgC/yr","LL",4.19722560944212 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2091,"Simulated","PgC/yr","LL",4.28153406238872 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2092,"Simulated","PgC/yr","LL",4.05670603072613 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2093,"Simulated","PgC/yr","LL",4.15001078295342 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2094,"Simulated","PgC/yr","LL",4.14229828513175 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2095,"Simulated","PgC/yr","LL",4.24196197243486 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2096,"Simulated","PgC/yr","LL",4.13888095098388 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2097,"Simulated","PgC/yr","LL",3.99686441132135 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2098,"Simulated","PgC/yr","LL",4.05100982787518 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2099,"Simulated","PgC/yr","LL",4.2511607732287 -"NorESM1-ME","fgco2","ocean","fgco2_LL","rcp85",2100,"Simulated","PgC/yr","LL",4.1151282017253 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp85/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp85/summary.csv deleted file mode 100644 index 526605dfb..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_fgco2/rcp85/summary.csv +++ /dev/null @@ -1,886 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.914687648,2.348781066,7.454472535,4.187024493,3.870870956,1,CMIP5 -2006,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.758377668,-0.424690383,2.157846175,0.982495042,0.945700707,1,CMIP5 -2006,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.107425265,1.403079913,7.879162765,3.207182413,2.154412209,1,CMIP5 -2007,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.948941697,2.129617016,7.859856475,4.045661382,3.420753195,1,CMIP5 -2007,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.798052613,-0.655721802,2.01717629,0.926224855,0.857431327,1,CMIP5 -2007,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.050944078,1.364164664,7.221252209,3.122134999,2.260916598,1,CMIP5 -2008,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.097044657,2.217651067,8.283488055,4.255965888,3.847863354,1,CMIP5 -2008,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.780409683,-0.587241998,1.888056941,0.923198476,0.891291402,1,CMIP5 -2008,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.250184052,1.405043719,7.70948536,3.33552323,2.218768753,1,CMIP5 -2009,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.001803539,2.339078792,7.968659942,4.250407233,3.821166698,1,CMIP5 -2009,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.821563638,-0.619480755,2.179050181,0.993648558,0.903577464,1,CMIP5 -2009,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.151678827,1.435501557,7.734483418,3.259658725,2.193470872,1,CMIP5 -2010,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.189521607,2.363672928,8.886426627,4.405990033,3.899934004,1,CMIP5 -2010,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.784443096,-0.541133262,2.075631384,1.013554441,0.94322094,1,CMIP5 -2010,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.271972805,1.440388367,7.615604151,3.395287329,2.349505,1,CMIP5 -2011,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.359235673,2.38358209,8.920180827,4.616804306,4.104330576,1,CMIP5 -2011,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.786477462,-0.455551798,2.117319459,1.016417283,0.943805054,1,CMIP5 -2011,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.483281577,1.439777244,8.567266215,3.603143895,2.467857816,1,CMIP5 -2012,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.46081664,2.376021931,9.465688311,4.571541407,3.887179812,1,CMIP5 -2012,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.806797961,-0.489347853,2.193988452,1.007963052,0.94423007,1,CMIP5 -2012,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.506153434,1.487798708,8.362256648,3.566318663,2.348359948,1,CMIP5 -2013,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.238151508,2.254146852,8.777287706,4.518230091,4.030393646,1,CMIP5 -2013,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.827045249,-0.507866957,2.163195785,1.013210348,0.979842667,1,CMIP5 -2013,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.325073617,1.463860127,8.120544144,3.507840915,2.430259487,1,CMIP5 -2014,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.222911277,2.464997845,8.775401633,4.644150595,4.255260524,1,CMIP5 -2014,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.828465117,-0.539356046,2.243376884,1.036581844,1.009688012,1,CMIP5 -2014,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.348451489,1.563342446,8.370207636,3.610276854,2.522747088,1,CMIP5 -2015,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.370744898,2.497422092,9.256605786,4.800392636,4.350582305,1,CMIP5 -2015,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.799783847,-0.468482001,2.187521274,1.075986821,0.998392855,1,CMIP5 -2015,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.497887062,1.603506512,8.677599759,3.727222972,2.488126164,1,CMIP5 -2016,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.347336665,2.599182066,9.043586811,4.852611773,4.270020339,1,CMIP5 -2016,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.754717308,-0.289010048,2.107110706,1.096278635,1.031006934,1,CMIP5 -2016,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.473894345,1.598812942,8.767665063,3.759182643,2.638211028,1,CMIP5 -2017,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.594169616,2.60964542,9.897652613,4.967426107,4.291442905,1,CMIP5 -2017,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.780020467,-0.21850106,2.28356903,1.102805603,1.021274527,1,CMIP5 -2017,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.625028632,1.58837071,8.935983261,3.86737319,2.621762595,1,CMIP5 -2018,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.390421954,2.638619233,9.079601386,4.991161242,4.580335998,1,CMIP5 -2018,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.726506813,-0.178373253,2.222798224,1.121998693,1.037176918,1,CMIP5 -2018,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.528686556,1.60144222,9.257975048,3.871819098,2.771308128,1,CMIP5 -2019,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.452804326,2.754193423,9.293199934,5.117873898,4.790756924,1,CMIP5 -2019,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.808539418,-0.100083086,2.567928683,1.180606388,1.086804688,1,CMIP5 -2019,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.494036899,1.667389154,9.148304893,3.940082944,2.857705068,1,CMIP5 -2020,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.845912008,2.74695986,11.21355638,5.340147066,4.720137737,1,CMIP5 -2020,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.824766215,-0.276947039,2.450300311,1.160360217,1.051202962,1,CMIP5 -2020,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.80216236,1.695756854,9.013699073,4.182678672,2.936508351,1,CMIP5 -2021,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.727249908,2.826207711,10.85255884,5.310414028,4.578589508,1,CMIP5 -2021,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.857729445,-0.332067304,2.627503095,1.18586288,1.080610797,1,CMIP5 -2021,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.69580739,1.745597195,9.084779106,4.127408484,2.856706507,1,CMIP5 -2022,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.563635629,2.896582021,9.852011477,5.301771428,4.702802699,1,CMIP5 -2022,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.860555563,-0.1691436,2.830390667,1.243672609,1.09582997,1,CMIP5 -2022,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.572397487,1.800751889,9.460640378,4.060888134,2.93035353,1,CMIP5 -2023,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.854858827,2.735617876,11.2500273,5.346003203,4.490694213,1,CMIP5 -2023,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.887181978,-0.171443333,2.887286771,1.223051796,1.071821119,1,CMIP5 -2023,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.692368159,1.813628468,9.047953656,4.125646413,2.996538218,1,CMIP5 -2024,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.844783197,2.792397322,11.085211,5.53065122,5.001874305,1,CMIP5 -2024,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.903985197,-0.11892049,2.922390306,1.254040734,1.087846341,1,CMIP5 -2024,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.736693346,1.827684998,9.474440865,4.279442512,3.100226097,1,CMIP5 -2025,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.000893814,2.870501376,11.4535851,5.668831363,5.04252024,1,CMIP5 -2025,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.827125566,0.0403183,2.913691496,1.305456356,1.136958969,1,CMIP5 -2025,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.888395387,1.903223438,9.816581035,4.36616141,3.100423373,1,CMIP5 -2026,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.01460624,2.868711038,11.6470074,5.719815797,5.003773979,1,CMIP5 -2026,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.853136422,0.075823269,2.975751533,1.314170587,1.138065308,1,CMIP5 -2026,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.862358533,1.916673706,9.686658191,4.408508779,3.034545383,1,CMIP5 -2027,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.775737394,3.072801571,10.3918984,5.66253213,4.952214547,1,CMIP5 -2027,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.826327164,0.098351616,2.80041428,1.299464355,1.142248609,1,CMIP5 -2027,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.7610611,1.986003072,10.29354739,4.365893299,3.171282283,1,CMIP5 -2028,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,2.682860428,3.032130609,10.43760115,5.699068593,5.148674006,1,CMIP5 -2028,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.89985161,0.059061266,2.933250681,1.307378849,1.145862863,1,CMIP5 -2028,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.631509062,2.045374999,9.778198576,4.39455869,3.256566938,1,CMIP5 -2029,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.049316944,3.133512471,11.8233033,5.893713647,5.079893207,1,CMIP5 -2029,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.921717896,0.020033321,3.072358072,1.338756719,1.194855095,1,CMIP5 -2029,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.914888086,1.981574001,10.10959974,4.557881281,3.338668765,1,CMIP5 -2030,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.195784254,3.190036683,12.28999507,5.980426028,5.133502096,1,CMIP5 -2030,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.007456683,0.038104691,3.271463781,1.351441517,1.179900892,1,CMIP5 -2030,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.989055981,2.010135908,10.34245948,4.632025546,3.291433714,1,CMIP5 -2031,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.249835854,3.122781833,12.32089335,5.99646775,5.249347996,1,CMIP5 -2031,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.963075588,0.178302121,3.297225642,1.394116969,1.16315871,1,CMIP5 -2031,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.014968507,2.071377436,10.40940709,4.605421045,3.331862757,1,CMIP5 -2032,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.216543829,3.17558313,12.22504936,6.101066434,5.262881823,1,CMIP5 -2032,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.88274962,0.238838105,3.179302989,1.434470436,1.249529505,1,CMIP5 -2032,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.062871778,2.117769159,10.5550984,4.669749137,3.197449825,1,CMIP5 -2033,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.291599674,3.277331715,12.84867426,6.246704792,5.564383801,1,CMIP5 -2033,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.996986154,0.095841494,3.520183887,1.458292791,1.207674614,1,CMIP5 -2033,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.052226736,2.133592413,10.47980628,4.791540693,3.445751651,1,CMIP5 -2034,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.118922846,3.357475524,11.71417807,6.13623882,5.377818971,1,CMIP5 -2034,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.950273702,0.219370481,3.324262721,1.450254452,1.23203572,1,CMIP5 -2034,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.981604281,2.193314587,10.88577037,4.689121995,3.421160629,1,CMIP5 -2035,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.165166241,3.408371388,12.19781369,6.320975452,5.607103858,1,CMIP5 -2035,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.004118658,0.283892067,3.54112164,1.478067475,1.246775251,1,CMIP5 -2035,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.946579751,2.161596097,10.72949671,4.845919376,3.707505398,1,CMIP5 -2036,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.106056709,3.413125061,12.12294128,6.323717445,5.665400147,1,CMIP5 -2036,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.986690842,0.185092263,3.434525306,1.48647044,1.236988758,1,CMIP5 -2036,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,2.947826109,2.176136476,10.68554012,4.840448504,3.572470922,1,CMIP5 -2037,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.478878806,3.466552878,13.51749416,6.603855781,5.652194363,1,CMIP5 -2037,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.990709808,0.243447012,3.564333064,1.544283938,1.265953173,1,CMIP5 -2037,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.243622584,2.231380303,10.9980533,5.06288417,3.566088145,1,CMIP5 -2038,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.477959131,3.509680429,13.31022012,6.54317098,5.731999763,1,CMIP5 -2038,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.013531924,0.177760508,3.479324354,1.506984489,1.290462642,1,CMIP5 -2038,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.252593515,2.223412515,11.27704432,5.039414305,3.708284138,1,CMIP5 -2039,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.193673412,3.491740829,12.02267021,6.527890124,5.809127438,1,CMIP5 -2039,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.006049399,0.340934602,3.655616268,1.558020657,1.277096043,1,CMIP5 -2039,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.029115846,2.214644712,11.36411926,4.97310992,3.678789489,1,CMIP5 -2040,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.351473442,3.581355717,13.05424821,6.768909397,5.957589728,1,CMIP5 -2040,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.990913883,0.250323542,3.58074274,1.591364625,1.307801793,1,CMIP5 -2040,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.177615932,2.273553827,11.35369052,5.180866929,3.757993112,1,CMIP5 -2041,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.562429641,3.694380191,13.89772097,6.857114063,5.939938239,1,CMIP5 -2041,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.991472091,0.320584119,3.66248458,1.604956347,1.321371292,1,CMIP5 -2041,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.292962219,2.385283534,11.39404759,5.255406159,3.884246657,1,CMIP5 -2042,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.672428787,3.580399909,13.94299584,6.95325517,6.137333673,1,CMIP5 -2042,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.945864613,0.499975336,3.581685141,1.627229072,1.318322252,1,CMIP5 -2042,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.414263212,2.433863132,11.79047997,5.329263652,3.912546183,1,CMIP5 -2043,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.703535066,3.61801978,13.87515199,7.087694989,6.28333921,1,CMIP5 -2043,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.996398115,0.632731851,3.905460949,1.707583655,1.374117254,1,CMIP5 -2043,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.395440613,2.434022972,12.05469553,5.383303763,3.942355216,1,CMIP5 -2044,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.51395243,3.728902276,13.20527095,7.059778818,6.32187748,1,CMIP5 -2044,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.978700647,0.535952044,3.796223092,1.671658645,1.345241162,1,CMIP5 -2044,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.287429756,2.433407416,12.06942738,5.391245295,3.977081054,1,CMIP5 -2045,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.791003574,3.788271059,14.57134448,7.236774968,6.327732304,1,CMIP5 -2045,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.019730496,0.504083384,3.904809326,1.697305368,1.339047091,1,CMIP5 -2045,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.464911522,2.449224148,12.06972702,5.542769597,4.023935787,1,CMIP5 -2046,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.511651335,3.839303312,13.33138567,7.146040043,6.312712499,1,CMIP5 -2046,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.070561227,0.58278373,4.092108756,1.739930943,1.323231128,1,CMIP5 -2046,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.235394589,2.516071823,12.13535278,5.409465933,3.967026427,1,CMIP5 -2047,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.193093799,3.820556864,16.12977918,7.54675212,6.301996703,1,CMIP5 -2047,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.076369422,0.62273404,4.240133917,1.790511937,1.37869625,1,CMIP5 -2047,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.73334169,2.50191865,12.20046649,5.759415756,4.153606703,1,CMIP5 -2048,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.986136974,3.909032805,15.21660274,7.572818661,6.781462378,1,CMIP5 -2048,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.115547686,0.599519036,4.305888233,1.823916753,1.417270918,1,CMIP5 -2048,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.595397555,2.570018041,12.59703541,5.752322646,4.327539386,1,CMIP5 -2049,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.787812747,3.966580946,14.23388235,7.454455931,6.393547565,1,CMIP5 -2049,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.037127796,0.708914877,4.022026055,1.795798892,1.382949335,1,CMIP5 -2049,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.460887528,2.583631832,12.64655058,5.662053929,4.269994004,1,CMIP5 -2050,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.928534945,4.012430971,14.79992099,7.429728577,6.359883902,1,CMIP5 -2050,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.117612222,0.655500348,4.235943914,1.799196683,1.401437814,1,CMIP5 -2050,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.541872144,2.610993474,12.6905982,5.634076567,4.092389977,1,CMIP5 -2051,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,3.90078697,4.106853739,14.87754321,7.718572156,6.544314679,1,CMIP5 -2051,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.054060842,0.784037267,4.285467225,1.882933487,1.461961983,1,CMIP5 -2051,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.562767975,2.70835237,12.7011597,5.839074596,4.110981505,1,CMIP5 -2052,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.047100245,4.065464136,15.29307255,7.654282532,6.388905405,1,CMIP5 -2052,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.196168759,0.667876477,4.61108229,1.885983238,1.480830456,1,CMIP5 -2052,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.566583188,2.700965512,12.83305791,5.771755972,4.307858479,1,CMIP5 -2053,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.088979471,4.152034711,15.64798057,7.930822209,6.916666349,1,CMIP5 -2053,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.1216964,0.788910435,4.411580703,1.875021467,1.451588531,1,CMIP5 -2053,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.67889598,2.7246423,12.93422938,6.059106534,4.405238863,1,CMIP5 -2054,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.299465284,4.154117744,16.4659748,7.977552107,6.724155115,1,CMIP5 -2054,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.108696817,0.71601342,4.371192369,1.880501283,1.511307956,1,CMIP5 -2054,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.803052551,2.701052712,12.83983214,6.100448988,4.415168798,1,CMIP5 -2055,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.121460383,4.229009601,15.49428788,7.884149021,6.842628512,1,CMIP5 -2055,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.115056882,0.583800594,4.318619396,1.885276094,1.484781131,1,CMIP5 -2055,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.672670113,2.74422843,13.19122693,6.002426809,4.463159534,1,CMIP5 -2056,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.072665517,4.237832404,15.47133097,8.076706652,6.948382211,1,CMIP5 -2056,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.22626705,0.860644957,4.77105036,1.948069263,1.458915917,1,CMIP5 -2056,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.63033797,2.778916301,13.24244704,6.132164321,4.563514342,1,CMIP5 -2057,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.281414211,4.219376125,16.3471853,8.084625618,7.127068514,1,CMIP5 -2057,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.163841147,0.778212515,4.604189455,1.957229455,1.491686568,1,CMIP5 -2057,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.758227614,2.727689219,13.2189838,6.130890412,4.698546182,1,CMIP5 -2058,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.419677933,4.257256445,16.69821392,8.296094754,7.154333487,1,CMIP5 -2058,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.150411537,0.834865406,4.556274181,1.992302271,1.463848024,1,CMIP5 -2058,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.923497727,2.793408612,13.606681,6.307507149,4.55054982,1,CMIP5 -2059,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.266812993,4.251000984,16.22215453,8.185487205,7.053931626,1,CMIP5 -2059,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.105037627,0.874273602,4.41899904,1.996370324,1.519180346,1,CMIP5 -2059,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.822376658,2.792395066,13.37238809,6.192962973,4.4911795,1,CMIP5 -2060,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.15790931,4.300434578,15.61978646,8.15807178,6.976538817,1,CMIP5 -2060,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.10603675,0.724581794,4.357991759,2.001650938,1.568827694,1,CMIP5 -2060,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.75782833,2.8876288,13.62461789,6.160297995,4.477531324,1,CMIP5 -2061,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.445930222,4.41376797,16.91401123,8.528563611,7.164317029,1,CMIP5 -2061,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.177185879,0.900502302,4.74190777,2.059407858,1.584415721,1,CMIP5 -2061,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.968857583,2.962548854,13.7938483,6.472972554,4.55323786,1,CMIP5 -2062,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.565977482,4.459522944,17.23863711,8.464814895,7.191098016,1,CMIP5 -2062,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.187957488,0.671648775,4.721209997,2.046041857,1.559550119,1,CMIP5 -2062,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.028523855,3.091368307,13.95224602,6.422510639,4.585651409,1,CMIP5 -2063,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.307959621,4.647455788,16.47187377,8.586971173,7.40688588,1,CMIP5 -2063,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.104624441,0.95206742,4.541880681,2.054417466,1.562988448,1,CMIP5 -2063,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.909788518,3.084467648,13.95012196,6.536220855,4.76358645,1,CMIP5 -2064,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.252846857,4.38682407,15.8260336,8.427187335,7.346728397,1,CMIP5 -2064,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.115115257,0.747524128,4.447076613,2.039710746,1.571260187,1,CMIP5 -2064,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.855864725,3.066072903,14.15912153,6.391367327,4.690271016,1,CMIP5 -2065,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.39304882,4.646359267,16.8113897,8.532114115,7.257188272,1,CMIP5 -2065,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.117123694,0.732169192,4.42174216,2.055638376,1.609310239,1,CMIP5 -2065,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.947410785,3.117362973,13.9239259,6.480498287,4.812268649,1,CMIP5 -2066,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.475192505,4.64830688,17.33456097,8.81969358,7.627890196,1,CMIP5 -2066,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.137337809,1.17683521,4.725657496,2.188462612,1.636593132,1,CMIP5 -2066,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.021936659,3.01171406,13.81326445,6.635469499,4.720545268,1,CMIP5 -2067,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.285957846,4.61544482,16.26858182,8.491801363,7.269361409,1,CMIP5 -2067,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.129436944,0.849969727,4.560828532,2.109459581,1.572955286,1,CMIP5 -2067,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.809799646,3.042489296,13.80131094,6.386306092,4.860530525,1,CMIP5 -2068,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.649639562,4.470370887,17.77109611,8.822117265,7.391206724,1,CMIP5 -2068,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.387334902,1.09197095,5.573660106,2.264773574,1.613749217,1,CMIP5 -2068,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.976014957,2.98980035,13.84089046,6.561466345,4.691625797,1,CMIP5 -2069,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.770389545,4.417153895,18.01422037,8.743776755,7.395485538,1,CMIP5 -2069,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.203310788,0.920305064,4.894459255,2.127877377,1.590313248,1,CMIP5 -2069,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.179362022,3.005170455,14.12405184,6.619690386,4.721832002,1,CMIP5 -2070,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.691855722,4.665267147,18.07955403,8.911052909,7.76687552,1,CMIP5 -2070,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.288109126,0.903850204,5.203811784,2.182224308,1.627875944,1,CMIP5 -2070,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.02342602,3.071353383,13.94905045,6.732504342,5.006902803,1,CMIP5 -2071,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.527381683,4.64418854,17.4456259,8.89091028,7.639610029,1,CMIP5 -2071,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.239094241,0.9246819,5.094537142,2.208729928,1.677503534,1,CMIP5 -2071,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.956733964,3.159172722,14.04316322,6.685913305,4.956246196,1,CMIP5 -2072,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.551629678,4.812022455,17.54151553,8.812389782,7.567538661,1,CMIP5 -2072,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.277213257,0.85998043,5.21270503,2.245234135,1.729485173,1,CMIP5 -2072,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.879998217,3.142780858,13.88309281,6.571057876,4.99902029,1,CMIP5 -2073,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.830527811,4.718986391,18.19526282,9.028813239,7.326671793,1,CMIP5 -2073,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.425155067,1.111539942,5.782717071,2.292597737,1.662932891,1,CMIP5 -2073,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.094644267,3.063034864,14.34145281,6.740015221,4.719871298,1,CMIP5 -2074,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.756012774,4.832122061,18.26433896,8.934430008,7.703269577,1,CMIP5 -2074,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.416474218,0.819696283,5.651488707,2.289023401,1.632673673,1,CMIP5 -2074,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.992027124,3.199448142,14.06759935,6.649368581,4.858685732,1,CMIP5 -2075,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.629574924,4.613920215,17.67882345,9.057496832,7.64134096,1,CMIP5 -2075,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.270370905,1.053703072,5.23484443,2.270838906,1.65840135,1,CMIP5 -2075,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.039942775,3.095599989,14.06761263,6.790812652,4.881153379,1,CMIP5 -2076,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.674823557,4.763425855,18.21375843,9.001913332,7.581677186,1,CMIP5 -2076,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.350443797,1.089798088,5.517662611,2.273475907,1.621345135,1,CMIP5 -2076,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.962061244,3.142080361,13.88295436,6.732209399,4.936197898,1,CMIP5 -2077,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.735683165,4.700465131,18.14708981,9.124037606,7.542517089,1,CMIP5 -2077,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.295047401,1.289959215,5.404900387,2.293092355,1.639460068,1,CMIP5 -2077,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.077423543,3.061004873,14.18950123,6.834816417,4.824426827,1,CMIP5 -2078,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.54321285,4.620371921,17.10257287,8.913806153,7.581506184,1,CMIP5 -2078,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.266996376,1.142526214,5.301339704,2.294871465,1.63266632,1,CMIP5 -2078,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.933467134,2.987705623,14.19647648,6.622796003,4.809543783,1,CMIP5 -2079,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.678675754,4.757263252,17.91141628,9.043192277,7.937442155,1,CMIP5 -2079,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.234387738,1.010573285,5.195706791,2.327832698,1.72705328,1,CMIP5 -2079,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.029470497,3.034973449,14.06508652,6.71925638,5.013966958,1,CMIP5 -2080,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.670912969,4.729395085,17.78316789,9.079406607,7.878389487,1,CMIP5 -2080,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.226282486,1.141484732,5.161987078,2.285081109,1.722001486,1,CMIP5 -2080,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.058402354,3.007393687,14.18588085,6.798179966,4.975374696,1,CMIP5 -2081,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.601854366,4.583402473,17.60395104,8.990635562,7.648397089,1,CMIP5 -2081,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.380052236,1.15623135,5.690095589,2.345378867,1.69549929,1,CMIP5 -2081,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.889089922,3.101907358,14.02687626,6.649099987,5.031853907,1,CMIP5 -2082,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,5.009700042,4.72591313,19.25404226,9.273674902,7.799816274,1,CMIP5 -2082,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.6235529,1.194207014,6.513587033,2.488940956,1.733902383,1,CMIP5 -2082,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.064967987,3.101015795,14.07603299,6.788886504,4.812891133,1,CMIP5 -2083,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.882728598,4.814266071,18.87218383,9.135813153,7.648913313,1,CMIP5 -2083,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.359069765,0.988106055,5.522441176,2.323030877,1.722627596,1,CMIP5 -2083,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.114181283,3.217118775,13.95000438,6.816966402,4.864998551,1,CMIP5 -2084,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.731949128,4.740459055,18.10977911,9.035771311,7.733950311,1,CMIP5 -2084,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.526766756,1.0704914,6.113842901,2.406519869,1.735800813,1,CMIP5 -2084,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.933752328,3.185163082,14.1672138,6.633465617,4.791983474,1,CMIP5 -2085,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.888889743,4.838272052,18.96636196,9.242476434,8.015542029,1,CMIP5 -2085,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.459052547,1.127980192,5.964773743,2.441219223,1.759535906,1,CMIP5 -2085,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.039358403,3.146179474,13.92331713,6.805527039,5.071419923,1,CMIP5 -2086,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.853846926,4.702826058,18.91167384,9.215163413,7.853215675,1,CMIP5 -2086,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.610109862,1.170459719,6.470382009,2.526011947,1.810744974,1,CMIP5 -2086,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.904465667,3.000237751,13.59709998,6.693576613,4.847324168,1,CMIP5 -2087,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.780247556,4.739890748,18.47758043,9.141366093,7.795348768,1,CMIP5 -2087,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.475041169,1.133115235,5.995783617,2.449113115,1.752103094,1,CMIP5 -2087,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.957014283,3.024535324,13.87190548,6.696501256,4.944572988,1,CMIP5 -2088,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.709709885,4.453362679,18.1062306,9.087005975,7.805763836,1,CMIP5 -2088,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.487617881,1.018979567,5.991318602,2.455887579,1.745527478,1,CMIP5 -2088,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.938039769,3.027224036,13.77241809,6.635520873,4.7739723,1,CMIP5 -2089,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.78152994,4.587143732,18.3654886,9.047513922,7.590634713,1,CMIP5 -2089,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.543632172,0.995588085,6.216026769,2.442386198,1.808925375,1,CMIP5 -2089,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.903826425,3.129172139,13.71089252,6.609215644,4.792001246,1,CMIP5 -2090,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.547767258,4.761162968,17.49708499,8.963272188,7.834381819,1,CMIP5 -2090,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.500840607,1.128381383,6.101472584,2.465498236,1.76724495,1,CMIP5 -2090,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.791287866,3.041393139,13.8562747,6.502061124,4.728613573,1,CMIP5 -2091,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.895309676,4.689999319,18.86995888,9.197480432,7.761657533,1,CMIP5 -2091,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.49997429,1.074319734,6.074325149,2.445262736,1.852790792,1,CMIP5 -2091,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,4.014184221,3.026174003,13.82620223,6.756458574,4.899633967,1,CMIP5 -2092,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.492053116,4.783232411,17.34689518,9.070115368,7.858640045,1,CMIP5 -2092,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.29228242,1.195209133,5.443675429,2.444042934,1.826756786,1,CMIP5 -2092,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.86184231,3.096172947,13.65924381,6.630764608,4.814533319,1,CMIP5 -2093,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.705043554,4.674518365,18.14530985,9.108259094,7.799756235,1,CMIP5 -2093,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.45064912,1.137516995,5.936389627,2.488465669,1.808423417,1,CMIP5 -2093,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.932777994,3.019516869,13.74205546,6.624444202,4.671201041,1,CMIP5 -2094,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.727547245,4.569636689,18.11058922,9.081836634,7.730952676,1,CMIP5 -2094,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.475793497,1.034902944,5.96796354,2.466114719,1.783918251,1,CMIP5 -2094,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.953665976,3.099767172,13.93715763,6.62029579,4.722831266,1,CMIP5 -2095,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.711505297,4.775522114,18.40042601,9.16097663,7.841180641,1,CMIP5 -2095,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.544451824,1.148592385,6.264185526,2.493092345,1.807008686,1,CMIP5 -2095,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.863662376,3.125745261,13.66372708,6.672111337,4.863286608,1,CMIP5 -2096,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.751432832,4.80191593,18.42648645,9.132661614,7.662282059,1,CMIP5 -2096,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.505997776,1.203632432,6.164194753,2.512779352,1.843682179,1,CMIP5 -2096,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.899428848,3.098227094,13.6228921,6.624301563,4.646980129,1,CMIP5 -2097,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.910627548,4.762679971,19.02664098,9.061678915,7.397035264,1,CMIP5 -2097,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.556860759,1.128527318,6.325522122,2.481254777,1.773040518,1,CMIP5 -2097,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.974335335,3.053152547,13.56521638,6.584632909,4.659564333,1,CMIP5 -2098,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.541328223,4.676690231,17.70151794,9.020241881,7.628843307,1,CMIP5 -2098,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.401820558,1.200934618,5.835826057,2.489306152,1.84694253,1,CMIP5 -2098,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.792566966,3.109828285,13.32734861,6.535338001,4.686008584,1,CMIP5 -2099,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.508625962,4.673674446,17.17385113,9.040807808,7.68560808,1,CMIP5 -2099,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.378155827,1.207410403,5.769498944,2.4618568,1.996093288,1,CMIP5 -2099,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.787079589,3.157842503,13.73954831,6.583100139,4.659399606,1,CMIP5 -2100,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,4.689446124,4.540553618,18.27089971,8.95786924,7.855693335,1,CMIP5 -2100,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,1.29490908,1.143102217,5.384982109,2.41557024,1.782819547,1,CMIP5 -2100,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,3.9791438,2.852714112,13.16504983,6.546849019,4.654621893,1,CMIP5 -2101,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.473706664,4.782686214,7.995221454,6.892293825,7.395633815,1,CMIP5 -2101,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.433689932,1.893776303,2.91537634,2.498392437,2.592208553,1,CMIP5 -2101,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.106891252,2.888910226,5.463102554,4.403400259,4.630794128,1,CMIP5 -2102,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.421209024,4.878281391,8.118231728,6.896827619,7.295398678,1,CMIP5 -2102,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.49363068,1.792636567,2.937890174,2.477947562,2.590631754,1,CMIP5 -2102,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.054584651,3.085645448,5.638098575,4.428708363,4.495544714,1,CMIP5 -2103,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.481625447,5.0083766,8.544860822,6.972078067,7.167537422,1,CMIP5 -2103,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.526821882,1.754521783,2.973928822,2.509706613,2.655187923,1,CMIP5 -2103,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.064465367,3.253855479,5.842302888,4.4720733,4.396067417,1,CMIP5 -2104,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.5850466,4.918055956,8.538234827,7.085030598,7.441915805,1,CMIP5 -2104,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.586081146,1.839909161,3.25920772,2.619079598,2.688600755,1,CMIP5 -2104,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.123542988,3.078146752,5.805270788,4.476257599,4.510806428,1,CMIP5 -2105,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.448444197,4.879132196,8.215690993,6.93386883,7.320326065,1,CMIP5 -2105,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.482497582,1.797690558,2.887580838,2.502397514,2.66215933,1,CMIP5 -2105,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.013245263,3.081442468,5.518993242,4.440849387,4.581480919,1,CMIP5 -2106,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.493445182,4.702186521,8.217842511,6.806481408,7.152948301,1,CMIP5 -2106,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.596027422,1.64345901,2.997893119,2.512964233,2.705252402,1,CMIP5 -2106,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.009001785,3.058728017,5.529927797,4.303696464,4.313065021,1,CMIP5 -2107,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.79321854,4.398360809,8.3941681,6.942620735,7.488977015,1,CMIP5 -2107,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.658800346,1.610111507,3.14379267,2.554325259,2.73169843,1,CMIP5 -2107,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.208570059,2.788249333,5.654730669,4.3985652,4.5756404,1,CMIP5 -2108,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.686206633,4.544309429,8.339751542,6.93603624,7.430041995,1,CMIP5 -2108,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.560243347,1.743326317,3.009540863,2.561374586,2.746315583,1,CMIP5 -2108,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.169115356,2.800982914,5.553715118,4.384573054,4.591797093,1,CMIP5 -2109,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.629731649,4.629511483,8.471310739,6.856680971,7.162950831,1,CMIP5 -2109,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.502702756,1.911116132,3.063653881,2.63059474,2.773804474,1,CMIP5 -2109,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.192746233,2.718394836,5.620298047,4.23637163,4.303396819,1,CMIP5 -2110,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.477581459,4.819883138,8.300214897,6.860145167,7.160241316,1,CMIP5 -2110,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.492673578,1.79298625,2.883251466,2.520997428,2.703875997,1,CMIP5 -2110,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.060927776,3.026897447,5.602012893,4.349012855,4.383570541,1,CMIP5 -2111,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.453082481,4.809942936,8.117088782,6.847854068,7.232192277,1,CMIP5 -2111,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.530464722,1.890400359,3.184859775,2.572652154,2.607674241,1,CMIP5 -2111,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.052247946,2.919542705,5.482398828,4.285278295,4.369585823,1,CMIP5 -2112,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.486405313,4.665758991,8.174186629,6.764059772,7.108146734,1,CMIP5 -2112,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.49658536,1.711114473,2.788789695,2.44852276,2.647093437,1,CMIP5 -2112,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.065496361,2.954644836,5.553340864,4.325013409,4.396033968,1,CMIP5 -2113,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.578787361,4.863385422,8.288074963,7.046023748,7.516317304,1,CMIP5 -2113,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.657620041,1.680455094,3.230132397,2.605450903,2.755608061,1,CMIP5 -2113,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.035900331,3.18293043,5.58927177,4.451403358,4.516705616,1,CMIP5 -2114,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.587616817,4.619962285,8.311465187,6.859800574,7.253887413,1,CMIP5 -2114,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.591967564,1.751320681,3.101924646,2.613163281,2.799703899,1,CMIP5 -2114,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.083471344,2.868641233,5.508472269,4.257286129,4.326015507,1,CMIP5 -2115,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.684068717,4.427735371,8.241777951,6.850266523,7.365776386,1,CMIP5 -2115,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.656731571,1.736333007,3.292064707,2.653563257,2.792927657,1,CMIP5 -2115,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.156576847,2.691402041,5.503845476,4.207919109,4.31821446,1,CMIP5 -2116,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.698229916,4.637010493,8.431564039,7.034079091,7.533870916,1,CMIP5 -2116,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.610257096,1.964212815,3.449468882,2.766523767,2.826206685,1,CMIP5 -2116,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.215240363,2.672797815,5.605060207,4.27894183,4.418954649,1,CMIP5 -2117,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.710579461,4.47209534,8.605331902,6.781747777,7.024781933,1,CMIP5 -2117,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.596520052,1.751365971,3.049006127,2.637604201,2.875022354,1,CMIP5 -2117,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.237026714,2.720729181,5.737519425,4.155181185,4.081238067,1,CMIP5 -2118,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.492791308,4.821439125,8.407472603,6.861206135,7.107956406,1,CMIP5 -2118,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.525581679,1.809504015,2.886572251,2.597037146,2.846036158,1,CMIP5 -2118,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.025302484,3.011935804,5.520898765,4.274456755,4.282496227,1,CMIP5 -2119,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.580901928,4.599846822,8.147111179,6.848149345,7.32281969,1,CMIP5 -2119,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.580077347,1.791447859,3.117109098,2.634134296,2.813990113,1,CMIP5 -2119,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.073477917,2.808399483,5.359464688,4.22483048,4.365728874,1,CMIP5 -2120,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.586951629,4.735528449,8.511384877,6.907928109,7.192399555,1,CMIP5 -2120,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.569364161,1.902929784,3.205691952,2.715033754,2.87575664,1,CMIP5 -2120,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.10317017,2.832599953,5.534125784,4.203782527,4.224202186,1,CMIP5 -2121,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.365268024,4.84331697,8.062594998,6.768388645,7.083821307,1,CMIP5 -2121,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.508820465,1.891890755,3.001661021,2.645739703,2.844703519,1,CMIP5 -2121,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.914096619,2.951426416,5.182159711,4.133238743,4.199684423,1,CMIP5 -2122,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.308682026,4.748529026,7.757053249,6.554759573,6.856728008,1,CMIP5 -2122,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.451760222,2.024252648,3.127548582,2.593281102,2.610661589,1,CMIP5 -2122,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.007207628,2.72427611,5.181195532,3.972076808,3.991417796,1,CMIP5 -2123,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.418782776,4.820294781,8.046701878,6.790469018,7.147439706,1,CMIP5 -2123,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.48753298,1.908478168,3.074941073,2.567051592,2.642393563,1,CMIP5 -2123,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.062679092,2.911816951,5.475166214,4.23383217,4.274172758,1,CMIP5 -2124,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.200170273,4.8050789,7.497584558,6.543111328,6.934890928,1,CMIP5 -2124,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.490880463,1.88586963,3.039634538,2.513597418,2.564442751,1,CMIP5 -2124,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.886373564,2.919209365,5.086378639,4.040043933,4.077293865,1,CMIP5 -2125,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.46094036,4.541660696,8.008634073,6.588315473,6.901483561,1,CMIP5 -2125,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.591209526,1.729533665,3.070787849,2.569936716,2.739712675,1,CMIP5 -2125,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.064492725,2.812127091,5.398938953,4.02955918,3.953585337,1,CMIP5 -2126,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.404724565,4.795009128,7.945898725,6.769490912,7.168527898,1,CMIP5 -2126,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.534257921,1.874998406,3.122699025,2.595947479,2.693046243,1,CMIP5 -2126,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.031456033,2.920011313,5.3946344,4.184526748,4.211730639,1,CMIP5 -2127,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.565695441,4.538974125,8.146314206,6.68387875,7.025113336,1,CMIP5 -2127,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.60096583,1.850798429,3.320955625,2.61080155,2.635726073,1,CMIP5 -2127,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.160476784,2.688176858,5.52311384,4.08400957,4.062373791,1,CMIP5 -2128,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.621271119,4.358612616,8.161343938,6.582675599,6.90537292,1,CMIP5 -2128,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.606688138,1.771994953,3.236143426,2.581270697,2.658472205,1,CMIP5 -2128,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.164083342,2.586617397,5.437657099,4.012019301,4.011901354,1,CMIP5 -2129,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.385039751,4.706129808,7.953720178,6.615591632,6.901258271,1,CMIP5 -2129,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.501109049,1.84037288,2.937246135,2.581426455,2.774043403,1,CMIP5 -2129,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.939879287,2.865757119,5.138687908,4.044552129,4.086881745,1,CMIP5 -2130,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.407089424,4.775790335,8.102939427,6.664515602,6.889666324,1,CMIP5 -2130,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.454279781,1.925431865,2.972500377,2.582076991,2.715187862,1,CMIP5 -2130,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.04476615,2.850357786,5.382268799,4.092847094,4.069380896,1,CMIP5 -2131,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.49095465,4.489367142,7.822153259,6.548237793,6.940715386,1,CMIP5 -2131,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.624904359,1.907787101,3.435616544,2.695610377,2.719518931,1,CMIP5 -2131,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.021991593,2.581579618,5.070242589,3.864110405,3.902309707,1,CMIP5 -2132,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.399175928,4.690151413,8.016552831,6.564410572,6.775469022,1,CMIP5 -2132,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.50484057,1.938500791,3.155539497,2.619342544,2.691664944,1,CMIP5 -2132,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.037365056,2.751649588,5.285656756,3.955838365,3.893023557,1,CMIP5 -2133,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.337863214,4.485563745,7.55081338,6.405797092,6.793405622,1,CMIP5 -2133,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.456114583,1.854432395,2.88636432,2.517955492,2.665512626,1,CMIP5 -2133,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.952686877,2.631131305,4.933193371,3.89812176,4.014081182,1,CMIP5 -2134,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.458039962,4.564176072,7.72077091,6.582137875,7.021802259,1,CMIP5 -2134,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.565082921,2.007542538,3.378968655,2.629776812,2.566298027,1,CMIP5 -2134,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.085324845,2.556633239,5.181241204,3.963259578,4.057581934,1,CMIP5 -2135,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.435921787,4.377894474,7.737705037,6.368808448,6.679817141,1,CMIP5 -2135,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.573998859,1.847601116,3.236242509,2.562625386,2.58332896,1,CMIP5 -2135,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.118260539,2.530293597,5.26055257,3.817406947,3.73939081,1,CMIP5 -2136,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.436568192,4.593636632,8.005021438,6.493442857,6.687556679,1,CMIP5 -2136,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.490090418,1.933863605,3.118254056,2.580659294,2.635259758,1,CMIP5 -2136,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.085186293,2.659772441,5.309550644,3.92326941,3.861877278,1,CMIP5 -2137,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.512752109,4.373328563,7.939977032,6.395192685,6.633732574,1,CMIP5 -2137,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.503008262,1.760768993,2.90106712,2.462700867,2.594483677,1,CMIP5 -2137,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.0658501,2.61255993,5.205055166,3.942028448,3.975249349,1,CMIP5 -2138,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.465576485,4.448640868,7.793860726,6.429610619,6.737970441,1,CMIP5 -2138,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.632063733,1.817259123,3.362487869,2.595993711,2.602113926,1,CMIP5 -2138,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.029164203,2.631382518,5.144323282,3.84462464,3.80139638,1,CMIP5 -2139,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.459932395,4.241622328,7.618027838,6.280471448,6.631117812,1,CMIP5 -2139,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.440493292,1.83733435,2.875908323,2.447605248,2.538589159,1,CMIP5 -2139,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.132826961,2.404288251,5.14898306,3.842925516,3.909215376,1,CMIP5 -2140,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.625657148,4.289785694,8.019773157,6.52334908,6.891918734,1,CMIP5 -2140,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.623471041,1.788511275,3.312982205,2.577284368,2.603821995,1,CMIP5 -2140,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.204529283,2.501274676,5.441696503,3.957059381,3.942633173,1,CMIP5 -2141,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.584677166,4.296855861,8.048196974,6.448734891,6.724943365,1,CMIP5 -2141,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.489467281,1.912904245,3.070253902,2.601162266,2.710745459,1,CMIP5 -2141,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.200585213,2.383951624,5.315410571,3.858330016,3.866978934,1,CMIP5 -2142,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.520398263,4.435586398,7.926135036,6.482217618,6.78357452,1,CMIP5 -2142,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.533976393,1.867483277,3.151284438,2.597811249,2.686238641,1,CMIP5 -2142,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.108234353,2.568103027,5.235311369,3.895321853,3.888936507,1,CMIP5 -2143,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.462841501,4.456697143,7.802415827,6.499543273,6.86953006,1,CMIP5 -2143,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.618377572,1.841343621,3.355356653,2.582347342,2.566344546,1,CMIP5 -2143,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.0685304,2.615353221,5.23217398,3.928039662,3.932315723,1,CMIP5 -2144,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.22004108,4.731864942,7.624453045,6.347891125,6.517623257,1,CMIP5 -2144,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.51874221,1.88323708,3.152129394,2.541197552,2.564711867,1,CMIP5 -2144,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.91817213,2.848628284,5.063268781,3.817417772,3.678887012,1,CMIP5 -2145,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.300691313,4.813586951,7.691411113,6.52155995,6.790620867,1,CMIP5 -2145,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.462092106,2.043355328,3.174015703,2.602792665,2.596899815,1,CMIP5 -2145,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.987993465,2.770231592,5.119531186,3.929519994,3.9141586,1,CMIP5 -2146,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.468405561,4.673631805,8.16331938,6.548062776,6.67764996,1,CMIP5 -2146,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.479221132,2.091677695,3.153827565,2.647201528,2.671650427,1,CMIP5 -2146,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.087136295,2.581954504,5.244194505,3.910878685,3.908682866,1,CMIP5 -2147,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.50538256,4.435951029,8.004275435,6.437720011,6.655326789,1,CMIP5 -2147,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.604028751,1.847898834,3.28441881,2.635994873,2.705830925,1,CMIP5 -2147,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.04862825,2.588051241,5.15139224,3.812609291,3.755496842,1,CMIP5 -2148,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.389734725,4.357265317,7.626287936,6.241967574,6.492158522,1,CMIP5 -2148,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.564385248,1.83251312,3.171623953,2.600595074,2.699121611,1,CMIP5 -2148,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.940481267,2.524752427,4.826783489,3.652300351,3.628832744,1,CMIP5 -2149,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.477082638,4.47957715,7.848851846,6.380779677,6.597344856,1,CMIP5 -2149,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.534948831,1.841545709,3.10050721,2.583418673,2.695810886,1,CMIP5 -2149,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.029100053,2.638030956,5.065032215,3.808093057,3.764654528,1,CMIP5 -2150,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.400555935,4.30415765,7.616563633,6.251488248,6.542615854,1,CMIP5 -2150,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.610173005,1.734581522,3.203481853,2.566467164,2.66390264,1,CMIP5 -2150,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.982393673,2.56957552,4.960550692,3.696220011,3.627376917,1,CMIP5 -2151,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.362517535,4.540622989,7.693508572,6.371004767,6.624943754,1,CMIP5 -2151,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.556285444,1.879305395,3.217769055,2.594524671,2.640512117,1,CMIP5 -2151,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.041316068,2.661318365,5.162902765,3.787988872,3.663867178,1,CMIP5 -2152,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.39251587,4.481251241,7.845523404,6.334389057,6.505390791,1,CMIP5 -2152,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.473379396,1.918571716,3.052281367,2.570907961,2.656389381,1,CMIP5 -2152,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.085948058,2.562678768,5.203045613,3.774324886,3.665787581,1,CMIP5 -2153,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.400164544,4.416649678,7.706694147,6.32955014,6.597428367,1,CMIP5 -2153,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.453667328,2.004563552,3.083035594,2.638356862,2.732914152,1,CMIP5 -2153,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.054247992,2.412085504,4.981743608,3.702326329,3.707738101,1,CMIP5 -2154,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.375172277,4.434217313,7.586213798,6.320279042,6.630342528,1,CMIP5 -2154,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.554410199,1.852640673,3.194415769,2.592124887,2.660721554,1,CMIP5 -2154,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.945293188,2.581576719,4.886058954,3.739093228,3.744368619,1,CMIP5 -2155,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.428513864,4.336552455,7.698889683,6.251551554,6.485382039,1,CMIP5 -2155,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.557706818,1.870815916,3.21497822,2.62016465,2.697432232,1,CMIP5 -2155,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.017272451,2.465734855,4.947403599,3.642614104,3.578658981,1,CMIP5 -2156,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.389989913,4.469820411,7.59413719,6.316969612,6.601960424,1,CMIP5 -2156,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.571973192,1.945956376,3.343177715,2.674661679,2.704756313,1,CMIP5 -2156,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.969711852,2.523863521,4.860024842,3.653901292,3.615858402,1,CMIP5 -2157,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.35676366,4.556724075,7.691040428,6.280766992,6.437651732,1,CMIP5 -2157,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.61333046,2.00277183,3.475516672,2.696546586,2.65394892,1,CMIP5 -2157,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.970684216,2.553952994,4.901488361,3.595715231,3.463709785,1,CMIP5 -2158,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.592939622,4.198293186,7.98633737,6.186403211,6.280491144,1,CMIP5 -2158,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.552344104,1.819193389,3.023921643,2.57315334,2.724749163,1,CMIP5 -2158,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.101688462,2.379100322,5.04063467,3.623705582,3.537543667,1,CMIP5 -2159,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.517370389,4.167306452,7.606267857,6.110194566,6.333601977,1,CMIP5 -2159,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.581621016,1.906917403,3.289276624,2.622162377,2.646227741,1,CMIP5 -2159,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.049603734,2.260389804,4.791108852,3.499043914,3.4723385,1,CMIP5 -2160,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.578673548,4.254059906,8.029157666,6.205683449,6.269758112,1,CMIP5 -2160,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.570964707,1.895393003,3.230289279,2.611830557,2.660819973,1,CMIP5 -2160,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.163399481,2.358666109,5.171579111,3.604679449,3.444236287,1,CMIP5 -2161,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.481706455,4.311021422,7.676665573,6.186364707,6.378885917,1,CMIP5 -2161,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.559706156,1.899191165,3.225392933,2.621656394,2.681020739,1,CMIP5 -2161,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.019111358,2.411830427,4.84347521,3.575704888,3.523756957,1,CMIP5 -2162,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.530921606,4.075006711,7.705415284,6.08538573,6.280560463,1,CMIP5 -2162,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.538676265,1.841477143,3.126951332,2.572812606,2.661410974,1,CMIP5 -2162,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.121252102,2.233529378,4.963705842,3.523571843,3.448526076,1,CMIP5 -2163,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.706819123,4.221079169,7.82965963,6.441411681,6.857453963,1,CMIP5 -2163,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.725829116,1.844035715,3.616429052,2.760903807,2.79157523,1,CMIP5 -2163,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.121807886,2.377042311,4.983167042,3.692829773,3.705554869,1,CMIP5 -2164,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.36786702,4.372786204,7.54876689,6.102303221,6.243829895,1,CMIP5 -2164,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.615274672,1.848297596,3.311545503,2.700237872,2.820554193,1,CMIP5 -2164,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.91719803,2.524487687,4.668055458,3.414297513,3.232323454,1,CMIP5 -2165,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.391248245,4.14989132,7.377723562,6.044846264,6.325885087,1,CMIP5 -2165,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.542640618,1.911448132,3.217581898,2.649496938,2.734478861,1,CMIP5 -2165,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.975596428,2.238443483,4.615893353,3.407014503,3.386860588,1,CMIP5 -2166,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.460392724,4.162537586,7.518634833,6.023725523,6.206864836,1,CMIP5 -2166,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.481743684,1.987054115,3.165189069,2.573443185,2.570764778,1,CMIP5 -2166,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.140387746,2.175483806,4.914693813,3.461338011,3.377587213,1,CMIP5 -2167,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.49653598,4.193603439,7.644794385,6.119488837,6.319778763,1,CMIP5 -2167,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.53644246,1.938154355,3.226081008,2.646696526,2.71127537,1,CMIP5 -2167,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.076456603,2.255449611,4.840642299,3.484185675,3.420325396,1,CMIP5 -2168,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.35722575,4.055635416,7.242238193,5.877273118,6.105609432,1,CMIP5 -2168,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.395268101,1.980008118,2.908388244,2.533520457,2.622842732,1,CMIP5 -2168,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.027032924,2.07562776,4.565303115,3.354337116,3.388208794,1,CMIP5 -2169,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.478805644,4.146739213,7.406881026,6.043739049,6.310667978,1,CMIP5 -2169,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.638711665,1.843068582,3.383953075,2.633629625,2.653748421,1,CMIP5 -2169,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.970802083,2.303670838,4.620701563,3.421573376,3.380960552,1,CMIP5 -2170,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.339018164,4.193856845,7.263191163,5.881727201,6.034930398,1,CMIP5 -2170,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.547678197,2.099082758,3.406978837,2.650769739,2.548508681,1,CMIP5 -2170,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.069853627,2.09477306,4.677744192,3.242709812,3.099160997,1,CMIP5 -2171,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.380124887,3.896283748,7.234662318,5.679066165,5.792659296,1,CMIP5 -2171,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.447783189,1.935485718,3.030439095,2.505189278,2.527416151,1,CMIP5 -2171,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.131632768,1.960796544,4.700472184,3.184900858,3.039167353,1,CMIP5 -2172,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.444454621,4.086528126,7.432246692,5.873580005,5.9877726,1,CMIP5 -2172,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.456510763,2.017210259,3.108876962,2.508989504,2.454935397,1,CMIP5 -2172,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.163845331,2.069317493,4.883368132,3.375061594,3.273780375,1,CMIP5 -2173,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.619336497,3.844721748,7.625203682,5.798580975,5.862199235,1,CMIP5 -2173,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.53635978,1.949615603,3.232975526,2.610228203,2.629160841,1,CMIP5 -2173,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.239936554,1.895105413,4.858011483,3.199793555,3.023028662,1,CMIP5 -2174,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.371170066,4.00747893,7.100685946,5.728725081,5.903367724,1,CMIP5 -2174,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.591706266,1.881266727,3.312566607,2.540612759,2.484308851,1,CMIP5 -2174,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.002403199,2.126212318,4.534649822,3.199368408,3.068305746,1,CMIP5 -2175,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.400874222,3.986258107,7.107739772,5.7198052,5.89261146,1,CMIP5 -2175,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.568683227,2.029598944,3.389454928,2.609289586,2.509052236,1,CMIP5 -2175,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.080646647,1.956658299,4.546689378,3.122206077,2.992738316,1,CMIP5 -2176,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.325945234,4.138623312,7.113908589,5.724061316,5.821856682,1,CMIP5 -2176,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.442001529,2.054475553,3.071140143,2.534736235,2.506664621,1,CMIP5 -2176,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.981559551,2.084148699,4.425391805,3.199767167,3.144764081,1,CMIP5 -2177,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.401508718,4.063163092,7.124828351,5.808649948,6.023304175,1,CMIP5 -2177,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.694152884,1.917548648,3.562142639,2.607625386,2.475405128,1,CMIP5 -2177,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.99446741,2.145614627,4.541555123,3.212670844,3.081756812,1,CMIP5 -2178,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.277444817,4.031737195,7.049812518,5.61199007,5.683205285,1,CMIP5 -2178,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.334221865,1.982030797,2.774419924,2.449022767,2.519820173,1,CMIP5 -2178,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.031888925,2.049705518,4.506292799,3.173417437,3.068835716,1,CMIP5 -2179,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.503926074,3.961867979,7.444663095,5.815706787,5.928148037,1,CMIP5 -2179,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.603114725,1.896356527,3.363456679,2.607699663,2.585492722,1,CMIP5 -2179,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.138313858,2.065512588,4.778305564,3.219754098,3.017599119,1,CMIP5 -2180,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.178012633,4.033947912,6.705463139,5.593602894,5.817500263,1,CMIP5 -2180,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.512005444,1.880162463,3.132142174,2.532234382,2.558316446,1,CMIP5 -2180,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.828806373,2.1537858,4.147864188,3.072830115,2.994835237,1,CMIP5 -2181,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.45079222,4.009055556,7.17863328,5.796329602,5.998814786,1,CMIP5 -2181,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.503509071,2.09412981,3.314165695,2.651993783,2.599839814,1,CMIP5 -2181,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.109808821,1.914925122,4.526638253,3.156087887,3.091394087,1,CMIP5 -2182,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.44025451,3.990978814,7.223069144,5.765158665,5.923293351,1,CMIP5 -2182,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.655598338,1.901444802,3.481926784,2.61834066,2.544995527,1,CMIP5 -2182,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.044811089,2.089533344,4.580740134,3.158672198,2.982207657,1,CMIP5 -2183,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.313854829,3.915825893,6.84287607,5.510774171,5.642197361,1,CMIP5 -2183,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.499925633,1.969793678,3.179479024,2.51167228,2.448708209,1,CMIP5 -2183,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.021639489,1.946032006,4.360629399,3.01037149,2.867412278,1,CMIP5 -2184,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.608163045,3.829659517,7.400312179,5.788873338,5.962760828,1,CMIP5 -2184,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.55416632,1.993935915,3.335886866,2.658459132,2.652006873,1,CMIP5 -2184,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.198555445,1.835723583,4.646525078,3.142282864,3.043441397,1,CMIP5 -2185,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.411489165,3.818659822,7.140190156,5.607788183,5.736151378,1,CMIP5 -2185,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.585971453,1.838958267,3.26865087,2.567984292,2.582164016,1,CMIP5 -2185,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.051991025,1.979701259,4.49772302,3.051558171,2.864404202,1,CMIP5 -2186,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.359244658,3.7319637,6.921408777,5.470092323,5.613498409,1,CMIP5 -2186,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.482303209,1.92636652,3.105210895,2.514324258,2.512859808,1,CMIP5 -2186,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.101160691,1.805597394,4.447301513,2.967357925,2.808266396,1,CMIP5 -2187,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.411212065,3.829173342,7.060682856,5.613432439,5.781936779,1,CMIP5 -2187,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.619917387,1.833936754,3.340263027,2.526925246,2.466750601,1,CMIP5 -2187,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.114733594,1.995236827,4.63808724,3.098379181,2.880096328,1,CMIP5 -2188,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.376456094,4.037907252,6.978066435,5.567007924,5.626029005,1,CMIP5 -2188,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.645930297,1.938291486,3.478315764,2.581092039,2.453880454,1,CMIP5 -2188,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.068242574,2.099616632,4.500634588,2.998064986,2.696004362,1,CMIP5 -2189,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.432339743,3.792060123,7.18009903,5.539304314,5.592529052,1,CMIP5 -2189,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.569797707,1.92016496,3.293358289,2.530464381,2.454167138,1,CMIP5 -2189,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.174713869,1.871894334,4.663110233,3.020313101,2.773123918,1,CMIP5 -2190,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.28116108,3.649723411,6.52102727,5.314272302,5.543169264,1,CMIP5 -2190,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.510230689,1.89148658,3.136862373,2.509255892,2.504337307,1,CMIP5 -2190,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.91694913,1.75823802,3.964590179,2.81640839,2.77140268,1,CMIP5 -2191,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.491746919,3.669169238,7.098767651,5.530021316,5.676074188,1,CMIP5 -2191,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.585247331,1.804881264,3.220204843,2.566468401,2.620393749,1,CMIP5 -2191,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.06769819,1.864288389,4.393694408,2.975343623,2.821695847,1,CMIP5 -2192,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.45833644,3.848033238,6.858176093,5.585232076,5.817359487,1,CMIP5 -2192,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.685740747,1.935440609,3.578207828,2.643166128,2.529508038,1,CMIP5 -2192,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.009878077,1.912592709,4.259002354,2.954388235,2.822978937,1,CMIP5 -2193,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.264263512,3.881675585,6.743419739,5.489115431,5.6656832,1,CMIP5 -2193,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.596530939,1.941586234,3.396913667,2.623401422,2.577552893,1,CMIP5 -2193,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.931601601,1.940089862,4.157202772,2.878077821,2.707509325,1,CMIP5 -2194,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.43209739,3.70576647,7.043694671,5.482446941,5.590163312,1,CMIP5 -2194,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.50822251,1.940969145,3.17301937,2.598791092,2.640587927,1,CMIP5 -2194,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.079441861,1.764797568,4.336366332,2.895551202,2.740520454,1,CMIP5 -2195,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.365570819,3.630192733,6.825148059,5.38184897,5.536027545,1,CMIP5 -2195,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.609191397,1.838934811,3.33046483,2.583555337,2.582410853,1,CMIP5 -2195,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.018059335,1.791257985,4.220305776,2.810576016,2.615370152,1,CMIP5 -2196,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.367980579,3.569099881,6.833610489,5.223571866,5.245788548,1,CMIP5 -2196,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.465537414,1.708596499,2.763385944,2.385450253,2.534909285,1,CMIP5 -2196,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.022909976,1.860502808,4.251093546,2.848992873,2.642187568,1,CMIP5 -2197,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.297673497,3.912630214,6.745470862,5.404285645,5.479520752,1,CMIP5 -2197,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.578801416,2.071858686,3.410942153,2.596081769,2.450763118,1,CMIP5 -2197,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.993448569,1.84077199,4.185184273,2.819973404,2.626968676,1,CMIP5 -2198,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.363952085,3.703404397,6.814253009,5.207587772,5.156346841,1,CMIP5 -2198,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.545033357,1.824086793,3.127232067,2.452129615,2.428599801,1,CMIP5 -2198,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.034989322,1.8793167,4.244450857,2.766633949,2.471384118,1,CMIP5 -2199,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.167075729,3.787616902,6.379524448,5.226442047,5.369313418,1,CMIP5 -2199,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.522285718,1.897657466,3.150948657,2.437202204,2.350101346,1,CMIP5 -2199,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.882402742,1.889959419,3.993150188,2.800330596,2.659106388,1,CMIP5 -2200,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.171081133,3.645042836,6.268485755,5.123278743,5.28979319,1,CMIP5 -2200,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.479193132,1.931956404,3.076650253,2.424733633,2.345163937,1,CMIP5 -2200,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.886832073,1.713085452,3.858549477,2.709397459,2.632977454,1,CMIP5 -2201,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.412302943,3.647403763,6.815482448,5.326126033,5.420808961,1,CMIP5 -2201,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.486677846,1.879965788,3.064966729,2.441586759,2.410707259,1,CMIP5 -2201,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.107428208,1.767438199,4.356619174,2.895572981,2.729117276,1,CMIP5 -2202,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.405787755,3.275170798,6.262284504,5.082863645,5.396999639,1,CMIP5 -2202,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.619475011,1.741032443,3.233165435,2.411569996,2.336041053,1,CMIP5 -2202,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.961215823,1.534138014,3.839069247,2.682351123,2.678098614,1,CMIP5 -2203,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.260270322,3.487977564,6.488408534,4.963351391,4.938509732,1,CMIP5 -2203,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.398811532,1.887715483,2.817358594,2.340971603,2.329406168,1,CMIP5 -2203,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.004252159,1.60026297,4.009839371,2.632537198,2.460023224,1,CMIP5 -2204,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.352343967,3.395634251,6.435134921,5.071516012,5.227647438,1,CMIP5 -2204,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.643079263,1.757004753,3.289298643,2.414470604,2.30578951,1,CMIP5 -2204,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.997456111,1.638629899,4.030745572,2.668245319,2.501802904,1,CMIP5 -2205,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.373986305,3.569677786,6.289204755,5.092559014,5.255676757,1,CMIP5 -2205,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.670225997,1.936997765,3.448711999,2.468103803,2.243352724,1,CMIP5 -2205,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.005447463,1.632680991,3.938287112,2.63607653,2.486669008,1,CMIP5 -2206,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.351112378,3.548084307,6.467588393,5.107805716,5.207775081,1,CMIP5 -2206,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.703385004,1.826259234,3.442056932,2.438613922,2.243069762,1,CMIP5 -2206,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.016648022,1.721825718,4.110719177,2.68053568,2.444798912,1,CMIP5 -2207,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.348529726,3.315168957,6.405528001,4.90921975,4.95809102,1,CMIP5 -2207,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.635698362,1.691081107,3.223092008,2.366673371,2.276260184,1,CMIP5 -2207,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.058568452,1.624087588,4.073994092,2.553923413,2.258805987,1,CMIP5 -2208,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.399530346,3.245705651,6.384201257,4.924040749,5.033128043,1,CMIP5 -2208,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.599445812,1.615676491,3.068707108,2.29851718,2.25484256,1,CMIP5 -2208,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.02826305,1.630028766,4.04354759,2.636246902,2.435705626,1,CMIP5 -2209,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.31308695,3.397077868,6.204780448,4.98801146,5.175093761,1,CMIP5 -2209,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.648125014,1.824195054,3.328964825,2.424622184,2.272664428,1,CMIP5 -2209,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.925258669,1.572881762,3.798572445,2.57451409,2.463301076,1,CMIP5 -2210,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.268992188,3.295223196,6.240781684,4.813178113,4.858353786,1,CMIP5 -2210,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.568842823,1.747702594,3.112364129,2.3514405,2.272847638,1,CMIP5 -2210,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.993260866,1.547519917,3.88165426,2.472790199,2.230993309,1,CMIP5 -2211,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.309696728,3.355473269,6.383592716,4.713952068,4.558371143,1,CMIP5 -2211,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.413762803,1.811849674,2.754173987,2.244667722,2.206323613,1,CMIP5 -2211,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.061902759,1.543624189,3.998761458,2.479147158,2.187101493,1,CMIP5 -2212,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.488442091,3.326669733,6.492164809,5.013859044,5.118300816,1,CMIP5 -2212,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.555200071,1.763891426,3.065387831,2.354776115,2.294912602,1,CMIP5 -2212,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.068453616,1.562778184,4.019122135,2.669555241,2.548160321,1,CMIP5 -2213,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.42347973,3.430091858,6.233655226,4.962454559,5.093035575,1,CMIP5 -2213,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.707842712,1.779938796,3.401639371,2.404467367,2.218145651,1,CMIP5 -2213,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.927410671,1.650153795,3.737853248,2.56910436,2.444205198,1,CMIP5 -2214,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.112881372,3.303227873,5.836225338,4.613756358,4.65778611,1,CMIP5 -2214,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.555894872,1.791178108,3.105918237,2.334921789,2.221295406,1,CMIP5 -2214,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.871958339,1.512049663,3.540289086,2.289942812,2.05371625,1,CMIP5 -2215,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.333708454,3.193751502,6.056503357,4.715500314,4.805873199,1,CMIP5 -2215,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.634412466,1.712647271,3.213580051,2.338079225,2.213044789,1,CMIP5 -2215,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.979109346,1.481104134,3.747273027,2.38858982,2.16299106,1,CMIP5 -2216,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.293687424,3.448513738,6.09425608,4.917431544,5.06347818,1,CMIP5 -2216,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.689300183,1.818267756,3.375269561,2.424485848,2.252203038,1,CMIP5 -2216,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.839410622,1.630246162,3.624623066,2.503935318,2.380436022,1,CMIP5 -2217,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.229626063,3.338849317,6.111238087,4.728657404,4.732271106,1,CMIP5 -2217,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.590366592,1.74010248,3.130699968,2.336877922,2.238354621,1,CMIP5 -2217,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.923901687,1.598746999,3.731655858,2.402696272,2.140191115,1,CMIP5 -2218,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.172845492,3.247597604,5.670312908,4.651588844,4.844222432,1,CMIP5 -2218,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.520618358,1.811055759,3.025333574,2.280480376,2.142766086,1,CMIP5 -2218,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.893750035,1.436542882,3.531683785,2.381860606,2.27960788,1,CMIP5 -2219,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.187659838,3.273511613,5.992067492,4.645135833,4.657482113,1,CMIP5 -2219,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.514255446,1.817526167,3.031330841,2.305354303,2.186280102,1,CMIP5 -2219,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.014996017,1.455984805,3.805320432,2.350857369,2.071062119,1,CMIP5 -2220,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.213303297,3.330564861,6.076240789,4.730511754,4.757620683,1,CMIP5 -2220,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.434145432,1.817652472,2.856851381,2.276529279,2.215806632,1,CMIP5 -2220,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.968109437,1.512911515,3.787184979,2.464347762,2.278647277,1,CMIP5 -2221,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.248029129,3.130004184,5.94700764,4.537302362,4.536098811,1,CMIP5 -2221,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.550031187,1.760498521,3.033155618,2.25934576,2.12186445,1,CMIP5 -2221,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.006536675,1.369504865,3.719857347,2.288535692,2.032390279,1,CMIP5 -2222,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.274423483,3.06219089,5.899631008,4.580775285,4.680639622,1,CMIP5 -2222,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.473309898,1.751798474,2.865446822,2.254714754,2.20080686,1,CMIP5 -2222,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.943082431,1.310392605,3.556810807,2.336227101,2.238852496,1,CMIP5 -2223,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.346378949,3.187729361,6.140378562,4.658871217,4.653688473,1,CMIP5 -2223,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.510832583,1.756012539,2.950264526,2.286293718,2.219448903,1,CMIP5 -2223,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.009551362,1.431716701,3.759905045,2.383012337,2.170213801,1,CMIP5 -2224,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.212146272,3.253829579,5.938311988,4.561824903,4.527579023,1,CMIP5 -2224,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.519808546,1.681515873,2.935082826,2.239030321,2.169761292,1,CMIP5 -2224,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.962610102,1.572313635,3.715188689,2.333531624,2.023312086,1,CMIP5 -2225,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.152604898,3.305520002,5.887243951,4.583080526,4.569779076,1,CMIP5 -2225,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.413015089,1.912236634,2.886664321,2.315409441,2.231368404,1,CMIP5 -2225,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.945425709,1.393282138,3.589776862,2.278412194,2.065294887,1,CMIP5 -2226,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.293332235,3.157428316,5.923583437,4.668793294,4.797080711,1,CMIP5 -2226,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.650904067,1.645571726,3.199350647,2.305569466,2.188677746,1,CMIP5 -2226,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.930321403,1.511856422,3.666865541,2.374374815,2.159388649,1,CMIP5 -2227,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.192764271,3.074743132,5.77105737,4.449098672,4.475297094,1,CMIP5 -2227,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.476811163,1.688927973,2.795320909,2.193165436,2.144206431,1,CMIP5 -2227,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.870911416,1.385815326,3.453060031,2.265790174,2.112142669,1,CMIP5 -2228,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.278735608,2.98195607,5.844698579,4.464430489,4.515533653,1,CMIP5 -2228,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.578650759,1.655343198,3.038197836,2.249237139,2.15170376,1,CMIP5 -2228,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.987360651,1.32661321,3.621176124,2.226062962,1.978231256,1,CMIP5 -2229,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.280427268,3.182403229,5.984286196,4.57150113,4.559657548,1,CMIP5 -2229,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.56301229,1.656712701,3.018169331,2.270188914,2.202936811,1,CMIP5 -2229,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.993137356,1.525690507,3.726236155,2.312363909,1.998764486,1,CMIP5 -2230,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.279811519,3.173133811,5.90951903,4.526705287,4.512084153,1,CMIP5 -2230,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.559687022,1.777259333,3.083588807,2.322094271,2.213764471,1,CMIP5 -2230,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.954970308,1.395874459,3.555114613,2.215606689,1.955718842,1,CMIP5 -2231,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.309548987,2.811460232,5.603543272,4.325800095,4.444098439,1,CMIP5 -2231,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.542755451,1.575075851,2.879260628,2.157044331,2.086920422,1,CMIP5 -2231,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.954858269,1.23638537,3.43406316,2.179044989,2.022865714,1,CMIP5 -2232,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.262945338,3.116343144,5.82147053,4.451052504,4.433198171,1,CMIP5 -2232,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.555929346,1.783830965,3.068030042,2.283712408,2.141494313,1,CMIP5 -2232,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.98847668,1.332512842,3.575849544,2.178242492,1.902303792,1,CMIP5 -2233,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.148024948,3.019533678,5.657275607,4.364726155,4.391047667,1,CMIP5 -2233,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.520902497,1.719007072,2.915736892,2.168159356,2.01894673,1,CMIP5 -2233,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.96429859,1.300526713,3.57169723,2.206733555,1.977355139,1,CMIP5 -2234,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.089432257,3.224937751,5.438883448,4.319401917,4.306893233,1,CMIP5 -2234,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.600469042,1.816708795,3.097091603,2.201456601,1.946013002,1,CMIP5 -2234,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.953688212,1.408228322,3.515156989,2.128793252,1.795893848,1,CMIP5 -2235,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.207314428,2.829557613,5.545375072,4.271666294,4.355866245,1,CMIP5 -2235,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.521012588,1.615309125,2.860503687,2.13940849,2.040910574,1,CMIP5 -2235,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.969722144,1.214248708,3.492212057,2.142642708,1.932055033,1,CMIP5 -2236,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.373885634,3.005986154,5.778310439,4.455601589,4.519054881,1,CMIP5 -2236,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.684343258,1.719404752,3.265659117,2.267773598,2.043015262,1,CMIP5 -2236,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.058037807,1.286581515,3.674218677,2.198970235,1.917540375,1,CMIP5 -2237,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.303323807,2.886294388,5.844065326,4.226749747,4.088319638,1,CMIP5 -2237,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.556075597,1.603812692,2.925292886,2.157610519,2.050668249,1,CMIP5 -2237,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.115065081,1.282481918,3.727220633,2.079814948,1.654778621,1,CMIP5 -2238,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.334675703,3.079365228,5.883478409,4.441398021,4.401374224,1,CMIP5 -2238,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.493019634,1.761972497,2.926256192,2.255022169,2.165929993,1,CMIP5 -2238,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.044549049,1.317392741,3.618358437,2.197090268,1.926304948,1,CMIP5 -2239,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.307104066,2.804437076,5.641743906,4.313897984,4.404705478,1,CMIP5 -2239,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.616340539,1.613542122,3.074586026,2.235523386,2.126982698,1,CMIP5 -2239,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.948490521,1.190895598,3.402559867,2.089232837,1.881737941,1,CMIP5 -2240,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.255704207,3.006646618,5.767077139,4.306488684,4.226115491,1,CMIP5 -2240,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.52325567,1.744767814,2.949914983,2.205944713,2.064548027,1,CMIP5 -2240,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.043215973,1.261878619,3.615271794,2.111125016,1.783674825,1,CMIP5 -2241,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.176774076,3.079711512,5.552620419,4.293430157,4.270694348,1,CMIP5 -2241,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.457764046,1.795576579,2.847551352,2.191179992,2.060796019,1,CMIP5 -2241,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.956514596,1.28413509,3.43133301,2.112629359,1.867524669,1,CMIP5 -2242,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.379760565,2.62743063,5.520719885,4.226113798,4.378152338,1,CMIP5 -2242,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.697479935,1.574125499,3.176999199,2.178642393,1.981722437,1,CMIP5 -2242,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,1.011629002,1.053305485,3.439692191,2.058135397,1.869771956,1,CMIP5 -2243,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.234326301,2.851958325,5.461966312,4.122708255,4.088454191,1,CMIP5 -2243,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.519413238,1.688485907,2.863820211,2.134113452,1.992073844,1,CMIP5 -2243,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.954318558,1.163471877,3.332117682,1.998658309,1.749521839,1,CMIP5 -2244,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.262036436,2.678462883,5.447002994,4.09278807,4.122843202,1,CMIP5 -2244,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.477629127,1.548303228,2.673895656,2.054341349,1.997583255,1,CMIP5 -2244,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.940624687,1.130160118,3.311536259,2.047992892,1.875137596,1,CMIP5 -2245,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.259480141,2.791578682,5.387458626,4.148084688,4.206650721,1,CMIP5 -2245,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.673774898,1.590753329,3.144296342,2.183099318,1.9986738,1,CMIP5 -2245,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.924436139,1.200825259,3.291011924,1.975825774,1.705732956,1,CMIP5 -2246,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.245828102,2.526508174,5.425202082,3.991329172,4.006803216,1,CMIP5 -2246,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.523729709,1.510240952,2.773704325,2.084561417,2.027150195,1,CMIP5 -2246,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.986820778,1.016268051,3.322142232,1.916998807,1.664792473,1,CMIP5 -2247,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.18766821,2.781467632,5.414663817,3.993769327,3.889472929,1,CMIP5 -2247,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.503186932,1.522593008,2.724705085,2.087901378,2.052153709,1,CMIP5 -2247,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.908239545,1.258874696,3.236131087,1.916038298,1.584573704,1,CMIP5 -2248,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.229765976,2.606589344,5.184683117,3.985281405,4.074926579,1,CMIP5 -2248,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.5214355,1.475456282,2.729971341,2.038781249,1.974848686,1,CMIP5 -2248,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.888497969,1.131133084,3.130993669,1.956403154,1.781742932,1,CMIP5 -2249,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.205345667,2.495402189,5.195578168,3.88159543,3.917700681,1,CMIP5 -2249,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.551295777,1.559873278,2.847867866,2.079065468,1.954260365,1,CMIP5 -2249,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.940920285,0.935528512,3.14129009,1.812702113,1.586994926,1,CMIP5 -2250,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.119642641,2.65885882,5.05575115,3.891668469,3.926031954,1,CMIP5 -2250,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.412528372,1.560966175,2.540740916,2.011314211,1.971774877,1,CMIP5 -2250,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.827569607,1.097892825,2.973734743,1.889784759,1.743755734,1,CMIP5 -2251,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.229332471,2.694691245,5.251409507,3.963881359,3.954712342,1,CMIP5 -2251,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.478601415,1.591663806,2.720620118,2.086160865,2.016179768,1,CMIP5 -2251,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.913165131,1.103027224,3.112109708,1.887730029,1.667891591,1,CMIP5 -2252,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.202282764,2.610131308,5.207674855,3.90897365,3.909044218,1,CMIP5 -2252,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.662534615,1.491596576,3.018257405,2.07057055,1.886214109,1,CMIP5 -2252,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.944905614,1.118534772,3.233255042,1.84882333,1.521751753,1,CMIP5 -2253,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.26768576,2.264562254,5.055701726,3.778107817,3.896083644,1,CMIP5 -2253,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.579437319,1.402216888,2.793642004,2.001958791,1.905988136,1,CMIP5 -2253,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.962795782,0.862345061,3.115294038,1.786291708,1.583763867,1,CMIP5 -2254,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.1278967,2.47117603,5.135939584,3.788583299,3.77360879,1,CMIP5 -2254,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.379627949,1.530913239,2.442242618,1.927071783,1.867565638,1,CMIP5 -2254,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.968205433,0.94026271,3.230115116,1.870662401,1.656135889,1,CMIP5 -2255,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.215604752,2.534851109,4.928216975,3.894093494,4.056652946,1,CMIP5 -2255,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.592423602,1.587487451,2.931898412,2.068882572,1.878072212,1,CMIP5 -2255,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.893331138,0.947363234,3.008059529,1.835435437,1.693159493,1,CMIP5 -2256,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.286155629,2.490902783,5.191746211,3.842875121,3.844425744,1,CMIP5 -2256,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.572518065,1.564451823,2.861676168,2.043615296,1.874166597,1,CMIP5 -2256,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.996955405,0.92645104,3.201210033,1.809229739,1.554628942,1,CMIP5 -2257,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.133997617,2.523983278,4.893866831,3.797630247,3.886335439,1,CMIP5 -2257,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.619257224,1.49592612,2.915643313,2.020783212,1.835781708,1,CMIP5 -2257,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.857792069,1.028057652,3.004522513,1.786976794,1.557663505,1,CMIP5 -2258,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.219009871,2.59519406,4.987853062,3.90850392,4.025484279,1,CMIP5 -2258,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.649639074,1.481031911,2.976733418,2.049569334,1.870256003,1,CMIP5 -2258,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.808368918,1.11416174,2.935697866,1.869032059,1.713134315,1,CMIP5 -2259,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.106964173,2.439349957,4.969169945,3.697473019,3.690686087,1,CMIP5 -2259,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.551426971,1.46116635,2.770387801,2.004450863,1.89312465,1,CMIP5 -2259,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.902923422,0.978183253,3.02307916,1.703170093,1.405708978,1,CMIP5 -2260,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.105615379,2.516018733,4.951599476,3.799035146,3.864261187,1,CMIP5 -2260,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.517115794,1.494666682,2.719062315,1.992980194,1.879095889,1,CMIP5 -2260,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.87693256,1.021352208,3.052813945,1.815978658,1.59487424,1,CMIP5 -2261,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.024108885,2.600068416,4.837226162,3.704357716,3.690068143,1,CMIP5 -2261,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.456413037,1.526436279,2.609003246,1.975574538,1.883429313,1,CMIP5 -2261,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.814276496,1.07363245,2.903796215,1.738517398,1.488320464,1,CMIP5 -2262,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.156428247,2.437775623,4.896277828,3.673097751,3.679168776,1,CMIP5 -2262,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.655615044,1.489875224,3.019350069,2.100561495,1.946510343,1,CMIP5 -2262,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.855456436,0.947900249,2.83814448,1.583362436,1.273702507,1,CMIP5 -2263,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.967019971,2.543644673,4.71461283,3.624303937,3.619479123,1,CMIP5 -2263,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.436775562,1.519776955,2.54591497,1.946976832,1.861107701,1,CMIP5 -2263,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.752391579,1.023868199,2.763102144,1.686713303,1.479941434,1,CMIP5 -2264,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.197584915,2.639034602,4.979998581,3.801895338,3.794274084,1,CMIP5 -2264,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.53777088,1.531190568,2.767544672,1.994443156,1.839518691,1,CMIP5 -2264,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.922810059,1.107844709,3.08006343,1.817341142,1.540728215,1,CMIP5 -2265,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.09411341,2.55166311,4.818444789,3.761743079,3.838432209,1,CMIP5 -2265,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.507894323,1.476498656,2.684422662,1.994108551,1.907756443,1,CMIP5 -2265,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.775322005,1.075164847,2.825532759,1.777387098,1.604425393,1,CMIP5 -2266,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.008554237,2.436711544,4.63536501,3.642460733,3.748883189,1,CMIP5 -2266,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.401908068,1.522872502,2.481167055,1.954217524,1.90641527,1,CMIP5 -2266,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.730327728,0.913839298,2.638711586,1.697514215,1.618752988,1,CMIP5 -2267,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.144311394,2.549197839,4.751318368,3.710929198,3.771600292,1,CMIP5 -2267,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.53613741,1.5712158,2.767632746,1.977975081,1.786525889,1,CMIP5 -2267,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.907165832,0.977982283,2.96724683,1.742900764,1.513186971,1,CMIP5 -2268,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.186325414,2.469300131,4.946755858,3.666130427,3.62423286,1,CMIP5 -2268,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.56767319,1.435945832,2.743405604,1.934747196,1.779818675,1,CMIP5 -2268,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.929434901,1.033354373,3.077434773,1.741024432,1.426654291,1,CMIP5 -2269,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.162267198,2.343441748,4.853235121,3.639814427,3.681290419,1,CMIP5 -2269,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.568529923,1.506746101,2.78763648,1.966503518,1.785815746,1,CMIP5 -2269,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.913068098,0.83669606,2.970603697,1.682973199,1.46229652,1,CMIP5 -2270,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.057290461,2.469811531,4.713814313,3.585884987,3.579957052,1,CMIP5 -2270,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.579439707,1.526663267,2.811655823,1.972596616,1.776033688,1,CMIP5 -2270,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.825252973,0.943148756,2.82137537,1.623005449,1.363748834,1,CMIP5 -2271,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.033954434,2.569097735,4.817170559,3.560314529,3.427494911,1,CMIP5 -2271,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.314372882,1.489811891,2.246521714,1.834866675,1.801566548,1,CMIP5 -2271,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.872124694,1.0792857,2.961983172,1.734222307,1.447810178,1,CMIP5 -2272,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.15613141,2.427934033,4.875883975,3.704659859,3.757410714,1,CMIP5 -2272,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.541225755,1.522963983,2.766542834,1.993782941,1.842812473,1,CMIP5 -2272,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.883358005,0.904969464,2.948327347,1.720678024,1.514707643,1,CMIP5 -2273,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.081734216,2.475045932,4.685334718,3.665134129,3.750077932,1,CMIP5 -2273,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.608330681,1.513743741,2.891968008,2.003946908,1.805037942,1,CMIP5 -2273,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.731367807,0.961302346,2.632688002,1.671278382,1.545561589,1,CMIP5 -2274,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.072597902,2.492512663,4.769617851,3.524600331,3.418135406,1,CMIP5 -2274,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.475907027,1.481980279,2.592738239,1.921460883,1.805562507,1,CMIP5 -2274,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.88227358,1.010532674,2.897568377,1.612788804,1.271527081,1,CMIP5 -2275,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.898854275,2.453225418,4.503849059,3.469585926,3.460634614,1,CMIP5 -2275,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.473824971,1.414629751,2.546611852,1.900081875,1.819542947,1,CMIP5 -2275,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.710779832,1.038595055,2.625601284,1.5790135,1.325928831,1,CMIP5 -2276,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.097700276,2.513576395,4.764879261,3.674459169,3.709690509,1,CMIP5 -2276,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.462290836,1.449941653,2.543670467,1.899721953,1.802637847,1,CMIP5 -2276,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.836165701,1.063635155,2.91068756,1.784006511,1.580851664,1,CMIP5 -2277,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.081541627,2.329098458,4.774232879,3.583583902,3.615502136,1,CMIP5 -2277,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.591559546,1.407914673,2.800564045,1.967781285,1.831323211,1,CMIP5 -2277,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.866206906,0.921183788,2.889952629,1.625877172,1.346186135,1,CMIP5 -2278,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.057011406,2.533070381,4.76668635,3.640282698,3.63068703,1,CMIP5 -2278,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.373798466,1.446406024,2.346796623,1.852163349,1.807725375,1,CMIP5 -2278,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.829516828,1.086663621,2.904530767,1.796966652,1.59833611,1,CMIP5 -2279,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.187070395,2.331436452,4.991760107,3.639978044,3.618357808,1,CMIP5 -2279,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.511953403,1.311031584,2.52435646,1.853257801,1.788821579,1,CMIP5 -2279,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.89573577,1.020405329,3.073319249,1.795649274,1.544436258,1,CMIP5 -2280,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.155498328,2.32403032,4.845710215,3.454553546,3.324236825,1,CMIP5 -2280,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.418446052,1.405031137,2.398120458,1.866266572,1.830957347,1,CMIP5 -2280,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.911912993,0.918999398,2.898153228,1.597446704,1.286317095,1,CMIP5 -2281,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.186049691,2.282164288,4.761859723,3.586989448,3.65196689,1,CMIP5 -2281,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.453074247,1.432399196,2.502502078,1.870397175,1.773343713,1,CMIP5 -2281,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.921200533,0.849765493,2.935642045,1.725707597,1.558711425,1,CMIP5 -2282,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.926240328,2.53521918,4.457176728,3.547687967,3.599177979,1,CMIP5 -2282,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.508265149,1.511498585,2.621603286,1.876230468,1.68591,1,CMIP5 -2282,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.712668729,1.02372037,2.687759137,1.680436545,1.505133337,1,CMIP5 -2283,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.118409045,2.408657908,4.584131708,3.539306141,3.582217474,1,CMIP5 -2283,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.551987669,1.472737664,2.722834345,1.919134722,1.740483439,1,CMIP5 -2283,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.845369442,0.935920596,2.793472526,1.629825647,1.394954733,1,CMIP5 -2284,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.13842211,2.323420309,4.568366784,3.494484601,3.543075655,1,CMIP5 -2284,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.45791539,1.401182994,2.473801619,1.839875967,1.742259627,1,CMIP5 -2284,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.836829074,0.922237915,2.737539973,1.663532653,1.497176362,1,CMIP5 -2285,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.051889033,2.323174928,4.427532739,3.398742046,3.422130258,1,CMIP5 -2285,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.551620637,1.360122425,2.65711707,1.875334909,1.742050071,1,CMIP5 -2285,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.800237588,0.963052621,2.666786967,1.533180419,1.251441045,1,CMIP5 -2286,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.981978331,2.370080433,4.648518149,3.473049295,3.4367993,1,CMIP5 -2286,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.375739411,1.408197234,2.324621047,1.84192604,1.81744294,1,CMIP5 -2286,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.840747064,0.961882743,2.855837171,1.640407686,1.371955415,1,CMIP5 -2287,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.041359781,2.340449024,4.465189702,3.485466579,3.568113795,1,CMIP5 -2287,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.502331212,1.476477184,2.631581483,1.911392479,1.768755624,1,CMIP5 -2287,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.769694565,0.863971469,2.631258226,1.583531054,1.41944726,1,CMIP5 -2288,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.053638397,2.304348285,4.388763721,3.408630951,3.470705899,1,CMIP5 -2288,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.492865345,1.353784456,2.519137544,1.839013677,1.741566354,1,CMIP5 -2288,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.743975374,0.95056349,2.570578357,1.578763429,1.396955935,1,CMIP5 -2289,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.084555368,2.220305482,4.607548189,3.526072746,3.638218656,1,CMIP5 -2289,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.538401496,1.3992121,2.618321716,1.845587049,1.68240719,1,CMIP5 -2289,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.83339211,0.821093148,2.825131864,1.689326167,1.555539829,1,CMIP5 -2290,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.067087001,2.279317186,4.59453869,3.456365361,3.475802785,1,CMIP5 -2290,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.512240108,1.365257793,2.535764753,1.822309453,1.694107633,1,CMIP5 -2290,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.795304974,0.914059206,2.765554458,1.642790757,1.445774682,1,CMIP5 -2291,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.030222341,2.416302541,4.370263451,3.438625039,3.483967083,1,CMIP5 -2291,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.63005704,1.455878515,2.826000824,1.907710487,1.674481304,1,CMIP5 -2291,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.714545313,0.960423971,2.564034624,1.540359376,1.318489455,1,CMIP5 -2292,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.10427401,2.264274448,4.709707432,3.432286364,3.377581789,1,CMIP5 -2292,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.401458002,1.442886815,2.359572261,1.823979381,1.746729224,1,CMIP5 -2292,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.865497563,0.82138726,2.822481639,1.616879212,1.411823974,1,CMIP5 -2293,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.055474302,2.260357534,4.281607954,3.316348908,3.361715073,1,CMIP5 -2293,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.516168199,1.44802074,2.588697859,1.85099004,1.683620781,1,CMIP5 -2293,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.737031853,0.81233636,2.46258646,1.474362574,1.311263738,1,CMIP5 -2294,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.093433884,2.252649836,4.648263303,3.353784332,3.257112095,1,CMIP5 -2294,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.415661165,1.236748554,2.202552582,1.718748067,1.717845567,1,CMIP5 -2294,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.800164955,1.015900894,2.769280504,1.643155701,1.393720702,1,CMIP5 -2295,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.002028736,2.235350514,4.380400141,3.297818304,3.287761281,1,CMIP5 -2295,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.474826228,1.271074918,2.384736837,1.736542769,1.64517966,1,CMIP5 -2295,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.741610506,0.964275737,2.628288299,1.569754386,1.343226754,1,CMIP5 -2296,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.002588889,2.328744147,4.290445702,3.300960708,3.292326491,1,CMIP5 -2296,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.568741729,1.36699755,2.664831223,1.851688795,1.687463203,1,CMIP5 -2296,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.722426592,0.961746992,2.502148263,1.458679188,1.185410748,1,CMIP5 -2297,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.227047654,2.165758785,4.479674219,3.387598269,3.452480036,1,CMIP5 -2297,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.636500792,1.306807776,2.73220043,1.836473919,1.653443735,1,CMIP5 -2297,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.807559934,0.858950695,2.645223603,1.560134374,1.368181599,1,CMIP5 -2298,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.96876311,2.435616505,4.482633521,3.50493428,3.550743547,1,CMIP5 -2298,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.442109991,1.450986915,2.457558355,1.817193387,1.68011414,1,CMIP5 -2298,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.764560948,0.984629755,2.754416918,1.69647376,1.523424184,1,CMIP5 -2299,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,1.127370163,2.143536948,4.532671363,3.3500167,3.361929245,1,CMIP5 -2299,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.452991322,1.322042105,2.398996791,1.790511314,1.720503179,1,CMIP5 -2299,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.848979579,0.821494412,2.722492431,1.568320256,1.364647091,1,CMIP5 -2300,fgco2,ocean,fgco2,rcp85,PgC/yr,Simulated,global,0.824445309,2.82662236,4.322818859,3.774769834,4.174868283,1,CMIP5 -2300,fgco2,ocean,fgco2_HL,rcp85,PgC/yr,Simulated,HL,0.456617046,1.628763548,2.49837445,1.983063623,1.822052871,1,CMIP5 -2300,fgco2,ocean,fgco2_LL,rcp85,PgC/yr,Simulated,LL,0.649591017,1.215373131,2.500765427,1.803571111,1.694574774,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/hist/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/hist/ensemble_mean_model.csv deleted file mode 100644 index 049473b52..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/hist/ensemble_mean_model.csv +++ /dev/null @@ -1,3676 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","nbp","carbon_cycle","nbp","historical",1850,"Simulated","PgC/yr","global",1.07853170632141 -"CanESM2","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",0.216924373328587 -"CanESM2","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",-1.17303525122983 -"CanESM2","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",0.288690543475905 -"CanESM2","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",-1.73540958352177 -"CanESM2","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",0.195862250236495 -"CanESM2","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",1.24733320052201 -"CanESM2","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",-0.0314606318511002 -"CanESM2","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",0.780971164672569 -"CanESM2","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",0.791066764574793 -"CanESM2","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",0.018782150809042 -"CanESM2","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",-0.73772144237282 -"CanESM2","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-0.189123002724875 -"CanESM2","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",0.69335103451818 -"CanESM2","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",1.00329867272325 -"CanESM2","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",1.94744099914523 -"CanESM2","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",1.30312123733478 -"CanESM2","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",0.394092047679905 -"CanESM2","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",-0.6538443230192 -"CanESM2","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",-1.37195963171191 -"CanESM2","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-1.34893029013356 -"CanESM2","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",1.74618771123711 -"CanESM2","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",-0.846774904551715 -"CanESM2","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",0.853470589812454 -"CanESM2","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",0.132715292893258 -"CanESM2","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",0.152122854776864 -"CanESM2","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",1.36267044821917 -"CanESM2","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",-0.135584578137515 -"CanESM2","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",-0.0183342382116779 -"CanESM2","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",1.17556910070766 -"CanESM2","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-1.36962856869444 -"CanESM2","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",-1.35702947776337 -"CanESM2","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",1.24913779572064 -"CanESM2","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",0.386416597850325 -"CanESM2","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",0.615488661958704 -"CanESM2","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",-1.04469616286219 -"CanESM2","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",2.21553901673283 -"CanESM2","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",2.29924841820324 -"CanESM2","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",1.8299499729573 -"CanESM2","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",-0.543695756042931 -"CanESM2","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",0.0258036521072326 -"CanESM2","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",-0.390109888486753 -"CanESM2","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",1.60375668513012 -"CanESM2","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",1.35838999056108 -"CanESM2","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",1.02931894568367 -"CanESM2","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-0.200485414760494 -"CanESM2","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",-0.368453732653394 -"CanESM2","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-0.227451284556787 -"CanESM2","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",-0.899451253428238 -"CanESM2","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",0.863084170513057 -"CanESM2","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",0.0515697583158076 -"CanESM2","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-0.0927873370020554 -"CanESM2","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",1.24718556985545 -"CanESM2","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",0.615007125352185 -"CanESM2","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",0.528402272331285 -"CanESM2","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",3.29516454414865 -"CanESM2","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",0.14808433812812 -"CanESM2","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",-0.99991911394301 -"CanESM2","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",-0.661391338206584 -"CanESM2","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",1.10332644833315 -"CanESM2","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",-0.0562554253396547 -"CanESM2","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",1.02397848397836 -"CanESM2","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",0.0451315857995986 -"CanESM2","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",-0.061830791817774 -"CanESM2","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",1.95587068076765 -"CanESM2","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",-0.164435013966205 -"CanESM2","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",0.0524948931195106 -"CanESM2","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-1.24186106596139 -"CanESM2","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",0.3251111268837 -"CanESM2","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",-1.41081104663053 -"CanESM2","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",-0.317303864246235 -"CanESM2","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",0.425459056081911 -"CanESM2","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",-0.381164097144959 -"CanESM2","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",-0.7059459654795 -"CanESM2","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",0.662277801056396 -"CanESM2","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",0.667465376634521 -"CanESM2","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",0.452439146347102 -"CanESM2","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",0.761334659674264 -"CanESM2","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",-0.809673282941008 -"CanESM2","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",0.606119013776556 -"CanESM2","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",0.101217977380075 -"CanESM2","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",0.260493251853436 -"CanESM2","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",-1.21581618065096 -"CanESM2","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",0.60830600607064 -"CanESM2","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",0.889508539653201 -"CanESM2","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",0.298276619473201 -"CanESM2","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",-0.672692203280649 -"CanESM2","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",-0.401707288945005 -"CanESM2","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-2.00602662848309 -"CanESM2","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",0.600959106984075 -"CanESM2","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",2.02095744519556 -"CanESM2","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",-1.3899242664242 -"CanESM2","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-1.29345797829474 -"CanESM2","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",0.0615205764711988 -"CanESM2","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",1.36437271556179 -"CanESM2","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-2.13195792121259 -"CanESM2","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",1.82085080324132 -"CanESM2","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-0.266319525957836 -"CanESM2","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-0.280809533872795 -"CanESM2","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-0.695516538461183 -"CanESM2","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-0.393923300260485 -"CanESM2","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",-0.802271174975183 -"CanESM2","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",-0.251102305140944 -"CanESM2","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",0.818625901394797 -"CanESM2","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-1.01592435786154 -"CanESM2","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-0.385322329551124 -"CanESM2","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-0.00940359070407265 -"CanESM2","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",0.0675634103000719 -"CanESM2","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",1.27643504748453 -"CanESM2","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",-0.743886916485407 -"CanESM2","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",0.680522887866894 -"CanESM2","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-1.35237463569711 -"CanESM2","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",0.555500739956824 -"CanESM2","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",1.58554949812135 -"CanESM2","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",-0.704118216976689 -"CanESM2","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",-0.272954105027206 -"CanESM2","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",0.447069375032818 -"CanESM2","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",1.25577804689107 -"CanESM2","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",-0.202683206567692 -"CanESM2","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",1.50337825592169 -"CanESM2","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",1.87282134069988 -"CanESM2","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",-0.145815208148278 -"CanESM2","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",0.800320429068286 -"CanESM2","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",-1.3209448416728 -"CanESM2","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",-1.46349515930396 -"CanESM2","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",1.18040129325529 -"CanESM2","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",0.664259738693158 -"CanESM2","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",-0.457667227740486 -"CanESM2","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",1.64412094238061 -"CanESM2","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",1.32076298375321 -"CanESM2","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",-1.28762279226752 -"CanESM2","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",-1.83546384716798 -"CanESM2","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",-0.881971884173928 -"CanESM2","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",1.82420873210925 -"CanESM2","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",2.11789143232142 -"CanESM2","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",0.550307659577279 -"CanESM2","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",-1.05479459398899 -"CanESM2","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",1.69419211100645 -"CanESM2","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",-0.862993188467797 -"CanESM2","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",-1.75586374296076 -"CanESM2","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",0.0399681078033914 -"CanESM2","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",-0.624283925454696 -"CanESM2","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",2.45906155456571 -"CanESM2","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",1.45074926571082 -"CanESM2","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",1.49379935450485 -"CanESM2","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",1.21439004778906 -"CanESM2","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",-1.04952335250731 -"CanESM2","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",-0.38529108956175 -"CanESM2","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",0.0969022323683809 -"CanESM2","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",-0.529820117426684 -"CanESM2","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",-1.44013458652072 -"CanESM2","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",1.87104687069594 -"CanESM2","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",1.84644233871629 -"CanESM2","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",-2.55544110426948 -"CanESM2","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",0.725809898243895 -"CanESM2","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",0.179535350250257 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1850,"Simulated","PgC/yr","HL",0.0443364066662342 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",0.0382547465499658 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",0.387915521355935 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",0.21729353356745 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",0.0575566550912861 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",0.0133629209302547 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",0.130372561371746 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",0.225431013908472 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",0.270363666600523 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",0.00705722065180762 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.0892716467454159 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",0.180634259057427 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",0.148618610907157 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",0.0738204443292868 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",-0.0301842493049565 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",0.150922169003872 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",0.0987108362164392 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",-0.0259052605903466 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",0.0539220363582546 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",0.113822270690218 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",-0.0989934121224494 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",0.195047561357222 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",0.0893695351137257 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",0.197977407178255 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",0.30274968454762 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.229867395449408 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",0.112003776549355 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.0204668351395263 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",0.0660986775222515 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",0.0921108639974215 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",0.187428623738721 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.126382158014267 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",0.0884528076270249 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",0.0663462697981159 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",0.271611425152331 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",0.116505518956813 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",0.314069230940869 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",0.103445260081149 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.0324412644416976 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",0.14926068413809 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",-0.0167603669554366 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",0.0831142655444703 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",0.0252781626404196 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",0.0819225959440698 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.110944759441844 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",-0.0255228124302763 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",0.0128731667795202 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",0.122314726541499 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",0.0431602763927885 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",0.0752763052720369 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",0.011164136452394 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",0.0908010481656491 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",-0.0824090802954336 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",0.0888640927056779 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",0.142858862650068 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",0.0088783388566792 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",-0.000981084295863015 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",0.334926644282068 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",-0.00440420969373644 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",0.0524819637006706 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",0.0912565827878921 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",0.0242039674176454 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",-0.0443206300509841 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",0.144758424920059 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",0.103489300121959 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",0.0662030360255161 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",0.252543148888576 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",-0.0882826658062732 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",0.0290787359171367 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",0.0132300617131358 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",0.0662881802896508 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",-0.0706346889164171 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",-0.00642120466308042 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.30982196605982 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",-0.00232843168947988 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.283947920828114 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.105301532519227 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",0.0622276607415206 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.315383307959177 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.0202590300535902 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.15571839007613 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",0.0513760835440567 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",0.191524708189965 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.180106367620627 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",-5.61433554441404e-05 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.104593407562735 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.0915479389165493 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",0.0199047857469356 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.0191113771541667 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",0.0062296235391816 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.0740800666215983 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",0.0832757882985603 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",0.01662001120645 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.110232727841984 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",0.0161766377482835 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.0161290856184156 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",0.0679530755495074 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.0426197905045958 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.104301610755814 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.0320788601962264 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.172028551671044 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",-0.00581106254564802 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",0.121812241067926 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",0.0654230116040387 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.13335228774878 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.0460532847341343 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.0340230876811064 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",0.0743542874233363 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",-0.0107427524505662 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",0.142531921612727 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",-0.0393605989210654 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.199631120991283 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.109033446121974 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.0714443160252624 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.0900586469982149 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.230454542719438 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.137895969612135 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",0.0301964204718187 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",-0.00424881531277013 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.187697792244749 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",-0.0886004876376884 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",-0.106501162391736 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",-0.0021542177348347 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",0.11193265118881 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",-0.0222060588740631 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.113371207313001 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",-0.0831049168301922 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",0.000895943921700618 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.135034278324415 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.126961669380288 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.145389261688845 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.0344414452846725 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.267241819538609 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.089154708072513 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.109728678043933 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",-0.0750634949034818 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.0682133669170131 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.125888698387292 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.16732229120404 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.132148619251709 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.0810044836273164 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.0872281999660715 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.172300392365593 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.222350891798281 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.0233646475963646 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.0753620085807276 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.0751363505791694 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.0450900943097418 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",0.220315702873907 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.0812478736219364 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",0.206396082485206 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",0.187607989794645 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.286106227923861 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",0.205497493382505 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",0.366012219007214 -"CanESM2","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",0.140726079883841 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1850,"Simulated","PgC/yr","LL",1.03419548104659 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",0.178669846186758 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",-1.56095084984129 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",0.0713966557616248 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",-1.79296636078291 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",0.182499289167966 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",1.11696064255069 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",-0.25689151165035 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",0.510607533071461 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",0.78400968821513 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",-0.0704897986934442 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",-0.91835561763119 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-0.337741572121057 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",0.619530723209783 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",1.03348326767855 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",1.79651903562872 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",1.20441036119058 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",0.41999744469718 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",-0.707766489331317 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",-1.48578224943506 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-1.24993678448689 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",1.55114036883082 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",-0.936144250352786 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",0.655493280473794 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-0.170034129945544 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",-0.0777447883184079 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",1.25066667241189 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",-0.156051225435029 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",-0.0844331253552772 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",1.08345819325838 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-1.55705692451039 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",-1.4834114112041 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",1.16068474331738 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",0.320070294241707 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",0.343877243227181 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",-1.16120178386113 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",1.90146977819727 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",2.19580306854082 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",1.79750883317577 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",-0.692956495615776 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",0.0425640199914631 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",-0.473224309366223 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",1.57847833530133 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",1.27646759706418 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",0.91837414230011 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-0.174962650050886 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",-0.381326743194029 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",-0.349766216845827 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",-0.942611249535141 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",0.787807751045966 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",0.0404054169759758 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-0.183588031336724 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",1.32959467072578 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",0.526143116243572 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",0.385543554036538 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",3.28628611435192 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",0.149065641986519 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",-1.33484598851023 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",-0.656987444071279 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",1.0508445288357 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",-0.147511943935815 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",0.999774278974138 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",0.089451846757987 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",-0.206589183840066 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",1.85238118882392 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-0.230637903709266 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",-0.200048378756972 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-1.15357817727896 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",0.296032194118052 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",-1.42404141765273 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",-0.383591801839226 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",0.496093827595028 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",-0.374742953426584 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",-1.01576828116227 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",0.664606299714646 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",0.38351731190976 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",0.347137390661066 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",0.699106951856362 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",-1.12505648180285 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",0.585859832509817 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",-0.0545004010566376 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",0.20911705590239 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-1.40734097615069 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",0.428199718286335 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",0.889564635750191 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",0.193683185405969 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",-0.581144306705526 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",-0.421612122444672 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-2.02513793939859 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",0.594728932963524 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",1.94687725502029 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",-1.47320006008441 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-1.31007784076615 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",-0.0487121340325283 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",1.34819610257374 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-2.14808653964551 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",1.75289791445473 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-0.308939470115525 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-0.3851110988345 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-0.727595390760897 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-0.56595208412735 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",-0.796460182074657 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",-0.372914600543233 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",0.753202961519743 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-1.14927647501185 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-0.431375599769353 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-0.0434267745073394 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-0.00679104780894089 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",1.28717786329724 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",-0.886418822253494 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",0.719883717476832 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-1.55200605641928 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",0.446467144498172 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",1.51410525452905 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",-0.794176670623478 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",-0.503408564600441 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",0.309173716683295 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",1.22558171556701 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",-0.198434491501819 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",1.31568051509431 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",1.96142188817673 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-0.0393139786161824 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",0.802474843974968 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",-1.43287728548918 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",-1.44128920988957 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",1.06703011229809 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",0.747364625988536 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",-0.458563274216886 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",1.50908716126166 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",1.1938014217026 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",-1.43301183420517 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",-1.86990499330449 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",-1.14921355501569 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",1.73505384080589 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",2.0081629814666 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",0.625371365009038 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",-1.12300796216475 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",1.56830302211515 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",-1.03031538959775 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",-1.88801232485604 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",-0.0410366663621609 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",-0.711512065600214 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",2.28676111993109 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",1.22839834356772 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",1.4704348540095 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",1.139027888243 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",-1.12465966263417 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",-0.430381290826644 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",-0.123413553467279 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",-0.611068249885237 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",-1.64653070277296 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",1.68343892309263 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",1.56033616353194 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",-2.76093893339818 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",0.359797644457029 -"CanESM2","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",0.0388093410835246 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",-0.152764137459067 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-1.65300417340047 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",-2.77478984459606 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",0.782590732631515 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",7.15198564971274 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",-1.88199261405247 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",-3.63444633951009 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",-2.71172866905748 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",-2.00737503704199 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-1.80904213876868 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",-0.587943158796438 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",-2.92140498662214 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",-3.00790740568494 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",-0.471118647556175 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",0.992798994149612 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",-1.77666706785589 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",-2.454265865346 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",0.616034528643601 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",-4.23411623251805 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-2.26545873693136 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",1.96865588704737 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",-2.27565205060823 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",-0.11229053754169 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",6.2128045793102 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",5.12649041722023 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",0.827916957886945 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",0.234686530342539 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",4.48674859264872 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",1.05638600119221 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",-6.42029971755565 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",-3.06474353405144 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",2.07400234425512 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",-0.187588981586878 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",0.0905486997246573 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-0.891702941243544 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",-0.586001169274253 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-2.47530073404608 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",-4.21212750000065 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",1.17542096716732 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",1.52793332447742 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-3.21185893180634 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",-8.08305163924109 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",-0.64657313021366 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",-0.223673505027713 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",-2.36520908584152 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",-3.37922583961201 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",-0.433552820254676 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",-1.23140891274988 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",-1.54812097551716 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",-1.10800451056334 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",-5.38633707620536 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",-3.19406044422001 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",6.68298223136362 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",0.559476677579628 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",-5.28061261225719 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",-3.47146109281468 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-3.73356131538847 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",-1.37426328984358 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",3.80755734123088 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",1.58538198461733 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",-3.11590151861498 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",2.56375752838384 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",-0.8752360025071 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",-5.79764379765128 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",-6.18529855692193 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",-3.12936499273134 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",0.34552856214032 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",-1.62297756989627 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",-1.15689172016749 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",-1.56293867888783 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",3.92679675255368 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",-0.498039965901278 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",-1.77927451009516 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",2.78865545354266 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",-3.14230086595043 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",-4.22928900601588 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",-1.11263034794253 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-0.331358778408127 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",1.18179737788951 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",-7.56690997609148 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",-5.10915518895834 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-0.503744168041236 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",-0.970003740016682 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",5.12815847249606 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-1.34601589168228 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-1.25243107398933 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-3.37839422478308 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-0.726645252487029 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-2.90191592420949 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-3.07813623243768 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",-1.38145683854081 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",-3.13768918371727 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",-3.96261892323127 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-3.51909798480466 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-5.56557982981762 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-2.62632005673292 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-5.08265450364567 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",-4.12455861936806 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",-3.43281432708951 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",-1.36120532849003 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-1.84031053462866 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",-0.750741171514881 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",1.59334698877289 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",3.28752783854253 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",-3.81822195692878 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",0.747432566985616 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",2.91286203428857 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",3.4565065027478 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",-1.21604076722358 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",-3.79358717722841 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",-1.96300187133423 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",1.17236763782829 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",-0.187018432689737 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",1.41924496597646 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",-5.29945021624485 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",-3.31458668699958 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",4.58632843639086 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",3.97606148633646 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",0.799525434602492 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",4.36013563707867 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",-2.57881989058523 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",2.48001857987443 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",6.46923630931695 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",-2.93134093400766 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",-3.25367451999379 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",-1.71391312332762 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",3.77827227435364 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",-1.32491893336441 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",0.973923106926112 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",-5.11090849681818 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",1.32402748087274 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",9.3811058748445 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",3.54643028494627 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",1.08151733698096 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",-4.78309300882624 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",-0.301714685554449 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",1.49640128902274 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",-0.558451394616454 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",2.17172593362088 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",0.940182707837699 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",-1.87085830487285 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",-1.59476765070115 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",2.35561093171341 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",8.05358159034193 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",0.891794627984839 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",0.0710760209083971 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",-0.117410175615747 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",0.138613374511223 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",0.170311440006419 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",0.548799168985764 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",-0.0339680372930485 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",-0.209891535335093 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",-0.284917578277051 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",-0.210224560845836 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",0.037238928663534 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",-0.561970368066356 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",-0.385649070561242 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.477207750745826 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",0.164525036293698 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.130380423839192 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",-0.397628833198866 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.410050925533879 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",0.264092648561635 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",-0.0895998254978121 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",0.00707572640975702 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.0579040489398934 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",0.1817719705994 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",-0.0148139634198328 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",0.486455354614159 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",0.592798786028144 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",0.378418704143502 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",-0.114336132851183 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.211603600966238 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",0.237272219226815 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",0.0363601848339291 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",0.424827353354996 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",0.324083197599629 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",-0.0559825604110265 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",-0.329669096352076 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",0.36808103105452 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",0.0847753105181633 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",-0.568355611278667 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-0.225832645786836 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",-0.073782674376588 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",-0.0994754899741052 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",-0.419646923491823 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",-0.170672675925954 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",-0.485312075033407 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.280586373870532 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",-1.03648727981973 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",-0.59884782299869 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",-1.02407618627424 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",-0.65737594920115 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",0.418837472036184 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",0.111504330994148 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",-0.363005832853225 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",0.159670051694437 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",0.837148488498393 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",0.539478438030362 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",0.410599378686892 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",0.309388517538446 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",0.64884267212235 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",-0.0378456456745363 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",0.323400380855743 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.032655376353713 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",-0.197911742971011 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",0.850764395393026 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.742150159840361 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",0.691478439264447 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.126713278781462 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.413577375265148 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",-0.0473624820744057 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.368054574506759 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.747262813378935 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.274531807778768 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",0.955289162096912 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",0.142446720196513 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.551239413935944 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.521563490756937 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",-0.0689875588640574 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.414559240178103 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",-0.514966000633378 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.0360147336636764 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",-0.286241862261526 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",-0.221571774180318 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",-0.0123800799316986 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",-0.284737614299363 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.526873527977678 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",0.848873792654185 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",-0.0667965702655312 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",0.421162972857875 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.0450722665585485 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",-0.156596722364869 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",-0.198918786194025 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.172052013310937 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",-0.11529730814926 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",-0.130846237438526 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",-0.168880081319659 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.326783251794109 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.192996562293981 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.22439459864699 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",-0.560596411170299 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.0213255113802115 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",-0.187262714959283 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",-0.0536831891460567 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.498557292994812 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.516883654449143 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.46212454587652 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.324642946806742 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.357204417279134 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.347731784122546 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",0.145689609243414 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.287796912740681 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.0693547103487653 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",-0.430845177544477 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",-0.783095680571601 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",-0.10144671086747 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",0.230960697630734 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",0.199691644379672 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",-0.15910310868445 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.113333726955642 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",-0.115936308093822 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",-0.00504313227087922 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.594431957639338 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.50291013826287 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.537949903551884 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.642641435686036 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.683715077451936 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.475552284291014 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",-0.144793683520994 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.219409560793289 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.145972753757368 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.864730479964759 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.166327202819519 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.421089845770807 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.482683661603088 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.962235938103826 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.637724382242141 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.340090895317645 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.565062811508519 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.39394661682685 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.538453172488497 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",0.866781605577652 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.0809532311605144 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",0.579499465912892 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",0.0480092406245466 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.274163883406148 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",0.973807556470942 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",1.05796197045756 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",0.407754556641184 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",-0.223840105364817 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-1.5355931977624 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",-2.91340332868556 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",0.612279283664127 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",6.60318620505888 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",-1.84802407353902 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",-3.42455395738989 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",-2.42681156457494 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",-1.79715054747558 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-1.84628007813566 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",-0.0259726416794599 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",-2.53575620374623 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",-2.53069992835121 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-0.635643708097743 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",0.862418446329276 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",-1.37903879535395 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",-2.86431707009188 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",0.351941943968454 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",-4.14451722069088 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-2.27253353511405 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",1.91075152324639 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",-2.45742458464033 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",-0.0974765712321772 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",5.72634989958778 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",4.53369176186403 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",0.449498293155775 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",0.349022653016189 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",4.27514509895245 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",0.819113860316442 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",-6.45666043185716 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",-3.48957089279221 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",1.74991974263812 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",-0.131606482599558 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",0.420217790480532 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-1.25978412741686 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",-0.67077656106228 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",-1.90694489267799 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",-3.98629487681396 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",1.24920371379981 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",1.62740865501327 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-2.79221269472326 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",-7.91237995142015 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",-0.161260960830471 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",0.0569129296943065 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",-1.32872124978001 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",-2.78037712892568 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",0.590523268825825 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",-0.574032939958423 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",-1.96695800367486 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",-1.21950884830693 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",-5.02333092846896 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",-3.35373069744163 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",5.84583456511415 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",0.0199983166139093 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-5.69121167039681 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",-3.78084959574801 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-4.38240475008365 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",-1.33641712122539 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",3.48415663939334 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",1.61803697445097 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",-2.91798885644914 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",1.71299293470264 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",-1.61738658218024 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",-6.48912234930507 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-6.31201109280748 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",-3.54294239723415 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",0.392891087166953 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",-1.99103300788974 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",-1.90415450003261 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",-1.83747093443655 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",2.9715072236619 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-0.640486639092668 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",-2.33051285899015 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",2.26709174494565 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",-3.07331328315205 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",-3.81472900118918 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",-0.597664471056449 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-0.367373418483814 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",1.46803894573939 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",-7.34533885949953 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",-5.09677542662122 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-0.219006484420542 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",-1.49687781108242 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",4.27928479330465 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-1.27921931709395 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-1.67359437388345 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-3.42346691063095 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-0.570048500535365 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-2.70299618400582 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-3.25018851019655 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",-1.26615954519969 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",-3.00684345533851 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",-3.79373942643604 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-3.84588095517246 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-5.7585757875826 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-2.85071521722037 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-4.52205813237632 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",-4.14588356896931 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",-3.24555184271813 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",-1.30752213332352 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-2.33886830162943 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",-1.26762489472094 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",1.13122242476213 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",2.96288559225052 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",-4.17542658884738 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",0.399700930270937 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",2.7671725923002 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",3.16870983171615 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",-1.28539555224387 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",-3.36274308872534 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-1.17990664652071 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",1.27381424261826 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",-0.417979182245475 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",1.21955330052059 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",-5.14034777493583 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",-3.4279213109206 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",4.70226530853356 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",3.98110485139552 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",0.205093466053376 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",3.85722610421751 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",-3.1167702392896 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",1.83737783393005 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",5.78552248347671 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",-3.40689370920002 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",-3.10888161045754 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",-1.93332249533521 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",3.63230052562344 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",-2.18964917011304 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",0.807595885260741 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",-5.53199800281692 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",0.841343769845553 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",8.41887030970075 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",2.90870503129439 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",0.741426339362518 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",-5.34815597308213 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",-0.695661146301251 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",0.957948220406897 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",-1.42523238187257 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",2.09077249839064 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",0.360683163636061 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",-1.91886831388311 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",-1.86893103798358 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",1.38180296250455 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",6.99562057523411 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",0.484040154595277 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",-3.31145010315704 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",-1.96411547602691 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",-3.66360583688525 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-1.86103648297919 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",-1.42406759136967 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",-0.971566090091092 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",3.99283131961994 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",5.04907447537918 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",-1.03659267079996 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",2.73917289596957 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",-2.16931245564584 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-0.551792111796827 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",-1.47108568149607 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",-4.68084469892466 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",-3.12484966197815 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",-5.53476051852812 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",-1.73823300684212 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",0.667262051511262 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",2.51219175563486 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",0.168600355818795 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",4.46032343448105 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",7.37424066253454 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",5.47666631590078 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",1.12987916956224 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",0.915139740969727 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",2.78947750848122 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",-3.85601923334622 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",4.18097076103913 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",6.62142394361882 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",1.89547738440603 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",0.285350061019992 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",3.34878055113101 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",2.05117258698675 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",-3.4666430032134 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",0.490761711627288 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",1.53578639293958 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-1.18186329028534 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",-5.27340664352227 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-1.278060634187 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",-0.512346724875471 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",-5.66104713490805 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",-5.40412647178917 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-2.15965396634369 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",-0.550118579738705 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",2.20227121876504 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",6.43446344523416 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",0.31262641523213 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",-0.910551012360445 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",-0.922881674680976 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",1.34062653577222 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",2.29128787259906 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",-2.30614162985731 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",-1.8081317611716 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",2.65708206494797 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",-3.34275855113143 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",-4.27093137362827 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",-1.32712630083256 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",-3.36505853109522 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-4.45065413099566 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",0.33187220280931 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",-1.10383235460606 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",-5.81338077134766 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",-4.9944603565502 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",-2.28417226871279 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",-3.34722220681431 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",-2.48564826442521 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",-1.50250428212172 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",0.493441911834133 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",2.49240823490692 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",0.852875502413733 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",-3.7660415287977 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",-3.70387441278746 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",-1.30780836507855 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",0.113303121643261 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",-2.95461052909255 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",-0.858289189524363 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",2.37683795533674 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",-2.8095742745544 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",-2.65463429528069 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-3.32855493179219 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",-2.88479699326179 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",3.46369868196345 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",0.0958078724391476 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-5.47742885858806 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",-4.79135641001915 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",-4.23372350516541 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-5.69493377425398 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-5.63073890839746 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-8.46006103175514 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-6.0273527991148 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-4.11582437574899 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-5.79209207235085 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",1.04918811773382 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",-2.32759758875797 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",-2.48594976658893 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-3.24983664598207 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-4.53529270959289 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-7.81618681315269 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-4.77896481184715 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",-8.69320581416235 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",-7.39294003022394 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",-1.29885027929805 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-2.46024044343051 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",-2.19686967699967 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",-4.86418343122169 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",-4.05201148502267 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",1.71611798198718 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",4.01559579871551 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",4.10970171416265 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",-2.30224912713285 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",-4.31801650445187 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",1.27621140482957 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",-0.732044478607225 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",-3.78552837332691 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",-5.39176838190088 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",-2.87006939477206 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",2.95618564363766 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",2.76311631809966 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",-1.64959125005629 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",-1.74029003420941 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",1.73833294453411 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",1.97928967736154 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",6.1838250624942 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",2.78204017359458 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",2.67778798845399 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",2.57395409383026 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",-0.687801961821095 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",1.97283607522494 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",1.58966157207179 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",4.29934886748237 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",3.65896249443866 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",6.16253933950911 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",1.96397029491299 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",6.83505686691157 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",8.1469691521982 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",9.50311896744046 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",-0.41741808963853 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",3.88944038155644 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",6.49569339905668 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",1.49834440887104 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",-0.364496691440751 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",4.97378350948333 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",4.54266815147833 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",6.29674407753936 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",1.48952927304018 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",9.79458996074267 -"HadGEM2-ES","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",7.82927322159308 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",0.2943233069916 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.165477643729524 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",0.207169458687417 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",0.139816138022517 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",-0.122651110314703 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",0.0743635555146605 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",-0.147672062925065 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",-0.44780397179088 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",-0.386808030756359 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",-0.207976075392569 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",0.021916235421582 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",-0.328549759723184 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",-0.316713281735182 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",0.045990925304179 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.154595182944943 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",-0.0182339204027977 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.284277015846413 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",0.108332043567303 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",-0.0347792672393367 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",0.414470019629637 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",-0.0766148966455296 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",0.0928376419454123 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.107980704798625 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",-0.175498840049173 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",-0.185588401559775 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",-0.078202570232626 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",-0.260486809730567 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",-0.148161883040163 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",-0.289353812217771 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",-0.0811138942898333 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",0.0221367112813432 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",-0.0213207299144412 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",-0.253561790594005 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",-0.372419182079969 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",-0.404786580158951 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.0363895932855884 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",-0.0542975668772525 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",0.0244266735533785 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",-0.124595811819116 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-0.0875489746541266 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",-0.0362086685623269 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",0.119476492991216 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",0.168331277226684 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",0.346954796257682 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",-0.327855498643598 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.168952086733074 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",0.0123379421563246 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",0.128170903492409 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",-0.107789009886686 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",-0.0104840097013229 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",-0.14669648578128 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",-0.013841468170494 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",-0.233463267168387 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",-0.208458882921493 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",-0.503295589472987 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",-0.275609195988498 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",-0.489439080358545 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",-0.305081139372392 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",-0.0802528487801131 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",-0.193707463976956 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",-0.146080317884611 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.180517308557857 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",0.246608382522218 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",0.194722889464488 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.181078879769247 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",0.100746993424548 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.34704542565731 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.218503005582418 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",0.159652494559699 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.41455166509376 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.549719572070281 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.303207386880918 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",0.179464540296531 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",0.499873409799435 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.227351068467986 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.334090763716794 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.359836202255087 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",0.298186600908134 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",0.360773721822839 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.568506486057604 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",0.277614261413331 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.288759111803678 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",-0.0365137160608489 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",0.224128595510833 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.374528766640563 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",0.260711724136018 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.136167516523993 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",0.479380706798252 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.217039210985397 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.188490664181865 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.445140686367758 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.103559367031646 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.525471606600798 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",0.224594748900019 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",0.364737969893018 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.358634070422819 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.221582802507889 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.154669525387456 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",0.147533699784364 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.0847493536456622 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",0.0363553535059333 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",-0.337909809117481 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",-0.0468906656925595 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",-0.293506707885082 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",-0.435706470598024 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.0823373475442458 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",-0.341031403163329 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",-0.40707701570531 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",-0.128181467517073 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",-0.326424720385769 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",-0.316843541275768 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.0158188067927015 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",-0.47154539077288 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",-0.108670127795691 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",-0.301573499448033 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",-0.0254527052012853 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.115794083167082 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.000447097513927911 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",-0.191059580661018 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.0797561665635247 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.365232312072804 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.348096365529752 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.70641058828559 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.47816990704831 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.178979287391528 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.509523066963899 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",0.415275165347025 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.695554796396321 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.682378432898311 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.517090388581532 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.414228439045674 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",1.09618557502876 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.890455408270042 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.934099276661478 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.600465933707786 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.730889276869243 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",1.04778729359983 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",1.37626585902004 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.945236271751436 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",1.06609984977311 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",1.04398868401893 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",1.16266797688396 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",1.59185457825429 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",1.18491510554817 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",1.11131680978598 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",1.4105270827422 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",1.69230212522017 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",-3.21318084136739 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",-2.12276111080497 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",-3.85932164486859 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-1.99459572215375 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",-1.29954694715301 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",-1.04264507994741 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",4.12901334341493 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",5.4790306467953 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",-0.652205175691765 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",2.93791035395897 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",-2.1857268944997 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-0.226089752648898 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",-1.15485555044598 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",-4.71498159324958 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",-2.96469581069701 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-5.5034325632243 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",-2.01471207795739 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",0.558700161652388 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",2.54048084866944 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",-0.241007379321688 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",4.52522492675127 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",7.26482897012588 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",5.35687167250054 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",1.30042721669579 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",1.09616623962656 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",2.85997060607918 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",-3.58955959798386 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",4.31718338028874 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",6.89115941671883 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",1.970996992841 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",0.262807924034705 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",3.36176729786292 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",2.29657331987007 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",-3.09061091226025 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",0.889222130511838 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",1.49616198822851 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-1.12541036425326 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",-5.28482663810721 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",-1.15197149740038 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",-0.424676606653356 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",-5.61166920253749 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",-5.50907317929705 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-2.32064621398222 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",-0.891338893053828 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",2.52065749108001 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",6.58577604084269 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",0.29969242085997 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",-1.03490022477526 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",-0.814240402771184 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",1.34774928864188 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",2.43060373971627 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",-2.28692392727102 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",-1.5732820079794 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",2.85649480320948 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",-2.83781143521324 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",-3.98854265087259 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-0.840712789789563 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",-3.05575300657521 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-4.36070585740802 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",0.522318498535797 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",-0.956951193006962 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",-5.62116109592916 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",-5.22590967588049 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",-2.4709209870127 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",-3.51794051101114 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",-2.57913059190403 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-1.84152107217961 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",0.276527974853664 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",2.32878432682667 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",0.441539122978385 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",-4.29970711393899 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",-3.99431163958698 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",-1.48184329004855 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-0.380490239973381 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",-3.1719583931468 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",-1.18606746062463 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",2.01585252520705 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",-3.09720622262578 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",-3.00443095164508 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-3.8818222928455 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",-3.15193703375179 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",3.17027000033579 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",0.131626579203415 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-5.68552152235649 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",-5.14958892047605 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",-4.48092855253025 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-5.81565983538811 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-6.09047081390097 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-8.65397570610769 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-6.19893605262418 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-4.5453977050605 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-5.88038874065853 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",0.527869152421163 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",-2.54373413242232 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",-2.8400664394319 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-3.59608839451849 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-4.74314028093508 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-7.95007160518435 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-4.91311759024519 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",-8.75594941460935 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",-7.41103334645443 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",-0.962107771976322 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-2.40802241344051 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",-1.90180397553991 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",-4.4223031501688 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",-4.12354671525865 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",2.04868352593029 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",4.40783074479224 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",4.22635900079809 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",-1.97443007020965 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",-3.99480353530586 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",1.25752100671186 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-0.264729460130748 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",-3.66912546470411 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",-5.081047017582 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",-2.8380302603885 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",2.83474556178748 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",2.7560223387097 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",-1.45698829370784 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",-1.81484231478008 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",1.37355745266413 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",1.63085231602405 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",5.47150383224445 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",2.30324948179013 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",2.4946363860372 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",2.06470934814705 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",-1.09614363139663 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",1.28137154515592 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",0.912128546527732 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",3.77847757629924 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",3.24118926190748 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",5.06544812347831 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",1.0801036087532 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",5.89637281806668 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",7.53452246660837 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",8.75863814640874 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",-1.62852001144718 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",2.38539991987503 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",5.54683147309492 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",0.442189910487955 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",-1.39433911022559 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",3.81391751314623 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",2.96010832755617 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",5.11173000763285 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",0.388750377110361 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",8.37840831950843 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",6.13962933052824 -"inmcm4","nbp","carbon_cycle","nbp","historical",1850,"Simulated","PgC/yr","global",0.019700796059543 -"inmcm4","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",-2.1106183822983 -"inmcm4","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",11.1692117965213 -"inmcm4","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",2.41877644844377 -"inmcm4","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",-3.35879278653125 -"inmcm4","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",5.35226763975168 -"inmcm4","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",-4.28584715387682 -"inmcm4","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",7.8498534493966 -"inmcm4","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",-0.506255842474038 -"inmcm4","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",1.30940805375373 -"inmcm4","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",9.52780131267301 -"inmcm4","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",7.37291952147605 -"inmcm4","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",4.75140034923357 -"inmcm4","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",8.88783095107457 -"inmcm4","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",2.72244495634393 -"inmcm4","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",-9.67621571680958 -"inmcm4","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",7.40789174856715 -"inmcm4","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",0.0402544955848071 -"inmcm4","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",-4.73779333626436 -"inmcm4","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",5.09881591053373 -"inmcm4","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",4.27261172383655 -"inmcm4","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",8.96895989055939 -"inmcm4","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",11.4707923622493 -"inmcm4","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",11.9333310709878 -"inmcm4","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",13.1021749327686 -"inmcm4","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",1.91686120932665 -"inmcm4","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",-3.14810044007102 -"inmcm4","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",14.4850006955104 -"inmcm4","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",15.9129231137188 -"inmcm4","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",8.5043300224806 -"inmcm4","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-0.623894815457163 -"inmcm4","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",3.06568624188394 -"inmcm4","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",9.97818555989173 -"inmcm4","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",14.7490899914343 -"inmcm4","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",3.95215764076985 -"inmcm4","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",-4.26155914243077 -"inmcm4","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",-4.61746159348452 -"inmcm4","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",-2.71493769431209 -"inmcm4","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",2.48521579785473 -"inmcm4","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",8.16564907288665 -"inmcm4","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",0.122247357336489 -"inmcm4","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",9.3828936218918 -"inmcm4","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",8.19986043969468 -"inmcm4","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",3.34625226482562 -"inmcm4","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",-2.73566912629545 -"inmcm4","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",3.13859853374532 -"inmcm4","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",9.31502102404066 -"inmcm4","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-2.91693564366882 -"inmcm4","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",-1.40649221728856 -"inmcm4","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",4.88713589343122 -"inmcm4","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",12.2781214230237 -"inmcm4","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",8.19939555888748 -"inmcm4","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",11.854080957741 -"inmcm4","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",4.64105308801182 -"inmcm4","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",3.65351274103885 -"inmcm4","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",-6.91097277168934 -"inmcm4","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",-3.49050204470668 -"inmcm4","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",6.05370039153107 -"inmcm4","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",5.39643935935619 -"inmcm4","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",-3.87377455435732 -"inmcm4","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",10.1147849137553 -"inmcm4","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",5.82812864207223 -"inmcm4","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",1.29025737737327 -"inmcm4","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",-4.72111875340128 -"inmcm4","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",10.3544559029204 -"inmcm4","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",10.6511029411894 -"inmcm4","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",0.284143996573006 -"inmcm4","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",1.84345508214413 -"inmcm4","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",9.48881084248024 -"inmcm4","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",1.2067078405228 -"inmcm4","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",6.44252090777004 -"inmcm4","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",4.18386935576877 -"inmcm4","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",4.10422996516791 -"inmcm4","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",17.2672656776611 -"inmcm4","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",6.50618062384245 -"inmcm4","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",-4.43544225874862 -"inmcm4","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",10.9093225137033 -"inmcm4","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",10.681791508801 -"inmcm4","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",1.25490214640607 -"inmcm4","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",7.33304915577622 -"inmcm4","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",10.5562559964319 -"inmcm4","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",-3.75129374320924 -"inmcm4","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",1.14169273148103 -"inmcm4","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",0.205041068772157 -"inmcm4","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",14.6222981748769 -"inmcm4","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",4.10930665661262 -"inmcm4","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",0.470983292729985 -"inmcm4","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",2.85437780771036 -"inmcm4","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-2.08076949559105 -"inmcm4","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",0.21721531587641 -"inmcm4","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",14.653932589944 -"inmcm4","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",-7.59611056645511 -"inmcm4","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-5.65025623716665 -"inmcm4","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",8.82711333533562 -"inmcm4","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",4.65440916186018 -"inmcm4","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-5.85176839412277 -"inmcm4","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",7.49585073617436 -"inmcm4","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",10.8634971696358 -"inmcm4","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",4.56122388448623 -"inmcm4","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-0.651000261968296 -"inmcm4","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",2.22786968651141 -"inmcm4","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",1.86006210447468 -"inmcm4","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",6.80977513687364 -"inmcm4","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",4.73706625624757 -"inmcm4","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",0.805950665052309 -"inmcm4","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",10.1713636425845 -"inmcm4","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",5.81064011565052 -"inmcm4","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",7.11998414775676 -"inmcm4","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",-1.80467855363771 -"inmcm4","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",12.6713800228166 -"inmcm4","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",2.39656190191288 -"inmcm4","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-0.997129599415735 -"inmcm4","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",4.94328352171946 -"inmcm4","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",19.6047314166158 -"inmcm4","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",6.18637480017127 -"inmcm4","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",1.33441912375631 -"inmcm4","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",5.40648174994217 -"inmcm4","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",12.6361584651887 -"inmcm4","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",5.64017041480975 -"inmcm4","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",0.952514071455845 -"inmcm4","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",7.5377060946634 -"inmcm4","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",1.85456396399368 -"inmcm4","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",3.7944456204893 -"inmcm4","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",-1.59398475945178 -"inmcm4","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",9.17037070671671 -"inmcm4","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",16.4202013722519 -"inmcm4","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",9.14566928915492 -"inmcm4","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",9.10782573943112 -"inmcm4","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",12.7727449503795 -"inmcm4","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",6.59630959141129 -"inmcm4","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",7.66491131733655 -"inmcm4","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",2.6616308255585 -"inmcm4","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",4.97569810007891 -"inmcm4","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",9.30040060308343 -"inmcm4","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",11.01884939703 -"inmcm4","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",7.7806344666471 -"inmcm4","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",5.90460877348505 -"inmcm4","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",10.9405901715938 -"inmcm4","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",9.39955372749791 -"inmcm4","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",18.9501502855648 -"inmcm4","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",10.6282916099544 -"inmcm4","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",8.90108085837181 -"inmcm4","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",14.3685118601645 -"inmcm4","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",3.91305296110541 -"inmcm4","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",5.00816737029802 -"inmcm4","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",8.37409905310039 -"inmcm4","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",1.93341836554985 -"inmcm4","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",17.6442051916787 -"inmcm4","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",2.70911301125718 -"inmcm4","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",8.66407851024183 -"inmcm4","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",16.9549108155779 -"inmcm4","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",6.82201967910341 -"inmcm4","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",9.28378714641645 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1850,"Simulated","PgC/yr","HL",0.260696483319115 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",-0.295203742998992 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",1.24274421676813 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",0.369623965538291 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",0.0323266006694348 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",0.222593852193972 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",-0.157401908126303 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",0.263456963378065 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",0.697772973597484 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",0.518094083340725 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.264861349651254 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",-0.310464395352557 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",0.546004708059745 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",-0.108934611514332 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",1.09919020062949 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",0.674704611413848 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",0.852577979381474 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",0.962103473668148 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",0.365281602389448 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",0.0452532858758483 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",-0.0643185205384864 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",-0.274616771601628 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",-0.10341543372022 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",0.567324129661836 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",0.888329697138042 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.375649917396415 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",-1.24340565692984 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.112713251110475 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",-0.152782888718208 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",-0.248064956590334 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",0.969330938086904 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.556011748863762 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",0.793415863018899 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",0.527635173782755 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",0.925063673338338 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",1.01160963872229 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",0.952165745455925 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",0.403127974960925 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.545518388283026 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",-0.138425676489701 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",0.269308445540842 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",0.686687485446839 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",0.737064160072222 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",1.28659051361224 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.865480871979846 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",0.809625673517254 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",-0.584898408038676 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",-0.134355556226918 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-1.04552188516517 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",-0.0348410634637927 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",0.0134242647429426 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",0.284848724693308 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",0.232119693865807 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",-0.123597619581499 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",0.855483732974657 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",0.985544426396252 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",-0.224052981269252 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",-0.533080880229564 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",0.571814453976021 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",0.0238746317131686 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",0.205819327963035 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",0.493271122404783 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",-0.798622511751149 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",-0.247770731710876 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",-0.535331700557416 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",0.762922000439948 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",0.0667384070086109 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",-0.051929927371235 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",0.497399889607481 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",0.270401604131443 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.624392439935116 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",-0.000931944008981042 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",-0.44068747827493 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.407895832550829 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",-0.439718799441023 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.182311835146807 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.59522174058811 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",0.949963019579524 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",1.44801473045842 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.907568043535045 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.780855006842896 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",-0.258942987910108 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",0.256225906020877 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",-0.152012613641959 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.358558563893839 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.669026354148852 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.0742740436977452 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",0.262650843790059 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.31141581676565 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",0.275063172983643 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.969287935989137 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",1.15907288503819 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",-0.212561236458124 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",-0.0772635665090122 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",-0.0603369506480786 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.152563408274474 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",-0.0634796118509325 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.4191097611777 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.566374688608509 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.603553397030447 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.292371262717135 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.0376999956939465 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",0.780628114195468 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",0.950051004134823 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",1.17788686862829 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.567975102207636 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.322734987368634 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",1.07155088519835 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.762161825198503 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",1.15673408015504 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",0.286821445928364 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.0222752677047171 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.415822646875373 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.741582492331663 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.339094739392097 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.991115178416831 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.411141642206616 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",1.43285366191021 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.800243860582084 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",1.73545829226171 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.384206203217876 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",0.513350555885083 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",0.511543336144721 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",0.287175364509327 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",1.20779680798493 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",1.45304767334837 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",-0.34848305922364 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",0.623533246705392 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.642920968810428 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",1.00813127824831 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",1.23599684813826 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",1.0179538626856 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.183048755306434 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",1.2609875738372 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",1.37986291239426 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",0.807900497252895 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.430212789657697 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.412391815035774 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",-0.370254568669359 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.469469461290806 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.0902159398106707 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",1.02674383095939 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",1.01134257306247 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.785062422619141 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",1.47291153052276 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.445723533158802 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",1.07512713202645 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.312052643884553 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",1.05321529994591 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.482381124053854 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",0.764264118543936 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",0.787039670390805 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.637894815725384 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",0.112157958232207 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",1.44986240611971 -"inmcm4","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",1.01441184779059 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1850,"Simulated","PgC/yr","LL",-0.11012550018227 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",-1.77674861379552 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",9.55932722459183 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",2.02077499569755 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",-3.07413294147286 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",4.76400870948958 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",-3.82503402892206 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",7.01804029875835 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",-0.803727933238812 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",0.937737825260698 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",8.54515890001736 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",6.86571354738553 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",4.05803476710826 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",8.14607487506828 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",1.93888271303531 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",-9.14184282273091 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",6.32622722281594 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",-0.435967368360766 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",-4.49330310674096 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",4.62035187634468 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",3.92189981714763 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",8.3013326951264 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",10.4952038013522 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",10.5868649872899 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",11.4934322028728 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",1.560810645871 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",-2.25560781752151 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",13.1335354816132 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",14.5641104338102 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",7.86523315691131 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-1.04423981663717 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",2.51824138172431 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",8.69559921505404 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",13.1701705259907 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",3.14410077238279 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",-4.37718055518531 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",-4.67203731546851 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",-2.67003918854468 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",1.99486334100599 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",7.50299893578199 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",-0.0209851658815006 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",8.20600071353534 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",7.10407664325245 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",2.41481482510271 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",-2.91604082704604 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",2.46004422420056 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",8.76885074435091 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",-2.58993259087526 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",-0.767043441162629 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",4.46695795613801 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",11.1728997581495 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",7.32579853368895 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",10.6793706285657 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",4.28649506646715 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",2.90635676700707 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",-6.776724923397 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",-3.06811437438498 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",5.77389245062175 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",4.63267933347027 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",-3.53888298010716 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",9.10862404429742 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",5.06432460177011 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",1.56711953590871 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",-4.17696642519677 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",9.69092836410299 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",9.32328406097244 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",0.22593488739801 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",1.70401542364653 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",8.39542517005951 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",0.965902465583496 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",6.1727789499109 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",3.80995977201539 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",3.95347210652316 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",15.521844749369 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",6.14002415792692 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-4.12812456017063 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",9.64077805728925 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",9.25934540255495 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",0.431298471570723 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",6.23106890472455 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",9.22811381180091 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",-3.28843237439283 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",0.913668461908797 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",0.261368472006326 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",13.1377802947884 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",3.41296236041352 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",0.465326442372149 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",2.46994834638415 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-2.04756424761645 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",0.0626583209519711 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",12.8665722609988 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",-7.48579962093659 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-5.04026093882316 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",8.07523209828214 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",4.26758032743415 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-5.40310497071468 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",6.85631583326968 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",9.68556733209785 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",3.87487015062571 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-0.889236923991168 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",1.88489987814865 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",1.67510641649117 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",5.8169729296206 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",3.84650069342734 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",0.155215000737208 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",8.98223546112757 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",5.13217400311915 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",5.95651354012059 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",-2.01759867703179 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",10.96933432032 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",2.04122486704063 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-0.91885026257688 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",4.29669879132957 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",17.6839553202884 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",5.14595705202062 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",1.01304971952848 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",4.21884849348032 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",11.1123866454049 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",4.28297672350433 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",0.678548631323924 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",6.61106717849209 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",1.43733192057733 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",3.31385352912347 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",-2.04467029784711 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",7.6360304792332 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",15.1221403082532 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",8.02102787557529 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",7.97704461151326 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",11.1346288301187 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",5.39891583591343 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",6.47901133226041 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",2.33355091266067 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",3.91103723152692 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",7.79037623449915 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",9.63603081307302 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",6.8730988859861 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",5.17369151062095 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",10.1435246091114 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",8.32787537138929 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",17.2101986418314 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",9.17291400674097 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",7.6078174517521 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",12.6971893677421 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",2.83937170612967 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",4.34108903779159 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",7.0966555114115 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",1.60712842461183 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",19.4559328277074 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",18.8542219432323 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",15.6900066954257 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",2.08008439502454 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",7.57547229351925 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",15.3827150982957 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",5.49937155358261 -"inmcm4","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",7.9547719362614 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1850,"Simulated","PgC/yr","global",-2.86391126913609 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",-1.96574116784791 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",-0.573522940631612 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",-3.68781997092485 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",0.650331272114794 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",2.01322749544491 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",2.70864038061611 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",4.2577099106133 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",-1.39832354451387 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",-1.39734343350173 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",2.25787146461306 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",0.42247951145728 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-4.20892088743078 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",0.564360420183213 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",-2.31729729028469 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",-2.85167395737558 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",1.65215272446716 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",1.45022146288223 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",-3.01356694948702 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",0.0202157950462465 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-2.7766491887784 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",0.201469840463395 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",-0.0373566647242784 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",-1.10305775315008 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",-3.59334374158316 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",-2.73338920249913 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",-1.69307788233574 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",3.35048560621147 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",-2.44107988720821 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",-0.283004025088178 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",2.90006070499113 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",-1.80064914122406 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",-3.28529235166087 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",0.0382372524823133 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",6.27382716508757 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",6.10454012069605 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",5.29914092100782 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",1.15192144826553 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",2.29635386013666 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",1.16576172252421 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",3.01223365425442 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",-0.0358401684153606 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",1.93106533034744 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",-1.72183163042618 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",1.55969776630104 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-0.370687282923973 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",-0.341568794976615 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",0.242401004045585 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",-1.19988940460168 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",2.1357697301917 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",-0.0395240838680993 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-0.0292741002767833 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",1.97815385180808 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",4.63909961649094 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",-1.77113878046366 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",0.0846123273395757 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",0.989091886565619 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",-2.14079104299392 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",-1.44790778852527 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",-0.714067015043721 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",0.92919832572979 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",0.161321216002317 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",0.24288033506307 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",0.760565823688075 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",-1.58394422632734 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",0.06923732514138 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",2.50940777571725 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-0.565013890084158 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",1.28465313490892 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",0.816461174527451 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",4.17820029494434 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",-0.171114524058297 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",0.346306284188333 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",-3.19195559923175 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",2.66010118439526 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",0.383417277690261 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",0.101586270352717 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",1.39338288522808 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",4.02288291576632 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",-0.673475093846814 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",1.68883264715025 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",2.10107584873916 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",-1.06079983895446 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",3.46943184754409 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",0.213287958776185 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",2.46361289569265 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",-1.81763179788418 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",-2.5880955202032 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",2.43199113783569 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",2.76395740000271 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",3.27717083050858 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",1.64710234830086 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-0.120277793835822 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",3.04664272546349 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",-4.14190653428411 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-1.8979382430553 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-2.95087917677179 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",0.311516633052704 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-2.93334898134676 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-3.17688635220323 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-4.58813359451516 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",-0.214213214029197 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",0.604059125536766 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",-2.81954231711428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-0.690512043230416 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-1.61909955571262 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-1.46625368855237 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-2.43935620718536 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",1.15089801031949 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",-1.2510883008038 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",-4.17648558327507 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-1.31416641809245 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",4.22768212008971 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",3.7550465617007 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",1.87898643623415 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",4.18783632837516 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",3.89868446339216 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",0.89932008819957 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",2.70656293993155 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",1.77449919171812 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",4.64033362977043 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",1.52666146180482 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",3.43105917426325 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",3.12636253574656 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",5.57061306438364 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",2.1768646030922 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",-0.164285027625387 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",4.79081327257964 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",6.12819879831402 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",1.65218967033035 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",5.18518223714959 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",5.15946485989088 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",1.35165578763853 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",4.43375949577435 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",4.53167163677016 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",10.0893942948494 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",7.28107837239006 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",2.77129686463588 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",3.09478706746347 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",3.29340111067174 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",4.71017715662929 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",3.9047407965881 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",7.52589538922498 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",6.42731953123119 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",6.26307586527716 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",7.85081103745336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",5.42224775449973 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",6.13864233211313 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",4.50423096825132 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",5.27185562351741 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",5.66909497064696 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",6.79947553286741 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",2.03428191064422 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",8.43256161805186 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",8.44449261160703 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",5.93151516305174 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1850,"Simulated","PgC/yr","HL",0.0606219692184303 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",-0.550054407082422 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",-0.317656957321184 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",-0.19324928422573 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",-0.54219549267269 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",-0.057711716045106 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",-0.333521637758831 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",-0.0174621896130316 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",-0.224584819472031 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",0.335992242809035 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.177812337090884 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",-0.268384116853616 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",0.138429113336728 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",0.0694848850875808 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",-0.235659518617565 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",0.158712880607383 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",-0.484564833364012 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",0.0986926141883035 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",-0.173064721440052 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",-0.0664194622742857 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",0.0721113838023172 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",0.0114211419831744 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",0.166814476874261 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.421370380578745 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",-0.238141941303581 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.00531714406202389 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",-0.166394858477628 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.176114407166445 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",0.0915265203402349 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",0.085411382159272 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",0.0151749425684849 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.189306868438963 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",-0.169265037620299 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",0.0173188278904222 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",0.683322749141269 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",-0.279871505140572 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",0.295534663788572 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",-0.165463048584088 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.399220017731466 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",-0.506176684720806 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",0.0355246101660842 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",0.0987211961512358 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",-0.0130104589907044 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",-0.617401183980968 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.275552897853249 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",-0.234971802186106 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",0.0537477107205437 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",0.106955245665954 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-0.314834058440213 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",0.391898791659461 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",-0.232117624472189 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",0.243361468389518 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",0.178854354213139 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",0.18639579405657 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.0881518855872573 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",-0.0945101944634263 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",0.28206157739853 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",-0.203301140751853 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",0.286638156095254 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",0.353296686420866 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",0.0270519969876212 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",0.134873462724664 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",-0.234494174358416 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",-0.0561963812279595 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",0.357453541761693 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",0.190936876112829 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",-0.00143843757753428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",0.570274963121387 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",0.539747627630451 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",-0.0824855867539794 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",0.170776256673658 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",0.147162659622383 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",0.218000957993652 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.296031048225735 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",0.223464058604568 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",-0.0708528201659343 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.103392672115673 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",0.348385759984076 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.258260713094883 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.543275508936415 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.473115551121481 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",-0.123685621378364 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",-0.049087405143115 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.0592496899927015 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.207836284834854 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.185241606578599 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.333916848267024 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",0.370853126538729 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.0628859502924698 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",0.141955044927151 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.363526208370263 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",0.777550920973988 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",-0.365236503565203 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.208844714992168 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",-0.0557231024068695 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.144376032428306 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",0.536144051645943 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.409349930422424 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.24883262510998 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.19715325868153 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.144598463464215 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.6334616314278 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",0.344537914439161 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",-0.201717942966683 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.106772548514931 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.262670949820937 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.479459046163547 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",0.193972394282079 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.343383989359354 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",0.254443616727363 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",0.182726335043958 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.218752140766127 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.35375471796496 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.421068818517376 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.155478395143199 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.660443658487327 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.276067033040257 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",0.592061459892962 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.244158804083436 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.337849035384637 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.590253006890167 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",0.560336822184609 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",0.826794061856815 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",0.368540956527866 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",0.730788103591866 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.466269884304977 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.118348364983023 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",0.78717334346847 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.767473572952192 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.396174554185894 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.725326314971768 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.219118220218933 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.676000951138453 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",1.00954144269126 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.817851858009228 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",1.57540737806184 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.600495315890814 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.525555802737467 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",1.25320488277484 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.512271941381651 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.823744553006221 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.59263626250724 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",1.0685064598318 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.962934251716285 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.844925532000699 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.857537218671102 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.806438237620822 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.908184316069075 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",1.39408908079632 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.669771555564527 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",1.04546892150453 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",1.46879097103193 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.936723153376964 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",1.18018088787795 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",0.879565252952276 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",1.73039863587353 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1850,"Simulated","PgC/yr","LL",-2.89273804256183 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",-1.42591638100268 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",-0.267365440907114 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",-3.46832688433031 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",1.15667936199235 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",2.04777048335638 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",2.99712825673542 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",4.23183997214921 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",-1.17198496495171 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",-1.70122253062479 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",2.06721415884658 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",0.672118173307881 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-4.29794997008173 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",0.493021238813733 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",-2.07133533247923 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",-2.97339963048161 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",2.09401897541651 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",1.34243792230062 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",-2.81987704521028 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",0.0828359652010746 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-2.81721185934533 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",0.188662017257382 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",-0.194762248654545 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",-0.693533506902184 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-3.33233023910531 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",-2.71120662111262 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",-1.51884252084407 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",3.15055736406391 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",-2.50334648629518 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",-0.360971035239322 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",2.85683702542937 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",-1.96177477054208 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",-3.09249125395164 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",0.0214760031715768 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",5.56506567500827 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",6.30847791040237 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",4.96686302857567 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",1.29695274711024 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",1.89590095640742 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",1.63291134113467 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",2.94864617079626 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",-0.128856545789394 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",1.92414659532609 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",-1.1207365508475 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",1.28354572089638 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-0.144754709796132 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",-0.389004541341532 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",0.138826663057707 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",-0.890166306478054 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",1.74383956153624 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",0.180412210193249 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-0.259160123110445 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",1.7892957407862 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",4.41661814439675 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",-1.67013017338815 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",0.173160064526566 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",0.712464451815475 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",-1.9271918823918 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",-1.70460362715878 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",-1.0411153621158 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",0.894361356876828 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",0.0321485109368793 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",0.46225329986146 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",0.806146162960493 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",-1.90626414853511 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-0.112045089770583 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",2.48578683361204 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-1.09876954594697 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",0.761356839859212 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",0.886349886741851 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",3.97508077699533 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",-0.308601561829659 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",0.13666813247158 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",-3.44017189421458 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",2.42226127363375 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",0.446614872406855 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",0.00278344347376961 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",1.04999945400501 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",3.73856483503945 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",-1.18061412697335 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",1.22453523993497 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",2.19714384634461 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-1.00381105647588 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",3.37885253659791 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",0.01458822175213 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",2.26388103979123 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",-1.48370962946073 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",-2.91309292497262 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",2.34830103800769 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",2.6021768808839 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",2.90071373691685 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",0.895277502171964 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",0.226369924176341 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",2.81878159741258 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",-4.04796855131102 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-2.0155980267901 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-3.42860128268243 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-0.0787582944778828 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-3.13949913632504 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-3.33173261238309 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-4.67922244354523 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",-0.811224359338354 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",0.272172827799716 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",-2.60068388954658 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-0.784625868056436 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-1.85142198271016 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-1.90514236932439 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-2.59853558688283 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",0.814659503638068 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",-1.47929222051796 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",-4.30773532629749 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-1.50798488109941 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",3.85100474236691 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",3.31940686412428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",1.71322545843777 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",3.52148128713151 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",3.59876032992744 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",0.330380416855295 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",2.44868708641947 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",1.43728748220367 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",4.03586207127114 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",0.981482228944855 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",2.61489984565221 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",2.74666379909033 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",4.82395832167314 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",1.71418348114895 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",-0.274586924755029 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",3.99859110514642 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",5.34129497537693 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",1.26102987602435 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",4.44753096428368 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",4.90085364179364 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",0.698821083775768 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",3.43477027820143 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",3.7130127853212 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",8.49889121317268 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",6.64063025993697 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",2.24662372537119 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",1.87866468165773 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",2.77609501882386 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",3.88416786978713 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",3.30533743507814 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",6.44035261512003 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",5.45256621088393 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",5.40157327974525 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",6.96157366254192 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",4.60551865222161 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",5.21854739642054 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",3.14082551787976 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",4.58588586990928 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",4.62382737950234 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",5.3425653667386 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",4.26150775099706 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",7.23236890333009 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",7.52851093304257 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",4.23581086424082 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1850,"Simulated","PgC/yr","global",5.89303786794054 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",4.19965470534426 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",0.957031791850874 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",-11.359184770681 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",-15.7196135641043 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",-6.25454354281559 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",-4.53677157364457 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",3.61704465200335 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",1.32063393265643 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",0.130113511074997 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",-6.92010995690029 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",1.502573400369 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",7.39379706534092 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",4.95829230505724 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",2.03091176490365 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",6.57103993570738 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",13.0871326815032 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",4.59416504255909 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",-1.95886474701113 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",-10.1455135430506 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-16.3594305193878 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",-6.63644613440001 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",2.44622753616298 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",0.464953844150144 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",-2.17748746308285 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",1.69788489496259 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",-8.1632314243876 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",-0.83075490188718 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",5.51346093016166 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",-9.29124750352478 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-4.98030399107557 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",-1.44338760185498 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",9.26682653023073 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",3.33042631633519 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",14.8339560232117 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",8.20983617564824 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",6.07519156600367 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",15.1528568783714 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",9.68089584111712 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",-1.01106769860465 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",7.75459668072729 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",1.59392125401068 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",6.43067402268943 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",-2.64756546561779 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",-6.64826418707155 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",6.44976979560303 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",-6.09507381520421 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-0.310005631437439 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",7.56927456081292 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",1.91606853531584 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",-13.3564260221553 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-19.7786884477472 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",-11.7920893040546 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",-10.7543780726857 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",-0.954130997104224 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",-8.20314067302554 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",1.12058202863931 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",0.2660919479136 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",-6.66893130422306 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",-9.44934371222197 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",-7.87398024274457 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",3.60224474445252 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",4.66596116004105 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",-5.54593323329698 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",-4.87077631185241 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",-7.63560555268549 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",-10.5083412700889 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-5.65526147886048 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",-13.4501952255924 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",11.9586823516554 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",5.43559334441145 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",8.39681488160666 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",6.08360155476517 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",6.81967580922379 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",-0.356915805697853 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",9.43085106529528 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",16.093669084515 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",12.6934345539507 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",2.84462843807738 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",5.9504940619577 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",3.28865139797774 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",-2.25829669531322 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",-8.1214355976626 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",-5.49173391960915 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",-3.98121694790853 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",2.79475876480759 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",-0.302050480086872 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-19.5727410274165 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",-14.6622822422972 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",-19.7739116899309 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",-10.016927082641 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-7.8178058924916 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",-7.14930587360656 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",-15.9837248462769 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-1.2293341682601 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-3.95074058970589 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-4.38720115389836 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-4.70345468805942 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",-1.37641777893708 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-9.75269035026312 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",-1.30404105217171 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",2.10198573953729 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",-1.57830173845204 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-4.20608000752483 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-11.0077907040185 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-3.87234868643106 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-5.76278838814306 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",3.49764339829045 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",3.32123145962272 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",2.72088306892274 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",4.03579422054816 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",7.79348463602739 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",-5.09396991873694 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",4.22154737450118 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",1.24460435324713 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",-10.2862477650045 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",-2.96146922093384 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",-8.61843392758136 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",4.12512441672163 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",-0.329944172396758 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",-2.36702181488981 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",3.67813407696566 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",-3.14912664466953 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",-9.14908025422592 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",-11.1436999180771 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",-6.8326566887981 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",-8.21489921726637 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",0.240795718187348 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",0.606729785308697 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",-3.05958575648464 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",-5.03059183169629 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",-9.43734874259427 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",3.29265454619486 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",-2.89237349953727 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",-1.02038269801371 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",4.28465365276372 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",5.90694514903075 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",0.518341269842796 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",10.4013338533231 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",7.6135134498689 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",1.55036815941022 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",0.00877113738578757 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",6.43443913718372 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",8.36681459084969 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",10.7932451196183 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",2.30393483665884 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",-1.92179260301562 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",-11.7987124315589 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",11.0474233188704 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",-0.629863607329875 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",2.15109145322366 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",-11.4531228493944 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",10.1149149513146 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",4.66847016414661 -"MIROC-ESM","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",10.6894286414072 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1850,"Simulated","PgC/yr","HL",0.387085754881657 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",-0.274903661453729 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",0.220142447391873 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",-1.74660364984283 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",-0.563879602586834 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",-1.1814169942733 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",-0.210051053842579 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",-0.212155811955948 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",-0.219544814430837 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",-0.54503331536067 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",-0.938049562713018 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",-0.676431448941429 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",-0.476048420158105 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",-0.500812421016022 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",-0.371644750431665 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",-0.125767249322998 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",-0.0901501805549041 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",0.0788602430335497 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",-0.969428557327357 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",-0.495279461556647 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",0.147862306328427 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",-0.266439347462278 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",-1.10805534673442 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.737687924594873 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",-0.468764204162509 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.0474802205560789 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",-0.772129395740827 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",-0.430364904356732 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",-0.0406274848352379 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",0.346437379422763 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",-0.438414739485231 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",-0.746917302117534 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",-0.261650171989273 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",-0.0986152168285554 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",-0.0313384634708372 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",0.236219115738784 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",-0.292226211036941 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",-0.0448389178878156 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.0537219333150833 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",-0.514019351058608 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",-0.0711055157442674 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",-0.0879789169188878 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",-0.567725755306373 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",0.198554321371104 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.467429371095165 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",-0.303011551100746 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",-0.0175804598890856 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",-0.968902124723274 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-0.389067863921303 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",0.451319700007692 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",-0.570364585547103 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",-0.508636126255486 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",0.0471918354973462 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",0.578700833348325 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.0572929242961822 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",0.523753492719327 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",0.249798937857602 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",0.534136854958272 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",0.118856203204481 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",0.316182367033289 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",-0.156765490097149 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",-0.0238353987463911 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",0.373507682908171 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",0.803698961735852 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",0.020751012062015 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",0.141962038589833 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",-0.734369871284496 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",0.178299639413447 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",-0.221942346856313 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",-0.510106248335067 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.363684367175732 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",-0.550577109053059 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",-0.417998877476446 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",-0.117226067837326 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",-0.16660997425409 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",-0.0320878868143909 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",-0.34938040159039 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",-0.187063283816982 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",-0.495922014914559 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",-0.714888253522428 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.290379391009531 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",0.128294542523865 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",-0.560422926654063 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",-0.289713224579668 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.456764596598733 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",-0.13133723963521 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.295908461257056 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",-0.53821997179986 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",-0.926015507844278 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",-0.165580083175929 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",-0.266917331598735 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",-0.238038211241715 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",0.277464874137952 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",-0.326583230725564 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",0.178761205519876 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.045473165000418 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",-0.484113812134008 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.14039849208558 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.324655292850981 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",1.08705221373617 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.341223890936842 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.769136647221679 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",-0.0311253346614165 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",-0.145904227062001 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.435837303231574 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.28710745263967 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.300824147235549 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",-0.0121042718106969 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",-0.152112742619851 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",-0.24065890108717 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",0.598143558991886 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.453309031869347 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.476214822865148 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",-0.187892630464068 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.498345271698419 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.257455434767569 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.281131400830155 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",0.41103357685261 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.276627304585809 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.078818378445985 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.735277724450798 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",1.33153584909761 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",0.499910957269189 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",-0.0550189576872217 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",1.17494062313927 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.194876849325549 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.811699070512831 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",0.83554938438667 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.552898968527953 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.274682254179083 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",1.00878765905773 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.97483539520243 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.211504091170102 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.828092654065409 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",-0.182874519313477 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",1.06999385275796 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",1.0137527935869 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",1.10442143386159 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.948825735348889 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.723856498249397 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.560568494297619 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.749764482993125 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.532130577244982 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.895968846089665 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.701083218257368 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.32273346659502 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.53723933481178 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.902337986096951 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",0.523318734394583 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",1.12222791251937 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",-0.350528830289746 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",0.711459079873458 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.534064904539034 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",0.874484839826157 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",0.482103089607174 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",1.34692657159439 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1850,"Simulated","PgC/yr","LL",5.36182501491259 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",4.24600633159821 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",0.74941911563414 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",-9.56336087124129 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",-14.664186786751 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",-5.09622492506955 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",-4.1956681964556 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",3.63797706255787 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",1.43789599733733 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",0.54547961563259 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",-5.92328688533649 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",1.96515114039672 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",7.46927688624531 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",5.14899527840898 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",2.23749039061555 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",6.40874326764455 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",12.6401967223388 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",4.3520127255686 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",-1.1336294925192 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",-9.36300224040447 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-15.8278728014927 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",-6.16897551712944 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",3.20456722248471 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",1.01574115383255 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-1.7298925733986 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",1.5942458485908 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",-7.24535713952803 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",-0.465936234636358 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",5.32721513540715 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",-9.19184619435105 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-4.445512089424 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",-0.810166426170216 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",9.10297576217331 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",3.27507227842018 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",14.2727034388006 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",7.70358545116874 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",6.06088816623353 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",14.5894373237872 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",9.25738835429408 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",-0.574592123188447 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",7.50341708685388 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",1.59889340776012 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",6.61489371785271 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",-2.69626555219001 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",-6.74651690446181 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",6.42900465643084 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",-5.8409666775477 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",0.449750674078928 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",7.57072220582908 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",1.49225101800303 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",-12.3892671127137 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-18.6056974953837 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",-11.3631198437184 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",-10.7764296969104 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",-0.872273543597518 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",-8.2834845467313 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",0.883634450761334 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",-0.156503661113181 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",-6.49743806918662 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",-9.32036125092306 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",-7.44228432029394 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",3.47846985146792 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",4.19365110521578 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",-5.94712741359185 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",-4.69455899185634 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-7.4437891555131 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",-9.52704923731914 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-5.56963597294878 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",-12.5258239235426 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",11.7673177852624 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",5.64585301614847 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",8.38792357033196 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",5.93395112431219 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",6.67907740143963 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-0.31807373385103 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",9.3282114081229 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",15.6028527022324 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",12.5750949695201 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",3.28391102321315 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",5.49162403787407 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",3.05988350315127 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-1.73679805066422 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",-7.57740282265965 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",-5.6274011551235 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",-3.72276807406192 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",2.91275958241028 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",0.125114328556997 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-18.0858574245403 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",-13.9558764163557 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",-18.7875949514497 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",-9.4379566057766 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-7.72334123660995 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",-6.61519175771928 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",-15.4908349505961 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-1.21590126882967 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-3.42132203758824 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-4.32237904740678 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-4.76830656187588 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",-2.16077306621126 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-9.63105716754137 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",-1.84597644035738 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",2.04304332731075 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",-1.40344578204612 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-4.37634022967738 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-10.7948722441896 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-3.95161612285855 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-5.52601970122542 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",3.47696501624877 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",3.37582971134763 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",2.15202612834148 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",3.52678557323023 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",7.11850658238941 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",-4.74797332419318 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",3.67046207747888 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",0.99685500614486 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",-10.0971941799271 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",-3.16171334738432 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",-8.49172659814592 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",3.90151615350217 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",-0.88420019429377 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-3.30090461774812 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",3.14728768562829 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",-2.98239712944842 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",-9.69449175985651 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",-10.854260679209 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",-7.1892418209004 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",-8.53533355612344 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",-0.195276785004776 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",0.37086364605671 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",-3.71713192729946 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",-5.58415743323335 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",-9.2280793267012 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",2.52382287867688 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",-2.63713524098359 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",-1.80562796288535 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",3.33343220979293 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",4.82174883545021 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",-0.2341478362811 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",9.43237634148912 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",6.88055767338144 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",0.910728270435228 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",-0.402121375384312 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",5.48924903268734 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",7.49571994119269 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",10.118292475303 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",1.79852157481682 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",-2.54211507548761 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",-11.7368205898086 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",9.74561890232446 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",-0.334567978555979 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",1.51729701107587 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",-11.4131612695296 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",9.04104866614756 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",4.11227823843145 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",9.22839333298919 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",0.435949220259461 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",-1.4198837108321 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",-1.82780413354457 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",-0.311714329755998 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",-1.71734091323211 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",-1.4722001651895 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",-0.809059726238779 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",-1.28345319695751 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",-1.08347765919 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",-0.13000711774647 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",-1.28105277373918 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-0.565442425780491 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",-1.37098347226983 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",-0.202818631005067 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",-1.19118995556759 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",0.242956029946289 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",1.16241286553172 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",1.14903641345016 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",0.261729453134277 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-1.25384770917491 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",-0.429749588035322 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",-1.54254898867293 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",-0.452962258022173 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",-0.919427560169911 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",-1.65022461035417 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",0.348499211058917 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",-0.633705456335409 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",0.904702830435339 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",0.273052765635399 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-0.910625633043533 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",0.847014659038724 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",1.08736324675697 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",1.30289271627544 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",2.39276174557581 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",4.4609266917374 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",4.23333446419515 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",2.80953428184125 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",1.70499376545761 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",1.23240459328742 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",1.46565212334995 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",-0.212743318572639 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",-0.284778052111097 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",2.98100135563833 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",1.34292572101518 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-2.27257007949209 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",1.05129207434769 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",1.650710389227 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",0.175592012013983 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",1.26771428318544 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",-0.675590854949189 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",-2.1188371516322 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",2.03624670055328 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",2.23413564112264 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",0.758232940140094 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",1.62527294851492 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",0.903809286846395 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",1.24222166957489 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",0.264605682281696 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",-1.35549758173186 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",1.95537577800105 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",2.3656482068985 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",3.1309252624026 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",-0.471198268225343 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",1.4602059309405 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",1.86403969867174 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",0.634163729185977 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",0.420894257403718 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",-0.0520740796535705 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",1.8452455253266 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",0.662072207992278 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",0.876277849655302 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",0.399282888303986 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",0.779845917779141 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",1.70340613715466 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",0.328612356957757 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",1.4514889346899 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",1.85594392030422 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",-0.581784059233526 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",1.30512697738263 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",1.82051584191269 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",1.20961802536486 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",1.81473957723601 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",2.50682165979443 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",0.990732338567662 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",0.839750978058354 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",1.90891151137595 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",1.36456829577761 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",2.13958248316526 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",0.516996277866572 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",0.715389656364808 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",0.938496311175955 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",1.60518647468488 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",1.34532743106496 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",-0.25436057368277 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-0.564406204754392 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-0.572111268922532 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-0.465932393072999 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-0.0115924227368983 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",1.67681859083304 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",2.55750995065818 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",3.24312409663489 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",0.871110577962909 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",0.574021570211875 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",0.238382309260774 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-1.33427274462928 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",-2.22417074007221 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-1.28688517643793 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",-1.1028883856542 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",0.954575752720803 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",-0.067686353125445 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",1.03256787246271 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",-1.15020308701463 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",-0.116107520423817 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",1.6066796817301 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",3.60869843507404 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",2.2493443803368 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",1.72892722191108 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",0.555405623022731 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",1.37317269427622 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",1.73156200930746 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",0.0214843266647106 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",1.82162090842143 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",0.330797557615868 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",0.222943388070772 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",3.57628797643563 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",2.43273877314742 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",3.33778824380493 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",-0.0476353154165018 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",0.139796897121774 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",0.862421731150307 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",-0.938682740882451 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",1.78114201658384 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",3.75429376254425 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",2.50217941533414 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",2.33453905656514 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",3.9768753901233 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",2.80864475960059 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",2.24858354124126 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",2.81432612045775 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",3.13804787448513 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",4.87751102890311 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",4.01974617992085 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",4.40177748408185 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",3.78165501627592 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",1.55163852262865 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",2.8823142516439 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",3.80346520083487 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",4.81557904823428 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",4.94451955964701 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",5.50366551913666 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",3.39951111436293 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",1.56568460962664 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",4.41377718736453 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",6.78006076729207 -"MRI-ESM1","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",5.33841544978831 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",0.113455714350969 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",-0.206630043179334 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",0.0296866951644062 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",0.144757158085126 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",0.232140171686575 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",0.213301846667868 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",-0.01624781837169 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",-0.139879344690501 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",-0.217853811453732 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.105387366829581 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",0.0959632464518407 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",0.0850076696932533 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",0.0925043458256757 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",-0.0104606269247158 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",0.0934481198190597 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",0.18171200081324 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",0.0612601508894247 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",0.0801419884942118 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",0.137454742901683 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",-0.124801183712305 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",0.226634108875509 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",-0.383939952651659 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.121434557766004 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",0.114503807728004 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",-0.149384278322952 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",0.113571670143364 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.00965738516896108 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",-0.113027092046938 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",-0.20237802943089 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",-0.280283115200632 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.168235260488012 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",0.219395066915626 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",-0.114218147017112 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",-0.501819397980856 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",-0.169963456752032 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",0.166083633099802 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",0.0147925585951669 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",0.20017702750633 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",0.1466114883537 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",0.362742732182228 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",0.136029064101072 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",-0.232143525538719 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",-0.163075052742845 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",0.382329228704482 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",0.259776846600775 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",0.250394080678169 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",0.274880875986379 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",0.124436080451492 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",0.134006195471267 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",0.413555633642403 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",-0.0602188818724049 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",-0.188817384474193 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",-0.208595458863711 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.518059624981128 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",-0.389919433565831 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",-0.0238416016474569 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",-0.454261191297161 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",0.0382647407199208 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",-0.0870563192386706 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",0.518439339371717 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",0.364212011060714 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",0.322399098919729 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",0.0904794065567215 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",0.570168571565556 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",-0.285120536549867 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",0.193072168796147 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",-0.320915821354032 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",0.309075848366979 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",-0.116950544940975 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.0271379629331402 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",0.635300671845656 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",0.0817162575267777 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.105178290603304 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",0.724542886092271 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.519512280418551 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.191698518449669 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",0.281312543661387 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.579662014608922 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.168663882792044 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",0.24434349809854 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",0.204366047162326 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",0.701242654508755 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.479570526134724 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.172409260719189 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.291150033606886 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",0.573461762731865 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",0.29696931704429 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",0.41612060143444 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",0.335009291342685 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.669175453420244 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",0.830363628946749 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",0.285904754672982 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.239511967863506 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",0.439182563696058 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.585387186038766 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",0.202926719641684 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",0.623098482827027 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",0.231662699796965 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.829867258829405 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.495240889909795 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.511049199081754 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",0.115131386374017 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",0.00017504958811071 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",0.411570736451657 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.358779645505026 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",0.181579713219099 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",-0.0409186293396774 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.226377378784852 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",-0.194308107057191 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",-0.112885967781495 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.420219592033312 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",-0.243635427001065 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.115231360331847 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.523875496238525 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.53686452813412 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.45107036553108 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",0.395585693853664 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.641237865058878 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.571026282796526 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.128184899722576 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",0.301905895761267 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",0.763087396408884 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",0.491850291211645 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",0.398622825699744 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.925179945457061 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.637309191821069 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",0.875640049615107 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.573763609424845 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.653549127182023 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.400286628002595 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",0.173150928665969 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.258871802308673 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.575185059455361 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.355834671683082 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",0.813741646080671 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.657829517436001 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.529112463451898 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.408075439238745 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.632071058050429 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",1.27969699070644 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.851467816474093 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.852349442129048 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",0.730036204265189 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",0.286666487404763 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.896829687462298 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.48207658278475 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.770507867187803 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",1.1142015941088 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.902457451360302 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",1.39583709914971 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",1.14979004830943 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",0.625518797517887 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",1.05855302113529 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",1.08597994905279 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",0.785125704668222 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",0.322493533260163 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",-1.21325364624714 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",-1.85749139666909 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",-0.45647151502942 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",-1.94948081216947 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",-1.68550162324233 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",-0.792811988379534 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",-1.14357396528835 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",-0.865623915981526 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",-0.235394557589175 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",-1.37701648201176 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-0.650450094468471 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",-1.46348808652411 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",-0.192358133992567 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",-1.28463805425223 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",0.0612440014780956 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",1.10115266568041 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",1.06889441011041 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",0.124274680689314 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-1.12904645127988 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",-0.656383782475594 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",-1.15860914424572 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",-0.331527730620558 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",-1.03393137363629 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",-1.50084063804305 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",0.234927453160188 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",-0.643362802063851 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",1.01772994804144 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",0.475430792598277 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-0.630342480102106 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",0.678779378896994 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",0.867968129666439 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",1.41711081932476 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",2.89458175001852 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",4.63089069205059 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",4.06725090877374 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",2.79474097673519 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",1.50481635913443 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",1.08579300256374 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",1.1029094102766 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",-0.348772404393136 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",-0.0526345833807787 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",3.1440763558771 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",0.960596505045428 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-2.5323460185046 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",0.800897886051987 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",1.37582995511434 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",0.0511559944019874 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",1.13370814557976 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",-1.08914635671646 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",-2.05861758253263 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",2.22506320697143 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",2.44273229059907 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",1.27629246390034 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",2.01519148822687 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",0.927650959366923 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",1.69648325231849 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",0.226340870108822 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",-1.26844123780738 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",1.43693543188173 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",2.00143646775672 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",2.80852628590527 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",-0.561677733971114 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",0.890037266578547 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",2.14916104183615 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",0.441091571652796 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",0.741810163460212 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",-0.361149947466275 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",1.96219548164188 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",0.689210148704358 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",0.24097716005706 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",0.317566615300855 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",0.674667622035917 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",0.978864015045786 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-0.190899930625732 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",1.25979039003615 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",1.57463049558292 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",-1.16144627359957 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",1.13646323206378 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",1.57617258547958 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",1.00525192549852 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",1.11349649611362 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",2.0272503415007 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",0.818323106814173 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",0.548600916999492 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",1.33544985050197 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",1.06759897558322 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",1.72346126565995 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",0.181987151445073 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",0.0462142218107114 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",0.108132541932344 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",1.31928226923705 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",1.10581541350029 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",-0.693543144764955 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-1.14979342059486 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-0.775038052498105 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-1.08903073289672 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-0.243255133672117 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",0.846951590922047 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",2.06226802932471 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",2.73207497347118 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",0.755979217289464 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",0.573846416704707 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-0.173188547494167 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-1.69305272782594 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",-2.40574978797933 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-1.24596649569615 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",-1.32926568811539 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",1.14888383776683 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",0.0451996162079132 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",0.612348358541155 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",-0.906567653792675 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",-0.231338900667976 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",1.08280416633023 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",3.07183385583387 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",1.7982730375976 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",1.33334149360654 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",-0.0858324470987367 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",0.802146570629277 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",1.60337710562054 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-0.280421738911462 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",1.0585327775529 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",-0.161052918950502 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",-0.175679463838761 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",2.65110669404688 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",1.79542985050377 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",2.46214866415694 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",-0.621399017151514 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",-0.513752319135116 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",0.46213497515713 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",-1.11183364648723 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",1.52227055169655 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",3.17910852960108 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",2.14634419274226 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",1.52079694059975 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",3.3190462739974 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",2.27953282465323 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",1.84050865430595 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",2.18225473876433 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",1.85835001546723 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",4.02604247406316 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",3.1673960210265 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",3.67174238193202 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",3.49498806431559 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",0.654808638389013 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",2.40023856149129 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",3.03295765101824 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",3.70137658256771 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",4.0420612456284 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",4.10782854838568 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",2.24972084251792 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",0.940165855109764 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",3.35522415071889 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",5.69408068644339 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",4.55328972591899 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1850,"Simulated","PgC/yr","global",-0.0638769565172548 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1851,"Simulated","PgC/yr","global",-0.933494619225661 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1852,"Simulated","PgC/yr","global",0.998276264738918 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1853,"Simulated","PgC/yr","global",0.00903555219077912 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1854,"Simulated","PgC/yr","global",-2.451155572884 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1855,"Simulated","PgC/yr","global",-1.32515003963736 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1856,"Simulated","PgC/yr","global",1.67660158232224 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1857,"Simulated","PgC/yr","global",0.259333937111945 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1858,"Simulated","PgC/yr","global",-1.08269454693721 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1859,"Simulated","PgC/yr","global",-1.59314269932595 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1860,"Simulated","PgC/yr","global",-0.81397960314114 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1861,"Simulated","PgC/yr","global",0.611453552379979 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1862,"Simulated","PgC/yr","global",-0.744992945028887 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1863,"Simulated","PgC/yr","global",-0.926704183425018 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1864,"Simulated","PgC/yr","global",1.81018070864031 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1865,"Simulated","PgC/yr","global",0.0986701862997894 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1866,"Simulated","PgC/yr","global",-1.63903637413105 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1867,"Simulated","PgC/yr","global",1.03543384087479 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1868,"Simulated","PgC/yr","global",1.03825412706016 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1869,"Simulated","PgC/yr","global",-1.23781961730595 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1870,"Simulated","PgC/yr","global",-1.39922405518814 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1871,"Simulated","PgC/yr","global",-0.125017485803532 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1872,"Simulated","PgC/yr","global",0.0327764967316129 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1873,"Simulated","PgC/yr","global",-0.377845476968748 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1874,"Simulated","PgC/yr","global",0.4303741919291 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1875,"Simulated","PgC/yr","global",-1.84161213219493 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1876,"Simulated","PgC/yr","global",0.396925198825257 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1877,"Simulated","PgC/yr","global",-1.25273019947125 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1878,"Simulated","PgC/yr","global",-0.380230140578829 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1879,"Simulated","PgC/yr","global",-0.665449356663317 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1880,"Simulated","PgC/yr","global",-0.751693296397418 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1881,"Simulated","PgC/yr","global",-1.37948173016043 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1882,"Simulated","PgC/yr","global",-0.975396105902636 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1883,"Simulated","PgC/yr","global",-0.853717615661883 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1884,"Simulated","PgC/yr","global",0.407822197809801 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1885,"Simulated","PgC/yr","global",-0.951607059492355 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1886,"Simulated","PgC/yr","global",0.369907751579121 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1887,"Simulated","PgC/yr","global",-0.642743897279311 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1888,"Simulated","PgC/yr","global",-0.583235890940993 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1889,"Simulated","PgC/yr","global",-1.88584037106134 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1890,"Simulated","PgC/yr","global",1.02975964770706 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1891,"Simulated","PgC/yr","global",-0.300976431046594 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1892,"Simulated","PgC/yr","global",-1.90120620133893 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1893,"Simulated","PgC/yr","global",1.25649218970232 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1894,"Simulated","PgC/yr","global",-1.57424185941321 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1895,"Simulated","PgC/yr","global",-2.33667434617391 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1896,"Simulated","PgC/yr","global",0.682443141321234 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1897,"Simulated","PgC/yr","global",-0.824370520655278 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1898,"Simulated","PgC/yr","global",0.779865915620348 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1899,"Simulated","PgC/yr","global",-1.00967918432881 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1900,"Simulated","PgC/yr","global",-0.308899839446118 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1901,"Simulated","PgC/yr","global",0.0371325133599387 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1902,"Simulated","PgC/yr","global",0.367608668179547 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1903,"Simulated","PgC/yr","global",-0.728324751247036 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1904,"Simulated","PgC/yr","global",0.592972570266908 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1905,"Simulated","PgC/yr","global",-2.47629395539529 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1906,"Simulated","PgC/yr","global",-0.146293884364109 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1907,"Simulated","PgC/yr","global",-1.46832315797548 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1908,"Simulated","PgC/yr","global",0.65296992810967 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1909,"Simulated","PgC/yr","global",0.264288259148054 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1910,"Simulated","PgC/yr","global",-2.51251594035764 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1911,"Simulated","PgC/yr","global",0.148565282887313 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1912,"Simulated","PgC/yr","global",-0.570650452314556 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1913,"Simulated","PgC/yr","global",0.609788277306345 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1914,"Simulated","PgC/yr","global",-3.54479023064112 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1915,"Simulated","PgC/yr","global",-1.27911448185167 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1916,"Simulated","PgC/yr","global",2.24998255812017 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1917,"Simulated","PgC/yr","global",-0.951862352338361 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1918,"Simulated","PgC/yr","global",-2.47645964640435 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1919,"Simulated","PgC/yr","global",1.56572453722197 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1920,"Simulated","PgC/yr","global",-1.77433675656271 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1921,"Simulated","PgC/yr","global",-1.63659122525941 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1922,"Simulated","PgC/yr","global",0.342250704864981 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1923,"Simulated","PgC/yr","global",1.33971138376316 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1924,"Simulated","PgC/yr","global",-1.42171508145071 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1925,"Simulated","PgC/yr","global",-1.39257984572462 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1926,"Simulated","PgC/yr","global",1.03010068162863 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1927,"Simulated","PgC/yr","global",-0.100050858913969 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1928,"Simulated","PgC/yr","global",-0.244974478633108 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1929,"Simulated","PgC/yr","global",-0.381616153912913 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1930,"Simulated","PgC/yr","global",-0.297996566724337 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1931,"Simulated","PgC/yr","global",-1.52061652735693 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1932,"Simulated","PgC/yr","global",-1.27207953116387 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1933,"Simulated","PgC/yr","global",1.60457682673697 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1934,"Simulated","PgC/yr","global",-3.12678881373265 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1935,"Simulated","PgC/yr","global",-0.593937921476035 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1936,"Simulated","PgC/yr","global",-0.623223566030735 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1937,"Simulated","PgC/yr","global",0.701817085367626 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1938,"Simulated","PgC/yr","global",-2.61779407713702 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1939,"Simulated","PgC/yr","global",-1.85770989848344 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1940,"Simulated","PgC/yr","global",0.72251237499505 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1941,"Simulated","PgC/yr","global",-1.61354730579475 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1942,"Simulated","PgC/yr","global",-1.98647433363518 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1943,"Simulated","PgC/yr","global",2.09239593064394 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1944,"Simulated","PgC/yr","global",-1.63940153781122 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1945,"Simulated","PgC/yr","global",-2.10499970788691 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1946,"Simulated","PgC/yr","global",-0.242149044765902 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1947,"Simulated","PgC/yr","global",-0.243935451227717 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1948,"Simulated","PgC/yr","global",-0.522315489399186 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1949,"Simulated","PgC/yr","global",0.272997493352708 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1950,"Simulated","PgC/yr","global",-1.28150815390497 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1951,"Simulated","PgC/yr","global",-0.51550156730017 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1952,"Simulated","PgC/yr","global",0.0936584354382085 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1953,"Simulated","PgC/yr","global",-2.0629704943544 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1954,"Simulated","PgC/yr","global",-2.60426532581432 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1955,"Simulated","PgC/yr","global",-0.109675688765513 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1956,"Simulated","PgC/yr","global",0.654194111196065 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1957,"Simulated","PgC/yr","global",-2.38304530760416 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1958,"Simulated","PgC/yr","global",-3.67766959395974 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1959,"Simulated","PgC/yr","global",-1.31818683476512 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1960,"Simulated","PgC/yr","global",-1.29168737300364 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1961,"Simulated","PgC/yr","global",-1.84345403710153 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1962,"Simulated","PgC/yr","global",1.25655010112296 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1963,"Simulated","PgC/yr","global",-0.589228918652378 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1964,"Simulated","PgC/yr","global",-2.99138386901371 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1965,"Simulated","PgC/yr","global",0.109689764458031 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1966,"Simulated","PgC/yr","global",-0.559743157966341 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1967,"Simulated","PgC/yr","global",-2.24651913343553 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1968,"Simulated","PgC/yr","global",-0.42112975967866 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1969,"Simulated","PgC/yr","global",0.807782598537042 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1970,"Simulated","PgC/yr","global",-1.00813745361922 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1971,"Simulated","PgC/yr","global",-2.04502599720758 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1972,"Simulated","PgC/yr","global",-1.23977091045154 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1973,"Simulated","PgC/yr","global",0.505261862939936 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1974,"Simulated","PgC/yr","global",0.396748890722407 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1975,"Simulated","PgC/yr","global",-1.38444441717952 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1976,"Simulated","PgC/yr","global",-1.03076408912513 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1977,"Simulated","PgC/yr","global",1.52670382199192 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1978,"Simulated","PgC/yr","global",-1.01638757895021 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1979,"Simulated","PgC/yr","global",-1.54456306065836 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1980,"Simulated","PgC/yr","global",1.49325901137957 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1981,"Simulated","PgC/yr","global",-1.96764990462467 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1982,"Simulated","PgC/yr","global",-1.00796709752349 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1983,"Simulated","PgC/yr","global",0.449397128420366 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1984,"Simulated","PgC/yr","global",-1.98711940251513 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1985,"Simulated","PgC/yr","global",-0.202919044096255 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1986,"Simulated","PgC/yr","global",0.713966579688658 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1987,"Simulated","PgC/yr","global",-2.09322599433984 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1988,"Simulated","PgC/yr","global",-2.78704824722248 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1989,"Simulated","PgC/yr","global",0.926633081069671 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1990,"Simulated","PgC/yr","global",-2.00915308941966 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1991,"Simulated","PgC/yr","global",0.720406007934175 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1992,"Simulated","PgC/yr","global",0.222764001030553 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1993,"Simulated","PgC/yr","global",0.599613079834107 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1994,"Simulated","PgC/yr","global",1.04626794162191 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1995,"Simulated","PgC/yr","global",-1.36579034426475 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1996,"Simulated","PgC/yr","global",0.754408376835285 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1997,"Simulated","PgC/yr","global",0.798561974315089 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1998,"Simulated","PgC/yr","global",2.49423845254211 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",1999,"Simulated","PgC/yr","global",-1.59989517097306 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2000,"Simulated","PgC/yr","global",-0.456778582441695 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2001,"Simulated","PgC/yr","global",1.58300208784104 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2002,"Simulated","PgC/yr","global",-0.768624665413085 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2003,"Simulated","PgC/yr","global",-1.68149992331839 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2004,"Simulated","PgC/yr","global",-0.122065000714035 -"NorESM1-ME","nbp","carbon_cycle","nbp","historical",2005,"Simulated","PgC/yr","global",2.30985492381337 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1850,"Simulated","PgC/yr","HL",0.0137776392796165 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1851,"Simulated","PgC/yr","HL",-0.0108913935002181 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1852,"Simulated","PgC/yr","HL",-0.0426853980196112 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1853,"Simulated","PgC/yr","HL",0.0522416585284591 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1854,"Simulated","PgC/yr","HL",-0.0579749483547254 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1855,"Simulated","PgC/yr","HL",-0.0741254149176353 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1856,"Simulated","PgC/yr","HL",0.0060854406864056 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1857,"Simulated","PgC/yr","HL",-0.0591326035634046 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1858,"Simulated","PgC/yr","HL",-0.0369252856484036 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1859,"Simulated","PgC/yr","HL",-0.00227834486873763 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1860,"Simulated","PgC/yr","HL",0.0576385003453528 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1861,"Simulated","PgC/yr","HL",0.0253716464290784 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1862,"Simulated","PgC/yr","HL",-0.0573465719295947 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1863,"Simulated","PgC/yr","HL",-0.0776279436529887 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1864,"Simulated","PgC/yr","HL",-0.0018477094928036 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1865,"Simulated","PgC/yr","HL",-0.03134433038444 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1866,"Simulated","PgC/yr","HL",-0.107194551561563 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1867,"Simulated","PgC/yr","HL",-0.0617039818201321 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1868,"Simulated","PgC/yr","HL",0.0708553676750668 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1869,"Simulated","PgC/yr","HL",0.0427622795967963 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1870,"Simulated","PgC/yr","HL",-0.167030255661711 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1871,"Simulated","PgC/yr","HL",-0.0523562374432628 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1872,"Simulated","PgC/yr","HL",0.0311404207330056 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1873,"Simulated","PgC/yr","HL",-0.0198025805497094 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1874,"Simulated","PgC/yr","HL",-0.043871625069641 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1875,"Simulated","PgC/yr","HL",0.00350446170788552 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1876,"Simulated","PgC/yr","HL",-0.0777418520041688 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1877,"Simulated","PgC/yr","HL",0.0167953505151556 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1878,"Simulated","PgC/yr","HL",0.0675559614077637 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1879,"Simulated","PgC/yr","HL",-0.0416131084757018 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1880,"Simulated","PgC/yr","HL",-0.127938524720374 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1881,"Simulated","PgC/yr","HL",0.000255097213101519 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1882,"Simulated","PgC/yr","HL",-0.00748740554708996 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1883,"Simulated","PgC/yr","HL",-0.0276954409340215 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1884,"Simulated","PgC/yr","HL",-0.0734487287566702 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1885,"Simulated","PgC/yr","HL",-0.023808527636695 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1886,"Simulated","PgC/yr","HL",-0.0869358040717278 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1887,"Simulated","PgC/yr","HL",-0.0577215044599701 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1888,"Simulated","PgC/yr","HL",-0.025041679562902 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1889,"Simulated","PgC/yr","HL",-0.111974358225045 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1890,"Simulated","PgC/yr","HL",-0.00473980317009801 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1891,"Simulated","PgC/yr","HL",-0.0287362693820112 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1892,"Simulated","PgC/yr","HL",-0.0813726333212578 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1893,"Simulated","PgC/yr","HL",-0.0448093645647415 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1894,"Simulated","PgC/yr","HL",-0.184493394250097 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1895,"Simulated","PgC/yr","HL",-0.082332501415935 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1896,"Simulated","PgC/yr","HL",-0.0250076440857667 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1897,"Simulated","PgC/yr","HL",0.00371159006471279 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1898,"Simulated","PgC/yr","HL",-0.0886816018881257 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1899,"Simulated","PgC/yr","HL",-0.00961675992516062 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1900,"Simulated","PgC/yr","HL",-0.0478172214305086 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1901,"Simulated","PgC/yr","HL",-0.0355696392411413 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1902,"Simulated","PgC/yr","HL",-0.0459120627112312 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1903,"Simulated","PgC/yr","HL",-0.112398824998742 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1904,"Simulated","PgC/yr","HL",-0.0692109998954634 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1905,"Simulated","PgC/yr","HL",-0.118862854245018 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1906,"Simulated","PgC/yr","HL",0.0152412726697138 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1907,"Simulated","PgC/yr","HL",0.00776551160572118 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1908,"Simulated","PgC/yr","HL",0.0347518431698327 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1909,"Simulated","PgC/yr","HL",-0.140706610056303 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1910,"Simulated","PgC/yr","HL",-0.0146380394649716 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1911,"Simulated","PgC/yr","HL",0.0288832015339033 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1912,"Simulated","PgC/yr","HL",-0.125110116511252 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1913,"Simulated","PgC/yr","HL",0.0598293774781356 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1914,"Simulated","PgC/yr","HL",-0.0433937756005234 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1915,"Simulated","PgC/yr","HL",-0.0418298171458635 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1916,"Simulated","PgC/yr","HL",0.0301274031824285 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1917,"Simulated","PgC/yr","HL",0.0250984121609469 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1918,"Simulated","PgC/yr","HL",-0.0175018446869338 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1919,"Simulated","PgC/yr","HL",0.0244745664135161 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1920,"Simulated","PgC/yr","HL",-0.0851341162350555 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1921,"Simulated","PgC/yr","HL",-0.13977408929549 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1922,"Simulated","PgC/yr","HL",-0.0318294685885959 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1923,"Simulated","PgC/yr","HL",0.0106115148212256 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1924,"Simulated","PgC/yr","HL",-0.0601892077495114 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1925,"Simulated","PgC/yr","HL",0.0348357802425349 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1926,"Simulated","PgC/yr","HL",0.0102555125934919 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1927,"Simulated","PgC/yr","HL",-0.0480556505310848 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1928,"Simulated","PgC/yr","HL",0.017674806369395 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1929,"Simulated","PgC/yr","HL",0.0485501474710301 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1930,"Simulated","PgC/yr","HL",-0.00897288764933833 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1931,"Simulated","PgC/yr","HL",-0.127386796632907 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1932,"Simulated","PgC/yr","HL",-0.00110919270095827 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1933,"Simulated","PgC/yr","HL",0.0129176530944116 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1934,"Simulated","PgC/yr","HL",0.00328422528996519 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1935,"Simulated","PgC/yr","HL",0.037665587888784 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1936,"Simulated","PgC/yr","HL",-0.0627296234597958 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1937,"Simulated","PgC/yr","HL",-0.0178582871542637 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1938,"Simulated","PgC/yr","HL",-0.0264258336706465 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1939,"Simulated","PgC/yr","HL",-0.155963419393625 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1940,"Simulated","PgC/yr","HL",0.00471405061146033 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1941,"Simulated","PgC/yr","HL",-0.0366080507445923 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1942,"Simulated","PgC/yr","HL",-0.0109230965821412 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1943,"Simulated","PgC/yr","HL",0.0331705083708413 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1944,"Simulated","PgC/yr","HL",-0.0449424860214829 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1945,"Simulated","PgC/yr","HL",0.0170052019433932 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1946,"Simulated","PgC/yr","HL",-0.0240951469378511 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1947,"Simulated","PgC/yr","HL",-0.0374982676872424 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1948,"Simulated","PgC/yr","HL",-0.0463957723233196 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1949,"Simulated","PgC/yr","HL",0.00548499177844809 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1950,"Simulated","PgC/yr","HL",0.0243359171801216 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1951,"Simulated","PgC/yr","HL",0.105319539050404 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1952,"Simulated","PgC/yr","HL",-0.134901220063037 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1953,"Simulated","PgC/yr","HL",-0.0291344792166052 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1954,"Simulated","PgC/yr","HL",-0.094476583567757 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1955,"Simulated","PgC/yr","HL",0.0847577842675528 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1956,"Simulated","PgC/yr","HL",-0.0363210495137202 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1957,"Simulated","PgC/yr","HL",0.0129449858508056 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1958,"Simulated","PgC/yr","HL",0.0108738305642696 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1959,"Simulated","PgC/yr","HL",0.0113723858718843 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1960,"Simulated","PgC/yr","HL",-0.0552803904758489 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1961,"Simulated","PgC/yr","HL",0.000298185940563215 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1962,"Simulated","PgC/yr","HL",0.0464632951647154 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1963,"Simulated","PgC/yr","HL",0.0391077078485419 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1964,"Simulated","PgC/yr","HL",0.110471479370007 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1965,"Simulated","PgC/yr","HL",0.00724596474119591 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1966,"Simulated","PgC/yr","HL",0.0303047526833829 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1967,"Simulated","PgC/yr","HL",-0.0206187031274532 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1968,"Simulated","PgC/yr","HL",0.0446086619567241 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1969,"Simulated","PgC/yr","HL",0.0868969988463834 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1970,"Simulated","PgC/yr","HL",0.0158336077578266 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1971,"Simulated","PgC/yr","HL",-0.00178134614337776 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1972,"Simulated","PgC/yr","HL",0.0655432792691997 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1973,"Simulated","PgC/yr","HL",-0.000521570508921333 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1974,"Simulated","PgC/yr","HL",0.0537350037180669 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1975,"Simulated","PgC/yr","HL",0.0620997892876574 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1976,"Simulated","PgC/yr","HL",0.0249339841294686 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1977,"Simulated","PgC/yr","HL",-0.0365014602833907 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1978,"Simulated","PgC/yr","HL",0.081363362050289 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1979,"Simulated","PgC/yr","HL",0.140216398892561 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1980,"Simulated","PgC/yr","HL",0.0313525520775633 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1981,"Simulated","PgC/yr","HL",-0.0397445392063171 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1982,"Simulated","PgC/yr","HL",0.0579322655223405 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1983,"Simulated","PgC/yr","HL",0.0790349027549214 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1984,"Simulated","PgC/yr","HL",0.0851509677904643 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1985,"Simulated","PgC/yr","HL",0.0551563653604355 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1986,"Simulated","PgC/yr","HL",0.0466398866372257 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1987,"Simulated","PgC/yr","HL",0.0696336590628702 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1988,"Simulated","PgC/yr","HL",0.0285787248319032 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1989,"Simulated","PgC/yr","HL",0.0565868816540122 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1990,"Simulated","PgC/yr","HL",0.0441617167241693 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1991,"Simulated","PgC/yr","HL",0.0415980062167022 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1992,"Simulated","PgC/yr","HL",0.0473170975871137 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1993,"Simulated","PgC/yr","HL",-0.0480285655916821 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1994,"Simulated","PgC/yr","HL",-0.0807291837920678 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1995,"Simulated","PgC/yr","HL",0.114571101279706 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1996,"Simulated","PgC/yr","HL",0.106570140208293 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1997,"Simulated","PgC/yr","HL",0.0875265997790005 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1998,"Simulated","PgC/yr","HL",0.00179404107896884 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",1999,"Simulated","PgC/yr","HL",0.0418695261743527 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2000,"Simulated","PgC/yr","HL",0.112563754495191 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2001,"Simulated","PgC/yr","HL",0.13120813463884 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2002,"Simulated","PgC/yr","HL",-0.0269035023791351 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2003,"Simulated","PgC/yr","HL",-0.0516622915577267 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2004,"Simulated","PgC/yr","HL",0.0128334040638498 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","historical",2005,"Simulated","PgC/yr","HL",0.801571055563737 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1850,"Simulated","PgC/yr","LL",-0.0776545926197187 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1851,"Simulated","PgC/yr","LL",-0.92260320399644 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1852,"Simulated","PgC/yr","LL",1.04096159607107 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1853,"Simulated","PgC/yr","LL",-0.0432060977518075 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1854,"Simulated","PgC/yr","LL",-2.39318019736532 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1855,"Simulated","PgC/yr","LL",-1.25102457147747 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1856,"Simulated","PgC/yr","LL",1.67051525876205 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1857,"Simulated","PgC/yr","LL",0.318466535152593 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1858,"Simulated","PgC/yr","LL",-1.04576926623864 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1859,"Simulated","PgC/yr","LL",-1.59086501157929 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1860,"Simulated","PgC/yr","LL",-0.871618170019668 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1861,"Simulated","PgC/yr","LL",0.586081831466198 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1862,"Simulated","PgC/yr","LL",-0.687646299986302 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1863,"Simulated","PgC/yr","LL",-0.849076323065507 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1864,"Simulated","PgC/yr","LL",1.8120286377136 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1865,"Simulated","PgC/yr","LL",0.130014529662982 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1866,"Simulated","PgC/yr","LL",-1.53184107584458 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1867,"Simulated","PgC/yr","LL",1.09713777604339 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1868,"Simulated","PgC/yr","LL",0.967398632593139 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1869,"Simulated","PgC/yr","LL",-1.2805819717489 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1870,"Simulated","PgC/yr","LL",-1.23219369596305 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1871,"Simulated","PgC/yr","LL",-0.0726612290232297 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1872,"Simulated","PgC/yr","LL",0.00163607486271399 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1873,"Simulated","PgC/yr","LL",-0.358042899870668 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1874,"Simulated","PgC/yr","LL",0.474245688982312 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1875,"Simulated","PgC/yr","LL",-1.84511659668976 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1876,"Simulated","PgC/yr","LL",0.474667090991083 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1877,"Simulated","PgC/yr","LL",-1.26952556823191 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1878,"Simulated","PgC/yr","LL",-0.447786120227861 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1879,"Simulated","PgC/yr","LL",-0.623836290936979 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1880,"Simulated","PgC/yr","LL",-0.623754775985908 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1881,"Simulated","PgC/yr","LL",-1.37973733766011 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1882,"Simulated","PgC/yr","LL",-0.96790866071188 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1883,"Simulated","PgC/yr","LL",-0.826022209294433 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1884,"Simulated","PgC/yr","LL",0.481270855532901 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1885,"Simulated","PgC/yr","LL",-0.927798564012071 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1886,"Simulated","PgC/yr","LL",0.456843629653874 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1887,"Simulated","PgC/yr","LL",-0.585022400478524 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1888,"Simulated","PgC/yr","LL",-0.558194104966399 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1889,"Simulated","PgC/yr","LL",-1.77386673517559 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1890,"Simulated","PgC/yr","LL",1.0344995279547 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1891,"Simulated","PgC/yr","LL",-0.272240183359863 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1892,"Simulated","PgC/yr","LL",-1.8198337930448 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1893,"Simulated","PgC/yr","LL",1.30130151839138 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1894,"Simulated","PgC/yr","LL",-1.38974826913097 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1895,"Simulated","PgC/yr","LL",-2.25434272116945 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1896,"Simulated","PgC/yr","LL",0.707450745829115 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1897,"Simulated","PgC/yr","LL",-0.828082074988555 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1898,"Simulated","PgC/yr","LL",0.868547597945135 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1899,"Simulated","PgC/yr","LL",-1.00006242410984 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1900,"Simulated","PgC/yr","LL",-0.261082643360767 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1901,"Simulated","PgC/yr","LL",0.0727021445245188 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1902,"Simulated","PgC/yr","LL",0.413520737701573 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1903,"Simulated","PgC/yr","LL",-0.615925916791716 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1904,"Simulated","PgC/yr","LL",0.662183478670721 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1905,"Simulated","PgC/yr","LL",-2.35743082132752 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1906,"Simulated","PgC/yr","LL",-0.161535110205142 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1907,"Simulated","PgC/yr","LL",-1.47608827320296 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1908,"Simulated","PgC/yr","LL",0.618218080343173 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1909,"Simulated","PgC/yr","LL",0.40499485324725 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1910,"Simulated","PgC/yr","LL",-2.49787752644437 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1911,"Simulated","PgC/yr","LL",0.119682094797059 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1912,"Simulated","PgC/yr","LL",-0.445540310897369 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1913,"Simulated","PgC/yr","LL",0.549958856209999 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1914,"Simulated","PgC/yr","LL",-3.5013976857243 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1915,"Simulated","PgC/yr","LL",-1.23728475898151 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1916,"Simulated","PgC/yr","LL",2.21985623427669 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1917,"Simulated","PgC/yr","LL",-0.976960770924655 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1918,"Simulated","PgC/yr","LL",-2.45895841717185 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1919,"Simulated","PgC/yr","LL",1.54125019257167 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1920,"Simulated","PgC/yr","LL",-1.68920180408847 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1921,"Simulated","PgC/yr","LL",-1.49681730139064 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1922,"Simulated","PgC/yr","LL",0.3740801434432 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1923,"Simulated","PgC/yr","LL",1.32909930189994 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1924,"Simulated","PgC/yr","LL",-1.36152618647483 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1925,"Simulated","PgC/yr","LL",-1.42741502430867 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1926,"Simulated","PgC/yr","LL",1.01984514141158 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1927,"Simulated","PgC/yr","LL",-0.0519952004358594 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1928,"Simulated","PgC/yr","LL",-0.262649205328371 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1929,"Simulated","PgC/yr","LL",-0.43016624873614 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1930,"Simulated","PgC/yr","LL",-0.289023703552302 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1931,"Simulated","PgC/yr","LL",-1.39323010322843 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1932,"Simulated","PgC/yr","LL",-1.27097031868135 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1933,"Simulated","PgC/yr","LL",1.59165909098957 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1934,"Simulated","PgC/yr","LL",-3.13007403817098 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1935,"Simulated","PgC/yr","LL",-0.63160338839926 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1936,"Simulated","PgC/yr","LL",-0.560493906429264 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1937,"Simulated","PgC/yr","LL",0.719675486415422 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1938,"Simulated","PgC/yr","LL",-2.59136819585269 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1939,"Simulated","PgC/yr","LL",-1.70174641513706 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1940,"Simulated","PgC/yr","LL",0.717798272154477 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1941,"Simulated","PgC/yr","LL",-1.57694030895198 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1942,"Simulated","PgC/yr","LL",-1.97555105345448 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1943,"Simulated","PgC/yr","LL",2.059225689821 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1944,"Simulated","PgC/yr","LL",-1.59446009746662 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1945,"Simulated","PgC/yr","LL",-2.12200537095888 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1946,"Simulated","PgC/yr","LL",-0.218053942685839 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1947,"Simulated","PgC/yr","LL",-0.206437206185311 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1948,"Simulated","PgC/yr","LL",-0.475919840150281 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1949,"Simulated","PgC/yr","LL",0.26751244788584 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1950,"Simulated","PgC/yr","LL",-1.3058441003578 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1951,"Simulated","PgC/yr","LL",-0.620821159564225 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1952,"Simulated","PgC/yr","LL",0.228559626452618 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1953,"Simulated","PgC/yr","LL",-2.03383621879257 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1954,"Simulated","PgC/yr","LL",-2.50978871759853 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1955,"Simulated","PgC/yr","LL",-0.194433438277352 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1956,"Simulated","PgC/yr","LL",0.690515257537263 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1957,"Simulated","PgC/yr","LL",-2.39598910513003 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1958,"Simulated","PgC/yr","LL",-3.68854231781933 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1959,"Simulated","PgC/yr","LL",-1.32955889346575 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1960,"Simulated","PgC/yr","LL",-1.23640692592199 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1961,"Simulated","PgC/yr","LL",-1.84375230768637 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1962,"Simulated","PgC/yr","LL",1.21008681489481 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1963,"Simulated","PgC/yr","LL",-0.628336732702521 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1964,"Simulated","PgC/yr","LL",-3.1018545892774 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1965,"Simulated","PgC/yr","LL",0.102443789655467 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1966,"Simulated","PgC/yr","LL",-0.590047882809369 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1967,"Simulated","PgC/yr","LL",-2.22590071933999 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1968,"Simulated","PgC/yr","LL",-0.465738372554 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1969,"Simulated","PgC/yr","LL",0.720885568621233 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1970,"Simulated","PgC/yr","LL",-1.02397106214183 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1971,"Simulated","PgC/yr","LL",-2.04324401863837 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1972,"Simulated","PgC/yr","LL",-1.30531405564365 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1973,"Simulated","PgC/yr","LL",0.505783415318704 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1974,"Simulated","PgC/yr","LL",0.34301386060412 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1975,"Simulated","PgC/yr","LL",-1.4465440417443 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1976,"Simulated","PgC/yr","LL",-1.05569802431778 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1977,"Simulated","PgC/yr","LL",1.56320523722861 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1978,"Simulated","PgC/yr","LL",-1.09775091596615 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1979,"Simulated","PgC/yr","LL",-1.68477971675893 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1980,"Simulated","PgC/yr","LL",1.46190677872655 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1981,"Simulated","PgC/yr","LL",-1.92790497195658 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1982,"Simulated","PgC/yr","LL",-1.06589937682135 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1983,"Simulated","PgC/yr","LL",0.370362324220821 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1984,"Simulated","PgC/yr","LL",-2.072270715755 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1985,"Simulated","PgC/yr","LL",-0.25807528158755 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1986,"Simulated","PgC/yr","LL",0.667326690187766 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1987,"Simulated","PgC/yr","LL",-2.16285897882791 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1988,"Simulated","PgC/yr","LL",-2.81562649298891 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1989,"Simulated","PgC/yr","LL",0.870046208838826 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1990,"Simulated","PgC/yr","LL",-2.05331552664799 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1991,"Simulated","PgC/yr","LL",0.678808051292977 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1992,"Simulated","PgC/yr","LL",0.175446907395937 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1993,"Simulated","PgC/yr","LL",0.647641685476814 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1994,"Simulated","PgC/yr","LL",1.12699713719172 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1995,"Simulated","PgC/yr","LL",-1.48036155294814 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1996,"Simulated","PgC/yr","LL",0.647838164163403 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1997,"Simulated","PgC/yr","LL",0.711035428354348 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1998,"Simulated","PgC/yr","LL",2.49244407429379 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",1999,"Simulated","PgC/yr","LL",-1.64176510671367 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2000,"Simulated","PgC/yr","LL",-0.569342426796553 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2001,"Simulated","PgC/yr","LL",1.45179444739733 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2002,"Simulated","PgC/yr","LL",-0.741721132504257 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2003,"Simulated","PgC/yr","LL",-1.62983811298419 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2004,"Simulated","PgC/yr","LL",-0.13489842091888 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","historical",2005,"Simulated","PgC/yr","LL",1.50828338667303 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/hist/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/hist/summary.csv deleted file mode 100644 index 4506bf6a3..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/hist/summary.csv +++ /dev/null @@ -1,469 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -1850,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.193556195,-2.863911269,5.893037868,0.812696429,0.019700796,1,CMIP5 -1850,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.162879215,0.013777639,0.387085755,0.153303651,0.060621969,1,CMIP5 -1850,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.000262815,-2.892738043,5.361825015,0.663100472,-0.077654593,1,CMIP5 -1851,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.3263853,-2.110618382,4.199654705,-0.026220978,-0.358285123,1,CMIP5 -1851,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.252934512,-0.550054407,0.113455714,-0.163223791,-0.142897527,1,CMIP5 -1851,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.197330396,-1.776748614,4.246006332,0.103650252,-0.371966679,1,CMIP5 -1852,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.771950295,-1.419883711,11.1692118,1.659679658,0.191754426,1,CMIP5 -1852,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.568168134,-0.317656957,1.242744217,0.213971631,0.088728525,1,CMIP5 -1852,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.135258407,-1.56095085,9.559327225,1.384689667,0.241026837,1,CMIP5 -1853,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.868187748,-11.35918477,2.418776448,-2.359717722,-0.909384291,1,CMIP5 -1853,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.775393484,-1.74660365,0.369623966,-0.211834514,0.040964177,1,CMIP5 -1853,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.08777246,-9.563360871,2.020774996,-2.1400356,-0.950348747,1,CMIP5 -1854,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.005409072,-15.71961356,0.650331272,-3.821059094,-2.093282578,1,CMIP5 -1854,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.315164282,-0.563879603,0.144757158,-0.154901605,-0.012824174,1,CMIP5 -1854,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.655064803,-14.66418679,1.156679362,-3.537376407,-2.093073279,1,CMIP5 -1855,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.900274795,-6.254543543,5.35226764,-0.289279518,-0.564643895,1,CMIP5 -1855,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.527093643,-1.181416994,0.232140172,-0.14085953,-0.022174398,1,CMIP5 -1855,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.405195008,-5.096224925,4.764008709,-0.217075304,-0.534262641,1,CMIP5 -1856,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.136844542,-4.536771574,2.708640381,-0.777040622,-0.112433482,1,CMIP5 -1856,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.210763645,-0.333521638,0.213301847,-0.058535792,-0.075658234,1,CMIP5 -1856,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.017723493,-4.195668196,2.997128257,-0.653599948,-0.28427049,1,CMIP5 -1857,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.326667706,-0.809059726,7.849853449,2.523903599,1.938189295,1,CMIP5 -1857,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.180924565,-0.212155812,0.263456963,0.030648259,-0.016855004,1,CMIP5 -1857,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.091619358,-0.792811988,7.018040299,2.359436728,1.978221799,1,CMIP5 -1858,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.148990123,-1.398323545,1.320633933,-0.361520339,-0.794475195,1,CMIP5 -1858,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.36316939,-0.224584819,0.697772974,0.057867063,-0.088402315,1,CMIP5 -1858,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.089067139,-1.171984965,1.437895997,-0.369425433,-0.9247486,1,CMIP5 -1859,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.59120139,-3.311450103,1.309408054,-0.736403652,-1.083477659,1,CMIP5 -1859,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.363031886,-0.545033315,0.518094083,0.05575734,0.007057221,1,CMIP5 -1859,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.558276827,-3.213180841,0.937737825,-0.729095024,-0.865623916,1,CMIP5 -1860,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.962266562,-6.920109957,9.527801313,0.282320396,-0.130007118,1,CMIP5 -1860,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.414452741,-0.938049563,0.26486135,-0.011085817,0.105387367,1,CMIP5 -1860,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.423970842,-5.923286885,8.5451589,0.198403219,-0.235394558,1,CMIP5 -1861,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.178628089,-3.663605837,7.372919521,0.509285224,0.134857687,1,CMIP5 -1861,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.306935525,-0.676431449,0.207169459,-0.084383166,0.048223834,1,CMIP5 -1861,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.111226005,-3.859321645,6.865713547,0.463816355,0.181120863,1,CMIP5 -1862,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.798452441,-4.208920887,7.393797065,0.365334687,-0.655217685,1,CMIP5 -1862,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.290105554,-0.47604842,0.546004708,0.050883884,0.111718392,1,CMIP5 -1862,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.733341141,-4.29794997,7.469276886,0.25291685,-0.669048197,1,CMIP5 -1863,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.920323677,-2.774789845,8.887830951,1.075911202,-0.181171882,1,CMIP5 -1863,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.206355727,-0.500812421,0.138613375,-0.05445038,-0.004071529,1,CMIP5 -1863,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.756348788,-2.913403329,8.146074875,0.985263429,-0.178027542,1,CMIP5 -1864,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.683421347,-2.31729729,2.722444956,0.607218103,0.892944703,1,CMIP5 -1864,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.44355992,-0.37164475,1.099190201,0.086758543,-0.006154168,1,CMIP5 -1864,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.538335455,-2.071335332,2.237490391,0.540978218,0.822881276,1,CMIP5 -1865,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.512194204,-9.676215717,7.15198565,0.755361058,1.023055593,1,CMIP5 -1865,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.300788981,-0.147672063,0.674704611,0.165225413,0.122185144,1,CMIP5 -1865,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.278212347,-9.141842823,6.603186205,0.708449484,0.963266783,1,CMIP5 -1866,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.110827534,-1.881992614,13.08713268,3.152662489,1.477636981,1,CMIP5 -1866,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.418438877,-0.484564833,0.852577979,-0.003835095,-0.062059109,1,CMIP5 -1866,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.882070972,-1.848024074,12.64019672,3.053157848,1.649214668,1,CMIP5 -1867,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.332011106,-3.63444634,4.594165043,0.500692593,0.714762944,1,CMIP5 -1867,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.39823683,-0.386808031,0.962103474,0.064575959,0.017677445,1,CMIP5 -1867,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.199766163,-3.424553957,4.352012726,0.475001504,0.75856761,1,CMIP5 -1868,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.528304768,-4.737793336,2.739172896,-1.018666824,-1.306354535,1,CMIP5 -1868,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.396435731,-0.969428557,0.365281602,-0.133148242,-0.059571343,1,CMIP5 -1868,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.422212537,-4.493303107,2.937910354,-0.825898038,-0.920697991,1,CMIP5 -1869,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.216792764,-10.14551354,5.098815911,-1.443902391,-1.304889625,1,CMIP5 -1869,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.210111517,-0.495279462,0.137454743,-0.051339334,0.032339258,1,CMIP5 -1869,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.872468266,-9.36300224,4.620351876,-1.410597673,-1.383182111,1,CMIP5 -1870,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.930588291,-16.35943052,4.272611724,-2.653288036,-1.374077173,1,CMIP5 -1870,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.150787594,-0.32854976,0.147862306,-0.065810064,-0.081655966,1,CMIP5 -1870,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.727134128,-15.8278728,3.921899817,-2.550841451,-1.24106524,1,CMIP5 -1871,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.308420391,-6.636446134,8.968959891,0.208296924,-0.277383537,1,CMIP5 -1871,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.272517922,-0.561970368,0.226634109,-0.129874149,-0.159397792,1,CMIP5 -1871,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.976703184,-6.168975517,8.301332695,0.245285795,-0.049316935,1,CMIP5 -1872,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.916231524,-4.680844699,11.47079236,0.490108269,-0.442065785,1,CMIP5 -1872,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.41988649,-1.108055347,0.166814477,-0.205968056,-0.036137506,1,CMIP5 -1872,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.61630559,-4.714981593,10.4952038,0.520144207,-0.56545325,1,CMIP5 -1873,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.786366873,-3.124849662,11.93333107,0.648141619,-0.415403867,1,CMIP5 -1873,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.410466066,-0.737687925,0.56732413,-0.145849605,-0.13801487,1,CMIP5 -1873,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.239921796,-2.964695811,10.58686499,0.672449943,-0.344785315,1,CMIP5 -1874,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.620204206,-5.534760519,13.10217493,0.121140811,-0.695273104,1,CMIP5 -1874,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.403242792,-0.468764204,0.888329697,0.087637067,0.048134944,1,CMIP5 -1874,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.045318187,-5.503432563,11.4934322,-0.054698337,-0.834787541,1,CMIP5 -1875,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.808336791,-2.733389202,1.916861209,-0.400473875,-0.749050878,1,CMIP5 -1875,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.172766327,-0.149384278,0.375649917,0.115886538,0.088930322,1,CMIP5 -1875,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.717968689,-2.711206621,1.594245849,-0.516518223,-0.789292713,1,CMIP5 -1876,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.096908347,-8.163231424,1.362670448,-1.500714988,-0.672289336,1,CMIP5 -1876,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.492296503,-1.243405657,0.11357167,-0.290424138,-0.122068355,1,CMIP5 -1876,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.718899314,-7.24535714,1.250666672,-1.234985612,-0.572055671,1,CMIP5 -1877,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.448163313,-2.454265865,14.4850007,1.880079632,-0.384645017,1,CMIP5 -1877,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.235806906,-0.430364904,0.410050926,0.035081748,0.018631093,1,CMIP5 -1877,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.025805897,-2.86431707,13.13353548,1.678172599,-0.31099373,1,CMIP5 -1878,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.850026283,-2.441079887,15.91292311,2.534509687,0.392317442,1,CMIP5 -1878,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.189741078,-0.152782889,0.41447002,0.074663295,0.066827319,1,CMIP5 -1878,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.447865911,-2.503346486,14.56411043,2.248053044,0.133754409,1,CMIP5 -1879,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.324500127,-9.291247504,8.504330022,-0.007567724,-0.00497563,1,CMIP5 -1879,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.189610935,-0.248064957,0.346437379,-0.016788899,-0.059114003,1,CMIP5 -1879,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.153483136,-9.191846194,7.865233157,-0.046477959,0.057229879,1,CMIP5 -1880,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.709750258,-4.980303991,7.374240663,-0.078412959,-0.831159465,1,CMIP5 -1880,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.422266825,-0.438414739,0.969330938,0.053151437,0.011125334,1,CMIP5 -1880,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.58851335,-4.445512089,7.26482897,-0.056471703,-0.837291148,1,CMIP5 -1881,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.657627701,-1.800649141,5.476666316,0.672184394,-0.255007409,1,CMIP5 -1881,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.365631863,-0.746917302,0.556011749,0.057394823,0.117181431,1,CMIP5 -1881,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.531032173,-1.961774771,5.356871673,0.603694251,-0.065693524,1,CMIP5 -1882,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.981059699,-3.285292352,9.97818556,2.021881474,1.108621208,1,CMIP5 -1882,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.336050095,-0.261650172,0.793415863,0.083641782,0.040482701,1,CMIP5 -1882,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.661815609,-3.092491254,9.102975762,1.826228821,1.014326436,1,CMIP5 -1883,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.116726431,-0.853717616,14.74908999,2.469524308,0.650778169,1,CMIP5 -1883,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.2196337,-0.185588402,0.527635174,0.021296138,-0.021254702,1,CMIP5 -1883,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.566519707,-0.826022209,13.17017053,2.297070923,0.708118267,1,CMIP5 -1884,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.661383282,0.407822198,14.83395602,4.68478694,3.370817575,1,CMIP5 -1884,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.469636438,-0.501819398,0.925063673,0.210205505,0.120136481,1,CMIP5 -1884,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.449875062,0.343877243,14.27270344,4.41099003,3.019341261,1,CMIP5 -1885,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.812350091,-4.261559142,8.209836176,1.723488976,1.754659816,1,CMIP5 -1885,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.452423057,-0.279871505,1.011609639,0.152875345,0.046348496,1,CMIP5 -1885,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.688522611,-4.377180555,7.703585451,1.640113164,1.802946599,1,CMIP5 -1886,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.469647719,-4.617461593,6.075191566,2.323067481,3.198254889,1,CMIP5 -1886,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.390358008,-0.292226211,0.952165745,0.19736851,0.230809148,1,CMIP5 -1886,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.46302116,-4.672037315,6.060888166,2.193494984,2.984360343,1,CMIP5 -1887,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.58342515,-2.714937694,15.15285688,3.113998739,1.725584933,1,CMIP5 -1887,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.207062812,-0.289353812,0.403127975,-0.018793453,-0.051280211,1,CMIP5 -1887,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.411389202,-2.670039189,14.58943732,3.107756825,1.746377908,1,CMIP5 -1888,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.04033216,-0.583235891,9.680895841,2.974549915,2.095915622,1,CMIP5 -1888,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.217015784,-0.081113894,0.545518388,0.167065832,0.12694948,1,CMIP5 -1888,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.927168494,-0.558194105,9.257388354,2.767303229,1.933448975,1,CMIP5 -1889,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.086152526,-1.885840371,8.165649073,1.058118453,0.670868031,1,CMIP5 -1889,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.290008137,-0.514019351,0.237272219,-0.089414371,-0.044918823,1,CMIP5 -1889,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.836101167,-1.773866735,7.502998936,1.032776214,0.540960892,1,CMIP5 -1890,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.991146835,-6.420299718,7.754596681,1.292346744,1.247705886,1,CMIP5 -1890,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.155376696,-0.071105516,0.362742732,0.073751195,0.015392403,1,CMIP5 -1890,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.945248831,-6.456660432,7.503417087,1.189519739,1.068704469,1,CMIP5 -1891,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.670158524,-3.064743534,9.382893622,1.127946765,-0.124291743,1,CMIP5 -1891,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.297567077,-0.253561791,0.686687485,0.132387798,0.090917731,1,CMIP5 -1891,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.400803741,-3.489570893,8.206000714,0.923600388,-0.200548365,1,CMIP5 -1892,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.933564708,-3.466643003,8.19986044,1.823341446,1.767411008,1,CMIP5 -1892,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.408229868,-0.567725755,0.73706416,-0.022530754,-0.047191546,1,CMIP5 -1892,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.621715935,-3.090610912,7.104076643,1.751054468,1.664199039,1,CMIP5 -1893,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.097151095,-2.647565466,3.346252265,0.609488929,0.873626951,1,CMIP5 -1893,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.569254031,-0.617401184,1.286590514,0.035126586,-0.050395962,1,CMIP5 -1893,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.895517187,-2.696265552,3.144076356,0.63465923,1.082844864,1,CMIP5 -1894,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.882933052,-6.648264187,1.559697766,-0.674987206,0.559933823,1,CMIP5 -1894,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.381041315,-0.329669096,0.865480872,0.202995529,0.193248829,1,CMIP5 -1894,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.86153584,-6.746516904,1.496161988,-0.746676232,0.669295966,1,CMIP5 -1895,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.018119619,-2.336674346,6.449769796,0.291798122,-0.631195112,1,CMIP5 -1895,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.367988214,-0.303011551,0.809625674,0.092168415,-0.03991019,1,CMIP5 -1895,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.965029959,-2.532346019,6.429004656,0.174681036,-0.650186507,1,CMIP5 -1896,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.683844535,-6.095073815,9.315021024,-0.201968489,-0.355011264,1,CMIP5 -1896,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.24246124,-0.584898408,0.250394081,-0.025158696,0.01864992,1,CMIP5 -1896,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.474886842,-5.840966678,8.768850744,-0.286212723,-0.385165642,1,CMIP5 -1897,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.472081057,-2.916935644,1.650710389,-0.767376632,-0.567188076,1,CMIP5 -1897,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.412287851,-0.968902125,0.274880876,-0.161043333,-0.060442111,1,CMIP5 -1897,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.28943553,-2.589932591,1.375829955,-0.607786248,-0.588924146,1,CMIP5 -1898,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.383860638,-4.2121275,7.569274561,0.036803174,-0.705898989,1,CMIP5 -1898,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.365573777,-1.045521885,0.12443608,-0.247986334,-0.157257124,1,CMIP5 -1898,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.298036796,-3.986294877,7.570722206,0.184954165,-0.595860024,1,CMIP5 -1899,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.048023423,-5.661047135,4.887135893,0.696808408,1.221567625,1,CMIP5 -1899,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.202888961,-0.073782674,0.4513197,0.112256478,0.032829773,1,CMIP5 -1899,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.90094282,-5.611669203,4.466957956,0.532754565,1.19145593,1,CMIP5 -1900,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,7.139933246,-13.35642602,12.27812142,-0.740867846,-0.174211962,1,CMIP5 -1900,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.282276668,-0.570364586,0.413555634,-0.049019299,-0.018326542,1,CMIP5 -1900,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.630739333,-12.38926711,11.17289976,-0.778430406,-0.110338613,1,CMIP5 -1901,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,7.856251929,-19.77868845,8.199395559,-2.394321483,-1.105812244,1,CMIP5 -1901,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.295113666,-0.508636126,0.284848725,-0.029591132,0.027615704,1,CMIP5 -1901,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,7.300533017,-18.6056975,7.325798534,-2.352677683,-1.158888853,1,CMIP5 -1902,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,7.110144186,-11.7920893,11.85408096,-0.367747972,0.807397119,1,CMIP5 -1902,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.196238852,-0.188817384,0.346954796,0.039663685,0.000639886,1,CMIP5 -1902,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.707372185,-11.36311984,10.67937063,-0.466249213,0.871557704,1,CMIP5 -1903,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.917593986,-10.75437807,4.641053088,0.275286342,1.408639172,1,CMIP5 -1903,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.332005199,-0.485312075,0.578700833,-0.050474845,-0.117998222,1,CMIP5 -1903,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.871847476,-10.7764297,4.416618144,0.329878692,1.484437703,1,CMIP5 -1904,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.669578918,-1.77113878,6.434463445,1.127330086,0.560687421,1,CMIP5 -1904,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.403473462,-0.518059625,0.855483733,-0.022988912,-0.078681443,1,CMIP5 -1904,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.583082003,-1.670130173,6.585776041,1.16633269,0.523863516,1,CMIP5 -1905,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.028472974,-8.203140673,3.295164544,-1.829742531,-1.140298379,1,CMIP5 -1905,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.596867755,-1.03648728,0.985544426,-0.013658195,-0.042815928,1,CMIP5 -1905,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.067455685,-8.283484547,3.286286114,-1.621503932,-0.577780593,1,CMIP5 -1906,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.877989979,-3.490502045,1.120582029,-0.595625655,0.000895227,1,CMIP5 -1906,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.283923719,-0.598847823,0.282061577,-0.02155635,0.007130094,1,CMIP5 -1906,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.604577714,-3.068114374,0.927650959,-0.546513917,-0.006234734,1,CMIP5 -1907,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.583493319,-2.140791043,6.053700392,0.199568275,-0.678217247,1,CMIP5 -1907,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.496919085,-1.024076186,0.534136855,-0.180709925,-0.155545075,1,CMIP5 -1907,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.513827533,-1.927191882,5.773892451,0.294003595,-0.485372032,1,CMIP5 -1908,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.36466639,-6.668931304,5.396439359,-0.29437473,-0.198392828,1,CMIP5 -1908,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.346479858,-0.657375949,0.571814454,0.047257654,0.036508292,1,CMIP5 -1908,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.133798117,-6.497438069,4.632679333,-0.326009313,-0.173846035,1,CMIP5 -1909,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.655255216,-9.449343712,2.291287873,-1.660237657,-1.034782298,1,CMIP5 -1909,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.231264017,-0.146696486,0.418837472,0.098776713,0.038178298,1,CMIP5 -1909,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.609267802,-9.320361251,2.43060374,-1.656164464,-1.1547783,1,CMIP5 -1910,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.0957305,-7.873980243,10.11478491,-0.107192341,-0.582129968,1,CMIP5 -1910,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.201327105,-0.15676549,0.518439339,0.096103323,0.05915429,1,CMIP5 -1910,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.684588773,-7.44228432,9.108624044,-0.269273217,-0.683510396,1,CMIP5 -1911,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.412466427,-5.386337076,5.828128642,0.741927217,0.59264985,1,CMIP5 -1911,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.282800092,-0.363005833,0.493271122,0.053142408,0.026543584,1,CMIP5 -1911,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.098999855,-5.023330928,5.064324602,0.637402859,0.559728187,1,CMIP5 -1912,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.459483901,-3.194060444,4.66596116,1.033440861,0.766568856,1,CMIP5 -1912,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.374973971,-0.798622512,0.373507683,-0.069428685,-0.084715373,1,CMIP5 -1912,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.372377617,-3.353730697,4.193651105,1.022278234,1.014686418,1,CMIP5 -1913,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.880786383,-5.545933233,6.682982231,-0.761187908,-0.26651453,1,CMIP5 -1913,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.468751169,-0.503295589,0.837148488,0.141081495,0.075154392,1,CMIP5 -1913,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.606058161,-5.947127414,5.845834565,-0.816029076,-0.384133459,1,CMIP5 -1914,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.935652988,-4.870776312,10.3544559,0.007445881,-0.512233774,1,CMIP5 -1914,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.387587607,-0.535331701,0.570168572,0.092125774,0.062120156,1,CMIP5 -1914,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.654396047,-4.694558992,9.690928364,-0.204677293,-0.943132916,1,CMIP5 -1915,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.416034543,-7.635605553,10.65110294,-0.38781425,-0.721774748,1,CMIP5 -1915,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.389641343,-0.48943908,0.762922,0.094529237,0.104082537,1,CMIP5 -1915,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.064748243,-7.443789156,9.323284061,-0.510404533,-0.535675347,1,CMIP5 -1916,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.289231357,-10.50834127,2.509407776,-1.451833493,0.168319445,1,CMIP5 -1916,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.344351866,-0.734369871,0.309388518,-0.023627475,0.048432905,1,CMIP5 -1916,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.966552063,-9.527049237,2.485786834,-1.398878836,0.012943254,1,CMIP5 -1917,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.574332215,-5.655261479,1.843455082,-1.791733112,-1.096861709,1,CMIP5 -1917,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.338378346,-0.320915821,0.648842672,0.110141803,-0.013415758,1,CMIP5 -1917,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.610459568,-5.569635973,1.704015424,-1.887028686,-1.126173862,1,CMIP5 -1918,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.912219976,-2.476459646,9.488810842,1.075378613,0.325111127,1,CMIP5 -1918,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.297946856,-0.221942347,0.539747628,0.1130381,0.005788446,1,CMIP5 -1918,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.524901834,-2.458958417,8.39542517,0.831229602,0.296032194,1,CMIP5 -1919,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.357813721,-13.45019523,3.807557341,-0.840392776,1.011584508,1,CMIP5 -1919,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.26028268,-0.510106248,0.323400381,-0.028014511,-0.034627763,1,CMIP5 -1919,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.004605103,-12.52582392,3.484156639,-0.758370234,0.926126176,1,CMIP5 -1920,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.427128589,-5.813380771,11.95868235,2.115229544,1.123727096,1,CMIP5 -1920,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.254244835,-0.62439244,0.170776257,-0.134557142,-0.058894746,1,CMIP5 -1920,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.290375317,-5.621161096,11.76731779,2.066058742,1.153623562,1,CMIP5 -1921,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.489468224,-4.994460357,5.435593344,0.125391498,0.127172266,1,CMIP5 -1921,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.348939477,-0.550577109,0.635300672,0.008655267,-0.035783316,1,CMIP5 -1921,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.481557556,-5.225909676,5.645853016,0.030445798,-0.033812201,1,CMIP5 -1922,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.315436803,-2.284172269,8.396814882,1.685913236,0.372794586,1,CMIP5 -1922,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.407217724,-0.440687478,0.850764395,0.056033434,0.037647526,1,CMIP5 -1922,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.323414845,-2.470920987,8.38792357,1.504629945,0.345823379,1,CMIP5 -1923,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.788650608,-3.347222207,17.26726568,2.168758095,0.036949976,1,CMIP5 -1923,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.264630826,-0.117226068,0.74215016,0.241942703,0.238554964,1,CMIP5 -1923,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.349109406,-3.517940511,15.52184475,1.733536941,-0.17055033,1,CMIP5 -1924,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.337898865,-5.797643798,6.819675809,1.080829302,1.182841969,1,CMIP5 -1924,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.404341996,-0.439718799,0.724542886,0.133923246,0.049209281,1,CMIP5 -1924,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.391275592,-6.489122349,6.679077401,0.806881753,0.821735157,1,CMIP5 -1925,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.49128794,-6.185298557,0.667465377,-1.561655717,-0.874747826,1,CMIP5 -1925,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.201957874,-0.07085282,0.51951228,0.173928227,0.154512557,1,CMIP5 -1925,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.402119493,-6.312011093,0.446614872,-1.673489154,-0.872744379,1,CMIP5 -1926,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.893229658,-3.129364993,10.90932251,2.592483191,0.761771297,1,CMIP5 -1926,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.27934254,-0.349380402,0.595221741,0.161071244,0.148500025,1,CMIP5 -1926,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.680175912,-3.542942397,9.640778057,2.291516426,0.683491266,1,CMIP5 -1927,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.915254355,-0.100050859,16.09366908,4.190501,1.624663403,1,CMIP5 -1927,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.355246919,-0.187063284,0.94996302,0.189882508,0.110940078,1,CMIP5 -1927,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.603912917,-0.0519952,15.6028527,3.856951902,1.312314975,1,CMIP5 -1928,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.675387314,-1.62297757,12.69343455,1.945585716,0.303950512,1,CMIP5 -1928,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.547346371,-0.495922015,1.44801473,0.363209975,0.341718941,1,CMIP5 -1928,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.768162419,-1.991033008,12.57509497,1.580789054,0.084324633,1,CMIP5 -1929,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.281746888,-3.766041529,7.333049156,0.763862386,0.11225143,1,CMIP5 -1929,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.517874226,-0.714888254,0.907568044,0.283801343,0.355969696,1,CMIP5 -1929,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.239773449,-4.299707114,6.231068905,0.427832625,0.077846792,1,CMIP5 -1930,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.51660321,-3.703874413,10.556256,1.819063358,0.895025312,1,CMIP5 -1930,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.232907068,-0.008972888,0.780855007,0.314147268,0.282455599,1,CMIP5 -1930,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.185487396,-3.99431164,9.228113812,1.418142375,0.585017419,1,CMIP5 -1931,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.620334946,-3.751293743,3.926796753,0.52586458,0.735055639,1,CMIP5 -1931,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.373596996,-0.258942988,0.955289162,0.126096871,0.089835313,1,CMIP5 -1931,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.320125477,-3.288432374,3.059883503,0.409924723,0.607184491,1,CMIP5 -1932,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.35598282,-2.258296695,1.814739577,-0.404412098,-0.779419902,1,CMIP5 -1932,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.379185045,-0.560422927,0.701242655,0.147586734,0.166985714,1,CMIP5 -1932,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.056660029,-1.736798051,1.113496496,-0.55159154,-0.822148848,1,CMIP5 -1933,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.716245984,-8.121435598,3.469431848,-0.557642903,0.406673537,1,CMIP5 -1933,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.289317235,-0.289713225,0.551239414,0.13358861,0.119678029,1,CMIP5 -1933,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.53727373,-7.577402823,3.378852537,-0.674067989,0.344784095,1,CMIP5 -1934,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.994161551,-5.49173392,14.62229817,1.253458818,0.551398249,1,CMIP5 -1934,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.195001385,-5.61E-05,0.521563491,0.25680638,0.270963524,1,CMIP5 -1934,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.550071398,-5.627401155,13.13778029,0.897975669,0.416455664,1,CMIP5 -1935,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.797291974,-3.981216948,4.109306657,0.296291171,0.569013799,1,CMIP5 -1935,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.258770196,-0.13133724,0.669026354,0.180898549,0.144917507,1,CMIP5 -1935,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.528465261,-3.722768074,3.41296236,0.12591191,0.371142051,1,CMIP5 -1936,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.34534455,-4.229289006,2.794758765,-0.62221966,-0.647957885,1,CMIP5 -1936,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.335175639,-0.41455924,0.573461763,-0.050160974,-0.082910991,1,CMIP5 -1936,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.222407845,-3.814729001,2.912759582,-0.602968399,-0.570819107,1,CMIP5 -1937,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.896100042,-2.654634295,2.854377808,-0.267294343,-0.351878885,1,CMIP5 -1937,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.37287404,-0.538219972,0.370853127,0.030013442,0.141277815,1,CMIP5 -1937,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.890049651,-3.004430952,2.469948346,-0.319307917,-0.148248897,1,CMIP5 -1938,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.96473866,-19.57274103,2.431991138,-3.170708915,-2.043398062,1,CMIP5 -1938,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.452061926,-0.926015508,0.568506486,0.057701703,0.049450342,1,CMIP5 -1938,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.415648367,-18.08585742,2.348301038,-3.115920152,-2.036351094,1,CMIP5 -1939,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.497167385,-14.66228224,2.7639574,-1.765482957,0.367105797,1,CMIP5 -1939,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.237823237,-0.286241862,0.335009291,0.053510754,0.074092334,1,CMIP5 -1939,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.247628046,-13.95587642,2.602176881,-1.737496204,0.122322736,1,CMIP5 -1940,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,9.928928424,-19.77391169,14.65393259,-0.310895011,1.37173491,1,CMIP5 -1940,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.428685969,-0.266917332,0.969287936,0.235131715,0.181419589,1,CMIP5 -1940,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,9.201979856,-18.78759495,12.86657226,-0.560561008,1.332337764,1,CMIP5 -1941,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.24098688,-10.01692708,1.647102348,-2.880532235,-1.501735786,1,CMIP5 -1941,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.521799306,-0.238038211,1.159072885,0.315840396,0.035447854,1,CMIP5 -1941,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.872293701,-9.437956606,0.895277502,-2.991954425,-1.525070185,1,CMIP5 -1942,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.275337657,-7.817805892,1.605186475,-2.655532348,-1.639966156,1,CMIP5 -1942,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.258681253,-0.365236504,0.285904755,-0.008667527,0.002848457,1,CMIP5 -1942,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.224390322,-7.723341237,1.319282269,-2.55101336,-1.642814447,1,CMIP5 -1943,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.893792935,-7.149305874,8.827113335,0.307791747,0.703424004,1,CMIP5 -1943,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.266297739,-0.326583231,0.526873528,0.136164427,0.159538721,1,CMIP5 -1943,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.645583454,-6.615191758,8.075232098,0.093585522,0.52855164,1,CMIP5 -1944,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.704050762,-15.98372485,5.128158472,-1.888272081,-0.946881056,1,CMIP5 -1944,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.31832207,-0.060336951,0.848873793,0.197837923,0.097468922,1,CMIP5 -1944,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.37096328,-15.49083495,4.279284793,-2.051584259,-1.144001621,1,CMIP5 -1945,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.025000113,-5.851768394,-0.564406205,-2.602669288,-2.001468975,1,CMIP5 -1945,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.199902705,-0.06679657,0.585387186,0.128788128,0.090820341,1,CMIP5 -1945,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.879214451,-5.815659835,-1.149793421,-2.643671094,-2.068801699,1,CMIP5 -1946,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.035399892,-5.630738908,7.495850736,-0.660293565,-0.912271171,1,CMIP5 -1946,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.34187095,-0.484113812,0.536144052,0.141984869,0.135439898,1,CMIP5 -1946,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.927270701,-6.090470814,6.856315833,-0.874733344,-1.224316213,1,CMIP5 -1947,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.556894253,-8.460061032,10.86349717,-0.753353747,-0.36612596,1,CMIP5 -1947,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.230363263,-0.037498268,0.623098483,0.232398708,0.178718852,1,CMIP5 -1947,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.232047731,-8.653975706,9.685567332,-1.049677504,-0.698985102,1,CMIP5 -1948,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.264045578,-6.027352799,4.561223884,-1.33053691,-0.624480371,1,CMIP5 -1948,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.222939906,-0.156596722,0.566374689,0.182665636,0.210076682,1,CMIP5 -1948,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.141288398,-6.198936053,3.874870151,-1.488275772,-0.52298417,1,CMIP5 -1949,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.931158895,-4.115824376,1.676818591,-1.370968143,-1.035967159,1,CMIP5 -1949,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.445008377,-0.198918786,1.087052214,0.375176485,0.321146973,1,CMIP5 -1949,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.848637355,-4.545397705,0.846951591,-1.65540848,-1.525004995,1,CMIP5 -1950,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.174481889,-9.75269035,2.557509951,-2.512638008,-2.179822193,1,CMIP5 -1950,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.15013912,0.024335917,0.49524089,0.218176295,0.172040282,1,CMIP5 -1950,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.010092893,-9.631057168,2.062268029,-2.670685642,-2.278016305,1,CMIP5 -1951,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.65506667,-1.381456839,3.243124097,0.241861309,-0.364857391,1,CMIP5 -1951,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.337827833,-0.115297308,0.769136647,0.307628781,0.308184369,1,CMIP5 -1951,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.568299338,-1.84597644,2.732074973,-0.050698893,-0.708640671,1,CMIP5 -1952,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.033445251,-3.137689184,6.809775137,0.595524992,0.34885878,1,CMIP5 -1952,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.301176871,-0.13490122,0.780628114,0.161228952,0.118471814,1,CMIP5 -1952,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.753833279,-3.006843455,5.81697293,0.399154468,0.250366227,1,CMIP5 -1953,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.784471058,-3.962618923,4.737066256,-0.847458689,-1.820636116,1,CMIP5 -1953,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.386219287,-0.201717943,0.950051004,0.104343788,-0.014479715,1,CMIP5 -1953,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.506916395,-3.793739426,3.846500693,-0.937277711,-1.718641,1,CMIP5 -1954,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.862485376,-4.206080008,0.805950665,-1.780172924,-1.810094842,1,CMIP5 -1954,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.37804524,-0.094476584,1.177886869,0.35704506,0.342708661,1,CMIP5 -1954,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.774216546,-4.37634023,0.155215001,-2.034996773,-1.829532596,1,CMIP5 -1955,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.034028329,-11.0077907,10.17136364,-1.79820874,-1.47668615,1,CMIP5 -1955,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.163608764,0.046053285,0.567975102,0.252740448,0.242126876,1,CMIP5 -1955,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.674738133,-10.79487224,8.982235461,-2.060579575,-1.772237355,1,CMIP5 -1956,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.920622627,-7.816186813,5.810640116,-1.443731169,-1.845212214,1,CMIP5 -1956,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.164421618,-0.03632105,0.479459046,0.207670507,0.202987156,1,CMIP5 -1956,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.800796949,-7.950071605,5.132174003,-1.660504077,-2.155446079,1,CMIP5 -1957,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.130323218,-5.762788388,7.119984148,-1.818268355,-2.411200757,1,CMIP5 -1957,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.452155204,-0.560596411,1.071550885,0.110842118,0.043649637,1,CMIP5 -1957,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.695025806,-5.526019701,5.95651354,-1.906495515,-2.497262346,1,CMIP5 -1958,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.837084294,-8.693205814,3.497643398,-1.684753064,-1.45378347,1,CMIP5 -1958,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.286438556,-0.152112743,0.762161825,0.160752049,0.053037433,1,CMIP5 -1958,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.816078566,-8.755949415,3.476965016,-1.79480466,-1.673432183,1,CMIP5 -1959,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.877509793,-7.39294003,12.67138002,0.351033853,-0.997487609,1,CMIP5 -1959,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.452836363,-0.240658901,1.15673408,0.122400954,0.02386387,1,CMIP5 -1959,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.386201589,-7.411033346,10.96933432,0.142774093,-1.107988858,1,CMIP5 -1960,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.253474073,-4.176485583,2.720883069,-0.299743382,-0.679686863,1,CMIP5 -1960,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.287948315,-0.337909809,0.598143559,0.058571423,-0.046521894,1,CMIP5 -1960,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.105077249,-4.307735326,2.152026128,-0.356929729,-0.458454078,1,CMIP5 -1961,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.135892634,-2.460240443,4.035794221,-0.592414197,-1.333270527,1,CMIP5 -1961,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.217492679,-0.046890666,0.498557293,0.220768996,0.209191631,1,CMIP5 -1961,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.994271719,-2.408022413,3.526785573,-0.803793786,-1.529995469,1,CMIP5 -1962,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.478815146,-2.196869677,7.793484636,1.834835898,0.906025421,1,CMIP5 -1962,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.319183343,-0.293506708,0.516883654,0.172628806,0.231394082,1,CMIP5 -1962,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.185778747,-1.901803976,7.118506582,1.605845944,0.82827698,1,CMIP5 -1963,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.345033733,-5.093969919,3.755046562,-0.532792391,-0.11610752,1,CMIP5 -1963,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.377525681,-0.435706471,0.741582492,0.153370017,0.093337838,1,CMIP5 -1963,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.021537278,-4.747973324,3.319406864,-0.580745366,-0.231338901,1,CMIP5 -1964,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,7.36471566,-4.052011485,19.60473142,2.856494897,1.742833059,1,CMIP5 -1964,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.181405505,0.082337348,0.523875496,0.26553804,0.240060671,1,CMIP5 -1964,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.769314037,-4.123546715,17.68395532,2.38671933,1.398014812,1,CMIP5 -1965,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.093523511,-3.818221957,6.1863748,1.6202682,1.480361168,1,CMIP5 -1965,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.406900889,-0.341031403,0.991115178,0.33746904,0.307329926,1,CMIP5 -1965,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.882962654,-4.175426589,5.145957052,1.27605242,1.522769266,1,CMIP5 -1966,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.545287765,-10.28624777,4.015595799,0.230819348,1.040925845,1,CMIP5 -1966,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.278353056,-0.407077016,0.451070366,0.191033242,0.278599217,1,CMIP5 -1966,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.457879616,-10.09719418,4.407830745,0.104943302,0.706375325,1,CMIP5 -1967,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.887935342,-2.961469221,5.40648175,1.388135313,1.492352634,1,CMIP5 -1967,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.499510077,-0.128181468,1.432853662,0.357327531,0.270637652,1,CMIP5 -1967,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.729893445,-3.161713347,4.226359001,1.089258706,1.279461605,1,CMIP5 -1968,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.993154434,-8.618433928,12.63615847,0.976267189,0.176361208,1,CMIP5 -1968,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.357958224,-0.32642472,0.800243861,0.245499984,0.260393054,1,CMIP5 -1968,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.503159806,-8.491726598,11.11238665,0.689202698,-0.142133469,1,CMIP5 -1969,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.051044837,-4.318016504,5.640170415,1.211258788,1.438275475,1,CMIP5 -1969,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.616526261,-0.316843541,1.735458292,0.343782244,0.137297396,1,CMIP5 -1969,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.664361702,-3.994803535,4.282976724,0.897536741,1.058913543,1,CMIP5 -1970,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.464726913,-3.793587177,4.64033363,0.667721707,1.114362738,1,CMIP5 -1970,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.38157575,-0.430845178,0.735277724,0.168766073,0.072009254,1,CMIP5 -1970,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.255522844,-3.362743089,4.035862071,0.533227045,0.968034819,1,CMIP5 -1971,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.227640919,-2.367021815,7.537706095,0.229117814,-0.438929843,1,CMIP5 -1971,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.661461535,-0.783095681,1.331535849,0.168025693,0.150062275,1,CMIP5 -1971,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.958124209,-3.300904618,6.611067178,0.060503618,-0.2725756,1,CMIP5 -1972,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.463049872,-3.785528373,3.678134077,0.966595863,1.496994273,1,CMIP5 -1972,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.387435156,-0.108670128,0.826794062,0.306825997,0.282727118,1,CMIP5 -1972,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.196469971,-3.669125465,3.147287686,0.669987724,1.16617351,1,CMIP5 -1973,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.038986209,-5.391768382,3.79444562,-0.286498841,0.071889562,1,CMIP5 -1973,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.256207339,-0.301573499,0.491850291,0.141668242,0.171446674,1,CMIP5 -1973,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.7828027,-5.081047018,3.313853529,-0.438631599,-0.289516051,1,CMIP5 -1974,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.1902781,-9.149080254,5.570613064,-0.933384907,-0.620275886,1,CMIP5 -1974,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.513844405,-0.025452705,1.207796808,0.464739531,0.299157235,1,CMIP5 -1974,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.160670775,-9.69449176,4.823958322,-1.225954439,-0.808484337,1,CMIP5 -1975,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.161512741,-11.14369992,9.170370707,0.154064459,1.678632948,1,CMIP5 -1975,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.537293644,-0.159103109,1.453047673,0.39644204,0.155335466,1,CMIP5 -1975,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.650347986,-10.85426068,7.636030479,-0.192257021,1.390606797,1,CMIP5 -1976,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.839208235,-6.832656689,16.42020137,1.367252964,0.249987356,1,CMIP5 -1976,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.381313429,-0.348483059,0.811699071,0.159310432,0.069133856,1,CMIP5 -1976,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.499534084,-7.189241821,15.12214031,1.05918863,0.236388851,1,CMIP5 -1977,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.212336312,-8.214899217,9.145669289,1.633143171,2.432246033,1,CMIP5 -1977,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.471932529,-0.191059581,0.87564005,0.347411827,0.312214595,1,CMIP5 -1977,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.969562469,-8.535333556,8.021027876,1.287044133,2.012676951,1,CMIP5 -1978,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.804388468,-1.740290034,9.107825739,2.28658622,0.94245833,1,CMIP5 -1978,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.309074449,-0.005043132,0.767473573,0.353520974,0.343966623,1,CMIP5 -1978,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.52114373,-1.814842315,7.977044612,1.884907821,0.656905188,1,CMIP5 -1979,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.405088231,-1.544563061,12.77274495,2.185689951,1.060144209,1,CMIP5 -1979,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.296343383,0.126961669,1.008131278,0.444922444,0.380703433,1,CMIP5 -1979,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.962648437,-1.684779717,11.13462883,1.667555332,0.782332534,1,CMIP5 -1980,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.268874131,-3.059585756,6.596309591,2.016173667,1.736274344,1,CMIP5 -1980,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.415746889,0.031352552,1.235996848,0.549768221,0.451598383,1,CMIP5 -1980,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.078990793,-3.717131927,5.398915836,1.513552902,1.546379547,1,CMIP5 -1981,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.753195259,-5.030591832,7.664911317,0.832124128,-1.387073294,1,CMIP5 -1981,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.41643437,-0.039744539,1.017953863,0.453014476,0.378534062,1,CMIP5 -1981,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.535055042,-5.584157433,6.479011332,0.40509969,-1.49086932,1,CMIP5 -1982,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.085203533,-9.437348743,2.782040174,-0.033850043,1.566398902,1,CMIP5 -1982,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.225445033,0.057932266,0.676000951,0.346926378,0.263056811,1,CMIP5 -1982,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.84712194,-9.228079327,2.333550913,-0.343490299,1.110545818,1,CMIP5 -1983,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,1.880813282,0.449397128,6.469236309,3.484629508,3.523474154,1,CMIP5 -1983,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.44284301,0.079034903,1.260987574,0.588086338,0.629450068,1,CMIP5 -1983,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,1.593175151,0.370362324,5.785522483,2.929289244,2.851465704,1,CMIP5 -1984,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.200032896,-2.931340934,9.300400603,1.651907918,2.310035424,1,CMIP5 -1984,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.487288111,-0.182874519,1.379862912,0.44382874,0.415693478,1,CMIP5 -1984,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.754987851,-3.406893709,7.790376234,1.200788235,2.036436165,1,CMIP5 -1985,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.302189431,-3.25367452,11.0188494,2.353539023,0.173694308,1,CMIP5 -1985,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.608588604,-0.144793684,1.575407378,0.564702216,0.611587831,1,CMIP5 -1985,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.742489396,-3.10888161,9.636030813,1.751545231,0.183648042,1,CMIP5 -1986,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.558854609,-1.713913123,7.780634467,2.905167102,2.974855733,1,CMIP5 -1986,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.338863363,0.046639887,1.013752794,0.466513503,0.515354053,1,CMIP5 -1986,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.27649106,-1.933322495,6.873098886,2.382321926,2.30020891,1,CMIP5 -1987,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.587906319,-2.093225994,5.906945149,2.795049439,2.789970812,1,CMIP5 -1987,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.345957377,0.069633659,1.104421434,0.449419382,0.468973809,1,CMIP5 -1987,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.353527812,-2.162858979,5.173691511,2.308933751,2.263078275,1,CMIP5 -1988,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.323399183,-2.787048247,10.94059017,2.015836319,1.383462406,1,CMIP5 -1988,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.534071721,-0.370254569,1.253204883,0.477196672,0.462582914,1,CMIP5 -1988,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,4.170642843,-2.815626493,10.14352461,1.421429579,0.803180409,1,CMIP5 -1989,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.195782678,-1.755863743,10.40133385,3.714033719,3.053863616,1,CMIP5 -1989,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.244823933,0.056586882,0.723856498,0.388370013,0.44184895,1,CMIP5 -1989,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.843216265,-1.888012325,9.432376341,3.218677563,2.479174879,1,CMIP5 -1990,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,7.338836615,-5.110908497,18.95015029,4.186791828,3.924112516,1,CMIP5 -1990,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.47953417,0.044161717,1.279696991,0.54958345,0.49082917,1,CMIP5 -1990,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.861694981,-5.531998003,17.21019864,3.409046516,2.871258943,1,CMIP5 -1991,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.522077558,-0.624283925,10.62829161,3.043128932,1.757169227,1,CMIP5 -1991,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.366441553,0.041598006,1.026743831,0.590322209,0.671200373,1,CMIP5 -1991,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.125200412,-0.711512066,9.172914007,2.412970694,0.99541594,1,CMIP5 -1992,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.765623998,0.008771137,9.381105875,4.919185233,5.427401523,1,CMIP5 -1992,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.398587705,0.047317098,1.06850646,0.69753522,0.893224359,1,CMIP5 -1992,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.368175416,-0.402121375,8.41887031,4.198861983,4.53188442,1,CMIP5 -1993,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.352112632,0.59961308,14.36851186,5.671976224,5.414548508,1,CMIP5 -1993,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.345261149,-0.048028566,0.962934252,0.598314296,0.683880293,1,CMIP5 -1993,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.880415715,0.647641685,12.69718937,4.953751815,4.562154296,1,CMIP5 -1994,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.307265594,1.046267942,9.503118967,4.431162754,3.847353989,1,CMIP5 -1994,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.504557553,-0.080729184,1.472911531,0.539900301,0.520587057,1,CMIP5 -1994,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.015343861,0.741426339,8.758638146,3.916143684,3.167179885,1,CMIP5 -1995,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.109494616,-4.783093009,10.79324512,2.481493832,1.383014285,1,CMIP5 -1995,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.366372268,0.075362009,1.047787294,0.54070089,0.505393172,1,CMIP5 -1995,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.037530148,-5.348155973,10.11829248,1.844719271,0.896918263,1,CMIP5 -1996,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.116968826,-1.049523353,8.374099053,2.784400827,2.593124544,1,CMIP5 -1996,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.455107592,0.075136351,1.376265859,0.606600032,0.509657959,1,CMIP5 -1996,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.720748004,-1.124659663,7.096655511,2.139231447,2.091960747,1,CMIP5 -1997,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.992084956,-1.921792603,6.495693399,2.294887359,1.714909827,1,CMIP5 -1997,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.374422542,0.045090094,0.945236272,0.563673619,0.65448052,1,CMIP5 -1997,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.75149184,-2.542115075,5.546831473,1.762744028,1.282538323,1,CMIP5 -1998,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,5.646782161,-11.79871243,4.815579048,0.150304469,1.498344409,1,CMIP5 -1998,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.483670958,0.001794041,1.394089081,0.779976989,0.959998453,1,CMIP5 -1998,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,8.589994381,-11.73682059,19.45593283,1.993412798,1.467316992,1,CMIP5 -1999,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,4.459588096,-1.599895171,11.04742332,2.991616065,2.171725934,1,CMIP5 -1999,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.449200229,0.041869526,1.122227913,0.55311217,0.57607634,1,CMIP5 -1999,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.950392582,-1.641765107,18.85422194,4.458923499,3.066416872,1,CMIP5 -2000,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.238249826,-1.440134587,17.64420519,4.02551939,2.956983109,1,CMIP5 -2000,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.594033883,-0.35052883,1.395837099,0.614521074,0.671881792,1,CMIP5 -2000,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.573604213,-1.646530703,15.6900067,3.255727774,2.087300338,1,CMIP5 -2001,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,2.501368063,-1.870858305,6.799475533,2.64813124,2.430102232,1,CMIP5 -2001,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.607022092,0.048009241,1.591854578,0.759469964,0.749249375,1,CMIP5 -2001,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,2.003724189,-1.918868314,5.342565367,1.920767625,1.881761659,1,CMIP5 -2002,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.018930387,-11.45312285,8.66407851,0.823839535,1.706063474,1,CMIP5 -2002,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.386292511,-0.026903502,1.184915106,0.556560423,0.579791851,1,CMIP5 -2002,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,5.801730137,-11.41316127,7.575472294,0.678174829,1.250251009,1,CMIP5 -2003,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,6.570751588,-2.555441104,16.95491082,4.940545469,3.38469406,1,CMIP5 -2003,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.505189869,-0.051662292,1.180180888,0.683042034,0.924146198,1,CMIP5 -2003,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,6.131006072,-2.760938933,15.3827151,4.048891639,2.368513557,1,CMIP5 -2004,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.624171506,-0.122065001,9.794589961,5.645869959,6.801040223,1,CMIP5 -2004,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.513238221,0.012833404,1.449862406,0.843105672,0.968763612,1,CMIP5 -2004,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.182552247,-0.134898421,8.37840832,4.804146191,5.59672612,1,CMIP5 -2005,nbp,carbon_cycle,nbp,historical,PgC/yr,Simulated,global,3.896996142,0.17953535,10.68942864,5.306700566,5.634965306,1,CMIP5 -2005,nbp,carbon_cycle,nbp_HL,historical,PgC/yr,Simulated,HL,0.574103742,0.14072608,1.730398636,0.989902072,0.907991452,1,CMIP5 -2005,nbp,carbon_cycle,nbp_LL,historical,PgC/yr,Simulated,LL,3.41433226,0.038809341,9.228393333,4.267878509,4.394550295,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/rcp85/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/rcp85/ensemble_mean_model.csv deleted file mode 100644 index 7e858f8e8..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/rcp85/ensemble_mean_model.csv +++ /dev/null @@ -1,3459 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",0.0308151866453465 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",-0.326880577898618 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",0.634005739366679 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",0.0481539502090761 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",-1.23980630472428 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",1.04117133008812 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",1.10064424912206 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",0.501604107548998 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",-0.0149339053211042 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",-0.500447783954739 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",-0.12347401500729 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",1.07253057514365 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",1.55032591142271 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",-1.5138351586876 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",-0.816471471400652 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",1.07234464733872 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",-0.777266732523967 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",0.566115978957238 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",0.229542079561251 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",0.903863276162071 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",0.443306259320246 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",-0.361488984538779 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",-0.0777029585292574 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",1.12521065608893 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",1.52042007228674 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",0.195445320244452 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",-1.71523373989336 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",2.39835993875926 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",2.93500613864227 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",1.16533625075944 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",1.62173702026961 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",0.0159155037513245 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",1.84760111389365 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",1.5162119395474 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",0.575896817467062 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",1.00825704780262 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",1.11857535956151 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",0.348350976443988 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",0.851955048165322 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",1.99132259929387 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",2.32823209210401 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",-0.73268022180155 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",1.32214248505939 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",1.07504135657578 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",0.817649292997894 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",-0.097679146130851 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",2.04648324156622 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",3.16274781675629 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",1.523799235339 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",0.889235712557551 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",2.28813434960527 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",1.4216927939481 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",0.438589760904208 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",2.48847306510775 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",1.29668901682478 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",2.46534449232526 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",0.770404584127278 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",0.406336772247491 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",1.25524513127999 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",3.5937546895708 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",2.67135700440212 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",1.69552581082048 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",0.950916050527436 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",2.33753686985303 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",2.29825044371268 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",2.03220480655971 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",1.97208175793027 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",3.19947805023093 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",1.56809010830412 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",2.630738165368 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",1.43754250390101 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",2.33108505598203 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",0.508253746802742 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",-0.603131392996862 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",2.27399762704077 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",2.95942007773104 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",3.18123828387054 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",0.307567540823061 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",0.457215969150442 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",2.35882722825367 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",2.81152504557354 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",0.673302460869126 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",0.997267594910974 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",0.226527694057399 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",2.10102701791454 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",2.41485442793668 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",1.639658028385 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",-0.00686034670832045 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",0.935708301443675 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",1.49642110063662 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",1.98486936981059 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",1.31976806569827 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",0.276657131215422 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",1.03133432716075 -"CanESM2","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",2.00790829894489 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.225422724933724 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.0903245654881588 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.242796318198726 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.322222556805217 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.360042009924693 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.249178855983831 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.143480802497045 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.266228477927303 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.492640843428289 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.302950946144843 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",0.258563558616226 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.260802604304896 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.173935654929726 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.251666604813244 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",0.0898059232934948 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.257777011823027 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.223343140313953 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.416464398621831 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.155808946402819 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.350442748103448 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.439341263171875 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",0.359191945444876 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.368174774508159 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.296559505325116 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.382755412291721 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.241105208417165 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.321173686967677 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",0.503368536129885 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",0.400052961604364 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",0.578450403927111 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.33903882265914 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",0.493478798980798 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",0.511347218920099 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.577527013473984 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",0.142755467192744 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",0.347848353467201 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.241553777766581 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",0.536525457625401 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",0.654052955598622 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",0.252864655079241 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.514564009085765 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.431473522384779 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",0.73887374077111 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",0.16540680227702 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",0.388382890384602 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",0.494642456336692 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",0.643417305193042 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",0.407223253185428 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",0.514295262030423 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",0.724108668298031 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.489179229535445 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",0.450083159828588 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",0.283671825059844 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",0.836979614090056 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",0.681211351237871 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",0.723599159757762 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",0.811729583171856 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",0.450026755233734 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",0.339300062068408 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",0.777289104267386 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",0.59419070350955 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",0.934609354829 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",0.723181704627714 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",0.366781186460969 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",0.405031176130817 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",0.741390724963384 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",0.615580587340375 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",0.591288239757551 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",0.646116912459276 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",0.763781787574306 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",0.473717185211477 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",0.509256025512283 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",0.661553977605522 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",0.728237501312618 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",0.623966355706548 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",0.336692424855851 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",0.759743552008971 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",0.533476686467164 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",0.472930855145293 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",0.464632083225664 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",0.592492380608372 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",0.586602951797047 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",0.582683082524359 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",0.468312241305878 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",0.464047092556143 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",0.56791902700112 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.0353595200115 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",0.656871740494533 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",0.532676813741111 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",0.981420667304038 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",0.226006970951451 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",0.713329033355245 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",0.46547838554679 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",0.594814299373204 -"CanESM2","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",0.638502181011992 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",-0.194607715434154 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",-0.417204981275366 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",0.391209600831218 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",-0.274068484290826 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",-1.59984835078239 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",0.791992702651844 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",0.957163521455918 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",0.235375587785644 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",-0.50757497024467 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",-0.803398729898286 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",-0.382038292761436 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",0.811727729789351 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",1.37639040646577 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",-1.76550208854177 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",-0.906277400415612 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",0.814567699937537 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",-1.00061012481146 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",0.149651202512547 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",0.0737331685263214 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",0.553420531533346 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",0.00396502439425261 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",-0.720680632231924 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",-0.445877783221105 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",0.828651558570488 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",1.13766475473904 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",-0.0456597157416408 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",-2.03640740576673 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",1.89499191972624 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",2.53495327671467 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",0.586885971411667 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",1.28269792763154 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",-0.477563037016859 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",1.33625354395733 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",0.938684552042102 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",0.433141040641316 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",0.660408519243224 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",0.877021811321002 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",-0.188174704760724 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",0.19790263122294 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",1.73845774872 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",1.81366766499343 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",-1.16415388681127 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",0.583268524102802 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",0.90963430464393 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",0.429266457087567 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",-0.59232123170605 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",1.40306558370431 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",2.75552453997224 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",1.00950364269515 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",0.165127088874428 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",1.79895521856466 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",0.971609329762213 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",0.154918053338357 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",1.65149358400987 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",0.615477813101772 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",1.74174497251264 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",-0.0413247036711469 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",-0.0436902453372858 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",0.915944828928894 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",2.81646559046665 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",2.07716622871099 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",0.760916798676774 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",0.227734401399136 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",1.97075542017909 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",1.89321889864492 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",1.29081396835455 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",1.35650122001449 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",2.60818991650953 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",0.921973038324149 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",1.86695584471965 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",0.963825455516393 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",1.82182908583212 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",-0.153300125789033 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",-1.33136880701345 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",1.65003130626492 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",2.62272762953103 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",2.42149457690388 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",-0.225909029496989 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",-0.0157146682796259 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",1.89419538557857 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",2.21903256154292 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",0.0866997197381125 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",0.414584645563865 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",-0.241784723993526 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",1.63697998499705 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",1.84693560155894 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",0.604298707726421 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",-0.663732499598764 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",0.403031320583602 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",0.515000181881244 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",1.75886203275406 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",0.606439105463828 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",-0.188821338139199 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",0.43652019576506 -"CanESM2","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",1.36940636673967 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",2.41975465421499 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",2.01512819656898 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",-0.272131395487103 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",2.03590087335975 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",-0.793102215386069 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",2.47353294933235 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",2.7021562515585 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",1.77269397573315 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",-0.416441983228055 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",-1.96647631626748 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",-0.969569434400024 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",7.94952035605163 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",0.0142656076366208 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",1.11268214290866 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",2.53797103452967 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",0.429628949435147 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",0.873228867142418 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",6.83367019495035 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",-5.09430032832935 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",-0.622164189433951 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",9.3181975105414 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",-1.85092689414694 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",-1.64412664488814 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",6.45167588555013 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",9.33344002914674 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",-3.96815229849534 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",-1.02805479813229 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",8.43311966019906 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",2.63169579514354 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",7.46548513774821 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",-4.21520463572163 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",0.366611204458233 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",6.30638296284587 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",1.02255938439619 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",1.65748556394864 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",6.42782285595974 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",2.67272802468169 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",-3.3313557094205 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",-0.0088330266634774 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",-0.0637453999095322 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",7.38817552090464 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",9.72652521716492 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",-0.654227042864543 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",0.978950918281609 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",1.51362568892542 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",8.50093085235241 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",3.0421226455809 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",7.31821210313986 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",13.6060663015477 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",2.52873480174877 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",-0.852195285273793 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",2.8541471319952 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",8.44252157253002 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",2.98231232800996 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",1.58889728644934 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",0.372962361113078 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",13.6541278479184 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",2.98171555992189 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",4.81478123344899 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",4.27497795688818 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",7.72036623584957 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",-0.48087476024561 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",-2.86334154275376 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",3.41574611635489 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",11.9942294749883 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",4.15156599456683 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",3.53250998566275 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",5.66486370232471 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",6.25256927986344 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",11.2464420642285 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",-1.45840244293604 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",7.7196086138294 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",0.040949116311436 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",-0.765604074840472 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",-0.141277349058041 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",8.66992881902953 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",3.53528793307004 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",0.613240174135245 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",7.96180637938505 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",8.06425103165781 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",2.83960754507312 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",1.73902403066699 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",1.93930165297933 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",1.84578921955582 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",4.1113492944644 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",3.74658565827021 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",2.27311860117773 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",3.0277197845011 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",4.68198666126852 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",2.34227614074272 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",-1.65364437205021 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",11.4013653118473 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",6.08099121611552 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",-4.84512311066009 -"GFDL-ESM2G","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",4.65792291302709 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.0916772590261752 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.486012430387607 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.829880369478792 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.418390980634653 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.536135103281346 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.194498342960117 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.569662980908451 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.0586089821686493 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.781720237352636 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.643776094593922 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",-0.03981511270687 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.37673678114093 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.511619693238546 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.727125813358208 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",0.706303023947779 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.456689360266934 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.712188268133875 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.423724799021921 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.173587176789585 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.0407077685188929 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",0.62567922139657 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",-0.0188925048225929 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.216269703650363 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.124744762995789 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.38552821715955 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.341605755625371 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.323079037843056 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",-0.136228777490714 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",0.424111540242555 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.39299223353841 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.857223954750732 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.01324178406943 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",0.631132837410214 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.0581566941077772 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",-0.275627049403137 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",0.475990749548842 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.153819884728967 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",0.283809524549216 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",-0.323631949964793 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",-0.350371790871547 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.207970106259143 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.380346167690459 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",-0.0752291341040921 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.06907074787116 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",0.547614866892754 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",0.619623347340648 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",0.256408329401365 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.23663611712587 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",0.837556038239737 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",0.796451778221934 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.615503260239966 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",0.695685922152112 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",0.689534923430084 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",0.10854975886492 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",0.137580290910862 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",-0.223735771154837 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",0.284520581428352 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",0.0259144382336675 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",0.44166679737227 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",-0.640870630573571 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",-0.227135526721437 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",-0.620807946698239 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",-0.187464408977884 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",-0.330015112325033 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",0.30777734350629 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",0.195037997081515 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",0.402506647717992 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",-0.602513095289556 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",-0.0595989029517647 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",-0.140550945053953 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",0.216830671642261 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",0.0699548875389728 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",-0.162195641305989 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",-0.360842638493077 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",0.0269866061812141 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",-0.125013222639413 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",0.182881599829517 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",-0.102053606237221 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",-0.935226180956998 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",-0.885239357977041 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",0.488418192646324 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",-0.97826771425295 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",-1.1275266387803 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",-0.852480206557899 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",0.0986638684870207 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",-0.91734452731671 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",-0.555999214416183 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",-0.961505856291468 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",-0.167772087044741 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",-0.712469480428049 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",-0.495213363716633 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",-0.824571521316377 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",-0.298882295431709 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",-1.42592914917734 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",-0.58493316519957 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",2.32807782179913 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",1.52911681182463 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",-1.10201181303049 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",1.61750984200574 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",-1.32923789202732 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",2.27903483527186 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",2.13249332677326 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",1.71408522656054 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",-1.19816234456973 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",-2.61025234423947 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",-0.929754239980697 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",7.57278339686794 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",-0.49735392040655 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",0.385556340784799 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",1.83166723244009 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",-0.0270602916247799 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",0.161040535546782 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",6.40994495799227 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",-5.26788760118617 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",-0.662871934678394 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",8.69251761251095 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",-1.83203570064185 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",-1.86039726197974 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",6.32693077679206 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",7.94791156303293 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",-4.30975881824767 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",-1.35113355762537 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",8.56934826496694 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",2.20758347472344 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",6.07249364891367 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",-5.07242898853529 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",-0.646630616883998 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",5.67525083426916 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",0.96440270805651 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",1.93311269137691 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",5.95183276994608 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",2.51890763462003 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",-3.61516478732932 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",0.314799037955933 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",0.286626431307985 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",7.18020478647138 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",9.34617889116504 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",-0.578997819504109 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",-0.0901197692089061 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",0.966010724269403 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",7.88130667392123 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",2.78571401711493 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",6.08157553775857 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",12.7685115491464 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",1.73228309739355 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",-1.46769801430716 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",2.1584618117118 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",7.75298663920096 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",2.87376218203958 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",1.45131757026291 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",0.596698192701005 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",13.3696130024223 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",2.95580077483369 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",4.3731143685552 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",4.91584836063206 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",7.9475011340395 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",0.139933208322049 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",-2.67587771112085 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",3.74576119499714 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",11.6864515680403 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",3.95652762895546 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",3.13000231268461 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",6.26737792322872 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",6.31216713450147 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",11.3869918219856 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",-1.67523346730767 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",7.64965294463944 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",0.203144780663195 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",-0.404761532872598 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",-0.168263954703565 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",8.79494259367809 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",3.35240630995487 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",0.715293813954086 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",8.89703319978669 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",8.94948943446055 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",2.35118903908057 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",2.71729170121446 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",3.06682771829112 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",2.69826903857038 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",4.01268559221857 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",4.663930191528 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",2.8291185222629 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",3.98922557585646 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",4.84975880249294 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",3.05474563284254 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",-1.15843124447664 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",12.2259375325878 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",6.37987218311949 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",-3.41919477753007 -"GFDL-ESM2G","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",5.24285667768629 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2005,"Simulated","PgC/yr","global",1.20592178755099 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",8.23084820433629 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",4.9461645117558 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",5.2108423465704 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",3.80529994979146 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",2.93351028402919 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",6.6329374091984 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",11.0404132291244 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",11.6556360956519 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",6.01260465005744 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",5.37482747521043 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",6.06179571136039 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",2.72413016196496 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",7.38045726957298 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",5.91971797445259 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",7.81130116704642 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",10.8002768299152 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",7.17907944203206 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",5.29391430029932 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",10.2467881099043 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",8.24247690323583 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",8.8222279885894 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",9.32315551506841 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",10.524470114694 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",1.22107912481902 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",6.40820661634585 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",7.88661131615316 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",6.61252371127893 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",6.57844542750044 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",9.11669912347014 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",5.82919948030881 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",3.55098526755929 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",10.9112124939922 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",10.8336367151808 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",6.66400817839627 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",16.2468959235795 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",11.476527107195 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",10.1288120331569 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",5.86873660078165 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",10.7256589654886 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",7.80216859130242 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",10.9470086872581 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",9.10174225142626 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",11.8812373585369 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",9.08694249135422 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",8.68278374056884 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",11.503376095395 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",13.1232188906649 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",15.8674073718486 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",10.9035204419914 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",10.1625841362667 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",11.9500589708826 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",12.0101563109346 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",9.03928179717641 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",3.10602847888872 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",14.7681500012353 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",13.0283488640919 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",11.2258967811355 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",6.23573555507786 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",18.1497626647367 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",14.3790839197869 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",5.91476299531578 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",5.5037396176353 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",6.80338606939801 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",11.2061163570684 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",10.9405189708167 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",14.1773494668375 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",13.3604472437945 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",8.10061187073567 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",12.7914213294477 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",16.010142928003 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",7.84843628408681 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",10.0179556650472 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",7.79025931615962 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",6.78037064012213 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",4.18108698636301 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",13.2808058179061 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",8.81103081139411 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",5.31452559467485 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",13.5682746116181 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",11.4227100903249 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",6.92486312905327 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",4.34417926723895 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",6.71574895787723 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",12.8567504177297 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",8.72874301397298 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",6.70688808396303 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",13.8519936305208 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",2.01983526365506 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",10.9542885214146 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",16.3552597504721 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",13.0075173180357 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",4.60487093941327 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",11.5400425710169 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",8.62244349361147 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",11.4500885941296 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2101,"Simulated","PgC/yr","global",-4.70915574003402 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2102,"Simulated","PgC/yr","global",-2.08582229183282 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2103,"Simulated","PgC/yr","global",18.0007046922611 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2105,"Simulated","PgC/yr","global",5.98119968278292 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2106,"Simulated","PgC/yr","global",8.08691942833419 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2107,"Simulated","PgC/yr","global",4.84084184714419 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2108,"Simulated","PgC/yr","global",2.44119348561157 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2109,"Simulated","PgC/yr","global",-10.170994720835 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2110,"Simulated","PgC/yr","global",13.8474711650921 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2111,"Simulated","PgC/yr","global",9.82302334006492 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2112,"Simulated","PgC/yr","global",7.63689497424391 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2113,"Simulated","PgC/yr","global",18.0301430787958 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2114,"Simulated","PgC/yr","global",12.540495278977 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2115,"Simulated","PgC/yr","global",-2.45743124920071 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2116,"Simulated","PgC/yr","global",10.0456515403973 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2117,"Simulated","PgC/yr","global",1.17013275279982 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2118,"Simulated","PgC/yr","global",13.644545771223 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2119,"Simulated","PgC/yr","global",9.87879701763564 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2120,"Simulated","PgC/yr","global",8.67019360219649 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2121,"Simulated","PgC/yr","global",17.7006422747575 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2122,"Simulated","PgC/yr","global",7.92827869801226 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2123,"Simulated","PgC/yr","global",6.92119149466056 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2124,"Simulated","PgC/yr","global",14.2991219693893 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2125,"Simulated","PgC/yr","global",-3.33047083989945 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2126,"Simulated","PgC/yr","global",13.3467242101371 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2127,"Simulated","PgC/yr","global",-4.21763924747984 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2128,"Simulated","PgC/yr","global",-0.722961570086399 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2129,"Simulated","PgC/yr","global",14.2756468669467 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2130,"Simulated","PgC/yr","global",7.00966751976481 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2131,"Simulated","PgC/yr","global",4.17181670975084 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2132,"Simulated","PgC/yr","global",-0.496114993742595 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2133,"Simulated","PgC/yr","global",6.52407248627262 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2134,"Simulated","PgC/yr","global",10.3902286591133 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2135,"Simulated","PgC/yr","global",1.33178890692281 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2136,"Simulated","PgC/yr","global",-3.71515172781274 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2137,"Simulated","PgC/yr","global",2.77363812830331 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2138,"Simulated","PgC/yr","global",2.87514586757792 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2139,"Simulated","PgC/yr","global",8.16042852730081 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2140,"Simulated","PgC/yr","global",-3.45104274960152 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2141,"Simulated","PgC/yr","global",-6.00906802203576 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2142,"Simulated","PgC/yr","global",6.37383215237058 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2143,"Simulated","PgC/yr","global",0.88917810027426 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2144,"Simulated","PgC/yr","global",10.5508705562576 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2145,"Simulated","PgC/yr","global",19.5790204608209 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2146,"Simulated","PgC/yr","global",5.45065239391776 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2147,"Simulated","PgC/yr","global",3.98579827995165 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2148,"Simulated","PgC/yr","global",10.3552388041671 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2149,"Simulated","PgC/yr","global",-0.459078607902954 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2150,"Simulated","PgC/yr","global",2.58783525827437 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2151,"Simulated","PgC/yr","global",4.91640037258322 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2152,"Simulated","PgC/yr","global",10.3702057303047 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2153,"Simulated","PgC/yr","global",3.73656775185297 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2154,"Simulated","PgC/yr","global",6.71542039009309 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2155,"Simulated","PgC/yr","global",-1.14564950626747 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2156,"Simulated","PgC/yr","global",-2.80403366456412 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2157,"Simulated","PgC/yr","global",6.72950416463469 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2158,"Simulated","PgC/yr","global",7.99537248083132 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2159,"Simulated","PgC/yr","global",-2.16487964190098 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2160,"Simulated","PgC/yr","global",-2.1307793731708 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2161,"Simulated","PgC/yr","global",8.5727750639367 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2162,"Simulated","PgC/yr","global",6.58237336085131 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2163,"Simulated","PgC/yr","global",-1.02186125175461 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2164,"Simulated","PgC/yr","global",12.0611080451372 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2165,"Simulated","PgC/yr","global",0.467238510400069 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2166,"Simulated","PgC/yr","global",-2.12622527086043 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2167,"Simulated","PgC/yr","global",2.29292053677685 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2168,"Simulated","PgC/yr","global",-3.88615175451423 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2169,"Simulated","PgC/yr","global",-4.95404933424759 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2170,"Simulated","PgC/yr","global",12.7564234312265 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2171,"Simulated","PgC/yr","global",-5.29413026223332 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2172,"Simulated","PgC/yr","global",-3.18445322537739 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2173,"Simulated","PgC/yr","global",-18.6294153266519 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2174,"Simulated","PgC/yr","global",-5.39913843479205 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2175,"Simulated","PgC/yr","global",0.597512057553076 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2176,"Simulated","PgC/yr","global",-0.0266961445260573 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2177,"Simulated","PgC/yr","global",10.4767212126002 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2178,"Simulated","PgC/yr","global",-3.45701568562356 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2179,"Simulated","PgC/yr","global",12.9375209853749 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2180,"Simulated","PgC/yr","global",7.00503941932436 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2181,"Simulated","PgC/yr","global",-8.01041662240905 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2182,"Simulated","PgC/yr","global",-0.846860017466894 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2183,"Simulated","PgC/yr","global",-0.253088565389726 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2184,"Simulated","PgC/yr","global",-3.97763274716203 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2185,"Simulated","PgC/yr","global",-13.1797023872553 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2186,"Simulated","PgC/yr","global",3.20586924941762 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2187,"Simulated","PgC/yr","global",2.83052982110034 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2188,"Simulated","PgC/yr","global",7.8067850289941 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2189,"Simulated","PgC/yr","global",0.588887897222414 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2190,"Simulated","PgC/yr","global",1.74051323509093 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2191,"Simulated","PgC/yr","global",-5.43268050023658 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2192,"Simulated","PgC/yr","global",4.33944982153337 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2193,"Simulated","PgC/yr","global",5.27720077699337 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2194,"Simulated","PgC/yr","global",3.46157783120894 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2195,"Simulated","PgC/yr","global",3.59186119115746 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2196,"Simulated","PgC/yr","global",6.04889671122769 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2197,"Simulated","PgC/yr","global",0.51653702985716 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2198,"Simulated","PgC/yr","global",1.99621859957224 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2199,"Simulated","PgC/yr","global",0.910797940903235 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2200,"Simulated","PgC/yr","global",9.53375338896906 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2201,"Simulated","PgC/yr","global",2.50606088990801 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2202,"Simulated","PgC/yr","global",-12.4019193024938 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2203,"Simulated","PgC/yr","global",5.51786199989695 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2204,"Simulated","PgC/yr","global",-6.17175934565247 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2205,"Simulated","PgC/yr","global",5.98356440563571 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2206,"Simulated","PgC/yr","global",-6.90656882069333 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2207,"Simulated","PgC/yr","global",-7.00482225089911 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2208,"Simulated","PgC/yr","global",0.411442311659321 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2209,"Simulated","PgC/yr","global",-1.97855556765142 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2210,"Simulated","PgC/yr","global",-12.3533298781615 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2211,"Simulated","PgC/yr","global",-11.399017819457 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2212,"Simulated","PgC/yr","global",-4.94016503292622 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2213,"Simulated","PgC/yr","global",-0.0586643180032769 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2214,"Simulated","PgC/yr","global",11.0718238266914 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2215,"Simulated","PgC/yr","global",-7.61859169763234 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2216,"Simulated","PgC/yr","global",0.663168024531441 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2217,"Simulated","PgC/yr","global",-0.878429228417094 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2218,"Simulated","PgC/yr","global",3.76101609057178 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2219,"Simulated","PgC/yr","global",8.97303577554334 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2220,"Simulated","PgC/yr","global",7.22636782641516 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2221,"Simulated","PgC/yr","global",8.07167903084623 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2222,"Simulated","PgC/yr","global",6.79195697777328 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2223,"Simulated","PgC/yr","global",-7.24271336988942 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2224,"Simulated","PgC/yr","global",5.97427603165477 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2225,"Simulated","PgC/yr","global",3.89594363751077 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2226,"Simulated","PgC/yr","global",0.820492070734324 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2227,"Simulated","PgC/yr","global",-5.79572176106437 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2228,"Simulated","PgC/yr","global",-4.50797412818696 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2229,"Simulated","PgC/yr","global",1.36965921951543 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2230,"Simulated","PgC/yr","global",2.80399023087907 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2231,"Simulated","PgC/yr","global",-8.80382939916896 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2232,"Simulated","PgC/yr","global",-2.2793772703159 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2233,"Simulated","PgC/yr","global",4.38700809800941 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2234,"Simulated","PgC/yr","global",-7.30783011571115 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2235,"Simulated","PgC/yr","global",-3.50761592870819 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2236,"Simulated","PgC/yr","global",2.39463740120171 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2237,"Simulated","PgC/yr","global",1.77651171672335 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2238,"Simulated","PgC/yr","global",6.32722941696567 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2239,"Simulated","PgC/yr","global",-1.71378543223443 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2240,"Simulated","PgC/yr","global",-1.45659704870688 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2241,"Simulated","PgC/yr","global",2.69278069328803 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2242,"Simulated","PgC/yr","global",-4.01067773821097 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2243,"Simulated","PgC/yr","global",-11.8794185059481 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2244,"Simulated","PgC/yr","global",-6.80871755423803 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2245,"Simulated","PgC/yr","global",-13.9463905784687 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2246,"Simulated","PgC/yr","global",-0.958422654830854 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2247,"Simulated","PgC/yr","global",3.31890621909082 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2248,"Simulated","PgC/yr","global",8.87602100968903 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2249,"Simulated","PgC/yr","global",-1.86741037626046 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2250,"Simulated","PgC/yr","global",-0.914701503130835 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2251,"Simulated","PgC/yr","global",-2.5227732067227 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2252,"Simulated","PgC/yr","global",-4.36341395509661 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2253,"Simulated","PgC/yr","global",-8.15932820727951 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2254,"Simulated","PgC/yr","global",-8.00415251983166 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2255,"Simulated","PgC/yr","global",-4.58584589951871 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2256,"Simulated","PgC/yr","global",0.195736153800145 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2257,"Simulated","PgC/yr","global",4.36024651339788 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2258,"Simulated","PgC/yr","global",4.08763096753665 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2259,"Simulated","PgC/yr","global",4.93767483498329 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2260,"Simulated","PgC/yr","global",-11.2003344488279 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2261,"Simulated","PgC/yr","global",0.0317197006256268 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2262,"Simulated","PgC/yr","global",-12.1488103071855 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2263,"Simulated","PgC/yr","global",1.20620603688983 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2264,"Simulated","PgC/yr","global",-12.7075701874739 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2265,"Simulated","PgC/yr","global",18.9868745546231 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2266,"Simulated","PgC/yr","global",3.29731485165538 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2267,"Simulated","PgC/yr","global",-10.4788333766177 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2268,"Simulated","PgC/yr","global",6.96317899886504 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2269,"Simulated","PgC/yr","global",2.55301913806834 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2270,"Simulated","PgC/yr","global",7.51803628211885 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2271,"Simulated","PgC/yr","global",17.4725189089387 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2272,"Simulated","PgC/yr","global",-4.72700054997004 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2273,"Simulated","PgC/yr","global",-4.86508427802275 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2274,"Simulated","PgC/yr","global",-4.01547796473662 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2275,"Simulated","PgC/yr","global",7.4835402842582 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2276,"Simulated","PgC/yr","global",2.0267396109232 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2277,"Simulated","PgC/yr","global",-14.6991365567807 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2278,"Simulated","PgC/yr","global",2.75729580213905 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2279,"Simulated","PgC/yr","global",3.25607858933679 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2280,"Simulated","PgC/yr","global",10.7852998496838 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2281,"Simulated","PgC/yr","global",-7.49904450116647 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2282,"Simulated","PgC/yr","global",-6.67135611228117 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2283,"Simulated","PgC/yr","global",9.60496371993797 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2284,"Simulated","PgC/yr","global",9.0626201639439 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2285,"Simulated","PgC/yr","global",3.24818491924249 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2286,"Simulated","PgC/yr","global",7.19298340916083 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2287,"Simulated","PgC/yr","global",4.17352671001786 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2288,"Simulated","PgC/yr","global",-3.17084561271635 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2289,"Simulated","PgC/yr","global",-1.25447919964871 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2290,"Simulated","PgC/yr","global",-6.17158239360226 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2291,"Simulated","PgC/yr","global",2.49099905312526 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2292,"Simulated","PgC/yr","global",-12.594777733361 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2293,"Simulated","PgC/yr","global",-6.52356415129202 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2294,"Simulated","PgC/yr","global",-8.30707029996361 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2295,"Simulated","PgC/yr","global",14.146092227714 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2296,"Simulated","PgC/yr","global",3.73968532524664 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2297,"Simulated","PgC/yr","global",-1.86557329224829 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2298,"Simulated","PgC/yr","global",-0.262678723049027 -"HadGEM2-ES","nbp","carbon_cycle","nbp","rcp85",2299,"Simulated","PgC/yr","global",0.00711581301140989 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2005,"Simulated","PgC/yr","HL",-2.3654648762037 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",1.72460734904801 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.67152605956312 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.78738083019269 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",1.91207935984592 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.79356402004174 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.96393231811544 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.81491094933929 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.74602297460281 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.74127886976603 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",2.00362024519114 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.76137858202063 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.9350734944707 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",2.06798088827499 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",2.24885271617052 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",2.05732928152625 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",2.43576123707734 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",2.06240603275221 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.92011358652373 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.90117915240281 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",2.41006319368959 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",2.05565829961929 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.95651041360797 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",2.82573950605294 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",2.46114393981434 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",2.36313770584166 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",2.61478925140884 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",2.26797074160325 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",2.44543965938874 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",2.68868347529784 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",2.59615021871835 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",2.59012714457076 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",2.85498108748591 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",3.13136283420971 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",2.44782190714433 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",2.88928399546494 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",2.78152484926336 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",3.02827668883276 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",3.28908823698246 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.80261211724242 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",3.32163656881379 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",3.30593823253312 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.90192779367398 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",3.02144746824464 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",2.98811435879762 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",3.13542403956039 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",3.57514960989511 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",3.73723222138768 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",3.62128294637794 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",3.37585371667707 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",3.57123926543796 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",3.26730663268147 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",4.25585803903691 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",4.17462490294246 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",3.75104438266639 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",4.14186137801614 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",3.93818261844002 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",3.61959909803069 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",4.18431536402841 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",4.11721048228684 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",3.20783267867044 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",4.01483048627934 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",4.45456779441925 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",3.97637788795672 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",4.00859816318168 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",3.92870358833204 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",3.91063489258565 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",3.42354614970591 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",3.98292848615645 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",4.06083741562943 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",4.34907577519166 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",4.17589348881022 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",4.32077035896431 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",4.65409091950684 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",3.58569407155039 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",3.95306028650838 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",4.11835642313892 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",3.84061813225083 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",4.03865973564588 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",4.05556969934224 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",4.31331233813321 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",4.03101887592636 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",4.11929319028326 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",3.9330360423217 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",3.81440896764127 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",4.31349216732798 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",4.21717971369155 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",4.27735176614157 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",4.86423600586085 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",4.57295484603218 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",4.4454386411965 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",4.21150644118686 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",4.29713222514368 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",3.86793034957815 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",3.72071126059384 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",3.98441376996603 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2101,"Simulated","PgC/yr","HL",4.85244778831031 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2102,"Simulated","PgC/yr","HL",4.58551505000047 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2103,"Simulated","PgC/yr","HL",3.16254995685161 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2104,"Simulated","PgC/yr","HL",5.40247832945134 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2105,"Simulated","PgC/yr","HL",4.23369992206199 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2106,"Simulated","PgC/yr","HL",4.04568436059334 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2107,"Simulated","PgC/yr","HL",3.6189760162056 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2108,"Simulated","PgC/yr","HL",4.27866173529683 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2109,"Simulated","PgC/yr","HL",3.59189178317124 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2110,"Simulated","PgC/yr","HL",4.5020411969937 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2111,"Simulated","PgC/yr","HL",4.100888161273 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2112,"Simulated","PgC/yr","HL",4.73738419089543 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2113,"Simulated","PgC/yr","HL",3.88429856841995 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2114,"Simulated","PgC/yr","HL",4.78699297110493 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2115,"Simulated","PgC/yr","HL",4.36576828852279 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2116,"Simulated","PgC/yr","HL",3.53337430979786 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2117,"Simulated","PgC/yr","HL",2.39689653645356 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2118,"Simulated","PgC/yr","HL",2.86795422142112 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2119,"Simulated","PgC/yr","HL",3.80224529080958 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2120,"Simulated","PgC/yr","HL",3.71106662209351 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2121,"Simulated","PgC/yr","HL",3.26063286276968 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2122,"Simulated","PgC/yr","HL",2.28793328707038 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2123,"Simulated","PgC/yr","HL",4.74739744162388 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2124,"Simulated","PgC/yr","HL",5.06057412265768 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2125,"Simulated","PgC/yr","HL",2.5166874596632 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2126,"Simulated","PgC/yr","HL",2.71623255551434 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2127,"Simulated","PgC/yr","HL",4.37419242101119 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2128,"Simulated","PgC/yr","HL",4.564417097609 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2129,"Simulated","PgC/yr","HL",4.17277168408582 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2130,"Simulated","PgC/yr","HL",2.10077247859448 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2131,"Simulated","PgC/yr","HL",5.06346944793594 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2132,"Simulated","PgC/yr","HL",3.57744826340995 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2133,"Simulated","PgC/yr","HL",1.79628357921163 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2134,"Simulated","PgC/yr","HL",3.46745299007883 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2135,"Simulated","PgC/yr","HL",4.52501117882703 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2136,"Simulated","PgC/yr","HL",2.35530106555108 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2137,"Simulated","PgC/yr","HL",2.80167324331253 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2138,"Simulated","PgC/yr","HL",1.81595283003388 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2139,"Simulated","PgC/yr","HL",4.1935235217091 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2140,"Simulated","PgC/yr","HL",3.0106025639221 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2141,"Simulated","PgC/yr","HL",2.79346671167404 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2142,"Simulated","PgC/yr","HL",3.8006200562459 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2143,"Simulated","PgC/yr","HL",2.03173371820682 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2144,"Simulated","PgC/yr","HL",2.56137870144012 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2145,"Simulated","PgC/yr","HL",3.54544920066727 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2146,"Simulated","PgC/yr","HL",3.07420942923471 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2147,"Simulated","PgC/yr","HL",3.5098324861736 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2148,"Simulated","PgC/yr","HL",3.57613302729082 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2149,"Simulated","PgC/yr","HL",3.35462860472946 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2150,"Simulated","PgC/yr","HL",2.89100245528901 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2151,"Simulated","PgC/yr","HL",2.59946396665441 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2152,"Simulated","PgC/yr","HL",3.08781324447144 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2153,"Simulated","PgC/yr","HL",3.15843871534423 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2154,"Simulated","PgC/yr","HL",2.72389102194164 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2155,"Simulated","PgC/yr","HL",4.33905725749935 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2156,"Simulated","PgC/yr","HL",2.07894888906726 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2157,"Simulated","PgC/yr","HL",2.95443897194179 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2158,"Simulated","PgC/yr","HL",3.80484265641783 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2159,"Simulated","PgC/yr","HL",3.92746660424746 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2160,"Simulated","PgC/yr","HL",3.18707895998863 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2161,"Simulated","PgC/yr","HL",4.70630007501823 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2162,"Simulated","PgC/yr","HL",3.87138999241324 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2163,"Simulated","PgC/yr","HL",3.11073808090023 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2164,"Simulated","PgC/yr","HL",3.49772749836782 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2165,"Simulated","PgC/yr","HL",3.31104222148648 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2166,"Simulated","PgC/yr","HL",4.02446602045641 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2167,"Simulated","PgC/yr","HL",1.84207426207394 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2168,"Simulated","PgC/yr","HL",3.20004772986807 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2169,"Simulated","PgC/yr","HL",1.73180089305082 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2170,"Simulated","PgC/yr","HL",4.40743448722572 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2171,"Simulated","PgC/yr","HL",1.70145746277756 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2172,"Simulated","PgC/yr","HL",2.09228122993798 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2173,"Simulated","PgC/yr","HL",1.96294596626844 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2174,"Simulated","PgC/yr","HL",2.66210050673863 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2175,"Simulated","PgC/yr","HL",3.96683941639942 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2176,"Simulated","PgC/yr","HL",2.78505491892954 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2177,"Simulated","PgC/yr","HL",4.54367127937299 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2178,"Simulated","PgC/yr","HL",1.73562922335638 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2179,"Simulated","PgC/yr","HL",4.36351101829545 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2180,"Simulated","PgC/yr","HL",4.29323166219085 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2181,"Simulated","PgC/yr","HL",3.68887013152474 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2182,"Simulated","PgC/yr","HL",3.06428646931535 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2183,"Simulated","PgC/yr","HL",2.33764590171034 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2184,"Simulated","PgC/yr","HL",3.56664346325511 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2185,"Simulated","PgC/yr","HL",2.43092082204419 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2186,"Simulated","PgC/yr","HL",4.01228579030973 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2187,"Simulated","PgC/yr","HL",2.82400185943195 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2188,"Simulated","PgC/yr","HL",2.34981078241948 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2189,"Simulated","PgC/yr","HL",2.36617448672083 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2190,"Simulated","PgC/yr","HL",5.13655985789698 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2191,"Simulated","PgC/yr","HL",3.26689904492076 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2192,"Simulated","PgC/yr","HL",3.1480552722985 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2193,"Simulated","PgC/yr","HL",2.76238410064367 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2194,"Simulated","PgC/yr","HL",3.89548860936025 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2195,"Simulated","PgC/yr","HL",2.64170020133208 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2196,"Simulated","PgC/yr","HL",4.46789020330097 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2197,"Simulated","PgC/yr","HL",3.94786329802164 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2198,"Simulated","PgC/yr","HL",2.10906267971606 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2199,"Simulated","PgC/yr","HL",2.09803516223213 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2200,"Simulated","PgC/yr","HL",3.17422756816101 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2201,"Simulated","PgC/yr","HL",3.84553070468892 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2202,"Simulated","PgC/yr","HL",2.92954429102794 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2203,"Simulated","PgC/yr","HL",3.50916433418631 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2204,"Simulated","PgC/yr","HL",3.37701470599733 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2205,"Simulated","PgC/yr","HL",2.94707124191977 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2206,"Simulated","PgC/yr","HL",2.55388667107092 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2207,"Simulated","PgC/yr","HL",3.98600815516993 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2208,"Simulated","PgC/yr","HL",2.49140031469917 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2209,"Simulated","PgC/yr","HL",1.15159546448016 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2210,"Simulated","PgC/yr","HL",2.8439326526312 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2211,"Simulated","PgC/yr","HL",2.13509622870194 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2212,"Simulated","PgC/yr","HL",3.3142234676602 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2213,"Simulated","PgC/yr","HL",1.96555145804951 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2214,"Simulated","PgC/yr","HL",3.22712594351515 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2215,"Simulated","PgC/yr","HL",1.65766040098002 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2216,"Simulated","PgC/yr","HL",2.24851382466705 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2217,"Simulated","PgC/yr","HL",1.80865342005741 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2218,"Simulated","PgC/yr","HL",2.31266514355849 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2219,"Simulated","PgC/yr","HL",3.07563301432475 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2220,"Simulated","PgC/yr","HL",2.88556694858159 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2221,"Simulated","PgC/yr","HL",3.52736395160588 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2222,"Simulated","PgC/yr","HL",4.3039130649066 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2223,"Simulated","PgC/yr","HL",2.03165456326418 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2224,"Simulated","PgC/yr","HL",2.7583505092321 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2225,"Simulated","PgC/yr","HL",3.95922188180558 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2226,"Simulated","PgC/yr","HL",2.10910782512061 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2227,"Simulated","PgC/yr","HL",4.35476183889431 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2228,"Simulated","PgC/yr","HL",2.34967233651221 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2229,"Simulated","PgC/yr","HL",1.56569800804103 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2230,"Simulated","PgC/yr","HL",1.47392010932194 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2231,"Simulated","PgC/yr","HL",1.19444447278222 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2232,"Simulated","PgC/yr","HL",2.26452479287421 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2233,"Simulated","PgC/yr","HL",2.54832024269032 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2234,"Simulated","PgC/yr","HL",1.93236446922853 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2235,"Simulated","PgC/yr","HL",1.80083303211248 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2236,"Simulated","PgC/yr","HL",2.82640991531047 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2237,"Simulated","PgC/yr","HL",2.01468621151127 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2238,"Simulated","PgC/yr","HL",2.62888312001192 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2239,"Simulated","PgC/yr","HL",1.30243980469191 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2240,"Simulated","PgC/yr","HL",2.645389784761 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2241,"Simulated","PgC/yr","HL",3.5327001384233 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2242,"Simulated","PgC/yr","HL",1.20634209269644 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2243,"Simulated","PgC/yr","HL",3.65839397376211 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2244,"Simulated","PgC/yr","HL",2.67386208850049 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2245,"Simulated","PgC/yr","HL",3.03224527086177 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2246,"Simulated","PgC/yr","HL",2.70667858403482 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2247,"Simulated","PgC/yr","HL",1.8759601017573 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2248,"Simulated","PgC/yr","HL",2.66425033090314 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2249,"Simulated","PgC/yr","HL",2.19263254194984 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2250,"Simulated","PgC/yr","HL",2.19040958222996 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2251,"Simulated","PgC/yr","HL",1.71227911721675 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2252,"Simulated","PgC/yr","HL",2.7235130044209 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2253,"Simulated","PgC/yr","HL",3.09920493488538 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2254,"Simulated","PgC/yr","HL",3.40107419692706 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2255,"Simulated","PgC/yr","HL",4.89357224215868 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2256,"Simulated","PgC/yr","HL",5.04942320773466 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2257,"Simulated","PgC/yr","HL",4.79329526957964 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2258,"Simulated","PgC/yr","HL",5.13507607893421 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2259,"Simulated","PgC/yr","HL",5.79484606944726 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2260,"Simulated","PgC/yr","HL",4.50642933031563 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2261,"Simulated","PgC/yr","HL",4.32239258383436 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2262,"Simulated","PgC/yr","HL",2.50435223029424 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2263,"Simulated","PgC/yr","HL",2.6105787652538 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2264,"Simulated","PgC/yr","HL",2.95198908132172 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2265,"Simulated","PgC/yr","HL",4.22330444024172 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2266,"Simulated","PgC/yr","HL",3.60424055616157 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2267,"Simulated","PgC/yr","HL",1.61369419440012 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2268,"Simulated","PgC/yr","HL",3.81938850576276 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2269,"Simulated","PgC/yr","HL",4.09576867239741 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2270,"Simulated","PgC/yr","HL",3.6365255397997 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2271,"Simulated","PgC/yr","HL",3.18116792168665 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2272,"Simulated","PgC/yr","HL",0.915153029493041 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2273,"Simulated","PgC/yr","HL",1.49613104642017 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2274,"Simulated","PgC/yr","HL",3.11168312470207 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2275,"Simulated","PgC/yr","HL",2.41523068717868 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2276,"Simulated","PgC/yr","HL",2.57657976108971 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2277,"Simulated","PgC/yr","HL",2.18540355880446 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2278,"Simulated","PgC/yr","HL",3.23499027298718 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2279,"Simulated","PgC/yr","HL",4.54269312894114 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2280,"Simulated","PgC/yr","HL",2.66334471408793 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2281,"Simulated","PgC/yr","HL",1.67729925389655 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2282,"Simulated","PgC/yr","HL",0.330282575785899 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2283,"Simulated","PgC/yr","HL",1.33844507063406 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2284,"Simulated","PgC/yr","HL",2.24418949685021 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2285,"Simulated","PgC/yr","HL",2.53036862402639 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2286,"Simulated","PgC/yr","HL",2.26102241238948 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2287,"Simulated","PgC/yr","HL",0.581017443913767 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2288,"Simulated","PgC/yr","HL",2.09673256682628 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2289,"Simulated","PgC/yr","HL",1.07612920236252 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2290,"Simulated","PgC/yr","HL",0.595877806243709 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2291,"Simulated","PgC/yr","HL",1.82070092271474 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2292,"Simulated","PgC/yr","HL",0.963433932870147 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2293,"Simulated","PgC/yr","HL",1.80222320960315 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2294,"Simulated","PgC/yr","HL",1.13305063520049 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2295,"Simulated","PgC/yr","HL",2.48272968830194 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2296,"Simulated","PgC/yr","HL",1.4524742363461 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2297,"Simulated","PgC/yr","HL",0.946979335820981 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2298,"Simulated","PgC/yr","HL",0.689569268176844 -"HadGEM2-ES","nbp","carbon_cycle","nbp_HL","rcp85",2299,"Simulated","PgC/yr","HL",2.2752934767054 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2005,"Simulated","PgC/yr","LL",4.14772290679615 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",6.50834321289012 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",3.28397449040185 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",3.43363258440616 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",1.90836046029135 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",1.15567848217021 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",4.67799631393024 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",9.22198786946672 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",9.90374074313297 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",4.27898083281119 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",3.38373186665711 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",4.30820971747722 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",0.80709190667765 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",5.32099107784621 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",3.68519433931941 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",5.7613134883921 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",8.36947028852255 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",5.12560389640738 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",3.38546148124077 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",8.34510073494442 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",9.4082736365576 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",6.77145482468672 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",7.36906493997031 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",7.70930605154483 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",3.93117008311552 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",4.05967544514928 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",5.28606698522775 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",4.68337738429791 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",4.14824779518838 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",9.68775630700299 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",7.07920860286209 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",9.6507404300792 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",8.06624786519017 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",7.71599110507643 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",4.23125249267296 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",14.4332306359681 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",11.0287061279941 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",7.23722130083806 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",2.60732177319936 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",7.93284378092182 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",4.50396472396414 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",7.65673374450044 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",6.21478077363524 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",8.94668200085405 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",5.99304860802384 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",5.56630527920557 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",7.76158229843526 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",9.40188955753877 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",12.2539469889317 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",7.67673888978028 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",9.14439679044253 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",8.69550737755422 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",7.77947132734049 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",4.89595210533272 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",-0.604819839275735 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",12.0612226163218 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",10.9144214602749 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",10.913332128895 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",10.276363665599 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",15.5005698786945 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",10.9929822262001 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",1.93672156289847 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",5.48123393583212 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",2.86116531831107 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",7.22148592703513 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",10.2643371071918 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",10.2705300710454 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",9.94824325890692 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",7.51132320602008 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",12.0837580570876 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",11.6777934437534 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",3.70671874065247 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",5.72798302100427 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",3.1765641825467 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",3.22392476301632 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",0.268201830576874 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",9.0053012575428 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",8.35795303639421 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",1.517127950591 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",11.2960739450221 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",10.0062858684353 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",2.9284037959462 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",0.23621089100598 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",2.81653073595393 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",9.05986522019337 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",4.44905970916934 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",2.52715990698773 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",11.5916964922161 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",-2.78744110961573 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",6.30504715001866 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",11.9269409757598 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",8.48890609781638 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",0.351267363683095 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",7.6934881361274 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",4.92826127960352 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",13.1062831417727 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2101,"Simulated","PgC/yr","LL",-9.48859172707644 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2102,"Simulated","PgC/yr","LL",-6.60803517695899 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2103,"Simulated","PgC/yr","LL",14.8350000649345 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2105,"Simulated","PgC/yr","LL",1.78690794414755 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2106,"Simulated","PgC/yr","LL",4.07318579123276 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2107,"Simulated","PgC/yr","LL",1.25620517896245 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2108,"Simulated","PgC/yr","LL",-1.78896609070183 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2109,"Simulated","PgC/yr","LL",-13.692754879111 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2110,"Simulated","PgC/yr","LL",9.36930814304397 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2111,"Simulated","PgC/yr","LL",5.75060661512461 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2112,"Simulated","PgC/yr","LL",2.94133463778531 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2113,"Simulated","PgC/yr","LL",14.1517974009302 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2114,"Simulated","PgC/yr","LL",7.7841508648126 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2115,"Simulated","PgC/yr","LL",-6.76179467716045 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2116,"Simulated","PgC/yr","LL",6.53299782107362 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2117,"Simulated","PgC/yr","LL",-1.19911750236202 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2118,"Simulated","PgC/yr","LL",10.7801911426177 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2119,"Simulated","PgC/yr","LL",6.10109171313039 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2120,"Simulated","PgC/yr","LL",4.98541806233191 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2121,"Simulated","PgC/yr","LL",14.438839542985 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2122,"Simulated","PgC/yr","LL",5.65033538871548 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2123,"Simulated","PgC/yr","LL",2.21746723445997 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2124,"Simulated","PgC/yr","LL",9.26843804044561 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2125,"Simulated","PgC/yr","LL",-5.80715464935976 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2126,"Simulated","PgC/yr","LL",10.632879368375 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2127,"Simulated","PgC/yr","LL",-8.52608262305998 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2128,"Simulated","PgC/yr","LL",-5.22762817594971 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2129,"Simulated","PgC/yr","LL",10.1215397871923 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2130,"Simulated","PgC/yr","LL",4.91871920744819 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2131,"Simulated","PgC/yr","LL",-0.837344241984102 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2132,"Simulated","PgC/yr","LL",-4.02689972279045 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2133,"Simulated","PgC/yr","LL",4.7349112905903 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2134,"Simulated","PgC/yr","LL",6.94183019706213 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2135,"Simulated","PgC/yr","LL",-3.1389193221755 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2136,"Simulated","PgC/yr","LL",-6.03157369435149 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2137,"Simulated","PgC/yr","LL",0.000895194112756387 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2138,"Simulated","PgC/yr","LL",1.07534993093189 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2139,"Simulated","PgC/yr","LL",4.00055570841373 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2140,"Simulated","PgC/yr","LL",-6.41507413057129 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2141,"Simulated","PgC/yr","LL",-8.75256242978584 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2142,"Simulated","PgC/yr","LL",2.60616926343257 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2143,"Simulated","PgC/yr","LL",-1.11887384640009 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2144,"Simulated","PgC/yr","LL",7.99664338202698 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2145,"Simulated","PgC/yr","LL",16.0314971570711 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2146,"Simulated","PgC/yr","LL",2.4023918331205 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2147,"Simulated","PgC/yr","LL",0.510977248012389 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2148,"Simulated","PgC/yr","LL",6.79962456150715 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2149,"Simulated","PgC/yr","LL",-3.76996614652898 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2150,"Simulated","PgC/yr","LL",-0.272654468505895 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2151,"Simulated","PgC/yr","LL",2.33813686382124 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2152,"Simulated","PgC/yr","LL",7.29666956954423 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2153,"Simulated","PgC/yr","LL",0.609275321212873 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2154,"Simulated","PgC/yr","LL",4.00998081664957 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2155,"Simulated","PgC/yr","LL",-5.42680158210829 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2156,"Simulated","PgC/yr","LL",-4.84980921798806 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2157,"Simulated","PgC/yr","LL",3.79641215292047 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2158,"Simulated","PgC/yr","LL",4.21963717129964 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2159,"Simulated","PgC/yr","LL",-6.03721725250158 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2160,"Simulated","PgC/yr","LL",-5.27222091542901 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2161,"Simulated","PgC/yr","LL",3.90565083108894 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2162,"Simulated","PgC/yr","LL",2.74433967645483 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2163,"Simulated","PgC/yr","LL",-4.09060158154812 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2164,"Simulated","PgC/yr","LL",8.57879549602215 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2165,"Simulated","PgC/yr","LL",-2.80284648040937 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2166,"Simulated","PgC/yr","LL",-6.09442300447295 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2167,"Simulated","PgC/yr","LL",0.46873712434024 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2168,"Simulated","PgC/yr","LL",-7.03617150312587 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2169,"Simulated","PgC/yr","LL",-6.65191266474503 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2170,"Simulated","PgC/yr","LL",8.37429235329736 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2171,"Simulated","PgC/yr","LL",-6.96121652540626 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2172,"Simulated","PgC/yr","LL",-5.24247585963699 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2174,"Simulated","PgC/yr","LL",-8.01440568367454 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2175,"Simulated","PgC/yr","LL",-3.32034742535564 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2176,"Simulated","PgC/yr","LL",-2.7762893288736 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2177,"Simulated","PgC/yr","LL",5.96557440008184 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2178,"Simulated","PgC/yr","LL",-5.16226306279748 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2179,"Simulated","PgC/yr","LL",8.5983217364891 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2180,"Simulated","PgC/yr","LL",2.74950727186937 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2181,"Simulated","PgC/yr","LL",-11.6331163647234 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2182,"Simulated","PgC/yr","LL",-3.87016022513207 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2183,"Simulated","PgC/yr","LL",-2.56041407650299 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2184,"Simulated","PgC/yr","LL",-7.48936909794537 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2185,"Simulated","PgC/yr","LL",-15.5479896276086 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2186,"Simulated","PgC/yr","LL",-0.763139820885941 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2187,"Simulated","PgC/yr","LL",0.0356054254288695 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2188,"Simulated","PgC/yr","LL",5.46804427617967 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2189,"Simulated","PgC/yr","LL",-1.74863086404383 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2190,"Simulated","PgC/yr","LL",-3.33495451249528 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2191,"Simulated","PgC/yr","LL",-8.64498046806227 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2192,"Simulated","PgC/yr","LL",1.22095700017913 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2193,"Simulated","PgC/yr","LL",2.53721873868452 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2194,"Simulated","PgC/yr","LL",-0.392736336192358 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2195,"Simulated","PgC/yr","LL",0.975088642206251 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2196,"Simulated","PgC/yr","LL",1.62322906671565 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2197,"Simulated","PgC/yr","LL",-3.38239518284828 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2198,"Simulated","PgC/yr","LL",-0.0908445359894678 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2199,"Simulated","PgC/yr","LL",-1.16276506388042 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2200,"Simulated","PgC/yr","LL",6.37691604115145 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2201,"Simulated","PgC/yr","LL",-1.29662788338696 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2202,"Simulated","PgC/yr","LL",-15.2643733711778 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2203,"Simulated","PgC/yr","LL",2.0400128970857 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2204,"Simulated","PgC/yr","LL",-9.49099507737298 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2205,"Simulated","PgC/yr","LL",3.059543382893 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2206,"Simulated","PgC/yr","LL",-9.41136808082337 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2207,"Simulated","PgC/yr","LL",-10.923305553176 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2208,"Simulated","PgC/yr","LL",-2.04928370970946 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2209,"Simulated","PgC/yr","LL",-3.11075121984248 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2210,"Simulated","PgC/yr","LL",-15.1313783991097 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2211,"Simulated","PgC/yr","LL",-13.4795392646637 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2212,"Simulated","PgC/yr","LL",-8.20037243151153 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2213,"Simulated","PgC/yr","LL",-1.99909317772772 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2214,"Simulated","PgC/yr","LL",7.85905615411475 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2215,"Simulated","PgC/yr","LL",-9.23684012971878 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2216,"Simulated","PgC/yr","LL",-1.55836476050769 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2217,"Simulated","PgC/yr","LL",-2.66198112453554 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2218,"Simulated","PgC/yr","LL",1.46868893532428 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2219,"Simulated","PgC/yr","LL",5.91489090669541 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2220,"Simulated","PgC/yr","LL",4.36007625285536 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2221,"Simulated","PgC/yr","LL",4.56971168606651 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2222,"Simulated","PgC/yr","LL",2.52639189404068 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2223,"Simulated","PgC/yr","LL",-9.23110765545325 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2224,"Simulated","PgC/yr","LL",3.23659890533775 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2225,"Simulated","PgC/yr","LL",-0.0223385002872839 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2226,"Simulated","PgC/yr","LL",-1.26378540856206 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2227,"Simulated","PgC/yr","LL",-10.0811823315054 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2228,"Simulated","PgC/yr","LL",-6.81692920667822 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2229,"Simulated","PgC/yr","LL",-0.179436905230428 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2230,"Simulated","PgC/yr","LL",1.34205146550958 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2231,"Simulated","PgC/yr","LL",-9.96189743988299 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2232,"Simulated","PgC/yr","LL",-4.50963315901271 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2233,"Simulated","PgC/yr","LL",1.86051348905648 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2234,"Simulated","PgC/yr","LL",-9.19804001364191 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2235,"Simulated","PgC/yr","LL",-5.27711522454759 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2236,"Simulated","PgC/yr","LL",-0.401616048667212 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2237,"Simulated","PgC/yr","LL",-0.216845876377751 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2238,"Simulated","PgC/yr","LL",3.71652494597423 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2239,"Simulated","PgC/yr","LL",-2.9955460088105 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2240,"Simulated","PgC/yr","LL",-4.06485775095057 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2241,"Simulated","PgC/yr","LL",-0.801503463443223 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2242,"Simulated","PgC/yr","LL",-5.19203034761835 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2243,"Simulated","PgC/yr","LL",-15.4627216880888 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2244,"Simulated","PgC/yr","LL",-9.43220191122315 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2245,"Simulated","PgC/yr","LL",-16.9065232642215 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2246,"Simulated","PgC/yr","LL",-3.62839338450149 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2247,"Simulated","PgC/yr","LL",1.45879832507236 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2248,"Simulated","PgC/yr","LL",6.22426145444323 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2249,"Simulated","PgC/yr","LL",-4.02767904639042 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2250,"Simulated","PgC/yr","LL",-3.07506970575542 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2251,"Simulated","PgC/yr","LL",-4.20721637452769 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2252,"Simulated","PgC/yr","LL",-7.04180721573637 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2253,"Simulated","PgC/yr","LL",-11.1994999291481 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2254,"Simulated","PgC/yr","LL",-11.3427294076204 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2255,"Simulated","PgC/yr","LL",-9.40618087155983 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2256,"Simulated","PgC/yr","LL",-4.78998174820136 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2257,"Simulated","PgC/yr","LL",-0.382625658554737 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2258,"Simulated","PgC/yr","LL",-0.992022324113377 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2259,"Simulated","PgC/yr","LL",-0.795409048284289 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2260,"Simulated","PgC/yr","LL",-15.6225222537799 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2261,"Simulated","PgC/yr","LL",-4.23581205876874 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2262,"Simulated","PgC/yr","LL",-14.5920890831127 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2263,"Simulated","PgC/yr","LL",-1.37409787958337 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2264,"Simulated","PgC/yr","LL",-15.5914408410765 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2265,"Simulated","PgC/yr","LL",14.7715296495949 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2266,"Simulated","PgC/yr","LL",-0.269055850251754 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2267,"Simulated","PgC/yr","LL",-12.0467881310533 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2268,"Simulated","PgC/yr","LL",3.17556845281285 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2269,"Simulated","PgC/yr","LL",-1.49684003898818 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2270,"Simulated","PgC/yr","LL",3.90962982725454 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2271,"Simulated","PgC/yr","LL",14.2897089111458 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2272,"Simulated","PgC/yr","LL",-5.61914152327789 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2273,"Simulated","PgC/yr","LL",-6.33048744540646 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2274,"Simulated","PgC/yr","LL",-7.07794377112005 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2275,"Simulated","PgC/yr","LL",5.08098981052244 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2276,"Simulated","PgC/yr","LL",-0.521972248721582 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2277,"Simulated","PgC/yr","LL",-16.8213730077956 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2278,"Simulated","PgC/yr","LL",-0.443218199211133 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2279,"Simulated","PgC/yr","LL",-1.23671764315752 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2280,"Simulated","PgC/yr","LL",8.12983841535482 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2281,"Simulated","PgC/yr","LL",-9.13697033341903 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2282,"Simulated","PgC/yr","LL",-6.98137825458057 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2283,"Simulated","PgC/yr","LL",8.26040388532775 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2284,"Simulated","PgC/yr","LL",6.82513433350673 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2285,"Simulated","PgC/yr","LL",0.742155748402881 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2286,"Simulated","PgC/yr","LL",4.94337904599143 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2287,"Simulated","PgC/yr","LL",3.58984563328167 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2288,"Simulated","PgC/yr","LL",-5.2332952707186 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2289,"Simulated","PgC/yr","LL",-2.3139111451357 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2290,"Simulated","PgC/yr","LL",-6.74502745145177 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2291,"Simulated","PgC/yr","LL",0.687440955253549 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2292,"Simulated","PgC/yr","LL",-13.5156418227092 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2293,"Simulated","PgC/yr","LL",-8.28717548161251 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2294,"Simulated","PgC/yr","LL",-9.40571929231355 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2295,"Simulated","PgC/yr","LL",11.6608581927383 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2296,"Simulated","PgC/yr","LL",2.29666795669147 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2297,"Simulated","PgC/yr","LL",-2.79602609131973 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2298,"Simulated","PgC/yr","LL",-0.942851320002264 -"HadGEM2-ES","nbp","carbon_cycle","nbp_LL","rcp85",2299,"Simulated","PgC/yr","LL",-2.23927652694964 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",-0.213744473946671 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",11.8532991858646 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",18.6692271569511 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",8.67011391781489 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",5.83583858570167 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",15.0966889313228 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",14.1449025833173 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",16.8905031078953 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",6.97872955148471 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",14.2586423484228 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",15.5847236981723 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",13.0925073422798 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",12.0586880305209 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",16.4377027673465 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",13.2220627063346 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",11.1319441199081 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",17.9382221949311 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",19.3070307557562 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",13.7628236430748 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",7.61406558226813 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",4.8004074726666 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",18.1375096800659 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",14.6175303315809 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",8.81771276980872 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",10.5267690411489 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",19.90860904045 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",13.8652405846443 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",5.42216383641064 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",13.6775461651756 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",9.83686501167126 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",14.8676281629338 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",11.5816575875538 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",19.8733006192803 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",13.0200309767116 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",17.6212024389349 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",14.2012914992218 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",2.03898974055508 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",13.8754164877113 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",18.9023753375585 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",14.2774579567336 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",12.8274480701388 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",15.9919174620924 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",18.4269583044517 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",12.6353815190646 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",19.1935773186219 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",13.7077827206528 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",11.3247168394057 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",8.67833217402244 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",13.4457475866348 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",5.57075035904676 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",5.53143495486417 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",10.0611965427829 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",10.0173674515934 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",3.0552063164206 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",14.8149711621598 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",16.574464588205 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",-6.41475352889849 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",12.7627315143075 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",13.8206297215784 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",1.66870493899209 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",7.23310621656474 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",7.25269877099966 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",3.45970409337573 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",9.96889598666828 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",5.77785073719392 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",1.47099515315036 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",9.55061586107617 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",3.24804820503483 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",2.05745628611443 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",3.63392501235625 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",5.11323043272514 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",3.62584992013431 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",13.8430501668751 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",-1.6311863232581 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",-6.82262128955979 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",1.19489262939144 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",3.53065552120951 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",-3.96008474325387 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",-2.20430553791395 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",6.78672895235894 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",1.5853041961716 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",8.39513772464836 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",6.99056873051927 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",1.39050417812275 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",-8.86748718786124 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",-2.99931284442141 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",15.5953483962054 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",10.5016896063218 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",-1.14370330075756 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",8.80260173069856 -"inmcm4","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",-4.74864806182485 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.861709135352029 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.02665273441018 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.77525871410474 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.984166944725022 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.31401679891431 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.22214168540118 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.01647962629439 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.0709211307929 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.29072805097962 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.12935702093858 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.26431344660923 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.54241055904459 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.21800924038749 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.719031286955381 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.47664139668697 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.99771507274928 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.61565812569413 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",2.1270959369542 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.54021547169872 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.0758895705362 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.37979246816831 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.59498797918661 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.46783784880334 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",2.28214000045275 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.44285334709224 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.95165105587625 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.51193771064661 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",2.11206330888221 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",1.65882006678496 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.90636956401917 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.592557873794866 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.62683612493668 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.76803379586283 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.38120418177263 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.32856678502057 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.8227986648202 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.45356935669234 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",0.933432390799145 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.12750643724275 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",1.61399462349104 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",2.32356177112671 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.22237726926413 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.71350062899803 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",2.88277010356066 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",2.36240935701396 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",2.11953888408874 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.33673880209835 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",2.45361624056047 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",3.01934137116587 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.09762874945943 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.77690855774885 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",1.84313186725903 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.28983321127411 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.6474156617629 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.88829247822125 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",2.58811350567405 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.49515598409476 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.15759432606976 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.16959870115163 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.17881218350673 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",1.98301740838621 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.65035621310625 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",3.22033091286005 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.9819151967224 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",2.89130545415031 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.94619819776683 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.62785508254118 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",2.23942137704087 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.46077580693012 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",3.14820055202683 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",2.59167419253256 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",2.61823930424514 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",1.48354153592732 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",2.54346884093587 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.87708647103344 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.29710424360771 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",2.23809934544307 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",2.04497041747556 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.32988845476067 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",2.49239536258154 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",2.48748774817389 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",2.78840030255998 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",2.41953594644605 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.39494016106608 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.96874467264713 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.75182616968362 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",2.86391707859233 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",2.36141974294824 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",2.43127608495349 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",1.72280464208527 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.73323321661081 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",2.13239877458935 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.57775800050044 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",2.61090914402711 -"inmcm4","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",2.04184456103986 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",-0.617921510480333 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",10.2883559908113 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",16.1266577146779 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",7.41086713501694 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",4.66816501712849 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",13.1454997036326 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",12.3799061538409 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",14.8530944513182 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",5.7202317548986 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",12.4280202229791 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",13.5691511482453 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",11.1633217521561 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",10.3813640631281 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",14.6136641866174 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",11.3135937063954 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",9.15452423523369 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",15.5394629776946 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",16.5345548308165 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",11.7747365818037 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",6.40425516119158 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",3.69306965430471 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",15.7310893813405 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",12.5885210899167 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",6.90764864269188 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",8.87606740742718 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",17.1684928883986 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",12.3731173692469 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",3.89947468920523 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",11.6388283223656 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",8.02020065401959 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",13.2462086253357 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",9.74618782456358 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",17.2265442216097 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",19.1473553252745 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",11.2023774801244 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",15.1490515223245 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",12.4720459086594 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",0.81143594127312 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",11.8410124062511 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",16.0696138949001 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",11.9082215062999 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",10.8379346834954 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",13.1448647050346 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",15.6176380660585 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",10.4635930673852 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",16.3282664553661 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",11.275925960749 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",8.82818930854044 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",6.87137815909622 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",10.8785255437738 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",4.1668753827578 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",3.7359844238573 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",7.74210308429255 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",7.89531803829727 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",1.72194386005544 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",12.4235646273883 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",14.0210872068198 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",-6.81490040278678 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",10.3187921762233 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",11.0020374109567 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",0.545803301228277 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",5.16558633018587 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",5.1564590538863 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",1.85923877613983 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",7.97680996693736 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",4.05203608515393 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",-0.207136012409826 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",7.4229175259484 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",1.67124339788014 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",1.14458974539587 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",2.05932431559807 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",3.24237707941486 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",2.66423140387244 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",11.5049602776297 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",-2.48979238399174 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",-7.35666821501237 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",-0.136379006833064 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",1.9927939614412 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",-4.97550433857897 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",-3.19563110746492 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",5.00298161611871 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",0.476335250008242 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",6.29215736066651 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",4.95820294671467 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",0.106069529492024 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",-9.26836795048448 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",-3.57724272840118 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",13.3484791928602 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",8.51450397813629 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",-1.81641812955271 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",6.73238505260663 -"inmcm4","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",-5.32677389706867 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",8.87251486050175 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",12.4279949103514 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",2.9081471034433 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",5.50246774688721 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",11.4615687478165 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",9.47760404635625 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",11.4111474574707 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",10.3250454934557 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",9.5915576360824 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",10.4725857684325 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",12.9658241254593 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",10.0700506688377 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",11.2038468198064 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",12.4596294705666 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",9.98836746744398 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",13.1737018478546 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",9.65499888455466 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",8.90078166318782 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",9.16828231394938 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",13.2536593449782 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",15.2293132380626 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",10.5772158899477 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",15.0685311689129 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",9.7889269683338 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",12.3859256908513 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",9.61517770554143 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",10.2389907224009 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",15.3600078885322 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",16.0548441528065 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",13.2036670073648 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",12.1272908407501 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",12.0624343619524 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",12.3796203618416 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",10.8387491671462 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",14.6782959852807 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",13.8312731954045 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",9.35419628371453 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",13.1578990458066 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",12.2085915800695 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",12.9613766800415 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",14.9254412885882 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",15.5670879770886 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",14.6911214011842 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",11.0061908755974 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",11.9820083387336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",12.4334265957094 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",14.3991107360893 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",12.02277453287 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",12.6187244436052 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",14.6102619745702 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",12.4566125378704 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",12.1238828663888 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",14.1807984884653 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",11.0133092548983 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",15.2916609908671 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",14.1708775321839 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",13.3270795960264 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",15.1713989888407 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",13.0104937653299 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",15.1077791776334 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",15.6618070624744 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",16.4997155116672 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",12.2468490482129 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",13.1070512961721 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",14.4259401891922 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",15.2485224057986 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",6.87111817312074 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",10.9859331209896 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",14.4467086975691 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",13.0152141489823 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",15.7963504637864 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",11.7741967059992 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",14.5565135188846 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",12.3194822558547 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",16.8980033116124 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",18.111380127987 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",15.1417390750869 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",8.91086623896994 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",13.2891780468481 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",12.8110513894343 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",12.0924630640576 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",9.79067278102 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",12.755557791343 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",11.3825346291603 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",10.7568528165418 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",8.07247216750658 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",15.2894647496602 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",13.2635325772854 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",10.913566148777 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",8.98804696089207 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",8.60300779198128 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",9.45223017446706 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",15.1716557062863 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",14.6667131354363 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",13.2072838411414 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2101,"Simulated","PgC/yr","global",9.63344668417413 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2102,"Simulated","PgC/yr","global",10.6683335580092 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2103,"Simulated","PgC/yr","global",8.11544948307787 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2104,"Simulated","PgC/yr","global",3.90645234453323 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2105,"Simulated","PgC/yr","global",16.8589443220032 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2106,"Simulated","PgC/yr","global",5.67856683896871 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2107,"Simulated","PgC/yr","global",9.17672342486162 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2108,"Simulated","PgC/yr","global",8.98290564106254 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2109,"Simulated","PgC/yr","global",12.0092544382182 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2111,"Simulated","PgC/yr","global",9.96821159547771 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2112,"Simulated","PgC/yr","global",3.34391699100686 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2113,"Simulated","PgC/yr","global",14.2715670744232 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2114,"Simulated","PgC/yr","global",-0.862930960024565 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2115,"Simulated","PgC/yr","global",13.5205466890486 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2116,"Simulated","PgC/yr","global",16.528538915311 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2117,"Simulated","PgC/yr","global",6.97418426203141 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2118,"Simulated","PgC/yr","global",8.53891181348066 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2119,"Simulated","PgC/yr","global",8.61655121239582 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2120,"Simulated","PgC/yr","global",0.333070173994314 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2121,"Simulated","PgC/yr","global",-14.2773229074489 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2122,"Simulated","PgC/yr","global",6.38408429170933 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2123,"Simulated","PgC/yr","global",10.8404422957822 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2124,"Simulated","PgC/yr","global",8.30577966318783 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2125,"Simulated","PgC/yr","global",-3.44405690320603 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2126,"Simulated","PgC/yr","global",-0.852949303137743 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2127,"Simulated","PgC/yr","global",7.47547098877752 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2128,"Simulated","PgC/yr","global",11.4053665291417 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2129,"Simulated","PgC/yr","global",10.4483008343034 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2130,"Simulated","PgC/yr","global",0.228866431334136 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2131,"Simulated","PgC/yr","global",11.2085694824126 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2132,"Simulated","PgC/yr","global",-3.34503984496212 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2133,"Simulated","PgC/yr","global",-13.60392261691 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2134,"Simulated","PgC/yr","global",11.8433841354574 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2135,"Simulated","PgC/yr","global",1.37454681708778 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2136,"Simulated","PgC/yr","global",10.9810982534215 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2137,"Simulated","PgC/yr","global",1.34811390195042 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2138,"Simulated","PgC/yr","global",-0.181108138749895 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2139,"Simulated","PgC/yr","global",0.908376302154831 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2140,"Simulated","PgC/yr","global",-6.32748473073237 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2141,"Simulated","PgC/yr","global",-1.08354956254205 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2142,"Simulated","PgC/yr","global",5.72684955904495 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2143,"Simulated","PgC/yr","global",7.16501473953405 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2144,"Simulated","PgC/yr","global",9.22925304241908 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2145,"Simulated","PgC/yr","global",1.70536098766252 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2146,"Simulated","PgC/yr","global",6.20488773942797 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2147,"Simulated","PgC/yr","global",1.73810553244669 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2148,"Simulated","PgC/yr","global",-9.15038944313149 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2149,"Simulated","PgC/yr","global",-0.585813982079954 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2150,"Simulated","PgC/yr","global",-1.3322446616956 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2151,"Simulated","PgC/yr","global",1.83166436222326 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2152,"Simulated","PgC/yr","global",1.90295754501592 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2153,"Simulated","PgC/yr","global",-2.28878496383799 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2154,"Simulated","PgC/yr","global",-5.21950778604153 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2155,"Simulated","PgC/yr","global",-4.80002853070067 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2156,"Simulated","PgC/yr","global",-5.19729683394942 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2157,"Simulated","PgC/yr","global",5.12680477045435 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2158,"Simulated","PgC/yr","global",4.8977602589872 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2159,"Simulated","PgC/yr","global",6.19637303171279 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2160,"Simulated","PgC/yr","global",-11.0011712787134 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2161,"Simulated","PgC/yr","global",9.09349710361606 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2162,"Simulated","PgC/yr","global",-3.85954021409865 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2163,"Simulated","PgC/yr","global",-3.68066217912838 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2164,"Simulated","PgC/yr","global",4.89612423825296 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2165,"Simulated","PgC/yr","global",-5.40595141148686 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2166,"Simulated","PgC/yr","global",-6.88911279252412 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2167,"Simulated","PgC/yr","global",12.7056410613742 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2168,"Simulated","PgC/yr","global",6.17103481874814 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2169,"Simulated","PgC/yr","global",-6.37037839529267 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2170,"Simulated","PgC/yr","global",-6.72295775459133 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2171,"Simulated","PgC/yr","global",-12.3306303617429 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2172,"Simulated","PgC/yr","global",-5.4280754952214 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2173,"Simulated","PgC/yr","global",2.85263138609436 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2174,"Simulated","PgC/yr","global",6.41975662187827 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2175,"Simulated","PgC/yr","global",-4.39328031576374 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2176,"Simulated","PgC/yr","global",-13.6505162300335 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2177,"Simulated","PgC/yr","global",-1.095481253189 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2178,"Simulated","PgC/yr","global",-1.18704709762865 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2179,"Simulated","PgC/yr","global",-6.11103291376634 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2180,"Simulated","PgC/yr","global",-12.7213626254211 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2181,"Simulated","PgC/yr","global",10.9503291594354 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2182,"Simulated","PgC/yr","global",0.225002558962872 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2183,"Simulated","PgC/yr","global",-14.3259193188164 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2184,"Simulated","PgC/yr","global",2.81344732213697 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2185,"Simulated","PgC/yr","global",-0.134594090607253 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2186,"Simulated","PgC/yr","global",2.19245921600547 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2187,"Simulated","PgC/yr","global",6.76356227706233 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2188,"Simulated","PgC/yr","global",-9.5196008755583 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2189,"Simulated","PgC/yr","global",-5.68925808164302 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2190,"Simulated","PgC/yr","global",-18.0093226772281 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2191,"Simulated","PgC/yr","global",-7.58911249588573 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2192,"Simulated","PgC/yr","global",-1.72117746343348 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2193,"Simulated","PgC/yr","global",-7.0058075615336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2194,"Simulated","PgC/yr","global",-8.49833142110899 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2195,"Simulated","PgC/yr","global",-13.4127575353634 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2196,"Simulated","PgC/yr","global",-16.2986434156743 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2197,"Simulated","PgC/yr","global",-5.57979269039134 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2198,"Simulated","PgC/yr","global",-1.55255906409426 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2199,"Simulated","PgC/yr","global",-14.9021187432539 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2200,"Simulated","PgC/yr","global",-18.8451249709181 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2201,"Simulated","PgC/yr","global",-7.55335651470579 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2202,"Simulated","PgC/yr","global",-4.73577651089108 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2203,"Simulated","PgC/yr","global",-0.648198010467127 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2204,"Simulated","PgC/yr","global",-4.04938296620225 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2205,"Simulated","PgC/yr","global",1.84413318888118 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2206,"Simulated","PgC/yr","global",-3.05123979894612 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2207,"Simulated","PgC/yr","global",-2.46436682724045 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2208,"Simulated","PgC/yr","global",-10.1643699989113 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2209,"Simulated","PgC/yr","global",-14.1102927512473 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2210,"Simulated","PgC/yr","global",-10.0032259782717 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2211,"Simulated","PgC/yr","global",-2.19221148031907 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2212,"Simulated","PgC/yr","global",7.32092896331326 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2213,"Simulated","PgC/yr","global",-15.9017708460545 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2214,"Simulated","PgC/yr","global",-16.2791945556183 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2215,"Simulated","PgC/yr","global",-16.3152770974758 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2216,"Simulated","PgC/yr","global",-16.1182146196541 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2217,"Simulated","PgC/yr","global",-3.97743505338124 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2218,"Simulated","PgC/yr","global",-11.4191528592228 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2219,"Simulated","PgC/yr","global",-8.10338443341532 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2220,"Simulated","PgC/yr","global",6.1597966271558 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2221,"Simulated","PgC/yr","global",-14.7397521309152 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2222,"Simulated","PgC/yr","global",1.90775621743504 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2223,"Simulated","PgC/yr","global",-17.52562679289 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2224,"Simulated","PgC/yr","global",1.96804446626216 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2225,"Simulated","PgC/yr","global",-12.3613061526783 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2226,"Simulated","PgC/yr","global",-16.2540349053887 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2227,"Simulated","PgC/yr","global",-8.80282431847259 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2229,"Simulated","PgC/yr","global",-6.17742286037614 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2230,"Simulated","PgC/yr","global",-7.25241395928957 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2231,"Simulated","PgC/yr","global",-15.7062478685698 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2232,"Simulated","PgC/yr","global",-7.02643236176341 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2233,"Simulated","PgC/yr","global",-5.66861558600704 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2234,"Simulated","PgC/yr","global",-14.0413128406432 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2235,"Simulated","PgC/yr","global",3.2745831722794 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2236,"Simulated","PgC/yr","global",-11.068140347707 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2237,"Simulated","PgC/yr","global",2.99852035794064 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2238,"Simulated","PgC/yr","global",8.86048399514656 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2240,"Simulated","PgC/yr","global",-19.0817608116329 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2241,"Simulated","PgC/yr","global",-5.86115930056176 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2242,"Simulated","PgC/yr","global",-4.29265458423148 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2243,"Simulated","PgC/yr","global",-7.49973139063898 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2244,"Simulated","PgC/yr","global",-12.0612033247185 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2245,"Simulated","PgC/yr","global",-19.3931034398583 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2246,"Simulated","PgC/yr","global",-11.2452295379806 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2247,"Simulated","PgC/yr","global",11.4433843049651 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2248,"Simulated","PgC/yr","global",-3.81915447119487 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2250,"Simulated","PgC/yr","global",-2.85886338641339 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2251,"Simulated","PgC/yr","global",-17.5637845232894 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2252,"Simulated","PgC/yr","global",-3.21272968434272 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2253,"Simulated","PgC/yr","global",-9.05942057734915 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2254,"Simulated","PgC/yr","global",-7.08976582912536 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2255,"Simulated","PgC/yr","global",-14.3830819154443 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2256,"Simulated","PgC/yr","global",-13.4541342210128 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2257,"Simulated","PgC/yr","global",-7.89926470587771 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2258,"Simulated","PgC/yr","global",-9.49480961151169 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2259,"Simulated","PgC/yr","global",2.96727348798792 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2260,"Simulated","PgC/yr","global",-14.3785937169698 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2261,"Simulated","PgC/yr","global",7.74753464132147 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2262,"Simulated","PgC/yr","global",-11.0371331700742 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2263,"Simulated","PgC/yr","global",2.51585241583378 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2264,"Simulated","PgC/yr","global",-12.8619815835748 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2265,"Simulated","PgC/yr","global",2.90056663274032 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2266,"Simulated","PgC/yr","global",-12.8221009640836 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2267,"Simulated","PgC/yr","global",-19.4071954178641 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2268,"Simulated","PgC/yr","global",-15.0224668093012 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2269,"Simulated","PgC/yr","global",5.18814509161205 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2270,"Simulated","PgC/yr","global",-9.3291098281195 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2272,"Simulated","PgC/yr","global",-2.11478442627797 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2273,"Simulated","PgC/yr","global",-13.1440318798928 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2274,"Simulated","PgC/yr","global",-14.0732659181695 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2275,"Simulated","PgC/yr","global",0.373451412612886 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2276,"Simulated","PgC/yr","global",-19.4704323648288 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2277,"Simulated","PgC/yr","global",0.662277762555995 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2278,"Simulated","PgC/yr","global",-6.33346095199855 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2279,"Simulated","PgC/yr","global",-2.31144634445084 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2280,"Simulated","PgC/yr","global",-6.08470536672937 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2281,"Simulated","PgC/yr","global",-7.33977778823274 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2282,"Simulated","PgC/yr","global",-12.4885248623401 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2283,"Simulated","PgC/yr","global",0.849709274267697 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2284,"Simulated","PgC/yr","global",-9.27682633757516 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2285,"Simulated","PgC/yr","global",-12.3647599742283 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2286,"Simulated","PgC/yr","global",-1.87215466889078 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2287,"Simulated","PgC/yr","global",3.08233062758987 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2288,"Simulated","PgC/yr","global",-15.5793846757047 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2289,"Simulated","PgC/yr","global",-13.6508170519384 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2290,"Simulated","PgC/yr","global",-2.5654896388188 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2291,"Simulated","PgC/yr","global",0.838875824874699 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2292,"Simulated","PgC/yr","global",-4.45108799038024 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2293,"Simulated","PgC/yr","global",-1.6925189488017 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2294,"Simulated","PgC/yr","global",-4.72426806218629 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2295,"Simulated","PgC/yr","global",-9.4375521031598 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2296,"Simulated","PgC/yr","global",1.88781510335277 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2297,"Simulated","PgC/yr","global",-8.29691909071566 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2298,"Simulated","PgC/yr","global",-8.25053460511966 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2299,"Simulated","PgC/yr","global",-9.55086704959048 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp","rcp85",2300,"Simulated","PgC/yr","global",-11.5484178013074 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.923511575912308 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.66054712709991 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.897761569457146 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",1.35655156572496 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",1.10376810816415 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.6132646544509 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.55180050860792 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.24403180741708 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.28032154633211 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.6959893199465 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.86225157502623 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.636936628619131 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.69198825817016 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",2.40044208938703 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.16746125351857 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.3049293918918 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",2.08317916664152 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",1.89889511413185 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.28673557788793 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.80290877255924 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",1.67396434697723 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",2.03603350547948 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",1.79649539699883 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",1.70536713876024 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",1.57237230596947 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.3891231226617 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",2.05441763104034 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.78174453845498 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",2.41989942343703 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.69864806933923 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",2.47451293633529 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.27429471971088 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",2.23837477917119 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",2.26365538446701 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.90363380630143 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",2.30723243060402 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.79186290319713 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",2.18692578812601 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.05333676927142 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",2.47916664065522 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",1.94538259323352 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.19242018700677 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",2.69284453545199 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.78031446846333 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",2.54647504959709 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",2.14944046113386 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.08491719003352 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.90263210131186 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",1.87659957950056 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.09759255199162 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.54830534967663 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",2.33297201402102 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",2.34716192360177 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.1702379209161 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.81009591575671 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",2.01380838102209 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.55452717457761 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.34064912829271 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.34705135193117 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.39825419892121 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",2.34486710588429 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.22050174692233 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",2.58689909024487 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",1.87535836329833 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",3.22526418531132 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.42656193147612 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.2919233199671 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",1.20521857807382 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.31901031795421 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",2.2903886551519 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",2.40498041140334 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",1.99011375396012 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",2.3398066115224 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",1.83644150854695 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.32763417937787 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",2.03833393560213 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",2.15597862159875 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",2.26100837010326 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.68192789718545 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",1.83304119278852 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",2.55727739888571 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",1.37940127070011 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",2.57449691393043 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.58236944194563 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",1.60908516192331 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.09063688689309 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",1.94329747538178 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",2.4521985236139 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",2.31687162714407 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",0.850737996329555 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",1.86848826915648 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",2.16029543583195 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",1.94048587905874 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",0.995977930978506 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",2.20872458845592 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2101,"Simulated","PgC/yr","HL",1.40310916344701 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2102,"Simulated","PgC/yr","HL",1.41704717079071 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2103,"Simulated","PgC/yr","HL",2.36422319797617 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2104,"Simulated","PgC/yr","HL",1.19426646503333 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2105,"Simulated","PgC/yr","HL",1.89989011339057 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2106,"Simulated","PgC/yr","HL",1.40770229752417 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2107,"Simulated","PgC/yr","HL",3.25652448031382 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2108,"Simulated","PgC/yr","HL",3.05625345524458 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2109,"Simulated","PgC/yr","HL",-0.0652564990355101 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2110,"Simulated","PgC/yr","HL",1.6137087633428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2111,"Simulated","PgC/yr","HL",1.60577675841052 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2112,"Simulated","PgC/yr","HL",1.23056341989786 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2113,"Simulated","PgC/yr","HL",1.45597218904051 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2114,"Simulated","PgC/yr","HL",0.669004526858506 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2115,"Simulated","PgC/yr","HL",1.67921617333342 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2116,"Simulated","PgC/yr","HL",3.69963334365943 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2117,"Simulated","PgC/yr","HL",-0.67527642607571 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2118,"Simulated","PgC/yr","HL",-0.191604042880698 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2119,"Simulated","PgC/yr","HL",1.36444829268191 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2120,"Simulated","PgC/yr","HL",0.600292943736747 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2121,"Simulated","PgC/yr","HL",-0.364463760410285 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2122,"Simulated","PgC/yr","HL",2.24947531481738 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2123,"Simulated","PgC/yr","HL",1.18068415297807 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2124,"Simulated","PgC/yr","HL",1.54493653708989 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2125,"Simulated","PgC/yr","HL",0.983692521846871 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2126,"Simulated","PgC/yr","HL",0.0043579815895404 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2127,"Simulated","PgC/yr","HL",-1.05457647020977 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2128,"Simulated","PgC/yr","HL",0.179532386208671 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2129,"Simulated","PgC/yr","HL",2.14518283226422 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2130,"Simulated","PgC/yr","HL",-0.948328829784231 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2131,"Simulated","PgC/yr","HL",-0.646619631074828 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2132,"Simulated","PgC/yr","HL",0.614573234907193 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2133,"Simulated","PgC/yr","HL",-0.216324340631168 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2134,"Simulated","PgC/yr","HL",1.57766371071533 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2135,"Simulated","PgC/yr","HL",1.24418071837493 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2136,"Simulated","PgC/yr","HL",1.47545117093901 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2137,"Simulated","PgC/yr","HL",-0.764804347069816 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2138,"Simulated","PgC/yr","HL",3.2395852210855 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2139,"Simulated","PgC/yr","HL",1.71244744298649 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2140,"Simulated","PgC/yr","HL",-1.29858489584933 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2141,"Simulated","PgC/yr","HL",-1.28032081744832 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2142,"Simulated","PgC/yr","HL",0.554657238229493 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2143,"Simulated","PgC/yr","HL",2.81703787784003 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2144,"Simulated","PgC/yr","HL",1.7588131984956 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2145,"Simulated","PgC/yr","HL",0.441541471648336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2146,"Simulated","PgC/yr","HL",0.298031834223227 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2147,"Simulated","PgC/yr","HL",0.731364616653435 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2148,"Simulated","PgC/yr","HL",0.146202425690732 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2149,"Simulated","PgC/yr","HL",2.0119562873173 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2150,"Simulated","PgC/yr","HL",1.02694710979616 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2151,"Simulated","PgC/yr","HL",0.583611417815794 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2152,"Simulated","PgC/yr","HL",0.304428518344901 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2153,"Simulated","PgC/yr","HL",0.155660975672816 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2154,"Simulated","PgC/yr","HL",-0.49254642668999 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2155,"Simulated","PgC/yr","HL",-1.69789659015402 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2156,"Simulated","PgC/yr","HL",-1.60387903658062 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2157,"Simulated","PgC/yr","HL",0.724147792493736 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2158,"Simulated","PgC/yr","HL",-0.0215738143133673 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2159,"Simulated","PgC/yr","HL",1.12585780601377 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2160,"Simulated","PgC/yr","HL",-1.15890802093396 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2161,"Simulated","PgC/yr","HL",0.842491696707977 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2162,"Simulated","PgC/yr","HL",-1.3951958179397 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2163,"Simulated","PgC/yr","HL",0.092992393103542 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2164,"Simulated","PgC/yr","HL",-0.239108723041259 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2165,"Simulated","PgC/yr","HL",-0.399688964553244 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2166,"Simulated","PgC/yr","HL",-1.04448434528398 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2167,"Simulated","PgC/yr","HL",0.233228730059076 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2168,"Simulated","PgC/yr","HL",-0.0157117897743209 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2169,"Simulated","PgC/yr","HL",-1.16189965155258 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2170,"Simulated","PgC/yr","HL",0.534513805870037 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2171,"Simulated","PgC/yr","HL",-2.64148563444298 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2172,"Simulated","PgC/yr","HL",-1.63102995767592 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2173,"Simulated","PgC/yr","HL",0.871320508282778 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2174,"Simulated","PgC/yr","HL",-0.926867575536445 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2175,"Simulated","PgC/yr","HL",-1.63151597738562 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2176,"Simulated","PgC/yr","HL",-1.46612058379471 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2177,"Simulated","PgC/yr","HL",-0.403846226125302 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2178,"Simulated","PgC/yr","HL",-3.19866860077394 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2179,"Simulated","PgC/yr","HL",0.852025205098798 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2180,"Simulated","PgC/yr","HL",-3.56509597410854 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2181,"Simulated","PgC/yr","HL",2.34399025868757 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2182,"Simulated","PgC/yr","HL",-1.33906214501362 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2183,"Simulated","PgC/yr","HL",-1.01204435187094 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2184,"Simulated","PgC/yr","HL",-1.32868692162465 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2185,"Simulated","PgC/yr","HL",0.386464388661037 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2186,"Simulated","PgC/yr","HL",0.804262908252279 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2187,"Simulated","PgC/yr","HL",1.85444158524002 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2188,"Simulated","PgC/yr","HL",-1.77495593352061 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2189,"Simulated","PgC/yr","HL",0.162705550015784 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2190,"Simulated","PgC/yr","HL",-1.90246569714311 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2191,"Simulated","PgC/yr","HL",0.0378027413040572 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2192,"Simulated","PgC/yr","HL",-3.24978084750916 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2193,"Simulated","PgC/yr","HL",0.0117692457040063 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2194,"Simulated","PgC/yr","HL",-0.576290800604713 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2195,"Simulated","PgC/yr","HL",-1.21817064618428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2196,"Simulated","PgC/yr","HL",-1.27203107635299 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2197,"Simulated","PgC/yr","HL",-3.53850046245954 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2198,"Simulated","PgC/yr","HL",-1.32849216387655 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2199,"Simulated","PgC/yr","HL",-0.200662114954417 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2200,"Simulated","PgC/yr","HL",-2.98707072164239 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2201,"Simulated","PgC/yr","HL",-0.798108796655183 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2202,"Simulated","PgC/yr","HL",-2.19760881913856 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2203,"Simulated","PgC/yr","HL",-0.536750312884502 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2204,"Simulated","PgC/yr","HL",-2.80280744232067 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2205,"Simulated","PgC/yr","HL",-0.952398042194723 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2206,"Simulated","PgC/yr","HL",-1.45263215197133 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2207,"Simulated","PgC/yr","HL",-0.843966082833925 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2208,"Simulated","PgC/yr","HL",0.144103094605129 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2209,"Simulated","PgC/yr","HL",-1.40530456141585 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2210,"Simulated","PgC/yr","HL",-5.95260730065822 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2211,"Simulated","PgC/yr","HL",-3.6651396472859 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2212,"Simulated","PgC/yr","HL",-1.35362903328942 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2213,"Simulated","PgC/yr","HL",-2.12879635850057 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2214,"Simulated","PgC/yr","HL",0.247397676942099 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2215,"Simulated","PgC/yr","HL",0.862338910696074 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2216,"Simulated","PgC/yr","HL",-2.03050637971664 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2217,"Simulated","PgC/yr","HL",-3.04080111894336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2218,"Simulated","PgC/yr","HL",0.903878872422959 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2219,"Simulated","PgC/yr","HL",-0.133653000273482 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2220,"Simulated","PgC/yr","HL",-0.601795902107177 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2221,"Simulated","PgC/yr","HL",-2.52743514729236 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2222,"Simulated","PgC/yr","HL",-2.92380943993224 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2223,"Simulated","PgC/yr","HL",-1.9733610160931 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2224,"Simulated","PgC/yr","HL",-1.09082531874431 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2225,"Simulated","PgC/yr","HL",-4.06373703547854 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2226,"Simulated","PgC/yr","HL",-0.66893863576409 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2227,"Simulated","PgC/yr","HL",-1.99095627073043 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2228,"Simulated","PgC/yr","HL",-1.44405173202142 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2229,"Simulated","PgC/yr","HL",0.88628595021375 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2230,"Simulated","PgC/yr","HL",-2.77266372439269 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2231,"Simulated","PgC/yr","HL",-0.313669890113575 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2232,"Simulated","PgC/yr","HL",-2.96745208561015 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2233,"Simulated","PgC/yr","HL",2.33139806236966 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2234,"Simulated","PgC/yr","HL",-0.2443389307043 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2235,"Simulated","PgC/yr","HL",-2.94614535472537 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2236,"Simulated","PgC/yr","HL",-3.25709592520345 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2237,"Simulated","PgC/yr","HL",0.904171883705652 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2238,"Simulated","PgC/yr","HL",-0.289187616652847 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2239,"Simulated","PgC/yr","HL",-4.12901003644301 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2240,"Simulated","PgC/yr","HL",-1.96811101194638 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2241,"Simulated","PgC/yr","HL",-0.707876773922068 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2242,"Simulated","PgC/yr","HL",-1.25152961627697 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2243,"Simulated","PgC/yr","HL",-4.05538985834073 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2244,"Simulated","PgC/yr","HL",-0.649788817784154 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2245,"Simulated","PgC/yr","HL",-3.24921814922498 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2246,"Simulated","PgC/yr","HL",0.625674134995285 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2247,"Simulated","PgC/yr","HL",0.893199558717727 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2248,"Simulated","PgC/yr","HL",0.296418377070568 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2249,"Simulated","PgC/yr","HL",-0.650845116169424 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2250,"Simulated","PgC/yr","HL",1.25354395951292 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2251,"Simulated","PgC/yr","HL",-4.61384312333705 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2252,"Simulated","PgC/yr","HL",-1.52365313048633 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2253,"Simulated","PgC/yr","HL",-0.182460749714509 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2254,"Simulated","PgC/yr","HL",0.593403534174525 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2255,"Simulated","PgC/yr","HL",-1.0496629188195 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2256,"Simulated","PgC/yr","HL",0.168604902151371 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2257,"Simulated","PgC/yr","HL",-0.550548374540945 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2258,"Simulated","PgC/yr","HL",-1.19095325088753 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2259,"Simulated","PgC/yr","HL",0.00967794108667524 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2260,"Simulated","PgC/yr","HL",-0.38181090300625 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2261,"Simulated","PgC/yr","HL",-1.46518003215495 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2262,"Simulated","PgC/yr","HL",-3.5262202284028 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2263,"Simulated","PgC/yr","HL",0.874502231793253 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2264,"Simulated","PgC/yr","HL",-1.45383014536494 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2265,"Simulated","PgC/yr","HL",-0.372403345733959 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2266,"Simulated","PgC/yr","HL",2.05648496412766 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2267,"Simulated","PgC/yr","HL",-4.35050324187763 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2268,"Simulated","PgC/yr","HL",-1.57151309776041 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2269,"Simulated","PgC/yr","HL",-1.28755046996269 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2270,"Simulated","PgC/yr","HL",-0.439598267470079 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2271,"Simulated","PgC/yr","HL",-2.47073469433289 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2272,"Simulated","PgC/yr","HL",-1.29489499456201 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2273,"Simulated","PgC/yr","HL",-0.654373205255859 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2274,"Simulated","PgC/yr","HL",-0.945991445253535 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2275,"Simulated","PgC/yr","HL",-0.487188547742679 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2276,"Simulated","PgC/yr","HL",-2.18796626973308 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2277,"Simulated","PgC/yr","HL",0.332274211466727 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2278,"Simulated","PgC/yr","HL",-0.199960229022124 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2279,"Simulated","PgC/yr","HL",-0.510034389633757 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2280,"Simulated","PgC/yr","HL",-2.3154879870497 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2281,"Simulated","PgC/yr","HL",0.779340622226535 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2282,"Simulated","PgC/yr","HL",-3.36866470883339 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2283,"Simulated","PgC/yr","HL",-1.16077717051937 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2284,"Simulated","PgC/yr","HL",-0.466719450106837 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2285,"Simulated","PgC/yr","HL",1.31233630894336 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2286,"Simulated","PgC/yr","HL",-0.352234548218688 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2287,"Simulated","PgC/yr","HL",-0.481747284490044 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2288,"Simulated","PgC/yr","HL",0.121050687048591 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2289,"Simulated","PgC/yr","HL",-0.938001421171745 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2290,"Simulated","PgC/yr","HL",1.27298649722203 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2291,"Simulated","PgC/yr","HL",-1.82909275642166 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2292,"Simulated","PgC/yr","HL",-0.928117757009268 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2293,"Simulated","PgC/yr","HL",-0.886031132441537 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2294,"Simulated","PgC/yr","HL",-0.683189188475994 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2295,"Simulated","PgC/yr","HL",1.08570826300048 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2296,"Simulated","PgC/yr","HL",-0.935450619467983 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2297,"Simulated","PgC/yr","HL",-1.81874260663499 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2298,"Simulated","PgC/yr","HL",-3.86300535585542 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2299,"Simulated","PgC/yr","HL",-2.63246992509501 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_HL","rcp85",2300,"Simulated","PgC/yr","HL",-1.92653956243987 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",7.91070644357722 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",10.7336811665199 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",2.03007022966319 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",4.16462889228235 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",10.3034934348515 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",7.8573879989482 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",9.82981113409119 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",9.04561931623376 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",8.28510963806452 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",8.76421921243723 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",11.4130909924908 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",9.36736890299424 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",9.49198450442417 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",10.0651901963844 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",8.78471675900123 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",11.8083175565196 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",7.58855783615442 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",7.01614886861892 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",7.8599827526181 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",11.4164828876037 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",13.4944228228156 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",8.54618536763071 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",16.048912279042 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",8.0784966469363 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",10.7754311725016 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",8.20559021935519 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",8.19393901355066 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",13.5218745883977 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",13.6062128071319 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",11.465595351565 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",9.66610105527875 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",10.737089303398 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",10.3210833762318 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",8.58982446648397 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",14.6254689482124 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",11.9762015494878 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",7.56628412088319 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",10.9584595140394 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",10.1449535049507 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",14.628807947847 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",15.3643270365599 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",15.4433717567607 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",14.1156324782668 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",11.6399346560335 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",9.72113671539723 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",10.2766526778891 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",12.2837954502604 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",10.1035264686635 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",10.7181674275352 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",13.9269602330871 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",12.4769388997428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",12.5994716045361 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",14.4238713307534 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",11.1519558926885 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",12.4815674735806 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",12.6486600097236 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",12.5062106209531 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",12.8065194316136 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",11.0777560471301 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",12.6890496581337 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",13.288057040132 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",16.4035020564506 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",9.67817406411342 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",11.2028033722359 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",13.4800771740205 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",13.2921394297464 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",11.779643049403 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",9.73663948021633 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",12.3544874037751 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",12.8898515388428 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",13.364403322746 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",9.77467984509338 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",13.7478127954827 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",10.3469112945256 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",14.5282448641952 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",16.0031681157375 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",12.9518212255148 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",6.68363724684993 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",10.6202476911588 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",10.9497811438591 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",11.5419268190554 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",8.38853434514597 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",10.193547768811 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",8.82674594775652 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",9.12785303019919 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",6.01473151909862 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",13.299237849301 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",10.8121404149844 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",8.61356323286681 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",8.09392178489738 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",6.75009920822254 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",7.7628609478247 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",13.017796702125 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",13.5786849905819 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",13.0883946070403 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2101,"Simulated","PgC/yr","LL",8.21044799961638 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2102,"Simulated","PgC/yr","LL",9.22184949138867 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2103,"Simulated","PgC/yr","LL",5.7985155887254 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2104,"Simulated","PgC/yr","LL",2.73799550319406 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2105,"Simulated","PgC/yr","LL",14.8941507622351 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2106,"Simulated","PgC/yr","LL",4.29059411854983 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2107,"Simulated","PgC/yr","LL",6.00526360159788 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2108,"Simulated","PgC/yr","LL",6.00279836503072 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2109,"Simulated","PgC/yr","LL",11.9514221029783 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2111,"Simulated","PgC/yr","LL",8.35019214681743 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2112,"Simulated","PgC/yr","LL",2.14672852943971 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2113,"Simulated","PgC/yr","LL",12.7523948467257 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2114,"Simulated","PgC/yr","LL",-1.48710128314205 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2115,"Simulated","PgC/yr","LL",11.7977016973973 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2116,"Simulated","PgC/yr","LL",12.8647948849095 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2117,"Simulated","PgC/yr","LL",7.54344743091514 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2118,"Simulated","PgC/yr","LL",8.63512977290484 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2119,"Simulated","PgC/yr","LL",7.24024176975316 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2120,"Simulated","PgC/yr","LL",-0.238018063798997 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2121,"Simulated","PgC/yr","LL",-13.7904701454787 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2122,"Simulated","PgC/yr","LL",4.19291833787539 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2123,"Simulated","PgC/yr","LL",9.61580140607958 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2124,"Simulated","PgC/yr","LL",6.76185418573727 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2125,"Simulated","PgC/yr","LL",-4.34017144816721 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2126,"Simulated","PgC/yr","LL",-0.848579859460929 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2127,"Simulated","PgC/yr","LL",8.39849603425509 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2128,"Simulated","PgC/yr","LL",11.1220174909162 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2129,"Simulated","PgC/yr","LL",8.31531800431132 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2130,"Simulated","PgC/yr","LL",1.12354157392057 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2131,"Simulated","PgC/yr","LL",11.7085752307154 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2132,"Simulated","PgC/yr","LL",-3.89301809540121 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2133,"Simulated","PgC/yr","LL",-13.2638813922154 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2134,"Simulated","PgC/yr","LL",10.2332865394576 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2135,"Simulated","PgC/yr","LL",0.184085351222986 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2136,"Simulated","PgC/yr","LL",9.47626006145938 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2137,"Simulated","PgC/yr","LL",2.05806429461412 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2138,"Simulated","PgC/yr","LL",-3.24338743605937 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2139,"Simulated","PgC/yr","LL",-0.720342915063015 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2140,"Simulated","PgC/yr","LL",-5.03625838442122 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2141,"Simulated","PgC/yr","LL",0.138197184917161 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2142,"Simulated","PgC/yr","LL",5.14522921532883 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2143,"Simulated","PgC/yr","LL",4.42925840785287 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2144,"Simulated","PgC/yr","LL",7.47384400488924 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2145,"Simulated","PgC/yr","LL",1.27076215678546 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2146,"Simulated","PgC/yr","LL",5.86123031150194 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2147,"Simulated","PgC/yr","LL",1.02905940713449 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2148,"Simulated","PgC/yr","LL",-9.19757770978116 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2149,"Simulated","PgC/yr","LL",-2.48294096908417 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2150,"Simulated","PgC/yr","LL",-2.2902943200798 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2151,"Simulated","PgC/yr","LL",1.26143468665645 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2152,"Simulated","PgC/yr","LL",1.59607738164917 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2153,"Simulated","PgC/yr","LL",-2.41322824036859 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2154,"Simulated","PgC/yr","LL",-4.70168416822203 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2155,"Simulated","PgC/yr","LL",-3.14632928142659 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2156,"Simulated","PgC/yr","LL",-3.62856748067879 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2157,"Simulated","PgC/yr","LL",4.3908497060806 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2158,"Simulated","PgC/yr","LL",4.86940717018046 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2159,"Simulated","PgC/yr","LL",5.06982221155109 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2160,"Simulated","PgC/yr","LL",-9.79552795040426 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2161,"Simulated","PgC/yr","LL",8.20611803282535 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2162,"Simulated","PgC/yr","LL",-2.50150530663075 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2163,"Simulated","PgC/yr","LL",-3.73197440961192 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2164,"Simulated","PgC/yr","LL",5.07353718610021 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2165,"Simulated","PgC/yr","LL",-4.97409675959244 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2166,"Simulated","PgC/yr","LL",-5.83263119690315 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2167,"Simulated","PgC/yr","LL",12.3585601361238 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2168,"Simulated","PgC/yr","LL",6.12446147693954 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2169,"Simulated","PgC/yr","LL",-5.20800583239953 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2170,"Simulated","PgC/yr","LL",-7.16158597398227 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2171,"Simulated","PgC/yr","LL",-9.70949093083053 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2172,"Simulated","PgC/yr","LL",-3.83136874462405 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2173,"Simulated","PgC/yr","LL",2.00011543248744 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2174,"Simulated","PgC/yr","LL",7.23250234918416 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2175,"Simulated","PgC/yr","LL",-2.8064137193319 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2176,"Simulated","PgC/yr","LL",-12.1279275102072 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2177,"Simulated","PgC/yr","LL",-0.702607565988133 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2178,"Simulated","PgC/yr","LL",1.85015345915147 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2179,"Simulated","PgC/yr","LL",-6.85606388593908 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2180,"Simulated","PgC/yr","LL",-9.22275946920272 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2181,"Simulated","PgC/yr","LL",8.62431012352676 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2182,"Simulated","PgC/yr","LL",1.48928206933607 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2183,"Simulated","PgC/yr","LL",-13.2260863657852 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2184,"Simulated","PgC/yr","LL",4.04214383731616 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2185,"Simulated","PgC/yr","LL",-0.498781885629637 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2186,"Simulated","PgC/yr","LL",1.40994016872998 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2187,"Simulated","PgC/yr","LL",4.94225148680025 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2188,"Simulated","PgC/yr","LL",-7.74603404018066 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2189,"Simulated","PgC/yr","LL",-5.78651072945926 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2190,"Simulated","PgC/yr","LL",-16.0306353548932 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2191,"Simulated","PgC/yr","LL",-7.54931553676089 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2192,"Simulated","PgC/yr","LL",1.36968385643222 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2193,"Simulated","PgC/yr","LL",-6.9471946742317 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2194,"Simulated","PgC/yr","LL",-7.86865848899868 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2195,"Simulated","PgC/yr","LL",-12.1270544055897 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2196,"Simulated","PgC/yr","LL",-14.9332758575397 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2197,"Simulated","PgC/yr","LL",-2.17743995143899 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2198,"Simulated","PgC/yr","LL",-0.280581321298861 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2199,"Simulated","PgC/yr","LL",-14.5639776254202 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2200,"Simulated","PgC/yr","LL",-15.8322707266289 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2201,"Simulated","PgC/yr","LL",-6.72329008977968 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2202,"Simulated","PgC/yr","LL",-2.61007579997618 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2203,"Simulated","PgC/yr","LL",-0.134073049576689 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2204,"Simulated","PgC/yr","LL",-1.35810303892604 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2205,"Simulated","PgC/yr","LL",2.72657666437257 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2206,"Simulated","PgC/yr","LL",-1.64692815344627 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2207,"Simulated","PgC/yr","LL",-1.64158812445064 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2208,"Simulated","PgC/yr","LL",-10.1994777689509 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2209,"Simulated","PgC/yr","LL",-12.6406493077802 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2210,"Simulated","PgC/yr","LL",-4.27351524406294 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2211,"Simulated","PgC/yr","LL",1.29619518070329 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2212,"Simulated","PgC/yr","LL",8.52834499579074 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2213,"Simulated","PgC/yr","LL",-13.7299981031903 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2214,"Simulated","PgC/yr","LL",-16.3511292776223 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2215,"Simulated","PgC/yr","LL",-16.9684787703131 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2216,"Simulated","PgC/yr","LL",-14.0372440131707 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2217,"Simulated","PgC/yr","LL",-1.06177120004483 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2218,"Simulated","PgC/yr","LL",-12.1603851414415 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2219,"Simulated","PgC/yr","LL",-7.8963002173879 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2220,"Simulated","PgC/yr","LL",6.66766950663309 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2221,"Simulated","PgC/yr","LL",-12.2025022332635 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2222,"Simulated","PgC/yr","LL",4.65417700520912 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2223,"Simulated","PgC/yr","LL",-15.4847013424571 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2224,"Simulated","PgC/yr","LL",2.98018260861928 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2225,"Simulated","PgC/yr","LL",-8.39466122181729 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2226,"Simulated","PgC/yr","LL",-15.4595353858341 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2227,"Simulated","PgC/yr","LL",-6.83209367440309 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2228,"Simulated","PgC/yr","LL",-19.3223451149885 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2229,"Simulated","PgC/yr","LL",-6.95419794777024 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2230,"Simulated","PgC/yr","LL",-4.55776018081577 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2231,"Simulated","PgC/yr","LL",-15.253216682321 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2232,"Simulated","PgC/yr","LL",-4.14978986694891 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2233,"Simulated","PgC/yr","LL",-7.81727964035146 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2234,"Simulated","PgC/yr","LL",-13.6704215528173 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2235,"Simulated","PgC/yr","LL",6.02852268720104 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2236,"Simulated","PgC/yr","LL",-7.87731052118149 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2237,"Simulated","PgC/yr","LL",2.11347944138011 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2238,"Simulated","PgC/yr","LL",9.04579709771696 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2240,"Simulated","PgC/yr","LL",-17.0303203884721 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2241,"Simulated","PgC/yr","LL",-5.13328229965723 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2242,"Simulated","PgC/yr","LL",-3.06619197329563 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2243,"Simulated","PgC/yr","LL",-3.58937785728029 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2244,"Simulated","PgC/yr","LL",-11.3265452105984 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2245,"Simulated","PgC/yr","LL",-16.1268480598058 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2246,"Simulated","PgC/yr","LL",-11.7250588664585 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2247,"Simulated","PgC/yr","LL",10.4846524370159 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2248,"Simulated","PgC/yr","LL",-4.06149436408849 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2250,"Simulated","PgC/yr","LL",-4.01603629728204 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2251,"Simulated","PgC/yr","LL",-13.0250405293741 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2252,"Simulated","PgC/yr","LL",-1.73963658778988 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2253,"Simulated","PgC/yr","LL",-8.7966554440486 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2254,"Simulated","PgC/yr","LL",-7.58044178222099 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2255,"Simulated","PgC/yr","LL",-13.2470909188013 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2256,"Simulated","PgC/yr","LL",-13.4796686058341 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2257,"Simulated","PgC/yr","LL",-7.29990260171815 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2258,"Simulated","PgC/yr","LL",-8.27385146102787 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2259,"Simulated","PgC/yr","LL",2.9285798869932 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2260,"Simulated","PgC/yr","LL",-13.874330329558 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2261,"Simulated","PgC/yr","LL",9.05621114193335 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2262,"Simulated","PgC/yr","LL",-7.59206869122282 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2263,"Simulated","PgC/yr","LL",1.66367911986413 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2264,"Simulated","PgC/yr","LL",-11.3588685180455 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2265,"Simulated","PgC/yr","LL",3.22391838829823 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2266,"Simulated","PgC/yr","LL",-14.6395281712844 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2267,"Simulated","PgC/yr","LL",-15.09917890387 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2268,"Simulated","PgC/yr","LL",-13.3865374466304 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2269,"Simulated","PgC/yr","LL",6.35429342773172 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2270,"Simulated","PgC/yr","LL",-8.82045445860076 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2272,"Simulated","PgC/yr","LL",-0.868987461763414 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2273,"Simulated","PgC/yr","LL",-12.3942573410521 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2274,"Simulated","PgC/yr","LL",-13.0384202321104 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2275,"Simulated","PgC/yr","LL",0.830528849485862 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2276,"Simulated","PgC/yr","LL",-17.2071668727688 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2277,"Simulated","PgC/yr","LL",0.341411428663408 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2278,"Simulated","PgC/yr","LL",-6.08128296381778 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2279,"Simulated","PgC/yr","LL",-1.80603204571878 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2280,"Simulated","PgC/yr","LL",-3.83408287526769 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2281,"Simulated","PgC/yr","LL",-8.00382904293171 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2282,"Simulated","PgC/yr","LL",-9.17802964802749 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2283,"Simulated","PgC/yr","LL",1.93914296824634 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2284,"Simulated","PgC/yr","LL",-8.74303786561283 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2285,"Simulated","PgC/yr","LL",-13.4829081795281 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2286,"Simulated","PgC/yr","LL",-1.52036485710028 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2287,"Simulated","PgC/yr","LL",3.50729417113316 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2288,"Simulated","PgC/yr","LL",-15.5387864203487 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2289,"Simulated","PgC/yr","LL",-12.6277344707 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2290,"Simulated","PgC/yr","LL",-3.74397268437868 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2291,"Simulated","PgC/yr","LL",2.56052744215606 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2292,"Simulated","PgC/yr","LL",-3.52894005438869 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2293,"Simulated","PgC/yr","LL",-0.837638791914322 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2294,"Simulated","PgC/yr","LL",-4.03105949106309 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2295,"Simulated","PgC/yr","LL",-10.3704890698987 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2296,"Simulated","PgC/yr","LL",2.75379435100184 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2297,"Simulated","PgC/yr","LL",-6.49410868752605 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2298,"Simulated","PgC/yr","LL",-4.51467121688556 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2299,"Simulated","PgC/yr","LL",-6.96592889186224 -"IPSL-CM5A-LR","nbp","carbon_cycle","nbp_LL","rcp85",2300,"Simulated","PgC/yr","LL",-9.61128048880659 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",9.87401195711835 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",-2.09016125352189 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",-5.53418433907194 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",5.09892841851733 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",15.5201799044322 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",18.8582860250007 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",8.07676567456797 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",9.93300572031814 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",10.627042897657 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",3.77181160525279 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",-2.45828040588542 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",1.05280964607482 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",3.81144422010473 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",1.81390864314879 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",-6.23054073687247 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",6.81480094291358 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",-5.07360999375476 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",7.72986851526391 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",6.91416393883732 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",-8.3692930365719 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",-13.0444104532623 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",-12.4977660087729 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",-5.3107703901602 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",-0.291870517595785 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",9.64155272673889 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",0.627895647442982 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",6.93947271358411 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",-4.03296837425748 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",-9.31479836706171 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",10.4234500811791 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",10.5530690932783 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",-0.720531456525513 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",6.89331025471387 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",3.79426558366152 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",1.01785423304298 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",10.5948391866278 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",3.97743092504669 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",-9.74278943406197 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",0.495751869545803 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",8.49367691510468 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",-7.30643386405277 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",-8.26576927550645 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",-2.54213743476966 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",10.7001401589347 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",-9.76338095942312 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",-4.48845716125303 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",0.656057931859038 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",-14.0282343881205 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",-6.93389178778522 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",2.65441697682911 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",-12.3973978028709 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",-0.805220799271689 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",-2.33127654806551 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",5.03133809958409 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",8.99316012408951 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",7.11093741082319 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",9.09376314704235 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",3.14790591767202 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",-2.90552325438791 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",-10.2150081317665 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",3.61444558108375 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",-1.88962105870577 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",2.32233902510746 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",-7.68044274272049 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",-0.32737871569883 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",2.88101382261578 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",-8.08159711580713 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",-17.6742451708553 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",-10.9965822106777 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",-8.55583105847589 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",-13.9556389276639 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",-4.81142549806837 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",-0.540125697989257 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",-1.38791271691323 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",5.9841565337072 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",-11.3679888017539 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",-8.82966633989345 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",-3.36810319465357 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",-13.5858342392089 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",-5.42654162959987 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",4.2875759992123 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",-10.1218693960277 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",-5.15284466507531 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",-8.60539353957634 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",-12.6532325881671 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",-9.9055980671369 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",0.923277966618558 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",-0.718910575539888 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",6.3641612888528 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",-8.2824991862154 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",-3.6575522016203 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",-17.047830479169 -"MIROC-ESM","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",-17.2076508240207 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.924820964204407 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",1.08332773778739 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",1.57193136720223 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.952883572313447 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.567044032029107 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",1.07714250194047 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",0.997142803174909 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",0.945551574572256 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.813473940121003 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.809841971854101 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",0.23183839085036 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",-0.462500072875194 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",1.17362884754219 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",1.08219125452443 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",-0.0803235312123074 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.611016572417 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",1.10573043145021 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.516849030480871 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.653492599644897 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.951263715577612 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",-0.45197364320031 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",0.188569186645589 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.366134570641701 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.894996820927826 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.691245179080065 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.427895532632356 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",-0.188320888249004 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",0.0218556176778378 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",0.541998063312012 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",0.989087689830326 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.0931375675177142 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",1.80762455037846 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.11326494600849 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.563710421871327 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",0.897185613797255 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",-0.00812785271822575 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.402525370327416 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",-0.544956920127888 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",0.983922816492539 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",0.0880075581861601 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.70285642106046 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.890485612981809 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",1.00737059693983 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",1.42700766600797 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.01084171851661 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",0.98149872630614 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",1.09596684289977 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",-0.0647375147204524 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",0.0131800194745872 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",0.247573947537877 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.96667971795142 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",1.38011599432525 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",0.938158460644839 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",0.693247567581505 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",0.70687619930905 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",0.842363005748326 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",1.53338122153682 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",0.542236972039986 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",1.52495191045202 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",0.925558803252662 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",0.00585717804929606 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",0.335025598450142 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",0.561473013853763 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",0.69127240356302 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",-0.0367180213027858 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",0.702644459014595 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",-0.209107169906488 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",0.600001213252309 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",-0.0557442401372161 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",0.636242556082616 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",-0.563413452766438 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",-0.539307839914683 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",-0.853557824259845 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",-0.170417818236899 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",-0.184209630181668 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",-0.457598276939024 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",-0.253711040498096 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",-0.230997848829161 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",-1.77932136673636 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",-0.789583345124424 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",-0.909053543759799 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",0.0260759153554267 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",-1.57734681690355 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",-1.06649411769398 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",-1.81600385731089 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",-0.360753846046197 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",-0.188700586445975 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",-1.64273641355095 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",-1.52851665091407 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",-0.98360056751062 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",-0.276205519560596 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",-0.0450740485242777 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",-1.6261505918126 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",-0.412347019254776 -"MIROC-ESM","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",-1.8297416647711 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",8.77081831409173 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",-2.84347462717858 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",-6.52854331918963 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",4.16253521093182 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",14.4701947664568 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",17.2830125339673 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",6.98870223728745 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",8.81149011159759 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",9.58003513734779 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",2.99815066525283 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",-2.54012991709064 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",1.36808548073377 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",2.75555153600531 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",0.907396610498213 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",-5.9226801613224 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",6.074443658022 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",-5.72646481684495 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",7.026050358067 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",6.13711452317906 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",-8.77290858476308 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",-12.1809039826033 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",-12.1500222625002 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",-5.38365776567396 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",-0.970854620231445 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",8.72774090909141 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",0.272987886089161 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",6.81089617671118 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",-3.8906683006801 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",-9.36534664328348 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",9.24899001662537 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",10.064730453568 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",-2.08670350669302 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",5.76236265434521 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",3.2096126116545 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",0.285492654294451 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",10.1829804316999 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",3.50990640471547 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",-8.93784437913697 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",-0.282923790140939 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",8.09057159041826 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",-7.56034669297411 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",-8.62658032402302 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",-3.21901151173241 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",9.17689896282851 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",-10.157945082908 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",-5.06855910834816 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",-0.215387690269148 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",-13.4246602702482 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",-6.67041162621208 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",2.3586529101221 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",-12.6539384890439 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",-1.83822208168609 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",-2.96307376792076 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",4.29792381192661 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",8.09287740777882 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",6.18040747486859 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",7.55184989570663 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",2.60532879897307 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",-3.96737764187368 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",-10.5259511386905 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",3.46728005112036 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",-2.07352322580801 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",1.79750238491596 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",-7.91065796221409 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",-0.28613011366978 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",2.22521221254096 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",-7.60132451355725 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",-17.4396298227796 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",-10.5195898502884 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",-8.7090428990695 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",-12.9701933813878 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",-4.20545827385838 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",0.139722553036658 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",-1.20165855565244 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",5.89010999215379 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",-10.566304938303 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",-8.28545906084733 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",-3.05696164803079 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",-11.6768932880661 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",-4.60320578114727 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",4.81971311671873 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",-9.74252407763856 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",-3.73254085450816 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",-7.44296289320444 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",-10.7527954015985 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",-9.23634328032292 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",1.03242579811297 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",0.576856161746285 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",7.29227047727532 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",-7.19676599699617 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",-3.3001102882823 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",-16.3402485703206 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",-15.2739577262616 -"MIROC-ESM","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",-19.3596718310499 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",3.78217457447435 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",6.5161364622638 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",4.53712480758237 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",6.45903975077295 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",6.52777424420081 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",4.61247200613021 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",2.91939751698957 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",3.79590345751961 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",5.94463692084239 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",6.48238609037679 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",8.2487584989792 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",7.64657285306402 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",7.23396160800398 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",8.57721257566846 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",6.66635312318321 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",5.31693823286737 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",8.29542544155787 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",5.84746666942109 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",6.77020363837569 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",8.08178568402552 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",8.85755363293573 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",6.53959539961962 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",9.31894222415445 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",8.65483907442428 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",7.62041639527857 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",6.05775744810162 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",8.93802081212013 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",8.17038081236373 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",9.43073088086167 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",9.92807354282762 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",7.87438384195299 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",10.2377672254973 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",7.55826082764509 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",6.95141524333717 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",10.0532951113463 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",9.2676684249804 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",11.5622063258842 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",7.37888617458023 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",11.1096244874098 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",12.7411626965529 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",9.75014174952745 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",10.4930745854203 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",8.15117485295419 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",9.44559378412332 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",9.50380199628016 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",9.01888047489716 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",11.5004239393716 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",10.8036561817914 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",9.08697155259941 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",10.2098960648031 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",10.4100417860301 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",10.8626895746163 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",10.4493753978761 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",8.80250620053096 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",10.1284396339406 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",10.2046683120325 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",12.1436772025133 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",7.51006898979672 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",11.0864229163442 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",11.7789183935064 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",11.6009479952627 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",11.3338371738533 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",15.7601143202272 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",12.4527950281086 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",9.52319615478943 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",9.78150987469036 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",12.2483609410704 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",12.8121861414246 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",11.1374200467563 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",9.74810533875588 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",10.2549142545849 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",11.1936014993774 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",11.642639725743 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",15.4977856861984 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",8.76049597926641 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",9.89512100644038 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",10.4291126281372 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",7.36579266456402 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",12.3301680335034 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",13.4886203535361 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",11.3999722677497 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",10.6505859721289 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",8.26276565932578 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",10.6096615149013 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",12.2647969957812 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",15.3519040387303 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",9.8547241501078 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",7.42363895537521 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",7.75244691071355 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",7.15048646030234 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",9.18857493837018 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",11.0360209454784 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",7.11281929518567 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",4.67711759262181 -"MRI-ESM1","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",6.73838512220484 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",1.10713284034605 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.635808124257042 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",-0.323054120825461 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.898331338304959 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.711650386810567 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.626862671490111 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",1.23835595098018 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",1.00621309621189 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",1.26642186064098 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",1.65713805282055 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",1.57678996282109 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",1.21101709813639 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.888741945926337 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.88653598613339 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",1.38041900338375 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",1.43082623455413 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",0.969753515371717 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.856587836321393 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",1.70501822931009 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",1.20898932996606 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",2.04063733846439 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",1.37264944034252 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",0.812887434521503 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.661018301726863 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.987345490605767 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",1.83362183559992 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",1.97884654983788 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",1.98224618935486 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",2.43563771220906 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",1.67666009705377 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",1.79790476846055 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",2.33989573250694 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",1.77610152149062 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",1.93318662346782 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",1.85449971101736 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",1.64903543767943 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",1.51903079611126 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",2.03803824887228 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",2.32001613847121 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",2.11496890935643 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",2.18382320223798 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",2.9066521240649 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",2.23061293932167 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",2.08639613056288 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",1.39091335256268 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",1.55799439212624 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",2.42657997830512 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",1.5872770210171 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",1.668468531921 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",2.06847372798279 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",2.52471690007753 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",2.58990732822101 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",1.46942411486574 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",2.39233889774852 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",2.07281711232922 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",1.99129692391518 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",2.70891162639545 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",2.25072030366389 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",2.29494215656238 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",2.69665460918524 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",2.26249757419781 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",2.78544040790093 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",2.88544119654757 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",2.72345188781757 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",2.49425400687123 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",2.80285010856192 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",2.31642664175894 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",2.73659782166565 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",2.52147707890621 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",2.56752430228911 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",3.41231416168508 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",3.45119843180587 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",2.98610954759057 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",3.18508630432432 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",2.32274500755934 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",1.97436551173389 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",1.63286753722974 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",1.94472329156531 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",2.65765776628814 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",2.99679521216138 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",2.8501402987134 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",2.41334042823632 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",2.29210771404154 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",2.11338968245547 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",2.59270531582724 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",2.72767919971588 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",2.34594054062809 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",2.35958371951147 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",2.30401243095694 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",2.70957073125161 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",2.48105995253586 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",1.9069282942931 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",2.4010347072602 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",3.18208533575353 -"MRI-ESM1","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",2.83162790979525 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",2.67504135149494 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",5.88032721923921 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",4.86017878435302 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",5.56070900543281 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",5.81612439367854 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",3.98560837655091 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",1.681041282952 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",2.78969066524615 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",4.6782148103479 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",4.82524801192882 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",6.67196848352129 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",6.43555596223433 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",6.34521925623036 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",7.69067754671061 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",5.2859338703291 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",3.88611131416683 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",7.3256710576027 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",4.99087847526939 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",5.06518587450814 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",6.87279573308548 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",6.81691703240674 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",5.16694537108731 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",8.50605329964118 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",7.99382002465277 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",6.6330712083057 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",4.22413452233329 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",6.95917383769803 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",6.18813547387125 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",6.99509360202008 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",8.25141224859377 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",6.07647815691355 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",7.89787069086098 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",5.78215890895225 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",5.01822917131004 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",8.19879550920795 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",7.61863389856695 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",10.0431758495055 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",5.34084860020993 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",8.78960952392584 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",10.6261938162403 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",7.56631872928048 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",7.58642252463685 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",5.92056114795191 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",7.35919801462995 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",8.11288885479438 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",7.46088639860928 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",9.07384526860902 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",9.21637993979971 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",7.41850197220125 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",8.14142344393245 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",7.88532458458821 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",8.27278290174739 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",8.97995161571278 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",6.41016744718942 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",8.05562214151865 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",8.21337095837632 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",9.4347667339258 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",5.25934829318679 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",8.79148083882178 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",9.08226421029075 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",9.33845130193481 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",8.54839690214929 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",12.8746728220609 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",9.72934277738654 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",7.02894319954663 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",6.97866000695574 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",9.9319333560469 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",10.0755887091352 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",8.61594333680271 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",7.18058028351756 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",6.842600533051 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",7.74240274479836 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",8.65653019471463 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",12.3127002341804 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",6.43775123452956 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",7.92075577901132 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",8.79624538301144 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",5.42106888043584 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",9.67251064110987 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",10.4918252419319 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",8.54983232314618 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",8.23724503842451 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",5.97065734074319 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",8.4962726833624 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",9.67209186691078 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",12.6242260975044 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",7.50878336840533 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",5.06405465741059 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",5.44843406237646 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",4.44091469846286 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",6.70751556514415 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",9.12909185728913 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",4.71178390817505 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",1.49503310905566 -"MRI-ESM1","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",3.90675767232202 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2006,"Simulated","PgC/yr","global",1.02449662562591 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2007,"Simulated","PgC/yr","global",-1.80947290238799 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2008,"Simulated","PgC/yr","global",-2.05444947226685 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2009,"Simulated","PgC/yr","global",-2.16990232392329 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2010,"Simulated","PgC/yr","global",-3.42848962013247 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2011,"Simulated","PgC/yr","global",-2.83976211786384 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2012,"Simulated","PgC/yr","global",-2.17438080711977 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2013,"Simulated","PgC/yr","global",-3.38682878758128 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2014,"Simulated","PgC/yr","global",-4.24730723987326 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2015,"Simulated","PgC/yr","global",-2.06909462708753 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2016,"Simulated","PgC/yr","global",-7.16615705453014 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2017,"Simulated","PgC/yr","global",-4.74424514042088 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2018,"Simulated","PgC/yr","global",-0.819937240539909 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2019,"Simulated","PgC/yr","global",-3.00801731594318 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2020,"Simulated","PgC/yr","global",-6.16631476845798 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2021,"Simulated","PgC/yr","global",-5.43257706889634 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2022,"Simulated","PgC/yr","global",-4.53529590878499 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2023,"Simulated","PgC/yr","global",-3.75519207374483 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2024,"Simulated","PgC/yr","global",-6.04178591026613 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2025,"Simulated","PgC/yr","global",-3.9642699974266 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2026,"Simulated","PgC/yr","global",-2.93671870522676 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2027,"Simulated","PgC/yr","global",-3.45778314707498 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2028,"Simulated","PgC/yr","global",-5.46581983299667 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2029,"Simulated","PgC/yr","global",-5.20681904741848 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2030,"Simulated","PgC/yr","global",-2.92895857486044 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2031,"Simulated","PgC/yr","global",-2.03409199925985 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2032,"Simulated","PgC/yr","global",-4.53905854247629 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2033,"Simulated","PgC/yr","global",-6.04168134797886 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2034,"Simulated","PgC/yr","global",-4.41757646847056 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2035,"Simulated","PgC/yr","global",-2.95140568496235 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2036,"Simulated","PgC/yr","global",-2.78828369086289 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2037,"Simulated","PgC/yr","global",-4.66632693259472 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2038,"Simulated","PgC/yr","global",-4.71179383240269 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2039,"Simulated","PgC/yr","global",-3.08128008900977 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2040,"Simulated","PgC/yr","global",-2.953850833834 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2041,"Simulated","PgC/yr","global",-3.72377030209365 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2042,"Simulated","PgC/yr","global",-4.81082557900537 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2043,"Simulated","PgC/yr","global",-2.73456923956485 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2044,"Simulated","PgC/yr","global",-3.31270377780732 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2045,"Simulated","PgC/yr","global",-2.2149123669684 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2046,"Simulated","PgC/yr","global",-2.97856614124447 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2047,"Simulated","PgC/yr","global",-3.4076575952063 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2048,"Simulated","PgC/yr","global",-3.45047343886922 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2049,"Simulated","PgC/yr","global",-0.182379954439513 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2050,"Simulated","PgC/yr","global",-4.76332212757141 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2051,"Simulated","PgC/yr","global",-3.10483395070621 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2052,"Simulated","PgC/yr","global",-0.86875142046111 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2053,"Simulated","PgC/yr","global",-3.70061377708885 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2054,"Simulated","PgC/yr","global",-3.82481607921429 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2055,"Simulated","PgC/yr","global",-0.599530234329574 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2056,"Simulated","PgC/yr","global",-2.42391790137436 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2057,"Simulated","PgC/yr","global",-3.65782045453395 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2058,"Simulated","PgC/yr","global",-4.30694474258274 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2059,"Simulated","PgC/yr","global",-1.79893463248133 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2060,"Simulated","PgC/yr","global",0.265826611691443 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2061,"Simulated","PgC/yr","global",-5.036633468651 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2062,"Simulated","PgC/yr","global",-4.80093398662923 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2063,"Simulated","PgC/yr","global",0.208978991671495 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2064,"Simulated","PgC/yr","global",-2.86059736009115 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2065,"Simulated","PgC/yr","global",-1.51924000506123 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2066,"Simulated","PgC/yr","global",-2.13476778674859 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2067,"Simulated","PgC/yr","global",-3.0342318856881 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2068,"Simulated","PgC/yr","global",-1.36357394550465 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2069,"Simulated","PgC/yr","global",-2.71068560450085 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2070,"Simulated","PgC/yr","global",0.582950516329263 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2071,"Simulated","PgC/yr","global",-3.35139343274934 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2072,"Simulated","PgC/yr","global",-1.04412425386774 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2073,"Simulated","PgC/yr","global",-2.57138450809301 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2074,"Simulated","PgC/yr","global",-4.18582944090775 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2075,"Simulated","PgC/yr","global",0.263090297066006 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2076,"Simulated","PgC/yr","global",-1.83081969549766 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2077,"Simulated","PgC/yr","global",-3.99225730010346 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2078,"Simulated","PgC/yr","global",-0.628613028046962 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2079,"Simulated","PgC/yr","global",-2.07668906644478 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2080,"Simulated","PgC/yr","global",-2.04947230739259 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2081,"Simulated","PgC/yr","global",-1.80744761131602 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2082,"Simulated","PgC/yr","global",-3.31365770759737 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2083,"Simulated","PgC/yr","global",-0.955400579274662 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2084,"Simulated","PgC/yr","global",-1.16906331795581 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2085,"Simulated","PgC/yr","global",-3.98095492117441 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2086,"Simulated","PgC/yr","global",-0.671937366156152 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2087,"Simulated","PgC/yr","global",-1.51886068525602 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2088,"Simulated","PgC/yr","global",-2.09061032850741 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2089,"Simulated","PgC/yr","global",-2.28877677534947 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2090,"Simulated","PgC/yr","global",-1.18371989419557 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2091,"Simulated","PgC/yr","global",-2.53336726909069 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2092,"Simulated","PgC/yr","global",-2.43012085798558 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2093,"Simulated","PgC/yr","global",-0.862286575536532 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2094,"Simulated","PgC/yr","global",-1.92030731824807 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2095,"Simulated","PgC/yr","global",-0.471218795179318 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2096,"Simulated","PgC/yr","global",-2.98365108570714 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2097,"Simulated","PgC/yr","global",-0.272275048380172 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2098,"Simulated","PgC/yr","global",-3.93933108758641 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2099,"Simulated","PgC/yr","global",-2.0113440715007 -"NorESM1-ME","nbp","carbon_cycle","nbp","rcp85",2100,"Simulated","PgC/yr","global",4.32253417529003 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2006,"Simulated","PgC/yr","HL",0.148070798079822 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2007,"Simulated","PgC/yr","HL",0.072793296547077 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2008,"Simulated","PgC/yr","HL",0.0824536110373331 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2009,"Simulated","PgC/yr","HL",0.0675331913995037 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2010,"Simulated","PgC/yr","HL",0.000705122140294589 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2011,"Simulated","PgC/yr","HL",0.0426183999671382 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2012,"Simulated","PgC/yr","HL",-0.0513914130087595 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2013,"Simulated","PgC/yr","HL",-0.0131429974578469 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2014,"Simulated","PgC/yr","HL",0.1000346522037 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2015,"Simulated","PgC/yr","HL",0.0689289258494772 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2016,"Simulated","PgC/yr","HL",-0.0565674353089298 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2017,"Simulated","PgC/yr","HL",0.0403899712714376 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2018,"Simulated","PgC/yr","HL",0.129411053282712 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2019,"Simulated","PgC/yr","HL",0.016627826229033 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2020,"Simulated","PgC/yr","HL",-0.0566266198374416 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2021,"Simulated","PgC/yr","HL",0.0283914276653684 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2022,"Simulated","PgC/yr","HL",-0.0108080599347771 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2023,"Simulated","PgC/yr","HL",0.0525352196208658 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2024,"Simulated","PgC/yr","HL",0.0277777336680991 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2025,"Simulated","PgC/yr","HL",0.0625670846684394 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2026,"Simulated","PgC/yr","HL",-0.0805739337357498 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2027,"Simulated","PgC/yr","HL",-0.008535324476525 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2028,"Simulated","PgC/yr","HL",-0.0584395906359534 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2029,"Simulated","PgC/yr","HL",0.0418977190014813 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2030,"Simulated","PgC/yr","HL",0.0244010434854367 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2031,"Simulated","PgC/yr","HL",0.129313530007898 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2032,"Simulated","PgC/yr","HL",0.0404950748306913 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2033,"Simulated","PgC/yr","HL",-0.0177934378208801 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2034,"Simulated","PgC/yr","HL",-0.107670010325588 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2035,"Simulated","PgC/yr","HL",0.0497433133968164 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2036,"Simulated","PgC/yr","HL",0.0600173393773059 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2037,"Simulated","PgC/yr","HL",0.0599308366698701 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2038,"Simulated","PgC/yr","HL",-0.0581903158976401 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2039,"Simulated","PgC/yr","HL",0.023080814499473 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2040,"Simulated","PgC/yr","HL",-0.0476678898270419 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2041,"Simulated","PgC/yr","HL",0.0591322537041227 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2042,"Simulated","PgC/yr","HL",0.0819517087425888 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2043,"Simulated","PgC/yr","HL",-0.0115298283797018 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2044,"Simulated","PgC/yr","HL",0.000966136698359564 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2045,"Simulated","PgC/yr","HL",-0.0460001397854352 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2046,"Simulated","PgC/yr","HL",0.128438182084726 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2047,"Simulated","PgC/yr","HL",0.0940674522925815 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2048,"Simulated","PgC/yr","HL",0.00650389279594825 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2049,"Simulated","PgC/yr","HL",0.0156977369902287 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2050,"Simulated","PgC/yr","HL",-0.0220979606499788 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2051,"Simulated","PgC/yr","HL",0.0791366243411172 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2052,"Simulated","PgC/yr","HL",0.0210666279659971 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2053,"Simulated","PgC/yr","HL",-0.0139727645475826 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2054,"Simulated","PgC/yr","HL",-0.0223784632446906 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2055,"Simulated","PgC/yr","HL",0.0699619728439399 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2056,"Simulated","PgC/yr","HL",0.0834857250737108 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2057,"Simulated","PgC/yr","HL",-0.0912587236680635 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2058,"Simulated","PgC/yr","HL",0.0431474746661057 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2059,"Simulated","PgC/yr","HL",0.00371972429301565 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2060,"Simulated","PgC/yr","HL",0.0368307070225454 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2061,"Simulated","PgC/yr","HL",0.00399117719430382 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2062,"Simulated","PgC/yr","HL",0.0941813606437616 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2063,"Simulated","PgC/yr","HL",0.0813742951528466 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2064,"Simulated","PgC/yr","HL",0.0546065906539589 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2065,"Simulated","PgC/yr","HL",0.00725447215273273 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2066,"Simulated","PgC/yr","HL",-0.13441016340603 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2067,"Simulated","PgC/yr","HL",0.00493676811478773 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2068,"Simulated","PgC/yr","HL",0.0662057378193699 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2069,"Simulated","PgC/yr","HL",0.0399077194063568 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2070,"Simulated","PgC/yr","HL",0.143105886701304 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2071,"Simulated","PgC/yr","HL",0.143892545296529 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2072,"Simulated","PgC/yr","HL",-0.00951196249277849 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2073,"Simulated","PgC/yr","HL",0.0219159288656357 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2074,"Simulated","PgC/yr","HL",0.037677366484606 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2075,"Simulated","PgC/yr","HL",-0.104774312514591 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2076,"Simulated","PgC/yr","HL",-0.0216292133531771 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2077,"Simulated","PgC/yr","HL",0.0214181811498633 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2078,"Simulated","PgC/yr","HL",0.160453921585964 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2079,"Simulated","PgC/yr","HL",-0.0629063898619471 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2080,"Simulated","PgC/yr","HL",0.0523461498339696 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2081,"Simulated","PgC/yr","HL",-0.0250364754060846 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2082,"Simulated","PgC/yr","HL",0.11074527341299 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2083,"Simulated","PgC/yr","HL",-0.0647706733551292 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2084,"Simulated","PgC/yr","HL",-0.015605172970735 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2085,"Simulated","PgC/yr","HL",0.0442520387287652 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2086,"Simulated","PgC/yr","HL",-0.00220160323526531 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2087,"Simulated","PgC/yr","HL",0.112795652889172 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2088,"Simulated","PgC/yr","HL",0.0472709744717907 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2089,"Simulated","PgC/yr","HL",0.0363120114822726 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2090,"Simulated","PgC/yr","HL",0.0600733751722811 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2091,"Simulated","PgC/yr","HL",-0.101646832929374 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2092,"Simulated","PgC/yr","HL",-0.0370504478064831 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2093,"Simulated","PgC/yr","HL",0.051517158265642 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2094,"Simulated","PgC/yr","HL",-0.0421088007681934 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2095,"Simulated","PgC/yr","HL",0.0452705082531511 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2096,"Simulated","PgC/yr","HL",-0.0601742804201527 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2097,"Simulated","PgC/yr","HL",-0.0787919546386213 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2098,"Simulated","PgC/yr","HL",-0.177881636922063 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2099,"Simulated","PgC/yr","HL",0.0510177341408108 -"NorESM1-ME","nbp","carbon_cycle","nbp_HL","rcp85",2100,"Simulated","PgC/yr","HL",1.46963610072549 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2006,"Simulated","PgC/yr","LL",0.876425708499102 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2007,"Simulated","PgC/yr","LL",-1.88226581752545 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2008,"Simulated","PgC/yr","LL",-2.13690324885019 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2009,"Simulated","PgC/yr","LL",-2.23743659933009 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2010,"Simulated","PgC/yr","LL",-3.42919440216529 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2011,"Simulated","PgC/yr","LL",-2.882380521822 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2012,"Simulated","PgC/yr","LL",-2.1229890812731 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2013,"Simulated","PgC/yr","LL",-3.37368522255999 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2014,"Simulated","PgC/yr","LL",-4.34734114823086 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2015,"Simulated","PgC/yr","LL",-2.13802259793599 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2016,"Simulated","PgC/yr","LL",-7.1095891755213 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2017,"Simulated","PgC/yr","LL",-4.78463528025723 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2018,"Simulated","PgC/yr","LL",-0.949348272611833 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2019,"Simulated","PgC/yr","LL",-3.02464583998296 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2020,"Simulated","PgC/yr","LL",-6.10968780599168 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2021,"Simulated","PgC/yr","LL",-5.46096838487744 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2022,"Simulated","PgC/yr","LL",-4.5244880176678 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2023,"Simulated","PgC/yr","LL",-3.80772797471243 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2024,"Simulated","PgC/yr","LL",-6.06956375035034 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2025,"Simulated","PgC/yr","LL",-4.02683726605399 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2026,"Simulated","PgC/yr","LL",-2.8561442961322 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2027,"Simulated","PgC/yr","LL",-3.44924787025767 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2028,"Simulated","PgC/yr","LL",-5.40738053505587 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2029,"Simulated","PgC/yr","LL",-5.24871609434735 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2030,"Simulated","PgC/yr","LL",-2.9533604226743 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2031,"Simulated","PgC/yr","LL",-2.16340548455803 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2032,"Simulated","PgC/yr","LL",-4.57955340828262 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2033,"Simulated","PgC/yr","LL",-6.02388772324344 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2034,"Simulated","PgC/yr","LL",-4.30990616415798 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2035,"Simulated","PgC/yr","LL",-3.00114872735016 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2036,"Simulated","PgC/yr","LL",-2.84830226812523 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2037,"Simulated","PgC/yr","LL",-4.72625661634844 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2038,"Simulated","PgC/yr","LL",-4.65360295939256 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2039,"Simulated","PgC/yr","LL",-3.1043606143483 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2040,"Simulated","PgC/yr","LL",-2.90618315091115 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2041,"Simulated","PgC/yr","LL",-3.78290344575201 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2042,"Simulated","PgC/yr","LL",-4.89277757075798 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2043,"Simulated","PgC/yr","LL",-2.72304052101817 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2044,"Simulated","PgC/yr","LL",-3.31366967522339 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2045,"Simulated","PgC/yr","LL",-2.16891136517888 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2046,"Simulated","PgC/yr","LL",-3.10700491195334 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2047,"Simulated","PgC/yr","LL",-3.50172558916238 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2048,"Simulated","PgC/yr","LL",-3.45697796335605 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2049,"Simulated","PgC/yr","LL",-0.198077643836324 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2050,"Simulated","PgC/yr","LL",-4.74122428894747 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2051,"Simulated","PgC/yr","LL",-3.18397003821146 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2052,"Simulated","PgC/yr","LL",-0.88981799602596 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2053,"Simulated","PgC/yr","LL",-3.68664074125475 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2054,"Simulated","PgC/yr","LL",-3.80243806262108 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2055,"Simulated","PgC/yr","LL",-0.669492301448464 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2056,"Simulated","PgC/yr","LL",-2.50740384560514 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2057,"Simulated","PgC/yr","LL",-3.56656092197429 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2058,"Simulated","PgC/yr","LL",-4.35009211321936 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2059,"Simulated","PgC/yr","LL",-1.80265375989974 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2060,"Simulated","PgC/yr","LL",0.228995909219823 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2061,"Simulated","PgC/yr","LL",-5.04062514865387 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2062,"Simulated","PgC/yr","LL",-4.89511503502538 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2063,"Simulated","PgC/yr","LL",0.127604781782265 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2064,"Simulated","PgC/yr","LL",-2.9152037876614 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2065,"Simulated","PgC/yr","LL",-1.52649453785831 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2066,"Simulated","PgC/yr","LL",-2.0003584629583 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2067,"Simulated","PgC/yr","LL",-3.03916840671022 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2068,"Simulated","PgC/yr","LL",-1.4297801430829 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2069,"Simulated","PgC/yr","LL",-2.7505923111041 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2070,"Simulated","PgC/yr","LL",0.439844535996324 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2071,"Simulated","PgC/yr","LL",-3.49528603971585 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2072,"Simulated","PgC/yr","LL",-1.03461225299205 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2073,"Simulated","PgC/yr","LL",-2.59330137756792 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2074,"Simulated","PgC/yr","LL",-4.2235069004285 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2075,"Simulated","PgC/yr","LL",0.367864595501961 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2076,"Simulated","PgC/yr","LL",-1.80919075856079 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2077,"Simulated","PgC/yr","LL",-4.01367503768629 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2078,"Simulated","PgC/yr","LL",-0.789066965070912 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2079,"Simulated","PgC/yr","LL",-2.0137827507002 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2080,"Simulated","PgC/yr","LL",-2.10181889785749 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2081,"Simulated","PgC/yr","LL",-1.78241066090342 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2082,"Simulated","PgC/yr","LL",-3.42440227119681 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2083,"Simulated","PgC/yr","LL",-0.890629853333482 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2084,"Simulated","PgC/yr","LL",-1.15345815451558 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2085,"Simulated","PgC/yr","LL",-4.02520696703256 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2086,"Simulated","PgC/yr","LL",-0.669735792796657 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2087,"Simulated","PgC/yr","LL",-1.63165672602829 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2088,"Simulated","PgC/yr","LL",-2.13788037475803 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2089,"Simulated","PgC/yr","LL",-2.32508821715437 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2090,"Simulated","PgC/yr","LL",-1.24379331300697 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2091,"Simulated","PgC/yr","LL",-2.43172004482994 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2092,"Simulated","PgC/yr","LL",-2.39307089621929 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2093,"Simulated","PgC/yr","LL",-0.913803671612672 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2094,"Simulated","PgC/yr","LL",-1.87819797125953 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2095,"Simulated","PgC/yr","LL",-0.516489265039649 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2096,"Simulated","PgC/yr","LL",-2.92347643584608 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2097,"Simulated","PgC/yr","LL",-0.193483045059447 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2098,"Simulated","PgC/yr","LL",-3.76144881598048 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2099,"Simulated","PgC/yr","LL",-2.06236118414251 -"NorESM1-ME","nbp","carbon_cycle","nbp_LL","rcp85",2100,"Simulated","PgC/yr","LL",2.85289818378339 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/rcp85/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/rcp85/summary.csv deleted file mode 100644 index e753187d0..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_nbp/rcp85/summary.csv +++ /dev/null @@ -1,889 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2005,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,1.205921788,1.205921788,1.205921788,1.205921788,1,CMIP5 -2005,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,NA,-2.365464876,-2.365464876,-2.365464876,-2.365464876,1,CMIP5 -2005,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,4.147722907,4.147722907,4.147722907,4.147722907,1,CMIP5 -2006,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.149755896,-0.213744474,9.874011957,4.252608949,3.100964614,1,CMIP5 -2006,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.563336209,0.091677259,1.724607349,0.750869081,0.892610356,1,CMIP5 -2006,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.699850218,-0.61792151,8.770818314,3.532110453,2.501559587,1,CMIP5 -2007,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.771107464,-2.090161254,12.42799491,4.191526067,3.480646354,1,CMIP5 -2007,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.629784045,0.072793297,1.67152606,0.840874009,0.831230429,1,CMIP5 -2007,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.241362421,-2.843474627,10.73368117,3.321563782,2.406545651,1,CMIP5 -2008,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.245363177,-5.534184339,18.66922716,3.012322743,1.771076421,1,CMIP5 -2008,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.809939906,-0.323054121,1.78738083,0.858051082,0.863820969,1,CMIP5 -2008,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.673141565,-6.528543319,16.12665771,2.134286317,1.210639915,1,CMIP5 -2009,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.547422763,-2.169902324,8.670113918,3.681250285,4.452114184,1,CMIP5 -2009,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.596543135,0.067533191,1.91207936,0.864019939,0.925607455,1,CMIP5 -2009,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.153645258,-2.237436599,7.410867135,2.789138183,3.035447836,1,CMIP5 -2010,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.568297778,-3.42848962,15.5201799,4.602184203,4.384674435,1,CMIP5 -2010,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.574178989,0.000705122,1.79356402,0.798365698,0.639347209,1,CMIP5 -2010,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.275499264,-3.429194402,14.47019477,3.756921931,2.91192175,1,CMIP5 -2011,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.279265956,-2.839762118,18.85828603,6.919116322,5.622704708,1,CMIP5 -2011,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.707241087,0.0426184,1.963932318,0.873704929,0.852002587,1,CMIP5 -2011,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.626706283,-2.882380522,17.28301253,5.892268993,4.331802345,1,CMIP5 -2012,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.810610741,-2.174380807,14.14490258,6.152630769,5.498081596,1,CMIP5 -2012,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.653034184,-0.051391413,1.814910949,0.910055276,1.006811215,1,CMIP5 -2012,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.151243695,-2.122989081,12.37990615,5.133514556,4.560597782,1,CMIP5 -2013,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.806682776,-3.386828788,16.89050311,6.435945396,6.864454589,1,CMIP5 -2013,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.623846539,-0.013142997,1.746022975,0.790554381,0.975882335,1,CMIP5 -2013,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.077453948,-3.373685223,14.85309445,5.49742636,5.800590388,1,CMIP5 -2014,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.274801447,-4.24730724,10.6270429,4.309486066,5.978620785,1,CMIP5 -2014,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.52461668,0.100034652,1.74127887,0.9708275,1.0399479,1,CMIP5 -2014,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.872920477,-4.347341148,9.580035137,3.311186714,4.478597822,1,CMIP5 -2015,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.929312822,-2.069094627,14.25864235,4.47802932,4.57331954,1,CMIP5 -2015,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.701417712,0.068928926,2.003620245,1.038950322,0.969599496,1,CMIP5 -2015,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.303892776,-2.610252344,12.42802022,3.355962038,3.190941266,1,CMIP5 -2016,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.973028685,-7.166157055,15.5847237,4.017952641,2.969160848,1,CMIP5 -2016,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.836682928,-0.056567435,1.862251575,0.857344121,0.761438503,1,CMIP5 -2016,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.144774096,-7.109589176,13.56915115,3.12511359,1.963085712,1,CMIP5 -2017,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.829383509,-4.74424514,13.09250734,4.857984558,5.185351508,1,CMIP5 -2017,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.809199404,-0.462500073,1.935073494,0.692608383,0.506836705,1,CMIP5 -2017,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.38790158,-4.78463528,11.16332175,4.092662481,3.901820721,1,CMIP5 -2018,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.931996387,-0.819937241,12.05868803,5.304131528,5.522702914,1,CMIP5 -2018,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.695463908,0.129411053,2.067980888,0.981914448,1.031185397,1,CMIP5 -2018,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.320454269,-0.949348273,10.38136406,4.278099831,4.038271307,1,CMIP5 -2019,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.881919425,-3.008017316,16.43770277,5.224875137,3.866813309,1,CMIP5 -2019,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.862480703,0.016627826,2.400442089,1.041559197,0.8068309,1,CMIP5 -2019,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.191385836,-3.02464584,14.61366419,4.069691411,2.296295475,1,CMIP5 -2020,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.297623657,-6.230540737,13.22206271,3.376591065,4.602162079,1,CMIP5 -2020,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.803388536,-0.080323531,2.057329282,0.842626216,0.936882139,1,CMIP5 -2020,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.466310115,-6.109687806,11.31359371,2.504822461,3.558800551,1,CMIP5 -2021,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.383389797,-5.432577069,13.17370185,5.413382313,6.065869588,1,CMIP5 -2021,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.865418692,0.028391428,2.435761237,1.065388289,0.957972982,1,CMIP5 -2021,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.681598821,-5.460968385,11.80831756,4.327425759,4.980277486,1,CMIP5 -2022,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.948843199,-5.073609994,17.93822219,4.194347774,4.026154155,1,CMIP5 -2022,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.786347879,-0.01080806,2.083179167,1.095181328,1.037741973,1,CMIP5 -2022,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.154683129,-5.726464817,15.53946298,3.061096668,2.643322216,1,CMIP5 -2023,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.691833578,-3.755192074,19.30703076,6.340457001,6.340568432,1,CMIP5 -2023,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.823202189,0.05253522,2.127095937,1.02653324,0.686718433,1,CMIP5 -2023,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.934752945,-3.807727975,16.53455483,5.213120275,5.700411717,1,CMIP5 -2024,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.299870468,-6.04178591,13.76282364,4.494464686,6.842183789,1,CMIP5 -2024,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.765828877,0.027777734,1.901179152,0.930476861,0.970114089,1,CMIP5 -2024,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.552543362,-6.06956375,11.77473658,3.489800286,5.601150199,1,CMIP5 -2025,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.3177719,-8.369293037,13.25365934,3.142515446,4.258964429,1,CMIP5 -2025,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.83704567,0.040707769,2.410063194,0.987854023,1.013576643,1,CMIP5 -2025,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.019215218,-8.772908585,11.41648289,2.649076271,3.478837846,1,CMIP5 -2026,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.889147469,-13.04441045,15.22931324,3.936234618,6.811317731,1,CMIP5 -2026,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.964626779,-0.451973643,2.0556583,0.96031567,1.002735845,1,CMIP5 -2026,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.977804491,-12.18090398,13.49442282,3.054412337,5.232262239,1,CMIP5 -2027,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.673664747,-12.49776601,18.13750968,3.301188931,3.089053208,1,CMIP5 -2027,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.892169357,-0.018892505,2.036033505,0.93506433,0.865920693,1,CMIP5 -2027,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.630266335,-12.15002226,15.73108938,2.332662324,2.223132369,1,CMIP5 -2028,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.68262854,-5.465819833,15.06853117,4.628881752,4.620619633,1,CMIP5 -2028,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.982117323,-0.058439591,2.825739506,0.974387456,0.590531105,1,CMIP5 -2028,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.312270641,-5.407380535,16.04891228,3.969434922,3.631714134,1,CMIP5 -2029,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.389325818,-5.206819047,9.788926968,3.820094364,3.836377505,1,CMIP5 -2029,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.967603764,0.041897719,2.46114394,1.058483524,0.778007561,1,CMIP5 -2029,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.849275657,-5.248716094,8.078496647,3.480893377,5.12905043,1,CMIP5 -2030,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.112112312,-2.928958575,12.38592569,6.8134715,8.476928212,1,CMIP5 -2030,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.743403726,0.024401043,2.363137706,1.106204838,1.186436854,1,CMIP5 -2030,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.618363674,-2.953360423,10.77543117,5.650525255,7.290491386,1,CMIP5 -2031,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.789711899,-3.968152298,19.90860904,4.786156523,3.342826548,1,CMIP5 -2031,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.952172282,0.12931353,2.614789251,1.116138162,0.908509328,1,CMIP5 -2031,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.852377436,-4.309758818,17.16849289,3.57980606,2.248561204,1,CMIP5 -2032,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.549542745,-4.539058542,13.86524058,4.913987683,6.775998212,1,CMIP5 -2032,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.007691385,-0.188320888,2.267970742,0.913699943,0.417508374,1,CMIP5 -2032,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.89664127,-4.579553408,12.37311737,3.881676176,5.747136781,1,CMIP5 -2033,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.973381519,-6.041681348,15.36000789,4.53597848,6.000304632,1,CMIP5 -2033,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.093635018,-0.136228777,2.445439659,1.086586954,1.142556537,1,CMIP5 -2033,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.345220756,-6.023887723,13.52187459,3.538439588,4.023861242,1,CMIP5 -2034,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.763264306,-9.314798367,16.05484415,5.014268428,6.025852631,1,CMIP5 -2034,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.11699566,-0.10767001,2.688683475,1.307691654,1.100409065,1,CMIP5 -2034,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.972045209,-9.365346643,13.60621281,4.124396873,4.765023439,1,CMIP5 -2035,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.36306247,-2.951405685,13.20366701,6.862583853,8.651175075,1,CMIP5 -2035,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.802477572,0.049743313,2.596150219,1.361012699,1.534826165,1,CMIP5 -2035,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.796749165,-3.001148727,11.46559535,5.965454721,7.549704628,1,CMIP5 -2036,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.017775683,-4.215204636,14.86762816,5.448950738,5.712684555,1,CMIP5 -2036,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.041130481,0.060017339,2.590127145,1.100565051,0.724890914,1,CMIP5 -2036,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.703373246,-5.072428989,13.24620863,5.258278174,7.863609293,1,CMIP5 -2037,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.84563471,-4.666326933,12.06243436,4.973592499,5.302189215,1,CMIP5 -2037,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.925187586,0.059930837,2.854981087,1.433785454,1.450565422,1,CMIP5 -2037,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.134769456,-4.726256616,10.7370893,3.563780238,3.710153827,1,CMIP5 -2038,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.277911581,-4.711793832,19.87330062,7.622539878,7.225785541,1,CMIP5 -2038,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.039629508,-0.058190316,3.131362834,1.388928452,1.440649371,1,CMIP5 -2038,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.357682651,-4.653602959,17.22654422,6.145755211,5.772260782,1,CMIP5 -2039,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.61492394,-3.081280089,10.83874917,3.957989915,3.794265584,1,CMIP5 -2039,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.980134393,0.023080814,2.447821907,1.15604288,0.979365598,1,CMIP5 -2039,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.70997159,-3.104360614,19.14735533,4.874375089,3.720432552,1,CMIP5 -2040,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.505602489,-2.953850834,16.24689592,6.786987972,5.855390338,1,CMIP5 -2040,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.110622619,-0.275627049,2.889283995,1.086578805,1.112876199,1,CMIP5 -2040,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.937655376,-2.906183151,14.62546895,6.025679476,5.0659541,1,CMIP5 -2041,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.918061858,-3.723770302,17.62120244,8.312977494,9.931253806,1,CMIP5 -2041,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.090531603,-0.008127853,2.781524849,1.179429361,1.062513094,1,CMIP5 -2041,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.26218564,-3.782903446,15.14905152,7.348113922,8.900807165,1,CMIP5 -2042,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.858952153,-4.810825579,11.56220633,4.857589053,3.977430925,1,CMIP5 -2042,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.045437306,0.081951709,3.028276689,1.084073811,0.928047364,1,CMIP5 -2042,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.013324389,-4.892777571,10.04317585,3.83710565,3.509906405,1,CMIP5 -2043,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.436935118,-9.742789434,14.2012915,3.143306239,3.108543789,1,CMIP5 -2043,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.298639126,-0.54495692,3.289088237,1.088916612,0.734978924,1,CMIP5 -2043,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.365059133,-8.937844379,12.47204591,1.989306425,1.209573534,1,CMIP5 -2044,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.073221116,-3.312703778,12.20859158,4.263629361,1.445472394,1,CMIP5 -2044,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.157916737,-0.32363195,2.802612117,1.327347678,1.518629793,1,CMIP5 -2044,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.06176876,-3.313669675,10.1449535,3.074368869,0.56311749,1,CMIP5 -2045,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.307834586,-2.214912367,13.87541649,6.948308275,8.147922753,1,CMIP5 -2045,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.374978139,-0.350371791,3.321636569,1.184283378,0.933429639,1,CMIP5 -2045,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.021621537,-2.168911365,14.62880795,6.193340412,6.297268157,1,CMIP5 -2046,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.890775257,-7.306433864,18.90237534,6.744546834,8.569158635,1,CMIP5 -2046,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.177383034,0.128438182,3.305938233,1.414066815,1.324119507,1,CMIP5 -2046,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.271182937,-7.560346693,16.06961389,5.622939281,7.373261758,1,CMIP5 -2047,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.790367346,-8.265769276,15.56708798,5.844972612,9.414133734,1,CMIP5 -2047,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.1764854,0.094067452,2.906652124,1.502468766,1.5414529,1,CMIP5 -2047,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.270657781,-8.626580324,15.44337176,4.650814457,6.900601649,1,CMIP5 -2048,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.422358326,-3.450473439,14.6911214,5.278285781,4.736658669,1,CMIP5 -2048,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.182962874,-0.075229134,3.021447468,1.416990584,1.360435613,1,CMIP5 -2048,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.734118462,-3.456977963,14.11563248,4.143636443,3.251914836,1,CMIP5 -2049,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.895805769,-0.182379954,15.99191746,7.262799637,9.266268138,1,CMIP5 -2049,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.115013718,0.015697737,2.988114359,1.551847252,1.603661067,1,CMIP5 -2049,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.294405881,-0.198077644,13.14486471,5.99192273,6.676123311,1,CMIP5 -2050,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.290437708,-9.763380959,18.4269583,4.550015534,5.098204715,1,CMIP5 -2050,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.144736639,-0.022097961,3.13542404,1.419995414,1.200877536,1,CMIP5 -2050,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.286161669,-10.15794508,15.61763807,3.189259591,3.266158002,1,CMIP5 -2051,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.179738798,-4.488457161,12.63538152,5.80012816,8.759905664,1,CMIP5 -2051,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.144324517,0.079136624,3.57514961,1.447128063,1.269746559,1,CMIP5 -2051,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.281257923,-5.068559108,10.46359307,4.374896342,7.611234349,1,CMIP5 -2052,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.5333096,-0.86875142,19.19357732,7.88653041,7.271273292,1,CMIP5 -2052,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.28126107,0.021066628,3.737232221,1.575290912,1.590442016,1,CMIP5 -2052,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.371311491,-0.889817996,16.32826646,6.271421331,5.929779643,1,CMIP5 -2053,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.14277841,-14.02823439,15.86740737,5.64421657,9.060934142,1,CMIP5 -2053,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.28109172,-0.064737515,3.621282946,1.391244675,1.411956569,1,CMIP5 -2053,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.890493328,-13.42466027,12.25394699,4.321947303,7.648977739,1,CMIP5 -2054,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.99485173,-6.933891788,13.6060663,6.038136368,9.995245997,1,CMIP5 -2054,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.302298724,-0.022378463,3.375853717,1.410364507,1.253012285,1,CMIP5 -2054,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.068995064,-6.670411626,12.76851155,4.743345388,7.547620431,1,CMIP5 -2055,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.465685158,-0.599530234,14.61026197,6.141741451,5.666374575,1,CMIP5 -2055,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.196702318,0.069961973,3.571239265,1.459128833,1.432462753,1,CMIP5 -2055,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.113876798,-0.669492301,13.92696023,5.208841178,4.615015535,1,CMIP5 -2056,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.262901996,-12.3973978,13.44574759,4.35963553,6.349088068,1,CMIP5 -2056,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.241866004,0.083485725,3.267306633,1.659010672,1.745698309,1,CMIP5 -2056,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.492146748,-12.65393849,12.4769389,3.138276409,4.842139902,1,CMIP5 -2057,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.101969445,-3.657820455,12.12388287,5.047534723,4.212448746,1,CMIP5 -2057,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.39513358,-0.091258724,4.255858039,1.68206195,1.611623931,1,CMIP5 -2057,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.479245235,-3.566560922,12.5994716,3.817986169,3.162668597,1,CMIP5 -2058,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.108725792,-4.306944743,14.18079849,5.130335104,8.442521573,1,CMIP5 -2058,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.33190267,0.043147475,4.174624903,1.404444605,1.113995836,1,CMIP5 -2058,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.846208591,-4.350092113,14.42387133,4.127787695,4.895952105,1,CMIP5 -2059,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.965622068,-1.798934632,11.01330925,4.644558469,4.068683289,1,CMIP5 -2059,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.354840711,0.003719724,3.751044383,1.575441691,1.503608768,1,CMIP5 -2059,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.07922383,-1.80265376,11.15195589,3.464226718,3.304873303,1,CMIP5 -2060,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.02699861,0.265826612,15.29166099,7.799252526,9.527178333,1,CMIP5 -2060,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.510705071,0.036830707,4.141861378,1.684445679,1.389846656,1,CMIP5 -2060,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.963391719,0.228995909,12.48156747,6.341148002,7.898862613,1,CMIP5 -2061,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.083133188,-5.036633469,14.17087753,6.045215072,7.110937411,1,CMIP5 -2061,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.407978143,-0.223735771,3.938182618,1.484702375,1.416829965,1,CMIP5 -2061,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.271784383,-5.040625149,12.64866001,5.03638256,6.180407475,1,CMIP5 -2062,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.644700924,-4.800933987,13.65412785,8.178922828,10.62163212,1,CMIP5 -2062,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.277988006,0.094181361,3.619599098,1.762750829,2.014268603,1,CMIP5 -2062,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.372320351,-4.895115035,13.369613,7.091831335,8.665042386,1,CMIP5 -2063,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.87589944,0.208978992,15.17139899,4.839668386,3.101556117,1,CMIP5 -2063,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.469368058,0.025914438,4.184315364,1.504103948,1.349915649,1,CMIP5 -2063,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.726605095,-0.043690245,12.80651943,4.46365242,2.780564787,1,CMIP5 -2064,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.203752949,-2.905523254,18.14976266,7.170694532,7.950602075,1,CMIP5 -2064,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.362605934,0.054606591,4.117210482,1.661166007,1.847275306,1,CMIP5 -2064,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.290088809,-3.967377642,15.50056988,5.774981145,6.582297604,1,CMIP5 -2065,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.427504509,-10.21500813,16.57446459,6.746841324,8.026948175,1,CMIP5 -2065,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.376071379,-0.640870631,3.207832679,1.443848177,1.552185493,1,CMIP5 -2065,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.287233957,-10.52595114,14.02108721,5.308156447,6.999056285,1,CMIP5 -2066,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.109294609,-6.414753529,15.66180706,4.829270695,4.764604288,1,CMIP5 -2066,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.530312932,-0.227135527,4.014830486,1.355464346,1.288604056,1,CMIP5 -2066,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.443181838,-6.814900403,13.28805704,3.654989807,2.77222314,1,CMIP5 -2067,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.417503419,-3.034231886,16.49971551,5.29885274,3.599632714,1,CMIP5 -2067,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.713853639,-0.620807947,4.454567794,1.595578742,1.577555551,1,CMIP5 -2067,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.823371321,-3.039168407,16.40350206,4.567510431,3.121075367,1,CMIP5 -2068,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.249404913,-2.863341543,15.76011432,5.959664843,4.562862547,1,CMIP5 -2068,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.610706705,-0.187464409,3.976377888,1.729055642,1.655040397,1,CMIP5 -2068,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.021104488,-2.675877711,12.87467282,4.291953568,2.329333852,1,CMIP5 -2069,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.520626737,-7.680442743,13.1070513,4.224602782,2.876641493,1,CMIP5 -2069,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.489508435,-0.330015112,4.008598163,1.419658726,1.283315383,1,CMIP5 -2069,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.437987863,-7.910657962,11.20280337,2.969337715,2.858258308,1,CMIP5 -2070,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.592784457,-0.327378716,14.42594019,7.083851656,8.378151186,1,CMIP5 -2070,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.620919439,-0.036718021,3.928703588,1.669840452,1.449642592,1,CMIP5 -2070,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.28033621,-0.286130114,13.48007717,6.209041087,6.097264765,1,CMIP5 -2071,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.351971457,-3.351393433,15.24852241,6.521683964,5.702132383,1,CMIP5 -2071,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.452832638,0.143892545,3.910634893,1.733651357,1.583976328,1,CMIP5 -2071,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.280431092,-3.49528604,13.29213943,4.959382041,4.556493341,1,CMIP5 -2072,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.96845102,-8.081597116,13.36044724,4.039812603,3.49610704,1,CMIP5 -2072,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.384381732,-0.20910717,3.42354615,1.432402412,1.453751954,1,CMIP5 -2072,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.573684655,-7.601324514,11.77964305,3.671203151,2.494620544,1,CMIP5 -2073,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.964098638,-17.67424517,12.81218614,3.810792399,6.882737787,1,CMIP5 -2073,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.529760736,-0.602513095,3.982928486,1.346857319,0.902609896,1,CMIP5 -2073,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.26172729,-17.43962982,10.07558871,3.01787475,6.889350565,1,CMIP5 -2074,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.787571406,-10.99658221,14.4467087,4.598956068,6.015210009,1,CMIP5 -2074,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.554475637,-0.059598903,4.060837416,1.491318969,1.482563615,1,CMIP5 -2074,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.008901537,-10.51958985,12.3544874,3.699658538,5.18210161,1,CMIP5 -2075,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.16830625,-8.555831058,16.01014293,5.72861213,6.189421752,1,CMIP5 -2075,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.641773954,-0.140550945,4.349075775,1.688736046,1.527085221,1,CMIP5 -2075,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.532255917,-8.709042899,12.88985154,4.556732327,4.523768064,1,CMIP5 -2076,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.367790372,-13.95563893,15.79635046,3.455374788,4.642989394,1,CMIP5 -2076,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.774474896,-0.563413453,4.175893489,1.586295931,1.439348798,1,CMIP5 -2076,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.91125797,-12.97019338,13.36440332,1.980730996,2.335272098,1,CMIP5 -2077,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.582992225,-4.811425498,11.77419671,4.685101618,5.483828409,1,CMIP5 -2077,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.796893891,-0.53930784,4.320770359,1.555205388,1.24968489,1,CMIP5 -2077,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.360222509,-4.205458274,9.774679845,3.271082216,3.774906053,1,CMIP5 -2078,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.052441192,-0.628613028,14.55651352,4.428416623,1.282855016,1,CMIP5 -2078,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.835958796,-0.853557824,4.65409092,1.408725381,1.072547757,1,CMIP5 -2078,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.219803899,-0.789066965,13.7478128,3.265749645,0.673867263,1,CMIP5 -2079,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.749481537,-2.076689066,15.49778569,4.174778293,1.51539681,1,CMIP5 -2079,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.586507156,-0.360842638,3.585694072,1.410595173,1.282339505,1,CMIP5 -2079,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.537617151,-2.013782751,12.31270023,2.87391112,0.827281391,1,CMIP5 -2080,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.864963666,-2.049472307,16.89800331,5.127527652,4.64715871,1,CMIP5 -2080,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.565029746,-0.18420963,3.953060287,1.499951928,1.473355682,1,CMIP5 -2080,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.269232261,-2.101818898,14.52824486,3.718329182,2.446204193,1,CMIP5 -2081,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.233465004,-11.3679888,18.11138013,5.42088367,6.14788937,1,CMIP5 -2081,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.537784916,-0.457598277,4.118356423,1.14465057,0.816898334,1,CMIP5 -2081,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.070240758,-10.56630494,16.00316812,4.332801398,5.292493591,1,CMIP5 -2082,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.365787332,-8.82966634,15.14173908,5.349766856,6.173159372,1,CMIP5 -2082,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.390658652,-0.25371104,3.840618132,1.333402878,1.196305545,1,CMIP5 -2082,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.423248671,-8.285459061,12.95182123,4.459377435,5.855179673,1,CMIP5 -2083,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.520160061,-3.368103195,8.910866239,2.069662764,0.460403857,1,CMIP5 -2083,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.519127135,-0.230997849,4.038659736,1.303127047,1.239099989,1,CMIP5 -2083,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.50305349,-3.056961648,6.683637247,0.959229372,0.244692392,1,CMIP5 -2084,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.17091883,-13.58583424,13.56827461,3.253640524,4.209511174,1,CMIP5 -2084,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.042109936,-1.779321367,4.055569699,1.183477744,1.401409655,1,CMIP5 -2084,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.89205946,-11.67689329,11.29607395,2.535391394,4.440659266,1,CMIP5 -2085,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.507467068,-5.42654163,13.48862035,4.991607021,5.21153913,1,CMIP5 -2085,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.892876547,-0.885239358,4.313312338,1.308700691,1.148836638,1,CMIP5 -2085,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.66213099,-4.603205781,10.94978114,4.190848165,5.42184241,1,CMIP5 -2086,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.439595879,-0.671937366,12.09246306,5.401840651,3.90911576,1,CMIP5 -2086,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.699906613,-0.909053544,4.031018876,1.511947468,1.539990064,1,CMIP5 -2086,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.977654276,-0.669735793,11.54192682,4.216644478,2.639796418,1,CMIP5 -2087,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.920693433,-10.1218694,10.65058597,1.449618711,1.206163246,1,CMIP5 -2087,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.696259463,-0.978267714,4.11929319,1.30595525,0.983002111,1,CMIP5 -2087,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.171671405,-9.742524078,8.388534345,0.414537069,0.161455305,1,CMIP5 -2088,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.098177195,-5.152844665,12.75555779,2.652860141,1.468284624,1,CMIP5 -2088,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.958630434,-1.577346817,3.933036042,1.143032152,1.437395398,1,CMIP5 -2088,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.830703174,-3.732540855,10.19354777,1.674511984,1.615557691,1,CMIP5 -2089,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.574759947,-8.60539354,12.85675042,4.101727764,4.316259086,1,CMIP5 -2089,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.782692899,-1.066494118,3.814408968,1.186344773,1.290850962,1,CMIP5 -2089,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.010769404,-7.442962893,9.05986522,3.009287334,3.850625327,1,CMIP5 -2090,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.973434017,-12.65323259,12.264797,3.213890107,3.106188156,1,CMIP5 -2090,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.871977967,-1.816003857,4.313492167,1.161350975,1.036566127,1,CMIP5 -2090,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.492720083,-10.7527954,9.672091867,2.17230209,2.824832789,1,CMIP5 -2091,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.659867044,-9.905598067,15.35190404,4.031109596,5.226736871,1,CMIP5 -2091,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.828933661,-0.917344527,4.217179714,1.371936974,1.329277957,1,CMIP5 -2091,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.499948575,-9.23634328,12.6242261,2.787634669,3.595545049,1,CMIP5 -2092,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.475349744,-2.430120858,15.28946475,6.049085625,4.631843666,1,CMIP5 -2092,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.695829555,-0.555999214,4.277351766,1.460514517,1.489328498,1,CMIP5 -2092,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.516431264,-2.393070896,13.29923785,4.928836599,3.893660734,1,CMIP5 -2093,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.869057559,-0.862286576,13.26353258,3.192146658,1.705169721,1,CMIP5 -2093,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.138716293,-1.642736414,4.864236006,1.267698078,1.50822773,1,CMIP5 -2093,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.393382866,-2.78744111,10.81214041,2.022921132,0.341462846,1,CMIP5 -2094,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.825699127,-8.867487188,10.95428852,3.851795416,5.523073975,1,CMIP5 -2094,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.948587148,-1.528516651,4.572954846,1.302424283,1.418344622,1,CMIP5 -2094,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.984566623,-9.26836795,8.613563233,2.72069239,5.149096432,1,CMIP5 -2095,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.6479081,-8.282499186,16.35525975,3.072432448,1.919348621,1,CMIP5 -2095,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.811757267,-0.983600568,4.445438641,1.132396642,0.916079332,1,CMIP5 -2095,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.174903549,-7.196765997,11.92694098,2.09262816,1.784872907,1,CMIP5 -2096,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.549461338,-3.657552202,15.5953484,5.010558769,5.293938581,1,CMIP5 -2096,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.648815553,-0.495213364,4.211506441,1.211087711,0.979620094,1,CMIP5 -2096,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.031094868,-3.300110288,13.34847919,3.708980516,4.233188799,1,CMIP5 -2097,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.598895417,-17.04783048,11.40136531,3.874479939,7.028550557,1,CMIP5 -2097,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.662616062,-0.824571521,4.297132225,1.28270578,1.310128664,1,CMIP5 -2097,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.041922546,-16.34024857,12.22593753,2.757046146,4.184650027,1,CMIP5 -2098,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.16938971,-17.20765082,15.17165571,2.236435088,3.178824174,1,CMIP5 -2098,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.759071078,-1.626150592,3.86793035,1.0187216,1.021618193,1,CMIP5 -2098,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.683773073,-15.27395773,13.0177967,1.345286865,2.261481285,1,CMIP5 -2099,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.838819521,-4.845123111,14.66671314,4.420534728,4.677117593,1,CMIP5 -2099,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.831725173,-1.425929149,3.720711261,1.164654942,0.795396115,1,CMIP5 -2099,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.610127359,-19.35967183,13.57868499,0.291207104,0.965776652,1,CMIP5 -2100,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.99385262,-4.748648062,13.20728384,5.376496412,4.657922913,1,CMIP5 -2100,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.879455851,-1.829741665,3.98441377,1.345009285,1.755740331,1,CMIP5 -2100,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.541394787,-5.326773897,13.10628314,4.89140325,3.906757672,1,CMIP5 -2101,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.14175143,-4.70915574,9.633446684,2.462145472,2.462145472,1,CMIP5 -2101,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.439050732,1.403109163,4.852447788,3.127778476,3.127778476,1,CMIP5 -2101,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,12.51511101,-9.488591727,8.210448,-0.639071864,-0.639071864,1,CMIP5 -2102,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.01855009,-2.085822292,10.66833356,4.291255633,4.291255633,1,CMIP5 -2102,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.240445123,1.417047171,4.58551505,3.00128111,3.00128111,1,CMIP5 -2102,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.19341879,-6.608035177,9.221849491,1.306907157,1.306907157,1,CMIP5 -2103,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.989930992,8.115449483,18.00070469,13.05807709,13.05807709,1,CMIP5 -2103,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.564502265,2.364223198,3.162549957,2.763386577,2.763386577,1,CMIP5 -2103,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.389759451,5.798515589,14.83500006,10.31675783,10.31675783,1,CMIP5 -2104,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,3.906452345,3.906452345,3.906452345,3.906452345,1,CMIP5 -2104,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.975655146,1.194266465,5.402478329,3.298372397,3.298372397,1,CMIP5 -2104,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,2.737995503,2.737995503,2.737995503,2.737995503,1,CMIP5 -2105,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.691726998,5.981199683,16.85894432,11.420072,11.420072,1,CMIP5 -2105,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.650252742,1.899890113,4.233699922,3.066795018,3.066795018,1,CMIP5 -2105,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.268220279,1.786907944,14.89415076,8.340529353,8.340529353,1,CMIP5 -2106,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.702962447,5.678566839,8.086919428,6.882743134,6.882743134,1,CMIP5 -2106,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.865335005,1.407702298,4.045684361,2.726693329,2.726693329,1,CMIP5 -2106,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.153730903,4.073185791,4.290594119,4.181889955,4.181889955,1,CMIP5 -2107,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.065931266,4.840841847,9.176723425,7.008782636,7.008782636,1,CMIP5 -2107,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.256291939,3.25652448,3.618976016,3.437750248,3.437750248,1,CMIP5 -2107,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.358091415,1.256205179,6.005263602,3.63073439,3.63073439,1,CMIP5 -2108,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.625689026,2.441193486,8.982905641,5.712049563,5.712049563,1,CMIP5 -2108,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.864373184,3.056253455,4.278661735,3.667457595,3.667457595,1,CMIP5 -2108,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.509609484,-1.788966091,6.002798365,2.106916137,2.106916137,1,CMIP5 -2109,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,15.68380459,-10.17099472,12.00925444,0.919129859,0.919129859,1,CMIP5 -2109,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.58599435,-0.065256499,3.591891783,1.763317642,1.763317642,1,CMIP5 -2109,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,18.13317144,-13.69275488,11.9514221,-0.870666388,-0.870666388,1,CMIP5 -2110,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,13.84747117,13.84747117,13.84747117,13.84747117,1,CMIP5 -2110,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.04235945,1.613708763,4.502041197,3.05787498,3.05787498,1,CMIP5 -2110,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,9.369308143,9.369308143,9.369308143,9.369308143,1,CMIP5 -2111,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.1026636,9.82302334,9.968211595,9.895617468,9.895617468,1,CMIP5 -2111,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.764310193,1.605776758,4.100888161,2.85333246,2.85333246,1,CMIP5 -2111,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.838184558,5.750606615,8.350192147,7.050399381,7.050399381,1,CMIP5 -2112,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.035593843,3.343916991,7.636894974,5.490405983,5.490405983,1,CMIP5 -2112,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.479696748,1.23056342,4.737384191,2.983973805,2.983973805,1,CMIP5 -2112,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.561871368,2.146728529,2.941334638,2.544031584,2.544031584,1,CMIP5 -2113,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.65771458,14.27156707,18.03014308,16.15085508,16.15085508,1,CMIP5 -2113,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.71708605,1.455972189,3.884298568,2.670135379,2.670135379,1,CMIP5 -2113,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.989527036,12.75239485,14.1517974,13.45209612,13.45209612,1,CMIP5 -2114,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.477653585,-0.86293096,12.54049528,5.838782159,5.838782159,1,CMIP5 -2114,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.911857554,0.669004527,4.786992971,2.727998749,2.727998749,1,CMIP5 -2114,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.555765264,-1.487101283,7.784150865,3.148524791,3.148524791,1,CMIP5 -2115,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.29813655,-2.457431249,13.52054669,5.53155772,5.53155772,1,CMIP5 -2115,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.899679219,1.679216173,4.365768289,3.022492231,3.022492231,1,CMIP5 -2115,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,13.12354574,-6.761794677,11.7977017,2.51795351,2.51795351,1,CMIP5 -2116,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.584093624,10.04565154,16.52853892,13.28709523,13.28709523,1,CMIP5 -2116,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.11756289,3.53337431,3.699633344,3.616503827,3.616503827,1,CMIP5 -2116,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.477256641,6.532997821,12.86479488,9.698896353,9.698896353,1,CMIP5 -2117,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.104084181,1.170132753,6.974184262,4.072158507,4.072158507,1,CMIP5 -2117,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.172354335,-0.675276426,2.396896536,0.860810055,0.860810055,1,CMIP5 -2117,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.181926949,-1.199117502,7.543447431,3.172164964,3.172164964,1,CMIP5 -2118,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.610228394,8.538911813,13.64454577,11.09172879,11.09172879,1,CMIP5 -2118,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.163434396,-0.191604043,2.867954221,1.338175089,1.338175089,1,CMIP5 -2118,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.516787441,8.635129773,10.78019114,9.707660458,9.707660458,1,CMIP5 -2119,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.892542568,8.616551212,9.878797018,9.247674115,9.247674115,1,CMIP5 -2119,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.723782789,1.364448293,3.802245291,2.583346792,2.583346792,1,CMIP5 -2119,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.80550073,6.101091713,7.24024177,6.670666741,6.670666741,1,CMIP5 -2120,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.895236512,0.333070174,8.670193602,4.501631888,4.501631888,1,CMIP5 -2120,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.199649163,0.600292944,3.711066622,2.155679783,2.155679783,1,CMIP5 -2120,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.693527106,-0.238018064,4.985418062,2.373699999,2.373699999,1,CMIP5 -2121,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,22.61183603,-14.27732291,17.70064227,1.711659684,1.711659684,1,CMIP5 -2121,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.563330405,-0.36446376,3.260632863,1.448084551,1.448084551,1,CMIP5 -2121,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,19.96113631,-13.79047015,14.43883954,0.324184699,0.324184699,1,CMIP5 -2122,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.091910336,6.384084292,7.928278698,7.156181495,7.156181495,1,CMIP5 -2122,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.027193893,2.249475315,2.287933287,2.268704301,2.268704301,1,CMIP5 -2122,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.03054948,4.192918338,5.650335389,4.921626863,4.921626863,1,CMIP5 -2123,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.771328819,6.921191495,10.8404423,8.880816895,8.880816895,1,CMIP5 -2123,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.522047153,1.180684153,4.747397442,2.964040797,2.964040797,1,CMIP5 -2123,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.231412262,2.217467234,9.615801406,5.91663432,5.91663432,1,CMIP5 -2124,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.237932987,8.305779663,14.29912197,11.30245082,11.30245082,1,CMIP5 -2124,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.485931177,1.544936537,5.060574123,3.30275533,3.30275533,1,CMIP5 -2124,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.772422441,6.761854186,9.26843804,8.015146113,8.015146113,1,CMIP5 -2125,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.080317476,-3.444056903,-3.33047084,-3.387263872,-3.387263872,1,CMIP5 -2125,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.083991116,0.983692522,2.51668746,1.750189991,1.750189991,1,CMIP5 -2125,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.037313769,-5.807154649,-4.340171448,-5.073663049,-5.073663049,1,CMIP5 -2126,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.04068543,-0.852949303,13.34672421,6.246887453,6.246887453,1,CMIP5 -2126,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.917584901,0.004357982,2.716232556,1.360295269,1.360295269,1,CMIP5 -2126,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.118617678,-0.848579859,10.63287937,4.892149754,4.892149754,1,CMIP5 -2127,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.268277541,-4.217639247,7.475470989,1.628915871,1.628915871,1,CMIP5 -2127,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.838719296,-1.05457647,4.374192421,1.659807975,1.659807975,1,CMIP5 -2127,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.96748434,-8.526082623,8.398496034,-0.063793294,-0.063793294,1,CMIP5 -2128,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.576023043,-0.72296157,11.40536653,5.34120248,5.34120248,1,CMIP5 -2128,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.100581714,0.179532386,4.564417098,2.371974742,2.371974742,1,CMIP5 -2128,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.56094532,-5.227628176,11.12201749,2.947194657,2.947194657,1,CMIP5 -2129,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.706342334,10.44830083,14.27564687,12.36197385,12.36197385,1,CMIP5 -2129,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.433721827,2.145182832,4.172771684,3.158977258,3.158977258,1,CMIP5 -2129,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.277191671,8.315318004,10.12153979,9.218428896,9.218428896,1,CMIP5 -2130,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.794750432,0.228866431,7.00966752,3.619266976,3.619266976,1,CMIP5 -2130,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.156040212,-0.94832883,2.100772479,0.576221824,0.576221824,1,CMIP5 -2130,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.68359584,1.123541574,4.918719207,3.021130391,3.021130391,1,CMIP5 -2131,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.975735603,4.17181671,11.20856948,7.690193096,7.690193096,1,CMIP5 -2131,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.037642709,-0.646619631,5.063469448,2.208424908,2.208424908,1,CMIP5 -2131,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.871304735,-0.837344242,11.70857523,5.435615494,5.435615494,1,CMIP5 -2132,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.014494081,-3.345039845,-0.496114994,-1.920577419,-1.920577419,1,CMIP5 -2132,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.095069024,0.614573235,3.577448263,2.096010749,2.096010749,1,CMIP5 -2132,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.094668607,-4.026899723,-3.893018095,-3.959958909,-3.959958909,1,CMIP5 -2133,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,14.23264183,-13.60392262,6.524072486,-3.539925065,-3.539925065,1,CMIP5 -2133,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.423128708,-0.216324341,1.796283579,0.789979619,0.789979619,1,CMIP5 -2133,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,12.72706836,-13.26388139,4.734911291,-4.264485051,-4.264485051,1,CMIP5 -2134,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.027536091,10.39022866,11.84338414,11.1168064,11.1168064,1,CMIP5 -2134,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.336282814,1.577663711,3.46745299,2.52255835,2.52255835,1,CMIP5 -2134,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.3274111,6.941830197,10.23328654,8.587558368,8.587558368,1,CMIP5 -2135,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.030234408,1.331788907,1.374546817,1.353167862,1.353167862,1,CMIP5 -2135,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.319897467,1.244180718,4.525011179,2.884595949,2.884595949,1,CMIP5 -2135,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.349719138,-3.138919322,0.184085351,-1.477416985,-1.477416985,1,CMIP5 -2136,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.39181802,-3.715151728,10.98109825,3.632973263,3.632973263,1,CMIP5 -2136,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.622147827,1.475451171,2.355301066,1.915376118,1.915376118,1,CMIP5 -2136,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.96569441,-6.031573694,9.476260061,1.722343184,1.722343184,1,CMIP5 -2137,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.007997847,1.348113902,2.773638128,2.060876015,2.060876015,1,CMIP5 -2137,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.521880489,-0.764804347,2.801673243,1.018434448,1.018434448,1,CMIP5 -2137,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.454638221,0.000895194,2.058064295,1.029479744,1.029479744,1,CMIP5 -2138,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.161097933,-0.181108139,2.875145868,1.347018864,1.347018864,1,CMIP5 -2138,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.006660118,1.81595283,3.239585221,2.527769026,2.527769026,1,CMIP5 -2138,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.053808478,-3.243387436,1.075349931,-1.084018753,-1.084018753,1,CMIP5 -2139,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.127975306,0.908376302,8.160428527,4.534402415,4.534402415,1,CMIP5 -2139,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.75438572,1.712447443,4.193523522,2.952985482,2.952985482,1,CMIP5 -2139,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.33817943,-0.720342915,4.000555708,1.640106397,1.640106397,1,CMIP5 -2140,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.033951631,-6.327484731,-3.45104275,-4.88926374,-4.88926374,1,CMIP5 -2140,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.047055674,-1.298584896,3.010602564,0.856008834,0.856008834,1,CMIP5 -2140,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.974969964,-6.415074131,-5.036258384,-5.725666257,-5.725666257,1,CMIP5 -2141,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.482867504,-6.009068022,-1.083549563,-3.546308792,-3.546308792,1,CMIP5 -2141,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.880602787,-1.280320817,2.793466712,0.756572947,0.756572947,1,CMIP5 -2141,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.286716413,-8.75256243,0.138197185,-4.307182622,-4.307182622,1,CMIP5 -2142,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.457485779,5.726849559,6.373832152,6.050340856,6.050340856,1,CMIP5 -2142,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.29524232,0.554657238,3.800620056,2.177638647,2.177638647,1,CMIP5 -2142,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.79538651,2.606169263,5.145229215,3.875699239,3.875699239,1,CMIP5 -2143,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.437686645,0.8891781,7.16501474,4.02709642,4.02709642,1,CMIP5 -2143,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.555293897,2.031733718,2.817037878,2.424385798,2.424385798,1,CMIP5 -2143,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.92312194,-1.118873846,4.429258408,1.655192281,1.655192281,1,CMIP5 -2144,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.934524706,9.229253042,10.55087056,9.890061799,9.890061799,1,CMIP5 -2144,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.567499509,1.758813198,2.561378701,2.16009595,2.16009595,1,CMIP5 -2144,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.369674985,7.473844005,7.996643382,7.735243693,7.735243693,1,CMIP5 -2145,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.63858582,1.705360988,19.57902046,10.64219072,10.64219072,1,CMIP5 -2145,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.194794203,0.441541472,3.545449201,1.993495336,1.993495336,1,CMIP5 -2145,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.43741581,1.270762157,16.03149716,8.651129657,8.651129657,1,CMIP5 -2146,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.533324927,5.450652394,6.204887739,5.827770067,5.827770067,1,CMIP5 -2146,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.963054003,0.298031834,3.074209429,1.686120632,1.686120632,1,CMIP5 -2146,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.445768143,2.402391833,5.861230312,4.131811072,4.131811072,1,CMIP5 -2147,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.589358784,1.738105532,3.98579828,2.861951906,2.861951906,1,CMIP5 -2147,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.964673472,0.731364617,3.509832486,2.120598551,2.120598551,1,CMIP5 -2147,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.366339408,0.510977248,1.029059407,0.770018328,0.770018328,1,CMIP5 -2148,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.792562,-9.150389443,10.3552388,0.602424681,0.602424681,1,CMIP5 -2148,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.425327187,0.146202426,3.576133027,1.861167726,1.861167726,1,CMIP5 -2148,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.31173021,-9.19757771,6.799624562,-1.198976574,-1.198976574,1,CMIP5 -2149,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.089615442,-0.585813982,-0.459078608,-0.522446295,-0.522446295,1,CMIP5 -2149,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.949412701,2.011956287,3.354628605,2.683292446,2.683292446,1,CMIP5 -2149,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.910064231,-3.769966147,-2.482940969,-3.126453558,-3.126453558,1,CMIP5 -2150,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.771915094,-1.332244662,2.587835258,0.627795298,0.627795298,1,CMIP5 -2150,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.318086175,1.02694711,2.891002455,1.958974783,1.958974783,1,CMIP5 -2150,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.426686821,-2.29029432,-0.272654469,-1.281474394,-1.281474394,1,CMIP5 -2151,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.181237751,1.831664362,4.916400373,3.374032367,3.374032367,1,CMIP5 -2151,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.425423007,0.583611418,2.599463967,1.591537692,1.591537692,1,CMIP5 -2151,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.761343411,1.261434687,2.338136864,1.799785775,1.799785775,1,CMIP5 -2152,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.98724861,1.902957545,10.37020573,6.136581638,6.136581638,1,CMIP5 -2152,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.968150214,0.304428518,3.087813244,1.696120881,1.696120881,1,CMIP5 -2152,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.030927393,1.596077382,7.29666957,4.446373476,4.446373476,1,CMIP5 -2153,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.260567764,-2.288784964,3.736567752,0.723891394,0.723891394,1,CMIP5 -2153,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.123284502,0.155660976,3.158438715,1.657049846,1.657049846,1,CMIP5 -2153,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.137232765,-2.41322824,0.609275321,-0.90197646,-0.90197646,1,CMIP5 -2154,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.439268646,-5.219507786,6.71542039,0.747956302,0.747956302,1,CMIP5 -2154,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.274364731,-0.492546427,2.723891022,1.115672298,1.115672298,1,CMIP5 -2154,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.160077386,-4.701684168,4.009980817,-0.345851676,-0.345851676,1,CMIP5 -2155,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.584036189,-4.800028531,-1.145649506,-2.972839018,-2.972839018,1,CMIP5 -2155,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.268771003,-1.69789659,4.339057257,1.320580334,1.320580334,1,CMIP5 -2155,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.612537428,-5.426801582,-3.146329281,-4.286565432,-4.286565432,1,CMIP5 -2156,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.692292616,-5.197296834,-2.804033665,-4.000665249,-4.000665249,1,CMIP5 -2156,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.6041526,-1.603879037,2.078948889,0.237534926,0.237534926,1,CMIP5 -2156,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.863548314,-4.849809218,-3.628567481,-4.239188349,-4.239188349,1,CMIP5 -2157,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.13327961,5.12680477,6.729504165,5.928154468,5.928154468,1,CMIP5 -2157,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.577054017,0.724147792,2.954438972,1.839293382,1.839293382,1,CMIP5 -2157,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.420330825,3.796412153,4.390849706,4.09363093,4.09363093,1,CMIP5 -2158,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.190342608,4.897760259,7.995372481,6.44656637,6.44656637,1,CMIP5 -2158,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.705685034,-0.021573814,3.804842656,1.891634421,1.891634421,1,CMIP5 -2158,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.459456772,4.219637171,4.86940717,4.544522171,4.544522171,1,CMIP5 -2159,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.912298465,-2.164879642,6.196373032,2.015746695,2.015746695,1,CMIP5 -2159,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.981036579,1.125857806,3.927466604,2.526662205,2.526662205,1,CMIP5 -2159,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.853862924,-6.037217253,5.069822212,-0.48369752,-0.48369752,1,CMIP5 -2160,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.272314268,-11.00117128,-2.130779373,-6.565975326,-6.565975326,1,CMIP5 -2160,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.073076865,-1.158908021,3.18707896,1.01408547,1.01408547,1,CMIP5 -2160,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.198461078,-9.79552795,-5.272220915,-7.533874433,-7.533874433,1,CMIP5 -2161,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.368206085,8.572775064,9.093497104,8.833136084,8.833136084,1,CMIP5 -2161,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.732125106,0.842491697,4.706300075,2.774395886,2.774395886,1,CMIP5 -2161,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.040889521,3.905650831,8.206118033,6.055884432,6.055884432,1,CMIP5 -2162,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.383547897,-3.859540214,6.582373361,1.361416573,1.361416573,1,CMIP5 -2162,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.72403854,-1.395195818,3.871389992,1.238097087,1.238097087,1,CMIP5 -2162,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.709372561,-2.501505307,2.744339676,0.121417185,0.121417185,1,CMIP5 -2163,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.880056166,-3.680662179,-1.021861252,-2.351261715,-2.351261715,1,CMIP5 -2163,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.13386844,0.092992393,3.110738081,1.601865237,1.601865237,1,CMIP5 -2163,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.253587705,-4.090601582,-3.73197441,-3.911287996,-3.911287996,1,CMIP5 -2164,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.066408637,4.896124238,12.06110805,8.478616142,8.478616142,1,CMIP5 -2164,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.642342232,-0.239108723,3.497727498,1.629309388,1.629309388,1,CMIP5 -2164,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.478591921,5.073537186,8.578795496,6.826166341,6.826166341,1,CMIP5 -2165,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.152972421,-5.405951411,0.46723851,-2.469356451,-2.469356451,1,CMIP5 -2165,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.623883185,-0.399688965,3.311042221,1.455676628,1.455676628,1,CMIP5 -2165,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.535305796,-4.97409676,-2.80284648,-3.88847162,-3.88847162,1,CMIP5 -2166,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.367870065,-6.889112793,-2.126225271,-4.507669032,-4.507669032,1,CMIP5 -2166,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.584289177,-1.044484345,4.02446602,1.489990838,1.489990838,1,CMIP5 -2166,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.185114762,-6.094423004,-5.832631197,-5.963527101,-5.963527101,1,CMIP5 -2167,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.362905294,2.292920537,12.70564106,7.499280799,7.499280799,1,CMIP5 -2167,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.137625586,0.23322873,1.842074262,1.037651496,1.037651496,1,CMIP5 -2167,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.407374479,0.468737124,12.35856014,6.41364863,6.41364863,1,CMIP5 -2168,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.111504826,-3.886151755,6.171034819,1.142441532,1.142441532,1,CMIP5 -2168,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.273885363,-0.01571179,3.20004773,1.59216797,1.59216797,1,CMIP5 -2168,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.305972825,-7.036171503,6.124461477,-0.455855013,-0.455855013,1,CMIP5 -2169,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.001495883,-6.370378395,-4.954049334,-5.662213865,-5.662213865,1,CMIP5 -2169,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.046155278,-1.161899652,1.731800893,0.284950621,0.284950621,1,CMIP5 -2169,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.020996313,-6.651912665,-5.208005832,-5.929959249,-5.929959249,1,CMIP5 -2170,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.77400253,-6.722957755,12.75642343,3.016732838,3.016732838,1,CMIP5 -2170,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.738568477,0.534513806,4.407434487,2.470974147,2.470974147,1,CMIP5 -2170,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.98552492,-7.161585974,8.374292353,0.60635319,0.60635319,1,CMIP5 -2171,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.975556936,-12.33063036,-5.294130262,-8.812380312,-8.812380312,1,CMIP5 -2171,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.070924514,-2.641485634,1.701457463,-0.470014086,-0.470014086,1,CMIP5 -2171,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.943323469,-9.709490931,-6.961216525,-8.335353728,-8.335353728,1,CMIP5 -2172,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.586480521,-5.428075495,-3.184453225,-4.30626436,-4.30626436,1,CMIP5 -2172,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.632778589,-1.631029958,2.09228123,0.230625636,0.230625636,1,CMIP5 -2172,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.99780341,-5.24247586,-3.831368745,-4.536922302,-4.536922302,1,CMIP5 -2173,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,15.1901009,-18.62941533,2.852631386,-7.88839197,-7.88839197,1,CMIP5 -2173,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.771895764,0.871320508,1.962945966,1.417133237,1.417133237,1,CMIP5 -2173,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,2.000115432,2.000115432,2.000115432,2.000115432,1,CMIP5 -2174,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.357220841,-5.399138435,6.419756622,0.510309094,0.510309094,1,CMIP5 -2174,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.537783668,-0.926867576,2.662100507,0.867616466,0.867616466,1,CMIP5 -2174,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.78119206,-8.014405684,7.232502349,-0.390951667,-0.390951667,1,CMIP5 -2175,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.529023131,-4.393280316,0.597512058,-1.897884129,-1.897884129,1,CMIP5 -2175,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.958635062,-1.631515977,3.966839416,1.16766172,1.16766172,1,CMIP5 -2175,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.363406009,-3.320347425,-2.806413719,-3.063380572,-3.063380572,1,CMIP5 -2176,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.633495568,-13.65051623,-0.026696145,-6.838606187,-6.838606187,1,CMIP5 -2176,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.006035026,-1.466120584,2.785054919,0.659467168,0.659467168,1,CMIP5 -2176,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.612606773,-12.12792751,-2.776289329,-7.45210842,-7.45210842,1,CMIP5 -2177,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.182782837,-1.095481253,10.47672121,4.69061998,4.69061998,1,CMIP5 -2177,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.498423178,-0.403846226,4.543671279,2.069912527,2.069912527,1,CMIP5 -2177,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.715116686,-0.702607566,5.9655744,2.631483417,2.631483417,1,CMIP5 -2178,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.605110182,-3.457015686,-1.187047098,-2.322031392,-2.322031392,1,CMIP5 -2178,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.489075452,-3.198668601,1.735629223,-0.731519689,-0.731519689,1,CMIP5 -2178,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.958527275,-5.162263063,1.850153459,-1.656054802,-1.656054802,1,CMIP5 -2179,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.46936163,-6.111032914,12.93752099,3.413244036,3.413244036,1,CMIP5 -2179,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.482995431,0.852025205,4.363511018,2.607768112,2.607768112,1,CMIP5 -2179,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.92790087,-6.856063886,8.598321736,0.871128925,0.871128925,1,CMIP5 -2180,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.94867265,-12.72136263,7.005039419,-2.858161603,-2.858161603,1,CMIP5 -2180,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,5.55667676,-3.565095974,4.293231662,0.364067844,0.364067844,1,CMIP5 -2180,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.465670999,-9.222759469,2.749507272,-3.236626099,-3.236626099,1,CMIP5 -2181,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.40727192,-8.010416622,10.95032916,1.469956269,1.469956269,1,CMIP5 -2181,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.950973678,2.343990259,3.688870132,3.016430195,3.016430195,1,CMIP5 -2181,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,14.32416364,-11.63311636,8.624310124,-1.504403121,-1.504403121,1,CMIP5 -2182,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.757921296,-0.846860017,0.225002559,-0.310928729,-0.310928729,1,CMIP5 -2182,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.113637665,-1.339062145,3.064286469,0.862612162,0.862612162,1,CMIP5 -2182,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.78969799,-3.870160225,1.489282069,-1.190439078,-1.190439078,1,CMIP5 -2183,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.950994056,-14.32591932,-0.253088565,-7.289503942,-7.289503942,1,CMIP5 -2183,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.368588693,-1.012044352,2.337645902,0.662800775,0.662800775,1,CMIP5 -2183,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.541769202,-13.22608637,-2.560414077,-7.893250221,-7.893250221,1,CMIP5 -2184,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.802018769,-3.977632747,2.813447322,-0.582092713,-0.582092713,1,CMIP5 -2184,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.461521311,-1.328686922,3.566643463,1.118978271,1.118978271,1,CMIP5 -2184,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.154010994,-7.489369098,4.042143837,-1.72361263,-1.72361263,1,CMIP5 -2185,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.224284538,-13.17970239,-0.134594091,-6.657148239,-6.657148239,1,CMIP5 -2185,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.445649008,0.386464389,2.430920822,1.408692605,1.408692605,1,CMIP5 -2185,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.64139685,-15.54798963,-0.498781886,-8.023385757,-8.023385757,1,CMIP5 -2186,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.716589107,2.192459216,3.205869249,2.699164233,2.699164233,1,CMIP5 -2186,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.268414734,0.804262908,4.01228579,2.408274349,2.408274349,1,CMIP5 -2186,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.536599597,-0.763139821,1.409940169,0.323400174,0.323400174,1,CMIP5 -2187,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.78107392,2.830529821,6.763562277,4.797046049,4.797046049,1,CMIP5 -2187,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.685582645,1.854441585,2.824001859,2.339221722,2.339221722,1,CMIP5 -2187,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.469522703,0.035605425,4.942251487,2.488928456,2.488928456,1,CMIP5 -2188,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.25160497,-9.519600876,7.806785029,-0.856407923,-0.856407923,1,CMIP5 -2188,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.916650516,-1.774955934,2.349810782,0.287427424,0.287427424,1,CMIP5 -2188,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.343764385,-7.74603404,5.468044276,-1.138994882,-1.138994882,1,CMIP5 -2189,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.439319595,-5.689258082,0.588887897,-2.550185092,-2.550185092,1,CMIP5 -2189,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.558087827,0.16270555,2.366174487,1.264440018,1.264440018,1,CMIP5 -2189,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.855212234,-5.786510729,-1.748630864,-3.767570797,-3.767570797,1,CMIP5 -2190,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,13.9652429,-18.00932268,1.740513235,-8.134404721,-8.134404721,1,CMIP5 -2190,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.977342703,-1.902465697,5.136559858,1.61704708,1.61704708,1,CMIP5 -2190,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.977202015,-16.03063535,-3.334954512,-9.682794934,-9.682794934,1,CMIP5 -2191,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.524827687,-7.589112496,-5.4326805,-6.510896498,-6.510896498,1,CMIP5 -2191,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.283315893,0.037802741,3.266899045,1.652350893,1.652350893,1,CMIP5 -2191,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.774752103,-8.644980468,-7.549315537,-8.097148002,-8.097148002,1,CMIP5 -2192,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.285510651,-1.721177463,4.339449822,1.309136179,1.309136179,1,CMIP5 -2192,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.523953305,-3.249780848,3.148055272,-0.050862788,-0.050862788,1,CMIP5 -2192,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.105165769,1.220957,1.369683856,1.295320428,1.295320428,1,CMIP5 -2193,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.68539849,-7.005807562,5.277200777,-0.864303392,-0.864303392,1,CMIP5 -2193,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.944978416,0.011769246,2.762384101,1.387076673,1.387076673,1,CMIP5 -2193,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.70649304,-6.947194674,2.537218739,-2.204987968,-2.204987968,1,CMIP5 -2194,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.456932935,-8.498331421,3.461577831,-2.518376795,-2.518376795,1,CMIP5 -2194,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.162025545,-0.576290801,3.895488609,1.659598904,1.659598904,1,CMIP5 -2194,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.28627525,-7.868658489,-0.392736336,-4.130697413,-4.130697413,1,CMIP5 -2195,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.02408121,-13.41275754,3.591861191,-4.910448172,-4.910448172,1,CMIP5 -2195,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.729340851,-1.218170646,2.641700201,0.711764778,0.711764778,1,CMIP5 -2195,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.264614197,-12.12705441,0.975088642,-5.575982882,-5.575982882,1,CMIP5 -2196,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,15.80209717,-16.29864342,6.048896711,-5.124873352,-5.124873352,1,CMIP5 -2196,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.05873726,-1.272031076,4.467890203,1.597929563,1.597929563,1,CMIP5 -2196,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.7072169,-14.93327586,1.623229067,-6.655023395,-6.655023395,1,CMIP5 -2197,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.310756086,-5.57979269,0.51653703,-2.53162783,-2.53162783,1,CMIP5 -2197,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,5.293658581,-3.538500462,3.947863298,0.204681418,0.204681418,1,CMIP5 -2197,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.852032015,-3.382395183,-2.177439951,-2.779917567,-2.779917567,1,CMIP5 -2198,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.509364751,-1.552559064,1.9962186,0.221829768,0.221829768,1,CMIP5 -2198,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.430718341,-1.328492164,2.10906268,0.390285258,0.390285258,1,CMIP5 -2198,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.134164168,-0.280581321,-0.090844536,-0.185712929,-0.185712929,1,CMIP5 -2199,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.18142062,-14.90211874,0.910797941,-6.995660401,-6.995660401,1,CMIP5 -2199,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.625424433,-0.200662115,2.098035162,0.948686524,0.948686524,1,CMIP5 -2199,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.476088278,-14.56397763,-1.162765064,-7.863371345,-7.863371345,1,CMIP5 -2200,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,20.06689733,-18.84512497,9.533753389,-4.655685791,-4.655685791,1,CMIP5 -2200,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.356695802,-2.987070722,3.174227568,0.093578423,0.093578423,1,CMIP5 -2200,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,15.70426657,-15.83227073,6.376916041,-4.727677343,-4.727677343,1,CMIP5 -2201,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.113082262,-7.553356515,2.50606089,-2.523647812,-2.523647812,1,CMIP5 -2201,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.283548981,-0.798108797,3.845530705,1.523710954,1.523710954,1,CMIP5 -2201,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.837229645,-6.72329009,-1.296627883,-4.009958987,-4.009958987,1,CMIP5 -2202,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.420781553,-12.4019193,-4.735776511,-8.568847907,-8.568847907,1,CMIP5 -2202,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.625444732,-2.197608819,2.929544291,0.365967736,0.365967736,1,CMIP5 -2202,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.947939624,-15.26437337,-2.6100758,-8.937224586,-8.937224586,1,CMIP5 -2203,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.360062847,-0.64819801,5.517862,2.434831995,2.434831995,1,CMIP5 -2203,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.860893683,-0.536750313,3.509164334,1.486207011,1.486207011,1,CMIP5 -2203,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.537310916,-0.13407305,2.040012897,0.952969924,0.952969924,1,CMIP5 -2204,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.50074673,-6.171759346,-4.049382966,-5.110571156,-5.110571156,1,CMIP5 -2204,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.369794148,-2.802807442,3.377014706,0.287103632,0.287103632,1,CMIP5 -2204,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.750823111,-9.490995077,-1.358103039,-5.424549058,-5.424549058,1,CMIP5 -2205,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.927019884,1.844133189,5.983564406,3.913848797,3.913848797,1,CMIP5 -2205,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.757341174,-0.952398042,2.947071242,0.9973366,0.9973366,1,CMIP5 -2205,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.235443025,2.726576664,3.059543383,2.893060024,2.893060024,1,CMIP5 -2206,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.726129295,-6.906568821,-3.051239799,-4.97890431,-4.97890431,1,CMIP5 -2206,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.833036629,-1.452632152,2.553886671,0.55062726,0.55062726,1,CMIP5 -2206,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.490288125,-9.411368081,-1.646928153,-5.529148117,-5.529148117,1,CMIP5 -2207,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.21058682,-7.004822251,-2.464366827,-4.734594539,-4.734594539,1,CMIP5 -2207,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.415307537,-0.843966083,3.986008155,1.571021036,1.571021036,1,CMIP5 -2207,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.563165335,-10.92330555,-1.641588124,-6.282446839,-6.282446839,1,CMIP5 -2208,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.478228601,-10.16437,0.411442312,-4.876463844,-4.876463844,1,CMIP5 -2208,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.659789782,0.144103095,2.491400315,1.317751705,1.317751705,1,CMIP5 -2208,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.763057487,-10.19947777,-2.04928371,-6.124380739,-6.124380739,1,CMIP5 -2209,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.57843363,-14.11029275,-1.978555568,-8.044424159,-8.044424159,1,CMIP5 -2209,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.808001347,-1.405304561,1.151595464,-0.126854548,-0.126854548,1,CMIP5 -2209,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.738655562,-12.64064931,-3.11075122,-7.875700264,-7.875700264,1,CMIP5 -2210,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.661774404,-12.35332988,-10.00322598,-11.17827793,-11.17827793,1,CMIP5 -2210,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,6.220093052,-5.952607301,2.843932653,-1.554337324,-1.554337324,1,CMIP5 -2210,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.677668666,-15.1313784,-4.273515244,-9.702446822,-9.702446822,1,CMIP5 -2211,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.510195195,-11.39901782,-2.19221148,-6.79561465,-6.79561465,1,CMIP5 -2211,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.10138612,-3.665139647,2.135096229,-0.765021709,-0.765021709,1,CMIP5 -2211,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.44802202,-13.47953926,1.296195181,-6.091672042,-6.091672042,1,CMIP5 -2212,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.66990271,-4.940165033,7.320928963,1.190381965,1.190381965,1,CMIP5 -2212,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.300670157,-1.353629033,3.314223468,0.980297217,0.980297217,1,CMIP5 -2212,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.82898953,-8.200372432,8.528344996,0.163986282,0.163986282,1,CMIP5 -2213,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.20276806,-15.90177085,-0.058664318,-7.980217582,-7.980217582,1,CMIP5 -2213,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.895141106,-2.128796359,1.965551458,-0.08162245,-0.08162245,1,CMIP5 -2213,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.295002422,-13.7299981,-1.999093178,-7.86454564,-7.86454564,1,CMIP5 -2214,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,19.34009057,-16.27919456,11.07182383,-2.603685364,-2.603685364,1,CMIP5 -2214,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.106986063,0.247397677,3.227125944,1.73726181,1.73726181,1,CMIP5 -2214,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,17.11918629,-16.35112928,7.859056154,-4.246036562,-4.246036562,1,CMIP5 -2215,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.14948522,-16.3152771,-7.618591698,-11.9669344,-11.9669344,1,CMIP5 -2215,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.562377219,0.862338911,1.657660401,1.259999656,1.259999656,1,CMIP5 -2215,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.467094112,-16.96847877,-9.23684013,-13.10265945,-13.10265945,1,CMIP5 -2216,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.86622947,-16.11821462,0.663168025,-7.727523298,-7.727523298,1,CMIP5 -2216,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.025724203,-2.03050638,2.248513825,0.109003722,0.109003722,1,CMIP5 -2216,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.823900141,-14.03724401,-1.558364761,-7.797804387,-7.797804387,1,CMIP5 -2217,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.191328034,-3.977435053,-0.878429228,-2.427932141,-2.427932141,1,CMIP5 -2217,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.42908219,-3.040801119,1.80865342,-0.616073849,-0.616073849,1,CMIP5 -2217,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.131519289,-2.661981125,-1.0617712,-1.861876162,-1.861876162,1,CMIP5 -2218,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.7340004,-11.41915286,3.761016091,-3.829068384,-3.829068384,1,CMIP5 -2218,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.996162326,0.903878872,2.312665144,1.608272008,1.608272008,1,CMIP5 -2218,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.637210701,-12.16038514,1.468688935,-5.345848103,-5.345848103,1,CMIP5 -2219,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.07485253,-8.103384433,8.973035776,0.434825671,0.434825671,1,CMIP5 -2219,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.269307904,-0.133653,3.075633014,1.470990007,1.470990007,1,CMIP5 -2219,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.7659869,-7.896300217,5.914890907,-0.990704655,-0.990704655,1,CMIP5 -2220,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.754179728,6.159796627,7.226367826,6.693082227,6.693082227,1,CMIP5 -2220,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.46593792,-0.601795902,2.885566949,1.141885523,1.141885523,1,CMIP5 -2220,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.631714838,4.360076253,6.667669507,5.51387288,5.51387288,1,CMIP5 -2221,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,16.13011766,-14.73975213,8.071679031,-3.33403655,-3.33403655,1,CMIP5 -2221,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.281389502,-2.527435147,3.527363952,0.499964402,0.499964402,1,CMIP5 -2221,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.8597462,-12.20250223,4.569711686,-3.816395274,-3.816395274,1,CMIP5 -2222,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.453651478,1.907756217,6.791956978,4.349856598,4.349856598,1,CMIP5 -2222,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,5.110771596,-2.92380944,4.303913065,0.690051812,0.690051812,1,CMIP5 -2222,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.504571281,2.526391894,4.654177005,3.59028445,3.59028445,1,CMIP5 -2223,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.271117812,-17.52562679,-7.24271337,-12.38417008,-12.38417008,1,CMIP5 -2223,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.831973675,-1.973361016,2.031654563,0.029146774,0.029146774,1,CMIP5 -2223,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.421958503,-15.48470134,-9.231107655,-12.3579045,-12.3579045,1,CMIP5 -2224,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.832833507,1.968044466,5.974276032,3.971160249,3.971160249,1,CMIP5 -2224,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.72177833,-1.090825319,2.758350509,0.833762595,0.833762595,1,CMIP5 -2224,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.181313702,2.980182609,3.236598905,3.108390757,3.108390757,1,CMIP5 -2225,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.49561157,-12.36130615,3.895943638,-4.232681258,-4.232681258,1,CMIP5 -2225,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,5.673088656,-4.063737035,3.959221882,-0.052257577,-0.052257577,1,CMIP5 -2225,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.920126171,-8.394661222,-0.0223385,-4.208499861,-4.208499861,1,CMIP5 -2226,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.07351381,-16.25403491,0.820492071,-7.716771417,-7.716771417,1,CMIP5 -2226,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.964375491,-0.668938636,2.109107825,0.720084595,0.720084595,1,CMIP5 -2226,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.03791107,-15.45953539,-1.263785409,-8.361660397,-8.361660397,1,CMIP5 -2227,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.12634261,-8.802824318,-5.795721761,-7.29927304,-7.29927304,1,CMIP5 -2227,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.487100307,-1.990956271,4.354761839,1.181902784,1.181902784,1,CMIP5 -2227,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.297452622,-10.08118233,-6.832093674,-8.456638003,-8.456638003,1,CMIP5 -2228,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,-4.507974128,-4.507974128,-4.507974128,-4.507974128,1,CMIP5 -2228,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.682568015,-1.444051732,2.349672337,0.452810302,0.452810302,1,CMIP5 -2228,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.84266439,-19.32234511,-6.816929207,-13.06963716,-13.06963716,1,CMIP5 -2229,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.336592917,-6.17742286,1.36965922,-2.40388182,-2.40388182,1,CMIP5 -2229,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.480416873,0.88628595,1.565698008,1.225991979,1.225991979,1,CMIP5 -2229,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.790479474,-6.954197948,-0.179436905,-3.566817427,-3.566817427,1,CMIP5 -2230,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.110951597,-7.252413959,2.803990231,-2.224211864,-2.224211864,1,CMIP5 -2230,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.002788226,-2.772663724,1.473920109,-0.649371808,-0.649371808,1,CMIP5 -2230,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.171796823,-4.557760181,1.342051466,-1.607854358,-1.607854358,1,CMIP5 -2231,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.880746906,-15.70624787,-8.803829399,-12.25503863,-12.25503863,1,CMIP5 -2231,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.066397893,-0.31366989,1.194444473,0.440387291,0.440387291,1,CMIP5 -2231,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.741527718,-15.25321668,-9.96189744,-12.60755706,-12.60755706,1,CMIP5 -2232,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.356674846,-7.026432362,-2.27937727,-4.652904816,-4.652904816,1,CMIP5 -2232,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.69956633,-2.967452086,2.264524793,-0.351463646,-0.351463646,1,CMIP5 -2232,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.254447632,-4.509633159,-4.149789867,-4.329711513,-4.329711513,1,CMIP5 -2233,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.110399696,-5.668615586,4.387008098,-0.640803744,-0.640803744,1,CMIP5 -2233,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.153387145,2.331398062,2.548320243,2.439859153,2.439859153,1,CMIP5 -2233,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.843233149,-7.81727964,1.860513489,-2.978383076,-2.978383076,1,CMIP5 -2234,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.761291296,-14.04131284,-7.307830116,-10.67457148,-10.67457148,1,CMIP5 -2234,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.539161735,-0.244338931,1.932364469,0.844012769,0.844012769,1,CMIP5 -2234,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.162451314,-13.67042155,-9.198040014,-11.43423078,-11.43423078,1,CMIP5 -2235,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.795738976,-3.507615929,3.274583172,-0.116516378,-0.116516378,1,CMIP5 -2235,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.356620607,-2.946145355,1.800833032,-0.572656161,-0.572656161,1,CMIP5 -2235,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.994293233,-5.277115225,6.028522687,0.375703731,0.375703731,1,CMIP5 -2236,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.51962144,-11.06814035,2.394637401,-4.336751473,-4.336751473,1,CMIP5 -2236,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.301688233,-3.257095925,2.826409915,-0.215343005,-0.215343005,1,CMIP5 -2236,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.286114256,-7.877310521,-0.401616049,-4.139463285,-4.139463285,1,CMIP5 -2237,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.864090597,1.776511717,2.998520358,2.387516037,2.387516037,1,CMIP5 -2237,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.785252212,0.904171884,2.014686212,1.459429048,1.459429048,1,CMIP5 -2237,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.647788835,-0.216845876,2.113479441,0.948316783,0.948316783,1,CMIP5 -2238,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.791281491,6.327229417,8.860483995,7.593856706,7.593856706,1,CMIP5 -2238,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.063387606,-0.289187617,2.62888312,1.169847752,1.169847752,1,CMIP5 -2238,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.768364477,3.716524946,9.045797098,6.381161022,6.381161022,1,CMIP5 -2239,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,-1.713785432,-1.713785432,-1.713785432,-1.713785432,1,CMIP5 -2239,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.840615014,-4.129010036,1.302439805,-1.413285116,-1.413285116,1,CMIP5 -2239,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,-2.995546009,-2.995546009,-2.995546009,-2.995546009,1,CMIP5 -2240,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.46287282,-19.08176081,-1.456597049,-10.26917893,-10.26917893,1,CMIP5 -2240,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.262237698,-1.968111012,2.645389785,0.338639386,0.338639386,1,CMIP5 -2240,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.167966552,-17.03032039,-4.064857751,-10.54758907,-10.54758907,1,CMIP5 -2241,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.048548976,-5.861159301,2.692780693,-1.584189304,-1.584189304,1,CMIP5 -2241,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.998540691,-0.707876774,3.532700138,1.412411682,1.412411682,1,CMIP5 -2241,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.06303019,-5.1332823,-0.801503463,-2.967392882,-2.967392882,1,CMIP5 -2242,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.19938774,-4.292654584,-4.010677738,-4.151666161,-4.151666161,1,CMIP5 -2242,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.737977753,-1.251529616,1.206342093,-0.022593762,-0.022593762,1,CMIP5 -2242,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.50319473,-5.192030348,-3.066191973,-4.12911116,-4.12911116,1,CMIP5 -2243,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.096906459,-11.87941851,-7.499731391,-9.689574948,-9.689574948,1,CMIP5 -2243,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,5.454468856,-4.055389858,3.658393974,-0.198497942,-0.198497942,1,CMIP5 -2243,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.395721938,-15.46272169,-3.589377857,-9.526049773,-9.526049773,1,CMIP5 -2244,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.714068306,-12.06120332,-6.808717554,-9.434960439,-9.434960439,1,CMIP5 -2244,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.350176094,-0.649788818,2.673862089,1.012036635,1.012036635,1,CMIP5 -2244,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.339502993,-11.32654521,-9.432201911,-10.37937356,-10.37937356,1,CMIP5 -2245,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.851407599,-19.39310344,-13.94639058,-16.66974701,-16.66974701,1,CMIP5 -2245,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.44166538,-3.249218149,3.032245271,-0.108486439,-0.108486439,1,CMIP5 -2245,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.551313624,-16.90652326,-16.12684806,-16.51668566,-16.51668566,1,CMIP5 -2246,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.273870904,-11.24522954,-0.958422655,-6.101826096,-6.101826096,1,CMIP5 -2246,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.471492358,0.625674135,2.706678584,1.66617636,1.66617636,1,CMIP5 -2246,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.725207067,-11.72505887,-3.628393385,-7.676726125,-7.676726125,1,CMIP5 -2247,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.744873548,3.318906219,11.4433843,7.381145262,7.381145262,1,CMIP5 -2247,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.694916644,0.893199559,1.875960102,1.38457983,1.38457983,1,CMIP5 -2247,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.382242649,1.458798325,10.48465244,5.971725381,5.971725381,1,CMIP5 -2248,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.976844671,-3.819154471,8.87602101,2.528433269,2.528433269,1,CMIP5 -2248,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.674310031,0.296418377,2.664250331,1.480334354,1.480334354,1,CMIP5 -2248,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.273127689,-4.061494364,6.224261454,1.081383545,1.081383545,1,CMIP5 -2249,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,-1.867410376,-1.867410376,-1.867410376,-1.867410376,1,CMIP5 -2249,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.010642334,-0.650845116,2.192632542,0.770893713,0.770893713,1,CMIP5 -2249,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,-4.027679046,-4.027679046,-4.027679046,-4.027679046,1,CMIP5 -2250,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.374730051,-2.858863386,-0.914701503,-1.886782445,-1.886782445,1,CMIP5 -2250,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.662464035,1.25354396,2.190409582,1.721976771,1.721976771,1,CMIP5 -2250,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.665363858,-4.016036297,-3.075069706,-3.545553002,-3.545553002,1,CMIP5 -2251,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.6356011,-17.56378452,-2.522773207,-10.04327887,-10.04327887,1,CMIP5 -2251,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.473243935,-4.613843123,1.712279117,-1.450782003,-1.450782003,1,CMIP5 -2251,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.235143255,-13.02504053,-4.207216375,-8.616128452,-8.616128452,1,CMIP5 -2252,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.813656651,-4.363413955,-3.212729684,-3.78807182,-3.78807182,1,CMIP5 -2252,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.003199975,-1.52365313,2.723513004,0.599929937,0.599929937,1,CMIP5 -2252,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.749200806,-7.041807216,-1.739636588,-4.390721902,-4.390721902,1,CMIP5 -2253,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.636461419,-9.059420577,-8.159328207,-8.609374392,-8.609374392,1,CMIP5 -2253,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.320488059,-0.18246075,3.099204935,1.458372093,1.458372093,1,CMIP5 -2253,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.69906763,-11.19949993,-8.796655444,-9.998077687,-9.998077687,1,CMIP5 -2254,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.64656903,-8.00415252,-7.089765829,-7.546959174,-7.546959174,1,CMIP5 -2254,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.985322965,0.593403534,3.401074197,1.997238866,1.997238866,1,CMIP5 -2254,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.660339093,-11.34272941,-7.580441782,-9.461585595,-9.461585595,1,CMIP5 -2255,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.927692024,-14.38308192,-4.5858459,-9.484463907,-9.484463907,1,CMIP5 -2255,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.202501885,-1.049662919,4.893572242,1.921954662,1.921954662,1,CMIP5 -2255,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.71593354,-13.24709092,-9.406180872,-11.3266359,-11.3266359,1,CMIP5 -2256,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.651915904,-13.45413422,0.195736154,-6.629199034,-6.629199034,1,CMIP5 -2256,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.451259722,0.168604902,5.049423208,2.609014055,2.609014055,1,CMIP5 -2256,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,6.144536503,-13.47966861,-4.789981748,-9.134825177,-9.134825177,1,CMIP5 -2257,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.668783517,-7.899264706,4.360246513,-1.769509096,-1.769509096,1,CMIP5 -2257,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.778668078,-0.550548375,4.79329527,2.121373448,2.121373448,1,CMIP5 -2257,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.891253434,-7.299902602,-0.382625659,-3.84126413,-3.84126413,1,CMIP5 -2258,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,9.604235839,-9.494809612,4.087630968,-2.703589322,-2.703589322,1,CMIP5 -2258,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.473178237,-1.190953251,5.135076079,1.972061414,1.972061414,1,CMIP5 -2258,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.149030762,-8.273851461,-0.992022324,-4.632936893,-4.632936893,1,CMIP5 -2259,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.393284154,2.967273488,4.937674835,3.952474161,3.952474161,1,CMIP5 -2259,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.090731614,0.009677941,5.794846069,2.902262005,2.902262005,1,CMIP5 -2259,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.633257829,-0.795409048,2.928579887,1.066585419,1.066585419,1,CMIP5 -2260,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.247368681,-14.37859372,-11.20033445,-12.78946408,-12.78946408,1,CMIP5 -2260,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.456507817,-0.381810903,4.50642933,2.062309214,2.062309214,1,CMIP5 -2260,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.236158364,-15.62252225,-13.87433033,-14.74842629,-14.74842629,1,CMIP5 -2261,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.455905067,0.031719701,7.747534641,3.889627171,3.889627171,1,CMIP5 -2261,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.092431843,-1.465180032,4.322392584,1.428606276,1.428606276,1,CMIP5 -2261,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.398879741,-4.235812059,9.056211142,2.410199542,2.410199542,1,CMIP5 -2262,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.786074442,-12.14881031,-11.03713317,-11.59297174,-11.59297174,1,CMIP5 -2262,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.26425868,-3.526220228,2.50435223,-0.510933999,-0.510933999,1,CMIP5 -2262,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.949761888,-14.59208908,-7.592068691,-11.09207889,-11.09207889,1,CMIP5 -2263,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.926059836,1.206206037,2.515852416,1.861029226,1.861029226,1,CMIP5 -2263,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.227591489,0.874502232,2.610578765,1.742540499,1.742540499,1,CMIP5 -2263,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.148032716,-1.37409788,1.66367912,0.14479062,0.14479062,1,CMIP5 -2264,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.109185345,-12.86198158,-12.70757019,-12.78477589,-12.78477589,1,CMIP5 -2264,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.115384652,-1.453830145,2.951989081,0.749079468,0.749079468,1,CMIP5 -2264,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.992880591,-15.59144084,-11.35886852,-13.47515468,-13.47515468,1,CMIP5 -2265,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.37473742,2.900566633,18.98687455,10.94372059,10.94372059,1,CMIP5 -2265,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.24965614,-0.372403346,4.22330444,1.925450547,1.925450547,1,CMIP5 -2265,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.165394229,3.223918388,14.77152965,8.997724019,8.997724019,1,CMIP5 -2266,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.39814823,-12.82210096,3.297314852,-4.762393056,-4.762393056,1,CMIP5 -2266,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.094428475,2.056484964,3.604240556,2.83036276,2.83036276,1,CMIP5 -2266,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.16145843,-14.63952817,-0.26905585,-7.454292011,-7.454292011,1,CMIP5 -2267,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.313305344,-19.40719542,-10.47883338,-14.9430144,-14.9430144,1,CMIP5 -2267,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,4.217324452,-4.350503242,1.613694194,-1.368404524,-1.368404524,1,CMIP5 -2267,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.158366214,-15.0991789,-12.04678813,-13.57298352,-13.57298352,1,CMIP5 -2268,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,15.54619924,-15.02246681,6.963178999,-4.029643905,-4.029643905,1,CMIP5 -2268,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.811943081,-1.571513098,3.819388506,1.123937704,1.123937704,1,CMIP5 -2268,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.71117739,-13.38653745,3.175568453,-5.105484497,-5.105484497,1,CMIP5 -2269,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.863315431,2.553019138,5.188145092,3.870582115,3.870582115,1,CMIP5 -2269,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.806581471,-1.28755047,4.095768672,1.404109101,1.404109101,1,CMIP5 -2269,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.551589714,-1.496840039,6.354293428,2.428726694,2.428726694,1,CMIP5 -2270,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.91273126,-9.329109828,7.518036282,-0.905536773,-0.905536773,1,CMIP5 -2270,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.882254785,-0.439598267,3.63652554,1.598463636,1.598463636,1,CMIP5 -2270,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,9.001528924,-8.820454459,3.909629827,-2.455412316,-2.455412316,1,CMIP5 -2271,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,17.47251891,17.47251891,17.47251891,17.47251891,1,CMIP5 -2271,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.996498666,-2.470734694,3.181167922,0.355216614,0.355216614,1,CMIP5 -2271,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,14.28970891,14.28970891,14.28970891,14.28970891,1,CMIP5 -2272,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.847115735,-4.72700055,-2.114784426,-3.420892488,-3.420892488,1,CMIP5 -2272,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.562739945,-1.294894995,0.915153029,-0.189870983,-0.189870983,1,CMIP5 -2272,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.358866149,-5.619141523,-0.868987462,-3.244064493,-3.244064493,1,CMIP5 -2273,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.85409999,-13.14403188,-4.865084278,-9.004558079,-9.004558079,1,CMIP5 -2273,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.520636139,-0.654373205,1.496131046,0.420878921,0.420878921,1,CMIP5 -2273,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.287732813,-12.39425734,-6.330487445,-9.362372393,-9.362372393,1,CMIP5 -2274,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,7.111930066,-14.07326592,-4.015477965,-9.044371941,-9.044371941,1,CMIP5 -2274,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.869209204,-0.945991445,3.111683125,1.08284584,1.08284584,1,CMIP5 -2274,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.214693325,-13.03842023,-7.077943771,-10.058182,-10.058182,1,CMIP5 -2275,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.027592056,0.373451413,7.483540284,3.928495848,3.928495848,1,CMIP5 -2275,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.052320323,-0.487188548,2.415230687,0.96402107,0.96402107,1,CMIP5 -2275,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.005529769,0.830528849,5.080989811,2.95575933,2.95575933,1,CMIP5 -2276,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,15.20079608,-19.47043236,2.026739611,-8.721846377,-8.721846377,1,CMIP5 -2276,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.369042808,-2.18796627,2.576579761,0.194306746,0.194306746,1,CMIP5 -2276,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.79821426,-17.20716687,-0.521972249,-8.864569561,-8.864569561,1,CMIP5 -2277,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,10.86216023,-14.69913656,0.662277763,-7.018429397,-7.018429397,1,CMIP5 -2277,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.310360328,0.332274211,2.185403559,1.258838885,1.258838885,1,CMIP5 -2277,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,12.13592126,-16.82137301,0.341411429,-8.23998079,-8.23998079,1,CMIP5 -2278,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.428135747,-6.333460952,2.757295802,-1.788082575,-1.788082575,1,CMIP5 -2278,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.428876793,-0.199960229,3.234990273,1.517515022,1.517515022,1,CMIP5 -2278,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.986713828,-6.081282964,-0.443218199,-3.262250582,-3.262250582,1,CMIP5 -2279,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.936834635,-2.311446344,3.256078589,0.472316122,0.472316122,1,CMIP5 -2279,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.572817892,-0.51003439,4.542693129,2.01632937,2.01632937,1,CMIP5 -2279,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.402566075,-1.806032046,-1.236717643,-1.521374844,-1.521374844,1,CMIP5 -2280,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.92889509,-6.084705367,10.78529985,2.350297241,2.350297241,1,CMIP5 -2280,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.520566365,-2.315487987,2.663344714,0.173928364,0.173928364,1,CMIP5 -2280,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,8.459769874,-3.834082875,8.129838415,2.14787777,2.14787777,1,CMIP5 -2281,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.112618573,-7.499044501,-7.339777788,-7.419411145,-7.419411145,1,CMIP5 -2281,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.634952638,0.779340622,1.677299254,1.228319938,1.228319938,1,CMIP5 -2281,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.801251891,-9.136970333,-8.003829043,-8.570399688,-8.570399688,1,CMIP5 -2282,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.11335947,-12.48852486,-6.671356112,-9.579940487,-9.579940487,1,CMIP5 -2282,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.615550708,-3.368664709,0.330282576,-1.519191067,-1.519191067,1,CMIP5 -2282,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.553267096,-9.178029648,-6.981378255,-8.079703951,-8.079703951,1,CMIP5 -2283,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.19089979,0.849709274,9.60496372,5.227336497,5.227336497,1,CMIP5 -2283,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.767216994,-1.160777171,1.338445071,0.08883395,0.08883395,1,CMIP5 -2283,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.46980646,1.939142968,8.260403885,5.099773427,5.099773427,1,CMIP5 -2284,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,12.96794698,-9.276826338,9.062620164,-0.107103087,-0.107103087,1,CMIP5 -2284,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.9169021,-0.46671945,2.244189497,0.888735023,0.888735023,1,CMIP5 -2284,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,11.00836013,-8.743037866,6.825134334,-0.958951766,-0.958951766,1,CMIP5 -2285,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,11.04001921,-12.36475997,3.248184919,-4.558287527,-4.558287527,1,CMIP5 -2285,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.86127891,1.312336309,2.530368624,1.921352466,1.921352466,1,CMIP5 -2285,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,10.05863917,-13.48290818,0.742155748,-6.370376216,-6.370376216,1,CMIP5 -2286,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.410020607,-1.872154669,7.192983409,2.66041437,2.66041437,1,CMIP5 -2286,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.847851718,-0.352234548,2.261022412,0.954393932,0.954393932,1,CMIP5 -2286,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,4.570557146,-1.520364857,4.943379046,1.711507094,1.711507094,1,CMIP5 -2287,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,0.771592149,3.082330628,4.17352671,3.627928669,3.627928669,1,CMIP5 -2287,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.751488146,-0.481747284,0.581017444,0.04963508,0.04963508,1,CMIP5 -2287,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.058372699,3.507294171,3.589845633,3.548569902,3.548569902,1,CMIP5 -2288,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.774162116,-15.57938468,-3.170845613,-9.375115144,-9.375115144,1,CMIP5 -2288,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.397018055,0.121050687,2.096732567,1.108891627,1.108891627,1,CMIP5 -2288,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.287082675,-15.53878642,-5.233295271,-10.38604085,-10.38604085,1,CMIP5 -2289,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,8.765534557,-13.65081705,-1.2544792,-7.452648126,-7.452648126,1,CMIP5 -2289,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.424205422,-0.938001421,1.076129202,0.069063891,0.069063891,1,CMIP5 -2289,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.292974413,-12.62773447,-2.313911145,-7.470822808,-7.470822808,1,CMIP5 -2290,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.54989264,-6.171582394,-2.565489639,-4.368536016,-4.368536016,1,CMIP5 -2290,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.478788147,0.595877806,1.272986497,0.934432152,0.934432152,1,CMIP5 -2290,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.122066177,-6.745027451,-3.743972684,-5.244500068,-5.244500068,1,CMIP5 -2291,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.168227538,0.838875825,2.490999053,1.664937439,1.664937439,1,CMIP5 -2291,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,2.58079386,-1.829092756,1.820700923,-0.004195917,-0.004195917,1,CMIP5 -2291,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,1.324472157,0.687440955,2.560527442,1.623984199,1.623984199,1,CMIP5 -2292,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.758458241,-12.59477773,-4.45108799,-8.522932862,-8.522932862,1,CMIP5 -2292,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.337529027,-0.928117757,0.963433933,0.017658088,0.017658088,1,CMIP5 -2292,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,7.061664542,-13.51564182,-3.528940054,-8.522290939,-8.522290939,1,CMIP5 -2293,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,3.416064823,-6.523564151,-1.692518949,-4.10804155,-4.10804155,1,CMIP5 -2293,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.900882875,-0.886031132,1.80222321,0.458096039,0.458096039,1,CMIP5 -2293,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,5.26761791,-8.287175482,-0.837638792,-4.562407137,-4.562407137,1,CMIP5 -2294,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,2.533423758,-8.3070703,-4.724268062,-6.515669181,-6.515669181,1,CMIP5 -2294,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.284275496,-0.683189188,1.133050635,0.224930723,0.224930723,1,CMIP5 -2294,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.800458392,-9.405719292,-4.031059491,-6.718389392,-6.718389392,1,CMIP5 -2295,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,16.67615483,-9.437552103,14.14609223,2.354270062,2.354270062,1,CMIP5 -2295,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,0.987843323,1.085708263,2.482729688,1.784218976,1.784218976,1,CMIP5 -2295,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,15.57851505,-10.37048907,11.66085819,0.645184561,0.645184561,1,CMIP5 -2296,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,1.309469992,1.887815103,3.739685325,2.813750214,2.813750214,1,CMIP5 -2296,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.688517859,-0.935450619,1.452474236,0.258511808,0.258511808,1,CMIP5 -2296,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,0.323237173,2.296667957,2.753794351,2.525231154,2.525231154,1,CMIP5 -2297,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,4.547648226,-8.296919091,-1.865573292,-5.081246191,-5.081246191,1,CMIP5 -2297,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,1.95566074,-1.818742607,0.946979336,-0.435881635,-0.435881635,1,CMIP5 -2297,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.614939281,-6.494108688,-2.796026091,-4.645067389,-4.645067389,1,CMIP5 -2298,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,5.648267061,-8.250534605,-0.262678723,-4.256606664,-4.256606664,1,CMIP5 -2298,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.219156389,-3.863005356,0.689569268,-1.586718044,-1.586718044,1,CMIP5 -2298,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,2.52565807,-4.514671217,-0.94285132,-2.728761268,-2.728761268,1,CMIP5 -2299,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,6.758514497,-9.55086705,0.007115813,-4.771875618,-4.771875618,1,CMIP5 -2299,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,3.470312782,-2.632469925,2.275293477,-0.178588224,-0.178588224,1,CMIP5 -2299,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,3.34224794,-6.965928892,-2.239276527,-4.602602709,-4.602602709,1,CMIP5 -2300,nbp,carbon_cycle,nbp,rcp85,PgC/yr,Simulated,global,NA,-11.5484178,-11.5484178,-11.5484178,-11.5484178,1,CMIP5 -2300,nbp,carbon_cycle,nbp_HL,rcp85,PgC/yr,Simulated,HL,NA,-1.926539562,-1.926539562,-1.926539562,-1.926539562,1,CMIP5 -2300,nbp,carbon_cycle,nbp_LL,rcp85,PgC/yr,Simulated,LL,NA,-9.611280489,-9.611280489,-9.611280489,-9.611280489,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/hist/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/hist/ensemble_mean_model.csv deleted file mode 100644 index 846d9bb43..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/hist/ensemble_mean_model.csv +++ /dev/null @@ -1,3247 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","ph","ocean","ph","historical",1850,"Simulated",1,"global",8.163699 -"CanESM2","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.1635988 -"CanESM2","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.1634662 -"CanESM2","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.1636506 -"CanESM2","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.1637044 -"CanESM2","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.1626176 -"CanESM2","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.1635238 -"CanESM2","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.1638698 -"CanESM2","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.162534 -"CanESM2","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.1624882 -"CanESM2","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.1622098 -"CanESM2","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.162192 -"CanESM2","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.1622288 -"CanESM2","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.1616696 -"CanESM2","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.1611902 -"CanESM2","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.1610792 -"CanESM2","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.1607688 -"CanESM2","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.1605184 -"CanESM2","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.16069 -"CanESM2","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.160928 -"CanESM2","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.160771 -"CanESM2","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.1601068 -"CanESM2","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.1605504 -"CanESM2","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.1596516 -"CanESM2","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.1594758 -"CanESM2","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.1587362 -"CanESM2","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.1594062 -"CanESM2","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.1590814 -"CanESM2","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.1583514 -"CanESM2","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.1581988 -"CanESM2","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.158167 -"CanESM2","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.157278 -"CanESM2","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.1565088 -"CanESM2","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.1563908 -"CanESM2","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.156183 -"CanESM2","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.1564614 -"CanESM2","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.1552128 -"CanESM2","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.1547446 -"CanESM2","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.1542238 -"CanESM2","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.154039 -"CanESM2","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.1538566 -"CanESM2","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.1534706 -"CanESM2","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.153169 -"CanESM2","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.1522954 -"CanESM2","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.1524888 -"CanESM2","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.1524136 -"CanESM2","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.1528268 -"CanESM2","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.1526504 -"CanESM2","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.1521078 -"CanESM2","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.1515248 -"CanESM2","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.1514346 -"CanESM2","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.150863 -"CanESM2","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.1507284 -"CanESM2","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.1511982 -"CanESM2","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.1498248 -"CanESM2","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.1494766 -"CanESM2","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.149409 -"CanESM2","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.1490084 -"CanESM2","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.1479224 -"CanESM2","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.147436 -"CanESM2","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.146975 -"CanESM2","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.1465342 -"CanESM2","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.1469848 -"CanESM2","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.1461046 -"CanESM2","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.1460048 -"CanESM2","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.1455594 -"CanESM2","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.1450302 -"CanESM2","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.1446934 -"CanESM2","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.1442928 -"CanESM2","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.144355 -"CanESM2","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.143607 -"CanESM2","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.1433576 -"CanESM2","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.1431084 -"CanESM2","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.142412 -"CanESM2","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.1418586 -"CanESM2","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.1416326 -"CanESM2","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.141219 -"CanESM2","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.1406514 -"CanESM2","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.1402814 -"CanESM2","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.139834 -"CanESM2","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.1391376 -"CanESM2","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.138872 -"CanESM2","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.138181 -"CanESM2","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.1379508 -"CanESM2","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.137255 -"CanESM2","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.1368312 -"CanESM2","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.1363374 -"CanESM2","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.1363454 -"CanESM2","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.1357576 -"CanESM2","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.1353918 -"CanESM2","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.1354008 -"CanESM2","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.1354242 -"CanESM2","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.1351586 -"CanESM2","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.13476 -"CanESM2","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.1351904 -"CanESM2","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.1349236 -"CanESM2","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.1347584 -"CanESM2","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.1350982 -"CanESM2","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.134691 -"CanESM2","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.1346924 -"CanESM2","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.1339316 -"CanESM2","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.1342914 -"CanESM2","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.1335014 -"CanESM2","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.133693 -"CanESM2","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.1333928 -"CanESM2","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.1326328 -"CanESM2","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.1316414 -"CanESM2","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.1311426 -"CanESM2","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.130657 -"CanESM2","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.130029 -"CanESM2","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.1294546 -"CanESM2","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.1290846 -"CanESM2","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.1281076 -"CanESM2","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.1280824 -"CanESM2","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.1282726 -"CanESM2","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.1267854 -"CanESM2","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.1246752 -"CanESM2","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.1244482 -"CanESM2","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.123243 -"CanESM2","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.1227506 -"CanESM2","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.1213418 -"CanESM2","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.1196702 -"CanESM2","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.118506 -"CanESM2","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.1180014 -"CanESM2","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.1163632 -"CanESM2","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.1153752 -"CanESM2","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.1142862 -"CanESM2","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.112515 -"CanESM2","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.1108852 -"CanESM2","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.1100434 -"CanESM2","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.1083356 -"CanESM2","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.10698 -"CanESM2","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.105825 -"CanESM2","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.1046808 -"CanESM2","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.1027092 -"CanESM2","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.10125 -"CanESM2","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.0995448 -"CanESM2","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.0979416 -"CanESM2","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.0965314 -"CanESM2","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.0942626 -"CanESM2","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.0930138 -"CanESM2","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.0919732 -"CanESM2","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.0918008 -"CanESM2","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.0893012 -"CanESM2","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.088271 -"CanESM2","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.087165 -"CanESM2","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.0848544 -"CanESM2","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.0833892 -"CanESM2","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.0815248 -"CanESM2","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.0799956 -"CanESM2","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.0782842 -"CanESM2","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.0762968 -"CanESM2","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.0747672 -"CanESM2","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.0729 -"CanESM2","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.0711158 -"CanESM2","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.0693162 -"CanESM2","ph","ocean","ph_HL","historical",1850,"Simulated",1,"HL",8.1488614 -"CanESM2","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.148441 -"CanESM2","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.1489504 -"CanESM2","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.1481334 -"CanESM2","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.149447 -"CanESM2","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.1492296 -"CanESM2","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.1486916 -"CanESM2","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.1493272 -"CanESM2","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.1478422 -"CanESM2","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.1482802 -"CanESM2","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.1480954 -"CanESM2","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.1481292 -"CanESM2","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.1481968 -"CanESM2","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.146124 -"CanESM2","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.1461816 -"CanESM2","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.1461074 -"CanESM2","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.146489 -"CanESM2","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.1452486 -"CanESM2","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.1457036 -"CanESM2","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.1452842 -"CanESM2","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.1461598 -"CanESM2","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.145689 -"CanESM2","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.1454652 -"CanESM2","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.1447636 -"CanESM2","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.1443048 -"CanESM2","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.1443184 -"CanESM2","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.144597 -"CanESM2","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.1447376 -"CanESM2","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.1439272 -"CanESM2","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.1440946 -"CanESM2","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.1433812 -"CanESM2","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.1435572 -"CanESM2","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.1431544 -"CanESM2","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.1415674 -"CanESM2","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.1405766 -"CanESM2","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.1405384 -"CanESM2","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.1400336 -"CanESM2","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.1392498 -"CanESM2","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.1389752 -"CanESM2","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.139491 -"CanESM2","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.139116 -"CanESM2","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.1387304 -"CanESM2","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.1388456 -"CanESM2","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.1389154 -"CanESM2","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.1382446 -"CanESM2","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.1384746 -"CanESM2","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.1388682 -"CanESM2","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.1380202 -"CanESM2","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.1376332 -"CanESM2","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.1365988 -"CanESM2","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.136046 -"CanESM2","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.1367706 -"CanESM2","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.136156 -"CanESM2","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.1353492 -"CanESM2","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.1352694 -"CanESM2","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.134576 -"CanESM2","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.133881 -"CanESM2","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.133862 -"CanESM2","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.1338194 -"CanESM2","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.1323776 -"CanESM2","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.132267 -"CanESM2","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.1313434 -"CanESM2","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.1324146 -"CanESM2","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.1327414 -"CanESM2","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.1318046 -"CanESM2","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.1316364 -"CanESM2","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.1312316 -"CanESM2","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.1314346 -"CanESM2","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.1300536 -"CanESM2","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.1312016 -"CanESM2","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.1309012 -"CanESM2","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.1307518 -"CanESM2","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.130169 -"CanESM2","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.1300344 -"CanESM2","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.129846 -"CanESM2","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.1279856 -"CanESM2","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.1279886 -"CanESM2","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.1275354 -"CanESM2","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.1272718 -"CanESM2","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.1268758 -"CanESM2","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.1264684 -"CanESM2","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.1261978 -"CanESM2","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.12565 -"CanESM2","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.1259416 -"CanESM2","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.1251296 -"CanESM2","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.1235136 -"CanESM2","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.1241288 -"CanESM2","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.122848 -"CanESM2","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.1228394 -"CanESM2","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.1230972 -"CanESM2","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.1220784 -"CanESM2","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.1227546 -"CanESM2","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.1227054 -"CanESM2","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.1223834 -"CanESM2","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.1222938 -"CanESM2","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.1220878 -"CanESM2","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.121723 -"CanESM2","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.123138 -"CanESM2","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.1223922 -"CanESM2","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.1220826 -"CanESM2","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.1212642 -"CanESM2","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.1222362 -"CanESM2","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.1210846 -"CanESM2","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.1208864 -"CanESM2","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.1208258 -"CanESM2","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.1205574 -"CanESM2","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.1179296 -"CanESM2","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.1176742 -"CanESM2","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.1170094 -"CanESM2","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.1161522 -"CanESM2","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.1161294 -"CanESM2","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.115591 -"CanESM2","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.114737 -"CanESM2","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.1149218 -"CanESM2","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.1144762 -"CanESM2","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.1132898 -"CanESM2","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.1106896 -"CanESM2","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.1098568 -"CanESM2","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.1092454 -"CanESM2","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.1084494 -"CanESM2","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.1083792 -"CanESM2","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.1076506 -"CanESM2","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.105903 -"CanESM2","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.1042382 -"CanESM2","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.1034048 -"CanESM2","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.103274 -"CanESM2","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.1019134 -"CanESM2","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.0998494 -"CanESM2","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.0992922 -"CanESM2","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.0970338 -"CanESM2","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.0956922 -"CanESM2","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.0950308 -"CanESM2","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.0928688 -"CanESM2","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.0923828 -"CanESM2","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.090315 -"CanESM2","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.088432 -"CanESM2","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.0876666 -"CanESM2","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.0861544 -"CanESM2","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.0850962 -"CanESM2","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.0839666 -"CanESM2","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.0813406 -"CanESM2","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.0813496 -"CanESM2","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.0797478 -"CanESM2","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.0786494 -"CanESM2","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.0779796 -"CanESM2","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.0762712 -"CanESM2","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.0752088 -"CanESM2","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.073205 -"CanESM2","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.0709328 -"CanESM2","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.0693224 -"CanESM2","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.0687328 -"CanESM2","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.066383 -"CanESM2","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.0643552 -"CanESM2","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.0623596 -"CanESM2","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.0610922 -"CanESM2","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.0592294 -"CanESM2","ph","ocean","ph_LL","historical",1850,"Simulated",1,"LL",8.1662944 -"CanESM2","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.1662504 -"CanESM2","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.1660052 -"CanESM2","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.1663646 -"CanESM2","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.1661984 -"CanESM2","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.1649594 -"CanESM2","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.1661184 -"CanESM2","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.1664136 -"CanESM2","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.1651042 -"CanESM2","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.1649734 -"CanESM2","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.1646788 -"CanESM2","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.1646522 -"CanESM2","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.1646832 -"CanESM2","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.1643892 -"CanESM2","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.1638154 -"CanESM2","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.1636978 -"CanESM2","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.1632666 -"CanESM2","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.1631896 -"CanESM2","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.1633116 -"CanESM2","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.1636644 -"CanESM2","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.1633272 -"CanESM2","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.1626288 -"CanESM2","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.163189 -"CanESM2","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.1622562 -"CanESM2","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.16213 -"CanESM2","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.161258 -"CanESM2","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.1619962 -"CanESM2","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.1615908 -"CanESM2","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.1608748 -"CanESM2","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.1606658 -"CanESM2","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.1607532 -"CanESM2","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.159678 -"CanESM2","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.1588446 -"CanESM2","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.158984 -"CanESM2","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.1589124 -"CanESM2","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.1592464 -"CanESM2","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.1578678 -"CanESM2","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.1574548 -"CanESM2","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.1568912 -"CanESM2","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.1565836 -"CanESM2","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.1564348 -"CanESM2","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.1560486 -"CanESM2","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.1556742 -"CanESM2","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.1546358 -"CanESM2","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.1549804 -"CanESM2","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.1548518 -"CanESM2","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.1552684 -"CanESM2","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.1552092 -"CanESM2","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.15464 -"CanESM2","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.1541356 -"CanESM2","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.1541262 -"CanESM2","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.1533282 -"CanESM2","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.1532776 -"CanESM2","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.1539704 -"CanESM2","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.1523712 -"CanESM2","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.1520828 -"CanESM2","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.1521252 -"CanESM2","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.1516578 -"CanESM2","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.1503892 -"CanESM2","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.1500702 -"CanESM2","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.1495478 -"CanESM2","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.1491918 -"CanESM2","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.1495334 -"CanESM2","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.148442 -"CanESM2","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.148489 -"CanESM2","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.147995 -"CanESM2","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.147444 -"CanESM2","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.1470126 -"CanESM2","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.1467834 -"CanESM2","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.1466558 -"CanESM2","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.1458298 -"CanESM2","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.1455628 -"CanESM2","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.1453714 -"CanESM2","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.1445772 -"CanESM2","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.1439598 -"CanESM2","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.1440196 -"CanESM2","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.1435336 -"CanESM2","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.1429456 -"CanESM2","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.1425574 -"CanESM2","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.1421004 -"CanESM2","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.1413536 -"CanESM2","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.1410894 -"CanESM2","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.1403732 -"CanESM2","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.1400514 -"CanESM2","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.1393762 -"CanESM2","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.1391608 -"CanESM2","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.138473 -"CanESM2","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.1387064 -"CanESM2","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.1380174 -"CanESM2","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.1375424 -"CanESM2","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.137731 -"CanESM2","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.1376402 -"CanESM2","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.1373372 -"CanESM2","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.136925 -"CanESM2","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.1374462 -"CanESM2","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.137169 -"CanESM2","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.1370386 -"CanESM2","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.1371904 -"CanESM2","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.1368426 -"CanESM2","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.1368984 -"CanESM2","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.1361478 -"CanESM2","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.1364 -"CanESM2","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.1356732 -"CanESM2","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.1359332 -"CanESM2","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.135591 -"CanESM2","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.1347452 -"CanESM2","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.1340402 -"CanESM2","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.1334982 -"CanESM2","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.1330444 -"CanESM2","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.1324566 -"CanESM2","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.1317854 -"CanESM2","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.1314446 -"CanESM2","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.1304464 -"CanESM2","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.1303848 -"CanESM2","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.130686 -"CanESM2","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.1291462 -"CanESM2","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.1271216 -"CanESM2","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.1270006 -"CanESM2","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.125692 -"CanESM2","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.125252 -"CanESM2","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.1236096 -"CanESM2","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.1217726 -"CanESM2","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.1207106 -"CanESM2","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.1204088 -"CanESM2","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.1186302 -"CanESM2","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.1174916 -"CanESM2","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.1164508 -"CanESM2","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.1147304 -"CanESM2","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.1129132 -"CanESM2","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.1123194 -"CanESM2","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.1105474 -"CanESM2","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.1090702 -"CanESM2","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.1080912 -"CanESM2","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.106832 -"CanESM2","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.1048772 -"CanESM2","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.1034924 -"CanESM2","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.1016226 -"CanESM2","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.1000034 -"CanESM2","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.0985316 -"CanESM2","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.0960634 -"CanESM2","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.0950556 -"CanESM2","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.0938314 -"CanESM2","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.093909 -"CanESM2","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.0911644 -"CanESM2","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.0900714 -"CanESM2","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.0890708 -"CanESM2","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.0865414 -"CanESM2","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.0851706 -"CanESM2","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.0833776 -"CanESM2","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.0818626 -"CanESM2","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.079955 -"CanESM2","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.0780308 -"CanESM2","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.0765884 -"CanESM2","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.0747438 -"CanESM2","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.0728694 -"CanESM2","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.0710808 -"CESM1-BGC","ph","ocean","ph","historical",1850,"Simulated",1,"global",8.161418 -"CESM1-BGC","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.160586 -"CESM1-BGC","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.160104 -"CESM1-BGC","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.160099 -"CESM1-BGC","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.16061 -"CESM1-BGC","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.160652 -"CESM1-BGC","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.159241 -"CESM1-BGC","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.158775 -"CESM1-BGC","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.159717 -"CESM1-BGC","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.159306 -"CESM1-BGC","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.158984 -"CESM1-BGC","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.159939 -"CESM1-BGC","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.160067 -"CESM1-BGC","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.15945 -"CESM1-BGC","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.158789 -"CESM1-BGC","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.158467 -"CESM1-BGC","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.158666 -"CESM1-BGC","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.15894 -"CESM1-BGC","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.158214 -"CESM1-BGC","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.157953 -"CESM1-BGC","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.157937 -"CESM1-BGC","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.158525 -"CESM1-BGC","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.157506 -"CESM1-BGC","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.156952 -"CESM1-BGC","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.157584 -"CESM1-BGC","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.156924 -"CESM1-BGC","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.156252 -"CESM1-BGC","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.156834 -"CESM1-BGC","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.156306 -"CESM1-BGC","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.155374 -"CESM1-BGC","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.154591 -"CESM1-BGC","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.154801 -"CESM1-BGC","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.153786 -"CESM1-BGC","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.153918 -"CESM1-BGC","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.155888 -"CESM1-BGC","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.152996 -"CESM1-BGC","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.152355 -"CESM1-BGC","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.151811 -"CESM1-BGC","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.151192 -"CESM1-BGC","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.150797 -"CESM1-BGC","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.151871 -"CESM1-BGC","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.151718 -"CESM1-BGC","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.150884 -"CESM1-BGC","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.150156 -"CESM1-BGC","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.149973 -"CESM1-BGC","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.148805 -"CESM1-BGC","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.14865 -"CESM1-BGC","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.148707 -"CESM1-BGC","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.148732 -"CESM1-BGC","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.148445 -"CESM1-BGC","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.148538 -"CESM1-BGC","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.148622 -"CESM1-BGC","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.148642 -"CESM1-BGC","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.150063 -"CESM1-BGC","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.148633 -"CESM1-BGC","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.147529 -"CESM1-BGC","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.145921 -"CESM1-BGC","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.146389 -"CESM1-BGC","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.145684 -"CESM1-BGC","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.145524 -"CESM1-BGC","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.14508 -"CESM1-BGC","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.14474 -"CESM1-BGC","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.144788 -"CESM1-BGC","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.143777 -"CESM1-BGC","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.143017 -"CESM1-BGC","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.142669 -"CESM1-BGC","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.142446 -"CESM1-BGC","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.142441 -"CESM1-BGC","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.141926 -"CESM1-BGC","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.141587 -"CESM1-BGC","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.140711 -"CESM1-BGC","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.139422 -"CESM1-BGC","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.139523 -"CESM1-BGC","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.140223 -"CESM1-BGC","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.140375 -"CESM1-BGC","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.139489 -"CESM1-BGC","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.139169 -"CESM1-BGC","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.138018 -"CESM1-BGC","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.138137 -"CESM1-BGC","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.137395 -"CESM1-BGC","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.137084 -"CESM1-BGC","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.136399 -"CESM1-BGC","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.135386 -"CESM1-BGC","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.135293 -"CESM1-BGC","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.134679 -"CESM1-BGC","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.134738 -"CESM1-BGC","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.133945 -"CESM1-BGC","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.133289 -"CESM1-BGC","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.132479 -"CESM1-BGC","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.13312 -"CESM1-BGC","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.133229 -"CESM1-BGC","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.132944 -"CESM1-BGC","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.132408 -"CESM1-BGC","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.133135 -"CESM1-BGC","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.131986 -"CESM1-BGC","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.132593 -"CESM1-BGC","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.133021 -"CESM1-BGC","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.13205 -"CESM1-BGC","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.132309 -"CESM1-BGC","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.132636 -"CESM1-BGC","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.13205 -"CESM1-BGC","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.132307 -"CESM1-BGC","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.131082 -"CESM1-BGC","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.131175 -"CESM1-BGC","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.130243 -"CESM1-BGC","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.129964 -"CESM1-BGC","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.128968 -"CESM1-BGC","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.128946 -"CESM1-BGC","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.127906 -"CESM1-BGC","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.127401 -"CESM1-BGC","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.127282 -"CESM1-BGC","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.126176 -"CESM1-BGC","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.125293 -"CESM1-BGC","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.12566 -"CESM1-BGC","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.125935 -"CESM1-BGC","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.124327 -"CESM1-BGC","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.123225 -"CESM1-BGC","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.122032 -"CESM1-BGC","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.119995 -"CESM1-BGC","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.119938 -"CESM1-BGC","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.118355 -"CESM1-BGC","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.117998 -"CESM1-BGC","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.116456 -"CESM1-BGC","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.114418 -"CESM1-BGC","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.11381 -"CESM1-BGC","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.112541 -"CESM1-BGC","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.112076 -"CESM1-BGC","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.109865 -"CESM1-BGC","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.108544 -"CESM1-BGC","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.106585 -"CESM1-BGC","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.105975 -"CESM1-BGC","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.104592 -"CESM1-BGC","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.1039 -"CESM1-BGC","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.102857 -"CESM1-BGC","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.099867 -"CESM1-BGC","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.098255 -"CESM1-BGC","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.096126 -"CESM1-BGC","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.094549 -"CESM1-BGC","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.093248 -"CESM1-BGC","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.091201 -"CESM1-BGC","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.089444 -"CESM1-BGC","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.08935 -"CESM1-BGC","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.089788 -"CESM1-BGC","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.088047 -"CESM1-BGC","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.085468 -"CESM1-BGC","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.084231 -"CESM1-BGC","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.082297 -"CESM1-BGC","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.079937 -"CESM1-BGC","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.07894 -"CESM1-BGC","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.077137 -"CESM1-BGC","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.075357 -"CESM1-BGC","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.073308 -"CESM1-BGC","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.072158 -"CESM1-BGC","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.069891 -"CESM1-BGC","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.068214 -"CESM1-BGC","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.06688 -"CESM1-BGC","ph","ocean","ph_HL","historical",1850,"Simulated",1,"HL",8.175146 -"CESM1-BGC","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.174631 -"CESM1-BGC","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.172251 -"CESM1-BGC","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.174767 -"CESM1-BGC","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.176574 -"CESM1-BGC","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.178426 -"CESM1-BGC","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.174481 -"CESM1-BGC","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.173083 -"CESM1-BGC","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.177426 -"CESM1-BGC","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.175652 -"CESM1-BGC","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.176311 -"CESM1-BGC","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.177327 -"CESM1-BGC","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.177397 -"CESM1-BGC","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.177134 -"CESM1-BGC","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.175465 -"CESM1-BGC","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.175685 -"CESM1-BGC","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.17399 -"CESM1-BGC","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.175645 -"CESM1-BGC","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.17394 -"CESM1-BGC","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.17548 -"CESM1-BGC","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.171909 -"CESM1-BGC","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.174033 -"CESM1-BGC","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.174138 -"CESM1-BGC","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.173187 -"CESM1-BGC","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.173428 -"CESM1-BGC","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.173391 -"CESM1-BGC","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.170863 -"CESM1-BGC","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.172208 -"CESM1-BGC","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.171515 -"CESM1-BGC","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.168458 -"CESM1-BGC","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.168519 -"CESM1-BGC","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.169191 -"CESM1-BGC","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.168462 -"CESM1-BGC","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.167197 -"CESM1-BGC","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.167501 -"CESM1-BGC","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.166308 -"CESM1-BGC","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.165776 -"CESM1-BGC","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.166911 -"CESM1-BGC","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.166533 -"CESM1-BGC","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.166433 -"CESM1-BGC","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.164247 -"CESM1-BGC","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.16656 -"CESM1-BGC","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.166559 -"CESM1-BGC","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.164612 -"CESM1-BGC","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.166764 -"CESM1-BGC","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.165335 -"CESM1-BGC","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.165486 -"CESM1-BGC","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.163592 -"CESM1-BGC","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.16393 -"CESM1-BGC","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.162668 -"CESM1-BGC","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.163881 -"CESM1-BGC","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.162939 -"CESM1-BGC","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.163415 -"CESM1-BGC","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.164619 -"CESM1-BGC","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.163291 -"CESM1-BGC","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.163132 -"CESM1-BGC","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.16342 -"CESM1-BGC","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.163782 -"CESM1-BGC","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.163601 -"CESM1-BGC","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.161718 -"CESM1-BGC","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.161655 -"CESM1-BGC","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.162945 -"CESM1-BGC","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.162042 -"CESM1-BGC","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.160139 -"CESM1-BGC","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.161917 -"CESM1-BGC","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.16034 -"CESM1-BGC","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.158035 -"CESM1-BGC","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.158012 -"CESM1-BGC","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.157427 -"CESM1-BGC","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.157662 -"CESM1-BGC","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.157384 -"CESM1-BGC","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.155839 -"CESM1-BGC","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.153732 -"CESM1-BGC","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.154983 -"CESM1-BGC","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.156529 -"CESM1-BGC","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.154061 -"CESM1-BGC","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.15503 -"CESM1-BGC","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.152883 -"CESM1-BGC","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.155229 -"CESM1-BGC","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.15184 -"CESM1-BGC","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.152126 -"CESM1-BGC","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.153038 -"CESM1-BGC","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.150351 -"CESM1-BGC","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.148455 -"CESM1-BGC","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.149495 -"CESM1-BGC","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.149217 -"CESM1-BGC","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.147397 -"CESM1-BGC","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.149126 -"CESM1-BGC","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.148188 -"CESM1-BGC","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.147934 -"CESM1-BGC","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.146842 -"CESM1-BGC","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.147384 -"CESM1-BGC","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.145167 -"CESM1-BGC","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.147294 -"CESM1-BGC","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.147319 -"CESM1-BGC","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.146005 -"CESM1-BGC","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.148714 -"CESM1-BGC","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.146395 -"CESM1-BGC","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.147158 -"CESM1-BGC","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.146308 -"CESM1-BGC","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.145437 -"CESM1-BGC","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.146472 -"CESM1-BGC","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.145413 -"CESM1-BGC","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.148143 -"CESM1-BGC","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.145132 -"CESM1-BGC","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.144348 -"CESM1-BGC","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.142404 -"CESM1-BGC","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.142203 -"CESM1-BGC","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.143329 -"CESM1-BGC","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.142853 -"CESM1-BGC","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.142889 -"CESM1-BGC","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.14185 -"CESM1-BGC","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.140736 -"CESM1-BGC","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.140817 -"CESM1-BGC","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.138452 -"CESM1-BGC","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.14027 -"CESM1-BGC","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.138236 -"CESM1-BGC","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.13951 -"CESM1-BGC","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.134956 -"CESM1-BGC","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.134469 -"CESM1-BGC","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.133347 -"CESM1-BGC","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.131241 -"CESM1-BGC","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.130706 -"CESM1-BGC","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.13037 -"CESM1-BGC","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.126877 -"CESM1-BGC","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.127107 -"CESM1-BGC","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.125748 -"CESM1-BGC","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.124003 -"CESM1-BGC","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.123172 -"CESM1-BGC","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.11962 -"CESM1-BGC","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.11866 -"CESM1-BGC","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.117716 -"CESM1-BGC","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.116654 -"CESM1-BGC","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.114006 -"CESM1-BGC","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.11203 -"CESM1-BGC","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.110591 -"CESM1-BGC","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.10753 -"CESM1-BGC","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.108808 -"CESM1-BGC","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.107498 -"CESM1-BGC","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.105001 -"CESM1-BGC","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.102424 -"CESM1-BGC","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.101391 -"CESM1-BGC","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.101173 -"CESM1-BGC","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.100313 -"CESM1-BGC","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.096887 -"CESM1-BGC","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.094957 -"CESM1-BGC","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.094152 -"CESM1-BGC","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.091855 -"CESM1-BGC","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.089729 -"CESM1-BGC","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.08987 -"CESM1-BGC","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.086662 -"CESM1-BGC","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.082867 -"CESM1-BGC","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.081101 -"CESM1-BGC","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.080299 -"CESM1-BGC","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.077112 -"CESM1-BGC","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.075287 -"CESM1-BGC","ph","ocean","ph_LL","historical",1850,"Simulated",1,"LL",8.159007 -"CESM1-BGC","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.158119 -"CESM1-BGC","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.15797 -"CESM1-BGC","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.157523 -"CESM1-BGC","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.157806 -"CESM1-BGC","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.15753 -"CESM1-BGC","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.156563 -"CESM1-BGC","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.156262 -"CESM1-BGC","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.156606 -"CESM1-BGC","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.156435 -"CESM1-BGC","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.15594 -"CESM1-BGC","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.156884 -"CESM1-BGC","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.157023 -"CESM1-BGC","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.156343 -"CESM1-BGC","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.155859 -"CESM1-BGC","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.155443 -"CESM1-BGC","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.155974 -"CESM1-BGC","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.156005 -"CESM1-BGC","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.155452 -"CESM1-BGC","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.154874 -"CESM1-BGC","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.155482 -"CESM1-BGC","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.155801 -"CESM1-BGC","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.154584 -"CESM1-BGC","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.1541 -"CESM1-BGC","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.154801 -"CESM1-BGC","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.154032 -"CESM1-BGC","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.153685 -"CESM1-BGC","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.154133 -"CESM1-BGC","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.153635 -"CESM1-BGC","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.153075 -"CESM1-BGC","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.152144 -"CESM1-BGC","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.152273 -"CESM1-BGC","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.151208 -"CESM1-BGC","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.151586 -"CESM1-BGC","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.153848 -"CESM1-BGC","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.150658 -"CESM1-BGC","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.149997 -"CESM1-BGC","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.149159 -"CESM1-BGC","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.148497 -"CESM1-BGC","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.148051 -"CESM1-BGC","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.149697 -"CESM1-BGC","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.14911 -"CESM1-BGC","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.14813 -"CESM1-BGC","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.147616 -"CESM1-BGC","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.147024 -"CESM1-BGC","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.145901 -"CESM1-BGC","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.145692 -"CESM1-BGC","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.146092 -"CESM1-BGC","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.146062 -"CESM1-BGC","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.145947 -"CESM1-BGC","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.145843 -"CESM1-BGC","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.146108 -"CESM1-BGC","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.146047 -"CESM1-BGC","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.147507 -"CESM1-BGC","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.146058 -"CESM1-BGC","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.144789 -"CESM1-BGC","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.142847 -"CESM1-BGC","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.143333 -"CESM1-BGC","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.142536 -"CESM1-BGC","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.14268 -"CESM1-BGC","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.142169 -"CESM1-BGC","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.141542 -"CESM1-BGC","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.141757 -"CESM1-BGC","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.140902 -"CESM1-BGC","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.139698 -"CESM1-BGC","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.139565 -"CESM1-BGC","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.139708 -"CESM1-BGC","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.139706 -"CESM1-BGC","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.139203 -"CESM1-BGC","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.138763 -"CESM1-BGC","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.137783 -"CESM1-BGC","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.136538 -"CESM1-BGC","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.137027 -"CESM1-BGC","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.13763 -"CESM1-BGC","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.137538 -"CESM1-BGC","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.13693 -"CESM1-BGC","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.136383 -"CESM1-BGC","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.135406 -"CESM1-BGC","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.135135 -"CESM1-BGC","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.134858 -"CESM1-BGC","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.134442 -"CESM1-BGC","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.133476 -"CESM1-BGC","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.132758 -"CESM1-BGC","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.132981 -"CESM1-BGC","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.132076 -"CESM1-BGC","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.132195 -"CESM1-BGC","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.131582 -"CESM1-BGC","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.130507 -"CESM1-BGC","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.12972 -"CESM1-BGC","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.130517 -"CESM1-BGC","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.130838 -"CESM1-BGC","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.130407 -"CESM1-BGC","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.130167 -"CESM1-BGC","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.130648 -"CESM1-BGC","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.129292 -"CESM1-BGC","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.130237 -"CESM1-BGC","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.130264 -"CESM1-BGC","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.12953 -"CESM1-BGC","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.129701 -"CESM1-BGC","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.130234 -"CESM1-BGC","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.129699 -"CESM1-BGC","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.129819 -"CESM1-BGC","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.128565 -"CESM1-BGC","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.128195 -"CESM1-BGC","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.127627 -"CESM1-BGC","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.127438 -"CESM1-BGC","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.126608 -"CESM1-BGC","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.126617 -"CESM1-BGC","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.125197 -"CESM1-BGC","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.124687 -"CESM1-BGC","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.124541 -"CESM1-BGC","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.123422 -"CESM1-BGC","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.12258 -"CESM1-BGC","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.122997 -"CESM1-BGC","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.123736 -"CESM1-BGC","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.121527 -"CESM1-BGC","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.120588 -"CESM1-BGC","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.118962 -"CESM1-BGC","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.117367 -"CESM1-BGC","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.117385 -"CESM1-BGC","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.115721 -"CESM1-BGC","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.115672 -"CESM1-BGC","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.113953 -"CESM1-BGC","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.111616 -"CESM1-BGC","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.111514 -"CESM1-BGC","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.109982 -"CESM1-BGC","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.109675 -"CESM1-BGC","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.107381 -"CESM1-BGC","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.105975 -"CESM1-BGC","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.104295 -"CESM1-BGC","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.103746 -"CESM1-BGC","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.102287 -"CESM1-BGC","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.101659 -"CESM1-BGC","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.100899 -"CESM1-BGC","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.097731 -"CESM1-BGC","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.096088 -"CESM1-BGC","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.094123 -"CESM1-BGC","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.092044 -"CESM1-BGC","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.090745 -"CESM1-BGC","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.088777 -"CESM1-BGC","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.087164 -"CESM1-BGC","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.087234 -"CESM1-BGC","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.087788 -"CESM1-BGC","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.085892 -"CESM1-BGC","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.083463 -"CESM1-BGC","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.082346 -"CESM1-BGC","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.080215 -"CESM1-BGC","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.077843 -"CESM1-BGC","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.077045 -"CESM1-BGC","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.0749 -"CESM1-BGC","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.073372 -"CESM1-BGC","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.071629 -"CESM1-BGC","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.070587 -"CESM1-BGC","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.068062 -"CESM1-BGC","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.066651 -"CESM1-BGC","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.065403 -"HadGEM2-ES","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.1651626 -"HadGEM2-ES","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.1569946 -"HadGEM2-ES","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.1568242 -"HadGEM2-ES","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.1565796 -"HadGEM2-ES","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.1567254 -"HadGEM2-ES","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.1564104 -"HadGEM2-ES","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.156884 -"HadGEM2-ES","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.1565512 -"HadGEM2-ES","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.1562288 -"HadGEM2-ES","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.1561476 -"HadGEM2-ES","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.1557056 -"HadGEM2-ES","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.1555346 -"HadGEM2-ES","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.1549902 -"HadGEM2-ES","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.1547246 -"HadGEM2-ES","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.1546404 -"HadGEM2-ES","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.1545086 -"HadGEM2-ES","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.1542658 -"HadGEM2-ES","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.154151 -"HadGEM2-ES","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.1540862 -"HadGEM2-ES","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.1534188 -"HadGEM2-ES","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.153236 -"HadGEM2-ES","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.1531108 -"HadGEM2-ES","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.1521938 -"HadGEM2-ES","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.1515812 -"HadGEM2-ES","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.1515976 -"HadGEM2-ES","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.1530514 -"HadGEM2-ES","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.1515776 -"HadGEM2-ES","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.150653 -"HadGEM2-ES","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.1503702 -"HadGEM2-ES","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.1499576 -"HadGEM2-ES","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.1497906 -"HadGEM2-ES","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.1496042 -"HadGEM2-ES","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.1494832 -"HadGEM2-ES","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.1485638 -"HadGEM2-ES","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.1484752 -"HadGEM2-ES","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.148124 -"HadGEM2-ES","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.1474044 -"HadGEM2-ES","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.1472352 -"HadGEM2-ES","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.1478642 -"HadGEM2-ES","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.1474582 -"HadGEM2-ES","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.1468264 -"HadGEM2-ES","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.1465738 -"HadGEM2-ES","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.1463836 -"HadGEM2-ES","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.1462666 -"HadGEM2-ES","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.1468094 -"HadGEM2-ES","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.1463278 -"HadGEM2-ES","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.145055 -"HadGEM2-ES","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.1445608 -"HadGEM2-ES","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.144242 -"HadGEM2-ES","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.1441418 -"HadGEM2-ES","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.1438184 -"HadGEM2-ES","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.1431354 -"HadGEM2-ES","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.142646 -"HadGEM2-ES","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.1424532 -"HadGEM2-ES","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.141897 -"HadGEM2-ES","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.1414718 -"HadGEM2-ES","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.1406958 -"HadGEM2-ES","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.1402792 -"HadGEM2-ES","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.1397654 -"HadGEM2-ES","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.1398672 -"HadGEM2-ES","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.1396916 -"HadGEM2-ES","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.1393624 -"HadGEM2-ES","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.1388494 -"HadGEM2-ES","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.1383592 -"HadGEM2-ES","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.137868 -"HadGEM2-ES","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.137086 -"HadGEM2-ES","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.1366902 -"HadGEM2-ES","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.1369976 -"HadGEM2-ES","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.1370092 -"HadGEM2-ES","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.1362494 -"HadGEM2-ES","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.1354406 -"HadGEM2-ES","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.135008 -"HadGEM2-ES","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.1349234 -"HadGEM2-ES","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.1342304 -"HadGEM2-ES","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.1336806 -"HadGEM2-ES","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.1331768 -"HadGEM2-ES","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.1327012 -"HadGEM2-ES","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.1320784 -"HadGEM2-ES","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.131433 -"HadGEM2-ES","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.1310362 -"HadGEM2-ES","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.1307352 -"HadGEM2-ES","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.1310286 -"HadGEM2-ES","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.130228 -"HadGEM2-ES","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.1301716 -"HadGEM2-ES","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.1307374 -"HadGEM2-ES","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.130642 -"HadGEM2-ES","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.1306102 -"HadGEM2-ES","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.130621 -"HadGEM2-ES","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.1303666 -"HadGEM2-ES","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.1304358 -"HadGEM2-ES","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.1303384 -"HadGEM2-ES","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.1305038 -"HadGEM2-ES","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.1301508 -"HadGEM2-ES","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.1298822 -"HadGEM2-ES","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.1294564 -"HadGEM2-ES","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.1288874 -"HadGEM2-ES","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.12845 -"HadGEM2-ES","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.1279528 -"HadGEM2-ES","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.1273688 -"HadGEM2-ES","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.1269426 -"HadGEM2-ES","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.1262476 -"HadGEM2-ES","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.1257446 -"HadGEM2-ES","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.1250414 -"HadGEM2-ES","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.124219 -"HadGEM2-ES","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.1235558 -"HadGEM2-ES","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.1239642 -"HadGEM2-ES","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.1234268 -"HadGEM2-ES","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.1223856 -"HadGEM2-ES","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.1209974 -"HadGEM2-ES","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.1195308 -"HadGEM2-ES","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.1187284 -"HadGEM2-ES","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.1181416 -"HadGEM2-ES","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.1168802 -"HadGEM2-ES","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.1149392 -"HadGEM2-ES","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.1140318 -"HadGEM2-ES","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.1131464 -"HadGEM2-ES","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.1123968 -"HadGEM2-ES","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.110697 -"HadGEM2-ES","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.1089272 -"HadGEM2-ES","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.1076744 -"HadGEM2-ES","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.1062454 -"HadGEM2-ES","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.1045256 -"HadGEM2-ES","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.1030084 -"HadGEM2-ES","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.102214 -"HadGEM2-ES","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.101042 -"HadGEM2-ES","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.0993828 -"HadGEM2-ES","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.0977116 -"HadGEM2-ES","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.0960644 -"HadGEM2-ES","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.0945784 -"HadGEM2-ES","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.0928332 -"HadGEM2-ES","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.0908348 -"HadGEM2-ES","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.0888772 -"HadGEM2-ES","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.0880708 -"HadGEM2-ES","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.0882974 -"HadGEM2-ES","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.0867102 -"HadGEM2-ES","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.0850902 -"HadGEM2-ES","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.0835298 -"HadGEM2-ES","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.0819308 -"HadGEM2-ES","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.0798716 -"HadGEM2-ES","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.0777776 -"HadGEM2-ES","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.0759008 -"HadGEM2-ES","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.074071 -"HadGEM2-ES","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.0721738 -"HadGEM2-ES","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.0702868 -"HadGEM2-ES","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.068292 -"HadGEM2-ES","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.0670748 -"HadGEM2-ES","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.0647964 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.1894358 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.169613 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.16991 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.1691606 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.1692334 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.1695022 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.1690328 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.1679018 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.1682706 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.167666 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.167314 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.1668506 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.1667864 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.1664832 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.1677716 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.1674286 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.1664204 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.1657756 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.1664578 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.1663358 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.165123 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.1636184 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.1635292 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.1633454 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.1618818 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.1619162 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.1618636 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.1612402 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.160919 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.1614288 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.1609448 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.1601768 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.1608054 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.1608216 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.1593348 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.1592426 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.1592182 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.1590038 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.1591932 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.1592484 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.1591104 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.159343 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.1591868 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.158565 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.1577354 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.1571418 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.1565924 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.155622 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.1565086 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.1564454 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.1552138 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.155426 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.1544112 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.1536284 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.153072 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.1537582 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.1524598 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.1528868 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.1528684 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.1522472 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.1530796 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.1525382 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.151273 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.151223 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.1503506 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.1499934 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.14876 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.149611 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.1496682 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.1491456 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.1486362 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.1477428 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.1467282 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.146642 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.146047 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.1451254 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.1440866 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.1433456 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.1427862 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.142929 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.1421146 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.1426292 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.142145 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.1425056 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.142773 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.1428784 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.1434366 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.1432258 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.1435426 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.1431428 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.1433556 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.143473 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.142611 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.1416014 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.1408538 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.1404146 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.1394038 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.1401662 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.1384876 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.1372472 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.1370778 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.1367494 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.1356928 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.1349618 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.1331764 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.1338972 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.1336732 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.1333296 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.1320648 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.1317708 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.1308222 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.1301786 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.1290454 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.1269362 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.1258456 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.1248882 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.1232206 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.121602 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.1209138 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.1189098 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.1172594 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.115105 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.1134298 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.1126218 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.1101054 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.108551 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.108068 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.106194 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.1052536 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.1038656 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.101363 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.0989326 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.097364 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.0953612 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.0949994 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.0931306 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.0919144 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.0906682 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.087952 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.086403 -"HadGEM2-ES","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.0834682 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.0810708 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.0790748 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.0763342 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.0731944 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.0727468 -"HadGEM2-ES","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.0692732 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.1606296 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.1546384 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.1543804 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.1542298 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.1543896 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.1539656 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.1546148 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.154432 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.15398 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.1539962 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.1535382 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.1534214 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.1527868 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.152529 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.1521882 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.1520962 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.1519962 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.1519802 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.1517758 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.1510068 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.1510162 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.1511486 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.1500772 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.1493844 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.149677 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.1513962 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.1496568 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.1486758 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.1484 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.1478156 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.1477076 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.1476294 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.147369 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.146275 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.1464468 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.1460476 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.1451984 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.1450378 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.1457484 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.1452566 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.1445324 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.1441894 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.1439926 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.1439698 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.1447686 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.1443084 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.1429006 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.1424952 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.1419512 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.141844 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.1416904 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.1408398 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.140449 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.1403664 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.13981 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.1391774 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.138499 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.1379246 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.1373182 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.1375556 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.1371914 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.136902 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.1365296 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.1359566 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.1355368 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.1346756 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.1344362 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.1346418 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.1346454 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.133841 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.1329764 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.1326296 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.132719 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.1319124 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.1313716 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.1309458 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.1305748 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.1299744 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.129313 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.1288152 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.1286102 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.1288628 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.1280024 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.1278682 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.12849 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.1283572 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.1282148 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.1282672 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.1279062 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.128063 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.1279078 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.1280818 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.1278236 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.1276934 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.1273282 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.126735 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.1264042 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.125672 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.1252922 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.125018 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.124225 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.1236892 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.1230524 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.1222126 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.121759 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.1221092 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.1215134 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.1203418 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.1189304 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.117245 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.1164698 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.115894 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.1146082 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.1126988 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.1118256 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.1109534 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.1103756 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.1086608 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.1066888 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.1055764 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.1041884 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.1025496 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.1010626 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.1002706 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.0993494 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.0976708 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.0957774 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.094173 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.0925848 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.0907734 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.0888684 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.0869994 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.0863354 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.0869786 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.0851622 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.0835888 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.0819638 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.0802992 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.0783626 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.0761666 -"HadGEM2-ES","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.0744874 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.0727638 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.070885 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.0691572 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.067377 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.0660156 -"HadGEM2-ES","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.0639604 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1850,"Simulated",1,"global",8.15989933333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.159687 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.16010566666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.160048 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.15928966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.1593 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.15902133333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.15920166666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.15926366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.15844133333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.15786666666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.15780566666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.15739966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.157308 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.15731633333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.15729333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.15731333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.15692633333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.15678 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.156584 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.15697033333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.15691333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.15671266666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.156362 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.155589 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.15574766666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.15563266666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.15525333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.15539933333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.154461 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.15447366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.153833 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.153167 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.15352933333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.15428666666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.15311233333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.15236933333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.15226766666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.151776 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.15139366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.151392 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.150837 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.15009966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.14987333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.149158 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.14937766666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.149318 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.14881633333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.148831 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.14907066666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.14884433333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.148436 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.14827733333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.14892966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.14793866666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.14699 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.14609366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.146301 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.14567166666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.14501333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.144722 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.14426366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.14438233333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.14394866666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.14304966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.142401 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.14160766666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.14133233333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.14176333333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.14096966666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.14037366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.14016566666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.13997266666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.13985633333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.13944166666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.13834933333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.138571 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.13876 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.138061 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.13720266666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.136735 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.13630433333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.13589433333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.135564 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.13482366666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.13429 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.13345433333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.13304533333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.13302066666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.133005 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.13257233333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.132389 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.132609 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.13280766666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.13273566666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.133285 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.132396 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.13225233333333 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.131874 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.13164066666667 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.131671 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.13191 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.13125525 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.131169 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.13049625 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.12967125 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.129342 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.1288785 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.128387 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.127538 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.12639225 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.126346 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.12623725 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.12572775 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.125207 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.12456125 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.1239735 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.1224485 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.1215055 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.12095225 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.11915275 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.11800575 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.1165935 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.11550425 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.11442875 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.11357825 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.11253875 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.1110765 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.10968425 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.107752 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.10665775 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.10475475 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.103663 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.10311375 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.10102625 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.09948825 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.098286 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.09611075 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.094431 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.09216175 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.0903995 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.0898515 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.08975525 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.087815 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.08611875 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.08427675 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.082871 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.08052325 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.07882225 -"IPSL-CM5A-LR","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.07696425 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.07568175 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.07389475 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.07173025 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.070581 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.068443 -"IPSL-CM5A-LR","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.0666355 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1850,"Simulated",1,"HL",8.159644 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.16050733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.16147133333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.15906533333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.156686 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.15746466666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.155274 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.15499866666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.15500033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.155079 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.154149 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.15321233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.15317066666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.152779 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.15435433333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.15366033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.154805 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.15400133333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.15381733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.15484733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.15671366666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.156613 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.157029 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.15533433333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.15369433333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.15464966666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.15534833333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.152938 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.15359466666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.15322766666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.15353 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.15314833333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.15365233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.15230733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.150448 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.14982366666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.150682 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.15288566666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.15252466666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.152876 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.15192533333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.151843 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.152821 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.14814333333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.14832733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.149435 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.14928 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.147474 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.148554 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.14947966666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.14877633333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.14830766666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.14794166666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.14865966666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.147971 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.147783 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.146289 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.14498233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.14526166666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.14637966666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.14537033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.14447933333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.14439333333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.14384033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.14204833333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.14009333333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.13756533333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.138203 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.14055233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.13956666666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.137016 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.138715 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.13905633333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.13905233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.13818566666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.13656833333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.13833466666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.13876733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.137021 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.13729033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.13726566666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.137518 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.13776333333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.13788733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.13615833333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.13393633333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.13323033333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.13312733333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.13261066666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.13382866666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.13147133333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.132351 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.13224233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.13323233333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.133907 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.13551966666667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.13458633333333 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.134085 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.133092 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.133328 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.13275325 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.133185 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.1314225 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.13201825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.131516 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.1307455 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.1291955 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.12975125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.12903975 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.1272755 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.126457 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.126809 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.12825325 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.12633075 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.1249365 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.125073 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.12512025 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.12352475 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.122215 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.120503 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.11930675 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.11865125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.11662225 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.11530825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.11482975 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.1136835 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.11254925 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.111416 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.1095275 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.10855775 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.10778675 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.1042065 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.1018335 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.10164425 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.098275 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.096997 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.0954715 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.0936925 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.0923595 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.0895445 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.0863935 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.0856485 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.08446125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.0832345 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.080918 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.079275 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.07699925 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.075084 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.072192 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.0708825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.0693435 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.06761575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.06378575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.063469 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.06110025 -"IPSL-CM5A-LR","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.05932225 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1850,"Simulated",1,"LL",8.15995466666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.15950833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.15980866666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.16026166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.159856 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.159699 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.15983633333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.16011566666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.160191 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.15917233333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.158675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.158805 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.15831966666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.15829233333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.15796 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.15808333333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.157859 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.157562 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.157424 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.15696133333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.15702566666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.15697866666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.15664366666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.156585 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.156001 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.15598666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.155695 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.155757 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.15579166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.154729 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.15467866666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.15398166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.15306166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.15379533333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.15512166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.15382733333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.15273633333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.15213333333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.151613 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.15107166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.151276 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.15061833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.14950766666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.15024933333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.14933833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.14936533333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.14932666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.14910833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.14889133333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.14898166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.14885933333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.14846366666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.14835033333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.14898833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.14793166666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.14681766666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.14605133333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.14658766666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.145761 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.144716 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.144581 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.14421666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.14438033333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.14397266666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.143267 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.142903 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.14248666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.142013 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.14202666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.141275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.141104 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.140481 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.140172 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.140031 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.139715 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.13873666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.13862233333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.13875833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.138287 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.13718366666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.13662 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.13604033333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.135488 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.13505866666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.13453333333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.13436666666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.133503 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.13302766666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.13310966666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.132826 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.132812 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.13239733333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.13268833333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.132715 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.132481 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.13279933333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.13191933333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.131854 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.13160933333333 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.13127366666667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.1314355 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.13163275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.131219 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.1309845 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.1302745 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.1294375 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.12937375 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.12868875 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.128245 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.127595 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.126378 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.12624525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.125799 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.12559625 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.12526575 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.12445 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.1237245 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.122215 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.12135125 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.12105 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.119119 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.1178655 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.1165875 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.115547 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.11434125 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.113555 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.11253675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.1110025 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.1097185 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.10757675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.106412 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.104874 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.104061 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.10343325 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.1016245 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.10003 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.098898 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.09663675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.09488175 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.0927305 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.09127075 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.0907655 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.090906 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.088811 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.0872495 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.08536425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.08414725 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.0817055 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.08026425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.078287 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.0770605 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.07526025 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.07345775 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.0721275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.07003975 -"IPSL-CM5A-LR","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.0682255 -"MPI-ESM-LR","ph","ocean","ph","historical",1850,"Simulated",1,"global",8.16400033333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.16384 -"MPI-ESM-LR","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.16370733333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.16354833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.16362833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.16349266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.163695 -"MPI-ESM-LR","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.16404266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.163805 -"MPI-ESM-LR","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.16314666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.16281866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.162264 -"MPI-ESM-LR","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.16299233333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.162481 -"MPI-ESM-LR","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.16219966666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.16197166666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.16151133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.160938 -"MPI-ESM-LR","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.161272 -"MPI-ESM-LR","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.161114 -"MPI-ESM-LR","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.16130533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.16164666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.16137 -"MPI-ESM-LR","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.160687 -"MPI-ESM-LR","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.159876 -"MPI-ESM-LR","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.16034066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.159919 -"MPI-ESM-LR","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.15976666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.15956233333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.15918433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.15839466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.15792533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.15714033333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.15763233333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.15839566666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.15693 -"MPI-ESM-LR","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.155956 -"MPI-ESM-LR","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.15547266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.15460566666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.15508 -"MPI-ESM-LR","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.15446833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.153947 -"MPI-ESM-LR","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.15426633333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.15415133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.153199 -"MPI-ESM-LR","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.15275433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.153122 -"MPI-ESM-LR","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.15300266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.15263366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.15243933333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.152515 -"MPI-ESM-LR","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.152332 -"MPI-ESM-LR","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.15130866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.15188166666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.15096533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.150797 -"MPI-ESM-LR","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.15009866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.149472 -"MPI-ESM-LR","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.14929866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.14799066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.14816833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.14791533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.14675066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.14749633333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.14648333333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.145719 -"MPI-ESM-LR","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.14525366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.14544666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.14482466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.14453233333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.14418366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.14406366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.14382266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.14321466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.14261366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.14242933333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.14180533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.141493 -"MPI-ESM-LR","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.14056866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.140376 -"MPI-ESM-LR","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.139965 -"MPI-ESM-LR","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.13943066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.13879466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.138213 -"MPI-ESM-LR","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.13781966666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.13704933333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.13732866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.13695966666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.13638566666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.13641266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.135865 -"MPI-ESM-LR","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.13487733333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.134892 -"MPI-ESM-LR","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.13607066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.13594266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.13566133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.135397 -"MPI-ESM-LR","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.13439166666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.135122 -"MPI-ESM-LR","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.13528533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.135145 -"MPI-ESM-LR","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.13489866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.13414566666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.133652 -"MPI-ESM-LR","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.133689 -"MPI-ESM-LR","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.13277366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.13241133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.13157533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.13061866666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.13012433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.129759 -"MPI-ESM-LR","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.129214 -"MPI-ESM-LR","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.12835266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.12773966666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.12789833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.127837 -"MPI-ESM-LR","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.12588333333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.12485133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.12307033333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.12231 -"MPI-ESM-LR","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.122269 -"MPI-ESM-LR","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.120252 -"MPI-ESM-LR","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.11903433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.11788666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.11678366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.11587233333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.115001 -"MPI-ESM-LR","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.11323466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.11181433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.10983533333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.10810266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.10697466666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.10569066666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.10500733333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.103304 -"MPI-ESM-LR","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.10158833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.10041733333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.09809033333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.09611 -"MPI-ESM-LR","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.09371266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.092182 -"MPI-ESM-LR","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.091166 -"MPI-ESM-LR","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.09211 -"MPI-ESM-LR","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.09042 -"MPI-ESM-LR","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.08869266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.08664433333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.08518366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.082977 -"MPI-ESM-LR","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.08162133333333 -"MPI-ESM-LR","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.07966366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.07793666666667 -"MPI-ESM-LR","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.07561266666667 -"MPI-ESM-LR","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.07448833333333 -"MPI-ESM-LR","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.07188366666667 -"MPI-ESM-LR","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.06971 -"MPI-ESM-LR","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.068702 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1850,"Simulated",1,"HL",8.179115 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.17860633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.177892 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.17709633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.17909766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.17624233333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.17741966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.178669 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.178286 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.17843933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.178069 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.17620766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.17889733333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.17772833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.17722133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.17560666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.175867 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.175305 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.17568966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.174891 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.17543433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.17729466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.17588533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.174193 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.17294333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.177822 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.17508033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.175096 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.175522 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.17272633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.172963 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.17291466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.170398 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.17040966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.16888566666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.168354 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.169209 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.16866133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.16791633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.16888633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.16711766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.16614966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.16645833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.16921966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.16729533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.16631533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.16687366666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.166934 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.16625633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.166844 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.16549066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.16638966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.16478033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.16605666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.16497633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.16475733333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.164419 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.16269333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.16337866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.16224533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.16320066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.16102666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.15920866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.16013266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.15978433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.15839966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.15821433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.157701 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.157737 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.15965833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.15742766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.15553866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.156065 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.15547366666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.15454333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.15564633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.153635 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.15272633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.15158566666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.15227733333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.152659 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.15277266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.14975633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.14924033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.14849133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.148917 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.14948666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.14894466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.14862866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.14887366666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.14812466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.14593866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.142898 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.146073 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.14651266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.147495 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.14680266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.14559533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.14730433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.14673333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.14723866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.14599633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.14681933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.14477866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.144956 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.14397 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.144547 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.14245833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.14142666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.14083966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.14030233333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.140571 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.139776 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.13889 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.13786033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.13778166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.136351 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.136238 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.13382433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.13153833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.13262066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.128987 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.12972066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.12777 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.126381 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.12580633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.12646133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.12345633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.121782 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.11936933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.11758266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.115628 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.11433533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.11149366666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.110885 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.108721 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.10881166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.106733 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.10343933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.102726 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.10112633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.09735633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.09601066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.094363 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.094009 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.092514 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.090684 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.087809 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.08630033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.08359666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.08175633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.07882033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.07735 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.076486 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.074249 -"MPI-ESM-LR","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.072275 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1850,"Simulated",1,"LL",8.16091066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.160822 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.160808 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.16077966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.16046633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.16088666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.16088966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.16105366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.16084566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.160021 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.15970133333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.159414 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.159742 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.15936466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.159129 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.15918466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.158577 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.15800166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.158325 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.158298 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.158417 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.15844833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.15840266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.15792666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.15720533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.15676833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.15682 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.15663333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.15630033333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.15641666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.15541666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.154862 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.154431 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.155021 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.15625166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.154595 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.153247 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.152777 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.151885 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.15225866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.15188266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.15145333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.15177466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.15107166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.150318 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.14998266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.150311 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.15015533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.14984933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.14949533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.14986333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.14945866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.14855533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.14898433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.14810166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.147944 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.14717166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.14676933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.14642066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.14507733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.14509566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.145236 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.14420433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.14491366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.14376466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.143127 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.14260466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.142942 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.14218533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.14144066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.14147666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.14171833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.14132033333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.14070933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.14017533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.139728 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.13938733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.13919733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.138317 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.13794333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.13737033333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.13670333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.13655433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.13595933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.13563833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.134623 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.13484366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.13451 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.13388366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.13386566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.13335933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.13261633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.13325566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.13402633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.13378233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.13324233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.133066 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.132102 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.132632 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.13294566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.13267333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.13263033333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.13155533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.13137833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.131386 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.130485 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.129931 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.12935066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.12840966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.12793433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.127604 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.126893 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.12601833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.12546066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.12586233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.12580433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.123744 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.122524 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.12087266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.12042433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.12015333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.118467 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.11685033333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.115867 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.11482233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.11384166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.112659 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.11114566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.109777 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.10788666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.106165 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.105206 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.103924 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.103682 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.10175466666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.10013066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.09870166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.09632366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.094612 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.09187 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.09035433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.089901 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.09131266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.089614 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.08760566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.08544433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.08405933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.08198966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.080665 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.07886 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.07715633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.07495733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.07390333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.07094266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.06878233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.067972 -"MRI-ESM1","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.155558 -"MRI-ESM1","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.15699 -"MRI-ESM1","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.155893 -"MRI-ESM1","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.156003 -"MRI-ESM1","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.157122 -"MRI-ESM1","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.156564 -"MRI-ESM1","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.155773 -"MRI-ESM1","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.156736 -"MRI-ESM1","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.156114 -"MRI-ESM1","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.156223 -"MRI-ESM1","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.155765 -"MRI-ESM1","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.155262 -"MRI-ESM1","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.154973 -"MRI-ESM1","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.154515 -"MRI-ESM1","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.155091 -"MRI-ESM1","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.154159 -"MRI-ESM1","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.154128 -"MRI-ESM1","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.154558 -"MRI-ESM1","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.155286 -"MRI-ESM1","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.1541 -"MRI-ESM1","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.154177 -"MRI-ESM1","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.153954 -"MRI-ESM1","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.153581 -"MRI-ESM1","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.153552 -"MRI-ESM1","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.15242 -"MRI-ESM1","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.153286 -"MRI-ESM1","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.152286 -"MRI-ESM1","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.152363 -"MRI-ESM1","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.152082 -"MRI-ESM1","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.151478 -"MRI-ESM1","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.150932 -"MRI-ESM1","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.150217 -"MRI-ESM1","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.150489 -"MRI-ESM1","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.151516 -"MRI-ESM1","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.149537 -"MRI-ESM1","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.148866 -"MRI-ESM1","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.14879 -"MRI-ESM1","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.148254 -"MRI-ESM1","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.147457 -"MRI-ESM1","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.148014 -"MRI-ESM1","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.147485 -"MRI-ESM1","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.146142 -"MRI-ESM1","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.147059 -"MRI-ESM1","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.147568 -"MRI-ESM1","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.146783 -"MRI-ESM1","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.145333 -"MRI-ESM1","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.145767 -"MRI-ESM1","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.146332 -"MRI-ESM1","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.145146 -"MRI-ESM1","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.145813 -"MRI-ESM1","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.144835 -"MRI-ESM1","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.144619 -"MRI-ESM1","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.145952 -"MRI-ESM1","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.145149 -"MRI-ESM1","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.14402 -"MRI-ESM1","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.143391 -"MRI-ESM1","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.142674 -"MRI-ESM1","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.143174 -"MRI-ESM1","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.141504 -"MRI-ESM1","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.141027 -"MRI-ESM1","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.140107 -"MRI-ESM1","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.140417 -"MRI-ESM1","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.14034 -"MRI-ESM1","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.139599 -"MRI-ESM1","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.137957 -"MRI-ESM1","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.138672 -"MRI-ESM1","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.139319 -"MRI-ESM1","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.137128 -"MRI-ESM1","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.136645 -"MRI-ESM1","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.137461 -"MRI-ESM1","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.136904 -"MRI-ESM1","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.136275 -"MRI-ESM1","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.135914 -"MRI-ESM1","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.136324 -"MRI-ESM1","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.135019 -"MRI-ESM1","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.133795 -"MRI-ESM1","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.135229 -"MRI-ESM1","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.134466 -"MRI-ESM1","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.133126 -"MRI-ESM1","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.133497 -"MRI-ESM1","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.132634 -"MRI-ESM1","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.131546 -"MRI-ESM1","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.130579 -"MRI-ESM1","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.131224 -"MRI-ESM1","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.130271 -"MRI-ESM1","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.129511 -"MRI-ESM1","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.12968 -"MRI-ESM1","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.129808 -"MRI-ESM1","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.128905 -"MRI-ESM1","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.129264 -"MRI-ESM1","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.129348 -"MRI-ESM1","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.127196 -"MRI-ESM1","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.128586 -"MRI-ESM1","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.129018 -"MRI-ESM1","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.128379 -"MRI-ESM1","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.128757 -"MRI-ESM1","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.129326 -"MRI-ESM1","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.127797 -"MRI-ESM1","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.1279 -"MRI-ESM1","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.127055 -"MRI-ESM1","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.127526 -"MRI-ESM1","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.127727 -"MRI-ESM1","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.127767 -"MRI-ESM1","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.127903 -"MRI-ESM1","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.126559 -"MRI-ESM1","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.126008 -"MRI-ESM1","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.124473 -"MRI-ESM1","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.124351 -"MRI-ESM1","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.124125 -"MRI-ESM1","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.123464 -"MRI-ESM1","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.122706 -"MRI-ESM1","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.122769 -"MRI-ESM1","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.120885 -"MRI-ESM1","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.119743 -"MRI-ESM1","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.1204 -"MRI-ESM1","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.119723 -"MRI-ESM1","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.118757 -"MRI-ESM1","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.116892 -"MRI-ESM1","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.115885 -"MRI-ESM1","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.11544 -"MRI-ESM1","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.114538 -"MRI-ESM1","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.113389 -"MRI-ESM1","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.11262 -"MRI-ESM1","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.110226 -"MRI-ESM1","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.109926 -"MRI-ESM1","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.1083 -"MRI-ESM1","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.106483 -"MRI-ESM1","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.105923 -"MRI-ESM1","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.102934 -"MRI-ESM1","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.102088 -"MRI-ESM1","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.100924 -"MRI-ESM1","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.099091 -"MRI-ESM1","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.098249 -"MRI-ESM1","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.096794 -"MRI-ESM1","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.095095 -"MRI-ESM1","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.093955 -"MRI-ESM1","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.092589 -"MRI-ESM1","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.091428 -"MRI-ESM1","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.08864 -"MRI-ESM1","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.086673 -"MRI-ESM1","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.085672 -"MRI-ESM1","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.085168 -"MRI-ESM1","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.08346 -"MRI-ESM1","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.082787 -"MRI-ESM1","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.080944 -"MRI-ESM1","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.078966 -"MRI-ESM1","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.077052 -"MRI-ESM1","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.075677 -"MRI-ESM1","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.073792 -"MRI-ESM1","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.072133 -"MRI-ESM1","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.071373 -"MRI-ESM1","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.068755 -"MRI-ESM1","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.066118 -"MRI-ESM1","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.065153 -"MRI-ESM1","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.064173 -"MRI-ESM1","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.15835 -"MRI-ESM1","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.158403 -"MRI-ESM1","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.158288 -"MRI-ESM1","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.157755 -"MRI-ESM1","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.159354 -"MRI-ESM1","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.157405 -"MRI-ESM1","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.159595 -"MRI-ESM1","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.160374 -"MRI-ESM1","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.160316 -"MRI-ESM1","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.15947 -"MRI-ESM1","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.15859 -"MRI-ESM1","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.156225 -"MRI-ESM1","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.156726 -"MRI-ESM1","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.15575 -"MRI-ESM1","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.155725 -"MRI-ESM1","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.15628 -"MRI-ESM1","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.155995 -"MRI-ESM1","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.154645 -"MRI-ESM1","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.154939 -"MRI-ESM1","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.155055 -"MRI-ESM1","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.156045 -"MRI-ESM1","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.155298 -"MRI-ESM1","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.154365 -"MRI-ESM1","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.154501 -"MRI-ESM1","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.153727 -"MRI-ESM1","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.15338 -"MRI-ESM1","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.154095 -"MRI-ESM1","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.153179 -"MRI-ESM1","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.153453 -"MRI-ESM1","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.153209 -"MRI-ESM1","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.152746 -"MRI-ESM1","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.153179 -"MRI-ESM1","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.152196 -"MRI-ESM1","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.152487 -"MRI-ESM1","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.151641 -"MRI-ESM1","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.150701 -"MRI-ESM1","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.150603 -"MRI-ESM1","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.149889 -"MRI-ESM1","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.150284 -"MRI-ESM1","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.149969 -"MRI-ESM1","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.148796 -"MRI-ESM1","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.148971 -"MRI-ESM1","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.148967 -"MRI-ESM1","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.14885 -"MRI-ESM1","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.149535 -"MRI-ESM1","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.148419 -"MRI-ESM1","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.146608 -"MRI-ESM1","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.147007 -"MRI-ESM1","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.146329 -"MRI-ESM1","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.145353 -"MRI-ESM1","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.145263 -"MRI-ESM1","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.144804 -"MRI-ESM1","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.145609 -"MRI-ESM1","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.143753 -"MRI-ESM1","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.14493 -"MRI-ESM1","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.145957 -"MRI-ESM1","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.144962 -"MRI-ESM1","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.143444 -"MRI-ESM1","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.142937 -"MRI-ESM1","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.141538 -"MRI-ESM1","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.140795 -"MRI-ESM1","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.139925 -"MRI-ESM1","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.13931 -"MRI-ESM1","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.138244 -"MRI-ESM1","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.137115 -"MRI-ESM1","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.137897 -"MRI-ESM1","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.137949 -"MRI-ESM1","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.137688 -"MRI-ESM1","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.137271 -"MRI-ESM1","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.137557 -"MRI-ESM1","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.137657 -"MRI-ESM1","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.136835 -"MRI-ESM1","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.135229 -"MRI-ESM1","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.135351 -"MRI-ESM1","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.134962 -"MRI-ESM1","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.133655 -"MRI-ESM1","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.133808 -"MRI-ESM1","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.133909 -"MRI-ESM1","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.133601 -"MRI-ESM1","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.132172 -"MRI-ESM1","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.131905 -"MRI-ESM1","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.131667 -"MRI-ESM1","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.130132 -"MRI-ESM1","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.130266 -"MRI-ESM1","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.129209 -"MRI-ESM1","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.128273 -"MRI-ESM1","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.126738 -"MRI-ESM1","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.127105 -"MRI-ESM1","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.126649 -"MRI-ESM1","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.127399 -"MRI-ESM1","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.126711 -"MRI-ESM1","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.126055 -"MRI-ESM1","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.125767 -"MRI-ESM1","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.125464 -"MRI-ESM1","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.12582 -"MRI-ESM1","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.126607 -"MRI-ESM1","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.12624 -"MRI-ESM1","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.126272 -"MRI-ESM1","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.125822 -"MRI-ESM1","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.125449 -"MRI-ESM1","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.125341 -"MRI-ESM1","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.125514 -"MRI-ESM1","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.125358 -"MRI-ESM1","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.124602 -"MRI-ESM1","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.125234 -"MRI-ESM1","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.123963 -"MRI-ESM1","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.124826 -"MRI-ESM1","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.124393 -"MRI-ESM1","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.123344 -"MRI-ESM1","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.121813 -"MRI-ESM1","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.121421 -"MRI-ESM1","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.121453 -"MRI-ESM1","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.119349 -"MRI-ESM1","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.11966 -"MRI-ESM1","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.117692 -"MRI-ESM1","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.116088 -"MRI-ESM1","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.115574 -"MRI-ESM1","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.114307 -"MRI-ESM1","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.113466 -"MRI-ESM1","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.110561 -"MRI-ESM1","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.11116 -"MRI-ESM1","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.108617 -"MRI-ESM1","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.108159 -"MRI-ESM1","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.105862 -"MRI-ESM1","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.105292 -"MRI-ESM1","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.103617 -"MRI-ESM1","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.102836 -"MRI-ESM1","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.10123 -"MRI-ESM1","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.099332 -"MRI-ESM1","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.097791 -"MRI-ESM1","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.096433 -"MRI-ESM1","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.094539 -"MRI-ESM1","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.094095 -"MRI-ESM1","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.092091 -"MRI-ESM1","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.09192 -"MRI-ESM1","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.090516 -"MRI-ESM1","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.088514 -"MRI-ESM1","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.086633 -"MRI-ESM1","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.084092 -"MRI-ESM1","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.080438 -"MRI-ESM1","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.079353 -"MRI-ESM1","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.078889 -"MRI-ESM1","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.077425 -"MRI-ESM1","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.075688 -"MRI-ESM1","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.074984 -"MRI-ESM1","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.072108 -"MRI-ESM1","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.071382 -"MRI-ESM1","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.069056 -"MRI-ESM1","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.067957 -"MRI-ESM1","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.064564 -"MRI-ESM1","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.063202 -"MRI-ESM1","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.060367 -"MRI-ESM1","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.058615 -"MRI-ESM1","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.056266 -"MRI-ESM1","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.054726 -"MRI-ESM1","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.155052 -"MRI-ESM1","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.156734 -"MRI-ESM1","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.155458 -"MRI-ESM1","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.155685 -"MRI-ESM1","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.156717 -"MRI-ESM1","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.156411 -"MRI-ESM1","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.15508 -"MRI-ESM1","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.156075 -"MRI-ESM1","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.155352 -"MRI-ESM1","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.155634 -"MRI-ESM1","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.155253 -"MRI-ESM1","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.155088 -"MRI-ESM1","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.154656 -"MRI-ESM1","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.154291 -"MRI-ESM1","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.154976 -"MRI-ESM1","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.153774 -"MRI-ESM1","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.153789 -"MRI-ESM1","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.154542 -"MRI-ESM1","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.155348 -"MRI-ESM1","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.153927 -"MRI-ESM1","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.153838 -"MRI-ESM1","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.15371 -"MRI-ESM1","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.153439 -"MRI-ESM1","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.15338 -"MRI-ESM1","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.152183 -"MRI-ESM1","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.153268 -"MRI-ESM1","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.151958 -"MRI-ESM1","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.152215 -"MRI-ESM1","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.151833 -"MRI-ESM1","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.151164 -"MRI-ESM1","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.150603 -"MRI-ESM1","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.149679 -"MRI-ESM1","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.150179 -"MRI-ESM1","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.151339 -"MRI-ESM1","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.149156 -"MRI-ESM1","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.148534 -"MRI-ESM1","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.148461 -"MRI-ESM1","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.147957 -"MRI-ESM1","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.146944 -"MRI-ESM1","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.147659 -"MRI-ESM1","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.147247 -"MRI-ESM1","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.145629 -"MRI-ESM1","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.146713 -"MRI-ESM1","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.147335 -"MRI-ESM1","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.146284 -"MRI-ESM1","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.144774 -"MRI-ESM1","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.145614 -"MRI-ESM1","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.14621 -"MRI-ESM1","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.144931 -"MRI-ESM1","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.145896 -"MRI-ESM1","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.144757 -"MRI-ESM1","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.144585 -"MRI-ESM1","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.146014 -"MRI-ESM1","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.145403 -"MRI-ESM1","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.143855 -"MRI-ESM1","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.142925 -"MRI-ESM1","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.142259 -"MRI-ESM1","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.143124 -"MRI-ESM1","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.141244 -"MRI-ESM1","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.140934 -"MRI-ESM1","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.139982 -"MRI-ESM1","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.140506 -"MRI-ESM1","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.140526 -"MRI-ESM1","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.139845 -"MRI-ESM1","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.13811 -"MRI-ESM1","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.138812 -"MRI-ESM1","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.139567 -"MRI-ESM1","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.137026 -"MRI-ESM1","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.136531 -"MRI-ESM1","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.137444 -"MRI-ESM1","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.136768 -"MRI-ESM1","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.136173 -"MRI-ESM1","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.136038 -"MRI-ESM1","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.136501 -"MRI-ESM1","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.135029 -"MRI-ESM1","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.133821 -"MRI-ESM1","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.135487 -"MRI-ESM1","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.134567 -"MRI-ESM1","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.13304 -"MRI-ESM1","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.133738 -"MRI-ESM1","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.132766 -"MRI-ESM1","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.131524 -"MRI-ESM1","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.13066 -"MRI-ESM1","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.131398 -"MRI-ESM1","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.130463 -"MRI-ESM1","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.129735 -"MRI-ESM1","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.130214 -"MRI-ESM1","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.130299 -"MRI-ESM1","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.129314 -"MRI-ESM1","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.129603 -"MRI-ESM1","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.129827 -"MRI-ESM1","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.127402 -"MRI-ESM1","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.129098 -"MRI-ESM1","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.129662 -"MRI-ESM1","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.128844 -"MRI-ESM1","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.129147 -"MRI-ESM1","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.129885 -"MRI-ESM1","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.128074 -"MRI-ESM1","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.128277 -"MRI-ESM1","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.127346 -"MRI-ESM1","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.127922 -"MRI-ESM1","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.128128 -"MRI-ESM1","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.128204 -"MRI-ESM1","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.128502 -"MRI-ESM1","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.126799 -"MRI-ESM1","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.126378 -"MRI-ESM1","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.124409 -"MRI-ESM1","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.124344 -"MRI-ESM1","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.124266 -"MRI-ESM1","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.123764 -"MRI-ESM1","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.122939 -"MRI-ESM1","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.123008 -"MRI-ESM1","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.121163 -"MRI-ESM1","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.119758 -"MRI-ESM1","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.120891 -"MRI-ESM1","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.120383 -"MRI-ESM1","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.119335 -"MRI-ESM1","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.117361 -"MRI-ESM1","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.116324 -"MRI-ESM1","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.116325 -"MRI-ESM1","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.115151 -"MRI-ESM1","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.114254 -"MRI-ESM1","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.11343 -"MRI-ESM1","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.111018 -"MRI-ESM1","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.110767 -"MRI-ESM1","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.10915 -"MRI-ESM1","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.107144 -"MRI-ESM1","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.106774 -"MRI-ESM1","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.103587 -"MRI-ESM1","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.102868 -"MRI-ESM1","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.101738 -"MRI-ESM1","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.099917 -"MRI-ESM1","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.099002 -"MRI-ESM1","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.097646 -"MRI-ESM1","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.095671 -"MRI-ESM1","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.094579 -"MRI-ESM1","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.093328 -"MRI-ESM1","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.092297 -"MRI-ESM1","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.089465 -"MRI-ESM1","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.087804 -"MRI-ESM1","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.086818 -"MRI-ESM1","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.086307 -"MRI-ESM1","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.084555 -"MRI-ESM1","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.084075 -"MRI-ESM1","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.082025 -"MRI-ESM1","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.08021 -"MRI-ESM1","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.078081 -"MRI-ESM1","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.076878 -"MRI-ESM1","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.07485 -"MRI-ESM1","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.073505 -"MRI-ESM1","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.072855 -"MRI-ESM1","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.070277 -"MRI-ESM1","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.067478 -"MRI-ESM1","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.066765 -"MRI-ESM1","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.065887 -"NorESM1-ME","ph","ocean","ph","historical",1850,"Simulated",1,"global",8.165641 -"NorESM1-ME","ph","ocean","ph","historical",1851,"Simulated",1,"global",8.165601 -"NorESM1-ME","ph","ocean","ph","historical",1852,"Simulated",1,"global",8.166049 -"NorESM1-ME","ph","ocean","ph","historical",1853,"Simulated",1,"global",8.166017 -"NorESM1-ME","ph","ocean","ph","historical",1854,"Simulated",1,"global",8.164898 -"NorESM1-ME","ph","ocean","ph","historical",1855,"Simulated",1,"global",8.16474 -"NorESM1-ME","ph","ocean","ph","historical",1856,"Simulated",1,"global",8.165075 -"NorESM1-ME","ph","ocean","ph","historical",1857,"Simulated",1,"global",8.164938 -"NorESM1-ME","ph","ocean","ph","historical",1858,"Simulated",1,"global",8.164779 -"NorESM1-ME","ph","ocean","ph","historical",1859,"Simulated",1,"global",8.164353 -"NorESM1-ME","ph","ocean","ph","historical",1860,"Simulated",1,"global",8.164183 -"NorESM1-ME","ph","ocean","ph","historical",1861,"Simulated",1,"global",8.164391 -"NorESM1-ME","ph","ocean","ph","historical",1862,"Simulated",1,"global",8.16471 -"NorESM1-ME","ph","ocean","ph","historical",1863,"Simulated",1,"global",8.163849 -"NorESM1-ME","ph","ocean","ph","historical",1864,"Simulated",1,"global",8.163745 -"NorESM1-ME","ph","ocean","ph","historical",1865,"Simulated",1,"global",8.16372 -"NorESM1-ME","ph","ocean","ph","historical",1866,"Simulated",1,"global",8.16407 -"NorESM1-ME","ph","ocean","ph","historical",1867,"Simulated",1,"global",8.163156 -"NorESM1-ME","ph","ocean","ph","historical",1868,"Simulated",1,"global",8.163342 -"NorESM1-ME","ph","ocean","ph","historical",1869,"Simulated",1,"global",8.163127 -"NorESM1-ME","ph","ocean","ph","historical",1870,"Simulated",1,"global",8.162769 -"NorESM1-ME","ph","ocean","ph","historical",1871,"Simulated",1,"global",8.162747 -"NorESM1-ME","ph","ocean","ph","historical",1872,"Simulated",1,"global",8.163021 -"NorESM1-ME","ph","ocean","ph","historical",1873,"Simulated",1,"global",8.163077 -"NorESM1-ME","ph","ocean","ph","historical",1874,"Simulated",1,"global",8.162424 -"NorESM1-ME","ph","ocean","ph","historical",1875,"Simulated",1,"global",8.162093 -"NorESM1-ME","ph","ocean","ph","historical",1876,"Simulated",1,"global",8.161319 -"NorESM1-ME","ph","ocean","ph","historical",1877,"Simulated",1,"global",8.160774 -"NorESM1-ME","ph","ocean","ph","historical",1878,"Simulated",1,"global",8.160635 -"NorESM1-ME","ph","ocean","ph","historical",1879,"Simulated",1,"global",8.160296 -"NorESM1-ME","ph","ocean","ph","historical",1880,"Simulated",1,"global",8.159691 -"NorESM1-ME","ph","ocean","ph","historical",1881,"Simulated",1,"global",8.159025 -"NorESM1-ME","ph","ocean","ph","historical",1882,"Simulated",1,"global",8.158497 -"NorESM1-ME","ph","ocean","ph","historical",1883,"Simulated",1,"global",8.1585 -"NorESM1-ME","ph","ocean","ph","historical",1884,"Simulated",1,"global",8.159991 -"NorESM1-ME","ph","ocean","ph","historical",1885,"Simulated",1,"global",8.159212 -"NorESM1-ME","ph","ocean","ph","historical",1886,"Simulated",1,"global",8.157469 -"NorESM1-ME","ph","ocean","ph","historical",1887,"Simulated",1,"global",8.157044 -"NorESM1-ME","ph","ocean","ph","historical",1888,"Simulated",1,"global",8.156528 -"NorESM1-ME","ph","ocean","ph","historical",1889,"Simulated",1,"global",8.155683 -"NorESM1-ME","ph","ocean","ph","historical",1890,"Simulated",1,"global",8.155774 -"NorESM1-ME","ph","ocean","ph","historical",1891,"Simulated",1,"global",8.155949 -"NorESM1-ME","ph","ocean","ph","historical",1892,"Simulated",1,"global",8.155311 -"NorESM1-ME","ph","ocean","ph","historical",1893,"Simulated",1,"global",8.155046 -"NorESM1-ME","ph","ocean","ph","historical",1894,"Simulated",1,"global",8.154981 -"NorESM1-ME","ph","ocean","ph","historical",1895,"Simulated",1,"global",8.154665 -"NorESM1-ME","ph","ocean","ph","historical",1896,"Simulated",1,"global",8.155114 -"NorESM1-ME","ph","ocean","ph","historical",1897,"Simulated",1,"global",8.15428 -"NorESM1-ME","ph","ocean","ph","historical",1898,"Simulated",1,"global",8.154056 -"NorESM1-ME","ph","ocean","ph","historical",1899,"Simulated",1,"global",8.153824 -"NorESM1-ME","ph","ocean","ph","historical",1900,"Simulated",1,"global",8.154087 -"NorESM1-ME","ph","ocean","ph","historical",1901,"Simulated",1,"global",8.153715 -"NorESM1-ME","ph","ocean","ph","historical",1902,"Simulated",1,"global",8.152812 -"NorESM1-ME","ph","ocean","ph","historical",1903,"Simulated",1,"global",8.153843 -"NorESM1-ME","ph","ocean","ph","historical",1904,"Simulated",1,"global",8.153796 -"NorESM1-ME","ph","ocean","ph","historical",1905,"Simulated",1,"global",8.152509 -"NorESM1-ME","ph","ocean","ph","historical",1906,"Simulated",1,"global",8.151462 -"NorESM1-ME","ph","ocean","ph","historical",1907,"Simulated",1,"global",8.150569 -"NorESM1-ME","ph","ocean","ph","historical",1908,"Simulated",1,"global",8.150519 -"NorESM1-ME","ph","ocean","ph","historical",1909,"Simulated",1,"global",8.150567 -"NorESM1-ME","ph","ocean","ph","historical",1910,"Simulated",1,"global",8.149397 -"NorESM1-ME","ph","ocean","ph","historical",1911,"Simulated",1,"global",8.149295 -"NorESM1-ME","ph","ocean","ph","historical",1912,"Simulated",1,"global",8.148925 -"NorESM1-ME","ph","ocean","ph","historical",1913,"Simulated",1,"global",8.148509 -"NorESM1-ME","ph","ocean","ph","historical",1914,"Simulated",1,"global",8.148057 -"NorESM1-ME","ph","ocean","ph","historical",1915,"Simulated",1,"global",8.147979 -"NorESM1-ME","ph","ocean","ph","historical",1916,"Simulated",1,"global",8.147597 -"NorESM1-ME","ph","ocean","ph","historical",1917,"Simulated",1,"global",8.146636 -"NorESM1-ME","ph","ocean","ph","historical",1918,"Simulated",1,"global",8.14556 -"NorESM1-ME","ph","ocean","ph","historical",1919,"Simulated",1,"global",8.145903 -"NorESM1-ME","ph","ocean","ph","historical",1920,"Simulated",1,"global",8.145702 -"NorESM1-ME","ph","ocean","ph","historical",1921,"Simulated",1,"global",8.145681 -"NorESM1-ME","ph","ocean","ph","historical",1922,"Simulated",1,"global",8.145633 -"NorESM1-ME","ph","ocean","ph","historical",1923,"Simulated",1,"global",8.144184 -"NorESM1-ME","ph","ocean","ph","historical",1924,"Simulated",1,"global",8.143614 -"NorESM1-ME","ph","ocean","ph","historical",1925,"Simulated",1,"global",8.142988 -"NorESM1-ME","ph","ocean","ph","historical",1926,"Simulated",1,"global",8.1429 -"NorESM1-ME","ph","ocean","ph","historical",1927,"Simulated",1,"global",8.142643 -"NorESM1-ME","ph","ocean","ph","historical",1928,"Simulated",1,"global",8.142783 -"NorESM1-ME","ph","ocean","ph","historical",1929,"Simulated",1,"global",8.142433 -"NorESM1-ME","ph","ocean","ph","historical",1930,"Simulated",1,"global",8.141267 -"NorESM1-ME","ph","ocean","ph","historical",1931,"Simulated",1,"global",8.140623 -"NorESM1-ME","ph","ocean","ph","historical",1932,"Simulated",1,"global",8.140027 -"NorESM1-ME","ph","ocean","ph","historical",1933,"Simulated",1,"global",8.140009 -"NorESM1-ME","ph","ocean","ph","historical",1934,"Simulated",1,"global",8.139525 -"NorESM1-ME","ph","ocean","ph","historical",1935,"Simulated",1,"global",8.138643 -"NorESM1-ME","ph","ocean","ph","historical",1936,"Simulated",1,"global",8.13876 -"NorESM1-ME","ph","ocean","ph","historical",1937,"Simulated",1,"global",8.137819 -"NorESM1-ME","ph","ocean","ph","historical",1938,"Simulated",1,"global",8.137528 -"NorESM1-ME","ph","ocean","ph","historical",1939,"Simulated",1,"global",8.137385 -"NorESM1-ME","ph","ocean","ph","historical",1940,"Simulated",1,"global",8.137649 -"NorESM1-ME","ph","ocean","ph","historical",1941,"Simulated",1,"global",8.138213 -"NorESM1-ME","ph","ocean","ph","historical",1942,"Simulated",1,"global",8.137822 -"NorESM1-ME","ph","ocean","ph","historical",1943,"Simulated",1,"global",8.137028 -"NorESM1-ME","ph","ocean","ph","historical",1944,"Simulated",1,"global",8.136879 -"NorESM1-ME","ph","ocean","ph","historical",1945,"Simulated",1,"global",8.136732 -"NorESM1-ME","ph","ocean","ph","historical",1946,"Simulated",1,"global",8.136677 -"NorESM1-ME","ph","ocean","ph","historical",1947,"Simulated",1,"global",8.137268 -"NorESM1-ME","ph","ocean","ph","historical",1948,"Simulated",1,"global",8.136858 -"NorESM1-ME","ph","ocean","ph","historical",1949,"Simulated",1,"global",8.136911 -"NorESM1-ME","ph","ocean","ph","historical",1950,"Simulated",1,"global",8.136354 -"NorESM1-ME","ph","ocean","ph","historical",1951,"Simulated",1,"global",8.136164 -"NorESM1-ME","ph","ocean","ph","historical",1952,"Simulated",1,"global",8.135676 -"NorESM1-ME","ph","ocean","ph","historical",1953,"Simulated",1,"global",8.135749 -"NorESM1-ME","ph","ocean","ph","historical",1954,"Simulated",1,"global",8.135417 -"NorESM1-ME","ph","ocean","ph","historical",1955,"Simulated",1,"global",8.134637 -"NorESM1-ME","ph","ocean","ph","historical",1956,"Simulated",1,"global",8.134255 -"NorESM1-ME","ph","ocean","ph","historical",1957,"Simulated",1,"global",8.133287 -"NorESM1-ME","ph","ocean","ph","historical",1958,"Simulated",1,"global",8.132209 -"NorESM1-ME","ph","ocean","ph","historical",1959,"Simulated",1,"global",8.13222 -"NorESM1-ME","ph","ocean","ph","historical",1960,"Simulated",1,"global",8.131132 -"NorESM1-ME","ph","ocean","ph","historical",1961,"Simulated",1,"global",8.130379 -"NorESM1-ME","ph","ocean","ph","historical",1962,"Simulated",1,"global",8.130144 -"NorESM1-ME","ph","ocean","ph","historical",1963,"Simulated",1,"global",8.129632 -"NorESM1-ME","ph","ocean","ph","historical",1964,"Simulated",1,"global",8.128804 -"NorESM1-ME","ph","ocean","ph","historical",1965,"Simulated",1,"global",8.127664 -"NorESM1-ME","ph","ocean","ph","historical",1966,"Simulated",1,"global",8.126703 -"NorESM1-ME","ph","ocean","ph","historical",1967,"Simulated",1,"global",8.125997 -"NorESM1-ME","ph","ocean","ph","historical",1968,"Simulated",1,"global",8.125507 -"NorESM1-ME","ph","ocean","ph","historical",1969,"Simulated",1,"global",8.124343 -"NorESM1-ME","ph","ocean","ph","historical",1970,"Simulated",1,"global",8.122831 -"NorESM1-ME","ph","ocean","ph","historical",1971,"Simulated",1,"global",8.121701 -"NorESM1-ME","ph","ocean","ph","historical",1972,"Simulated",1,"global",8.120602 -"NorESM1-ME","ph","ocean","ph","historical",1973,"Simulated",1,"global",8.119228 -"NorESM1-ME","ph","ocean","ph","historical",1974,"Simulated",1,"global",8.118728 -"NorESM1-ME","ph","ocean","ph","historical",1975,"Simulated",1,"global",8.117757 -"NorESM1-ME","ph","ocean","ph","historical",1976,"Simulated",1,"global",8.116199 -"NorESM1-ME","ph","ocean","ph","historical",1977,"Simulated",1,"global",8.115087 -"NorESM1-ME","ph","ocean","ph","historical",1978,"Simulated",1,"global",8.114117 -"NorESM1-ME","ph","ocean","ph","historical",1979,"Simulated",1,"global",8.112034 -"NorESM1-ME","ph","ocean","ph","historical",1980,"Simulated",1,"global",8.110673 -"NorESM1-ME","ph","ocean","ph","historical",1981,"Simulated",1,"global",8.109282 -"NorESM1-ME","ph","ocean","ph","historical",1982,"Simulated",1,"global",8.107113 -"NorESM1-ME","ph","ocean","ph","historical",1983,"Simulated",1,"global",8.1071 -"NorESM1-ME","ph","ocean","ph","historical",1984,"Simulated",1,"global",8.104455 -"NorESM1-ME","ph","ocean","ph","historical",1985,"Simulated",1,"global",8.103058 -"NorESM1-ME","ph","ocean","ph","historical",1986,"Simulated",1,"global",8.102129 -"NorESM1-ME","ph","ocean","ph","historical",1987,"Simulated",1,"global",8.10009 -"NorESM1-ME","ph","ocean","ph","historical",1988,"Simulated",1,"global",8.09729 -"NorESM1-ME","ph","ocean","ph","historical",1989,"Simulated",1,"global",8.096134 -"NorESM1-ME","ph","ocean","ph","historical",1990,"Simulated",1,"global",8.094393 -"NorESM1-ME","ph","ocean","ph","historical",1991,"Simulated",1,"global",8.094284 -"NorESM1-ME","ph","ocean","ph","historical",1992,"Simulated",1,"global",8.094472 -"NorESM1-ME","ph","ocean","ph","historical",1993,"Simulated",1,"global",8.092027 -"NorESM1-ME","ph","ocean","ph","historical",1994,"Simulated",1,"global",8.090362 -"NorESM1-ME","ph","ocean","ph","historical",1995,"Simulated",1,"global",8.088708 -"NorESM1-ME","ph","ocean","ph","historical",1996,"Simulated",1,"global",8.087247 -"NorESM1-ME","ph","ocean","ph","historical",1997,"Simulated",1,"global",8.085527 -"NorESM1-ME","ph","ocean","ph","historical",1998,"Simulated",1,"global",8.083794 -"NorESM1-ME","ph","ocean","ph","historical",1999,"Simulated",1,"global",8.081532 -"NorESM1-ME","ph","ocean","ph","historical",2000,"Simulated",1,"global",8.080254 -"NorESM1-ME","ph","ocean","ph","historical",2001,"Simulated",1,"global",8.078831 -"NorESM1-ME","ph","ocean","ph","historical",2002,"Simulated",1,"global",8.076707 -"NorESM1-ME","ph","ocean","ph","historical",2003,"Simulated",1,"global",8.074465 -"NorESM1-ME","ph","ocean","ph","historical",2004,"Simulated",1,"global",8.071626 -"NorESM1-ME","ph","ocean","ph","historical",2005,"Simulated",1,"global",8.069625 -"NorESM1-ME","ph","ocean","ph_HL","historical",1850,"Simulated",1,"HL",8.173288 -"NorESM1-ME","ph","ocean","ph_HL","historical",1851,"Simulated",1,"HL",8.174505 -"NorESM1-ME","ph","ocean","ph_HL","historical",1852,"Simulated",1,"HL",8.174053 -"NorESM1-ME","ph","ocean","ph_HL","historical",1853,"Simulated",1,"HL",8.17436 -"NorESM1-ME","ph","ocean","ph_HL","historical",1854,"Simulated",1,"HL",8.172091 -"NorESM1-ME","ph","ocean","ph_HL","historical",1855,"Simulated",1,"HL",8.172714 -"NorESM1-ME","ph","ocean","ph_HL","historical",1856,"Simulated",1,"HL",8.169541 -"NorESM1-ME","ph","ocean","ph_HL","historical",1857,"Simulated",1,"HL",8.171175 -"NorESM1-ME","ph","ocean","ph_HL","historical",1858,"Simulated",1,"HL",8.173397 -"NorESM1-ME","ph","ocean","ph_HL","historical",1859,"Simulated",1,"HL",8.173628 -"NorESM1-ME","ph","ocean","ph_HL","historical",1860,"Simulated",1,"HL",8.170955 -"NorESM1-ME","ph","ocean","ph_HL","historical",1861,"Simulated",1,"HL",8.169792 -"NorESM1-ME","ph","ocean","ph_HL","historical",1862,"Simulated",1,"HL",8.17373 -"NorESM1-ME","ph","ocean","ph_HL","historical",1863,"Simulated",1,"HL",8.170205 -"NorESM1-ME","ph","ocean","ph_HL","historical",1864,"Simulated",1,"HL",8.171276 -"NorESM1-ME","ph","ocean","ph_HL","historical",1865,"Simulated",1,"HL",8.168323 -"NorESM1-ME","ph","ocean","ph_HL","historical",1866,"Simulated",1,"HL",8.17156 -"NorESM1-ME","ph","ocean","ph_HL","historical",1867,"Simulated",1,"HL",8.170317 -"NorESM1-ME","ph","ocean","ph_HL","historical",1868,"Simulated",1,"HL",8.170914 -"NorESM1-ME","ph","ocean","ph_HL","historical",1869,"Simulated",1,"HL",8.170589 -"NorESM1-ME","ph","ocean","ph_HL","historical",1870,"Simulated",1,"HL",8.169722 -"NorESM1-ME","ph","ocean","ph_HL","historical",1871,"Simulated",1,"HL",8.169752 -"NorESM1-ME","ph","ocean","ph_HL","historical",1872,"Simulated",1,"HL",8.169901 -"NorESM1-ME","ph","ocean","ph_HL","historical",1873,"Simulated",1,"HL",8.168947 -"NorESM1-ME","ph","ocean","ph_HL","historical",1874,"Simulated",1,"HL",8.170385 -"NorESM1-ME","ph","ocean","ph_HL","historical",1875,"Simulated",1,"HL",8.171128 -"NorESM1-ME","ph","ocean","ph_HL","historical",1876,"Simulated",1,"HL",8.167396 -"NorESM1-ME","ph","ocean","ph_HL","historical",1877,"Simulated",1,"HL",8.166999 -"NorESM1-ME","ph","ocean","ph_HL","historical",1878,"Simulated",1,"HL",8.168053 -"NorESM1-ME","ph","ocean","ph_HL","historical",1879,"Simulated",1,"HL",8.166382 -"NorESM1-ME","ph","ocean","ph_HL","historical",1880,"Simulated",1,"HL",8.165733 -"NorESM1-ME","ph","ocean","ph_HL","historical",1881,"Simulated",1,"HL",8.164378 -"NorESM1-ME","ph","ocean","ph_HL","historical",1882,"Simulated",1,"HL",8.16555 -"NorESM1-ME","ph","ocean","ph_HL","historical",1883,"Simulated",1,"HL",8.164213 -"NorESM1-ME","ph","ocean","ph_HL","historical",1884,"Simulated",1,"HL",8.164553 -"NorESM1-ME","ph","ocean","ph_HL","historical",1885,"Simulated",1,"HL",8.166223 -"NorESM1-ME","ph","ocean","ph_HL","historical",1886,"Simulated",1,"HL",8.163682 -"NorESM1-ME","ph","ocean","ph_HL","historical",1887,"Simulated",1,"HL",8.163977 -"NorESM1-ME","ph","ocean","ph_HL","historical",1888,"Simulated",1,"HL",8.161651 -"NorESM1-ME","ph","ocean","ph_HL","historical",1889,"Simulated",1,"HL",8.162608 -"NorESM1-ME","ph","ocean","ph_HL","historical",1890,"Simulated",1,"HL",8.161668 -"NorESM1-ME","ph","ocean","ph_HL","historical",1891,"Simulated",1,"HL",8.164055 -"NorESM1-ME","ph","ocean","ph_HL","historical",1892,"Simulated",1,"HL",8.163211 -"NorESM1-ME","ph","ocean","ph_HL","historical",1893,"Simulated",1,"HL",8.160874 -"NorESM1-ME","ph","ocean","ph_HL","historical",1894,"Simulated",1,"HL",8.161106 -"NorESM1-ME","ph","ocean","ph_HL","historical",1895,"Simulated",1,"HL",8.1611 -"NorESM1-ME","ph","ocean","ph_HL","historical",1896,"Simulated",1,"HL",8.165419 -"NorESM1-ME","ph","ocean","ph_HL","historical",1897,"Simulated",1,"HL",8.160994 -"NorESM1-ME","ph","ocean","ph_HL","historical",1898,"Simulated",1,"HL",8.159405 -"NorESM1-ME","ph","ocean","ph_HL","historical",1899,"Simulated",1,"HL",8.159809 -"NorESM1-ME","ph","ocean","ph_HL","historical",1900,"Simulated",1,"HL",8.162724 -"NorESM1-ME","ph","ocean","ph_HL","historical",1901,"Simulated",1,"HL",8.162618 -"NorESM1-ME","ph","ocean","ph_HL","historical",1902,"Simulated",1,"HL",8.159722 -"NorESM1-ME","ph","ocean","ph_HL","historical",1903,"Simulated",1,"HL",8.161975 -"NorESM1-ME","ph","ocean","ph_HL","historical",1904,"Simulated",1,"HL",8.16193 -"NorESM1-ME","ph","ocean","ph_HL","historical",1905,"Simulated",1,"HL",8.159192 -"NorESM1-ME","ph","ocean","ph_HL","historical",1906,"Simulated",1,"HL",8.159235 -"NorESM1-ME","ph","ocean","ph_HL","historical",1907,"Simulated",1,"HL",8.15823 -"NorESM1-ME","ph","ocean","ph_HL","historical",1908,"Simulated",1,"HL",8.158944 -"NorESM1-ME","ph","ocean","ph_HL","historical",1909,"Simulated",1,"HL",8.156964 -"NorESM1-ME","ph","ocean","ph_HL","historical",1910,"Simulated",1,"HL",8.156673 -"NorESM1-ME","ph","ocean","ph_HL","historical",1911,"Simulated",1,"HL",8.155898 -"NorESM1-ME","ph","ocean","ph_HL","historical",1912,"Simulated",1,"HL",8.157446 -"NorESM1-ME","ph","ocean","ph_HL","historical",1913,"Simulated",1,"HL",8.156302 -"NorESM1-ME","ph","ocean","ph_HL","historical",1914,"Simulated",1,"HL",8.15658 -"NorESM1-ME","ph","ocean","ph_HL","historical",1915,"Simulated",1,"HL",8.158361 -"NorESM1-ME","ph","ocean","ph_HL","historical",1916,"Simulated",1,"HL",8.15548 -"NorESM1-ME","ph","ocean","ph_HL","historical",1917,"Simulated",1,"HL",8.152885 -"NorESM1-ME","ph","ocean","ph_HL","historical",1918,"Simulated",1,"HL",8.152256 -"NorESM1-ME","ph","ocean","ph_HL","historical",1919,"Simulated",1,"HL",8.152502 -"NorESM1-ME","ph","ocean","ph_HL","historical",1920,"Simulated",1,"HL",8.151422 -"NorESM1-ME","ph","ocean","ph_HL","historical",1921,"Simulated",1,"HL",8.152751 -"NorESM1-ME","ph","ocean","ph_HL","historical",1922,"Simulated",1,"HL",8.153322 -"NorESM1-ME","ph","ocean","ph_HL","historical",1923,"Simulated",1,"HL",8.149392 -"NorESM1-ME","ph","ocean","ph_HL","historical",1924,"Simulated",1,"HL",8.150057 -"NorESM1-ME","ph","ocean","ph_HL","historical",1925,"Simulated",1,"HL",8.150538 -"NorESM1-ME","ph","ocean","ph_HL","historical",1926,"Simulated",1,"HL",8.148648 -"NorESM1-ME","ph","ocean","ph_HL","historical",1927,"Simulated",1,"HL",8.148553 -"NorESM1-ME","ph","ocean","ph_HL","historical",1928,"Simulated",1,"HL",8.149364 -"NorESM1-ME","ph","ocean","ph_HL","historical",1929,"Simulated",1,"HL",8.148851 -"NorESM1-ME","ph","ocean","ph_HL","historical",1930,"Simulated",1,"HL",8.147757 -"NorESM1-ME","ph","ocean","ph_HL","historical",1931,"Simulated",1,"HL",8.147749 -"NorESM1-ME","ph","ocean","ph_HL","historical",1932,"Simulated",1,"HL",8.147514 -"NorESM1-ME","ph","ocean","ph_HL","historical",1933,"Simulated",1,"HL",8.144336 -"NorESM1-ME","ph","ocean","ph_HL","historical",1934,"Simulated",1,"HL",8.14436 -"NorESM1-ME","ph","ocean","ph_HL","historical",1935,"Simulated",1,"HL",8.144561 -"NorESM1-ME","ph","ocean","ph_HL","historical",1936,"Simulated",1,"HL",8.144696 -"NorESM1-ME","ph","ocean","ph_HL","historical",1937,"Simulated",1,"HL",8.14393 -"NorESM1-ME","ph","ocean","ph_HL","historical",1938,"Simulated",1,"HL",8.144227 -"NorESM1-ME","ph","ocean","ph_HL","historical",1939,"Simulated",1,"HL",8.143024 -"NorESM1-ME","ph","ocean","ph_HL","historical",1940,"Simulated",1,"HL",8.142182 -"NorESM1-ME","ph","ocean","ph_HL","historical",1941,"Simulated",1,"HL",8.143288 -"NorESM1-ME","ph","ocean","ph_HL","historical",1942,"Simulated",1,"HL",8.145769 -"NorESM1-ME","ph","ocean","ph_HL","historical",1943,"Simulated",1,"HL",8.143315 -"NorESM1-ME","ph","ocean","ph_HL","historical",1944,"Simulated",1,"HL",8.14363 -"NorESM1-ME","ph","ocean","ph_HL","historical",1945,"Simulated",1,"HL",8.143678 -"NorESM1-ME","ph","ocean","ph_HL","historical",1946,"Simulated",1,"HL",8.143996 -"NorESM1-ME","ph","ocean","ph_HL","historical",1947,"Simulated",1,"HL",8.143069 -"NorESM1-ME","ph","ocean","ph_HL","historical",1948,"Simulated",1,"HL",8.140485 -"NorESM1-ME","ph","ocean","ph_HL","historical",1949,"Simulated",1,"HL",8.143174 -"NorESM1-ME","ph","ocean","ph_HL","historical",1950,"Simulated",1,"HL",8.142609 -"NorESM1-ME","ph","ocean","ph_HL","historical",1951,"Simulated",1,"HL",8.142039 -"NorESM1-ME","ph","ocean","ph_HL","historical",1952,"Simulated",1,"HL",8.139976 -"NorESM1-ME","ph","ocean","ph_HL","historical",1953,"Simulated",1,"HL",8.14123 -"NorESM1-ME","ph","ocean","ph_HL","historical",1954,"Simulated",1,"HL",8.141275 -"NorESM1-ME","ph","ocean","ph_HL","historical",1955,"Simulated",1,"HL",8.141599 -"NorESM1-ME","ph","ocean","ph_HL","historical",1956,"Simulated",1,"HL",8.139699 -"NorESM1-ME","ph","ocean","ph_HL","historical",1957,"Simulated",1,"HL",8.138599 -"NorESM1-ME","ph","ocean","ph_HL","historical",1958,"Simulated",1,"HL",8.138137 -"NorESM1-ME","ph","ocean","ph_HL","historical",1959,"Simulated",1,"HL",8.138857 -"NorESM1-ME","ph","ocean","ph_HL","historical",1960,"Simulated",1,"HL",8.137402 -"NorESM1-ME","ph","ocean","ph_HL","historical",1961,"Simulated",1,"HL",8.134997 -"NorESM1-ME","ph","ocean","ph_HL","historical",1962,"Simulated",1,"HL",8.134357 -"NorESM1-ME","ph","ocean","ph_HL","historical",1963,"Simulated",1,"HL",8.13241 -"NorESM1-ME","ph","ocean","ph_HL","historical",1964,"Simulated",1,"HL",8.131363 -"NorESM1-ME","ph","ocean","ph_HL","historical",1965,"Simulated",1,"HL",8.132095 -"NorESM1-ME","ph","ocean","ph_HL","historical",1966,"Simulated",1,"HL",8.129538 -"NorESM1-ME","ph","ocean","ph_HL","historical",1967,"Simulated",1,"HL",8.129378 -"NorESM1-ME","ph","ocean","ph_HL","historical",1968,"Simulated",1,"HL",8.130057 -"NorESM1-ME","ph","ocean","ph_HL","historical",1969,"Simulated",1,"HL",8.127553 -"NorESM1-ME","ph","ocean","ph_HL","historical",1970,"Simulated",1,"HL",8.127823 -"NorESM1-ME","ph","ocean","ph_HL","historical",1971,"Simulated",1,"HL",8.128996 -"NorESM1-ME","ph","ocean","ph_HL","historical",1972,"Simulated",1,"HL",8.12799 -"NorESM1-ME","ph","ocean","ph_HL","historical",1973,"Simulated",1,"HL",8.124864 -"NorESM1-ME","ph","ocean","ph_HL","historical",1974,"Simulated",1,"HL",8.124252 -"NorESM1-ME","ph","ocean","ph_HL","historical",1975,"Simulated",1,"HL",8.121413 -"NorESM1-ME","ph","ocean","ph_HL","historical",1976,"Simulated",1,"HL",8.119528 -"NorESM1-ME","ph","ocean","ph_HL","historical",1977,"Simulated",1,"HL",8.119546 -"NorESM1-ME","ph","ocean","ph_HL","historical",1978,"Simulated",1,"HL",8.121646 -"NorESM1-ME","ph","ocean","ph_HL","historical",1979,"Simulated",1,"HL",8.118181 -"NorESM1-ME","ph","ocean","ph_HL","historical",1980,"Simulated",1,"HL",8.117499 -"NorESM1-ME","ph","ocean","ph_HL","historical",1981,"Simulated",1,"HL",8.11642 -"NorESM1-ME","ph","ocean","ph_HL","historical",1982,"Simulated",1,"HL",8.111583 -"NorESM1-ME","ph","ocean","ph_HL","historical",1983,"Simulated",1,"HL",8.110901 -"NorESM1-ME","ph","ocean","ph_HL","historical",1984,"Simulated",1,"HL",8.106968 -"NorESM1-ME","ph","ocean","ph_HL","historical",1985,"Simulated",1,"HL",8.106789 -"NorESM1-ME","ph","ocean","ph_HL","historical",1986,"Simulated",1,"HL",8.106027 -"NorESM1-ME","ph","ocean","ph_HL","historical",1987,"Simulated",1,"HL",8.106964 -"NorESM1-ME","ph","ocean","ph_HL","historical",1988,"Simulated",1,"HL",8.101933 -"NorESM1-ME","ph","ocean","ph_HL","historical",1989,"Simulated",1,"HL",8.100563 -"NorESM1-ME","ph","ocean","ph_HL","historical",1990,"Simulated",1,"HL",8.097286 -"NorESM1-ME","ph","ocean","ph_HL","historical",1991,"Simulated",1,"HL",8.098348 -"NorESM1-ME","ph","ocean","ph_HL","historical",1992,"Simulated",1,"HL",8.09632 -"NorESM1-ME","ph","ocean","ph_HL","historical",1993,"Simulated",1,"HL",8.094326 -"NorESM1-ME","ph","ocean","ph_HL","historical",1994,"Simulated",1,"HL",8.094102 -"NorESM1-ME","ph","ocean","ph_HL","historical",1995,"Simulated",1,"HL",8.092659 -"NorESM1-ME","ph","ocean","ph_HL","historical",1996,"Simulated",1,"HL",8.091891 -"NorESM1-ME","ph","ocean","ph_HL","historical",1997,"Simulated",1,"HL",8.08793 -"NorESM1-ME","ph","ocean","ph_HL","historical",1998,"Simulated",1,"HL",8.086908 -"NorESM1-ME","ph","ocean","ph_HL","historical",1999,"Simulated",1,"HL",8.085335 -"NorESM1-ME","ph","ocean","ph_HL","historical",2000,"Simulated",1,"HL",8.084056 -"NorESM1-ME","ph","ocean","ph_HL","historical",2001,"Simulated",1,"HL",8.081909 -"NorESM1-ME","ph","ocean","ph_HL","historical",2002,"Simulated",1,"HL",8.079632 -"NorESM1-ME","ph","ocean","ph_HL","historical",2003,"Simulated",1,"HL",8.078328 -"NorESM1-ME","ph","ocean","ph_HL","historical",2004,"Simulated",1,"HL",8.073769 -"NorESM1-ME","ph","ocean","ph_HL","historical",2005,"Simulated",1,"HL",8.071985 -"NorESM1-ME","ph","ocean","ph_LL","historical",1850,"Simulated",1,"LL",8.164298 -"NorESM1-ME","ph","ocean","ph_LL","historical",1851,"Simulated",1,"LL",8.164037 -"NorESM1-ME","ph","ocean","ph_LL","historical",1852,"Simulated",1,"LL",8.164643 -"NorESM1-ME","ph","ocean","ph_LL","historical",1853,"Simulated",1,"LL",8.164552 -"NorESM1-ME","ph","ocean","ph_LL","historical",1854,"Simulated",1,"LL",8.163634 -"NorESM1-ME","ph","ocean","ph_LL","historical",1855,"Simulated",1,"LL",8.163339 -"NorESM1-ME","ph","ocean","ph_LL","historical",1856,"Simulated",1,"LL",8.16429 -"NorESM1-ME","ph","ocean","ph_LL","historical",1857,"Simulated",1,"LL",8.163842 -"NorESM1-ME","ph","ocean","ph_LL","historical",1858,"Simulated",1,"LL",8.163266 -"NorESM1-ME","ph","ocean","ph_LL","historical",1859,"Simulated",1,"LL",8.162723 -"NorESM1-ME","ph","ocean","ph_LL","historical",1860,"Simulated",1,"LL",8.162994 -"NorESM1-ME","ph","ocean","ph_LL","historical",1861,"Simulated",1,"LL",8.163443 -"NorESM1-ME","ph","ocean","ph_LL","historical",1862,"Simulated",1,"LL",8.163126 -"NorESM1-ME","ph","ocean","ph_LL","historical",1863,"Simulated",1,"LL",8.162732 -"NorESM1-ME","ph","ocean","ph_LL","historical",1864,"Simulated",1,"LL",8.162422 -"NorESM1-ME","ph","ocean","ph_LL","historical",1865,"Simulated",1,"LL",8.162912 -"NorESM1-ME","ph","ocean","ph_LL","historical",1866,"Simulated",1,"LL",8.162754 -"NorESM1-ME","ph","ocean","ph_LL","historical",1867,"Simulated",1,"LL",8.161898 -"NorESM1-ME","ph","ocean","ph_LL","historical",1868,"Simulated",1,"LL",8.162011 -"NorESM1-ME","ph","ocean","ph_LL","historical",1869,"Simulated",1,"LL",8.161816 -"NorESM1-ME","ph","ocean","ph_LL","historical",1870,"Simulated",1,"LL",8.161547 -"NorESM1-ME","ph","ocean","ph_LL","historical",1871,"Simulated",1,"LL",8.161516 -"NorESM1-ME","ph","ocean","ph_LL","historical",1872,"Simulated",1,"LL",8.161812 -"NorESM1-ME","ph","ocean","ph_LL","historical",1873,"Simulated",1,"LL",8.162046 -"NorESM1-ME","ph","ocean","ph_LL","historical",1874,"Simulated",1,"LL",8.161025 -"NorESM1-ME","ph","ocean","ph_LL","historical",1875,"Simulated",1,"LL",8.160506 -"NorESM1-ME","ph","ocean","ph_LL","historical",1876,"Simulated",1,"LL",8.160252 -"NorESM1-ME","ph","ocean","ph_LL","historical",1877,"Simulated",1,"LL",8.15968 -"NorESM1-ME","ph","ocean","ph_LL","historical",1878,"Simulated",1,"LL",8.159332 -"NorESM1-ME","ph","ocean","ph_LL","historical",1879,"Simulated",1,"LL",8.159227 -"NorESM1-ME","ph","ocean","ph_LL","historical",1880,"Simulated",1,"LL",8.158629 -"NorESM1-ME","ph","ocean","ph_LL","historical",1881,"Simulated",1,"LL",8.158085 -"NorESM1-ME","ph","ocean","ph_LL","historical",1882,"Simulated",1,"LL",8.157259 -"NorESM1-ME","ph","ocean","ph_LL","historical",1883,"Simulated",1,"LL",8.157496 -"NorESM1-ME","ph","ocean","ph_LL","historical",1884,"Simulated",1,"LL",8.159189 -"NorESM1-ME","ph","ocean","ph_LL","historical",1885,"Simulated",1,"LL",8.15798 -"NorESM1-ME","ph","ocean","ph_LL","historical",1886,"Simulated",1,"LL",8.156378 -"NorESM1-ME","ph","ocean","ph_LL","historical",1887,"Simulated",1,"LL",8.155826 -"NorESM1-ME","ph","ocean","ph_LL","historical",1888,"Simulated",1,"LL",8.155629 -"NorESM1-ME","ph","ocean","ph_LL","historical",1889,"Simulated",1,"LL",8.154466 -"NorESM1-ME","ph","ocean","ph_LL","historical",1890,"Simulated",1,"LL",8.154739 -"NorESM1-ME","ph","ocean","ph_LL","historical",1891,"Simulated",1,"LL",8.154525 -"NorESM1-ME","ph","ocean","ph_LL","historical",1892,"Simulated",1,"LL",8.153923 -"NorESM1-ME","ph","ocean","ph_LL","historical",1893,"Simulated",1,"LL",8.154022 -"NorESM1-ME","ph","ocean","ph_LL","historical",1894,"Simulated",1,"LL",8.153905 -"NorESM1-ME","ph","ocean","ph_LL","historical",1895,"Simulated",1,"LL",8.153535 -"NorESM1-ME","ph","ocean","ph_LL","historical",1896,"Simulated",1,"LL",8.153303 -"NorESM1-ME","ph","ocean","ph_LL","historical",1897,"Simulated",1,"LL",8.153101 -"NorESM1-ME","ph","ocean","ph_LL","historical",1898,"Simulated",1,"LL",8.153117 -"NorESM1-ME","ph","ocean","ph_LL","historical",1899,"Simulated",1,"LL",8.152773 -"NorESM1-ME","ph","ocean","ph_LL","historical",1900,"Simulated",1,"LL",8.15257 -"NorESM1-ME","ph","ocean","ph_LL","historical",1901,"Simulated",1,"LL",8.152151 -"NorESM1-ME","ph","ocean","ph_LL","historical",1902,"Simulated",1,"LL",8.151598 -"NorESM1-ME","ph","ocean","ph_LL","historical",1903,"Simulated",1,"LL",8.152415 -"NorESM1-ME","ph","ocean","ph_LL","historical",1904,"Simulated",1,"LL",8.152368 -"NorESM1-ME","ph","ocean","ph_LL","historical",1905,"Simulated",1,"LL",8.151335 -"NorESM1-ME","ph","ocean","ph_LL","historical",1906,"Simulated",1,"LL",8.150097 -"NorESM1-ME","ph","ocean","ph_LL","historical",1907,"Simulated",1,"LL",8.149223 -"NorESM1-ME","ph","ocean","ph_LL","historical",1908,"Simulated",1,"LL",8.14904 -"NorESM1-ME","ph","ocean","ph_LL","historical",1909,"Simulated",1,"LL",8.149444 -"NorESM1-ME","ph","ocean","ph_LL","historical",1910,"Simulated",1,"LL",8.148118 -"NorESM1-ME","ph","ocean","ph_LL","historical",1911,"Simulated",1,"LL",8.148135 -"NorESM1-ME","ph","ocean","ph_LL","historical",1912,"Simulated",1,"LL",8.147428 -"NorESM1-ME","ph","ocean","ph_LL","historical",1913,"Simulated",1,"LL",8.14714 -"NorESM1-ME","ph","ocean","ph_LL","historical",1914,"Simulated",1,"LL",8.14656 -"NorESM1-ME","ph","ocean","ph_LL","historical",1915,"Simulated",1,"LL",8.146155 -"NorESM1-ME","ph","ocean","ph_LL","historical",1916,"Simulated",1,"LL",8.146212 -"NorESM1-ME","ph","ocean","ph_LL","historical",1917,"Simulated",1,"LL",8.145538 -"NorESM1-ME","ph","ocean","ph_LL","historical",1918,"Simulated",1,"LL",8.144384 -"NorESM1-ME","ph","ocean","ph_LL","historical",1919,"Simulated",1,"LL",8.144743 -"NorESM1-ME","ph","ocean","ph_LL","historical",1920,"Simulated",1,"LL",8.144698 -"NorESM1-ME","ph","ocean","ph_LL","historical",1921,"Simulated",1,"LL",8.144439 -"NorESM1-ME","ph","ocean","ph_LL","historical",1922,"Simulated",1,"LL",8.144282 -"NorESM1-ME","ph","ocean","ph_LL","historical",1923,"Simulated",1,"LL",8.143269 -"NorESM1-ME","ph","ocean","ph_LL","historical",1924,"Simulated",1,"LL",8.142482 -"NorESM1-ME","ph","ocean","ph_LL","historical",1925,"Simulated",1,"LL",8.141662 -"NorESM1-ME","ph","ocean","ph_LL","historical",1926,"Simulated",1,"LL",8.14189 -"NorESM1-ME","ph","ocean","ph_LL","historical",1927,"Simulated",1,"LL",8.141604 -"NorESM1-ME","ph","ocean","ph_LL","historical",1928,"Simulated",1,"LL",8.141627 -"NorESM1-ME","ph","ocean","ph_LL","historical",1929,"Simulated",1,"LL",8.141306 -"NorESM1-ME","ph","ocean","ph_LL","historical",1930,"Simulated",1,"LL",8.140127 -"NorESM1-ME","ph","ocean","ph_LL","historical",1931,"Simulated",1,"LL",8.139371 -"NorESM1-ME","ph","ocean","ph_LL","historical",1932,"Simulated",1,"LL",8.138712 -"NorESM1-ME","ph","ocean","ph_LL","historical",1933,"Simulated",1,"LL",8.139249 -"NorESM1-ME","ph","ocean","ph_LL","historical",1934,"Simulated",1,"LL",8.138676 -"NorESM1-ME","ph","ocean","ph_LL","historical",1935,"Simulated",1,"LL",8.137603 -"NorESM1-ME","ph","ocean","ph_LL","historical",1936,"Simulated",1,"LL",8.137717 -"NorESM1-ME","ph","ocean","ph_LL","historical",1937,"Simulated",1,"LL",8.136745 -"NorESM1-ME","ph","ocean","ph_LL","historical",1938,"Simulated",1,"LL",8.136351 -"NorESM1-ME","ph","ocean","ph_LL","historical",1939,"Simulated",1,"LL",8.136394 -"NorESM1-ME","ph","ocean","ph_LL","historical",1940,"Simulated",1,"LL",8.136852 -"NorESM1-ME","ph","ocean","ph_LL","historical",1941,"Simulated",1,"LL",8.137322 -"NorESM1-ME","ph","ocean","ph_LL","historical",1942,"Simulated",1,"LL",8.136426 -"NorESM1-ME","ph","ocean","ph_LL","historical",1943,"Simulated",1,"LL",8.135923 -"NorESM1-ME","ph","ocean","ph_LL","historical",1944,"Simulated",1,"LL",8.135693 -"NorESM1-ME","ph","ocean","ph_LL","historical",1945,"Simulated",1,"LL",8.135512 -"NorESM1-ME","ph","ocean","ph_LL","historical",1946,"Simulated",1,"LL",8.135391 -"NorESM1-ME","ph","ocean","ph_LL","historical",1947,"Simulated",1,"LL",8.136249 -"NorESM1-ME","ph","ocean","ph_LL","historical",1948,"Simulated",1,"LL",8.136221 -"NorESM1-ME","ph","ocean","ph_LL","historical",1949,"Simulated",1,"LL",8.135811 -"NorESM1-ME","ph","ocean","ph_LL","historical",1950,"Simulated",1,"LL",8.135256 -"NorESM1-ME","ph","ocean","ph_LL","historical",1951,"Simulated",1,"LL",8.135132 -"NorESM1-ME","ph","ocean","ph_LL","historical",1952,"Simulated",1,"LL",8.13492 -"NorESM1-ME","ph","ocean","ph_LL","historical",1953,"Simulated",1,"LL",8.134787 -"NorESM1-ME","ph","ocean","ph_LL","historical",1954,"Simulated",1,"LL",8.134387 -"NorESM1-ME","ph","ocean","ph_LL","historical",1955,"Simulated",1,"LL",8.133414 -"NorESM1-ME","ph","ocean","ph_LL","historical",1956,"Simulated",1,"LL",8.133299 -"NorESM1-ME","ph","ocean","ph_LL","historical",1957,"Simulated",1,"LL",8.132354 -"NorESM1-ME","ph","ocean","ph_LL","historical",1958,"Simulated",1,"LL",8.131168 -"NorESM1-ME","ph","ocean","ph_LL","historical",1959,"Simulated",1,"LL",8.131054 -"NorESM1-ME","ph","ocean","ph_LL","historical",1960,"Simulated",1,"LL",8.13003 -"NorESM1-ME","ph","ocean","ph_LL","historical",1961,"Simulated",1,"LL",8.129568 -"NorESM1-ME","ph","ocean","ph_LL","historical",1962,"Simulated",1,"LL",8.129404 -"NorESM1-ME","ph","ocean","ph_LL","historical",1963,"Simulated",1,"LL",8.129144 -"NorESM1-ME","ph","ocean","ph_LL","historical",1964,"Simulated",1,"LL",8.128355 -"NorESM1-ME","ph","ocean","ph_LL","historical",1965,"Simulated",1,"LL",8.126885 -"NorESM1-ME","ph","ocean","ph_LL","historical",1966,"Simulated",1,"LL",8.126205 -"NorESM1-ME","ph","ocean","ph_LL","historical",1967,"Simulated",1,"LL",8.125403 -"NorESM1-ME","ph","ocean","ph_LL","historical",1968,"Simulated",1,"LL",8.124708 -"NorESM1-ME","ph","ocean","ph_LL","historical",1969,"Simulated",1,"LL",8.123779 -"NorESM1-ME","ph","ocean","ph_LL","historical",1970,"Simulated",1,"LL",8.121954 -"NorESM1-ME","ph","ocean","ph_LL","historical",1971,"Simulated",1,"LL",8.12042 -"NorESM1-ME","ph","ocean","ph_LL","historical",1972,"Simulated",1,"LL",8.119305 -"NorESM1-ME","ph","ocean","ph_LL","historical",1973,"Simulated",1,"LL",8.118238 -"NorESM1-ME","ph","ocean","ph_LL","historical",1974,"Simulated",1,"LL",8.117757 -"NorESM1-ME","ph","ocean","ph_LL","historical",1975,"Simulated",1,"LL",8.117115 -"NorESM1-ME","ph","ocean","ph_LL","historical",1976,"Simulated",1,"LL",8.115615 -"NorESM1-ME","ph","ocean","ph_LL","historical",1977,"Simulated",1,"LL",8.114304 -"NorESM1-ME","ph","ocean","ph_LL","historical",1978,"Simulated",1,"LL",8.112794 -"NorESM1-ME","ph","ocean","ph_LL","historical",1979,"Simulated",1,"LL",8.110954 -"NorESM1-ME","ph","ocean","ph_LL","historical",1980,"Simulated",1,"LL",8.109474 -"NorESM1-ME","ph","ocean","ph_LL","historical",1981,"Simulated",1,"LL",8.108028 -"NorESM1-ME","ph","ocean","ph_LL","historical",1982,"Simulated",1,"LL",8.106328 -"NorESM1-ME","ph","ocean","ph_LL","historical",1983,"Simulated",1,"LL",8.106432 -"NorESM1-ME","ph","ocean","ph_LL","historical",1984,"Simulated",1,"LL",8.104013 -"NorESM1-ME","ph","ocean","ph_LL","historical",1985,"Simulated",1,"LL",8.102403 -"NorESM1-ME","ph","ocean","ph_LL","historical",1986,"Simulated",1,"LL",8.101444 -"NorESM1-ME","ph","ocean","ph_LL","historical",1987,"Simulated",1,"LL",8.098883 -"NorESM1-ME","ph","ocean","ph_LL","historical",1988,"Simulated",1,"LL",8.096474 -"NorESM1-ME","ph","ocean","ph_LL","historical",1989,"Simulated",1,"LL",8.095356 -"NorESM1-ME","ph","ocean","ph_LL","historical",1990,"Simulated",1,"LL",8.093885 -"NorESM1-ME","ph","ocean","ph_LL","historical",1991,"Simulated",1,"LL",8.09357 -"NorESM1-ME","ph","ocean","ph_LL","historical",1992,"Simulated",1,"LL",8.094148 -"NorESM1-ME","ph","ocean","ph_LL","historical",1993,"Simulated",1,"LL",8.091624 -"NorESM1-ME","ph","ocean","ph_LL","historical",1994,"Simulated",1,"LL",8.089705 -"NorESM1-ME","ph","ocean","ph_LL","historical",1995,"Simulated",1,"LL",8.088014 -"NorESM1-ME","ph","ocean","ph_LL","historical",1996,"Simulated",1,"LL",8.086432 -"NorESM1-ME","ph","ocean","ph_LL","historical",1997,"Simulated",1,"LL",8.085105 -"NorESM1-ME","ph","ocean","ph_LL","historical",1998,"Simulated",1,"LL",8.083247 -"NorESM1-ME","ph","ocean","ph_LL","historical",1999,"Simulated",1,"LL",8.080864 -"NorESM1-ME","ph","ocean","ph_LL","historical",2000,"Simulated",1,"LL",8.079586 -"NorESM1-ME","ph","ocean","ph_LL","historical",2001,"Simulated",1,"LL",8.07829 -"NorESM1-ME","ph","ocean","ph_LL","historical",2002,"Simulated",1,"LL",8.076193 -"NorESM1-ME","ph","ocean","ph_LL","historical",2003,"Simulated",1,"LL",8.073786 -"NorESM1-ME","ph","ocean","ph_LL","historical",2004,"Simulated",1,"LL",8.07125 -"NorESM1-ME","ph","ocean","ph_LL","historical",2005,"Simulated",1,"LL",8.06921 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/hist/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/hist/summary.csv deleted file mode 100644 index 327f17e27..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/hist/summary.csv +++ /dev/null @@ -1,469 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -1850,ph,ocean,ph,historical,1,Simulated,global,0.002267023,8.159899333,8.165641,8.162931533,8.163699,1,CMIP5 -1850,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012605224,8.1488614,8.179115,8.16721088,8.173288,1,CMIP5 -1850,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003082514,8.159007,8.1662944,8.162092947,8.160910667,1,CMIP5 -1851,ph,ocean,ph,historical,1,Simulated,global,0.003636639,8.155558,8.165601,8.161478467,8.1620924,1,CMIP5 -1851,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011854162,8.148441,8.178606333,8.165840111,8.167506167,1,CMIP5 -1851,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004047487,8.155052,8.1662504,8.160631456,8.160165167,1,CMIP5 -1852,ph,ocean,ph,historical,1,Simulated,global,0.003265812,8.15699,8.166049,8.161737033,8.161785933,1,CMIP5 -1852,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011070485,8.1489504,8.177892,8.165503456,8.166861167,1,CMIP5 -1852,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003664945,8.156734,8.1660052,8.160994811,8.160308333,1,CMIP5 -1853,ph,ocean,ph,historical,1,Simulated,global,0.003597851,8.155893,8.166017,8.161542656,8.161823667,1,CMIP5 -1853,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011777871,8.1481334,8.177096333,8.165285011,8.166712667,1,CMIP5 -1853,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004113514,8.155458,8.1663646,8.160823156,8.160520667,1,CMIP5 -1854,ph,ocean,ph,historical,1,Simulated,global,0.003367643,8.156003,8.164898,8.161355567,8.162119167,1,CMIP5 -1854,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012215059,8.149447,8.179097667,8.165275111,8.164923,1,CMIP5 -1854,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003823139,8.155685,8.1661984,8.160607622,8.160161167,1,CMIP5 -1855,ph,ocean,ph,historical,1,Simulated,global,0.002837269,8.157122,8.16474,8.161320711,8.1616348,1,CMIP5 -1855,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011845302,8.1492296,8.178426,8.165571767,8.166034,1,CMIP5 -1855,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003220758,8.156717,8.1649594,8.160521844,8.160292833,1,CMIP5 -1856,ph,ocean,ph,historical,1,Simulated,global,0.003367979,8.156564,8.165075,8.161186689,8.1613824,1,CMIP5 -1856,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011613704,8.1486916,8.177419667,8.163802044,8.163473,1,CMIP5 -1856,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00396328,8.156411,8.1661184,8.160684733,8.160363,1,CMIP5 -1857,ph,ocean,ph,historical,1,Simulated,global,0.003699934,8.155773,8.164938,8.161100022,8.161535733,1,CMIP5 -1857,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011519795,8.1493272,8.178669,8.164474644,8.165385,1,CMIP5 -1857,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004334095,8.15508,8.1664136,8.160461156,8.160584667,1,CMIP5 -1858,ph,ocean,ph,historical,1,Simulated,global,0.003073387,8.156736,8.164779,8.161139111,8.1611255,1,CMIP5 -1858,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01277744,8.1478422,8.178286,8.165387589,8.1668855,1,CMIP5 -1858,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003568461,8.156075,8.1651042,8.160347978,8.160518333,1,CMIP5 -1859,ph,ocean,ph,historical,1,Simulated,global,0.003369075,8.156114,8.1651626,8.1612874,8.1624882,1,CMIP5 -1859,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01455011,8.1482802,8.1894358,8.168690048,8.173628,1,CMIP5 -1859,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003353498,8.155352,8.1649734,8.159900905,8.160021,1,CMIP5 -1860,ph,ocean,ph,historical,1,Simulated,global,0.003139347,8.156223,8.164183,8.159897105,8.158984,1,CMIP5 -1860,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011468617,8.1480954,8.178069,8.165237486,8.169613,1,CMIP5 -1860,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003839217,8.1546384,8.1646788,8.158894505,8.158675,1,CMIP5 -1861,ph,ocean,ph,historical,1,Simulated,global,0.003213392,8.155765,8.164391,8.159882981,8.159939,1,CMIP5 -1861,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011466035,8.1481292,8.177327,8.164738314,8.169792,1,CMIP5 -1861,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003910481,8.1543804,8.1646522,8.158975943,8.158805,1,CMIP5 -1862,ph,ocean,ph,historical,1,Simulated,global,0.0035809,8.155262,8.16471,8.159891343,8.160067,1,CMIP5 -1862,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012511161,8.1481968,8.178897333,8.165253914,8.1691606,1,CMIP5 -1862,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003920339,8.1542298,8.1646832,8.158887381,8.158319667,1,CMIP5 -1863,ph,ocean,ph,historical,1,Simulated,global,0.003304203,8.154973,8.163849,8.159493714,8.15945,1,CMIP5 -1863,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012414379,8.146124,8.177728333,8.164275676,8.1692334,1,CMIP5 -1863,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003865319,8.1543896,8.1643892,8.158595257,8.158292333,1,CMIP5 -1864,ph,ocean,ph,historical,1,Simulated,global,0.00334306,8.154515,8.163745,8.159166514,8.158789,1,CMIP5 -1864,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012025135,8.1461816,8.177221333,8.164250067,8.1695022,1,CMIP5 -1864,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003850738,8.1539656,8.1638154,8.158206,8.15796,1,CMIP5 -1865,ph,ocean,ph,historical,1,Simulated,global,0.003110807,8.155091,8.16372,8.159215171,8.158467,1,CMIP5 -1865,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011609425,8.1461074,8.175685,8.1634486,8.168323,1,CMIP5 -1865,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003740196,8.1546148,8.1636978,8.158415943,8.158083333,1,CMIP5 -1866,ph,ocean,ph,historical,1,Simulated,global,0.003354808,8.154159,8.16407,8.159005667,8.158666,1,CMIP5 -1866,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011281326,8.146489,8.175867,8.163841829,8.1679018,1,CMIP5 -1866,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003771094,8.153774,8.1632666,8.158090943,8.157859,1,CMIP5 -1867,ph,ocean,ph,historical,1,Simulated,global,0.003119404,8.154128,8.163156,8.15869079,8.15894,1,CMIP5 -1867,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011802126,8.1452486,8.175645,8.163540362,8.1682706,1,CMIP5 -1867,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003647759,8.153789,8.1631896,8.157775038,8.157562,1,CMIP5 -1868,ph,ocean,ph,historical,1,Simulated,global,0.003154769,8.154558,8.163342,8.1587148,8.158214,1,CMIP5 -1868,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011677162,8.1457036,8.175689667,8.163196514,8.167666,1,CMIP5 -1868,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003630733,8.1539962,8.1633116,8.157865971,8.157424,1,CMIP5 -1869,ph,ocean,ph,historical,1,Simulated,global,0.003056173,8.155286,8.163127,8.158671086,8.157953,1,CMIP5 -1869,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011675186,8.1452842,8.17548,8.163334933,8.167314,1,CMIP5 -1869,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003746245,8.1535382,8.1636644,8.157785705,8.156961333,1,CMIP5 -1870,ph,ocean,ph,historical,1,Simulated,global,0.003216114,8.1541,8.162769,8.158483895,8.157937,1,CMIP5 -1870,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010646806,8.1461598,8.175434333,8.163120629,8.1668506,1,CMIP5 -1870,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003759746,8.1534214,8.1633272,8.157592467,8.157025667,1,CMIP5 -1871,ph,ocean,ph,historical,1,Simulated,global,0.003266581,8.154177,8.162747,8.158443714,8.158525,1,CMIP5 -1871,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011335381,8.145689,8.177294667,8.163744724,8.1667864,1,CMIP5 -1871,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003698626,8.1527868,8.1626288,8.157428229,8.156978667,1,CMIP5 -1872,ph,ocean,ph,historical,1,Simulated,global,0.003454189,8.153954,8.163021,8.158262667,8.157506,1,CMIP5 -1872,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011186477,8.1454652,8.175885333,8.163457105,8.1664832,1,CMIP5 -1872,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004076452,8.152529,8.163189,8.15726719,8.156643667,1,CMIP5 -1873,ph,ocean,ph,historical,1,Simulated,global,0.003419608,8.153581,8.163077,8.157850143,8.156952,1,CMIP5 -1873,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011196991,8.1447636,8.174193,8.162651648,8.1677716,1,CMIP5 -1873,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004048348,8.1521882,8.1622562,8.156934438,8.156585,1,CMIP5 -1874,ph,ocean,ph,historical,1,Simulated,global,0.003213306,8.153552,8.162424,8.157572771,8.157584,1,CMIP5 -1874,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011456024,8.1443048,8.173428,8.162383581,8.1674286,1,CMIP5 -1874,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003758286,8.1520962,8.16213,8.156662648,8.156001,1,CMIP5 -1875,ph,ocean,ph,historical,1,Simulated,global,0.003410919,8.15242,8.162093,8.15721819,8.156924,1,CMIP5 -1875,ph,ocean,ph_HL,historical,1,Simulated,HL,0.012316094,8.1443184,8.177822,8.16306521,8.1664204,1,CMIP5 -1875,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003717927,8.1519962,8.161258,8.156104314,8.155986667,1,CMIP5 -1876,ph,ocean,ph,historical,1,Simulated,global,0.003086815,8.153286,8.161319,8.157137981,8.156252,1,CMIP5 -1876,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010909368,8.144597,8.175080333,8.161777181,8.1657756,1,CMIP5 -1876,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003727601,8.1519802,8.1619962,8.156242343,8.155695,1,CMIP5 -1877,ph,ocean,ph,historical,1,Simulated,global,0.003159633,8.152286,8.160774,8.1568688,8.156834,1,CMIP5 -1877,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011275798,8.1447376,8.175096,8.1617902,8.1664578,1,CMIP5 -1877,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003716968,8.1517758,8.1615908,8.155932562,8.155757,1,CMIP5 -1878,ph,ocean,ph,historical,1,Simulated,global,0.003101624,8.152363,8.160635,8.156576552,8.156306,1,CMIP5 -1878,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011571532,8.1439272,8.175522,8.161732381,8.1663358,1,CMIP5 -1878,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003621583,8.1510068,8.1608748,8.155593657,8.155791667,1,CMIP5 -1879,ph,ocean,ph,historical,1,Simulated,global,0.003137999,8.152082,8.160296,8.156118876,8.155374,1,CMIP5 -1879,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010331723,8.1440946,8.172726333,8.160494943,8.165123,1,CMIP5 -1879,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003676617,8.1510162,8.1606658,8.155280381,8.154729,1,CMIP5 -1880,ph,ocean,ph,historical,1,Simulated,global,0.003069702,8.151478,8.159691,8.155700876,8.154591,1,CMIP5 -1880,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010413181,8.1433812,8.172963,8.160136229,8.1636184,1,CMIP5 -1880,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003743626,8.1511486,8.1607532,8.154847733,8.154678667,1,CMIP5 -1881,ph,ocean,ph,historical,1,Simulated,global,0.00304502,8.150932,8.159025,8.155141162,8.154801,1,CMIP5 -1881,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01043053,8.1435572,8.172914667,8.159923486,8.1635292,1,CMIP5 -1881,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003633942,8.1500772,8.159678,8.154222838,8.153981667,1,CMIP5 -1882,ph,ocean,ph,historical,1,Simulated,global,0.003057257,8.150217,8.158497,8.154413905,8.153786,1,CMIP5 -1882,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009929605,8.1431544,8.170398,8.159677305,8.1633454,1,CMIP5 -1882,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003662606,8.1493844,8.1588446,8.153409667,8.153061667,1,CMIP5 -1883,ph,ocean,ph,historical,1,Simulated,global,0.003031371,8.150489,8.1585,8.154579581,8.153918,1,CMIP5 -1883,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010217182,8.1415674,8.170409667,8.158538886,8.1618818,1,CMIP5 -1883,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003583178,8.149677,8.158984,8.153819762,8.153795333,1,CMIP5 -1884,ph,ocean,ph,historical,1,Simulated,global,0.002955699,8.151516,8.159991,8.155615962,8.155888,1,CMIP5 -1884,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010472397,8.1405766,8.168885667,8.158052495,8.1619162,1,CMIP5 -1884,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003214384,8.151339,8.159189,8.155151133,8.155121667,1,CMIP5 -1885,ph,ocean,ph,historical,1,Simulated,global,0.003389056,8.149537,8.159212,8.154260905,8.153112333,1,CMIP5 -1885,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010573138,8.1405384,8.168354,8.157821667,8.1618636,1,CMIP5 -1885,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004001257,8.149156,8.1592464,8.153588505,8.153827333,1,CMIP5 -1886,ph,ocean,ph,historical,1,Simulated,global,0.003069011,8.148866,8.157469,8.153268733,8.152369333,1,CMIP5 -1886,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01045138,8.1400336,8.169209,8.157331971,8.1612402,1,CMIP5 -1886,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003676142,8.148534,8.1578678,8.152490848,8.152736333,1,CMIP5 -1887,ph,ocean,ph,historical,1,Simulated,global,0.002945786,8.14879,8.157044,8.15292859,8.152267667,1,CMIP5 -1887,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010556534,8.1392498,8.168661333,8.157600971,8.160919,1,CMIP5 -1887,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003618565,8.1484,8.1574548,8.152030162,8.152133333,1,CMIP5 -1888,ph,ocean,ph,historical,1,Simulated,global,0.002893239,8.148254,8.156528,8.152362438,8.151776,1,CMIP5 -1888,ph,ocean,ph_HL,historical,1,Simulated,HL,0.0103825,8.1389752,8.167916333,8.156988286,8.1614288,1,CMIP5 -1888,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00368361,8.1478156,8.1568912,8.151469686,8.151613,1,CMIP5 -1889,ph,ocean,ph,historical,1,Simulated,global,0.003014833,8.147457,8.155683,8.152034324,8.151393667,1,CMIP5 -1889,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010368584,8.139491,8.168886333,8.157360448,8.1609448,1,CMIP5 -1889,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003668919,8.146944,8.1565836,8.15101179,8.151071667,1,CMIP5 -1890,ph,ocean,ph,historical,1,Simulated,global,0.002758618,8.148014,8.155774,8.152140019,8.151871,1,CMIP5 -1890,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009819443,8.139116,8.167117667,8.156317114,8.1601768,1,CMIP5 -1890,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003362191,8.1476294,8.1564348,8.151331124,8.151276,1,CMIP5 -1891,ph,ocean,ph,historical,1,Simulated,global,0.002872966,8.147485,8.155949,8.1518414,8.151718,1,CMIP5 -1891,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010539103,8.1387304,8.16656,8.156705638,8.1608054,1,CMIP5 -1891,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003392393,8.147247,8.1560486,8.150910181,8.150618333,1,CMIP5 -1892,ph,ocean,ph,historical,1,Simulated,global,0.003266573,8.146142,8.155311,8.151205114,8.150884,1,CMIP5 -1892,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010370477,8.1388456,8.166559,8.156812505,8.1608216,1,CMIP5 -1892,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00381526,8.145629,8.1556742,8.150130505,8.149507667,1,CMIP5 -1893,ph,ocean,ph,historical,1,Simulated,global,0.002940137,8.147059,8.155046,8.151008038,8.150156,1,CMIP5 -1893,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010695346,8.1389154,8.169219667,8.155723743,8.1593348,1,CMIP5 -1893,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00336426,8.1464468,8.1546358,8.1501078,8.150249333,1,CMIP5 -1894,ph,ocean,ph,historical,1,Simulated,global,0.002800989,8.147568,8.154981,8.150784543,8.149973,1,CMIP5 -1894,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010836725,8.1382446,8.167295333,8.155689981,8.1592426,1,CMIP5 -1894,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003464453,8.1460476,8.1549804,8.149849762,8.149338333,1,CMIP5 -1895,ph,ocean,ph,historical,1,Simulated,global,0.002982792,8.146783,8.154665,8.150314714,8.149377667,1,CMIP5 -1895,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010173448,8.1384746,8.166315333,8.155630448,8.1592182,1,CMIP5 -1895,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003801327,8.1451984,8.1548518,8.1493026,8.149365333,1,CMIP5 -1896,ph,ocean,ph,historical,1,Simulated,global,0.00354114,8.145333,8.155114,8.150228429,8.149318,1,CMIP5 -1896,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01081534,8.1388682,8.166873667,8.15619281,8.1590038,1,CMIP5 -1896,ph,ocean,ph_LL,historical,1,Simulated,LL,0.004164582,8.144774,8.1552684,8.149101838,8.149326667,1,CMIP5 -1897,ph,ocean,ph,historical,1,Simulated,global,0.003155495,8.145767,8.15428,8.150155371,8.148816333,1,CMIP5 -1897,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010680605,8.1380202,8.166934,8.154687914,8.1591932,1,CMIP5 -1897,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003799683,8.145614,8.1552092,8.149289752,8.149108333,1,CMIP5 -1898,ph,ocean,ph,historical,1,Simulated,global,0.002907355,8.146332,8.154056,8.150021524,8.148831,1,CMIP5 -1898,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010405854,8.1376332,8.166256333,8.154576276,8.1592484,1,CMIP5 -1898,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003646254,8.1452566,8.15464,8.14914661,8.148891333,1,CMIP5 -1899,ph,ocean,ph,historical,1,Simulated,global,0.003129249,8.145146,8.153824,8.149610886,8.149070667,1,CMIP5 -1899,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010652788,8.1365988,8.166844,8.154405552,8.1591104,1,CMIP5 -1899,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00378591,8.1445324,8.1541356,8.148685143,8.148981667,1,CMIP5 -1900,ph,ocean,ph,historical,1,Simulated,global,0.00308604,8.145813,8.154087,8.149686533,8.148844333,1,CMIP5 -1900,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011231377,8.136046,8.165490667,8.154516286,8.159343,1,CMIP5 -1900,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003700024,8.1441894,8.1541262,8.148763895,8.148859333,1,CMIP5 -1901,ph,ocean,ph,historical,1,Simulated,global,0.003182634,8.144835,8.153715,8.149312371,8.148622,1,CMIP5 -1901,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011093899,8.1367706,8.166389667,8.15449639,8.1591868,1,CMIP5 -1901,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003591427,8.1439926,8.1533282,8.148322733,8.148463667,1,CMIP5 -1902,ph,ocean,ph,historical,1,Simulated,global,0.00289098,8.144619,8.152812,8.148950571,8.148642,1,CMIP5 -1902,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010779138,8.136156,8.164780333,8.153626286,8.158565,1,CMIP5 -1902,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003486349,8.1439698,8.1532776,8.148054724,8.148350333,1,CMIP5 -1903,ph,ocean,ph,historical,1,Simulated,global,0.002805077,8.145952,8.153843,8.14981099,8.150063,1,CMIP5 -1903,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011415537,8.1353492,8.166056667,8.154286276,8.1577354,1,CMIP5 -1903,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003301508,8.1447686,8.1539704,8.148949667,8.148984333,1,CMIP5 -1904,ph,ocean,ph,historical,1,Simulated,global,0.002908532,8.145149,8.153796,8.1489478,8.148633,1,CMIP5 -1904,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011327122,8.1352694,8.164976333,8.153476076,8.1571418,1,CMIP5 -1904,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00322241,8.1443084,8.1523712,8.148077419,8.147931667,1,CMIP5 -1905,ph,ocean,ph,historical,1,Simulated,global,0.003056952,8.14402,8.152509,8.1480538,8.147529,1,CMIP5 -1905,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010984262,8.134576,8.164757333,8.152994676,8.1565924,1,CMIP5 -1905,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003583787,8.1429006,8.1520828,8.147103438,8.146817667,1,CMIP5 -1906,ph,ocean,ph,historical,1,Simulated,global,0.003047928,8.143391,8.151462,8.14727659,8.146093667,1,CMIP5 -1906,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011137179,8.133881,8.164419,8.152689,8.155622,1,CMIP5 -1906,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003806588,8.1424952,8.1521252,8.146244629,8.146051333,1,CMIP5 -1907,ph,ocean,ph,historical,1,Simulated,global,0.002888137,8.142674,8.150569,8.146950771,8.146389,1,CMIP5 -1907,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011104974,8.133862,8.163782,8.152145752,8.1565086,1,CMIP5 -1907,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003670367,8.1419512,8.1516578,8.145968714,8.146587667,1,CMIP5 -1908,ph,ocean,ph,historical,1,Simulated,global,0.002703849,8.143174,8.150519,8.146630219,8.145684,1,CMIP5 -1908,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011409559,8.1338194,8.163601,8.152127733,8.1564454,1,CMIP5 -1908,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003293798,8.141844,8.1503892,8.145587838,8.145761,1,CMIP5 -1909,ph,ocean,ph,historical,1,Simulated,global,0.002973571,8.141504,8.150567,8.145979057,8.145524,1,CMIP5 -1909,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011012962,8.1323776,8.162245333,8.151119343,8.1552138,1,CMIP5 -1909,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00355868,8.141244,8.1500702,8.144988848,8.144716,1,CMIP5 -1910,ph,ocean,ph,historical,1,Simulated,global,0.002911557,8.141027,8.149397,8.145500676,8.14508,1,CMIP5 -1910,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011446961,8.132267,8.163200667,8.150875714,8.155426,1,CMIP5 -1910,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003427146,8.1408398,8.1495478,8.144469324,8.144581,1,CMIP5 -1911,ph,ocean,ph,historical,1,Simulated,global,0.003145278,8.140107,8.149295,8.1450716,8.14474,1,CMIP5 -1911,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011594314,8.1313434,8.162945,8.150128371,8.1544112,1,CMIP5 -1911,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003659291,8.139982,8.1491918,8.144107495,8.144216667,1,CMIP5 -1912,ph,ocean,ph,historical,1,Simulated,global,0.002895792,8.140417,8.148925,8.144957286,8.144788,1,CMIP5 -1912,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011109136,8.1324146,8.162042,8.149865429,8.1536284,1,CMIP5 -1912,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003487928,8.1403664,8.1495334,8.144025067,8.144204333,1,CMIP5 -1913,ph,ocean,ph,historical,1,Simulated,global,0.002957643,8.14034,8.148509,8.1445818,8.143948667,1,CMIP5 -1913,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010815533,8.1327414,8.160139,8.149362486,8.153072,1,CMIP5 -1913,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003388641,8.13981,8.148442,8.143672333,8.143972667,1,CMIP5 -1914,ph,ocean,ph,historical,1,Simulated,global,0.003007242,8.139599,8.148057,8.143954657,8.143049667,1,CMIP5 -1914,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011710124,8.1318046,8.161917,8.149162352,8.1537582,1,CMIP5 -1914,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003626812,8.1391774,8.148489,8.142971581,8.143267,1,CMIP5 -1915,ph,ocean,ph,historical,1,Simulated,global,0.003400571,8.137957,8.147979,8.143282886,8.142669,1,CMIP5 -1915,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011801189,8.1316364,8.16034,8.1483436,8.1524598,1,CMIP5 -1915,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003825709,8.13811,8.147995,8.142336286,8.142903,1,CMIP5 -1916,ph,ocean,ph,historical,1,Simulated,global,0.003128128,8.138672,8.147597,8.142983676,8.142446,1,CMIP5 -1916,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011356752,8.1312316,8.158214333,8.14733001,8.1528868,1,CMIP5 -1916,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003646987,8.1379246,8.147444,8.142170276,8.142486667,1,CMIP5 -1917,ph,ocean,ph,historical,1,Simulated,global,0.002855218,8.139319,8.146636,8.142804829,8.142441,1,CMIP5 -1917,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010850776,8.1314346,8.158012,8.147007571,8.1528684,1,CMIP5 -1917,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003455213,8.1373182,8.1470126,8.142013829,8.142013,1,CMIP5 -1918,ph,ocean,ph,historical,1,Simulated,global,0.002999749,8.137128,8.14556,8.142194571,8.141926,1,CMIP5 -1918,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010758533,8.1300536,8.157737,8.14685159,8.1522472,1,CMIP5 -1918,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003595716,8.137026,8.1467834,8.141309143,8.142026667,1,CMIP5 -1919,ph,ocean,ph,historical,1,Simulated,global,0.003225284,8.136645,8.145903,8.1419548,8.141587,1,CMIP5 -1919,ph,ocean,ph_HL,historical,1,Simulated,HL,0.011106336,8.1312016,8.159658333,8.147277314,8.152502,1,CMIP5 -1919,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003779917,8.136531,8.1466558,8.140942838,8.141275,1,CMIP5 -1920,ph,ocean,ph,historical,1,Simulated,global,0.002942686,8.137461,8.145702,8.141628676,8.140711,1,CMIP5 -1920,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010890231,8.1309012,8.157427667,8.146320867,8.151422,1,CMIP5 -1920,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00357268,8.136902,8.1458298,8.14074821,8.141104,1,CMIP5 -1921,ph,ocean,ph,historical,1,Simulated,global,0.00319236,8.136904,8.145681,8.14120619,8.140165667,1,CMIP5 -1921,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010135068,8.1307518,8.155839,8.146075067,8.151273,1,CMIP5 -1921,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00382352,8.1365296,8.1455628,8.140290962,8.140481,1,CMIP5 -1922,ph,ocean,ph,historical,1,Simulated,global,0.003326672,8.136275,8.145633,8.140956276,8.139972667,1,CMIP5 -1922,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010201692,8.130169,8.156065,8.145771762,8.151223,1,CMIP5 -1922,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003846665,8.1359566,8.1453714,8.14004319,8.140172,1,CMIP5 -1923,ph,ocean,ph,historical,1,Simulated,global,0.002973288,8.135914,8.144184,8.140524571,8.140223,1,CMIP5 -1923,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010099994,8.1300344,8.155473667,8.144930714,8.149392,1,CMIP5 -1923,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003480394,8.1355368,8.1445772,8.139684476,8.140031,1,CMIP5 -1924,ph,ocean,ph,historical,1,Simulated,global,0.002755513,8.136324,8.143614,8.140187562,8.140375,1,CMIP5 -1924,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010357344,8.129846,8.156529,8.144929343,8.1499934,1,CMIP5 -1924,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003293959,8.1346756,8.1439598,8.13929239,8.139715,1,CMIP5 -1925,ph,ocean,ph,historical,1,Simulated,global,0.003016407,8.135019,8.142988,8.139513924,8.139489,1,CMIP5 -1925,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010767243,8.1279856,8.155646333,8.144074467,8.14876,1,CMIP5 -1925,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003485697,8.1344362,8.1440196,8.138648781,8.138736667,1,CMIP5 -1926,ph,ocean,ph,historical,1,Simulated,global,0.003136209,8.133795,8.1429,8.139208133,8.139169,1,CMIP5 -1926,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010511019,8.1279886,8.15503,8.143843181,8.148648,1,CMIP5 -1926,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003621212,8.133821,8.1435336,8.138325581,8.138622333,1,CMIP5 -1927,ph,ocean,ph,historical,1,Simulated,global,0.002624469,8.135229,8.142643,8.1391148,8.13876,1,CMIP5 -1927,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010065637,8.1275354,8.152883,8.143420181,8.148553,1,CMIP5 -1927,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003244409,8.1346454,8.1429456,8.138291952,8.138758333,1,CMIP5 -1928,ph,ocean,ph,historical,1,Simulated,global,0.002807824,8.134466,8.142783,8.138649495,8.138137,1,CMIP5 -1928,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010538741,8.1272718,8.155229,8.143360867,8.1491456,1,CMIP5 -1928,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003439989,8.133841,8.1425574,8.137761629,8.138287,1,CMIP5 -1929,ph,ocean,ph,historical,1,Simulated,global,0.00316131,8.133126,8.142433,8.137972467,8.137395,1,CMIP5 -1929,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010089334,8.1268758,8.152277333,8.142767381,8.1486362,1,CMIP5 -1929,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003694922,8.1329764,8.1421004,8.137058257,8.137183667,1,CMIP5 -1930,ph,ocean,ph,historical,1,Simulated,global,0.002766925,8.133497,8.141267,8.137527657,8.137084,1,CMIP5 -1930,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010342641,8.1264684,8.152659,8.142312981,8.1477428,1,CMIP5 -1930,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00327214,8.1326296,8.1413536,8.136611505,8.13662,1,CMIP5 -1931,ph,ocean,ph,historical,1,Simulated,global,0.002791447,8.132634,8.140623,8.137026629,8.136399,1,CMIP5 -1931,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010523633,8.1261978,8.153038,8.142272667,8.1467282,1,CMIP5 -1931,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003300312,8.132719,8.1410894,8.136023581,8.136040333,1,CMIP5 -1932,ph,ocean,ph,historical,1,Simulated,global,0.002930743,8.131546,8.140027,8.1362942,8.135894333,1,CMIP5 -1932,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009753612,8.12565,8.150351,8.14133481,8.146642,1,CMIP5 -1932,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003444235,8.131524,8.1403732,8.135331705,8.135488,1,CMIP5 -1933,ph,ocean,ph,historical,1,Simulated,global,0.003166484,8.130579,8.140009,8.135898486,8.135564,1,CMIP5 -1933,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009229691,8.1259416,8.149240333,8.140291324,8.144336,1,CMIP5 -1933,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003664151,8.13066,8.1400514,8.135047286,8.135058667,1,CMIP5 -1934,ph,ocean,ph,historical,1,Simulated,global,0.002871539,8.131224,8.139525,8.135500448,8.134823667,1,CMIP5 -1934,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009469595,8.1251296,8.149495,8.13986081,8.14436,1,CMIP5 -1934,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003426779,8.1309458,8.1393762,8.134663381,8.134533333,1,CMIP5 -1935,ph,ocean,ph,historical,1,Simulated,global,0.00285811,8.130271,8.138643,8.134931962,8.134738,1,CMIP5 -1935,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010172163,8.1235136,8.149217,8.139062933,8.1440866,1,CMIP5 -1935,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003354089,8.130463,8.1391608,8.134140895,8.134366667,1,CMIP5 -1936,ph,ocean,ph,historical,1,Simulated,global,0.003206235,8.129511,8.13876,8.134487829,8.133945,1,CMIP5 -1936,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010003885,8.1241288,8.149486667,8.138651057,8.1433456,1,CMIP5 -1936,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003520206,8.129735,8.138473,8.133689724,8.133503,1,CMIP5 -1937,ph,ocean,ph,historical,1,Simulated,global,0.003040489,8.12968,8.137819,8.134081629,8.133289,1,CMIP5 -1937,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010657418,8.122848,8.149126,8.138214314,8.1427862,1,CMIP5 -1937,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00355563,8.129313,8.1387064,8.13328901,8.133027667,1,CMIP5 -1938,ph,ocean,ph,historical,1,Simulated,global,0.002895227,8.129808,8.137528,8.133716448,8.133020667,1,CMIP5 -1938,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010467286,8.1228394,8.148628667,8.13807539,8.142929,1,CMIP5 -1938,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003480191,8.1288152,8.1380174,8.132885133,8.133109667,1,CMIP5 -1939,ph,ocean,ph,historical,1,Simulated,global,0.00306251,8.128905,8.137385,8.133564952,8.13312,1,CMIP5 -1939,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010225763,8.1230972,8.148873667,8.13793159,8.1421146,1,CMIP5 -1939,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003450169,8.1286102,8.1375424,8.132724181,8.132826,1,CMIP5 -1940,ph,ocean,ph,historical,1,Simulated,global,0.002926005,8.129264,8.137649,8.133572676,8.133229,1,CMIP5 -1940,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010199165,8.1220784,8.148124667,8.137246657,8.142182,1,CMIP5 -1940,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003429973,8.1288628,8.137731,8.132865448,8.132812,1,CMIP5 -1941,ph,ocean,ph,historical,1,Simulated,global,0.003085854,8.129348,8.138213,8.133346219,8.132944,1,CMIP5 -1941,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00986401,8.1227546,8.147384,8.13722461,8.142145,1,CMIP5 -1941,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003682819,8.1280024,8.1376402,8.132601752,8.132397333,1,CMIP5 -1942,ph,ocean,ph,historical,1,Simulated,global,0.00350242,8.127196,8.137822,8.132893886,8.132609,1,CMIP5 -1942,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009618253,8.1227054,8.145769,8.13676319,8.1425056,1,CMIP5 -1942,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003905378,8.127402,8.1373372,8.132163486,8.132688333,1,CMIP5 -1943,ph,ocean,ph,historical,1,Simulated,global,0.00296548,8.128586,8.137028,8.133303533,8.133135,1,CMIP5 -1943,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010124481,8.1223834,8.147294,8.137262533,8.142773,1,CMIP5 -1943,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003284863,8.12849,8.136925,8.132546476,8.132715,1,CMIP5 -1944,ph,ocean,ph,historical,1,Simulated,global,0.002908059,8.129018,8.136879,8.133199105,8.132735667,1,CMIP5 -1944,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01027224,8.1222938,8.147319,8.137429267,8.1428784,1,CMIP5 -1944,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003457477,8.1283572,8.1374462,8.132387676,8.132481,1,CMIP5 -1945,ph,ocean,ph,historical,1,Simulated,global,0.00293888,8.128379,8.136732,8.133169162,8.133285,1,CMIP5 -1945,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010191387,8.1220878,8.147495,8.137720295,8.1434366,1,CMIP5 -1945,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00336772,8.1282148,8.137169,8.132288352,8.132799333,1,CMIP5 -1946,ph,ocean,ph,historical,1,Simulated,global,0.002778777,8.128757,8.136677,8.133089629,8.133021,1,CMIP5 -1946,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010503293,8.121723,8.148714,8.137950686,8.1432258,1,CMIP5 -1946,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003238972,8.1282672,8.1370386,8.132156162,8.131919333,1,CMIP5 -1947,ph,ocean,ph,historical,1,Simulated,global,0.002782111,8.129326,8.137268,8.132964686,8.132252333,1,CMIP5 -1947,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009633899,8.123138,8.146395,8.137437848,8.143069,1,CMIP5 -1947,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003470973,8.1279062,8.1371904,8.132102371,8.131854,1,CMIP5 -1948,ph,ocean,ph,historical,1,Simulated,global,0.003085323,8.127797,8.136858,8.132726686,8.132309,1,CMIP5 -1948,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010024066,8.1223922,8.147304333,8.137120905,8.140485,1,CMIP5 -1948,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003603553,8.128063,8.1368426,8.131877562,8.131609333,1,CMIP5 -1949,ph,ocean,ph,historical,1,Simulated,global,0.003111626,8.1279,8.136911,8.132771971,8.132636,1,CMIP5 -1949,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010168448,8.1220826,8.146733333,8.137257648,8.143174,1,CMIP5 -1949,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003502491,8.1279078,8.1368984,8.13190679,8.131273667,1,CMIP5 -1950,ph,ocean,ph,historical,1,Simulated,global,0.003118021,8.127055,8.136354,8.1323872,8.13205,1,CMIP5 -1950,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010395221,8.1212642,8.147238667,8.13688916,8.142609,1,CMIP5 -1950,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00339782,8.127346,8.1361478,8.131519919,8.1314355,1,CMIP5 -1951,ph,ocean,ph,historical,1,Simulated,global,0.002972746,8.127526,8.136164,8.132463981,8.132307,1,CMIP5 -1951,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00996498,8.1222362,8.146472,8.136840076,8.142039,1,CMIP5 -1951,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003354969,8.1278236,8.1364,8.131622812,8.13163275,1,CMIP5 -1952,ph,ocean,ph,historical,1,Simulated,global,0.002721391,8.127727,8.135676,8.131895645,8.13125525,1,CMIP5 -1952,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010051713,8.1210846,8.146819333,8.135975833,8.139976,1,CMIP5 -1952,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003229849,8.1276934,8.1356732,8.131107705,8.131219,1,CMIP5 -1953,ph,ocean,ph,historical,1,Simulated,global,0.002743287,8.127767,8.135749,8.131808771,8.131175,1,CMIP5 -1953,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010269107,8.1208864,8.148143,8.13618116,8.1408538,1,CMIP5 -1953,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003366101,8.1273282,8.1359332,8.13097289,8.1309845,1,CMIP5 -1954,ph,ocean,ph,historical,1,Simulated,global,0.002769994,8.127903,8.135417,8.131432636,8.13049625,1,CMIP5 -1954,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009913451,8.1208258,8.145132,8.135531629,8.1404146,1,CMIP5 -1954,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003369982,8.126735,8.135591,8.130643214,8.1302745,1,CMIP5 -1955,ph,ocean,ph,historical,1,Simulated,global,0.002808907,8.126559,8.134637,8.130669674,8.129964,1,CMIP5 -1955,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009598137,8.1205574,8.144348,8.135122529,8.1394038,1,CMIP5 -1955,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003271874,8.1264042,8.1347452,8.129817557,8.1294375,1,CMIP5 -1956,ph,ocean,ph,historical,1,Simulated,global,0.002834049,8.126008,8.134255,8.130082648,8.129342,1,CMIP5 -1956,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010283061,8.1179296,8.144547,8.133986329,8.139699,1,CMIP5 -1956,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003361711,8.125672,8.1340402,8.12932885,8.12937375,1,CMIP5 -1957,ph,ocean,ph,historical,1,Simulated,global,0.002936957,8.124473,8.133287,8.129381605,8.128946,1,CMIP5 -1957,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00954447,8.1176742,8.142458333,8.133428483,8.1384876,1,CMIP5 -1957,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003442251,8.124409,8.1334982,8.128601402,8.12868875,1,CMIP5 -1958,ph,ocean,ph,historical,1,Simulated,global,0.00266304,8.124351,8.132209,8.128724467,8.128387,1,CMIP5 -1958,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009725934,8.1170094,8.143329,8.132940288,8.1372472,1,CMIP5 -1958,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003311054,8.124344,8.1330444,8.12791801,8.128245,1,CMIP5 -1959,ph,ocean,ph,historical,1,Simulated,global,0.002729201,8.124125,8.13222,8.128240705,8.127538,1,CMIP5 -1959,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010134985,8.1161522,8.142853,8.132342738,8.1370778,1,CMIP5 -1959,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003328725,8.124225,8.1324566,8.127459705,8.127595,1,CMIP5 -1960,ph,ocean,ph,historical,1,Simulated,global,0.002667225,8.123464,8.131132,8.127604064,8.127282,1,CMIP5 -1960,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010205268,8.1161294,8.142889,8.131677448,8.1367494,1,CMIP5 -1960,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003165012,8.1236892,8.1317854,8.126827371,8.126378,1,CMIP5 -1961,ph,ocean,ph,historical,1,Simulated,global,0.002709423,8.122706,8.130379,8.126992429,8.126346,1,CMIP5 -1961,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009950572,8.115591,8.14185,8.130990257,8.134997,1,CMIP5 -1961,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00335625,8.122939,8.1314446,8.126223464,8.12624525,1,CMIP5 -1962,ph,ocean,ph,historical,1,Simulated,global,0.002579546,8.122769,8.130144,8.126446074,8.12623725,1,CMIP5 -1962,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009668563,8.114737,8.140736,8.130610579,8.134357,1,CMIP5 -1962,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003303424,8.1222126,8.1304464,8.125638333,8.125799,1,CMIP5 -1963,ph,ocean,ph,historical,1,Simulated,global,0.002966698,8.120885,8.129632,8.125897517,8.12572775,1,CMIP5 -1963,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009693547,8.1149218,8.140817,8.129413564,8.13241,1,CMIP5 -1963,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003550862,8.121163,8.1303848,8.12521496,8.125460667,1,CMIP5 -1964,ph,ocean,ph,historical,1,Simulated,global,0.003159168,8.119743,8.128804,8.125689162,8.125935,1,CMIP5 -1964,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009231363,8.1144762,8.138452,8.128663605,8.131363,1,CMIP5 -1964,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003691175,8.119758,8.130686,8.125110326,8.12526575,1,CMIP5 -1965,ph,ocean,ph,historical,1,Simulated,global,0.002665005,8.1204,8.127837,8.125000207,8.12456125,1,CMIP5 -1965,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010200127,8.1132898,8.14027,8.128553524,8.132095,1,CMIP5 -1965,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003149799,8.120891,8.1291462,8.124316705,8.12445,1,CMIP5 -1966,ph,ocean,ph,historical,1,Simulated,global,0.002327971,8.119723,8.126703,8.123795519,8.1239735,1,CMIP5 -1966,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010398804,8.1106896,8.138236,8.12705035,8.129538,1,CMIP5 -1966,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002825337,8.1203418,8.1271216,8.123158271,8.1237245,1,CMIP5 -1967,ph,ocean,ph,historical,1,Simulated,global,0.002498442,8.118757,8.125997,8.122790205,8.1224485,1,CMIP5 -1967,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010866651,8.1098568,8.13951,8.126592336,8.129378,1,CMIP5 -1967,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003231144,8.1189304,8.1270006,8.122052857,8.122215,1,CMIP5 -1968,ph,ocean,ph,historical,1,Simulated,global,0.0028535,8.116892,8.125507,8.121391948,8.1215055,1,CMIP5 -1968,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010152515,8.1092454,8.134956,8.125196505,8.130057,1,CMIP5 -1968,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003550112,8.117245,8.125692,8.120656702,8.120872667,1,CMIP5 -1969,ph,ocean,ph,historical,1,Simulated,global,0.002822062,8.115885,8.124343,8.120701036,8.12095225,1,CMIP5 -1969,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009919699,8.1084494,8.134469,8.123828705,8.127553,1,CMIP5 -1969,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003556533,8.116324,8.125252,8.120097733,8.120424333,1,CMIP5 -1970,ph,ocean,ph,historical,1,Simulated,global,0.002638298,8.11544,8.122831,8.119647307,8.11915275,1,CMIP5 -1970,ph,ocean,ph_HL,historical,1,Simulated,HL,0.01045894,8.1083792,8.133347,8.123173745,8.127823,1,CMIP5 -1970,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003132262,8.115721,8.1236096,8.11896799,8.119119,1,CMIP5 -1971,ph,ocean,ph,historical,1,Simulated,global,0.002361962,8.114538,8.121701,8.118435021,8.11800575,1,CMIP5 -1971,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009721049,8.1076506,8.131241,8.122247321,8.128987,1,CMIP5 -1971,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002731578,8.1146082,8.1217726,8.117708043,8.1178655,1,CMIP5 -1972,ph,ocean,ph,historical,1,Simulated,global,0.002486286,8.113389,8.120602,8.11707429,8.1165935,1,CMIP5 -1972,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010446223,8.105903,8.130706,8.120927874,8.1269362,1,CMIP5 -1972,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002930373,8.1126988,8.1207106,8.116337033,8.1165875,1,CMIP5 -1973,ph,ocean,ph,historical,1,Simulated,global,0.002450105,8.11262,8.119228,8.115955731,8.11550425,1,CMIP5 -1973,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010285103,8.1042382,8.13037,8.119507864,8.124864,1,CMIP5 -1973,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003272369,8.111616,8.1204088,8.115276057,8.115547,1,CMIP5 -1974,ph,ocean,ph,historical,1,Simulated,global,0.002786265,8.110226,8.118728,8.114783717,8.11442875,1,CMIP5 -1974,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010049407,8.1034048,8.126877,8.118070679,8.124252,1,CMIP5 -1974,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00317667,8.1109534,8.1186302,8.114148026,8.11434125,1,CMIP5 -1975,ph,ocean,ph,historical,1,Simulated,global,0.002612227,8.109926,8.117757,8.11392094,8.11357825,1,CMIP5 -1975,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009783168,8.103274,8.127107,8.117113776,8.121413,1,CMIP5 -1975,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003121415,8.109982,8.1174916,8.113303981,8.113555,1,CMIP5 -1976,ph,ocean,ph,historical,1,Simulated,global,0.002702943,8.1083,8.116199,8.112728279,8.11253875,1,CMIP5 -1976,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010098866,8.1019134,8.126461333,8.115916998,8.119528,1,CMIP5 -1976,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003114451,8.1086608,8.1164508,8.112106764,8.11253675,1,CMIP5 -1977,ph,ocean,ph,historical,1,Simulated,global,0.002886212,8.106483,8.115087,8.11102691,8.1110765,1,CMIP5 -1977,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009977334,8.0998494,8.124003,8.114574362,8.119546,1,CMIP5 -1977,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003375851,8.1066888,8.1147304,8.110342338,8.1110025,1,CMIP5 -1978,ph,ocean,ph,historical,1,Simulated,global,0.002738968,8.105923,8.114117,8.109806026,8.10968425,1,CMIP5 -1978,ph,ocean,ph_HL,historical,1,Simulated,HL,0.010212715,8.0992922,8.123172,8.113651357,8.1189098,1,CMIP5 -1978,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003071765,8.1055764,8.1129132,8.109075443,8.1097185,1,CMIP5 -1979,ph,ocean,ph,historical,1,Simulated,global,0.003015992,8.102934,8.112034,8.107918448,8.107752,1,CMIP5 -1979,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009759332,8.0970338,8.11962,8.111336183,8.1172594,1,CMIP5 -1979,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003450919,8.103587,8.1123194,8.107258174,8.10757675,1,CMIP5 -1980,ph,ocean,ph,historical,1,Simulated,global,0.002796168,8.102088,8.110673,8.106622517,8.10665775,1,CMIP5 -1980,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009776313,8.0956922,8.11866,8.11001666,8.115105,1,CMIP5 -1980,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003155197,8.1025496,8.1105474,8.105966,8.106165,1,CMIP5 -1981,ph,ocean,ph,historical,1,Simulated,global,0.002787886,8.100924,8.109282,8.105216545,8.10475475,1,CMIP5 -1981,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009731226,8.0950308,8.117716,8.108409157,8.1134298,1,CMIP5 -1981,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003115279,8.1010626,8.1090702,8.1046094,8.104874,1,CMIP5 -1982,ph,ocean,ph,historical,1,Simulated,global,0.002684995,8.099091,8.107113,8.103928095,8.1039,1,CMIP5 -1982,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009817492,8.0928688,8.116654,8.106347919,8.111583,1,CMIP5 -1982,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003061005,8.099917,8.1080912,8.1034644,8.103924,1,CMIP5 -1983,ph,ocean,ph,historical,1,Simulated,global,0.002885197,8.098249,8.1071,8.103149983,8.10311375,1,CMIP5 -1983,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008883662,8.0923828,8.114006,8.104946874,8.1101054,1,CMIP5 -1983,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003177328,8.099002,8.106832,8.102804236,8.10343325,1,CMIP5 -1984,ph,ocean,ph,historical,1,Simulated,global,0.002636777,8.096794,8.104455,8.101076893,8.10102625,1,CMIP5 -1984,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009055443,8.090315,8.11203,8.102730714,8.106968,1,CMIP5 -1984,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003100674,8.097646,8.1048772,8.100759595,8.1016245,1,CMIP5 -1985,ph,ocean,ph,historical,1,Simulated,global,0.002715239,8.095095,8.103058,8.099492312,8.09948825,1,CMIP5 -1985,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00902385,8.088432,8.110591,8.101645429,8.106789,1,CMIP5 -1985,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003265945,8.095671,8.1034924,8.099084638,8.10003,1,CMIP5 -1986,ph,ocean,ph,historical,1,Simulated,global,0.00285604,8.093955,8.102129,8.098074648,8.098286,1,CMIP5 -1986,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008859092,8.0876666,8.108811667,8.100316681,8.106027,1,CMIP5 -1986,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00333666,8.094123,8.1016226,8.097648752,8.098701667,1,CMIP5 -1987,ph,ocean,ph,historical,1,Simulated,global,0.002585157,8.092589,8.10009,8.09627844,8.09611075,1,CMIP5 -1987,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009663281,8.0861544,8.108808,8.099445643,8.1052536,1,CMIP5 -1987,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003125515,8.092044,8.1000034,8.095686231,8.096323667,1,CMIP5 -1988,ph,ocean,ph,historical,1,Simulated,global,0.002170665,8.091428,8.09729,8.094553086,8.094431,1,CMIP5 -1988,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009068055,8.0850962,8.107498,8.097260662,8.101933,1,CMIP5 -1988,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00293542,8.090745,8.0985316,8.094044964,8.094612,1,CMIP5 -1989,ph,ocean,ph,historical,1,Simulated,global,0.002490444,8.08864,8.096134,8.092420974,8.09216175,1,CMIP5 -1989,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009136935,8.0839666,8.105001,8.0953223,8.100563,1,CMIP5 -1989,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003023169,8.088777,8.0960634,8.091875757,8.09187,1,CMIP5 -1990,ph,ocean,ph,historical,1,Simulated,global,0.002658146,8.086673,8.094393,8.090711786,8.0903995,1,CMIP5 -1990,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00952601,8.080438,8.102424,8.092563005,8.097286,1,CMIP5 -1990,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003249229,8.0869994,8.0950556,8.090361869,8.090354333,1,CMIP5 -1991,ph,ocean,ph,historical,1,Simulated,global,0.002783415,8.085672,8.094284,8.0900525,8.0898515,1,CMIP5 -1991,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009112415,8.079353,8.101391,8.091544348,8.097356333,1,CMIP5 -1991,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003132747,8.0863354,8.0938314,8.089779329,8.089901,1,CMIP5 -1992,ph,ocean,ph,historical,1,Simulated,global,0.002993579,8.085168,8.094472,8.090198779,8.089788,1,CMIP5 -1992,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009021624,8.078889,8.101173,8.090280417,8.0953612,1,CMIP5 -1992,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003225681,8.086307,8.094148,8.090192752,8.090906,1,CMIP5 -1993,ph,ocean,ph,historical,1,Simulated,global,0.002757566,8.08346,8.092027,8.088254343,8.088047,1,CMIP5 -1993,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009087057,8.077425,8.100313,8.089044329,8.094326,1,CMIP5 -1993,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002906248,8.084555,8.091624,8.088117514,8.088811,1,CMIP5 -1994,ph,ocean,ph,historical,1,Simulated,global,0.00256924,8.082787,8.090362,8.086684231,8.08611875,1,CMIP5 -1994,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008937286,8.075688,8.096887,8.0875306,8.0931306,1,CMIP5 -1994,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002839622,8.083463,8.0900714,8.08653691,8.0872495,1,CMIP5 -1995,ph,ocean,ph,historical,1,Simulated,global,0.002608698,8.080944,8.088708,8.085071269,8.08427675,1,CMIP5 -1995,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008785999,8.074984,8.094957,8.086082086,8.0919144,1,CMIP5 -1995,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002915861,8.0819638,8.0890708,8.08488974,8.08536425,1,CMIP5 -1996,ph,ocean,ph,historical,1,Simulated,global,0.002688945,8.078966,8.087247,8.083335695,8.082871,1,CMIP5 -1996,ph,ocean,ph_HL,historical,1,Simulated,HL,0.009311458,8.072108,8.094152,8.084530179,8.0906682,1,CMIP5 -1996,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002871595,8.08021,8.0865414,8.083129169,8.084059333,1,CMIP5 -1997,ph,ocean,ph,historical,1,Simulated,global,0.002816235,8.077052,8.085527,8.081325293,8.08052325,1,CMIP5 -1997,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008555409,8.071382,8.091855,8.082173857,8.087809,1,CMIP5 -1997,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003186935,8.077843,8.0851706,8.081179624,8.0817055,1,CMIP5 -1998,ph,ocean,ph,historical,1,Simulated,global,0.002738644,8.075677,8.083794,8.079736712,8.07894,1,CMIP5 -1998,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008997093,8.069056,8.089729,8.080217305,8.086300333,1,CMIP5 -1998,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003023347,8.0761666,8.0833776,8.07966335,8.08026425,1,CMIP5 -1999,ph,ocean,ph,historical,1,Simulated,global,0.002677362,8.073792,8.081532,8.077855045,8.077137,1,CMIP5 -1999,ph,ocean,ph_HL,historical,1,Simulated,HL,0.0089437,8.067957,8.08987,8.07863311,8.0834682,1,CMIP5 -1999,ph,ocean,ph_LL,historical,1,Simulated,LL,0.00303604,8.0744874,8.0818626,8.077730143,8.078287,1,CMIP5 -2000,ph,ocean,ph,historical,1,Simulated,global,0.002763837,8.072133,8.080254,8.076245374,8.07568175,1,CMIP5 -2000,ph,ocean,ph_HL,historical,1,Simulated,HL,0.00878281,8.064564,8.086662,8.076597919,8.0810708,1,CMIP5 -2000,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003007993,8.0727638,8.079955,8.076199805,8.0770605,1,CMIP5 -2001,ph,ocean,ph,historical,1,Simulated,global,0.002588455,8.071373,8.078831,8.074498574,8.07389475,1,CMIP5 -2001,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008216231,8.063202,8.082867,8.074267412,8.078820333,1,CMIP5 -2001,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002932887,8.070885,8.07829,8.074558198,8.074957333,1,CMIP5 -2002,ph,ocean,ph,historical,1,Simulated,global,0.002773332,8.068755,8.076707,8.07269894,8.072158,1,CMIP5 -2002,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008656038,8.060367,8.081101,8.07184645,8.0763342,1,CMIP5 -2002,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002943974,8.0691572,8.0765884,8.072880526,8.07345775,1,CMIP5 -2003,ph,ocean,ph,historical,1,Simulated,global,0.002822339,8.066118,8.074465,8.070590095,8.070581,1,CMIP5 -2003,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008729873,8.058615,8.080299,8.070393,8.0731944,1,CMIP5 -2003,ph,ocean,ph_LL,historical,1,Simulated,LL,0.003064149,8.067377,8.0747438,8.070645281,8.070942667,1,CMIP5 -2004,ph,ocean,ph,historical,1,Simulated,global,0.002269918,8.065153,8.071626,8.068762371,8.068443,1,CMIP5 -2004,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008275335,8.056266,8.077112,8.068047893,8.0727468,1,CMIP5 -2004,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002598934,8.0660156,8.0728694,8.06891044,8.068782333,1,CMIP5 -2005,ph,ocean,ph,historical,1,Simulated,global,0.002158914,8.064173,8.069625,8.067161157,8.06688,1,CMIP5 -2005,ph,ocean,ph_HL,historical,1,Simulated,HL,0.008059085,8.054726,8.075287,8.066013979,8.0692732,1,CMIP5 -2005,ph,ocean,ph_LL,historical,1,Simulated,LL,0.002447465,8.0639604,8.0710808,8.067391243,8.067972,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/rcp85/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/rcp85/ensemble_mean_model.csv deleted file mode 100644 index 8d682473f..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/rcp85/ensemble_mean_model.csv +++ /dev/null @@ -1,3511 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"CanESM2","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.067875 -"CanESM2","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.0653956 -"CanESM2","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.063772 -"CanESM2","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.0618216 -"CanESM2","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.0596074 -"CanESM2","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.0579822 -"CanESM2","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.0555294 -"CanESM2","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.053266 -"CanESM2","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.050995 -"CanESM2","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.0488512 -"CanESM2","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.046646 -"CanESM2","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.0440788 -"CanESM2","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.0417996 -"CanESM2","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.039399 -"CanESM2","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.0366604 -"CanESM2","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.0337616 -"CanESM2","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.0314656 -"CanESM2","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.0286942 -"CanESM2","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.0258998 -"CanESM2","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.023363 -"CanESM2","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.0206234 -"CanESM2","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.018038 -"CanESM2","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.0149484 -"CanESM2","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.0121794 -"CanESM2","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.0092432 -"CanESM2","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.006466 -"CanESM2","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",8.0035014 -"CanESM2","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",8.0003924 -"CanESM2","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.9972914 -"CanESM2","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.9941088 -"CanESM2","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.9908654 -"CanESM2","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.987876 -"CanESM2","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.984585 -"CanESM2","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.9812462 -"CanESM2","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.9778224 -"CanESM2","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.974636 -"CanESM2","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.9710038 -"CanESM2","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.9675704 -"CanESM2","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.963983 -"CanESM2","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.9604902 -"CanESM2","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.9565182 -"CanESM2","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.9528042 -"CanESM2","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.9490934 -"CanESM2","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.9453694 -"CanESM2","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.9415222 -"CanESM2","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.9376044 -"CanESM2","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.9334678 -"CanESM2","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.9294842 -"CanESM2","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.925324 -"CanESM2","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.921364 -"CanESM2","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.9173452 -"CanESM2","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.9129036 -"CanESM2","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.9089014 -"CanESM2","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.9043268 -"CanESM2","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.9001646 -"CanESM2","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.8959226 -"CanESM2","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.8916062 -"CanESM2","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.8872954 -"CanESM2","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.8829708 -"CanESM2","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.8784728 -"CanESM2","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.8740246 -"CanESM2","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.8697114 -"CanESM2","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.865254 -"CanESM2","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.86097 -"CanESM2","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.8564126 -"CanESM2","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.8521134 -"CanESM2","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.8475642 -"CanESM2","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.8432692 -"CanESM2","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.8388602 -"CanESM2","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.8342628 -"CanESM2","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.8299342 -"CanESM2","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.8257552 -"CanESM2","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.821391 -"CanESM2","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.8171126 -"CanESM2","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.812907 -"CanESM2","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.808464 -"CanESM2","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.8040552 -"CanESM2","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.799824 -"CanESM2","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.7956766 -"CanESM2","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.791392 -"CanESM2","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.786968 -"CanESM2","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.7828896 -"CanESM2","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.7787968 -"CanESM2","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.7747666 -"CanESM2","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.770523 -"CanESM2","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.7664632 -"CanESM2","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.7622074 -"CanESM2","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.7582408 -"CanESM2","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.754294 -"CanESM2","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.7500458 -"CanESM2","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.746038 -"CanESM2","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.7419544 -"CanESM2","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.737908 -"CanESM2","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.7342376 -"CanESM2","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.7300574 -"CanESM2","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.0578004 -"CanESM2","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.0553774 -"CanESM2","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.0539172 -"CanESM2","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.0518458 -"CanESM2","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.0498636 -"CanESM2","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.0479064 -"CanESM2","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.0455706 -"CanESM2","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.0432112 -"CanESM2","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.0405954 -"CanESM2","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.0377014 -"CanESM2","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.0362224 -"CanESM2","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.0335698 -"CanESM2","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.0309148 -"CanESM2","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.0286848 -"CanESM2","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.0252802 -"CanESM2","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.021719 -"CanESM2","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.02011 -"CanESM2","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.0174126 -"CanESM2","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.0143462 -"CanESM2","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.01135 -"CanESM2","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.0091376 -"CanESM2","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.005552 -"CanESM2","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.0025552 -"CanESM2","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",7.9990368 -"CanESM2","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",7.9969544 -"CanESM2","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",7.9938688 -"CanESM2","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",7.9907596 -"CanESM2","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.986944 -"CanESM2","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.9834696 -"CanESM2","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.9802712 -"CanESM2","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.976709 -"CanESM2","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.9737126 -"CanESM2","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.9699102 -"CanESM2","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.966639 -"CanESM2","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.9627164 -"CanESM2","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.9594268 -"CanESM2","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.9558044 -"CanESM2","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.9523194 -"CanESM2","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.9481488 -"CanESM2","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.9445736 -"CanESM2","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.9402598 -"CanESM2","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.9359658 -"CanESM2","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.9321936 -"CanESM2","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.9285914 -"CanESM2","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.924094 -"CanESM2","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.919805 -"CanESM2","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.9159792 -"CanESM2","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.911665 -"CanESM2","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.9074198 -"CanESM2","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.9026172 -"CanESM2","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.8985812 -"CanESM2","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.8935066 -"CanESM2","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.88931 -"CanESM2","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.884857 -"CanESM2","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.880041 -"CanESM2","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.8756814 -"CanESM2","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.8711036 -"CanESM2","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.8661654 -"CanESM2","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.8615656 -"CanESM2","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.8570106 -"CanESM2","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.8519766 -"CanESM2","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.8480352 -"CanESM2","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.8425194 -"CanESM2","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.8377238 -"CanESM2","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.8330338 -"CanESM2","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.8283276 -"CanESM2","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.8240112 -"CanESM2","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.8188604 -"CanESM2","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.8141204 -"CanESM2","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.8091984 -"CanESM2","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.8044482 -"CanESM2","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.7999976 -"CanESM2","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.7954604 -"CanESM2","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.791017 -"CanESM2","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.7860352 -"CanESM2","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.7811862 -"CanESM2","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.7767662 -"CanESM2","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.7720412 -"CanESM2","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.7674416 -"CanESM2","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.7633784 -"CanESM2","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.758952 -"CanESM2","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.7541144 -"CanESM2","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.7495952 -"CanESM2","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.745341 -"CanESM2","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.7399942 -"CanESM2","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.7359368 -"CanESM2","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.7313834 -"CanESM2","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.7269362 -"CanESM2","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.7228012 -"CanESM2","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.7181162 -"CanESM2","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.714126 -"CanESM2","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.7096692 -"CanESM2","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.7048912 -"CanESM2","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.7004992 -"CanESM2","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.6962994 -"CanESM2","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.0696374 -"CanESM2","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.067148 -"CanESM2","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.0654958 -"CanESM2","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.0635664 -"CanESM2","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.0613118 -"CanESM2","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.0597448 -"CanESM2","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.057272 -"CanESM2","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.0550248 -"CanESM2","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.0528142 -"CanESM2","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.0508018 -"CanESM2","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.0484692 -"CanESM2","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.045917 -"CanESM2","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.0437038 -"CanESM2","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.0412728 -"CanESM2","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.0386514 -"CanESM2","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.0358682 -"CanESM2","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.0334518 -"CanESM2","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.0306674 -"CanESM2","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.0279212 -"CanESM2","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.0254642 -"CanESM2","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.0226326 -"CanESM2","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.0202222 -"CanESM2","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.0171162 -"CanESM2","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.0144782 -"CanESM2","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.011393 -"CanESM2","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.0086698 -"CanESM2","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",8.0057302 -"CanESM2","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",8.002745 -"CanESM2","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.999709 -"CanESM2","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.9965292 -"CanESM2","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.9933418 -"CanESM2","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.9903532 -"CanESM2","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.987152 -"CanESM2","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.9838012 -"CanESM2","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.9804646 -"CanESM2","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.9772966 -"CanESM2","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.9736624 -"CanESM2","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.970238 -"CanESM2","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.9667532 -"CanESM2","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.9632744 -"CanESM2","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.9593618 -"CanESM2","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.9557498 -"CanESM2","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.9520496 -"CanESM2","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.9483044 -"CanESM2","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.9445706 -"CanESM2","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.9407176 -"CanESM2","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.936527 -"CanESM2","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.932601 -"CanESM2","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.9284562 -"CanESM2","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.9246434 -"CanESM2","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.9206276 -"CanESM2","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.9162968 -"CanESM2","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.9123288 -"CanESM2","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.9077328 -"CanESM2","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.9036848 -"CanESM2","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.8994634 -"CanESM2","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.8951924 -"CanESM2","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.8909916 -"CanESM2","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.8867154 -"CanESM2","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.8822272 -"CanESM2","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.8778816 -"CanESM2","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.8735034 -"CanESM2","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.869231 -"CanESM2","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.8650366 -"CanESM2","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.8605022 -"CanESM2","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.8562742 -"CanESM2","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.8516842 -"CanESM2","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.847539 -"CanESM2","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.8431876 -"CanESM2","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.838647 -"CanESM2","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.8343926 -"CanESM2","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.830261 -"CanESM2","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.825927 -"CanESM2","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.8216774 -"CanESM2","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.817608 -"CanESM2","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.8132352 -"CanESM2","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.8088286 -"CanESM2","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.8046836 -"CanESM2","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.8006156 -"CanESM2","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.7962924 -"CanESM2","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.7918686 -"CanESM2","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.7879232 -"CanESM2","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.7839048 -"CanESM2","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.7799136 -"CanESM2","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.7758632 -"CanESM2","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.7718026 -"CanESM2","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.7675994 -"CanESM2","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.7637168 -"CanESM2","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.759803 -"CanESM2","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.755631 -"CanESM2","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.7516202 -"CanESM2","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.7476016 -"CanESM2","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.7436836 -"CanESM2","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.7401394 -"CanESM2","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.7359624 -"CESM1-BGC","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.065136 -"CESM1-BGC","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.06315 -"CESM1-BGC","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.061255 -"CESM1-BGC","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.059186 -"CESM1-BGC","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.057135 -"CESM1-BGC","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.054794 -"CESM1-BGC","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.052001 -"CESM1-BGC","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.049495 -"CESM1-BGC","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.048264 -"CESM1-BGC","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.045548 -"CESM1-BGC","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.043336 -"CESM1-BGC","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.040929 -"CESM1-BGC","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.038618 -"CESM1-BGC","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.036195 -"CESM1-BGC","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.033887 -"CESM1-BGC","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.031182 -"CESM1-BGC","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.028468 -"CESM1-BGC","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.025117 -"CESM1-BGC","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.022745 -"CESM1-BGC","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.020059 -"CESM1-BGC","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.017328 -"CESM1-BGC","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.014639 -"CESM1-BGC","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.011677 -"CESM1-BGC","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.009813 -"CESM1-BGC","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.006737 -"CESM1-BGC","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.003143 -"CESM1-BGC","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",8.00031 -"CESM1-BGC","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",7.997301 -"CESM1-BGC","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.994049 -"CESM1-BGC","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.990975 -"CESM1-BGC","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.988081 -"CESM1-BGC","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.984471 -"CESM1-BGC","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.981354 -"CESM1-BGC","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.977695 -"CESM1-BGC","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.974901 -"CESM1-BGC","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.97096 -"CESM1-BGC","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.96763 -"CESM1-BGC","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.963585 -"CESM1-BGC","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.960276 -"CESM1-BGC","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.956556 -"CESM1-BGC","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.953053 -"CESM1-BGC","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.948907 -"CESM1-BGC","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.945613 -"CESM1-BGC","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.941911 -"CESM1-BGC","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.937444 -"CESM1-BGC","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.933478 -"CESM1-BGC","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.929592 -"CESM1-BGC","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.925712 -"CESM1-BGC","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.92151 -"CESM1-BGC","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.917834 -"CESM1-BGC","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.913233 -"CESM1-BGC","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.909047 -"CESM1-BGC","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.904539 -"CESM1-BGC","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.899939 -"CESM1-BGC","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.895614 -"CESM1-BGC","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.891755 -"CESM1-BGC","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.88726 -"CESM1-BGC","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.883486 -"CESM1-BGC","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.878265 -"CESM1-BGC","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.874529 -"CESM1-BGC","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.869795 -"CESM1-BGC","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.86535 -"CESM1-BGC","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.860607 -"CESM1-BGC","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.856246 -"CESM1-BGC","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.852319 -"CESM1-BGC","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.847431 -"CESM1-BGC","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.843364 -"CESM1-BGC","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.838776 -"CESM1-BGC","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.834703 -"CESM1-BGC","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.829503 -"CESM1-BGC","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.825865 -"CESM1-BGC","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.821266 -"CESM1-BGC","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.816561 -"CESM1-BGC","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.812993 -"CESM1-BGC","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.808577 -"CESM1-BGC","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.803472 -"CESM1-BGC","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.799154 -"CESM1-BGC","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.795363 -"CESM1-BGC","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.791 -"CESM1-BGC","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.786731 -"CESM1-BGC","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.782181 -"CESM1-BGC","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.777961 -"CESM1-BGC","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.773531 -"CESM1-BGC","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.76974 -"CESM1-BGC","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.765379 -"CESM1-BGC","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.761511 -"CESM1-BGC","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.757096 -"CESM1-BGC","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.753092 -"CESM1-BGC","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.748785 -"CESM1-BGC","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.74514 -"CESM1-BGC","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.741103 -"CESM1-BGC","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.736827 -"CESM1-BGC","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.73303 -"CESM1-BGC","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.729169 -"CESM1-BGC","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.725296 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.073005 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.072238 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.069162 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.068619 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.06606 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.062777 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.058429 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.055683 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.055359 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.053024 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.048877 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.045704 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.044235 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.041094 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.038948 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.035507 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.03182 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.028774 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.026342 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.0251 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.020428 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.016389 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.01477 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",8.012723 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",8.008375 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",8.005943 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",8.002543 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.998871 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.99637 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.991134 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.987716 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.983961 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.980395 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.975711 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.974726 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.969808 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.966325 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.960607 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.957581 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.953214 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.948733 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.945814 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.940956 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.937353 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.932612 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.926087 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.923785 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.920292 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.914568 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.910698 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.903195 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.899512 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.894367 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.889552 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.885748 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.883218 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.8785 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.874828 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.867881 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.86388 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.859378 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.854617 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.848968 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.846092 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.839827 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.835779 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.829552 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.825709 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.822282 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.815164 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.810219 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.806632 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.802491 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.79694 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.791237 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.785848 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.78021 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.776694 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.771732 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.768128 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.762893 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.757941 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.754942 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.75132 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.744822 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.739753 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.735758 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.731479 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.727847 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.722352 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.719209 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.713366 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.709849 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.707516 -"CESM1-BGC","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.702565 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.063754 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.061553 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.059866 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.057529 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.055567 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.053392 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.050871 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.048408 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.047017 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.044234 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.042362 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.04009 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.037632 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.035334 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.032998 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.030422 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.027879 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.024475 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.022114 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.019174 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.016783 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.014332 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.011133 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.009301 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.006449 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.002651 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",7.999917 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",7.997026 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.993641 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.990947 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.988145 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.984561 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.981523 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.978044 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.974931 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.971163 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.96786 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.964108 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.96075 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.957143 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.953812 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.949451 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.946431 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.942712 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.938293 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.934777 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.930613 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.926664 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.92273 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.919087 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.914996 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.910722 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.906326 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.901763 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.897347 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.893255 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.888799 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.885007 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.880089 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.8764 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.871625 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.867236 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.862651 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.858029 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.854513 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.849478 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.84579 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.841071 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.836885 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.832022 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.828614 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.823837 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.819032 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.815813 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.811623 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.806568 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.802481 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.798643 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.794384 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.789999 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.785569 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.781477 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.776797 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.772976 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.76899 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.765332 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.760844 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.756888 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.752463 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.749143 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.744949 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.740948 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.737101 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.732973 -"CESM1-BGC","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.729288 -"HadGEM2-ES","ph","ocean","ph","rcp85",2005,"Simulated",1,"global",8.072823 -"HadGEM2-ES","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.0633415 -"HadGEM2-ES","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.06110525 -"HadGEM2-ES","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.05877925 -"HadGEM2-ES","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.056822 -"HadGEM2-ES","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.05472075 -"HadGEM2-ES","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.052563 -"HadGEM2-ES","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.05062175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.048327 -"HadGEM2-ES","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.046069 -"HadGEM2-ES","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.0435725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.0410745 -"HadGEM2-ES","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.03849875 -"HadGEM2-ES","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.0358995 -"HadGEM2-ES","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.0335355 -"HadGEM2-ES","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.03081325 -"HadGEM2-ES","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.028283 -"HadGEM2-ES","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.02593625 -"HadGEM2-ES","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.02294875 -"HadGEM2-ES","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.0205535 -"HadGEM2-ES","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.01786525 -"HadGEM2-ES","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.01488975 -"HadGEM2-ES","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.012158 -"HadGEM2-ES","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.009292 -"HadGEM2-ES","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.00606775 -"HadGEM2-ES","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.00311175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.00034175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",7.99747525 -"HadGEM2-ES","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",7.9944745 -"HadGEM2-ES","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.99160425 -"HadGEM2-ES","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.98802175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.9849295 -"HadGEM2-ES","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.98160925 -"HadGEM2-ES","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.97808875 -"HadGEM2-ES","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.97434675 -"HadGEM2-ES","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.97139825 -"HadGEM2-ES","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.96825125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.96468475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.96118875 -"HadGEM2-ES","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.9572535 -"HadGEM2-ES","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.95329575 -"HadGEM2-ES","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.94982125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.94591475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.9422045 -"HadGEM2-ES","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.93831275 -"HadGEM2-ES","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.93446775 -"HadGEM2-ES","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.9309235 -"HadGEM2-ES","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.926558 -"HadGEM2-ES","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.922296 -"HadGEM2-ES","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.9183235 -"HadGEM2-ES","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.914395 -"HadGEM2-ES","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.90971475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.9052205 -"HadGEM2-ES","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.90093825 -"HadGEM2-ES","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.89659875 -"HadGEM2-ES","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.89273725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.88861125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.88435075 -"HadGEM2-ES","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.880211 -"HadGEM2-ES","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.876028 -"HadGEM2-ES","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.87094725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.866404 -"HadGEM2-ES","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.86175975 -"HadGEM2-ES","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.8571245 -"HadGEM2-ES","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.852703 -"HadGEM2-ES","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.84849425 -"HadGEM2-ES","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.844452 -"HadGEM2-ES","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.84000425 -"HadGEM2-ES","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.834943 -"HadGEM2-ES","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.83089625 -"HadGEM2-ES","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.8262495 -"HadGEM2-ES","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.82191375 -"HadGEM2-ES","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.81730125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.81262475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.80857725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.80414475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.80021425 -"HadGEM2-ES","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.795799 -"HadGEM2-ES","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.79186175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.787286 -"HadGEM2-ES","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.7829135 -"HadGEM2-ES","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.77806675 -"HadGEM2-ES","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.7743205 -"HadGEM2-ES","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.7698475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.76634125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.761739 -"HadGEM2-ES","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.75742375 -"HadGEM2-ES","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.75358825 -"HadGEM2-ES","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.74917725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.74582775 -"HadGEM2-ES","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.74161475 -"HadGEM2-ES","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.7373445 -"HadGEM2-ES","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.73308725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.72962 -"HadGEM2-ES","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.72582125 -"HadGEM2-ES","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.72254725 -"HadGEM2-ES","ph","ocean","ph","rcp85",2101,"Simulated",1,"global",7.717405 -"HadGEM2-ES","ph","ocean","ph","rcp85",2102,"Simulated",1,"global",7.713642 -"HadGEM2-ES","ph","ocean","ph","rcp85",2103,"Simulated",1,"global",7.710693 -"HadGEM2-ES","ph","ocean","ph","rcp85",2104,"Simulated",1,"global",7.706404 -"HadGEM2-ES","ph","ocean","ph","rcp85",2105,"Simulated",1,"global",7.702336 -"HadGEM2-ES","ph","ocean","ph","rcp85",2106,"Simulated",1,"global",7.697976 -"HadGEM2-ES","ph","ocean","ph","rcp85",2107,"Simulated",1,"global",7.693702 -"HadGEM2-ES","ph","ocean","ph","rcp85",2108,"Simulated",1,"global",7.690182 -"HadGEM2-ES","ph","ocean","ph","rcp85",2109,"Simulated",1,"global",7.686395 -"HadGEM2-ES","ph","ocean","ph","rcp85",2110,"Simulated",1,"global",7.683276 -"HadGEM2-ES","ph","ocean","ph","rcp85",2111,"Simulated",1,"global",7.679801 -"HadGEM2-ES","ph","ocean","ph","rcp85",2112,"Simulated",1,"global",7.676389 -"HadGEM2-ES","ph","ocean","ph","rcp85",2113,"Simulated",1,"global",7.672839 -"HadGEM2-ES","ph","ocean","ph","rcp85",2114,"Simulated",1,"global",7.668394 -"HadGEM2-ES","ph","ocean","ph","rcp85",2115,"Simulated",1,"global",7.664616 -"HadGEM2-ES","ph","ocean","ph","rcp85",2116,"Simulated",1,"global",7.661075 -"HadGEM2-ES","ph","ocean","ph","rcp85",2117,"Simulated",1,"global",7.657188 -"HadGEM2-ES","ph","ocean","ph","rcp85",2118,"Simulated",1,"global",7.654599 -"HadGEM2-ES","ph","ocean","ph","rcp85",2119,"Simulated",1,"global",7.650921 -"HadGEM2-ES","ph","ocean","ph","rcp85",2120,"Simulated",1,"global",7.646996 -"HadGEM2-ES","ph","ocean","ph","rcp85",2121,"Simulated",1,"global",7.644122 -"HadGEM2-ES","ph","ocean","ph","rcp85",2122,"Simulated",1,"global",7.640586 -"HadGEM2-ES","ph","ocean","ph","rcp85",2123,"Simulated",1,"global",7.637582 -"HadGEM2-ES","ph","ocean","ph","rcp85",2124,"Simulated",1,"global",7.633983 -"HadGEM2-ES","ph","ocean","ph","rcp85",2125,"Simulated",1,"global",7.630452 -"HadGEM2-ES","ph","ocean","ph","rcp85",2126,"Simulated",1,"global",7.627588 -"HadGEM2-ES","ph","ocean","ph","rcp85",2127,"Simulated",1,"global",7.623663 -"HadGEM2-ES","ph","ocean","ph","rcp85",2128,"Simulated",1,"global",7.619781 -"HadGEM2-ES","ph","ocean","ph","rcp85",2129,"Simulated",1,"global",7.616935 -"HadGEM2-ES","ph","ocean","ph","rcp85",2130,"Simulated",1,"global",7.614134 -"HadGEM2-ES","ph","ocean","ph","rcp85",2131,"Simulated",1,"global",7.61021 -"HadGEM2-ES","ph","ocean","ph","rcp85",2132,"Simulated",1,"global",7.607356 -"HadGEM2-ES","ph","ocean","ph","rcp85",2133,"Simulated",1,"global",7.604001 -"HadGEM2-ES","ph","ocean","ph","rcp85",2134,"Simulated",1,"global",7.600565 -"HadGEM2-ES","ph","ocean","ph","rcp85",2135,"Simulated",1,"global",7.597337 -"HadGEM2-ES","ph","ocean","ph","rcp85",2136,"Simulated",1,"global",7.594547 -"HadGEM2-ES","ph","ocean","ph","rcp85",2137,"Simulated",1,"global",7.591157 -"HadGEM2-ES","ph","ocean","ph","rcp85",2138,"Simulated",1,"global",7.588385 -"HadGEM2-ES","ph","ocean","ph","rcp85",2139,"Simulated",1,"global",7.584544 -"HadGEM2-ES","ph","ocean","ph","rcp85",2140,"Simulated",1,"global",7.58149 -"HadGEM2-ES","ph","ocean","ph","rcp85",2141,"Simulated",1,"global",7.578123 -"HadGEM2-ES","ph","ocean","ph","rcp85",2142,"Simulated",1,"global",7.575337 -"HadGEM2-ES","ph","ocean","ph","rcp85",2143,"Simulated",1,"global",7.572511 -"HadGEM2-ES","ph","ocean","ph","rcp85",2144,"Simulated",1,"global",7.570214 -"HadGEM2-ES","ph","ocean","ph","rcp85",2145,"Simulated",1,"global",7.567107 -"HadGEM2-ES","ph","ocean","ph","rcp85",2146,"Simulated",1,"global",7.564177 -"HadGEM2-ES","ph","ocean","ph","rcp85",2147,"Simulated",1,"global",7.560662 -"HadGEM2-ES","ph","ocean","ph","rcp85",2148,"Simulated",1,"global",7.557328 -"HadGEM2-ES","ph","ocean","ph","rcp85",2149,"Simulated",1,"global",7.554739 -"HadGEM2-ES","ph","ocean","ph","rcp85",2150,"Simulated",1,"global",7.551196 -"HadGEM2-ES","ph","ocean","ph","rcp85",2151,"Simulated",1,"global",7.549102 -"HadGEM2-ES","ph","ocean","ph","rcp85",2152,"Simulated",1,"global",7.546036 -"HadGEM2-ES","ph","ocean","ph","rcp85",2153,"Simulated",1,"global",7.54331 -"HadGEM2-ES","ph","ocean","ph","rcp85",2154,"Simulated",1,"global",7.540615 -"HadGEM2-ES","ph","ocean","ph","rcp85",2155,"Simulated",1,"global",7.537535 -"HadGEM2-ES","ph","ocean","ph","rcp85",2156,"Simulated",1,"global",7.535116 -"HadGEM2-ES","ph","ocean","ph","rcp85",2157,"Simulated",1,"global",7.532575 -"HadGEM2-ES","ph","ocean","ph","rcp85",2158,"Simulated",1,"global",7.529573 -"HadGEM2-ES","ph","ocean","ph","rcp85",2159,"Simulated",1,"global",7.526782 -"HadGEM2-ES","ph","ocean","ph","rcp85",2160,"Simulated",1,"global",7.524668 -"HadGEM2-ES","ph","ocean","ph","rcp85",2161,"Simulated",1,"global",7.522319 -"HadGEM2-ES","ph","ocean","ph","rcp85",2162,"Simulated",1,"global",7.519863 -"HadGEM2-ES","ph","ocean","ph","rcp85",2163,"Simulated",1,"global",7.517294 -"HadGEM2-ES","ph","ocean","ph","rcp85",2164,"Simulated",1,"global",7.515391 -"HadGEM2-ES","ph","ocean","ph","rcp85",2165,"Simulated",1,"global",7.512409 -"HadGEM2-ES","ph","ocean","ph","rcp85",2166,"Simulated",1,"global",7.510285 -"HadGEM2-ES","ph","ocean","ph","rcp85",2167,"Simulated",1,"global",7.508291 -"HadGEM2-ES","ph","ocean","ph","rcp85",2168,"Simulated",1,"global",7.506043 -"HadGEM2-ES","ph","ocean","ph","rcp85",2169,"Simulated",1,"global",7.50388 -"HadGEM2-ES","ph","ocean","ph","rcp85",2170,"Simulated",1,"global",7.501421 -"HadGEM2-ES","ph","ocean","ph","rcp85",2171,"Simulated",1,"global",7.499212 -"HadGEM2-ES","ph","ocean","ph","rcp85",2172,"Simulated",1,"global",7.49741 -"HadGEM2-ES","ph","ocean","ph","rcp85",2173,"Simulated",1,"global",7.494602 -"HadGEM2-ES","ph","ocean","ph","rcp85",2174,"Simulated",1,"global",7.492959 -"HadGEM2-ES","ph","ocean","ph","rcp85",2175,"Simulated",1,"global",7.490829 -"HadGEM2-ES","ph","ocean","ph","rcp85",2176,"Simulated",1,"global",7.489507 -"HadGEM2-ES","ph","ocean","ph","rcp85",2177,"Simulated",1,"global",7.487964 -"HadGEM2-ES","ph","ocean","ph","rcp85",2178,"Simulated",1,"global",7.485751 -"HadGEM2-ES","ph","ocean","ph","rcp85",2179,"Simulated",1,"global",7.483819 -"HadGEM2-ES","ph","ocean","ph","rcp85",2180,"Simulated",1,"global",7.482225 -"HadGEM2-ES","ph","ocean","ph","rcp85",2181,"Simulated",1,"global",7.480258 -"HadGEM2-ES","ph","ocean","ph","rcp85",2182,"Simulated",1,"global",7.478595 -"HadGEM2-ES","ph","ocean","ph","rcp85",2183,"Simulated",1,"global",7.476868 -"HadGEM2-ES","ph","ocean","ph","rcp85",2184,"Simulated",1,"global",7.475179 -"HadGEM2-ES","ph","ocean","ph","rcp85",2185,"Simulated",1,"global",7.473949 -"HadGEM2-ES","ph","ocean","ph","rcp85",2186,"Simulated",1,"global",7.471739 -"HadGEM2-ES","ph","ocean","ph","rcp85",2187,"Simulated",1,"global",7.470543 -"HadGEM2-ES","ph","ocean","ph","rcp85",2188,"Simulated",1,"global",7.46964 -"HadGEM2-ES","ph","ocean","ph","rcp85",2189,"Simulated",1,"global",7.467568 -"HadGEM2-ES","ph","ocean","ph","rcp85",2190,"Simulated",1,"global",7.465429 -"HadGEM2-ES","ph","ocean","ph","rcp85",2191,"Simulated",1,"global",7.463968 -"HadGEM2-ES","ph","ocean","ph","rcp85",2192,"Simulated",1,"global",7.462945 -"HadGEM2-ES","ph","ocean","ph","rcp85",2193,"Simulated",1,"global",7.462071 -"HadGEM2-ES","ph","ocean","ph","rcp85",2194,"Simulated",1,"global",7.46039 -"HadGEM2-ES","ph","ocean","ph","rcp85",2195,"Simulated",1,"global",7.458968 -"HadGEM2-ES","ph","ocean","ph","rcp85",2196,"Simulated",1,"global",7.457771 -"HadGEM2-ES","ph","ocean","ph","rcp85",2197,"Simulated",1,"global",7.456828 -"HadGEM2-ES","ph","ocean","ph","rcp85",2198,"Simulated",1,"global",7.455549 -"HadGEM2-ES","ph","ocean","ph","rcp85",2199,"Simulated",1,"global",7.454619 -"HadGEM2-ES","ph","ocean","ph","rcp85",2200,"Simulated",1,"global",7.453203 -"HadGEM2-ES","ph","ocean","ph","rcp85",2201,"Simulated",1,"global",7.451596 -"HadGEM2-ES","ph","ocean","ph","rcp85",2202,"Simulated",1,"global",7.450073 -"HadGEM2-ES","ph","ocean","ph","rcp85",2203,"Simulated",1,"global",7.44923 -"HadGEM2-ES","ph","ocean","ph","rcp85",2204,"Simulated",1,"global",7.448063 -"HadGEM2-ES","ph","ocean","ph","rcp85",2205,"Simulated",1,"global",7.446955 -"HadGEM2-ES","ph","ocean","ph","rcp85",2206,"Simulated",1,"global",7.446269 -"HadGEM2-ES","ph","ocean","ph","rcp85",2207,"Simulated",1,"global",7.44464 -"HadGEM2-ES","ph","ocean","ph","rcp85",2208,"Simulated",1,"global",7.443449 -"HadGEM2-ES","ph","ocean","ph","rcp85",2209,"Simulated",1,"global",7.442654 -"HadGEM2-ES","ph","ocean","ph","rcp85",2210,"Simulated",1,"global",7.441587 -"HadGEM2-ES","ph","ocean","ph","rcp85",2211,"Simulated",1,"global",7.440659 -"HadGEM2-ES","ph","ocean","ph","rcp85",2212,"Simulated",1,"global",7.439765 -"HadGEM2-ES","ph","ocean","ph","rcp85",2213,"Simulated",1,"global",7.439037 -"HadGEM2-ES","ph","ocean","ph","rcp85",2214,"Simulated",1,"global",7.438013 -"HadGEM2-ES","ph","ocean","ph","rcp85",2215,"Simulated",1,"global",7.437164 -"HadGEM2-ES","ph","ocean","ph","rcp85",2216,"Simulated",1,"global",7.436707 -"HadGEM2-ES","ph","ocean","ph","rcp85",2217,"Simulated",1,"global",7.436038 -"HadGEM2-ES","ph","ocean","ph","rcp85",2218,"Simulated",1,"global",7.43548 -"HadGEM2-ES","ph","ocean","ph","rcp85",2219,"Simulated",1,"global",7.434703 -"HadGEM2-ES","ph","ocean","ph","rcp85",2220,"Simulated",1,"global",7.433835 -"HadGEM2-ES","ph","ocean","ph","rcp85",2221,"Simulated",1,"global",7.43334 -"HadGEM2-ES","ph","ocean","ph","rcp85",2222,"Simulated",1,"global",7.432406 -"HadGEM2-ES","ph","ocean","ph","rcp85",2223,"Simulated",1,"global",7.432215 -"HadGEM2-ES","ph","ocean","ph","rcp85",2224,"Simulated",1,"global",7.431864 -"HadGEM2-ES","ph","ocean","ph","rcp85",2225,"Simulated",1,"global",7.431175 -"HadGEM2-ES","ph","ocean","ph","rcp85",2226,"Simulated",1,"global",7.43068 -"HadGEM2-ES","ph","ocean","ph","rcp85",2227,"Simulated",1,"global",7.429601 -"HadGEM2-ES","ph","ocean","ph","rcp85",2228,"Simulated",1,"global",7.429135 -"HadGEM2-ES","ph","ocean","ph","rcp85",2229,"Simulated",1,"global",7.428906 -"HadGEM2-ES","ph","ocean","ph","rcp85",2230,"Simulated",1,"global",7.428536 -"HadGEM2-ES","ph","ocean","ph","rcp85",2231,"Simulated",1,"global",7.428039 -"HadGEM2-ES","ph","ocean","ph","rcp85",2232,"Simulated",1,"global",7.427922 -"HadGEM2-ES","ph","ocean","ph","rcp85",2233,"Simulated",1,"global",7.427308 -"HadGEM2-ES","ph","ocean","ph","rcp85",2234,"Simulated",1,"global",7.427371 -"HadGEM2-ES","ph","ocean","ph","rcp85",2235,"Simulated",1,"global",7.426717 -"HadGEM2-ES","ph","ocean","ph","rcp85",2236,"Simulated",1,"global",7.42663 -"HadGEM2-ES","ph","ocean","ph","rcp85",2237,"Simulated",1,"global",7.426113 -"HadGEM2-ES","ph","ocean","ph","rcp85",2238,"Simulated",1,"global",7.426033 -"HadGEM2-ES","ph","ocean","ph","rcp85",2239,"Simulated",1,"global",7.425889 -"HadGEM2-ES","ph","ocean","ph","rcp85",2240,"Simulated",1,"global",7.425858 -"HadGEM2-ES","ph","ocean","ph","rcp85",2241,"Simulated",1,"global",7.425731 -"HadGEM2-ES","ph","ocean","ph","rcp85",2242,"Simulated",1,"global",7.42495 -"HadGEM2-ES","ph","ocean","ph","rcp85",2243,"Simulated",1,"global",7.424998 -"HadGEM2-ES","ph","ocean","ph","rcp85",2244,"Simulated",1,"global",7.424617 -"HadGEM2-ES","ph","ocean","ph","rcp85",2245,"Simulated",1,"global",7.424759 -"HadGEM2-ES","ph","ocean","ph","rcp85",2246,"Simulated",1,"global",7.424364 -"HadGEM2-ES","ph","ocean","ph","rcp85",2247,"Simulated",1,"global",7.4248 -"HadGEM2-ES","ph","ocean","ph","rcp85",2248,"Simulated",1,"global",7.424318 -"HadGEM2-ES","ph","ocean","ph","rcp85",2249,"Simulated",1,"global",7.424062 -"HadGEM2-ES","ph","ocean","ph","rcp85",2250,"Simulated",1,"global",7.424307 -"HadGEM2-ES","ph","ocean","ph","rcp85",2251,"Simulated",1,"global",7.424065 -"HadGEM2-ES","ph","ocean","ph","rcp85",2252,"Simulated",1,"global",7.423825 -"HadGEM2-ES","ph","ocean","ph","rcp85",2253,"Simulated",1,"global",7.423425 -"HadGEM2-ES","ph","ocean","ph","rcp85",2254,"Simulated",1,"global",7.423764 -"HadGEM2-ES","ph","ocean","ph","rcp85",2255,"Simulated",1,"global",7.423833 -"HadGEM2-ES","ph","ocean","ph","rcp85",2256,"Simulated",1,"global",7.424049 -"HadGEM2-ES","ph","ocean","ph","rcp85",2257,"Simulated",1,"global",7.424049 -"HadGEM2-ES","ph","ocean","ph","rcp85",2258,"Simulated",1,"global",7.424272 -"HadGEM2-ES","ph","ocean","ph","rcp85",2259,"Simulated",1,"global",7.423917 -"HadGEM2-ES","ph","ocean","ph","rcp85",2260,"Simulated",1,"global",7.424189 -"HadGEM2-ES","ph","ocean","ph","rcp85",2261,"Simulated",1,"global",7.423887 -"HadGEM2-ES","ph","ocean","ph","rcp85",2262,"Simulated",1,"global",7.424163 -"HadGEM2-ES","ph","ocean","ph","rcp85",2263,"Simulated",1,"global",7.424143 -"HadGEM2-ES","ph","ocean","ph","rcp85",2264,"Simulated",1,"global",7.424155 -"HadGEM2-ES","ph","ocean","ph","rcp85",2265,"Simulated",1,"global",7.424229 -"HadGEM2-ES","ph","ocean","ph","rcp85",2266,"Simulated",1,"global",7.423986 -"HadGEM2-ES","ph","ocean","ph","rcp85",2267,"Simulated",1,"global",7.424221 -"HadGEM2-ES","ph","ocean","ph","rcp85",2268,"Simulated",1,"global",7.424232 -"HadGEM2-ES","ph","ocean","ph","rcp85",2269,"Simulated",1,"global",7.423833 -"HadGEM2-ES","ph","ocean","ph","rcp85",2270,"Simulated",1,"global",7.424235 -"HadGEM2-ES","ph","ocean","ph","rcp85",2271,"Simulated",1,"global",7.424504 -"HadGEM2-ES","ph","ocean","ph","rcp85",2272,"Simulated",1,"global",7.424111 -"HadGEM2-ES","ph","ocean","ph","rcp85",2273,"Simulated",1,"global",7.424458 -"HadGEM2-ES","ph","ocean","ph","rcp85",2274,"Simulated",1,"global",7.424114 -"HadGEM2-ES","ph","ocean","ph","rcp85",2275,"Simulated",1,"global",7.424146 -"HadGEM2-ES","ph","ocean","ph","rcp85",2276,"Simulated",1,"global",7.424317 -"HadGEM2-ES","ph","ocean","ph","rcp85",2277,"Simulated",1,"global",7.424132 -"HadGEM2-ES","ph","ocean","ph","rcp85",2278,"Simulated",1,"global",7.42407 -"HadGEM2-ES","ph","ocean","ph","rcp85",2279,"Simulated",1,"global",7.424133 -"HadGEM2-ES","ph","ocean","ph","rcp85",2280,"Simulated",1,"global",7.424089 -"HadGEM2-ES","ph","ocean","ph","rcp85",2281,"Simulated",1,"global",7.423797 -"HadGEM2-ES","ph","ocean","ph","rcp85",2282,"Simulated",1,"global",7.424128 -"HadGEM2-ES","ph","ocean","ph","rcp85",2283,"Simulated",1,"global",7.423828 -"HadGEM2-ES","ph","ocean","ph","rcp85",2284,"Simulated",1,"global",7.423843 -"HadGEM2-ES","ph","ocean","ph","rcp85",2285,"Simulated",1,"global",7.424106 -"HadGEM2-ES","ph","ocean","ph","rcp85",2286,"Simulated",1,"global",7.424251 -"HadGEM2-ES","ph","ocean","ph","rcp85",2287,"Simulated",1,"global",7.424206 -"HadGEM2-ES","ph","ocean","ph","rcp85",2288,"Simulated",1,"global",7.424058 -"HadGEM2-ES","ph","ocean","ph","rcp85",2289,"Simulated",1,"global",7.424032 -"HadGEM2-ES","ph","ocean","ph","rcp85",2290,"Simulated",1,"global",7.424042 -"HadGEM2-ES","ph","ocean","ph","rcp85",2291,"Simulated",1,"global",7.42421 -"HadGEM2-ES","ph","ocean","ph","rcp85",2292,"Simulated",1,"global",7.423998 -"HadGEM2-ES","ph","ocean","ph","rcp85",2293,"Simulated",1,"global",7.423866 -"HadGEM2-ES","ph","ocean","ph","rcp85",2294,"Simulated",1,"global",7.424147 -"HadGEM2-ES","ph","ocean","ph","rcp85",2295,"Simulated",1,"global",7.424099 -"HadGEM2-ES","ph","ocean","ph","rcp85",2296,"Simulated",1,"global",7.424163 -"HadGEM2-ES","ph","ocean","ph","rcp85",2297,"Simulated",1,"global",7.423904 -"HadGEM2-ES","ph","ocean","ph","rcp85",2298,"Simulated",1,"global",7.42427 -"HadGEM2-ES","ph","ocean","ph","rcp85",2299,"Simulated",1,"global",7.423815 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2005,"Simulated",1,"HL",8.090111 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.06829325 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.06469175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.06179575 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.06039925 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.0583075 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.0559345 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.05277375 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.0509225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.0482065 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.0460005 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.0430595 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.03977175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.03672475 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.03428275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.02991075 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.02758525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.025738 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.021634 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.01731175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.01485325 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.012428 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.0090095 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.00551275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",8.002424 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",7.99919275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",7.995332 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",7.99370825 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.98940525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.98562525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.98310675 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.97953625 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.975838 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.97211825 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.96753525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.9636795 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.9601705 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.95516875 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.952346 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.94772275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.94335175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.938138 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.934971 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.93124275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.92603225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.9224225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.91869225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.91433075 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.90908275 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.90559575 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.90083625 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.8951175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.8903205 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.8855555 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.8818355 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.8771535 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.8720505 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.8667665 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.86246725 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.857095 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.85168025 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.8480805 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.8421715 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.83824225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.832446 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.82772675 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.82301175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.81845225 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.812783 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.80755875 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.8026925 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.798651 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.793734 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.787841 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.783573 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.779557 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.774594 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.77000475 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.764875 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.7599085 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.75573425 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.750452 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.7468245 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.741603 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.73708625 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.7325545 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.728227 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.72336725 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.71900175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.7157385 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.71116625 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.7055155 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.70219175 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.6978775 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.69475925 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.68943925 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2101,"Simulated",1,"HL",7.684608 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2102,"Simulated",1,"HL",7.67996 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2103,"Simulated",1,"HL",7.676621 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2104,"Simulated",1,"HL",7.672026 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2105,"Simulated",1,"HL",7.667322 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2106,"Simulated",1,"HL",7.662164 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2107,"Simulated",1,"HL",7.657654 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2108,"Simulated",1,"HL",7.654525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2109,"Simulated",1,"HL",7.651961 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2110,"Simulated",1,"HL",7.646748 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2111,"Simulated",1,"HL",7.643916 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2112,"Simulated",1,"HL",7.639871 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2113,"Simulated",1,"HL",7.633491 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2114,"Simulated",1,"HL",7.630407 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2115,"Simulated",1,"HL",7.628098 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2116,"Simulated",1,"HL",7.622597 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2117,"Simulated",1,"HL",7.618895 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2118,"Simulated",1,"HL",7.615296 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2119,"Simulated",1,"HL",7.61215 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2120,"Simulated",1,"HL",7.608637 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2121,"Simulated",1,"HL",7.604513 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2122,"Simulated",1,"HL",7.60237 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2123,"Simulated",1,"HL",7.598948 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2124,"Simulated",1,"HL",7.596229 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2125,"Simulated",1,"HL",7.591655 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2126,"Simulated",1,"HL",7.587705 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2127,"Simulated",1,"HL",7.584935 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2128,"Simulated",1,"HL",7.579757 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2129,"Simulated",1,"HL",7.574729 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2130,"Simulated",1,"HL",7.572078 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2131,"Simulated",1,"HL",7.569797 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2132,"Simulated",1,"HL",7.566457 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2133,"Simulated",1,"HL",7.562993 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2134,"Simulated",1,"HL",7.560142 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2135,"Simulated",1,"HL",7.557135 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2136,"Simulated",1,"HL",7.554745 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2137,"Simulated",1,"HL",7.550245 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2138,"Simulated",1,"HL",7.546368 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2139,"Simulated",1,"HL",7.542053 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2140,"Simulated",1,"HL",7.536903 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2141,"Simulated",1,"HL",7.534344 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2142,"Simulated",1,"HL",7.530971 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2143,"Simulated",1,"HL",7.528819 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2144,"Simulated",1,"HL",7.526523 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2145,"Simulated",1,"HL",7.524555 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2146,"Simulated",1,"HL",7.522711 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2147,"Simulated",1,"HL",7.517528 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2148,"Simulated",1,"HL",7.513925 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2149,"Simulated",1,"HL",7.510518 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2150,"Simulated",1,"HL",7.506264 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2151,"Simulated",1,"HL",7.504987 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2152,"Simulated",1,"HL",7.502535 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2153,"Simulated",1,"HL",7.501577 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2154,"Simulated",1,"HL",7.496878 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2155,"Simulated",1,"HL",7.492612 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2156,"Simulated",1,"HL",7.490498 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2157,"Simulated",1,"HL",7.487823 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2158,"Simulated",1,"HL",7.483498 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2159,"Simulated",1,"HL",7.482643 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2160,"Simulated",1,"HL",7.480822 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2161,"Simulated",1,"HL",7.477933 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2162,"Simulated",1,"HL",7.474859 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2163,"Simulated",1,"HL",7.470737 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2164,"Simulated",1,"HL",7.469488 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2165,"Simulated",1,"HL",7.466538 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2166,"Simulated",1,"HL",7.464444 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2167,"Simulated",1,"HL",7.462802 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2168,"Simulated",1,"HL",7.461921 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2169,"Simulated",1,"HL",7.457522 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2170,"Simulated",1,"HL",7.455178 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2171,"Simulated",1,"HL",7.453033 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2172,"Simulated",1,"HL",7.450913 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2173,"Simulated",1,"HL",7.447822 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2174,"Simulated",1,"HL",7.443573 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2175,"Simulated",1,"HL",7.44267 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2176,"Simulated",1,"HL",7.442567 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2177,"Simulated",1,"HL",7.44005 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2178,"Simulated",1,"HL",7.438052 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2179,"Simulated",1,"HL",7.436019 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2180,"Simulated",1,"HL",7.434001 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2181,"Simulated",1,"HL",7.433153 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2182,"Simulated",1,"HL",7.430595 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2183,"Simulated",1,"HL",7.429081 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2184,"Simulated",1,"HL",7.428606 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2185,"Simulated",1,"HL",7.427165 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2186,"Simulated",1,"HL",7.424953 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2187,"Simulated",1,"HL",7.42255 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2188,"Simulated",1,"HL",7.423165 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2189,"Simulated",1,"HL",7.420048 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2190,"Simulated",1,"HL",7.417583 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2191,"Simulated",1,"HL",7.41566 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2192,"Simulated",1,"HL",7.414542 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2193,"Simulated",1,"HL",7.414106 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2194,"Simulated",1,"HL",7.4132 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2195,"Simulated",1,"HL",7.410773 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2196,"Simulated",1,"HL",7.408682 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2197,"Simulated",1,"HL",7.40922 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2198,"Simulated",1,"HL",7.407474 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2199,"Simulated",1,"HL",7.405375 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2200,"Simulated",1,"HL",7.40469 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2201,"Simulated",1,"HL",7.401968 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2202,"Simulated",1,"HL",7.399699 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2203,"Simulated",1,"HL",7.399406 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2204,"Simulated",1,"HL",7.397423 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2205,"Simulated",1,"HL",7.396852 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2206,"Simulated",1,"HL",7.398095 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2207,"Simulated",1,"HL",7.395984 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2208,"Simulated",1,"HL",7.393791 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2209,"Simulated",1,"HL",7.394444 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2210,"Simulated",1,"HL",7.392813 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2211,"Simulated",1,"HL",7.39271 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2212,"Simulated",1,"HL",7.389744 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2213,"Simulated",1,"HL",7.389573 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2214,"Simulated",1,"HL",7.388823 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2215,"Simulated",1,"HL",7.388682 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2216,"Simulated",1,"HL",7.388767 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2217,"Simulated",1,"HL",7.387415 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2218,"Simulated",1,"HL",7.387179 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2219,"Simulated",1,"HL",7.386213 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2220,"Simulated",1,"HL",7.384964 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2221,"Simulated",1,"HL",7.383832 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2222,"Simulated",1,"HL",7.382088 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2223,"Simulated",1,"HL",7.383644 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2224,"Simulated",1,"HL",7.382579 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2225,"Simulated",1,"HL",7.38319 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2226,"Simulated",1,"HL",7.381326 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2227,"Simulated",1,"HL",7.379402 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2228,"Simulated",1,"HL",7.378822 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2229,"Simulated",1,"HL",7.378276 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2230,"Simulated",1,"HL",7.379746 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2231,"Simulated",1,"HL",7.378292 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2232,"Simulated",1,"HL",7.378311 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2233,"Simulated",1,"HL",7.377838 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2234,"Simulated",1,"HL",7.379073 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2235,"Simulated",1,"HL",7.377746 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2236,"Simulated",1,"HL",7.377423 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2237,"Simulated",1,"HL",7.376262 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2238,"Simulated",1,"HL",7.376079 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2239,"Simulated",1,"HL",7.37612 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2240,"Simulated",1,"HL",7.377053 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2241,"Simulated",1,"HL",7.377801 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2242,"Simulated",1,"HL",7.375985 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2243,"Simulated",1,"HL",7.375947 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2244,"Simulated",1,"HL",7.374864 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2245,"Simulated",1,"HL",7.374176 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2246,"Simulated",1,"HL",7.373848 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2247,"Simulated",1,"HL",7.373956 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2248,"Simulated",1,"HL",7.373419 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2249,"Simulated",1,"HL",7.373681 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2250,"Simulated",1,"HL",7.373551 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2251,"Simulated",1,"HL",7.373611 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2252,"Simulated",1,"HL",7.372731 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2253,"Simulated",1,"HL",7.37161 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2254,"Simulated",1,"HL",7.372625 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2255,"Simulated",1,"HL",7.373145 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2256,"Simulated",1,"HL",7.373831 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2257,"Simulated",1,"HL",7.373944 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2258,"Simulated",1,"HL",7.373507 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2259,"Simulated",1,"HL",7.373395 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2260,"Simulated",1,"HL",7.372979 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2261,"Simulated",1,"HL",7.372338 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2262,"Simulated",1,"HL",7.37407 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2263,"Simulated",1,"HL",7.373118 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2264,"Simulated",1,"HL",7.373143 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2265,"Simulated",1,"HL",7.373102 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2266,"Simulated",1,"HL",7.372952 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2267,"Simulated",1,"HL",7.374413 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2268,"Simulated",1,"HL",7.37356 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2269,"Simulated",1,"HL",7.373492 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2270,"Simulated",1,"HL",7.373868 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2271,"Simulated",1,"HL",7.374277 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2272,"Simulated",1,"HL",7.374914 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2273,"Simulated",1,"HL",7.3758 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2274,"Simulated",1,"HL",7.374129 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2275,"Simulated",1,"HL",7.373758 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2276,"Simulated",1,"HL",7.374044 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2277,"Simulated",1,"HL",7.373993 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2278,"Simulated",1,"HL",7.374823 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2279,"Simulated",1,"HL",7.373525 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2280,"Simulated",1,"HL",7.373523 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2281,"Simulated",1,"HL",7.374863 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2282,"Simulated",1,"HL",7.375252 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2283,"Simulated",1,"HL",7.373489 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2284,"Simulated",1,"HL",7.373425 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2285,"Simulated",1,"HL",7.373462 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2286,"Simulated",1,"HL",7.373739 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2287,"Simulated",1,"HL",7.374786 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2288,"Simulated",1,"HL",7.374355 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2289,"Simulated",1,"HL",7.374344 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2290,"Simulated",1,"HL",7.373491 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2291,"Simulated",1,"HL",7.374026 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2292,"Simulated",1,"HL",7.374065 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2293,"Simulated",1,"HL",7.374615 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2294,"Simulated",1,"HL",7.372842 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2295,"Simulated",1,"HL",7.372033 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2296,"Simulated",1,"HL",7.37294 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2297,"Simulated",1,"HL",7.372516 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2298,"Simulated",1,"HL",7.37406 -"HadGEM2-ES","ph","ocean","ph_HL","rcp85",2299,"Simulated",1,"HL",7.373063 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2005,"Simulated",1,"LL",8.0695945 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.06241725 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.06043525 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.0582155 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.056154 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.05405075 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.0519335 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.05022 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.04784225 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.04566975 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.043119 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.04070375 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.038261 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.03574525 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.0333955 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.03098175 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.02841325 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.0259735 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.02319425 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.02115875 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.0184275 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.0153495 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.012746 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.00999775 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.006748 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.003844 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.0012775 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",7.998179 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",7.99542075 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.992721 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.9889395 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.98593675 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.982687 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.97920325 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.97561825 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.97283975 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.9697605 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.966462 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.96284025 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.95903325 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.95515275 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.952003 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.94795875 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.9442515 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.94060625 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.936717 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.9332075 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.9288415 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.9247635 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.9207 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.91692725 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.91244075 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.908003 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.90381125 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.899356 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.8956475 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.891704 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.88763425 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.8835245 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.8795635 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.87454525 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.86982575 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.8654175 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.86065075 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.85648575 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.852373 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.848456 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.844029 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.83908125 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.83525425 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.8306485 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.826258 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.82170225 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.817253 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.8132465 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.80873625 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.80499875 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.80061625 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.79690125 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.7923985 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.787989 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.7832235 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.7794555 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.7751215 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.77180425 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.767189 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.76287575 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.75923175 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.75481225 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.7514465 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.747301 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.743288 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.738857 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.7355475 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.73162175 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.72873025 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2101,"Simulated",1,"LL",7.72353 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2102,"Simulated",1,"LL",7.719932 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2103,"Simulated",1,"LL",7.717056 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2104,"Simulated",1,"LL",7.712824 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2105,"Simulated",1,"LL",7.708875 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2106,"Simulated",1,"LL",7.704664 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2107,"Simulated",1,"LL",7.700434 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2108,"Simulated",1,"LL",7.69684 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2109,"Simulated",1,"LL",7.692826 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2110,"Simulated",1,"LL",7.690098 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2111,"Simulated",1,"LL",7.686502 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2112,"Simulated",1,"LL",7.683209 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2113,"Simulated",1,"LL",7.680187 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2114,"Simulated",1,"LL",7.675488 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2115,"Simulated",1,"LL",7.671436 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2116,"Simulated",1,"LL",7.668261 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2117,"Simulated",1,"LL",7.664339 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2118,"Simulated",1,"LL",7.661938 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2119,"Simulated",1,"LL",7.658161 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2120,"Simulated",1,"LL",7.654159 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2121,"Simulated",1,"LL",7.651519 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2122,"Simulated",1,"LL",7.647723 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2123,"Simulated",1,"LL",7.644797 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2124,"Simulated",1,"LL",7.641033 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2125,"Simulated",1,"LL",7.637698 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2126,"Simulated",1,"LL",7.635036 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2127,"Simulated",1,"LL",7.630895 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2128,"Simulated",1,"LL",7.627256 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2129,"Simulated",1,"LL",7.624817 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2130,"Simulated",1,"LL",7.621987 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2131,"Simulated",1,"LL",7.617757 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2132,"Simulated",1,"LL",7.614993 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2133,"Simulated",1,"LL",7.611659 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2134,"Simulated",1,"LL",7.608113 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2135,"Simulated",1,"LL",7.604845 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2136,"Simulated",1,"LL",7.60198 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2137,"Simulated",1,"LL",7.598797 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2138,"Simulated",1,"LL",7.596232 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2139,"Simulated",1,"LL",7.592479 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2140,"Simulated",1,"LL",7.589816 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2141,"Simulated",1,"LL",7.586299 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2142,"Simulated",1,"LL",7.583623 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2143,"Simulated",1,"LL",7.58067 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2144,"Simulated",1,"LL",7.578374 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2145,"Simulated",1,"LL",7.575054 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2146,"Simulated",1,"LL",7.57192 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2147,"Simulated",1,"LL",7.568717 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2148,"Simulated",1,"LL",7.565433 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2149,"Simulated",1,"LL",7.562997 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2150,"Simulated",1,"LL",7.559587 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2151,"Simulated",1,"LL",7.55734 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2152,"Simulated",1,"LL",7.554159 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2153,"Simulated",1,"LL",7.551103 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2154,"Simulated",1,"LL",7.548783 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2155,"Simulated",1,"LL",7.545924 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2156,"Simulated",1,"LL",7.543448 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2157,"Simulated",1,"LL",7.540932 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2158,"Simulated",1,"LL",7.538177 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2159,"Simulated",1,"LL",7.535025 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2160,"Simulated",1,"LL",7.532856 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2161,"Simulated",1,"LL",7.530608 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2162,"Simulated",1,"LL",7.528267 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2163,"Simulated",1,"LL",7.525988 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2164,"Simulated",1,"LL",7.523963 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2165,"Simulated",1,"LL",7.520976 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2166,"Simulated",1,"LL",7.518845 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2167,"Simulated",1,"LL",7.516786 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2168,"Simulated",1,"LL",7.514283 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2169,"Simulated",1,"LL",7.512537 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2170,"Simulated",1,"LL",7.510057 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2171,"Simulated",1,"LL",7.507835 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2172,"Simulated",1,"LL",7.506094 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2173,"Simulated",1,"LL",7.503338 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2174,"Simulated",1,"LL",7.502182 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2175,"Simulated",1,"LL",7.499822 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2176,"Simulated",1,"LL",7.498272 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2177,"Simulated",1,"LL",7.496912 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2178,"Simulated",1,"LL",7.494658 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2179,"Simulated",1,"LL",7.492746 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2180,"Simulated",1,"LL",7.49123 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2181,"Simulated",1,"LL",7.489054 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2182,"Simulated",1,"LL",7.487558 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2183,"Simulated",1,"LL",7.485792 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2184,"Simulated",1,"LL",7.483876 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2185,"Simulated",1,"LL",7.482685 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2186,"Simulated",1,"LL",7.480477 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2187,"Simulated",1,"LL",7.479506 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2188,"Simulated",1,"LL",7.478319 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2189,"Simulated",1,"LL",7.476442 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2190,"Simulated",1,"LL",7.474363 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2191,"Simulated",1,"LL",7.47299 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2192,"Simulated",1,"LL",7.471984 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2193,"Simulated",1,"LL",7.471028 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2194,"Simulated",1,"LL",7.469203 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2195,"Simulated",1,"LL",7.467968 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2196,"Simulated",1,"LL",7.466938 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2197,"Simulated",1,"LL",7.465719 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2198,"Simulated",1,"LL",7.464527 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2199,"Simulated",1,"LL",7.463815 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2200,"Simulated",1,"LL",7.462263 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2201,"Simulated",1,"LL",7.460864 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2202,"Simulated",1,"LL",7.45948 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2203,"Simulated",1,"LL",7.458535 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2204,"Simulated",1,"LL",7.45752 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2205,"Simulated",1,"LL",7.456312 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2206,"Simulated",1,"LL",7.455266 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2207,"Simulated",1,"LL",7.453727 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2208,"Simulated",1,"LL",7.452723 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2209,"Simulated",1,"LL",7.451657 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2210,"Simulated",1,"LL",7.450696 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2211,"Simulated",1,"LL",7.449613 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2212,"Simulated",1,"LL",7.449107 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2213,"Simulated",1,"LL",7.448274 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2214,"Simulated",1,"LL",7.4472 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2215,"Simulated",1,"LL",7.446218 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2216,"Simulated",1,"LL",7.44566 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2217,"Simulated",1,"LL",7.445119 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2218,"Simulated",1,"LL",7.4445 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2219,"Simulated",1,"LL",7.443758 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2220,"Simulated",1,"LL",7.442961 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2221,"Simulated",1,"LL",7.442586 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2222,"Simulated",1,"LL",7.441802 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2223,"Simulated",1,"LL",7.441285 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2224,"Simulated",1,"LL",7.441068 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2225,"Simulated",1,"LL",7.440136 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2226,"Simulated",1,"LL",7.439897 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2227,"Simulated",1,"LL",7.438976 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2228,"Simulated",1,"LL",7.438531 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2229,"Simulated",1,"LL",7.438361 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2230,"Simulated",1,"LL",7.437647 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2231,"Simulated",1,"LL",7.43733 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2232,"Simulated",1,"LL",7.437187 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2233,"Simulated",1,"LL",7.436546 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2234,"Simulated",1,"LL",7.43639 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2235,"Simulated",1,"LL",7.435862 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2236,"Simulated",1,"LL",7.435819 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2237,"Simulated",1,"LL",7.435422 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2238,"Simulated",1,"LL",7.435362 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2239,"Simulated",1,"LL",7.435183 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2240,"Simulated",1,"LL",7.434972 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2241,"Simulated",1,"LL",7.434681 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2242,"Simulated",1,"LL",7.434094 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2243,"Simulated",1,"LL",7.434158 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2244,"Simulated",1,"LL",7.433908 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2245,"Simulated",1,"LL",7.434205 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2246,"Simulated",1,"LL",7.433797 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2247,"Simulated",1,"LL",7.434294 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2248,"Simulated",1,"LL",7.433823 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2249,"Simulated",1,"LL",7.433471 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2250,"Simulated",1,"LL",7.433785 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2251,"Simulated",1,"LL",7.433487 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2252,"Simulated",1,"LL",7.433367 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2253,"Simulated",1,"LL",7.433101 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2254,"Simulated",1,"LL",7.433314 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2255,"Simulated",1,"LL",7.433299 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2256,"Simulated",1,"LL",7.433427 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2257,"Simulated",1,"LL",7.433406 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2258,"Simulated",1,"LL",7.433752 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2259,"Simulated",1,"LL",7.433352 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2260,"Simulated",1,"LL",7.433753 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2261,"Simulated",1,"LL",7.433514 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2262,"Simulated",1,"LL",7.433518 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2263,"Simulated",1,"LL",7.433672 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2264,"Simulated",1,"LL",7.433682 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2265,"Simulated",1,"LL",7.433777 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2266,"Simulated",1,"LL",7.433517 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2267,"Simulated",1,"LL",7.433523 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2268,"Simulated",1,"LL",7.433694 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2269,"Simulated",1,"LL",7.433234 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2270,"Simulated",1,"LL",7.433641 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2271,"Simulated",1,"LL",7.433884 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2272,"Simulated",1,"LL",7.433298 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2273,"Simulated",1,"LL",7.433545 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2274,"Simulated",1,"LL",7.433449 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2275,"Simulated",1,"LL",7.433556 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2276,"Simulated",1,"LL",7.433705 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2277,"Simulated",1,"LL",7.433495 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2278,"Simulated",1,"LL",7.433267 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2279,"Simulated",1,"LL",7.433584 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2280,"Simulated",1,"LL",7.433532 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2281,"Simulated",1,"LL",7.432935 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2282,"Simulated",1,"LL",7.433255 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2283,"Simulated",1,"LL",7.433228 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2284,"Simulated",1,"LL",7.433258 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2285,"Simulated",1,"LL",7.433564 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2286,"Simulated",1,"LL",7.433684 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2287,"Simulated",1,"LL",7.433435 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2288,"Simulated",1,"LL",7.43334 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2289,"Simulated",1,"LL",7.433311 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2290,"Simulated",1,"LL",7.433483 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2291,"Simulated",1,"LL",7.433582 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2292,"Simulated",1,"LL",7.433323 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2293,"Simulated",1,"LL",7.433064 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2294,"Simulated",1,"LL",7.433728 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2295,"Simulated",1,"LL",7.433822 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2296,"Simulated",1,"LL",7.433729 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2297,"Simulated",1,"LL",7.433501 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2298,"Simulated",1,"LL",7.433647 -"HadGEM2-ES","ph","ocean","ph_LL","rcp85",2299,"Simulated",1,"LL",7.433293 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.065077 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.06345375 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.06137075 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.05933575 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.0575585 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.05556125 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.05324125 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.05109075 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.04903675 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.0465655 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.044375 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.04178425 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.03980725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.037391 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.03479225 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.032513 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.02940875 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.02655825 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.024052 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.0214415 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.018757 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.0159375 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.013382 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.0104375 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.00745875 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.004271 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",8.0011595 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",7.99834475 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.9953925 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.99227525 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.98892725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.98603625 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.98248525 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.979278 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.9759275 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.9725165 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.968851 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.96568225 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.961918 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.95846825 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.95474 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.951232 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.94733975 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.94340025 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.93948475 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.93561975 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.9316495 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.92725725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.923385 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.919378 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.9151275 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.91098375 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.90693775 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.902552 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.89831975 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.89383075 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.88922025 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.884695 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.88066075 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.8761285 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.87167925 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.867614 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.862874 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.85853025 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.85391175 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.84978475 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.845476 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.84069675 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.83653925 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.83220825 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.82771425 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.8233065 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.8188975 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.8145535 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.81005075 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.80562725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.8014035 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.79704675 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.7926725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.78861475 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.78460875 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.78035675 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.7761615 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.7719165 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.76730675 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.76349925 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.7590645 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.7552055 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.75127625 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.747178 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.743381 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.73909025 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.73514625 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.73109975 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.7272895 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2101,"Simulated",1,"global",7.722569 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2102,"Simulated",1,"global",7.718913 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2103,"Simulated",1,"global",7.715371 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2104,"Simulated",1,"global",7.711591 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2105,"Simulated",1,"global",7.707866 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2106,"Simulated",1,"global",7.704131 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2107,"Simulated",1,"global",7.700339 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2108,"Simulated",1,"global",7.696706 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2109,"Simulated",1,"global",7.693018 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2110,"Simulated",1,"global",7.688704 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2111,"Simulated",1,"global",7.685237 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2112,"Simulated",1,"global",7.68169 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2113,"Simulated",1,"global",7.678117 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2114,"Simulated",1,"global",7.674479 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2115,"Simulated",1,"global",7.671098 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2116,"Simulated",1,"global",7.667652 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2117,"Simulated",1,"global",7.664317 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2118,"Simulated",1,"global",7.660641 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2119,"Simulated",1,"global",7.657174 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2120,"Simulated",1,"global",7.653841 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2121,"Simulated",1,"global",7.650216 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2122,"Simulated",1,"global",7.646621 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2123,"Simulated",1,"global",7.64321 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2124,"Simulated",1,"global",7.639496 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2125,"Simulated",1,"global",7.63645 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2126,"Simulated",1,"global",7.632833 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2127,"Simulated",1,"global",7.629542 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2128,"Simulated",1,"global",7.626526 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2129,"Simulated",1,"global",7.623254 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2130,"Simulated",1,"global",7.620103 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2131,"Simulated",1,"global",7.616282 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2132,"Simulated",1,"global",7.613298 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2133,"Simulated",1,"global",7.609691 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2134,"Simulated",1,"global",7.60652 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2135,"Simulated",1,"global",7.603276 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2136,"Simulated",1,"global",7.600222 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2137,"Simulated",1,"global",7.597387 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2138,"Simulated",1,"global",7.594147 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2139,"Simulated",1,"global",7.591003 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2140,"Simulated",1,"global",7.587878 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2141,"Simulated",1,"global",7.585001 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2142,"Simulated",1,"global",7.581533 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2143,"Simulated",1,"global",7.578394 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2144,"Simulated",1,"global",7.575331 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2145,"Simulated",1,"global",7.572398 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2146,"Simulated",1,"global",7.569878 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2147,"Simulated",1,"global",7.566792 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2148,"Simulated",1,"global",7.564074 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2149,"Simulated",1,"global",7.561123 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2150,"Simulated",1,"global",7.55812 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2151,"Simulated",1,"global",7.555221 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2152,"Simulated",1,"global",7.552247 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2153,"Simulated",1,"global",7.549544 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2154,"Simulated",1,"global",7.546738 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2155,"Simulated",1,"global",7.544006 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2156,"Simulated",1,"global",7.541169 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2157,"Simulated",1,"global",7.538755 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2158,"Simulated",1,"global",7.536344 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2159,"Simulated",1,"global",7.533737 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2160,"Simulated",1,"global",7.531312 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2161,"Simulated",1,"global",7.528578 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2162,"Simulated",1,"global",7.526427 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2163,"Simulated",1,"global",7.524064 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2164,"Simulated",1,"global",7.521824 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2165,"Simulated",1,"global",7.519469 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2166,"Simulated",1,"global",7.516815 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2167,"Simulated",1,"global",7.514556 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2168,"Simulated",1,"global",7.512213 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2169,"Simulated",1,"global",7.510351 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2170,"Simulated",1,"global",7.508093 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2171,"Simulated",1,"global",7.505869 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2172,"Simulated",1,"global",7.503785 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2173,"Simulated",1,"global",7.501683 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2174,"Simulated",1,"global",7.499599 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2175,"Simulated",1,"global",7.497899 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2176,"Simulated",1,"global",7.496028 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2177,"Simulated",1,"global",7.494126 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2178,"Simulated",1,"global",7.4923 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2179,"Simulated",1,"global",7.490537 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2180,"Simulated",1,"global",7.488809 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2181,"Simulated",1,"global",7.486875 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2182,"Simulated",1,"global",7.48478 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2183,"Simulated",1,"global",7.483234 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2184,"Simulated",1,"global",7.481767 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2185,"Simulated",1,"global",7.479757 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2186,"Simulated",1,"global",7.478389 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2187,"Simulated",1,"global",7.476892 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2188,"Simulated",1,"global",7.475449 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2189,"Simulated",1,"global",7.473843 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2190,"Simulated",1,"global",7.472515 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2191,"Simulated",1,"global",7.471313 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2192,"Simulated",1,"global",7.469774 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2193,"Simulated",1,"global",7.468543 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2194,"Simulated",1,"global",7.467059 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2195,"Simulated",1,"global",7.465525 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2196,"Simulated",1,"global",7.464401 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2197,"Simulated",1,"global",7.463417 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2198,"Simulated",1,"global",7.46215 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2199,"Simulated",1,"global",7.460773 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2200,"Simulated",1,"global",7.459513 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2201,"Simulated",1,"global",7.458546 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2202,"Simulated",1,"global",7.457126 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2203,"Simulated",1,"global",7.456155 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2204,"Simulated",1,"global",7.454796 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2205,"Simulated",1,"global",7.453591 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2206,"Simulated",1,"global",7.452758 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2207,"Simulated",1,"global",7.451573 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2208,"Simulated",1,"global",7.450609 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2209,"Simulated",1,"global",7.449716 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2210,"Simulated",1,"global",7.44898 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2211,"Simulated",1,"global",7.447711 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2212,"Simulated",1,"global",7.446823 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2213,"Simulated",1,"global",7.446153 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2214,"Simulated",1,"global",7.445395 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2215,"Simulated",1,"global",7.444592 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2216,"Simulated",1,"global",7.443706 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2217,"Simulated",1,"global",7.442828 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2218,"Simulated",1,"global",7.442084 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2219,"Simulated",1,"global",7.441376 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2220,"Simulated",1,"global",7.440494 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2221,"Simulated",1,"global",7.439996 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2222,"Simulated",1,"global",7.43971 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2223,"Simulated",1,"global",7.439224 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2224,"Simulated",1,"global",7.43846 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2225,"Simulated",1,"global",7.437854 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2226,"Simulated",1,"global",7.437661 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2227,"Simulated",1,"global",7.437154 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2228,"Simulated",1,"global",7.436821 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2229,"Simulated",1,"global",7.436403 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2230,"Simulated",1,"global",7.435987 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2231,"Simulated",1,"global",7.435739 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2232,"Simulated",1,"global",7.43574 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2233,"Simulated",1,"global",7.435181 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2234,"Simulated",1,"global",7.434825 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2235,"Simulated",1,"global",7.434595 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2236,"Simulated",1,"global",7.434319 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2237,"Simulated",1,"global",7.433989 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2238,"Simulated",1,"global",7.433346 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2239,"Simulated",1,"global",7.433351 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2240,"Simulated",1,"global",7.433544 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2241,"Simulated",1,"global",7.433413 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2242,"Simulated",1,"global",7.433095 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2243,"Simulated",1,"global",7.432856 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2244,"Simulated",1,"global",7.432885 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2245,"Simulated",1,"global",7.432861 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2246,"Simulated",1,"global",7.432507 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2247,"Simulated",1,"global",7.432489 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2248,"Simulated",1,"global",7.432487 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2249,"Simulated",1,"global",7.4325 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2250,"Simulated",1,"global",7.432688 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2251,"Simulated",1,"global",7.432808 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2252,"Simulated",1,"global",7.4325 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2253,"Simulated",1,"global",7.432055 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2254,"Simulated",1,"global",7.432132 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2255,"Simulated",1,"global",7.432508 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2256,"Simulated",1,"global",7.432563 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2257,"Simulated",1,"global",7.432572 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2258,"Simulated",1,"global",7.432725 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2259,"Simulated",1,"global",7.432345 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2260,"Simulated",1,"global",7.432763 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2261,"Simulated",1,"global",7.432766 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2262,"Simulated",1,"global",7.432864 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2263,"Simulated",1,"global",7.432669 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2264,"Simulated",1,"global",7.43269 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2265,"Simulated",1,"global",7.432365 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2266,"Simulated",1,"global",7.43269 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2267,"Simulated",1,"global",7.432893 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2268,"Simulated",1,"global",7.432726 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2269,"Simulated",1,"global",7.432568 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2270,"Simulated",1,"global",7.432313 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2271,"Simulated",1,"global",7.432691 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2272,"Simulated",1,"global",7.432539 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2273,"Simulated",1,"global",7.432468 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2274,"Simulated",1,"global",7.432631 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2275,"Simulated",1,"global",7.432665 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2276,"Simulated",1,"global",7.432614 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2277,"Simulated",1,"global",7.432584 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2278,"Simulated",1,"global",7.432465 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2279,"Simulated",1,"global",7.432248 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2280,"Simulated",1,"global",7.432212 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2281,"Simulated",1,"global",7.43215 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2282,"Simulated",1,"global",7.432457 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2283,"Simulated",1,"global",7.432541 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2284,"Simulated",1,"global",7.43264 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2285,"Simulated",1,"global",7.432781 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2286,"Simulated",1,"global",7.432902 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2287,"Simulated",1,"global",7.432877 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2288,"Simulated",1,"global",7.433172 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2289,"Simulated",1,"global",7.433134 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2290,"Simulated",1,"global",7.432957 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2291,"Simulated",1,"global",7.433053 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2292,"Simulated",1,"global",7.433095 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2293,"Simulated",1,"global",7.433033 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2294,"Simulated",1,"global",7.433215 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2295,"Simulated",1,"global",7.433187 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2296,"Simulated",1,"global",7.433332 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2297,"Simulated",1,"global",7.43349 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2298,"Simulated",1,"global",7.433462 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2299,"Simulated",1,"global",7.433251 -"IPSL-CM5A-LR","ph","ocean","ph","rcp85",2300,"Simulated",1,"global",7.433103 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.05771775 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.05592375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.054032 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.05201775 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.05092275 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.049034 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.0450035 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.04312025 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.04099075 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.03779125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.03567275 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.034048 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.03082225 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.02862575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.02568625 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.0230455 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.01909975 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.0172015 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.01404625 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.01085125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.00831025 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.00535725 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.00291525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",7.99959575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",7.9959625 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",7.99160825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",7.988278 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.98470475 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.98290075 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.97898675 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.97568475 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.9721035 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.96911525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.9643825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.961262 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.956901 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.9536485 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.950691 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.9455605 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.94186525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.93857625 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.9347515 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.93057875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.92581025 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.921822 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.91735525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.91354875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.90747425 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.9030375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.8987885 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.894409 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.88977825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.8861865 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.88069375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.87663 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.871263 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.8658205 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.86106425 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.85702375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.85222225 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.84693875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.8428065 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.837023 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.8325165 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.8274565 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.82273575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.8179925 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.8125875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.8074205 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.80298875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.7984445 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.79325875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.78924975 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.78406625 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.7781215 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.77306525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.76830525 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.76413425 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.7586125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.75437575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.7504235 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.7458375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.74110675 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.7361945 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.73101825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.7253795 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.720125 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.71601325 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.71256375 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.7085345 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.7040765 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.69963825 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.69513075 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.69025575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.686555 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2101,"Simulated",1,"HL",7.679237 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2102,"Simulated",1,"HL",7.675242 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2103,"Simulated",1,"HL",7.671811 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2104,"Simulated",1,"HL",7.667521 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2105,"Simulated",1,"HL",7.663599 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2106,"Simulated",1,"HL",7.660555 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2107,"Simulated",1,"HL",7.655984 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2108,"Simulated",1,"HL",7.652205 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2109,"Simulated",1,"HL",7.648903 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2110,"Simulated",1,"HL",7.642663 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2111,"Simulated",1,"HL",7.63842 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2112,"Simulated",1,"HL",7.63474 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2113,"Simulated",1,"HL",7.631478 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2114,"Simulated",1,"HL",7.627567 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2115,"Simulated",1,"HL",7.62367 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2116,"Simulated",1,"HL",7.620251 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2117,"Simulated",1,"HL",7.61674 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2118,"Simulated",1,"HL",7.612197 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2119,"Simulated",1,"HL",7.608063 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2120,"Simulated",1,"HL",7.604963 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2121,"Simulated",1,"HL",7.600895 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2122,"Simulated",1,"HL",7.595279 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2123,"Simulated",1,"HL",7.590318 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2124,"Simulated",1,"HL",7.586226 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2125,"Simulated",1,"HL",7.582882 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2126,"Simulated",1,"HL",7.578858 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2127,"Simulated",1,"HL",7.573874 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2128,"Simulated",1,"HL",7.572605 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2129,"Simulated",1,"HL",7.569099 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2130,"Simulated",1,"HL",7.565981 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2131,"Simulated",1,"HL",7.560379 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2132,"Simulated",1,"HL",7.556796 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2133,"Simulated",1,"HL",7.552958 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2134,"Simulated",1,"HL",7.548578 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2135,"Simulated",1,"HL",7.544745 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2136,"Simulated",1,"HL",7.541352 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2137,"Simulated",1,"HL",7.539134 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2138,"Simulated",1,"HL",7.53542 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2139,"Simulated",1,"HL",7.532191 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2140,"Simulated",1,"HL",7.528129 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2141,"Simulated",1,"HL",7.525798 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2142,"Simulated",1,"HL",7.520924 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2143,"Simulated",1,"HL",7.516844 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2144,"Simulated",1,"HL",7.513293 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2145,"Simulated",1,"HL",7.509945 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2146,"Simulated",1,"HL",7.508332 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2147,"Simulated",1,"HL",7.504875 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2148,"Simulated",1,"HL",7.502272 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2149,"Simulated",1,"HL",7.498283 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2150,"Simulated",1,"HL",7.49529 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2151,"Simulated",1,"HL",7.490938 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2152,"Simulated",1,"HL",7.487669 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2153,"Simulated",1,"HL",7.485466 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2154,"Simulated",1,"HL",7.481567 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2155,"Simulated",1,"HL",7.47892 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2156,"Simulated",1,"HL",7.475672 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2157,"Simulated",1,"HL",7.472575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2158,"Simulated",1,"HL",7.471327 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2159,"Simulated",1,"HL",7.469132 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2160,"Simulated",1,"HL",7.465949 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2161,"Simulated",1,"HL",7.462157 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2162,"Simulated",1,"HL",7.459978 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2163,"Simulated",1,"HL",7.457531 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2164,"Simulated",1,"HL",7.455575 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2165,"Simulated",1,"HL",7.452882 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2166,"Simulated",1,"HL",7.44847 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2167,"Simulated",1,"HL",7.446365 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2168,"Simulated",1,"HL",7.443831 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2169,"Simulated",1,"HL",7.441218 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2170,"Simulated",1,"HL",7.438484 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2171,"Simulated",1,"HL",7.435515 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2172,"Simulated",1,"HL",7.433396 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2173,"Simulated",1,"HL",7.43184 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2174,"Simulated",1,"HL",7.42905 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2175,"Simulated",1,"HL",7.427183 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2176,"Simulated",1,"HL",7.426066 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2177,"Simulated",1,"HL",7.423113 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2178,"Simulated",1,"HL",7.420168 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2179,"Simulated",1,"HL",7.418725 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2180,"Simulated",1,"HL",7.416851 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2181,"Simulated",1,"HL",7.414307 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2182,"Simulated",1,"HL",7.411879 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2183,"Simulated",1,"HL",7.410332 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2184,"Simulated",1,"HL",7.408415 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2185,"Simulated",1,"HL",7.40595 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2186,"Simulated",1,"HL",7.404277 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2187,"Simulated",1,"HL",7.403097 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2188,"Simulated",1,"HL",7.402492 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2189,"Simulated",1,"HL",7.399936 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2190,"Simulated",1,"HL",7.397691 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2191,"Simulated",1,"HL",7.396654 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2192,"Simulated",1,"HL",7.396024 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2193,"Simulated",1,"HL",7.394562 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2194,"Simulated",1,"HL",7.392158 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2195,"Simulated",1,"HL",7.390028 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2196,"Simulated",1,"HL",7.389638 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2197,"Simulated",1,"HL",7.388684 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2198,"Simulated",1,"HL",7.387741 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2199,"Simulated",1,"HL",7.385717 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2200,"Simulated",1,"HL",7.384129 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2201,"Simulated",1,"HL",7.382826 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2202,"Simulated",1,"HL",7.380305 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2203,"Simulated",1,"HL",7.379627 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2204,"Simulated",1,"HL",7.378245 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2205,"Simulated",1,"HL",7.375391 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2206,"Simulated",1,"HL",7.374634 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2207,"Simulated",1,"HL",7.372856 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2208,"Simulated",1,"HL",7.372441 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2209,"Simulated",1,"HL",7.370861 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2210,"Simulated",1,"HL",7.369249 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2211,"Simulated",1,"HL",7.368084 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2212,"Simulated",1,"HL",7.367616 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2213,"Simulated",1,"HL",7.36753 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2214,"Simulated",1,"HL",7.365745 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2215,"Simulated",1,"HL",7.364359 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2216,"Simulated",1,"HL",7.363773 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2217,"Simulated",1,"HL",7.362555 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2218,"Simulated",1,"HL",7.361479 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2219,"Simulated",1,"HL",7.360163 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2220,"Simulated",1,"HL",7.360022 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2221,"Simulated",1,"HL",7.359693 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2222,"Simulated",1,"HL",7.358939 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2223,"Simulated",1,"HL",7.35859 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2224,"Simulated",1,"HL",7.357733 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2225,"Simulated",1,"HL",7.357597 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2226,"Simulated",1,"HL",7.357899 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2227,"Simulated",1,"HL",7.357324 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2228,"Simulated",1,"HL",7.356386 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2229,"Simulated",1,"HL",7.356467 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2230,"Simulated",1,"HL",7.355667 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2231,"Simulated",1,"HL",7.355216 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2232,"Simulated",1,"HL",7.355 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2233,"Simulated",1,"HL",7.354147 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2234,"Simulated",1,"HL",7.35396 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2235,"Simulated",1,"HL",7.354229 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2236,"Simulated",1,"HL",7.353737 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2237,"Simulated",1,"HL",7.353732 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2238,"Simulated",1,"HL",7.352953 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2239,"Simulated",1,"HL",7.35281 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2240,"Simulated",1,"HL",7.352133 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2241,"Simulated",1,"HL",7.352506 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2242,"Simulated",1,"HL",7.351806 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2243,"Simulated",1,"HL",7.351162 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2244,"Simulated",1,"HL",7.35173 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2245,"Simulated",1,"HL",7.351141 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2246,"Simulated",1,"HL",7.350737 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2247,"Simulated",1,"HL",7.351084 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2248,"Simulated",1,"HL",7.351095 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2249,"Simulated",1,"HL",7.350955 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2250,"Simulated",1,"HL",7.350751 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2251,"Simulated",1,"HL",7.350735 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2252,"Simulated",1,"HL",7.350248 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2253,"Simulated",1,"HL",7.349164 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2254,"Simulated",1,"HL",7.348311 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2255,"Simulated",1,"HL",7.349249 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2256,"Simulated",1,"HL",7.349674 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2257,"Simulated",1,"HL",7.349953 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2258,"Simulated",1,"HL",7.350225 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2259,"Simulated",1,"HL",7.347975 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2260,"Simulated",1,"HL",7.34913 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2261,"Simulated",1,"HL",7.349026 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2262,"Simulated",1,"HL",7.34944 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2263,"Simulated",1,"HL",7.348382 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2264,"Simulated",1,"HL",7.348441 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2265,"Simulated",1,"HL",7.348434 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2266,"Simulated",1,"HL",7.34912 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2267,"Simulated",1,"HL",7.348389 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2268,"Simulated",1,"HL",7.349785 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2269,"Simulated",1,"HL",7.349219 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2270,"Simulated",1,"HL",7.348314 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2271,"Simulated",1,"HL",7.348724 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2272,"Simulated",1,"HL",7.349267 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2273,"Simulated",1,"HL",7.348142 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2274,"Simulated",1,"HL",7.348163 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2275,"Simulated",1,"HL",7.348805 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2276,"Simulated",1,"HL",7.348347 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2277,"Simulated",1,"HL",7.34866 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2278,"Simulated",1,"HL",7.348512 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2279,"Simulated",1,"HL",7.348398 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2280,"Simulated",1,"HL",7.347296 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2281,"Simulated",1,"HL",7.347331 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2282,"Simulated",1,"HL",7.347075 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2283,"Simulated",1,"HL",7.347019 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2284,"Simulated",1,"HL",7.34828 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2285,"Simulated",1,"HL",7.348802 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2286,"Simulated",1,"HL",7.348844 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2287,"Simulated",1,"HL",7.348115 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2288,"Simulated",1,"HL",7.348088 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2289,"Simulated",1,"HL",7.347606 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2290,"Simulated",1,"HL",7.347814 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2291,"Simulated",1,"HL",7.348217 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2292,"Simulated",1,"HL",7.348944 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2293,"Simulated",1,"HL",7.348113 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2294,"Simulated",1,"HL",7.348731 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2295,"Simulated",1,"HL",7.349015 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2296,"Simulated",1,"HL",7.348781 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2297,"Simulated",1,"HL",7.349798 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2298,"Simulated",1,"HL",7.348757 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2299,"Simulated",1,"HL",7.348345 -"IPSL-CM5A-LR","ph","ocean","ph_HL","rcp85",2300,"Simulated",1,"HL",7.348225 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.0666775 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.065091 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.0629665 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.060927 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.05900125 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.05698075 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.05503225 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.05282425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.05078625 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.0484735 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.04626725 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.04346675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.04176125 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.03929725 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.03677225 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.03457175 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.0316505 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.02859275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.02622775 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.0237445 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.0210285 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.01823825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.015658 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.01279475 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.00995825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.00702425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",8.0039605 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",8.00131075 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.9981085 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.9951645 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.99180675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.989066 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.9853925 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.982517 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.9791165 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.975912 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.97215675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.968942 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.96547525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.96207825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.958255 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.95481525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.950984 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.94722525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.9433255 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.93959125 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.93558525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.931559 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.9278095 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.9238555 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.919633 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.91559475 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.91145 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.9073045 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.903036 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.89873775 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.89430825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.88983325 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.88580075 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.88132675 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.877059 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.87300825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.8684955 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.864187 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.85966425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.8556665 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.851452 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.84680925 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.842871 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.83856175 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.83407875 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.82984025 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.82534425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.8211825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.81699375 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.8127075 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.80860025 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.80420325 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.80007875 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.79605975 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.792042 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.78786275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.783784 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.779684 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.775198 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.77178825 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.767532 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.76372775 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.75969425 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.755581 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.7519275 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.747669 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.7438475 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.7399815 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.736147 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2101,"Simulated",1,"LL",7.731992 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2102,"Simulated",1,"LL",7.728409 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2103,"Simulated",1,"LL",7.724842 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2104,"Simulated",1,"LL",7.721174 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2105,"Simulated",1,"LL",7.717492 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2106,"Simulated",1,"LL",7.713606 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2107,"Simulated",1,"LL",7.709984 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2108,"Simulated",1,"LL",7.706382 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2109,"Simulated",1,"LL",7.702611 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2110,"Simulated",1,"LL",7.698716 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2111,"Simulated",1,"LL",7.695417 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2112,"Simulated",1,"LL",7.691899 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2113,"Simulated",1,"LL",7.688259 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2114,"Simulated",1,"LL",7.68468 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2115,"Simulated",1,"LL",7.681411 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2116,"Simulated",1,"LL",7.67796 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2117,"Simulated",1,"LL",7.674662 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2118,"Simulated",1,"LL",7.671175 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2119,"Simulated",1,"LL",7.667853 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2120,"Simulated",1,"LL",7.66447 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2121,"Simulated",1,"LL",7.660941 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2122,"Simulated",1,"LL",7.657785 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2123,"Simulated",1,"LL",7.654711 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2124,"Simulated",1,"LL",7.651079 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2125,"Simulated",1,"LL",7.648098 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2126,"Simulated",1,"LL",7.644569 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2127,"Simulated",1,"LL",7.641647 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2128,"Simulated",1,"LL",7.638251 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2129,"Simulated",1,"LL",7.635029 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2130,"Simulated",1,"LL",7.631871 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2131,"Simulated",1,"LL",7.628437 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2132,"Simulated",1,"LL",7.625584 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2133,"Simulated",1,"LL",7.622028 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2134,"Simulated",1,"LL",7.619119 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2135,"Simulated",1,"LL",7.616003 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2136,"Simulated",1,"LL",7.613024 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2137,"Simulated",1,"LL",7.610054 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2138,"Simulated",1,"LL",7.606917 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2139,"Simulated",1,"LL",7.603791 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2140,"Simulated",1,"LL",7.600871 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2141,"Simulated",1,"LL",7.597874 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2142,"Simulated",1,"LL",7.594712 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2143,"Simulated",1,"LL",7.591777 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2144,"Simulated",1,"LL",7.588821 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2145,"Simulated",1,"LL",7.585979 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2146,"Simulated",1,"LL",7.58326 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2147,"Simulated",1,"LL",7.580255 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2148,"Simulated",1,"LL",7.577513 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2149,"Simulated",1,"LL",7.574788 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2150,"Simulated",1,"LL",7.571783 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2151,"Simulated",1,"LL",7.569199 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2152,"Simulated",1,"LL",7.56629 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2153,"Simulated",1,"LL",7.563478 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2154,"Simulated",1,"LL",7.560909 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2155,"Simulated",1,"LL",7.558159 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2156,"Simulated",1,"LL",7.555411 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2157,"Simulated",1,"LL",7.553145 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2158,"Simulated",1,"LL",7.550481 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2159,"Simulated",1,"LL",7.547785 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2160,"Simulated",1,"LL",7.545525 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2161,"Simulated",1,"LL",7.543021 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2162,"Simulated",1,"LL",7.540876 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2163,"Simulated",1,"LL",7.538532 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2164,"Simulated",1,"LL",7.53623 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2165,"Simulated",1,"LL",7.533948 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2166,"Simulated",1,"LL",7.531676 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2167,"Simulated",1,"LL",7.529383 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2168,"Simulated",1,"LL",7.527082 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2169,"Simulated",1,"LL",7.525384 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2170,"Simulated",1,"LL",7.52323 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2171,"Simulated",1,"LL",7.521167 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2172,"Simulated",1,"LL",7.51909 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2173,"Simulated",1,"LL",7.51687 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2174,"Simulated",1,"LL",7.514939 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2175,"Simulated",1,"LL",7.513276 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2176,"Simulated",1,"LL",7.511241 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2177,"Simulated",1,"LL",7.509567 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2178,"Simulated",1,"LL",7.507985 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2179,"Simulated",1,"LL",7.506152 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2180,"Simulated",1,"LL",7.504456 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2181,"Simulated",1,"LL",7.502655 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2182,"Simulated",1,"LL",7.500632 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2183,"Simulated",1,"LL",7.499086 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2184,"Simulated",1,"LL",7.497717 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2185,"Simulated",1,"LL",7.495806 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2186,"Simulated",1,"LL",7.494504 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2187,"Simulated",1,"LL",7.492939 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2188,"Simulated",1,"LL",7.491313 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2189,"Simulated",1,"LL",7.489914 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2190,"Simulated",1,"LL",7.488785 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2191,"Simulated",1,"LL",7.487547 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2192,"Simulated",1,"LL",7.485811 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2193,"Simulated",1,"LL",7.48463 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2194,"Simulated",1,"LL",7.483346 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2195,"Simulated",1,"LL",7.481941 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2196,"Simulated",1,"LL",7.480658 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2197,"Simulated",1,"LL",7.479667 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2198,"Simulated",1,"LL",7.478329 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2199,"Simulated",1,"LL",7.477094 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2200,"Simulated",1,"LL",7.475905 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2201,"Simulated",1,"LL",7.475011 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2202,"Simulated",1,"LL",7.47383 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2203,"Simulated",1,"LL",7.472796 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2204,"Simulated",1,"LL",7.471442 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2205,"Simulated",1,"LL",7.470595 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2206,"Simulated",1,"LL",7.469746 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2207,"Simulated",1,"LL",7.46869 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2208,"Simulated",1,"LL",7.467606 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2209,"Simulated",1,"LL",7.466863 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2210,"Simulated",1,"LL",7.466318 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2211,"Simulated",1,"LL",7.465026 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2212,"Simulated",1,"LL",7.464046 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2213,"Simulated",1,"LL",7.463249 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2214,"Simulated",1,"LL",7.462714 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2215,"Simulated",1,"LL",7.462038 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2216,"Simulated",1,"LL",7.461087 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2217,"Simulated",1,"LL",7.460283 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2218,"Simulated",1,"LL",7.459611 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2219,"Simulated",1,"LL",7.459035 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2220,"Simulated",1,"LL",7.457992 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2221,"Simulated",1,"LL",7.457457 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2222,"Simulated",1,"LL",7.457273 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2223,"Simulated",1,"LL",7.456758 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2224,"Simulated",1,"LL",7.456014 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2225,"Simulated",1,"LL",7.455305 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2226,"Simulated",1,"LL",7.455005 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2227,"Simulated",1,"LL",7.454513 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2228,"Simulated",1,"LL",7.454311 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2229,"Simulated",1,"LL",7.453785 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2230,"Simulated",1,"LL",7.453452 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2231,"Simulated",1,"LL",7.453249 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2232,"Simulated",1,"LL",7.453297 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2233,"Simulated",1,"LL",7.452802 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2234,"Simulated",1,"LL",7.452409 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2235,"Simulated",1,"LL",7.452071 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2236,"Simulated",1,"LL",7.451841 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2237,"Simulated",1,"LL",7.451441 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2238,"Simulated",1,"LL",7.450827 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2239,"Simulated",1,"LL",7.450865 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2240,"Simulated",1,"LL",7.451247 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2241,"Simulated",1,"LL",7.451006 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2242,"Simulated",1,"LL",7.450771 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2243,"Simulated",1,"LL",7.450621 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2244,"Simulated",1,"LL",7.450532 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2245,"Simulated",1,"LL",7.450631 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2246,"Simulated",1,"LL",7.450288 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2247,"Simulated",1,"LL",7.45019 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2248,"Simulated",1,"LL",7.450185 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2249,"Simulated",1,"LL",7.450232 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2250,"Simulated",1,"LL",7.450505 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2251,"Simulated",1,"LL",7.450655 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2252,"Simulated",1,"LL",7.450385 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2253,"Simulated",1,"LL",7.450079 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2254,"Simulated",1,"LL",7.450359 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2255,"Simulated",1,"LL",7.450612 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2256,"Simulated",1,"LL",7.450587 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2257,"Simulated",1,"LL",7.450537 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2258,"Simulated",1,"LL",7.450664 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2259,"Simulated",1,"LL",7.450691 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2260,"Simulated",1,"LL",7.450949 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2261,"Simulated",1,"LL",7.450975 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2262,"Simulated",1,"LL",7.451005 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2263,"Simulated",1,"LL",7.450997 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2264,"Simulated",1,"LL",7.451009 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2265,"Simulated",1,"LL",7.450615 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2266,"Simulated",1,"LL",7.450862 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2267,"Simulated",1,"LL",7.451268 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2268,"Simulated",1,"LL",7.450761 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2269,"Simulated",1,"LL",7.450691 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2270,"Simulated",1,"LL",7.450578 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2271,"Simulated",1,"LL",7.450949 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2272,"Simulated",1,"LL",7.450646 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2273,"Simulated",1,"LL",7.450805 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2274,"Simulated",1,"LL",7.450998 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2275,"Simulated",1,"LL",7.4509 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2276,"Simulated",1,"LL",7.450937 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2277,"Simulated",1,"LL",7.450833 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2278,"Simulated",1,"LL",7.450721 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2279,"Simulated",1,"LL",7.45048 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2280,"Simulated",1,"LL",7.450676 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2281,"Simulated",1,"LL",7.450594 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2282,"Simulated",1,"LL",7.451023 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2283,"Simulated",1,"LL",7.451137 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2284,"Simulated",1,"LL",7.450983 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2285,"Simulated",1,"LL",7.451042 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2286,"Simulated",1,"LL",7.451179 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2287,"Simulated",1,"LL",7.451308 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2288,"Simulated",1,"LL",7.451673 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2289,"Simulated",1,"LL",7.451732 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2290,"Simulated",1,"LL",7.451471 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2291,"Simulated",1,"LL",7.451501 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2292,"Simulated",1,"LL",7.451393 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2293,"Simulated",1,"LL",7.451499 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2294,"Simulated",1,"LL",7.451586 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2295,"Simulated",1,"LL",7.45149 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2296,"Simulated",1,"LL",7.451718 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2297,"Simulated",1,"LL",7.451688 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2298,"Simulated",1,"LL",7.451881 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2299,"Simulated",1,"LL",7.451714 -"IPSL-CM5A-LR","ph","ocean","ph_LL","rcp85",2300,"Simulated",1,"LL",7.45156 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.067359 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.065552 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.06328833333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.06092466666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.05898133333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.057138 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.05477233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.05270233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.05028266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.047874 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.045499 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.04362433333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.041575 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.039213 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.03595766666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.03295166666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.030257 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.02787666666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.02560233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.02274233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.01937033333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.01716366666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.014667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.01173833333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.008513 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.00553133333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",8.001778 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",7.99949333333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.99566633333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.99315866666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.98991333333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.98662466666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.98363666666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.980087 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.97661966666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.972916 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.96951933333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.96646266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.96300066666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.95898833333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.95514833333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.95112233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.94831633333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.94411033333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.93933766666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.93535733333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.931786 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.92779533333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.92311766666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.91846866666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.91462333333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.91118633333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.90662766666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.90163566666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.89766233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.89358166666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.889447 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.884765 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.88052266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.87625533333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.872053 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.86744066666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.86243233333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.85773133333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.85434166666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.84944133333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.84494 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.83973433333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.835535 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.831315 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.82726766666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.82248933333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.818186 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.814643 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.81003066666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.80512933333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.80091666666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.79627266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.79209733333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.78841633333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.78396133333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.77948 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.775271 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.770663 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.76675266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.76317966666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.75876266666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.75436966666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.750279 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.74660166666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.741971 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.73744566666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.73398166666667 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.73029933333333 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.726421 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2101,"Simulated",1,"global",7.722169 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2102,"Simulated",1,"global",7.718166 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2103,"Simulated",1,"global",7.714197 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2104,"Simulated",1,"global",7.711054 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2105,"Simulated",1,"global",7.707072 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2106,"Simulated",1,"global",7.702831 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2107,"Simulated",1,"global",7.6991 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2108,"Simulated",1,"global",7.696149 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2109,"Simulated",1,"global",7.691992 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2110,"Simulated",1,"global",7.687859 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2111,"Simulated",1,"global",7.684435 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2112,"Simulated",1,"global",7.680116 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2113,"Simulated",1,"global",7.67773 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2114,"Simulated",1,"global",7.673173 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2115,"Simulated",1,"global",7.669911 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2116,"Simulated",1,"global",7.666703 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2117,"Simulated",1,"global",7.662284 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2118,"Simulated",1,"global",7.658389 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2119,"Simulated",1,"global",7.655688 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2120,"Simulated",1,"global",7.652051 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2121,"Simulated",1,"global",7.647963 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2122,"Simulated",1,"global",7.644984 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2123,"Simulated",1,"global",7.641855 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2124,"Simulated",1,"global",7.637972 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2125,"Simulated",1,"global",7.633711 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2126,"Simulated",1,"global",7.631767 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2127,"Simulated",1,"global",7.628761 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2128,"Simulated",1,"global",7.624839 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2129,"Simulated",1,"global",7.621865 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2130,"Simulated",1,"global",7.618417 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2131,"Simulated",1,"global",7.615505 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2132,"Simulated",1,"global",7.611093 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2133,"Simulated",1,"global",7.608149 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2134,"Simulated",1,"global",7.606048 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2135,"Simulated",1,"global",7.602085 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2136,"Simulated",1,"global",7.598971 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2137,"Simulated",1,"global",7.595816 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2138,"Simulated",1,"global",7.592908 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2139,"Simulated",1,"global",7.589745 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2140,"Simulated",1,"global",7.586948 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2141,"Simulated",1,"global",7.583575 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2142,"Simulated",1,"global",7.580686 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2143,"Simulated",1,"global",7.577745 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2144,"Simulated",1,"global",7.574779 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2145,"Simulated",1,"global",7.571405 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2146,"Simulated",1,"global",7.56869 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2147,"Simulated",1,"global",7.565642 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2148,"Simulated",1,"global",7.562064 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2149,"Simulated",1,"global",7.559369 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2150,"Simulated",1,"global",7.556298 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2151,"Simulated",1,"global",7.553287 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2152,"Simulated",1,"global",7.550278 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2153,"Simulated",1,"global",7.548043 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2154,"Simulated",1,"global",7.544845 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2155,"Simulated",1,"global",7.542376 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2156,"Simulated",1,"global",7.540183 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2157,"Simulated",1,"global",7.536839 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2158,"Simulated",1,"global",7.53464 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2159,"Simulated",1,"global",7.532316 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2160,"Simulated",1,"global",7.529312 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2161,"Simulated",1,"global",7.526789 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2162,"Simulated",1,"global",7.524664 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2163,"Simulated",1,"global",7.522877 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2164,"Simulated",1,"global",7.520379 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2165,"Simulated",1,"global",7.517826 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2166,"Simulated",1,"global",7.515607 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2167,"Simulated",1,"global",7.513328 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2168,"Simulated",1,"global",7.510709 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2169,"Simulated",1,"global",7.509298 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2170,"Simulated",1,"global",7.506476 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2171,"Simulated",1,"global",7.503726 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2172,"Simulated",1,"global",7.501868 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2173,"Simulated",1,"global",7.50024 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2174,"Simulated",1,"global",7.498011 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2175,"Simulated",1,"global",7.496054 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2176,"Simulated",1,"global",7.494386 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2177,"Simulated",1,"global",7.492424 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2178,"Simulated",1,"global",7.490418 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2179,"Simulated",1,"global",7.489041 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2180,"Simulated",1,"global",7.487287 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2181,"Simulated",1,"global",7.485985 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2182,"Simulated",1,"global",7.484267 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2183,"Simulated",1,"global",7.482133 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2184,"Simulated",1,"global",7.480874 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2185,"Simulated",1,"global",7.47864 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2186,"Simulated",1,"global",7.476913 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2187,"Simulated",1,"global",7.476002 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2188,"Simulated",1,"global",7.474137 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2189,"Simulated",1,"global",7.472639 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2190,"Simulated",1,"global",7.470923 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2191,"Simulated",1,"global",7.469855 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2192,"Simulated",1,"global",7.46863 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2193,"Simulated",1,"global",7.467081 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2194,"Simulated",1,"global",7.465223 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2195,"Simulated",1,"global",7.4637 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2196,"Simulated",1,"global",7.462464 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2197,"Simulated",1,"global",7.461651 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2198,"Simulated",1,"global",7.459978 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2199,"Simulated",1,"global",7.458577 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2200,"Simulated",1,"global",7.457373 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2201,"Simulated",1,"global",7.456475 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2202,"Simulated",1,"global",7.455417 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2203,"Simulated",1,"global",7.453751 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2204,"Simulated",1,"global",7.453083 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2205,"Simulated",1,"global",7.452661 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2206,"Simulated",1,"global",7.451078 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2207,"Simulated",1,"global",7.449669 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2208,"Simulated",1,"global",7.448832 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2209,"Simulated",1,"global",7.448373 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2210,"Simulated",1,"global",7.447316 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2211,"Simulated",1,"global",7.445683 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2212,"Simulated",1,"global",7.444925 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2213,"Simulated",1,"global",7.44494 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2214,"Simulated",1,"global",7.443316 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2215,"Simulated",1,"global",7.442573 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2216,"Simulated",1,"global",7.442328 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2217,"Simulated",1,"global",7.441441 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2218,"Simulated",1,"global",7.440778 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2219,"Simulated",1,"global",7.439889 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2220,"Simulated",1,"global",7.438747 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2221,"Simulated",1,"global",7.438226 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2222,"Simulated",1,"global",7.437731 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2223,"Simulated",1,"global",7.437119 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2224,"Simulated",1,"global",7.43646 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2225,"Simulated",1,"global",7.436289 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2226,"Simulated",1,"global",7.435947 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2227,"Simulated",1,"global",7.434998 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2228,"Simulated",1,"global",7.434777 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2229,"Simulated",1,"global",7.434275 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2230,"Simulated",1,"global",7.433614 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2231,"Simulated",1,"global",7.433684 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2232,"Simulated",1,"global",7.433248 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2233,"Simulated",1,"global",7.432869 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2234,"Simulated",1,"global",7.432589 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2235,"Simulated",1,"global",7.432684 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2236,"Simulated",1,"global",7.432274 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2237,"Simulated",1,"global",7.431503 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2238,"Simulated",1,"global",7.431518 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2239,"Simulated",1,"global",7.431342 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2240,"Simulated",1,"global",7.431283 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2241,"Simulated",1,"global",7.431546 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2242,"Simulated",1,"global",7.431579 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2243,"Simulated",1,"global",7.430909 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2244,"Simulated",1,"global",7.430749 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2245,"Simulated",1,"global",7.430795 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2246,"Simulated",1,"global",7.430777 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2247,"Simulated",1,"global",7.430492 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2248,"Simulated",1,"global",7.431133 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2249,"Simulated",1,"global",7.430673 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2250,"Simulated",1,"global",7.430821 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2251,"Simulated",1,"global",7.430621 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2252,"Simulated",1,"global",7.430924 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2253,"Simulated",1,"global",7.430787 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2254,"Simulated",1,"global",7.430871 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2255,"Simulated",1,"global",7.431313 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2256,"Simulated",1,"global",7.431051 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2257,"Simulated",1,"global",7.430523 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2258,"Simulated",1,"global",7.430914 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2259,"Simulated",1,"global",7.430332 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2260,"Simulated",1,"global",7.430746 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2261,"Simulated",1,"global",7.4306 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2262,"Simulated",1,"global",7.43102 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2263,"Simulated",1,"global",7.430911 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2264,"Simulated",1,"global",7.431331 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2265,"Simulated",1,"global",7.431259 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2266,"Simulated",1,"global",7.431561 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2267,"Simulated",1,"global",7.431645 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2268,"Simulated",1,"global",7.431591 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2269,"Simulated",1,"global",7.431675 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2270,"Simulated",1,"global",7.431324 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2271,"Simulated",1,"global",7.431557 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2272,"Simulated",1,"global",7.431839 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2273,"Simulated",1,"global",7.431878 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2274,"Simulated",1,"global",7.43196 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2275,"Simulated",1,"global",7.431934 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2276,"Simulated",1,"global",7.431995 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2277,"Simulated",1,"global",7.431933 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2278,"Simulated",1,"global",7.432077 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2279,"Simulated",1,"global",7.43182 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2280,"Simulated",1,"global",7.431524 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2281,"Simulated",1,"global",7.431754 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2282,"Simulated",1,"global",7.431892 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2283,"Simulated",1,"global",7.432185 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2284,"Simulated",1,"global",7.431941 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2285,"Simulated",1,"global",7.432224 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2286,"Simulated",1,"global",7.431815 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2287,"Simulated",1,"global",7.431873 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2288,"Simulated",1,"global",7.431807 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2289,"Simulated",1,"global",7.432158 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2290,"Simulated",1,"global",7.431617 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2291,"Simulated",1,"global",7.432032 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2292,"Simulated",1,"global",7.431965 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2293,"Simulated",1,"global",7.432052 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2294,"Simulated",1,"global",7.431726 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2295,"Simulated",1,"global",7.431307 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2296,"Simulated",1,"global",7.431391 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2297,"Simulated",1,"global",7.431552 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2298,"Simulated",1,"global",7.431875 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2299,"Simulated",1,"global",7.43223 -"MPI-ESM-LR","ph","ocean","ph","rcp85",2300,"Simulated",1,"global",7.432028 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.07167433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.06869866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.067305 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.064197 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.06158166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.05838866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.05716333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.05592566666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.05198966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.05089533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.04778933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.04469066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.040799 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.03728133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.034399 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.03268033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.029205 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.0249 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.02280466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.02002266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.01537533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.012206 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.00935833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",8.007172 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",8.00414166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",7.99986666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",7.996649 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.99360633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.98961033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.98646533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.983948 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.98102266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.976956 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.971584 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.96933133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.96372033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.960408 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.95744166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.95113233333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.94828633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.94510866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.93962033333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.93595533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.930947 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.92700633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.92354966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.91732933333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.91269666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.90789966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.90123633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.897717 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.89372966666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.89008333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.883641 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.88034633333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.87671733333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.87062666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.86469433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.85987266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.85562266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.853386 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.84724233333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.84221166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.83529666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.83198466666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.82559166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.82224366666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.81533166666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.81058666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.80715133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.80231533333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.79655133333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.79253433333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.78834733333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.782491 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.77818833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.77436866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.76803833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.76385766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.75982766666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.75487866666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.750023 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.74675066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.74045666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.736913 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.73229333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.72735233333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.724306 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.71809333333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.71403266666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.708872 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.70320066666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.69946833333333 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.69627666666667 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.692148 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2101,"Simulated",1,"HL",7.684882 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2102,"Simulated",1,"HL",7.68169 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2103,"Simulated",1,"HL",7.678372 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2104,"Simulated",1,"HL",7.677411 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2105,"Simulated",1,"HL",7.670453 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2106,"Simulated",1,"HL",7.667561 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2107,"Simulated",1,"HL",7.66259 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2108,"Simulated",1,"HL",7.65805 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2109,"Simulated",1,"HL",7.654598 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2110,"Simulated",1,"HL",7.649757 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2111,"Simulated",1,"HL",7.647727 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2112,"Simulated",1,"HL",7.642264 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2113,"Simulated",1,"HL",7.639723 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2114,"Simulated",1,"HL",7.633452 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2115,"Simulated",1,"HL",7.632625 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2116,"Simulated",1,"HL",7.628376 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2117,"Simulated",1,"HL",7.62444 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2118,"Simulated",1,"HL",7.617904 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2119,"Simulated",1,"HL",7.616273 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2120,"Simulated",1,"HL",7.61167 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2121,"Simulated",1,"HL",7.606975 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2122,"Simulated",1,"HL",7.60468 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2123,"Simulated",1,"HL",7.598554 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2124,"Simulated",1,"HL",7.596037 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2125,"Simulated",1,"HL",7.590251 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2126,"Simulated",1,"HL",7.589621 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2127,"Simulated",1,"HL",7.587662 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2128,"Simulated",1,"HL",7.584789 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2129,"Simulated",1,"HL",7.577697 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2130,"Simulated",1,"HL",7.574169 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2131,"Simulated",1,"HL",7.57551 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2132,"Simulated",1,"HL",7.5692 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2133,"Simulated",1,"HL",7.564147 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2134,"Simulated",1,"HL",7.562001 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2135,"Simulated",1,"HL",7.558086 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2136,"Simulated",1,"HL",7.556328 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2137,"Simulated",1,"HL",7.550257 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2138,"Simulated",1,"HL",7.548187 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2139,"Simulated",1,"HL",7.544677 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2140,"Simulated",1,"HL",7.544378 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2141,"Simulated",1,"HL",7.539042 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2142,"Simulated",1,"HL",7.535613 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2143,"Simulated",1,"HL",7.534128 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2144,"Simulated",1,"HL",7.530127 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2145,"Simulated",1,"HL",7.524446 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2146,"Simulated",1,"HL",7.522851 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2147,"Simulated",1,"HL",7.520211 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2148,"Simulated",1,"HL",7.514445 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2149,"Simulated",1,"HL",7.510439 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2150,"Simulated",1,"HL",7.50754 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2151,"Simulated",1,"HL",7.50614 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2152,"Simulated",1,"HL",7.502608 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2153,"Simulated",1,"HL",7.500018 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2154,"Simulated",1,"HL",7.496055 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2155,"Simulated",1,"HL",7.493994 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2156,"Simulated",1,"HL",7.492337 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2157,"Simulated",1,"HL",7.489328 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2158,"Simulated",1,"HL",7.4872 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2159,"Simulated",1,"HL",7.482929 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2160,"Simulated",1,"HL",7.481753 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2161,"Simulated",1,"HL",7.479283 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2162,"Simulated",1,"HL",7.476834 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2163,"Simulated",1,"HL",7.476656 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2164,"Simulated",1,"HL",7.473548 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2165,"Simulated",1,"HL",7.470173 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2166,"Simulated",1,"HL",7.46804 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2167,"Simulated",1,"HL",7.466243 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2168,"Simulated",1,"HL",7.4621 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2169,"Simulated",1,"HL",7.459084 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2170,"Simulated",1,"HL",7.45628 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2171,"Simulated",1,"HL",7.452597 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2172,"Simulated",1,"HL",7.451224 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2173,"Simulated",1,"HL",7.4485 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2174,"Simulated",1,"HL",7.446572 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2175,"Simulated",1,"HL",7.446116 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2176,"Simulated",1,"HL",7.443617 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2177,"Simulated",1,"HL",7.442665 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2178,"Simulated",1,"HL",7.438126 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2179,"Simulated",1,"HL",7.438758 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2180,"Simulated",1,"HL",7.437109 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2181,"Simulated",1,"HL",7.43755 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2182,"Simulated",1,"HL",7.43492 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2183,"Simulated",1,"HL",7.432345 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2184,"Simulated",1,"HL",7.430362 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2185,"Simulated",1,"HL",7.428194 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2186,"Simulated",1,"HL",7.425334 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2187,"Simulated",1,"HL",7.424755 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2188,"Simulated",1,"HL",7.424482 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2189,"Simulated",1,"HL",7.422751 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2190,"Simulated",1,"HL",7.418644 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2191,"Simulated",1,"HL",7.41673 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2192,"Simulated",1,"HL",7.41581 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2193,"Simulated",1,"HL",7.414929 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2194,"Simulated",1,"HL",7.413072 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2195,"Simulated",1,"HL",7.411618 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2196,"Simulated",1,"HL",7.407968 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2197,"Simulated",1,"HL",7.407754 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2198,"Simulated",1,"HL",7.406136 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2199,"Simulated",1,"HL",7.404669 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2200,"Simulated",1,"HL",7.403399 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2201,"Simulated",1,"HL",7.403066 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2202,"Simulated",1,"HL",7.403619 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2203,"Simulated",1,"HL",7.400551 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2204,"Simulated",1,"HL",7.400171 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2205,"Simulated",1,"HL",7.40107 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2206,"Simulated",1,"HL",7.398734 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2207,"Simulated",1,"HL",7.398585 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2208,"Simulated",1,"HL",7.396639 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2209,"Simulated",1,"HL",7.394336 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2210,"Simulated",1,"HL",7.393737 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2211,"Simulated",1,"HL",7.392158 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2212,"Simulated",1,"HL",7.391359 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2213,"Simulated",1,"HL",7.391232 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2214,"Simulated",1,"HL",7.389575 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2215,"Simulated",1,"HL",7.389921 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2216,"Simulated",1,"HL",7.38818 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2217,"Simulated",1,"HL",7.388259 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2218,"Simulated",1,"HL",7.388148 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2219,"Simulated",1,"HL",7.387691 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2220,"Simulated",1,"HL",7.384056 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2221,"Simulated",1,"HL",7.385873 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2222,"Simulated",1,"HL",7.38283 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2223,"Simulated",1,"HL",7.382802 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2224,"Simulated",1,"HL",7.38228 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2225,"Simulated",1,"HL",7.382535 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2226,"Simulated",1,"HL",7.383511 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2227,"Simulated",1,"HL",7.380753 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2228,"Simulated",1,"HL",7.381778 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2229,"Simulated",1,"HL",7.380926 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2230,"Simulated",1,"HL",7.380217 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2231,"Simulated",1,"HL",7.379887 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2232,"Simulated",1,"HL",7.381713 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2233,"Simulated",1,"HL",7.379798 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2234,"Simulated",1,"HL",7.379994 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2235,"Simulated",1,"HL",7.380072 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2236,"Simulated",1,"HL",7.381405 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2237,"Simulated",1,"HL",7.379246 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2238,"Simulated",1,"HL",7.379566 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2239,"Simulated",1,"HL",7.379149 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2240,"Simulated",1,"HL",7.379479 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2241,"Simulated",1,"HL",7.378471 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2242,"Simulated",1,"HL",7.380855 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2243,"Simulated",1,"HL",7.380236 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2244,"Simulated",1,"HL",7.376965 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2245,"Simulated",1,"HL",7.37881 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2246,"Simulated",1,"HL",7.379495 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2247,"Simulated",1,"HL",7.379541 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2248,"Simulated",1,"HL",7.381212 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2249,"Simulated",1,"HL",7.379774 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2250,"Simulated",1,"HL",7.379134 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2251,"Simulated",1,"HL",7.377878 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2252,"Simulated",1,"HL",7.380262 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2253,"Simulated",1,"HL",7.379703 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2254,"Simulated",1,"HL",7.379283 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2255,"Simulated",1,"HL",7.379492 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2256,"Simulated",1,"HL",7.380222 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2257,"Simulated",1,"HL",7.378658 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2258,"Simulated",1,"HL",7.378341 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2259,"Simulated",1,"HL",7.378001 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2260,"Simulated",1,"HL",7.37899 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2261,"Simulated",1,"HL",7.377825 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2262,"Simulated",1,"HL",7.380561 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2263,"Simulated",1,"HL",7.379587 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2264,"Simulated",1,"HL",7.381999 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2265,"Simulated",1,"HL",7.381247 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2266,"Simulated",1,"HL",7.38149 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2267,"Simulated",1,"HL",7.380993 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2268,"Simulated",1,"HL",7.381523 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2269,"Simulated",1,"HL",7.381147 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2270,"Simulated",1,"HL",7.381457 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2271,"Simulated",1,"HL",7.379468 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2272,"Simulated",1,"HL",7.381183 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2273,"Simulated",1,"HL",7.381554 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2274,"Simulated",1,"HL",7.380979 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2275,"Simulated",1,"HL",7.381497 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2276,"Simulated",1,"HL",7.381728 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2277,"Simulated",1,"HL",7.383676 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2278,"Simulated",1,"HL",7.381575 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2279,"Simulated",1,"HL",7.380361 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2280,"Simulated",1,"HL",7.381014 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2281,"Simulated",1,"HL",7.379611 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2282,"Simulated",1,"HL",7.379768 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2283,"Simulated",1,"HL",7.383156 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2284,"Simulated",1,"HL",7.3808 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2285,"Simulated",1,"HL",7.380733 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2286,"Simulated",1,"HL",7.381071 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2287,"Simulated",1,"HL",7.380111 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2288,"Simulated",1,"HL",7.379779 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2289,"Simulated",1,"HL",7.381087 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2290,"Simulated",1,"HL",7.378541 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2291,"Simulated",1,"HL",7.38187 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2292,"Simulated",1,"HL",7.381173 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2293,"Simulated",1,"HL",7.381943 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2294,"Simulated",1,"HL",7.380181 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2295,"Simulated",1,"HL",7.379121 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2296,"Simulated",1,"HL",7.380118 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2297,"Simulated",1,"HL",7.381127 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2298,"Simulated",1,"HL",7.380643 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2299,"Simulated",1,"HL",7.381817 -"MPI-ESM-LR","ph","ocean","ph_HL","rcp85",2300,"Simulated",1,"HL",7.381052 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.066477 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.06490866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.06246766666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.060256 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.05844966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.056882 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.05428366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.05204333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.04993366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.04725633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.045031 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.04340633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.041734 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.03960766666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.03627666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.03300666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.030472 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.028485 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.026174 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.023298 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.020187 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.018177 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.015752 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.012672 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.00940666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.006689 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",8.00282633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",8.00069666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.996904 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.994527 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.991132 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.98776966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.985002 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.981825 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.97810966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.97479533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.97138133333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.96830666666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.96542633333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.961176 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.95720066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.95347333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.95084266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.94680066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.941858 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.93777066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.93474066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.93088166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.92622766666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.921991 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.918079 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.914754 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.910009 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.90531366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.901202 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.89702866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.89329333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.88886733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.884744 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.88047233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.87586833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.871569 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.86656533333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.862317 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.85891166666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.854316 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.84957866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.844722 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.84063366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.836254 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.83236833333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.82779066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.82342866666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.82001733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.81565933333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.810636 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.80634266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.80204366666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.797869 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.79425966666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.78990566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.78550133333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.78110066666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.776837 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.77285133333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.76949266666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.76518233333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.76051433333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.75685733333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.753259 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.748736 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.744445 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.74103566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.73725333333333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.73342566666667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2101,"Simulated",1,"LL",7.729791 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2102,"Simulated",1,"LL",7.725622 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2103,"Simulated",1,"LL",7.721519 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2104,"Simulated",1,"LL",7.71793 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2105,"Simulated",1,"LL",7.714557 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2106,"Simulated",1,"LL",7.71004 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2107,"Simulated",1,"LL",7.706563 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2108,"Simulated",1,"LL",7.703935 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2109,"Simulated",1,"LL",7.699634 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2110,"Simulated",1,"LL",7.695647 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2111,"Simulated",1,"LL",7.691937 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2112,"Simulated",1,"LL",7.687853 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2113,"Simulated",1,"LL",7.685498 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2114,"Simulated",1,"LL",7.681292 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2115,"Simulated",1,"LL",7.677532 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2116,"Simulated",1,"LL",7.674536 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2117,"Simulated",1,"LL",7.670019 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2118,"Simulated",1,"LL",7.666664 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2119,"Simulated",1,"LL",7.663744 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2120,"Simulated",1,"LL",7.660305 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2121,"Simulated",1,"LL",7.656341 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2122,"Simulated",1,"LL",7.653222 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2123,"Simulated",1,"LL",7.650706 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2124,"Simulated",1,"LL",7.646542 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2125,"Simulated",1,"LL",7.642594 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2126,"Simulated",1,"LL",7.640381 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2127,"Simulated",1,"LL",7.637161 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2128,"Simulated",1,"LL",7.633025 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2129,"Simulated",1,"LL",7.630893 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2130,"Simulated",1,"LL",7.62746 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2131,"Simulated",1,"LL",7.62368 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2132,"Simulated",1,"LL",7.619655 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2133,"Simulated",1,"LL",7.617143 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2134,"Simulated",1,"LL",7.61505 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2135,"Simulated",1,"LL",7.611078 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2136,"Simulated",1,"LL",7.607687 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2137,"Simulated",1,"LL",7.605127 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2138,"Simulated",1,"LL",7.602049 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2139,"Simulated",1,"LL",7.598956 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2140,"Simulated",1,"LL",7.595649 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2141,"Simulated",1,"LL",7.592677 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2142,"Simulated",1,"LL",7.589898 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2143,"Simulated",1,"LL",7.58666 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2144,"Simulated",1,"LL",7.583906 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2145,"Simulated",1,"LL",7.581003 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2146,"Simulated",1,"LL",7.578058 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2147,"Simulated",1,"LL",7.574927 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2148,"Simulated",1,"LL",7.571797 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2149,"Simulated",1,"LL",7.56937 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2150,"Simulated",1,"LL",7.566263 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2151,"Simulated",1,"LL",7.562923 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2152,"Simulated",1,"LL",7.560021 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2153,"Simulated",1,"LL",7.557859 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2154,"Simulated",1,"LL",7.554817 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2155,"Simulated",1,"LL",7.552264 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2156,"Simulated",1,"LL",7.549962 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2157,"Simulated",1,"LL",7.54655 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2158,"Simulated",1,"LL",7.544336 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2159,"Simulated",1,"LL",7.54241 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2160,"Simulated",1,"LL",7.539032 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2161,"Simulated",1,"LL",7.536499 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2162,"Simulated",1,"LL",7.53444 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2163,"Simulated",1,"LL",7.532324 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2164,"Simulated",1,"LL",7.529951 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2165,"Simulated",1,"LL",7.527566 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2166,"Simulated",1,"LL",7.525329 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2167,"Simulated",1,"LL",7.522951 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2168,"Simulated",1,"LL",7.520644 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2169,"Simulated",1,"LL",7.519561 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2170,"Simulated",1,"LL",7.516735 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2171,"Simulated",1,"LL",7.514177 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2172,"Simulated",1,"LL",7.512219 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2173,"Simulated",1,"LL",7.510815 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2174,"Simulated",1,"LL",7.508524 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2175,"Simulated",1,"LL",7.506261 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2176,"Simulated",1,"LL",7.504762 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2177,"Simulated",1,"LL",7.502594 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2178,"Simulated",1,"LL",7.501106 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2179,"Simulated",1,"LL",7.499318 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2180,"Simulated",1,"LL",7.497543 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2181,"Simulated",1,"LL",7.495884 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2182,"Simulated",1,"LL",7.494353 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2183,"Simulated",1,"LL",7.492309 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2184,"Simulated",1,"LL",7.491198 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2185,"Simulated",1,"LL",7.488951 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2186,"Simulated",1,"LL",7.487456 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2187,"Simulated",1,"LL",7.486476 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2188,"Simulated",1,"LL",7.484286 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2189,"Simulated",1,"LL",7.482836 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2190,"Simulated",1,"LL",7.481608 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2191,"Simulated",1,"LL",7.480713 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2192,"Simulated",1,"LL",7.479426 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2193,"Simulated",1,"LL",7.477741 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2194,"Simulated",1,"LL",7.475882 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2195,"Simulated",1,"LL",7.474345 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2196,"Simulated",1,"LL",7.473602 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2197,"Simulated",1,"LL",7.472667 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2198,"Simulated",1,"LL",7.470982 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2199,"Simulated",1,"LL",7.469596 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2200,"Simulated",1,"LL",7.468405 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2201,"Simulated",1,"LL",7.467391 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2202,"Simulated",1,"LL",7.466004 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2203,"Simulated",1,"LL",7.464625 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2204,"Simulated",1,"LL",7.463898 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2205,"Simulated",1,"LL",7.463206 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2206,"Simulated",1,"LL",7.461777 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2207,"Simulated",1,"LL",7.46011 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2208,"Simulated",1,"LL",7.4595 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2209,"Simulated",1,"LL",7.459418 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2210,"Simulated",1,"LL",7.458267 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2211,"Simulated",1,"LL",7.456623 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2212,"Simulated",1,"LL",7.455873 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2213,"Simulated",1,"LL",7.455918 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2214,"Simulated",1,"LL",7.454301 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2215,"Simulated",1,"LL",7.453335 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2216,"Simulated",1,"LL",7.453395 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2217,"Simulated",1,"LL",7.452311 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2218,"Simulated",1,"LL",7.451535 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2219,"Simulated",1,"LL",7.450558 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2220,"Simulated",1,"LL",7.449925 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2221,"Simulated",1,"LL",7.448926 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2222,"Simulated",1,"LL",7.448952 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2223,"Simulated",1,"LL",7.448221 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2224,"Simulated",1,"LL",7.447534 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2225,"Simulated",1,"LL",7.447276 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2226,"Simulated",1,"LL",7.446665 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2227,"Simulated",1,"LL",7.446085 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2228,"Simulated",1,"LL",7.445609 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2229,"Simulated",1,"LL",7.445179 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2230,"Simulated",1,"LL",7.444527 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2231,"Simulated",1,"LL",7.44468 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2232,"Simulated",1,"LL",7.443782 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2233,"Simulated",1,"LL",7.443716 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2234,"Simulated",1,"LL",7.443339 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2235,"Simulated",1,"LL",7.443437 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2236,"Simulated",1,"LL",7.442672 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2237,"Simulated",1,"LL",7.442184 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2238,"Simulated",1,"LL",7.442136 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2239,"Simulated",1,"LL",7.44201 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2240,"Simulated",1,"LL",7.441872 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2241,"Simulated",1,"LL",7.442394 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2242,"Simulated",1,"LL",7.441947 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2243,"Simulated",1,"LL",7.441266 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2244,"Simulated",1,"LL",7.441742 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2245,"Simulated",1,"LL",7.441421 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2246,"Simulated",1,"LL",7.441259 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2247,"Simulated",1,"LL",7.440906 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2248,"Simulated",1,"LL",7.441336 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2249,"Simulated",1,"LL",7.441076 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2250,"Simulated",1,"LL",7.441385 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2251,"Simulated",1,"LL",7.441401 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2252,"Simulated",1,"LL",7.441279 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2253,"Simulated",1,"LL",7.441228 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2254,"Simulated",1,"LL",7.441415 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2255,"Simulated",1,"LL",7.441904 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2256,"Simulated",1,"LL",7.44144 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2257,"Simulated",1,"LL",7.441124 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2258,"Simulated",1,"LL",7.44166 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2259,"Simulated",1,"LL",7.441028 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2260,"Simulated",1,"LL",7.441325 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2261,"Simulated",1,"LL",7.441386 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2262,"Simulated",1,"LL",7.441333 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2263,"Simulated",1,"LL",7.441402 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2264,"Simulated",1,"LL",7.441414 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2265,"Simulated",1,"LL",7.441481 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2266,"Simulated",1,"LL",7.441795 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2267,"Simulated",1,"LL",7.441997 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2268,"Simulated",1,"LL",7.441825 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2269,"Simulated",1,"LL",7.442002 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2270,"Simulated",1,"LL",7.441516 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2271,"Simulated",1,"LL",7.442204 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2272,"Simulated",1,"LL",7.442192 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2273,"Simulated",1,"LL",7.442163 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2274,"Simulated",1,"LL",7.44238 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2275,"Simulated",1,"LL",7.442243 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2276,"Simulated",1,"LL",7.442269 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2277,"Simulated",1,"LL",7.441796 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2278,"Simulated",1,"LL",7.442399 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2279,"Simulated",1,"LL",7.442337 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2280,"Simulated",1,"LL",7.441847 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2281,"Simulated",1,"LL",7.442412 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2282,"Simulated",1,"LL",7.442546 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2283,"Simulated",1,"LL",7.442206 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2284,"Simulated",1,"LL",7.442394 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2285,"Simulated",1,"LL",7.442749 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2286,"Simulated",1,"LL",7.442186 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2287,"Simulated",1,"LL",7.442453 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2288,"Simulated",1,"LL",7.442441 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2289,"Simulated",1,"LL",7.442596 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2290,"Simulated",1,"LL",7.442465 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2291,"Simulated",1,"LL",7.442285 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2292,"Simulated",1,"LL",7.442346 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2293,"Simulated",1,"LL",7.442293 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2294,"Simulated",1,"LL",7.442261 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2295,"Simulated",1,"LL",7.441973 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2296,"Simulated",1,"LL",7.441871 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2297,"Simulated",1,"LL",7.441858 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2298,"Simulated",1,"LL",7.442346 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2299,"Simulated",1,"LL",7.442533 -"MPI-ESM-LR","ph","ocean","ph_LL","rcp85",2300,"Simulated",1,"LL",7.442447 -"NorESM1-ME","ph","ocean","ph","rcp85",2006,"Simulated",1,"global",8.069832 -"NorESM1-ME","ph","ocean","ph","rcp85",2007,"Simulated",1,"global",8.067488 -"NorESM1-ME","ph","ocean","ph","rcp85",2008,"Simulated",1,"global",8.064983 -"NorESM1-ME","ph","ocean","ph","rcp85",2009,"Simulated",1,"global",8.063179 -"NorESM1-ME","ph","ocean","ph","rcp85",2010,"Simulated",1,"global",8.06149 -"NorESM1-ME","ph","ocean","ph","rcp85",2011,"Simulated",1,"global",8.058929 -"NorESM1-ME","ph","ocean","ph","rcp85",2012,"Simulated",1,"global",8.057232 -"NorESM1-ME","ph","ocean","ph","rcp85",2013,"Simulated",1,"global",8.055104 -"NorESM1-ME","ph","ocean","ph","rcp85",2014,"Simulated",1,"global",8.05322 -"NorESM1-ME","ph","ocean","ph","rcp85",2015,"Simulated",1,"global",8.051452 -"NorESM1-ME","ph","ocean","ph","rcp85",2016,"Simulated",1,"global",8.047695 -"NorESM1-ME","ph","ocean","ph","rcp85",2017,"Simulated",1,"global",8.045075 -"NorESM1-ME","ph","ocean","ph","rcp85",2018,"Simulated",1,"global",8.04301 -"NorESM1-ME","ph","ocean","ph","rcp85",2019,"Simulated",1,"global",8.040746 -"NorESM1-ME","ph","ocean","ph","rcp85",2020,"Simulated",1,"global",8.038237 -"NorESM1-ME","ph","ocean","ph","rcp85",2021,"Simulated",1,"global",8.034994 -"NorESM1-ME","ph","ocean","ph","rcp85",2022,"Simulated",1,"global",8.032789 -"NorESM1-ME","ph","ocean","ph","rcp85",2023,"Simulated",1,"global",8.03121 -"NorESM1-ME","ph","ocean","ph","rcp85",2024,"Simulated",1,"global",8.027911 -"NorESM1-ME","ph","ocean","ph","rcp85",2025,"Simulated",1,"global",8.024688 -"NorESM1-ME","ph","ocean","ph","rcp85",2026,"Simulated",1,"global",8.022065 -"NorESM1-ME","ph","ocean","ph","rcp85",2027,"Simulated",1,"global",8.019949 -"NorESM1-ME","ph","ocean","ph","rcp85",2028,"Simulated",1,"global",8.016844 -"NorESM1-ME","ph","ocean","ph","rcp85",2029,"Simulated",1,"global",8.013674 -"NorESM1-ME","ph","ocean","ph","rcp85",2030,"Simulated",1,"global",8.010184 -"NorESM1-ME","ph","ocean","ph","rcp85",2031,"Simulated",1,"global",8.007912 -"NorESM1-ME","ph","ocean","ph","rcp85",2032,"Simulated",1,"global",8.004801 -"NorESM1-ME","ph","ocean","ph","rcp85",2033,"Simulated",1,"global",8.001094 -"NorESM1-ME","ph","ocean","ph","rcp85",2034,"Simulated",1,"global",7.997772 -"NorESM1-ME","ph","ocean","ph","rcp85",2035,"Simulated",1,"global",7.995336 -"NorESM1-ME","ph","ocean","ph","rcp85",2036,"Simulated",1,"global",7.992332 -"NorESM1-ME","ph","ocean","ph","rcp85",2037,"Simulated",1,"global",7.989213 -"NorESM1-ME","ph","ocean","ph","rcp85",2038,"Simulated",1,"global",7.985427 -"NorESM1-ME","ph","ocean","ph","rcp85",2039,"Simulated",1,"global",7.98216 -"NorESM1-ME","ph","ocean","ph","rcp85",2040,"Simulated",1,"global",7.979302 -"NorESM1-ME","ph","ocean","ph","rcp85",2041,"Simulated",1,"global",7.975526 -"NorESM1-ME","ph","ocean","ph","rcp85",2042,"Simulated",1,"global",7.971588 -"NorESM1-ME","ph","ocean","ph","rcp85",2043,"Simulated",1,"global",7.967657 -"NorESM1-ME","ph","ocean","ph","rcp85",2044,"Simulated",1,"global",7.964235 -"NorESM1-ME","ph","ocean","ph","rcp85",2045,"Simulated",1,"global",7.961089 -"NorESM1-ME","ph","ocean","ph","rcp85",2046,"Simulated",1,"global",7.957204 -"NorESM1-ME","ph","ocean","ph","rcp85",2047,"Simulated",1,"global",7.953439 -"NorESM1-ME","ph","ocean","ph","rcp85",2048,"Simulated",1,"global",7.948971 -"NorESM1-ME","ph","ocean","ph","rcp85",2049,"Simulated",1,"global",7.94563 -"NorESM1-ME","ph","ocean","ph","rcp85",2050,"Simulated",1,"global",7.941145 -"NorESM1-ME","ph","ocean","ph","rcp85",2051,"Simulated",1,"global",7.938009 -"NorESM1-ME","ph","ocean","ph","rcp85",2052,"Simulated",1,"global",7.933548 -"NorESM1-ME","ph","ocean","ph","rcp85",2053,"Simulated",1,"global",7.929085 -"NorESM1-ME","ph","ocean","ph","rcp85",2054,"Simulated",1,"global",7.924734 -"NorESM1-ME","ph","ocean","ph","rcp85",2055,"Simulated",1,"global",7.921411 -"NorESM1-ME","ph","ocean","ph","rcp85",2056,"Simulated",1,"global",7.916529 -"NorESM1-ME","ph","ocean","ph","rcp85",2057,"Simulated",1,"global",7.912183 -"NorESM1-ME","ph","ocean","ph","rcp85",2058,"Simulated",1,"global",7.907248 -"NorESM1-ME","ph","ocean","ph","rcp85",2059,"Simulated",1,"global",7.904123 -"NorESM1-ME","ph","ocean","ph","rcp85",2060,"Simulated",1,"global",7.900324 -"NorESM1-ME","ph","ocean","ph","rcp85",2061,"Simulated",1,"global",7.895425 -"NorESM1-ME","ph","ocean","ph","rcp85",2062,"Simulated",1,"global",7.890659 -"NorESM1-ME","ph","ocean","ph","rcp85",2063,"Simulated",1,"global",7.8865 -"NorESM1-ME","ph","ocean","ph","rcp85",2064,"Simulated",1,"global",7.882226 -"NorESM1-ME","ph","ocean","ph","rcp85",2065,"Simulated",1,"global",7.877509 -"NorESM1-ME","ph","ocean","ph","rcp85",2066,"Simulated",1,"global",7.873401 -"NorESM1-ME","ph","ocean","ph","rcp85",2067,"Simulated",1,"global",7.868677 -"NorESM1-ME","ph","ocean","ph","rcp85",2068,"Simulated",1,"global",7.864178 -"NorESM1-ME","ph","ocean","ph","rcp85",2069,"Simulated",1,"global",7.859488 -"NorESM1-ME","ph","ocean","ph","rcp85",2070,"Simulated",1,"global",7.8554 -"NorESM1-ME","ph","ocean","ph","rcp85",2071,"Simulated",1,"global",7.851121 -"NorESM1-ME","ph","ocean","ph","rcp85",2072,"Simulated",1,"global",7.846137 -"NorESM1-ME","ph","ocean","ph","rcp85",2073,"Simulated",1,"global",7.840726 -"NorESM1-ME","ph","ocean","ph","rcp85",2074,"Simulated",1,"global",7.836553 -"NorESM1-ME","ph","ocean","ph","rcp85",2075,"Simulated",1,"global",7.832876 -"NorESM1-ME","ph","ocean","ph","rcp85",2076,"Simulated",1,"global",7.828572 -"NorESM1-ME","ph","ocean","ph","rcp85",2077,"Simulated",1,"global",7.82397 -"NorESM1-ME","ph","ocean","ph","rcp85",2078,"Simulated",1,"global",7.82003 -"NorESM1-ME","ph","ocean","ph","rcp85",2079,"Simulated",1,"global",7.81578 -"NorESM1-ME","ph","ocean","ph","rcp85",2080,"Simulated",1,"global",7.811012 -"NorESM1-ME","ph","ocean","ph","rcp85",2081,"Simulated",1,"global",7.807118 -"NorESM1-ME","ph","ocean","ph","rcp85",2082,"Simulated",1,"global",7.802681 -"NorESM1-ME","ph","ocean","ph","rcp85",2083,"Simulated",1,"global",7.79728 -"NorESM1-ME","ph","ocean","ph","rcp85",2084,"Simulated",1,"global",7.793639 -"NorESM1-ME","ph","ocean","ph","rcp85",2085,"Simulated",1,"global",7.789502 -"NorESM1-ME","ph","ocean","ph","rcp85",2086,"Simulated",1,"global",7.785436 -"NorESM1-ME","ph","ocean","ph","rcp85",2087,"Simulated",1,"global",7.781412 -"NorESM1-ME","ph","ocean","ph","rcp85",2088,"Simulated",1,"global",7.776931 -"NorESM1-ME","ph","ocean","ph","rcp85",2089,"Simulated",1,"global",7.772578 -"NorESM1-ME","ph","ocean","ph","rcp85",2090,"Simulated",1,"global",7.768526 -"NorESM1-ME","ph","ocean","ph","rcp85",2091,"Simulated",1,"global",7.764116 -"NorESM1-ME","ph","ocean","ph","rcp85",2092,"Simulated",1,"global",7.760473 -"NorESM1-ME","ph","ocean","ph","rcp85",2093,"Simulated",1,"global",7.7563 -"NorESM1-ME","ph","ocean","ph","rcp85",2094,"Simulated",1,"global",7.751983 -"NorESM1-ME","ph","ocean","ph","rcp85",2095,"Simulated",1,"global",7.748257 -"NorESM1-ME","ph","ocean","ph","rcp85",2096,"Simulated",1,"global",7.744108 -"NorESM1-ME","ph","ocean","ph","rcp85",2097,"Simulated",1,"global",7.740039 -"NorESM1-ME","ph","ocean","ph","rcp85",2098,"Simulated",1,"global",7.735277 -"NorESM1-ME","ph","ocean","ph","rcp85",2099,"Simulated",1,"global",7.731702 -"NorESM1-ME","ph","ocean","ph","rcp85",2100,"Simulated",1,"global",7.728813 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2006,"Simulated",1,"HL",8.072666 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2007,"Simulated",1,"HL",8.069536 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2008,"Simulated",1,"HL",8.066217 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2009,"Simulated",1,"HL",8.063333 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2010,"Simulated",1,"HL",8.063698 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2011,"Simulated",1,"HL",8.058111 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2012,"Simulated",1,"HL",8.05716 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2013,"Simulated",1,"HL",8.054378 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2014,"Simulated",1,"HL",8.052391 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2015,"Simulated",1,"HL",8.053994 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2016,"Simulated",1,"HL",8.049902 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2017,"Simulated",1,"HL",8.045466 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2018,"Simulated",1,"HL",8.043226 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2019,"Simulated",1,"HL",8.04081 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2020,"Simulated",1,"HL",8.037571 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2021,"Simulated",1,"HL",8.034856 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2022,"Simulated",1,"HL",8.032618 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2023,"Simulated",1,"HL",8.031009 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2024,"Simulated",1,"HL",8.02538 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2025,"Simulated",1,"HL",8.023025 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2026,"Simulated",1,"HL",8.018295 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2027,"Simulated",1,"HL",8.016368 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2028,"Simulated",1,"HL",8.013043 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2029,"Simulated",1,"HL",8.013035 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2030,"Simulated",1,"HL",8.006117 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2031,"Simulated",1,"HL",8.004544 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2032,"Simulated",1,"HL",7.999454 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2033,"Simulated",1,"HL",7.998755 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2034,"Simulated",1,"HL",7.995556 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2035,"Simulated",1,"HL",7.989255 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2036,"Simulated",1,"HL",7.984565 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2037,"Simulated",1,"HL",7.982458 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2038,"Simulated",1,"HL",7.978216 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2039,"Simulated",1,"HL",7.97647 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2040,"Simulated",1,"HL",7.971869 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2041,"Simulated",1,"HL",7.967405 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2042,"Simulated",1,"HL",7.964491 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2043,"Simulated",1,"HL",7.958627 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2044,"Simulated",1,"HL",7.954026 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2045,"Simulated",1,"HL",7.950172 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2046,"Simulated",1,"HL",7.946634 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2047,"Simulated",1,"HL",7.944902 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2048,"Simulated",1,"HL",7.939802 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2049,"Simulated",1,"HL",7.935496 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2050,"Simulated",1,"HL",7.926333 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2051,"Simulated",1,"HL",7.92822 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2052,"Simulated",1,"HL",7.919889 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2053,"Simulated",1,"HL",7.915752 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2054,"Simulated",1,"HL",7.909528 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2055,"Simulated",1,"HL",7.905508 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2056,"Simulated",1,"HL",7.899764 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2057,"Simulated",1,"HL",7.896347 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2058,"Simulated",1,"HL",7.891944 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2059,"Simulated",1,"HL",7.887613 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2060,"Simulated",1,"HL",7.882533 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2061,"Simulated",1,"HL",7.877579 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2062,"Simulated",1,"HL",7.872547 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2063,"Simulated",1,"HL",7.86682 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2064,"Simulated",1,"HL",7.8626 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2065,"Simulated",1,"HL",7.857933 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2066,"Simulated",1,"HL",7.852178 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2067,"Simulated",1,"HL",7.847749 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2068,"Simulated",1,"HL",7.843044 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2069,"Simulated",1,"HL",7.836556 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2070,"Simulated",1,"HL",7.832117 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2071,"Simulated",1,"HL",7.829292 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2072,"Simulated",1,"HL",7.821919 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2073,"Simulated",1,"HL",7.814431 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2074,"Simulated",1,"HL",7.811467 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2075,"Simulated",1,"HL",7.80644 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2076,"Simulated",1,"HL",7.80256 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2077,"Simulated",1,"HL",7.795573 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2078,"Simulated",1,"HL",7.791482 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2079,"Simulated",1,"HL",7.790574 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2080,"Simulated",1,"HL",7.782841 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2081,"Simulated",1,"HL",7.779488 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2082,"Simulated",1,"HL",7.776441 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2083,"Simulated",1,"HL",7.767554 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2084,"Simulated",1,"HL",7.76518 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2085,"Simulated",1,"HL",7.760461 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2086,"Simulated",1,"HL",7.755276 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2087,"Simulated",1,"HL",7.749731 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2088,"Simulated",1,"HL",7.747343 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2089,"Simulated",1,"HL",7.740585 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2090,"Simulated",1,"HL",7.737003 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2091,"Simulated",1,"HL",7.731237 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2092,"Simulated",1,"HL",7.72896 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2093,"Simulated",1,"HL",7.72548 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2094,"Simulated",1,"HL",7.717508 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2095,"Simulated",1,"HL",7.713892 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2096,"Simulated",1,"HL",7.709135 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2097,"Simulated",1,"HL",7.705387 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2098,"Simulated",1,"HL",7.702003 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2099,"Simulated",1,"HL",7.69605 -"NorESM1-ME","ph","ocean","ph_HL","rcp85",2100,"Simulated",1,"HL",7.693579 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2006,"Simulated",1,"LL",8.069334 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2007,"Simulated",1,"LL",8.067128 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2008,"Simulated",1,"LL",8.064766 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2009,"Simulated",1,"LL",8.063152 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2010,"Simulated",1,"LL",8.061102 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2011,"Simulated",1,"LL",8.059072 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2012,"Simulated",1,"LL",8.057245 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2013,"Simulated",1,"LL",8.055232 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2014,"Simulated",1,"LL",8.053366 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2015,"Simulated",1,"LL",8.051005 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2016,"Simulated",1,"LL",8.047307 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2017,"Simulated",1,"LL",8.045006 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2018,"Simulated",1,"LL",8.042972 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2019,"Simulated",1,"LL",8.040735 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2020,"Simulated",1,"LL",8.038354 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2021,"Simulated",1,"LL",8.035018 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2022,"Simulated",1,"LL",8.032819 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2023,"Simulated",1,"LL",8.031246 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2024,"Simulated",1,"LL",8.028356 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2025,"Simulated",1,"LL",8.02498 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2026,"Simulated",1,"LL",8.022727 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2027,"Simulated",1,"LL",8.020579 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2028,"Simulated",1,"LL",8.017512 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2029,"Simulated",1,"LL",8.013787 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2030,"Simulated",1,"LL",8.010899 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2031,"Simulated",1,"LL",8.008504 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2032,"Simulated",1,"LL",8.005741 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2033,"Simulated",1,"LL",8.001505 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2034,"Simulated",1,"LL",7.998162 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2035,"Simulated",1,"LL",7.996404 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2036,"Simulated",1,"LL",7.993697 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2037,"Simulated",1,"LL",7.9904 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2038,"Simulated",1,"LL",7.986694 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2039,"Simulated",1,"LL",7.983159 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2040,"Simulated",1,"LL",7.980608 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2041,"Simulated",1,"LL",7.976953 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2042,"Simulated",1,"LL",7.972835 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2043,"Simulated",1,"LL",7.969243 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2044,"Simulated",1,"LL",7.966029 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2045,"Simulated",1,"LL",7.963007 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2046,"Simulated",1,"LL",7.959061 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2047,"Simulated",1,"LL",7.954938 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2048,"Simulated",1,"LL",7.950582 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2049,"Simulated",1,"LL",7.947411 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2050,"Simulated",1,"LL",7.943747 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2051,"Simulated",1,"LL",7.939728 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2052,"Simulated",1,"LL",7.935948 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2053,"Simulated",1,"LL",7.931428 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2054,"Simulated",1,"LL",7.927406 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2055,"Simulated",1,"LL",7.924205 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2056,"Simulated",1,"LL",7.919475 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2057,"Simulated",1,"LL",7.914965 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2058,"Simulated",1,"LL",7.909937 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2059,"Simulated",1,"LL",7.907023 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2060,"Simulated",1,"LL",7.90345 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2061,"Simulated",1,"LL",7.89856 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2062,"Simulated",1,"LL",7.893841 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2063,"Simulated",1,"LL",7.889957 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2064,"Simulated",1,"LL",7.885674 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2065,"Simulated",1,"LL",7.880947 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2066,"Simulated",1,"LL",7.877129 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2067,"Simulated",1,"LL",7.872353 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2068,"Simulated",1,"LL",7.86789 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2069,"Simulated",1,"LL",7.863517 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2070,"Simulated",1,"LL",7.859491 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2071,"Simulated",1,"LL",7.854956 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2072,"Simulated",1,"LL",7.850392 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2073,"Simulated",1,"LL",7.845345 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2074,"Simulated",1,"LL",7.84096 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2075,"Simulated",1,"LL",7.83752 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2076,"Simulated",1,"LL",7.833141 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2077,"Simulated",1,"LL",7.828958 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2078,"Simulated",1,"LL",7.825045 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2079,"Simulated",1,"LL",7.820208 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2080,"Simulated",1,"LL",7.81596 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2081,"Simulated",1,"LL",7.811972 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2082,"Simulated",1,"LL",7.807291 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2083,"Simulated",1,"LL",7.802501 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2084,"Simulated",1,"LL",7.798638 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2085,"Simulated",1,"LL",7.794604 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2086,"Simulated",1,"LL",7.790734 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2087,"Simulated",1,"LL",7.786977 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2088,"Simulated",1,"LL",7.782129 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2089,"Simulated",1,"LL",7.778199 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2090,"Simulated",1,"LL",7.774064 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2091,"Simulated",1,"LL",7.769891 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2092,"Simulated",1,"LL",7.766009 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2093,"Simulated",1,"LL",7.761714 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2094,"Simulated",1,"LL",7.758039 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2095,"Simulated",1,"LL",7.754293 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2096,"Simulated",1,"LL",7.750251 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2097,"Simulated",1,"LL",7.746126 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2098,"Simulated",1,"LL",7.741122 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2099,"Simulated",1,"LL",7.737965 -"NorESM1-ME","ph","ocean","ph_LL","rcp85",2100,"Simulated",1,"LL",7.735002 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/rcp85/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/rcp85/summary.csv deleted file mode 100644 index bd5890ef6..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_ph/rcp85/summary.csv +++ /dev/null @@ -1,889 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2005,ph,ocean,ph,rcp85,1,Simulated,global,NA,8.072823,8.072823,8.072823,8.072823,1,CMIP5 -2005,ph,ocean,ph_HL,rcp85,1,Simulated,HL,NA,8.090111,8.090111,8.090111,8.090111,1,CMIP5 -2005,ph,ocean,ph_LL,rcp85,1,Simulated,LL,NA,8.0695945,8.0695945,8.0695945,8.0695945,1,CMIP5 -2006,ph,ocean,ph,rcp85,1,Simulated,global,0.002348117,8.0633415,8.069832,8.06643675,8.0662475,1,CMIP5 -2006,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007243753,8.05771775,8.073005,8.066859456,8.069983792,1,CMIP5 -2006,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002899445,8.06241725,8.0696374,8.066382858,8.06657725,1,CMIP5 -2007,ph,ocean,ph,rcp85,1,Simulated,global,0.002243054,8.06110525,8.067488,8.064357433,8.064424675,1,CMIP5 -2007,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007205967,8.0553774,8.072238,8.064410928,8.066695208,1,CMIP5 -2007,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002812518,8.06043525,8.067148,8.064377319,8.064999833,1,CMIP5 -2008,ph,ocean,ph,rcp85,1,Simulated,global,0.002221381,8.05877925,8.064983,8.062241389,8.062329542,1,CMIP5 -2008,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006723869,8.0539172,8.069162,8.062071492,8.064006375,1,CMIP5 -2008,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002806209,8.0582155,8.0654958,8.062296244,8.062717083,1,CMIP5 -2009,ph,ocean,ph,rcp85,1,Simulated,global,0.002245635,8.056822,8.063179,8.060211503,8.060130208,1,CMIP5 -2009,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006831534,8.0518458,8.068619,8.060068633,8.061866125,1,CMIP5 -2009,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002968446,8.056154,8.0635664,8.060264067,8.0605915,1,CMIP5 -2010,ph,ocean,ph,rcp85,1,Simulated,global,0.002326026,8.05472075,8.06149,8.058248831,8.058269917,1,CMIP5 -2010,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006717964,8.0498636,8.06606,8.058405586,8.059944583,1,CMIP5 -2010,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002930696,8.05405075,8.0613118,8.058247078,8.058725458,1,CMIP5 -2011,ph,ocean,ph,rcp85,1,Simulated,global,0.002328395,8.052563,8.058929,8.056161242,8.056349625,1,CMIP5 -2011,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005790633,8.0479064,8.062777,8.055358594,8.05702275,1,CMIP5 -2011,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003094141,8.0519335,8.0597448,8.056334175,8.056931375,1,CMIP5 -2012,ph,ocean,ph,rcp85,1,Simulated,global,0.002420959,8.05062175,8.057232,8.053899622,8.054006792,1,CMIP5 -2012,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006044876,8.0450035,8.058429,8.052683364,8.054966875,1,CMIP5 -2012,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003043642,8.05022,8.057272,8.054153986,8.054657958,1,CMIP5 -2013,ph,ocean,ph,rcp85,1,Simulated,global,0.002515825,8.048327,8.055104,8.051664181,8.051896542,1,CMIP5 -2013,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005984921,8.04312025,8.055925667,8.050540103,8.05265025,1,CMIP5 -2013,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003174923,8.04784225,8.055232,8.051895772,8.052433792,1,CMIP5 -2014,ph,ocean,ph,rcp85,1,Simulated,global,0.002452535,8.046069,8.05322,8.049644569,8.049659708,1,CMIP5 -2014,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006212281,8.0405954,8.055359,8.048255386,8.050098083,1,CMIP5 -2014,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003081986,8.04566975,8.053366,8.049931144,8.050359958,1,CMIP5 -2015,ph,ocean,ph,rcp85,1,Simulated,global,0.002737787,8.0435725,8.051452,8.047310533,8.04721975,1,CMIP5 -2015,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007369141,8.0377014,8.053994,8.046567747,8.048447917,1,CMIP5 -2015,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003287913,8.043119,8.051005,8.047481606,8.047864917,1,CMIP5 -2016,ph,ocean,ph,rcp85,1,Simulated,global,0.002386442,8.0410745,8.047695,8.044770917,8.044937,1,CMIP5 -2016,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006366693,8.03567275,8.049902,8.043587164,8.045424417,1,CMIP5 -2016,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002979195,8.04070375,8.0484692,8.045023367,8.045649125,1,CMIP5 -2017,ph,ocean,ph,rcp85,1,Simulated,global,0.002416929,8.03849875,8.045075,8.042331689,8.042704292,1,CMIP5 -2017,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005647661,8.0335698,8.045704,8.040541703,8.042231208,1,CMIP5 -2017,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002941764,8.038261,8.045917,8.042691181,8.043436542,1,CMIP5 -2018,ph,ocean,ph,rcp85,1,Simulated,global,0.002586759,8.0358995,8.04301,8.040118225,8.040691125,1,CMIP5 -2018,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005951383,8.03082225,8.044235,8.037786967,8.038761875,1,CMIP5 -2018,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003170855,8.03574525,8.0437038,8.040591383,8.041747625,1,CMIP5 -2019,ph,ocean,ph,rcp85,1,Simulated,global,0.002613214,8.0335355,8.040746,8.037746583,8.038302,1,CMIP5 -2019,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005603992,8.02862575,8.041094,8.035129772,8.035782042,1,CMIP5 -2019,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00317233,8.0333955,8.0412728,8.038273703,8.039452458,1,CMIP5 -2020,ph,ocean,ph,rcp85,1,Simulated,global,0.002566823,8.03081325,8.038237,8.035057928,8.035374958,1,CMIP5 -2020,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005906658,8.0252802,8.038948,8.031965867,8.032154875,1,CMIP5 -2020,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003059243,8.03098175,8.0386514,8.035672344,8.036524458,1,CMIP5 -2021,ph,ocean,ph,rcp85,1,Simulated,global,0.002334436,8.028283,8.034994,8.032280878,8.032732333,1,CMIP5 -2021,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006005427,8.021719,8.035507,8.029232181,8.030132792,1,CMIP5 -2021,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002911082,8.02841325,8.0358682,8.032883311,8.033789208,1,CMIP5 -2022,ph,ocean,ph,rcp85,1,Simulated,global,0.002397306,8.02593625,8.032789,8.029720767,8.029832875,1,CMIP5 -2022,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005817179,8.01909975,8.032618,8.026431792,8.0274715,1,CMIP5 -2022,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002921621,8.0259735,8.0334518,8.0303743,8.03106125,1,CMIP5 -2023,ph,ocean,ph,rcp85,1,Simulated,global,0.002880594,8.02294875,8.03121,8.027067478,8.027217458,1,CMIP5 -2023,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005768342,8.0172015,8.031009,8.023488517,8.023267,1,CMIP5 -2023,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003269859,8.02319425,8.031246,8.027776733,8.028538875,1,CMIP5 -2024,ph,ocean,ph,rcp85,1,Simulated,global,0.002594447,8.0205535,8.027911,8.024460606,8.024827167,1,CMIP5 -2024,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005507484,8.01404625,8.026342,8.020038478,8.020058208,1,CMIP5 -2024,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003004368,8.02115875,8.028356,8.025325283,8.026200875,1,CMIP5 -2025,ph,ocean,ph,rcp85,1,Simulated,global,0.002459468,8.01786525,8.024688,8.021693181,8.022091917,1,CMIP5 -2025,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006060962,8.01085125,8.0251,8.017533694,8.017437958,1,CMIP5 -2025,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00299228,8.0184275,8.0254642,8.0225147,8.02352125,1,CMIP5 -2026,ph,ocean,ph,rcp85,1,Simulated,global,0.002520313,8.01488975,8.022065,8.018838914,8.019063667,1,CMIP5 -2026,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004901939,8.00831025,8.020428,8.013995697,8.013901667,1,CMIP5 -2026,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003071083,8.0153495,8.022727,8.0197846,8.02060775,1,CMIP5 -2027,ph,ocean,ph,rcp85,1,Simulated,global,0.00272496,8.012158,8.019949,8.016314194,8.016550583,1,CMIP5 -2027,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004991717,8.00535725,8.016389,8.010813625,8.01060775,1,CMIP5 -2027,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003176405,8.012746,8.020579,8.017382408,8.018207625,1,CMIP5 -2028,ph,ocean,ph,rcp85,1,Simulated,global,0.002671352,8.009292,8.016844,8.0134684,8.0140245,1,CMIP5 -2028,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005192163,8.0025552,8.01477,8.008025756,8.007435542,1,CMIP5 -2028,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003175761,8.00999775,8.017512,8.014528158,8.015705,1,CMIP5 -2029,ph,ocean,ph,rcp85,1,Simulated,global,0.002623388,8.00606775,8.013674,8.010651664,8.011087917,1,CMIP5 -2029,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006287706,7.9990368,8.013035,8.005664425,8.004798,1,CMIP5 -2029,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002982129,8.006748,8.0144782,8.011630158,8.012733375,1,CMIP5 -2030,ph,ocean,ph,rcp85,1,Simulated,global,0.002493959,8.00311175,8.010184,8.007541283,8.007985875,1,CMIP5 -2030,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005132329,7.9959625,8.008375,8.001790553,8.001667208,1,CMIP5 -2030,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002926012,8.003844,8.011393,8.008658319,8.009682458,1,CMIP5 -2031,ph,ocean,ph,rcp85,1,Simulated,global,0.002671395,8.00034175,8.007912,8.004610847,8.004901167,1,CMIP5 -2031,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005878299,7.99160825,8.005943,7.998527119,7.997599333,1,CMIP5 -2031,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003105017,8.0012775,8.0086698,8.005802592,8.006856625,1,CMIP5 -2032,ph,ocean,ph,rcp85,1,Simulated,global,0.002557735,7.99747525,8.004801,8.001504192,8.00146875,1,CMIP5 -2032,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005365933,7.988278,8.002543,7.995231975,7.995178625,1,CMIP5 -2032,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003105324,7.998179,8.005741,8.002725672,8.003393417,1,CMIP5 -2033,ph,ocean,ph,rcp85,1,Simulated,global,0.002406716,7.9944745,8.001094,7.998516664,7.998919042,1,CMIP5 -2033,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006015378,7.98470475,7.998871,7.992047722,7.991505792,1,CMIP5 -2033,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002882284,7.99542075,8.002745,7.999784028,8.001003708,1,CMIP5 -2034,ph,ocean,ph,rcp85,1,Simulated,global,0.002255779,7.99160425,7.997772,7.995295914,7.995529417,1,CMIP5 -2034,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005946581,7.98290075,7.99637,7.988921989,7.987617792,1,CMIP5 -2034,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.002766047,7.992721,7.999709,7.996540917,7.99750625,1,CMIP5 -2035,ph,ocean,ph,rcp85,1,Simulated,global,0.002580119,7.98802175,7.995336,7.992312578,7.992716958,1,CMIP5 -2035,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004896563,7.97898675,7.991134,7.984869839,7.984786042,1,CMIP5 -2035,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003110302,7.9889395,7.9965292,7.993751867,7.99484575,1,CMIP5 -2036,ph,ocean,ph,rcp85,1,Simulated,global,0.002555454,7.9849295,7.992332,7.989174747,7.989420292,1,CMIP5 -2036,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004786122,7.97568475,7.987716,7.981359833,7.981742125,1,CMIP5 -2036,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003052406,7.98593675,7.993697,7.99067655,7.991469375,1,CMIP5 -2037,ph,ocean,ph,rcp85,1,Simulated,global,0.002677536,7.98160925,7.989213,7.985971694,7.986330458,1,CMIP5 -2037,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004943044,7.9721035,7.983961,7.978182628,7.978430333,1,CMIP5 -2037,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003189799,7.982687,7.9904,7.987472811,7.988417833,1,CMIP5 -2038,ph,ocean,ph,rcp85,1,Simulated,global,0.00264287,7.97808875,7.985427,7.982596111,7.983060958,1,CMIP5 -2038,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004697067,7.96911525,7.980395,7.974451783,7.974537125,1,CMIP5 -2038,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003134466,7.97920325,7.987152,7.984161125,7.98519725,1,CMIP5 -2039,ph,ocean,ph,rcp85,1,Simulated,global,0.002811956,7.97434675,7.98216,7.979135492,7.9796825,1,CMIP5 -2039,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005000294,7.9643825,7.97647,7.970386958,7.969559625,1,CMIP5 -2039,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003256144,7.97561825,7.9838012,7.980827408,7.982171,1,CMIP5 -2040,ph,ocean,ph,rcp85,1,Simulated,global,0.002720197,7.97139825,7.979302,7.975995136,7.976273583,1,CMIP5 -2040,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005490258,7.961262,7.974726,7.967264039,7.966505417,1,CMIP5 -2040,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003148343,7.97283975,7.980608,7.977678253,7.978613083,1,CMIP5 -2041,ph,ocean,ph,rcp85,1,Simulated,global,0.00261953,7.96825125,7.975526,7.972467625,7.97271625,1,CMIP5 -2041,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004983765,7.956901,7.969808,7.962905272,7.961945417,1,CMIP5 -2041,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00314034,7.9697605,7.9772966,7.974313406,7.975353667,1,CMIP5 -2042,ph,ocean,ph,rcp85,1,Simulated,global,0.002506631,7.96468475,7.971588,7.968879481,7.969185167,1,CMIP5 -2042,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005267833,7.9536485,7.966325,7.959307608,7.9581062,1,CMIP5 -2042,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00289629,7.966462,7.9736624,7.970726247,7.971769042,1,CMIP5 -2043,ph,ocean,ph,rcp85,1,Simulated,global,0.002531075,7.96118875,7.967657,7.965357678,7.966072458,1,CMIP5 -2043,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004066052,7.950691,7.960607,7.955338678,7.954893833,1,CMIP5 -2043,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003039486,7.96284025,7.970238,7.967279653,7.968624333,1,CMIP5 -2044,ph,ocean,ph,rcp85,1,Simulated,global,0.002651056,7.9572535,7.964235,7.961777694,7.962459333,1,CMIP5 -2044,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004480721,7.9455605,7.957581,7.950695231,7.949640567,1,CMIP5 -2044,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003196608,7.95903325,7.9667532,7.963911172,7.965450792,1,CMIP5 -2045,ph,ocean,ph,rcp85,1,Simulated,global,0.002864364,7.95329575,7.961089,7.958147922,7.958728292,1,CMIP5 -2045,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004378236,7.94186525,7.953214,7.946910489,7.946429967,1,CMIP5 -2045,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003363484,7.95515275,7.9632744,7.960305233,7.961627125,1,CMIP5 -2046,ph,ocean,ph,rcp85,1,Simulated,global,0.002675928,7.94982125,7.957204,7.954414131,7.954944167,1,CMIP5 -2046,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00449859,7.938138,7.948733,7.942908286,7.942684233,1,CMIP5 -2046,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003022839,7.952003,7.9593618,7.956615578,7.957727833,1,CMIP5 -2047,ph,ocean,ph,rcp85,1,Simulated,global,0.002771391,7.94591475,7.953439,7.950569881,7.951177167,1,CMIP5 -2047,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004989084,7.9347515,7.945814,7.939337439,7.937793067,1,CMIP5 -2047,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003237651,7.94795875,7.9557498,7.952731022,7.954144292,1,CMIP5 -2048,ph,ocean,ph,rcp85,1,Simulated,global,0.002645764,7.9422045,7.9490934,7.946922997,7.947828042,1,CMIP5 -2048,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004492163,7.93057875,7.940956,7.935121406,7.934074467,1,CMIP5 -2048,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003100503,7.9442515,7.9520496,7.949190128,7.950712333,1,CMIP5 -2049,ph,ocean,ph,rcp85,1,Simulated,global,0.002719945,7.93831275,7.94563,7.943122289,7.943755292,1,CMIP5 -2049,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004847033,7.92581025,7.937353,7.930704983,7.9297692,1,CMIP5 -2049,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00309535,7.94060625,7.9483044,7.945509928,7.947012958,1,CMIP5 -2050,ph,ocean,ph,rcp85,1,Simulated,global,0.002615883,7.93446775,7.9415222,7.938900228,7.939411208,1,CMIP5 -2050,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003955799,7.921822,7.932612,7.925714972,7.9252135,1,CMIP5 -2050,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003195632,7.936717,7.9445706,7.941418517,7.94259175,1,CMIP5 -2051,ph,ocean,ph,rcp85,1,Simulated,global,0.002650249,7.9309235,7.938009,7.935165331,7.935488542,1,CMIP5 -2051,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004350621,7.91735525,7.92822,7.922284861,7.921677333,1,CMIP5 -2051,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003016596,7.9332075,7.9407176,7.937632003,7.938680958,1,CMIP5 -2052,ph,ocean,ph,rcp85,1,Simulated,global,0.002656146,7.926558,7.933548,7.931100217,7.93171775,1,CMIP5 -2052,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003826326,7.91354875,7.923785,7.917477006,7.916654267,1,CMIP5 -2052,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003187998,7.9288415,7.936527,7.933709236,7.935162958,1,CMIP5 -2053,ph,ocean,ph,rcp85,1,Simulated,global,0.00264503,7.922296,7.9294842,7.926938297,7.927526292,1,CMIP5 -2053,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004654469,7.90747425,7.920292,7.912827111,7.912180833,1,CMIP5 -2053,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00315674,7.9247635,7.932601,7.929649528,7.931154833,1,CMIP5 -2054,ph,ocean,ph,rcp85,1,Simulated,global,0.002538888,7.9183235,7.925324,7.922732361,7.923251333,1,CMIP5 -2054,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003904524,7.9030375,7.914568,7.908008119,7.907659733,1,CMIP5 -2054,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00312826,7.9207,7.9284562,7.925554894,7.926816833,1,CMIP5 -2055,ph,ocean,ph,rcp85,1,Simulated,global,0.00261427,7.914395,7.921411,7.918808444,7.918923333,1,CMIP5 -2055,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00426033,7.8987885,7.910698,7.903280714,7.901926767,1,CMIP5 -2055,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003137935,7.91692725,7.9246434,7.921784858,7.92292325,1,CMIP5 -2056,ph,ocean,ph,rcp85,1,Simulated,global,0.002723764,7.90971475,7.9173452,7.914428797,7.914875417,1,CMIP5 -2056,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003213077,7.894409,7.903195,7.898130617,7.8981491,1,CMIP5 -2056,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003175624,7.91244075,7.9206276,7.917541892,7.918777,1,CMIP5 -2057,ph,ocean,ph,rcp85,1,Simulated,global,0.002790562,7.9052205,7.9129036,7.910254031,7.911085042,1,CMIP5 -2057,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003673165,7.88977825,7.899512,7.893865669,7.893618133,1,CMIP5 -2057,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003279924,7.908003,7.9162968,7.913389258,7.9148595,1,CMIP5 -2058,ph,ocean,ph,rcp85,1,Simulated,global,0.002789122,7.90093825,7.9089014,7.905865344,7.906782708,1,CMIP5 -2058,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003362807,7.8855555,7.894367,7.889574389,7.889696667,1,CMIP5 -2058,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00325729,7.90381125,7.9123288,7.908977008,7.909973,1,CMIP5 -2059,ph,ocean,ph,rcp85,1,Simulated,global,0.002913757,7.89659875,7.9043268,7.901529203,7.902093833,1,CMIP5 -2059,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00338907,7.88069375,7.889552,7.884698708,7.884249,1,CMIP5 -2059,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003432906,7.899356,7.9077328,7.904748828,7.906168333,1,CMIP5 -2060,ph,ocean,ph,rcp85,1,Simulated,global,0.002898583,7.89273725,7.900324,7.897470322,7.897991042,1,CMIP5 -2060,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003406898,7.87663,7.885748,7.880408639,7.880193667,1,CMIP5 -2060,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003433544,7.8956475,7.9036848,7.900727883,7.902119,1,CMIP5 -2061,ph,ocean,ph,rcp85,1,Simulated,global,0.002685161,7.88861125,7.8959226,7.893187711,7.893706208,1,CMIP5 -2061,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004317484,7.871263,7.883218,7.876084872,7.876199367,1,CMIP5 -2061,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003219735,7.891704,7.8994634,7.896458136,7.897794333,1,CMIP5 -2062,ph,ocean,ph,rcp85,1,Simulated,global,0.002610835,7.88435075,7.8916062,7.8887572,7.889333625,1,CMIP5 -2062,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004549191,7.8658205,7.8785,7.870894044,7.870865133,1,CMIP5 -2062,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003152695,7.88763425,7.8951924,7.892178039,7.893567167,1,CMIP5 -2063,ph,ocean,ph,rcp85,1,Simulated,global,0.002503831,7.880211,7.8872954,7.884492067,7.88473,1,CMIP5 -2063,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00484107,7.86106425,7.874828,7.866006539,7.865429867,1,CMIP5 -2063,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003029036,7.8835245,7.8909916,7.888030114,7.889350292,1,CMIP5 -2064,ph,ocean,ph,rcp85,1,Simulated,global,0.002576896,7.876028,7.8829708,7.880112203,7.880591708,1,CMIP5 -2064,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004063454,7.85702375,7.867881,7.861006336,7.860719133,1,CMIP5 -2064,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003118251,7.8795635,7.8867154,7.883764442,7.885209,1,CMIP5 -2065,ph,ocean,ph,rcp85,1,Simulated,global,0.002660504,7.87094725,7.8784728,7.875640314,7.876191917,1,CMIP5 -2065,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004449871,7.85168025,7.86388,7.856391461,7.856316633,1,CMIP5 -2065,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003091229,7.87454525,7.8822272,7.879319756,7.880709667,1,CMIP5 -2066,ph,ocean,ph,rcp85,1,Simulated,global,0.00278394,7.866404,7.8740246,7.871226142,7.871866125,1,CMIP5 -2066,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004412849,7.84693875,7.859378,7.851989642,7.8520773,1,CMIP5 -2066,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003344576,7.86982575,7.8778816,7.874898114,7.876463667,1,CMIP5 -2067,ph,ocean,ph,rcp85,1,Simulated,global,0.002848469,7.86175975,7.8697114,7.866758803,7.867527333,1,CMIP5 -2067,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004484318,7.8421715,7.854617,7.847103589,7.847495667,1,CMIP5 -2067,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003357747,7.8654175,7.8735034,7.870514525,7.871961,1,CMIP5 -2068,ph,ocean,ph,rcp85,1,Simulated,global,0.002896796,7.8571245,7.865254,7.862078306,7.862653167,1,CMIP5 -2068,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004215418,7.837023,7.848968,7.842001386,7.842365533,1,CMIP5 -2068,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00347403,7.86065075,7.869231,7.865913931,7.867227667,1,CMIP5 -2069,ph,ocean,ph,rcp85,1,Simulated,global,0.002885037,7.852703,7.86097,7.857611431,7.858130792,1,CMIP5 -2069,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005036172,7.832446,7.846092,7.836771828,7.835926333,1,CMIP5 -2069,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003509964,7.85648575,7.8650366,7.861595392,7.862917,1,CMIP5 -2070,ph,ocean,ph,rcp85,1,Simulated,global,0.002807883,7.84849425,7.8564126,7.853479878,7.854126708,1,CMIP5 -2070,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004499891,7.8274565,7.839827,7.832024286,7.832050833,1,CMIP5 -2070,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00331143,7.852373,7.8605022,7.857575853,7.859201333,1,CMIP5 -2071,ph,ocean,ph,rcp85,1,Simulated,global,0.002761482,7.844452,7.8521134,7.849057247,7.849613042,1,CMIP5 -2071,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004876695,7.82273575,7.835779,7.827456294,7.826959633,1,CMIP5 -2071,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003353257,7.848456,7.8562742,7.853191117,7.854636,1,CMIP5 -2072,ph,ocean,ph,rcp85,1,Simulated,global,0.002633562,7.84000425,7.8475642,7.844580908,7.845208,1,CMIP5 -2072,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00421912,7.8179925,7.829552,7.822361769,7.822081333,1,CMIP5 -2072,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003172141,7.844029,7.8516842,7.848820978,7.849985333,1,CMIP5 -2073,ph,ocean,ph,rcp85,1,Simulated,global,0.002766546,7.834943,7.8432692,7.839690881,7.840215542,1,CMIP5 -2073,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005001288,7.8125875,7.825709,7.816617094,7.814881333,1,CMIP5 -2073,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003330651,7.83908125,7.847539,7.844094583,7.8450335,1,CMIP5 -2074,ph,ocean,ph,rcp85,1,Simulated,global,0.002657423,7.83089625,7.8388602,7.83551445,7.836037125,1,CMIP5 -2074,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005529021,7.8074205,7.822282,7.812239219,7.811026833,1,CMIP5 -2074,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003223188,7.83525425,7.8431876,7.839965253,7.840796833,1,CMIP5 -2075,ph,ocean,ph,rcp85,1,Simulated,global,0.002846189,7.8262495,7.8342628,7.831069092,7.831761625,1,CMIP5 -2075,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00460477,7.8026925,7.815164,7.807272497,7.806795667,1,CMIP5 -2075,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003449326,7.8306485,7.838647,7.835608875,7.836887,1,CMIP5 -2076,ph,ocean,ph,rcp85,1,Simulated,global,0.002783203,7.82191375,7.8299342,7.826877811,7.827490958,1,CMIP5 -2076,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004341217,7.7984445,7.810219,7.802773006,7.802437667,1,CMIP5 -2076,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003294478,7.826258,7.8343926,7.831475447,7.832754667,1,CMIP5 -2077,ph,ocean,ph,rcp85,1,Simulated,global,0.002892024,7.81730125,7.8257552,7.822348047,7.822897917,1,CMIP5 -2077,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005026386,7.79325875,7.806632,7.797624447,7.796062167,1,CMIP5 -2077,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00349873,7.82170225,7.830261,7.827064861,7.828374333,1,CMIP5 -2078,ph,ocean,ph,rcp85,1,Simulated,global,0.003079218,7.81262475,7.821391,7.817948375,7.81854175,1,CMIP5 -2078,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005275353,7.787841,7.802491,7.793176414,7.792008167,1,CMIP5 -2078,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003648418,7.817253,7.825927,7.822671653,7.824236833,1,CMIP5 -2079,ph,ocean,ph,rcp85,1,Simulated,global,0.002965718,7.80857725,7.8171126,7.813943225,7.81459825,1,CMIP5 -2079,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004975237,7.783573,7.79694,7.789086264,7.789460667,1,CMIP5 -2079,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003379706,7.8132465,7.8216774,7.818690789,7.820112667,1,CMIP5 -2080,ph,ocean,ph,rcp85,1,Simulated,global,0.002966361,7.80414475,7.812907,7.809453694,7.810040708,1,CMIP5 -2080,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004735621,7.7781215,7.791237,7.78338045,7.782666,1,CMIP5 -2080,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00348777,7.80873625,7.817608,7.814430056,7.815809667,1,CMIP5 -2081,ph,ocean,ph,rcp85,1,Simulated,global,0.002902877,7.80021425,7.808464,7.805004139,7.805378292,1,CMIP5 -2081,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00462088,7.77306525,7.785848,7.778728297,7.778838167,1,CMIP5 -2081,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003431594,7.80499875,7.8132352,7.810019575,7.811304,1,CMIP5 -2082,ph,ocean,ph,rcp85,1,Simulated,global,0.002902669,7.795799,7.8040552,7.800668228,7.801160083,1,CMIP5 -2082,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004471475,7.76830525,7.78021,7.774349311,7.775404833,1,CMIP5 -2082,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003386742,7.80061625,7.8088286,7.805693294,7.806816833,1,CMIP5 -2083,ph,ocean,ph,rcp85,1,Simulated,global,0.002627149,7.79186175,7.799824,7.796274694,7.796659708,1,CMIP5 -2083,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004734556,7.76413425,7.776694,7.768889464,7.767796167,1,CMIP5 -2083,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003100042,7.79690125,7.8046836,7.801495961,7.802272333,1,CMIP5 -2084,ph,ocean,ph,rcp85,1,Simulated,global,0.002823623,7.787286,7.7956766,7.792061906,7.792384917,1,CMIP5 -2084,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004848967,7.7586125,7.771732,7.764455378,7.764518833,1,CMIP5 -2084,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003266521,7.7923985,7.8006156,7.797330642,7.7982535,1,CMIP5 -2085,ph,ocean,ph,rcp85,1,Simulated,global,0.002890152,7.7829135,7.791392,7.787928264,7.788515542,1,CMIP5 -2085,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005038732,7.75437575,7.768128,7.760317511,7.760144333,1,CMIP5 -2085,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003412803,7.787989,7.7962924,7.793200636,7.794431833,1,CMIP5 -2086,ph,ocean,ph,rcp85,1,Simulated,global,0.003113488,7.77806675,7.786968,7.783536972,7.784285042,1,CMIP5 -2086,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004863323,7.7504235,7.762893,7.755479194,7.755077333,1,CMIP5 -2086,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003643552,7.7832235,7.792042,7.788890461,7.790319833,1,CMIP5 -2087,ph,ocean,ph,rcp85,1,Simulated,global,0.00300064,7.7743205,7.7828896,7.779403308,7.779918375,1,CMIP5 -2087,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00456374,7.7458375,7.757941,7.750745233,7.749877,1,CMIP5 -2087,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003576193,7.7794555,7.7879232,7.784866131,7.786239167,1,CMIP5 -2088,ph,ocean,ph,rcp85,1,Simulated,global,0.003105634,7.7698475,7.7787968,7.7750898,7.77571625,1,CMIP5 -2088,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005172539,7.74110675,7.754942,7.746890103,7.747046833,1,CMIP5 -2088,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003688572,7.7751215,7.7839048,7.780472828,7.781614833,1,CMIP5 -2089,ph,ocean,ph,rcp85,1,Simulated,global,0.002860855,7.76634125,7.7747666,7.771000892,7.77128975,1,CMIP5 -2089,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005658362,7.7361945,7.75132,7.741830569,7.740520833,1,CMIP5 -2089,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003441825,7.77180425,7.7799136,7.776568975,7.777518,1,CMIP5 -2090,ph,ocean,ph,rcp85,1,Simulated,global,0.002989213,7.761739,7.770523,7.766704403,7.767029708,1,CMIP5 -2090,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005013677,7.73101825,7.744822,7.737050825,7.736958,1,CMIP5 -2090,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003509069,7.767189,7.7758632,7.772359256,7.773457667,1,CMIP5 -2091,ph,ocean,ph,rcp85,1,Simulated,global,0.003042635,7.75742375,7.7664632,7.762698811,7.763339458,1,CMIP5 -2091,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005181279,7.7253795,7.739753,7.732137772,7.731765167,1,CMIP5 -2091,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003641508,7.76287575,7.7718026,7.768530378,7.769691833,1,CMIP5 -2092,ph,ocean,ph,rcp85,1,Simulated,global,0.002970373,7.75358825,7.7622074,7.758531969,7.758913583,1,CMIP5 -2092,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00559049,7.720125,7.735758,7.727824331,7.728156167,1,CMIP5 -2092,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003538431,7.75923175,7.7675994,7.764399747,7.765595667,1,CMIP5 -2093,ph,ocean,ph,rcp85,1,Simulated,global,0.003098369,7.74917725,7.7582408,7.754397536,7.754787583,1,CMIP5 -2093,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005576899,7.71601325,7.731479,7.723869367,7.724893,1,CMIP5 -2093,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003665954,7.75481225,7.76372775,7.760228856,7.761114167,1,CMIP5 -2094,ph,ocean,ph,rcp85,1,Simulated,global,0.002897065,7.74582775,7.754294,7.7504075,7.750777625,1,CMIP5 -2094,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005436517,7.71256375,7.727847,7.719091964,7.717800667,1,CMIP5 -2094,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00361562,7.7514465,7.759803,7.756383847,7.757448167,1,CMIP5 -2095,ph,ocean,ph,rcp85,1,Simulated,global,0.002892771,7.74161475,7.7500458,7.746472869,7.746889833,1,CMIP5 -2095,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004936003,7.7085345,7.722352,7.714682269,7.713962333,1,CMIP5 -2095,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003503669,7.747301,7.755631,7.752534667,7.753776,1,CMIP5 -2096,ph,ocean,ph,rcp85,1,Simulated,global,0.00298344,7.7373445,7.746038,7.74232425,7.742676,1,CMIP5 -2096,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005637435,7.7040765,7.719209,7.710155667,7.7090035,1,CMIP5 -2096,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003588062,7.743288,7.7519275,7.74846195,7.7494935,1,CMIP5 -2097,ph,ocean,ph,rcp85,1,Simulated,global,0.003058398,7.73308725,7.7419544,7.738073928,7.738267958,1,CMIP5 -2097,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005095613,7.69963825,7.713366,7.705575478,7.704293833,1,CMIP5 -2097,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003645936,7.738857,7.747669,7.744274433,7.7452855,1,CMIP5 -2098,ph,ocean,ph,rcp85,1,Simulated,global,0.002763627,7.72962,7.737908,7.734160486,7.734563958,1,CMIP5 -2098,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005277661,7.69513075,7.709849,7.701536631,7.700735667,1,CMIP5 -2098,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003406527,7.7355475,7.7438475,7.740389544,7.741078833,1,CMIP5 -2099,ph,ocean,ph,rcp85,1,Simulated,global,0.002807192,7.72582125,7.7342376,7.730388156,7.730699542,1,CMIP5 -2099,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005880207,7.69025575,7.707516,7.697559478,7.696163333,1,CMIP5 -2099,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003582498,7.73162175,7.7401394,7.736655664,7.737609167,1,CMIP5 -2100,ph,ocean,ph,rcp85,1,Simulated,global,0.002659715,7.72254725,7.7300574,7.726737358,7.72685525,1,CMIP5 -2100,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005595339,7.686555,7.702565,7.693430942,7.6928635,1,CMIP5 -2100,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003311402,7.72873025,7.736147,7.733092553,7.734213833,1,CMIP5 -2101,ph,ocean,ph,rcp85,1,Simulated,global,0.002872937,7.717405,7.722569,7.720714333,7.722169,1,CMIP5 -2101,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003182995,7.679237,7.684882,7.682909,7.684608,1,CMIP5 -2101,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00439033,7.72353,7.731992,7.728437667,7.729791,1,CMIP5 -2102,ph,ocean,ph,rcp85,1,Simulated,global,0.002852134,7.713642,7.718913,7.716907,7.718166,1,CMIP5 -2102,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003337392,7.675242,7.68169,7.678964,7.67996,1,CMIP5 -2102,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004320552,7.719932,7.728409,7.724654333,7.725622,1,CMIP5 -2103,ph,ocean,ph,rcp85,1,Simulated,global,0.002433789,7.710693,7.715371,7.713420333,7.714197,1,CMIP5 -2103,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003397274,7.671811,7.678372,7.675601333,7.676621,1,CMIP5 -2103,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.003906885,7.717056,7.724842,7.721139,7.721519,1,CMIP5 -2104,ph,ocean,ph,rcp85,1,Simulated,global,0.002852363,7.706404,7.711591,7.709683,7.711054,1,CMIP5 -2104,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004951521,7.667521,7.677411,7.672319333,7.672026,1,CMIP5 -2104,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004209459,7.712824,7.721174,7.717309333,7.71793,1,CMIP5 -2105,ph,ocean,ph,rcp85,1,Simulated,global,0.002990012,7.702336,7.707866,7.705758,7.707072,1,CMIP5 -2105,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003431258,7.663599,7.670453,7.667124667,7.667322,1,CMIP5 -2105,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004380868,7.708875,7.717492,7.713641333,7.714557,1,CMIP5 -2106,ph,ocean,ph,rcp85,1,Simulated,global,0.003244098,7.697976,7.704131,7.701646,7.702831,1,CMIP5 -2106,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003669708,7.660555,7.667561,7.663426667,7.662164,1,CMIP5 -2106,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004501427,7.704664,7.713606,7.709436667,7.71004,1,CMIP5 -2107,ph,ocean,ph,rcp85,1,Simulated,global,0.003529006,7.693702,7.700339,7.697713667,7.6991,1,CMIP5 -2107,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003434924,7.655984,7.66259,7.658742667,7.657654,1,CMIP5 -2107,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004838567,7.700434,7.709984,7.705660333,7.706563,1,CMIP5 -2108,ph,ocean,ph,rcp85,1,Simulated,global,0.00361658,7.690182,7.696706,7.694345667,7.696149,1,CMIP5 -2108,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.002943129,7.652205,7.65805,7.654926667,7.654525,1,CMIP5 -2108,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004956084,7.69684,7.706382,7.702385667,7.703935,1,CMIP5 -2109,ph,ocean,ph,rcp85,1,Simulated,global,0.003564716,7.686395,7.693018,7.690468333,7.691992,1,CMIP5 -2109,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.002850092,7.648903,7.654598,7.651820667,7.651961,1,CMIP5 -2109,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005015935,7.692826,7.702611,7.698357,7.699634,1,CMIP5 -2110,ph,ocean,ph,rcp85,1,Simulated,global,0.002920648,7.683276,7.688704,7.686613,7.687859,1,CMIP5 -2110,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003560574,7.642663,7.649757,7.646389333,7.646748,1,CMIP5 -2110,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004368068,7.690098,7.698716,7.694820333,7.695647,1,CMIP5 -2111,ph,ocean,ph,rcp85,1,Simulated,global,0.002934486,7.679801,7.685237,7.683157667,7.684435,1,CMIP5 -2111,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004678853,7.63842,7.647727,7.643354333,7.643916,1,CMIP5 -2111,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004493085,7.686502,7.695417,7.691285333,7.691937,1,CMIP5 -2112,ph,ocean,ph,rcp85,1,Simulated,global,0.002722395,7.676389,7.68169,7.679398333,7.680116,1,CMIP5 -2112,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003844134,7.63474,7.642264,7.638958333,7.639871,1,CMIP5 -2112,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004348428,7.683209,7.691899,7.687653667,7.687853,1,CMIP5 -2113,ph,ocean,ph,rcp85,1,Simulated,global,0.002941908,7.672839,7.678117,7.676228667,7.67773,1,CMIP5 -2113,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004298644,7.631478,7.639723,7.634897333,7.633491,1,CMIP5 -2113,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004102581,7.680187,7.688259,7.684648,7.685498,1,CMIP5 -2114,ph,ocean,ph,rcp85,1,Simulated,global,0.003203428,7.668394,7.674479,7.672015333,7.673173,1,CMIP5 -2114,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.002943095,7.627567,7.633452,7.630475333,7.630407,1,CMIP5 -2114,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004648617,7.675488,7.68468,7.680486667,7.681292,1,CMIP5 -2115,ph,ocean,ph,rcp85,1,Simulated,global,0.003451143,7.664616,7.671098,7.668541667,7.669911,1,CMIP5 -2115,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004477591,7.62367,7.632625,7.628131,7.628098,1,CMIP5 -2115,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005028394,7.671436,7.681411,7.676793,7.677532,1,CMIP5 -2116,ph,ocean,ph,rcp85,1,Simulated,global,0.003555088,7.661075,7.667652,7.665143333,7.666703,1,CMIP5 -2116,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00418163,7.620251,7.628376,7.623741333,7.622597,1,CMIP5 -2116,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004918841,7.668261,7.67796,7.673585667,7.674536,1,CMIP5 -2117,ph,ocean,ph,rcp85,1,Simulated,global,0.003672532,7.657188,7.664317,7.661263,7.662284,1,CMIP5 -2117,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003972427,7.61674,7.62444,7.620025,7.618895,1,CMIP5 -2117,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005170174,7.664339,7.674662,7.669673333,7.670019,1,CMIP5 -2118,ph,ocean,ph,rcp85,1,Simulated,global,0.003053451,7.654599,7.660641,7.657876333,7.658389,1,CMIP5 -2118,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.002857018,7.612197,7.617904,7.615132333,7.615296,1,CMIP5 -2118,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004618917,7.661938,7.671175,7.666592333,7.666664,1,CMIP5 -2119,ph,ocean,ph,rcp85,1,Simulated,global,0.003266815,7.650921,7.657174,7.654594333,7.655688,1,CMIP5 -2119,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004105013,7.608063,7.616273,7.612162,7.61215,1,CMIP5 -2119,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004864645,7.658161,7.667853,7.663252667,7.663744,1,CMIP5 -2120,ph,ocean,ph,rcp85,1,Simulated,global,0.00354991,7.646996,7.653841,7.650962667,7.652051,1,CMIP5 -2120,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003358601,7.604963,7.61167,7.608423333,7.608637,1,CMIP5 -2120,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00518712,7.654159,7.66447,7.659644667,7.660305,1,CMIP5 -2121,ph,ocean,ph,rcp85,1,Simulated,global,0.003081291,7.644122,7.650216,7.647433667,7.647963,1,CMIP5 -2121,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.003058261,7.600895,7.606975,7.604127667,7.604513,1,CMIP5 -2121,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004711436,7.651519,7.660941,7.656267,7.656341,1,CMIP5 -2122,ph,ocean,ph,rcp85,1,Simulated,global,0.003120988,7.640586,7.646621,7.644063667,7.644984,1,CMIP5 -2122,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004898932,7.595279,7.60468,7.600776333,7.60237,1,CMIP5 -2122,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005038251,7.647723,7.657785,7.65291,7.653222,1,CMIP5 -2123,ph,ocean,ph,rcp85,1,Simulated,global,0.002937372,7.637582,7.64321,7.640882333,7.641855,1,CMIP5 -2123,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004872779,7.590318,7.598948,7.59594,7.598554,1,CMIP5 -2123,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004987379,7.644797,7.654711,7.650071333,7.650706,1,CMIP5 -2124,ph,ocean,ph,rcp85,1,Simulated,global,0.002846866,7.633983,7.639496,7.637150333,7.637972,1,CMIP5 -2124,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005720615,7.586226,7.596229,7.592830667,7.596037,1,CMIP5 -2124,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005030831,7.641033,7.651079,7.646218,7.646542,1,CMIP5 -2125,ph,ocean,ph,rcp85,1,Simulated,global,0.003002754,7.630452,7.63645,7.633537667,7.633711,1,CMIP5 -2125,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004712376,7.582882,7.591655,7.588262667,7.590251,1,CMIP5 -2125,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005202961,7.637698,7.648098,7.642796667,7.642594,1,CMIP5 -2126,ph,ocean,ph,rcp85,1,Simulated,global,0.002772196,7.627588,7.632833,7.630729333,7.631767,1,CMIP5 -2126,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.005741409,7.578858,7.589621,7.585394667,7.587705,1,CMIP5 -2126,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.004778188,7.635036,7.644569,7.639995333,7.640381,1,CMIP5 -2127,ph,ocean,ph,rcp85,1,Simulated,global,0.003192758,7.623663,7.629542,7.627322,7.628761,1,CMIP5 -2127,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007301726,7.573874,7.587662,7.582157,7.584935,1,CMIP5 -2127,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005400501,7.630895,7.641647,7.636567667,7.637161,1,CMIP5 -2128,ph,ocean,ph,rcp85,1,Simulated,global,0.003510089,7.619781,7.626526,7.623715333,7.624839,1,CMIP5 -2128,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006122663,7.572605,7.584789,7.579050333,7.579757,1,CMIP5 -2128,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005499734,7.627256,7.638251,7.632844,7.633025,1,CMIP5 -2129,ph,ocean,ph,rcp85,1,Simulated,global,0.003320742,7.616935,7.623254,7.620684667,7.621865,1,CMIP5 -2129,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004367141,7.569099,7.577697,7.573841667,7.574729,1,CMIP5 -2129,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00513662,7.624817,7.635029,7.630246333,7.630893,1,CMIP5 -2130,ph,ocean,ph,rcp85,1,Simulated,global,0.003077219,7.614134,7.620103,7.617551333,7.618417,1,CMIP5 -2130,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.004254195,7.565981,7.574169,7.570742667,7.572078,1,CMIP5 -2130,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.0049515,7.621987,7.631871,7.627106,7.62746,1,CMIP5 -2131,ph,ocean,ph,rcp85,1,Simulated,global,0.003304289,7.61021,7.616282,7.613999,7.615505,1,CMIP5 -2131,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007640727,7.560379,7.57551,7.568562,7.569797,1,CMIP5 -2131,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005350598,7.617757,7.628437,7.623291333,7.62368,1,CMIP5 -2132,ph,ocean,ph,rcp85,1,Simulated,global,0.003003735,7.607356,7.613298,7.610582333,7.611093,1,CMIP5 -2132,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006515599,7.556796,7.5692,7.564151,7.566457,1,CMIP5 -2132,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005308116,7.614993,7.625584,7.620077333,7.619655,1,CMIP5 -2133,ph,ocean,ph,rcp85,1,Simulated,global,0.002942781,7.604001,7.609691,7.607280333,7.608149,1,CMIP5 -2133,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006153951,7.552958,7.564147,7.560032667,7.562993,1,CMIP5 -2133,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005187383,7.611659,7.622028,7.616943333,7.617143,1,CMIP5 -2134,ph,ocean,ph,rcp85,1,Simulated,global,0.003310289,7.600565,7.60652,7.604377667,7.606048,1,CMIP5 -2134,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007272768,7.548578,7.562001,7.556907,7.560142,1,CMIP5 -2134,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005564931,7.608113,7.619119,7.614094,7.61505,1,CMIP5 -2135,ph,ocean,ph,rcp85,1,Simulated,global,0.003142019,7.597337,7.603276,7.600899333,7.602085,1,CMIP5 -2135,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007443104,7.544745,7.558086,7.553322,7.557135,1,CMIP5 -2135,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005591763,7.604845,7.616003,7.610642,7.611078,1,CMIP5 -2136,ph,ocean,ph,rcp85,1,Simulated,global,0.002981677,7.594547,7.600222,7.597913333,7.598971,1,CMIP5 -2136,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008227585,7.541352,7.556328,7.550808333,7.554745,1,CMIP5 -2136,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005523033,7.60198,7.613024,7.607563667,7.607687,1,CMIP5 -2137,ph,ocean,ph,rcp85,1,Simulated,global,0.003240042,7.591157,7.597387,7.594786667,7.595816,1,CMIP5 -2137,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006418406,7.539134,7.550257,7.546545333,7.550245,1,CMIP5 -2137,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005643053,7.598797,7.610054,7.604659333,7.605127,1,CMIP5 -2138,ph,ocean,ph,rcp85,1,Simulated,global,0.003032966,7.588385,7.594147,7.591813333,7.592908,1,CMIP5 -2138,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006906081,7.53542,7.548187,7.543325,7.546368,1,CMIP5 -2138,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005349519,7.596232,7.606917,7.601732667,7.602049,1,CMIP5 -2139,ph,ocean,ph,rcp85,1,Simulated,global,0.003424219,7.584544,7.591003,7.588430667,7.589745,1,CMIP5 -2139,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006583371,7.532191,7.544677,7.539640333,7.542053,1,CMIP5 -2139,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005675827,7.592479,7.603791,7.598408667,7.598956,1,CMIP5 -2140,ph,ocean,ph,rcp85,1,Simulated,global,0.003451116,7.58149,7.587878,7.585438667,7.586948,1,CMIP5 -2140,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008133149,7.528129,7.544378,7.53647,7.536903,1,CMIP5 -2140,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005530313,7.589816,7.600871,7.595445333,7.595649,1,CMIP5 -2141,ph,ocean,ph,rcp85,1,Simulated,global,0.003630075,7.578123,7.585001,7.582233,7.583575,1,CMIP5 -2141,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006714522,7.525798,7.539042,7.533061333,7.534344,1,CMIP5 -2141,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005797533,7.586299,7.597874,7.592283333,7.592677,1,CMIP5 -2142,ph,ocean,ph,rcp85,1,Simulated,global,0.003359554,7.575337,7.581533,7.579185333,7.580686,1,CMIP5 -2142,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007508407,7.520924,7.535613,7.529169333,7.530971,1,CMIP5 -2142,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005560518,7.583623,7.594712,7.589411,7.589898,1,CMIP5 -2143,ph,ocean,ph,rcp85,1,Simulated,global,0.003225566,7.572511,7.578394,7.576216667,7.577745,1,CMIP5 -2143,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00885365,7.516844,7.534128,7.526597,7.528819,1,CMIP5 -2143,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005559215,7.58067,7.591777,7.586369,7.58666,1,CMIP5 -2144,ph,ocean,ph,rcp85,1,Simulated,global,0.002808547,7.570214,7.575331,7.573441333,7.574779,1,CMIP5 -2144,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008863834,7.513293,7.530127,7.523314333,7.526523,1,CMIP5 -2144,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005226536,7.578374,7.588821,7.583700333,7.583906,1,CMIP5 -2145,ph,ocean,ph,rcp85,1,Simulated,global,0.002812281,7.567107,7.572398,7.570303333,7.571405,1,CMIP5 -2145,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008403799,7.509945,7.524555,7.519648667,7.524446,1,CMIP5 -2145,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005469717,7.575054,7.585979,7.580678667,7.581003,1,CMIP5 -2146,ph,ocean,ph,rcp85,1,Simulated,global,0.003007765,7.564177,7.569878,7.567581667,7.56869,1,CMIP5 -2146,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008342428,7.508332,7.522851,7.517964667,7.522711,1,CMIP5 -2146,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005676434,7.57192,7.58326,7.577746,7.578058,1,CMIP5 -2147,ph,ocean,ph,rcp85,1,Simulated,global,0.003258318,7.560662,7.566792,7.564365333,7.565642,1,CMIP5 -2147,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008190338,7.504875,7.520211,7.514204667,7.517528,1,CMIP5 -2147,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005774616,7.568717,7.580255,7.574633,7.574927,1,CMIP5 -2148,ph,ocean,ph,rcp85,1,Simulated,global,0.00346358,7.557328,7.564074,7.561155333,7.562064,1,CMIP5 -2148,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.006882886,7.502272,7.514445,7.510214,7.513925,1,CMIP5 -2148,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006042896,7.565433,7.577513,7.571581,7.571797,1,CMIP5 -2149,ph,ocean,ph,rcp85,1,Simulated,global,0.003298203,7.554739,7.561123,7.558410333,7.559369,1,CMIP5 -2149,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007041186,7.498283,7.510518,7.506413333,7.510439,1,CMIP5 -2149,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005901942,7.562997,7.574788,7.569051667,7.56937,1,CMIP5 -2150,ph,ocean,ph,rcp85,1,Simulated,global,0.003589147,7.551196,7.55812,7.555204667,7.556298,1,CMIP5 -2150,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00673448,7.49529,7.50754,7.503031333,7.506264,1,CMIP5 -2150,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006107124,7.559587,7.571783,7.565877667,7.566263,1,CMIP5 -2151,ph,ocean,ph,rcp85,1,Simulated,global,0.003127745,7.549102,7.555221,7.552536667,7.553287,1,CMIP5 -2151,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008463693,7.490938,7.50614,7.500688333,7.504987,1,CMIP5 -2151,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005932874,7.55734,7.569199,7.563154,7.562923,1,CMIP5 -2152,ph,ocean,ph,rcp85,1,Simulated,global,0.003174063,7.546036,7.552247,7.549520333,7.550278,1,CMIP5 -2152,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00860404,7.487669,7.502608,7.497604,7.502535,1,CMIP5 -2152,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006066638,7.554159,7.56629,7.560156667,7.560021,1,CMIP5 -2153,ph,ocean,ph,rcp85,1,Simulated,global,0.00325364,7.54331,7.549544,7.546965667,7.548043,1,CMIP5 -2153,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008885902,7.485466,7.501577,7.495687,7.500018,1,CMIP5 -2153,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006196199,7.551103,7.563478,7.55748,7.557859,1,CMIP5 -2154,ph,ocean,ph,rcp85,1,Simulated,global,0.00313495,7.540615,7.546738,7.544066,7.544845,1,CMIP5 -2154,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008612067,7.481567,7.496878,7.4915,7.496055,1,CMIP5 -2154,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006063023,7.548783,7.560909,7.554836333,7.554817,1,CMIP5 -2155,ph,ocean,ph,rcp85,1,Simulated,global,0.00336566,7.537535,7.544006,7.541305667,7.542376,1,CMIP5 -2155,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008332729,7.47892,7.493994,7.488508667,7.492612,1,CMIP5 -2155,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006118849,7.545924,7.558159,7.552115667,7.552264,1,CMIP5 -2156,ph,ocean,ph,rcp85,1,Simulated,global,0.003247704,7.535116,7.541169,7.538822667,7.540183,1,CMIP5 -2156,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009137053,7.475672,7.492337,7.486169,7.490498,1,CMIP5 -2156,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.005989396,7.543448,7.555411,7.549607,7.549962,1,CMIP5 -2157,ph,ocean,ph,rcp85,1,Simulated,global,0.003163467,7.532575,7.538755,7.536056333,7.536839,1,CMIP5 -2157,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009268491,7.472575,7.489328,7.483242,7.487823,1,CMIP5 -2157,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00611301,7.540932,7.553145,7.546875667,7.54655,1,CMIP5 -2158,ph,ocean,ph,rcp85,1,Simulated,global,0.003521944,7.529573,7.536344,7.533519,7.53464,1,CMIP5 -2158,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008304519,7.471327,7.4872,7.480675,7.483498,1,CMIP5 -2158,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006152001,7.538177,7.550481,7.544331333,7.544336,1,CMIP5 -2159,ph,ocean,ph,rcp85,1,Simulated,global,0.003674607,7.526782,7.533737,7.530945,7.532316,1,CMIP5 -2159,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.007884437,7.469132,7.482929,7.478234667,7.482643,1,CMIP5 -2159,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006406331,7.535025,7.547785,7.54174,7.54241,1,CMIP5 -2160,ph,ocean,ph,rcp85,1,Simulated,global,0.003408555,7.524668,7.531312,7.528430667,7.529312,1,CMIP5 -2160,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.008867913,7.465949,7.481753,7.476174667,7.480822,1,CMIP5 -2160,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006335161,7.532856,7.545525,7.539137667,7.539032,1,CMIP5 -2161,ph,ocean,ph,rcp85,1,Simulated,global,0.003223779,7.522319,7.528578,7.525895333,7.526789,1,CMIP5 -2161,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009521944,7.462157,7.479283,7.473124333,7.477933,1,CMIP5 -2161,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006209172,7.530608,7.543021,7.536709333,7.536499,1,CMIP5 -2162,ph,ocean,ph,rcp85,1,Simulated,global,0.003397152,7.519863,7.526427,7.523651333,7.524664,1,CMIP5 -2162,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009214748,7.459978,7.476834,7.470557,7.474859,1,CMIP5 -2162,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006304957,7.528267,7.540876,7.534527667,7.53444,1,CMIP5 -2163,ph,ocean,ph,rcp85,1,Simulated,global,0.003615056,7.517294,7.524064,7.521411667,7.522877,1,CMIP5 -2163,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009791141,7.457531,7.476656,7.468308,7.470737,1,CMIP5 -2163,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006272109,7.525988,7.538532,7.532281333,7.532324,1,CMIP5 -2164,ph,ocean,ph,rcp85,1,Simulated,global,0.003375195,7.515391,7.521824,7.519198,7.520379,1,CMIP5 -2164,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009425885,7.455575,7.473548,7.466203667,7.469488,1,CMIP5 -2164,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006134075,7.523963,7.53623,7.530048,7.529951,1,CMIP5 -2165,ph,ocean,ph,rcp85,1,Simulated,global,0.003694296,7.512409,7.519469,7.516568,7.517826,1,CMIP5 -2165,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009116635,7.452882,7.470173,7.463197667,7.466538,1,CMIP5 -2165,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006486278,7.520976,7.533948,7.527496667,7.527566,1,CMIP5 -2166,ph,ocean,ph,rcp85,1,Simulated,global,0.003474283,7.510285,7.516815,7.514235667,7.515607,1,CMIP5 -2166,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010417012,7.44847,7.46804,7.460318,7.464444,1,CMIP5 -2166,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006415622,7.518845,7.531676,7.525283333,7.525329,1,CMIP5 -2167,ph,ocean,ph,rcp85,1,Simulated,global,0.003319879,7.508291,7.514556,7.512058333,7.513328,1,CMIP5 -2167,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010623483,7.446365,7.466243,7.45847,7.462802,1,CMIP5 -2167,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006298972,7.516786,7.529383,7.52304,7.522951,1,CMIP5 -2168,ph,ocean,ph,rcp85,1,Simulated,global,0.003217206,7.506043,7.512213,7.509655,7.510709,1,CMIP5 -2168,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010496321,7.443831,7.4621,7.455950667,7.461921,1,CMIP5 -2168,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006399539,7.514283,7.527082,7.520669667,7.520644,1,CMIP5 -2169,ph,ocean,ph,rcp85,1,Simulated,global,0.003472208,7.50388,7.510351,7.507843,7.509298,1,CMIP5 -2169,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009894899,7.441218,7.459084,7.452608,7.457522,1,CMIP5 -2169,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006432849,7.512537,7.525384,7.519160667,7.519561,1,CMIP5 -2170,ph,ocean,ph,rcp85,1,Simulated,global,0.0034805,7.501421,7.508093,7.50533,7.506476,1,CMIP5 -2170,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00997164,7.438484,7.45628,7.449980667,7.455178,1,CMIP5 -2170,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006586712,7.510057,7.52323,7.516674,7.516735,1,CMIP5 -2171,ph,ocean,ph,rcp85,1,Simulated,global,0.003398144,7.499212,7.505869,7.502935667,7.503726,1,CMIP5 -2171,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009990538,7.435515,7.453033,7.447048333,7.452597,1,CMIP5 -2171,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006668624,7.507835,7.521167,7.514393,7.514177,1,CMIP5 -2172,ph,ocean,ph,rcp85,1,Simulated,global,0.003270812,7.49741,7.503785,7.501021,7.501868,1,CMIP5 -2172,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010204407,7.433396,7.451224,7.445177667,7.450913,1,CMIP5 -2172,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006501568,7.506094,7.51909,7.512467667,7.512219,1,CMIP5 -2173,ph,ocean,ph,rcp85,1,Simulated,global,0.003741877,7.494602,7.501683,7.498841667,7.50024,1,CMIP5 -2173,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.00942903,7.43184,7.4485,7.442720667,7.447822,1,CMIP5 -2173,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006778441,7.503338,7.51687,7.510341,7.510815,1,CMIP5 -2174,ph,ocean,ph,rcp85,1,Simulated,global,0.003467325,7.492959,7.499599,7.496856333,7.498011,1,CMIP5 -2174,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009371339,7.42905,7.446572,7.439731667,7.443573,1,CMIP5 -2174,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006378535,7.502182,7.514939,7.508548333,7.508524,1,CMIP5 -2175,ph,ocean,ph,rcp85,1,Simulated,global,0.003667187,7.490829,7.497899,7.494927333,7.496054,1,CMIP5 -2175,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010084481,7.427183,7.446116,7.438656333,7.44267,1,CMIP5 -2175,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006729055,7.499822,7.513276,7.506453,7.506261,1,CMIP5 -2176,ph,ocean,ph,rcp85,1,Simulated,global,0.003391761,7.489507,7.496028,7.493307,7.494386,1,CMIP5 -2176,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.009843975,7.426066,7.443617,7.437416667,7.442567,1,CMIP5 -2176,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006484501,7.498272,7.511241,7.504758333,7.504762,1,CMIP5 -2177,ph,ocean,ph,rcp85,1,Simulated,global,0.003182207,7.487964,7.494126,7.491504667,7.492424,1,CMIP5 -2177,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010614306,7.423113,7.442665,7.435276,7.44005,1,CMIP5 -2177,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006338466,7.496912,7.509567,7.503024333,7.502594,1,CMIP5 -2178,ph,ocean,ph,rcp85,1,Simulated,global,0.003371751,7.485751,7.4923,7.489489667,7.490418,1,CMIP5 -2178,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01034676,7.420168,7.438126,7.432115333,7.438052,1,CMIP5 -2178,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006664661,7.494658,7.507985,7.501249667,7.501106,1,CMIP5 -2179,ph,ocean,ph,rcp85,1,Simulated,global,0.003527011,7.483819,7.490537,7.487799,7.489041,1,CMIP5 -2179,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010862057,7.418725,7.438758,7.431167333,7.436019,1,CMIP5 -2179,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006703427,7.492746,7.506152,7.499405333,7.499318,1,CMIP5 -2180,ph,ocean,ph,rcp85,1,Simulated,global,0.003446964,7.482225,7.488809,7.486107,7.487287,1,CMIP5 -2180,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010910001,7.416851,7.437109,7.429320333,7.434001,1,CMIP5 -2180,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006615268,7.49123,7.504456,7.497743,7.497543,1,CMIP5 -2181,ph,ocean,ph,rcp85,1,Simulated,global,0.003591084,7.480258,7.486875,7.484372667,7.485985,1,CMIP5 -2181,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01234735,7.414307,7.43755,7.428336667,7.433153,1,CMIP5 -2181,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006800521,7.489054,7.502655,7.495864333,7.495884,1,CMIP5 -2182,ph,ocean,ph,rcp85,1,Simulated,global,0.003432418,7.478595,7.48478,7.482547333,7.484267,1,CMIP5 -2182,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012246646,7.411879,7.43492,7.425798,7.430595,1,CMIP5 -2182,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006538697,7.487558,7.500632,7.494181,7.494353,1,CMIP5 -2183,ph,ocean,ph,rcp85,1,Simulated,global,0.00340241,7.476868,7.483234,7.480745,7.482133,1,CMIP5 -2183,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01187961,7.410332,7.432345,7.423919333,7.429081,1,CMIP5 -2183,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006647424,7.485792,7.499086,7.492395667,7.492309,1,CMIP5 -2184,ph,ocean,ph,rcp85,1,Simulated,global,0.003573799,7.475179,7.481767,7.479273333,7.480874,1,CMIP5 -2184,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012195838,7.408415,7.430362,7.422461,7.428606,1,CMIP5 -2184,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006924381,7.483876,7.497717,7.490930333,7.491198,1,CMIP5 -2185,ph,ocean,ph,rcp85,1,Simulated,global,0.003081829,7.473949,7.479757,7.477448667,7.47864,1,CMIP5 -2185,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012556078,7.40595,7.428194,7.420436333,7.427165,1,CMIP5 -2185,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006562703,7.482685,7.495806,7.489147333,7.488951,1,CMIP5 -2186,ph,ocean,ph,rcp85,1,Simulated,global,0.003492166,7.471739,7.478389,7.475680333,7.476913,1,CMIP5 -2186,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012048785,7.404277,7.425334,7.418188,7.424953,1,CMIP5 -2186,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007013528,7.480477,7.494504,7.487479,7.487456,1,CMIP5 -2187,ph,ocean,ph,rcp85,1,Simulated,global,0.0034376,7.470543,7.476892,7.474479,7.476002,1,CMIP5 -2187,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011918824,7.403097,7.424755,7.416800667,7.42255,1,CMIP5 -2187,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006718094,7.479506,7.492939,7.486307,7.486476,1,CMIP5 -2188,ph,ocean,ph,rcp85,1,Simulated,global,0.003046551,7.46964,7.475449,7.473075333,7.474137,1,CMIP5 -2188,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012333339,7.402492,7.424482,7.416713,7.423165,1,CMIP5 -2188,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006504202,7.478319,7.491313,7.484639333,7.484286,1,CMIP5 -2189,ph,ocean,ph,rcp85,1,Simulated,global,0.003330172,7.467568,7.473843,7.47135,7.472639,1,CMIP5 -2189,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012465439,7.399936,7.422751,7.414245,7.420048,1,CMIP5 -2189,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006738893,7.476442,7.489914,7.483064,7.482836,1,CMIP5 -2190,ph,ocean,ph,rcp85,1,Simulated,global,0.003717748,7.465429,7.472515,7.469622333,7.470923,1,CMIP5 -2190,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011802864,7.397691,7.418644,7.411306,7.417583,1,CMIP5 -2190,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007211027,7.474363,7.488785,7.481585333,7.481608,1,CMIP5 -2191,ph,ocean,ph,rcp85,1,Simulated,global,0.003888692,7.463968,7.471313,7.468378667,7.469855,1,CMIP5 -2191,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01129468,7.396654,7.41673,7.409681333,7.41566,1,CMIP5 -2191,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007283023,7.47299,7.487547,7.480416667,7.480713,1,CMIP5 -2192,ph,ocean,ph,rcp85,1,Simulated,global,0.003657486,7.462945,7.469774,7.467116333,7.46863,1,CMIP5 -2192,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011075573,7.396024,7.41581,7.408792,7.414542,1,CMIP5 -2192,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00692023,7.471984,7.485811,7.479073667,7.479426,1,CMIP5 -2193,ph,ocean,ph,rcp85,1,Simulated,global,0.003394219,7.462071,7.468543,7.465898333,7.467081,1,CMIP5 -2193,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01152866,7.394562,7.414929,7.407865667,7.414106,1,CMIP5 -2193,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00680119,7.471028,7.48463,7.477799667,7.477741,1,CMIP5 -2194,ph,ocean,ph,rcp85,1,Simulated,global,0.003444908,7.46039,7.467059,7.464224,7.465223,1,CMIP5 -2194,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012111823,7.392158,7.4132,7.406143333,7.413072,1,CMIP5 -2194,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00707513,7.469203,7.483346,7.476143667,7.475882,1,CMIP5 -2195,ph,ocean,ph,rcp85,1,Simulated,global,0.003384196,7.458968,7.465525,7.462731,7.4637,1,CMIP5 -2195,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012228363,7.390028,7.411618,7.404139667,7.410773,1,CMIP5 -2195,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006995356,7.467968,7.481941,7.474751333,7.474345,1,CMIP5 -2196,ph,ocean,ph,rcp85,1,Simulated,global,0.003409133,7.457771,7.464401,7.461545333,7.462464,1,CMIP5 -2196,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.010794849,7.389638,7.408682,7.402096,7.407968,1,CMIP5 -2196,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006860933,7.466938,7.480658,7.473732667,7.473602,1,CMIP5 -2197,ph,ocean,ph,rcp85,1,Simulated,global,0.003410645,7.456828,7.463417,7.460632,7.461651,1,CMIP5 -2197,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01145674,7.388684,7.40922,7.401886,7.407754,1,CMIP5 -2197,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006974016,7.465719,7.479667,7.472684333,7.472667,1,CMIP5 -2198,ph,ocean,ph,rcp85,1,Simulated,global,0.003364194,7.455549,7.46215,7.459225667,7.459978,1,CMIP5 -2198,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011026918,7.387741,7.407474,7.400450333,7.406136,1,CMIP5 -2198,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006905802,7.464527,7.478329,7.471279333,7.470982,1,CMIP5 -2199,ph,ocean,ph,rcp85,1,Simulated,global,0.003118758,7.454619,7.460773,7.457989667,7.458577,1,CMIP5 -2199,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011151336,7.385717,7.405375,7.398587,7.404669,1,CMIP5 -2199,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006657975,7.463815,7.477094,7.470168333,7.469596,1,CMIP5 -2200,ph,ocean,ph,rcp85,1,Simulated,global,0.003208961,7.453203,7.459513,7.456696333,7.457373,1,CMIP5 -2200,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011516324,7.384129,7.40469,7.397406,7.403399,1,CMIP5 -2200,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006832256,7.462263,7.475905,7.468857667,7.468405,1,CMIP5 -2201,ph,ocean,ph,rcp85,1,Simulated,global,0.00356829,7.451596,7.458546,7.455539,7.456475,1,CMIP5 -2201,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011381852,7.382826,7.403066,7.395953333,7.401968,1,CMIP5 -2201,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007080534,7.460864,7.475011,7.467755333,7.467391,1,CMIP5 -2202,ph,ocean,ph,rcp85,1,Simulated,global,0.003679308,7.450073,7.457126,7.454205333,7.455417,1,CMIP5 -2202,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.012483564,7.380305,7.403619,7.394541,7.399699,1,CMIP5 -2202,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007184838,7.45948,7.47383,7.466438,7.466004,1,CMIP5 -2203,ph,ocean,ph,rcp85,1,Simulated,global,0.003516018,7.44923,7.456155,7.453045333,7.453751,1,CMIP5 -2203,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.011763883,7.379627,7.400551,7.393194667,7.399406,1,CMIP5 -2203,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007155761,7.458535,7.472796,7.465318667,7.464625,1,CMIP5 -2204,ph,ocean,ph,rcp85,1,Simulated,global,0.003499239,7.448063,7.454796,7.451980667,7.453083,1,CMIP5 -2204,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01194499,7.378245,7.400171,7.391946333,7.397423,1,CMIP5 -2204,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006969133,7.45752,7.471442,7.464286667,7.463898,1,CMIP5 -2205,ph,ocean,ph,rcp85,1,Simulated,global,0.003593045,7.446955,7.453591,7.451069,7.452661,1,CMIP5 -2205,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013770603,7.375391,7.40107,7.391104333,7.396852,1,CMIP5 -2205,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007142929,7.456312,7.470595,7.463371,7.463206,1,CMIP5 -2206,ph,ocean,ph,rcp85,1,Simulated,global,0.003367888,7.446269,7.452758,7.450035,7.451078,1,CMIP5 -2206,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013733395,7.374634,7.398734,7.390487667,7.398095,1,CMIP5 -2206,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007252224,7.455266,7.469746,7.462263,7.461777,1,CMIP5 -2207,ph,ocean,ph,rcp85,1,Simulated,global,0.003581958,7.44464,7.451573,7.448627333,7.449669,1,CMIP5 -2207,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014163633,7.372856,7.398585,7.389141667,7.395984,1,CMIP5 -2207,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007508334,7.453727,7.46869,7.460842333,7.46011,1,CMIP5 -2208,ph,ocean,ph,rcp85,1,Simulated,global,0.003728271,7.443449,7.450609,7.44763,7.448832,1,CMIP5 -2208,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01322546,7.372441,7.396639,7.387623667,7.393791,1,CMIP5 -2208,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007451383,7.452723,7.467606,7.459943,7.4595,1,CMIP5 -2209,ph,ocean,ph,rcp85,1,Simulated,global,0.003750166,7.442654,7.449716,7.446914333,7.448373,1,CMIP5 -2209,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013584582,7.370861,7.394444,7.386547,7.394336,1,CMIP5 -2209,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007603547,7.451657,7.466863,7.459312667,7.459418,1,CMIP5 -2210,ph,ocean,ph,rcp85,1,Simulated,global,0.00387829,7.441587,7.44898,7.445961,7.447316,1,CMIP5 -2210,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013879109,7.369249,7.393737,7.385266333,7.392813,1,CMIP5 -2210,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007812229,7.450696,7.466318,7.458427,7.458267,1,CMIP5 -2211,ph,ocean,ph,rcp85,1,Simulated,global,0.00363052,7.440659,7.447711,7.444684333,7.445683,1,CMIP5 -2211,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014061188,7.368084,7.39271,7.384317333,7.392158,1,CMIP5 -2211,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007716984,7.449613,7.465026,7.457087333,7.456623,1,CMIP5 -2212,ph,ocean,ph,rcp85,1,Simulated,global,0.003652473,7.439765,7.446823,7.443837667,7.444925,1,CMIP5 -2212,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013266415,7.367616,7.391359,7.382906333,7.389744,1,CMIP5 -2212,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007480535,7.449107,7.464046,7.456342,7.455873,1,CMIP5 -2213,ph,ocean,ph,rcp85,1,Simulated,global,0.003806885,7.439037,7.446153,7.443376667,7.44494,1,CMIP5 -2213,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013231471,7.36753,7.391232,7.382778333,7.389573,1,CMIP5 -2213,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007488045,7.448274,7.463249,7.455813667,7.455918,1,CMIP5 -2214,ph,ocean,ph,rcp85,1,Simulated,global,0.003806529,7.438013,7.445395,7.442241333,7.443316,1,CMIP5 -2214,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013546392,7.365745,7.389575,7.381381,7.388823,1,CMIP5 -2214,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007766241,7.4472,7.462714,7.454738333,7.454301,1,CMIP5 -2215,ph,ocean,ph,rcp85,1,Simulated,global,0.003840764,7.437164,7.444592,7.441443,7.442573,1,CMIP5 -2215,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014413878,7.364359,7.389921,7.380987333,7.388682,1,CMIP5 -2215,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007923239,7.446218,7.462038,7.453863667,7.453335,1,CMIP5 -2216,ph,ocean,ph,rcp85,1,Simulated,global,0.003707662,7.436707,7.443706,7.440913667,7.442328,1,CMIP5 -2216,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01426386,7.363773,7.388767,7.38024,7.38818,1,CMIP5 -2216,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00771351,7.44566,7.461087,7.453380667,7.453395,1,CMIP5 -2217,ph,ocean,ph,rcp85,1,Simulated,global,0.003587485,7.436038,7.442828,7.440102333,7.441441,1,CMIP5 -2217,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014602668,7.362555,7.388259,7.379409667,7.387415,1,CMIP5 -2217,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007585343,7.445119,7.460283,7.452571,7.452311,1,CMIP5 -2218,ph,ocean,ph,rcp85,1,Simulated,global,0.003497315,7.43548,7.442084,7.439447333,7.440778,1,CMIP5 -2218,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01512539,7.361479,7.388148,7.378935333,7.387179,1,CMIP5 -2218,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007561474,7.4445,7.459611,7.451882,7.451535,1,CMIP5 -2219,ph,ocean,ph,rcp85,1,Simulated,global,0.003503206,7.434703,7.441376,7.438656,7.439889,1,CMIP5 -2219,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015484281,7.360163,7.387691,7.378022333,7.386213,1,CMIP5 -2219,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007653825,7.443758,7.459035,7.451117,7.450558,1,CMIP5 -2220,ph,ocean,ph,rcp85,1,Simulated,global,0.003452584,7.433835,7.440494,7.437692,7.438747,1,CMIP5 -2220,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014145441,7.360022,7.384964,7.376347333,7.384056,1,CMIP5 -2220,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007522242,7.442961,7.457992,7.450292667,7.449925,1,CMIP5 -2221,ph,ocean,ph,rcp85,1,Simulated,global,0.00344742,7.43334,7.439996,7.437187333,7.438226,1,CMIP5 -2221,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014561647,7.359693,7.385873,7.376466,7.383832,1,CMIP5 -2221,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007462352,7.442586,7.457457,7.449656333,7.448926,1,CMIP5 -2222,ph,ocean,ph,rcp85,1,Simulated,global,0.003777576,7.432406,7.43971,7.436615667,7.437731,1,CMIP5 -2222,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013584345,7.358939,7.38283,7.374619,7.382088,1,CMIP5 -2222,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007742883,7.441802,7.457273,7.449342333,7.448952,1,CMIP5 -2223,ph,ocean,ph,rcp85,1,Simulated,global,0.003596441,7.432215,7.439224,7.436186,7.437119,1,CMIP5 -2223,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014228099,7.35859,7.383644,7.375012,7.382802,1,CMIP5 -2223,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007750292,7.441285,7.456758,7.448754667,7.448221,1,CMIP5 -2224,ph,ocean,ph,rcp85,1,Simulated,global,0.003382071,7.431864,7.43846,7.435594667,7.43646,1,CMIP5 -2224,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014259315,7.357733,7.382579,7.374197333,7.38228,1,CMIP5 -2224,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007495582,7.441068,7.456014,7.448205333,7.447534,1,CMIP5 -2225,ph,ocean,ph,rcp85,1,Simulated,global,0.003493119,7.431175,7.437854,7.435106,7.436289,1,CMIP5 -2225,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014590719,7.357597,7.38319,7.374440667,7.382535,1,CMIP5 -2225,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007588841,7.440136,7.455305,7.447572333,7.447276,1,CMIP5 -2226,ph,ocean,ph,rcp85,1,Simulated,global,0.003638073,7.43068,7.437661,7.434762667,7.435947,1,CMIP5 -2226,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014198434,7.357899,7.383511,7.374245333,7.381326,1,CMIP5 -2226,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007567618,7.439897,7.455005,7.447189,7.446665,1,CMIP5 -2227,ph,ocean,ph,rcp85,1,Simulated,global,0.003890667,7.429601,7.437154,7.433917667,7.434998,1,CMIP5 -2227,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013154095,7.357324,7.380753,7.372493,7.379402,1,CMIP5 -2227,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007777826,7.438976,7.454513,7.446524667,7.446085,1,CMIP5 -2228,ph,ocean,ph,rcp85,1,Simulated,global,0.003980885,7.429135,7.436821,7.433577667,7.434777,1,CMIP5 -2228,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013885638,7.356386,7.381778,7.372328667,7.378822,1,CMIP5 -2228,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007903916,7.438531,7.454311,7.446150333,7.445609,1,CMIP5 -2229,ph,ocean,ph,rcp85,1,Simulated,global,0.003863495,7.428906,7.436403,7.433194667,7.434275,1,CMIP5 -2229,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013421982,7.356467,7.380926,7.371889667,7.378276,1,CMIP5 -2229,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007729253,7.438361,7.453785,7.445775,7.445179,1,CMIP5 -2230,ph,ocean,ph,rcp85,1,Simulated,global,0.003806455,7.428536,7.435987,7.432712333,7.433614,1,CMIP5 -2230,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014039958,7.355667,7.380217,7.371876667,7.379746,1,CMIP5 -2230,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007924519,7.437647,7.453452,7.445208667,7.444527,1,CMIP5 -2231,ph,ocean,ph,rcp85,1,Simulated,global,0.003987043,7.428039,7.435739,7.432487333,7.433684,1,CMIP5 -2231,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.013806424,7.355216,7.379887,7.371131667,7.378292,1,CMIP5 -2231,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007967275,7.43733,7.453249,7.445086333,7.44468,1,CMIP5 -2232,ph,ocean,ph,rcp85,1,Simulated,global,0.003993692,7.427922,7.43574,7.432303333,7.433248,1,CMIP5 -2232,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014540522,7.355,7.381713,7.371674667,7.378311,1,CMIP5 -2232,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008098985,7.437187,7.453297,7.444755333,7.443782,1,CMIP5 -2233,ph,ocean,ph,rcp85,1,Simulated,global,0.00404669,7.427308,7.435181,7.431786,7.432869,1,CMIP5 -2233,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014277482,7.354147,7.379798,7.370594333,7.377838,1,CMIP5 -2233,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008146797,7.436546,7.452802,7.444354667,7.443716,1,CMIP5 -2234,ph,ocean,ph,rcp85,1,Simulated,global,0.003825122,7.427371,7.434825,7.431595,7.432589,1,CMIP5 -2234,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014772047,7.35396,7.379994,7.371009,7.379073,1,CMIP5 -2234,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008032869,7.43639,7.452409,7.444046,7.443339,1,CMIP5 -2235,ph,ocean,ph,rcp85,1,Simulated,global,0.004109337,7.426717,7.434595,7.431332,7.432684,1,CMIP5 -2235,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014296388,7.354229,7.380072,7.370682333,7.377746,1,CMIP5 -2235,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008110264,7.435862,7.452071,7.44379,7.443437,1,CMIP5 -2236,ph,ocean,ph,rcp85,1,Simulated,global,0.003982409,7.42663,7.434319,7.431074333,7.432274,1,CMIP5 -2236,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014957725,7.353737,7.381405,7.370855,7.377423,1,CMIP5 -2236,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00803885,7.435819,7.451841,7.443444,7.442672,1,CMIP5 -2237,ph,ocean,ph,rcp85,1,Simulated,global,0.00402624,7.426113,7.433989,7.430535,7.431503,1,CMIP5 -2237,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01394913,7.353732,7.379246,7.369746667,7.376262,1,CMIP5 -2237,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008041818,7.435422,7.451441,7.443015667,7.442184,1,CMIP5 -2238,ph,ocean,ph,rcp85,1,Simulated,global,0.003805846,7.426033,7.433346,7.430299,7.431518,1,CMIP5 -2238,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014463879,7.352953,7.379566,7.369532667,7.376079,1,CMIP5 -2238,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007752277,7.435362,7.450827,7.442775,7.442136,1,CMIP5 -2239,ph,ocean,ph,rcp85,1,Simulated,global,0.00386119,7.425889,7.433351,7.430194,7.431342,1,CMIP5 -2239,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014412228,7.35281,7.379149,7.369359667,7.37612,1,CMIP5 -2239,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007862825,7.435183,7.450865,7.442686,7.44201,1,CMIP5 -2240,ph,ocean,ph,rcp85,1,Simulated,global,0.003950049,7.425858,7.433544,7.430228333,7.431283,1,CMIP5 -2240,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015136576,7.352133,7.379479,7.369555,7.377053,1,CMIP5 -2240,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008168805,7.434972,7.451247,7.442697,7.441872,1,CMIP5 -2241,ph,ocean,ph,rcp85,1,Simulated,global,0.004006516,7.425731,7.433413,7.43023,7.431546,1,CMIP5 -2241,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014801279,7.352506,7.378471,7.369592667,7.377801,1,CMIP5 -2241,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008166625,7.434681,7.451006,7.442693667,7.442394,1,CMIP5 -2242,ph,ocean,ph,rcp85,1,Simulated,global,0.004331723,7.42495,7.433095,7.429874667,7.431579,1,CMIP5 -2242,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015557342,7.351806,7.380855,7.369548667,7.375985,1,CMIP5 -2242,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00834321,7.434094,7.450771,7.442270667,7.441947,1,CMIP5 -2243,ph,ocean,ph,rcp85,1,Simulated,global,0.004092247,7.424998,7.432856,7.429587667,7.430909,1,CMIP5 -2243,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015694953,7.351162,7.380236,7.369115,7.375947,1,CMIP5 -2243,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008257018,7.434158,7.450621,7.442015,7.441266,1,CMIP5 -2244,ph,ocean,ph,rcp85,1,Simulated,global,0.004291925,7.424617,7.432885,7.429417,7.430749,1,CMIP5 -2244,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014002389,7.35173,7.376965,7.367853,7.374864,1,CMIP5 -2244,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00831658,7.433908,7.450532,7.442060667,7.441742,1,CMIP5 -2245,ph,ocean,ph,rcp85,1,Simulated,global,0.004209989,7.424759,7.432861,7.429471667,7.430795,1,CMIP5 -2245,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.014819237,7.351141,7.37881,7.368042333,7.374176,1,CMIP5 -2245,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008233147,7.434205,7.450631,7.442085667,7.441421,1,CMIP5 -2246,ph,ocean,ph,rcp85,1,Simulated,global,0.004290064,7.424364,7.432507,7.429216,7.430777,1,CMIP5 -2246,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015237178,7.350737,7.379495,7.368026667,7.373848,1,CMIP5 -2246,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008257899,7.433797,7.450288,7.441781333,7.441259,1,CMIP5 -2247,ph,ocean,ph,rcp85,1,Simulated,global,0.003989728,7.4248,7.432489,7.429260333,7.430492,1,CMIP5 -2247,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015078248,7.351084,7.379541,7.368193667,7.373956,1,CMIP5 -2247,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.007985341,7.434294,7.45019,7.441796667,7.440906,1,CMIP5 -2248,ph,ocean,ph,rcp85,1,Simulated,global,0.004378167,7.424318,7.432487,7.429312667,7.431133,1,CMIP5 -2248,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015631835,7.351095,7.381212,7.368575333,7.373419,1,CMIP5 -2248,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008190086,7.433823,7.450185,7.441781333,7.441336,1,CMIP5 -2249,ph,ocean,ph,rcp85,1,Simulated,global,0.004439277,7.424062,7.4325,7.429078333,7.430673,1,CMIP5 -2249,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01518843,7.350955,7.379774,7.368136667,7.373681,1,CMIP5 -2249,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008392452,7.433471,7.450232,7.441593,7.441076,1,CMIP5 -2250,ph,ocean,ph,rcp85,1,Simulated,global,0.004399982,7.424307,7.432688,7.429272,7.430821,1,CMIP5 -2250,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015036647,7.350751,7.379134,7.367812,7.373551,1,CMIP5 -2250,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008371507,7.433785,7.450505,7.441891667,7.441385,1,CMIP5 -2251,ph,ocean,ph,rcp85,1,Simulated,global,0.004549801,7.424065,7.432808,7.429164667,7.430621,1,CMIP5 -2251,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01459601,7.350735,7.377878,7.367408,7.373611,1,CMIP5 -2251,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008592711,7.433487,7.450655,7.441847667,7.441401,1,CMIP5 -2252,ph,ocean,ph,rcp85,1,Simulated,global,0.004621241,7.423825,7.4325,7.429083,7.430924,1,CMIP5 -2252,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015615385,7.350248,7.380262,7.367747,7.372731,1,CMIP5 -2252,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008515978,7.433367,7.450385,7.441677,7.441279,1,CMIP5 -2253,ph,ocean,ph,rcp85,1,Simulated,global,0.004659824,7.423425,7.432055,7.428755667,7.430787,1,CMIP5 -2253,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015821663,7.349164,7.379703,7.366825667,7.37161,1,CMIP5 -2253,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008491572,7.433101,7.450079,7.441469333,7.441228,1,CMIP5 -2254,ph,ocean,ph,rcp85,1,Simulated,global,0.004511522,7.423764,7.432132,7.428922333,7.430871,1,CMIP5 -2254,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016303192,7.348311,7.379283,7.366739667,7.372625,1,CMIP5 -2254,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008525974,7.433314,7.450359,7.441696,7.441415,1,CMIP5 -2255,ph,ocean,ph,rcp85,1,Simulated,global,0.004701667,7.423833,7.432508,7.429218,7.431313,1,CMIP5 -2255,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01594753,7.349249,7.379492,7.367295333,7.373145,1,CMIP5 -2255,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008656551,7.433299,7.450612,7.441938333,7.441904,1,CMIP5 -2256,ph,ocean,ph,rcp85,1,Simulated,global,0.004542436,7.424049,7.432563,7.429221,7.431051,1,CMIP5 -2256,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016112034,7.349674,7.380222,7.367909,7.373831,1,CMIP5 -2256,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008586243,7.433427,7.450587,7.441818,7.44144,1,CMIP5 -2257,ph,ocean,ph,rcp85,1,Simulated,global,0.004448831,7.424049,7.432572,7.429048,7.430523,1,CMIP5 -2257,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015393542,7.349953,7.378658,7.367518333,7.373944,1,CMIP5 -2257,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008579464,7.433406,7.450537,7.441689,7.441124,1,CMIP5 -2258,ph,ocean,ph,rcp85,1,Simulated,global,0.004450638,7.424272,7.432725,7.429303667,7.430914,1,CMIP5 -2258,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.0150329,7.350225,7.378341,7.367357667,7.373507,1,CMIP5 -2258,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008461917,7.433752,7.450664,7.442025333,7.44166,1,CMIP5 -2259,ph,ocean,ph,rcp85,1,Simulated,global,0.004401431,7.423917,7.432345,7.428864667,7.430332,1,CMIP5 -2259,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016170716,7.347975,7.378001,7.366457,7.373395,1,CMIP5 -2259,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008688455,7.433352,7.450691,7.441690333,7.441028,1,CMIP5 -2260,ph,ocean,ph,rcp85,1,Simulated,global,0.004482856,7.424189,7.432763,7.429232667,7.430746,1,CMIP5 -2260,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015793071,7.34913,7.37899,7.367033,7.372979,1,CMIP5 -2260,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008618381,7.433753,7.450949,7.442009,7.441325,1,CMIP5 -2261,ph,ocean,ph,rcp85,1,Simulated,global,0.004629481,7.423887,7.432766,7.429084333,7.4306,1,CMIP5 -2261,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015291277,7.349026,7.377825,7.366396333,7.372338,1,CMIP5 -2261,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008744559,7.433514,7.450975,7.441958333,7.441386,1,CMIP5 -2262,ph,ocean,ph,rcp85,1,Simulated,global,0.00458487,7.424163,7.432864,7.429349,7.43102,1,CMIP5 -2262,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01641791,7.34944,7.380561,7.368023667,7.37407,1,CMIP5 -2262,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008759918,7.433518,7.451005,7.441952,7.441333,1,CMIP5 -2263,ph,ocean,ph,rcp85,1,Simulated,global,0.004501649,7.424143,7.432669,7.429241,7.430911,1,CMIP5 -2263,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016469516,7.348382,7.379587,7.367029,7.373118,1,CMIP5 -2263,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008679214,7.433672,7.450997,7.442023667,7.441402,1,CMIP5 -2264,ph,ocean,ph,rcp85,1,Simulated,global,0.004585995,7.424155,7.43269,7.429392,7.431331,1,CMIP5 -2264,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017391362,7.348441,7.381999,7.367861,7.373143,1,CMIP5 -2264,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008680176,7.433682,7.451009,7.442035,7.441414,1,CMIP5 -2265,ph,ocean,ph,rcp85,1,Simulated,global,0.004412834,7.424229,7.432365,7.429284333,7.431259,1,CMIP5 -2265,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017085785,7.348434,7.381247,7.367594333,7.373102,1,CMIP5 -2265,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008429114,7.433777,7.450615,7.441957667,7.441481,1,CMIP5 -2266,ph,ocean,ph,rcp85,1,Simulated,global,0.004733126,7.423986,7.43269,7.429412333,7.431561,1,CMIP5 -2266,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016776365,7.34912,7.38149,7.367854,7.372952,1,CMIP5 -2266,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00867549,7.433517,7.450862,7.442058,7.441795,1,CMIP5 -2267,ph,ocean,ph,rcp85,1,Simulated,global,0.004688228,7.424221,7.432893,7.429586333,7.431645,1,CMIP5 -2267,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017241258,7.348389,7.380993,7.367931667,7.374413,1,CMIP5 -2267,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008875483,7.433523,7.451268,7.442262667,7.441997,1,CMIP5 -2268,ph,ocean,ph,rcp85,1,Simulated,global,0.00461142,7.424232,7.432726,7.429516333,7.431591,1,CMIP5 -2268,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016512423,7.349785,7.381523,7.368289333,7.37356,1,CMIP5 -2268,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008536664,7.433694,7.450761,7.442093333,7.441825,1,CMIP5 -2269,ph,ocean,ph,rcp85,1,Simulated,global,0.004806153,7.423833,7.432568,7.429358667,7.431675,1,CMIP5 -2269,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016669207,7.349219,7.381147,7.367952667,7.373492,1,CMIP5 -2269,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00872853,7.433234,7.450691,7.441975667,7.442002,1,CMIP5 -2270,ph,ocean,ph,rcp85,1,Simulated,global,0.004406172,7.424235,7.432313,7.429290667,7.431324,1,CMIP5 -2270,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017364035,7.348314,7.381457,7.367879667,7.373868,1,CMIP5 -2270,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00847543,7.433641,7.450578,7.441911667,7.441516,1,CMIP5 -2271,ph,ocean,ph,rcp85,1,Simulated,global,0.004435796,7.424504,7.432691,7.429584,7.431557,1,CMIP5 -2271,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.0164575,7.348724,7.379468,7.367489667,7.374277,1,CMIP5 -2271,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008533382,7.433884,7.450949,7.442345667,7.442204,1,CMIP5 -2272,ph,ocean,ph,rcp85,1,Simulated,global,0.00467695,7.424111,7.432539,7.429496333,7.431839,1,CMIP5 -2272,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016910056,7.349267,7.381183,7.368454667,7.374914,1,CMIP5 -2272,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00867493,7.433298,7.450646,7.442045333,7.442192,1,CMIP5 -2273,ph,ocean,ph,rcp85,1,Simulated,global,0.004464015,7.424458,7.432468,7.429601333,7.431878,1,CMIP5 -2273,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017862602,7.348142,7.381554,7.368498667,7.3758,1,CMIP5 -2273,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008630003,7.433545,7.450805,7.442171,7.442163,1,CMIP5 -2274,ph,ocean,ph,rcp85,1,Simulated,global,0.004735491,7.424114,7.432631,7.429568333,7.43196,1,CMIP5 -2274,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017311102,7.348163,7.380979,7.367757,7.374129,1,CMIP5 -2274,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008774965,7.433449,7.450998,7.442275667,7.44238,1,CMIP5 -2275,ph,ocean,ph,rcp85,1,Simulated,global,0.004721593,7.424146,7.432665,7.429581667,7.431934,1,CMIP5 -2275,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017084648,7.348805,7.381497,7.36802,7.373758,1,CMIP5 -2275,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008672004,7.433556,7.4509,7.442233,7.442243,1,CMIP5 -2276,ph,ocean,ph,rcp85,1,Simulated,global,0.004621959,7.424317,7.432614,7.429642,7.431995,1,CMIP5 -2276,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017481756,7.348347,7.381728,7.368039667,7.374044,1,CMIP5 -2276,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008616052,7.433705,7.450937,7.442303667,7.442269,1,CMIP5 -2277,ph,ocean,ph,rcp85,1,Simulated,global,0.004703114,7.424132,7.432584,7.429549667,7.431933,1,CMIP5 -2277,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.01808149,7.34866,7.383676,7.368776333,7.373993,1,CMIP5 -2277,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008671603,7.433495,7.450833,7.442041333,7.441796,1,CMIP5 -2278,ph,ocean,ph,rcp85,1,Simulated,global,0.004738822,7.42407,7.432465,7.429537333,7.432077,1,CMIP5 -2278,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017469117,7.348512,7.381575,7.368303333,7.374823,1,CMIP5 -2278,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008730132,7.433267,7.450721,7.442129,7.442399,1,CMIP5 -2279,ph,ocean,ph,rcp85,1,Simulated,global,0.004566661,7.424133,7.432248,7.429400333,7.43182,1,CMIP5 -2279,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016831173,7.348398,7.380361,7.367428,7.373525,1,CMIP5 -2279,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008449835,7.433584,7.45048,7.442133667,7.442337,1,CMIP5 -2280,ph,ocean,ph,rcp85,1,Simulated,global,0.004504363,7.424089,7.432212,7.429275,7.431524,1,CMIP5 -2280,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017705339,7.347296,7.381014,7.367277667,7.373523,1,CMIP5 -2280,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008573284,7.433532,7.450676,7.442018333,7.441847,1,CMIP5 -2281,ph,ocean,ph,rcp85,1,Simulated,global,0.004712453,7.423797,7.43215,7.429233667,7.431754,1,CMIP5 -2281,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017428678,7.347331,7.379611,7.367268333,7.374863,1,CMIP5 -2281,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00883741,7.432935,7.450594,7.441980333,7.442412,1,CMIP5 -2282,ph,ocean,ph,rcp85,1,Simulated,global,0.00465423,7.424128,7.432457,7.429492333,7.431892,1,CMIP5 -2282,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017716141,7.347075,7.379768,7.367365,7.375252,1,CMIP5 -2282,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008887107,7.433255,7.451023,7.442274667,7.442546,1,CMIP5 -2283,ph,ocean,ph,rcp85,1,Simulated,global,0.004930898,7.423828,7.432541,7.429518,7.432185,1,CMIP5 -2283,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.018708263,7.347019,7.383156,7.367888,7.373489,1,CMIP5 -2283,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.00895451,7.433228,7.451137,7.442190333,7.442206,1,CMIP5 -2284,ph,ocean,ph,rcp85,1,Simulated,global,0.004889673,7.423843,7.43264,7.429474667,7.431941,1,CMIP5 -2284,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017049986,7.34828,7.3808,7.367501667,7.373425,1,CMIP5 -2284,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008863907,7.433258,7.450983,7.442211667,7.442394,1,CMIP5 -2285,ph,ocean,ph,rcp85,1,Simulated,global,0.004855715,7.424106,7.432781,7.429703667,7.432224,1,CMIP5 -2285,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016736048,7.348802,7.380733,7.367665667,7.373462,1,CMIP5 -2285,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008742793,7.433564,7.451042,7.442451667,7.442749,1,CMIP5 -2286,ph,ocean,ph,rcp85,1,Simulated,global,0.004712315,7.424251,7.432902,7.429656,7.431815,1,CMIP5 -2286,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.0168923,7.348844,7.381071,7.367884667,7.373739,1,CMIP5 -2286,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008748648,7.433684,7.451179,7.442349667,7.442186,1,CMIP5 -2287,ph,ocean,ph,rcp85,1,Simulated,global,0.004743015,7.424206,7.432877,7.429652,7.431873,1,CMIP5 -2287,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017143715,7.348115,7.380111,7.367670667,7.374786,1,CMIP5 -2287,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008936624,7.433435,7.451308,7.442398667,7.442453,1,CMIP5 -2288,ph,ocean,ph,rcp85,1,Simulated,global,0.00491554,7.424058,7.433172,7.429679,7.431807,1,CMIP5 -2288,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016949408,7.348088,7.379779,7.367407333,7.374355,1,CMIP5 -2288,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009166578,7.43334,7.451673,7.442484667,7.442441,1,CMIP5 -2289,ph,ocean,ph,rcp85,1,Simulated,global,0.00499718,7.424032,7.433134,7.429774667,7.432158,1,CMIP5 -2289,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017707654,7.347606,7.381087,7.367679,7.374344,1,CMIP5 -2289,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.0092106,7.433311,7.451732,7.442546333,7.442596,1,CMIP5 -2290,ph,ocean,ph,rcp85,1,Simulated,global,0.004807173,7.424042,7.432957,7.429538667,7.431617,1,CMIP5 -2290,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016477052,7.347814,7.378541,7.366615333,7.373491,1,CMIP5 -2290,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008994003,7.433483,7.451471,7.442473,7.442465,1,CMIP5 -2291,ph,ocean,ph,rcp85,1,Simulated,global,0.004837781,7.42421,7.433053,7.429765,7.432032,1,CMIP5 -2291,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017607561,7.348217,7.38187,7.368037667,7.374026,1,CMIP5 -2291,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008960724,7.433582,7.451501,7.442456,7.442285,1,CMIP5 -2292,ph,ocean,ph,rcp85,1,Simulated,global,0.004958249,7.423998,7.433095,7.429686,7.431965,1,CMIP5 -2292,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016932694,7.348944,7.381173,7.368060667,7.374065,1,CMIP5 -2292,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009035003,7.433323,7.451393,7.442354,7.442346,1,CMIP5 -2293,ph,ocean,ph,rcp85,1,Simulated,global,0.005033336,7.423866,7.433033,7.429650333,7.432052,1,CMIP5 -2293,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017797586,7.348113,7.381943,7.368223667,7.374615,1,CMIP5 -2293,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009217502,7.433064,7.451499,7.442285333,7.442293,1,CMIP5 -2294,ph,ocean,ph,rcp85,1,Simulated,global,0.004862904,7.424147,7.433215,7.429696,7.431726,1,CMIP5 -2294,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016453489,7.348731,7.380181,7.367251333,7.372842,1,CMIP5 -2294,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008931927,7.433728,7.451586,7.442525,7.442261,1,CMIP5 -2295,ph,ocean,ph,rcp85,1,Simulated,global,0.004797246,7.424099,7.433187,7.429531,7.431307,1,CMIP5 -2295,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.015739755,7.349015,7.379121,7.366723,7.372033,1,CMIP5 -2295,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.008842797,7.433822,7.45149,7.442428333,7.441973,1,CMIP5 -2296,ph,ocean,ph,rcp85,1,Simulated,global,0.004831874,7.424163,7.433332,7.429628667,7.431391,1,CMIP5 -2296,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016417412,7.348781,7.380118,7.367279667,7.37294,1,CMIP5 -2296,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009007957,7.433729,7.451718,7.442439333,7.441871,1,CMIP5 -2297,ph,ocean,ph,rcp85,1,Simulated,global,0.005068516,7.423904,7.43349,7.429648667,7.431552,1,CMIP5 -2297,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016185194,7.349798,7.381127,7.367813667,7.372516,1,CMIP5 -2297,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009103436,7.433501,7.451688,7.442349,7.441858,1,CMIP5 -2298,ph,ocean,ph,rcp85,1,Simulated,global,0.004913374,7.42427,7.433462,7.429869,7.431875,1,CMIP5 -2298,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.016833967,7.348757,7.380643,7.36782,7.37406,1,CMIP5 -2298,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009120194,7.433647,7.451881,7.442624667,7.442346,1,CMIP5 -2299,ph,ocean,ph,rcp85,1,Simulated,global,0.005178365,7.423815,7.433251,7.429765333,7.43223,1,CMIP5 -2299,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.017358892,7.348345,7.381817,7.367741667,7.373063,1,CMIP5 -2299,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.009210516,7.433293,7.451714,7.442513333,7.442533,1,CMIP5 -2300,ph,ocean,ph,rcp85,1,Simulated,global,0.00076014,7.432028,7.433103,7.4325655,7.4325655,1,CMIP5 -2300,ph,ocean,ph_HL,rcp85,1,Simulated,HL,0.023212194,7.348225,7.381052,7.3646385,7.3646385,1,CMIP5 -2300,ph,ocean,ph_LL,rcp85,1,Simulated,LL,0.006443864,7.442447,7.45156,7.4470035,7.4470035,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/hist/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/hist/ensemble_mean_model.csv deleted file mode 100644 index f8761d2d9..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/hist/ensemble_mean_model.csv +++ /dev/null @@ -1,3301 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","tas","temperature","tgav","historical",1850,"Simulated","C","global",13.6654 -"bcc-csm1-1","tas","temperature","tgav","historical",1851,"Simulated","C","global",13.6734 -"bcc-csm1-1","tas","temperature","tgav","historical",1852,"Simulated","C","global",13.6653666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1853,"Simulated","C","global",13.6990666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1854,"Simulated","C","global",13.6761333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1855,"Simulated","C","global",13.6979333333334 -"bcc-csm1-1","tas","temperature","tgav","historical",1856,"Simulated","C","global",13.6864 -"bcc-csm1-1","tas","temperature","tgav","historical",1857,"Simulated","C","global",13.4578666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1858,"Simulated","C","global",13.5713666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1859,"Simulated","C","global",13.6565 -"bcc-csm1-1","tas","temperature","tgav","historical",1860,"Simulated","C","global",13.7683 -"bcc-csm1-1","tas","temperature","tgav","historical",1861,"Simulated","C","global",13.7923 -"bcc-csm1-1","tas","temperature","tgav","historical",1862,"Simulated","C","global",13.8196666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1863,"Simulated","C","global",13.6544333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1864,"Simulated","C","global",13.8148 -"bcc-csm1-1","tas","temperature","tgav","historical",1865,"Simulated","C","global",13.8048 -"bcc-csm1-1","tas","temperature","tgav","historical",1866,"Simulated","C","global",13.7733666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1867,"Simulated","C","global",13.7253666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1868,"Simulated","C","global",13.7875333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1869,"Simulated","C","global",13.8565 -"bcc-csm1-1","tas","temperature","tgav","historical",1870,"Simulated","C","global",13.9122 -"bcc-csm1-1","tas","temperature","tgav","historical",1871,"Simulated","C","global",13.9494 -"bcc-csm1-1","tas","temperature","tgav","historical",1872,"Simulated","C","global",13.9465666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1873,"Simulated","C","global",13.8615333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1874,"Simulated","C","global",13.9371333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1875,"Simulated","C","global",13.9034666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1876,"Simulated","C","global",13.8908666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1877,"Simulated","C","global",13.8639 -"bcc-csm1-1","tas","temperature","tgav","historical",1878,"Simulated","C","global",13.8111333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1879,"Simulated","C","global",13.8426333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1880,"Simulated","C","global",13.8462333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1881,"Simulated","C","global",13.8249 -"bcc-csm1-1","tas","temperature","tgav","historical",1882,"Simulated","C","global",13.8924333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1883,"Simulated","C","global",13.7772333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1884,"Simulated","C","global",13.2345333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1885,"Simulated","C","global",13.4075333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1886,"Simulated","C","global",13.5671666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1887,"Simulated","C","global",13.6217333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1888,"Simulated","C","global",13.6469666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1889,"Simulated","C","global",13.6899666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1890,"Simulated","C","global",13.5867666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1891,"Simulated","C","global",13.4353666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1892,"Simulated","C","global",13.5266333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1893,"Simulated","C","global",13.6014 -"bcc-csm1-1","tas","temperature","tgav","historical",1894,"Simulated","C","global",13.7245666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1895,"Simulated","C","global",13.7517333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1896,"Simulated","C","global",13.758 -"bcc-csm1-1","tas","temperature","tgav","historical",1897,"Simulated","C","global",13.8417333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1898,"Simulated","C","global",13.8007666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1899,"Simulated","C","global",13.81 -"bcc-csm1-1","tas","temperature","tgav","historical",1900,"Simulated","C","global",13.7437333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1901,"Simulated","C","global",13.8381666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1902,"Simulated","C","global",13.8043666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1903,"Simulated","C","global",13.3787666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1904,"Simulated","C","global",13.3966666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1905,"Simulated","C","global",13.5836 -"bcc-csm1-1","tas","temperature","tgav","historical",1906,"Simulated","C","global",13.6518 -"bcc-csm1-1","tas","temperature","tgav","historical",1907,"Simulated","C","global",13.6033 -"bcc-csm1-1","tas","temperature","tgav","historical",1908,"Simulated","C","global",13.7042 -"bcc-csm1-1","tas","temperature","tgav","historical",1909,"Simulated","C","global",13.6827666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1910,"Simulated","C","global",13.6557 -"bcc-csm1-1","tas","temperature","tgav","historical",1911,"Simulated","C","global",13.7551666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1912,"Simulated","C","global",13.7099333333334 -"bcc-csm1-1","tas","temperature","tgav","historical",1913,"Simulated","C","global",13.6746 -"bcc-csm1-1","tas","temperature","tgav","historical",1914,"Simulated","C","global",13.8051666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1915,"Simulated","C","global",13.7836666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1916,"Simulated","C","global",13.8391333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1917,"Simulated","C","global",13.8712 -"bcc-csm1-1","tas","temperature","tgav","historical",1918,"Simulated","C","global",13.8662333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1919,"Simulated","C","global",13.8706666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1920,"Simulated","C","global",13.9270666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1921,"Simulated","C","global",13.8592 -"bcc-csm1-1","tas","temperature","tgav","historical",1922,"Simulated","C","global",13.9160666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1923,"Simulated","C","global",13.8284 -"bcc-csm1-1","tas","temperature","tgav","historical",1924,"Simulated","C","global",13.8582666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1925,"Simulated","C","global",14.0161666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1926,"Simulated","C","global",13.9192333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1927,"Simulated","C","global",13.9973333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1928,"Simulated","C","global",13.9933 -"bcc-csm1-1","tas","temperature","tgav","historical",1929,"Simulated","C","global",13.8913333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1930,"Simulated","C","global",13.8886 -"bcc-csm1-1","tas","temperature","tgav","historical",1931,"Simulated","C","global",14.0071 -"bcc-csm1-1","tas","temperature","tgav","historical",1932,"Simulated","C","global",13.9593 -"bcc-csm1-1","tas","temperature","tgav","historical",1933,"Simulated","C","global",13.9672 -"bcc-csm1-1","tas","temperature","tgav","historical",1934,"Simulated","C","global",13.9323 -"bcc-csm1-1","tas","temperature","tgav","historical",1935,"Simulated","C","global",14.022 -"bcc-csm1-1","tas","temperature","tgav","historical",1936,"Simulated","C","global",13.9935 -"bcc-csm1-1","tas","temperature","tgav","historical",1937,"Simulated","C","global",13.9974 -"bcc-csm1-1","tas","temperature","tgav","historical",1938,"Simulated","C","global",14.0427333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1939,"Simulated","C","global",14.0733333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1940,"Simulated","C","global",14.0443666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1941,"Simulated","C","global",14.0041333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1942,"Simulated","C","global",14.0446 -"bcc-csm1-1","tas","temperature","tgav","historical",1943,"Simulated","C","global",14.0645666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1944,"Simulated","C","global",14.0027333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1945,"Simulated","C","global",14.0562333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1946,"Simulated","C","global",14.1107333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1947,"Simulated","C","global",14.0973 -"bcc-csm1-1","tas","temperature","tgav","historical",1948,"Simulated","C","global",14.0826666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1949,"Simulated","C","global",14.1648666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1950,"Simulated","C","global",14.1161 -"bcc-csm1-1","tas","temperature","tgav","historical",1951,"Simulated","C","global",14.0838333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1952,"Simulated","C","global",14.0673333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1953,"Simulated","C","global",14.1559 -"bcc-csm1-1","tas","temperature","tgav","historical",1954,"Simulated","C","global",14.0852666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1955,"Simulated","C","global",14.0838333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1956,"Simulated","C","global",14.1117 -"bcc-csm1-1","tas","temperature","tgav","historical",1957,"Simulated","C","global",14.16 -"bcc-csm1-1","tas","temperature","tgav","historical",1958,"Simulated","C","global",14.1941 -"bcc-csm1-1","tas","temperature","tgav","historical",1959,"Simulated","C","global",14.1760666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1960,"Simulated","C","global",14.2053 -"bcc-csm1-1","tas","temperature","tgav","historical",1961,"Simulated","C","global",14.0986666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1962,"Simulated","C","global",14.1581666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1963,"Simulated","C","global",14.0601666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1964,"Simulated","C","global",13.8523333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1965,"Simulated","C","global",13.9487 -"bcc-csm1-1","tas","temperature","tgav","historical",1966,"Simulated","C","global",14.0069333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1967,"Simulated","C","global",14.0793333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1968,"Simulated","C","global",14.0901333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1969,"Simulated","C","global",13.9913333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1970,"Simulated","C","global",14.0398333333334 -"bcc-csm1-1","tas","temperature","tgav","historical",1971,"Simulated","C","global",14.12 -"bcc-csm1-1","tas","temperature","tgav","historical",1972,"Simulated","C","global",14.1386333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1973,"Simulated","C","global",14.1851333333334 -"bcc-csm1-1","tas","temperature","tgav","historical",1974,"Simulated","C","global",14.2492666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1975,"Simulated","C","global",14.1610666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1976,"Simulated","C","global",14.2039333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1977,"Simulated","C","global",14.2124666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1978,"Simulated","C","global",14.2887 -"bcc-csm1-1","tas","temperature","tgav","historical",1979,"Simulated","C","global",14.4011333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1980,"Simulated","C","global",14.3645333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1981,"Simulated","C","global",14.4269 -"bcc-csm1-1","tas","temperature","tgav","historical",1982,"Simulated","C","global",14.4022666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1983,"Simulated","C","global",14.2814 -"bcc-csm1-1","tas","temperature","tgav","historical",1984,"Simulated","C","global",14.354 -"bcc-csm1-1","tas","temperature","tgav","historical",1985,"Simulated","C","global",14.4165666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1986,"Simulated","C","global",14.5404666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1987,"Simulated","C","global",14.5745333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1988,"Simulated","C","global",14.6612333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1989,"Simulated","C","global",14.6545666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1990,"Simulated","C","global",14.7624 -"bcc-csm1-1","tas","temperature","tgav","historical",1991,"Simulated","C","global",14.6850333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1992,"Simulated","C","global",14.3360666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1993,"Simulated","C","global",14.4066333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",1994,"Simulated","C","global",14.5349666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",1995,"Simulated","C","global",14.5855 -"bcc-csm1-1","tas","temperature","tgav","historical",1996,"Simulated","C","global",14.6731 -"bcc-csm1-1","tas","temperature","tgav","historical",1997,"Simulated","C","global",14.7193 -"bcc-csm1-1","tas","temperature","tgav","historical",1998,"Simulated","C","global",14.7748 -"bcc-csm1-1","tas","temperature","tgav","historical",1999,"Simulated","C","global",14.8068333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",2000,"Simulated","C","global",14.8968333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",2001,"Simulated","C","global",14.8707 -"bcc-csm1-1","tas","temperature","tgav","historical",2002,"Simulated","C","global",14.9216 -"bcc-csm1-1","tas","temperature","tgav","historical",2003,"Simulated","C","global",14.8915666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",2004,"Simulated","C","global",14.9522666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",2005,"Simulated","C","global",14.9493333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",2006,"Simulated","C","global",14.9971333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",2007,"Simulated","C","global",15.0805 -"bcc-csm1-1","tas","temperature","tgav","historical",2008,"Simulated","C","global",15.1359 -"bcc-csm1-1","tas","temperature","tgav","historical",2009,"Simulated","C","global",15.1242666666667 -"bcc-csm1-1","tas","temperature","tgav","historical",2010,"Simulated","C","global",15.0708333333333 -"bcc-csm1-1","tas","temperature","tgav","historical",2011,"Simulated","C","global",15.1101 -"bcc-csm1-1","tas","temperature","tgav","historical",2012,"Simulated","C","global",15.1562666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-12.6371333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-12.5461 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-12.5434333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-12.7562666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-12.5826333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-12.4382666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-12.9258666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-13.0950666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-12.8381 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-12.5618333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-12.1768666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-12.1736333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-11.9925333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-12.4501666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-12.0776666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-11.9346333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-12.0709666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-12.2683333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-12.0377666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-11.9692 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-11.7867666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-11.7596333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-11.7349 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-11.9820333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-11.8402 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-11.9307666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-11.9254333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-11.9396 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-12.1252333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-12.1527 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-12.0732666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-12.1178 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-12.1322333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-12.1824 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-12.6827666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-12.7196666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-12.5714 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-12.6602333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-12.7578333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-12.5518 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-12.5630666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-12.8915666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-12.8300333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-12.5895333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-12.5963666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-12.2853666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-12.4198333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-12.0569 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-12.3979 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-12.2067666666666 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-12.4456333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-12.1169333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-12.2274333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-12.5073 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-12.9606666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-12.6275333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-12.5605 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-12.7108666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-12.5222666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-12.6998333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-12.6835 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-12.6571333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-12.8399 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-12.8256 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-12.4089333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-12.1823 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-12.238 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-12.3154666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-12.3245666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-12.2680333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-12.0673 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-12.0887333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-12.0865666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-12.4139 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-12.1933333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-11.9650333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-12.0773666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-11.8194 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-11.8725 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-12.0446 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-12.2591666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-12.0810333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-12.0743666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-12.0810666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-12.2516666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-12.0839333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-12.2585 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-12.2374666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-12.0601 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-11.9400666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-11.835 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-11.9663 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-11.9578666666666 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-11.7331333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-11.9786 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-12.0617333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-11.6109666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-11.5905 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-11.6804 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-11.6077 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-11.9654 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-11.7569333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-11.8384333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-11.5638 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-11.6646333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-11.7749666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-11.7088 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-11.4992 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-11.5190333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-11.6577 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-11.6951333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-12.0204666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-11.9702666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-11.7613333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-12.1848666666666 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-12.2803 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-12.2281333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-12.0503 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-11.9344 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-12.1636 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-12.1193666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-11.9675666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-11.8703 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-11.8031 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-11.5888333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-11.5605333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-11.6458666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-11.9160666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-11.6271666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-11.4127333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-11.4324333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-11.2483333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-11.1211333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-11.1798333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-11.0002666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-11.1148666666666 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-10.7385 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-10.7978 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-10.6097666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-10.6421333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-10.4102333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-10.4627 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-10.7128666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-10.8832333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-11.0505333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-10.8276333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-10.6860333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-10.5331 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-10.4299666666666 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-10.4224 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-10.2223333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-10.3963333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-10.2894666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-10.3026 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-10.3418 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-10.3921333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2006,"Simulated","C","HL",-10.2656 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2007,"Simulated","C","HL",-10.2711333333333 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2008,"Simulated","C","HL",-9.84096666666665 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2009,"Simulated","C","HL",-10.0692 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2010,"Simulated","C","HL",-10.2312666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2011,"Simulated","C","HL",-10.0239666666667 -"bcc-csm1-1","tas","temperature","tgav_HL","historical",2012,"Simulated","C","HL",-9.93163333333332 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",19.1571 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",19.1477 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",19.1374333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",19.2226333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",19.1587 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",19.1548666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",19.2427666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",19.0018333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",19.0854 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",19.1306 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",19.1853333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",19.2137333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",19.2089666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",19.1047666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",19.2208333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",19.1789333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",19.1693666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",19.1526 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",19.1795666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",19.2486666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",19.2778666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",19.3171666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",19.3086 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",19.2573333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",19.3192 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",19.2973333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",19.2810333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",19.2514 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",19.2263333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",19.2701666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",19.2579666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",19.2414666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",19.3261 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",19.1973333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",18.6458 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",18.8626 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",19.0246333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",19.1090666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",19.1599666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",19.1689666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",19.0466333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",18.9321333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",19.0295666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",19.0698 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",19.2201 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",19.188 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",19.2236666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",19.2490666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",19.2707666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",19.242 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",19.2118 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",19.2573666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",19.2395333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",18.7835 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",18.8997666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",19.0562 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",19.1246333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",19.0973666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",19.18 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",19.1912 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",19.1550333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",19.2697666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",19.2532333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",19.2075333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",19.2783666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",19.2050333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",19.2837333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",19.3386666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",19.3346 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",19.3281 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",19.3544 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",19.2768333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",19.3451666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",19.3075 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",19.2975333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",19.4407333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",19.3470333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",19.3875666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",19.3937666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",19.3064333333334 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",19.3479333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",19.4540666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",19.3948333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",19.4058 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",19.3992 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",19.4726333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",19.4746333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",19.475 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",19.4927333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",19.5047 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",19.4476666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",19.4264666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",19.4736 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",19.4508333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",19.4273666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",19.5094 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",19.4811333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",19.4606 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",19.4616666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",19.5459 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",19.5616333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",19.4790333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",19.4761666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",19.5258333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",19.4615666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",19.4828333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",19.5027666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",19.5173666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",19.5626666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",19.5698333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",19.613 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",19.5520666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",19.6135 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",19.4514 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",19.2886333333334 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",19.425 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",19.4845333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",19.5349333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",19.5238333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",19.4522 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",19.5016 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",19.5667666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",19.5690333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",19.6111666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",19.644 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",19.5314333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",19.6010333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",19.6678333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",19.6996666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",19.7907333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",19.7506666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",19.7876 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",19.7312333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",19.5974 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",19.6477333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",19.7472666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",19.8184 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",19.8720333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",19.9375333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",19.9362333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",20.0181666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",19.9355666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",19.5659666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",19.6868666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",19.8769666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",19.8914666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",19.9678 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",19.9917 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",20.0372666666667 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",20.0744333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",20.1414333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",20.1462333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",20.1854333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",20.1518333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",20.2334 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",20.2403333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2006,"Simulated","C","LL",20.2717333333334 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2007,"Simulated","C","LL",20.3736333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2008,"Simulated","C","LL",20.3508 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2009,"Simulated","C","LL",20.3844 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2010,"Simulated","C","LL",20.3536333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2011,"Simulated","C","LL",20.3578333333333 -"bcc-csm1-1","tas","temperature","tgav_LL","historical",2012,"Simulated","C","LL",20.3943333333333 -"CanESM2","tas","temperature","tgav","historical",1850,"Simulated","C","global",13.5803 -"CanESM2","tas","temperature","tgav","historical",1851,"Simulated","C","global",13.7575000000001 -"CanESM2","tas","temperature","tgav","historical",1852,"Simulated","C","global",13.6751 -"CanESM2","tas","temperature","tgav","historical",1853,"Simulated","C","global",13.7523 -"CanESM2","tas","temperature","tgav","historical",1854,"Simulated","C","global",13.9608 -"CanESM2","tas","temperature","tgav","historical",1855,"Simulated","C","global",13.8386 -"CanESM2","tas","temperature","tgav","historical",1856,"Simulated","C","global",13.6771 -"CanESM2","tas","temperature","tgav","historical",1857,"Simulated","C","global",13.5296 -"CanESM2","tas","temperature","tgav","historical",1858,"Simulated","C","global",13.6271 -"CanESM2","tas","temperature","tgav","historical",1859,"Simulated","C","global",13.4692 -"CanESM2","tas","temperature","tgav","historical",1860,"Simulated","C","global",13.6338 -"CanESM2","tas","temperature","tgav","historical",1861,"Simulated","C","global",13.7685 -"CanESM2","tas","temperature","tgav","historical",1862,"Simulated","C","global",13.6607 -"CanESM2","tas","temperature","tgav","historical",1863,"Simulated","C","global",13.5071 -"CanESM2","tas","temperature","tgav","historical",1864,"Simulated","C","global",13.4949 -"CanESM2","tas","temperature","tgav","historical",1865,"Simulated","C","global",13.5259 -"CanESM2","tas","temperature","tgav","historical",1866,"Simulated","C","global",13.4947 -"CanESM2","tas","temperature","tgav","historical",1867,"Simulated","C","global",13.7731 -"CanESM2","tas","temperature","tgav","historical",1868,"Simulated","C","global",13.8245 -"CanESM2","tas","temperature","tgav","historical",1869,"Simulated","C","global",13.6048 -"CanESM2","tas","temperature","tgav","historical",1870,"Simulated","C","global",13.8418 -"CanESM2","tas","temperature","tgav","historical",1871,"Simulated","C","global",13.8428 -"CanESM2","tas","temperature","tgav","historical",1872,"Simulated","C","global",13.8138 -"CanESM2","tas","temperature","tgav","historical",1873,"Simulated","C","global",13.7498000000001 -"CanESM2","tas","temperature","tgav","historical",1874,"Simulated","C","global",13.9223 -"CanESM2","tas","temperature","tgav","historical",1875,"Simulated","C","global",13.7294 -"CanESM2","tas","temperature","tgav","historical",1876,"Simulated","C","global",13.6784 -"CanESM2","tas","temperature","tgav","historical",1877,"Simulated","C","global",13.7029 -"CanESM2","tas","temperature","tgav","historical",1878,"Simulated","C","global",13.6841 -"CanESM2","tas","temperature","tgav","historical",1879,"Simulated","C","global",13.8726 -"CanESM2","tas","temperature","tgav","historical",1880,"Simulated","C","global",13.8707 -"CanESM2","tas","temperature","tgav","historical",1881,"Simulated","C","global",13.8049 -"CanESM2","tas","temperature","tgav","historical",1882,"Simulated","C","global",13.9265 -"CanESM2","tas","temperature","tgav","historical",1883,"Simulated","C","global",13.6099 -"CanESM2","tas","temperature","tgav","historical",1884,"Simulated","C","global",13.4183 -"CanESM2","tas","temperature","tgav","historical",1885,"Simulated","C","global",13.3035 -"CanESM2","tas","temperature","tgav","historical",1886,"Simulated","C","global",13.2273 -"CanESM2","tas","temperature","tgav","historical",1887,"Simulated","C","global",13.4051 -"CanESM2","tas","temperature","tgav","historical",1888,"Simulated","C","global",13.3629 -"CanESM2","tas","temperature","tgav","historical",1889,"Simulated","C","global",13.4085 -"CanESM2","tas","temperature","tgav","historical",1890,"Simulated","C","global",13.3895 -"CanESM2","tas","temperature","tgav","historical",1891,"Simulated","C","global",13.5053 -"CanESM2","tas","temperature","tgav","historical",1892,"Simulated","C","global",13.6624 -"CanESM2","tas","temperature","tgav","historical",1893,"Simulated","C","global",13.7369 -"CanESM2","tas","temperature","tgav","historical",1894,"Simulated","C","global",13.619 -"CanESM2","tas","temperature","tgav","historical",1895,"Simulated","C","global",13.9439 -"CanESM2","tas","temperature","tgav","historical",1896,"Simulated","C","global",13.7871 -"CanESM2","tas","temperature","tgav","historical",1897,"Simulated","C","global",13.7189 -"CanESM2","tas","temperature","tgav","historical",1898,"Simulated","C","global",13.5328 -"CanESM2","tas","temperature","tgav","historical",1899,"Simulated","C","global",13.6798 -"CanESM2","tas","temperature","tgav","historical",1900,"Simulated","C","global",13.8077 -"CanESM2","tas","temperature","tgav","historical",1901,"Simulated","C","global",13.6363 -"CanESM2","tas","temperature","tgav","historical",1902,"Simulated","C","global",13.4881 -"CanESM2","tas","temperature","tgav","historical",1903,"Simulated","C","global",13.5599 -"CanESM2","tas","temperature","tgav","historical",1904,"Simulated","C","global",13.517 -"CanESM2","tas","temperature","tgav","historical",1905,"Simulated","C","global",13.4412 -"CanESM2","tas","temperature","tgav","historical",1906,"Simulated","C","global",13.7579 -"CanESM2","tas","temperature","tgav","historical",1907,"Simulated","C","global",13.8091 -"CanESM2","tas","temperature","tgav","historical",1908,"Simulated","C","global",13.6928 -"CanESM2","tas","temperature","tgav","historical",1909,"Simulated","C","global",13.5895 -"CanESM2","tas","temperature","tgav","historical",1910,"Simulated","C","global",13.5644 -"CanESM2","tas","temperature","tgav","historical",1911,"Simulated","C","global",13.8024 -"CanESM2","tas","temperature","tgav","historical",1912,"Simulated","C","global",14.0066 -"CanESM2","tas","temperature","tgav","historical",1913,"Simulated","C","global",13.8876 -"CanESM2","tas","temperature","tgav","historical",1914,"Simulated","C","global",13.658 -"CanESM2","tas","temperature","tgav","historical",1915,"Simulated","C","global",13.7681 -"CanESM2","tas","temperature","tgav","historical",1916,"Simulated","C","global",14.0057 -"CanESM2","tas","temperature","tgav","historical",1917,"Simulated","C","global",14.0615 -"CanESM2","tas","temperature","tgav","historical",1918,"Simulated","C","global",13.8608 -"CanESM2","tas","temperature","tgav","historical",1919,"Simulated","C","global",13.9726 -"CanESM2","tas","temperature","tgav","historical",1920,"Simulated","C","global",13.7209 -"CanESM2","tas","temperature","tgav","historical",1921,"Simulated","C","global",13.7538 -"CanESM2","tas","temperature","tgav","historical",1922,"Simulated","C","global",13.8402 -"CanESM2","tas","temperature","tgav","historical",1923,"Simulated","C","global",14.0227 -"CanESM2","tas","temperature","tgav","historical",1924,"Simulated","C","global",13.8193 -"CanESM2","tas","temperature","tgav","historical",1925,"Simulated","C","global",13.6673 -"CanESM2","tas","temperature","tgav","historical",1926,"Simulated","C","global",13.8302 -"CanESM2","tas","temperature","tgav","historical",1927,"Simulated","C","global",13.8853 -"CanESM2","tas","temperature","tgav","historical",1928,"Simulated","C","global",13.9926 -"CanESM2","tas","temperature","tgav","historical",1929,"Simulated","C","global",13.9408 -"CanESM2","tas","temperature","tgav","historical",1930,"Simulated","C","global",13.9052 -"CanESM2","tas","temperature","tgav","historical",1931,"Simulated","C","global",13.8667 -"CanESM2","tas","temperature","tgav","historical",1932,"Simulated","C","global",13.8285 -"CanESM2","tas","temperature","tgav","historical",1933,"Simulated","C","global",13.6883 -"CanESM2","tas","temperature","tgav","historical",1934,"Simulated","C","global",13.8031 -"CanESM2","tas","temperature","tgav","historical",1935,"Simulated","C","global",13.8235 -"CanESM2","tas","temperature","tgav","historical",1936,"Simulated","C","global",14.1112 -"CanESM2","tas","temperature","tgav","historical",1937,"Simulated","C","global",13.9035 -"CanESM2","tas","temperature","tgav","historical",1938,"Simulated","C","global",13.9943 -"CanESM2","tas","temperature","tgav","historical",1939,"Simulated","C","global",13.8148 -"CanESM2","tas","temperature","tgav","historical",1940,"Simulated","C","global",13.9104 -"CanESM2","tas","temperature","tgav","historical",1941,"Simulated","C","global",14.1023 -"CanESM2","tas","temperature","tgav","historical",1942,"Simulated","C","global",13.8524 -"CanESM2","tas","temperature","tgav","historical",1943,"Simulated","C","global",13.7967 -"CanESM2","tas","temperature","tgav","historical",1944,"Simulated","C","global",13.8086 -"CanESM2","tas","temperature","tgav","historical",1945,"Simulated","C","global",14.0171 -"CanESM2","tas","temperature","tgav","historical",1946,"Simulated","C","global",13.6619 -"CanESM2","tas","temperature","tgav","historical",1947,"Simulated","C","global",13.8333 -"CanESM2","tas","temperature","tgav","historical",1948,"Simulated","C","global",14.0695 -"CanESM2","tas","temperature","tgav","historical",1949,"Simulated","C","global",14.0248 -"CanESM2","tas","temperature","tgav","historical",1950,"Simulated","C","global",13.8187 -"CanESM2","tas","temperature","tgav","historical",1951,"Simulated","C","global",13.8416 -"CanESM2","tas","temperature","tgav","historical",1952,"Simulated","C","global",13.9321 -"CanESM2","tas","temperature","tgav","historical",1953,"Simulated","C","global",13.7151 -"CanESM2","tas","temperature","tgav","historical",1954,"Simulated","C","global",13.8777 -"CanESM2","tas","temperature","tgav","historical",1955,"Simulated","C","global",13.8336 -"CanESM2","tas","temperature","tgav","historical",1956,"Simulated","C","global",13.9315 -"CanESM2","tas","temperature","tgav","historical",1957,"Simulated","C","global",13.7015 -"CanESM2","tas","temperature","tgav","historical",1958,"Simulated","C","global",13.7718 -"CanESM2","tas","temperature","tgav","historical",1959,"Simulated","C","global",13.845 -"CanESM2","tas","temperature","tgav","historical",1960,"Simulated","C","global",13.7159 -"CanESM2","tas","temperature","tgav","historical",1961,"Simulated","C","global",13.8577 -"CanESM2","tas","temperature","tgav","historical",1962,"Simulated","C","global",13.9762 -"CanESM2","tas","temperature","tgav","historical",1963,"Simulated","C","global",13.7425 -"CanESM2","tas","temperature","tgav","historical",1964,"Simulated","C","global",13.7343 -"CanESM2","tas","temperature","tgav","historical",1965,"Simulated","C","global",13.8549 -"CanESM2","tas","temperature","tgav","historical",1966,"Simulated","C","global",13.8005 -"CanESM2","tas","temperature","tgav","historical",1967,"Simulated","C","global",13.633 -"CanESM2","tas","temperature","tgav","historical",1968,"Simulated","C","global",13.6681 -"CanESM2","tas","temperature","tgav","historical",1969,"Simulated","C","global",13.7174 -"CanESM2","tas","temperature","tgav","historical",1970,"Simulated","C","global",13.6858 -"CanESM2","tas","temperature","tgav","historical",1971,"Simulated","C","global",13.6672 -"CanESM2","tas","temperature","tgav","historical",1972,"Simulated","C","global",13.7229 -"CanESM2","tas","temperature","tgav","historical",1973,"Simulated","C","global",14.103 -"CanESM2","tas","temperature","tgav","historical",1974,"Simulated","C","global",14.0528 -"CanESM2","tas","temperature","tgav","historical",1975,"Simulated","C","global",13.851 -"CanESM2","tas","temperature","tgav","historical",1976,"Simulated","C","global",13.9691 -"CanESM2","tas","temperature","tgav","historical",1977,"Simulated","C","global",14.0874 -"CanESM2","tas","temperature","tgav","historical",1978,"Simulated","C","global",14.1292 -"CanESM2","tas","temperature","tgav","historical",1979,"Simulated","C","global",13.9487 -"CanESM2","tas","temperature","tgav","historical",1980,"Simulated","C","global",14.1103 -"CanESM2","tas","temperature","tgav","historical",1981,"Simulated","C","global",14.2166 -"CanESM2","tas","temperature","tgav","historical",1982,"Simulated","C","global",14.2838 -"CanESM2","tas","temperature","tgav","historical",1983,"Simulated","C","global",14.1116 -"CanESM2","tas","temperature","tgav","historical",1984,"Simulated","C","global",14.0371 -"CanESM2","tas","temperature","tgav","historical",1985,"Simulated","C","global",14.1885 -"CanESM2","tas","temperature","tgav","historical",1986,"Simulated","C","global",14.1098 -"CanESM2","tas","temperature","tgav","historical",1987,"Simulated","C","global",13.9322 -"CanESM2","tas","temperature","tgav","historical",1988,"Simulated","C","global",14.1036 -"CanESM2","tas","temperature","tgav","historical",1989,"Simulated","C","global",14.3439 -"CanESM2","tas","temperature","tgav","historical",1990,"Simulated","C","global",14.519 -"CanESM2","tas","temperature","tgav","historical",1991,"Simulated","C","global",14.3175 -"CanESM2","tas","temperature","tgav","historical",1992,"Simulated","C","global",14.0954 -"CanESM2","tas","temperature","tgav","historical",1993,"Simulated","C","global",14.1487 -"CanESM2","tas","temperature","tgav","historical",1994,"Simulated","C","global",14.3442 -"CanESM2","tas","temperature","tgav","historical",1995,"Simulated","C","global",14.3238 -"CanESM2","tas","temperature","tgav","historical",1996,"Simulated","C","global",14.6447 -"CanESM2","tas","temperature","tgav","historical",1997,"Simulated","C","global",14.6884 -"CanESM2","tas","temperature","tgav","historical",1998,"Simulated","C","global",14.4402 -"CanESM2","tas","temperature","tgav","historical",1999,"Simulated","C","global",14.5104 -"CanESM2","tas","temperature","tgav","historical",2000,"Simulated","C","global",14.5751 -"CanESM2","tas","temperature","tgav","historical",2001,"Simulated","C","global",14.6543 -"CanESM2","tas","temperature","tgav","historical",2002,"Simulated","C","global",14.6457 -"CanESM2","tas","temperature","tgav","historical",2003,"Simulated","C","global",14.8277 -"CanESM2","tas","temperature","tgav","historical",2004,"Simulated","C","global",14.8238 -"CanESM2","tas","temperature","tgav","historical",2005,"Simulated","C","global",15.046 -"CanESM2","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-12.2964 -"CanESM2","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-11.9684 -"CanESM2","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-12.2987 -"CanESM2","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-11.9437 -"CanESM2","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-11.5605 -"CanESM2","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-11.5618 -"CanESM2","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-12.1868 -"CanESM2","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-12.0108 -"CanESM2","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-11.8593 -"CanESM2","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-12.3488 -"CanESM2","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-11.822 -"CanESM2","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-11.9052 -"CanESM2","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-12.0733 -"CanESM2","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-12.4251 -"CanESM2","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-12.1547 -"CanESM2","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-12.2812 -"CanESM2","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-12.2196 -"CanESM2","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-11.6404 -"CanESM2","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-11.7312 -"CanESM2","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-12.0967 -"CanESM2","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-11.9566 -"CanESM2","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-11.716 -"CanESM2","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-11.6418 -"CanESM2","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-11.8324 -"CanESM2","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-11.4053 -"CanESM2","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-11.9203 -"CanESM2","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-11.7654 -"CanESM2","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-12.3287 -"CanESM2","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-12.0293 -"CanESM2","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-11.6447 -"CanESM2","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-11.9958 -"CanESM2","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-12.2934 -"CanESM2","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-11.632 -"CanESM2","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-12.3939 -"CanESM2","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-12.3538 -"CanESM2","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-12.3581 -"CanESM2","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-12.64 -"CanESM2","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-12.3737 -"CanESM2","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-12.9538 -"CanESM2","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-12.4938 -"CanESM2","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-12.5034 -"CanESM2","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-12.3095 -"CanESM2","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-12.0449 -"CanESM2","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-11.8646 -"CanESM2","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-12.0543 -"CanESM2","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-11.2428 -"CanESM2","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-12.3075 -"CanESM2","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-12.0168 -"CanESM2","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-12.1696 -"CanESM2","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-11.8038 -"CanESM2","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-11.791 -"CanESM2","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-11.8326 -"CanESM2","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-12.3571 -"CanESM2","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-12.2711 -"CanESM2","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-12.21 -"CanESM2","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-11.9709 -"CanESM2","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-11.7935 -"CanESM2","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-12.1026 -"CanESM2","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-12.0025 -"CanESM2","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-12.4119 -"CanESM2","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-12.7204 -"CanESM2","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-11.7732 -"CanESM2","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-11.3075 -"CanESM2","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-11.514 -"CanESM2","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-11.7701 -"CanESM2","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-11.9423 -"CanESM2","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-11.5328 -"CanESM2","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-11.3343 -"CanESM2","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-11.7381999999999 -"CanESM2","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-11.1784 -"CanESM2","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-11.8511 -"CanESM2","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-11.5873 -"CanESM2","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-11.971 -"CanESM2","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-11.4732 -"CanESM2","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-11.6737 -"CanESM2","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-12.0894 -"CanESM2","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-12.1847 -"CanESM2","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-11.5652 -"CanESM2","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-11.7896 -"CanESM2","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-11.4609 -"CanESM2","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-11.7651 -"CanESM2","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-11.6314 -"CanESM2","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-11.5989 -"CanESM2","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-11.9534 -"CanESM2","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-11.9668 -"CanESM2","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-12.2426 -"CanESM2","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-11.3511999999999 -"CanESM2","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-11.8545 -"CanESM2","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-11.6086 -"CanESM2","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-11.8736 -"CanESM2","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-11.6442 -"CanESM2","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-11.4036 -"CanESM2","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-11.8722 -"CanESM2","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-11.9335 -"CanESM2","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-12.1019 -"CanESM2","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-11.8743 -"CanESM2","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-12.3445 -"CanESM2","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-12.1904 -"CanESM2","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-11.775 -"CanESM2","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-11.7499 -"CanESM2","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-11.8495 -"CanESM2","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-12.3958 -"CanESM2","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-11.8341 -"CanESM2","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-12.2187 -"CanESM2","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-11.7476 -"CanESM2","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-11.8773 -"CanESM2","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-11.67 -"CanESM2","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-12.2995 -"CanESM2","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-12.1428 -"CanESM2","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-11.9013 -"CanESM2","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-12.1605 -"CanESM2","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-11.8034 -"CanESM2","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-11.4869 -"CanESM2","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-12.1007 -"CanESM2","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-11.6935 -"CanESM2","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-11.5433 -"CanESM2","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-11.6015 -"CanESM2","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-12.2624 -"CanESM2","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-12.1289 -"CanESM2","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-11.8505 -"CanESM2","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-12.194 -"CanESM2","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-11.9421 -"CanESM2","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-12.164 -"CanESM2","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-11.7485 -"CanESM2","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-11.3219 -"CanESM2","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-11.954 -"CanESM2","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-11.7668 -"CanESM2","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-11.727 -"CanESM2","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-11.1044 -"CanESM2","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-11.7231 -"CanESM2","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-11.3252 -"CanESM2","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-11.5134 -"CanESM2","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-11.482 -"CanESM2","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-11.4652 -"CanESM2","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-11.5685 -"CanESM2","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-11.5413 -"CanESM2","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-11.4484 -"CanESM2","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-11.8282 -"CanESM2","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-11.6482999999999 -"CanESM2","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-10.8083 -"CanESM2","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-10.9116 -"CanESM2","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-11.2279 -"CanESM2","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-11.3374 -"CanESM2","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-11.6046 -"CanESM2","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-10.6717 -"CanESM2","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-11.0684 -"CanESM2","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-10.3624 -"CanESM2","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-10.5566 -"CanESM2","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-10.9297 -"CanESM2","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-10.5924 -"CanESM2","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-10.4263 -"CanESM2","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-10.3076 -"CanESM2","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-10.4306 -"CanESM2","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-10.4341 -"CanESM2","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-10.2802 -"CanESM2","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-9.7867 -"CanESM2","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",18.9831 -"CanESM2","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",19.1288 -"CanESM2","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",19.0982 -"CanESM2","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",19.1173 -"CanESM2","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",19.2893 -"CanESM2","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",19.1419 -"CanESM2","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",19.0772 -"CanESM2","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",18.8621 -"CanESM2","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",18.9484 -"CanESM2","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",18.8597 -"CanESM2","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",18.9486 -"CanESM2","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",19.1289 -"CanESM2","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",19.0337 -"CanESM2","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",18.9215 -"CanESM2","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",18.8503 -"CanESM2","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",18.9141 -"CanESM2","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",18.8636 -"CanESM2","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",19.0791 -"CanESM2","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",19.1603 -"CanESM2","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",18.971 -"CanESM2","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",19.2282 -"CanESM2","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",19.1792 -"CanESM2","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",19.1287 -"CanESM2","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",19.091 -"CanESM2","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",19.2105 -"CanESM2","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",19.0848 -"CanESM2","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",18.9907 -"CanESM2","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",19.138 -"CanESM2","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",19.0528 -"CanESM2","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",19.2003 -"CanESM2","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",19.2714 -"CanESM2","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",19.254 -"CanESM2","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",19.2628 -"CanESM2","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",19.0392000000001 -"CanESM2","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",18.7993 -"CanESM2","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",18.6614 -"CanESM2","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",18.6281 -"CanESM2","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",18.7874 -"CanESM2","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",18.8576 -"CanESM2","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",18.8166000000001 -"CanESM2","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",18.7957 -"CanESM2","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",18.8952 -"CanESM2","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",19.0298 -"CanESM2","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",19.0822 -"CanESM2","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",18.9793 -"CanESM2","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",19.2027 -"CanESM2","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",19.2354 -"CanESM2","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",19.0922 -"CanESM2","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",18.8992 -"CanESM2","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",19.0005 -"CanESM2","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",19.1525 -"CanESM2","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",18.9539 -"CanESM2","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",18.8843 -"CanESM2","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",18.9531 -"CanESM2","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",18.8885 -"CanESM2","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",18.7469 -"CanESM2","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",19.0927 -"CanESM2","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",19.2191 -"CanESM2","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",19.0577 -"CanESM2","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",19.0183 -"CanESM2","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",19.0524 -"CanESM2","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",19.1423 -"CanESM2","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",19.2919 -"CanESM2","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",19.1911 -"CanESM2","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",18.9671 -"CanESM2","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",19.1361 -"CanESM2","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",19.3379 -"CanESM2","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",19.3639 -"CanESM2","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",19.2056 -"CanESM2","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",19.2238 -"CanESM2","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",19.06 -"CanESM2","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",19.0447 -"CanESM2","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",19.2293 -"CanESM2","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",19.346 -"CanESM2","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",19.142 -"CanESM2","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",19.045 -"CanESM2","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",19.2618000000001 -"CanESM2","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",19.199 -"CanESM2","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",19.3756 -"CanESM2","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",19.2444 -"CanESM2","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",19.2649 -"CanESM2","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",19.1905 -"CanESM2","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",19.1375 -"CanESM2","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",19.042 -"CanESM2","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",19.1836 -"CanESM2","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",19.2658 -"CanESM2","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",19.4274 -"CanESM2","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",19.2815000000001 -"CanESM2","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",19.3399 -"CanESM2","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",19.1782 -"CanESM2","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",19.2459 -"CanESM2","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",19.4277 -"CanESM2","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",19.2234 -"CanESM2","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",19.1689 -"CanESM2","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",19.2185 -"CanESM2","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",19.4229 -"CanESM2","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",19.0918 -"CanESM2","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",19.2667 -"CanESM2","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",19.4655 -"CanESM2","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",19.4063 -"CanESM2","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",19.1779 -"CanESM2","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",19.3197 -"CanESM2","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",19.3118 -"CanESM2","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",19.1298 -"CanESM2","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",19.2279 -"CanESM2","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",19.2018 -"CanESM2","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",19.2768 -"CanESM2","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",19.1302 -"CanESM2","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",19.1825 -"CanESM2","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",19.2206 -"CanESM2","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",19.1186 -"CanESM2","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",19.2154 -"CanESM2","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",19.2926 -"CanESM2","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",19.1383 -"CanESM2","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",19.0434 -"CanESM2","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",19.1577 -"CanESM2","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",19.1042 -"CanESM2","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",19.0396 -"CanESM2","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",19.0542 -"CanESM2","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",19.0557 -"CanESM2","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",19.0892 -"CanESM2","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",19.0142 -"CanESM2","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",19.1277 -"CanESM2","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",19.5004 -"CanESM2","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",19.3508 -"CanESM2","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",19.2388 -"CanESM2","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",19.3425 -"CanESM2","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",19.4771 -"CanESM2","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",19.3977 -"CanESM2","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",19.3086 -"CanESM2","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",19.421 -"CanESM2","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",19.5887 -"CanESM2","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",19.6635 -"CanESM2","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",19.4517 -"CanESM2","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",19.3832 -"CanESM2","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",19.5606 -"CanESM2","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",19.4461 -"CanESM2","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",19.3106 -"CanESM2","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",19.4804 -"CanESM2","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",19.5954 -"CanESM2","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",19.8286 -"CanESM2","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",19.6511 -"CanESM2","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",19.4055 -"CanESM2","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",19.5257 -"CanESM2","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",19.5673 -"CanESM2","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",19.6254 -"CanESM2","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",19.8659 -"CanESM2","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",19.9593 -"CanESM2","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",19.7372 -"CanESM2","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",19.7516 -"CanESM2","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",19.7952 -"CanESM2","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",19.8661 -"CanESM2","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",19.8814 -"CanESM2","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",20.102 -"CanESM2","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",20.0652 -"CanESM2","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",20.2308 -"CESM1-BGC","tas","temperature","tgav","historical",1850,"Simulated","C","global",13.517 -"CESM1-BGC","tas","temperature","tgav","historical",1851,"Simulated","C","global",13.4329 -"CESM1-BGC","tas","temperature","tgav","historical",1852,"Simulated","C","global",13.2316 -"CESM1-BGC","tas","temperature","tgav","historical",1853,"Simulated","C","global",13.3658 -"CESM1-BGC","tas","temperature","tgav","historical",1854,"Simulated","C","global",13.4522 -"CESM1-BGC","tas","temperature","tgav","historical",1855,"Simulated","C","global",13.5868 -"CESM1-BGC","tas","temperature","tgav","historical",1856,"Simulated","C","global",13.3267 -"CESM1-BGC","tas","temperature","tgav","historical",1857,"Simulated","C","global",13.2064 -"CESM1-BGC","tas","temperature","tgav","historical",1858,"Simulated","C","global",13.3289 -"CESM1-BGC","tas","temperature","tgav","historical",1859,"Simulated","C","global",13.4842 -"CESM1-BGC","tas","temperature","tgav","historical",1860,"Simulated","C","global",13.554 -"CESM1-BGC","tas","temperature","tgav","historical",1861,"Simulated","C","global",13.5667 -"CESM1-BGC","tas","temperature","tgav","historical",1862,"Simulated","C","global",13.4859 -"CESM1-BGC","tas","temperature","tgav","historical",1863,"Simulated","C","global",13.4267 -"CESM1-BGC","tas","temperature","tgav","historical",1864,"Simulated","C","global",13.4759 -"CESM1-BGC","tas","temperature","tgav","historical",1865,"Simulated","C","global",13.4999 -"CESM1-BGC","tas","temperature","tgav","historical",1866,"Simulated","C","global",13.45 -"CESM1-BGC","tas","temperature","tgav","historical",1867,"Simulated","C","global",13.435 -"CESM1-BGC","tas","temperature","tgav","historical",1868,"Simulated","C","global",13.5881 -"CESM1-BGC","tas","temperature","tgav","historical",1869,"Simulated","C","global",13.5579 -"CESM1-BGC","tas","temperature","tgav","historical",1870,"Simulated","C","global",13.3007 -"CESM1-BGC","tas","temperature","tgav","historical",1871,"Simulated","C","global",13.4575 -"CESM1-BGC","tas","temperature","tgav","historical",1872,"Simulated","C","global",13.6027 -"CESM1-BGC","tas","temperature","tgav","historical",1873,"Simulated","C","global",13.3506 -"CESM1-BGC","tas","temperature","tgav","historical",1874,"Simulated","C","global",13.4395 -"CESM1-BGC","tas","temperature","tgav","historical",1875,"Simulated","C","global",13.554 -"CESM1-BGC","tas","temperature","tgav","historical",1876,"Simulated","C","global",13.6718 -"CESM1-BGC","tas","temperature","tgav","historical",1877,"Simulated","C","global",13.6202 -"CESM1-BGC","tas","temperature","tgav","historical",1878,"Simulated","C","global",13.5627 -"CESM1-BGC","tas","temperature","tgav","historical",1879,"Simulated","C","global",13.573 -"CESM1-BGC","tas","temperature","tgav","historical",1880,"Simulated","C","global",13.4312 -"CESM1-BGC","tas","temperature","tgav","historical",1881,"Simulated","C","global",13.5421 -"CESM1-BGC","tas","temperature","tgav","historical",1882,"Simulated","C","global",13.5746 -"CESM1-BGC","tas","temperature","tgav","historical",1883,"Simulated","C","global",13.3959 -"CESM1-BGC","tas","temperature","tgav","historical",1884,"Simulated","C","global",12.9194 -"CESM1-BGC","tas","temperature","tgav","historical",1885,"Simulated","C","global",13.1399 -"CESM1-BGC","tas","temperature","tgav","historical",1886,"Simulated","C","global",13.3613 -"CESM1-BGC","tas","temperature","tgav","historical",1887,"Simulated","C","global",13.3116 -"CESM1-BGC","tas","temperature","tgav","historical",1888,"Simulated","C","global",13.3054 -"CESM1-BGC","tas","temperature","tgav","historical",1889,"Simulated","C","global",13.3878 -"CESM1-BGC","tas","temperature","tgav","historical",1890,"Simulated","C","global",13.4182 -"CESM1-BGC","tas","temperature","tgav","historical",1891,"Simulated","C","global",13.4257 -"CESM1-BGC","tas","temperature","tgav","historical",1892,"Simulated","C","global",13.3989 -"CESM1-BGC","tas","temperature","tgav","historical",1893,"Simulated","C","global",13.4721 -"CESM1-BGC","tas","temperature","tgav","historical",1894,"Simulated","C","global",13.4126 -"CESM1-BGC","tas","temperature","tgav","historical",1895,"Simulated","C","global",13.475 -"CESM1-BGC","tas","temperature","tgav","historical",1896,"Simulated","C","global",13.3944 -"CESM1-BGC","tas","temperature","tgav","historical",1897,"Simulated","C","global",13.5597 -"CESM1-BGC","tas","temperature","tgav","historical",1898,"Simulated","C","global",13.5398 -"CESM1-BGC","tas","temperature","tgav","historical",1899,"Simulated","C","global",13.5376 -"CESM1-BGC","tas","temperature","tgav","historical",1900,"Simulated","C","global",13.5217 -"CESM1-BGC","tas","temperature","tgav","historical",1901,"Simulated","C","global",13.4663 -"CESM1-BGC","tas","temperature","tgav","historical",1902,"Simulated","C","global",13.4901 -"CESM1-BGC","tas","temperature","tgav","historical",1903,"Simulated","C","global",13.0774 -"CESM1-BGC","tas","temperature","tgav","historical",1904,"Simulated","C","global",13.1924 -"CESM1-BGC","tas","temperature","tgav","historical",1905,"Simulated","C","global",13.2663 -"CESM1-BGC","tas","temperature","tgav","historical",1906,"Simulated","C","global",13.1547 -"CESM1-BGC","tas","temperature","tgav","historical",1907,"Simulated","C","global",13.2914 -"CESM1-BGC","tas","temperature","tgav","historical",1908,"Simulated","C","global",13.4213 -"CESM1-BGC","tas","temperature","tgav","historical",1909,"Simulated","C","global",13.4865 -"CESM1-BGC","tas","temperature","tgav","historical",1910,"Simulated","C","global",13.7219 -"CESM1-BGC","tas","temperature","tgav","historical",1911,"Simulated","C","global",13.6914 -"CESM1-BGC","tas","temperature","tgav","historical",1912,"Simulated","C","global",13.3586 -"CESM1-BGC","tas","temperature","tgav","historical",1913,"Simulated","C","global",13.2125 -"CESM1-BGC","tas","temperature","tgav","historical",1914,"Simulated","C","global",13.4536 -"CESM1-BGC","tas","temperature","tgav","historical",1915,"Simulated","C","global",13.5388 -"CESM1-BGC","tas","temperature","tgav","historical",1916,"Simulated","C","global",13.5546000000001 -"CESM1-BGC","tas","temperature","tgav","historical",1917,"Simulated","C","global",13.5986 -"CESM1-BGC","tas","temperature","tgav","historical",1918,"Simulated","C","global",13.5478 -"CESM1-BGC","tas","temperature","tgav","historical",1919,"Simulated","C","global",13.4254 -"CESM1-BGC","tas","temperature","tgav","historical",1920,"Simulated","C","global",13.4888 -"CESM1-BGC","tas","temperature","tgav","historical",1921,"Simulated","C","global",13.4848 -"CESM1-BGC","tas","temperature","tgav","historical",1922,"Simulated","C","global",13.3505 -"CESM1-BGC","tas","temperature","tgav","historical",1923,"Simulated","C","global",13.6046 -"CESM1-BGC","tas","temperature","tgav","historical",1924,"Simulated","C","global",13.5981 -"CESM1-BGC","tas","temperature","tgav","historical",1925,"Simulated","C","global",13.4858 -"CESM1-BGC","tas","temperature","tgav","historical",1926,"Simulated","C","global",13.5348 -"CESM1-BGC","tas","temperature","tgav","historical",1927,"Simulated","C","global",13.5066 -"CESM1-BGC","tas","temperature","tgav","historical",1928,"Simulated","C","global",13.6251 -"CESM1-BGC","tas","temperature","tgav","historical",1929,"Simulated","C","global",13.5181 -"CESM1-BGC","tas","temperature","tgav","historical",1930,"Simulated","C","global",13.3918 -"CESM1-BGC","tas","temperature","tgav","historical",1931,"Simulated","C","global",13.5927 -"CESM1-BGC","tas","temperature","tgav","historical",1932,"Simulated","C","global",13.5771 -"CESM1-BGC","tas","temperature","tgav","historical",1933,"Simulated","C","global",13.6613 -"CESM1-BGC","tas","temperature","tgav","historical",1934,"Simulated","C","global",13.7514 -"CESM1-BGC","tas","temperature","tgav","historical",1935,"Simulated","C","global",13.5917 -"CESM1-BGC","tas","temperature","tgav","historical",1936,"Simulated","C","global",13.6065 -"CESM1-BGC","tas","temperature","tgav","historical",1937,"Simulated","C","global",13.6557 -"CESM1-BGC","tas","temperature","tgav","historical",1938,"Simulated","C","global",13.6659 -"CESM1-BGC","tas","temperature","tgav","historical",1939,"Simulated","C","global",13.5940000000001 -"CESM1-BGC","tas","temperature","tgav","historical",1940,"Simulated","C","global",13.6989 -"CESM1-BGC","tas","temperature","tgav","historical",1941,"Simulated","C","global",13.81 -"CESM1-BGC","tas","temperature","tgav","historical",1942,"Simulated","C","global",13.7285 -"CESM1-BGC","tas","temperature","tgav","historical",1943,"Simulated","C","global",13.7168 -"CESM1-BGC","tas","temperature","tgav","historical",1944,"Simulated","C","global",13.7584 -"CESM1-BGC","tas","temperature","tgav","historical",1945,"Simulated","C","global",13.6205 -"CESM1-BGC","tas","temperature","tgav","historical",1946,"Simulated","C","global",13.6629 -"CESM1-BGC","tas","temperature","tgav","historical",1947,"Simulated","C","global",13.7169 -"CESM1-BGC","tas","temperature","tgav","historical",1948,"Simulated","C","global",13.7233 -"CESM1-BGC","tas","temperature","tgav","historical",1949,"Simulated","C","global",13.9007 -"CESM1-BGC","tas","temperature","tgav","historical",1950,"Simulated","C","global",13.9157 -"CESM1-BGC","tas","temperature","tgav","historical",1951,"Simulated","C","global",13.7284 -"CESM1-BGC","tas","temperature","tgav","historical",1952,"Simulated","C","global",13.5221 -"CESM1-BGC","tas","temperature","tgav","historical",1953,"Simulated","C","global",13.6336 -"CESM1-BGC","tas","temperature","tgav","historical",1954,"Simulated","C","global",13.6545 -"CESM1-BGC","tas","temperature","tgav","historical",1955,"Simulated","C","global",13.7653 -"CESM1-BGC","tas","temperature","tgav","historical",1956,"Simulated","C","global",13.6433 -"CESM1-BGC","tas","temperature","tgav","historical",1957,"Simulated","C","global",13.6818 -"CESM1-BGC","tas","temperature","tgav","historical",1958,"Simulated","C","global",13.7205 -"CESM1-BGC","tas","temperature","tgav","historical",1959,"Simulated","C","global",13.8641 -"CESM1-BGC","tas","temperature","tgav","historical",1960,"Simulated","C","global",13.8 -"CESM1-BGC","tas","temperature","tgav","historical",1961,"Simulated","C","global",13.7895 -"CESM1-BGC","tas","temperature","tgav","historical",1962,"Simulated","C","global",13.6407 -"CESM1-BGC","tas","temperature","tgav","historical",1963,"Simulated","C","global",13.5186 -"CESM1-BGC","tas","temperature","tgav","historical",1964,"Simulated","C","global",13.4082 -"CESM1-BGC","tas","temperature","tgav","historical",1965,"Simulated","C","global",13.7296 -"CESM1-BGC","tas","temperature","tgav","historical",1966,"Simulated","C","global",13.6691 -"CESM1-BGC","tas","temperature","tgav","historical",1967,"Simulated","C","global",13.6517 -"CESM1-BGC","tas","temperature","tgav","historical",1968,"Simulated","C","global",13.7386 -"CESM1-BGC","tas","temperature","tgav","historical",1969,"Simulated","C","global",13.8571 -"CESM1-BGC","tas","temperature","tgav","historical",1970,"Simulated","C","global",14.0561 -"CESM1-BGC","tas","temperature","tgav","historical",1971,"Simulated","C","global",13.9875 -"CESM1-BGC","tas","temperature","tgav","historical",1972,"Simulated","C","global",13.9347 -"CESM1-BGC","tas","temperature","tgav","historical",1973,"Simulated","C","global",13.9197 -"CESM1-BGC","tas","temperature","tgav","historical",1974,"Simulated","C","global",13.8725 -"CESM1-BGC","tas","temperature","tgav","historical",1975,"Simulated","C","global",13.9755 -"CESM1-BGC","tas","temperature","tgav","historical",1976,"Simulated","C","global",13.7817 -"CESM1-BGC","tas","temperature","tgav","historical",1977,"Simulated","C","global",13.963 -"CESM1-BGC","tas","temperature","tgav","historical",1978,"Simulated","C","global",14.1 -"CESM1-BGC","tas","temperature","tgav","historical",1979,"Simulated","C","global",14.0325 -"CESM1-BGC","tas","temperature","tgav","historical",1980,"Simulated","C","global",14.0272000000001 -"CESM1-BGC","tas","temperature","tgav","historical",1981,"Simulated","C","global",14.3356 -"CESM1-BGC","tas","temperature","tgav","historical",1982,"Simulated","C","global",14.2618000000001 -"CESM1-BGC","tas","temperature","tgav","historical",1983,"Simulated","C","global",13.8962 -"CESM1-BGC","tas","temperature","tgav","historical",1984,"Simulated","C","global",14.0028 -"CESM1-BGC","tas","temperature","tgav","historical",1985,"Simulated","C","global",14.0257 -"CESM1-BGC","tas","temperature","tgav","historical",1986,"Simulated","C","global",14.0568 -"CESM1-BGC","tas","temperature","tgav","historical",1987,"Simulated","C","global",14.0882 -"CESM1-BGC","tas","temperature","tgav","historical",1988,"Simulated","C","global",14.3047 -"CESM1-BGC","tas","temperature","tgav","historical",1989,"Simulated","C","global",14.3013 -"CESM1-BGC","tas","temperature","tgav","historical",1990,"Simulated","C","global",14.2643 -"CESM1-BGC","tas","temperature","tgav","historical",1991,"Simulated","C","global",14.1448 -"CESM1-BGC","tas","temperature","tgav","historical",1992,"Simulated","C","global",13.8853 -"CESM1-BGC","tas","temperature","tgav","historical",1993,"Simulated","C","global",13.988 -"CESM1-BGC","tas","temperature","tgav","historical",1994,"Simulated","C","global",14.1379 -"CESM1-BGC","tas","temperature","tgav","historical",1995,"Simulated","C","global",14.3225 -"CESM1-BGC","tas","temperature","tgav","historical",1996,"Simulated","C","global",14.3428 -"CESM1-BGC","tas","temperature","tgav","historical",1997,"Simulated","C","global",14.5541 -"CESM1-BGC","tas","temperature","tgav","historical",1998,"Simulated","C","global",14.4844000000001 -"CESM1-BGC","tas","temperature","tgav","historical",1999,"Simulated","C","global",14.5597 -"CESM1-BGC","tas","temperature","tgav","historical",2000,"Simulated","C","global",14.5529 -"CESM1-BGC","tas","temperature","tgav","historical",2001,"Simulated","C","global",14.475 -"CESM1-BGC","tas","temperature","tgav","historical",2002,"Simulated","C","global",14.4404 -"CESM1-BGC","tas","temperature","tgav","historical",2003,"Simulated","C","global",14.5202 -"CESM1-BGC","tas","temperature","tgav","historical",2004,"Simulated","C","global",14.6156 -"CESM1-BGC","tas","temperature","tgav","historical",2005,"Simulated","C","global",14.8552 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-12.0201 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-12.1214 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-12.4576 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-11.8652 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-11.8274 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-11.8208 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-12.1085 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-12.5753 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-11.9016 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-11.8896 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-11.7617 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-11.6733 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-11.5179 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-11.5784 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-11.8246 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-11.8482 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-11.5573 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-11.9109 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-11.3324 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-11.3228 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-12.2603 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-12.1331 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-11.6621 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-12.2379 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-12.0873 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-11.8859 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-11.4521 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-11.2735 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-11.5023 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-11.4036 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-12.0597 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-11.8826 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-11.5528 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-11.8287 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-12.0078999999999 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-11.8978 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-11.8385 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-11.8616 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-11.7945 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-12.1317 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-11.5754 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-11.7131 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-11.7999 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-11.875 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-11.8338 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-11.8166 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-12.2789 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-11.7041 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-11.6106 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-11.5688 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-12.046 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-11.95 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-11.7899 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-12.1745 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-12.2067 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-11.8667 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-12.3227 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-12.2022 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-11.9819 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-11.7931 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-11.4165 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-11.6233 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-12.1841 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-12.4892 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-11.6829 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-11.7463 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-11.8108 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-11.7005 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-11.7052 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-12.0232 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-11.9126 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-11.8682 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-12.6548 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-11.6634 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-11.6323 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-11.9803 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-11.6007 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-11.7259 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-11.5257 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-11.8277 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-12.1125 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-11.4877 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-11.8449 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-11.8723 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-11.2741 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-11.4853 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-11.5332 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-11.6752 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-11.4321 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-11.75 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-11.5556 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-11.3108 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-11.4138 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-11.3615 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-11.3162 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-11.7513 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-11.4237 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-11.2355 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-11.3841 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-11.1717 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-11.385 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-11.4748 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-11.8691 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-11.6557 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-11.6183 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-11.3707 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-11.8449 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-11.3453 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-11.6141 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-11.2994 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-11.4473 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-11.1927 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-11.7559 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-11.6026 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-11.8147 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-11.3548 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-11.6545 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-11.819 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-11.6141 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-11.2226 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-10.8833 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-11.0877 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-11.2287 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-10.8857 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-11.4433 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-11.0145 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-11.0294 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-11.1424 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-10.8863 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-10.9283 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-11.2779 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-10.5137 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-10.7326 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-11.2021 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-11.1736 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-10.8695 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-10.7614 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-10.9919 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-10.3571 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-10.5285 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-10.6763 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-10.8989 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-10.8832 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-10.9538 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-10.7242 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-10.0849 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-10.5089 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-10.0338 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-10.0114 -"CESM1-BGC","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-10.2069 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-10.1591 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-10.2533 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-10.2993 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-10.2325 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-9.87399999999997 -"CESM1-BGC","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-9.60669999999999 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",19.2866 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",19.2064 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",19.0355 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",19.0663 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",19.1636 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",19.3272 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",19.0733 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",19.0313 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",19.0293 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",19.2169 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",19.2737 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",19.2693 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",19.135 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",19.0762 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",19.1921 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",19.2268 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",19.1 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",19.1615 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",19.2184 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",19.1792 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",19.0757 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",19.2391 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",19.3109 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",19.1318 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",19.2068 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",19.3017 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",19.3481 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",19.2445 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",19.2257 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",19.216 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",19.1904 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",19.2864 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",19.2516 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",19.095 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",18.5513 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",18.7967 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",19.0548 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",18.999 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",18.9762 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",19.1534 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",19.065 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",19.1054 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",19.0921 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",19.1988 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",19.1166 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",19.1892 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",19.1948 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",19.2676 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",19.2221 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",19.21 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",19.2982 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",19.2086 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",19.2016 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",18.7825 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",18.9309 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",18.9447 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",18.9108 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",19.0511 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",19.1607 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",19.198 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",19.4014 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",19.4107 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",19.1295 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",19.0193 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",19.1327 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",19.2515 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",19.2854 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",19.3145 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",19.2532 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",19.175 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",19.2278 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",19.2128 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",19.2258 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",19.3134 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",19.2984 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",19.2395 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",19.2137 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",19.2074 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",19.3074 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",19.2445 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",19.1541 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",19.2592 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",19.3208 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",19.4301 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",19.4055 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",19.2573 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",19.2863 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",19.3787 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",19.3363000000001 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",19.3200000000001 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",19.4047 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",19.4856 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",19.4089 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",19.3828 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",19.4235 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",19.3528 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",19.3307 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",19.3545 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",19.3959 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",19.5654 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",19.6319 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",19.4227 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",19.2588 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",19.3472 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",19.3643 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",19.4443 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",19.4018 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",19.3362 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",19.4443 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",19.5494 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",19.5041000000001 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",19.4338 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",19.3786 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",19.1943 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",19.1069 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",19.397 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",19.3905 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",19.4063 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",19.4665 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",19.5234 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",19.6907 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",19.6528 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",19.62 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",19.524 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",19.5921 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",19.6215 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",19.3872 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",19.6351 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",19.7452 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",19.672 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",19.7444 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",19.9498 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",19.9089 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",19.5667 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",19.691 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",19.6502 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",19.664 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",19.7546 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",19.8766 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",19.9111 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",19.8992 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",19.803 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",19.4813 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",19.6231 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",19.7551 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",19.837 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",19.9577 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",20.1093 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",20.0187 -"CESM1-BGC","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",20.1552 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",20.136 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",20.0619 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",20.0299 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",20.1125 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",20.1485 -"CESM1-BGC","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",20.3819 -"GFDL-ESM2G","tas","temperature","tgav","historical",1996,"Simulated","C","global",13.8671000000001 -"GFDL-ESM2G","tas","temperature","tgav","historical",1997,"Simulated","C","global",13.9727 -"GFDL-ESM2G","tas","temperature","tgav","historical",1998,"Simulated","C","global",13.9854 -"GFDL-ESM2G","tas","temperature","tgav","historical",1999,"Simulated","C","global",13.9585 -"GFDL-ESM2G","tas","temperature","tgav","historical",2000,"Simulated","C","global",14.011 -"GFDL-ESM2G","tas","temperature","tgav","historical",2001,"Simulated","C","global",14.2635 -"GFDL-ESM2G","tas","temperature","tgav","historical",2002,"Simulated","C","global",14.3633 -"GFDL-ESM2G","tas","temperature","tgav","historical",2003,"Simulated","C","global",14.2068 -"GFDL-ESM2G","tas","temperature","tgav","historical",2004,"Simulated","C","global",14.1769 -"GFDL-ESM2G","tas","temperature","tgav","historical",2005,"Simulated","C","global",14.2562 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-8.66039999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-8.29319999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-8.5265 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-8.39179999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-8.51059999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-7.96769999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-7.94169999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-8.2355 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-8.45189999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-8.50559999999996 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",18.9741 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",19.0204 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",19.0888 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",19.0252 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",19.1166 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",19.3033 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",19.4198 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",19.2945 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",19.3068 -"GFDL-ESM2G","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",19.4163 -"HadGEM2-ES","tas","temperature","tgav","historical",1859,"Simulated","C","global",11.6494 -"HadGEM2-ES","tas","temperature","tgav","historical",1860,"Simulated","C","global",13.66336 -"HadGEM2-ES","tas","temperature","tgav","historical",1861,"Simulated","C","global",13.66254 -"HadGEM2-ES","tas","temperature","tgav","historical",1862,"Simulated","C","global",13.69538 -"HadGEM2-ES","tas","temperature","tgav","historical",1863,"Simulated","C","global",13.61842 -"HadGEM2-ES","tas","temperature","tgav","historical",1864,"Simulated","C","global",13.63386 -"HadGEM2-ES","tas","temperature","tgav","historical",1865,"Simulated","C","global",13.51054 -"HadGEM2-ES","tas","temperature","tgav","historical",1866,"Simulated","C","global",13.47996 -"HadGEM2-ES","tas","temperature","tgav","historical",1867,"Simulated","C","global",13.52678 -"HadGEM2-ES","tas","temperature","tgav","historical",1868,"Simulated","C","global",13.52634 -"HadGEM2-ES","tas","temperature","tgav","historical",1869,"Simulated","C","global",13.59532 -"HadGEM2-ES","tas","temperature","tgav","historical",1870,"Simulated","C","global",13.61124 -"HadGEM2-ES","tas","temperature","tgav","historical",1871,"Simulated","C","global",13.65244 -"HadGEM2-ES","tas","temperature","tgav","historical",1872,"Simulated","C","global",13.70856 -"HadGEM2-ES","tas","temperature","tgav","historical",1873,"Simulated","C","global",13.71704 -"HadGEM2-ES","tas","temperature","tgav","historical",1874,"Simulated","C","global",13.70234 -"HadGEM2-ES","tas","temperature","tgav","historical",1875,"Simulated","C","global",13.64346 -"HadGEM2-ES","tas","temperature","tgav","historical",1876,"Simulated","C","global",13.59564 -"HadGEM2-ES","tas","temperature","tgav","historical",1877,"Simulated","C","global",13.63232 -"HadGEM2-ES","tas","temperature","tgav","historical",1878,"Simulated","C","global",13.66064 -"HadGEM2-ES","tas","temperature","tgav","historical",1879,"Simulated","C","global",13.61668 -"HadGEM2-ES","tas","temperature","tgav","historical",1880,"Simulated","C","global",13.57358 -"HadGEM2-ES","tas","temperature","tgav","historical",1881,"Simulated","C","global",13.6099 -"HadGEM2-ES","tas","temperature","tgav","historical",1882,"Simulated","C","global",13.60778 -"HadGEM2-ES","tas","temperature","tgav","historical",1883,"Simulated","C","global",13.5798 -"HadGEM2-ES","tas","temperature","tgav","historical",1884,"Simulated","C","global",13.33896 -"HadGEM2-ES","tas","temperature","tgav","historical",1885,"Simulated","C","global",13.3535 -"HadGEM2-ES","tas","temperature","tgav","historical",1886,"Simulated","C","global",13.40104 -"HadGEM2-ES","tas","temperature","tgav","historical",1887,"Simulated","C","global",13.38354 -"HadGEM2-ES","tas","temperature","tgav","historical",1888,"Simulated","C","global",13.4504 -"HadGEM2-ES","tas","temperature","tgav","historical",1889,"Simulated","C","global",13.41276 -"HadGEM2-ES","tas","temperature","tgav","historical",1890,"Simulated","C","global",13.38978 -"HadGEM2-ES","tas","temperature","tgav","historical",1891,"Simulated","C","global",13.36326 -"HadGEM2-ES","tas","temperature","tgav","historical",1892,"Simulated","C","global",13.43596 -"HadGEM2-ES","tas","temperature","tgav","historical",1893,"Simulated","C","global",13.3936 -"HadGEM2-ES","tas","temperature","tgav","historical",1894,"Simulated","C","global",13.44822 -"HadGEM2-ES","tas","temperature","tgav","historical",1895,"Simulated","C","global",13.5366 -"HadGEM2-ES","tas","temperature","tgav","historical",1896,"Simulated","C","global",13.625 -"HadGEM2-ES","tas","temperature","tgav","historical",1897,"Simulated","C","global",13.56086 -"HadGEM2-ES","tas","temperature","tgav","historical",1898,"Simulated","C","global",13.56334 -"HadGEM2-ES","tas","temperature","tgav","historical",1899,"Simulated","C","global",13.65754 -"HadGEM2-ES","tas","temperature","tgav","historical",1900,"Simulated","C","global",13.65544 -"HadGEM2-ES","tas","temperature","tgav","historical",1901,"Simulated","C","global",13.68676 -"HadGEM2-ES","tas","temperature","tgav","historical",1902,"Simulated","C","global",13.62158 -"HadGEM2-ES","tas","temperature","tgav","historical",1903,"Simulated","C","global",13.4527 -"HadGEM2-ES","tas","temperature","tgav","historical",1904,"Simulated","C","global",13.40208 -"HadGEM2-ES","tas","temperature","tgav","historical",1905,"Simulated","C","global",13.54994 -"HadGEM2-ES","tas","temperature","tgav","historical",1906,"Simulated","C","global",13.55454 -"HadGEM2-ES","tas","temperature","tgav","historical",1907,"Simulated","C","global",13.60172 -"HadGEM2-ES","tas","temperature","tgav","historical",1908,"Simulated","C","global",13.57868 -"HadGEM2-ES","tas","temperature","tgav","historical",1909,"Simulated","C","global",13.51474 -"HadGEM2-ES","tas","temperature","tgav","historical",1910,"Simulated","C","global",13.61896 -"HadGEM2-ES","tas","temperature","tgav","historical",1911,"Simulated","C","global",13.57172 -"HadGEM2-ES","tas","temperature","tgav","historical",1912,"Simulated","C","global",13.53644 -"HadGEM2-ES","tas","temperature","tgav","historical",1913,"Simulated","C","global",13.55718 -"HadGEM2-ES","tas","temperature","tgav","historical",1914,"Simulated","C","global",13.6308 -"HadGEM2-ES","tas","temperature","tgav","historical",1915,"Simulated","C","global",13.64834 -"HadGEM2-ES","tas","temperature","tgav","historical",1916,"Simulated","C","global",13.73316 -"HadGEM2-ES","tas","temperature","tgav","historical",1917,"Simulated","C","global",13.78622 -"HadGEM2-ES","tas","temperature","tgav","historical",1918,"Simulated","C","global",13.74008 -"HadGEM2-ES","tas","temperature","tgav","historical",1919,"Simulated","C","global",13.75712 -"HadGEM2-ES","tas","temperature","tgav","historical",1920,"Simulated","C","global",13.7149 -"HadGEM2-ES","tas","temperature","tgav","historical",1921,"Simulated","C","global",13.7051 -"HadGEM2-ES","tas","temperature","tgav","historical",1922,"Simulated","C","global",13.71438 -"HadGEM2-ES","tas","temperature","tgav","historical",1923,"Simulated","C","global",13.69404 -"HadGEM2-ES","tas","temperature","tgav","historical",1924,"Simulated","C","global",13.7841 -"HadGEM2-ES","tas","temperature","tgav","historical",1925,"Simulated","C","global",13.75944 -"HadGEM2-ES","tas","temperature","tgav","historical",1926,"Simulated","C","global",13.72824 -"HadGEM2-ES","tas","temperature","tgav","historical",1927,"Simulated","C","global",13.66608 -"HadGEM2-ES","tas","temperature","tgav","historical",1928,"Simulated","C","global",13.70328 -"HadGEM2-ES","tas","temperature","tgav","historical",1929,"Simulated","C","global",13.73122 -"HadGEM2-ES","tas","temperature","tgav","historical",1930,"Simulated","C","global",13.7023 -"HadGEM2-ES","tas","temperature","tgav","historical",1931,"Simulated","C","global",13.67786 -"HadGEM2-ES","tas","temperature","tgav","historical",1932,"Simulated","C","global",13.7115 -"HadGEM2-ES","tas","temperature","tgav","historical",1933,"Simulated","C","global",13.69354 -"HadGEM2-ES","tas","temperature","tgav","historical",1934,"Simulated","C","global",13.71202 -"HadGEM2-ES","tas","temperature","tgav","historical",1935,"Simulated","C","global",13.75782 -"HadGEM2-ES","tas","temperature","tgav","historical",1936,"Simulated","C","global",13.75248 -"HadGEM2-ES","tas","temperature","tgav","historical",1937,"Simulated","C","global",13.7894 -"HadGEM2-ES","tas","temperature","tgav","historical",1938,"Simulated","C","global",13.84792 -"HadGEM2-ES","tas","temperature","tgav","historical",1939,"Simulated","C","global",13.84302 -"HadGEM2-ES","tas","temperature","tgav","historical",1940,"Simulated","C","global",13.75438 -"HadGEM2-ES","tas","temperature","tgav","historical",1941,"Simulated","C","global",13.7786 -"HadGEM2-ES","tas","temperature","tgav","historical",1942,"Simulated","C","global",13.82828 -"HadGEM2-ES","tas","temperature","tgav","historical",1943,"Simulated","C","global",13.82646 -"HadGEM2-ES","tas","temperature","tgav","historical",1944,"Simulated","C","global",13.86694 -"HadGEM2-ES","tas","temperature","tgav","historical",1945,"Simulated","C","global",13.87636 -"HadGEM2-ES","tas","temperature","tgav","historical",1946,"Simulated","C","global",13.84152 -"HadGEM2-ES","tas","temperature","tgav","historical",1947,"Simulated","C","global",13.86842 -"HadGEM2-ES","tas","temperature","tgav","historical",1948,"Simulated","C","global",13.90232 -"HadGEM2-ES","tas","temperature","tgav","historical",1949,"Simulated","C","global",13.88806 -"HadGEM2-ES","tas","temperature","tgav","historical",1950,"Simulated","C","global",13.85526 -"HadGEM2-ES","tas","temperature","tgav","historical",1951,"Simulated","C","global",13.79556 -"HadGEM2-ES","tas","temperature","tgav","historical",1952,"Simulated","C","global",13.77774 -"HadGEM2-ES","tas","temperature","tgav","historical",1953,"Simulated","C","global",13.79404 -"HadGEM2-ES","tas","temperature","tgav","historical",1954,"Simulated","C","global",13.72674 -"HadGEM2-ES","tas","temperature","tgav","historical",1955,"Simulated","C","global",13.69432 -"HadGEM2-ES","tas","temperature","tgav","historical",1956,"Simulated","C","global",13.77104 -"HadGEM2-ES","tas","temperature","tgav","historical",1957,"Simulated","C","global",13.75254 -"HadGEM2-ES","tas","temperature","tgav","historical",1958,"Simulated","C","global",13.69984 -"HadGEM2-ES","tas","temperature","tgav","historical",1959,"Simulated","C","global",13.68966 -"HadGEM2-ES","tas","temperature","tgav","historical",1960,"Simulated","C","global",13.63512 -"HadGEM2-ES","tas","temperature","tgav","historical",1961,"Simulated","C","global",13.65436 -"HadGEM2-ES","tas","temperature","tgav","historical",1962,"Simulated","C","global",13.65062 -"HadGEM2-ES","tas","temperature","tgav","historical",1963,"Simulated","C","global",13.62578 -"HadGEM2-ES","tas","temperature","tgav","historical",1964,"Simulated","C","global",13.51844 -"HadGEM2-ES","tas","temperature","tgav","historical",1965,"Simulated","C","global",13.44912 -"HadGEM2-ES","tas","temperature","tgav","historical",1966,"Simulated","C","global",13.43596 -"HadGEM2-ES","tas","temperature","tgav","historical",1967,"Simulated","C","global",13.51886 -"HadGEM2-ES","tas","temperature","tgav","historical",1968,"Simulated","C","global",13.6105 -"HadGEM2-ES","tas","temperature","tgav","historical",1969,"Simulated","C","global",13.5787 -"HadGEM2-ES","tas","temperature","tgav","historical",1970,"Simulated","C","global",13.57186 -"HadGEM2-ES","tas","temperature","tgav","historical",1971,"Simulated","C","global",13.60868 -"HadGEM2-ES","tas","temperature","tgav","historical",1972,"Simulated","C","global",13.66606 -"HadGEM2-ES","tas","temperature","tgav","historical",1973,"Simulated","C","global",13.6559 -"HadGEM2-ES","tas","temperature","tgav","historical",1974,"Simulated","C","global",13.67428 -"HadGEM2-ES","tas","temperature","tgav","historical",1975,"Simulated","C","global",13.59752 -"HadGEM2-ES","tas","temperature","tgav","historical",1976,"Simulated","C","global",13.59334 -"HadGEM2-ES","tas","temperature","tgav","historical",1977,"Simulated","C","global",13.69624 -"HadGEM2-ES","tas","temperature","tgav","historical",1978,"Simulated","C","global",13.68924 -"HadGEM2-ES","tas","temperature","tgav","historical",1979,"Simulated","C","global",13.73032 -"HadGEM2-ES","tas","temperature","tgav","historical",1980,"Simulated","C","global",13.7718 -"HadGEM2-ES","tas","temperature","tgav","historical",1981,"Simulated","C","global",13.78174 -"HadGEM2-ES","tas","temperature","tgav","historical",1982,"Simulated","C","global",13.73038 -"HadGEM2-ES","tas","temperature","tgav","historical",1983,"Simulated","C","global",13.61162 -"HadGEM2-ES","tas","temperature","tgav","historical",1984,"Simulated","C","global",13.68412 -"HadGEM2-ES","tas","temperature","tgav","historical",1985,"Simulated","C","global",13.77632 -"HadGEM2-ES","tas","temperature","tgav","historical",1986,"Simulated","C","global",13.802 -"HadGEM2-ES","tas","temperature","tgav","historical",1987,"Simulated","C","global",13.80084 -"HadGEM2-ES","tas","temperature","tgav","historical",1988,"Simulated","C","global",13.81826 -"HadGEM2-ES","tas","temperature","tgav","historical",1989,"Simulated","C","global",13.8773 -"HadGEM2-ES","tas","temperature","tgav","historical",1990,"Simulated","C","global",13.9454 -"HadGEM2-ES","tas","temperature","tgav","historical",1991,"Simulated","C","global",13.93498 -"HadGEM2-ES","tas","temperature","tgav","historical",1992,"Simulated","C","global",13.64398 -"HadGEM2-ES","tas","temperature","tgav","historical",1993,"Simulated","C","global",13.74106 -"HadGEM2-ES","tas","temperature","tgav","historical",1994,"Simulated","C","global",13.81244 -"HadGEM2-ES","tas","temperature","tgav","historical",1995,"Simulated","C","global",13.87322 -"HadGEM2-ES","tas","temperature","tgav","historical",1996,"Simulated","C","global",13.89576 -"HadGEM2-ES","tas","temperature","tgav","historical",1997,"Simulated","C","global",13.9687 -"HadGEM2-ES","tas","temperature","tgav","historical",1998,"Simulated","C","global",14.08744 -"HadGEM2-ES","tas","temperature","tgav","historical",1999,"Simulated","C","global",14.1076 -"HadGEM2-ES","tas","temperature","tgav","historical",2000,"Simulated","C","global",14.14774 -"HadGEM2-ES","tas","temperature","tgav","historical",2001,"Simulated","C","global",14.23674 -"HadGEM2-ES","tas","temperature","tgav","historical",2002,"Simulated","C","global",14.27502 -"HadGEM2-ES","tas","temperature","tgav","historical",2003,"Simulated","C","global",14.27748 -"HadGEM2-ES","tas","temperature","tgav","historical",2004,"Simulated","C","global",14.2782 -"HadGEM2-ES","tas","temperature","tgav","historical",2005,"Simulated","C","global",14.38928 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-12.28176 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-9.68447999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-9.67245999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-9.52857999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-9.75461999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-9.69017999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-9.87993999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-9.99883999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-9.96901999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-9.94831999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-9.86229999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-9.67685999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-9.74301999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-9.57921999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-9.56369999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-9.52801999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-9.59091999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-9.77741999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-9.63925999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-9.68897999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-9.57441999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-9.72039999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-9.67869999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-9.79749999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-9.63875999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-9.82417999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-10.02238 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-9.92967999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-9.93671999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-9.75883999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-9.89657999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-9.99727999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-9.92645999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-9.88063999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-10.1143 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-10.0069 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-9.90003999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-9.64843999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-9.72753999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-9.67941999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-9.51395999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-9.65747999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-9.59777999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-9.74463999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-9.86451999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-9.99003999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-9.69341999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-9.87953999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-9.67019999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-9.69597999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-9.78297999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-9.67953999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-9.79989999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-9.76628 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-9.83039999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-9.65079999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-9.66713999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-9.53151999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-9.36415999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-9.38721999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-9.38813999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-9.54959999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-9.51901999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-9.59319999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-9.57081999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-9.40649999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-9.56311999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-9.36145999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-9.42087999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-9.47493999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-9.48015999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-9.55987999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-9.54925999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-9.50855999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-9.51027999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-9.44331999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-9.29879999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-9.35127999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-9.22457999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-9.15529999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-9.19097999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-9.32349999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-9.44569999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-9.26091999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-9.20355999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-9.13081999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-9.07795999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-9.13733999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-9.06919999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-8.90787999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-8.99619999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-9.10239999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-9.28187999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-9.22963999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-9.16013999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-9.35809999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-9.60557999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-9.20537999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-9.29739999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-9.45721999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-9.47847999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-9.49487999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-9.41543999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-9.48015999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-9.55521999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-9.56021999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-9.63281999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-9.57471999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-9.52519999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-9.39675999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-9.40999999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-9.33695999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-9.50795999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-9.58571999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-9.54667999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-9.35761999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-9.42653999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-9.66267999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-9.47745999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-9.44895999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-9.35539999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-9.18849999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-9.17397999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-9.17163999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-9.54747999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-9.29661999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-9.15753999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-9.12129999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-9.13049999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-9.14567999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-8.98935999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-8.97793999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-8.94165999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-9.42225999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-9.21427999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-9.00639999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-8.93551999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-8.93097999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-8.87529999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-8.57251999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-8.72821999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-8.57387999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-8.48489999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-8.48577999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-8.49837999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-8.35037999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-8.25741999999998 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",17.16036 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",19.04078 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",19.037 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",19.0443 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",19.00164 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",19.00582 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",18.89778 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",18.88754 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",18.93826 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",18.93296 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",18.99802 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",18.97492 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",19.04088 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",19.07216 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",19.079 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",19.0527 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",18.99474 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",18.97882 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",18.99218 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",19.03846 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",18.95796 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",18.93858 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",18.9737 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",18.99842 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",18.92748 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",18.6738 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",18.73738 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",18.7745 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",18.7546 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",18.79588 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",18.78128 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",18.77618 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",18.72722 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",18.80618 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",18.80786 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",18.85034 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",18.93444 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",18.9853 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",18.9246 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",18.91658 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",18.99434 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",19.02482 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",19.04956 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",19.00324 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",18.82314 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",18.78972 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",18.9033 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",18.9518 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",18.96164 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",18.9393 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",18.88066 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",18.98506 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",18.95462 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",18.90346 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",18.94372 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",18.993 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",19.01832 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",19.09144 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",19.11818 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",19.06668 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",19.0879 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",19.07314 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",19.054 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",19.0825 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",19.05236 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",19.1254 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",19.13106 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",19.04622 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",18.98344 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",19.04166 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",19.07724 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",19.06 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",19.02746 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",19.05954 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",19.03784 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",19.04514 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",19.0682 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",19.0737 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",19.08992 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",19.14602 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",19.14816 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",19.06962 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",19.1276 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",19.14614 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",19.1307 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",19.16376 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",19.16316 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",19.13394 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",19.15138 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",19.1559 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",19.1587 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",19.14286 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",19.1107 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",19.07674 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",19.08078 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",19.0436 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",19.06066 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",19.0629 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",19.06136 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",19.03336 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",19.02566 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",18.96234 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",18.96774 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",18.97804 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",18.96476 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",18.83384 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",18.76534 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",18.73576 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",18.8263 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",18.90948 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",18.87342 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",18.84816 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",18.93286 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",19.02142 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",18.9999 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",18.97896 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",18.90042 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",18.94958 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",19.03352 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",19.01838 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",19.04734 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",19.05994 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",19.0689 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",19.00514 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",18.94562 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",18.97702 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",19.05836 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",19.08168 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",19.08232 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",19.1073 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",19.1439 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",19.22506 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",19.20392 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",18.95654 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",19.0281 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",19.06804 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",19.12654 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",19.1532 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",19.2301 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",19.30646 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",19.36712 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",19.38094 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",19.46996 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",19.51728 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",19.52316 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",19.49 -"HadGEM2-ES","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",19.60526 -"inmcm4","tas","temperature","tgav","historical",1850,"Simulated","C","global",13.1181 -"inmcm4","tas","temperature","tgav","historical",1851,"Simulated","C","global",13.1645 -"inmcm4","tas","temperature","tgav","historical",1852,"Simulated","C","global",13.0994 -"inmcm4","tas","temperature","tgav","historical",1853,"Simulated","C","global",13.1658 -"inmcm4","tas","temperature","tgav","historical",1854,"Simulated","C","global",13.1294 -"inmcm4","tas","temperature","tgav","historical",1855,"Simulated","C","global",13.099 -"inmcm4","tas","temperature","tgav","historical",1856,"Simulated","C","global",13.1612 -"inmcm4","tas","temperature","tgav","historical",1857,"Simulated","C","global",13.1164 -"inmcm4","tas","temperature","tgav","historical",1858,"Simulated","C","global",13.1099 -"inmcm4","tas","temperature","tgav","historical",1859,"Simulated","C","global",13.0700000000001 -"inmcm4","tas","temperature","tgav","historical",1860,"Simulated","C","global",13.064 -"inmcm4","tas","temperature","tgav","historical",1861,"Simulated","C","global",13.1145 -"inmcm4","tas","temperature","tgav","historical",1862,"Simulated","C","global",13.137 -"inmcm4","tas","temperature","tgav","historical",1863,"Simulated","C","global",13.1046 -"inmcm4","tas","temperature","tgav","historical",1864,"Simulated","C","global",13.2124 -"inmcm4","tas","temperature","tgav","historical",1865,"Simulated","C","global",13.2508 -"inmcm4","tas","temperature","tgav","historical",1866,"Simulated","C","global",13.1108 -"inmcm4","tas","temperature","tgav","historical",1867,"Simulated","C","global",13.2487 -"inmcm4","tas","temperature","tgav","historical",1868,"Simulated","C","global",13.3034 -"inmcm4","tas","temperature","tgav","historical",1869,"Simulated","C","global",13.2482 -"inmcm4","tas","temperature","tgav","historical",1870,"Simulated","C","global",13.2396 -"inmcm4","tas","temperature","tgav","historical",1871,"Simulated","C","global",13.1165 -"inmcm4","tas","temperature","tgav","historical",1872,"Simulated","C","global",13.2336 -"inmcm4","tas","temperature","tgav","historical",1873,"Simulated","C","global",13.2485 -"inmcm4","tas","temperature","tgav","historical",1874,"Simulated","C","global",13.2125 -"inmcm4","tas","temperature","tgav","historical",1875,"Simulated","C","global",13.2115 -"inmcm4","tas","temperature","tgav","historical",1876,"Simulated","C","global",13.335 -"inmcm4","tas","temperature","tgav","historical",1877,"Simulated","C","global",13.1847 -"inmcm4","tas","temperature","tgav","historical",1878,"Simulated","C","global",13.1039 -"inmcm4","tas","temperature","tgav","historical",1879,"Simulated","C","global",13.1629 -"inmcm4","tas","temperature","tgav","historical",1880,"Simulated","C","global",13.2311 -"inmcm4","tas","temperature","tgav","historical",1881,"Simulated","C","global",13.2311 -"inmcm4","tas","temperature","tgav","historical",1882,"Simulated","C","global",13.1226 -"inmcm4","tas","temperature","tgav","historical",1883,"Simulated","C","global",13.1468 -"inmcm4","tas","temperature","tgav","historical",1884,"Simulated","C","global",13.2834 -"inmcm4","tas","temperature","tgav","historical",1885,"Simulated","C","global",13.1958 -"inmcm4","tas","temperature","tgav","historical",1886,"Simulated","C","global",13.2239 -"inmcm4","tas","temperature","tgav","historical",1887,"Simulated","C","global",13.2324 -"inmcm4","tas","temperature","tgav","historical",1888,"Simulated","C","global",13.1178 -"inmcm4","tas","temperature","tgav","historical",1889,"Simulated","C","global",13.042 -"inmcm4","tas","temperature","tgav","historical",1890,"Simulated","C","global",13.2259 -"inmcm4","tas","temperature","tgav","historical",1891,"Simulated","C","global",13.1481 -"inmcm4","tas","temperature","tgav","historical",1892,"Simulated","C","global",13.041 -"inmcm4","tas","temperature","tgav","historical",1893,"Simulated","C","global",13.3058 -"inmcm4","tas","temperature","tgav","historical",1894,"Simulated","C","global",13.3212 -"inmcm4","tas","temperature","tgav","historical",1895,"Simulated","C","global",13.2117 -"inmcm4","tas","temperature","tgav","historical",1896,"Simulated","C","global",13.1212 -"inmcm4","tas","temperature","tgav","historical",1897,"Simulated","C","global",13.1444 -"inmcm4","tas","temperature","tgav","historical",1898,"Simulated","C","global",13.1845 -"inmcm4","tas","temperature","tgav","historical",1899,"Simulated","C","global",13.2627 -"inmcm4","tas","temperature","tgav","historical",1900,"Simulated","C","global",13.1699 -"inmcm4","tas","temperature","tgav","historical",1901,"Simulated","C","global",13.0765 -"inmcm4","tas","temperature","tgav","historical",1902,"Simulated","C","global",13.0398 -"inmcm4","tas","temperature","tgav","historical",1903,"Simulated","C","global",13.1088 -"inmcm4","tas","temperature","tgav","historical",1904,"Simulated","C","global",13.1945 -"inmcm4","tas","temperature","tgav","historical",1905,"Simulated","C","global",13.2124 -"inmcm4","tas","temperature","tgav","historical",1906,"Simulated","C","global",13.151 -"inmcm4","tas","temperature","tgav","historical",1907,"Simulated","C","global",13.1544 -"inmcm4","tas","temperature","tgav","historical",1908,"Simulated","C","global",13.2176 -"inmcm4","tas","temperature","tgav","historical",1909,"Simulated","C","global",13.1973 -"inmcm4","tas","temperature","tgav","historical",1910,"Simulated","C","global",13.078 -"inmcm4","tas","temperature","tgav","historical",1911,"Simulated","C","global",13.1064 -"inmcm4","tas","temperature","tgav","historical",1912,"Simulated","C","global",13.114 -"inmcm4","tas","temperature","tgav","historical",1913,"Simulated","C","global",13.2299 -"inmcm4","tas","temperature","tgav","historical",1914,"Simulated","C","global",13.146 -"inmcm4","tas","temperature","tgav","historical",1915,"Simulated","C","global",13.1217 -"inmcm4","tas","temperature","tgav","historical",1916,"Simulated","C","global",13.1452 -"inmcm4","tas","temperature","tgav","historical",1917,"Simulated","C","global",13.2372 -"inmcm4","tas","temperature","tgav","historical",1918,"Simulated","C","global",13.2058 -"inmcm4","tas","temperature","tgav","historical",1919,"Simulated","C","global",13.2797 -"inmcm4","tas","temperature","tgav","historical",1920,"Simulated","C","global",13.2156 -"inmcm4","tas","temperature","tgav","historical",1921,"Simulated","C","global",13.1392 -"inmcm4","tas","temperature","tgav","historical",1922,"Simulated","C","global",13.2456 -"inmcm4","tas","temperature","tgav","historical",1923,"Simulated","C","global",13.2085 -"inmcm4","tas","temperature","tgav","historical",1924,"Simulated","C","global",13.2317 -"inmcm4","tas","temperature","tgav","historical",1925,"Simulated","C","global",13.4217 -"inmcm4","tas","temperature","tgav","historical",1926,"Simulated","C","global",13.3602 -"inmcm4","tas","temperature","tgav","historical",1927,"Simulated","C","global",13.3152 -"inmcm4","tas","temperature","tgav","historical",1928,"Simulated","C","global",13.382 -"inmcm4","tas","temperature","tgav","historical",1929,"Simulated","C","global",13.3496 -"inmcm4","tas","temperature","tgav","historical",1930,"Simulated","C","global",13.2821 -"inmcm4","tas","temperature","tgav","historical",1931,"Simulated","C","global",13.3244 -"inmcm4","tas","temperature","tgav","historical",1932,"Simulated","C","global",13.3331 -"inmcm4","tas","temperature","tgav","historical",1933,"Simulated","C","global",13.3012 -"inmcm4","tas","temperature","tgav","historical",1934,"Simulated","C","global",13.2689 -"inmcm4","tas","temperature","tgav","historical",1935,"Simulated","C","global",13.4093 -"inmcm4","tas","temperature","tgav","historical",1936,"Simulated","C","global",13.4007 -"inmcm4","tas","temperature","tgav","historical",1937,"Simulated","C","global",13.3593 -"inmcm4","tas","temperature","tgav","historical",1938,"Simulated","C","global",13.4591 -"inmcm4","tas","temperature","tgav","historical",1939,"Simulated","C","global",13.5012 -"inmcm4","tas","temperature","tgav","historical",1940,"Simulated","C","global",13.3627 -"inmcm4","tas","temperature","tgav","historical",1941,"Simulated","C","global",13.4039 -"inmcm4","tas","temperature","tgav","historical",1942,"Simulated","C","global",13.4448 -"inmcm4","tas","temperature","tgav","historical",1943,"Simulated","C","global",13.4418 -"inmcm4","tas","temperature","tgav","historical",1944,"Simulated","C","global",13.4657 -"inmcm4","tas","temperature","tgav","historical",1945,"Simulated","C","global",13.4918 -"inmcm4","tas","temperature","tgav","historical",1946,"Simulated","C","global",13.3235 -"inmcm4","tas","temperature","tgav","historical",1947,"Simulated","C","global",13.3667 -"inmcm4","tas","temperature","tgav","historical",1948,"Simulated","C","global",13.3538 -"inmcm4","tas","temperature","tgav","historical",1949,"Simulated","C","global",13.4639 -"inmcm4","tas","temperature","tgav","historical",1950,"Simulated","C","global",13.437 -"inmcm4","tas","temperature","tgav","historical",1951,"Simulated","C","global",13.4168 -"inmcm4","tas","temperature","tgav","historical",1952,"Simulated","C","global",13.4159 -"inmcm4","tas","temperature","tgav","historical",1953,"Simulated","C","global",13.3423 -"inmcm4","tas","temperature","tgav","historical",1954,"Simulated","C","global",13.4032 -"inmcm4","tas","temperature","tgav","historical",1955,"Simulated","C","global",13.3295 -"inmcm4","tas","temperature","tgav","historical",1956,"Simulated","C","global",13.3703 -"inmcm4","tas","temperature","tgav","historical",1957,"Simulated","C","global",13.4236 -"inmcm4","tas","temperature","tgav","historical",1958,"Simulated","C","global",13.4902 -"inmcm4","tas","temperature","tgav","historical",1959,"Simulated","C","global",13.4483 -"inmcm4","tas","temperature","tgav","historical",1960,"Simulated","C","global",13.5773 -"inmcm4","tas","temperature","tgav","historical",1961,"Simulated","C","global",13.5424 -"inmcm4","tas","temperature","tgav","historical",1962,"Simulated","C","global",13.4815 -"inmcm4","tas","temperature","tgav","historical",1963,"Simulated","C","global",13.3367 -"inmcm4","tas","temperature","tgav","historical",1964,"Simulated","C","global",13.47 -"inmcm4","tas","temperature","tgav","historical",1965,"Simulated","C","global",13.5254 -"inmcm4","tas","temperature","tgav","historical",1966,"Simulated","C","global",13.5678 -"inmcm4","tas","temperature","tgav","historical",1967,"Simulated","C","global",13.5498 -"inmcm4","tas","temperature","tgav","historical",1968,"Simulated","C","global",13.4714 -"inmcm4","tas","temperature","tgav","historical",1969,"Simulated","C","global",13.5523 -"inmcm4","tas","temperature","tgav","historical",1970,"Simulated","C","global",13.5689 -"inmcm4","tas","temperature","tgav","historical",1971,"Simulated","C","global",13.4626 -"inmcm4","tas","temperature","tgav","historical",1972,"Simulated","C","global",13.5799 -"inmcm4","tas","temperature","tgav","historical",1973,"Simulated","C","global",13.6748 -"inmcm4","tas","temperature","tgav","historical",1974,"Simulated","C","global",13.5773 -"inmcm4","tas","temperature","tgav","historical",1975,"Simulated","C","global",13.5451 -"inmcm4","tas","temperature","tgav","historical",1976,"Simulated","C","global",13.4172 -"inmcm4","tas","temperature","tgav","historical",1977,"Simulated","C","global",13.5337 -"inmcm4","tas","temperature","tgav","historical",1978,"Simulated","C","global",13.5629 -"inmcm4","tas","temperature","tgav","historical",1979,"Simulated","C","global",13.6594 -"inmcm4","tas","temperature","tgav","historical",1980,"Simulated","C","global",13.6714 -"inmcm4","tas","temperature","tgav","historical",1981,"Simulated","C","global",13.6727 -"inmcm4","tas","temperature","tgav","historical",1982,"Simulated","C","global",13.6027 -"inmcm4","tas","temperature","tgav","historical",1983,"Simulated","C","global",13.7463 -"inmcm4","tas","temperature","tgav","historical",1984,"Simulated","C","global",13.6866 -"inmcm4","tas","temperature","tgav","historical",1985,"Simulated","C","global",13.7108 -"inmcm4","tas","temperature","tgav","historical",1986,"Simulated","C","global",13.7462 -"inmcm4","tas","temperature","tgav","historical",1987,"Simulated","C","global",13.722 -"inmcm4","tas","temperature","tgav","historical",1988,"Simulated","C","global",13.6661 -"inmcm4","tas","temperature","tgav","historical",1989,"Simulated","C","global",13.6884 -"inmcm4","tas","temperature","tgav","historical",1990,"Simulated","C","global",13.6846 -"inmcm4","tas","temperature","tgav","historical",1991,"Simulated","C","global",13.6683 -"inmcm4","tas","temperature","tgav","historical",1992,"Simulated","C","global",13.6909 -"inmcm4","tas","temperature","tgav","historical",1993,"Simulated","C","global",13.6661 -"inmcm4","tas","temperature","tgav","historical",1994,"Simulated","C","global",13.7904 -"inmcm4","tas","temperature","tgav","historical",1995,"Simulated","C","global",13.7649 -"inmcm4","tas","temperature","tgav","historical",1996,"Simulated","C","global",13.8164 -"inmcm4","tas","temperature","tgav","historical",1997,"Simulated","C","global",13.7519 -"inmcm4","tas","temperature","tgav","historical",1998,"Simulated","C","global",13.7616 -"inmcm4","tas","temperature","tgav","historical",1999,"Simulated","C","global",13.8051 -"inmcm4","tas","temperature","tgav","historical",2000,"Simulated","C","global",13.8316 -"inmcm4","tas","temperature","tgav","historical",2001,"Simulated","C","global",13.9159 -"inmcm4","tas","temperature","tgav","historical",2002,"Simulated","C","global",13.8444 -"inmcm4","tas","temperature","tgav","historical",2003,"Simulated","C","global",13.7914 -"inmcm4","tas","temperature","tgav","historical",2004,"Simulated","C","global",13.9658 -"inmcm4","tas","temperature","tgav","historical",2005,"Simulated","C","global",13.8623 -"inmcm4","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-8.97809999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-8.61629999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-8.84609999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-8.70339999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-8.88469999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-9.03949999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-8.81950000000001 -"inmcm4","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-8.8734 -"inmcm4","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-9.01419999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-9.15779999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-8.77849999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-9.26219999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-8.90089999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-9.27199999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-8.80689999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-8.78729999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-8.87899999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-8.86609999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-8.6078 -"inmcm4","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-8.79319999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-8.89439999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-8.99459999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-8.92039999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-8.68089999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-8.714 -"inmcm4","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-8.85939999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-8.52439999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-8.82919999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-8.71139999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-8.88329999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-9.00559999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-8.91579999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-8.95299999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-9.05499999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-8.77519999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-9.02269999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-8.9819 -"inmcm4","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-8.75369999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-8.84199999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-9.25879999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-8.52409999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-8.75169999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-8.94259999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-8.66139999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-8.47389999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-8.79019999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-8.80959999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-8.95769999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-8.86559999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-8.42419999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-8.52599999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-8.65199999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-9.14319999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-8.85979999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-8.71389999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-9.00959999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-9.1678 -"inmcm4","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-9.18029999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-9.06719999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-9.19459999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-9.29449999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-9.35319999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-9.48429999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-9.0437 -"inmcm4","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-8.98539999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-9.04289999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-9.18539999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-9.05429999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-8.93099999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-8.64939999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-8.88409999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-8.95349999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-8.6087 -"inmcm4","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-8.85429999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-9.07769999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-8.8811 -"inmcm4","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-8.5745 -"inmcm4","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-8.7276 -"inmcm4","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-8.61289999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-8.62689999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-8.97929999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-8.63939999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-8.49189999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-8.6832 -"inmcm4","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-8.60049999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-8.8383 -"inmcm4","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-8.88589999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-8.82429999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-8.65189999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-8.56979999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-8.8331 -"inmcm4","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-8.91229999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-8.72209999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-8.5093 -"inmcm4","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-8.61409999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-8.63339999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-8.78319999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-8.9171 -"inmcm4","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-8.76219999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-8.70499999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-8.649 -"inmcm4","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-8.67539999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-8.52229999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-8.68709999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-8.64619999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-8.62629999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-8.5145 -"inmcm4","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-8.53919999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-8.70579999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-8.35679999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-8.15609999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-8.37 -"inmcm4","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-8.44329999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-8.55279999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-8.32159999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-8.51009999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-8.37799999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-8.47919999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-8.62379999999996 -"inmcm4","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-8.40099999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-8.37529999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-8.69969999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-8.33459999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-8.31269999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-8.48999999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-8.45949999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-8.80410000000001 -"inmcm4","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-8.41309999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-8.55739999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-8.1875 -"inmcm4","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-8.41469999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-8.44759999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-8.49859999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-8.06659999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-8.39329999999995 -"inmcm4","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-8.3254 -"inmcm4","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-8.4341 -"inmcm4","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-8.49919999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-8.53039999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-8.46039999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-8.00029999999998 -"inmcm4","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-8.08789999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-8.20709999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-8.18389999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-7.80439999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-8.32749999999999 -"inmcm4","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-8.1268 -"inmcm4","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-8.1302 -"inmcm4","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-7.93649999999997 -"inmcm4","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-7.81909999999999 -"inmcm4","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-8.19509999999997 -"inmcm4","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-8.13509999999997 -"inmcm4","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-8.19149999999996 -"inmcm4","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-8.41369999999995 -"inmcm4","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-8.00349999999997 -"inmcm4","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-8.15459999999996 -"inmcm4","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",17.8336 -"inmcm4","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",17.8127 -"inmcm4","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",17.7827 -"inmcm4","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",17.8329 -"inmcm4","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",17.8273 -"inmcm4","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",17.8234 -"inmcm4","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",17.852 -"inmcm4","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",17.8091 -"inmcm4","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",17.8314 -"inmcm4","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",17.8135 -"inmcm4","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",17.7254 -"inmcm4","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",17.8899 -"inmcm4","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",17.84 -"inmcm4","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",17.8799 -"inmcm4","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",17.9115 -"inmcm4","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",17.9539 -"inmcm4","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",17.8036 -"inmcm4","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",17.9681 -"inmcm4","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",17.9794 -"inmcm4","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",17.952 -"inmcm4","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",17.9632 -"inmcm4","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",17.8352 -"inmcm4","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",17.9614 -"inmcm4","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",17.9284 -"inmcm4","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",17.8917 -"inmcm4","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",17.9216 -"inmcm4","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",18 -"inmcm4","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",17.8826 -"inmcm4","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",17.7594 -"inmcm4","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",17.8677 -"inmcm4","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",17.9766 -"inmcm4","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",17.9574 -"inmcm4","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",17.8337 -"inmcm4","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",17.8848 -"inmcm4","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",17.9909 -"inmcm4","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",17.9374 -"inmcm4","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",17.9627 -"inmcm4","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",17.9244 -"inmcm4","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",17.8041 -"inmcm4","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",17.8011 -"inmcm4","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",17.8676 -"inmcm4","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",17.8217 -"inmcm4","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",17.7325 -"inmcm4","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",17.9937 -"inmcm4","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",17.9724000000001 -"inmcm4","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",17.907 -"inmcm4","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",17.8014 -"inmcm4","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",17.8612 -"inmcm4","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",17.8902 -"inmcm4","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",17.8908 -"inmcm4","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",17.8 -"inmcm4","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",17.7135 -"inmcm4","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",17.7739 -"inmcm4","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",17.797 -"inmcm4","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",17.8699 -"inmcm4","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",17.9548 -"inmcm4","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",17.914 -"inmcm4","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",17.9207 -"inmcm4","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",17.9733 -"inmcm4","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",17.9759 -"inmcm4","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",17.8524 -"inmcm4","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",17.8994 -"inmcm4","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",17.9366 -"inmcm4","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",17.9832 -"inmcm4","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",17.869 -"inmcm4","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",17.8518 -"inmcm4","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",17.9107 -"inmcm4","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",17.9943 -"inmcm4","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",17.9299 -"inmcm4","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",17.9595 -"inmcm4","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",17.9318 -"inmcm4","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",17.854 -"inmcm4","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",17.9095 -"inmcm4","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",17.9169 -"inmcm4","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",17.9926 -"inmcm4","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",18.1812 -"inmcm4","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",18.0412 -"inmcm4","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",18.0192 -"inmcm4","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",18.0758 -"inmcm4","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",18.0395 -"inmcm4","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",18.0328 -"inmcm4","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",18.0116 -"inmcm4","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",17.9907 -"inmcm4","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",17.9929 -"inmcm4","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",17.936 -"inmcm4","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",18.1571 -"inmcm4","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",18.1568 -"inmcm4","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",18.0935 -"inmcm4","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",18.1777 -"inmcm4","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",18.2113000000001 -"inmcm4","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",18.0994 -"inmcm4","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",18.1664 -"inmcm4","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",18.1754 -"inmcm4","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",18.1264 -"inmcm4","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",18.1777 -"inmcm4","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",18.2134 -"inmcm4","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",18.0412 -"inmcm4","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",18.1222 -"inmcm4","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",18.0734 -"inmcm4","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",18.1950000000001 -"inmcm4","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",18.1504 -"inmcm4","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",18.1314 -"inmcm4","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",18.0977 -"inmcm4","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",18.0436 -"inmcm4","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",18.1087 -"inmcm4","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",18.0151 -"inmcm4","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",18.0407 -"inmcm4","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",18.1106 -"inmcm4","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",18.227 -"inmcm4","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",18.1016 -"inmcm4","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",18.2154 -"inmcm4","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",18.2187 -"inmcm4","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",18.1604 -"inmcm4","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",18.0081 -"inmcm4","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",18.1205 -"inmcm4","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",18.2279 -"inmcm4","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",18.2512 -"inmcm4","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",18.251 -"inmcm4","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",18.1867 -"inmcm4","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",18.2373 -"inmcm4","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",18.2519 -"inmcm4","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",18.1922 -"inmcm4","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",18.2567 -"inmcm4","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",18.3671000000001 -"inmcm4","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",18.2867 -"inmcm4","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",18.2411 -"inmcm4","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",18.1594 -"inmcm4","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",18.2174 -"inmcm4","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",18.2835 -"inmcm4","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",18.3217 -"inmcm4","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",18.3847 -"inmcm4","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",18.3933 -"inmcm4","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",18.3193 -"inmcm4","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",18.4013 -"inmcm4","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",18.3986 -"inmcm4","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",18.4135 -"inmcm4","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",18.4796 -"inmcm4","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",18.4642 -"inmcm4","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",18.403 -"inmcm4","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",18.4151 -"inmcm4","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",18.3122 -"inmcm4","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",18.3112 -"inmcm4","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",18.3641 -"inmcm4","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",18.3291 -"inmcm4","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",18.3989 -"inmcm4","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",18.4796 -"inmcm4","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",18.4993 -"inmcm4","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",18.4217 -"inmcm4","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",18.3921 -"inmcm4","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",18.4199 -"inmcm4","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",18.5323 -"inmcm4","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",18.6217 -"inmcm4","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",18.547 -"inmcm4","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",18.5302 -"inmcm4","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",18.6542 -"inmcm4","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",18.5609 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1850,"Simulated","C","global",12.0557833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1851,"Simulated","C","global",12.09455 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1852,"Simulated","C","global",12.1044 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1853,"Simulated","C","global",12.0591833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1854,"Simulated","C","global",12.0529166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1855,"Simulated","C","global",12.0348666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1856,"Simulated","C","global",11.9436833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1857,"Simulated","C","global",11.9083666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1858,"Simulated","C","global",11.9465333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1859,"Simulated","C","global",11.9787666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1860,"Simulated","C","global",12.0244666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1861,"Simulated","C","global",12.0289666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1862,"Simulated","C","global",12.0785333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1863,"Simulated","C","global",12.1048333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1864,"Simulated","C","global",12.1255333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1865,"Simulated","C","global",12.16685 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1866,"Simulated","C","global",12.1480166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1867,"Simulated","C","global",12.1272833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1868,"Simulated","C","global",12.1461 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1869,"Simulated","C","global",12.1813 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1870,"Simulated","C","global",12.2050333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1871,"Simulated","C","global",12.22015 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1872,"Simulated","C","global",12.1813333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1873,"Simulated","C","global",12.19755 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1874,"Simulated","C","global",12.24735 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1875,"Simulated","C","global",12.288 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1876,"Simulated","C","global",12.2570666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1877,"Simulated","C","global",12.1816333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1878,"Simulated","C","global",12.2578 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1879,"Simulated","C","global",12.2167666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1880,"Simulated","C","global",12.1797333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1881,"Simulated","C","global",12.34845 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1882,"Simulated","C","global",12.3667166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1883,"Simulated","C","global",12.17275 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1884,"Simulated","C","global",11.8702333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1885,"Simulated","C","global",11.8177666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1886,"Simulated","C","global",11.8730166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1887,"Simulated","C","global",11.9504 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1888,"Simulated","C","global",11.9902833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1889,"Simulated","C","global",11.9722833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1890,"Simulated","C","global",11.9328333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1891,"Simulated","C","global",11.9688833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1892,"Simulated","C","global",12.0377333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1893,"Simulated","C","global",12.06985 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1894,"Simulated","C","global",12.1023833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1895,"Simulated","C","global",12.1077166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1896,"Simulated","C","global",12.1394666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1897,"Simulated","C","global",12.1404833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1898,"Simulated","C","global",12.1748666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1899,"Simulated","C","global",12.1337333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1900,"Simulated","C","global",12.1378 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1901,"Simulated","C","global",12.1815 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1902,"Simulated","C","global",12.1417 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1903,"Simulated","C","global",12.0288333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1904,"Simulated","C","global",12.13995 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1905,"Simulated","C","global",12.2022166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1906,"Simulated","C","global",12.2035833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1907,"Simulated","C","global",12.2182833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1908,"Simulated","C","global",12.2443833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1909,"Simulated","C","global",12.2785166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1910,"Simulated","C","global",12.2060833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1911,"Simulated","C","global",12.2317833333334 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1912,"Simulated","C","global",12.1875666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1913,"Simulated","C","global",12.16965 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1914,"Simulated","C","global",12.2366833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1915,"Simulated","C","global",12.25905 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1916,"Simulated","C","global",12.2266666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1917,"Simulated","C","global",12.2511666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1918,"Simulated","C","global",12.2937166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1919,"Simulated","C","global",12.21955 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1920,"Simulated","C","global",12.22585 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1921,"Simulated","C","global",12.3270666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1922,"Simulated","C","global",12.3214333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1923,"Simulated","C","global",12.3100666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1924,"Simulated","C","global",12.2842833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1925,"Simulated","C","global",12.30145 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1926,"Simulated","C","global",12.39125 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1927,"Simulated","C","global",12.38425 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1928,"Simulated","C","global",12.3279666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1929,"Simulated","C","global",12.3906333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1930,"Simulated","C","global",12.3655666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1931,"Simulated","C","global",12.3577666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1932,"Simulated","C","global",12.3945 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1933,"Simulated","C","global",12.3648333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1934,"Simulated","C","global",12.3182666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1935,"Simulated","C","global",12.2618666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1936,"Simulated","C","global",12.4590833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1937,"Simulated","C","global",12.5354 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1938,"Simulated","C","global",12.4782666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1939,"Simulated","C","global",12.4331666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1940,"Simulated","C","global",12.4332666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1941,"Simulated","C","global",12.5326333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1942,"Simulated","C","global",12.47725 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1943,"Simulated","C","global",12.4953833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1944,"Simulated","C","global",12.5154166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1945,"Simulated","C","global",12.5140333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1946,"Simulated","C","global",12.5491 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1947,"Simulated","C","global",12.5572833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1948,"Simulated","C","global",12.5276666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1949,"Simulated","C","global",12.5567166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1950,"Simulated","C","global",12.55125 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1951,"Simulated","C","global",12.5465 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1952,"Simulated","C","global",12.5119166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1953,"Simulated","C","global",12.52255 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1954,"Simulated","C","global",12.5364333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1955,"Simulated","C","global",12.5073 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1956,"Simulated","C","global",12.5338666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1957,"Simulated","C","global",12.5703 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1958,"Simulated","C","global",12.48355 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1959,"Simulated","C","global",12.4897666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1960,"Simulated","C","global",12.615 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1961,"Simulated","C","global",12.5578833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1962,"Simulated","C","global",12.4665 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1963,"Simulated","C","global",12.3781 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1964,"Simulated","C","global",12.27055 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1965,"Simulated","C","global",12.3087166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1966,"Simulated","C","global",12.3597166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1967,"Simulated","C","global",12.4683666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1968,"Simulated","C","global",12.4098166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1969,"Simulated","C","global",12.3536 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1970,"Simulated","C","global",12.5032666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1971,"Simulated","C","global",12.5169833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1972,"Simulated","C","global",12.5202166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1973,"Simulated","C","global",12.5633166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1974,"Simulated","C","global",12.5779833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1975,"Simulated","C","global",12.5841333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1976,"Simulated","C","global",12.6470833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1977,"Simulated","C","global",12.6165333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1978,"Simulated","C","global",12.64025 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1979,"Simulated","C","global",12.7699166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1980,"Simulated","C","global",12.73705 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1981,"Simulated","C","global",12.8277666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1982,"Simulated","C","global",12.8044166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1983,"Simulated","C","global",12.7171833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1984,"Simulated","C","global",12.8046833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1985,"Simulated","C","global",12.76675 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1986,"Simulated","C","global",12.78695 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1987,"Simulated","C","global",12.93335 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1988,"Simulated","C","global",12.9746 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1989,"Simulated","C","global",12.9834166666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1990,"Simulated","C","global",13.06535 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1991,"Simulated","C","global",12.9797833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1992,"Simulated","C","global",12.8190833333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1993,"Simulated","C","global",12.9038333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1994,"Simulated","C","global",12.9378666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1995,"Simulated","C","global",12.9809 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1996,"Simulated","C","global",13.0776 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1997,"Simulated","C","global",13.1573 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1998,"Simulated","C","global",13.223 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",1999,"Simulated","C","global",13.2592666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2000,"Simulated","C","global",13.28335 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2001,"Simulated","C","global",13.3628 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2002,"Simulated","C","global",13.44645 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2003,"Simulated","C","global",13.42685 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2004,"Simulated","C","global",13.4152666666667 -"IPSL-CM5A-LR","tas","temperature","tgav","historical",2005,"Simulated","C","global",13.4988 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-10.42765 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-10.3484666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-10.3960666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-10.4625166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-10.4732 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-10.4849833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-10.6484 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-10.4334166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-10.4646833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-10.4428833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-10.22025 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-10.4431 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-10.3272166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-10.1264833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-10.1350166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-10.0750833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-10.1903833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-10.1832666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-10.2312333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-10.2555666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-10.24865 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-10.1629333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-10.22765 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-10.2258666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-10.1144833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-10.1323 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-10.0900833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-10.2253166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-10.0407833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-10.1173 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-10.2161166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-9.91911666666664 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-9.94121666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-10.0870333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-10.32145 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-10.5297666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-10.5117333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-10.4537833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-10.4082166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-10.4535666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-10.5540166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-10.5479 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-10.42215 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-10.3799 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-10.3772166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-10.38725 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-10.3719833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-10.3536833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-10.1944833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-10.3535166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-10.4068833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-10.2853166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-10.3535 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-10.4045 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-10.20805 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-10.1327166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-10.21745 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-10.2136 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-10.1745666666666 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-10.0406333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-10.2252333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-10.2131 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-10.32335 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-10.29785 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-10.1885333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-10.1816 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-10.4069 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-10.2667166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-10.0611333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-10.3244166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-10.2036166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-10.0167 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-10.1487166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-10.1876333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-10.2697166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-10.3743833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-10.0722 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-10.036 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-10.2072166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-10.0502666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-10.0827166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-10.10955 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-10.0776666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-10.0610666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-10.1174666666666 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-10.2257666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-10.0119 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-9.93484999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-10.0280666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-10.0345666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-9.97216666666666 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-9.77301666666664 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-9.88381666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-9.75403333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-9.88491666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-9.87314999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-9.83988333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-9.7275333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-10.03425 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-9.95351666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-9.87699999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-9.70611666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-10.01595 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-9.90738333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-10.0124 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-10.0524 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-9.84709999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-9.86838333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-9.98878333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-10.0202166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-9.77166666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-9.91953333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-9.95096666666666 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-10.0835166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-10.1062666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-10.0436333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-10.1152666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-9.96153333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-10.0750333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-10.0757 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-9.8105333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-9.81209999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-9.90123333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-9.84596666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-9.80179999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-9.73266666666664 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-9.65138333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-9.84349999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-9.79536666666663 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-9.61838333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-9.71528333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-9.56436666666662 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-9.58444999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-9.61668333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-9.59626666666663 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-9.37434999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-9.46084999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-9.26704999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-9.27228333333332 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-9.36264999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-9.20504999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-9.36528333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-9.38813333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-9.34789999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-9.31519999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-9.43306666666664 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-9.26628333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-9.15291666666666 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-9.07369999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-9.00458333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-9.03923333333331 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-8.84701666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-8.78029999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-8.73196666666665 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-8.83701666666663 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-8.72279999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",17.0410333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",17.07075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",17.0934 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",17.0528833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",17.0475666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",17.0282 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",16.95295 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",16.86215 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",16.9157666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",16.9503166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",16.95685 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",17.0116833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",17.04655 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",17.0342 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",17.06135 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",17.0985666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",17.1011333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",17.0742333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",17.1078333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",17.1562 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",17.18365 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",17.1831166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",17.1500833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",17.1694666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",17.2056 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",17.2592333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",17.2120666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",17.1499333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",17.2020166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",17.16895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",17.1455833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",17.28585 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",17.3130666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",17.1084666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",16.79085 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",16.7728833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",16.83635 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",16.9180666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",16.9567 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",16.94475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",16.9188666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",16.9614666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",17.0177666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",17.0476 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",17.0868 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",17.0955 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",17.13085 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",17.1280833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",17.13475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",17.1197833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",17.1366 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",17.1630166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",17.1296 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",17.0029 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",17.0951166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",17.1544666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",17.1749666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",17.1920666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",17.2152666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",17.2272666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",17.17975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",17.2083666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",17.1789333333334 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",17.1513333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",17.20905 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",17.2348333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",17.2451166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",17.2440166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",17.2504166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",17.2181666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",17.1990833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",17.2813166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",17.3036333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",17.2984166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",17.2850833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",17.3292833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",17.3720166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",17.3554 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",17.3246166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",17.3664166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",17.34295 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",17.3393666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",17.3772166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",17.3372333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",17.2929166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",17.2479833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",17.4416 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",17.5176333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",17.4685833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",17.4149166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",17.4012 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",17.4784166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",17.43535 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",17.4287833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",17.48215 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",17.4779 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",17.5133666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",17.4984166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",17.5302166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",17.5478666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",17.5241833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",17.4805666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",17.5069166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",17.4958166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",17.5360166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",17.5094 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",17.4963666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",17.5455166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",17.46625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",17.4809 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",17.57875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",17.5417833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",17.4371 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",17.35845 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",17.23215 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",17.2648833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",17.343 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",17.4417166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",17.3953666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",17.3268166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",17.4508333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",17.4680166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",17.4916833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",17.53205 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",17.5401833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",17.5323333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",17.5912333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",17.5965 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",17.6148666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",17.73405 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",17.7153 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",17.7927333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",17.7686166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",17.6692333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",17.77155 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",17.6761333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",17.72 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",17.8558333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",17.9074 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",17.93815 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",18.0033666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",17.9343166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",17.7430166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",17.8377333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",17.8720833333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",17.9507 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",18.0319 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",18.1040666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",18.1668166666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",18.19575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",18.2329333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",18.28735 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",18.3747666666667 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",18.3401333333333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",18.34925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",18.42595 -"NorESM1-ME","tas","temperature","tgav","historical",1850,"Simulated","C","global",12.8161 -"NorESM1-ME","tas","temperature","tgav","historical",1851,"Simulated","C","global",12.9058 -"NorESM1-ME","tas","temperature","tgav","historical",1852,"Simulated","C","global",12.71785 -"NorESM1-ME","tas","temperature","tgav","historical",1853,"Simulated","C","global",12.72055 -"NorESM1-ME","tas","temperature","tgav","historical",1854,"Simulated","C","global",12.6615 -"NorESM1-ME","tas","temperature","tgav","historical",1855,"Simulated","C","global",12.7136 -"NorESM1-ME","tas","temperature","tgav","historical",1856,"Simulated","C","global",12.722 -"NorESM1-ME","tas","temperature","tgav","historical",1857,"Simulated","C","global",12.7128 -"NorESM1-ME","tas","temperature","tgav","historical",1858,"Simulated","C","global",12.74185 -"NorESM1-ME","tas","temperature","tgav","historical",1859,"Simulated","C","global",12.8058 -"NorESM1-ME","tas","temperature","tgav","historical",1860,"Simulated","C","global",12.73505 -"NorESM1-ME","tas","temperature","tgav","historical",1861,"Simulated","C","global",12.6676 -"NorESM1-ME","tas","temperature","tgav","historical",1862,"Simulated","C","global",12.7264 -"NorESM1-ME","tas","temperature","tgav","historical",1863,"Simulated","C","global",12.7302 -"NorESM1-ME","tas","temperature","tgav","historical",1864,"Simulated","C","global",12.67025 -"NorESM1-ME","tas","temperature","tgav","historical",1865,"Simulated","C","global",12.6509 -"NorESM1-ME","tas","temperature","tgav","historical",1866,"Simulated","C","global",12.6591 -"NorESM1-ME","tas","temperature","tgav","historical",1867,"Simulated","C","global",12.69925 -"NorESM1-ME","tas","temperature","tgav","historical",1868,"Simulated","C","global",12.70655 -"NorESM1-ME","tas","temperature","tgav","historical",1869,"Simulated","C","global",12.74115 -"NorESM1-ME","tas","temperature","tgav","historical",1870,"Simulated","C","global",12.7094 -"NorESM1-ME","tas","temperature","tgav","historical",1871,"Simulated","C","global",12.76545 -"NorESM1-ME","tas","temperature","tgav","historical",1872,"Simulated","C","global",12.77895 -"NorESM1-ME","tas","temperature","tgav","historical",1873,"Simulated","C","global",12.7151 -"NorESM1-ME","tas","temperature","tgav","historical",1874,"Simulated","C","global",12.77735 -"NorESM1-ME","tas","temperature","tgav","historical",1875,"Simulated","C","global",12.8018 -"NorESM1-ME","tas","temperature","tgav","historical",1876,"Simulated","C","global",12.7602 -"NorESM1-ME","tas","temperature","tgav","historical",1877,"Simulated","C","global",12.7269 -"NorESM1-ME","tas","temperature","tgav","historical",1878,"Simulated","C","global",12.7651 -"NorESM1-ME","tas","temperature","tgav","historical",1879,"Simulated","C","global",12.64015 -"NorESM1-ME","tas","temperature","tgav","historical",1880,"Simulated","C","global",12.7267 -"NorESM1-ME","tas","temperature","tgav","historical",1881,"Simulated","C","global",12.69315 -"NorESM1-ME","tas","temperature","tgav","historical",1882,"Simulated","C","global",12.656 -"NorESM1-ME","tas","temperature","tgav","historical",1883,"Simulated","C","global",12.66885 -"NorESM1-ME","tas","temperature","tgav","historical",1884,"Simulated","C","global",12.4349 -"NorESM1-ME","tas","temperature","tgav","historical",1885,"Simulated","C","global",12.60395 -"NorESM1-ME","tas","temperature","tgav","historical",1886,"Simulated","C","global",12.51285 -"NorESM1-ME","tas","temperature","tgav","historical",1887,"Simulated","C","global",12.66145 -"NorESM1-ME","tas","temperature","tgav","historical",1888,"Simulated","C","global",12.64885 -"NorESM1-ME","tas","temperature","tgav","historical",1889,"Simulated","C","global",12.72965 -"NorESM1-ME","tas","temperature","tgav","historical",1890,"Simulated","C","global",12.63795 -"NorESM1-ME","tas","temperature","tgav","historical",1891,"Simulated","C","global",12.64715 -"NorESM1-ME","tas","temperature","tgav","historical",1892,"Simulated","C","global",12.73445 -"NorESM1-ME","tas","temperature","tgav","historical",1893,"Simulated","C","global",12.71615 -"NorESM1-ME","tas","temperature","tgav","historical",1894,"Simulated","C","global",12.6358 -"NorESM1-ME","tas","temperature","tgav","historical",1895,"Simulated","C","global",12.7457 -"NorESM1-ME","tas","temperature","tgav","historical",1896,"Simulated","C","global",12.7682 -"NorESM1-ME","tas","temperature","tgav","historical",1897,"Simulated","C","global",12.7829 -"NorESM1-ME","tas","temperature","tgav","historical",1898,"Simulated","C","global",12.64335 -"NorESM1-ME","tas","temperature","tgav","historical",1899,"Simulated","C","global",12.7407 -"NorESM1-ME","tas","temperature","tgav","historical",1900,"Simulated","C","global",12.74015 -"NorESM1-ME","tas","temperature","tgav","historical",1901,"Simulated","C","global",12.713 -"NorESM1-ME","tas","temperature","tgav","historical",1902,"Simulated","C","global",12.73415 -"NorESM1-ME","tas","temperature","tgav","historical",1903,"Simulated","C","global",12.5726 -"NorESM1-ME","tas","temperature","tgav","historical",1904,"Simulated","C","global",12.50125 -"NorESM1-ME","tas","temperature","tgav","historical",1905,"Simulated","C","global",12.54715 -"NorESM1-ME","tas","temperature","tgav","historical",1906,"Simulated","C","global",12.6675 -"NorESM1-ME","tas","temperature","tgav","historical",1907,"Simulated","C","global",12.7699 -"NorESM1-ME","tas","temperature","tgav","historical",1908,"Simulated","C","global",12.6392 -"NorESM1-ME","tas","temperature","tgav","historical",1909,"Simulated","C","global",12.59355 -"NorESM1-ME","tas","temperature","tgav","historical",1910,"Simulated","C","global",12.71165 -"NorESM1-ME","tas","temperature","tgav","historical",1911,"Simulated","C","global",12.69135 -"NorESM1-ME","tas","temperature","tgav","historical",1912,"Simulated","C","global",12.70925 -"NorESM1-ME","tas","temperature","tgav","historical",1913,"Simulated","C","global",12.74595 -"NorESM1-ME","tas","temperature","tgav","historical",1914,"Simulated","C","global",12.87375 -"NorESM1-ME","tas","temperature","tgav","historical",1915,"Simulated","C","global",12.8598 -"NorESM1-ME","tas","temperature","tgav","historical",1916,"Simulated","C","global",12.70535 -"NorESM1-ME","tas","temperature","tgav","historical",1917,"Simulated","C","global",12.68555 -"NorESM1-ME","tas","temperature","tgav","historical",1918,"Simulated","C","global",12.8437 -"NorESM1-ME","tas","temperature","tgav","historical",1919,"Simulated","C","global",12.6586 -"NorESM1-ME","tas","temperature","tgav","historical",1920,"Simulated","C","global",12.7175 -"NorESM1-ME","tas","temperature","tgav","historical",1921,"Simulated","C","global",12.7794 -"NorESM1-ME","tas","temperature","tgav","historical",1922,"Simulated","C","global",12.7418 -"NorESM1-ME","tas","temperature","tgav","historical",1923,"Simulated","C","global",12.77155 -"NorESM1-ME","tas","temperature","tgav","historical",1924,"Simulated","C","global",12.82255 -"NorESM1-ME","tas","temperature","tgav","historical",1925,"Simulated","C","global",12.83335 -"NorESM1-ME","tas","temperature","tgav","historical",1926,"Simulated","C","global",12.83165 -"NorESM1-ME","tas","temperature","tgav","historical",1927,"Simulated","C","global",12.86395 -"NorESM1-ME","tas","temperature","tgav","historical",1928,"Simulated","C","global",12.76835 -"NorESM1-ME","tas","temperature","tgav","historical",1929,"Simulated","C","global",12.7215 -"NorESM1-ME","tas","temperature","tgav","historical",1930,"Simulated","C","global",12.77635 -"NorESM1-ME","tas","temperature","tgav","historical",1931,"Simulated","C","global",12.8061 -"NorESM1-ME","tas","temperature","tgav","historical",1932,"Simulated","C","global",12.8954 -"NorESM1-ME","tas","temperature","tgav","historical",1933,"Simulated","C","global",12.8526500000001 -"NorESM1-ME","tas","temperature","tgav","historical",1934,"Simulated","C","global",12.94785 -"NorESM1-ME","tas","temperature","tgav","historical",1935,"Simulated","C","global",12.8921 -"NorESM1-ME","tas","temperature","tgav","historical",1936,"Simulated","C","global",12.866 -"NorESM1-ME","tas","temperature","tgav","historical",1937,"Simulated","C","global",12.9353 -"NorESM1-ME","tas","temperature","tgav","historical",1938,"Simulated","C","global",13.03455 -"NorESM1-ME","tas","temperature","tgav","historical",1939,"Simulated","C","global",13.0206 -"NorESM1-ME","tas","temperature","tgav","historical",1940,"Simulated","C","global",12.96385 -"NorESM1-ME","tas","temperature","tgav","historical",1941,"Simulated","C","global",12.9984 -"NorESM1-ME","tas","temperature","tgav","historical",1942,"Simulated","C","global",12.92025 -"NorESM1-ME","tas","temperature","tgav","historical",1943,"Simulated","C","global",12.9157 -"NorESM1-ME","tas","temperature","tgav","historical",1944,"Simulated","C","global",12.9381 -"NorESM1-ME","tas","temperature","tgav","historical",1945,"Simulated","C","global",12.90935 -"NorESM1-ME","tas","temperature","tgav","historical",1946,"Simulated","C","global",12.95515 -"NorESM1-ME","tas","temperature","tgav","historical",1947,"Simulated","C","global",12.87195 -"NorESM1-ME","tas","temperature","tgav","historical",1948,"Simulated","C","global",12.7526 -"NorESM1-ME","tas","temperature","tgav","historical",1949,"Simulated","C","global",12.7732 -"NorESM1-ME","tas","temperature","tgav","historical",1950,"Simulated","C","global",12.9474 -"NorESM1-ME","tas","temperature","tgav","historical",1951,"Simulated","C","global",12.82695 -"NorESM1-ME","tas","temperature","tgav","historical",1952,"Simulated","C","global",12.8196 -"NorESM1-ME","tas","temperature","tgav","historical",1953,"Simulated","C","global",12.8626 -"NorESM1-ME","tas","temperature","tgav","historical",1954,"Simulated","C","global",12.88855 -"NorESM1-ME","tas","temperature","tgav","historical",1955,"Simulated","C","global",12.94895 -"NorESM1-ME","tas","temperature","tgav","historical",1956,"Simulated","C","global",12.8871 -"NorESM1-ME","tas","temperature","tgav","historical",1957,"Simulated","C","global",12.97835 -"NorESM1-ME","tas","temperature","tgav","historical",1958,"Simulated","C","global",13.0175 -"NorESM1-ME","tas","temperature","tgav","historical",1959,"Simulated","C","global",12.9724 -"NorESM1-ME","tas","temperature","tgav","historical",1960,"Simulated","C","global",13.01095 -"NorESM1-ME","tas","temperature","tgav","historical",1961,"Simulated","C","global",12.9323 -"NorESM1-ME","tas","temperature","tgav","historical",1962,"Simulated","C","global",12.8448 -"NorESM1-ME","tas","temperature","tgav","historical",1963,"Simulated","C","global",12.7355 -"NorESM1-ME","tas","temperature","tgav","historical",1964,"Simulated","C","global",12.719 -"NorESM1-ME","tas","temperature","tgav","historical",1965,"Simulated","C","global",12.77155 -"NorESM1-ME","tas","temperature","tgav","historical",1966,"Simulated","C","global",12.8127 -"NorESM1-ME","tas","temperature","tgav","historical",1967,"Simulated","C","global",12.9555 -"NorESM1-ME","tas","temperature","tgav","historical",1968,"Simulated","C","global",12.91585 -"NorESM1-ME","tas","temperature","tgav","historical",1969,"Simulated","C","global",12.78225 -"NorESM1-ME","tas","temperature","tgav","historical",1970,"Simulated","C","global",12.85735 -"NorESM1-ME","tas","temperature","tgav","historical",1971,"Simulated","C","global",12.94015 -"NorESM1-ME","tas","temperature","tgav","historical",1972,"Simulated","C","global",12.8855 -"NorESM1-ME","tas","temperature","tgav","historical",1973,"Simulated","C","global",12.95245 -"NorESM1-ME","tas","temperature","tgav","historical",1974,"Simulated","C","global",12.9043 -"NorESM1-ME","tas","temperature","tgav","historical",1975,"Simulated","C","global",12.82035 -"NorESM1-ME","tas","temperature","tgav","historical",1976,"Simulated","C","global",12.86965 -"NorESM1-ME","tas","temperature","tgav","historical",1977,"Simulated","C","global",12.89895 -"NorESM1-ME","tas","temperature","tgav","historical",1978,"Simulated","C","global",13.07115 -"NorESM1-ME","tas","temperature","tgav","historical",1979,"Simulated","C","global",13.12415 -"NorESM1-ME","tas","temperature","tgav","historical",1980,"Simulated","C","global",13.13085 -"NorESM1-ME","tas","temperature","tgav","historical",1981,"Simulated","C","global",13.2083 -"NorESM1-ME","tas","temperature","tgav","historical",1982,"Simulated","C","global",13.25715 -"NorESM1-ME","tas","temperature","tgav","historical",1983,"Simulated","C","global",13.03925 -"NorESM1-ME","tas","temperature","tgav","historical",1984,"Simulated","C","global",13.0235 -"NorESM1-ME","tas","temperature","tgav","historical",1985,"Simulated","C","global",13.0269 -"NorESM1-ME","tas","temperature","tgav","historical",1986,"Simulated","C","global",13.0328 -"NorESM1-ME","tas","temperature","tgav","historical",1987,"Simulated","C","global",13.20435 -"NorESM1-ME","tas","temperature","tgav","historical",1988,"Simulated","C","global",13.2280000000001 -"NorESM1-ME","tas","temperature","tgav","historical",1989,"Simulated","C","global",13.1911 -"NorESM1-ME","tas","temperature","tgav","historical",1990,"Simulated","C","global",13.32625 -"NorESM1-ME","tas","temperature","tgav","historical",1991,"Simulated","C","global",13.19665 -"NorESM1-ME","tas","temperature","tgav","historical",1992,"Simulated","C","global",12.96555 -"NorESM1-ME","tas","temperature","tgav","historical",1993,"Simulated","C","global",12.9195 -"NorESM1-ME","tas","temperature","tgav","historical",1994,"Simulated","C","global",13.1113 -"NorESM1-ME","tas","temperature","tgav","historical",1995,"Simulated","C","global",13.14865 -"NorESM1-ME","tas","temperature","tgav","historical",1996,"Simulated","C","global",13.1812 -"NorESM1-ME","tas","temperature","tgav","historical",1997,"Simulated","C","global",13.278 -"NorESM1-ME","tas","temperature","tgav","historical",1998,"Simulated","C","global",13.3173 -"NorESM1-ME","tas","temperature","tgav","historical",1999,"Simulated","C","global",13.41585 -"NorESM1-ME","tas","temperature","tgav","historical",2000,"Simulated","C","global",13.4441 -"NorESM1-ME","tas","temperature","tgav","historical",2001,"Simulated","C","global",13.4198 -"NorESM1-ME","tas","temperature","tgav","historical",2002,"Simulated","C","global",13.5354 -"NorESM1-ME","tas","temperature","tgav","historical",2003,"Simulated","C","global",13.5911 -"NorESM1-ME","tas","temperature","tgav","historical",2004,"Simulated","C","global",13.5624 -"NorESM1-ME","tas","temperature","tgav","historical",2005,"Simulated","C","global",13.71995 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1850,"Simulated","C","HL",-12.39105 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1851,"Simulated","C","HL",-12.2057 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1852,"Simulated","C","HL",-12.483 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1853,"Simulated","C","HL",-12.4352 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1854,"Simulated","C","HL",-12.7493 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1855,"Simulated","C","HL",-12.62215 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1856,"Simulated","C","HL",-12.65875 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1857,"Simulated","C","HL",-12.63775 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1858,"Simulated","C","HL",-12.59055 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1859,"Simulated","C","HL",-12.37555 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1860,"Simulated","C","HL",-12.5289 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1861,"Simulated","C","HL",-12.7281999999999 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1862,"Simulated","C","HL",-12.5089 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1863,"Simulated","C","HL",-12.49785 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1864,"Simulated","C","HL",-12.6361 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1865,"Simulated","C","HL",-12.72755 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1866,"Simulated","C","HL",-12.69895 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1867,"Simulated","C","HL",-12.7315 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1868,"Simulated","C","HL",-12.71775 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1869,"Simulated","C","HL",-12.57275 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1870,"Simulated","C","HL",-12.91935 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1871,"Simulated","C","HL",-12.5877 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1872,"Simulated","C","HL",-12.52065 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1873,"Simulated","C","HL",-12.9505 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1874,"Simulated","C","HL",-12.60735 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1875,"Simulated","C","HL",-12.27165 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1876,"Simulated","C","HL",-12.3865 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1877,"Simulated","C","HL",-12.7077 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1878,"Simulated","C","HL",-12.3677 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1879,"Simulated","C","HL",-12.80065 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1880,"Simulated","C","HL",-12.71135 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1881,"Simulated","C","HL",-12.78175 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1882,"Simulated","C","HL",-12.70505 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1883,"Simulated","C","HL",-12.55255 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1884,"Simulated","C","HL",-12.62285 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1885,"Simulated","C","HL",-12.3767 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1886,"Simulated","C","HL",-12.8047 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1887,"Simulated","C","HL",-12.4345 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1888,"Simulated","C","HL",-12.58495 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1889,"Simulated","C","HL",-12.37805 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1890,"Simulated","C","HL",-12.54545 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1891,"Simulated","C","HL",-12.6918 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1892,"Simulated","C","HL",-12.5296 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1893,"Simulated","C","HL",-12.48775 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1894,"Simulated","C","HL",-12.7989 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1895,"Simulated","C","HL",-12.3108 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1896,"Simulated","C","HL",-12.3878 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1897,"Simulated","C","HL",-12.38975 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1898,"Simulated","C","HL",-12.71695 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1899,"Simulated","C","HL",-12.5899 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1900,"Simulated","C","HL",-12.58095 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1901,"Simulated","C","HL",-12.7525 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1902,"Simulated","C","HL",-12.6265 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1903,"Simulated","C","HL",-12.28605 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1904,"Simulated","C","HL",-12.7607 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1905,"Simulated","C","HL",-12.77995 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1906,"Simulated","C","HL",-12.7155 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1907,"Simulated","C","HL",-12.4812 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1908,"Simulated","C","HL",-12.65665 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1909,"Simulated","C","HL",-12.8196 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1910,"Simulated","C","HL",-12.5488 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1911,"Simulated","C","HL",-12.6987 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1912,"Simulated","C","HL",-12.58965 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1913,"Simulated","C","HL",-12.33755 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1914,"Simulated","C","HL",-12.19545 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1915,"Simulated","C","HL",-12.0733 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1916,"Simulated","C","HL",-12.46495 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1917,"Simulated","C","HL",-12.809 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1918,"Simulated","C","HL",-12.3999 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1919,"Simulated","C","HL",-12.7682 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1920,"Simulated","C","HL",-12.56435 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1921,"Simulated","C","HL",-12.4778 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1922,"Simulated","C","HL",-12.6994 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1923,"Simulated","C","HL",-12.4401 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1924,"Simulated","C","HL",-12.43305 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1925,"Simulated","C","HL",-12.49625 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1926,"Simulated","C","HL",-12.32985 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1927,"Simulated","C","HL",-12.2958 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1928,"Simulated","C","HL",-12.53465 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1929,"Simulated","C","HL",-12.45935 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1930,"Simulated","C","HL",-12.4071 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1931,"Simulated","C","HL",-12.50305 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1932,"Simulated","C","HL",-12.32045 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1933,"Simulated","C","HL",-12.2257999999999 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1934,"Simulated","C","HL",-12.26275 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1935,"Simulated","C","HL",-12.283 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1936,"Simulated","C","HL",-12.38715 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1937,"Simulated","C","HL",-12.1781 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1938,"Simulated","C","HL",-11.99855 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1939,"Simulated","C","HL",-12.1068 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1940,"Simulated","C","HL",-12.1202 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1941,"Simulated","C","HL",-12.173 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1942,"Simulated","C","HL",-12.32095 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1943,"Simulated","C","HL",-12.3007 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1944,"Simulated","C","HL",-12.29675 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1945,"Simulated","C","HL",-12.45605 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1946,"Simulated","C","HL",-12.18005 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1947,"Simulated","C","HL",-12.18065 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1948,"Simulated","C","HL",-12.60635 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1949,"Simulated","C","HL",-12.64645 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1950,"Simulated","C","HL",-12.24005 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1951,"Simulated","C","HL",-12.5091 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1952,"Simulated","C","HL",-12.55995 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1953,"Simulated","C","HL",-12.36805 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1954,"Simulated","C","HL",-12.5755 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1955,"Simulated","C","HL",-12.19195 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1956,"Simulated","C","HL",-12.32285 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1957,"Simulated","C","HL",-12.10675 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1958,"Simulated","C","HL",-11.9794 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1959,"Simulated","C","HL",-11.9336 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1960,"Simulated","C","HL",-12.0978 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1961,"Simulated","C","HL",-12.15405 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1962,"Simulated","C","HL",-12.5461 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1963,"Simulated","C","HL",-12.4942 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1964,"Simulated","C","HL",-12.4628 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1965,"Simulated","C","HL",-12.2897 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1966,"Simulated","C","HL",-12.31355 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1967,"Simulated","C","HL",-12.07005 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1968,"Simulated","C","HL",-12.0176 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1969,"Simulated","C","HL",-12.1736 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1970,"Simulated","C","HL",-12.45575 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1971,"Simulated","C","HL",-12.13905 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1972,"Simulated","C","HL",-12.37055 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1973,"Simulated","C","HL",-12.2685 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1974,"Simulated","C","HL",-12.1131499999999 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1975,"Simulated","C","HL",-12.63205 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1976,"Simulated","C","HL",-12.4283 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1977,"Simulated","C","HL",-12.2775 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1978,"Simulated","C","HL",-11.88785 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1979,"Simulated","C","HL",-11.8909 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1980,"Simulated","C","HL",-11.8816 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1981,"Simulated","C","HL",-11.92995 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1982,"Simulated","C","HL",-11.67915 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1983,"Simulated","C","HL",-11.96405 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1984,"Simulated","C","HL",-12.26025 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1985,"Simulated","C","HL",-12.178 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1986,"Simulated","C","HL",-12.07675 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1987,"Simulated","C","HL",-11.8702 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1988,"Simulated","C","HL",-11.91975 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1989,"Simulated","C","HL",-11.94225 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1990,"Simulated","C","HL",-11.7437 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1991,"Simulated","C","HL",-11.85875 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1992,"Simulated","C","HL",-11.80675 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1993,"Simulated","C","HL",-12.14315 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1994,"Simulated","C","HL",-11.87175 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1995,"Simulated","C","HL",-11.97835 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1996,"Simulated","C","HL",-11.9242 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1997,"Simulated","C","HL",-11.5434 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1998,"Simulated","C","HL",-11.5962 -"NorESM1-ME","tas","temperature","tgav_HL","historical",1999,"Simulated","C","HL",-11.50325 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2000,"Simulated","C","HL",-11.2421 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2001,"Simulated","C","HL",-11.425 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2002,"Simulated","C","HL",-11.4012 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2003,"Simulated","C","HL",-11.02805 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2004,"Simulated","C","HL",-11.36195 -"NorESM1-ME","tas","temperature","tgav_HL","historical",2005,"Simulated","C","HL",-11.34915 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1850,"Simulated","C","LL",18.40415 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1851,"Simulated","C","LL",18.4728 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1852,"Simulated","C","LL",18.3046 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1853,"Simulated","C","LL",18.2972 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1854,"Simulated","C","LL",18.29475 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1855,"Simulated","C","LL",18.3301 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1856,"Simulated","C","LL",18.34855 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1857,"Simulated","C","LL",18.33275 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1858,"Simulated","C","LL",18.35775 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1859,"Simulated","C","LL",18.38815 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1860,"Simulated","C","LL",18.3358 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1861,"Simulated","C","LL",18.2974 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1862,"Simulated","C","LL",18.32075 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1863,"Simulated","C","LL",18.32295 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1864,"Simulated","C","LL",18.28035 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1865,"Simulated","C","LL",18.27695 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1866,"Simulated","C","LL",18.28065 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1867,"Simulated","C","LL",18.33695 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1868,"Simulated","C","LL",18.3428 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1869,"Simulated","C","LL",18.353 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1870,"Simulated","C","LL",18.3908 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1871,"Simulated","C","LL",18.3859 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1872,"Simulated","C","LL",18.3876 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1873,"Simulated","C","LL",18.4047 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1874,"Simulated","C","LL",18.4048 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1875,"Simulated","C","LL",18.3603 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1876,"Simulated","C","LL",18.33495 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1877,"Simulated","C","LL",18.3654 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1878,"Simulated","C","LL",18.33675 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1879,"Simulated","C","LL",18.28 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1880,"Simulated","C","LL",18.366 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1881,"Simulated","C","LL",18.34065 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1882,"Simulated","C","LL",18.27825 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1883,"Simulated","C","LL",18.2602 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1884,"Simulated","C","LL",17.98985 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1885,"Simulated","C","LL",18.1419 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1886,"Simulated","C","LL",18.12535 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1887,"Simulated","C","LL",18.22485 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1888,"Simulated","C","LL",18.2428 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1889,"Simulated","C","LL",18.2957 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1890,"Simulated","C","LL",18.22085 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1891,"Simulated","C","LL",18.26455 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1892,"Simulated","C","LL",18.3352 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1893,"Simulated","C","LL",18.30365 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1894,"Simulated","C","LL",18.2744500000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1895,"Simulated","C","LL",18.30045 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1896,"Simulated","C","LL",18.34495 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1897,"Simulated","C","LL",18.3634 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1898,"Simulated","C","LL",18.26535 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1899,"Simulated","C","LL",18.3562 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1900,"Simulated","C","LL",18.3535 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1901,"Simulated","C","LL",18.35825 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1902,"Simulated","C","LL",18.3563 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1903,"Simulated","C","LL",18.08345 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1904,"Simulated","C","LL",18.1016 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1905,"Simulated","C","LL",18.1618500000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1906,"Simulated","C","LL",18.29465 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1907,"Simulated","C","LL",18.3678 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1908,"Simulated","C","LL",18.247 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1909,"Simulated","C","LL",18.22735 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1910,"Simulated","C","LL",18.3116 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1911,"Simulated","C","LL",18.31995 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1912,"Simulated","C","LL",18.3177 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1913,"Simulated","C","LL",18.30675 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1914,"Simulated","C","LL",18.43145 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1915,"Simulated","C","LL",18.3873 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1916,"Simulated","C","LL",18.2853 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1917,"Simulated","C","LL",18.3372 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1918,"Simulated","C","LL",18.4399 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1919,"Simulated","C","LL",18.29545 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1920,"Simulated","C","LL",18.3222 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1921,"Simulated","C","LL",18.3785500000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1922,"Simulated","C","LL",18.3818 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1923,"Simulated","C","LL",18.36075 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1924,"Simulated","C","LL",18.42145 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1925,"Simulated","C","LL",18.4485000000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1926,"Simulated","C","LL",18.4097 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1927,"Simulated","C","LL",18.44155 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1928,"Simulated","C","LL",18.37785 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1929,"Simulated","C","LL",18.3037 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1930,"Simulated","C","LL",18.35925 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1931,"Simulated","C","LL",18.4167 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1932,"Simulated","C","LL",18.4853 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1933,"Simulated","C","LL",18.4122 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1934,"Simulated","C","LL",18.53655 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1935,"Simulated","C","LL",18.4731000000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1936,"Simulated","C","LL",18.4643 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1937,"Simulated","C","LL",18.50265 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1938,"Simulated","C","LL",18.5842 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1939,"Simulated","C","LL",18.5911 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1940,"Simulated","C","LL",18.5247 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1941,"Simulated","C","LL",18.57855 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1942,"Simulated","C","LL",18.5159 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1943,"Simulated","C","LL",18.5058 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1944,"Simulated","C","LL",18.53235 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1945,"Simulated","C","LL",18.53255 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1946,"Simulated","C","LL",18.5272 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1947,"Simulated","C","LL",18.426 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1948,"Simulated","C","LL",18.3744 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1949,"Simulated","C","LL",18.40845 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1950,"Simulated","C","LL",18.5312 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1951,"Simulated","C","LL",18.44365 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1952,"Simulated","C","LL",18.4459 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1953,"Simulated","C","LL",18.4559 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1954,"Simulated","C","LL",18.5337 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1955,"Simulated","C","LL",18.52245 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1956,"Simulated","C","LL",18.47575 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1957,"Simulated","C","LL",18.5396 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1958,"Simulated","C","LL",18.559 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1959,"Simulated","C","LL",18.49375 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1960,"Simulated","C","LL",18.57725 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1961,"Simulated","C","LL",18.4936500000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1962,"Simulated","C","LL",18.4737 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1963,"Simulated","C","LL",18.32855 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1964,"Simulated","C","LL",18.3014 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1965,"Simulated","C","LL",18.32725 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1966,"Simulated","C","LL",18.38285 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1967,"Simulated","C","LL",18.5034 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1968,"Simulated","C","LL",18.44345 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1969,"Simulated","C","LL",18.3147 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1970,"Simulated","C","LL",18.46895 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1971,"Simulated","C","LL",18.49995 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1972,"Simulated","C","LL",18.48455 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1973,"Simulated","C","LL",18.54355 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1974,"Simulated","C","LL",18.45035 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1975,"Simulated","C","LL",18.46265 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1976,"Simulated","C","LL",18.478 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1977,"Simulated","C","LL",18.4802 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1978,"Simulated","C","LL",18.60425 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1979,"Simulated","C","LL",18.66985 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1980,"Simulated","C","LL",18.6757 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1981,"Simulated","C","LL",18.781 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1982,"Simulated","C","LL",18.78525 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1983,"Simulated","C","LL",18.58225 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1984,"Simulated","C","LL",18.62845 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1985,"Simulated","C","LL",18.6144 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1986,"Simulated","C","LL",18.5993500000001 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1987,"Simulated","C","LL",18.76315 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1988,"Simulated","C","LL",18.8029 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1989,"Simulated","C","LL",18.7628 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1990,"Simulated","C","LL",18.88405 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1991,"Simulated","C","LL",18.751 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1992,"Simulated","C","LL",18.45745 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1993,"Simulated","C","LL",18.47555 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1994,"Simulated","C","LL",18.64985 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1995,"Simulated","C","LL",18.719 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1996,"Simulated","C","LL",18.74675 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1997,"Simulated","C","LL",18.7805 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1998,"Simulated","C","LL",18.8403 -"NorESM1-ME","tas","temperature","tgav_LL","historical",1999,"Simulated","C","LL",18.94 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2000,"Simulated","C","LL",18.9168 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2001,"Simulated","C","LL",18.9277 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2002,"Simulated","C","LL",19.06365 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2003,"Simulated","C","LL",19.04885 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2004,"Simulated","C","LL",19.08785 -"NorESM1-ME","tas","temperature","tgav_LL","historical",2005,"Simulated","C","LL",19.27745 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/hist/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/hist/summary.csv deleted file mode 100644 index 899134c48..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/hist/summary.csv +++ /dev/null @@ -1,469 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -1850,tas,temperature,tgav,historical,C,Simulated,global,0.615090912,12.05578333,13.6654,13.12544722,13.31755,1,CMIP5 -1850,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.44853946,-12.63713333,-8.9781,-11.45840556,-12.15825,1,CMIP5 -1850,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.877646698,17.04103333,19.2866,18.45093056,18.693625,1,CMIP5 -1851,tas,temperature,tgav,historical,C,Simulated,global,0.615482955,12.09455,13.7575,13.17144167,13.2987,1,CMIP5 -1851,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.523297006,-12.5461,-8.6163,-11.30106111,-12.0449,1,CMIP5 -1851,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.874696549,17.07075,19.2064,18.47319167,18.8008,1,CMIP5 -1852,tas,temperature,tgav,historical,C,Simulated,global,0.600512063,12.1044,13.6751,13.08228611,13.1655,1,CMIP5 -1852,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.540890149,-12.54343333,-8.8461,-11.50415,-12.37815,1,CMIP5 -1852,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.840484103,17.0934,19.13743333,18.40863889,18.67005,1,CMIP5 -1853,tas,temperature,tgav,historical,C,Simulated,global,0.64532553,12.05918333,13.7523,13.12711667,13.2658,1,CMIP5 -1853,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.520824887,-12.75626667,-8.7034,-11.36104722,-11.90445,1,CMIP5 -1853,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.869037052,17.05288333,19.22263333,18.43153611,18.68175,1,CMIP5 -1854,tas,temperature,tgav,historical,C,Simulated,global,0.702567472,12.05291667,13.9608,13.15549167,13.2908,1,CMIP5 -1854,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.4557504,-12.7493,-8.8847,-11.34628889,-11.69395,1,CMIP5 -1854,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.904818533,17.04756667,19.2893,18.46353611,18.726725,1,CMIP5 -1855,tas,temperature,tgav,historical,C,Simulated,global,0.692954257,12.03486667,13.8386,13.1618,13.3429,1,CMIP5 -1855,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.352992231,-12.62215,-9.0395,-11.32791667,-11.6913,1,CMIP5 -1855,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.913422177,17.0282,19.3272,18.46761111,18.736,1,CMIP5 -1856,tas,temperature,tgav,historical,C,Simulated,global,0.664959258,11.94368333,13.6864,13.08618056,13.24395,1,CMIP5 -1856,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.556142916,-12.92586667,-8.8195,-11.55796944,-12.14765,1,CMIP5 -1856,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.896158816,16.95295,19.24276667,18.42446111,18.710925,1,CMIP5 -1857,tas,temperature,tgav,historical,C,Simulated,global,0.603263056,11.90836667,13.5296,12.98857222,13.1614,1,CMIP5 -1857,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.626485167,-13.09506667,-8.8734,-11.60428889,-12.29305,1,CMIP5 -1857,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.854535302,16.86215,19.0313,18.31653889,18.597425,1,CMIP5 -1858,tas,temperature,tgav,historical,C,Simulated,global,0.632254108,11.94653333,13.6271,13.054275,13.2194,1,CMIP5 -1858,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.449341192,-12.8381,-9.0142,-11.44473889,-11.88045,1,CMIP5 -1858,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.858557446,16.91576667,19.0854,18.36133611,18.653075,1,CMIP5 -1859,tas,temperature,tgav,historical,C,Simulated,global,0.783482186,11.6494,13.6565,12.87340952,13.07,1,CMIP5 -1859,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.286879682,-12.56183333,-9.1578,-11.57974667,-12.28176,1,CMIP5 -1859,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.927416443,16.95031667,19.2169,18.21707524,18.38815,1,CMIP5 -1860,tas,temperature,tgav,historical,C,Simulated,global,0.64128193,12.02446667,13.7683,13.20613952,13.554,1,CMIP5 -1860,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.428984484,-12.5289,-8.7785,-10.99609952,-11.7617,1,CMIP5 -1860,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.872744377,16.95685,19.2737,18.49520905,18.9486,1,CMIP5 -1861,tas,temperature,tgav,historical,C,Simulated,global,0.668172266,12.02896667,13.7923,13.22872952,13.5667,1,CMIP5 -1861,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.330668385,-12.7282,-9.2622,-11.12258476,-11.6733,1,CMIP5 -1861,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.855977507,17.01168333,19.2693,18.54970238,19.037,1,CMIP5 -1862,tas,temperature,tgav,historical,C,Simulated,global,0.632903913,12.07853333,13.81966667,13.22908286,13.4859,1,CMIP5 -1862,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.396590306,-12.5089,-8.9009,-10.97847571,-11.5179,1,CMIP5 -1862,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.82308538,17.04655,19.20896667,18.51846667,19.0337,1,CMIP5 -1863,tas,temperature,tgav,historical,C,Simulated,global,0.569692271,12.10483333,13.65443333,13.16375524,13.4267,1,CMIP5 -1863,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.404615551,-12.49785,-9.272,-11.15780286,-11.5784,1,CMIP5 -1863,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.78399511,17.0342,19.10476667,18.4773081,18.9215,1,CMIP5 -1864,tas,temperature,tgav,historical,C,Simulated,global,0.600618936,12.12553333,13.8148,13.20394905,13.4759,1,CMIP5 -1864,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.478168555,-12.6361,-8.8069,-11.0464519,-11.8246,1,CMIP5 -1864,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.800144624,17.06135,19.22083333,18.50317905,18.8503,1,CMIP5 -1865,tas,temperature,tgav,historical,C,Simulated,global,0.581642202,12.16685,13.8048,13.20138429,13.4999,1,CMIP5 -1865,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.482352261,-12.72755,-8.7873,-11.07627238,-11.8482,1,CMIP5 -1865,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.77787878,17.09856667,19.2268,18.50671857,18.89778,1,CMIP5 -1866,tas,temperature,tgav,historical,C,Simulated,global,0.570401397,12.14801667,13.77336667,13.15942048,13.45,1,CMIP5 -1866,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.410307914,-12.69895,-8.879,-11.08786286,-11.5573,1,CMIP5 -1866,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.771146553,17.10113333,19.16936667,18.45798429,18.8636,1,CMIP5 -1867,tas,temperature,tgav,historical,C,Simulated,global,0.601066426,12.12728333,13.7731,13.21935429,13.435,1,CMIP5 -1867,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.41914169,-12.7315,-8.8661,-11.08136,-11.6404,1,CMIP5 -1867,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.788127154,17.07423333,19.1615,18.53010619,18.93826,1,CMIP5 -1868,tas,temperature,tgav,historical,C,Simulated,global,0.622353529,12.1461,13.8245,13.2689319,13.52634,1,CMIP5 -1868,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.418349867,-12.71775,-8.6078,-10.94378143,-11.3324,1,CMIP5 -1868,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.796855556,17.10783333,19.2184,18.56018,18.93296,1,CMIP5 -1869,tas,temperature,tgav,historical,C,Simulated,global,0.592824897,12.1813,13.8565,13.25502429,13.5579,1,CMIP5 -1869,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.380581323,-12.57275,-8.7932,-10.9817881,-11.3228,1,CMIP5 -1869,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.774712072,17.1562,19.24866667,18.55115524,18.971,1,CMIP5 -1870,tas,temperature,tgav,historical,C,Simulated,global,0.619867364,12.20503333,13.9122,13.25999619,13.3007,1,CMIP5 -1870,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.498681361,-12.91935,-8.8944,-11.10613238,-11.78676667,1,CMIP5 -1870,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.78259453,17.18365,19.27786667,18.58490524,18.97492,1,CMIP5 -1871,tas,temperature,tgav,historical,C,Simulated,global,0.625773439,12.22015,13.9494,13.28632,13.4575,1,CMIP5 -1871,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.365977697,-12.5877,-8.9946,-11.01385524,-11.716,1,CMIP5 -1871,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.825720586,17.18311667,19.31716667,18.59722333,19.04088,1,CMIP5 -1872,tas,temperature,tgav,historical,C,Simulated,global,0.640831656,12.18133333,13.94656667,13.32364429,13.6027,1,CMIP5 -1872,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.327273733,-12.52065,-8.9204,-10.89810286,-11.6418,1,CMIP5 -1872,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.822911041,17.15008333,19.3109,18.61706333,19.07216,1,CMIP5 -1873,tas,temperature,tgav,historical,C,Simulated,global,0.611641334,12.19755,13.86153333,13.26287476,13.3506,1,CMIP5 -1873,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.581275275,-12.9505,-8.6809,-11.06761429,-11.8324,1,CMIP5 -1873,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.787221084,17.16946667,19.25733333,18.58024286,19.079,1,CMIP5 -1874,tas,temperature,tgav,historical,C,Simulated,global,0.627254059,12.24735,13.93713333,13.3197819,13.4395,1,CMIP5 -1874,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.457279966,-12.60735,-8.714,-10.8995219,-11.4053,1,CMIP5 -1874,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.810972143,17.2056,19.3192,18.61304286,19.0527,1,CMIP5 -1875,tas,temperature,tgav,historical,C,Simulated,global,0.578946421,12.288,13.90346667,13.3045181,13.554,1,CMIP5 -1875,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.379124098,-12.27165,-8.8594,-10.94160524,-11.8859,1,CMIP5 -1875,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.783665511,17.25923333,19.3017,18.60281524,18.99474,1,CMIP5 -1876,tas,temperature,tgav,historical,C,Simulated,global,0.591204464,12.25706667,13.89086667,13.31271048,13.59564,1,CMIP5 -1876,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.405588244,-12.3865,-8.5244,-10.84590524,-11.4521,1,CMIP5 -1876,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.782708956,17.21206667,19.3481,18.59223857,18.97882,1,CMIP5 -1877,tas,temperature,tgav,historical,C,Simulated,global,0.616541223,12.18163333,13.8639,13.2732219,13.6202,1,CMIP5 -1877,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.460764297,-12.7077,-8.8292,-10.99189667,-11.2735,1,CMIP5 -1877,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.811471929,17.14993333,19.2514,18.57485905,18.99218,1,CMIP5 -1878,tas,temperature,tgav,historical,C,Simulated,global,0.578698907,12.2578,13.81113333,13.26362476,13.5627,1,CMIP5 -1878,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.430867701,-12.3677,-8.7114,-10.92367095,-11.5023,1,CMIP5 -1878,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.805498898,17.20201667,19.22633333,18.54878,19.03846,1,CMIP5 -1879,tas,temperature,tgav,historical,C,Simulated,global,0.635130078,12.21676667,13.8726,13.27496143,13.573,1,CMIP5 -1879,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.438508724,-12.80065,-8.8833,-10.93952429,-11.4036,1,CMIP5 -1879,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.816035875,17.16895,19.27016667,18.5658681,18.95796,1,CMIP5 -1880,tas,temperature,tgav,historical,C,Simulated,global,0.618636403,12.17973333,13.8707,13.26560667,13.4312,1,CMIP5 -1880,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.433949661,-12.71135,-9.0056,-11.11174762,-11.9958,1,CMIP5 -1880,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.806764075,17.14558333,19.2714,18.59236143,18.93858,1,CMIP5 -1881,tas,temperature,tgav,historical,C,Simulated,global,0.57202276,12.34845,13.8249,13.2935,13.5421,1,CMIP5 -1881,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.532123806,-12.78175,-8.9158,-11.08416667,-11.8826,1,CMIP5 -1881,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.780427322,17.28585,19.2864,18.61992381,18.9737,1,CMIP5 -1882,tas,temperature,tgav,historical,C,Simulated,global,0.609716753,12.36671667,13.9265,13.30666143,13.5746,1,CMIP5 -1882,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.392820614,-12.70505,-8.953,-10.95911429,-11.5528,1,CMIP5 -1882,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.805832724,17.31306667,19.3261,18.60913381,18.99842,1,CMIP5 -1883,tas,temperature,tgav,historical,C,Simulated,global,0.580760215,12.17275,13.77723333,13.19303333,13.3959,1,CMIP5 -1883,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.462293344,-12.55255,-9.055,-11.10547762,-11.8287,1,CMIP5 -1883,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.783804016,17.10846667,19.19733333,18.50178286,18.92748,1,CMIP5 -1884,tas,temperature,tgav,historical,C,Simulated,global,0.576142917,11.87023333,13.4183,12.92853238,13.23453333,1,CMIP5 -1884,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.56771515,-12.68276667,-8.7752,-11.2268781,-12.0079,1,CMIP5 -1884,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.70464367,16.79085,18.7993,18.20597143,18.5513,1,CMIP5 -1885,tas,temperature,tgav,historical,C,Simulated,global,0.576059892,11.81776667,13.40753333,12.97456429,13.1958,1,CMIP5 -1885,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.417690279,-12.71966667,-9.0227,-11.2753019,-11.8978,1,CMIP5 -1885,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.749283847,16.77288333,18.8626,18.27289476,18.6614,1,CMIP5 -1886,tas,temperature,tgav,historical,C,Simulated,global,0.608041671,11.87301667,13.56716667,13.02379619,13.2273,1,CMIP5 -1886,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.51846245,-12.8047,-8.9819,-11.32541619,-11.8385,1,CMIP5 -1886,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.785360546,16.83635,19.0548,18.34377619,18.6281,1,CMIP5 -1887,tas,temperature,tgav,historical,C,Simulated,global,0.580135127,11.9504,13.62173333,13.08088905,13.3116,1,CMIP5 -1887,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.505980852,-12.66023333,-8.7537,-11.21060524,-11.8616,1,CMIP5 -1887,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.773457677,16.91806667,19.10906667,18.38819762,18.7546,1,CMIP5 -1888,tas,temperature,tgav,historical,C,Simulated,global,0.572143147,11.99028333,13.64696667,13.07465714,13.3054,1,CMIP5 -1888,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.631368284,-12.9538,-8.842,-11.30002,-11.7945,1,CMIP5 -1888,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.789365941,16.9567,19.15996667,18.39903524,18.79588,1,CMIP5 -1889,tas,temperature,tgav,historical,C,Simulated,global,0.582478009,11.97228333,13.68996667,13.09185143,13.3878,1,CMIP5 -1889,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.396305979,-12.5518,-9.2588,-11.30918524,-12.1317,1,CMIP5 -1889,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.812549877,16.94475,19.16896667,18.42311381,18.78128,1,CMIP5 -1890,tas,temperature,tgav,historical,C,Simulated,global,0.590983557,11.93283333,13.58676667,13.08299,13.3895,1,CMIP5 -1890,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.556145951,-12.56306667,-8.5241,-11.18038762,-11.5754,1,CMIP5 -1890,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.781669943,16.91886667,19.065,18.38440429,18.77618,1,CMIP5 -1891,tas,temperature,tgav,historical,C,Simulated,global,0.567576784,11.96888333,13.5053,13.07053714,13.36326,1,CMIP5 -1891,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.559688775,-12.89156667,-8.7517,-11.2617181,-11.7131,1,CMIP5 -1891,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.769630747,16.96146667,19.1054,18.38681,18.72722,1,CMIP5 -1892,tas,temperature,tgav,historical,C,Simulated,global,0.572036432,12.03773333,13.6624,13.11958238,13.3989,1,CMIP5 -1892,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.468550443,-12.83003333,-8.9426,-11.20711762,-11.7999,1,CMIP5 -1892,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.794655865,17.01776667,19.0921,18.43473048,18.80618,1,CMIP5 -1893,tas,temperature,tgav,historical,C,Simulated,global,0.589052252,12.06985,13.7369,13.18511429,13.3936,1,CMIP5 -1893,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.458087188,-12.58953333,-8.6614,-11.13892619,-11.8646,1,CMIP5 -1893,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.780073181,17.0476,19.1988,18.50051571,18.80786,1,CMIP5 -1894,tas,temperature,tgav,historical,C,Simulated,global,0.590573918,12.10238333,13.72456667,13.18053857,13.4126,1,CMIP5 -1894,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.58956905,-12.7989,-8.4739,-11.16305476,-11.8338,1,CMIP5 -1894,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.772180352,17.0868,19.2201,18.49999857,18.85034,1,CMIP5 -1895,tas,temperature,tgav,historical,C,Simulated,global,0.635940687,12.10771667,13.9439,13.25319286,13.475,1,CMIP5 -1895,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.326308303,-12.3108,-8.7902,-10.96186524,-11.2428,1,CMIP5 -1895,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.814511474,17.0955,19.2027,18.54532714,18.93444,1,CMIP5 -1896,tas,temperature,tgav,historical,C,Simulated,global,0.603671665,12.13946667,13.7871,13.22762381,13.3944,1,CMIP5 -1896,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.532535131,-12.41983333,-8.8096,-11.17486524,-12.2789,1,CMIP5 -1896,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.831129556,17.13085,19.2354,18.55948095,18.9853,1,CMIP5 -1897,tas,temperature,tgav,historical,C,Simulated,global,0.608676766,12.14048333,13.84173333,13.24985381,13.5597,1,CMIP5 -1897,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.340389279,-12.38975,-8.9577,-11.02949619,-11.7041,1,CMIP5 -1897,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.813313724,17.12808333,19.2676,18.55516429,18.9246,1,CMIP5 -1898,tas,temperature,tgav,historical,C,Simulated,global,0.588774464,12.17486667,13.80076667,13.2056319,13.5328,1,CMIP5 -1898,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.50187481,-12.71695,-8.8656,-11.09065048,-11.6106,1,CMIP5 -1898,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.789286048,17.13475,19.27076667,18.51413524,18.8992,1,CMIP5 -1899,tas,temperature,tgav,historical,C,Simulated,global,0.612642857,12.13373333,13.81,13.26029619,13.5376,1,CMIP5 -1899,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.536944218,-12.5899,-8.4242,-10.9229919,-11.5688,1,CMIP5 -1899,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.799196059,17.11978333,19.242,18.54480333,18.99434,1,CMIP5 -1900,tas,temperature,tgav,historical,C,Simulated,global,0.618635125,12.1378,13.8077,13.25377476,13.5217,1,CMIP5 -1900,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.557478772,-12.58095,-8.526,-11.06484952,-11.791,1,CMIP5 -1900,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.834938637,17.1366,19.2982,18.56820286,19.02482,1,CMIP5 -1901,tas,temperature,tgav,historical,C,Simulated,global,0.604096911,12.1815,13.83816667,13.22836095,13.4663,1,CMIP5 -1901,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.52203886,-12.7525,-8.652,-11.02673286,-11.8326,1,CMIP5 -1901,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.816905029,17.16301667,19.25736667,18.52917048,18.9539,1,CMIP5 -1902,tas,temperature,tgav,historical,C,Simulated,global,0.587637728,12.1417,13.80436667,13.18854238,13.4881,1,CMIP5 -1902,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.404688055,-12.6265,-9.1432,-11.17746762,-11.7899,1,CMIP5 -1902,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.802583115,17.1296,19.23953333,18.51263905,18.8843,1,CMIP5 -1903,tas,temperature,tgav,historical,C,Simulated,global,0.547871009,12.02883333,13.5599,13.02557143,13.1088,1,CMIP5 -1903,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.465045965,-12.5073,-8.8598,-11.19539571,-12.1745,1,CMIP5 -1903,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.724213553,17.0029,18.9531,18.31794143,18.7825,1,CMIP5 -1904,tas,temperature,tgav,historical,C,Simulated,global,0.521647593,12.13995,13.517,13.04912095,13.1945,1,CMIP5 -1904,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.639998478,-12.96066667,-8.7139,-11.29286524,-12.2067,1,CMIP5 -1904,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.705656281,17.09511667,18.9309,18.36792905,18.78972,1,CMIP5 -1905,tas,temperature,tgav,historical,C,Simulated,global,0.532786699,12.20221667,13.5836,13.11468667,13.2663,1,CMIP5 -1905,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.514653128,-12.77995,-9.0096,-11.15440286,-11.8667,1,CMIP5 -1905,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.69583103,17.15446667,19.0562,18.41745952,18.7469,1,CMIP5 -1906,tas,temperature,tgav,historical,C,Simulated,global,0.564557128,12.20358333,13.7579,13.16300333,13.1547,1,CMIP5 -1906,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.448552102,-12.7155,-9.1678,-11.23671286,-11.7935,1,CMIP5 -1906,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.73659443,17.17496667,19.12463333,18.49479286,18.9108,1,CMIP5 -1907,tas,temperature,tgav,historical,C,Simulated,global,0.55586105,12.21828333,13.8091,13.2068719,13.2914,1,CMIP5 -1907,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.479416706,-12.71086667,-9.1803,-11.22299524,-12.1026,1,CMIP5 -1907,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.757278117,17.19206667,19.2191,18.54425333,18.96164,1,CMIP5 -1908,tas,temperature,tgav,historical,C,Simulated,global,0.565106885,12.24438333,13.7042,13.21402333,13.4213,1,CMIP5 -1908,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.470558374,-12.65665,-9.0672,-11.15729476,-11.9819,1,CMIP5 -1908,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.751025087,17.21526667,19.18,18.5390381,18.9393,1,CMIP5 -1909,tas,temperature,tgav,historical,C,Simulated,global,0.545033889,12.27851667,13.68276667,13.19183905,13.4865,1,CMIP5 -1909,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.530250901,-12.8196,-9.1946,-11.24894952,-11.7931,1,CMIP5 -1909,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.746160838,17.22726667,19.198,18.53123952,18.88066,1,CMIP5 -1910,tas,temperature,tgav,historical,C,Simulated,global,0.581103757,12.20608333,13.7219,13.22238476,13.5644,1,CMIP5 -1910,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.487019741,-12.7204,-9.2945,-11.22406762,-11.4165,1,CMIP5 -1910,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.811644247,17.17975,19.4014,18.56252048,18.98506,1,CMIP5 -1911,tas,temperature,tgav,historical,C,Simulated,global,0.60919591,12.23178333,13.8024,13.26431714,13.57172,1,CMIP5 -1911,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.36691164,-12.6987,-9.3532,-11.15979048,-11.6233,1,CMIP5 -1911,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.819712804,17.20836667,19.4107,18.60072905,18.95462,1,CMIP5 -1912,tas,temperature,tgav,historical,C,Simulated,global,0.621177495,12.18756667,14.0066,13.23177,13.3586,1,CMIP5 -1912,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.376396956,-12.8399,-9.4843,-11.21358286,-11.3075,1,CMIP5 -1912,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.797081715,17.17893333,19.2919,18.57304667,18.90346,1,CMIP5 -1913,tas,temperature,tgav,historical,C,Simulated,global,0.590704929,12.16965,13.8876,13.21105429,13.2299,1,CMIP5 -1913,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.473996418,-12.8256,-9.0437,-11.19118571,-11.514,1,CMIP5 -1913,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.769740438,17.15133333,19.20753333,18.54327667,18.94372,1,CMIP5 -1914,tas,temperature,tgav,historical,C,Simulated,global,0.553761348,12.23668333,13.80516667,13.25771429,13.4536,1,CMIP5 -1914,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.354563091,-12.40893333,-8.9854,-10.98315952,-11.6829,1,CMIP5 -1914,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.765517946,17.20905,19.27836667,18.55438095,18.9671,1,CMIP5 -1915,tas,temperature,tgav,historical,C,Simulated,global,0.568402039,12.25905,13.78366667,13.28277952,13.5388,1,CMIP5 -1915,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.308140163,-12.1823,-9.0429,-10.97654857,-11.7463,1,CMIP5 -1915,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.78737369,17.23483333,19.2515,18.58355524,19.01832,1,CMIP5 -1916,tas,temperature,tgav,historical,C,Simulated,global,0.654346938,12.22666667,14.0057,13.31568714,13.5546,1,CMIP5 -1916,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.31762556,-12.46495,-9.1854,-11.02433857,-11.5328,1,CMIP5 -1916,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.82915148,17.24511667,19.3379,18.63422714,19.09144,1,CMIP5 -1917,tas,temperature,tgav,historical,C,Simulated,global,0.669748534,12.25116667,14.0615,13.35591952,13.5986,1,CMIP5 -1917,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.449215816,-12.809,-9.0543,-10.97777762,-11.3343,1,CMIP5 -1917,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.831219094,17.24401667,19.3639,18.67296619,19.11818,1,CMIP5 -1918,tas,temperature,tgav,historical,C,Simulated,global,0.593065879,12.29371667,13.86623333,13.33687571,13.5478,1,CMIP5 -1918,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.442824024,-12.3999,-8.931,-10.93531714,-11.7052,1,CMIP5 -1918,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.799548459,17.25041667,19.3346,18.64004238,19.06668,1,CMIP5 -1919,tas,temperature,tgav,historical,C,Simulated,global,0.655859997,12.21955,13.9726,13.3119481,13.4254,1,CMIP5 -1919,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.547586793,-12.7682,-8.6494,-10.94282714,-11.1784,1,CMIP5 -1919,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.806151101,17.21816667,19.3281,18.61255952,19.0879,1,CMIP5 -1920,tas,temperature,tgav,historical,C,Simulated,global,0.616068632,12.22585,13.92706667,13.28723095,13.4888,1,CMIP5 -1920,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.435171135,-12.56435,-8.8841,-11.00466667,-11.8511,1,CMIP5 -1920,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.804653425,17.19908333,19.3544,18.59548905,19.06,1,CMIP5 -1921,tas,temperature,tgav,historical,C,Simulated,global,0.571547386,12.32706667,13.8592,13.29265238,13.4848,1,CMIP5 -1921,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.401317462,-12.4778,-8.9535,-10.93017905,-11.5873,1,CMIP5 -1921,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.772508546,17.28131667,19.27683333,18.58602857,19.0447,1,CMIP5 -1922,tas,temperature,tgav,historical,C,Simulated,global,0.594085591,12.32143333,13.91606667,13.30428286,13.3505,1,CMIP5 -1922,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.637520694,-12.6994,-8.6087,-11.1089119,-11.971,1,CMIP5 -1922,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.79264063,17.30363333,19.34516667,18.63967143,19.0825,1,CMIP5 -1923,tas,temperature,tgav,historical,C,Simulated,global,0.619226645,12.31006667,14.0227,13.34855095,13.6046,1,CMIP5 -1923,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.415454407,-12.4401,-8.8543,-10.94333619,-11.4732,1,CMIP5 -1923,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.813049871,17.29841667,19.346,18.65647524,19.05236,1,CMIP5 -1924,tas,temperature,tgav,historical,C,Simulated,global,0.599463994,12.28428333,13.85826667,13.34261429,13.5981,1,CMIP5 -1924,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.359233042,-12.43305,-9.0777,-10.95518571,-11.6323,1,CMIP5 -1924,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.780510122,17.28508333,19.2984,18.65178095,19.1254,1,CMIP5 -1925,tas,temperature,tgav,historical,C,Simulated,global,0.591873891,12.30145,14.01616667,13.35502952,13.4858,1,CMIP5 -1925,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.428643454,-12.49625,-8.8811,-11.04994095,-11.96503333,1,CMIP5 -1925,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.747755339,17.32928333,19.44073333,18.68789667,19.045,1,CMIP5 -1926,tas,temperature,tgav,historical,C,Simulated,global,0.565213841,12.39125,13.91923333,13.37079619,13.5348,1,CMIP5 -1926,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.529215476,-12.32985,-8.5745,-10.88582524,-11.6007,1,CMIP5 -1926,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.7520703,17.37201667,19.34703333,18.67023857,19.04622,1,CMIP5 -1927,tas,temperature,tgav,historical,C,Simulated,global,0.576784052,12.38425,13.99733333,13.3741019,13.5066,1,CMIP5 -1927,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.3844321,-12.2958,-8.7276,-10.79868286,-11.5652,1,CMIP5 -1927,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.751039364,17.3554,19.38756667,18.65622238,18.98344,1,CMIP5 -1928,tas,temperature,tgav,historical,C,Simulated,global,0.631714833,12.32796667,13.9933,13.39894238,13.6251,1,CMIP5 -1928,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.445158372,-12.53465,-8.6129,-10.85964381,-11.5257,1,CMIP5 -1928,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.796711771,17.32461667,19.39376667,18.69952762,19.04166,1,CMIP5 -1929,tas,temperature,tgav,historical,C,Simulated,global,0.595794846,12.39063333,13.9408,13.36331238,13.5181,1,CMIP5 -1929,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.460843439,-12.45935,-8.6269,-10.84998238,-11.4609,1,CMIP5 -1929,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.759413418,17.36641667,19.30643333,18.65459857,19.07724,1,CMIP5 -1930,tas,temperature,tgav,historical,C,Simulated,global,0.580842691,12.36556667,13.9052,13.33027381,13.3918,1,CMIP5 -1930,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.436611919,-12.4071,-8.9793,-11.02368048,-11.7651,1,CMIP5 -1930,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.759524031,17.34295,19.34793333,18.65170476,19.06,1,CMIP5 -1931,tas,temperature,tgav,historical,C,Simulated,global,0.597411037,12.35776667,14.0071,13.37608952,13.5927,1,CMIP5 -1931,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.437116929,-12.50305,-8.6394,-10.8573419,-11.4877,1,CMIP5 -1931,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.777693202,17.33936667,19.45406667,18.67127048,19.02746,1,CMIP5 -1932,tas,temperature,tgav,historical,C,Simulated,global,0.561769029,12.3945,13.9593,13.38562857,13.5771,1,CMIP5 -1932,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.481463905,-12.32045,-8.4919,-10.84524905,-11.5989,1,CMIP5 -1932,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.762151585,17.37721667,19.39483333,18.68084143,19.05954,1,CMIP5 -1933,tas,temperature,tgav,historical,C,Simulated,global,0.567114021,12.36483333,13.9672,13.36128905,13.6613,1,CMIP5 -1933,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.458077039,-12.2258,-8.6832,-10.91244476,-11.8723,1,CMIP5 -1933,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.784632667,17.33723333,19.4301,18.66543905,19.03784,1,CMIP5 -1934,tas,temperature,tgav,historical,C,Simulated,global,0.585636379,12.31826667,13.9323,13.3905481,13.71202,1,CMIP5 -1934,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.469868457,-12.26275,-8.6005,-10.84522905,-11.2741,1,CMIP5 -1934,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.809159739,17.29291667,19.4055,18.6855581,19.04514,1,CMIP5 -1935,tas,temperature,tgav,historical,C,Simulated,global,0.617004606,12.26186667,14.022,13.39404095,13.5917,1,CMIP5 -1935,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.456309499,-12.283,-8.8383,-10.92252857,-11.4853,1,CMIP5 -1935,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.797660063,17.24798333,19.47263333,18.70601667,19.0682,1,CMIP5 -1936,tas,temperature,tgav,historical,C,Simulated,global,0.601905854,12.45908333,14.1112,13.45563762,13.6065,1,CMIP5 -1936,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.406340237,-12.38715,-8.8859,-10.82559,-11.3512,1,CMIP5 -1936,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.766049066,17.4416,19.47463333,18.76067619,19.0737,1,CMIP5 -1937,tas,temperature,tgav,historical,C,Simulated,global,0.543499928,12.5354,13.9974,13.45371429,13.6557,1,CMIP5 -1937,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.469794533,-12.23746667,-8.8243,-10.84699952,-11.6752,1,CMIP5 -1937,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.744837712,17.51763333,19.475,18.76270048,19.08992,1,CMIP5 -1938,tas,temperature,tgav,historical,C,Simulated,global,0.570035751,12.47826667,14.04273333,13.50325286,13.6659,1,CMIP5 -1938,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.410068757,-12.0601,-8.6519,-10.70494524,-11.4321,1,CMIP5 -1938,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.751087098,17.46858333,19.49273333,18.79220524,19.14602,1,CMIP5 -1939,tas,temperature,tgav,historical,C,Simulated,global,0.565001665,12.43316667,14.07333333,13.46858857,13.594,1,CMIP5 -1939,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.483725519,-12.1068,-8.5698,-10.78083048,-11.75,1,CMIP5 -1939,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.745235003,17.41491667,19.5047,18.76691095,19.14816,1,CMIP5 -1940,tas,temperature,tgav,historical,C,Simulated,global,0.576989672,12.43326667,14.04436667,13.4525519,13.6989,1,CMIP5 -1940,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.342729044,-12.1202,-8.8331,-10.75482381,-11.5556,1,CMIP5 -1940,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.769879363,17.4012,19.44766667,18.74188381,19.06962,1,CMIP5 -1941,tas,temperature,tgav,historical,C,Simulated,global,0.575160363,12.53263333,14.1023,13.51856667,13.7786,1,CMIP5 -1941,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.308229522,-12.173,-8.9123,-10.71210238,-11.3108,1,CMIP5 -1941,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.770252381,17.47841667,19.4856,18.8129619,19.1276,1,CMIP5 -1942,tas,temperature,tgav,historical,C,Simulated,global,0.571546019,12.47725,14.0446,13.47086857,13.7285,1,CMIP5 -1942,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.454996352,-12.32095,-8.7221,-10.77595048,-11.4138,1,CMIP5 -1942,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.758253184,17.43535,19.4736,18.76838429,19.14614,1,CMIP5 -1943,tas,temperature,tgav,historical,C,Simulated,global,0.563617191,12.49538333,14.06456667,13.46534429,13.7168,1,CMIP5 -1943,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.501138917,-12.3007,-8.5093,-10.68510381,-11.3615,1,CMIP5 -1943,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.753402553,17.42878333,19.45083333,18.74203095,19.1307,1,CMIP5 -1944,tas,temperature,tgav,historical,C,Simulated,global,0.552680727,12.51541667,14.00273333,13.47941286,13.7584,1,CMIP5 -1944,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.526516959,-12.29675,-8.6141,-10.76046952,-11.3162,1,CMIP5 -1944,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.739489523,17.48215,19.42736667,18.77504667,19.16376,1,CMIP5 -1945,tas,temperature,tgav,historical,C,Simulated,global,0.585091077,12.51403333,14.05623333,13.49791095,13.6205,1,CMIP5 -1945,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.576380684,-12.45605,-8.6334,-10.81827048,-11.7513,1,CMIP5 -1945,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.762841228,17.4779,19.5094,18.81030143,19.16316,1,CMIP5 -1946,tas,temperature,tgav,historical,C,Simulated,global,0.540415308,12.5491,14.11073333,13.44354333,13.6619,1,CMIP5 -1946,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.476437299,-12.3445,-8.7832,-10.75994857,-11.4237,1,CMIP5 -1946,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.731991123,17.51336667,19.48113333,18.73133429,19.0918,1,CMIP5 -1947,tas,temperature,tgav,historical,C,Simulated,global,0.569577105,12.55728333,14.0973,13.4731219,13.7169,1,CMIP5 -1947,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.430459287,-12.1904,-8.9171,-10.70155476,-11.2355,1,CMIP5 -1947,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.748765679,17.49841667,19.4606,18.75425667,19.15138,1,CMIP5 -1948,tas,temperature,tgav,historical,C,Simulated,global,0.632436861,12.52766667,14.08266667,13.48740762,13.7233,1,CMIP5 -1948,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.50665285,-12.60635,-8.7622,-10.73574,-11.3841,1,CMIP5 -1948,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.783258718,17.53021667,19.4655,18.77956905,19.1559,1,CMIP5 -1949,tas,temperature,tgav,historical,C,Simulated,global,0.637357907,12.55671667,14.16486667,13.5388919,13.88806,1,CMIP5 -1949,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.493144551,-12.64645,-8.705,-10.69006667,-11.1717,1,CMIP5 -1949,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.787214742,17.54786667,19.5654,18.83251667,19.1587,1,CMIP5 -1950,tas,temperature,tgav,historical,C,Simulated,global,0.575437616,12.55125,14.1161,13.52020143,13.8187,1,CMIP5 -1950,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.483002211,-12.24005,-8.649,-10.72405,-11.385,1,CMIP5 -1950,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.780212186,17.52418333,19.6319,18.81715381,19.14286,1,CMIP5 -1951,tas,temperature,tgav,historical,C,Simulated,global,0.571032884,12.5465,14.08383333,13.46280619,13.7284,1,CMIP5 -1951,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.573115546,-12.5091,-8.6754,-10.82857571,-11.4748,1,CMIP5 -1951,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.766370669,17.48056667,19.47903333,18.76967857,19.1107,1,CMIP5 -1952,tas,temperature,tgav,historical,C,Simulated,global,0.577808413,12.51191667,14.06733333,13.43524143,13.5221,1,CMIP5 -1952,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.562392073,-12.55995,-8.5223,-10.83849619,-11.8341,1,CMIP5 -1952,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.738351471,17.50691667,19.47616667,18.73914619,19.07674,1,CMIP5 -1953,tas,temperature,tgav,historical,C,Simulated,global,0.567928028,12.52255,14.1559,13.43229857,13.6336,1,CMIP5 -1953,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.513116897,-12.36805,-8.6871,-10.79441048,-11.5638,1,CMIP5 -1953,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.749057135,17.49581667,19.52583333,18.72556143,19.08078,1,CMIP5 -1954,tas,temperature,tgav,historical,C,Simulated,global,0.556304037,12.53643333,14.08526667,13.45319857,13.6545,1,CMIP5 -1954,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.460919898,-12.5755,-8.6462,-10.80324762,-11.6183,1,CMIP5 -1954,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.72226414,17.53601667,19.46156667,18.75368333,19.0436,1,CMIP5 -1955,tas,temperature,tgav,historical,C,Simulated,global,0.557110287,12.5073,14.08383333,13.45182905,13.69432,1,CMIP5 -1955,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.359131068,-12.19195,-8.6263,-10.78559952,-11.3707,1,CMIP5 -1955,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.758358926,17.5094,19.48283333,18.74807762,19.06066,1,CMIP5 -1956,tas,temperature,tgav,historical,C,Simulated,global,0.573183335,12.53386667,14.1117,13.46411524,13.6433,1,CMIP5 -1956,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.507439308,-12.32285,-8.5145,-10.73050429,-11.67,1,CMIP5 -1956,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.765597203,17.49636667,19.50276667,18.7510119,19.0629,1,CMIP5 -1957,tas,temperature,tgav,historical,C,Simulated,global,0.533486104,12.5703,14.16,13.46687,13.6818,1,CMIP5 -1957,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.46742203,-12.2995,-8.5392,-10.7079619,-11.3453,1,CMIP5 -1957,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.716222472,17.54551667,19.51736667,18.7486919,19.06136,1,CMIP5 -1958,tas,temperature,tgav,historical,C,Simulated,global,0.563934854,12.48355,14.1941,13.48249857,13.69984,1,CMIP5 -1958,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.367196306,-12.1428,-8.7058,-10.7724481,-11.51903333,1,CMIP5 -1958,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.748400041,17.46625,19.56266667,18.78215381,19.03336,1,CMIP5 -1959,tas,temperature,tgav,historical,C,Simulated,global,0.58398145,12.48976667,14.17606667,13.49789905,13.68966,1,CMIP5 -1959,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.395054046,-11.9336,-8.3568,-10.6639281,-11.2994,1,CMIP5 -1959,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.785288595,17.4809,19.56983333,18.7773919,19.02566,1,CMIP5 -1960,tas,temperature,tgav,historical,C,Simulated,global,0.529178855,12.615,14.2053,13.50851,13.63512,1,CMIP5 -1960,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.550288052,-12.1605,-8.1561,-10.68905429,-11.4473,1,CMIP5 -1960,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.726553383,17.57875,19.613,18.79563429,18.96234,1,CMIP5 -1961,tas,temperature,tgav,historical,C,Simulated,global,0.548484011,12.55788333,14.09866667,13.49040143,13.65436,1,CMIP5 -1961,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.472309748,-12.15405,-8.37,-10.69651286,-11.1927,1,CMIP5 -1961,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.727827965,17.54178333,19.55206667,18.77473429,18.96774,1,CMIP5 -1962,tas,temperature,tgav,historical,C,Simulated,global,0.603995422,12.4665,14.15816667,13.45978381,13.6407,1,CMIP5 -1962,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.517710699,-12.5461,-8.4433,-10.80479905,-11.4869,1,CMIP5 -1962,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.778230569,17.4371,19.6135,18.76199143,18.97804,1,CMIP5 -1963,tas,temperature,tgav,historical,C,Simulated,global,0.589470696,12.3781,14.06016667,13.3424781,13.5186,1,CMIP5 -1963,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.483235409,-12.4942,-8.5528,-10.87862429,-11.6026,1,CMIP5 -1963,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.75915226,17.35845,19.4514,18.63483714,18.96476,1,CMIP5 -1964,tas,temperature,tgav,historical,C,Simulated,global,0.574025206,12.27055,13.85233333,13.2818319,13.47,1,CMIP5 -1964,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.561475557,-12.4628,-8.3216,-10.87770762,-11.6935,1,CMIP5 -1964,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.725934252,17.23215,19.28863333,18.56097476,18.83384,1,CMIP5 -1965,tas,temperature,tgav,historical,C,Simulated,global,0.607482117,12.30871667,13.9487,13.36971238,13.5254,1,CMIP5 -1965,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.440393875,-12.2897,-8.5101,-10.80780762,-11.3548,1,CMIP5 -1965,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.777876201,17.26488333,19.425,18.65215333,18.76534,1,CMIP5 -1966,tas,temperature,tgav,historical,C,Simulated,global,0.585184388,12.35971667,14.00693333,13.37895857,13.5678,1,CMIP5 -1966,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.501618172,-12.31355,-8.378,-10.83795286,-11.6015,1,CMIP5 -1966,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.752132057,17.343,19.48453333,18.6702919,18.73576,1,CMIP5 -1967,tas,temperature,tgav,historical,C,Simulated,global,0.52927109,12.46836667,14.07933333,13.40808,13.5498,1,CMIP5 -1967,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.528695965,-12.2624,-8.4792,-10.88109762,-11.819,1,CMIP5 -1967,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.724483699,17.44171667,19.53493333,18.71475,18.8263,1,CMIP5 -1968,tas,temperature,tgav,historical,C,Simulated,global,0.566499044,12.40981667,14.09013333,13.41491429,13.6105,1,CMIP5 -1968,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.438950042,-12.1289,-8.6238,-10.82722762,-11.6141,1,CMIP5 -1968,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.760046322,17.39536667,19.52383333,18.71136143,18.90948,1,CMIP5 -1969,tas,temperature,tgav,historical,C,Simulated,global,0.604276797,12.3536,13.99133333,13.40466905,13.5787,1,CMIP5 -1969,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.484762543,-12.1736,-8.401,-10.75671429,-11.2226,1,CMIP5 -1969,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.779597285,17.32681667,19.5234,18.68336238,18.87342,1,CMIP5 -1970,tas,temperature,tgav,historical,C,Simulated,global,0.583788793,12.50326667,14.0561,13.46901571,13.57186,1,CMIP5 -1970,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.60235939,-12.45575,-8.3753,-10.73931571,-10.8833,1,CMIP5 -1970,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.773418949,17.45083333,19.6907,18.75733476,18.84816,1,CMIP5 -1971,tas,temperature,tgav,historical,C,Simulated,global,0.56824851,12.51698333,14.12,13.47187333,13.60868,1,CMIP5 -1971,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.388756309,-12.13905,-8.6997,-10.73659667,-11.0877,1,CMIP5 -1971,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.774779506,17.46801667,19.6528,18.76097048,18.93286,1,CMIP5 -1972,tas,temperature,tgav,historical,C,Simulated,global,0.579893521,12.52021667,14.13863333,13.49255857,13.66606,1,CMIP5 -1972,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.52828359,-12.37055,-8.3346,-10.77930048,-11.2287,1,CMIP5 -1972,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.766646707,17.49168333,19.62,18.79586952,19.02142,1,CMIP5 -1973,tas,temperature,tgav,historical,C,Simulated,global,0.60516095,12.56331667,14.18513333,13.57918571,13.6748,1,CMIP5 -1973,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.445420365,-12.2685,-8.3127,-10.63016381,-10.8857,1,CMIP5 -1973,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.76821117,17.53205,19.61116667,18.86830952,18.9999,1,CMIP5 -1974,tas,temperature,tgav,historical,C,Simulated,global,0.608719412,12.57798333,14.24926667,13.55834714,13.67428,1,CMIP5 -1974,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.36207235,-12.11315,-8.49,-10.58808619,-11.3219,1,CMIP5 -1974,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.778844628,17.54018333,19.644,18.83472762,18.97896,1,CMIP5 -1975,tas,temperature,tgav,historical,C,Simulated,global,0.591385197,12.58413333,14.16106667,13.50495286,13.59752,1,CMIP5 -1975,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.512171238,-12.63205,-8.4595,-10.68282714,-11.0145,1,CMIP5 -1975,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.757727291,17.53233333,19.6215,18.7897481,18.90042,1,CMIP5 -1976,tas,temperature,tgav,historical,C,Simulated,global,0.567929242,12.64708333,14.20393333,13.49742952,13.59334,1,CMIP5 -1976,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.347664529,-12.4283,-8.8041,-10.71264714,-11.0294,1,CMIP5 -1976,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.739044822,17.59123333,19.60103333,18.78699238,18.94958,1,CMIP5 -1977,tas,temperature,tgav,historical,C,Simulated,global,0.607114542,12.61653333,14.21246667,13.57261286,13.69624,1,CMIP5 -1977,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.453407735,-12.2775,-8.4131,-10.68528952,-11.1424,1,CMIP5 -1977,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.797581111,17.5965,19.66783333,18.8725219,19.03352,1,CMIP5 -1978,tas,temperature,tgav,historical,C,Simulated,global,0.605968564,12.64025,14.2887,13.64020571,13.68924,1,CMIP5 -1978,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.230226976,-11.88785,-8.5574,-10.4724919,-10.8863,1,CMIP5 -1978,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.788889488,17.61486667,19.7452,18.90908048,19.01838,1,CMIP5 -1979,tas,temperature,tgav,historical,C,Simulated,global,0.55608865,12.76991667,14.40113333,13.66658857,13.73032,1,CMIP5 -1979,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.406003935,-11.8909,-8.1875,-10.4451881,-10.9283,1,CMIP5 -1979,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.743456792,17.73405,19.79073333,18.93489619,19.04734,1,CMIP5 -1980,tas,temperature,tgav,historical,C,Simulated,global,0.573455917,12.73705,14.36453333,13.68759048,13.7718,1,CMIP5 -1980,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.337823918,-11.8816,-8.4147,-10.46223095,-11.2779,1,CMIP5 -1980,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.755411278,17.7153,19.75066667,18.96452952,19.05994,1,CMIP5 -1981,tas,temperature,tgav,historical,C,Simulated,global,0.600400266,12.82776667,14.4269,13.78137238,13.78174,1,CMIP5 -1981,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.310370102,-11.92995,-8.4476,-10.34161857,-10.5137,1,CMIP5 -1981,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.788306558,17.79273333,19.9498,19.05171905,19.0689,1,CMIP5 -1982,tas,temperature,tgav,historical,C,Simulated,global,0.595849814,12.80441667,14.40226667,13.76321619,13.73038,1,CMIP5 -1982,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.237384581,-11.67915,-8.4986,-10.32422476,-10.7326,1,CMIP5 -1982,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.798133881,17.76861667,19.9089,19.02599143,19.00514,1,CMIP5 -1983,tas,temperature,tgav,historical,C,Simulated,global,0.566156687,12.71718333,14.2814,13.62907905,13.7463,1,CMIP5 -1983,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.390993422,-11.96405,-8.0666,-10.43456381,-11.17983333,1,CMIP5 -1983,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.718877769,17.66923333,19.5974,18.88774333,18.94562,1,CMIP5 -1984,tas,temperature,tgav,historical,C,Simulated,global,0.55964792,12.80468333,14.354,13.65611476,13.6866,1,CMIP5 -1984,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.392889458,-12.26025,-8.3933,-10.46982905,-11.00026667,1,CMIP5 -1984,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.709126915,17.77155,19.691,18.9282219,18.97702,1,CMIP5 -1985,tas,temperature,tgav,historical,C,Simulated,global,0.603893212,12.76675,14.41656667,13.7016481,13.77632,1,CMIP5 -1985,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.419317977,-12.178,-8.3254,-10.36585095,-10.8695,1,CMIP5 -1985,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.767352059,17.67613333,19.74726667,18.96006571,19.05836,1,CMIP5 -1986,tas,temperature,tgav,historical,C,Simulated,global,0.617603601,12.78695,14.54046667,13.72500238,13.802,1,CMIP5 -1986,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.32006517,-12.07675,-8.4341,-10.29161429,-10.7385,1,CMIP5 -1986,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.750653437,17.72,19.8184,18.97273286,19.08168,1,CMIP5 -1987,tas,temperature,tgav,historical,C,Simulated,global,0.547029382,12.93335,14.57453333,13.7507819,13.80084,1,CMIP5 -1987,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.365861081,-11.8702,-8.4992,-10.34069286,-10.7978,1,CMIP5 -1987,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.716926464,17.85583333,19.87203333,19.01467667,19.08232,1,CMIP5 -1988,tas,temperature,tgav,historical,C,Simulated,global,0.593274965,12.9746,14.66123333,13.82235619,13.81826,1,CMIP5 -1988,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.291415523,-11.91975,-8.5304,-10.21189714,-10.3571,1,CMIP5 -1988,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.757277693,17.9074,19.93753333,19.07359048,19.1073,1,CMIP5 -1989,tas,temperature,tgav,historical,C,Simulated,global,0.61991336,12.98341667,14.65456667,13.86285476,13.8773,1,CMIP5 -1989,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.213701496,-11.94225,-8.4604,-10.10479905,-10.5285,1,CMIP5 -1989,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.767811176,17.93815,19.93623333,19.10038333,19.1439,1,CMIP5 -1990,tas,temperature,tgav,historical,C,Simulated,global,0.622319614,13.06535,14.7624,13.93818571,13.9454,1,CMIP5 -1990,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.302032298,-11.7437,-8.0003,-9.989303333,-10.41023333,1,CMIP5 -1990,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.802752862,18.00336667,20.01816667,19.16723476,19.22506,1,CMIP5 -1991,tas,temperature,tgav,historical,C,Simulated,global,0.60924112,12.97978333,14.68503333,13.84672095,13.93498,1,CMIP5 -1991,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.357837369,-11.85875,-8.0879,-10.1204419,-10.4627,1,CMIP5 -1991,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.775455778,17.93431667,19.93556667,19.08430048,19.20392,1,CMIP5 -1992,tas,temperature,tgav,historical,C,Simulated,global,0.560236649,12.81908333,14.33606667,13.63375429,13.6909,1,CMIP5 -1992,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.279485358,-11.80675,-8.2071,-10.25110143,-10.71286667,1,CMIP5 -1992,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.688791692,17.74301667,19.56596667,18.85341048,18.95654,1,CMIP5 -1993,tas,temperature,tgav,historical,C,Simulated,global,0.58126713,12.90383333,14.40663333,13.68197524,13.74106,1,CMIP5 -1993,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.438885344,-12.14315,-8.1839,-10.33298048,-10.88323333,1,CMIP5 -1993,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.72782402,17.83773333,19.68686667,18.92945,19.0281,1,CMIP5 -1994,tas,temperature,tgav,historical,C,Simulated,global,0.60106197,12.93786667,14.53496667,13.80986762,13.81244,1,CMIP5 -1994,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.404242423,-11.87175,-7.8044,-10.06345476,-10.6717,1,CMIP5 -1994,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.754626339,17.87208333,19.87696667,19.02689143,19.06804,1,CMIP5 -1995,tas,temperature,tgav,historical,C,Simulated,global,0.611468334,12.9809,14.5855,13.85706714,13.87322,1,CMIP5 -1995,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.286983618,-11.97835,-8.3275,-10.09362429,-10.0849,1,CMIP5 -1995,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.741235431,17.9507,19.89146667,19.0899581,19.12654,1,CMIP5 -1996,tas,temperature,tgav,historical,C,Simulated,global,0.60217325,13.0776,14.6731,13.9373325,13.88143,1,CMIP5 -1996,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.267951378,-11.9242,-8.1268,-9.808249583,-9.814341667,1,CMIP5 -1996,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.727108486,18.0319,19.9678,19.14958125,19.06365,1,CMIP5 -1997,tas,temperature,tgav,historical,C,Simulated,global,0.608510854,13.1573,14.7193,14.0113,13.9707,1,CMIP5 -1997,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.214858924,-11.5434,-8.1302,-9.639814583,-9.593358333,1,CMIP5 -1997,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.760270501,18.10406667,20.1093,19.20213333,19.12525,1,CMIP5 -1998,tas,temperature,tgav,historical,C,Simulated,global,0.555819744,13.223,14.7748,14.0092675,14.03642,1,CMIP5 -1998,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.301306864,-11.5962,-7.9365,-9.634560833,-9.54255,1,CMIP5 -1998,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.710442859,18.16681667,20.03726667,19.19845542,19.19763,1,CMIP5 -1999,tas,temperature,tgav,historical,C,Simulated,global,0.55337443,13.25926667,14.80683333,14.05290625,14.03305,1,CMIP5 -1999,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.275908899,-11.50325,-7.8191,-9.583581667,-9.605741667,1,CMIP5 -1999,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.72810072,18.19575,20.1552,19.24115042,19.19616,1,CMIP5 -2000,tas,temperature,tgav,historical,C,Simulated,global,0.566282485,13.28335,14.89683333,14.09282792,14.07937,1,CMIP5 -2000,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.107365945,-11.2421,-8.1951,-9.546080833,-9.599166667,1,CMIP5 -2000,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.713584751,18.23293333,20.14143333,19.28152583,19.24877,1,CMIP5 -2001,tas,temperature,tgav,historical,C,Simulated,global,0.548691502,13.3628,14.8707,14.1498425,14.25012,1,CMIP5 -2001,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.275720481,-11.425,-7.9677,-9.47711875,-9.550158333,1,CMIP5 -2001,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.682435542,18.28735,20.14623333,19.33553042,19.38663,1,CMIP5 -2002,tas,temperature,tgav,historical,C,Simulated,global,0.526902655,13.44645,14.9216,14.18403375,14.31916,1,CMIP5 -2002,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.277594863,-11.4012,-7.9417,-9.477480833,-9.534883333,1,CMIP5 -2002,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.670536152,18.37476667,20.18543333,19.37740375,19.46854,1,CMIP5 -2003,tas,temperature,tgav,historical,C,Simulated,global,0.549774468,13.42685,14.89156667,14.19163708,14.24214,1,CMIP5 -2003,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.118572496,-11.02805,-8.2355,-9.484599583,-9.482233333,1,CMIP5 -2003,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.716540909,18.34013333,20.15183333,19.38789708,19.40883,1,CMIP5 -2004,tas,temperature,tgav,historical,C,Simulated,global,0.56151199,13.41526667,14.95226667,14.22377917,14.22755,1,CMIP5 -2004,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.194757313,-11.36195,-8.0035,-9.437593333,-9.355508333,1,CMIP5 -2004,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.704022223,18.34925,20.2334,19.4169,19.3984,1,CMIP5 -2005,tas,temperature,tgav,historical,C,Simulated,global,0.593094546,13.4988,15.046,14.32213292,14.32274,1,CMIP5 -2005,tas,temperature,tgav_HL,historical,C,Simulated,HL,1.13818592,-11.34915,-8.1546,-9.346887917,-9.16475,1,CMIP5 -2005,tas,temperature,tgav_LL,historical,C,Simulated,LL,0.752197196,18.42595,20.3819,19.51736167,19.51078,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp26/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp26/ensemble_mean_model.csv deleted file mode 100644 index befb09588..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp26/ensemble_mean_model.csv +++ /dev/null @@ -1,4399 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",14.998 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",14.9917 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",15.0656 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",15.0655 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",15.1275 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",15.1439 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",15.049 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",15.142 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",15.1207 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",15.1263 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",15.1433 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",15.2088 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",15.0879 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",15.0626 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",15.128 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",15.1259 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",15.2292 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",15.401 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",15.2584 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",15.31 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",15.4393 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",15.5975 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",15.5142 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",15.4695 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",15.4735 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",15.4364 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",15.4983 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",15.4847 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",15.5066 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",15.5574 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",15.5628 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",15.6303 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",15.7259 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",15.6608 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",15.6173 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",15.5366 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",15.455 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",15.3884 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",15.4618 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",15.5385 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",15.5132 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",15.5904 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",15.526 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",15.5542 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",15.625 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",15.5944 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",15.4723 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",15.3875 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",15.5216 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",15.5935 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",15.4656 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",15.5707 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",15.6155 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",15.6427 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",15.7998 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",15.7259 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",15.6844 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",15.8168 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",15.7126 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",15.7035 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",15.7219 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",15.6488000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",15.68 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",15.5232 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",15.5449 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",15.5276 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",15.5999 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",15.4922 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",15.5392000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",15.5298 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",15.5171 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",15.4936 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",15.5792 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",15.5108 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",15.6208 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",15.5457 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",15.5329 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",15.4641 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",15.5383 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",15.3533 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",15.4511 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",15.3886 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",15.4724000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",15.5623000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",15.5106 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",15.5362 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",15.6005 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",15.6236 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",15.5507 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",15.6075 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",15.7448 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",15.7515 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",15.7737 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",15.7053 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",15.7224000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2101,"Simulated","C","global",15.6977 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2102,"Simulated","C","global",15.8002 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2103,"Simulated","C","global",15.7404 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2104,"Simulated","C","global",15.7102 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2105,"Simulated","C","global",15.5237 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2106,"Simulated","C","global",15.6758 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2107,"Simulated","C","global",15.5994 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2108,"Simulated","C","global",15.4764 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2109,"Simulated","C","global",15.4783 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2110,"Simulated","C","global",15.5227 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2111,"Simulated","C","global",15.5187 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2112,"Simulated","C","global",15.5165 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2113,"Simulated","C","global",15.5714 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2114,"Simulated","C","global",15.4222 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2115,"Simulated","C","global",15.4396 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2116,"Simulated","C","global",15.5134 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2117,"Simulated","C","global",15.5343 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2118,"Simulated","C","global",15.6827 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2119,"Simulated","C","global",15.6366 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2120,"Simulated","C","global",15.5324 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2121,"Simulated","C","global",15.5958 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2122,"Simulated","C","global",15.7147000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2123,"Simulated","C","global",15.5232 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2124,"Simulated","C","global",15.5201 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2125,"Simulated","C","global",15.6324 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2126,"Simulated","C","global",15.4332 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2127,"Simulated","C","global",15.4888 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2128,"Simulated","C","global",15.5877 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2129,"Simulated","C","global",15.5059 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2130,"Simulated","C","global",15.5062 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2131,"Simulated","C","global",15.4497 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2132,"Simulated","C","global",15.4226 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2133,"Simulated","C","global",15.4306 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2134,"Simulated","C","global",15.3056 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2135,"Simulated","C","global",15.4355 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2136,"Simulated","C","global",15.3014 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2137,"Simulated","C","global",15.2489 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2138,"Simulated","C","global",15.3553 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2139,"Simulated","C","global",15.3443 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2140,"Simulated","C","global",15.376 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2141,"Simulated","C","global",15.4697 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2142,"Simulated","C","global",15.4288 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2143,"Simulated","C","global",15.5016 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2144,"Simulated","C","global",15.4944 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2145,"Simulated","C","global",15.5325 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2146,"Simulated","C","global",15.5231 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2147,"Simulated","C","global",15.4538 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2148,"Simulated","C","global",15.5213 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2149,"Simulated","C","global",15.5312 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2150,"Simulated","C","global",15.5054 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2151,"Simulated","C","global",15.4946 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2152,"Simulated","C","global",15.4568 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2153,"Simulated","C","global",15.4566 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2154,"Simulated","C","global",15.4263 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2155,"Simulated","C","global",15.395 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2156,"Simulated","C","global",15.5369 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2157,"Simulated","C","global",15.6054 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2158,"Simulated","C","global",15.4522 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2159,"Simulated","C","global",15.425 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2160,"Simulated","C","global",15.5633 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2161,"Simulated","C","global",15.5555 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2162,"Simulated","C","global",15.4833 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2163,"Simulated","C","global",15.4239 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2164,"Simulated","C","global",15.429 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2165,"Simulated","C","global",15.4031 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2166,"Simulated","C","global",15.5324 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2167,"Simulated","C","global",15.5005 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2168,"Simulated","C","global",15.5014 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2169,"Simulated","C","global",15.4068 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2170,"Simulated","C","global",15.4356 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2171,"Simulated","C","global",15.3777 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2172,"Simulated","C","global",15.4007 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2173,"Simulated","C","global",15.3738 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2174,"Simulated","C","global",15.3749 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2175,"Simulated","C","global",15.2309 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2176,"Simulated","C","global",15.2801 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2177,"Simulated","C","global",15.3137 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2178,"Simulated","C","global",15.2975 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2179,"Simulated","C","global",15.4362 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2180,"Simulated","C","global",15.3838 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2181,"Simulated","C","global",15.3834 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2182,"Simulated","C","global",15.4397 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2183,"Simulated","C","global",15.4708 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2184,"Simulated","C","global",15.2959 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2185,"Simulated","C","global",15.371 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2186,"Simulated","C","global",15.3206 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2187,"Simulated","C","global",15.3647 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2188,"Simulated","C","global",15.301 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2189,"Simulated","C","global",15.2585 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2190,"Simulated","C","global",15.432 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2191,"Simulated","C","global",15.3022 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2192,"Simulated","C","global",15.2293 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2193,"Simulated","C","global",15.281 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2194,"Simulated","C","global",15.3624 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2195,"Simulated","C","global",15.3429 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2196,"Simulated","C","global",15.3918 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2197,"Simulated","C","global",15.3051 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2198,"Simulated","C","global",15.436 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2199,"Simulated","C","global",15.4176 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2200,"Simulated","C","global",15.4029 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2201,"Simulated","C","global",15.4362 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2202,"Simulated","C","global",15.3309 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2203,"Simulated","C","global",15.3108 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2204,"Simulated","C","global",15.2795 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2205,"Simulated","C","global",15.4014 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2206,"Simulated","C","global",15.2826 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2207,"Simulated","C","global",15.4447 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2208,"Simulated","C","global",15.4475 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2209,"Simulated","C","global",15.433 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2210,"Simulated","C","global",15.4158 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2211,"Simulated","C","global",15.2829 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2212,"Simulated","C","global",15.3047 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2213,"Simulated","C","global",15.2668 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2214,"Simulated","C","global",15.3197 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2215,"Simulated","C","global",15.3954 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2216,"Simulated","C","global",15.3296 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2217,"Simulated","C","global",15.3973 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2218,"Simulated","C","global",15.4296000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2219,"Simulated","C","global",15.2365 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2220,"Simulated","C","global",15.4022000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2221,"Simulated","C","global",15.286 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2222,"Simulated","C","global",15.2831 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2223,"Simulated","C","global",15.3443 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2224,"Simulated","C","global",15.2341 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2225,"Simulated","C","global",15.3387 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2226,"Simulated","C","global",15.2676 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2227,"Simulated","C","global",15.3528 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2228,"Simulated","C","global",15.1539 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2229,"Simulated","C","global",15.2521 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2230,"Simulated","C","global",15.2525 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2231,"Simulated","C","global",15.2148 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2232,"Simulated","C","global",15.3061 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2233,"Simulated","C","global",15.232 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2234,"Simulated","C","global",15.1557 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2235,"Simulated","C","global",15.2494 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2236,"Simulated","C","global",15.314 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2237,"Simulated","C","global",15.2904 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2238,"Simulated","C","global",15.3076 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2239,"Simulated","C","global",15.2922 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2240,"Simulated","C","global",15.3404 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2241,"Simulated","C","global",15.1894 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2242,"Simulated","C","global",15.3013 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2243,"Simulated","C","global",15.2416 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2244,"Simulated","C","global",15.2659 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2245,"Simulated","C","global",15.2654 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2246,"Simulated","C","global",15.265 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2247,"Simulated","C","global",15.2827 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2248,"Simulated","C","global",15.2555 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2249,"Simulated","C","global",15.2399 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2250,"Simulated","C","global",15.1927 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2251,"Simulated","C","global",15.2282 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2252,"Simulated","C","global",15.1797 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2253,"Simulated","C","global",15.1414 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2254,"Simulated","C","global",15.2195 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2255,"Simulated","C","global",15.2308 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2256,"Simulated","C","global",15.2977 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2257,"Simulated","C","global",15.2158 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2258,"Simulated","C","global",15.2795 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2259,"Simulated","C","global",15.208 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2260,"Simulated","C","global",15.3127 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2261,"Simulated","C","global",15.2851 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2262,"Simulated","C","global",15.215 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2263,"Simulated","C","global",15.187 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2264,"Simulated","C","global",15.0773 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2265,"Simulated","C","global",15.1068 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2266,"Simulated","C","global",15.1456 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2267,"Simulated","C","global",15.1507 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2268,"Simulated","C","global",15.163 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2269,"Simulated","C","global",15.222 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2270,"Simulated","C","global",15.1975 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2271,"Simulated","C","global",15.2284 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2272,"Simulated","C","global",15.3257 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2273,"Simulated","C","global",15.2956 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2274,"Simulated","C","global",15.3143 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2275,"Simulated","C","global",15.4038 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2276,"Simulated","C","global",15.3441 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2277,"Simulated","C","global",15.3593 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2278,"Simulated","C","global",15.3099 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2279,"Simulated","C","global",15.3896 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2280,"Simulated","C","global",15.3367 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2281,"Simulated","C","global",15.2068 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2282,"Simulated","C","global",15.2474 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2283,"Simulated","C","global",15.242 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2284,"Simulated","C","global",15.2721 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2285,"Simulated","C","global",15.2034 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2286,"Simulated","C","global",15.194 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2287,"Simulated","C","global",15.227 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2288,"Simulated","C","global",15.1369 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2289,"Simulated","C","global",15.1675 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2290,"Simulated","C","global",15.3077 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2291,"Simulated","C","global",15.1323 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2292,"Simulated","C","global",15.1616 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2293,"Simulated","C","global",15.1612 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2294,"Simulated","C","global",15.1613 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2295,"Simulated","C","global",15.2684 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2296,"Simulated","C","global",15.0711 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2297,"Simulated","C","global",15.176 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2298,"Simulated","C","global",15.2178 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2299,"Simulated","C","global",15.157 -"bcc-csm1-1","tas","temperature","tgav","rcp26",2300,"Simulated","C","global",15.1262 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-10.3693 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-10.207 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-9.77599999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-10.0412 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-9.87809999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-9.90499999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-10.1953 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-9.79539999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-10.1273 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-10.1174999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-10.076 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-10.1194 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-10.1645 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-10.8698 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-10.4158 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-10.4621 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-10.235 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-9.81359999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-9.98149999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-9.84439999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-9.21779999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-8.81879999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-9.24109999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-9.50139999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-9.33449999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-9.15619999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-9.38619999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-9.15109999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-9.12469999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-9.41329999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-9.44159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-9.26839999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-9.0745 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-8.96979999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-9.14339999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-9.3168 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-9.38509999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-9.76669999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-9.5686 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-9.46099999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-9.58609999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-9.23999999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-9.10519999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-9.03039999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-9.33099999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-9.59049999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-9.84309999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-10.0315 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-9.65409999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-9.34889999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-9.77959999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-9.67140000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-9.1721 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-8.99179999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-8.48699999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-8.60589999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-8.74519999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-8.43199999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-8.67789999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-8.8537 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-8.61739999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-9.26239999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-9.1404 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-9.71749999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-9.62359999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-9.22389999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-9.28189999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-9.70169999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-9.32729999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-9.45489999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-9.48509999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-9.58009999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-9.65009999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-9.7466 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-9.30029999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-9.31899999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-9.21529999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-9.51179999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-9.75149999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-9.5958 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-9.5256 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-9.62849999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-9.66649999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-9.25819999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-9.02459999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-9.41079999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-8.9205 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-8.95389999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-9.04089999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-9.16139999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-8.46389999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-8.43509999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-8.45839999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-8.53679999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-8.87369999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2101,"Simulated","C","HL",-8.33179999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2102,"Simulated","C","HL",-8.6474 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2103,"Simulated","C","HL",-8.5761 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2104,"Simulated","C","HL",-9.02289999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2105,"Simulated","C","HL",-9.58419999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2106,"Simulated","C","HL",-9.16159999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2107,"Simulated","C","HL",-8.95279999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2108,"Simulated","C","HL",-9.68419999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2109,"Simulated","C","HL",-9.98969999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2110,"Simulated","C","HL",-9.31989999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2111,"Simulated","C","HL",-9.26259999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2112,"Simulated","C","HL",-9.63479999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2113,"Simulated","C","HL",-9.18399999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2114,"Simulated","C","HL",-9.64659999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2115,"Simulated","C","HL",-9.55029999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2116,"Simulated","C","HL",-9.16809999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2117,"Simulated","C","HL",-9.10879999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2118,"Simulated","C","HL",-9.09679999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2119,"Simulated","C","HL",-8.72049999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2120,"Simulated","C","HL",-9.03949999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2121,"Simulated","C","HL",-9.3843 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2122,"Simulated","C","HL",-8.53449999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2123,"Simulated","C","HL",-9.29789999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2124,"Simulated","C","HL",-9.64919999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2125,"Simulated","C","HL",-8.99029999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2126,"Simulated","C","HL",-9.66049999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2127,"Simulated","C","HL",-9.69669999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2128,"Simulated","C","HL",-9.47399999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2129,"Simulated","C","HL",-9.36699999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2130,"Simulated","C","HL",-9.2287 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2131,"Simulated","C","HL",-9.43680000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2132,"Simulated","C","HL",-9.75289999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2133,"Simulated","C","HL",-9.53249999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2134,"Simulated","C","HL",-9.9776 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2135,"Simulated","C","HL",-9.52529999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2136,"Simulated","C","HL",-9.73409999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2137,"Simulated","C","HL",-10.2571 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2138,"Simulated","C","HL",-9.81329999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2139,"Simulated","C","HL",-9.23409999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2140,"Simulated","C","HL",-9.09879999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2141,"Simulated","C","HL",-8.96279999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2142,"Simulated","C","HL",-9.4726 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2143,"Simulated","C","HL",-9.44479999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2144,"Simulated","C","HL",-9.23469999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2145,"Simulated","C","HL",-9.22929999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2146,"Simulated","C","HL",-9.19079999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2147,"Simulated","C","HL",-8.98919999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2148,"Simulated","C","HL",-9.2432 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2149,"Simulated","C","HL",-9.08499999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2150,"Simulated","C","HL",-8.92499999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2151,"Simulated","C","HL",-8.98819999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2152,"Simulated","C","HL",-9.74930000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2153,"Simulated","C","HL",-9.62219999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2154,"Simulated","C","HL",-9.6927 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2155,"Simulated","C","HL",-9.43689999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2156,"Simulated","C","HL",-9.2747 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2157,"Simulated","C","HL",-9.42079999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2158,"Simulated","C","HL",-9.38069999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2159,"Simulated","C","HL",-9.71849999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2160,"Simulated","C","HL",-9.40179999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2161,"Simulated","C","HL",-9.1909 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2162,"Simulated","C","HL",-9.3116 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2163,"Simulated","C","HL",-9.80149999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2164,"Simulated","C","HL",-9.39759999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2165,"Simulated","C","HL",-9.37 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2166,"Simulated","C","HL",-9.16219999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2167,"Simulated","C","HL",-9.56529999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2168,"Simulated","C","HL",-9.32509999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2169,"Simulated","C","HL",-9.5258 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2170,"Simulated","C","HL",-9.83569999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2171,"Simulated","C","HL",-9.7756 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2172,"Simulated","C","HL",-9.29699999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2173,"Simulated","C","HL",-9.60389999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2174,"Simulated","C","HL",-9.75129999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2175,"Simulated","C","HL",-9.97289999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2176,"Simulated","C","HL",-10.2317 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2177,"Simulated","C","HL",-10.1949 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2178,"Simulated","C","HL",-10.1169 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2179,"Simulated","C","HL",-9.24930000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2180,"Simulated","C","HL",-9.30369999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2181,"Simulated","C","HL",-9.39299999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2182,"Simulated","C","HL",-9.35399999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2183,"Simulated","C","HL",-9.38509999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2184,"Simulated","C","HL",-9.7604 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2185,"Simulated","C","HL",-9.88 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2186,"Simulated","C","HL",-9.74439999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2187,"Simulated","C","HL",-9.53319999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2188,"Simulated","C","HL",-9.98699999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2189,"Simulated","C","HL",-10.3269 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2190,"Simulated","C","HL",-9.44439999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2191,"Simulated","C","HL",-9.9898 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2192,"Simulated","C","HL",-9.96949999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2193,"Simulated","C","HL",-9.51429999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2194,"Simulated","C","HL",-9.21659999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2195,"Simulated","C","HL",-9.41319999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2196,"Simulated","C","HL",-9.6524 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2197,"Simulated","C","HL",-9.78099999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2198,"Simulated","C","HL",-9.62189999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2199,"Simulated","C","HL",-9.31699999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2200,"Simulated","C","HL",-9.14729999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2201,"Simulated","C","HL",-9.05609999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2202,"Simulated","C","HL",-9.03389999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2203,"Simulated","C","HL",-9.48239999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2204,"Simulated","C","HL",-9.7407 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2205,"Simulated","C","HL",-9.39349999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2206,"Simulated","C","HL",-9.39869999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2207,"Simulated","C","HL",-9.15379999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2208,"Simulated","C","HL",-9.2124 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2209,"Simulated","C","HL",-8.9436 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2210,"Simulated","C","HL",-9.23809999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2211,"Simulated","C","HL",-9.41109999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2212,"Simulated","C","HL",-9.89679999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2213,"Simulated","C","HL",-9.78729999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2214,"Simulated","C","HL",-9.36449999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2215,"Simulated","C","HL",-9.48589999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2216,"Simulated","C","HL",-9.44159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2217,"Simulated","C","HL",-9.37219999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2218,"Simulated","C","HL",-9.20739999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2219,"Simulated","C","HL",-9.9194 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2220,"Simulated","C","HL",-9.64509999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2221,"Simulated","C","HL",-9.8021 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2222,"Simulated","C","HL",-9.79479999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2223,"Simulated","C","HL",-9.66209999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2224,"Simulated","C","HL",-9.7484 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2225,"Simulated","C","HL",-9.4307 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2226,"Simulated","C","HL",-9.70299999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2227,"Simulated","C","HL",-9.4151 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2228,"Simulated","C","HL",-9.91879999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2229,"Simulated","C","HL",-9.5172 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2230,"Simulated","C","HL",-9.714 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2231,"Simulated","C","HL",-9.99469999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2232,"Simulated","C","HL",-9.90119999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2233,"Simulated","C","HL",-9.863 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2234,"Simulated","C","HL",-10.0127 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2235,"Simulated","C","HL",-9.95699999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2236,"Simulated","C","HL",-9.82619999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2237,"Simulated","C","HL",-9.75779999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2238,"Simulated","C","HL",-9.50700000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2239,"Simulated","C","HL",-9.74509999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2240,"Simulated","C","HL",-9.9128 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2241,"Simulated","C","HL",-9.9194 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2242,"Simulated","C","HL",-9.77209999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2243,"Simulated","C","HL",-10.0198 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2244,"Simulated","C","HL",-10.1942 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2245,"Simulated","C","HL",-9.76839999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2246,"Simulated","C","HL",-9.83929999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2247,"Simulated","C","HL",-9.76189999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2248,"Simulated","C","HL",-9.63419999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2249,"Simulated","C","HL",-9.48499999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2250,"Simulated","C","HL",-9.77269999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2251,"Simulated","C","HL",-9.61249999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2252,"Simulated","C","HL",-9.97989999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2253,"Simulated","C","HL",-10.0132 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2254,"Simulated","C","HL",-9.63689999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2255,"Simulated","C","HL",-9.48669999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2256,"Simulated","C","HL",-9.36879999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2257,"Simulated","C","HL",-9.78209999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2258,"Simulated","C","HL",-9.35299999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2259,"Simulated","C","HL",-9.55309999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2260,"Simulated","C","HL",-9.45919999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2261,"Simulated","C","HL",-9.90799999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2262,"Simulated","C","HL",-10.1163 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2263,"Simulated","C","HL",-9.95859999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2264,"Simulated","C","HL",-10.3477 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2265,"Simulated","C","HL",-10.2294 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2266,"Simulated","C","HL",-10.3738 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2267,"Simulated","C","HL",-10.0215 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2268,"Simulated","C","HL",-9.9298 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2269,"Simulated","C","HL",-9.8288 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2270,"Simulated","C","HL",-9.82329999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2271,"Simulated","C","HL",-9.58589999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2272,"Simulated","C","HL",-8.9812 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2273,"Simulated","C","HL",-9.1823 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2274,"Simulated","C","HL",-9.25119999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2275,"Simulated","C","HL",-9.3372 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2276,"Simulated","C","HL",-9.27809999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2277,"Simulated","C","HL",-9.4864 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2278,"Simulated","C","HL",-9.48109999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2279,"Simulated","C","HL",-9.19279999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2280,"Simulated","C","HL",-9.66679999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2281,"Simulated","C","HL",-10.1478 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2282,"Simulated","C","HL",-9.5575 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2283,"Simulated","C","HL",-9.67419999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2284,"Simulated","C","HL",-9.38029999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2285,"Simulated","C","HL",-9.6746 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2286,"Simulated","C","HL",-9.7833 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2287,"Simulated","C","HL",-9.5059 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2288,"Simulated","C","HL",-9.81039999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2289,"Simulated","C","HL",-9.57009999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2290,"Simulated","C","HL",-9.34879999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2291,"Simulated","C","HL",-9.51769999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2292,"Simulated","C","HL",-9.72239999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2293,"Simulated","C","HL",-9.86989999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2294,"Simulated","C","HL",-9.82239999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2295,"Simulated","C","HL",-9.62729999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2296,"Simulated","C","HL",-10.0953 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2297,"Simulated","C","HL",-9.87529999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2298,"Simulated","C","HL",-9.99789999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2299,"Simulated","C","HL",-9.89919999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp26",2300,"Simulated","C","HL",-9.98229999999995 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",20.2945 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",20.2529 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",20.2523 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",20.3075 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",20.3484 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",20.3738 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",20.3197 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",20.3486 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",20.3922 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",20.3969 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",20.4088 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",20.497 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",20.3604 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",20.477 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",20.4612 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",20.4684 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",20.5458 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",20.6656 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",20.5282 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",20.562 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",20.5875 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",20.6954 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",20.6828 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",20.6832 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",20.6531 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",20.5711 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",20.6939 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",20.6283 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",20.6493 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",20.771 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",20.7834 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",20.8289 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",20.9039 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",20.8033 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",20.787 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",20.7257 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",20.6414 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",20.6406 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",20.6879 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",20.7581 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",20.7537 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",20.7747 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",20.6687 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",20.6871 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",20.8356 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",20.8527 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",20.7579 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",20.6946 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",20.7781 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",20.8012 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",20.7365 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",20.8409 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",20.7908 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",20.7861 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",20.8706 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",20.8061 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",20.785 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",20.8797 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",20.805 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",20.8308 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",20.8037 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",20.85 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",20.8623 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",20.7932 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",20.7998 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",20.6954 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",20.7949 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",20.7524 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",20.731 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",20.7463 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",20.7373 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",20.7287 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",20.8468 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",20.7842 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",20.824 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",20.7372 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",20.7001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",20.6789 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",20.8185 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",20.5624 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",20.6659 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",20.6119 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",20.7211 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",20.7445 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",20.6333 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",20.7448 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",20.7202 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",20.7551 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",20.6851 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",20.7789 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",20.7993 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",20.8013 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",20.8331 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",20.7668 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",20.8577 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2101,"Simulated","C","LL",20.7148 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2102,"Simulated","C","LL",20.9046 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2103,"Simulated","C","LL",20.8174 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2104,"Simulated","C","LL",20.8742 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2105,"Simulated","C","LL",20.7659 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2106,"Simulated","C","LL",20.8615 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2107,"Simulated","C","LL",20.7256 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2108,"Simulated","C","LL",20.7296 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2109,"Simulated","C","LL",20.7957 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2110,"Simulated","C","LL",20.7096 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2111,"Simulated","C","LL",20.6928 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2112,"Simulated","C","LL",20.7678 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2113,"Simulated","C","LL",20.74 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2114,"Simulated","C","LL",20.6562 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2115,"Simulated","C","LL",20.6572 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2116,"Simulated","C","LL",20.6667 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2117,"Simulated","C","LL",20.6795 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2118,"Simulated","C","LL",20.8564 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2119,"Simulated","C","LL",20.7221 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2120,"Simulated","C","LL",20.6627 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2121,"Simulated","C","LL",20.8114 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2122,"Simulated","C","LL",20.7777 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2123,"Simulated","C","LL",20.7056 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2124,"Simulated","C","LL",20.7751 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2125,"Simulated","C","LL",20.7733 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2126,"Simulated","C","LL",20.6725 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2127,"Simulated","C","LL",20.7473 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2128,"Simulated","C","LL",20.8203 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2129,"Simulated","C","LL",20.6991 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2130,"Simulated","C","LL",20.6706 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2131,"Simulated","C","LL",20.6457 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2132,"Simulated","C","LL",20.679 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2133,"Simulated","C","LL",20.6426 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2134,"Simulated","C","LL",20.5845 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2135,"Simulated","C","LL",20.6471 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2136,"Simulated","C","LL",20.5285 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2137,"Simulated","C","LL",20.5743000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2138,"Simulated","C","LL",20.6103 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2139,"Simulated","C","LL",20.476 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2140,"Simulated","C","LL",20.4861 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2141,"Simulated","C","LL",20.5709 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2142,"Simulated","C","LL",20.6279 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2143,"Simulated","C","LL",20.7102 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2144,"Simulated","C","LL",20.6576 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2145,"Simulated","C","LL",20.7024 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2146,"Simulated","C","LL",20.6831 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2147,"Simulated","C","LL",20.5572 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2148,"Simulated","C","LL",20.6919 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2149,"Simulated","C","LL",20.6708 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2150,"Simulated","C","LL",20.6062 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2151,"Simulated","C","LL",20.6063 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2152,"Simulated","C","LL",20.7195 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2153,"Simulated","C","LL",20.6928 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2154,"Simulated","C","LL",20.6709 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2155,"Simulated","C","LL",20.5797 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2156,"Simulated","C","LL",20.7173 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2157,"Simulated","C","LL",20.8306 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2158,"Simulated","C","LL",20.637 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2159,"Simulated","C","LL",20.6746 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2160,"Simulated","C","LL",20.7758 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2161,"Simulated","C","LL",20.7223 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2162,"Simulated","C","LL",20.6602 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2163,"Simulated","C","LL",20.6907 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2164,"Simulated","C","LL",20.6125 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2165,"Simulated","C","LL",20.5754 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2166,"Simulated","C","LL",20.6884 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2167,"Simulated","C","LL",20.734 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2168,"Simulated","C","LL",20.6849 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2169,"Simulated","C","LL",20.6124 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2170,"Simulated","C","LL",20.712 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2171,"Simulated","C","LL",20.6294 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2172,"Simulated","C","LL",20.5573 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2173,"Simulated","C","LL",20.5889 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2174,"Simulated","C","LL",20.621 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2175,"Simulated","C","LL",20.4932 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2176,"Simulated","C","LL",20.6067 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2177,"Simulated","C","LL",20.6396 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2178,"Simulated","C","LL",20.6038 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2179,"Simulated","C","LL",20.5903 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2180,"Simulated","C","LL",20.5383 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2181,"Simulated","C","LL",20.5564 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2182,"Simulated","C","LL",20.6164 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2183,"Simulated","C","LL",20.6605 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2184,"Simulated","C","LL",20.5274 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2185,"Simulated","C","LL",20.6432 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2186,"Simulated","C","LL",20.5539 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2187,"Simulated","C","LL",20.5631 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2188,"Simulated","C","LL",20.5808 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2189,"Simulated","C","LL",20.6004 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2190,"Simulated","C","LL",20.6259 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2191,"Simulated","C","LL",20.5829 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2192,"Simulated","C","LL",20.4905 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2193,"Simulated","C","LL",20.4579 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2194,"Simulated","C","LL",20.4942 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2195,"Simulated","C","LL",20.5118000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2196,"Simulated","C","LL",20.6207 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2197,"Simulated","C","LL",20.5428 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2198,"Simulated","C","LL",20.6678 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2199,"Simulated","C","LL",20.5820000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2200,"Simulated","C","LL",20.5287 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2201,"Simulated","C","LL",20.5499 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2202,"Simulated","C","LL",20.418 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2203,"Simulated","C","LL",20.4873 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2204,"Simulated","C","LL",20.5034 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2205,"Simulated","C","LL",20.5783 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2206,"Simulated","C","LL",20.4358 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2207,"Simulated","C","LL",20.5806 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2208,"Simulated","C","LL",20.5963 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2209,"Simulated","C","LL",20.5225 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2210,"Simulated","C","LL",20.5632 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2211,"Simulated","C","LL",20.4387 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2212,"Simulated","C","LL",20.5665 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2213,"Simulated","C","LL",20.4979 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2214,"Simulated","C","LL",20.4735 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2215,"Simulated","C","LL",20.5903 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2216,"Simulated","C","LL",20.5015 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2217,"Simulated","C","LL",20.5689 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2218,"Simulated","C","LL",20.5735 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2219,"Simulated","C","LL",20.4887 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2220,"Simulated","C","LL",20.6318 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2221,"Simulated","C","LL",20.5242 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2222,"Simulated","C","LL",20.5191 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2223,"Simulated","C","LL",20.5653 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2224,"Simulated","C","LL",20.4502 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2225,"Simulated","C","LL",20.5103 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2226,"Simulated","C","LL",20.4812 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2227,"Simulated","C","LL",20.524 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2228,"Simulated","C","LL",20.3887 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2229,"Simulated","C","LL",20.4236 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2230,"Simulated","C","LL",20.4653 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2231,"Simulated","C","LL",20.4782 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2232,"Simulated","C","LL",20.5691 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2233,"Simulated","C","LL",20.4715 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2234,"Simulated","C","LL",20.4105 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2235,"Simulated","C","LL",20.5122 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2236,"Simulated","C","LL",20.5629 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2237,"Simulated","C","LL",20.5202 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2238,"Simulated","C","LL",20.4886 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2239,"Simulated","C","LL",20.5198 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2240,"Simulated","C","LL",20.613 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2241,"Simulated","C","LL",20.4319 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2242,"Simulated","C","LL",20.5363 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2243,"Simulated","C","LL",20.5159 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2244,"Simulated","C","LL",20.5817 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2245,"Simulated","C","LL",20.4922 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2246,"Simulated","C","LL",20.5065 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2247,"Simulated","C","LL",20.5117 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2248,"Simulated","C","LL",20.4522 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2249,"Simulated","C","LL",20.4021 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2250,"Simulated","C","LL",20.4052 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2251,"Simulated","C","LL",20.4146 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2252,"Simulated","C","LL",20.4328 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2253,"Simulated","C","LL",20.3934 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2254,"Simulated","C","LL",20.4092 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2255,"Simulated","C","LL",20.3916 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2256,"Simulated","C","LL",20.4479 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2257,"Simulated","C","LL",20.4351 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2258,"Simulated","C","LL",20.4225 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2259,"Simulated","C","LL",20.3778 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2260,"Simulated","C","LL",20.4848 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2261,"Simulated","C","LL",20.5451 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2262,"Simulated","C","LL",20.5039 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2263,"Simulated","C","LL",20.4372 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2264,"Simulated","C","LL",20.3858 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2265,"Simulated","C","LL",20.3967 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2266,"Simulated","C","LL",20.4737 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2267,"Simulated","C","LL",20.4063 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2268,"Simulated","C","LL",20.4021 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2269,"Simulated","C","LL",20.4523 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2270,"Simulated","C","LL",20.4216 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2271,"Simulated","C","LL",20.4093 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2272,"Simulated","C","LL",20.4008 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2273,"Simulated","C","LL",20.4063 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2274,"Simulated","C","LL",20.4433 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2275,"Simulated","C","LL",20.5694 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2276,"Simulated","C","LL",20.4849 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2277,"Simulated","C","LL",20.5468 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2278,"Simulated","C","LL",20.486 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2279,"Simulated","C","LL",20.5222 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2280,"Simulated","C","LL",20.5571 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2281,"Simulated","C","LL",20.5005 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2282,"Simulated","C","LL",20.4264 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2283,"Simulated","C","LL",20.4442 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2284,"Simulated","C","LL",20.4193 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2285,"Simulated","C","LL",20.3976 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2286,"Simulated","C","LL",20.409 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2287,"Simulated","C","LL",20.391 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2288,"Simulated","C","LL",20.3457 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2289,"Simulated","C","LL",20.3325 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2290,"Simulated","C","LL",20.4556 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2291,"Simulated","C","LL",20.2789 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2292,"Simulated","C","LL",20.3571 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2293,"Simulated","C","LL",20.3875 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2294,"Simulated","C","LL",20.3776 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2295,"Simulated","C","LL",20.4663 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2296,"Simulated","C","LL",20.3256 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2297,"Simulated","C","LL",20.4064 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2298,"Simulated","C","LL",20.4826 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2299,"Simulated","C","LL",20.3884 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp26",2300,"Simulated","C","LL",20.3685 -"CanESM2","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",15.1858 -"CanESM2","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",14.9176 -"CanESM2","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",14.7579 -"CanESM2","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",14.7689 -"CanESM2","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",14.8886 -"CanESM2","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",15.0695 -"CanESM2","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",15.1438 -"CanESM2","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",15.1515 -"CanESM2","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",15.1344 -"CanESM2","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",15.1923 -"CanESM2","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",15.1825 -"CanESM2","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",15.2724 -"CanESM2","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",15.4565 -"CanESM2","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",15.4234 -"CanESM2","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",15.4341 -"CanESM2","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",15.3891 -"CanESM2","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",15.4565 -"CanESM2","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",15.5324 -"CanESM2","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",15.3661 -"CanESM2","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",15.3253 -"CanESM2","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",15.422 -"CanESM2","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",15.4712 -"CanESM2","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",15.6887 -"CanESM2","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",15.6617 -"CanESM2","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",15.5039 -"CanESM2","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",15.3722 -"CanESM2","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",15.555 -"CanESM2","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",15.8136 -"CanESM2","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",15.8346 -"CanESM2","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",15.7996 -"CanESM2","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",15.9293 -"CanESM2","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",15.8727 -"CanESM2","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",15.8249 -"CanESM2","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",15.5941 -"CanESM2","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",15.8224 -"CanESM2","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",15.8607 -"CanESM2","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",15.9526 -"CanESM2","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",16.0129 -"CanESM2","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",15.8219 -"CanESM2","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",15.6644 -"CanESM2","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",15.8181 -"CanESM2","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",15.8824 -"CanESM2","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",15.9735 -"CanESM2","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",16.1257 -"CanESM2","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",16.2758 -"CanESM2","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",15.8891 -"CanESM2","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",15.7736 -"CanESM2","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",15.9926 -"CanESM2","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",15.9947 -"CanESM2","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",16.0227 -"CanESM2","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",15.8753 -"CanESM2","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",15.9023 -"CanESM2","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",16.1681 -"CanESM2","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",16.1314 -"CanESM2","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",16.0449 -"CanESM2","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",16.089 -"CanESM2","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",15.9401 -"CanESM2","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",15.968 -"CanESM2","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",15.9982 -"CanESM2","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",16.1107 -"CanESM2","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",16.29 -"CanESM2","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",16.1651 -"CanESM2","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",15.8125 -"CanESM2","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",15.8012 -"CanESM2","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",15.976 -"CanESM2","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",15.9381 -"CanESM2","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",15.9808 -"CanESM2","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",15.9687 -"CanESM2","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",15.7868 -"CanESM2","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",15.8299 -"CanESM2","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",15.8381 -"CanESM2","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",15.914 -"CanESM2","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",15.9068 -"CanESM2","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",15.9526 -"CanESM2","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",15.8804 -"CanESM2","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",15.6931 -"CanESM2","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",16.0172 -"CanESM2","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",15.959 -"CanESM2","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",15.9075 -"CanESM2","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",15.9147 -"CanESM2","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",16.0861 -"CanESM2","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",15.9505 -"CanESM2","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",16.0173 -"CanESM2","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",16.1093 -"CanESM2","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",16.2508 -"CanESM2","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",15.8455 -"CanESM2","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",15.7355 -"CanESM2","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",15.823 -"CanESM2","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",16.0905 -"CanESM2","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",16.0315000000001 -"CanESM2","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",15.903 -"CanESM2","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",16.0656 -"CanESM2","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",16.024 -"CanESM2","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",16.072 -"CanESM2","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",15.8528 -"CanESM2","tas","temperature","tgav","rcp26",2101,"Simulated","C","global",15.7862 -"CanESM2","tas","temperature","tgav","rcp26",2102,"Simulated","C","global",15.7775 -"CanESM2","tas","temperature","tgav","rcp26",2103,"Simulated","C","global",15.8805 -"CanESM2","tas","temperature","tgav","rcp26",2104,"Simulated","C","global",15.8897 -"CanESM2","tas","temperature","tgav","rcp26",2105,"Simulated","C","global",16.0332 -"CanESM2","tas","temperature","tgav","rcp26",2106,"Simulated","C","global",16.0017 -"CanESM2","tas","temperature","tgav","rcp26",2107,"Simulated","C","global",15.7458 -"CanESM2","tas","temperature","tgav","rcp26",2108,"Simulated","C","global",15.9106 -"CanESM2","tas","temperature","tgav","rcp26",2109,"Simulated","C","global",16.0495 -"CanESM2","tas","temperature","tgav","rcp26",2110,"Simulated","C","global",15.9708 -"CanESM2","tas","temperature","tgav","rcp26",2111,"Simulated","C","global",15.7333 -"CanESM2","tas","temperature","tgav","rcp26",2112,"Simulated","C","global",15.9953 -"CanESM2","tas","temperature","tgav","rcp26",2113,"Simulated","C","global",16.0564 -"CanESM2","tas","temperature","tgav","rcp26",2114,"Simulated","C","global",15.776 -"CanESM2","tas","temperature","tgav","rcp26",2115,"Simulated","C","global",15.9526 -"CanESM2","tas","temperature","tgav","rcp26",2116,"Simulated","C","global",15.7514 -"CanESM2","tas","temperature","tgav","rcp26",2117,"Simulated","C","global",15.692 -"CanESM2","tas","temperature","tgav","rcp26",2118,"Simulated","C","global",15.7716 -"CanESM2","tas","temperature","tgav","rcp26",2119,"Simulated","C","global",15.6841 -"CanESM2","tas","temperature","tgav","rcp26",2120,"Simulated","C","global",15.8298 -"CanESM2","tas","temperature","tgav","rcp26",2121,"Simulated","C","global",15.8244 -"CanESM2","tas","temperature","tgav","rcp26",2122,"Simulated","C","global",15.9069 -"CanESM2","tas","temperature","tgav","rcp26",2123,"Simulated","C","global",15.7962 -"CanESM2","tas","temperature","tgav","rcp26",2124,"Simulated","C","global",15.742 -"CanESM2","tas","temperature","tgav","rcp26",2125,"Simulated","C","global",15.9763 -"CanESM2","tas","temperature","tgav","rcp26",2126,"Simulated","C","global",16.0173 -"CanESM2","tas","temperature","tgav","rcp26",2127,"Simulated","C","global",15.9562 -"CanESM2","tas","temperature","tgav","rcp26",2128,"Simulated","C","global",16 -"CanESM2","tas","temperature","tgav","rcp26",2129,"Simulated","C","global",16.0276 -"CanESM2","tas","temperature","tgav","rcp26",2130,"Simulated","C","global",15.866 -"CanESM2","tas","temperature","tgav","rcp26",2131,"Simulated","C","global",15.697 -"CanESM2","tas","temperature","tgav","rcp26",2132,"Simulated","C","global",15.7588 -"CanESM2","tas","temperature","tgav","rcp26",2133,"Simulated","C","global",15.9185 -"CanESM2","tas","temperature","tgav","rcp26",2134,"Simulated","C","global",15.7411 -"CanESM2","tas","temperature","tgav","rcp26",2135,"Simulated","C","global",15.8553 -"CanESM2","tas","temperature","tgav","rcp26",2136,"Simulated","C","global",15.9942 -"CanESM2","tas","temperature","tgav","rcp26",2137,"Simulated","C","global",15.664 -"CanESM2","tas","temperature","tgav","rcp26",2138,"Simulated","C","global",15.7404 -"CanESM2","tas","temperature","tgav","rcp26",2139,"Simulated","C","global",15.9574 -"CanESM2","tas","temperature","tgav","rcp26",2140,"Simulated","C","global",15.9822 -"CanESM2","tas","temperature","tgav","rcp26",2141,"Simulated","C","global",15.9631 -"CanESM2","tas","temperature","tgav","rcp26",2142,"Simulated","C","global",15.6823 -"CanESM2","tas","temperature","tgav","rcp26",2143,"Simulated","C","global",15.7421000000001 -"CanESM2","tas","temperature","tgav","rcp26",2144,"Simulated","C","global",15.9261 -"CanESM2","tas","temperature","tgav","rcp26",2145,"Simulated","C","global",15.8083 -"CanESM2","tas","temperature","tgav","rcp26",2146,"Simulated","C","global",15.5965 -"CanESM2","tas","temperature","tgav","rcp26",2147,"Simulated","C","global",15.4708 -"CanESM2","tas","temperature","tgav","rcp26",2148,"Simulated","C","global",15.8273 -"CanESM2","tas","temperature","tgav","rcp26",2149,"Simulated","C","global",15.906 -"CanESM2","tas","temperature","tgav","rcp26",2150,"Simulated","C","global",15.7199 -"CanESM2","tas","temperature","tgav","rcp26",2151,"Simulated","C","global",15.5495 -"CanESM2","tas","temperature","tgav","rcp26",2152,"Simulated","C","global",15.6937 -"CanESM2","tas","temperature","tgav","rcp26",2153,"Simulated","C","global",15.8043 -"CanESM2","tas","temperature","tgav","rcp26",2154,"Simulated","C","global",15.756 -"CanESM2","tas","temperature","tgav","rcp26",2155,"Simulated","C","global",15.6136 -"CanESM2","tas","temperature","tgav","rcp26",2156,"Simulated","C","global",15.8589 -"CanESM2","tas","temperature","tgav","rcp26",2157,"Simulated","C","global",15.795 -"CanESM2","tas","temperature","tgav","rcp26",2158,"Simulated","C","global",15.7257 -"CanESM2","tas","temperature","tgav","rcp26",2159,"Simulated","C","global",15.5368 -"CanESM2","tas","temperature","tgav","rcp26",2160,"Simulated","C","global",15.6594 -"CanESM2","tas","temperature","tgav","rcp26",2161,"Simulated","C","global",15.7727 -"CanESM2","tas","temperature","tgav","rcp26",2162,"Simulated","C","global",15.7974 -"CanESM2","tas","temperature","tgav","rcp26",2163,"Simulated","C","global",15.903 -"CanESM2","tas","temperature","tgav","rcp26",2164,"Simulated","C","global",15.7971 -"CanESM2","tas","temperature","tgav","rcp26",2165,"Simulated","C","global",15.6943 -"CanESM2","tas","temperature","tgav","rcp26",2166,"Simulated","C","global",15.5721 -"CanESM2","tas","temperature","tgav","rcp26",2167,"Simulated","C","global",15.8305 -"CanESM2","tas","temperature","tgav","rcp26",2168,"Simulated","C","global",15.8206 -"CanESM2","tas","temperature","tgav","rcp26",2169,"Simulated","C","global",15.8104 -"CanESM2","tas","temperature","tgav","rcp26",2170,"Simulated","C","global",15.7349 -"CanESM2","tas","temperature","tgav","rcp26",2171,"Simulated","C","global",15.782 -"CanESM2","tas","temperature","tgav","rcp26",2172,"Simulated","C","global",15.7093 -"CanESM2","tas","temperature","tgav","rcp26",2173,"Simulated","C","global",15.7616 -"CanESM2","tas","temperature","tgav","rcp26",2174,"Simulated","C","global",15.6132 -"CanESM2","tas","temperature","tgav","rcp26",2175,"Simulated","C","global",15.9717 -"CanESM2","tas","temperature","tgav","rcp26",2176,"Simulated","C","global",15.9892 -"CanESM2","tas","temperature","tgav","rcp26",2177,"Simulated","C","global",15.7013 -"CanESM2","tas","temperature","tgav","rcp26",2178,"Simulated","C","global",15.8237 -"CanESM2","tas","temperature","tgav","rcp26",2179,"Simulated","C","global",15.7709 -"CanESM2","tas","temperature","tgav","rcp26",2180,"Simulated","C","global",15.705 -"CanESM2","tas","temperature","tgav","rcp26",2181,"Simulated","C","global",15.6533 -"CanESM2","tas","temperature","tgav","rcp26",2182,"Simulated","C","global",15.7166 -"CanESM2","tas","temperature","tgav","rcp26",2183,"Simulated","C","global",15.8284 -"CanESM2","tas","temperature","tgav","rcp26",2184,"Simulated","C","global",15.861 -"CanESM2","tas","temperature","tgav","rcp26",2185,"Simulated","C","global",15.6739 -"CanESM2","tas","temperature","tgav","rcp26",2186,"Simulated","C","global",15.6054 -"CanESM2","tas","temperature","tgav","rcp26",2187,"Simulated","C","global",15.8156 -"CanESM2","tas","temperature","tgav","rcp26",2188,"Simulated","C","global",15.8313 -"CanESM2","tas","temperature","tgav","rcp26",2189,"Simulated","C","global",15.6513 -"CanESM2","tas","temperature","tgav","rcp26",2190,"Simulated","C","global",15.6109 -"CanESM2","tas","temperature","tgav","rcp26",2191,"Simulated","C","global",15.7116 -"CanESM2","tas","temperature","tgav","rcp26",2192,"Simulated","C","global",15.7742 -"CanESM2","tas","temperature","tgav","rcp26",2193,"Simulated","C","global",15.5871 -"CanESM2","tas","temperature","tgav","rcp26",2194,"Simulated","C","global",15.4597 -"CanESM2","tas","temperature","tgav","rcp26",2195,"Simulated","C","global",15.6111 -"CanESM2","tas","temperature","tgav","rcp26",2196,"Simulated","C","global",15.5121 -"CanESM2","tas","temperature","tgav","rcp26",2197,"Simulated","C","global",15.5919 -"CanESM2","tas","temperature","tgav","rcp26",2198,"Simulated","C","global",15.7574 -"CanESM2","tas","temperature","tgav","rcp26",2199,"Simulated","C","global",15.6739 -"CanESM2","tas","temperature","tgav","rcp26",2200,"Simulated","C","global",15.5832 -"CanESM2","tas","temperature","tgav","rcp26",2201,"Simulated","C","global",15.76 -"CanESM2","tas","temperature","tgav","rcp26",2202,"Simulated","C","global",15.5841 -"CanESM2","tas","temperature","tgav","rcp26",2203,"Simulated","C","global",15.4739 -"CanESM2","tas","temperature","tgav","rcp26",2204,"Simulated","C","global",15.5152 -"CanESM2","tas","temperature","tgav","rcp26",2205,"Simulated","C","global",15.7339 -"CanESM2","tas","temperature","tgav","rcp26",2206,"Simulated","C","global",15.8289 -"CanESM2","tas","temperature","tgav","rcp26",2207,"Simulated","C","global",15.6303 -"CanESM2","tas","temperature","tgav","rcp26",2208,"Simulated","C","global",15.8974 -"CanESM2","tas","temperature","tgav","rcp26",2209,"Simulated","C","global",15.7461 -"CanESM2","tas","temperature","tgav","rcp26",2210,"Simulated","C","global",15.5689 -"CanESM2","tas","temperature","tgav","rcp26",2211,"Simulated","C","global",15.465 -"CanESM2","tas","temperature","tgav","rcp26",2212,"Simulated","C","global",15.5002 -"CanESM2","tas","temperature","tgav","rcp26",2213,"Simulated","C","global",15.6691 -"CanESM2","tas","temperature","tgav","rcp26",2214,"Simulated","C","global",15.8858 -"CanESM2","tas","temperature","tgav","rcp26",2215,"Simulated","C","global",15.667 -"CanESM2","tas","temperature","tgav","rcp26",2216,"Simulated","C","global",15.4724000000001 -"CanESM2","tas","temperature","tgav","rcp26",2217,"Simulated","C","global",15.5594 -"CanESM2","tas","temperature","tgav","rcp26",2218,"Simulated","C","global",15.7469 -"CanESM2","tas","temperature","tgav","rcp26",2219,"Simulated","C","global",15.5976 -"CanESM2","tas","temperature","tgav","rcp26",2220,"Simulated","C","global",15.6511 -"CanESM2","tas","temperature","tgav","rcp26",2221,"Simulated","C","global",15.7274 -"CanESM2","tas","temperature","tgav","rcp26",2222,"Simulated","C","global",15.7312 -"CanESM2","tas","temperature","tgav","rcp26",2223,"Simulated","C","global",15.6509 -"CanESM2","tas","temperature","tgav","rcp26",2224,"Simulated","C","global",15.4892 -"CanESM2","tas","temperature","tgav","rcp26",2225,"Simulated","C","global",15.5797 -"CanESM2","tas","temperature","tgav","rcp26",2226,"Simulated","C","global",15.629 -"CanESM2","tas","temperature","tgav","rcp26",2227,"Simulated","C","global",15.496 -"CanESM2","tas","temperature","tgav","rcp26",2228,"Simulated","C","global",15.62 -"CanESM2","tas","temperature","tgav","rcp26",2229,"Simulated","C","global",15.6792 -"CanESM2","tas","temperature","tgav","rcp26",2230,"Simulated","C","global",15.4909 -"CanESM2","tas","temperature","tgav","rcp26",2231,"Simulated","C","global",15.3204 -"CanESM2","tas","temperature","tgav","rcp26",2232,"Simulated","C","global",15.5585 -"CanESM2","tas","temperature","tgav","rcp26",2233,"Simulated","C","global",15.4751 -"CanESM2","tas","temperature","tgav","rcp26",2234,"Simulated","C","global",15.3715 -"CanESM2","tas","temperature","tgav","rcp26",2235,"Simulated","C","global",15.6596 -"CanESM2","tas","temperature","tgav","rcp26",2236,"Simulated","C","global",15.8069 -"CanESM2","tas","temperature","tgav","rcp26",2237,"Simulated","C","global",15.55 -"CanESM2","tas","temperature","tgav","rcp26",2238,"Simulated","C","global",15.6074 -"CanESM2","tas","temperature","tgav","rcp26",2239,"Simulated","C","global",15.4881 -"CanESM2","tas","temperature","tgav","rcp26",2240,"Simulated","C","global",15.6056 -"CanESM2","tas","temperature","tgav","rcp26",2241,"Simulated","C","global",15.5862 -"CanESM2","tas","temperature","tgav","rcp26",2242,"Simulated","C","global",15.6292 -"CanESM2","tas","temperature","tgav","rcp26",2243,"Simulated","C","global",15.5766 -"CanESM2","tas","temperature","tgav","rcp26",2244,"Simulated","C","global",15.5798 -"CanESM2","tas","temperature","tgav","rcp26",2245,"Simulated","C","global",15.5119 -"CanESM2","tas","temperature","tgav","rcp26",2246,"Simulated","C","global",15.5325 -"CanESM2","tas","temperature","tgav","rcp26",2247,"Simulated","C","global",15.648 -"CanESM2","tas","temperature","tgav","rcp26",2248,"Simulated","C","global",15.3122 -"CanESM2","tas","temperature","tgav","rcp26",2249,"Simulated","C","global",15.472 -"CanESM2","tas","temperature","tgav","rcp26",2250,"Simulated","C","global",15.5919 -"CanESM2","tas","temperature","tgav","rcp26",2251,"Simulated","C","global",15.7335 -"CanESM2","tas","temperature","tgav","rcp26",2252,"Simulated","C","global",15.4867 -"CanESM2","tas","temperature","tgav","rcp26",2253,"Simulated","C","global",15.234 -"CanESM2","tas","temperature","tgav","rcp26",2254,"Simulated","C","global",15.4167 -"CanESM2","tas","temperature","tgav","rcp26",2255,"Simulated","C","global",15.6444 -"CanESM2","tas","temperature","tgav","rcp26",2256,"Simulated","C","global",15.6291000000001 -"CanESM2","tas","temperature","tgav","rcp26",2257,"Simulated","C","global",15.6599000000001 -"CanESM2","tas","temperature","tgav","rcp26",2258,"Simulated","C","global",15.3599 -"CanESM2","tas","temperature","tgav","rcp26",2259,"Simulated","C","global",15.4754 -"CanESM2","tas","temperature","tgav","rcp26",2260,"Simulated","C","global",15.5774 -"CanESM2","tas","temperature","tgav","rcp26",2261,"Simulated","C","global",15.6852 -"CanESM2","tas","temperature","tgav","rcp26",2262,"Simulated","C","global",15.6193 -"CanESM2","tas","temperature","tgav","rcp26",2263,"Simulated","C","global",15.3179 -"CanESM2","tas","temperature","tgav","rcp26",2264,"Simulated","C","global",15.3039 -"CanESM2","tas","temperature","tgav","rcp26",2265,"Simulated","C","global",15.6832 -"CanESM2","tas","temperature","tgav","rcp26",2266,"Simulated","C","global",15.7724 -"CanESM2","tas","temperature","tgav","rcp26",2267,"Simulated","C","global",15.517 -"CanESM2","tas","temperature","tgav","rcp26",2268,"Simulated","C","global",15.3778 -"CanESM2","tas","temperature","tgav","rcp26",2269,"Simulated","C","global",15.4732 -"CanESM2","tas","temperature","tgav","rcp26",2270,"Simulated","C","global",15.6576 -"CanESM2","tas","temperature","tgav","rcp26",2271,"Simulated","C","global",15.4986 -"CanESM2","tas","temperature","tgav","rcp26",2272,"Simulated","C","global",15.5729 -"CanESM2","tas","temperature","tgav","rcp26",2273,"Simulated","C","global",15.7036 -"CanESM2","tas","temperature","tgav","rcp26",2274,"Simulated","C","global",15.6392 -"CanESM2","tas","temperature","tgav","rcp26",2275,"Simulated","C","global",15.5177 -"CanESM2","tas","temperature","tgav","rcp26",2276,"Simulated","C","global",15.3827 -"CanESM2","tas","temperature","tgav","rcp26",2277,"Simulated","C","global",15.3342 -"CanESM2","tas","temperature","tgav","rcp26",2278,"Simulated","C","global",15.5229 -"CanESM2","tas","temperature","tgav","rcp26",2279,"Simulated","C","global",15.3440000000001 -"CanESM2","tas","temperature","tgav","rcp26",2280,"Simulated","C","global",15.2216 -"CanESM2","tas","temperature","tgav","rcp26",2281,"Simulated","C","global",15.4025 -"CanESM2","tas","temperature","tgav","rcp26",2282,"Simulated","C","global",15.5035 -"CanESM2","tas","temperature","tgav","rcp26",2283,"Simulated","C","global",15.5044 -"CanESM2","tas","temperature","tgav","rcp26",2284,"Simulated","C","global",15.5733 -"CanESM2","tas","temperature","tgav","rcp26",2285,"Simulated","C","global",15.4898 -"CanESM2","tas","temperature","tgav","rcp26",2286,"Simulated","C","global",15.5928 -"CanESM2","tas","temperature","tgav","rcp26",2287,"Simulated","C","global",15.632 -"CanESM2","tas","temperature","tgav","rcp26",2288,"Simulated","C","global",15.3943 -"CanESM2","tas","temperature","tgav","rcp26",2289,"Simulated","C","global",15.5306 -"CanESM2","tas","temperature","tgav","rcp26",2290,"Simulated","C","global",15.5025 -"CanESM2","tas","temperature","tgav","rcp26",2291,"Simulated","C","global",15.5777 -"CanESM2","tas","temperature","tgav","rcp26",2292,"Simulated","C","global",15.4623 -"CanESM2","tas","temperature","tgav","rcp26",2293,"Simulated","C","global",15.4583 -"CanESM2","tas","temperature","tgav","rcp26",2294,"Simulated","C","global",15.4395 -"CanESM2","tas","temperature","tgav","rcp26",2295,"Simulated","C","global",15.5272000000001 -"CanESM2","tas","temperature","tgav","rcp26",2296,"Simulated","C","global",15.4381 -"CanESM2","tas","temperature","tgav","rcp26",2297,"Simulated","C","global",15.3138 -"CanESM2","tas","temperature","tgav","rcp26",2298,"Simulated","C","global",15.3089000000001 -"CanESM2","tas","temperature","tgav","rcp26",2299,"Simulated","C","global",15.472 -"CanESM2","tas","temperature","tgav","rcp26",2300,"Simulated","C","global",15.5225 -"CanESM2","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-9.68089999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-9.803 -"CanESM2","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-10.3135 -"CanESM2","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-10.4673 -"CanESM2","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-10.2649 -"CanESM2","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-9.86129999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-9.89859999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-9.6823 -"CanESM2","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-9.34009999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-9.51769999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-9.5847 -"CanESM2","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-9.4898 -"CanESM2","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-9.03799999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-9.38899999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-9.2645 -"CanESM2","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-9.31809999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-9.27909999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-9.10309999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-9.26239999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-9.60849999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-9.42599999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-9.4049 -"CanESM2","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-9.10859999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-9.21189999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-9.16949999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-9.30709999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-9.3793 -"CanESM2","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-9.03999999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-9.04049999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-8.85429999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-8.46189999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-8.8107 -"CanESM2","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-8.76409999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-9.18689999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-8.80149999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-8.83569999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-8.39139999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-8.64799999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-8.94479999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-9.20299999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-8.88849999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-9.0813 -"CanESM2","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-8.59129999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-8.58409999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-8.35309999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-8.74869999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-8.92579999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-8.6866 -"CanESM2","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-8.58819999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-8.47559999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-8.74249999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-8.64459999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-8.44439999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-8.71499999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-8.75689999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-8.23699999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-8.5915 -"CanESM2","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-8.6148 -"CanESM2","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-8.56009999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-8.24829999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-8.32039999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-8.76949999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-8.94819999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-8.92679999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-8.5573 -"CanESM2","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-8.72729999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-8.63219999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-8.69979999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-8.92140000000001 -"CanESM2","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-8.99469999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-9.21179999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-8.26959999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-8.63979999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-8.87799999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-8.8261 -"CanESM2","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-9.13909999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-8.5668 -"CanESM2","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-8.91119999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-8.58069999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-8.43149999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-8.27349999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-8.52159999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-8.48219999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-8.46009999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-7.78979999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-8.45299999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-8.53569999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-8.80289999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-8.35199999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-8.66079999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-8.9375 -"CanESM2","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-8.39879999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-8.1499 -"CanESM2","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-7.83019999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-8.40359999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2101,"Simulated","C","HL",-8.43689999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2102,"Simulated","C","HL",-8.52849999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2103,"Simulated","C","HL",-8.54599999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2104,"Simulated","C","HL",-8.58839999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2105,"Simulated","C","HL",-8.30169999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2106,"Simulated","C","HL",-8.4923 -"CanESM2","tas","temperature","tgav_HL","rcp26",2107,"Simulated","C","HL",-8.81399999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2108,"Simulated","C","HL",-8.44569999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2109,"Simulated","C","HL",-8.54089999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2110,"Simulated","C","HL",-8.31379999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2111,"Simulated","C","HL",-8.93119999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2112,"Simulated","C","HL",-8.61199999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2113,"Simulated","C","HL",-8.42859999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2114,"Simulated","C","HL",-8.94599999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2115,"Simulated","C","HL",-8.31759999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2116,"Simulated","C","HL",-8.76929999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2117,"Simulated","C","HL",-9.02670000000001 -"CanESM2","tas","temperature","tgav_HL","rcp26",2118,"Simulated","C","HL",-8.67679999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2119,"Simulated","C","HL",-9.11259999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2120,"Simulated","C","HL",-8.93989999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2121,"Simulated","C","HL",-8.8005 -"CanESM2","tas","temperature","tgav_HL","rcp26",2122,"Simulated","C","HL",-8.61469999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2123,"Simulated","C","HL",-8.59609999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2124,"Simulated","C","HL",-8.7405 -"CanESM2","tas","temperature","tgav_HL","rcp26",2125,"Simulated","C","HL",-8.4692 -"CanESM2","tas","temperature","tgav_HL","rcp26",2126,"Simulated","C","HL",-8.47119999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2127,"Simulated","C","HL",-8.67829999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2128,"Simulated","C","HL",-8.57659999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2129,"Simulated","C","HL",-8.47999999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2130,"Simulated","C","HL",-8.9273 -"CanESM2","tas","temperature","tgav_HL","rcp26",2131,"Simulated","C","HL",-9.10019999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2132,"Simulated","C","HL",-9.09189999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2133,"Simulated","C","HL",-8.3741 -"CanESM2","tas","temperature","tgav_HL","rcp26",2134,"Simulated","C","HL",-9.01599999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2135,"Simulated","C","HL",-9.26759999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2136,"Simulated","C","HL",-8.81709999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2137,"Simulated","C","HL",-9.0967 -"CanESM2","tas","temperature","tgav_HL","rcp26",2138,"Simulated","C","HL",-8.98749999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2139,"Simulated","C","HL",-8.66479999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2140,"Simulated","C","HL",-8.52939999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2141,"Simulated","C","HL",-8.46169999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2142,"Simulated","C","HL",-8.87949999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2143,"Simulated","C","HL",-8.8682 -"CanESM2","tas","temperature","tgav_HL","rcp26",2144,"Simulated","C","HL",-8.71939999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2145,"Simulated","C","HL",-8.66359999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2146,"Simulated","C","HL",-8.91679999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2147,"Simulated","C","HL",-9.74459999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2148,"Simulated","C","HL",-8.93549999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2149,"Simulated","C","HL",-8.60949999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2150,"Simulated","C","HL",-8.51819999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2151,"Simulated","C","HL",-9.19739999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2152,"Simulated","C","HL",-9.19459999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2153,"Simulated","C","HL",-8.84179999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2154,"Simulated","C","HL",-9.06099999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2155,"Simulated","C","HL",-9.12539999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2156,"Simulated","C","HL",-8.77449999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2157,"Simulated","C","HL",-9.17289999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2158,"Simulated","C","HL",-8.90549999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2159,"Simulated","C","HL",-9.16239999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2160,"Simulated","C","HL",-9.16699999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2161,"Simulated","C","HL",-8.73999999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2162,"Simulated","C","HL",-8.97919999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2163,"Simulated","C","HL",-8.42509999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2164,"Simulated","C","HL",-8.47949999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2165,"Simulated","C","HL",-8.80869999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2166,"Simulated","C","HL",-9.25979999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2167,"Simulated","C","HL",-8.52619999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2168,"Simulated","C","HL",-8.94119999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2169,"Simulated","C","HL",-8.8578 -"CanESM2","tas","temperature","tgav_HL","rcp26",2170,"Simulated","C","HL",-8.6454 -"CanESM2","tas","temperature","tgav_HL","rcp26",2171,"Simulated","C","HL",-8.73259999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2172,"Simulated","C","HL",-8.92309999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2173,"Simulated","C","HL",-8.71179999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2174,"Simulated","C","HL",-9.36419999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2175,"Simulated","C","HL",-8.35139999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2176,"Simulated","C","HL",-8.32579999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2177,"Simulated","C","HL",-9.0077 -"CanESM2","tas","temperature","tgav_HL","rcp26",2178,"Simulated","C","HL",-8.89139999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2179,"Simulated","C","HL",-9.04089999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2180,"Simulated","C","HL",-9.03119999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2181,"Simulated","C","HL",-8.96299999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2182,"Simulated","C","HL",-9.1309 -"CanESM2","tas","temperature","tgav_HL","rcp26",2183,"Simulated","C","HL",-8.72639999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2184,"Simulated","C","HL",-9.19009999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2185,"Simulated","C","HL",-9.07749999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2186,"Simulated","C","HL",-9.15969999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2187,"Simulated","C","HL",-8.6678 -"CanESM2","tas","temperature","tgav_HL","rcp26",2188,"Simulated","C","HL",-8.85039999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2189,"Simulated","C","HL",-9.14979999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2190,"Simulated","C","HL",-9.1463 -"CanESM2","tas","temperature","tgav_HL","rcp26",2191,"Simulated","C","HL",-9.16309999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2192,"Simulated","C","HL",-9.11739999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2193,"Simulated","C","HL",-8.9196 -"CanESM2","tas","temperature","tgav_HL","rcp26",2194,"Simulated","C","HL",-9.19079999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2195,"Simulated","C","HL",-9.07380000000001 -"CanESM2","tas","temperature","tgav_HL","rcp26",2196,"Simulated","C","HL",-9.47999999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2197,"Simulated","C","HL",-9.1662 -"CanESM2","tas","temperature","tgav_HL","rcp26",2198,"Simulated","C","HL",-9.13459999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2199,"Simulated","C","HL",-9.05369999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2200,"Simulated","C","HL",-9.15249999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2201,"Simulated","C","HL",-8.97249999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2202,"Simulated","C","HL",-9.31459999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2203,"Simulated","C","HL",-9.3947 -"CanESM2","tas","temperature","tgav_HL","rcp26",2204,"Simulated","C","HL",-9.26529999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2205,"Simulated","C","HL",-8.98779999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2206,"Simulated","C","HL",-8.69939999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2207,"Simulated","C","HL",-9.3612 -"CanESM2","tas","temperature","tgav_HL","rcp26",2208,"Simulated","C","HL",-8.75529999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2209,"Simulated","C","HL",-8.9273 -"CanESM2","tas","temperature","tgav_HL","rcp26",2210,"Simulated","C","HL",-9.0446 -"CanESM2","tas","temperature","tgav_HL","rcp26",2211,"Simulated","C","HL",-9.28219999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2212,"Simulated","C","HL",-9.20949999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2213,"Simulated","C","HL",-8.86919999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2214,"Simulated","C","HL",-8.38579999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2215,"Simulated","C","HL",-9.18599999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2216,"Simulated","C","HL",-9.13679999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2217,"Simulated","C","HL",-8.96839999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2218,"Simulated","C","HL",-8.48379999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2219,"Simulated","C","HL",-9.13599999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2220,"Simulated","C","HL",-9.07819999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2221,"Simulated","C","HL",-8.73419999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2222,"Simulated","C","HL",-8.90009999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2223,"Simulated","C","HL",-8.7217 -"CanESM2","tas","temperature","tgav_HL","rcp26",2224,"Simulated","C","HL",-9.2124 -"CanESM2","tas","temperature","tgav_HL","rcp26",2225,"Simulated","C","HL",-9.32119999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2226,"Simulated","C","HL",-9.267 -"CanESM2","tas","temperature","tgav_HL","rcp26",2227,"Simulated","C","HL",-9.52199999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2228,"Simulated","C","HL",-9.35059999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2229,"Simulated","C","HL",-9.02169999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2230,"Simulated","C","HL",-9.2552 -"CanESM2","tas","temperature","tgav_HL","rcp26",2231,"Simulated","C","HL",-9.48319999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2232,"Simulated","C","HL",-9.17669999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2233,"Simulated","C","HL",-9.334 -"CanESM2","tas","temperature","tgav_HL","rcp26",2234,"Simulated","C","HL",-9.10769999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2235,"Simulated","C","HL",-8.96359999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2236,"Simulated","C","HL",-8.61799999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2237,"Simulated","C","HL",-8.89949999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2238,"Simulated","C","HL",-9.17919999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2239,"Simulated","C","HL",-9.16889999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2240,"Simulated","C","HL",-8.61249999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2241,"Simulated","C","HL",-8.66559999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2242,"Simulated","C","HL",-8.78729999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2243,"Simulated","C","HL",-9.14169999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2244,"Simulated","C","HL",-9.03559999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2245,"Simulated","C","HL",-9.33119999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2246,"Simulated","C","HL",-8.99919999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2247,"Simulated","C","HL",-8.97979999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2248,"Simulated","C","HL",-9.6891 -"CanESM2","tas","temperature","tgav_HL","rcp26",2249,"Simulated","C","HL",-9.02859999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2250,"Simulated","C","HL",-9.47159999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2251,"Simulated","C","HL",-9.24699999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2252,"Simulated","C","HL",-9.29219999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2253,"Simulated","C","HL",-9.83449999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2254,"Simulated","C","HL",-9.63439999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2255,"Simulated","C","HL",-9.25879999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2256,"Simulated","C","HL",-9.36079999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2257,"Simulated","C","HL",-9.0711 -"CanESM2","tas","temperature","tgav_HL","rcp26",2258,"Simulated","C","HL",-9.47119999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2259,"Simulated","C","HL",-8.96049999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2260,"Simulated","C","HL",-9.16909999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2261,"Simulated","C","HL",-9.18179999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2262,"Simulated","C","HL",-8.76209999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2263,"Simulated","C","HL",-9.17809999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2264,"Simulated","C","HL",-9.55519999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2265,"Simulated","C","HL",-9.01299999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2266,"Simulated","C","HL",-8.77689999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2267,"Simulated","C","HL",-9.22399999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2268,"Simulated","C","HL",-9.41069999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2269,"Simulated","C","HL",-9.34539999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2270,"Simulated","C","HL",-9.30109999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2271,"Simulated","C","HL",-9.4264 -"CanESM2","tas","temperature","tgav_HL","rcp26",2272,"Simulated","C","HL",-9.26209999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2273,"Simulated","C","HL",-9.16369999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2274,"Simulated","C","HL",-9.07859999999999 -"CanESM2","tas","temperature","tgav_HL","rcp26",2275,"Simulated","C","HL",-9.26209999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2276,"Simulated","C","HL",-9.47949999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2277,"Simulated","C","HL",-9.68969999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2278,"Simulated","C","HL",-9.34819999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2279,"Simulated","C","HL",-9.57889999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2280,"Simulated","C","HL",-9.53389999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2281,"Simulated","C","HL",-9.24179999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2282,"Simulated","C","HL",-8.79129999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2283,"Simulated","C","HL",-9.21169999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2284,"Simulated","C","HL",-9.48879999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2285,"Simulated","C","HL",-9.14549999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2286,"Simulated","C","HL",-9.25219999999996 -"CanESM2","tas","temperature","tgav_HL","rcp26",2287,"Simulated","C","HL",-9.31959999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2288,"Simulated","C","HL",-10.0051 -"CanESM2","tas","temperature","tgav_HL","rcp26",2289,"Simulated","C","HL",-9.3023 -"CanESM2","tas","temperature","tgav_HL","rcp26",2290,"Simulated","C","HL",-9.51549999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2291,"Simulated","C","HL",-8.9323 -"CanESM2","tas","temperature","tgav_HL","rcp26",2292,"Simulated","C","HL",-8.76639999999998 -"CanESM2","tas","temperature","tgav_HL","rcp26",2293,"Simulated","C","HL",-9.125 -"CanESM2","tas","temperature","tgav_HL","rcp26",2294,"Simulated","C","HL",-9.65569999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2295,"Simulated","C","HL",-9.26989999999995 -"CanESM2","tas","temperature","tgav_HL","rcp26",2296,"Simulated","C","HL",-9.2491 -"CanESM2","tas","temperature","tgav_HL","rcp26",2297,"Simulated","C","HL",-9.8716 -"CanESM2","tas","temperature","tgav_HL","rcp26",2298,"Simulated","C","HL",-9.58979999999997 -"CanESM2","tas","temperature","tgav_HL","rcp26",2299,"Simulated","C","HL",-9.3673 -"CanESM2","tas","temperature","tgav_HL","rcp26",2300,"Simulated","C","HL",-9.14089999999999 -"CanESM2","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",20.3777 -"CanESM2","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",20.0789 -"CanESM2","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",19.9925 -"CanESM2","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",20.0379 -"CanESM2","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",20.1404 -"CanESM2","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",20.2748 -"CanESM2","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",20.3724 -"CanESM2","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",20.3365 -"CanESM2","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",20.2444 -"CanESM2","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",20.3515 -"CanESM2","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",20.3537 -"CanESM2","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",20.4425 -"CanESM2","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",20.5707 -"CanESM2","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",20.6039 -"CanESM2","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",20.5909 -"CanESM2","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",20.5477 -"CanESM2","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",20.621 -"CanESM2","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",20.6761 -"CanESM2","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",20.5083 -"CanESM2","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",20.5312 -"CanESM2","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",20.61 -"CanESM2","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",20.6651 -"CanESM2","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",20.8661 -"CanESM2","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",20.8551 -"CanESM2","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",20.6555 -"CanESM2","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",20.5249 -"CanESM2","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",20.761 -"CanESM2","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",21.0028 -"CanESM2","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",21.0282 -"CanESM2","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",20.9471 -"CanESM2","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",21.0219 -"CanESM2","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",21.0263 -"CanESM2","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",20.9588 -"CanESM2","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",20.768 -"CanESM2","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",20.9635 -"CanESM2","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",21.017 -"CanESM2","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",21.0353 -"CanESM2","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",21.1618 -"CanESM2","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",20.9929 -"CanESM2","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",20.8564 -"CanESM2","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",20.9765 -"CanESM2","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",21.0945 -"CanESM2","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",21.1023 -"CanESM2","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",21.2848 -"CanESM2","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",21.4181 -"CanESM2","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",21.0332 -"CanESM2","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",20.9306 -"CanESM2","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",21.1453 -"CanESM2","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",21.1273 -"CanESM2","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",21.1376 -"CanESM2","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",21.0152 -"CanESM2","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",21.0275 -"CanESM2","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",21.307 -"CanESM2","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",21.319 -"CanESM2","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",21.2232 -"CanESM2","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",21.168 -"CanESM2","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",21.062 -"CanESM2","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",21.1006 -"CanESM2","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",21.1257 -"CanESM2","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",21.1966 -"CanESM2","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",21.4284 -"CanESM2","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",21.3712 -"CanESM2","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",20.9823 -"CanESM2","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",20.9641 -"CanESM2","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",21.0983 -"CanESM2","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",21.088 -"CanESM2","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",21.1197 -"CanESM2","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",21.1192 -"CanESM2","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",20.9456 -"CanESM2","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",21.013 -"CanESM2","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",21.0683 -"CanESM2","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",20.9633 -"CanESM2","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",21.0319 -"CanESM2","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",21.1369 -"CanESM2","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",21.0388 -"CanESM2","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",20.8778 -"CanESM2","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",21.1501 -"CanESM2","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",21.1516 -"CanESM2","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",21.0203 -"CanESM2","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",20.9979 -"CanESM2","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",21.1722 -"CanESM2","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",21.06 -"CanESM2","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",21.1326 -"CanESM2","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",21.2391 -"CanESM2","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",21.2702 -"CanESM2","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",20.9188 -"CanESM2","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",20.8031 -"CanESM2","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",20.9646 -"CanESM2","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",21.1939 -"CanESM2","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",21.187 -"CanESM2","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",21.0894 -"CanESM2","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",21.1735 -"CanESM2","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",21.0712 -"CanESM2","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",21.0625 -"CanESM2","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",20.9173 -"CanESM2","tas","temperature","tgav_LL","rcp26",2101,"Simulated","C","LL",20.8437 -"CanESM2","tas","temperature","tgav_LL","rcp26",2102,"Simulated","C","LL",20.8523 -"CanESM2","tas","temperature","tgav_LL","rcp26",2103,"Simulated","C","LL",20.9805 -"CanESM2","tas","temperature","tgav_LL","rcp26",2104,"Simulated","C","LL",21.0005 -"CanESM2","tas","temperature","tgav_LL","rcp26",2105,"Simulated","C","LL",21.1141 -"CanESM2","tas","temperature","tgav_LL","rcp26",2106,"Simulated","C","LL",21.1158 -"CanESM2","tas","temperature","tgav_LL","rcp26",2107,"Simulated","C","LL",20.8736 -"CanESM2","tas","temperature","tgav_LL","rcp26",2108,"Simulated","C","LL",20.996 -"CanESM2","tas","temperature","tgav_LL","rcp26",2109,"Simulated","C","LL",21.1837 -"CanESM2","tas","temperature","tgav_LL","rcp26",2110,"Simulated","C","LL",21.0412 -"CanESM2","tas","temperature","tgav_LL","rcp26",2111,"Simulated","C","LL",20.883 -"CanESM2","tas","temperature","tgav_LL","rcp26",2112,"Simulated","C","LL",21.133 -"CanESM2","tas","temperature","tgav_LL","rcp26",2113,"Simulated","C","LL",21.1686 -"CanESM2","tas","temperature","tgav_LL","rcp26",2114,"Simulated","C","LL",20.9376 -"CanESM2","tas","temperature","tgav_LL","rcp26",2115,"Simulated","C","LL",21.02 -"CanESM2","tas","temperature","tgav_LL","rcp26",2116,"Simulated","C","LL",20.8711 -"CanESM2","tas","temperature","tgav_LL","rcp26",2117,"Simulated","C","LL",20.853 -"CanESM2","tas","temperature","tgav_LL","rcp26",2118,"Simulated","C","LL",20.8762 -"CanESM2","tas","temperature","tgav_LL","rcp26",2119,"Simulated","C","LL",20.8614 -"CanESM2","tas","temperature","tgav_LL","rcp26",2120,"Simulated","C","LL",21.0014 -"CanESM2","tas","temperature","tgav_LL","rcp26",2121,"Simulated","C","LL",20.9659 -"CanESM2","tas","temperature","tgav_LL","rcp26",2122,"Simulated","C","LL",21.0268 -"CanESM2","tas","temperature","tgav_LL","rcp26",2123,"Simulated","C","LL",20.8891 -"CanESM2","tas","temperature","tgav_LL","rcp26",2124,"Simulated","C","LL",20.8536 -"CanESM2","tas","temperature","tgav_LL","rcp26",2125,"Simulated","C","LL",21.0803 -"CanESM2","tas","temperature","tgav_LL","rcp26",2126,"Simulated","C","LL",21.1303 -"CanESM2","tas","temperature","tgav_LL","rcp26",2127,"Simulated","C","LL",21.0996 -"CanESM2","tas","temperature","tgav_LL","rcp26",2128,"Simulated","C","LL",21.1313 -"CanESM2","tas","temperature","tgav_LL","rcp26",2129,"Simulated","C","LL",21.1446 -"CanESM2","tas","temperature","tgav_LL","rcp26",2130,"Simulated","C","LL",21.0425 -"CanESM2","tas","temperature","tgav_LL","rcp26",2131,"Simulated","C","LL",20.8744 -"CanESM2","tas","temperature","tgav_LL","rcp26",2132,"Simulated","C","LL",20.9473 -"CanESM2","tas","temperature","tgav_LL","rcp26",2133,"Simulated","C","LL",20.9906 -"CanESM2","tas","temperature","tgav_LL","rcp26",2134,"Simulated","C","LL",20.9101 -"CanESM2","tas","temperature","tgav_LL","rcp26",2135,"Simulated","C","LL",21.1006 -"CanESM2","tas","temperature","tgav_LL","rcp26",2136,"Simulated","C","LL",21.1745 -"CanESM2","tas","temperature","tgav_LL","rcp26",2137,"Simulated","C","LL",20.8338 -"CanESM2","tas","temperature","tgav_LL","rcp26",2138,"Simulated","C","LL",20.9033 -"CanESM2","tas","temperature","tgav_LL","rcp26",2139,"Simulated","C","LL",21.0983 -"CanESM2","tas","temperature","tgav_LL","rcp26",2140,"Simulated","C","LL",21.0999 -"CanESM2","tas","temperature","tgav_LL","rcp26",2141,"Simulated","C","LL",21.0627 -"CanESM2","tas","temperature","tgav_LL","rcp26",2142,"Simulated","C","LL",20.8105 -"CanESM2","tas","temperature","tgav_LL","rcp26",2143,"Simulated","C","LL",20.8804 -"CanESM2","tas","temperature","tgav_LL","rcp26",2144,"Simulated","C","LL",21.0718 -"CanESM2","tas","temperature","tgav_LL","rcp26",2145,"Simulated","C","LL",20.9178 -"CanESM2","tas","temperature","tgav_LL","rcp26",2146,"Simulated","C","LL",20.7146 -"CanESM2","tas","temperature","tgav_LL","rcp26",2147,"Simulated","C","LL",20.7355 -"CanESM2","tas","temperature","tgav_LL","rcp26",2148,"Simulated","C","LL",20.9974 -"CanESM2","tas","temperature","tgav_LL","rcp26",2149,"Simulated","C","LL",21.0245 -"CanESM2","tas","temperature","tgav_LL","rcp26",2150,"Simulated","C","LL",20.7806 -"CanESM2","tas","temperature","tgav_LL","rcp26",2151,"Simulated","C","LL",20.7163 -"CanESM2","tas","temperature","tgav_LL","rcp26",2152,"Simulated","C","LL",20.8901 -"CanESM2","tas","temperature","tgav_LL","rcp26",2153,"Simulated","C","LL",20.9501 -"CanESM2","tas","temperature","tgav_LL","rcp26",2154,"Simulated","C","LL",20.9375 -"CanESM2","tas","temperature","tgav_LL","rcp26",2155,"Simulated","C","LL",20.7789 -"CanESM2","tas","temperature","tgav_LL","rcp26",2156,"Simulated","C","LL",21.0021 -"CanESM2","tas","temperature","tgav_LL","rcp26",2157,"Simulated","C","LL",21.008 -"CanESM2","tas","temperature","tgav_LL","rcp26",2158,"Simulated","C","LL",20.8684 -"CanESM2","tas","temperature","tgav_LL","rcp26",2159,"Simulated","C","LL",20.6937 -"CanESM2","tas","temperature","tgav_LL","rcp26",2160,"Simulated","C","LL",20.8428 -"CanESM2","tas","temperature","tgav_LL","rcp26",2161,"Simulated","C","LL",20.8907 -"CanESM2","tas","temperature","tgav_LL","rcp26",2162,"Simulated","C","LL",20.9705 -"CanESM2","tas","temperature","tgav_LL","rcp26",2163,"Simulated","C","LL",20.9825 -"CanESM2","tas","temperature","tgav_LL","rcp26",2164,"Simulated","C","LL",20.8658 -"CanESM2","tas","temperature","tgav_LL","rcp26",2165,"Simulated","C","LL",20.8102 -"CanESM2","tas","temperature","tgav_LL","rcp26",2166,"Simulated","C","LL",20.7568 -"CanESM2","tas","temperature","tgav_LL","rcp26",2167,"Simulated","C","LL",20.9159 -"CanESM2","tas","temperature","tgav_LL","rcp26",2168,"Simulated","C","LL",20.9906 -"CanESM2","tas","temperature","tgav_LL","rcp26",2169,"Simulated","C","LL",20.9609 -"CanESM2","tas","temperature","tgav_LL","rcp26",2170,"Simulated","C","LL",20.8252 -"CanESM2","tas","temperature","tgav_LL","rcp26",2171,"Simulated","C","LL",20.9004 -"CanESM2","tas","temperature","tgav_LL","rcp26",2172,"Simulated","C","LL",20.8522 -"CanESM2","tas","temperature","tgav_LL","rcp26",2173,"Simulated","C","LL",20.8714000000001 -"CanESM2","tas","temperature","tgav_LL","rcp26",2174,"Simulated","C","LL",20.8282 -"CanESM2","tas","temperature","tgav_LL","rcp26",2175,"Simulated","C","LL",21.0501 -"CanESM2","tas","temperature","tgav_LL","rcp26",2176,"Simulated","C","LL",21.0659 -"CanESM2","tas","temperature","tgav_LL","rcp26",2177,"Simulated","C","LL",20.8603 -"CanESM2","tas","temperature","tgav_LL","rcp26",2178,"Simulated","C","LL",20.9839 -"CanESM2","tas","temperature","tgav_LL","rcp26",2179,"Simulated","C","LL",20.9513 -"CanESM2","tas","temperature","tgav_LL","rcp26",2180,"Simulated","C","LL",20.8697 -"CanESM2","tas","temperature","tgav_LL","rcp26",2181,"Simulated","C","LL",20.7929 -"CanESM2","tas","temperature","tgav_LL","rcp26",2182,"Simulated","C","LL",20.9045 -"CanESM2","tas","temperature","tgav_LL","rcp26",2183,"Simulated","C","LL",20.9552 -"CanESM2","tas","temperature","tgav_LL","rcp26",2184,"Simulated","C","LL",21.0914 -"CanESM2","tas","temperature","tgav_LL","rcp26",2185,"Simulated","C","LL",20.8417 -"CanESM2","tas","temperature","tgav_LL","rcp26",2186,"Simulated","C","LL",20.776 -"CanESM2","tas","temperature","tgav_LL","rcp26",2187,"Simulated","C","LL",20.9274 -"CanESM2","tas","temperature","tgav_LL","rcp26",2188,"Simulated","C","LL",20.9846 -"CanESM2","tas","temperature","tgav_LL","rcp26",2189,"Simulated","C","LL",20.8295 -"CanESM2","tas","temperature","tgav_LL","rcp26",2190,"Simulated","C","LL",20.78 -"CanESM2","tas","temperature","tgav_LL","rcp26",2191,"Simulated","C","LL",20.9052 -"CanESM2","tas","temperature","tgav_LL","rcp26",2192,"Simulated","C","LL",20.9713 -"CanESM2","tas","temperature","tgav_LL","rcp26",2193,"Simulated","C","LL",20.7039 -"CanESM2","tas","temperature","tgav_LL","rcp26",2194,"Simulated","C","LL",20.6065 -"CanESM2","tas","temperature","tgav_LL","rcp26",2195,"Simulated","C","LL",20.765 -"CanESM2","tas","temperature","tgav_LL","rcp26",2196,"Simulated","C","LL",20.7302 -"CanESM2","tas","temperature","tgav_LL","rcp26",2197,"Simulated","C","LL",20.7611 -"CanESM2","tas","temperature","tgav_LL","rcp26",2198,"Simulated","C","LL",20.9546 -"CanESM2","tas","temperature","tgav_LL","rcp26",2199,"Simulated","C","LL",20.8367 -"CanESM2","tas","temperature","tgav_LL","rcp26",2200,"Simulated","C","LL",20.7478 -"CanESM2","tas","temperature","tgav_LL","rcp26",2201,"Simulated","C","LL",20.9239 -"CanESM2","tas","temperature","tgav_LL","rcp26",2202,"Simulated","C","LL",20.7827 -"CanESM2","tas","temperature","tgav_LL","rcp26",2203,"Simulated","C","LL",20.6662 -"CanESM2","tas","temperature","tgav_LL","rcp26",2204,"Simulated","C","LL",20.689 -"CanESM2","tas","temperature","tgav_LL","rcp26",2205,"Simulated","C","LL",20.8955 -"CanESM2","tas","temperature","tgav_LL","rcp26",2206,"Simulated","C","LL",20.9501 -"CanESM2","tas","temperature","tgav_LL","rcp26",2207,"Simulated","C","LL",20.8483 -"CanESM2","tas","temperature","tgav_LL","rcp26",2208,"Simulated","C","LL",21.0446 -"CanESM2","tas","temperature","tgav_LL","rcp26",2209,"Simulated","C","LL",20.8977 -"CanESM2","tas","temperature","tgav_LL","rcp26",2210,"Simulated","C","LL",20.7079 -"CanESM2","tas","temperature","tgav_LL","rcp26",2211,"Simulated","C","LL",20.6319 -"CanESM2","tas","temperature","tgav_LL","rcp26",2212,"Simulated","C","LL",20.6593 -"CanESM2","tas","temperature","tgav_LL","rcp26",2213,"Simulated","C","LL",20.7925 -"CanESM2","tas","temperature","tgav_LL","rcp26",2214,"Simulated","C","LL",20.9534 -"CanESM2","tas","temperature","tgav_LL","rcp26",2215,"Simulated","C","LL",20.856 -"CanESM2","tas","temperature","tgav_LL","rcp26",2216,"Simulated","C","LL",20.6105 -"CanESM2","tas","temperature","tgav_LL","rcp26",2217,"Simulated","C","LL",20.6806 -"CanESM2","tas","temperature","tgav_LL","rcp26",2218,"Simulated","C","LL",20.806 -"CanESM2","tas","temperature","tgav_LL","rcp26",2219,"Simulated","C","LL",20.7617 -"CanESM2","tas","temperature","tgav_LL","rcp26",2220,"Simulated","C","LL",20.8143 -"CanESM2","tas","temperature","tgav_LL","rcp26",2221,"Simulated","C","LL",20.8347 -"CanESM2","tas","temperature","tgav_LL","rcp26",2222,"Simulated","C","LL",20.8739 -"CanESM2","tas","temperature","tgav_LL","rcp26",2223,"Simulated","C","LL",20.7396 -"CanESM2","tas","temperature","tgav_LL","rcp26",2224,"Simulated","C","LL",20.6466 -"CanESM2","tas","temperature","tgav_LL","rcp26",2225,"Simulated","C","LL",20.7787 -"CanESM2","tas","temperature","tgav_LL","rcp26",2226,"Simulated","C","LL",20.827 -"CanESM2","tas","temperature","tgav_LL","rcp26",2227,"Simulated","C","LL",20.7194 -"CanESM2","tas","temperature","tgav_LL","rcp26",2228,"Simulated","C","LL",20.8336 -"CanESM2","tas","temperature","tgav_LL","rcp26",2229,"Simulated","C","LL",20.8365 -"CanESM2","tas","temperature","tgav_LL","rcp26",2230,"Simulated","C","LL",20.6576 -"CanESM2","tas","temperature","tgav_LL","rcp26",2231,"Simulated","C","LL",20.4991 -"CanESM2","tas","temperature","tgav_LL","rcp26",2232,"Simulated","C","LL",20.7229 -"CanESM2","tas","temperature","tgav_LL","rcp26",2233,"Simulated","C","LL",20.6549 -"CanESM2","tas","temperature","tgav_LL","rcp26",2234,"Simulated","C","LL",20.4825 -"CanESM2","tas","temperature","tgav_LL","rcp26",2235,"Simulated","C","LL",20.8006 -"CanESM2","tas","temperature","tgav_LL","rcp26",2236,"Simulated","C","LL",20.9065000000001 -"CanESM2","tas","temperature","tgav_LL","rcp26",2237,"Simulated","C","LL",20.6548 -"CanESM2","tas","temperature","tgav_LL","rcp26",2238,"Simulated","C","LL",20.7825 -"CanESM2","tas","temperature","tgav_LL","rcp26",2239,"Simulated","C","LL",20.6362 -"CanESM2","tas","temperature","tgav_LL","rcp26",2240,"Simulated","C","LL",20.6621 -"CanESM2","tas","temperature","tgav_LL","rcp26",2241,"Simulated","C","LL",20.6497 -"CanESM2","tas","temperature","tgav_LL","rcp26",2242,"Simulated","C","LL",20.7271 -"CanESM2","tas","temperature","tgav_LL","rcp26",2243,"Simulated","C","LL",20.7375 -"CanESM2","tas","temperature","tgav_LL","rcp26",2244,"Simulated","C","LL",20.7192 -"CanESM2","tas","temperature","tgav_LL","rcp26",2245,"Simulated","C","LL",20.6988 -"CanESM2","tas","temperature","tgav_LL","rcp26",2246,"Simulated","C","LL",20.6545 -"CanESM2","tas","temperature","tgav_LL","rcp26",2247,"Simulated","C","LL",20.79 -"CanESM2","tas","temperature","tgav_LL","rcp26",2248,"Simulated","C","LL",20.5322 -"CanESM2","tas","temperature","tgav_LL","rcp26",2249,"Simulated","C","LL",20.5874 -"CanESM2","tas","temperature","tgav_LL","rcp26",2250,"Simulated","C","LL",20.8249 -"CanESM2","tas","temperature","tgav_LL","rcp26",2251,"Simulated","C","LL",20.9491 -"CanESM2","tas","temperature","tgav_LL","rcp26",2252,"Simulated","C","LL",20.6603 -"CanESM2","tas","temperature","tgav_LL","rcp26",2253,"Simulated","C","LL",20.468 -"CanESM2","tas","temperature","tgav_LL","rcp26",2254,"Simulated","C","LL",20.6471 -"CanESM2","tas","temperature","tgav_LL","rcp26",2255,"Simulated","C","LL",20.8439 -"CanESM2","tas","temperature","tgav_LL","rcp26",2256,"Simulated","C","LL",20.8468 -"CanESM2","tas","temperature","tgav_LL","rcp26",2257,"Simulated","C","LL",20.8234 -"CanESM2","tas","temperature","tgav_LL","rcp26",2258,"Simulated","C","LL",20.5443 -"CanESM2","tas","temperature","tgav_LL","rcp26",2259,"Simulated","C","LL",20.5774 -"CanESM2","tas","temperature","tgav_LL","rcp26",2260,"Simulated","C","LL",20.7442 -"CanESM2","tas","temperature","tgav_LL","rcp26",2261,"Simulated","C","LL",20.8771 -"CanESM2","tas","temperature","tgav_LL","rcp26",2262,"Simulated","C","LL",20.7098 -"CanESM2","tas","temperature","tgav_LL","rcp26",2263,"Simulated","C","LL",20.4324 -"CanESM2","tas","temperature","tgav_LL","rcp26",2264,"Simulated","C","LL",20.4942 -"CanESM2","tas","temperature","tgav_LL","rcp26",2265,"Simulated","C","LL",20.8395 -"CanESM2","tas","temperature","tgav_LL","rcp26",2266,"Simulated","C","LL",20.898 -"CanESM2","tas","temperature","tgav_LL","rcp26",2267,"Simulated","C","LL",20.6827 -"CanESM2","tas","temperature","tgav_LL","rcp26",2268,"Simulated","C","LL",20.5533 -"CanESM2","tas","temperature","tgav_LL","rcp26",2269,"Simulated","C","LL",20.655 -"CanESM2","tas","temperature","tgav_LL","rcp26",2270,"Simulated","C","LL",20.8686 -"CanESM2","tas","temperature","tgav_LL","rcp26",2271,"Simulated","C","LL",20.7026 -"CanESM2","tas","temperature","tgav_LL","rcp26",2272,"Simulated","C","LL",20.7581 -"CanESM2","tas","temperature","tgav_LL","rcp26",2273,"Simulated","C","LL",20.8956 -"CanESM2","tas","temperature","tgav_LL","rcp26",2274,"Simulated","C","LL",20.7999 -"CanESM2","tas","temperature","tgav_LL","rcp26",2275,"Simulated","C","LL",20.6915 -"CanESM2","tas","temperature","tgav_LL","rcp26",2276,"Simulated","C","LL",20.5737 -"CanESM2","tas","temperature","tgav_LL","rcp26",2277,"Simulated","C","LL",20.5589000000001 -"CanESM2","tas","temperature","tgav_LL","rcp26",2278,"Simulated","C","LL",20.7157 -"CanESM2","tas","temperature","tgav_LL","rcp26",2279,"Simulated","C","LL",20.5476 -"CanESM2","tas","temperature","tgav_LL","rcp26",2280,"Simulated","C","LL",20.3902 -"CanESM2","tas","temperature","tgav_LL","rcp26",2281,"Simulated","C","LL",20.548 -"CanESM2","tas","temperature","tgav_LL","rcp26",2282,"Simulated","C","LL",20.5759 -"CanESM2","tas","temperature","tgav_LL","rcp26",2283,"Simulated","C","LL",20.6648 -"CanESM2","tas","temperature","tgav_LL","rcp26",2284,"Simulated","C","LL",20.806 -"CanESM2","tas","temperature","tgav_LL","rcp26",2285,"Simulated","C","LL",20.6334 -"CanESM2","tas","temperature","tgav_LL","rcp26",2286,"Simulated","C","LL",20.7801 -"CanESM2","tas","temperature","tgav_LL","rcp26",2287,"Simulated","C","LL",20.8416 -"CanESM2","tas","temperature","tgav_LL","rcp26",2288,"Simulated","C","LL",20.6974 -"CanESM2","tas","temperature","tgav_LL","rcp26",2289,"Simulated","C","LL",20.7154 -"CanESM2","tas","temperature","tgav_LL","rcp26",2290,"Simulated","C","LL",20.726 -"CanESM2","tas","temperature","tgav_LL","rcp26",2291,"Simulated","C","LL",20.6951 -"CanESM2","tas","temperature","tgav_LL","rcp26",2292,"Simulated","C","LL",20.521 -"CanESM2","tas","temperature","tgav_LL","rcp26",2293,"Simulated","C","LL",20.591 -"CanESM2","tas","temperature","tgav_LL","rcp26",2294,"Simulated","C","LL",20.6791 -"CanESM2","tas","temperature","tgav_LL","rcp26",2295,"Simulated","C","LL",20.7046 -"CanESM2","tas","temperature","tgav_LL","rcp26",2296,"Simulated","C","LL",20.5925 -"CanESM2","tas","temperature","tgav_LL","rcp26",2297,"Simulated","C","LL",20.5722 -"CanESM2","tas","temperature","tgav_LL","rcp26",2298,"Simulated","C","LL",20.5074 -"CanESM2","tas","temperature","tgav_LL","rcp26",2299,"Simulated","C","LL",20.6582 -"CanESM2","tas","temperature","tgav_LL","rcp26",2300,"Simulated","C","LL",20.6719000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",14.0415 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",14.0198 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",14.1484 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",14.2326 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",14.188 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",14.2164 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",14.2868 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",14.1757 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",14.3932 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",14.4403 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",14.2055 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",14.2979 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",14.1764 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",14.0955 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",14.1447 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",14.2045 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",14.3111 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",14.3578 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",14.356 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",14.4647000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",14.2041 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",14.4082 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",14.473 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",14.4516 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",14.3061 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",14.3907 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",14.3747 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",14.3228 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",14.3295 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",14.3528 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",14.3371 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",14.4875 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",14.4902 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",14.4195 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",14.4467 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",14.3714000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",14.4011 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",14.4007 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",14.3525 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",14.4085 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",14.4809 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",14.5232 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",14.396 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",14.2923 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",14.5083 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",14.3548 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",14.3087 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",14.3312 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",14.2601 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",14.2468 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",14.288 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",14.284 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",14.421 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",14.2716 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",14.1552 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",14.1895 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",14.236 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",14.2726 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",14.0621 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",14.0811 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",14.1345 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",14.0939 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",14.1044 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",14.1027 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",14.134 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",14.003 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",14.1444 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",14.1122 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",13.9662 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",14.1336 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",14.1816 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",14.0433 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",14.0172 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",14.067 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",14.0222 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",14.0936 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",14.2323 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",14.0349000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",14.1821 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",14.194 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",14.2659 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",14.0811 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",14.1293 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",14.1088 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",14.2887 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",14.4821 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",14.1563 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",14.1018 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",14.0700000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",14.0467 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",14.0013 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",13.9823 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",14.0433 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",14.1991 -"GFDL-ESM2G","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",14.0311 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-8.65709999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-8.67949999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-8.46009999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-8.4896 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-8.2296 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-8.3802 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-8.22039999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-8.36859999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-8.19939999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-8.0027 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-8.76049999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-8.28049999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-8.3759 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-8.79179999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-8.71849999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-8.6062 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-8.34319999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-8.21029999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-7.96099999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-8.01889999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-8.40689999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-8.38419999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-8.20689999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-8.00979999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-8.26179999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-8.17169999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-8.29229999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-8.33659999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-8.69159999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-8.43769999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-8.35199999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-8.24189999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-8.19169999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-8.44649999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-8.25319999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-8.73939999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-8.03249999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-8.12009999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-8.38200000000001 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-8.21839999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-8.1472 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-8.1891 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-8.31699999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-8.75899999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-8.3381 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-8.52949999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-8.73039999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-8.67539999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-8.76009999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-8.72459999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-8.70919999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-8.60819999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-8.27319999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-8.55329999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-8.8331 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-8.53099999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-8.64159999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-8.56799999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-8.7303 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-8.85919999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-8.84639999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-8.81999999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-8.94649999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-8.7527 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-8.67089999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-9.0779 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-8.69509999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-8.97339999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-9.24779999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-8.88929999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-8.64139999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-8.8895 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-8.86849999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-8.96099999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-9.43849999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-9.07619999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-8.16499999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-8.86959999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-8.60809999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-8.70509999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-8.66029999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-8.74829999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-8.57249999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-8.7355 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-8.64209999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-8.34569999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-8.87559999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-8.6703 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-9.0523 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-9.0324 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-9.2312 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-9.245 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-9.01259999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-9.01459999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-9.10729999999995 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",19.1873000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",19.1657 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",19.2737 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",19.3837 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",19.27 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",19.339 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",19.3892 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",19.2865 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",19.5149 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",19.5281 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",19.4118 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",19.4164 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",19.289 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",19.284 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",19.3277 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",19.3757 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",19.4468 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",19.474 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",19.4152 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",19.5617 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",19.33 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",19.5752 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",19.6145 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",19.5436 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",19.4223 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",19.5056 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",19.5133 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",19.4597 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",19.5484 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",19.5193 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",19.4806 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",19.6402 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",19.6321 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",19.6032 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",19.5927 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",19.6106 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",19.4867 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",19.5061 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",19.5064 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",19.538 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",19.6107 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",19.6721 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",19.545 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",19.518 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",19.6875 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",19.5426 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",19.5317 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",19.5468 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",19.4787 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",19.4544 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",19.5014 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",19.4737 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",19.5658 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",19.4459 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",19.3666 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",19.3402 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",19.4223 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",19.4505 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",19.2291 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",19.2817 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",19.3442 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",19.2884 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",19.33 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",19.2839 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",19.3039 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",19.2354 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",19.3221 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",19.3456 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",19.2288 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",19.3529 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",19.3556 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",19.2421000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",19.2054 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",19.2874 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",19.3407 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",19.3461 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",19.3097 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",19.2274 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",19.3486 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",19.3852 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",19.4632 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",19.2565 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",19.2758 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",19.2875 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",19.4871 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",19.6571 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",19.3776 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",19.2642 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",19.3118 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",19.2787 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",19.2681 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",19.248 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",19.27 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",19.4616 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",19.2766 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2005,"Simulated","C","global",12.386275 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",14.401175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",14.397875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",14.394575 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",14.493125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",14.39345 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",14.408725 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",14.57175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",14.67415 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",14.706525 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",14.709425 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",14.6968 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",14.73575 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",14.87355 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",14.9168 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",14.97685 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",15.000525 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",14.954125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",15.00025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",15.0115 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",15.03435 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",15.03515 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",15.038675 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",15.06835 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",15.078175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",15.15115 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",15.207025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",15.227775 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",15.21555 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",15.212875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",15.252875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",15.314875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",15.3286 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",15.19895 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",15.26655 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",15.266925 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",15.31185 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",15.3883 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",15.39295 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",15.368825 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",15.419125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",15.427625 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",15.475175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",15.538325 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",15.608625 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",15.56185 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",15.540725 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",15.46675 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",15.51045 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",15.50075 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",15.531 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",15.570025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",15.5893 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",15.45465 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",15.565325 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",15.528625 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",15.630875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",15.585975 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",15.56025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",15.45715 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",15.45405 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",15.478525 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",15.546 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",15.498725 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",15.570725 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",15.500025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",15.5212 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",15.4538 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",15.503525 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",15.550125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",15.467375 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",15.4813 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",15.470125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",15.489975 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",15.52615 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",15.4873 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",15.447 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",15.48305 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",15.504925 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",15.43355 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",15.444125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",15.514375 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",15.48485 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",15.4963 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",15.49505 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",15.498975 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",15.44145 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",15.404 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",15.4045 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",15.380175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",15.365125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",15.3486 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",15.356825 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",15.35325 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",15.328175 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",15.286025 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2101,"Simulated","C","global",15.3472 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2102,"Simulated","C","global",15.4016 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2103,"Simulated","C","global",15.351 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2104,"Simulated","C","global",15.4354 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2105,"Simulated","C","global",15.4459 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2106,"Simulated","C","global",15.3519 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2107,"Simulated","C","global",15.3178 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2108,"Simulated","C","global",15.1782 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2109,"Simulated","C","global",15.1331 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2110,"Simulated","C","global",15.3123000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2111,"Simulated","C","global",15.4376 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2112,"Simulated","C","global",15.2796 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2113,"Simulated","C","global",15.4181 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2114,"Simulated","C","global",15.3791000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2115,"Simulated","C","global",15.3035 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2116,"Simulated","C","global",15.2678 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2117,"Simulated","C","global",15.2967 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2118,"Simulated","C","global",15.3542 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2119,"Simulated","C","global",15.2767 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2120,"Simulated","C","global",15.2873 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2121,"Simulated","C","global",15.3595 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2122,"Simulated","C","global",15.284 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2123,"Simulated","C","global",15.1856 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2124,"Simulated","C","global",15.2187 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2125,"Simulated","C","global",15.3091 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2126,"Simulated","C","global",15.2107 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2127,"Simulated","C","global",15.1201 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2128,"Simulated","C","global",15.194 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2129,"Simulated","C","global",15.1824 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2130,"Simulated","C","global",15.0874 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2131,"Simulated","C","global",15.1263 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2132,"Simulated","C","global",15.2624 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2133,"Simulated","C","global",15.3876 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2134,"Simulated","C","global",15.382 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2135,"Simulated","C","global",15.4765 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2136,"Simulated","C","global",15.5844 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2137,"Simulated","C","global",15.4613000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2138,"Simulated","C","global",15.3445 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2139,"Simulated","C","global",15.1237 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2140,"Simulated","C","global",15.1006 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2141,"Simulated","C","global",15.1757 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2142,"Simulated","C","global",15.2636 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2143,"Simulated","C","global",15.3186 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2144,"Simulated","C","global",15.2909 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2145,"Simulated","C","global",15.3445 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2146,"Simulated","C","global",15.3659 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2147,"Simulated","C","global",15.2053 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2148,"Simulated","C","global",15.3022 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2149,"Simulated","C","global",15.3288 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2150,"Simulated","C","global",15.2052 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2151,"Simulated","C","global",15.1369 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2152,"Simulated","C","global",15.2117 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2153,"Simulated","C","global",15.1099 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2154,"Simulated","C","global",15.0936 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2155,"Simulated","C","global",15.2832 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2156,"Simulated","C","global",15.3342 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2157,"Simulated","C","global",15.3964 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2158,"Simulated","C","global",15.3531 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2159,"Simulated","C","global",15.1653 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2160,"Simulated","C","global",15.2845 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2161,"Simulated","C","global",15.2561 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2162,"Simulated","C","global",15.2496 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2163,"Simulated","C","global",15.2253 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2164,"Simulated","C","global",15.1599000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2165,"Simulated","C","global",15.0877 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2166,"Simulated","C","global",15.0706 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2167,"Simulated","C","global",15.2401 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2168,"Simulated","C","global",15.2569 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2169,"Simulated","C","global",15.247 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2170,"Simulated","C","global",15.0818 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2171,"Simulated","C","global",15.1931 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2172,"Simulated","C","global",15.2443 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2173,"Simulated","C","global",15.387 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2174,"Simulated","C","global",15.3747 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2175,"Simulated","C","global",15.3873 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2176,"Simulated","C","global",15.456 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2177,"Simulated","C","global",15.5293 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2178,"Simulated","C","global",15.2438 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2179,"Simulated","C","global",15.1361 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2180,"Simulated","C","global",15.1481 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2181,"Simulated","C","global",15.1765 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2182,"Simulated","C","global",15.1284 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2183,"Simulated","C","global",15.1768 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2184,"Simulated","C","global",15.3176 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2185,"Simulated","C","global",15.1778 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2186,"Simulated","C","global",15.2017 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2187,"Simulated","C","global",15.1117 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2188,"Simulated","C","global",15.2297 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2189,"Simulated","C","global",15.2454 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2190,"Simulated","C","global",15.2683 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2191,"Simulated","C","global",15.1729 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2192,"Simulated","C","global",15.2013 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2193,"Simulated","C","global",15.2722 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2194,"Simulated","C","global",15.279 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2195,"Simulated","C","global",15.1879 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2196,"Simulated","C","global",15.2271 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2197,"Simulated","C","global",15.1919 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2198,"Simulated","C","global",15.2966 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2199,"Simulated","C","global",15.1883 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2200,"Simulated","C","global",15.1921 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2201,"Simulated","C","global",15.1358 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2202,"Simulated","C","global",15.307 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2203,"Simulated","C","global",15.1903 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2204,"Simulated","C","global",15.1612 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2205,"Simulated","C","global",15.0886 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2206,"Simulated","C","global",15.046 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2207,"Simulated","C","global",15.0412 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2208,"Simulated","C","global",14.9791 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2209,"Simulated","C","global",14.962 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2210,"Simulated","C","global",15.0494 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2211,"Simulated","C","global",14.9851 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2212,"Simulated","C","global",15.0058 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2213,"Simulated","C","global",14.8784 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2214,"Simulated","C","global",14.9246 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2215,"Simulated","C","global",14.9562 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2216,"Simulated","C","global",14.9774 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2217,"Simulated","C","global",14.9327 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2218,"Simulated","C","global",14.9515 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2219,"Simulated","C","global",15.048 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2220,"Simulated","C","global",15.1106 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2221,"Simulated","C","global",15.0748 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2222,"Simulated","C","global",15.1291000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2223,"Simulated","C","global",15.1581 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2224,"Simulated","C","global",15.2967 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2225,"Simulated","C","global",15.3584 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2226,"Simulated","C","global",15.1477 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2227,"Simulated","C","global",15.103 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2228,"Simulated","C","global",15.1563 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2229,"Simulated","C","global",15.1228 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2230,"Simulated","C","global",15.1001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2231,"Simulated","C","global",14.9802 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2232,"Simulated","C","global",15.0507 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2233,"Simulated","C","global",15.1019 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2234,"Simulated","C","global",15.1013 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2235,"Simulated","C","global",15.2287 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2236,"Simulated","C","global",15.1429 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2237,"Simulated","C","global",15.107 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2238,"Simulated","C","global",15.0723 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2239,"Simulated","C","global",15.0402 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2240,"Simulated","C","global",15.0995 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2241,"Simulated","C","global",15.1634 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2242,"Simulated","C","global",15.0347 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2243,"Simulated","C","global",15.1191 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2244,"Simulated","C","global",15.3035 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2245,"Simulated","C","global",15.3654 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2246,"Simulated","C","global",15.2125 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2247,"Simulated","C","global",15.2081 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2248,"Simulated","C","global",15.1299 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2249,"Simulated","C","global",15.1823 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2250,"Simulated","C","global",15.1498 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2251,"Simulated","C","global",15.0574 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2252,"Simulated","C","global",15.1823 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2253,"Simulated","C","global",15.149 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2254,"Simulated","C","global",15.2916 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2255,"Simulated","C","global",15.1588 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2256,"Simulated","C","global",15.2002 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2257,"Simulated","C","global",15.1982 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2258,"Simulated","C","global",15.152 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2259,"Simulated","C","global",15.1336 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2260,"Simulated","C","global",15.1909 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2261,"Simulated","C","global",15.1644 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2262,"Simulated","C","global",15.1519 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2263,"Simulated","C","global",15.1758 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2264,"Simulated","C","global",15.1886 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2265,"Simulated","C","global",15.3322 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2266,"Simulated","C","global",15.3167 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2267,"Simulated","C","global",15.3320000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2268,"Simulated","C","global",15.1619 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2269,"Simulated","C","global",15.0781 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2270,"Simulated","C","global",15.1005 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2271,"Simulated","C","global",14.9639 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2272,"Simulated","C","global",14.9819 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2273,"Simulated","C","global",15.0875 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2274,"Simulated","C","global",14.9642 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2275,"Simulated","C","global",14.9216 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2276,"Simulated","C","global",15.0794 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2277,"Simulated","C","global",15.2241 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2278,"Simulated","C","global",15.0873 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2279,"Simulated","C","global",14.803 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2280,"Simulated","C","global",14.9889 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2281,"Simulated","C","global",14.9905 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2282,"Simulated","C","global",15.1698 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2283,"Simulated","C","global",15.1444 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2284,"Simulated","C","global",15.1209 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2285,"Simulated","C","global",15.1279 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2286,"Simulated","C","global",15.1825 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2287,"Simulated","C","global",15.0552 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2288,"Simulated","C","global",15.0899 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2289,"Simulated","C","global",15.0940000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2290,"Simulated","C","global",15.1226 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2291,"Simulated","C","global",14.9928 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2292,"Simulated","C","global",14.8824 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2293,"Simulated","C","global",15.0358 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2294,"Simulated","C","global",14.9966 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2295,"Simulated","C","global",15.096 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2296,"Simulated","C","global",14.9824 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2297,"Simulated","C","global",14.8267 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2298,"Simulated","C","global",14.8448 -"HadGEM2-ES","tas","temperature","tgav","rcp26",2299,"Simulated","C","global",15.114 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2005,"Simulated","C","HL",-11.287225 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-8.34114999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-8.27772499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-8.15732499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-8.01784999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-8.21047499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-8.24469999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-8.07774999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-7.82164999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-7.82527499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-7.80097499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-7.84454999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-7.85097499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-7.45397499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-7.38247499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-7.20444999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-7.32412499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-7.62274999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-7.35297499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-7.31134999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-7.31182499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-7.14587499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-7.11802499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-7.16062499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-7.18714999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-7.04512499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-7.13037499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-7.01584999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-7.05609999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-7.01292499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-6.87032499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-6.82504999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-6.77367499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-7.03282499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-6.95614999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-7.07374999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-6.95672499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-6.71234999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-6.52587499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-6.56092499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-6.44737499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-6.65312499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-6.63524999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-6.54784999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-6.452125 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-6.38767499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-6.36189999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-6.46737499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-6.49357499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-6.52444999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-6.62224999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-6.59534999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-6.44867499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-6.54597499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-6.49857499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-6.52037499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-6.29397499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-6.34214999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-6.40819999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-6.47864999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-6.58824999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-6.59629999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-6.42134999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-6.60304999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-6.48749999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-6.63817499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-6.41319999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-6.70237499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-6.61832499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-6.58069999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-6.67677499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-6.58257499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-6.56132499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-6.51904999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-6.55024999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-6.55764999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-6.60552499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-6.53617499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-6.53569999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-6.63327499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-6.70944999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-6.539125 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-6.65719999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-6.52132499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-6.43857499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-6.42509999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-6.51614999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-6.59944999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-6.65429999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-6.77422499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-6.79599999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-6.76104999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-6.84652499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-6.65534999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-6.66169999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-6.79644999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2101,"Simulated","C","HL",-6.58709999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2102,"Simulated","C","HL",-6.40019999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2103,"Simulated","C","HL",-6.74469999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2104,"Simulated","C","HL",-6.76429999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2105,"Simulated","C","HL",-6.6431 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2106,"Simulated","C","HL",-6.76619999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2107,"Simulated","C","HL",-6.49339999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2108,"Simulated","C","HL",-7.00629999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2109,"Simulated","C","HL",-7.19629999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2110,"Simulated","C","HL",-7.03949999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2111,"Simulated","C","HL",-6.7296 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2112,"Simulated","C","HL",-6.84039999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2113,"Simulated","C","HL",-6.52549999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2114,"Simulated","C","HL",-6.90129999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2115,"Simulated","C","HL",-6.85609999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2116,"Simulated","C","HL",-6.78209999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2117,"Simulated","C","HL",-6.69219999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2118,"Simulated","C","HL",-6.57589999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2119,"Simulated","C","HL",-7.13409999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2120,"Simulated","C","HL",-7.05009999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2121,"Simulated","C","HL",-6.71809999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2122,"Simulated","C","HL",-6.95759999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2123,"Simulated","C","HL",-6.87879999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2124,"Simulated","C","HL",-6.94409999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2125,"Simulated","C","HL",-6.90469999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2126,"Simulated","C","HL",-6.89339999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2127,"Simulated","C","HL",-6.97559999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2128,"Simulated","C","HL",-6.81279999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2129,"Simulated","C","HL",-7.22749999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2130,"Simulated","C","HL",-7.12509999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2131,"Simulated","C","HL",-7.31869999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2132,"Simulated","C","HL",-6.74099999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2133,"Simulated","C","HL",-6.74019999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2134,"Simulated","C","HL",-6.99679999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2135,"Simulated","C","HL",-6.56879999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2136,"Simulated","C","HL",-6.44289999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2137,"Simulated","C","HL",-6.38439999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2138,"Simulated","C","HL",-6.45169999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2139,"Simulated","C","HL",-6.95739999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2140,"Simulated","C","HL",-7.11589999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2141,"Simulated","C","HL",-7.03269999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2142,"Simulated","C","HL",-6.7176 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2143,"Simulated","C","HL",-6.53440000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2144,"Simulated","C","HL",-6.7079 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2145,"Simulated","C","HL",-6.72669999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2146,"Simulated","C","HL",-6.84889999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2147,"Simulated","C","HL",-7.05789999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2148,"Simulated","C","HL",-6.58609999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2149,"Simulated","C","HL",-6.9341 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2150,"Simulated","C","HL",-7.17099999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2151,"Simulated","C","HL",-7.13579999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2152,"Simulated","C","HL",-6.79809999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2153,"Simulated","C","HL",-7.20259999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2154,"Simulated","C","HL",-7.32669999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2155,"Simulated","C","HL",-7.00969999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2156,"Simulated","C","HL",-7.00009999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2157,"Simulated","C","HL",-6.68739999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2158,"Simulated","C","HL",-6.82589999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2159,"Simulated","C","HL",-7.4187 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2160,"Simulated","C","HL",-6.84839999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2161,"Simulated","C","HL",-6.9083 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2162,"Simulated","C","HL",-6.99930000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2163,"Simulated","C","HL",-6.99429999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2164,"Simulated","C","HL",-6.63219999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2165,"Simulated","C","HL",-6.91489999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2166,"Simulated","C","HL",-7.01029999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2167,"Simulated","C","HL",-6.91129999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2168,"Simulated","C","HL",-6.76139999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2169,"Simulated","C","HL",-6.75019999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2170,"Simulated","C","HL",-7.11279999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2171,"Simulated","C","HL",-6.80709999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2172,"Simulated","C","HL",-6.8304 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2173,"Simulated","C","HL",-6.77369999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2174,"Simulated","C","HL",-6.70869999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2175,"Simulated","C","HL",-6.8843 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2176,"Simulated","C","HL",-6.58959999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2177,"Simulated","C","HL",-6.46499999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2178,"Simulated","C","HL",-6.72399999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2179,"Simulated","C","HL",-6.7912 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2180,"Simulated","C","HL",-6.85890000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2181,"Simulated","C","HL",-6.8313 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2182,"Simulated","C","HL",-6.9896 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2183,"Simulated","C","HL",-7.0498 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2184,"Simulated","C","HL",-6.63989999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2185,"Simulated","C","HL",-7.41289999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2186,"Simulated","C","HL",-6.99089999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2187,"Simulated","C","HL",-7.19229999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2188,"Simulated","C","HL",-6.77959999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2189,"Simulated","C","HL",-7.02439999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2190,"Simulated","C","HL",-6.94889999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2191,"Simulated","C","HL",-7.0573 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2192,"Simulated","C","HL",-7.11399999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2193,"Simulated","C","HL",-6.83759999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2194,"Simulated","C","HL",-6.88939999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2195,"Simulated","C","HL",-6.94889999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2196,"Simulated","C","HL",-7.0138 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2197,"Simulated","C","HL",-7.14329999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2198,"Simulated","C","HL",-6.91069999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2199,"Simulated","C","HL",-6.92449999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2200,"Simulated","C","HL",-7.07579999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2201,"Simulated","C","HL",-7.30599999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2202,"Simulated","C","HL",-6.92469999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2203,"Simulated","C","HL",-7.06629999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2204,"Simulated","C","HL",-7.05529999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2205,"Simulated","C","HL",-7.06219999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2206,"Simulated","C","HL",-7.22489999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2207,"Simulated","C","HL",-7.34099999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2208,"Simulated","C","HL",-7.71319999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2209,"Simulated","C","HL",-7.74989999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2210,"Simulated","C","HL",-7.33259999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2211,"Simulated","C","HL",-7.39079999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2212,"Simulated","C","HL",-7.11559999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2213,"Simulated","C","HL",-7.18059999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2214,"Simulated","C","HL",-7.33209999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2215,"Simulated","C","HL",-7.5813 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2216,"Simulated","C","HL",-7.29829999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2217,"Simulated","C","HL",-7.52569999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2218,"Simulated","C","HL",-7.46299999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2219,"Simulated","C","HL",-7.55359999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2220,"Simulated","C","HL",-7.19469999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2221,"Simulated","C","HL",-7.13749999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2222,"Simulated","C","HL",-7.04640000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2223,"Simulated","C","HL",-6.93429999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2224,"Simulated","C","HL",-6.67659999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2225,"Simulated","C","HL",-6.5831 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2226,"Simulated","C","HL",-6.6703 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2227,"Simulated","C","HL",-7.10239999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2228,"Simulated","C","HL",-7.11149999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2229,"Simulated","C","HL",-7.09229999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2230,"Simulated","C","HL",-7.07599999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2231,"Simulated","C","HL",-6.95519999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2232,"Simulated","C","HL",-6.99629999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2233,"Simulated","C","HL",-7.01130000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2234,"Simulated","C","HL",-7.23849999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2235,"Simulated","C","HL",-6.84829999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2236,"Simulated","C","HL",-6.94999999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2237,"Simulated","C","HL",-7.0138 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2238,"Simulated","C","HL",-7.09219999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2239,"Simulated","C","HL",-7.16069999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2240,"Simulated","C","HL",-7.22389999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2241,"Simulated","C","HL",-6.79079999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2242,"Simulated","C","HL",-7.16849999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2243,"Simulated","C","HL",-7.12519999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2244,"Simulated","C","HL",-6.92339999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2245,"Simulated","C","HL",-6.98689999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2246,"Simulated","C","HL",-6.82939999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2247,"Simulated","C","HL",-6.68699999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2248,"Simulated","C","HL",-6.92949999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2249,"Simulated","C","HL",-6.78269999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2250,"Simulated","C","HL",-6.70209999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2251,"Simulated","C","HL",-6.73390000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2252,"Simulated","C","HL",-6.8546 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2253,"Simulated","C","HL",-7.08769999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2254,"Simulated","C","HL",-6.56279999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2255,"Simulated","C","HL",-6.59469999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2256,"Simulated","C","HL",-6.51649999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2257,"Simulated","C","HL",-6.81129999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2258,"Simulated","C","HL",-7.02869999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2259,"Simulated","C","HL",-6.82589999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2260,"Simulated","C","HL",-6.72069999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2261,"Simulated","C","HL",-6.92869999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2262,"Simulated","C","HL",-6.97469999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2263,"Simulated","C","HL",-7.28639999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2264,"Simulated","C","HL",-7.26579999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2265,"Simulated","C","HL",-7.14349999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2266,"Simulated","C","HL",-6.8605 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2267,"Simulated","C","HL",-6.5958 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2268,"Simulated","C","HL",-6.78799999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2269,"Simulated","C","HL",-6.87489999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2270,"Simulated","C","HL",-6.78589999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2271,"Simulated","C","HL",-6.85789999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2272,"Simulated","C","HL",-7.27259999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2273,"Simulated","C","HL",-7.21529999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2274,"Simulated","C","HL",-7.20779999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2275,"Simulated","C","HL",-7.43439999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2276,"Simulated","C","HL",-7.11329999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2277,"Simulated","C","HL",-6.73659999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2278,"Simulated","C","HL",-7.37019999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2279,"Simulated","C","HL",-7.80349999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2280,"Simulated","C","HL",-7.29499999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2281,"Simulated","C","HL",-7.34639999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2282,"Simulated","C","HL",-6.96749999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2283,"Simulated","C","HL",-6.93759999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2284,"Simulated","C","HL",-7.041 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2285,"Simulated","C","HL",-6.8886 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2286,"Simulated","C","HL",-6.76159999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2287,"Simulated","C","HL",-7.04859999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2288,"Simulated","C","HL",-6.63529999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2289,"Simulated","C","HL",-6.99549999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2290,"Simulated","C","HL",-6.88799999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2291,"Simulated","C","HL",-7.24959999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2292,"Simulated","C","HL",-7.58019999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2293,"Simulated","C","HL",-7.41119999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2294,"Simulated","C","HL",-7.3297 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2295,"Simulated","C","HL",-7.39400000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2296,"Simulated","C","HL",-7.33389999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2297,"Simulated","C","HL",-7.2534 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2298,"Simulated","C","HL",-7.28919999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp26",2299,"Simulated","C","HL",-7.2672 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2005,"Simulated","C","LL",17.837825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",19.639125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",19.620425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",19.588675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",19.677875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",19.5995 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",19.62625 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",19.788275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",19.8553 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",19.8960250000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",19.893925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",19.888425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",19.937875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",20.015975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",20.05275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",20.085575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",20.1423 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",20.153975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",20.148575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",20.1528 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",20.18105 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",20.1438 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",20.141725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",20.18805 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",20.206225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",20.26335 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",20.351725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",20.3509 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",20.3451 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",20.3319 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",20.3482 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",20.414075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",20.4191 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",20.31925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",20.3848 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",20.41235 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",20.4406 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",20.478425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",20.4412 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",20.4196 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",20.455375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",20.513125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",20.56755 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",20.6251 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",20.689525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",20.61715 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",20.58525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",20.5185 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",20.578325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",20.573525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",20.633275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",20.6751 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",20.664975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",20.521675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",20.6469 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",20.606825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",20.680525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",20.63635 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",20.6199 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",20.509225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",20.5307 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",20.562675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",20.605425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",20.589075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",20.651075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",20.5988 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",20.573025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",20.5567 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",20.59855 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",20.6472 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",20.56755 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",20.56295 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",20.5443 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",20.55895 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",20.6107 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",20.564575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",20.52605 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",20.554425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",20.5812 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",20.5159 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",20.546425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",20.59365 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",20.584475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",20.5673 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",20.546725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",20.5484 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",20.498625 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",20.471725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",20.48495 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",20.4827 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",20.4692 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",20.4408 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",20.470625 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",20.422225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",20.392775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",20.371975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2101,"Simulated","C","LL",20.3991 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2102,"Simulated","C","LL",20.423 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2103,"Simulated","C","LL",20.4399 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2104,"Simulated","C","LL",20.5483 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2105,"Simulated","C","LL",20.5333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2106,"Simulated","C","LL",20.446 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2107,"Simulated","C","LL",20.3413 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2108,"Simulated","C","LL",20.2877 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2109,"Simulated","C","LL",20.2759 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2110,"Simulated","C","LL",20.4602 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2111,"Simulated","C","LL",20.543 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2112,"Simulated","C","LL",20.3741 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2113,"Simulated","C","LL",20.4721 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2114,"Simulated","C","LL",20.5106 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2115,"Simulated","C","LL",20.4073 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2116,"Simulated","C","LL",20.3462 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2117,"Simulated","C","LL",20.361 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2118,"Simulated","C","LL",20.405 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2119,"Simulated","C","LL",20.4382 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2120,"Simulated","C","LL",20.432 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2121,"Simulated","C","LL",20.4443 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2122,"Simulated","C","LL",20.4065000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2123,"Simulated","C","LL",20.2674 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2124,"Simulated","C","LL",20.3232 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2125,"Simulated","C","LL",20.4252 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2126,"Simulated","C","LL",20.3016 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2127,"Simulated","C","LL",20.2091 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2128,"Simulated","C","LL",20.2626 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2129,"Simulated","C","LL",20.3438 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2130,"Simulated","C","LL",20.2033 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2131,"Simulated","C","LL",20.2958 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2132,"Simulated","C","LL",20.3302 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2133,"Simulated","C","LL",20.484 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2134,"Simulated","C","LL",20.5363 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2135,"Simulated","C","LL",20.5539 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2136,"Simulated","C","LL",20.6575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2137,"Simulated","C","LL",20.4928 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2138,"Simulated","C","LL",20.3645 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2139,"Simulated","C","LL",20.2093 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2140,"Simulated","C","LL",20.2173 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2141,"Simulated","C","LL",20.2907 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2142,"Simulated","C","LL",20.3263 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2143,"Simulated","C","LL",20.3517000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2144,"Simulated","C","LL",20.3576 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2145,"Simulated","C","LL",20.4278 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2146,"Simulated","C","LL",20.4823 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2147,"Simulated","C","LL",20.3328 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2148,"Simulated","C","LL",20.3434 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2149,"Simulated","C","LL",20.4563 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2150,"Simulated","C","LL",20.3588 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2151,"Simulated","C","LL",20.2667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2152,"Simulated","C","LL",20.281 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2153,"Simulated","C","LL",20.2488 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2154,"Simulated","C","LL",20.2573 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2155,"Simulated","C","LL",20.4176 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2156,"Simulated","C","LL",20.4782 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2157,"Simulated","C","LL",20.4827 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2158,"Simulated","C","LL",20.4613000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2159,"Simulated","C","LL",20.3667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2160,"Simulated","C","LL",20.3821 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2161,"Simulated","C","LL",20.361 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2162,"Simulated","C","LL",20.3739 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2163,"Simulated","C","LL",20.3428 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2164,"Simulated","C","LL",20.1789 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2165,"Simulated","C","LL",20.1553 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2166,"Simulated","C","LL",20.1562 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2167,"Simulated","C","LL",20.3419 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2168,"Simulated","C","LL",20.3281 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2169,"Simulated","C","LL",20.3133 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2170,"Simulated","C","LL",20.1936 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2171,"Simulated","C","LL",20.2601 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2172,"Simulated","C","LL",20.3285 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2173,"Simulated","C","LL",20.491 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2174,"Simulated","C","LL",20.4608 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2175,"Simulated","C","LL",20.5168 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2176,"Simulated","C","LL",20.5334 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2177,"Simulated","C","LL",20.595 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2178,"Simulated","C","LL",20.3034 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2179,"Simulated","C","LL",20.1864 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2180,"Simulated","C","LL",20.2167 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2181,"Simulated","C","LL",20.2452 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2182,"Simulated","C","LL",20.2225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2183,"Simulated","C","LL",20.2959 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2184,"Simulated","C","LL",20.3748000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2185,"Simulated","C","LL",20.3807 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2186,"Simulated","C","LL",20.3131 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2187,"Simulated","C","LL",20.2486 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2188,"Simulated","C","LL",20.2988 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2189,"Simulated","C","LL",20.3744 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2190,"Simulated","C","LL",20.3852 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2191,"Simulated","C","LL",20.2928 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2192,"Simulated","C","LL",20.3409 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2193,"Simulated","C","LL",20.3645 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2194,"Simulated","C","LL",20.3847 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2195,"Simulated","C","LL",20.2863 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2196,"Simulated","C","LL",20.3496 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2197,"Simulated","C","LL",20.3362 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2198,"Simulated","C","LL",20.4113 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2199,"Simulated","C","LL",20.2812 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2200,"Simulated","C","LL",20.3206 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2201,"Simulated","C","LL",20.3044 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2202,"Simulated","C","LL",20.4272 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2203,"Simulated","C","LL",20.3163 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2204,"Simulated","C","LL",20.2781 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2205,"Simulated","C","LL",20.1902 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2206,"Simulated","C","LL",20.1752 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2207,"Simulated","C","LL",20.1963 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2208,"Simulated","C","LL",20.2054 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2209,"Simulated","C","LL",20.1929 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2210,"Simulated","C","LL",20.2043 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2211,"Simulated","C","LL",20.1385 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2212,"Simulated","C","LL",20.1008 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2213,"Simulated","C","LL",19.959 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2214,"Simulated","C","LL",20.0507 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2215,"Simulated","C","LL",20.1469 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2216,"Simulated","C","LL",20.1078 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2217,"Simulated","C","LL",20.1052 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2218,"Simulated","C","LL",20.114 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2219,"Simulated","C","LL",20.2536 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2220,"Simulated","C","LL",20.2478 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2221,"Simulated","C","LL",20.1908 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2222,"Simulated","C","LL",20.2365 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2223,"Simulated","C","LL",20.2464000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2224,"Simulated","C","LL",20.3575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2225,"Simulated","C","LL",20.4119 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2226,"Simulated","C","LL",20.1729 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2227,"Simulated","C","LL",20.2173 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2228,"Simulated","C","LL",20.285 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2229,"Simulated","C","LL",20.2394 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2230,"Simulated","C","LL",20.2078 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2231,"Simulated","C","LL",20.0324 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2232,"Simulated","C","LL",20.1286 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2233,"Simulated","C","LL",20.1951 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2234,"Simulated","C","LL",20.2465 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2235,"Simulated","C","LL",20.3135 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2236,"Simulated","C","LL",20.2313 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2237,"Simulated","C","LL",20.2018 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2238,"Simulated","C","LL",20.1771 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2239,"Simulated","C","LL",20.1534 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2240,"Simulated","C","LL",20.241 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2241,"Simulated","C","LL",20.2198 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2242,"Simulated","C","LL",20.1485 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2243,"Simulated","C","LL",20.2423 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2244,"Simulated","C","LL",20.4228 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2245,"Simulated","C","LL",20.5136 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2246,"Simulated","C","LL",20.2891 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2247,"Simulated","C","LL",20.251 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2248,"Simulated","C","LL",20.2106 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2249,"Simulated","C","LL",20.2413 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2250,"Simulated","C","LL",20.1826 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2251,"Simulated","C","LL",20.0764 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2252,"Simulated","C","LL",20.2578 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2253,"Simulated","C","LL",20.2706 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2254,"Simulated","C","LL",20.325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2255,"Simulated","C","LL",20.1691 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2256,"Simulated","C","LL",20.202 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2257,"Simulated","C","LL",20.2674 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2258,"Simulated","C","LL",20.2606 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2259,"Simulated","C","LL",20.1913 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2260,"Simulated","C","LL",20.2374 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2261,"Simulated","C","LL",20.2529 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2262,"Simulated","C","LL",20.248 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2263,"Simulated","C","LL",20.3492 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2264,"Simulated","C","LL",20.3602 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2265,"Simulated","C","LL",20.5087 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2266,"Simulated","C","LL",20.4245 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2267,"Simulated","C","LL",20.3823 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2268,"Simulated","C","LL",20.2174 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2269,"Simulated","C","LL",20.1342 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2270,"Simulated","C","LL",20.1413 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2271,"Simulated","C","LL",19.9899 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2272,"Simulated","C","LL",20.1075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2273,"Simulated","C","LL",20.2243 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2274,"Simulated","C","LL",20.0707 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2275,"Simulated","C","LL",20.0707 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2276,"Simulated","C","LL",20.1908 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2277,"Simulated","C","LL",20.2821 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2278,"Simulated","C","LL",20.2596 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2279,"Simulated","C","LL",20.0096 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2280,"Simulated","C","LL",20.1212 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2281,"Simulated","C","LL",20.135 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2282,"Simulated","C","LL",20.2684 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2283,"Simulated","C","LL",20.2303 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2284,"Simulated","C","LL",20.2252 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2285,"Simulated","C","LL",20.1987 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2286,"Simulated","C","LL",20.2366 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2287,"Simulated","C","LL",20.1461 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2288,"Simulated","C","LL",20.0936 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2289,"Simulated","C","LL",20.1816 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2290,"Simulated","C","LL",20.192 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2291,"Simulated","C","LL",20.1156 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2292,"Simulated","C","LL",20.0559 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2293,"Simulated","C","LL",20.2058 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2294,"Simulated","C","LL",20.1388 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2295,"Simulated","C","LL",20.2758 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2296,"Simulated","C","LL",20.1222 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2297,"Simulated","C","LL",19.9122 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2298,"Simulated","C","LL",19.9428 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp26",2299,"Simulated","C","LL",20.2688 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",13.43795 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",13.4298 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",13.457225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",13.42865 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",13.453725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",13.510775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",13.621875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",13.792025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",13.727575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",13.65395 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",13.741125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",13.864275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",13.86975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",13.805225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",13.8781 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",13.91145 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",13.893525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",13.907975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",13.89145 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",14.00365 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",14.0168 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",14.01765 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",13.957525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",13.985475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",13.98975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",14.054775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",14.1056 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",14.258075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",14.216475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",14.136125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",14.14675 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",14.1993 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",14.22275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",14.251975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",14.298225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",14.287225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",14.206975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",14.145125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",14.31165 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",14.314875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",14.287725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",14.26365 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",14.299575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",14.30235 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",14.27885 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",14.26505 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",14.343925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",14.3074 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",14.3652 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",14.30765 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",14.300475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",14.319675 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",14.3205 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",14.358425 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",14.36545 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",14.391325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",14.415525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",14.3155 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",14.278225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",14.3232 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",14.3476 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",14.34865 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",14.2947 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",14.296175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",14.3643 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",14.358425 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",14.332325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",14.34115 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",14.2227 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",14.395725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",14.41295 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",14.32075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",14.39625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",14.4667 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",14.398825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",14.311275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",14.377175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",14.39875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",14.3698 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",14.34445 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",14.383975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",14.360125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",14.312925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",14.2716 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",14.30705 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",14.335575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",14.359725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",14.3394 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",14.385625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",14.335225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",14.2579 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",14.348125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",14.2772 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",14.261575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",14.25275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2101,"Simulated","C","global",14.1833 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2102,"Simulated","C","global",14.201 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2103,"Simulated","C","global",14.2678 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2104,"Simulated","C","global",14.1019 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2105,"Simulated","C","global",14.2144 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2106,"Simulated","C","global",14.2344000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2107,"Simulated","C","global",14.162 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2108,"Simulated","C","global",14.1119 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2109,"Simulated","C","global",14.2215 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2110,"Simulated","C","global",14.1244 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2111,"Simulated","C","global",14.2186 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2112,"Simulated","C","global",14.4529 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2113,"Simulated","C","global",14.4465 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2114,"Simulated","C","global",14.3589 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2115,"Simulated","C","global",14.2962 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2116,"Simulated","C","global",14.2694 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2117,"Simulated","C","global",14.151 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2118,"Simulated","C","global",14.277 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2119,"Simulated","C","global",14.3361 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2120,"Simulated","C","global",14.4518 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2121,"Simulated","C","global",14.2363 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2122,"Simulated","C","global",14.1685 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2123,"Simulated","C","global",14.2433 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2124,"Simulated","C","global",14.3333 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2125,"Simulated","C","global",14.2393 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2126,"Simulated","C","global",14.2257 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2127,"Simulated","C","global",14.2567 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2128,"Simulated","C","global",14.2081 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2129,"Simulated","C","global",14.1418 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2130,"Simulated","C","global",14.3308 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2131,"Simulated","C","global",14.4034 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2132,"Simulated","C","global",14.1273 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2133,"Simulated","C","global",14.2938 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2134,"Simulated","C","global",14.2734 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2135,"Simulated","C","global",14.1706 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2136,"Simulated","C","global",14.2157 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2137,"Simulated","C","global",14.4082 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2138,"Simulated","C","global",14.2124 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2139,"Simulated","C","global",14.2007 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2140,"Simulated","C","global",14.1192 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2141,"Simulated","C","global",14.2198 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2142,"Simulated","C","global",14.2871 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2143,"Simulated","C","global",14.1554 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2144,"Simulated","C","global",14.1856 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2145,"Simulated","C","global",14.2637 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2146,"Simulated","C","global",14.2355 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2147,"Simulated","C","global",14.3025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2148,"Simulated","C","global",14.3211 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2149,"Simulated","C","global",14.3598 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2150,"Simulated","C","global",14.2318 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2151,"Simulated","C","global",14.1749 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2152,"Simulated","C","global",14.2533 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2153,"Simulated","C","global",14.2012 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2154,"Simulated","C","global",14.0539 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2155,"Simulated","C","global",14.037 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2156,"Simulated","C","global",14.1954 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2157,"Simulated","C","global",14.0294 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2158,"Simulated","C","global",14.1717 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2159,"Simulated","C","global",14.1848 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2160,"Simulated","C","global",14.039 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2161,"Simulated","C","global",13.9889 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2162,"Simulated","C","global",14.2461 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2163,"Simulated","C","global",14.1229 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2164,"Simulated","C","global",14.0361 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2165,"Simulated","C","global",13.9584 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2166,"Simulated","C","global",14.0898 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2167,"Simulated","C","global",14.0726 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2168,"Simulated","C","global",14.1393 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2169,"Simulated","C","global",14.2655 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2170,"Simulated","C","global",13.9547 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2171,"Simulated","C","global",14.1287 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2172,"Simulated","C","global",14.4014 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2173,"Simulated","C","global",14.2905 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2174,"Simulated","C","global",14.2729 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2175,"Simulated","C","global",14.1547 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2176,"Simulated","C","global",14.1079 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2177,"Simulated","C","global",14.0465 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2178,"Simulated","C","global",14.1202 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2179,"Simulated","C","global",14.0828 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2180,"Simulated","C","global",14.1697 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2181,"Simulated","C","global",14.2712 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2182,"Simulated","C","global",14.3431 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2183,"Simulated","C","global",14.3059 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2184,"Simulated","C","global",14.3518 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2185,"Simulated","C","global",14.3631 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2186,"Simulated","C","global",14.1076 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2187,"Simulated","C","global",14.0433 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2188,"Simulated","C","global",14.0089 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2189,"Simulated","C","global",14.0283 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2190,"Simulated","C","global",14.0461 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2191,"Simulated","C","global",14.2238 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2192,"Simulated","C","global",14.2119 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2193,"Simulated","C","global",14.0893 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2194,"Simulated","C","global",14.1082 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2195,"Simulated","C","global",14.1078 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2196,"Simulated","C","global",14.2646 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2197,"Simulated","C","global",14.0696 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2198,"Simulated","C","global",14.1244 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2199,"Simulated","C","global",14.161 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2200,"Simulated","C","global",14.2375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2201,"Simulated","C","global",14.1898 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2202,"Simulated","C","global",14.2747 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2203,"Simulated","C","global",14.4153 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2204,"Simulated","C","global",14.3157 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2205,"Simulated","C","global",13.9112 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2206,"Simulated","C","global",13.9997 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2207,"Simulated","C","global",14.1826 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2208,"Simulated","C","global",14.0024 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2209,"Simulated","C","global",14.0057 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2210,"Simulated","C","global",14.0704 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2211,"Simulated","C","global",14.1473 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2212,"Simulated","C","global",13.9233 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2213,"Simulated","C","global",14.0371 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2214,"Simulated","C","global",13.9884 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2215,"Simulated","C","global",13.8832 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2216,"Simulated","C","global",13.8339 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2217,"Simulated","C","global",14.0498 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2218,"Simulated","C","global",13.8976 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2219,"Simulated","C","global",13.7661 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2220,"Simulated","C","global",13.9334 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2221,"Simulated","C","global",13.9115 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2222,"Simulated","C","global",14.1085 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2223,"Simulated","C","global",13.9843 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2224,"Simulated","C","global",14.0327 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2225,"Simulated","C","global",14.1401 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2226,"Simulated","C","global",14.0978 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2227,"Simulated","C","global",13.9277 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2228,"Simulated","C","global",14.0535 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2229,"Simulated","C","global",14.0091 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2230,"Simulated","C","global",13.8683 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2231,"Simulated","C","global",13.9307 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2232,"Simulated","C","global",14.0596 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2233,"Simulated","C","global",13.9889 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2234,"Simulated","C","global",14.0484 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2235,"Simulated","C","global",14.0412 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2236,"Simulated","C","global",14.0077 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2237,"Simulated","C","global",13.9238 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2238,"Simulated","C","global",13.8229 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2239,"Simulated","C","global",13.8212 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2240,"Simulated","C","global",13.8708 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2241,"Simulated","C","global",13.9855 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2242,"Simulated","C","global",14.0103 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2243,"Simulated","C","global",13.9515 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2244,"Simulated","C","global",14.0054 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2245,"Simulated","C","global",14.0736 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2246,"Simulated","C","global",14.1007 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2247,"Simulated","C","global",14.1099 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2248,"Simulated","C","global",14.0641 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2249,"Simulated","C","global",13.9731 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2250,"Simulated","C","global",14.0077 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2251,"Simulated","C","global",14.0741 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2252,"Simulated","C","global",14.0329 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2253,"Simulated","C","global",13.9164 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2254,"Simulated","C","global",13.975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2255,"Simulated","C","global",14.0533 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2256,"Simulated","C","global",13.99 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2257,"Simulated","C","global",13.926 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2258,"Simulated","C","global",13.9048 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2259,"Simulated","C","global",14.0745 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2260,"Simulated","C","global",14.0554 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2261,"Simulated","C","global",13.9424 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2262,"Simulated","C","global",13.8168 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2263,"Simulated","C","global",13.889 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2264,"Simulated","C","global",13.8537 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2265,"Simulated","C","global",13.9909 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2266,"Simulated","C","global",14.0635 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2267,"Simulated","C","global",14.0257 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2268,"Simulated","C","global",14.1378 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2269,"Simulated","C","global",14.008 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2270,"Simulated","C","global",13.909 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2271,"Simulated","C","global",13.9773 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2272,"Simulated","C","global",14.0108 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2273,"Simulated","C","global",13.9778 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2274,"Simulated","C","global",13.8424 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2275,"Simulated","C","global",13.9067 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2276,"Simulated","C","global",14.0999 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2277,"Simulated","C","global",13.943 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2278,"Simulated","C","global",13.8225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2279,"Simulated","C","global",13.7481 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2280,"Simulated","C","global",13.7193 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2281,"Simulated","C","global",13.9739 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2282,"Simulated","C","global",13.9123 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2283,"Simulated","C","global",14.1382 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2284,"Simulated","C","global",13.8075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2285,"Simulated","C","global",13.7635 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2286,"Simulated","C","global",13.7344000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2287,"Simulated","C","global",13.873 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2288,"Simulated","C","global",13.9274 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2289,"Simulated","C","global",14.0118000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2290,"Simulated","C","global",14.1876 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2291,"Simulated","C","global",13.9775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2292,"Simulated","C","global",13.9434 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2293,"Simulated","C","global",13.9734 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2294,"Simulated","C","global",13.9786 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2295,"Simulated","C","global",13.9076 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2296,"Simulated","C","global",13.97 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2297,"Simulated","C","global",13.9454 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2298,"Simulated","C","global",13.9506 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2299,"Simulated","C","global",14.0216 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp26",2300,"Simulated","C","global",13.8652 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-8.98779999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-8.87102499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-8.68199999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-8.83442499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-8.56514999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-8.64889999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-8.53272499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-8.28697499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-8.38734999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-8.56289999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-8.28267499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-8.16849999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-8.08014999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-8.28539999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-8.11582499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-8.08664999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-8.05214999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-8.16034999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-8.09742499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-8.10237499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-8.04752499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-8.12184999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-8.15904999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-8.20709999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-8.23324999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-7.99219999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-7.93492499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-7.74379999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-7.74687499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-7.85004999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-7.87847499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-7.88767499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-7.80439999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-7.68912499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-7.60437499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-7.60389999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-7.73579999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-7.87894999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-7.74534999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-7.60169999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-7.65392499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-7.62387499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-7.84389999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-7.64729999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-7.72204999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-7.80092499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-7.65594999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-7.72987499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-7.49762499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-7.72644999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-7.69229999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-7.75634999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-7.70292499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-7.59594999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-7.60884999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-7.49257499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-7.55692499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-7.51534999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-7.60857499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-7.52852499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-7.63714999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-7.66854999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-7.63677499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-7.55414999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-7.55999999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-7.48617499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-7.62992499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-7.67412499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-7.81067499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-7.40909999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-7.38632499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-7.54429999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-7.38334999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-7.28167499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-7.43747499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-7.50309999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-7.28702499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-7.09609999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-7.30974999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-7.39562499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-7.22237499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-7.40347499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-7.50192499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-7.59882499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-7.50614999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-7.41732499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-7.46764999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-7.47534999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-7.38814999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-7.57074999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-7.70814999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-7.49384999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-7.72387499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-7.74897499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-7.72162499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2101,"Simulated","C","HL",-7.97609999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2102,"Simulated","C","HL",-7.92009999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2103,"Simulated","C","HL",-7.71889999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2104,"Simulated","C","HL",-7.97899999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2105,"Simulated","C","HL",-7.82769999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2106,"Simulated","C","HL",-7.90629999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2107,"Simulated","C","HL",-7.5437 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2108,"Simulated","C","HL",-7.6234 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2109,"Simulated","C","HL",-7.5521 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2110,"Simulated","C","HL",-7.79659999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2111,"Simulated","C","HL",-7.68429999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2112,"Simulated","C","HL",-7.2998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2113,"Simulated","C","HL",-7.09899999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2114,"Simulated","C","HL",-7.39139999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2115,"Simulated","C","HL",-7.68359999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2116,"Simulated","C","HL",-7.75289999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2117,"Simulated","C","HL",-7.81909999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2118,"Simulated","C","HL",-7.17839999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2119,"Simulated","C","HL",-6.97379999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2120,"Simulated","C","HL",-7.31979999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2121,"Simulated","C","HL",-7.72229999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2122,"Simulated","C","HL",-7.76099999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2123,"Simulated","C","HL",-7.27159999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2124,"Simulated","C","HL",-7.90439999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2125,"Simulated","C","HL",-8.01169999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2126,"Simulated","C","HL",-7.97089999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2127,"Simulated","C","HL",-7.84229999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2128,"Simulated","C","HL",-7.58150000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2129,"Simulated","C","HL",-7.6549 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2130,"Simulated","C","HL",-7.20059999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2131,"Simulated","C","HL",-7.1737 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2132,"Simulated","C","HL",-7.7647 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2133,"Simulated","C","HL",-7.4855 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2134,"Simulated","C","HL",-7.45799999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2135,"Simulated","C","HL",-7.90589999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2136,"Simulated","C","HL",-7.60969999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2137,"Simulated","C","HL",-7.15389999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2138,"Simulated","C","HL",-7.49859999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2139,"Simulated","C","HL",-7.63999999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2140,"Simulated","C","HL",-7.77049999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2141,"Simulated","C","HL",-7.54589999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2142,"Simulated","C","HL",-7.39009999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2143,"Simulated","C","HL",-7.52439999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2144,"Simulated","C","HL",-7.53719999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2145,"Simulated","C","HL",-7.3954 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2146,"Simulated","C","HL",-7.7509 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2147,"Simulated","C","HL",-7.35999999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2148,"Simulated","C","HL",-7.42329999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2149,"Simulated","C","HL",-7.67439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2150,"Simulated","C","HL",-7.62169999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2151,"Simulated","C","HL",-8.23129999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2152,"Simulated","C","HL",-7.78049999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2153,"Simulated","C","HL",-7.95869999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2154,"Simulated","C","HL",-7.75719999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2155,"Simulated","C","HL",-7.7724 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2156,"Simulated","C","HL",-7.57689999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2157,"Simulated","C","HL",-7.7903 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2158,"Simulated","C","HL",-7.40039999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2159,"Simulated","C","HL",-7.74779999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2160,"Simulated","C","HL",-7.95239999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2161,"Simulated","C","HL",-7.87149999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2162,"Simulated","C","HL",-7.47159999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2163,"Simulated","C","HL",-7.61749999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2164,"Simulated","C","HL",-7.57039999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2165,"Simulated","C","HL",-8.08199999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2166,"Simulated","C","HL",-7.78859999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2167,"Simulated","C","HL",-7.85699999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2168,"Simulated","C","HL",-7.61339999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2169,"Simulated","C","HL",-7.71809999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2170,"Simulated","C","HL",-7.9246 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2171,"Simulated","C","HL",-7.72299999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2172,"Simulated","C","HL",-7.0609 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2173,"Simulated","C","HL",-7.37619999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2174,"Simulated","C","HL",-7.66459999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2175,"Simulated","C","HL",-7.84449999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2176,"Simulated","C","HL",-7.70259999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2177,"Simulated","C","HL",-7.56659999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2178,"Simulated","C","HL",-7.5292 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2179,"Simulated","C","HL",-7.73609999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2180,"Simulated","C","HL",-7.35729999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2181,"Simulated","C","HL",-7.41849999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2182,"Simulated","C","HL",-7.27169999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2183,"Simulated","C","HL",-7.3116 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2184,"Simulated","C","HL",-7.17949999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2185,"Simulated","C","HL",-7.2672 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2186,"Simulated","C","HL",-7.52429999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2187,"Simulated","C","HL",-7.71499999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2188,"Simulated","C","HL",-7.68949999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2189,"Simulated","C","HL",-7.87669999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2190,"Simulated","C","HL",-7.88889999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2191,"Simulated","C","HL",-7.63809999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2192,"Simulated","C","HL",-7.81609999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2193,"Simulated","C","HL",-7.63219999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2194,"Simulated","C","HL",-7.6746 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2195,"Simulated","C","HL",-7.81869999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2196,"Simulated","C","HL",-7.65819999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2197,"Simulated","C","HL",-7.7901 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2198,"Simulated","C","HL",-7.6404 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2199,"Simulated","C","HL",-7.32889999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2200,"Simulated","C","HL",-7.56459999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2201,"Simulated","C","HL",-7.30649999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2202,"Simulated","C","HL",-7.3639 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2203,"Simulated","C","HL",-7.15789999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2204,"Simulated","C","HL",-7.35119999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2205,"Simulated","C","HL",-7.93239999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2206,"Simulated","C","HL",-7.7045 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2207,"Simulated","C","HL",-7.34099999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2208,"Simulated","C","HL",-8.10949999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2209,"Simulated","C","HL",-8.06359999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2210,"Simulated","C","HL",-8.12289999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2211,"Simulated","C","HL",-7.65129999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2212,"Simulated","C","HL",-8.0829 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2213,"Simulated","C","HL",-8.0883 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2214,"Simulated","C","HL",-8.22949999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2215,"Simulated","C","HL",-7.95709999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2216,"Simulated","C","HL",-8.12939999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2217,"Simulated","C","HL",-7.82309999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2218,"Simulated","C","HL",-7.98229999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2219,"Simulated","C","HL",-8.08519999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2220,"Simulated","C","HL",-7.71679999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2221,"Simulated","C","HL",-7.94969999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2222,"Simulated","C","HL",-7.47909999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2223,"Simulated","C","HL",-7.76889999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2224,"Simulated","C","HL",-7.61369999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2225,"Simulated","C","HL",-7.72059999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2226,"Simulated","C","HL",-7.89239999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2227,"Simulated","C","HL",-8.0754 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2228,"Simulated","C","HL",-7.67309999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2229,"Simulated","C","HL",-8.08139999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2230,"Simulated","C","HL",-8.42229999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2231,"Simulated","C","HL",-8.1071 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2232,"Simulated","C","HL",-7.7457 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2233,"Simulated","C","HL",-8.05789999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2234,"Simulated","C","HL",-8.34369999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2235,"Simulated","C","HL",-7.88649999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2236,"Simulated","C","HL",-7.88529999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2237,"Simulated","C","HL",-8.1157 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2238,"Simulated","C","HL",-8.34099999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2239,"Simulated","C","HL",-8.65699999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2240,"Simulated","C","HL",-8.21099999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2241,"Simulated","C","HL",-7.80149999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2242,"Simulated","C","HL",-7.98439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2243,"Simulated","C","HL",-8.21859999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2244,"Simulated","C","HL",-7.94599999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2245,"Simulated","C","HL",-7.8843 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2246,"Simulated","C","HL",-7.74439999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2247,"Simulated","C","HL",-7.8297 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2248,"Simulated","C","HL",-7.60759999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2249,"Simulated","C","HL",-7.54499999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2250,"Simulated","C","HL",-7.45069999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2251,"Simulated","C","HL",-7.75479999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2252,"Simulated","C","HL",-7.77749999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2253,"Simulated","C","HL",-7.85229999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2254,"Simulated","C","HL",-7.69709999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2255,"Simulated","C","HL",-7.48869999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2256,"Simulated","C","HL",-7.87219999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2257,"Simulated","C","HL",-8.12779999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2258,"Simulated","C","HL",-7.9033 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2259,"Simulated","C","HL",-7.63649999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2260,"Simulated","C","HL",-7.78309999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2261,"Simulated","C","HL",-7.80249999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2262,"Simulated","C","HL",-8.40099999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2263,"Simulated","C","HL",-7.86969999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2264,"Simulated","C","HL",-8.0625 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2265,"Simulated","C","HL",-7.66629999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2266,"Simulated","C","HL",-7.42439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2267,"Simulated","C","HL",-7.75409999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2268,"Simulated","C","HL",-7.76409999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2269,"Simulated","C","HL",-7.92669999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2270,"Simulated","C","HL",-7.94639999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2271,"Simulated","C","HL",-7.84679999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2272,"Simulated","C","HL",-7.96339999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2273,"Simulated","C","HL",-8.16229999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2274,"Simulated","C","HL",-8.1318 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2275,"Simulated","C","HL",-7.6884 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2276,"Simulated","C","HL",-7.25999999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2277,"Simulated","C","HL",-7.85109999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2278,"Simulated","C","HL",-8.17669999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2279,"Simulated","C","HL",-8.3442 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2280,"Simulated","C","HL",-8.76169999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2281,"Simulated","C","HL",-8.05079999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2282,"Simulated","C","HL",-8.24949999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2283,"Simulated","C","HL",-7.56269999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2284,"Simulated","C","HL",-8.32129999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2285,"Simulated","C","HL",-8.07809999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2286,"Simulated","C","HL",-8.29109999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2287,"Simulated","C","HL",-8.05589999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2288,"Simulated","C","HL",-7.67629999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2289,"Simulated","C","HL",-7.77819999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2290,"Simulated","C","HL",-7.63999999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2291,"Simulated","C","HL",-7.8861 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2292,"Simulated","C","HL",-8.04299999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2293,"Simulated","C","HL",-8.22859999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2294,"Simulated","C","HL",-7.89689999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2295,"Simulated","C","HL",-8.0849 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2296,"Simulated","C","HL",-7.90779999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2297,"Simulated","C","HL",-7.97359999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2298,"Simulated","C","HL",-7.80889999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2299,"Simulated","C","HL",-7.89189999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp26",2300,"Simulated","C","HL",-7.99869999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",18.410375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",18.3745 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",18.36615 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",18.365025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",18.335975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",18.424175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",18.5342 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",18.68755 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",18.631075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",18.579975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",18.6244 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",18.74955 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",18.7367 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",18.703375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",18.754725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",18.789075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",18.759525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",18.801125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",18.76705 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",18.90515 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",18.908975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",18.926625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",18.861375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",18.906125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",18.917175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",18.943125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",18.9926 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",19.13645 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",19.08635 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",19.011075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",19.030325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",19.0966 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",19.106775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",19.1169 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",19.15465 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",19.1411 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",19.07225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",19.028425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",19.202325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",19.17435 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",19.152775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",19.11675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",19.209375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",19.169175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",19.1571 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",19.157675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",19.22195 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",19.193675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",19.212775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",19.193125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",19.17695 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",19.214475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",19.20365 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",19.226325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",19.23775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",19.243575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",19.2874 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",19.155975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",19.131125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",19.168375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",19.22225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",19.2305 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",19.15745 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",19.141025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",19.225575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",19.202075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",19.20195 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",19.22255 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",19.1081 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",19.2304 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",19.24645 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",19.16885 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",19.225525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",19.28895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",19.2405 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",19.1481 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",19.18075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",19.16485 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",19.176725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",19.16485 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",19.1747 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",19.1857 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",19.1499 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",19.1209 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",19.14365 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",19.1587 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",19.199425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",19.1763 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",19.213475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",19.1924 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",19.12835 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",19.19115 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",19.155425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",19.1419 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",19.125175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2101,"Simulated","C","LL",19.0967 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2102,"Simulated","C","LL",19.1058 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2103,"Simulated","C","LL",19.1429 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2104,"Simulated","C","LL",18.9979 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2105,"Simulated","C","LL",19.1017000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2106,"Simulated","C","LL",19.1436 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2107,"Simulated","C","LL",18.9748 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2108,"Simulated","C","LL",18.9312 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2109,"Simulated","C","LL",19.0493 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2110,"Simulated","C","LL",18.9849 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2111,"Simulated","C","LL",19.0752 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2112,"Simulated","C","LL",19.2761 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2113,"Simulated","C","LL",19.2238 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2114,"Simulated","C","LL",19.1817 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2115,"Simulated","C","LL",19.17 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2116,"Simulated","C","LL",19.1525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2117,"Simulated","C","LL",19.0225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2118,"Simulated","C","LL",19.0343 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2119,"Simulated","C","LL",19.0612 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2120,"Simulated","C","LL",19.2792 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2121,"Simulated","C","LL",19.1053 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2122,"Simulated","C","LL",19.0308 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2123,"Simulated","C","LL",19.0138 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2124,"Simulated","C","LL",19.2639 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2125,"Simulated","C","LL",19.1729 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2126,"Simulated","C","LL",19.1473 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2127,"Simulated","C","LL",19.1568 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2128,"Simulated","C","LL",19.0394 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2129,"Simulated","C","LL",18.9746 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2130,"Simulated","C","LL",19.105 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2131,"Simulated","C","LL",19.1877 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2132,"Simulated","C","LL",18.9814 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2133,"Simulated","C","LL",19.1229 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2134,"Simulated","C","LL",19.0919 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2135,"Simulated","C","LL",19.0655 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2136,"Simulated","C","LL",19.055 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2137,"Simulated","C","LL",19.1891 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2138,"Simulated","C","LL",19.0263 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2139,"Simulated","C","LL",19.0434 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2140,"Simulated","C","LL",18.9728 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2141,"Simulated","C","LL",19.0458 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2142,"Simulated","C","LL",19.0933 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2143,"Simulated","C","LL",18.9625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2144,"Simulated","C","LL",19.0022 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2145,"Simulated","C","LL",19.0662 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2146,"Simulated","C","LL",19.1107 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2147,"Simulated","C","LL",19.1057 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2148,"Simulated","C","LL",19.1423 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2149,"Simulated","C","LL",19.2453 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2150,"Simulated","C","LL",19.0773 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2151,"Simulated","C","LL",19.1429 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2152,"Simulated","C","LL",19.1388 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2153,"Simulated","C","LL",19.1145 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2154,"Simulated","C","LL",18.8901 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2155,"Simulated","C","LL",18.8728 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2156,"Simulated","C","LL",19.023 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2157,"Simulated","C","LL",18.8675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2158,"Simulated","C","LL",18.9549 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2159,"Simulated","C","LL",19.0478 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2160,"Simulated","C","LL",18.9152 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2161,"Simulated","C","LL",18.836 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2162,"Simulated","C","LL",19.0616 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2163,"Simulated","C","LL",18.9435 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2164,"Simulated","C","LL",18.827 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2165,"Simulated","C","LL",18.8454 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2166,"Simulated","C","LL",18.9407 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2167,"Simulated","C","LL",18.9351 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2168,"Simulated","C","LL",18.9625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2169,"Simulated","C","LL",19.1399 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2170,"Simulated","C","LL",18.8059 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2171,"Simulated","C","LL",18.9737 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2172,"Simulated","C","LL",19.1601 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2173,"Simulated","C","LL",19.0947 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2174,"Simulated","C","LL",19.1371 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2175,"Simulated","C","LL",19.0325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2176,"Simulated","C","LL",18.944 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2177,"Simulated","C","LL",18.8388 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2178,"Simulated","C","LL",18.9205 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2179,"Simulated","C","LL",18.9207 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2180,"Simulated","C","LL",18.943 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2181,"Simulated","C","LL",19.0806 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2182,"Simulated","C","LL",19.1358 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2183,"Simulated","C","LL",19.0991 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2184,"Simulated","C","LL",19.126 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2185,"Simulated","C","LL",19.1591 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2186,"Simulated","C","LL",18.9043 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2187,"Simulated","C","LL",18.8679 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2188,"Simulated","C","LL",18.8201 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2189,"Simulated","C","LL",18.8853 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2190,"Simulated","C","LL",18.9099000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2191,"Simulated","C","LL",19.071 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2192,"Simulated","C","LL",19.096 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2193,"Simulated","C","LL",18.9055 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2194,"Simulated","C","LL",18.9382 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2195,"Simulated","C","LL",18.9696 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2196,"Simulated","C","LL",19.1255 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2197,"Simulated","C","LL",18.9166 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2198,"Simulated","C","LL",18.9502 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2199,"Simulated","C","LL",18.9259 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2200,"Simulated","C","LL",19.0717 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2201,"Simulated","C","LL",18.9561 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2202,"Simulated","C","LL",19.0725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2203,"Simulated","C","LL",19.1985 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2204,"Simulated","C","LL",19.1199 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2205,"Simulated","C","LL",18.7545 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2206,"Simulated","C","LL",18.8121 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2207,"Simulated","C","LL",18.9549 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2208,"Simulated","C","LL",18.9052 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2209,"Simulated","C","LL",18.8991 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2210,"Simulated","C","LL",18.9913 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2211,"Simulated","C","LL",18.9808 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2212,"Simulated","C","LL",18.8026 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2213,"Simulated","C","LL",18.9428 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2214,"Simulated","C","LL",18.9147 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2215,"Simulated","C","LL",18.7259 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2216,"Simulated","C","LL",18.7039 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2217,"Simulated","C","LL",18.8994 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2218,"Simulated","C","LL",18.749 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2219,"Simulated","C","LL",18.6113 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2220,"Simulated","C","LL",18.7341 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2221,"Simulated","C","LL",18.7587 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2222,"Simulated","C","LL",18.8952 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2223,"Simulated","C","LL",18.8078 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2224,"Simulated","C","LL",18.8325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2225,"Simulated","C","LL",18.9873 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2226,"Simulated","C","LL",18.9736 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2227,"Simulated","C","LL",18.8064 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2228,"Simulated","C","LL",18.8711 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2229,"Simulated","C","LL",18.9072 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2230,"Simulated","C","LL",18.8108 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2231,"Simulated","C","LL",18.817 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2232,"Simulated","C","LL",18.8944 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2233,"Simulated","C","LL",18.8774 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2234,"Simulated","C","LL",19.0133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2235,"Simulated","C","LL",18.9032 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2236,"Simulated","C","LL",18.8621 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2237,"Simulated","C","LL",18.8105 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2238,"Simulated","C","LL",18.7373 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2239,"Simulated","C","LL",18.8053 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2240,"Simulated","C","LL",18.7668 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2241,"Simulated","C","LL",18.8163 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2242,"Simulated","C","LL",18.8873 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2243,"Simulated","C","LL",18.8673 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2244,"Simulated","C","LL",18.8727 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2245,"Simulated","C","LL",18.9424 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2246,"Simulated","C","LL",18.9445 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2247,"Simulated","C","LL",18.9748 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2248,"Simulated","C","LL",18.8693 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2249,"Simulated","C","LL",18.7445 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2250,"Simulated","C","LL",18.7657 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2251,"Simulated","C","LL",18.9143 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2252,"Simulated","C","LL",18.8689 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2253,"Simulated","C","LL",18.7432 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2254,"Simulated","C","LL",18.7803 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2255,"Simulated","C","LL",18.8299 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2256,"Simulated","C","LL",18.8375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2257,"Simulated","C","LL",18.8159 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2258,"Simulated","C","LL",18.7403 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2259,"Simulated","C","LL",18.8886 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2260,"Simulated","C","LL",18.8976 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2261,"Simulated","C","LL",18.7641 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2262,"Simulated","C","LL",18.7431 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2263,"Simulated","C","LL",18.7136 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2264,"Simulated","C","LL",18.7133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2265,"Simulated","C","LL",18.793 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2266,"Simulated","C","LL",18.828 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2267,"Simulated","C","LL",18.855 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2268,"Simulated","C","LL",18.9941 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2269,"Simulated","C","LL",18.8716 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2270,"Simulated","C","LL",18.7551 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2271,"Simulated","C","LL",18.8163 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2272,"Simulated","C","LL",18.8831 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2273,"Simulated","C","LL",18.8869 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2274,"Simulated","C","LL",18.7148 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2275,"Simulated","C","LL",18.6950000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2276,"Simulated","C","LL",18.8362 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2277,"Simulated","C","LL",18.7755 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2278,"Simulated","C","LL",18.7003 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2279,"Simulated","C","LL",18.6467 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2280,"Simulated","C","LL",18.704 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2281,"Simulated","C","LL",18.8574 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2282,"Simulated","C","LL",18.8263 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2283,"Simulated","C","LL",18.9499 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2284,"Simulated","C","LL",18.7141 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2285,"Simulated","C","LL",18.6063 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2286,"Simulated","C","LL",18.6181 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2287,"Simulated","C","LL",18.7352 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2288,"Simulated","C","LL",18.7178 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2289,"Simulated","C","LL",18.8433 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2290,"Simulated","C","LL",19.0276 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2291,"Simulated","C","LL",18.8253 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2292,"Simulated","C","LL",18.8184 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2293,"Simulated","C","LL",18.8962 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2294,"Simulated","C","LL",18.829 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2295,"Simulated","C","LL",18.7839 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2296,"Simulated","C","LL",18.8208 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2297,"Simulated","C","LL",18.8055 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2298,"Simulated","C","LL",18.7751 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2299,"Simulated","C","LL",18.8804 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp26",2300,"Simulated","C","LL",18.7131 -"MIROC-ESM","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",14.1861 -"MIROC-ESM","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",14.4022000000001 -"MIROC-ESM","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",14.4785 -"MIROC-ESM","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",14.3449 -"MIROC-ESM","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",14.4112 -"MIROC-ESM","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",14.3734 -"MIROC-ESM","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",14.5773 -"MIROC-ESM","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",14.4596 -"MIROC-ESM","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",14.5047 -"MIROC-ESM","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",14.6116 -"MIROC-ESM","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",14.6766 -"MIROC-ESM","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",14.71 -"MIROC-ESM","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",14.8001 -"MIROC-ESM","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",14.7635 -"MIROC-ESM","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",14.7628 -"MIROC-ESM","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",14.8908 -"MIROC-ESM","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",14.9194 -"MIROC-ESM","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",14.9795 -"MIROC-ESM","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",14.9702 -"MIROC-ESM","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",15.0771 -"MIROC-ESM","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",15.0977 -"MIROC-ESM","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",14.9632 -"MIROC-ESM","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",14.9450000000001 -"MIROC-ESM","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",15.1443 -"MIROC-ESM","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",15.0952 -"MIROC-ESM","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",15.1091 -"MIROC-ESM","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",15.1459 -"MIROC-ESM","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",15.1203 -"MIROC-ESM","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",15.2341 -"MIROC-ESM","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",15.2311 -"MIROC-ESM","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",15.2702 -"MIROC-ESM","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",15.1838 -"MIROC-ESM","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",15.2331 -"MIROC-ESM","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",15.3106 -"MIROC-ESM","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",15.3564 -"MIROC-ESM","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",15.2715 -"MIROC-ESM","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",15.2873 -"MIROC-ESM","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",15.5318 -"MIROC-ESM","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",15.4914 -"MIROC-ESM","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",15.5686 -"MIROC-ESM","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",15.5232 -"MIROC-ESM","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",15.5597 -"MIROC-ESM","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",15.5296 -"MIROC-ESM","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",15.4496 -"MIROC-ESM","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",15.4226 -"MIROC-ESM","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",15.5538 -"MIROC-ESM","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",15.6437 -"MIROC-ESM","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",15.6229 -"MIROC-ESM","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",15.5527 -"MIROC-ESM","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",15.5536 -"MIROC-ESM","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",15.576 -"MIROC-ESM","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",15.5914 -"MIROC-ESM","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",15.6402 -"MIROC-ESM","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",15.6938 -"MIROC-ESM","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",15.5937 -"MIROC-ESM","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",15.4675 -"MIROC-ESM","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",15.6021 -"MIROC-ESM","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",15.7202 -"MIROC-ESM","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",15.6245 -"MIROC-ESM","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",15.5022 -"MIROC-ESM","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",15.451 -"MIROC-ESM","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",15.5001 -"MIROC-ESM","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",15.6464 -"MIROC-ESM","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",15.8082 -"MIROC-ESM","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",15.6587 -"MIROC-ESM","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",15.6795 -"MIROC-ESM","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",15.5179 -"MIROC-ESM","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",15.4714 -"MIROC-ESM","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",15.6705 -"MIROC-ESM","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",15.6779 -"MIROC-ESM","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",15.6876 -"MIROC-ESM","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",15.7529 -"MIROC-ESM","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",15.6468 -"MIROC-ESM","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",15.5966 -"MIROC-ESM","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",15.7246 -"MIROC-ESM","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",15.6737 -"MIROC-ESM","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",15.6228 -"MIROC-ESM","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",15.5987 -"MIROC-ESM","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",15.6613 -"MIROC-ESM","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",15.5941 -"MIROC-ESM","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",15.5218 -"MIROC-ESM","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",15.6356 -"MIROC-ESM","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",15.7869 -"MIROC-ESM","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",15.7077 -"MIROC-ESM","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",15.6955 -"MIROC-ESM","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",15.8201 -"MIROC-ESM","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",15.8235 -"MIROC-ESM","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",15.7879 -"MIROC-ESM","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",15.7395 -"MIROC-ESM","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",15.7739 -"MIROC-ESM","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",15.8671000000001 -"MIROC-ESM","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",15.811 -"MIROC-ESM","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",15.7586 -"MIROC-ESM","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",15.9034 -"MIROC-ESM","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",15.6781 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-8.7294 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-8.57619999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-8.39400000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-8.67399999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-8.22999999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-8.55739999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-8.34379999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-8.51139999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-8.46679999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-7.97699999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-7.85999999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-8.1549 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-8.01259999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-7.87389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-7.82099999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-7.55609999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-7.5127 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-7.61179999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-7.50789999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-7.16639999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-7.22190000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-7.6223 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-7.62079999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-7.31639999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-7.38809999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-7.28589999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-7.07369999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-7.02359999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-7.17409999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-7.22179999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-7.29139999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-7.48349999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-7.19959999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-7.16699999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-6.97669999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-7.27409999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-7.14439999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-6.67069999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-6.55089999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-6.39149999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-6.67039999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-6.90519999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-6.96979999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-7.09069999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-6.92399999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-6.69589999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-6.49899999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-6.56619999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-6.69309999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-6.9049 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-6.58279999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-6.64049999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-6.28769999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-6.10389999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-6.61149999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-6.98509999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-6.94779999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-6.48759999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-6.63209999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-6.58529999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-6.62439999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-6.38419999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-6.17129999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-6.09819999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-6.4058 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-6.23399999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-6.40429999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-6.67599999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-6.3449 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-6.524 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-6.38259999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-6.48749999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-6.56989999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-6.45149999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-6.22619999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-6.53229999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-6.56169999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-6.56879999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-6.45299999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-6.40459999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-6.67189999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-6.56489999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-6.31049999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-6.12629999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-6.37859999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-5.92309999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-6.23289999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-6.2516 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-6.27199999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-6.28369999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-6.1859 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-6.19399999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-6.39229999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-6.01389999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-6.48679999999996 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",18.9706 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",19.1999 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",19.2541000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",19.151 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",19.1384 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",19.1611 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",19.363 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",19.2557 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",19.3009 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",19.3279 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",19.382 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",19.484 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",19.5632 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",19.4899 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",19.478 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",19.5774 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",19.6029 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",19.6963 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",19.6634 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",19.7213 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",19.7578 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",19.6788 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",19.6565000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",19.8338 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",19.7894 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",19.7849000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",19.7851 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",19.7437 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",19.9127 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",19.919 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",19.9808 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",19.9164 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",19.9168 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",20.0036 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",20.0193 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",19.9788 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",19.9708 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",20.1674 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",20.0936 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",20.1536 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",20.157 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",20.2501 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",20.2273 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",20.1558 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",20.0883 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",20.1993000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",20.2669 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",20.2558 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",20.1974 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",20.2426 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",20.2026 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",20.2332 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",20.2185 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",20.2449 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",20.2299 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",20.1554 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",20.3102 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",20.3569 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",20.2714 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",20.1138 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",20.06 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",20.0693 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",20.2017 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",20.382 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",20.2655 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",20.2548 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",20.095 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",20.0955 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",20.2671 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",20.3133 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",20.2956 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",20.3965 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",20.2854 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",20.2 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",20.3077 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",20.31 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",20.2547 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",20.2271 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",20.2785 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",20.1872 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",20.1556 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",20.2708 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",20.4005 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",20.2664 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",20.3044 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",20.3599 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",20.4287 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",20.3895 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",20.3352 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",20.3792 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",20.4715 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",20.4054 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",20.3835 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",20.4795 -"MIROC-ESM","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",20.3059 -"NorESM1-ME","tas","temperature","tgav","rcp26",2006,"Simulated","C","global",13.5854 -"NorESM1-ME","tas","temperature","tgav","rcp26",2007,"Simulated","C","global",13.5226 -"NorESM1-ME","tas","temperature","tgav","rcp26",2008,"Simulated","C","global",13.5067 -"NorESM1-ME","tas","temperature","tgav","rcp26",2009,"Simulated","C","global",13.5601 -"NorESM1-ME","tas","temperature","tgav","rcp26",2010,"Simulated","C","global",13.6305 -"NorESM1-ME","tas","temperature","tgav","rcp26",2011,"Simulated","C","global",13.4948 -"NorESM1-ME","tas","temperature","tgav","rcp26",2012,"Simulated","C","global",13.5827 -"NorESM1-ME","tas","temperature","tgav","rcp26",2013,"Simulated","C","global",13.6355 -"NorESM1-ME","tas","temperature","tgav","rcp26",2014,"Simulated","C","global",13.6571 -"NorESM1-ME","tas","temperature","tgav","rcp26",2015,"Simulated","C","global",13.8817 -"NorESM1-ME","tas","temperature","tgav","rcp26",2016,"Simulated","C","global",13.8163 -"NorESM1-ME","tas","temperature","tgav","rcp26",2017,"Simulated","C","global",13.6446 -"NorESM1-ME","tas","temperature","tgav","rcp26",2018,"Simulated","C","global",13.661 -"NorESM1-ME","tas","temperature","tgav","rcp26",2019,"Simulated","C","global",13.8303 -"NorESM1-ME","tas","temperature","tgav","rcp26",2020,"Simulated","C","global",13.872 -"NorESM1-ME","tas","temperature","tgav","rcp26",2021,"Simulated","C","global",13.9379 -"NorESM1-ME","tas","temperature","tgav","rcp26",2022,"Simulated","C","global",13.8805 -"NorESM1-ME","tas","temperature","tgav","rcp26",2023,"Simulated","C","global",13.9164 -"NorESM1-ME","tas","temperature","tgav","rcp26",2024,"Simulated","C","global",13.8674 -"NorESM1-ME","tas","temperature","tgav","rcp26",2025,"Simulated","C","global",13.8757 -"NorESM1-ME","tas","temperature","tgav","rcp26",2026,"Simulated","C","global",13.9549 -"NorESM1-ME","tas","temperature","tgav","rcp26",2027,"Simulated","C","global",14.0501 -"NorESM1-ME","tas","temperature","tgav","rcp26",2028,"Simulated","C","global",13.919 -"NorESM1-ME","tas","temperature","tgav","rcp26",2029,"Simulated","C","global",14.0103 -"NorESM1-ME","tas","temperature","tgav","rcp26",2030,"Simulated","C","global",14.0984 -"NorESM1-ME","tas","temperature","tgav","rcp26",2031,"Simulated","C","global",14.112 -"NorESM1-ME","tas","temperature","tgav","rcp26",2032,"Simulated","C","global",14.3402 -"NorESM1-ME","tas","temperature","tgav","rcp26",2033,"Simulated","C","global",14.1324 -"NorESM1-ME","tas","temperature","tgav","rcp26",2034,"Simulated","C","global",13.9737 -"NorESM1-ME","tas","temperature","tgav","rcp26",2035,"Simulated","C","global",13.9856 -"NorESM1-ME","tas","temperature","tgav","rcp26",2036,"Simulated","C","global",14.0227 -"NorESM1-ME","tas","temperature","tgav","rcp26",2037,"Simulated","C","global",14.0623000000001 -"NorESM1-ME","tas","temperature","tgav","rcp26",2038,"Simulated","C","global",14.0305 -"NorESM1-ME","tas","temperature","tgav","rcp26",2039,"Simulated","C","global",13.9907 -"NorESM1-ME","tas","temperature","tgav","rcp26",2040,"Simulated","C","global",14.2079 -"NorESM1-ME","tas","temperature","tgav","rcp26",2041,"Simulated","C","global",14.2963 -"NorESM1-ME","tas","temperature","tgav","rcp26",2042,"Simulated","C","global",14.3721 -"NorESM1-ME","tas","temperature","tgav","rcp26",2043,"Simulated","C","global",14.2111 -"NorESM1-ME","tas","temperature","tgav","rcp26",2044,"Simulated","C","global",14.196 -"NorESM1-ME","tas","temperature","tgav","rcp26",2045,"Simulated","C","global",14.2017 -"NorESM1-ME","tas","temperature","tgav","rcp26",2046,"Simulated","C","global",14.2644 -"NorESM1-ME","tas","temperature","tgav","rcp26",2047,"Simulated","C","global",14.2765 -"NorESM1-ME","tas","temperature","tgav","rcp26",2048,"Simulated","C","global",14.3095 -"NorESM1-ME","tas","temperature","tgav","rcp26",2049,"Simulated","C","global",14.3503 -"NorESM1-ME","tas","temperature","tgav","rcp26",2050,"Simulated","C","global",14.3044 -"NorESM1-ME","tas","temperature","tgav","rcp26",2051,"Simulated","C","global",14.1499 -"NorESM1-ME","tas","temperature","tgav","rcp26",2052,"Simulated","C","global",14.1455 -"NorESM1-ME","tas","temperature","tgav","rcp26",2053,"Simulated","C","global",14.1052 -"NorESM1-ME","tas","temperature","tgav","rcp26",2054,"Simulated","C","global",14.0688 -"NorESM1-ME","tas","temperature","tgav","rcp26",2055,"Simulated","C","global",14.1418 -"NorESM1-ME","tas","temperature","tgav","rcp26",2056,"Simulated","C","global",14.3641 -"NorESM1-ME","tas","temperature","tgav","rcp26",2057,"Simulated","C","global",14.2505 -"NorESM1-ME","tas","temperature","tgav","rcp26",2058,"Simulated","C","global",14.1213 -"NorESM1-ME","tas","temperature","tgav","rcp26",2059,"Simulated","C","global",14.1059 -"NorESM1-ME","tas","temperature","tgav","rcp26",2060,"Simulated","C","global",14.2046 -"NorESM1-ME","tas","temperature","tgav","rcp26",2061,"Simulated","C","global",14.336 -"NorESM1-ME","tas","temperature","tgav","rcp26",2062,"Simulated","C","global",14.3504 -"NorESM1-ME","tas","temperature","tgav","rcp26",2063,"Simulated","C","global",14.1745 -"NorESM1-ME","tas","temperature","tgav","rcp26",2064,"Simulated","C","global",14.2412 -"NorESM1-ME","tas","temperature","tgav","rcp26",2065,"Simulated","C","global",14.1618 -"NorESM1-ME","tas","temperature","tgav","rcp26",2066,"Simulated","C","global",14.0715 -"NorESM1-ME","tas","temperature","tgav","rcp26",2067,"Simulated","C","global",14.2809 -"NorESM1-ME","tas","temperature","tgav","rcp26",2068,"Simulated","C","global",14.3077 -"NorESM1-ME","tas","temperature","tgav","rcp26",2069,"Simulated","C","global",14.0783 -"NorESM1-ME","tas","temperature","tgav","rcp26",2070,"Simulated","C","global",14.083 -"NorESM1-ME","tas","temperature","tgav","rcp26",2071,"Simulated","C","global",14.0003 -"NorESM1-ME","tas","temperature","tgav","rcp26",2072,"Simulated","C","global",13.9691 -"NorESM1-ME","tas","temperature","tgav","rcp26",2073,"Simulated","C","global",13.9514 -"NorESM1-ME","tas","temperature","tgav","rcp26",2074,"Simulated","C","global",13.9377 -"NorESM1-ME","tas","temperature","tgav","rcp26",2075,"Simulated","C","global",14.061 -"NorESM1-ME","tas","temperature","tgav","rcp26",2076,"Simulated","C","global",14.2865 -"NorESM1-ME","tas","temperature","tgav","rcp26",2077,"Simulated","C","global",14.3782 -"NorESM1-ME","tas","temperature","tgav","rcp26",2078,"Simulated","C","global",14.3054 -"NorESM1-ME","tas","temperature","tgav","rcp26",2079,"Simulated","C","global",14.2544 -"NorESM1-ME","tas","temperature","tgav","rcp26",2080,"Simulated","C","global",14.2365 -"NorESM1-ME","tas","temperature","tgav","rcp26",2081,"Simulated","C","global",14.23 -"NorESM1-ME","tas","temperature","tgav","rcp26",2082,"Simulated","C","global",14.0396 -"NorESM1-ME","tas","temperature","tgav","rcp26",2083,"Simulated","C","global",14.0268 -"NorESM1-ME","tas","temperature","tgav","rcp26",2084,"Simulated","C","global",14.2252 -"NorESM1-ME","tas","temperature","tgav","rcp26",2085,"Simulated","C","global",14.3271 -"NorESM1-ME","tas","temperature","tgav","rcp26",2086,"Simulated","C","global",14.2633 -"NorESM1-ME","tas","temperature","tgav","rcp26",2087,"Simulated","C","global",14.1954 -"NorESM1-ME","tas","temperature","tgav","rcp26",2088,"Simulated","C","global",14.153 -"NorESM1-ME","tas","temperature","tgav","rcp26",2089,"Simulated","C","global",14.3471 -"NorESM1-ME","tas","temperature","tgav","rcp26",2090,"Simulated","C","global",14.4651 -"NorESM1-ME","tas","temperature","tgav","rcp26",2091,"Simulated","C","global",14.254 -"NorESM1-ME","tas","temperature","tgav","rcp26",2092,"Simulated","C","global",14.3327 -"NorESM1-ME","tas","temperature","tgav","rcp26",2093,"Simulated","C","global",14.3205 -"NorESM1-ME","tas","temperature","tgav","rcp26",2094,"Simulated","C","global",14.3412 -"NorESM1-ME","tas","temperature","tgav","rcp26",2095,"Simulated","C","global",14.2331 -"NorESM1-ME","tas","temperature","tgav","rcp26",2096,"Simulated","C","global",14.2079 -"NorESM1-ME","tas","temperature","tgav","rcp26",2097,"Simulated","C","global",14.1817 -"NorESM1-ME","tas","temperature","tgav","rcp26",2098,"Simulated","C","global",14.2378 -"NorESM1-ME","tas","temperature","tgav","rcp26",2099,"Simulated","C","global",14.2641 -"NorESM1-ME","tas","temperature","tgav","rcp26",2100,"Simulated","C","global",14.325 -"NorESM1-ME","tas","temperature","tgav","rcp26",2101,"Simulated","C","global",14.6748 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2006,"Simulated","C","HL",-11.0001999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2007,"Simulated","C","HL",-11.3105 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2008,"Simulated","C","HL",-11.1993 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2009,"Simulated","C","HL",-11.3241 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2010,"Simulated","C","HL",-11.3209 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2011,"Simulated","C","HL",-11.3232 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2012,"Simulated","C","HL",-11.1354 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2013,"Simulated","C","HL",-11.0946 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2014,"Simulated","C","HL",-11.0706 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2015,"Simulated","C","HL",-10.8048 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2016,"Simulated","C","HL",-10.7581 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2017,"Simulated","C","HL",-11.1459 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2018,"Simulated","C","HL",-10.96 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2019,"Simulated","C","HL",-10.655 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2020,"Simulated","C","HL",-10.9816 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2021,"Simulated","C","HL",-10.8399 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2022,"Simulated","C","HL",-10.9207 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2023,"Simulated","C","HL",-10.643 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2024,"Simulated","C","HL",-10.9251 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2025,"Simulated","C","HL",-11.0533 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2026,"Simulated","C","HL",-10.7207 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2027,"Simulated","C","HL",-10.402 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2028,"Simulated","C","HL",-10.8357 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2029,"Simulated","C","HL",-10.6226 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2030,"Simulated","C","HL",-10.2309 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2031,"Simulated","C","HL",-10.3404 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2032,"Simulated","C","HL",-9.60890000000001 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2033,"Simulated","C","HL",-10.3421 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2034,"Simulated","C","HL",-10.7448 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2035,"Simulated","C","HL",-10.6015 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2036,"Simulated","C","HL",-10.4772 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2037,"Simulated","C","HL",-10.3743 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2038,"Simulated","C","HL",-10.2261999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2039,"Simulated","C","HL",-10.3855 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2040,"Simulated","C","HL",-9.8569 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2041,"Simulated","C","HL",-9.77769999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2042,"Simulated","C","HL",-9.54349999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2043,"Simulated","C","HL",-9.9753 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2044,"Simulated","C","HL",-10.0347 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2045,"Simulated","C","HL",-9.97539999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2046,"Simulated","C","HL",-9.9239 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2047,"Simulated","C","HL",-10.3696 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2048,"Simulated","C","HL",-10.1168 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2049,"Simulated","C","HL",-9.95689999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2050,"Simulated","C","HL",-10.0438 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2051,"Simulated","C","HL",-10.4903 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2052,"Simulated","C","HL",-10.5165 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2053,"Simulated","C","HL",-10.4487 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2054,"Simulated","C","HL",-10.6984 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2055,"Simulated","C","HL",-10.5868 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2056,"Simulated","C","HL",-9.81149999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2057,"Simulated","C","HL",-9.83939999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2058,"Simulated","C","HL",-10.2164 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2059,"Simulated","C","HL",-10.3298 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2060,"Simulated","C","HL",-10.0787 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2061,"Simulated","C","HL",-9.84159999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2062,"Simulated","C","HL",-9.7756 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2063,"Simulated","C","HL",-10.3711 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2064,"Simulated","C","HL",-10.2553 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2065,"Simulated","C","HL",-10.3381 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2066,"Simulated","C","HL",-10.9957 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2067,"Simulated","C","HL",-10.5615 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2068,"Simulated","C","HL",-10.0719 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2069,"Simulated","C","HL",-10.7604 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2070,"Simulated","C","HL",-10.4286 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2071,"Simulated","C","HL",-10.8253 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2072,"Simulated","C","HL",-10.8179 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2073,"Simulated","C","HL",-10.9632 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2074,"Simulated","C","HL",-11.0447 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2075,"Simulated","C","HL",-10.6902 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2076,"Simulated","C","HL",-10.1677 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2077,"Simulated","C","HL",-10.0892 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2078,"Simulated","C","HL",-10.2009 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2079,"Simulated","C","HL",-10.2117 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2080,"Simulated","C","HL",-10.2941 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2081,"Simulated","C","HL",-10.2863 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2082,"Simulated","C","HL",-10.62 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2083,"Simulated","C","HL",-10.339 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2084,"Simulated","C","HL",-9.99239999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2085,"Simulated","C","HL",-10.1048 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2086,"Simulated","C","HL",-10.3931 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2087,"Simulated","C","HL",-10.4188 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2088,"Simulated","C","HL",-10.2606 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2089,"Simulated","C","HL",-10.0918 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2090,"Simulated","C","HL",-9.72109999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2091,"Simulated","C","HL",-10.0777 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2092,"Simulated","C","HL",-9.96079999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2093,"Simulated","C","HL",-10.1198 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2094,"Simulated","C","HL",-9.77049999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2095,"Simulated","C","HL",-10.0589 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2096,"Simulated","C","HL",-10.2371 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2097,"Simulated","C","HL",-10.0255 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2098,"Simulated","C","HL",-10.135 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2099,"Simulated","C","HL",-10.072 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2100,"Simulated","C","HL",-10.1143 -"NorESM1-ME","tas","temperature","tgav_HL","rcp26",2101,"Simulated","C","HL",-9.25829999999996 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2006,"Simulated","C","LL",19.0361 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2007,"Simulated","C","LL",19.0281 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2008,"Simulated","C","LL",18.9839 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2009,"Simulated","C","LL",19.077 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2010,"Simulated","C","LL",19.1624 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2011,"Simulated","C","LL",18.9971 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2012,"Simulated","C","LL",19.0628 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2013,"Simulated","C","LL",19.1182 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2014,"Simulated","C","LL",19.1391 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2015,"Simulated","C","LL",19.3547 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2016,"Simulated","C","LL",19.2646 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2017,"Simulated","C","LL",19.1408 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2018,"Simulated","C","LL",19.1194 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2019,"Simulated","C","LL",19.2587 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2020,"Simulated","C","LL",19.3821 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2021,"Simulated","C","LL",19.4312 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2022,"Simulated","C","LL",19.3788 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2023,"Simulated","C","LL",19.3613 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2024,"Simulated","C","LL",19.3639 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2025,"Simulated","C","LL",19.4023 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2026,"Simulated","C","LL",19.4256 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2027,"Simulated","C","LL",19.4714 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2028,"Simulated","C","LL",19.4071 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2029,"Simulated","C","LL",19.4714 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2030,"Simulated","C","LL",19.4923 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2031,"Simulated","C","LL",19.5333 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2032,"Simulated","C","LL",19.6498 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2033,"Simulated","C","LL",19.5586 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2034,"Simulated","C","LL",19.4538 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2035,"Simulated","C","LL",19.4365 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2036,"Simulated","C","LL",19.4542 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2037,"Simulated","C","LL",19.4801 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2038,"Simulated","C","LL",19.4083 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2039,"Simulated","C","LL",19.3949 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2040,"Simulated","C","LL",19.543 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2041,"Simulated","C","LL",19.6338 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2042,"Simulated","C","LL",19.6742 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2043,"Simulated","C","LL",19.5732 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2044,"Simulated","C","LL",19.5683 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2045,"Simulated","C","LL",19.5617 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2046,"Simulated","C","LL",19.6271 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2047,"Simulated","C","LL",19.7407 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2048,"Simulated","C","LL",19.7249 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2049,"Simulated","C","LL",19.7394 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2050,"Simulated","C","LL",19.7025 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2051,"Simulated","C","LL",19.6127 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2052,"Simulated","C","LL",19.6129 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2053,"Simulated","C","LL",19.5487 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2054,"Simulated","C","LL",19.5596 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2055,"Simulated","C","LL",19.6241 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2056,"Simulated","C","LL",19.7239 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2057,"Simulated","C","LL",19.5914 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2058,"Simulated","C","LL",19.5171 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2059,"Simulated","C","LL",19.5235 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2060,"Simulated","C","LL",19.5884 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2061,"Simulated","C","LL",19.6956 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2062,"Simulated","C","LL",19.6987 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2063,"Simulated","C","LL",19.6158 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2064,"Simulated","C","LL",19.6715 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2065,"Simulated","C","LL",19.5928 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2066,"Simulated","C","LL",19.6283 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2067,"Simulated","C","LL",19.788 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2068,"Simulated","C","LL",19.7121 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2069,"Simulated","C","LL",19.5845 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2070,"Simulated","C","LL",19.5167 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2071,"Simulated","C","LL",19.5035 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2072,"Simulated","C","LL",19.4638 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2073,"Simulated","C","LL",19.4744 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2074,"Simulated","C","LL",19.4756 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2075,"Simulated","C","LL",19.5478 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2076,"Simulated","C","LL",19.7075 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2077,"Simulated","C","LL",19.8022 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2078,"Simulated","C","LL",19.738 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2079,"Simulated","C","LL",19.6781 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2080,"Simulated","C","LL",19.6743 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2081,"Simulated","C","LL",19.6647 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2082,"Simulated","C","LL",19.506 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2083,"Simulated","C","LL",19.4283 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2084,"Simulated","C","LL",19.5939 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2085,"Simulated","C","LL",19.743 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2086,"Simulated","C","LL",19.729 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2087,"Simulated","C","LL",19.6517 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2088,"Simulated","C","LL",19.5649 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2089,"Simulated","C","LL",19.7647 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2090,"Simulated","C","LL",19.8269 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2091,"Simulated","C","LL",19.6478 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2092,"Simulated","C","LL",19.7181 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2093,"Simulated","C","LL",19.7384 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2094,"Simulated","C","LL",19.6863 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2095,"Simulated","C","LL",19.6181 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2096,"Simulated","C","LL",19.6268 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2097,"Simulated","C","LL",19.5479 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2098,"Simulated","C","LL",19.6406 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2099,"Simulated","C","LL",19.6589 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2100,"Simulated","C","LL",19.7428 -"NorESM1-ME","tas","temperature","tgav_LL","rcp26",2101,"Simulated","C","LL",19.9805 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp26/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp26/summary.csv deleted file mode 100644 index f2c9506c3..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp26/summary.csv +++ /dev/null @@ -1,886 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,tas,temperature,tgav,rcp26,C,Simulated,global,0.659001595,13.43795,15.1858,14.262275,14.1861,1,CMIP5 -2006,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.989241938,-11.0002,-8.34115,-9.395121429,-8.9878,1,CMIP5 -2006,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.724879582,18.410375,20.3777,19.41652857,19.1873,1,CMIP5 -2007,tas,temperature,tgav,rcp26,C,Simulated,global,0.61846618,13.4298,14.9917,14.240225,14.397875,1,CMIP5 -2007,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.095441009,-11.3105,-8.277725,-9.389278571,-8.871025,1,CMIP5 -2007,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.648192688,18.3745,20.2529,19.38863214,19.1999,1,CMIP5 -2008,tas,temperature,tgav,rcp26,C,Simulated,global,0.603751328,13.457225,15.0656,14.25841429,14.394575,1,CMIP5 -2008,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.159957998,-11.1993,-8.157325,-9.283175,-8.682,1,CMIP5 -2008,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.631291006,18.36615,20.2523,19.38733214,19.2737,1,CMIP5 -2009,tas,temperature,tgav,rcp26,C,Simulated,global,0.59865694,13.42865,15.0655,14.27053929,14.3449,1,CMIP5 -2009,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.213686513,-11.3241,-8.01785,-9.406925,-8.834425,1,CMIP5 -2009,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.650607643,18.365025,20.3075,19.42857143,19.3837,1,CMIP5 -2010,tas,temperature,tgav,rcp26,C,Simulated,global,0.609542606,13.453725,15.1275,14.29899643,14.39345,1,CMIP5 -2010,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.247934065,-11.3209,-8.210475,-9.242732143,-8.56515,1,CMIP5 -2010,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.677735957,18.335975,20.3484,19.42786786,19.27,1,CMIP5 -2011,tas,temperature,tgav,rcp26,C,Simulated,global,0.657995178,13.4948,15.1439,14.31678571,14.3734,1,CMIP5 -2011,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.133203747,-11.3232,-8.2447,-9.274385714,-8.6489,1,CMIP5 -2011,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.697337776,18.424175,20.3738,19.45660357,19.339,1,CMIP5 -2012,tas,temperature,tgav,rcp26,C,Simulated,global,0.622024536,13.5827,15.1438,14.40474643,14.57175,1,CMIP5 -2012,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.198737568,-11.1354,-8.07775,-9.200567857,-8.532725,1,CMIP5 -2012,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.665273672,18.5342,20.3724,19.54708214,19.3892,1,CMIP5 -2013,tas,temperature,tgav,rcp26,C,Simulated,global,0.604268509,13.6355,15.1515,14.432925,14.4596,1,CMIP5 -2013,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.152888024,-11.0946,-7.82165,-9.080132143,-8.5114,1,CMIP5 -2013,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.637136587,18.68755,20.3486,19.55547857,19.2865,1,CMIP5 -2014,tas,temperature,tgav,rcp26,C,Simulated,global,0.597157975,13.6571,15.1344,14.46345714,14.5047,1,CMIP5 -2014,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.178248606,-11.0706,-7.825275,-9.059546429,-8.4668,1,CMIP5 -2014,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.629479113,18.631075,20.3922,19.58837143,19.5149,1,CMIP5 -2015,tas,temperature,tgav,rcp26,C,Simulated,global,0.581319724,13.65395,15.1923,14.51651071,14.6116,1,CMIP5 -2015,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.185839002,-10.8048,-7.800975,-8.969082143,-8.5629,1,CMIP5 -2015,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.640087143,18.579975,20.3969,19.63328571,19.5281,1,CMIP5 -2016,tas,temperature,tgav,rcp26,C,Simulated,global,0.588702134,13.741125,15.1825,14.49458929,14.6766,1,CMIP5 -2016,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.139677169,-10.7581,-7.84455,-9.023789286,-8.7605,1,CMIP5 -2016,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.639021028,18.6244,20.4088,19.61910357,19.4118,1,CMIP5 -2017,tas,temperature,tgav,rcp26,C,Simulated,global,0.628168395,13.6446,15.2724,14.53338929,14.71,1,CMIP5 -2017,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.247335405,-11.1459,-7.850975,-9.029996429,-8.2805,1,CMIP5 -2017,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.6555613,18.74955,20.497,19.666875,19.484,1,CMIP5 -2018,tas,temperature,tgav,rcp26,C,Simulated,global,0.667101121,13.661,15.4565,14.56074286,14.8001,1,CMIP5 -2018,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.270190947,-10.96,-7.453975,-8.869303571,-8.3759,1,CMIP5 -2018,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.675551203,18.7367,20.5707,19.66505357,19.5632,1,CMIP5 -2019,tas,temperature,tgav,rcp26,C,Simulated,global,0.643508482,13.805225,15.4234,14.55676071,14.7635,1,CMIP5 -2019,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.342649416,-10.8698,-7.382475,-9.035339286,-8.7918,1,CMIP5 -2019,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.70122156,18.703375,20.6039,19.69566071,19.4899,1,CMIP5 -2020,tas,temperature,tgav,rcp26,C,Simulated,global,0.632646106,13.872,15.4341,14.59950714,14.7628,1,CMIP5 -2020,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.381035358,-10.9816,-7.20445,-8.931667857,-8.7185,1,CMIP5 -2020,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.670777409,18.754725,20.5909,19.72574286,19.478,1,CMIP5 -2021,tas,temperature,tgav,rcp26,C,Simulated,global,0.606006346,13.91145,15.3891,14.63716786,14.8908,1,CMIP5 -2021,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.379242044,-10.8399,-7.324125,-8.884739286,-8.6062,1,CMIP5 -2021,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.645532,18.789075,20.5477,19.76168214,19.5774,1,CMIP5 -2022,tas,temperature,tgav,rcp26,C,Simulated,global,0.636258523,13.8805,15.4565,14.66347857,14.9194,1,CMIP5 -2022,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.327782628,-10.9207,-7.5127,-8.852228571,-8.3432,1,CMIP5 -2022,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.680436753,18.759525,20.621,19.78697143,19.6029,1,CMIP5 -2023,tas,temperature,tgav,rcp26,C,Simulated,global,0.671508775,13.907975,15.5324,14.72790357,14.9795,1,CMIP5 -2023,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.204680039,-10.643,-7.352975,-8.699303571,-8.2103,1,CMIP5 -2023,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.699815881,18.801125,20.6761,19.83185714,19.6963,1,CMIP5 -2024,tas,temperature,tgav,rcp26,C,Simulated,global,0.630644801,13.8674,15.3661,14.67443571,14.9702,1,CMIP5 -2024,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.364135961,-10.9251,-7.31135,-8.720953571,-8.097425,1,CMIP5 -2024,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.655051053,18.76705,20.5282,19.77126429,19.6634,1,CMIP5 -2025,tas,temperature,tgav,rcp26,C,Simulated,global,0.609867972,13.8757,15.3253,14.72725714,15.03435,1,CMIP5 -2025,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.458710132,-11.0533,-7.1664,-8.729385714,-8.102375,1,CMIP5 -2025,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.615411718,18.90515,20.562,19.83781429,19.7213,1,CMIP5 -2026,tas,temperature,tgav,rcp26,C,Simulated,global,0.657746397,13.9549,15.4393,14.73856429,15.03515,1,CMIP5 -2026,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.285654919,-10.7207,-7.145875,-8.5981,-8.4069,1,CMIP5 -2026,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.651589002,18.908975,20.61,19.82338214,19.7578,1,CMIP5 -2027,tas,temperature,tgav,rcp26,C,Simulated,global,0.645191954,14.01765,15.5975,14.79236071,14.9632,1,CMIP5 -2027,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.107167827,-10.402,-7.118025,-8.553153571,-8.3842,1,CMIP5 -2027,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.653071812,18.926625,20.6954,19.87917857,19.6788,1,CMIP5 -2028,tas,temperature,tgav,rcp26,C,Simulated,global,0.705406838,13.919,15.6887,14.79511071,14.945,1,CMIP5 -2028,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.22781084,-10.8357,-7.160625,-8.618967857,-8.2069,1,CMIP5 -2028,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.717810706,18.861375,20.8661,19.89663214,19.6565,1,CMIP5 -2029,tas,temperature,tgav,rcp26,C,Simulated,global,0.681831619,13.985475,15.6617,14.82872143,15.078175,1,CMIP5 -2029,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.253088648,-10.6226,-7.18715,-8.579478571,-8.2071,1,CMIP5 -2029,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.697208479,18.906125,20.8551,19.92849286,19.8338,1,CMIP5 -2030,tas,temperature,tgav,rcp26,C,Simulated,global,0.652196976,13.98975,15.5039,14.80257143,15.0952,1,CMIP5 -2030,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.126773362,-10.2309,-7.045125,-8.523310714,-8.2618,1,CMIP5 -2030,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.663441187,18.917175,20.6555,19.88473214,19.7894,1,CMIP5 -2031,tas,temperature,tgav,rcp26,C,Simulated,global,0.603999929,14.054775,15.4364,14.81174286,15.1091,1,CMIP5 -2031,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.167811897,-10.3404,-7.130375,-8.483410714,-8.1717,1,CMIP5 -2031,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.614107491,18.943125,20.5711,19.88780714,19.7849,1,CMIP5 -2032,tas,temperature,tgav,rcp26,C,Simulated,global,0.602063745,14.1056,15.555,14.89249643,15.1459,1,CMIP5 -2032,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.102588111,-9.6089,-7.01585,-8.384453571,-8.2923,1,CMIP5 -2032,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.657663749,18.9926,20.761,19.9638,19.7851,1,CMIP5 -2033,tas,temperature,tgav,rcp26,C,Simulated,global,0.665677467,14.1324,15.8136,14.906775,15.1203,1,CMIP5 -2033,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.216486702,-10.3421,-7.0236,-8.384757143,-8.3366,1,CMIP5 -2033,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.685004188,19.13645,21.0028,19.98209286,19.7437,1,CMIP5 -2034,tas,temperature,tgav,rcp26,C,Simulated,global,0.718987002,13.9737,15.8346,14.90112143,15.212875,1,CMIP5 -2034,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.309875823,-10.7448,-7.012925,-8.505071429,-8.6916,1,CMIP5 -2034,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.699235505,19.08635,21.0282,20.00152143,19.9127,1,CMIP5 -2035,tas,temperature,tgav,rcp26,C,Simulated,global,0.729683583,13.9856,15.7996,14.90221429,15.2311,1,CMIP5 -2035,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.296334437,-10.6015,-6.870325,-8.464139286,-8.4377,1,CMIP5 -2035,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.724050447,19.011075,20.9471,19.99316786,19.919,1,CMIP5 -2036,tas,temperature,tgav,rcp26,C,Simulated,global,0.75832369,14.0227,15.9293,14.94053214,15.2702,1,CMIP5 -2036,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.250768263,-10.4772,-6.82505,-8.389660714,-8.352,1,CMIP5 -2036,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.745415106,19.030325,21.0219,20.02361429,19.9808,1,CMIP5 -2037,tas,temperature,tgav,rcp26,C,Simulated,global,0.715981717,14.0623,15.8727,14.96635714,15.1838,1,CMIP5 -2037,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.196717805,-10.3743,-6.773675,-8.405735714,-8.2419,1,CMIP5 -2037,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.720549595,19.0966,21.0263,20.05822857,19.9164,1,CMIP5 -2038,tas,temperature,tgav,rcp26,C,Simulated,global,0.718163133,14.0305,15.8249,14.9609,15.19895,1,CMIP5 -2038,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.125026457,-10.2262,-7.032825,-8.327617857,-8.1917,1,CMIP5 -2038,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.721092433,19.106775,20.9588,20.03513214,19.9168,1,CMIP5 -2039,tas,temperature,tgav,rcp26,C,Simulated,global,0.687482946,13.9907,15.6608,14.92774643,15.26655,1,CMIP5 -2039,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.224649004,-10.3855,-6.95615,-8.400139286,-8.4465,1,CMIP5 -2039,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.669061979,19.1169,20.8033,20.01067143,20.0036,1,CMIP5 -2040,tas,temperature,tgav,rcp26,C,Simulated,global,0.668541513,14.2079,15.8224,15.00226429,15.266925,1,CMIP5 -2040,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.088264036,-9.8569,-6.9767,-8.244260714,-8.2532,1,CMIP5 -2040,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.680143542,19.15465,20.9635,20.0675,20.0193,1,CMIP5 -2041,tas,temperature,tgav,rcp26,C,Simulated,global,0.657963225,14.287225,15.8607,14.99079643,15.2715,1,CMIP5 -2041,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.081325269,-9.7777,-6.956725,-8.357760714,-8.7394,1,CMIP5 -2041,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.675291707,19.1411,21.017,20.07822857,19.9788,1,CMIP5 -2042,tas,temperature,tgav,rcp26,C,Simulated,global,0.674418817,14.206975,15.9526,15.00905357,15.2873,1,CMIP5 -2042,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.063598569,-9.5435,-6.71235,-8.135007143,-8.0325,1,CMIP5 -2042,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.698200842,19.07225,21.0353,20.05129643,19.9708,1,CMIP5 -2043,tas,temperature,tgav,rcp26,C,Simulated,global,0.744467744,14.145125,16.0129,15.01185357,15.3884,1,CMIP5 -2043,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.357260152,-9.9753,-6.525875,-8.226517857,-8.1201,1,CMIP5 -2043,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.74324086,19.028425,21.1618,20.07410357,20.1674,1,CMIP5 -2044,tas,temperature,tgav,rcp26,C,Simulated,global,0.683834811,14.196,15.8219,15.00058214,15.368825,1,CMIP5 -2044,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.379517995,-10.0347,-6.5509,-8.255325,-8.382,1,CMIP5 -2044,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.668141484,19.202325,20.9929,20.06728929,20.0936,1,CMIP5 -2045,tas,temperature,tgav,rcp26,C,Simulated,global,0.668956947,14.2017,15.6644,15.01652857,15.419125,1,CMIP5 -2045,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.44033375,-9.9754,-6.3915,-8.185482143,-8.2184,1,CMIP5 -2045,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.657138132,19.17435,20.8564,20.071075,20.1536,1,CMIP5 -2046,tas,temperature,tgav,rcp26,C,Simulated,global,0.669948079,14.2644,15.8181,15.04502143,15.427625,1,CMIP5 -2046,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.316463335,-9.9239,-6.653125,-8.217592857,-8.1472,1,CMIP5 -2046,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.67436401,19.152775,20.9765,20.11298571,20.157,1,CMIP5 -2047,tas,temperature,tgav,rcp26,C,Simulated,global,0.696739758,14.26365,15.8824,15.081575,15.475175,1,CMIP5 -2047,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.35173558,-10.3696,-6.63525,-8.292046429,-8.1891,1,CMIP5 -2047,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.698362758,19.11675,21.0945,20.17377143,20.2501,1,CMIP5 -2048,tas,temperature,tgav,rcp26,C,Simulated,global,0.71647602,14.299575,15.9735,15.08178571,15.526,1,CMIP5 -2048,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.22671021,-10.1168,-6.54785,-8.213121429,-8.317,1,CMIP5 -2048,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.687838923,19.209375,21.1023,20.157525,20.2273,1,CMIP5 -2049,tas,temperature,tgav,rcp26,C,Simulated,global,0.762661093,14.2923,16.1257,15.09758214,15.4496,1,CMIP5 -2049,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.212799186,-9.9569,-6.452125,-8.217217857,-8.5841,1,CMIP5 -2049,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.751890602,19.169175,21.2848,20.17768571,20.1558,1,CMIP5 -2050,tas,temperature,tgav,rcp26,C,Simulated,global,0.776953123,14.27885,16.2758,15.13954286,15.4226,1,CMIP5 -2050,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.28124445,-10.0438,-6.387675,-8.157103571,-8.3381,1,CMIP5 -2050,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.782137687,19.1571,21.4181,20.21517857,20.0883,1,CMIP5 -2051,tas,temperature,tgav,rcp26,C,Simulated,global,0.753294374,14.1499,15.8891,15.04968214,15.540725,1,CMIP5 -2051,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.488470729,-10.4903,-6.3619,-8.316817857,-8.5295,1,CMIP5 -2051,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.719653199,19.157675,21.0332,20.14048929,20.1993,1,CMIP5 -2052,tas,temperature,tgav,rcp26,C,Simulated,global,0.717498074,14.1455,15.7736,15.02206786,15.46675,1,CMIP5 -2052,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.573025063,-10.5165,-6.467375,-8.376875,-8.7304,1,CMIP5 -2052,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.665095445,19.22195,20.9306,20.12006429,20.2669,1,CMIP5 -2053,tas,temperature,tgav,rcp26,C,Simulated,global,0.763999992,14.1052,15.9926,15.03675,15.3875,1,CMIP5 -2053,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.552377515,-10.4487,-6.493575,-8.375978571,-8.6754,1,CMIP5 -2053,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.721198113,19.193675,21.1453,20.1376,20.2558,1,CMIP5 -2054,tas,temperature,tgav,rcp26,C,Simulated,global,0.777317367,14.0688,15.9947,15.03769286,15.50075,1,CMIP5 -2054,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.540828175,-10.6984,-6.52445,-8.345139286,-8.5882,1,CMIP5 -2054,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.731061373,19.212775,21.1273,20.13248571,20.1974,1,CMIP5 -2055,tas,temperature,tgav,rcp26,C,Simulated,global,0.790278037,14.1418,16.0227,15.05672143,15.531,1,CMIP5 -2055,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.39157595,-10.5868,-6.62225,-8.341357143,-8.4756,1,CMIP5 -2055,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.743572052,19.193125,21.1376,20.15518571,20.2426,1,CMIP5 -2056,tas,temperature,tgav,rcp26,C,Simulated,global,0.70860093,14.288,15.8753,15.06278571,15.4656,1,CMIP5 -2056,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.35745005,-9.8115,-6.5828,-8.273321429,-8.7092,1,CMIP5 -2056,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.697623517,19.17695,21.0152,20.14737857,20.2026,1,CMIP5 -2057,tas,temperature,tgav,rcp26,C,Simulated,global,0.745796268,14.2505,15.9023,15.07255357,15.5707,1,CMIP5 -2057,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.348252198,-9.8394,-6.448675,-8.229875,-8.6082,1,CMIP5 -2057,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.72618766,19.214475,21.0275,20.14945,20.2332,1,CMIP5 -2058,tas,temperature,tgav,rcp26,C,Simulated,global,0.80108701,14.1213,16.1681,15.10589286,15.45465,1,CMIP5 -2058,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.392466725,-10.2164,-6.2877,-8.091814286,-8.2732,1,CMIP5 -2058,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.766892555,19.20365,21.307,20.16064643,20.2185,1,CMIP5 -2059,tas,temperature,tgav,rcp26,C,Simulated,global,0.831781902,14.1059,16.1314,15.10987857,15.565325,1,CMIP5 -2059,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.480593932,-10.3298,-6.1039,-8.112617857,-8.5533,1,CMIP5 -2059,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.792215081,19.226325,21.319,20.170375,20.2449,1,CMIP5 -2060,tas,temperature,tgav,rcp26,C,Simulated,global,0.820970818,14.1552,16.0449,15.09889643,15.528625,1,CMIP5 -2060,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.289737686,-10.0787,-6.520375,-8.128060714,-8.487,1,CMIP5 -2060,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.779598063,19.23775,21.2232,20.16046786,20.2299,1,CMIP5 -2061,tas,temperature,tgav,rcp26,C,Simulated,global,0.785203246,14.1895,16.089,15.11858571,15.4675,1,CMIP5 -2061,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.175778836,-9.8416,-6.293975,-7.998164286,-8.237,1,CMIP5 -2061,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.756297677,19.243575,21.168,20.15562857,20.1554,1,CMIP5 -2062,tas,temperature,tgav,rcp26,C,Simulated,global,0.742809618,14.236,15.9401,15.11635714,15.585975,1,CMIP5 -2062,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.18813205,-9.7756,-6.34215,-8.085825,-8.5915,1,CMIP5 -2062,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.703700777,19.2874,21.062,20.17170714,20.3102,1,CMIP5 -2063,tas,temperature,tgav,rcp26,C,Simulated,global,0.818326597,14.1745,15.968,15.11826429,15.56025,1,CMIP5 -2063,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.38701644,-10.3711,-6.4082,-8.056721429,-8.432,1,CMIP5 -2063,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.759394554,19.155975,21.1006,20.16848214,20.3569,1,CMIP5 -2064,tas,temperature,tgav,rcp26,C,Simulated,global,0.822557167,14.0621,15.9982,15.053425,15.45715,1,CMIP5 -2064,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.329462987,-10.2553,-6.47865,-8.134703571,-8.5601,1,CMIP5 -2064,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.777438274,19.131125,21.1257,20.10615,20.2714,1,CMIP5 -2065,tas,temperature,tgav,rcp26,C,Simulated,global,0.834242853,14.0811,16.1107,15.04807857,15.45405,1,CMIP5 -2065,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.358236932,-10.3381,-6.5853,-8.143053571,-8.2483,1,CMIP5 -2065,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.787088921,19.168375,21.1966,20.10211071,20.1138,1,CMIP5 -2066,tas,temperature,tgav,rcp26,C,Simulated,global,0.877444009,14.0715,16.29,15.07071786,15.451,1,CMIP5 -2066,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.515782775,-10.9957,-6.5963,-8.233964286,-8.3204,1,CMIP5 -2066,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.818762834,19.22225,21.4284,20.14993214,20.06,1,CMIP5 -2067,tas,temperature,tgav,rcp26,C,Simulated,global,0.820605848,14.0939,16.1651,15.08335,15.5001,1,CMIP5 -2067,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.534238135,-10.5615,-6.3842,-8.269642857,-8.7695,1,CMIP5 -2067,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.807340921,19.2305,21.3712,20.17183214,20.0693,1,CMIP5 -2068,tas,temperature,tgav,rcp26,C,Simulated,global,0.769306575,14.1044,15.8125,15.04920357,15.498725,1,CMIP5 -2068,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.442597732,-10.0719,-6.1713,-8.216875,-8.9465,1,CMIP5 -2068,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.734649356,19.15745,20.9823,20.119275,20.2017,1,CMIP5 -2069,tas,temperature,tgav,rcp26,C,Simulated,global,0.820565601,14.0783,15.8082,15.02578571,15.5232,1,CMIP5 -2069,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.700220742,-10.7604,-6.0982,-8.328178571,-8.7527,1,CMIP5 -2069,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.759426577,19.141025,20.9641,20.11425714,20.382,1,CMIP5 -2070,tas,temperature,tgav,rcp26,C,Simulated,global,0.80814976,14.083,15.976,15.037275,15.500025,1,CMIP5 -2070,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.493164368,-10.4286,-6.4058,-8.269196429,-8.5573,1,CMIP5 -2070,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.763704101,19.225575,21.0983,20.11551071,20.2655,1,CMIP5 -2071,tas,temperature,tgav,rcp26,C,Simulated,global,0.846234564,14.0003,15.9381,15.00401786,15.5212,1,CMIP5 -2071,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.658680558,-10.8253,-6.234,-8.283967857,-8.7273,1,CMIP5 -2071,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.762108356,19.202075,21.088,20.07888571,20.2548,1,CMIP5 -2072,tas,temperature,tgav,rcp26,C,Simulated,global,0.820223458,13.9691,15.9808,14.99974643,15.4538,1,CMIP5 -2072,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.536495679,-10.8179,-6.4043,-8.3091,-8.6322,1,CMIP5 -2072,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.768614311,19.20195,21.1197,20.07916429,20.095,1,CMIP5 -2073,tas,temperature,tgav,rcp26,C,Simulated,global,0.813899987,13.9514,15.9687,14.977225,15.4714,1,CMIP5 -2073,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.597908264,-10.9632,-6.618325,-8.472364286,-8.6998,1,CMIP5 -2073,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.757427233,19.22255,21.1192,20.08688571,20.0955,1,CMIP5 -2074,tas,temperature,tgav,rcp26,C,Simulated,global,0.861022949,13.9377,15.7868,14.95331786,15.5392,1,CMIP5 -2074,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.667981301,-11.0447,-6.3449,-8.468210714,-8.9214,1,CMIP5 -2074,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.770358537,19.1081,20.9456,20.05762857,20.2671,1,CMIP5 -2075,tas,temperature,tgav,rcp26,C,Simulated,global,0.779276443,14.061,15.8299,15.01361429,15.467375,1,CMIP5 -2075,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.55015976,-10.6902,-6.524,-8.376996429,-8.8893,1,CMIP5 -2075,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.722718798,19.2304,21.013,20.11017857,20.3133,1,CMIP5 -2076,tas,temperature,tgav,rcp26,C,Simulated,global,0.727356685,14.1816,15.8381,15.05787857,15.4813,1,CMIP5 -2076,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.488459551,-10.1677,-6.3826,-8.265357143,-8.6414,1,CMIP5 -2076,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.709738424,19.24645,21.0683,20.1391,20.2956,1,CMIP5 -2077,tas,temperature,tgav,rcp26,C,Simulated,global,0.775708421,14.0433,15.914,15.05326786,15.470125,1,CMIP5 -2077,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.414319351,-10.0892,-6.4875,-8.203075,-8.2696,1,CMIP5 -2077,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.720478988,19.16885,20.9633,20.12085,20.3965,1,CMIP5 -2078,tas,temperature,tgav,rcp26,C,Simulated,global,0.775928601,14.0172,15.9068,15.04880357,15.489975,1,CMIP5 -2078,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.464572294,-10.2009,-6.51905,-8.261657143,-8.6398,1,CMIP5 -2078,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.748548694,19.2054,21.0319,20.127425,20.2854,1,CMIP5 -2079,tas,temperature,tgav,rcp26,C,Simulated,global,0.762882366,14.067,15.9526,15.05346429,15.5108,1,CMIP5 -2079,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.529366072,-10.2117,-6.4515,-8.297246429,-8.878,1,CMIP5 -2079,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.741453598,19.2874,21.1369,20.14089286,20.2,1,CMIP5 -2080,tas,temperature,tgav,rcp26,C,Simulated,global,0.796221959,14.0222,15.8804,15.05294643,15.4873,1,CMIP5 -2080,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.561533562,-10.2941,-6.2262,-8.297189286,-8.8261,1,CMIP5 -2080,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.724445295,19.2405,21.0388,20.14151071,20.3077,1,CMIP5 -2081,tas,temperature,tgav,rcp26,C,Simulated,global,0.743937201,14.0936,15.6931,14.99919643,15.447,1,CMIP5 -2081,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.466441889,-10.2863,-6.5323,-8.351646429,-9.0762,1,CMIP5 -2081,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.695152473,19.1481,20.8778,20.08713571,20.31,1,CMIP5 -2082,tas,temperature,tgav,rcp26,C,Simulated,global,0.798566044,14.0396,16.0172,15.043575,15.48305,1,CMIP5 -2082,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.487738396,-10.62,-6.536175,-8.136,-8.165,1,CMIP5 -2082,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.76544273,19.18075,21.1501,20.09368214,20.2547,1,CMIP5 -2083,tas,temperature,tgav,rcp26,C,Simulated,global,0.815319474,14.0268,15.959,14.99816786,15.4641,1,CMIP5 -2083,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.520577068,-10.339,-6.5357,-8.261742857,-8.8696,1,CMIP5 -2083,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.792416093,19.16485,21.1516,20.06562143,20.2271,1,CMIP5 -2084,tas,temperature,tgav,rcp26,C,Simulated,global,0.751732481,14.1821,15.9075,15.04539286,15.43355,1,CMIP5 -2084,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.427689489,-9.9924,-6.453,-8.189817857,-8.5807,1,CMIP5 -2084,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.734939076,19.176725,21.0203,20.10748929,20.2785,1,CMIP5 -2085,tas,temperature,tgav,rcp26,C,Simulated,global,0.711765385,14.194,15.9147,15.02453929,15.3533,1,CMIP5 -2085,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.41286089,-10.1048,-6.4046,-8.192410714,-8.4315,1,CMIP5 -2085,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.675525216,19.16485,20.9979,20.08385357,20.1872,1,CMIP5 -2086,tas,temperature,tgav,rcp26,C,Simulated,global,0.746911318,14.2633,16.0861,15.06950714,15.4511,1,CMIP5 -2086,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.462399142,-10.3931,-6.539125,-8.1837,-8.2735,1,CMIP5 -2086,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.719576026,19.1747,21.1722,20.13632143,20.1556,1,CMIP5 -2087,tas,temperature,tgav,rcp26,C,Simulated,global,0.773886738,14.0811,15.9505,15.01373929,15.3886,1,CMIP5 -2087,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.472746566,-10.4188,-6.5649,-8.277539286,-8.5216,1,CMIP5 -2087,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.729731689,19.1857,21.06,20.088725,20.2708,1,CMIP5 -2088,tas,temperature,tgav,rcp26,C,Simulated,global,0.821769074,14.1293,16.0173,15.05258929,15.4724,1,CMIP5 -2088,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.499418642,-10.2606,-6.3105,-8.187935714,-8.4822,1,CMIP5 -2088,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.777520629,19.1499,21.1326,20.11601429,20.4005,1,CMIP5 -2089,tas,temperature,tgav,rcp26,C,Simulated,global,0.815677406,14.1088,16.1093,15.08597857,15.49505,1,CMIP5 -2089,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.457693125,-10.0918,-6.1263,-8.101328571,-8.4601,1,CMIP5 -2089,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.781131616,19.1209,21.2391,20.13854643,20.2664,1,CMIP5 -2090,tas,temperature,tgav,rcp26,C,Simulated,global,0.78341975,14.2887,16.2508,15.14524643,15.498975,1,CMIP5 -2090,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.276980355,-9.7211,-6.3786,-7.926778571,-7.7898,1,CMIP5 -2090,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.732998323,19.14365,21.2702,20.17342143,20.3044,1,CMIP5 -2091,tas,temperature,tgav,rcp26,C,Simulated,global,0.714493174,14.254,15.8455,15.10213214,15.44145,1,CMIP5 -2091,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.499099339,-10.0777,-5.9231,-8.020539286,-8.3457,1,CMIP5 -2091,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.656718945,19.1587,20.9188,20.14081786,20.3599,1,CMIP5 -2092,tas,temperature,tgav,rcp26,C,Simulated,global,0.740013983,14.1563,15.8235,15.05888929,15.404,1,CMIP5 -2092,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.357885498,-9.9608,-6.2329,-8.084657143,-8.5357,1,CMIP5 -2092,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.658775981,19.199425,20.8031,20.10269286,20.4287,1,CMIP5 -2093,tas,temperature,tgav,rcp26,C,Simulated,global,0.767306029,14.1018,15.823,15.05724286,15.4045,1,CMIP5 -2093,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.385486098,-10.1198,-6.2516,-8.132592857,-8.6703,1,CMIP5 -2093,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.717688591,19.1763,20.9646,20.11043571,20.3895,1,CMIP5 -2094,tas,temperature,tgav,rcp26,C,Simulated,global,0.797474696,14.07,16.0905,15.07967143,15.380175,1,CMIP5 -2094,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.307152124,-9.7705,-6.272,-8.092867857,-8.352,1,CMIP5 -2094,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.743063728,19.213475,21.1939,20.12978214,20.3352,1,CMIP5 -2095,tas,temperature,tgav,rcp26,C,Simulated,global,0.824829126,14.0467,16.0315,15.05615,15.365125,1,CMIP5 -2095,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.373594001,-10.0589,-6.2837,-8.223421429,-8.6608,1,CMIP5 -2095,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.772584247,19.1924,21.187,20.12907143,20.3792,1,CMIP5 -2096,tas,temperature,tgav,rcp26,C,Simulated,global,0.856683835,14.0013,15.903,15.04722857,15.3486,1,CMIP5 -2096,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.425573957,-10.2371,-6.1859,-8.217828571,-8.4639,1,CMIP5 -2096,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.772438118,19.12835,21.0894,20.11775,20.4408,1,CMIP5 -2097,tas,temperature,tgav,rcp26,C,Simulated,global,0.873715799,13.9823,16.0656,15.07100714,15.356825,1,CMIP5 -2097,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.341085791,-10.0255,-6.194,-8.091253571,-8.3988,1,CMIP5 -2097,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.788338662,19.19115,21.1735,20.11969643,20.4054,1,CMIP5 -2098,tas,temperature,tgav,rcp26,C,Simulated,global,0.84998448,14.0433,16.024,15.06683571,15.35325,1,CMIP5 -2098,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.306743578,-10.135,-6.3923,-8.075346429,-8.1499,1,CMIP5 -2098,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.758969731,19.155425,21.0712,20.11086429,20.3835,1,CMIP5 -2099,tas,temperature,tgav,rcp26,C,Simulated,global,0.838831709,14.1991,16.072,15.10480714,15.328175,1,CMIP5 -2099,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.380586645,-10.072,-6.0139,-7.982596429,-7.8302,1,CMIP5 -2099,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.720056784,19.1419,21.0625,20.13771071,20.392775,1,CMIP5 -2100,tas,temperature,tgav,rcp26,C,Simulated,global,0.789556599,14.0311,15.8528,15.02116786,15.286025,1,CMIP5 -2100,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.298420415,-10.1143,-6.4868,-8.214825,-8.4036,1,CMIP5 -2100,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.720279415,19.125175,20.9173,20.08535,20.3059,1,CMIP5 -2101,tas,temperature,tgav,rcp26,C,Simulated,global,0.689782243,14.1833,15.7862,15.13784,15.3472,1,CMIP5 -2101,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.976150879,-9.2583,-6.5871,-8.11804,-8.3318,1,CMIP5 -2101,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.70431145,19.0967,20.8437,20.20696,20.3991,1,CMIP5 -2102,tas,temperature,tgav,rcp26,C,Simulated,global,0.751938124,14.201,15.8002,15.295075,15.58955,1,CMIP5 -2102,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.032913267,-8.6474,-6.4002,-7.87405,-8.2243,1,CMIP5 -2102,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.838646323,19.1058,20.9046,20.321425,20.63765,1,CMIP5 -2103,tas,temperature,tgav,rcp26,C,Simulated,global,0.729971741,14.2678,15.8805,15.309925,15.5457,1,CMIP5 -2103,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.864463492,-8.5761,-6.7447,-7.896425,-8.13245,1,CMIP5 -2103,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.832881005,19.1429,20.9805,20.345175,20.62865,1,CMIP5 -2104,tas,temperature,tgav,rcp26,C,Simulated,global,0.810103068,14.1019,15.8897,15.2843,15.5728,1,CMIP5 -2104,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.98124057,-9.0229,-6.7643,-8.08865,-8.2837,1,CMIP5 -2104,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.924720496,18.9979,21.0005,20.355225,20.71125,1,CMIP5 -2105,tas,temperature,tgav,rcp26,C,Simulated,global,0.771873077,14.2144,16.0332,15.3043,15.4848,1,CMIP5 -2105,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.216520819,-9.5842,-6.6431,-8.089175,-8.0647,1,CMIP5 -2105,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.884188357,19.1017,21.1141,20.37875,20.6496,1,CMIP5 -2106,tas,temperature,tgav,rcp26,C,Simulated,global,0.768285513,14.2344,16.0017,15.31595,15.51385,1,CMIP5 -2106,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.015887418,-9.1616,-6.7662,-8.0816,-8.1993,1,CMIP5 -2106,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.876685985,19.1436,21.1158,20.391725,20.65375,1,CMIP5 -2107,tas,temperature,tgav,rcp26,C,Simulated,global,0.718466559,14.162,15.7458,15.20625,15.4586,1,CMIP5 -2107,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.160296411,-8.9528,-6.4934,-7.950975,-8.17885,1,CMIP5 -2107,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.865592192,18.9748,20.8736,20.228825,20.53345,1,CMIP5 -2108,tas,temperature,tgav,rcp26,C,Simulated,global,0.766378946,14.1119,15.9106,15.169275,15.3273,1,CMIP5 -2108,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.157612103,-9.6842,-7.0063,-8.1899,-8.03455,1,CMIP5 -2108,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.917681286,18.9312,20.996,20.236125,20.50865,1,CMIP5 -2109,tas,temperature,tgav,rcp26,C,Simulated,global,0.765798398,14.2215,16.0495,15.2206,15.3057,1,CMIP5 -2109,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.250208883,-9.9897,-7.1963,-8.31975,-8.0465,1,CMIP5 -2109,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.92893132,19.0493,21.1837,20.32615,20.5358,1,CMIP5 -2110,tas,temperature,tgav,rcp26,C,Simulated,global,0.788153236,14.1244,15.9708,15.23255,15.4175,1,CMIP5 -2110,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.957315735,-9.3199,-7.0395,-8.11745,-8.0552,1,CMIP5 -2110,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.907799069,18.9849,21.0412,20.298975,20.5849,1,CMIP5 -2111,tas,temperature,tgav,rcp26,C,Simulated,global,0.683776642,14.2186,15.7333,15.22705,15.47815,1,CMIP5 -2111,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.16655476,-9.2626,-6.7296,-8.151925,-8.30775,1,CMIP5 -2111,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.827316119,19.0752,20.883,20.2985,20.6179,1,CMIP5 -2112,tas,temperature,tgav,rcp26,C,Simulated,global,0.644933663,14.4529,15.9953,15.311075,15.39805,1,CMIP5 -2112,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.27077732,-9.6348,-6.8404,-8.09675,-7.9559,1,CMIP5 -2112,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.803282352,19.2761,21.133,20.38775,20.57095,1,CMIP5 -2113,tas,temperature,tgav,rcp26,C,Simulated,global,0.67498996,14.4465,16.0564,15.3731,15.49475,1,CMIP5 -2113,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.214633156,-9.184,-6.5255,-7.809275,-7.7638,1,CMIP5 -2113,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.835660567,19.2238,21.1686,20.401125,20.60605,1,CMIP5 -2114,tas,temperature,tgav,rcp26,C,Simulated,global,0.609928206,14.3589,15.776,15.23405,15.40065,1,CMIP5 -2114,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.289419015,-9.6466,-6.9013,-8.221325,-8.1687,1,CMIP5 -2114,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.780279041,19.1817,20.9376,20.321525,20.5834,1,CMIP5 -2115,tas,temperature,tgav,rcp26,C,Simulated,global,0.693343399,14.2962,15.9526,15.247975,15.37155,1,CMIP5 -2115,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.135984387,-9.5503,-6.8561,-8.1019,-8.0006,1,CMIP5 -2115,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.802841323,19.17,21.02,20.313625,20.53225,1,CMIP5 -2116,tas,temperature,tgav,rcp26,C,Simulated,global,0.65137642,14.2694,15.7514,15.2005,15.3906,1,CMIP5 -2116,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.071576484,-9.1681,-6.7821,-8.1181,-8.2611,1,CMIP5 -2116,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.768728762,19.1525,20.8711,20.259125,20.50645,1,CMIP5 -2117,tas,temperature,tgav,rcp26,C,Simulated,global,0.697520222,14.151,15.692,15.1685,15.4155,1,CMIP5 -2117,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.143390925,-9.1088,-6.6922,-8.1617,-8.4229,1,CMIP5 -2117,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.829737408,19.0225,20.853,20.229,20.52025,1,CMIP5 -2118,tas,temperature,tgav,rcp26,C,Simulated,global,0.686793256,14.277,15.7716,15.271375,15.51845,1,CMIP5 -2118,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.198387284,-9.0968,-6.5759,-7.881975,-7.9276,1,CMIP5 -2118,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.866873979,19.0343,20.8762,20.292975,20.6307,1,CMIP5 -2119,tas,temperature,tgav,rcp26,C,Simulated,global,0.625226068,14.3361,15.6841,15.233375,15.45665,1,CMIP5 -2119,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.089188996,-9.1126,-6.9738,-7.98525,-7.9273,1,CMIP5 -2119,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.825355468,19.0612,20.8614,20.270725,20.58015,1,CMIP5 -2120,tas,temperature,tgav,rcp26,C,Simulated,global,0.592133686,14.4518,15.8298,15.275325,15.40985,1,CMIP5 -2120,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.048562776,-9.0395,-7.0501,-8.087325,-8.12985,1,CMIP5 -2120,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.747281154,19.2792,21.0014,20.343825,20.54735,1,CMIP5 -2121,tas,temperature,tgav,rcp26,C,Simulated,global,0.704515659,14.2363,15.8244,15.254,15.47765,1,CMIP5 -2121,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.180360521,-9.3843,-6.7181,-8.1563,-8.2614,1,CMIP5 -2121,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.846376088,19.1053,20.9659,20.331725,20.62785,1,CMIP5 -2122,tas,temperature,tgav,rcp26,C,Simulated,global,0.778222172,14.1685,15.9069,15.268525,15.49935,1,CMIP5 -2122,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.775219515,-8.6147,-6.9576,-7.96695,-8.14775,1,CMIP5 -2122,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.890357533,19.0308,21.0268,20.31045,20.5921,1,CMIP5 -2123,tas,temperature,tgav,rcp26,C,Simulated,global,0.676935917,14.2433,15.7962,15.187075,15.3544,1,CMIP5 -2123,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.129460458,-9.2979,-6.8788,-8.0111,-7.93385,1,CMIP5 -2123,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.844721486,19.0138,20.8891,20.218975,20.4865,1,CMIP5 -2124,tas,temperature,tgav,rcp26,C,Simulated,global,0.6185189,14.3333,15.742,15.203525,15.3694,1,CMIP5 -2124,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.155995999,-9.6492,-6.9441,-8.30955,-8.32245,1,CMIP5 -2124,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.73170395,19.2639,20.8536,20.30395,20.54915,1,CMIP5 -2125,tas,temperature,tgav,rcp26,C,Simulated,global,0.75112774,14.2393,15.9763,15.289275,15.47075,1,CMIP5 -2125,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.887944538,-8.9903,-6.9047,-8.093975,-8.24045,1,CMIP5 -2125,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.837271801,19.1729,21.0803,20.362925,20.59925,1,CMIP5 -2126,tas,temperature,tgav,rcp26,C,Simulated,global,0.746067157,14.2257,16.0173,15.221725,15.32195,1,CMIP5 -2126,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.148433144,-9.6605,-6.8934,-8.249,-8.22105,1,CMIP5 -2126,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.847782592,19.1473,21.1303,20.312925,20.48705,1,CMIP5 -2127,tas,temperature,tgav,rcp26,C,Simulated,global,0.719102211,14.2567,15.9562,15.20545,15.30445,1,CMIP5 -2127,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.162955119,-9.6967,-6.9756,-8.298225,-8.2603,1,CMIP5 -2127,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.847460036,19.1568,21.0996,20.3032,20.4782,1,CMIP5 -2128,tas,temperature,tgav,rcp26,C,Simulated,global,0.767073853,14.2081,16,15.24745,15.39085,1,CMIP5 -2128,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.160494959,-9.474,-6.8128,-8.111225,-8.07905,1,CMIP5 -2128,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.922237254,19.0394,21.1313,20.3134,20.54145,1,CMIP5 -2129,tas,temperature,tgav,rcp26,C,Simulated,global,0.795353432,14.1418,16.0276,15.214425,15.34415,1,CMIP5 -2129,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.945503952,-9.367,-7.2275,-8.18235,-8.06745,1,CMIP5 -2129,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.93646044,18.9746,21.1446,20.290525,20.52145,1,CMIP5 -2130,tas,temperature,tgav,rcp26,C,Simulated,global,0.659666279,14.3308,15.866,15.1976,15.2968,1,CMIP5 -2130,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.112964604,-9.2287,-7.1251,-8.120425,-8.06395,1,CMIP5 -2130,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.840248378,19.105,21.0425,20.25535,20.43695,1,CMIP5 -2131,tas,temperature,tgav,rcp26,C,Simulated,global,0.561409862,14.4034,15.697,15.1691,15.288,1,CMIP5 -2131,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.177123552,-9.4368,-7.1737,-8.25735,-8.20945,1,CMIP5 -2131,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.747669611,19.1877,20.8744,20.2509,20.47075,1,CMIP5 -2132,tas,temperature,tgav,rcp26,C,Simulated,global,0.707881451,14.1273,15.7588,15.142775,15.3425,1,CMIP5 -2132,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.347762163,-9.7529,-6.741,-8.337625,-8.4283,1,CMIP5 -2132,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.872750859,18.9814,20.9473,20.234475,20.5046,1,CMIP5 -2133,tas,temperature,tgav,rcp26,C,Simulated,global,0.686179823,14.2938,15.9185,15.257625,15.4091,1,CMIP5 -2133,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.202211508,-9.5325,-6.7402,-8.033075,-7.9298,1,CMIP5 -2133,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.819211313,19.1229,20.9906,20.310025,20.5633,1,CMIP5 -2134,tas,temperature,tgav,rcp26,C,Simulated,global,0.630675835,14.2734,15.7411,15.175525,15.3438,1,CMIP5 -2134,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.380684173,-9.9776,-6.9968,-8.3621,-8.237,1,CMIP5 -2134,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.809735677,19.0919,20.9101,20.2807,20.5604,1,CMIP5 -2135,tas,temperature,tgav,rcp26,C,Simulated,global,0.733993835,14.1706,15.8553,15.234475,15.456,1,CMIP5 -2135,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.364897513,-9.5253,-6.5688,-8.3169,-8.58675,1,CMIP5 -2135,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.883725755,19.0655,21.1006,20.341775,20.6005,1,CMIP5 -2136,tas,temperature,tgav,rcp26,C,Simulated,global,0.760654505,14.2157,15.9942,15.273925,15.4429,1,CMIP5 -2136,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.433004549,-9.7341,-6.4429,-8.15095,-8.2134,1,CMIP5 -2136,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.909795524,19.055,21.1745,20.353875,20.593,1,CMIP5 -2137,tas,temperature,tgav,rcp26,C,Simulated,global,0.551614207,14.4082,15.664,15.1956,15.3551,1,CMIP5 -2137,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.772412599,-10.2571,-6.3844,-8.223025,-8.1253,1,CMIP5 -2137,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.736756084,19.1891,20.8338,20.2725,20.53355,1,CMIP5 -2138,tas,temperature,tgav,rcp26,C,Simulated,global,0.660038527,14.2124,15.7404,15.16315,15.3499,1,CMIP5 -2138,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.502310464,-9.8133,-6.4517,-8.187775,-8.24305,1,CMIP5 -2138,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.829635277,19.0263,20.9033,20.2261,20.4874,1,CMIP5 -2139,tas,temperature,tgav,rcp26,C,Simulated,global,0.728317497,14.2007,15.9574,15.156525,15.234,1,CMIP5 -2139,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.019803607,-9.2341,-6.9574,-8.124075,-8.1524,1,CMIP5 -2139,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.860377183,19.0434,21.0983,20.20675,20.34265,1,CMIP5 -2140,tas,temperature,tgav,rcp26,C,Simulated,global,0.776423604,14.1192,15.9822,15.1445,15.2383,1,CMIP5 -2140,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.86712659,-9.0988,-7.1159,-8.12865,-8.14995,1,CMIP5 -2140,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.894026388,18.9728,21.0999,20.194025,20.3517,1,CMIP5 -2141,tas,temperature,tgav,rcp26,C,Simulated,global,0.733994098,14.2198,15.9631,15.207075,15.3227,1,CMIP5 -2141,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.872166732,-8.9628,-7.0327,-8.000775,-8.0038,1,CMIP5 -2141,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.859261064,19.0458,21.0627,20.242525,20.4308,1,CMIP5 -2142,tas,temperature,tgav,rcp26,C,Simulated,global,0.610360355,14.2871,15.6823,15.16545,15.3462,1,CMIP5 -2142,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.278768258,-9.4726,-6.7176,-8.11495,-8.1348,1,CMIP5 -2142,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.773671817,19.0933,20.8105,20.2145,20.4771,1,CMIP5 -2143,tas,temperature,tgav,rcp26,C,Simulated,global,0.704366564,14.1554,15.7421,15.179425,15.4101,1,CMIP5 -2143,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.314133198,-9.4448,-6.5344,-8.09295,-8.1963,1,CMIP5 -2143,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.870808356,18.9625,20.8804,20.2262,20.53095,1,CMIP5 -2144,tas,temperature,tgav,rcp26,C,Simulated,global,0.741352478,14.1856,15.9261,15.22425,15.39265,1,CMIP5 -2144,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.142483631,-9.2347,-6.7079,-8.0498,-8.1283,1,CMIP5 -2144,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.895932743,19.0022,21.0718,20.2723,20.5076,1,CMIP5 -2145,tas,temperature,tgav,rcp26,C,Simulated,global,0.676405409,14.2637,15.8083,15.23725,15.4385,1,CMIP5 -2145,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.145763392,-9.2293,-6.7267,-8.00375,-8.0295,1,CMIP5 -2145,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.832737948,19.0662,20.9178,20.27855,20.5651,1,CMIP5 -2146,tas,temperature,tgav,rcp26,C,Simulated,global,0.637136477,14.2355,15.5965,15.18025,15.4445,1,CMIP5 -2146,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.083282852,-9.1908,-6.8489,-8.17685,-8.33385,1,CMIP5 -2146,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.764934622,19.1107,20.7146,20.247675,20.5827,1,CMIP5 -2147,tas,temperature,tgav,rcp26,C,Simulated,global,0.550605418,14.3025,15.4708,15.1081,15.32955,1,CMIP5 -2147,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.2894049,-9.7446,-7.0579,-8.287925,-8.1746,1,CMIP5 -2147,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.736726331,19.1057,20.7355,20.1828,20.445,1,CMIP5 -2148,tas,temperature,tgav,rcp26,C,Simulated,global,0.651219786,14.3211,15.8273,15.242975,15.41175,1,CMIP5 -2148,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.257452078,-9.2432,-6.5861,-8.047025,-8.1794,1,CMIP5 -2148,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.812803578,19.1423,20.9974,20.29375,20.51765,1,CMIP5 -2149,tas,temperature,tgav,rcp26,C,Simulated,global,0.659322508,14.3598,15.906,15.28145,15.43,1,CMIP5 -2149,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.960541717,-9.085,-6.9341,-8.07575,-8.14195,1,CMIP5 -2149,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.77233893,19.2453,21.0245,20.349225,20.56355,1,CMIP5 -2150,tas,temperature,tgav,rcp26,C,Simulated,global,0.657333788,14.2318,15.7199,15.165575,15.3553,1,CMIP5 -2150,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.804279373,-8.925,-7.171,-8.058975,-8.06995,1,CMIP5 -2150,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.771931868,19.0773,20.7806,20.205725,20.4825,1,CMIP5 -2151,tas,temperature,tgav,rcp26,C,Simulated,global,0.636250692,14.1749,15.5495,15.088975,15.31575,1,CMIP5 -2151,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.932367597,-9.1974,-7.1358,-8.388175,-8.60975,1,CMIP5 -2151,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.719352827,19.1429,20.7163,20.18305,20.4365,1,CMIP5 -2152,tas,temperature,tgav,rcp26,C,Simulated,global,0.631810533,14.2533,15.6937,15.153875,15.33425,1,CMIP5 -2152,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.341685749,-9.7493,-6.7981,-8.380625,-8.48755,1,CMIP5 -2152,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.788599732,19.1388,20.8901,20.25735,20.50025,1,CMIP5 -2153,tas,temperature,tgav,rcp26,C,Simulated,global,0.688899001,14.2012,15.8043,15.143,15.28325,1,CMIP5 -2153,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.051556387,-9.6222,-7.2026,-8.406325,-8.40025,1,CMIP5 -2153,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.811493259,19.1145,20.9501,20.25155,20.4708,1,CMIP5 -2154,tas,temperature,tgav,rcp26,C,Simulated,global,0.737098331,14.0539,15.756,15.08245,15.25995,1,CMIP5 -2154,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.104392077,-9.6927,-7.3267,-8.4594,-8.4091,1,CMIP5 -2154,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.909997427,18.8901,20.9375,20.18895,20.4641,1,CMIP5 -2155,tas,temperature,tgav,rcp26,C,Simulated,global,0.710181629,14.037,15.6136,15.0822,15.3391,1,CMIP5 -2155,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.141906269,-9.4369,-7.0097,-8.3361,-8.4489,1,CMIP5 -2155,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.87223977,18.8728,20.7789,20.16225,20.49865,1,CMIP5 -2156,tas,temperature,tgav,rcp26,C,Simulated,global,0.723636725,14.1954,15.8589,15.23135,15.43555,1,CMIP5 -2156,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.049681277,-9.2747,-7.0001,-8.15655,-8.1757,1,CMIP5 -2156,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.881185158,19.023,21.0021,20.30515,20.59775,1,CMIP5 -2157,tas,temperature,tgav,rcp26,C,Simulated,global,0.801473616,14.0294,15.795,15.20655,15.5009,1,CMIP5 -2157,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.274661447,-9.4208,-6.6874,-8.26785,-8.4816,1,CMIP5 -2157,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.97778739,18.8675,21.008,20.2972,20.65665,1,CMIP5 -2158,tas,temperature,tgav,rcp26,C,Simulated,global,0.687613992,14.1717,15.7257,15.175675,15.40265,1,CMIP5 -2158,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.210871538,-9.3807,-6.8259,-8.128125,-8.15295,1,CMIP5 -2158,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.866522287,18.9549,20.8684,20.2304,20.54915,1,CMIP5 -2159,tas,temperature,tgav,rcp26,C,Simulated,global,0.61544942,14.1848,15.5368,15.077975,15.29515,1,CMIP5 -2159,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.104229573,-9.7185,-7.4187,-8.51185,-8.4551,1,CMIP5 -2159,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.779800107,19.0478,20.6937,20.1957,20.52065,1,CMIP5 -2160,tas,temperature,tgav,rcp26,C,Simulated,global,0.748775198,14.039,15.6594,15.13655,15.4239,1,CMIP5 -2160,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.181302885,-9.4018,-6.8484,-8.3424,-8.5597,1,CMIP5 -2160,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.899120075,18.9152,20.8428,20.228975,20.57895,1,CMIP5 -2161,tas,temperature,tgav,rcp26,C,Simulated,global,0.798209747,13.9889,15.7727,15.1433,15.4058,1,CMIP5 -2161,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.007950119,-9.1909,-6.9083,-8.177675,-8.30575,1,CMIP5 -2161,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.937417691,18.836,20.8907,20.2025,20.54165,1,CMIP5 -2162,tas,temperature,tgav,rcp26,C,Simulated,global,0.670669263,14.2461,15.7974,15.1941,15.36645,1,CMIP5 -2162,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.127635805,-9.3116,-6.9993,-8.190425,-8.2254,1,CMIP5 -2162,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.839431246,19.0616,20.9705,20.26655,20.51705,1,CMIP5 -2163,tas,temperature,tgav,rcp26,C,Simulated,global,0.753043759,14.1229,15.903,15.168775,15.3246,1,CMIP5 -2163,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.212177429,-9.8015,-6.9943,-8.2096,-8.0213,1,CMIP5 -2163,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.902942739,18.9435,20.9825,20.239875,20.51675,1,CMIP5 -2164,tas,temperature,tgav,rcp26,C,Simulated,global,0.759284428,14.0361,15.7971,15.105525,15.29445,1,CMIP5 -2164,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.188423464,-9.3976,-6.6322,-8.019925,-8.02495,1,CMIP5 -2164,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.908127687,18.827,20.8658,20.12105,20.3957,1,CMIP5 -2165,tas,temperature,tgav,rcp26,C,Simulated,global,0.759828026,13.9584,15.6943,15.035875,15.2454,1,CMIP5 -2165,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.059803891,-9.37,-6.9149,-8.2939,-8.44535,1,CMIP5 -2165,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.877006562,18.8454,20.8102,20.096575,20.36535,1,CMIP5 -2166,tas,temperature,tgav,rcp26,C,Simulated,global,0.689602196,14.0898,15.5721,15.066225,15.3015,1,CMIP5 -2166,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.093823832,-9.2598,-7.0103,-8.305225,-8.4754,1,CMIP5 -2166,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.840572747,18.9407,20.7568,20.135525,20.4223,1,CMIP5 -2167,tas,temperature,tgav,rcp26,C,Simulated,global,0.764713857,14.0726,15.8305,15.160925,15.3703,1,CMIP5 -2167,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.11772883,-9.5653,-6.9113,-8.21495,-8.1916,1,CMIP5 -2167,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.896985791,18.9351,20.9159,20.231725,20.53795,1,CMIP5 -2168,tas,temperature,tgav,rcp26,C,Simulated,global,0.730897989,14.1393,15.8206,15.17955,15.37915,1,CMIP5 -2168,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.186392946,-9.3251,-6.7614,-8.160275,-8.2773,1,CMIP5 -2168,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.894631195,18.9625,20.9906,20.241525,20.5065,1,CMIP5 -2169,tas,temperature,tgav,rcp26,C,Simulated,global,0.655646787,14.2655,15.8104,15.182425,15.3269,1,CMIP5 -2169,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.227995756,-9.5258,-6.7502,-8.212975,-8.28795,1,CMIP5 -2169,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.790119381,19.1399,20.9609,20.256625,20.46285,1,CMIP5 -2170,tas,temperature,tgav,rcp26,C,Simulated,global,0.778557737,13.9547,15.7349,15.05175,15.2587,1,CMIP5 -2170,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.155087888,-9.8357,-7.1128,-8.379625,-8.285,1,CMIP5 -2170,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.927225806,18.8059,20.8252,20.134175,20.4528,1,CMIP5 -2171,tas,temperature,tgav,rcp26,C,Simulated,global,0.705377447,14.1287,15.782,15.120375,15.2854,1,CMIP5 -2171,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.280583306,-9.7756,-6.8071,-8.259575,-8.2278,1,CMIP5 -2171,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.852845625,18.9737,20.9004,20.1909,20.44475,1,CMIP5 -2172,tas,temperature,tgav,rcp26,C,Simulated,global,0.559434479,14.4014,15.7093,15.188925,15.3225,1,CMIP5 -2172,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.262417402,-9.297,-6.8304,-8.02785,-7.992,1,CMIP5 -2172,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.741288627,19.1601,20.8522,20.224525,20.4429,1,CMIP5 -2173,tas,temperature,tgav,rcp26,C,Simulated,global,0.634486314,14.2905,15.7616,15.203225,15.3804,1,CMIP5 -2173,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.28035109,-9.6039,-6.7737,-8.1164,-8.044,1,CMIP5 -2173,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.794409898,19.0947,20.8714,20.2615,20.53995,1,CMIP5 -2174,tas,temperature,tgav,rcp26,C,Simulated,global,0.601279227,14.2729,15.6132,15.158925,15.3748,1,CMIP5 -2174,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.432237273,-9.7513,-6.7087,-8.3722,-8.5144,1,CMIP5 -2174,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.764718834,19.1371,20.8282,20.261775,20.5409,1,CMIP5 -2175,tas,temperature,tgav,rcp26,C,Simulated,global,0.757944983,14.1547,15.9717,15.18615,15.3091,1,CMIP5 -2175,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.291965971,-9.9729,-6.8843,-8.263275,-8.09795,1,CMIP5 -2175,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.866150689,19.0325,21.0501,20.27315,20.505,1,CMIP5 -2176,tas,temperature,tgav,rcp26,C,Simulated,global,0.793136285,14.1079,15.9892,15.2083,15.36805,1,CMIP5 -2176,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.525757509,-10.2317,-6.5896,-8.212425,-8.0142,1,CMIP5 -2176,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.926148703,18.944,21.0659,20.2875,20.57005,1,CMIP5 -2177,tas,temperature,tgav,rcp26,C,Simulated,global,0.751063459,14.0465,15.7013,15.1477,15.4215,1,CMIP5 -2177,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.63261482,-10.1949,-6.465,-8.30855,-8.28715,1,CMIP5 -2177,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.93695709,18.8388,20.8603,20.233425,20.6173,1,CMIP5 -2178,tas,temperature,tgav,rcp26,C,Simulated,global,0.71684951,14.1202,15.8237,15.1213,15.27065,1,CMIP5 -2178,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.497536048,-10.1169,-6.724,-8.315375,-8.2103,1,CMIP5 -2178,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.899135107,18.9205,20.9839,20.2029,20.4536,1,CMIP5 -2179,tas,temperature,tgav,rcp26,C,Simulated,global,0.730061025,14.0828,15.7709,15.1065,15.28615,1,CMIP5 -2179,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.155852844,-9.2493,-6.7912,-8.204375,-8.3885,1,CMIP5 -2179,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.88465743,18.9207,20.9513,20.162175,20.38835,1,CMIP5 -2180,tas,temperature,tgav,rcp26,C,Simulated,global,0.661898343,14.1697,15.705,15.10165,15.26595,1,CMIP5 -2180,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.21137,-9.3037,-6.8589,-8.137775,-8.19425,1,CMIP5 -2180,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.842571866,18.943,20.8697,20.141925,20.3775,1,CMIP5 -2181,tas,temperature,tgav,rcp26,C,Simulated,global,0.599287716,14.2712,15.6533,15.1211,15.27995,1,CMIP5 -2181,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.222029941,-9.393,-6.8313,-8.15145,-8.19075,1,CMIP5 -2181,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.759331014,19.0806,20.7929,20.168775,20.4008,1,CMIP5 -2182,tas,temperature,tgav,rcp26,C,Simulated,global,0.593386499,14.3431,15.7166,15.15695,15.28405,1,CMIP5 -2182,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.228057579,-9.354,-6.9896,-8.18655,-8.2013,1,CMIP5 -2182,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.774848144,19.1358,20.9045,20.2198,20.41945,1,CMIP5 -2183,tas,temperature,tgav,rcp26,C,Simulated,global,0.650151354,14.3059,15.8284,15.195475,15.3238,1,CMIP5 -2183,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.120569047,-9.3851,-7.0498,-8.118225,-8.019,1,CMIP5 -2183,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.814957317,19.0991,20.9552,20.252675,20.4782,1,CMIP5 -2184,tas,temperature,tgav,rcp26,C,Simulated,global,0.626955046,14.3518,15.861,15.206575,15.30675,1,CMIP5 -2184,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.515503429,-9.7604,-6.6399,-8.192475,-8.1848,1,CMIP5 -2184,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.828709784,19.126,21.0914,20.2799,20.4511,1,CMIP5 -2185,tas,temperature,tgav,rcp26,C,Simulated,global,0.560727578,14.3631,15.6739,15.14645,15.2744,1,CMIP5 -2185,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.278886894,-9.88,-7.2672,-8.4094,-8.2452,1,CMIP5 -2185,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.755360379,19.1591,20.8417,20.256175,20.51195,1,CMIP5 -2186,tas,temperature,tgav,rcp26,C,Simulated,global,0.656382167,14.1076,15.6054,15.058825,15.26115,1,CMIP5 -2186,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.307517448,-9.7444,-6.9909,-8.354825,-8.342,1,CMIP5 -2186,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.843146288,18.9043,20.776,20.136825,20.4335,1,CMIP5 -2187,tas,temperature,tgav,rcp26,C,Simulated,global,0.752297527,14.0433,15.8156,15.083825,15.2382,1,CMIP5 -2187,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.03652965,-9.5332,-7.1923,-8.277075,-8.1914,1,CMIP5 -2187,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.899720788,18.8679,20.9274,20.15175,20.40585,1,CMIP5 -2188,tas,temperature,tgav,rcp26,C,Simulated,global,0.770781051,14.0089,15.8313,15.092725,15.26535,1,CMIP5 -2188,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.394082734,-9.987,-6.7796,-8.326625,-8.26995,1,CMIP5 -2188,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.943600309,18.8201,20.9846,20.171075,20.4398,1,CMIP5 -2189,tas,temperature,tgav,rcp26,C,Simulated,global,0.704040228,14.0283,15.6513,15.045875,15.25195,1,CMIP5 -2189,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.44798926,-10.3269,-7.0244,-8.59445,-8.51325,1,CMIP5 -2189,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.877951179,18.8853,20.8295,20.1724,20.4874,1,CMIP5 -2190,tas,temperature,tgav,rcp26,C,Simulated,global,0.709416917,14.0461,15.6109,15.089325,15.35015,1,CMIP5 -2190,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.155753204,-9.4444,-6.9489,-8.357125,-8.5176,1,CMIP5 -2190,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.8590688,18.9099,20.78,20.17525,20.50555,1,CMIP5 -2191,tas,temperature,tgav,rcp26,C,Simulated,global,0.629272778,14.2238,15.7116,15.102625,15.23755,1,CMIP5 -2191,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.351259576,-9.9898,-7.0573,-8.462075,-8.4006,1,CMIP5 -2191,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.801352791,19.071,20.9052,20.212975,20.43785,1,CMIP5 -2192,tas,temperature,tgav,rcp26,C,Simulated,global,0.650686229,14.2119,15.7742,15.104175,15.2153,1,CMIP5 -2192,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.281828898,-9.9695,-7.114,-8.50425,-8.46675,1,CMIP5 -2192,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.79906765,19.096,20.9713,20.224675,20.4157,1,CMIP5 -2193,tas,temperature,tgav,rcp26,C,Simulated,global,0.661799491,14.0893,15.5871,15.0574,15.2766,1,CMIP5 -2193,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.21395371,-9.5143,-6.8376,-8.225925,-8.2759,1,CMIP5 -2193,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.814314704,18.9055,20.7039,20.10795,20.4112,1,CMIP5 -2194,tas,temperature,tgav,rcp26,C,Simulated,global,0.633733505,14.1082,15.4597,15.052325,15.3207,1,CMIP5 -2194,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.15492182,-9.2166,-6.8894,-8.24285,-8.4327,1,CMIP5 -2194,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.783715505,18.9382,20.6065,20.1059,20.43945,1,CMIP5 -2195,tas,temperature,tgav,rcp26,C,Simulated,global,0.659990744,14.1078,15.6111,15.062425,15.2654,1,CMIP5 -2195,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.13935015,-9.4132,-6.9489,-8.31365,-8.44625,1,CMIP5 -2195,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.799982035,18.9696,20.765,20.133175,20.39905,1,CMIP5 -2196,tas,temperature,tgav,rcp26,C,Simulated,global,0.568335693,14.2646,15.5121,15.0989,15.30945,1,CMIP5 -2196,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.316089992,-9.6524,-7.0138,-8.4511,-8.5691,1,CMIP5 -2196,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.738209984,19.1255,20.7302,20.2065,20.48515,1,CMIP5 -2197,tas,temperature,tgav,rcp26,C,Simulated,global,0.668236691,14.0696,15.5919,15.039625,15.2485,1,CMIP5 -2197,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.214607241,-9.781,-7.1433,-8.47015,-8.47815,1,CMIP5 -2197,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.833309132,18.9166,20.7611,20.139175,20.4395,1,CMIP5 -2198,tas,temperature,tgav,rcp26,C,Simulated,global,0.71274723,14.1244,15.7574,15.1536,15.3663,1,CMIP5 -2198,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.265742072,-9.6219,-6.9107,-8.3269,-8.3875,1,CMIP5 -2198,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.891898897,18.9502,20.9546,20.245975,20.53955,1,CMIP5 -2199,tas,temperature,tgav,rcp26,C,Simulated,global,0.663157271,14.161,15.6739,15.1102,15.30295,1,CMIP5 -2199,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.204778396,-9.317,-6.9245,-8.156025,-8.1913,1,CMIP5 -2199,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.85120478,18.9259,20.8367,20.15645,20.4316,1,CMIP5 -2200,tas,temperature,tgav,rcp26,C,Simulated,global,0.599321196,14.2375,15.5832,15.103925,15.2975,1,CMIP5 -2200,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.07506253,-9.1525,-7.0758,-8.23505,-8.35595,1,CMIP5 -2200,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.750872919,19.0717,20.7478,20.1672,20.42465,1,CMIP5 -2201,tas,temperature,tgav,rcp26,C,Simulated,global,0.676921293,14.1898,15.76,15.13045,15.286,1,CMIP5 -2201,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.986733569,-9.0561,-7.306,-8.160275,-8.1395,1,CMIP5 -2201,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.857043108,18.9561,20.9239,20.183575,20.42715,1,CMIP5 -2202,tas,temperature,tgav,rcp26,C,Simulated,global,0.580028444,14.2747,15.5841,15.124175,15.31895,1,CMIP5 -2202,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.191153722,-9.3146,-6.9247,-8.159275,-8.1989,1,CMIP5 -2202,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.754422371,19.0725,20.7827,20.1751,20.4226,1,CMIP5 -2203,tas,temperature,tgav,rcp26,C,Simulated,global,0.469461574,14.4153,15.4739,15.097575,15.25055,1,CMIP5 -2203,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.344173913,-9.4824,-7.0663,-8.275325,-8.2763,1,CMIP5 -2203,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.661330842,19.1985,20.6662,20.167075,20.4018,1,CMIP5 -2204,tas,temperature,tgav,rcp26,C,Simulated,global,0.522609344,14.3157,15.5152,15.0679,15.22035,1,CMIP5 -2204,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.347297424,-9.7407,-7.0553,-8.353125,-8.30825,1,CMIP5 -2204,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.705432525,19.1199,20.689,20.1476,20.39075,1,CMIP5 -2205,tas,temperature,tgav,rcp26,C,Simulated,global,0.79341111,13.9112,15.7339,15.033775,15.245,1,CMIP5 -2205,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.053305035,-9.3935,-7.0622,-8.343975,-8.4601,1,CMIP5 -2205,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.945165218,18.7545,20.8955,20.104625,20.38425,1,CMIP5 -2206,tas,temperature,tgav,rcp26,C,Simulated,global,0.766697702,13.9997,15.8289,15.0393,15.1643,1,CMIP5 -2206,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.978039407,-9.3987,-7.2249,-8.256875,-8.20195,1,CMIP5 -2206,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.912796717,18.8121,20.9501,20.0933,20.3055,1,CMIP5 -2207,tas,temperature,tgav,rcp26,C,Simulated,global,0.643572327,14.1826,15.6303,15.0747,15.24295,1,CMIP5 -2207,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.109726638,-9.3612,-7.341,-8.29925,-8.2474,1,CMIP5 -2207,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.837326688,18.9549,20.8483,20.145025,20.38845,1,CMIP5 -2208,tas,temperature,tgav,rcp26,C,Simulated,global,0.811293482,14.0024,15.8974,15.0816,15.2133,1,CMIP5 -2208,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.666646658,-9.2124,-7.7132,-8.4476,-8.4324,1,CMIP5 -2208,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.921294558,18.9052,21.0446,20.187875,20.40085,1,CMIP5 -2209,tas,temperature,tgav,rcp26,C,Simulated,global,0.759131772,14.0057,15.7461,15.0367,15.1975,1,CMIP5 -2209,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.607607434,-8.9436,-7.7499,-8.4211,-8.49545,1,CMIP5 -2209,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.868423006,18.8991,20.8977,20.12805,20.3577,1,CMIP5 -2210,tas,temperature,tgav,rcp26,C,Simulated,global,0.673400155,14.0704,15.5689,15.026125,15.2326,1,CMIP5 -2210,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.881149463,-9.2381,-7.3326,-8.43455,-8.58375,1,CMIP5 -2210,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.779546579,18.9913,20.7079,20.116675,20.38375,1,CMIP5 -2211,tas,temperature,tgav,rcp26,C,Simulated,global,0.583093671,14.1473,15.465,14.970075,15.134,1,CMIP5 -2211,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.060668514,-9.4111,-7.3908,-8.43385,-8.46675,1,CMIP5 -2211,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.739524777,18.9808,20.6319,20.047475,20.2886,1,CMIP5 -2212,tas,temperature,tgav,rcp26,C,Simulated,global,0.703484105,13.9233,15.5002,14.9335,15.15525,1,CMIP5 -2212,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.227701172,-9.8968,-7.1156,-8.5762,-8.6462,1,CMIP5 -2212,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.855443935,18.8026,20.6593,20.0323,20.33365,1,CMIP5 -2213,tas,temperature,tgav,rcp26,C,Simulated,global,0.696495879,14.0371,15.6691,14.96285,15.0726,1,CMIP5 -2213,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.110911321,-9.7873,-7.1806,-8.48135,-8.47875,1,CMIP5 -2213,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.813649861,18.9428,20.7925,20.04805,20.22845,1,CMIP5 -2214,tas,temperature,tgav,rcp26,C,Simulated,global,0.798406515,13.9884,15.8858,15.029625,15.12215,1,CMIP5 -2214,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.832504684,-9.3645,-7.3321,-8.327975,-8.30765,1,CMIP5 -2214,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.870851225,18.9147,20.9534,20.098075,20.2621,1,CMIP5 -2215,tas,temperature,tgav,rcp26,C,Simulated,global,0.784852434,13.8832,15.667,14.97545,15.1758,1,CMIP5 -2215,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.92561482,-9.4859,-7.5813,-8.552575,-8.57155,1,CMIP5 -2215,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.948796485,18.7259,20.856,20.079775,20.3686,1,CMIP5 -2216,tas,temperature,tgav,rcp26,C,Simulated,global,0.742678411,13.8339,15.4724,14.903325,15.1535,1,CMIP5 -2216,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.97869688,-9.4416,-7.2983,-8.501525,-8.6331,1,CMIP5 -2216,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.878303882,18.7039,20.6105,19.980925,20.30465,1,CMIP5 -2217,tas,temperature,tgav,rcp26,C,Simulated,global,0.677559547,14.0498,15.5594,14.9848,15.165,1,CMIP5 -2217,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.88759364,-9.3722,-7.5257,-8.42235,-8.39575,1,CMIP5 -2217,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.815088802,18.8994,20.6806,20.063525,20.33705,1,CMIP5 -2218,tas,temperature,tgav,rcp26,C,Simulated,global,0.808267683,13.8976,15.7469,15.0064,15.19055,1,CMIP5 -2218,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.74333739,-9.2074,-7.463,-8.284125,-8.23305,1,CMIP5 -2218,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.920476994,18.749,20.806,20.060625,20.34375,1,CMIP5 -2219,tas,temperature,tgav,rcp26,C,Simulated,global,0.797272519,13.7661,15.5976,14.91205,15.14225,1,CMIP5 -2219,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.05931518,-9.9194,-7.5536,-8.67355,-8.6106,1,CMIP5 -2219,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.967555633,18.6113,20.7617,20.028825,20.37115,1,CMIP5 -2220,tas,temperature,tgav,rcp26,C,Simulated,global,0.760087089,13.9334,15.6511,15.024325,15.2564,1,CMIP5 -2220,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.144470303,-9.6451,-7.1947,-8.4087,-8.3975,1,CMIP5 -2220,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.945227905,18.7341,20.8143,20.107,20.4398,1,CMIP5 -2221,tas,temperature,tgav,rcp26,C,Simulated,global,0.774883653,13.9115,15.7274,14.999925,15.1804,1,CMIP5 -2221,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.136384959,-9.8021,-7.1375,-8.405875,-8.34195,1,CMIP5 -2221,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.917417103,18.7587,20.8347,20.0771,20.3575,1,CMIP5 -2222,tas,temperature,tgav,rcp26,C,Simulated,global,0.685656548,14.1085,15.7312,15.062975,15.2061,1,CMIP5 -2222,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.27014865,-9.7948,-7.0464,-8.3051,-8.1896,1,CMIP5 -2222,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.864263422,18.8952,20.8739,20.131175,20.3778,1,CMIP5 -2223,tas,temperature,tgav,rcp26,C,Simulated,global,0.728954036,13.9843,15.6509,15.0344,15.2512,1,CMIP5 -2223,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.179994174,-9.6621,-6.9343,-8.27175,-8.2453,1,CMIP5 -2223,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.878708872,18.8078,20.7396,20.089775,20.40585,1,CMIP5 -2224,tas,temperature,tgav,rcp26,C,Simulated,global,0.662602271,14.0327,15.4892,15.013175,15.2654,1,CMIP5 -2224,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.418463813,-9.7484,-6.6766,-8.312775,-8.41305,1,CMIP5 -2224,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.834879341,18.8325,20.6466,20.0717,20.40385,1,CMIP5 -2225,tas,temperature,tgav,rcp26,C,Simulated,global,0.651970589,14.1401,15.5797,15.104225,15.34855,1,CMIP5 -2225,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.366207532,-9.4307,-6.5831,-8.2639,-8.5209,1,CMIP5 -2225,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.804901209,18.9873,20.7787,20.17205,20.4611,1,CMIP5 -2226,tas,temperature,tgav,rcp26,C,Simulated,global,0.657769663,14.0978,15.629,15.035525,15.20765,1,CMIP5 -2226,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.378149185,-9.703,-6.6703,-8.383175,-8.5797,1,CMIP5 -2226,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.805643798,18.9736,20.827,20.113675,20.32705,1,CMIP5 -2227,tas,temperature,tgav,rcp26,C,Simulated,global,0.713510118,13.9277,15.496,14.969875,15.2279,1,CMIP5 -2227,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.156454701,-9.522,-7.1024,-8.528725,-8.74525,1,CMIP5 -2227,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.865289356,18.8064,20.7194,20.066775,20.37065,1,CMIP5 -2228,tas,temperature,tgav,rcp26,C,Simulated,global,0.66540983,14.0535,15.62,14.995925,15.1551,1,CMIP5 -2228,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.335100578,-9.9188,-7.1115,-8.5135,-8.51185,1,CMIP5 -2228,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.849670568,18.8711,20.8336,20.0946,20.33685,1,CMIP5 -2229,tas,temperature,tgav,rcp26,C,Simulated,global,0.711999799,14.0091,15.6792,15.0158,15.18745,1,CMIP5 -2229,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.071301746,-9.5172,-7.0923,-8.42815,-8.55155,1,CMIP5 -2229,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.834534239,18.9072,20.8365,20.101675,20.3315,1,CMIP5 -2230,tas,temperature,tgav,rcp26,C,Simulated,global,0.724508834,13.8683,15.4909,14.92795,15.1763,1,CMIP5 -2230,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.158058327,-9.714,-7.076,-8.616875,-8.83875,1,CMIP5 -2230,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.836921694,18.8108,20.6576,20.035375,20.33655,1,CMIP5 -2231,tas,temperature,tgav,rcp26,C,Simulated,global,0.636628732,13.9307,15.3204,14.861525,15.0975,1,CMIP5 -2231,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.374607067,-9.9947,-6.9552,-8.63505,-8.79515,1,CMIP5 -2231,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.789684871,18.817,20.4991,19.956675,20.2553,1,CMIP5 -2232,tas,temperature,tgav,rcp26,C,Simulated,global,0.656349655,14.0596,15.5585,14.993725,15.1784,1,CMIP5 -2232,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.322025908,-9.9012,-6.9963,-8.454975,-8.4612,1,CMIP5 -2232,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.82876259,18.8944,20.7229,20.07875,20.34885,1,CMIP5 -2233,tas,temperature,tgav,rcp26,C,Simulated,global,0.658796814,13.9889,15.4751,14.949475,15.16695,1,CMIP5 -2233,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.284171522,-9.863,-7.0113,-8.56655,-8.69595,1,CMIP5 -2233,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.804075189,18.8774,20.6549,20.049725,20.3333,1,CMIP5 -2234,tas,temperature,tgav,rcp26,C,Simulated,global,0.592160054,14.0484,15.3715,14.919225,15.1285,1,CMIP5 -2234,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.176146367,-10.0127,-7.2385,-8.67565,-8.7257,1,CMIP5 -2234,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.690366733,19.0133,20.4825,20.0382,20.3285,1,CMIP5 -2235,tas,temperature,tgav,rcp26,C,Simulated,global,0.697823365,14.0412,15.6596,15.044725,15.23905,1,CMIP5 -2235,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.343202865,-9.957,-6.8483,-8.41385,-8.42505,1,CMIP5 -2235,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.843498494,18.9032,20.8006,20.132375,20.41285,1,CMIP5 -2236,tas,temperature,tgav,rcp26,C,Simulated,global,0.760774879,14.0077,15.8069,15.067875,15.22845,1,CMIP5 -2236,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.214263352,-9.8262,-6.95,-8.319875,-8.25165,1,CMIP5 -2236,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.89586621,18.8621,20.9065,20.1407,20.3971,1,CMIP5 -2237,tas,temperature,tgav,rcp26,C,Simulated,global,0.719337714,13.9238,15.55,14.9678,15.1987,1,CMIP5 -2237,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.167158153,-9.7578,-7.0138,-8.4467,-8.5076,1,CMIP5 -2237,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.845819967,18.8105,20.6548,20.046825,20.361,1,CMIP5 -2238,tas,temperature,tgav,rcp26,C,Simulated,global,0.784291232,13.8229,15.6074,14.95255,15.18995,1,CMIP5 -2238,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.076875014,-9.507,-7.0922,-8.52985,-8.7601,1,CMIP5 -2238,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.907048207,18.7373,20.7825,20.046375,20.33285,1,CMIP5 -2239,tas,temperature,tgav,rcp26,C,Simulated,global,0.748935513,13.8212,15.4881,14.910425,15.1662,1,CMIP5 -2239,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.107885146,-9.7451,-7.1607,-8.682925,-8.91295,1,CMIP5 -2239,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.841128826,18.8053,20.6362,20.028675,20.3366,1,CMIP5 -2240,tas,temperature,tgav,rcp26,C,Simulated,global,0.767216829,13.8708,15.6056,14.979075,15.21995,1,CMIP5 -2240,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.113585244,-9.9128,-7.2239,-8.49005,-8.41175,1,CMIP5 -2240,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.88938191,18.7668,20.6621,20.070725,20.427,1,CMIP5 -2241,tas,temperature,tgav,rcp26,C,Simulated,global,0.691372439,13.9855,15.5862,14.981125,15.1764,1,CMIP5 -2241,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.326923483,-9.9194,-6.7908,-8.294325,-8.23355,1,CMIP5 -2241,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.827575194,18.8163,20.6497,20.029425,20.32585,1,CMIP5 -2242,tas,temperature,tgav,rcp26,C,Simulated,global,0.699341225,14.0103,15.6292,14.993875,15.168,1,CMIP5 -2242,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.113376619,-9.7721,-7.1685,-8.428075,-8.38585,1,CMIP5 -2242,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.827459058,18.8873,20.7271,20.0748,20.3424,1,CMIP5 -2243,tas,temperature,tgav,rcp26,C,Simulated,global,0.707409316,13.9515,15.5766,14.9722,15.18035,1,CMIP5 -2243,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.241907123,-10.0198,-7.1252,-8.626325,-8.68015,1,CMIP5 -2243,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.84040375,18.8673,20.7375,20.09075,20.3791,1,CMIP5 -2244,tas,temperature,tgav,rcp26,C,Simulated,global,0.702907526,14.0054,15.5798,15.03865,15.2847,1,CMIP5 -2244,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.407989631,-10.1942,-6.9234,-8.5248,-8.4908,1,CMIP5 -2244,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.859508662,18.8727,20.7192,20.1491,20.50225,1,CMIP5 -2245,tas,temperature,tgav,rcp26,C,Simulated,global,0.661441977,14.0736,15.5119,15.054075,15.3154,1,CMIP5 -2245,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.2868666,-9.7684,-6.9869,-8.4927,-8.60775,1,CMIP5 -2245,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.818175358,18.9424,20.6988,20.16175,20.5029,1,CMIP5 -2246,tas,temperature,tgav,rcp26,C,Simulated,global,0.633670358,14.1007,15.5325,15.027675,15.23875,1,CMIP5 -2246,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.331466989,-9.8393,-6.8294,-8.353075,-8.3718,1,CMIP5 -2246,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.783931177,18.9445,20.6545,20.09865,20.3978,1,CMIP5 -2247,tas,temperature,tgav,rcp26,C,Simulated,global,0.663310884,14.1099,15.648,15.062175,15.2454,1,CMIP5 -2247,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.344293879,-9.7619,-6.687,-8.3146,-8.40475,1,CMIP5 -2247,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.802165583,18.9748,20.79,20.131875,20.38135,1,CMIP5 -2248,tas,temperature,tgav,rcp26,C,Simulated,global,0.589161887,14.0641,15.3122,14.940425,15.1927,1,CMIP5 -2248,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.409295855,-9.6891,-6.9295,-8.4651,-8.6209,1,CMIP5 -2248,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.77664297,18.8693,20.5322,20.016075,20.3314,1,CMIP5 -2249,tas,temperature,tgav,rcp26,C,Simulated,global,0.674213267,13.9731,15.472,14.966825,15.2111,1,CMIP5 -2249,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.261631329,-9.485,-6.7827,-8.210325,-8.2868,1,CMIP5 -2249,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.844803052,18.7445,20.5874,19.993825,20.3217,1,CMIP5 -2250,tas,temperature,tgav,rcp26,C,Simulated,global,0.681601088,14.0077,15.5919,14.985525,15.17125,1,CMIP5 -2250,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.506250825,-9.7727,-6.7021,-8.349275,-8.46115,1,CMIP5 -2250,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.893220701,18.7657,20.8249,20.0446,20.2939,1,CMIP5 -2251,tas,temperature,tgav,rcp26,C,Simulated,global,0.694864855,14.0741,15.7335,15.0233,15.1428,1,CMIP5 -2251,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.337147049,-9.6125,-6.7339,-8.33705,-8.5009,1,CMIP5 -2251,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.86136821,18.9143,20.9491,20.0886,20.2455,1,CMIP5 -2252,tas,temperature,tgav,rcp26,C,Simulated,global,0.641399522,14.0329,15.4867,14.9704,15.181,1,CMIP5 -2252,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.419476177,-9.9799,-6.8546,-8.47605,-8.53485,1,CMIP5 -2252,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.807688465,18.8689,20.6603,20.05495,20.3453,1,CMIP5 -2253,tas,temperature,tgav,rcp26,C,Simulated,global,0.630598594,13.9164,15.234,14.8602,15.1452,1,CMIP5 -2253,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.452544118,-10.0132,-7.0877,-8.696925,-8.8434,1,CMIP5 -2253,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.821109899,18.7432,20.468,19.9688,20.332,1,CMIP5 -2254,tas,temperature,tgav,rcp26,C,Simulated,global,0.672089463,13.975,15.4167,14.9757,15.25555,1,CMIP5 -2254,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.518974858,-9.6369,-6.5628,-8.3828,-8.66575,1,CMIP5 -2254,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.851067467,18.7803,20.6471,20.0404,20.3671,1,CMIP5 -2255,tas,temperature,tgav,rcp26,C,Simulated,global,0.680213939,14.0533,15.6444,15.021825,15.1948,1,CMIP5 -2255,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.397543238,-9.4867,-6.5947,-8.207225,-8.37375,1,CMIP5 -2255,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.865928986,18.8299,20.8439,20.058625,20.28035,1,CMIP5 -2256,tas,temperature,tgav,rcp26,C,Simulated,global,0.716740281,13.99,15.6291,15.02925,15.24895,1,CMIP5 -2256,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.369896158,-9.3688,-6.5165,-8.279575,-8.6165,1,CMIP5 -2256,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.872156807,18.8375,20.8468,20.08355,20.32495,1,CMIP5 -2257,tas,temperature,tgav,rcp26,C,Simulated,global,0.747171753,13.926,15.6599,14.999975,15.207,1,CMIP5 -2257,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.28444428,-9.7821,-6.8113,-8.448075,-8.59945,1,CMIP5 -2257,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.877817052,18.8159,20.8234,20.08545,20.35125,1,CMIP5 -2258,tas,temperature,tgav,rcp26,C,Simulated,global,0.684870229,13.9048,15.3599,14.92405,15.21575,1,CMIP5 -2258,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.179936921,-9.4712,-7.0287,-8.43905,-8.62815,1,CMIP5 -2258,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.842469459,18.7403,20.5443,19.991925,20.34155,1,CMIP5 -2259,tas,temperature,tgav,rcp26,C,Simulated,global,0.61663747,14.0745,15.4754,14.972875,15.1708,1,CMIP5 -2259,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.239244248,-9.5531,-6.8259,-8.244,-8.2985,1,CMIP5 -2259,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.763243353,18.8886,20.5774,20.008775,20.28455,1,CMIP5 -2260,tas,temperature,tgav,rcp26,C,Simulated,global,0.67211923,14.0554,15.5774,15.0341,15.2518,1,CMIP5 -2260,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.272700665,-9.4592,-6.7207,-8.283025,-8.4761,1,CMIP5 -2260,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.822067556,18.8976,20.7442,20.091,20.3611,1,CMIP5 -2261,tas,temperature,tgav,rcp26,C,Simulated,global,0.751629356,13.9424,15.6852,15.019275,15.22475,1,CMIP5 -2261,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.340994026,-9.908,-6.9287,-8.45525,-8.49215,1,CMIP5 -2261,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.932670267,18.7641,20.8771,20.1098,20.399,1,CMIP5 -2262,tas,temperature,tgav,rcp26,C,Simulated,global,0.78381356,13.8168,15.6193,14.95075,15.18345,1,CMIP5 -2262,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.291165041,-10.1163,-6.9747,-8.563525,-8.58155,1,CMIP5 -2262,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.892290517,18.7431,20.7098,20.0512,20.37595,1,CMIP5 -2263,tas,temperature,tgav,rcp26,C,Simulated,global,0.672053204,13.889,15.3179,14.892425,15.1814,1,CMIP5 -2263,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.216004888,-9.9586,-7.2864,-8.5732,-8.5239,1,CMIP5 -2263,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.847297028,18.7136,20.4372,19.9831,20.3908,1,CMIP5 -2264,tas,temperature,tgav,rcp26,C,Simulated,global,0.674491435,13.8537,15.3039,14.855875,15.13295,1,CMIP5 -2264,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.397990803,-10.3477,-7.2658,-8.8078,-8.80885,1,CMIP5 -2264,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.852032012,18.7133,20.4942,19.988375,20.373,1,CMIP5 -2265,tas,temperature,tgav,rcp26,C,Simulated,global,0.731120197,13.9909,15.6832,15.028275,15.2195,1,CMIP5 -2265,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.389059645,-10.2294,-7.1435,-8.51305,-8.33965,1,CMIP5 -2265,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.913860261,18.793,20.8395,20.134475,20.4527,1,CMIP5 -2266,tas,temperature,tgav,rcp26,C,Simulated,global,0.724085964,14.0635,15.7724,15.07455,15.23115,1,CMIP5 -2266,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.565571123,-10.3738,-6.8605,-8.3589,-8.10065,1,CMIP5 -2266,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.910526135,18.828,20.898,20.15605,20.4491,1,CMIP5 -2267,tas,temperature,tgav,rcp26,C,Simulated,global,0.670652093,14.0257,15.517,15.00635,15.24135,1,CMIP5 -2267,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.525402396,-10.0215,-6.5958,-8.39885,-8.48905,1,CMIP5 -2267,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.828999266,18.855,20.6827,20.081575,20.3943,1,CMIP5 -2268,tas,temperature,tgav,rcp26,C,Simulated,global,0.557536913,14.1378,15.3778,14.960125,15.16245,1,CMIP5 -2268,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.454110455,-9.9298,-6.788,-8.47315,-8.5874,1,CMIP5 -2268,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.711795609,18.9941,20.5533,20.041725,20.30975,1,CMIP5 -2269,tas,temperature,tgav,rcp26,C,Simulated,global,0.645860776,14.008,15.4732,14.945325,15.15005,1,CMIP5 -2269,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.347823813,-9.8288,-6.8749,-8.49395,-8.63605,1,CMIP5 -2269,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.800353794,18.8716,20.655,20.028275,20.29325,1,CMIP5 -2270,tas,temperature,tgav,rcp26,C,Simulated,global,0.745484623,13.909,15.6576,14.96615,15.149,1,CMIP5 -2270,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.370202193,-9.8233,-6.7859,-8.464175,-8.62375,1,CMIP5 -2270,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.911637598,18.7551,20.8686,20.04665,20.28145,1,CMIP5 -2271,tas,temperature,tgav,rcp26,C,Simulated,global,0.663441585,13.9773,15.4986,14.91705,15.09615,1,CMIP5 -2271,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.309011863,-9.5859,-6.8579,-8.42925,-8.6366,1,CMIP5 -2271,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.828803163,18.8163,20.7026,19.979525,20.1996,1,CMIP5 -2272,tas,temperature,tgav,rcp26,C,Simulated,global,0.685610489,14.0108,15.5729,14.972825,15.1538,1,CMIP5 -2272,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.919967037,-9.2621,-7.2726,-8.369825,-8.4723,1,CMIP5 -2272,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.814205246,18.8831,20.7581,20.037375,20.25415,1,CMIP5 -2273,tas,temperature,tgav,rcp26,C,Simulated,global,0.738002111,13.9778,15.7036,15.016125,15.19155,1,CMIP5 -2273,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.940111185,-9.1823,-7.2153,-8.4309,-8.663,1,CMIP5 -2273,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.859034002,18.8869,20.8956,20.103275,20.3153,1,CMIP5 -2274,tas,temperature,tgav,rcp26,C,Simulated,global,0.781940434,13.8424,15.6392,14.940025,15.13925,1,CMIP5 -2274,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.944652915,-9.2512,-7.2078,-8.41735,-8.6052,1,CMIP5 -2274,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.911571264,18.7148,20.7999,20.007175,20.257,1,CMIP5 -2275,tas,temperature,tgav,rcp26,C,Simulated,global,0.734136493,13.9067,15.5177,14.93745,15.1627,1,CMIP5 -2275,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.009387779,-9.3372,-7.4344,-8.430525,-8.47525,1,CMIP5 -2275,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.914737706,18.695,20.6915,20.00665,20.32005,1,CMIP5 -2276,tas,temperature,tgav,rcp26,C,Simulated,global,0.599762222,14.0999,15.3827,14.976525,15.21175,1,CMIP5 -2276,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.269719529,-9.4795,-7.1133,-8.282725,-8.26905,1,CMIP5 -2276,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.806900023,18.8362,20.5737,20.0214,20.33785,1,CMIP5 -2277,tas,temperature,tgav,rcp26,C,Simulated,global,0.683958539,13.943,15.3593,14.96515,15.27915,1,CMIP5 -2277,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.402981849,-9.6897,-6.7366,-8.44095,-8.66875,1,CMIP5 -2277,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.853165359,18.7755,20.5589,20.040825,20.41445,1,CMIP5 -2278,tas,temperature,tgav,rcp26,C,Simulated,global,0.763113419,13.8225,15.5229,14.93565,15.1986,1,CMIP5 -2278,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.004587771,-9.4811,-7.3702,-8.59405,-8.76245,1,CMIP5 -2278,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.912598141,18.7003,20.7157,20.0404,20.3728,1,CMIP5 -2279,tas,temperature,tgav,rcp26,C,Simulated,global,0.763385715,13.7481,15.3896,14.821175,15.0735,1,CMIP5 -2279,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.804582469,-9.5789,-7.8035,-8.72985,-8.7685,1,CMIP5 -2279,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.891686856,18.6467,20.5476,19.931525,20.2659,1,CMIP5 -2280,tas,temperature,tgav,rcp26,C,Simulated,global,0.745717459,13.7193,15.3367,14.816625,15.10525,1,CMIP5 -2280,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.08867192,-9.6668,-7.295,-8.81435,-9.1478,1,CMIP5 -2280,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.845376214,18.704,20.5571,19.943125,20.2557,1,CMIP5 -2281,tas,temperature,tgav,rcp26,C,Simulated,global,0.635691494,13.9739,15.4025,14.893425,15.09865,1,CMIP5 -2281,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.244095672,-10.1478,-7.3464,-8.6967,-8.6463,1,CMIP5 -2281,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.790389315,18.8574,20.548,20.010225,20.31775,1,CMIP5 -2282,tas,temperature,tgav,rcp26,C,Simulated,global,0.711727965,13.9123,15.5035,14.95825,15.2086,1,CMIP5 -2282,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.090464126,-9.5575,-6.9675,-8.39145,-8.5204,1,CMIP5 -2282,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.808442076,18.8263,20.5759,20.02425,20.3474,1,CMIP5 -2283,tas,temperature,tgav,rcp26,C,Simulated,global,0.598977938,14.1382,15.5044,15.00725,15.1932,1,CMIP5 -2283,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.305207515,-9.6742,-6.9376,-8.34655,-8.3872,1,CMIP5 -2283,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.769006203,18.9499,20.6648,20.0723,20.33725,1,CMIP5 -2284,tas,temperature,tgav,rcp26,C,Simulated,global,0.780297539,13.8075,15.5733,14.94345,15.1965,1,CMIP5 -2284,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.140158137,-9.4888,-7.041,-8.55785,-8.8508,1,CMIP5 -2284,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.917047627,18.7141,20.806,20.04115,20.32225,1,CMIP5 -2285,tas,temperature,tgav,rcp26,C,Simulated,global,0.771022475,13.7635,15.4898,14.89615,15.16565,1,CMIP5 -2285,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.232828918,-9.6746,-6.8886,-8.4467,-8.6118,1,CMIP5 -2285,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.919137041,18.6063,20.6334,19.959,20.29815,1,CMIP5 -2286,tas,temperature,tgav,rcp26,C,Simulated,global,0.816935132,13.7344,15.5928,14.925925,15.18825,1,CMIP5 -2286,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.326196653,-9.7833,-6.7616,-8.52205,-8.77165,1,CMIP5 -2286,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.955856434,18.6181,20.7801,20.01095,20.3228,1,CMIP5 -2287,tas,temperature,tgav,rcp26,C,Simulated,global,0.755603088,13.873,15.632,14.9468,15.1411,1,CMIP5 -2287,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.152698391,-9.5059,-7.0486,-8.4825,-8.68775,1,CMIP5 -2287,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.909027412,18.7352,20.8416,20.028475,20.26855,1,CMIP5 -2288,tas,temperature,tgav,rcp26,C,Simulated,global,0.653657354,13.9274,15.3943,14.887125,15.1134,1,CMIP5 -2288,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.646615048,-10.0051,-6.6353,-8.531775,-8.74335,1,CMIP5 -2288,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.866675735,18.7178,20.6974,19.963625,20.21965,1,CMIP5 -2289,tas,temperature,tgav,rcp26,C,Simulated,global,0.654561952,14.0118,15.5306,14.950975,15.13075,1,CMIP5 -2289,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.230447546,-9.5701,-6.9955,-8.411525,-8.54025,1,CMIP5 -2289,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.814854159,18.8433,20.7154,20.0182,20.25705,1,CMIP5 -2290,tas,temperature,tgav,rcp26,C,Simulated,global,0.58269089,14.1876,15.5025,15.0301,15.21515,1,CMIP5 -2290,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.290674354,-9.5155,-6.888,-8.348075,-8.4944,1,CMIP5 -2290,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.747625744,19.0276,20.726,20.1003,20.3238,1,CMIP5 -2291,tas,temperature,tgav,rcp26,C,Simulated,global,0.676078557,13.9775,15.5777,14.920075,15.06255,1,CMIP5 -2291,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.019813517,-9.5177,-7.2496,-8.396425,-8.4092,1,CMIP5 -2291,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.806726341,18.8253,20.6951,19.978725,20.19725,1,CMIP5 -2292,tas,temperature,tgav,rcp26,C,Simulated,global,0.656851492,13.9434,15.4623,14.862425,15.022,1,CMIP5 -2292,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.93398354,-9.7224,-7.5802,-8.528,-8.4047,1,CMIP5 -2292,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.770916844,18.8184,20.521,19.9381,20.2065,1,CMIP5 -2293,tas,temperature,tgav,rcp26,C,Simulated,global,0.647237104,13.9734,15.4583,14.907175,15.0985,1,CMIP5 -2293,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.06859462,-9.8699,-7.4112,-8.658675,-8.6768,1,CMIP5 -2293,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.765625075,18.8962,20.591,20.020125,20.29665,1,CMIP5 -2294,tas,temperature,tgav,rcp26,C,Simulated,global,0.6370514,13.9786,15.4395,14.894,15.07895,1,CMIP5 -2294,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.250808462,-9.8224,-7.3297,-8.676175,-8.7763,1,CMIP5 -2294,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.815294415,18.829,20.6791,20.006125,20.2582,1,CMIP5 -2295,tas,temperature,tgav,rcp26,C,Simulated,global,0.717043002,13.9076,15.5272,14.9498,15.1822,1,CMIP5 -2295,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.036618301,-9.6273,-7.394,-8.594025,-8.6774,1,CMIP5 -2295,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.867096229,18.7839,20.7046,20.05765,20.37105,1,CMIP5 -2296,tas,temperature,tgav,rcp26,C,Simulated,global,0.628683264,13.97,15.4381,14.8654,15.02675,1,CMIP5 -2296,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.255752716,-10.0953,-7.3339,-8.646525,-8.57845,1,CMIP5 -2296,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.786912487,18.8208,20.5925,19.965275,20.2239,1,CMIP5 -2297,tas,temperature,tgav,rcp26,C,Simulated,global,0.615213401,13.9454,15.3138,14.815475,15.00135,1,CMIP5 -2297,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.337500762,-9.8753,-7.2534,-8.743475,-8.9226,1,CMIP5 -2297,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.796671088,18.8055,20.5722,19.924075,20.1593,1,CMIP5 -2298,tas,temperature,tgav,rcp26,C,Simulated,global,0.620025899,13.9506,15.3089,14.830525,15.0313,1,CMIP5 -2298,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.323813165,-9.9979,-7.2892,-8.67145,-8.69935,1,CMIP5 -2298,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.81090048,18.7751,20.5074,19.926975,20.2127,1,CMIP5 -2299,tas,temperature,tgav,rcp26,C,Simulated,global,0.63346725,14.0216,15.472,14.94115,15.1355,1,CMIP5 -2299,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,1.232107617,-9.8992,-7.2672,-8.6064,-8.6296,1,CMIP5 -2299,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,0.795875826,18.8804,20.6582,20.04895,20.3286,1,CMIP5 -2300,tas,temperature,tgav,rcp26,C,Simulated,global,0.865430334,13.8652,15.5225,14.83796667,15.1262,1,CMIP5 -2300,tas,temperature,tgav_HL,rcp26,C,Simulated,HL,0.99559394,-9.9823,-7.9987,-9.040633333,-9.1409,1,CMIP5 -2300,tas,temperature,tgav_LL,rcp26,C,Simulated,LL,1.054300571,18.7131,20.6719,19.91783333,20.3685,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp45/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp45/ensemble_mean_model.csv deleted file mode 100644 index 098eb3788..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp45/ensemble_mean_model.csv +++ /dev/null @@ -1,5572 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.9269 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",15.0701 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",15.168 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",15.1318 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",15.0487 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",15.0641 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",15.0067 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.9724000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",15.1596 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",15.092 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",15.0893 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",15.2169 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",15.2417 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",15.0737 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",15.2341 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",15.3302 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",15.382 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",15.3619 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",15.2833 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",15.4215 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",15.5628 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",15.4605 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",15.4405 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",15.5152 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",15.4992 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",15.5879 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",15.5794 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",15.5281 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",15.6354 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",15.5993 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",15.6623 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",15.6522000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",15.7215 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",15.8038 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",15.8899 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",15.8237 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",15.8542 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",15.8492 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",15.7928 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",15.6604 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",15.8135 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",15.9641 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",15.7692 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",15.8013 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",15.884 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",15.9195 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",15.9205 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",15.8524 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",15.9584 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",16.0799 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",16.0887 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",16.0466 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",16.0091 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",16.0391 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",15.937 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",16.0576 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",16.0756 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",16.0564 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",16.003 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",16.0928 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",16.1801 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",16.1362 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",16.1696 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",16.1295 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",16.1061 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",16.0854 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",16.0749 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",16.0697 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",16.0557 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",16.2638 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",16.3197 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",16.1534 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",16.2204 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",16.2601 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",16.2985 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",16.3945000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",16.4619 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",16.3367 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",16.3021 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",16.4767000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",16.4419 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",16.2743 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",16.3551 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",16.3096 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",16.4094 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",16.4431 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",16.1944 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",16.2412 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",16.324 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",16.2105 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",16.1432 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",16.2302 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",16.1839000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",16.221 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",16.2922 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",16.3494 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",16.4057 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2103,"Simulated","C","global",16.4344 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2104,"Simulated","C","global",16.4125 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2105,"Simulated","C","global",16.4465 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2106,"Simulated","C","global",16.4791 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2107,"Simulated","C","global",16.4919 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2108,"Simulated","C","global",16.5761 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2109,"Simulated","C","global",16.4141 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2110,"Simulated","C","global",16.3549 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2111,"Simulated","C","global",16.453 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2112,"Simulated","C","global",16.4024 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2113,"Simulated","C","global",16.4541 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2114,"Simulated","C","global",16.3603 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2115,"Simulated","C","global",16.4627 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2116,"Simulated","C","global",16.3919 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2117,"Simulated","C","global",16.3948 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2118,"Simulated","C","global",16.3703 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2119,"Simulated","C","global",16.3834 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2120,"Simulated","C","global",16.4788 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2121,"Simulated","C","global",16.4458 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2122,"Simulated","C","global",16.433 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2123,"Simulated","C","global",16.3522 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2124,"Simulated","C","global",16.3557 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2125,"Simulated","C","global",16.387 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2126,"Simulated","C","global",16.3885 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2127,"Simulated","C","global",16.501 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2128,"Simulated","C","global",16.5455 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2129,"Simulated","C","global",16.5702 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2130,"Simulated","C","global",16.5573 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2131,"Simulated","C","global",16.6686 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2132,"Simulated","C","global",16.5755 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2133,"Simulated","C","global",16.551 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2134,"Simulated","C","global",16.5631 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2135,"Simulated","C","global",16.6194 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2136,"Simulated","C","global",16.6542 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2137,"Simulated","C","global",16.4538 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2138,"Simulated","C","global",16.5443 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2139,"Simulated","C","global",16.4381 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2140,"Simulated","C","global",16.4975 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2141,"Simulated","C","global",16.5219 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2142,"Simulated","C","global",16.6043 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2143,"Simulated","C","global",16.6517 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2144,"Simulated","C","global",16.661 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2145,"Simulated","C","global",16.6146 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2146,"Simulated","C","global",16.5204 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2147,"Simulated","C","global",16.4912 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2148,"Simulated","C","global",16.6025 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2149,"Simulated","C","global",16.6167 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2150,"Simulated","C","global",16.5856 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2151,"Simulated","C","global",16.5906 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2152,"Simulated","C","global",16.6432 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2153,"Simulated","C","global",16.6904 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2154,"Simulated","C","global",16.662 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2155,"Simulated","C","global",16.529 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2156,"Simulated","C","global",16.5857 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2157,"Simulated","C","global",16.5126 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2158,"Simulated","C","global",16.5837 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2159,"Simulated","C","global",16.5104 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2160,"Simulated","C","global",16.4713 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2161,"Simulated","C","global",16.604 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2162,"Simulated","C","global",16.612 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2163,"Simulated","C","global",16.6845 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2164,"Simulated","C","global",16.7111 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2165,"Simulated","C","global",16.572 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2166,"Simulated","C","global",16.5328 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2167,"Simulated","C","global",16.5998 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2168,"Simulated","C","global",16.5197 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2169,"Simulated","C","global",16.5966 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2170,"Simulated","C","global",16.5934 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2171,"Simulated","C","global",16.6376 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2172,"Simulated","C","global",16.5726 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2173,"Simulated","C","global",16.5509 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2174,"Simulated","C","global",16.5267 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2175,"Simulated","C","global",16.6587 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2176,"Simulated","C","global",16.6972 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2177,"Simulated","C","global",16.6042 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2178,"Simulated","C","global",16.6039 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2179,"Simulated","C","global",16.6291000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2180,"Simulated","C","global",16.6355 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2181,"Simulated","C","global",16.5462 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2182,"Simulated","C","global",16.6553 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2183,"Simulated","C","global",16.6221 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2184,"Simulated","C","global",16.6004 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2185,"Simulated","C","global",16.6582 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2186,"Simulated","C","global",16.643 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2187,"Simulated","C","global",16.7223 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2188,"Simulated","C","global",16.576 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2189,"Simulated","C","global",16.5414 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2190,"Simulated","C","global",16.6638 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2191,"Simulated","C","global",16.5931 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2192,"Simulated","C","global",16.6921 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2193,"Simulated","C","global",16.5909 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2194,"Simulated","C","global",16.63 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2195,"Simulated","C","global",16.643 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2196,"Simulated","C","global",16.8538 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2197,"Simulated","C","global",16.7592 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2198,"Simulated","C","global",16.7353 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2199,"Simulated","C","global",16.763 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2200,"Simulated","C","global",16.7398 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2201,"Simulated","C","global",16.7543 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2202,"Simulated","C","global",16.7547 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2203,"Simulated","C","global",16.5722 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2204,"Simulated","C","global",16.7289 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2205,"Simulated","C","global",16.7319 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2206,"Simulated","C","global",16.6799 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2207,"Simulated","C","global",16.7381 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2208,"Simulated","C","global",16.6645 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2209,"Simulated","C","global",16.6465 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2210,"Simulated","C","global",16.6636 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2211,"Simulated","C","global",16.6459 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2212,"Simulated","C","global",16.6598 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2213,"Simulated","C","global",16.8028 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2214,"Simulated","C","global",16.6976 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2215,"Simulated","C","global",16.5637 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2216,"Simulated","C","global",16.6329 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2217,"Simulated","C","global",16.739 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2218,"Simulated","C","global",16.6769 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2219,"Simulated","C","global",16.8165 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2220,"Simulated","C","global",16.777 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2221,"Simulated","C","global",16.7289 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2222,"Simulated","C","global",16.7142 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2223,"Simulated","C","global",16.8304 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2224,"Simulated","C","global",16.8156 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2225,"Simulated","C","global",16.7835 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2226,"Simulated","C","global",16.7948 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2227,"Simulated","C","global",16.7359 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2228,"Simulated","C","global",16.7526 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2229,"Simulated","C","global",16.7586 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2230,"Simulated","C","global",16.7286 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2231,"Simulated","C","global",16.7581 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2232,"Simulated","C","global",16.6281 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2233,"Simulated","C","global",16.7092 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2234,"Simulated","C","global",16.6671 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2235,"Simulated","C","global",16.734 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2236,"Simulated","C","global",16.8126 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2237,"Simulated","C","global",16.7629 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2238,"Simulated","C","global",16.7155 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2239,"Simulated","C","global",16.7052 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2240,"Simulated","C","global",16.6603 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2241,"Simulated","C","global",16.6711 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2242,"Simulated","C","global",16.6869 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2243,"Simulated","C","global",16.6651 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2244,"Simulated","C","global",16.7396 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2245,"Simulated","C","global",16.6884 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2246,"Simulated","C","global",16.7792 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2247,"Simulated","C","global",16.825 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2248,"Simulated","C","global",16.7947 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2249,"Simulated","C","global",16.8805 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2250,"Simulated","C","global",16.8462 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2251,"Simulated","C","global",16.7713 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2252,"Simulated","C","global",16.8548 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2253,"Simulated","C","global",16.7305 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2254,"Simulated","C","global",16.5333 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2255,"Simulated","C","global",16.6262 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2256,"Simulated","C","global",16.7585 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2257,"Simulated","C","global",16.8848 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2258,"Simulated","C","global",16.8929 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2259,"Simulated","C","global",16.8193 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2260,"Simulated","C","global",16.9693 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2261,"Simulated","C","global",16.9533 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2262,"Simulated","C","global",16.9939 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2263,"Simulated","C","global",16.9134 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2264,"Simulated","C","global",16.9394 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2265,"Simulated","C","global",16.8873 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2266,"Simulated","C","global",16.9662 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2267,"Simulated","C","global",16.8612 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2268,"Simulated","C","global",16.9379 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2269,"Simulated","C","global",16.8796 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2270,"Simulated","C","global",16.8491 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2271,"Simulated","C","global",16.8399 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2272,"Simulated","C","global",16.8226 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2273,"Simulated","C","global",16.8279 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2274,"Simulated","C","global",16.885 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2275,"Simulated","C","global",17.0117 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2276,"Simulated","C","global",16.8126 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2277,"Simulated","C","global",16.8894 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2278,"Simulated","C","global",16.9155 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2279,"Simulated","C","global",16.8984 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2280,"Simulated","C","global",16.9003 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2281,"Simulated","C","global",16.8845 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2282,"Simulated","C","global",16.9375 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2283,"Simulated","C","global",16.8907 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2284,"Simulated","C","global",16.9155 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2285,"Simulated","C","global",16.8342 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2286,"Simulated","C","global",16.8532 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2287,"Simulated","C","global",17.0046 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2288,"Simulated","C","global",16.8235 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2289,"Simulated","C","global",16.9324 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2290,"Simulated","C","global",16.8923 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2291,"Simulated","C","global",16.8782 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2292,"Simulated","C","global",16.9556 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2293,"Simulated","C","global",16.8067 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2294,"Simulated","C","global",16.8458 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2295,"Simulated","C","global",16.8615 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2296,"Simulated","C","global",16.8248 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2297,"Simulated","C","global",16.8408 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2298,"Simulated","C","global",16.8247 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2299,"Simulated","C","global",16.834 -"bcc-csm1-1","tas","temperature","tgav","rcp45",2300,"Simulated","C","global",16.9668 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-10.6635 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-9.98989999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-9.839 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-10.235 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-10.0764 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-10.0924 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-10.3758 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-10.8383 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-10.3548 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-10.2559 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-10.6414 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-10.2086 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-9.86019999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-10.6754 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-10.2221 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-9.74169999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-9.56919999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-9.42949999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-9.6551 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-9.29999999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-9.22519999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-9.4982 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-9.44450000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-9.18939999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-9.15299999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-8.88549999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-9.15519999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-9.01689999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-8.68309999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-8.93469999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-8.84029999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-9.0455 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-8.85339999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-8.96269999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-8.63299999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-9.04640000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-9.0643 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-8.75129999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-9.13689999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-9.62129999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-9.04839999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-8.99109999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-9.09839999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-9.40599999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-8.99199999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-8.93889999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-8.9812 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-9.28859999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-9.26239999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-8.55579999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-8.50919999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-8.80809999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-9.14439999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-8.60849999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-8.78109999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-8.7681 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-8.9239 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-8.85749999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-8.74439999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-8.52359999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-8.40019999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-8.70959999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-8.32809999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-8.11249999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-8.44889999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-8.51229999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-8.55029999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-8.37909999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-8.8349 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-8.48999999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-7.75849999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-8.49269999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-8.3426 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-8.18619999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-8.27429999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-8.00379999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-7.73689999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-7.96749999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-8.30219999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-7.86339999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-7.82919999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-8.375 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-7.80879999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-7.70839999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-7.71169999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-7.80449999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-8.61529999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-8.05629999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-8.14869999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-8.10659999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-8.52749999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-8.1773 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-7.97359999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-8.43579999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-8.29049999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-8.05949999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-8.15519999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2103,"Simulated","C","HL",-8.20999999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2104,"Simulated","C","HL",-8.00169999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2105,"Simulated","C","HL",-7.78229999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2106,"Simulated","C","HL",-7.6001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2107,"Simulated","C","HL",-7.78289999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2108,"Simulated","C","HL",-7.40049999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2109,"Simulated","C","HL",-7.90119999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2110,"Simulated","C","HL",-7.96469999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2111,"Simulated","C","HL",-7.7124 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2112,"Simulated","C","HL",-7.67899999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2113,"Simulated","C","HL",-7.69289999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2114,"Simulated","C","HL",-8.2817 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2115,"Simulated","C","HL",-8.25709999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2116,"Simulated","C","HL",-8.14639999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2117,"Simulated","C","HL",-7.83159999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2118,"Simulated","C","HL",-8.02670000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2119,"Simulated","C","HL",-8.02099999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2120,"Simulated","C","HL",-7.68049999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2121,"Simulated","C","HL",-7.65999999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2122,"Simulated","C","HL",-7.96609999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2123,"Simulated","C","HL",-7.90170000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2124,"Simulated","C","HL",-8.13319999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2125,"Simulated","C","HL",-8.00369999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2126,"Simulated","C","HL",-7.93859999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2127,"Simulated","C","HL",-7.52839999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2128,"Simulated","C","HL",-7.6848 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2129,"Simulated","C","HL",-7.76189999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2130,"Simulated","C","HL",-7.62609999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2131,"Simulated","C","HL",-7.7747 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2132,"Simulated","C","HL",-7.5129 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2133,"Simulated","C","HL",-8.0763 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2134,"Simulated","C","HL",-7.96679999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2135,"Simulated","C","HL",-7.7285 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2136,"Simulated","C","HL",-7.44569999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2137,"Simulated","C","HL",-7.69969999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2138,"Simulated","C","HL",-7.77979999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2139,"Simulated","C","HL",-7.62289999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2140,"Simulated","C","HL",-7.55029999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2141,"Simulated","C","HL",-7.48289999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2142,"Simulated","C","HL",-7.30549999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2143,"Simulated","C","HL",-7.13529999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2144,"Simulated","C","HL",-7.53589999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2145,"Simulated","C","HL",-7.2901 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2146,"Simulated","C","HL",-7.84099999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2147,"Simulated","C","HL",-8.12699999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2148,"Simulated","C","HL",-7.54839999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2149,"Simulated","C","HL",-7.33499999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2150,"Simulated","C","HL",-7.92419999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2151,"Simulated","C","HL",-7.56169999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2152,"Simulated","C","HL",-7.58509999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2153,"Simulated","C","HL",-7.46289999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2154,"Simulated","C","HL",-7.51319999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2155,"Simulated","C","HL",-7.80149999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2156,"Simulated","C","HL",-7.58569999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2157,"Simulated","C","HL",-7.82919999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2158,"Simulated","C","HL",-7.6499 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2159,"Simulated","C","HL",-7.90879999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2160,"Simulated","C","HL",-7.8492 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2161,"Simulated","C","HL",-7.54849999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2162,"Simulated","C","HL",-7.24679999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2163,"Simulated","C","HL",-7.50979999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2164,"Simulated","C","HL",-7.15969999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2165,"Simulated","C","HL",-7.38919999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2166,"Simulated","C","HL",-7.51669999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2167,"Simulated","C","HL",-7.53559999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2168,"Simulated","C","HL",-7.61679999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2169,"Simulated","C","HL",-7.51089999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2170,"Simulated","C","HL",-7.47429999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2171,"Simulated","C","HL",-7.29339999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2172,"Simulated","C","HL",-7.3252 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2173,"Simulated","C","HL",-7.51959999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2174,"Simulated","C","HL",-7.65299999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2175,"Simulated","C","HL",-7.00909999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2176,"Simulated","C","HL",-7.13669999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2177,"Simulated","C","HL",-7.3399 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2178,"Simulated","C","HL",-7.43989999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2179,"Simulated","C","HL",-7.30189999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2180,"Simulated","C","HL",-7.19709999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2181,"Simulated","C","HL",-7.5222 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2182,"Simulated","C","HL",-7.33879999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2183,"Simulated","C","HL",-7.36529999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2184,"Simulated","C","HL",-7.5917 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2185,"Simulated","C","HL",-7.34049999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2186,"Simulated","C","HL",-7.642 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2187,"Simulated","C","HL",-7.33959999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2188,"Simulated","C","HL",-7.45439999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2189,"Simulated","C","HL",-7.62989999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2190,"Simulated","C","HL",-7.54559999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2191,"Simulated","C","HL",-7.60949999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2192,"Simulated","C","HL",-7.16429999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2193,"Simulated","C","HL",-7.24349999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2194,"Simulated","C","HL",-7.26119999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2195,"Simulated","C","HL",-7.07189999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2196,"Simulated","C","HL",-6.74179999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2197,"Simulated","C","HL",-7.24179999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2198,"Simulated","C","HL",-7.25349999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2199,"Simulated","C","HL",-7.28699999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2200,"Simulated","C","HL",-7.3605 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2201,"Simulated","C","HL",-6.99649999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2202,"Simulated","C","HL",-6.8005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2203,"Simulated","C","HL",-7.39799999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2204,"Simulated","C","HL",-6.88319999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2205,"Simulated","C","HL",-6.95119999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2206,"Simulated","C","HL",-7.48509999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2207,"Simulated","C","HL",-7.23099999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2208,"Simulated","C","HL",-7.6651 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2209,"Simulated","C","HL",-7.13689999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2210,"Simulated","C","HL",-7.3725 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2211,"Simulated","C","HL",-7.19109999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2212,"Simulated","C","HL",-7.31889999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2213,"Simulated","C","HL",-7.04629999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2214,"Simulated","C","HL",-7.28499999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2215,"Simulated","C","HL",-7.6191 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2216,"Simulated","C","HL",-7.47609999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2217,"Simulated","C","HL",-7.37729999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2218,"Simulated","C","HL",-7.14389999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2219,"Simulated","C","HL",-6.93199999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2220,"Simulated","C","HL",-6.85129999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2221,"Simulated","C","HL",-7.1746 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2222,"Simulated","C","HL",-7.39609999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2223,"Simulated","C","HL",-6.98809999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2224,"Simulated","C","HL",-7.0675 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2225,"Simulated","C","HL",-6.5745 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2226,"Simulated","C","HL",-6.89689999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2227,"Simulated","C","HL",-7.12059999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2228,"Simulated","C","HL",-7.52819999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2229,"Simulated","C","HL",-7.43899999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2230,"Simulated","C","HL",-7.57059999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2231,"Simulated","C","HL",-7.1694 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2232,"Simulated","C","HL",-7.42739999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2233,"Simulated","C","HL",-7.6574 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2234,"Simulated","C","HL",-7.69849999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2235,"Simulated","C","HL",-7.55410000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2236,"Simulated","C","HL",-7.3811 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2237,"Simulated","C","HL",-7.32059999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2238,"Simulated","C","HL",-7.20859999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2239,"Simulated","C","HL",-6.82319999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2240,"Simulated","C","HL",-7.60519999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2241,"Simulated","C","HL",-7.68339999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2242,"Simulated","C","HL",-7.65299999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2243,"Simulated","C","HL",-7.47749999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2244,"Simulated","C","HL",-7.62099999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2245,"Simulated","C","HL",-7.30449999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2246,"Simulated","C","HL",-6.91949999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2247,"Simulated","C","HL",-7.12489999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2248,"Simulated","C","HL",-7.08499999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2249,"Simulated","C","HL",-7.16699999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2250,"Simulated","C","HL",-7.06919999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2251,"Simulated","C","HL",-7.017 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2252,"Simulated","C","HL",-6.9006 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2253,"Simulated","C","HL",-7.32909999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2254,"Simulated","C","HL",-7.9237 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2255,"Simulated","C","HL",-7.38159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2256,"Simulated","C","HL",-6.9212 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2257,"Simulated","C","HL",-6.5933 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2258,"Simulated","C","HL",-6.44129999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2259,"Simulated","C","HL",-7.03719999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2260,"Simulated","C","HL",-6.50569999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2261,"Simulated","C","HL",-6.70099999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2262,"Simulated","C","HL",-6.30669999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2263,"Simulated","C","HL",-6.61629999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2264,"Simulated","C","HL",-6.6551 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2265,"Simulated","C","HL",-6.63389999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2266,"Simulated","C","HL",-6.404 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2267,"Simulated","C","HL",-6.66109999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2268,"Simulated","C","HL",-6.5831 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2269,"Simulated","C","HL",-6.85079999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2270,"Simulated","C","HL",-7.20139999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2271,"Simulated","C","HL",-7.36649999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2272,"Simulated","C","HL",-7.2047 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2273,"Simulated","C","HL",-7.30369999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2274,"Simulated","C","HL",-7.1918 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2275,"Simulated","C","HL",-6.75509999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2276,"Simulated","C","HL",-7.52339999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2277,"Simulated","C","HL",-6.85059999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2278,"Simulated","C","HL",-6.76989999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2279,"Simulated","C","HL",-6.94880000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2280,"Simulated","C","HL",-6.7131 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2281,"Simulated","C","HL",-6.5138 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2282,"Simulated","C","HL",-6.46969999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2283,"Simulated","C","HL",-6.53899999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2284,"Simulated","C","HL",-6.66149999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2285,"Simulated","C","HL",-7.10039999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2286,"Simulated","C","HL",-6.8082 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2287,"Simulated","C","HL",-6.56019999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2288,"Simulated","C","HL",-7.14279999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2289,"Simulated","C","HL",-6.62689999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2290,"Simulated","C","HL",-6.77729999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2291,"Simulated","C","HL",-6.66579999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2292,"Simulated","C","HL",-7.0686 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2293,"Simulated","C","HL",-7.25729999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2294,"Simulated","C","HL",-6.89049999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2295,"Simulated","C","HL",-6.94919999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2296,"Simulated","C","HL",-7.01939999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2297,"Simulated","C","HL",-6.86499999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2298,"Simulated","C","HL",-7.25629999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2299,"Simulated","C","HL",-7.06139999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp45",2300,"Simulated","C","HL",-6.84839999999997 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",20.2699 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",20.3024 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",20.3892 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",20.4281 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",20.2946 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",20.3165 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",20.3063 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",20.3613 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",20.4867 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",20.3843 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",20.4616 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",20.5254 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",20.4827 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",20.4498 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",20.5491 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",20.565 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",20.5916 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",20.5381 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",20.4902 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",20.5831 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",20.7383 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",20.6715 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",20.6362 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",20.6732 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",20.6463 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",20.6976 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",20.7437 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",20.6528 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",20.7129 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",20.7217 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",20.7782 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",20.8088 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",20.8525 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",20.9748 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",21.01 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",21.0163 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",21.0569 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",20.9855 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",20.9978 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",20.9389 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",21.0044 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",21.1745 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",20.9612 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",21.0642 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",21.0778 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",21.1096 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",21.1197 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",21.1016 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",21.2242 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",21.2236 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",21.2244 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",21.236 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",21.2609 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",21.1853 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",21.0979 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",21.2409 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",21.2952 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",21.2582 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",21.17 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",21.2324 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",21.3122 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",21.3238 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",21.2845 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",21.191 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",21.2329 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",21.2212 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",21.2163 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",21.1744 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",21.2526 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",21.4321 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",21.347 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",21.2993 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",21.3489 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",21.3642 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",21.429 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",21.4886 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",21.5143 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",21.4111 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",21.4392 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",21.5586 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",21.5095 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",21.4208 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",21.4003 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",21.3243000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",21.4456 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",21.5058 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",21.3744 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",21.3142 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",21.4337 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",21.2876 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",21.2942 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",21.3263 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",21.2277 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",21.3691 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",21.4249 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",21.4458 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",21.5338 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2103,"Simulated","C","LL",21.5799 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2104,"Simulated","C","LL",21.5099 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2105,"Simulated","C","LL",21.5052 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2106,"Simulated","C","LL",21.5066 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2107,"Simulated","C","LL",21.5602 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2108,"Simulated","C","LL",21.5821 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2109,"Simulated","C","LL",21.4909 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2110,"Simulated","C","LL",21.4326 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2111,"Simulated","C","LL",21.4985 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2112,"Simulated","C","LL",21.4304 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2113,"Simulated","C","LL",21.4958 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2114,"Simulated","C","LL",21.5052 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2115,"Simulated","C","LL",21.624 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2116,"Simulated","C","LL",21.5152 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2117,"Simulated","C","LL",21.453 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2118,"Simulated","C","LL",21.4641 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2119,"Simulated","C","LL",21.4788 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2120,"Simulated","C","LL",21.523 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2121,"Simulated","C","LL",21.4788 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2122,"Simulated","C","LL",21.5272000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2123,"Simulated","C","LL",21.4161 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2124,"Simulated","C","LL",21.4687 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2125,"Simulated","C","LL",21.4795 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2126,"Simulated","C","LL",21.4677 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2127,"Simulated","C","LL",21.518 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2128,"Simulated","C","LL",21.6045 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2129,"Simulated","C","LL",21.6505 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2130,"Simulated","C","LL",21.6065 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2131,"Simulated","C","LL",21.772 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2132,"Simulated","C","LL",21.6049 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2133,"Simulated","C","LL",21.6929 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2134,"Simulated","C","LL",21.6846 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2135,"Simulated","C","LL",21.703 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2136,"Simulated","C","LL",21.686 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2137,"Simulated","C","LL",21.4968 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2138,"Simulated","C","LL",21.6229 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2139,"Simulated","C","LL",21.4618 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2140,"Simulated","C","LL",21.5185 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2141,"Simulated","C","LL",21.5339 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2142,"Simulated","C","LL",21.5964 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2143,"Simulated","C","LL",21.6182 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2144,"Simulated","C","LL",21.713 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2145,"Simulated","C","LL",21.6056 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2146,"Simulated","C","LL",21.6068 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2147,"Simulated","C","LL",21.6312 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2148,"Simulated","C","LL",21.6449 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2149,"Simulated","C","LL",21.6176 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2150,"Simulated","C","LL",21.703 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2151,"Simulated","C","LL",21.6333 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2152,"Simulated","C","LL",21.7018 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2153,"Simulated","C","LL",21.7333 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2154,"Simulated","C","LL",21.7096 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2155,"Simulated","C","LL",21.6089 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2156,"Simulated","C","LL",21.6324 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2157,"Simulated","C","LL",21.5949 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2158,"Simulated","C","LL",21.6434 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2159,"Simulated","C","LL",21.6088 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2160,"Simulated","C","LL",21.5492 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2161,"Simulated","C","LL",21.6468 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2162,"Simulated","C","LL",21.5934 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2163,"Simulated","C","LL",21.736 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2164,"Simulated","C","LL",21.6951 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2165,"Simulated","C","LL",21.5748 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2166,"Simulated","C","LL",21.5541 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2167,"Simulated","C","LL",21.6391 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2168,"Simulated","C","LL",21.5591 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2169,"Simulated","C","LL",21.63 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2170,"Simulated","C","LL",21.6184 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2171,"Simulated","C","LL",21.6341 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2172,"Simulated","C","LL",21.5622 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2173,"Simulated","C","LL",21.5765 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2174,"Simulated","C","LL",21.5751 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2175,"Simulated","C","LL",21.6003 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2176,"Simulated","C","LL",21.6735 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2177,"Simulated","C","LL",21.6035 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2178,"Simulated","C","LL",21.6239 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2179,"Simulated","C","LL",21.6256 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2180,"Simulated","C","LL",21.6115 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2181,"Simulated","C","LL",21.5714 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2182,"Simulated","C","LL",21.665 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2183,"Simulated","C","LL",21.6305 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2184,"Simulated","C","LL",21.6514 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2185,"Simulated","C","LL",21.6688 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2186,"Simulated","C","LL",21.7134 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2187,"Simulated","C","LL",21.7461 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2188,"Simulated","C","LL",21.5933 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2189,"Simulated","C","LL",21.5881 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2190,"Simulated","C","LL",21.7185 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2191,"Simulated","C","LL",21.6464 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2192,"Simulated","C","LL",21.6731 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2193,"Simulated","C","LL",21.5672 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2194,"Simulated","C","LL",21.6182 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2195,"Simulated","C","LL",21.5944 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2196,"Simulated","C","LL",21.7803 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2197,"Simulated","C","LL",21.7703 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2198,"Simulated","C","LL",21.7439 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2199,"Simulated","C","LL",21.7844 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2200,"Simulated","C","LL",21.7716 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2201,"Simulated","C","LL",21.7132 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2202,"Simulated","C","LL",21.6727 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2203,"Simulated","C","LL",21.5769 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2204,"Simulated","C","LL",21.6589 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2205,"Simulated","C","LL",21.6767 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2206,"Simulated","C","LL",21.7253 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2207,"Simulated","C","LL",21.7426 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2208,"Simulated","C","LL",21.7443 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2209,"Simulated","C","LL",21.6122 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2210,"Simulated","C","LL",21.682 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2211,"Simulated","C","LL",21.6228 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2212,"Simulated","C","LL",21.6662 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2213,"Simulated","C","LL",21.7822 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2214,"Simulated","C","LL",21.7049 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2215,"Simulated","C","LL",21.6129 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2216,"Simulated","C","LL",21.6665 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2217,"Simulated","C","LL",21.7742 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2218,"Simulated","C","LL",21.6504 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2219,"Simulated","C","LL",21.7749 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2220,"Simulated","C","LL",21.7104 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2221,"Simulated","C","LL",21.7197 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2222,"Simulated","C","LL",21.7481 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2223,"Simulated","C","LL",21.8035 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2224,"Simulated","C","LL",21.8021 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2225,"Simulated","C","LL",21.6604 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2226,"Simulated","C","LL",21.7414 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2227,"Simulated","C","LL",21.7169 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2228,"Simulated","C","LL",21.8222 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2229,"Simulated","C","LL",21.8108 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2230,"Simulated","C","LL",21.8021 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2231,"Simulated","C","LL",21.7539 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2232,"Simulated","C","LL",21.6506 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2233,"Simulated","C","LL",21.7967 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2234,"Simulated","C","LL",21.7544 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2235,"Simulated","C","LL",21.8051 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2236,"Simulated","C","LL",21.8639 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2237,"Simulated","C","LL",21.7913 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2238,"Simulated","C","LL",21.7106 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2239,"Simulated","C","LL",21.6177 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2240,"Simulated","C","LL",21.7266 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2241,"Simulated","C","LL",21.756 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2242,"Simulated","C","LL",21.7688 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2243,"Simulated","C","LL",21.7058 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2244,"Simulated","C","LL",21.8258 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2245,"Simulated","C","LL",21.6978 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2246,"Simulated","C","LL",21.7273 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2247,"Simulated","C","LL",21.8255 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2248,"Simulated","C","LL",21.7806 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2249,"Simulated","C","LL",21.9014 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2250,"Simulated","C","LL",21.8394 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2251,"Simulated","C","LL",21.738 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2252,"Simulated","C","LL",21.8146 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2253,"Simulated","C","LL",21.7538 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2254,"Simulated","C","LL",21.6397 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2255,"Simulated","C","LL",21.6387 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2256,"Simulated","C","LL",21.7026 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2257,"Simulated","C","LL",21.7868 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2258,"Simulated","C","LL",21.7648 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2259,"Simulated","C","LL",21.8003 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2260,"Simulated","C","LL",21.8706 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2261,"Simulated","C","LL",21.8921 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2262,"Simulated","C","LL",21.8588 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2263,"Simulated","C","LL",21.8261 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2264,"Simulated","C","LL",21.8657 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2265,"Simulated","C","LL",21.7983 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2266,"Simulated","C","LL",21.8456 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2267,"Simulated","C","LL",21.7724 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2268,"Simulated","C","LL",21.8488 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2269,"Simulated","C","LL",21.8343 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2270,"Simulated","C","LL",21.8706 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2271,"Simulated","C","LL",21.8939 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2272,"Simulated","C","LL",21.8393 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2273,"Simulated","C","LL",21.8664 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2274,"Simulated","C","LL",21.912 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2275,"Simulated","C","LL",21.974 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2276,"Simulated","C","LL",21.8937 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2277,"Simulated","C","LL",21.8461 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2278,"Simulated","C","LL",21.8608 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2279,"Simulated","C","LL",21.8774 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2280,"Simulated","C","LL",21.8306 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2281,"Simulated","C","LL",21.7698 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2282,"Simulated","C","LL",21.8246 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2283,"Simulated","C","LL",21.7826 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2284,"Simulated","C","LL",21.8381 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2285,"Simulated","C","LL",21.8314 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2286,"Simulated","C","LL",21.7934 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2287,"Simulated","C","LL",21.9246 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2288,"Simulated","C","LL",21.8274 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2289,"Simulated","C","LL",21.8513 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2290,"Simulated","C","LL",21.8343 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2291,"Simulated","C","LL",21.794 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2292,"Simulated","C","LL",21.9716 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2293,"Simulated","C","LL",21.831 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2294,"Simulated","C","LL",21.8017 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2295,"Simulated","C","LL",21.8329 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2296,"Simulated","C","LL",21.8032 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2297,"Simulated","C","LL",21.7903 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2298,"Simulated","C","LL",21.8526 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2299,"Simulated","C","LL",21.8231 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp45",2300,"Simulated","C","LL",21.9391 -"CanESM2","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.93944 -"CanESM2","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",14.89098 -"CanESM2","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",14.86302 -"CanESM2","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",14.89156 -"CanESM2","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",14.97918 -"CanESM2","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",15.00936 -"CanESM2","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",15.03892 -"CanESM2","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.97818 -"CanESM2","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.9994 -"CanESM2","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",15.18584 -"CanESM2","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",15.16552 -"CanESM2","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",15.17696 -"CanESM2","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",15.18702 -"CanESM2","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",15.24776 -"CanESM2","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",15.31286 -"CanESM2","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",15.28318 -"CanESM2","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",15.38684 -"CanESM2","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",15.27946 -"CanESM2","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",15.34738 -"CanESM2","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",15.42186 -"CanESM2","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",15.50928 -"CanESM2","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",15.5378 -"CanESM2","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",15.53852 -"CanESM2","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",15.54698 -"CanESM2","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",15.59436 -"CanESM2","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",15.5784 -"CanESM2","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",15.58972 -"CanESM2","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",15.69188 -"CanESM2","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",15.73856 -"CanESM2","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",15.79086 -"CanESM2","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",15.83526 -"CanESM2","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",15.81422 -"CanESM2","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",15.89074 -"CanESM2","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",15.88344 -"CanESM2","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",15.90594 -"CanESM2","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",16.00966 -"CanESM2","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",16.07944 -"CanESM2","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",16.07874 -"CanESM2","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",16.12096 -"CanESM2","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",16.07096 -"CanESM2","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",16.04994 -"CanESM2","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",16.11304 -"CanESM2","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",16.14768 -"CanESM2","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",16.24868 -"CanESM2","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",16.25682 -"CanESM2","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",16.22284 -"CanESM2","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",16.22996 -"CanESM2","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",16.29158 -"CanESM2","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",16.25532 -"CanESM2","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",16.2449 -"CanESM2","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",16.3299 -"CanESM2","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",16.3091 -"CanESM2","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",16.3589 -"CanESM2","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",16.46236 -"CanESM2","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",16.44556 -"CanESM2","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",16.49214 -"CanESM2","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",16.53822 -"CanESM2","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",16.5144 -"CanESM2","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",16.4581 -"CanESM2","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",16.49096 -"CanESM2","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",16.4904 -"CanESM2","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",16.57148 -"CanESM2","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",16.56934 -"CanESM2","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",16.55704 -"CanESM2","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",16.52098 -"CanESM2","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",16.59862 -"CanESM2","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",16.69002 -"CanESM2","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",16.65284 -"CanESM2","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",16.6493 -"CanESM2","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",16.69394 -"CanESM2","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",16.64916 -"CanESM2","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",16.66626 -"CanESM2","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",16.6845 -"CanESM2","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",16.71986 -"CanESM2","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",16.80276 -"CanESM2","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",16.79556 -"CanESM2","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",16.75654 -"CanESM2","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",16.78926 -"CanESM2","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",16.77182 -"CanESM2","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",16.72756 -"CanESM2","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",16.7437 -"CanESM2","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",16.77712 -"CanESM2","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",16.7535 -"CanESM2","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",16.77806 -"CanESM2","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",16.7998 -"CanESM2","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",16.8432 -"CanESM2","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",16.82824 -"CanESM2","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",16.84612 -"CanESM2","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",16.88612 -"CanESM2","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",16.87558 -"CanESM2","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",16.84548 -"CanESM2","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",16.83326 -"CanESM2","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",16.92272 -"CanESM2","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",16.8521 -"CanESM2","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",16.85088 -"CanESM2","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",16.8635 -"CanESM2","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",16.84485 -"CanESM2","tas","temperature","tgav","rcp45",2103,"Simulated","C","global",16.87855 -"CanESM2","tas","temperature","tgav","rcp45",2104,"Simulated","C","global",16.82625 -"CanESM2","tas","temperature","tgav","rcp45",2105,"Simulated","C","global",16.8481 -"CanESM2","tas","temperature","tgav","rcp45",2106,"Simulated","C","global",16.90415 -"CanESM2","tas","temperature","tgav","rcp45",2107,"Simulated","C","global",16.92965 -"CanESM2","tas","temperature","tgav","rcp45",2108,"Simulated","C","global",16.9799 -"CanESM2","tas","temperature","tgav","rcp45",2109,"Simulated","C","global",17.0022 -"CanESM2","tas","temperature","tgav","rcp45",2110,"Simulated","C","global",17.0578 -"CanESM2","tas","temperature","tgav","rcp45",2111,"Simulated","C","global",16.99565 -"CanESM2","tas","temperature","tgav","rcp45",2112,"Simulated","C","global",16.922 -"CanESM2","tas","temperature","tgav","rcp45",2113,"Simulated","C","global",17.00335 -"CanESM2","tas","temperature","tgav","rcp45",2114,"Simulated","C","global",17.1687 -"CanESM2","tas","temperature","tgav","rcp45",2115,"Simulated","C","global",17.05865 -"CanESM2","tas","temperature","tgav","rcp45",2116,"Simulated","C","global",16.95475 -"CanESM2","tas","temperature","tgav","rcp45",2117,"Simulated","C","global",16.8641 -"CanESM2","tas","temperature","tgav","rcp45",2118,"Simulated","C","global",16.94695 -"CanESM2","tas","temperature","tgav","rcp45",2119,"Simulated","C","global",17.085 -"CanESM2","tas","temperature","tgav","rcp45",2120,"Simulated","C","global",17.028 -"CanESM2","tas","temperature","tgav","rcp45",2121,"Simulated","C","global",16.97125 -"CanESM2","tas","temperature","tgav","rcp45",2122,"Simulated","C","global",17.09325 -"CanESM2","tas","temperature","tgav","rcp45",2123,"Simulated","C","global",17.16215 -"CanESM2","tas","temperature","tgav","rcp45",2124,"Simulated","C","global",16.97855 -"CanESM2","tas","temperature","tgav","rcp45",2125,"Simulated","C","global",16.8736 -"CanESM2","tas","temperature","tgav","rcp45",2126,"Simulated","C","global",17.0117 -"CanESM2","tas","temperature","tgav","rcp45",2127,"Simulated","C","global",17.0042 -"CanESM2","tas","temperature","tgav","rcp45",2128,"Simulated","C","global",17.07965 -"CanESM2","tas","temperature","tgav","rcp45",2129,"Simulated","C","global",17.0583 -"CanESM2","tas","temperature","tgav","rcp45",2130,"Simulated","C","global",17.0525 -"CanESM2","tas","temperature","tgav","rcp45",2131,"Simulated","C","global",17.0843 -"CanESM2","tas","temperature","tgav","rcp45",2132,"Simulated","C","global",17.19365 -"CanESM2","tas","temperature","tgav","rcp45",2133,"Simulated","C","global",17.0663 -"CanESM2","tas","temperature","tgav","rcp45",2134,"Simulated","C","global",17.01415 -"CanESM2","tas","temperature","tgav","rcp45",2135,"Simulated","C","global",17.1438 -"CanESM2","tas","temperature","tgav","rcp45",2136,"Simulated","C","global",17.0928 -"CanESM2","tas","temperature","tgav","rcp45",2137,"Simulated","C","global",16.99325 -"CanESM2","tas","temperature","tgav","rcp45",2138,"Simulated","C","global",17.0273 -"CanESM2","tas","temperature","tgav","rcp45",2139,"Simulated","C","global",17.07775 -"CanESM2","tas","temperature","tgav","rcp45",2140,"Simulated","C","global",17.1947 -"CanESM2","tas","temperature","tgav","rcp45",2141,"Simulated","C","global",17.1548 -"CanESM2","tas","temperature","tgav","rcp45",2142,"Simulated","C","global",17.0052 -"CanESM2","tas","temperature","tgav","rcp45",2143,"Simulated","C","global",17.0945 -"CanESM2","tas","temperature","tgav","rcp45",2144,"Simulated","C","global",17.2587 -"CanESM2","tas","temperature","tgav","rcp45",2145,"Simulated","C","global",17.19205 -"CanESM2","tas","temperature","tgav","rcp45",2146,"Simulated","C","global",17.0909 -"CanESM2","tas","temperature","tgav","rcp45",2147,"Simulated","C","global",17.0233 -"CanESM2","tas","temperature","tgav","rcp45",2148,"Simulated","C","global",17.11795 -"CanESM2","tas","temperature","tgav","rcp45",2149,"Simulated","C","global",17.20725 -"CanESM2","tas","temperature","tgav","rcp45",2150,"Simulated","C","global",17.1008 -"CanESM2","tas","temperature","tgav","rcp45",2151,"Simulated","C","global",17.13965 -"CanESM2","tas","temperature","tgav","rcp45",2152,"Simulated","C","global",17.1089 -"CanESM2","tas","temperature","tgav","rcp45",2153,"Simulated","C","global",16.99655 -"CanESM2","tas","temperature","tgav","rcp45",2154,"Simulated","C","global",17.1466 -"CanESM2","tas","temperature","tgav","rcp45",2155,"Simulated","C","global",17.15335 -"CanESM2","tas","temperature","tgav","rcp45",2156,"Simulated","C","global",17.09685 -"CanESM2","tas","temperature","tgav","rcp45",2157,"Simulated","C","global",17.14985 -"CanESM2","tas","temperature","tgav","rcp45",2158,"Simulated","C","global",17.22715 -"CanESM2","tas","temperature","tgav","rcp45",2159,"Simulated","C","global",17.21575 -"CanESM2","tas","temperature","tgav","rcp45",2160,"Simulated","C","global",17.19205 -"CanESM2","tas","temperature","tgav","rcp45",2161,"Simulated","C","global",17.2647000000001 -"CanESM2","tas","temperature","tgav","rcp45",2162,"Simulated","C","global",17.10765 -"CanESM2","tas","temperature","tgav","rcp45",2163,"Simulated","C","global",17.06635 -"CanESM2","tas","temperature","tgav","rcp45",2164,"Simulated","C","global",16.97905 -"CanESM2","tas","temperature","tgav","rcp45",2165,"Simulated","C","global",17.0043500000001 -"CanESM2","tas","temperature","tgav","rcp45",2166,"Simulated","C","global",17.1116 -"CanESM2","tas","temperature","tgav","rcp45",2167,"Simulated","C","global",17.20155 -"CanESM2","tas","temperature","tgav","rcp45",2168,"Simulated","C","global",17.2623 -"CanESM2","tas","temperature","tgav","rcp45",2169,"Simulated","C","global",17.2278 -"CanESM2","tas","temperature","tgav","rcp45",2170,"Simulated","C","global",17.03115 -"CanESM2","tas","temperature","tgav","rcp45",2171,"Simulated","C","global",17.2356 -"CanESM2","tas","temperature","tgav","rcp45",2172,"Simulated","C","global",17.17295 -"CanESM2","tas","temperature","tgav","rcp45",2173,"Simulated","C","global",17.07195 -"CanESM2","tas","temperature","tgav","rcp45",2174,"Simulated","C","global",16.9341 -"CanESM2","tas","temperature","tgav","rcp45",2175,"Simulated","C","global",17.0181 -"CanESM2","tas","temperature","tgav","rcp45",2176,"Simulated","C","global",17.183 -"CanESM2","tas","temperature","tgav","rcp45",2177,"Simulated","C","global",17.05005 -"CanESM2","tas","temperature","tgav","rcp45",2178,"Simulated","C","global",17.1271 -"CanESM2","tas","temperature","tgav","rcp45",2179,"Simulated","C","global",17.2741 -"CanESM2","tas","temperature","tgav","rcp45",2180,"Simulated","C","global",17.1443 -"CanESM2","tas","temperature","tgav","rcp45",2181,"Simulated","C","global",17.01385 -"CanESM2","tas","temperature","tgav","rcp45",2182,"Simulated","C","global",17.13955 -"CanESM2","tas","temperature","tgav","rcp45",2183,"Simulated","C","global",17.20815 -"CanESM2","tas","temperature","tgav","rcp45",2184,"Simulated","C","global",17.15355 -"CanESM2","tas","temperature","tgav","rcp45",2185,"Simulated","C","global",17.1523 -"CanESM2","tas","temperature","tgav","rcp45",2186,"Simulated","C","global",17.13255 -"CanESM2","tas","temperature","tgav","rcp45",2187,"Simulated","C","global",17.204 -"CanESM2","tas","temperature","tgav","rcp45",2188,"Simulated","C","global",17.29935 -"CanESM2","tas","temperature","tgav","rcp45",2189,"Simulated","C","global",17.2143500000001 -"CanESM2","tas","temperature","tgav","rcp45",2190,"Simulated","C","global",17.1823000000001 -"CanESM2","tas","temperature","tgav","rcp45",2191,"Simulated","C","global",17.0751 -"CanESM2","tas","temperature","tgav","rcp45",2192,"Simulated","C","global",17.07225 -"CanESM2","tas","temperature","tgav","rcp45",2193,"Simulated","C","global",17.2143 -"CanESM2","tas","temperature","tgav","rcp45",2194,"Simulated","C","global",17.2991 -"CanESM2","tas","temperature","tgav","rcp45",2195,"Simulated","C","global",17.19345 -"CanESM2","tas","temperature","tgav","rcp45",2196,"Simulated","C","global",17.2184 -"CanESM2","tas","temperature","tgav","rcp45",2197,"Simulated","C","global",17.2719 -"CanESM2","tas","temperature","tgav","rcp45",2198,"Simulated","C","global",17.1892 -"CanESM2","tas","temperature","tgav","rcp45",2199,"Simulated","C","global",17.19415 -"CanESM2","tas","temperature","tgav","rcp45",2200,"Simulated","C","global",17.2404 -"CanESM2","tas","temperature","tgav","rcp45",2201,"Simulated","C","global",17.10635 -"CanESM2","tas","temperature","tgav","rcp45",2202,"Simulated","C","global",17.02205 -"CanESM2","tas","temperature","tgav","rcp45",2203,"Simulated","C","global",17.15075 -"CanESM2","tas","temperature","tgav","rcp45",2204,"Simulated","C","global",17.288 -"CanESM2","tas","temperature","tgav","rcp45",2205,"Simulated","C","global",17.21145 -"CanESM2","tas","temperature","tgav","rcp45",2206,"Simulated","C","global",17.1744 -"CanESM2","tas","temperature","tgav","rcp45",2207,"Simulated","C","global",17.32535 -"CanESM2","tas","temperature","tgav","rcp45",2208,"Simulated","C","global",17.41155 -"CanESM2","tas","temperature","tgav","rcp45",2209,"Simulated","C","global",17.2293 -"CanESM2","tas","temperature","tgav","rcp45",2210,"Simulated","C","global",17.10615 -"CanESM2","tas","temperature","tgav","rcp45",2211,"Simulated","C","global",17.18245 -"CanESM2","tas","temperature","tgav","rcp45",2212,"Simulated","C","global",17.3264 -"CanESM2","tas","temperature","tgav","rcp45",2213,"Simulated","C","global",17.20155 -"CanESM2","tas","temperature","tgav","rcp45",2214,"Simulated","C","global",17.17165 -"CanESM2","tas","temperature","tgav","rcp45",2215,"Simulated","C","global",17.3159500000001 -"CanESM2","tas","temperature","tgav","rcp45",2216,"Simulated","C","global",17.283 -"CanESM2","tas","temperature","tgav","rcp45",2217,"Simulated","C","global",17.2462 -"CanESM2","tas","temperature","tgav","rcp45",2218,"Simulated","C","global",17.3658 -"CanESM2","tas","temperature","tgav","rcp45",2219,"Simulated","C","global",17.267 -"CanESM2","tas","temperature","tgav","rcp45",2220,"Simulated","C","global",17.19185 -"CanESM2","tas","temperature","tgav","rcp45",2221,"Simulated","C","global",17.3344 -"CanESM2","tas","temperature","tgav","rcp45",2222,"Simulated","C","global",17.21965 -"CanESM2","tas","temperature","tgav","rcp45",2223,"Simulated","C","global",17.2794 -"CanESM2","tas","temperature","tgav","rcp45",2224,"Simulated","C","global",17.31665 -"CanESM2","tas","temperature","tgav","rcp45",2225,"Simulated","C","global",17.33785 -"CanESM2","tas","temperature","tgav","rcp45",2226,"Simulated","C","global",17.2466500000001 -"CanESM2","tas","temperature","tgav","rcp45",2227,"Simulated","C","global",17.22485 -"CanESM2","tas","temperature","tgav","rcp45",2228,"Simulated","C","global",17.32585 -"CanESM2","tas","temperature","tgav","rcp45",2229,"Simulated","C","global",17.2659 -"CanESM2","tas","temperature","tgav","rcp45",2230,"Simulated","C","global",17.19145 -"CanESM2","tas","temperature","tgav","rcp45",2231,"Simulated","C","global",17.3059 -"CanESM2","tas","temperature","tgav","rcp45",2232,"Simulated","C","global",17.34075 -"CanESM2","tas","temperature","tgav","rcp45",2233,"Simulated","C","global",17.2187 -"CanESM2","tas","temperature","tgav","rcp45",2234,"Simulated","C","global",17.28605 -"CanESM2","tas","temperature","tgav","rcp45",2235,"Simulated","C","global",17.1805 -"CanESM2","tas","temperature","tgav","rcp45",2236,"Simulated","C","global",17.15065 -"CanESM2","tas","temperature","tgav","rcp45",2237,"Simulated","C","global",17.2342 -"CanESM2","tas","temperature","tgav","rcp45",2238,"Simulated","C","global",17.37585 -"CanESM2","tas","temperature","tgav","rcp45",2239,"Simulated","C","global",17.20215 -"CanESM2","tas","temperature","tgav","rcp45",2240,"Simulated","C","global",17.2011 -"CanESM2","tas","temperature","tgav","rcp45",2241,"Simulated","C","global",17.2723 -"CanESM2","tas","temperature","tgav","rcp45",2242,"Simulated","C","global",17.41685 -"CanESM2","tas","temperature","tgav","rcp45",2243,"Simulated","C","global",17.4192 -"CanESM2","tas","temperature","tgav","rcp45",2244,"Simulated","C","global",17.29315 -"CanESM2","tas","temperature","tgav","rcp45",2245,"Simulated","C","global",17.38765 -"CanESM2","tas","temperature","tgav","rcp45",2246,"Simulated","C","global",17.4262 -"CanESM2","tas","temperature","tgav","rcp45",2247,"Simulated","C","global",17.3933 -"CanESM2","tas","temperature","tgav","rcp45",2248,"Simulated","C","global",17.33265 -"CanESM2","tas","temperature","tgav","rcp45",2249,"Simulated","C","global",17.2897 -"CanESM2","tas","temperature","tgav","rcp45",2250,"Simulated","C","global",17.3273 -"CanESM2","tas","temperature","tgav","rcp45",2251,"Simulated","C","global",17.362 -"CanESM2","tas","temperature","tgav","rcp45",2252,"Simulated","C","global",17.30955 -"CanESM2","tas","temperature","tgav","rcp45",2253,"Simulated","C","global",17.301 -"CanESM2","tas","temperature","tgav","rcp45",2254,"Simulated","C","global",17.24105 -"CanESM2","tas","temperature","tgav","rcp45",2255,"Simulated","C","global",17.2629 -"CanESM2","tas","temperature","tgav","rcp45",2256,"Simulated","C","global",17.27495 -"CanESM2","tas","temperature","tgav","rcp45",2257,"Simulated","C","global",17.21925 -"CanESM2","tas","temperature","tgav","rcp45",2258,"Simulated","C","global",17.19315 -"CanESM2","tas","temperature","tgav","rcp45",2259,"Simulated","C","global",17.3395 -"CanESM2","tas","temperature","tgav","rcp45",2260,"Simulated","C","global",17.26215 -"CanESM2","tas","temperature","tgav","rcp45",2261,"Simulated","C","global",17.33 -"CanESM2","tas","temperature","tgav","rcp45",2262,"Simulated","C","global",17.2953 -"CanESM2","tas","temperature","tgav","rcp45",2263,"Simulated","C","global",17.30985 -"CanESM2","tas","temperature","tgav","rcp45",2264,"Simulated","C","global",17.4059 -"CanESM2","tas","temperature","tgav","rcp45",2265,"Simulated","C","global",17.3997 -"CanESM2","tas","temperature","tgav","rcp45",2266,"Simulated","C","global",17.3677 -"CanESM2","tas","temperature","tgav","rcp45",2267,"Simulated","C","global",17.29205 -"CanESM2","tas","temperature","tgav","rcp45",2268,"Simulated","C","global",17.22675 -"CanESM2","tas","temperature","tgav","rcp45",2269,"Simulated","C","global",17.27875 -"CanESM2","tas","temperature","tgav","rcp45",2270,"Simulated","C","global",17.29465 -"CanESM2","tas","temperature","tgav","rcp45",2271,"Simulated","C","global",17.26255 -"CanESM2","tas","temperature","tgav","rcp45",2272,"Simulated","C","global",17.25795 -"CanESM2","tas","temperature","tgav","rcp45",2273,"Simulated","C","global",17.29605 -"CanESM2","tas","temperature","tgav","rcp45",2274,"Simulated","C","global",17.457 -"CanESM2","tas","temperature","tgav","rcp45",2275,"Simulated","C","global",17.42765 -"CanESM2","tas","temperature","tgav","rcp45",2276,"Simulated","C","global",17.32605 -"CanESM2","tas","temperature","tgav","rcp45",2277,"Simulated","C","global",17.30765 -"CanESM2","tas","temperature","tgav","rcp45",2278,"Simulated","C","global",17.31315 -"CanESM2","tas","temperature","tgav","rcp45",2279,"Simulated","C","global",17.21365 -"CanESM2","tas","temperature","tgav","rcp45",2280,"Simulated","C","global",17.4789 -"CanESM2","tas","temperature","tgav","rcp45",2281,"Simulated","C","global",17.59725 -"CanESM2","tas","temperature","tgav","rcp45",2282,"Simulated","C","global",17.22175 -"CanESM2","tas","temperature","tgav","rcp45",2283,"Simulated","C","global",17.1959000000001 -"CanESM2","tas","temperature","tgav","rcp45",2284,"Simulated","C","global",17.47 -"CanESM2","tas","temperature","tgav","rcp45",2285,"Simulated","C","global",17.3415 -"CanESM2","tas","temperature","tgav","rcp45",2286,"Simulated","C","global",17.2777 -"CanESM2","tas","temperature","tgav","rcp45",2287,"Simulated","C","global",17.30215 -"CanESM2","tas","temperature","tgav","rcp45",2288,"Simulated","C","global",17.2519 -"CanESM2","tas","temperature","tgav","rcp45",2289,"Simulated","C","global",17.4024 -"CanESM2","tas","temperature","tgav","rcp45",2290,"Simulated","C","global",17.3859 -"CanESM2","tas","temperature","tgav","rcp45",2291,"Simulated","C","global",17.28425 -"CanESM2","tas","temperature","tgav","rcp45",2292,"Simulated","C","global",17.3367 -"CanESM2","tas","temperature","tgav","rcp45",2293,"Simulated","C","global",17.23045 -"CanESM2","tas","temperature","tgav","rcp45",2294,"Simulated","C","global",17.13835 -"CanESM2","tas","temperature","tgav","rcp45",2295,"Simulated","C","global",17.1552 -"CanESM2","tas","temperature","tgav","rcp45",2296,"Simulated","C","global",17.28305 -"CanESM2","tas","temperature","tgav","rcp45",2297,"Simulated","C","global",17.32245 -"CanESM2","tas","temperature","tgav","rcp45",2298,"Simulated","C","global",17.34835 -"CanESM2","tas","temperature","tgav","rcp45",2299,"Simulated","C","global",17.34525 -"CanESM2","tas","temperature","tgav","rcp45",2300,"Simulated","C","global",17.33515 -"CanESM2","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-10.1646 -"CanESM2","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-10.30854 -"CanESM2","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-10.32264 -"CanESM2","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-10.29448 -"CanESM2","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-10.29096 -"CanESM2","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-10.17398 -"CanESM2","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-10.03348 -"CanESM2","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-9.91697999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-9.91649999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-9.80509999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-9.90187999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-9.81975999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-9.73721999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-9.58029999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-9.49125999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-9.70877999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-9.45373999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-9.69639999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-9.63631999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-9.44846 -"CanESM2","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-9.36083999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-9.32203999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-9.33857999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-9.34341999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-9.18647999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-9.33057999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-9.20347999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-8.93375999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-8.93259999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-8.97279999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-8.83709999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-9.00035999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-8.80271999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-8.74867999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-8.60021999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-8.62293999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-8.59429999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-8.54813999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-8.40083999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-8.41911999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-8.54445999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-8.39551999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-8.32337999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-8.20961999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-7.99443999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-8.26605999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-8.22465999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-8.11391999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-8.22357999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-8.23227999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-8.03141999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-7.96883999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-8.03923999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-7.97153999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-7.96575999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-7.88867999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-7.92711999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-7.89833999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-7.88373999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-7.88387999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-7.80203999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-7.72743999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-7.70985999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-7.69633999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-7.65459999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-7.73549999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-7.65114 -"CanESM2","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-7.54677999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-7.59443999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-7.47233999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-7.56131999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-7.47675999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-7.51321999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-7.50937999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-7.45921999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-7.39987999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-7.37283999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-7.34363999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-7.47283999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-7.43813999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-7.64555999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-7.39825999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-7.52139999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-7.40729999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-7.43541999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-7.31421999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-7.44209999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-7.30537999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-7.32011999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-7.30357999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-7.28587999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-7.44763999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-7.19963999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-7.39627999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-7.27133999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-7.25054999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-7.16424999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2103,"Simulated","C","HL",-7.47274999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2104,"Simulated","C","HL",-7.45774999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2105,"Simulated","C","HL",-7.37484999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2106,"Simulated","C","HL",-7.32204999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2107,"Simulated","C","HL",-7.38554999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2108,"Simulated","C","HL",-7.15379999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2109,"Simulated","C","HL",-7.27124999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2110,"Simulated","C","HL",-6.96129999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2111,"Simulated","C","HL",-7.0924 -"CanESM2","tas","temperature","tgav_HL","rcp45",2112,"Simulated","C","HL",-7.16789999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2113,"Simulated","C","HL",-7.16814999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2114,"Simulated","C","HL",-6.79024999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2115,"Simulated","C","HL",-6.92029999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2116,"Simulated","C","HL",-6.9563 -"CanESM2","tas","temperature","tgav_HL","rcp45",2117,"Simulated","C","HL",-7.33794999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2118,"Simulated","C","HL",-7.28774999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2119,"Simulated","C","HL",-7.13289999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2120,"Simulated","C","HL",-6.95569999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2121,"Simulated","C","HL",-6.99554999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2122,"Simulated","C","HL",-6.74949999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2123,"Simulated","C","HL",-6.62504999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2124,"Simulated","C","HL",-7.12064999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2125,"Simulated","C","HL",-7.19639999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2126,"Simulated","C","HL",-7.06689999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2127,"Simulated","C","HL",-6.91964999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2128,"Simulated","C","HL",-7.10035 -"CanESM2","tas","temperature","tgav_HL","rcp45",2129,"Simulated","C","HL",-7.10364999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2130,"Simulated","C","HL",-6.93609999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2131,"Simulated","C","HL",-7.03144999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2132,"Simulated","C","HL",-6.65454999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2133,"Simulated","C","HL",-6.76544999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2134,"Simulated","C","HL",-6.97744999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2135,"Simulated","C","HL",-6.81955 -"CanESM2","tas","temperature","tgav_HL","rcp45",2136,"Simulated","C","HL",-6.98284999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2137,"Simulated","C","HL",-7.14264999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2138,"Simulated","C","HL",-7.08649999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2139,"Simulated","C","HL",-6.85899999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2140,"Simulated","C","HL",-6.55109999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2141,"Simulated","C","HL",-6.55009999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2142,"Simulated","C","HL",-6.84424999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2143,"Simulated","C","HL",-6.75369999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2144,"Simulated","C","HL",-6.59809999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2145,"Simulated","C","HL",-6.74729999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2146,"Simulated","C","HL",-6.86219999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2147,"Simulated","C","HL",-7.02749999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2148,"Simulated","C","HL",-6.82414999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2149,"Simulated","C","HL",-6.55199999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2150,"Simulated","C","HL",-6.73854999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2151,"Simulated","C","HL",-6.59779999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2152,"Simulated","C","HL",-6.59804999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2153,"Simulated","C","HL",-6.99874999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2154,"Simulated","C","HL",-6.92929999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2155,"Simulated","C","HL",-6.92234999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2156,"Simulated","C","HL",-7.13234999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2157,"Simulated","C","HL",-6.75369999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2158,"Simulated","C","HL",-6.87984999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2159,"Simulated","C","HL",-6.70039999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2160,"Simulated","C","HL",-6.78464999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2161,"Simulated","C","HL",-6.5848 -"CanESM2","tas","temperature","tgav_HL","rcp45",2162,"Simulated","C","HL",-6.64945000000001 -"CanESM2","tas","temperature","tgav_HL","rcp45",2163,"Simulated","C","HL",-6.96324999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2164,"Simulated","C","HL",-7.13069999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2165,"Simulated","C","HL",-7.04509999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2166,"Simulated","C","HL",-6.81034999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2167,"Simulated","C","HL",-6.55019999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2168,"Simulated","C","HL",-6.53574999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2169,"Simulated","C","HL",-6.392 -"CanESM2","tas","temperature","tgav_HL","rcp45",2170,"Simulated","C","HL",-7.12259999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2171,"Simulated","C","HL",-6.57669999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2172,"Simulated","C","HL",-6.77124999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2173,"Simulated","C","HL",-6.93039999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2174,"Simulated","C","HL",-7.12874999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2175,"Simulated","C","HL",-7.06424999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2176,"Simulated","C","HL",-6.92534999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2177,"Simulated","C","HL",-6.99014999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2178,"Simulated","C","HL",-6.96149999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2179,"Simulated","C","HL",-6.71319999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2180,"Simulated","C","HL",-6.99285 -"CanESM2","tas","temperature","tgav_HL","rcp45",2181,"Simulated","C","HL",-6.94 -"CanESM2","tas","temperature","tgav_HL","rcp45",2182,"Simulated","C","HL",-6.75079999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2183,"Simulated","C","HL",-6.89919999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2184,"Simulated","C","HL",-6.79684999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2185,"Simulated","C","HL",-6.74034999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2186,"Simulated","C","HL",-6.91475 -"CanESM2","tas","temperature","tgav_HL","rcp45",2187,"Simulated","C","HL",-6.72189999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2188,"Simulated","C","HL",-6.59424999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2189,"Simulated","C","HL",-6.80439999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2190,"Simulated","C","HL",-6.69869999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2191,"Simulated","C","HL",-6.74859999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2192,"Simulated","C","HL",-6.75519999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2193,"Simulated","C","HL",-6.80615 -"CanESM2","tas","temperature","tgav_HL","rcp45",2194,"Simulated","C","HL",-6.53629999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2195,"Simulated","C","HL",-6.64634999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2196,"Simulated","C","HL",-6.93209999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2197,"Simulated","C","HL",-6.52489999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2198,"Simulated","C","HL",-6.64029999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2199,"Simulated","C","HL",-6.67894999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2200,"Simulated","C","HL",-6.48054999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2201,"Simulated","C","HL",-6.89464999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2202,"Simulated","C","HL",-6.99804999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2203,"Simulated","C","HL",-6.95829999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2204,"Simulated","C","HL",-6.64829999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2205,"Simulated","C","HL",-6.78409999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2206,"Simulated","C","HL",-6.51519999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2207,"Simulated","C","HL",-6.4981 -"CanESM2","tas","temperature","tgav_HL","rcp45",2208,"Simulated","C","HL",-6.65599999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2209,"Simulated","C","HL",-6.72369999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2210,"Simulated","C","HL",-6.70309999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2211,"Simulated","C","HL",-6.75989999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2212,"Simulated","C","HL",-6.46859999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2213,"Simulated","C","HL",-6.73899999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2214,"Simulated","C","HL",-6.84604999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2215,"Simulated","C","HL",-6.69134999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2216,"Simulated","C","HL",-6.63214999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2217,"Simulated","C","HL",-6.76389999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2218,"Simulated","C","HL",-6.41204999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2219,"Simulated","C","HL",-6.56019999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2220,"Simulated","C","HL",-7.08834999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2221,"Simulated","C","HL",-6.58994999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2222,"Simulated","C","HL",-6.60589999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2223,"Simulated","C","HL",-6.71799999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2224,"Simulated","C","HL",-6.48899999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2225,"Simulated","C","HL",-6.54444999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2226,"Simulated","C","HL",-6.80674999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2227,"Simulated","C","HL",-6.87224999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2228,"Simulated","C","HL",-6.81950000000001 -"CanESM2","tas","temperature","tgav_HL","rcp45",2229,"Simulated","C","HL",-6.61339999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2230,"Simulated","C","HL",-6.87599999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2231,"Simulated","C","HL",-6.72409999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2232,"Simulated","C","HL",-6.61644999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2233,"Simulated","C","HL",-6.76179999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2234,"Simulated","C","HL",-6.42024999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2235,"Simulated","C","HL",-6.69289999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2236,"Simulated","C","HL",-6.77709999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2237,"Simulated","C","HL",-6.72984999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2238,"Simulated","C","HL",-6.32374999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2239,"Simulated","C","HL",-6.57744999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2240,"Simulated","C","HL",-6.96554999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2241,"Simulated","C","HL",-6.72049999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2242,"Simulated","C","HL",-6.33174999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2243,"Simulated","C","HL",-6.28064999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2244,"Simulated","C","HL",-6.53704999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2245,"Simulated","C","HL",-6.31984999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2246,"Simulated","C","HL",-6.37469999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2247,"Simulated","C","HL",-6.45614999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2248,"Simulated","C","HL",-6.62709999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2249,"Simulated","C","HL",-6.51204999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2250,"Simulated","C","HL",-6.47954999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2251,"Simulated","C","HL",-6.31929999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2252,"Simulated","C","HL",-6.51919999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2253,"Simulated","C","HL",-6.68469999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2254,"Simulated","C","HL",-6.69719999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2255,"Simulated","C","HL",-6.51504999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2256,"Simulated","C","HL",-6.62764999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2257,"Simulated","C","HL",-6.65269999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2258,"Simulated","C","HL",-6.88944999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2259,"Simulated","C","HL",-6.58099999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2260,"Simulated","C","HL",-6.80175 -"CanESM2","tas","temperature","tgav_HL","rcp45",2261,"Simulated","C","HL",-6.76669999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2262,"Simulated","C","HL",-6.64139999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2263,"Simulated","C","HL",-6.28549999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2264,"Simulated","C","HL",-6.22724999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2265,"Simulated","C","HL",-6.29379999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2266,"Simulated","C","HL",-6.47399999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2267,"Simulated","C","HL",-6.49459999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2268,"Simulated","C","HL",-6.70839999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2269,"Simulated","C","HL",-6.66295 -"CanESM2","tas","temperature","tgav_HL","rcp45",2270,"Simulated","C","HL",-6.34159999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2271,"Simulated","C","HL",-6.38564999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2272,"Simulated","C","HL",-6.58014999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2273,"Simulated","C","HL",-6.76854999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2274,"Simulated","C","HL",-6.63134999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2275,"Simulated","C","HL",-6.40799999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2276,"Simulated","C","HL",-6.49089999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2277,"Simulated","C","HL",-6.63239999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2278,"Simulated","C","HL",-6.54579999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2279,"Simulated","C","HL",-6.76679999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2280,"Simulated","C","HL",-6.36294999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2281,"Simulated","C","HL",-6.14119999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2282,"Simulated","C","HL",-6.61164999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2283,"Simulated","C","HL",-6.66214999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2284,"Simulated","C","HL",-6.32369999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2285,"Simulated","C","HL",-6.53474999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2286,"Simulated","C","HL",-6.70894999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2287,"Simulated","C","HL",-6.64009999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2288,"Simulated","C","HL",-7.03989999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2289,"Simulated","C","HL",-6.39149999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2290,"Simulated","C","HL",-6.37779999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2291,"Simulated","C","HL",-6.35884999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2292,"Simulated","C","HL",-6.26479999999995 -"CanESM2","tas","temperature","tgav_HL","rcp45",2293,"Simulated","C","HL",-6.63099999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2294,"Simulated","C","HL",-6.69769999999997 -"CanESM2","tas","temperature","tgav_HL","rcp45",2295,"Simulated","C","HL",-6.91679999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2296,"Simulated","C","HL",-6.58404999999996 -"CanESM2","tas","temperature","tgav_HL","rcp45",2297,"Simulated","C","HL",-6.56189999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2298,"Simulated","C","HL",-6.53569999999999 -"CanESM2","tas","temperature","tgav_HL","rcp45",2299,"Simulated","C","HL",-6.56679999999998 -"CanESM2","tas","temperature","tgav_HL","rcp45",2300,"Simulated","C","HL",-6.36789999999997 -"CanESM2","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",20.18084 -"CanESM2","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",20.15236 -"CanESM2","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",20.1215 -"CanESM2","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",20.15014 -"CanESM2","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",20.25528 -"CanESM2","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",20.26736 -"CanESM2","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",20.27374 -"CanESM2","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",20.17598 -"CanESM2","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",20.20156 -"CanESM2","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",20.40368 -"CanESM2","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",20.39934 -"CanESM2","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",20.39602 -"CanESM2","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",20.3909 -"CanESM2","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",20.4316 -"CanESM2","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",20.49166 -"CanESM2","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",20.50124 -"CanESM2","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",20.57326 -"CanESM2","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",20.49414 -"CanESM2","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",20.56368 -"CanESM2","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",20.61446 -"CanESM2","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",20.70188 -"CanESM2","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",20.72824 -"CanESM2","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",20.73256 -"CanESM2","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",20.7438 -"CanESM2","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",20.76832 -"CanESM2","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",20.77912 -"CanESM2","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",20.76626 -"CanESM2","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",20.83344 -"CanESM2","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",20.8896 -"CanESM2","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",20.96124 -"CanESM2","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",20.98658 -"CanESM2","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",20.99522 -"CanESM2","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",21.04644 -"CanESM2","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",21.02636 -"CanESM2","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",21.02252 -"CanESM2","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",21.15268 -"CanESM2","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",21.23104 -"CanESM2","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",21.22056 -"CanESM2","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",21.24082 -"CanESM2","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",21.18422 -"CanESM2","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",21.18498 -"CanESM2","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",21.23014 -"CanESM2","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",21.25696 -"CanESM2","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",21.3553 -"CanESM2","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",21.32018 -"CanESM2","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",21.33588 -"CanESM2","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",21.3358 -"CanESM2","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",21.38718 -"CanESM2","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",21.3662 -"CanESM2","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",21.3555 -"CanESM2","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",21.41626 -"CanESM2","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",21.37806 -"CanESM2","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",21.45296 -"CanESM2","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",21.56388 -"CanESM2","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",21.54238 -"CanESM2","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",21.58256 -"CanESM2","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",21.6463 -"CanESM2","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",21.6115 -"CanESM2","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",21.54036 -"CanESM2","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",21.58016 -"CanESM2","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",21.56242 -"CanESM2","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",21.64482 -"CanESM2","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",21.63854 -"CanESM2","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",21.62084 -"CanESM2","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",21.56858 -"CanESM2","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",21.67932 -"CanESM2","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",21.7722 -"CanESM2","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",21.70546 -"CanESM2","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",21.71112 -"CanESM2","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",21.7396 -"CanESM2","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",21.70404 -"CanESM2","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",21.70706 -"CanESM2","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",21.73674 -"CanESM2","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",21.77864 -"CanESM2","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",21.86838 -"CanESM2","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",21.8473 -"CanESM2","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",21.7945 -"CanESM2","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",21.82794 -"CanESM2","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",21.83384 -"CanESM2","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",21.77308 -"CanESM2","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",21.8359 -"CanESM2","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",21.82472 -"CanESM2","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",21.82184 -"CanESM2","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",21.8277 -"CanESM2","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",21.85982 -"CanESM2","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",21.887 -"CanESM2","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",21.89558 -"CanESM2","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",21.8887 -"CanESM2","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",21.9401 -"CanESM2","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",21.9239 -"CanESM2","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",21.88382 -"CanESM2","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",21.90284 -"CanESM2","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",21.9592 -"CanESM2","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",21.9149 -"CanESM2","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",21.88732 -"CanESM2","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",21.8983 -"CanESM2","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",21.8577000000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2103,"Simulated","C","LL",21.96285 -"CanESM2","tas","temperature","tgav_LL","rcp45",2104,"Simulated","C","LL",21.8965 -"CanESM2","tas","temperature","tgav_LL","rcp45",2105,"Simulated","C","LL",21.90555 -"CanESM2","tas","temperature","tgav_LL","rcp45",2106,"Simulated","C","LL",21.96235 -"CanESM2","tas","temperature","tgav_LL","rcp45",2107,"Simulated","C","LL",22.0064 -"CanESM2","tas","temperature","tgav_LL","rcp45",2108,"Simulated","C","LL",22.0187 -"CanESM2","tas","temperature","tgav_LL","rcp45",2109,"Simulated","C","LL",22.0702 -"CanESM2","tas","temperature","tgav_LL","rcp45",2110,"Simulated","C","LL",22.0728 -"CanESM2","tas","temperature","tgav_LL","rcp45",2111,"Simulated","C","LL",22.0249500000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2112,"Simulated","C","LL",21.9517 -"CanESM2","tas","temperature","tgav_LL","rcp45",2113,"Simulated","C","LL",22.05005 -"CanESM2","tas","temperature","tgav_LL","rcp45",2114,"Simulated","C","LL",22.17105 -"CanESM2","tas","temperature","tgav_LL","rcp45",2115,"Simulated","C","LL",22.06515 -"CanESM2","tas","temperature","tgav_LL","rcp45",2116,"Simulated","C","LL",21.94715 -"CanESM2","tas","temperature","tgav_LL","rcp45",2117,"Simulated","C","LL",21.91715 -"CanESM2","tas","temperature","tgav_LL","rcp45",2118,"Simulated","C","LL",22.00685 -"CanESM2","tas","temperature","tgav_LL","rcp45",2119,"Simulated","C","LL",22.14145 -"CanESM2","tas","temperature","tgav_LL","rcp45",2120,"Simulated","C","LL",22.0356 -"CanESM2","tas","temperature","tgav_LL","rcp45",2121,"Simulated","C","LL",21.97525 -"CanESM2","tas","temperature","tgav_LL","rcp45",2122,"Simulated","C","LL",22.0714 -"CanESM2","tas","temperature","tgav_LL","rcp45",2123,"Simulated","C","LL",22.12865 -"CanESM2","tas","temperature","tgav_LL","rcp45",2124,"Simulated","C","LL",22.0102000000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2125,"Simulated","C","LL",21.8992 -"CanESM2","tas","temperature","tgav_LL","rcp45",2126,"Simulated","C","LL",22.03905 -"CanESM2","tas","temperature","tgav_LL","rcp45",2127,"Simulated","C","LL",21.99925 -"CanESM2","tas","temperature","tgav_LL","rcp45",2128,"Simulated","C","LL",22.1282 -"CanESM2","tas","temperature","tgav_LL","rcp45",2129,"Simulated","C","LL",22.10305 -"CanESM2","tas","temperature","tgav_LL","rcp45",2130,"Simulated","C","LL",22.0611 -"CanESM2","tas","temperature","tgav_LL","rcp45",2131,"Simulated","C","LL",22.11945 -"CanESM2","tas","temperature","tgav_LL","rcp45",2132,"Simulated","C","LL",22.1729 -"CanESM2","tas","temperature","tgav_LL","rcp45",2133,"Simulated","C","LL",22.0421 -"CanESM2","tas","temperature","tgav_LL","rcp45",2134,"Simulated","C","LL",22.02335 -"CanESM2","tas","temperature","tgav_LL","rcp45",2135,"Simulated","C","LL",22.1471 -"CanESM2","tas","temperature","tgav_LL","rcp45",2136,"Simulated","C","LL",22.1196 -"CanESM2","tas","temperature","tgav_LL","rcp45",2137,"Simulated","C","LL",22.0325 -"CanESM2","tas","temperature","tgav_LL","rcp45",2138,"Simulated","C","LL",22.062 -"CanESM2","tas","temperature","tgav_LL","rcp45",2139,"Simulated","C","LL",22.07545 -"CanESM2","tas","temperature","tgav_LL","rcp45",2140,"Simulated","C","LL",22.1526 -"CanESM2","tas","temperature","tgav_LL","rcp45",2141,"Simulated","C","LL",22.10415 -"CanESM2","tas","temperature","tgav_LL","rcp45",2142,"Simulated","C","LL",21.9847 -"CanESM2","tas","temperature","tgav_LL","rcp45",2143,"Simulated","C","LL",22.07375 -"CanESM2","tas","temperature","tgav_LL","rcp45",2144,"Simulated","C","LL",22.23975 -"CanESM2","tas","temperature","tgav_LL","rcp45",2145,"Simulated","C","LL",22.1903 -"CanESM2","tas","temperature","tgav_LL","rcp45",2146,"Simulated","C","LL",22.09205 -"CanESM2","tas","temperature","tgav_LL","rcp45",2147,"Simulated","C","LL",22.04485 -"CanESM2","tas","temperature","tgav_LL","rcp45",2148,"Simulated","C","LL",22.1168 -"CanESM2","tas","temperature","tgav_LL","rcp45",2149,"Simulated","C","LL",22.1679 -"CanESM2","tas","temperature","tgav_LL","rcp45",2150,"Simulated","C","LL",22.07825 -"CanESM2","tas","temperature","tgav_LL","rcp45",2151,"Simulated","C","LL",22.0958 -"CanESM2","tas","temperature","tgav_LL","rcp45",2152,"Simulated","C","LL",22.0586 -"CanESM2","tas","temperature","tgav_LL","rcp45",2153,"Simulated","C","LL",22.0065 -"CanESM2","tas","temperature","tgav_LL","rcp45",2154,"Simulated","C","LL",22.17335 -"CanESM2","tas","temperature","tgav_LL","rcp45",2155,"Simulated","C","LL",22.18015 -"CanESM2","tas","temperature","tgav_LL","rcp45",2156,"Simulated","C","LL",22.1557 -"CanESM2","tas","temperature","tgav_LL","rcp45",2157,"Simulated","C","LL",22.14065 -"CanESM2","tas","temperature","tgav_LL","rcp45",2158,"Simulated","C","LL",22.2604 -"CanESM2","tas","temperature","tgav_LL","rcp45",2159,"Simulated","C","LL",22.2092 -"CanESM2","tas","temperature","tgav_LL","rcp45",2160,"Simulated","C","LL",22.1981 -"CanESM2","tas","temperature","tgav_LL","rcp45",2161,"Simulated","C","LL",22.2442 -"CanESM2","tas","temperature","tgav_LL","rcp45",2162,"Simulated","C","LL",22.06785 -"CanESM2","tas","temperature","tgav_LL","rcp45",2163,"Simulated","C","LL",22.0835 -"CanESM2","tas","temperature","tgav_LL","rcp45",2164,"Simulated","C","LL",22.0129 -"CanESM2","tas","temperature","tgav_LL","rcp45",2165,"Simulated","C","LL",22.0256 -"CanESM2","tas","temperature","tgav_LL","rcp45",2166,"Simulated","C","LL",22.1062 -"CanESM2","tas","temperature","tgav_LL","rcp45",2167,"Simulated","C","LL",22.16065 -"CanESM2","tas","temperature","tgav_LL","rcp45",2168,"Simulated","C","LL",22.23105 -"CanESM2","tas","temperature","tgav_LL","rcp45",2169,"Simulated","C","LL",22.1593 -"CanESM2","tas","temperature","tgav_LL","rcp45",2170,"Simulated","C","LL",22.0742 -"CanESM2","tas","temperature","tgav_LL","rcp45",2171,"Simulated","C","LL",22.2073 -"CanESM2","tas","temperature","tgav_LL","rcp45",2172,"Simulated","C","LL",22.17225 -"CanESM2","tas","temperature","tgav_LL","rcp45",2173,"Simulated","C","LL",22.08335 -"CanESM2","tas","temperature","tgav_LL","rcp45",2174,"Simulated","C","LL",21.95815 -"CanESM2","tas","temperature","tgav_LL","rcp45",2175,"Simulated","C","LL",22.0462 -"CanESM2","tas","temperature","tgav_LL","rcp45",2176,"Simulated","C","LL",22.2165 -"CanESM2","tas","temperature","tgav_LL","rcp45",2177,"Simulated","C","LL",22.06935 -"CanESM2","tas","temperature","tgav_LL","rcp45",2178,"Simulated","C","LL",22.1565 -"CanESM2","tas","temperature","tgav_LL","rcp45",2179,"Simulated","C","LL",22.2824000000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2180,"Simulated","C","LL",22.1839 -"CanESM2","tas","temperature","tgav_LL","rcp45",2181,"Simulated","C","LL",22.01515 -"CanESM2","tas","temperature","tgav_LL","rcp45",2182,"Simulated","C","LL",22.12765 -"CanESM2","tas","temperature","tgav_LL","rcp45",2183,"Simulated","C","LL",22.2415 -"CanESM2","tas","temperature","tgav_LL","rcp45",2184,"Simulated","C","LL",22.15415 -"CanESM2","tas","temperature","tgav_LL","rcp45",2185,"Simulated","C","LL",22.14085 -"CanESM2","tas","temperature","tgav_LL","rcp45",2186,"Simulated","C","LL",22.15335 -"CanESM2","tas","temperature","tgav_LL","rcp45",2187,"Simulated","C","LL",22.19945 -"CanESM2","tas","temperature","tgav_LL","rcp45",2188,"Simulated","C","LL",22.288 -"CanESM2","tas","temperature","tgav_LL","rcp45",2189,"Simulated","C","LL",22.2292 -"CanESM2","tas","temperature","tgav_LL","rcp45",2190,"Simulated","C","LL",22.1684 -"CanESM2","tas","temperature","tgav_LL","rcp45",2191,"Simulated","C","LL",22.04925 -"CanESM2","tas","temperature","tgav_LL","rcp45",2192,"Simulated","C","LL",22.04715 -"CanESM2","tas","temperature","tgav_LL","rcp45",2193,"Simulated","C","LL",22.2295 -"CanESM2","tas","temperature","tgav_LL","rcp45",2194,"Simulated","C","LL",22.27575 -"CanESM2","tas","temperature","tgav_LL","rcp45",2195,"Simulated","C","LL",22.1709500000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2196,"Simulated","C","LL",22.26075 -"CanESM2","tas","temperature","tgav_LL","rcp45",2197,"Simulated","C","LL",22.24045 -"CanESM2","tas","temperature","tgav_LL","rcp45",2198,"Simulated","C","LL",22.1646 -"CanESM2","tas","temperature","tgav_LL","rcp45",2199,"Simulated","C","LL",22.17855 -"CanESM2","tas","temperature","tgav_LL","rcp45",2200,"Simulated","C","LL",22.19305 -"CanESM2","tas","temperature","tgav_LL","rcp45",2201,"Simulated","C","LL",22.11745 -"CanESM2","tas","temperature","tgav_LL","rcp45",2202,"Simulated","C","LL",22.0372 -"CanESM2","tas","temperature","tgav_LL","rcp45",2203,"Simulated","C","LL",22.1845 -"CanESM2","tas","temperature","tgav_LL","rcp45",2204,"Simulated","C","LL",22.28565 -"CanESM2","tas","temperature","tgav_LL","rcp45",2205,"Simulated","C","LL",22.2214 -"CanESM2","tas","temperature","tgav_LL","rcp45",2206,"Simulated","C","LL",22.12045 -"CanESM2","tas","temperature","tgav_LL","rcp45",2207,"Simulated","C","LL",22.2994 -"CanESM2","tas","temperature","tgav_LL","rcp45",2208,"Simulated","C","LL",22.43665 -"CanESM2","tas","temperature","tgav_LL","rcp45",2209,"Simulated","C","LL",22.2304 -"CanESM2","tas","temperature","tgav_LL","rcp45",2210,"Simulated","C","LL",22.07725 -"CanESM2","tas","temperature","tgav_LL","rcp45",2211,"Simulated","C","LL",22.18135 -"CanESM2","tas","temperature","tgav_LL","rcp45",2212,"Simulated","C","LL",22.2945 -"CanESM2","tas","temperature","tgav_LL","rcp45",2213,"Simulated","C","LL",22.20005 -"CanESM2","tas","temperature","tgav_LL","rcp45",2214,"Simulated","C","LL",22.18625 -"CanESM2","tas","temperature","tgav_LL","rcp45",2215,"Simulated","C","LL",22.32845 -"CanESM2","tas","temperature","tgav_LL","rcp45",2216,"Simulated","C","LL",22.2762 -"CanESM2","tas","temperature","tgav_LL","rcp45",2217,"Simulated","C","LL",22.2592 -"CanESM2","tas","temperature","tgav_LL","rcp45",2218,"Simulated","C","LL",22.33035 -"CanESM2","tas","temperature","tgav_LL","rcp45",2219,"Simulated","C","LL",22.24185 -"CanESM2","tas","temperature","tgav_LL","rcp45",2220,"Simulated","C","LL",22.26125 -"CanESM2","tas","temperature","tgav_LL","rcp45",2221,"Simulated","C","LL",22.32955 -"CanESM2","tas","temperature","tgav_LL","rcp45",2222,"Simulated","C","LL",22.19415 -"CanESM2","tas","temperature","tgav_LL","rcp45",2223,"Simulated","C","LL",22.28975 -"CanESM2","tas","temperature","tgav_LL","rcp45",2224,"Simulated","C","LL",22.28705 -"CanESM2","tas","temperature","tgav_LL","rcp45",2225,"Simulated","C","LL",22.3242 -"CanESM2","tas","temperature","tgav_LL","rcp45",2226,"Simulated","C","LL",22.26875 -"CanESM2","tas","temperature","tgav_LL","rcp45",2227,"Simulated","C","LL",22.25605 -"CanESM2","tas","temperature","tgav_LL","rcp45",2228,"Simulated","C","LL",22.36715 -"CanESM2","tas","temperature","tgav_LL","rcp45",2229,"Simulated","C","LL",22.2516 -"CanESM2","tas","temperature","tgav_LL","rcp45",2230,"Simulated","C","LL",22.21645 -"CanESM2","tas","temperature","tgav_LL","rcp45",2231,"Simulated","C","LL",22.32305 -"CanESM2","tas","temperature","tgav_LL","rcp45",2232,"Simulated","C","LL",22.34275 -"CanESM2","tas","temperature","tgav_LL","rcp45",2233,"Simulated","C","LL",22.22555 -"CanESM2","tas","temperature","tgav_LL","rcp45",2234,"Simulated","C","LL",22.23565 -"CanESM2","tas","temperature","tgav_LL","rcp45",2235,"Simulated","C","LL",22.165 -"CanESM2","tas","temperature","tgav_LL","rcp45",2236,"Simulated","C","LL",22.1465 -"CanESM2","tas","temperature","tgav_LL","rcp45",2237,"Simulated","C","LL",22.2377 -"CanESM2","tas","temperature","tgav_LL","rcp45",2238,"Simulated","C","LL",22.32405 -"CanESM2","tas","temperature","tgav_LL","rcp45",2239,"Simulated","C","LL",22.1671 -"CanESM2","tas","temperature","tgav_LL","rcp45",2240,"Simulated","C","LL",22.24685 -"CanESM2","tas","temperature","tgav_LL","rcp45",2241,"Simulated","C","LL",22.28175 -"CanESM2","tas","temperature","tgav_LL","rcp45",2242,"Simulated","C","LL",22.3753 -"CanESM2","tas","temperature","tgav_LL","rcp45",2243,"Simulated","C","LL",22.36745 -"CanESM2","tas","temperature","tgav_LL","rcp45",2244,"Simulated","C","LL",22.2686 -"CanESM2","tas","temperature","tgav_LL","rcp45",2245,"Simulated","C","LL",22.3375 -"CanESM2","tas","temperature","tgav_LL","rcp45",2246,"Simulated","C","LL",22.39555 -"CanESM2","tas","temperature","tgav_LL","rcp45",2247,"Simulated","C","LL",22.3728 -"CanESM2","tas","temperature","tgav_LL","rcp45",2248,"Simulated","C","LL",22.3352000000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2249,"Simulated","C","LL",22.25925 -"CanESM2","tas","temperature","tgav_LL","rcp45",2250,"Simulated","C","LL",22.2979 -"CanESM2","tas","temperature","tgav_LL","rcp45",2251,"Simulated","C","LL",22.3064 -"CanESM2","tas","temperature","tgav_LL","rcp45",2252,"Simulated","C","LL",22.28475 -"CanESM2","tas","temperature","tgav_LL","rcp45",2253,"Simulated","C","LL",22.30895 -"CanESM2","tas","temperature","tgav_LL","rcp45",2254,"Simulated","C","LL",22.2391 -"CanESM2","tas","temperature","tgav_LL","rcp45",2255,"Simulated","C","LL",22.2275 -"CanESM2","tas","temperature","tgav_LL","rcp45",2256,"Simulated","C","LL",22.26555 -"CanESM2","tas","temperature","tgav_LL","rcp45",2257,"Simulated","C","LL",22.20345 -"CanESM2","tas","temperature","tgav_LL","rcp45",2258,"Simulated","C","LL",22.22135 -"CanESM2","tas","temperature","tgav_LL","rcp45",2259,"Simulated","C","LL",22.33385 -"CanESM2","tas","temperature","tgav_LL","rcp45",2260,"Simulated","C","LL",22.28645 -"CanESM2","tas","temperature","tgav_LL","rcp45",2261,"Simulated","C","LL",22.3611 -"CanESM2","tas","temperature","tgav_LL","rcp45",2262,"Simulated","C","LL",22.29305 -"CanESM2","tas","temperature","tgav_LL","rcp45",2263,"Simulated","C","LL",22.2363 -"CanESM2","tas","temperature","tgav_LL","rcp45",2264,"Simulated","C","LL",22.34025 -"CanESM2","tas","temperature","tgav_LL","rcp45",2265,"Simulated","C","LL",22.34665 -"CanESM2","tas","temperature","tgav_LL","rcp45",2266,"Simulated","C","LL",22.3455500000001 -"CanESM2","tas","temperature","tgav_LL","rcp45",2267,"Simulated","C","LL",22.2584 -"CanESM2","tas","temperature","tgav_LL","rcp45",2268,"Simulated","C","LL",22.22415 -"CanESM2","tas","temperature","tgav_LL","rcp45",2269,"Simulated","C","LL",22.27755 -"CanESM2","tas","temperature","tgav_LL","rcp45",2270,"Simulated","C","LL",22.2296 -"CanESM2","tas","temperature","tgav_LL","rcp45",2271,"Simulated","C","LL",22.2 -"CanESM2","tas","temperature","tgav_LL","rcp45",2272,"Simulated","C","LL",22.2351 -"CanESM2","tas","temperature","tgav_LL","rcp45",2273,"Simulated","C","LL",22.3205 -"CanESM2","tas","temperature","tgav_LL","rcp45",2274,"Simulated","C","LL",22.4864 -"CanESM2","tas","temperature","tgav_LL","rcp45",2275,"Simulated","C","LL",22.40425 -"CanESM2","tas","temperature","tgav_LL","rcp45",2276,"Simulated","C","LL",22.2988 -"CanESM2","tas","temperature","tgav_LL","rcp45",2277,"Simulated","C","LL",22.3061 -"CanESM2","tas","temperature","tgav_LL","rcp45",2278,"Simulated","C","LL",22.29465 -"CanESM2","tas","temperature","tgav_LL","rcp45",2279,"Simulated","C","LL",22.22055 -"CanESM2","tas","temperature","tgav_LL","rcp45",2280,"Simulated","C","LL",22.4568 -"CanESM2","tas","temperature","tgav_LL","rcp45",2281,"Simulated","C","LL",22.55355 -"CanESM2","tas","temperature","tgav_LL","rcp45",2282,"Simulated","C","LL",22.1979 -"CanESM2","tas","temperature","tgav_LL","rcp45",2283,"Simulated","C","LL",22.1772 -"CanESM2","tas","temperature","tgav_LL","rcp45",2284,"Simulated","C","LL",22.43785 -"CanESM2","tas","temperature","tgav_LL","rcp45",2285,"Simulated","C","LL",22.32655 -"CanESM2","tas","temperature","tgav_LL","rcp45",2286,"Simulated","C","LL",22.28585 -"CanESM2","tas","temperature","tgav_LL","rcp45",2287,"Simulated","C","LL",22.30105 -"CanESM2","tas","temperature","tgav_LL","rcp45",2288,"Simulated","C","LL",22.3238 -"CanESM2","tas","temperature","tgav_LL","rcp45",2289,"Simulated","C","LL",22.3703 -"CanESM2","tas","temperature","tgav_LL","rcp45",2290,"Simulated","C","LL",22.34745 -"CanESM2","tas","temperature","tgav_LL","rcp45",2291,"Simulated","C","LL",22.2207 -"CanESM2","tas","temperature","tgav_LL","rcp45",2292,"Simulated","C","LL",22.2644 -"CanESM2","tas","temperature","tgav_LL","rcp45",2293,"Simulated","C","LL",22.21245 -"CanESM2","tas","temperature","tgav_LL","rcp45",2294,"Simulated","C","LL",22.115 -"CanESM2","tas","temperature","tgav_LL","rcp45",2295,"Simulated","C","LL",22.18115 -"CanESM2","tas","temperature","tgav_LL","rcp45",2296,"Simulated","C","LL",22.26625 -"CanESM2","tas","temperature","tgav_LL","rcp45",2297,"Simulated","C","LL",22.3092 -"CanESM2","tas","temperature","tgav_LL","rcp45",2298,"Simulated","C","LL",22.3351 -"CanESM2","tas","temperature","tgav_LL","rcp45",2299,"Simulated","C","LL",22.3378 -"CanESM2","tas","temperature","tgav_LL","rcp45",2300,"Simulated","C","LL",22.28405 -"CESM1-BGC","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.7383 -"CESM1-BGC","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",14.6878 -"CESM1-BGC","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",14.6703 -"CESM1-BGC","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",14.7934 -"CESM1-BGC","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",14.7504 -"CESM1-BGC","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",14.8778 -"CESM1-BGC","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",14.8438 -"CESM1-BGC","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.7679 -"CESM1-BGC","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.9114 -"CESM1-BGC","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",14.8587 -"CESM1-BGC","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",14.8133 -"CESM1-BGC","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",14.869 -"CESM1-BGC","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",14.859 -"CESM1-BGC","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",14.8534 -"CESM1-BGC","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",14.8444 -"CESM1-BGC","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",15.0222 -"CESM1-BGC","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",15.1096 -"CESM1-BGC","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",15.049 -"CESM1-BGC","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",15.096 -"CESM1-BGC","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",15.0725 -"CESM1-BGC","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",15.159 -"CESM1-BGC","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",15.121 -"CESM1-BGC","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",15.1619 -"CESM1-BGC","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",15.0196 -"CESM1-BGC","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",15.0696 -"CESM1-BGC","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",15.0787 -"CESM1-BGC","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",15.146 -"CESM1-BGC","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",15.3294 -"CESM1-BGC","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",15.2524 -"CESM1-BGC","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",15.2823 -"CESM1-BGC","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",15.3327 -"CESM1-BGC","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",15.3393 -"CESM1-BGC","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",15.1579 -"CESM1-BGC","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",15.1482 -"CESM1-BGC","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",15.3028 -"CESM1-BGC","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",15.4894 -"CESM1-BGC","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",15.4337 -"CESM1-BGC","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",15.4690000000001 -"CESM1-BGC","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",15.5028 -"CESM1-BGC","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",15.4732 -"CESM1-BGC","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",15.5244 -"CESM1-BGC","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",15.5275 -"CESM1-BGC","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",15.4705 -"CESM1-BGC","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",15.4674 -"CESM1-BGC","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",15.6688 -"CESM1-BGC","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",15.7516 -"CESM1-BGC","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",15.5823 -"CESM1-BGC","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",15.6294 -"CESM1-BGC","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",15.6694 -"CESM1-BGC","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",15.7312 -"CESM1-BGC","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",15.7474 -"CESM1-BGC","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",15.8441 -"CESM1-BGC","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",15.9584 -"CESM1-BGC","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",15.6326 -"CESM1-BGC","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",15.6859 -"CESM1-BGC","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",15.7851 -"CESM1-BGC","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",15.8072 -"CESM1-BGC","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",15.7595 -"CESM1-BGC","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",15.9208 -"CESM1-BGC","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",15.9212 -"CESM1-BGC","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",15.8286 -"CESM1-BGC","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",15.9556 -"CESM1-BGC","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",15.907 -"CESM1-BGC","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",15.73 -"CESM1-BGC","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",15.7443 -"CESM1-BGC","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",15.8893 -"CESM1-BGC","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",15.8365 -"CESM1-BGC","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",15.7491 -"CESM1-BGC","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",15.9387 -"CESM1-BGC","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",15.9732 -"CESM1-BGC","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",15.9039 -"CESM1-BGC","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",15.9348 -"CESM1-BGC","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",15.8996 -"CESM1-BGC","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",15.9501 -"CESM1-BGC","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",16.0871 -"CESM1-BGC","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",15.9628 -"CESM1-BGC","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",15.8787 -"CESM1-BGC","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",15.9233 -"CESM1-BGC","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",15.9306 -"CESM1-BGC","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",15.9376 -"CESM1-BGC","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",15.9527 -"CESM1-BGC","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",15.9119 -"CESM1-BGC","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",15.8023 -"CESM1-BGC","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",15.8472 -"CESM1-BGC","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",15.921 -"CESM1-BGC","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",15.9587 -"CESM1-BGC","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",15.9444 -"CESM1-BGC","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",15.8654 -"CESM1-BGC","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",15.8908 -"CESM1-BGC","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",16.0292 -"CESM1-BGC","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",15.9412 -"CESM1-BGC","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",15.9325 -"CESM1-BGC","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",15.9052 -"CESM1-BGC","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",15.9081 -"CESM1-BGC","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",15.9998000000001 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-9.81359999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-9.66039999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-9.77009999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-9.5702 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-9.74369999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-9.55419999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-9.41699999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-9.7663 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-9.42499999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-9.87430000000001 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-10.0182 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-9.71429999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-9.81719999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-9.60499999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-10.1798 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-9.5564 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-9.28629999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-9.27479999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-9.2423 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-9.40279999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-9.10149999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-9.19989999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-8.89019999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-9.34139999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-9.2063 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-9.20369999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-9.19439999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-8.72339999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-8.95439999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-8.88499999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-8.90039999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-8.6687 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-9.13829999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-9.27609999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-9.19919999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-8.7278 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-8.72769999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-8.7543 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-8.90459999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-8.82439999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-8.7602 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-8.64189999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-8.60209999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-8.61399999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-8.31829999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-8.2681 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-8.53989999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-8.40259999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-8.23839999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-8.25559999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-8.08579999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-8.0829 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-7.65809999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-8.54239999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-8.56659999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-8.54219999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-8.23359999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-8.32249999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-8.12439999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-7.90389999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-8.12309999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-7.98939999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-7.98499999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-8.31319999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-8.34299999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-8.13309999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-8.30839999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-8.44779999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-8.072 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-7.88229999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-7.90159999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-7.9581 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-8.0224 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-8.11789999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-7.60599999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-7.654 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-7.94869999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-8.28829999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-8.33589999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-7.85359999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-7.83049999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-8.02359999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-8.28129999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-8.0455 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-7.94599999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-8.10499999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-7.98089999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-7.93689999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-8.15049999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-8.0256 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-7.76509999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-7.82369999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-8.16179999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-8.28559999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-8.07459999999998 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",20.2854 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",20.1888 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",20.1921 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",20.2979 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",20.2844 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",20.3978 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",20.325 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",20.3109 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",20.4098 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",20.4466 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",20.4235 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",20.4232 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",20.4341 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",20.3793 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",20.4981 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",20.5752 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",20.6214000000001 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",20.5445 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",20.5948 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",20.6022 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",20.6401 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",20.6159 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",20.5961 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",20.5235 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",20.5543 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",20.5648 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",20.6452 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",20.7637 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",20.7215 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",20.7424 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",20.8077 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",20.7635 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",20.6472 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",20.6665 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",20.8385 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",20.9608 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",20.8925 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",20.9418 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",21.0172 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",20.9627 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",21.011 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",20.9882 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",20.9093 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",20.9081 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",21.0882 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",21.1785 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",21.0323 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",21.059 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",21.071 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",21.1505 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",21.1321 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",21.25 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",21.2942 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",21.0944 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",21.1653 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",21.2814 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",21.2388 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",21.2004 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",21.3534 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",21.304 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",21.24 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",21.3655 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",21.305 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",21.1621 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",21.1864 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",21.3166000000001 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",21.2916 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",21.2159 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",21.3635 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",21.363 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",21.2822 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",21.3329 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",21.3043 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",21.3879 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",21.4401 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",21.2985 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",21.262 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",21.3934 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",21.4131 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",21.3128 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",21.326 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",21.3196 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",21.2435 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",21.2452 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",21.3132 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",21.3954 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",21.3498 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",21.243 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",21.3224 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",21.4639 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",21.2972 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",21.2997 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",21.3426 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",21.3742 -"CESM1-BGC","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",21.439 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.1251 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",14.0968 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",14.2513 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",14.2336 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",14.2054 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",14.1135 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",14.083 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.0872 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.114 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",14.0703 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",14.1743 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",14.2619 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",14.2229 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",14.1031 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",14.2178 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",14.2766 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",14.1785 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",14.4401 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",14.515 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",14.3647 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",14.3375 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",14.4233 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",14.3379 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",14.5195000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",14.4614 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",14.5588 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",14.4534 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",14.3662 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",14.4607 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",14.4954 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",14.4533 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",14.3362 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",14.3346 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",14.4435 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",14.396 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",14.6324 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",14.5317 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",14.5001 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",14.4614 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",14.4959 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",14.6931 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",14.8027 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",14.7257 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",14.5499 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",14.7317 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",14.8345 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",15.0261 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",14.8407 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",14.8056 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",14.9859 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",14.7848 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",14.6745 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",14.8228 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",14.8771 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",14.8536 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",14.8507 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",14.6459 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",14.6425 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",14.9126 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",14.8376 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",14.9096 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",14.8801 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",14.7976 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",14.7771 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",14.7819 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",14.8363000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",15.0069 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",14.9312 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",14.7947 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",14.8437 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",14.8042 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",14.8441 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",14.9025 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",14.861 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",14.9472 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",14.7932 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",14.8058 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",14.7468 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",14.875 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",14.7926 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",14.9388 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",15.0229 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",14.8506 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",14.8588 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",14.965 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",14.7872 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",14.7864 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",14.8828 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",14.9607 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",14.7794 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",14.7828 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",14.9069 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",14.9122 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",14.8541 -"GFDL-ESM2G","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",14.8611 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-8.6103 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-8.709 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-8.62099999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-8.5222 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-8.23059999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-8.42159999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-8.84649999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-8.92309999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-8.77789999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-9.00669999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-8.76619999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-8.63709999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-8.42769999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-8.73469999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-8.83639999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-8.52599999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-8.66379999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-8.1943 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-8.30809999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-8.303 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-8.46389999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-8.03109999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-8.25469999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-7.7244 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-8.07749999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-8.13419999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-8.4812 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-8.43759999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-8.37649999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-8.41309999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-8.26769999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-8.48769999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-8.7022 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-8.6026 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-8.39759999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-8.07469999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-8.02169999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-8.10019999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-8.42589999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-8.10239999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-7.88439999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-7.69259999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-7.97429999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-7.9649 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-7.65039999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-7.9359 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-7.40049999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-7.90219999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-7.79389999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-7.55399999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-7.86129999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-7.9477 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-7.90779999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-7.99009999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-7.82029999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-7.798 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-8.22199999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-8.1223 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-7.5206 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-7.50459999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-7.35269999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-7.46699999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-8.17409999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-8.07679999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-7.79389999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-7.66889999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-7.26279999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-7.80239999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-7.88389999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-7.8023 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-7.71379999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-7.71659999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-7.36589999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-7.98919999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-7.81029999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-8.04909999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-7.97799999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-8.05939999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-7.78739999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-7.87329999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-7.57909999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-7.74549999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-7.97329999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-8.18680000000001 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-7.78269999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-7.80559999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-7.90839999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-7.64349999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-7.24679999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-7.93209999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-8.12889999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-7.6703 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-7.94919999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-7.87739999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-7.56999999999999 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",19.2792 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",19.2668 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",19.4364 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",19.3923 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",19.2916 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",19.2222 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",19.2811 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",19.3035 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",19.3036 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",19.3018 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",19.3749 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",19.4531 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",19.3578 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",19.2804 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",19.4442 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",19.4459 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",19.3568 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",19.5713 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",19.689 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",19.5034 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",19.5066 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",19.5137 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",19.4596 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",19.5621 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",19.571 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",19.7033 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",19.6526 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",19.5357 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",19.6378 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",19.6888 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",19.6041 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",19.5103 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",19.5571 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",19.668 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",19.5632 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",19.7801 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",19.6445000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",19.6236 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",19.6499 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",19.6189 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",19.8114 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",19.9024 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",19.8718 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",19.6539 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",19.8056 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",19.9966 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",20.1102 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",19.9965 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",19.9288 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",20.0957 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",19.9187 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",19.803 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",19.9758 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",20.061 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",19.9937 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",19.9851 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",19.8301 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",19.8032 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",19.9982 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",19.9026 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",19.9564 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",19.9461 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",20.0052 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",19.9581 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",19.8998 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",19.9382 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",20.0554 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",20.0848 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",19.9359 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",19.9775 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",19.909 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",19.9586 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",19.9507 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",20.0411 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",20.1063 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",19.9716 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",19.9708 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",19.917 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",20.0126 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",19.931 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",20.0435 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",20.1845 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",20.0248 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",20.0833 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",20.1218 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",19.9089 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",19.9312 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",19.9894 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",19.9951 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",19.9281 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",19.9769 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",20.0251 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",20.0949 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",20.0073 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",19.9462 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2005,"Simulated","C","global",12.3903 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.366225 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",14.4364 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",14.387925 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",14.3755 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",14.3606 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",14.42395 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",14.495475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.462525 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.56945 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",14.599325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",14.6886 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",14.77555 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",14.769225 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",14.777525 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",14.7434 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",14.849375 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",14.849425 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",14.8741 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",14.88115 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",14.91555 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",15.015825 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",15.029975 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",15.084375 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",15.0834 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",15.091 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",15.1461 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",15.186775 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",15.278175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",15.185225 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",15.172975 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",15.229475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",15.29545 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",15.3507 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",15.4016 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",15.4154 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",15.51175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",15.4877 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",15.5332 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",15.532475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",15.57615 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",15.732625 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",15.735525 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",15.7688 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",15.769425 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",15.747325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",15.71545 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",15.83465 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",15.883875 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",15.9039 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",15.927325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",15.9706 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",15.997175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",16.041425 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",16.021675 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",16.0779 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",16.070475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",16.071625 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",16.068275 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",16.11145 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",16.093625 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",16.23 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",16.221175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",16.1927 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",16.17265 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",16.17825 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",16.24665 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",16.2144 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",16.2789 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",16.299525 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",16.27665 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",16.319325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",16.4126 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",16.5174 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",16.4775 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",16.4779 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",16.428175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",16.446075 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",16.43555 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",16.478325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",16.5056 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",16.473375 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",16.428475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",16.44135 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",16.412325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",16.396325 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",16.473025 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",16.531475 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",16.544825 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",16.506825 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",16.46375 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",16.508925 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",16.526575 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",16.5351 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",16.519075 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",16.415675 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",16.5799 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",16.6222 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2103,"Simulated","C","global",16.5553 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2104,"Simulated","C","global",16.353 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2105,"Simulated","C","global",16.3704 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2106,"Simulated","C","global",16.4649 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2107,"Simulated","C","global",16.4465 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2108,"Simulated","C","global",16.4993 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2109,"Simulated","C","global",16.649 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2110,"Simulated","C","global",16.6987 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2111,"Simulated","C","global",16.7582 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2112,"Simulated","C","global",16.6316 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2113,"Simulated","C","global",16.5457 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2114,"Simulated","C","global",16.54 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2115,"Simulated","C","global",16.5808 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2116,"Simulated","C","global",16.6404 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2117,"Simulated","C","global",16.5082 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2118,"Simulated","C","global",16.6418 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2119,"Simulated","C","global",16.6647 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2120,"Simulated","C","global",16.624 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2121,"Simulated","C","global",16.5824 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2122,"Simulated","C","global",16.7622 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2123,"Simulated","C","global",16.747 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2124,"Simulated","C","global",16.6723 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2125,"Simulated","C","global",16.7171 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2126,"Simulated","C","global",16.7744 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2127,"Simulated","C","global",16.7341 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2128,"Simulated","C","global",16.723 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2129,"Simulated","C","global",16.729 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2130,"Simulated","C","global",16.7335 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2131,"Simulated","C","global",16.7599 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2132,"Simulated","C","global",16.8111 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2133,"Simulated","C","global",16.8593 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2134,"Simulated","C","global",16.9178 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2135,"Simulated","C","global",16.8024 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2136,"Simulated","C","global",16.6946 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2137,"Simulated","C","global",16.6964 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2138,"Simulated","C","global",16.7101 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2139,"Simulated","C","global",16.7024 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2140,"Simulated","C","global",16.6517 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2141,"Simulated","C","global",16.5624 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2142,"Simulated","C","global",16.6208 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2143,"Simulated","C","global",16.6227 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2144,"Simulated","C","global",16.5916 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2145,"Simulated","C","global",16.5704 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2146,"Simulated","C","global",16.4962 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2147,"Simulated","C","global",16.6065 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2148,"Simulated","C","global",16.7608 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2149,"Simulated","C","global",16.8337 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2150,"Simulated","C","global",16.7103 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2151,"Simulated","C","global",16.8061 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2152,"Simulated","C","global",16.7466 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2153,"Simulated","C","global",16.5272000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2154,"Simulated","C","global",16.5436 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2155,"Simulated","C","global",16.7616 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2156,"Simulated","C","global",16.9154 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2157,"Simulated","C","global",16.7799 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2158,"Simulated","C","global",16.8182 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2159,"Simulated","C","global",16.8823 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2160,"Simulated","C","global",16.7345 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2161,"Simulated","C","global",16.731 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2162,"Simulated","C","global",16.7515 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2163,"Simulated","C","global",16.7474 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2164,"Simulated","C","global",16.7983 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2165,"Simulated","C","global",16.7965 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2166,"Simulated","C","global",16.8376 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2167,"Simulated","C","global",16.6892 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2168,"Simulated","C","global",16.6354 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2169,"Simulated","C","global",16.6201 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2170,"Simulated","C","global",16.5589000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2171,"Simulated","C","global",16.7053 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2172,"Simulated","C","global",16.7527 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2173,"Simulated","C","global",16.6382 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2174,"Simulated","C","global",16.573 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2175,"Simulated","C","global",16.6801 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2176,"Simulated","C","global",16.6993000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2177,"Simulated","C","global",16.6811 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2178,"Simulated","C","global",16.7899 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2179,"Simulated","C","global",16.8115 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2180,"Simulated","C","global",16.778 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2181,"Simulated","C","global",16.8343 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2182,"Simulated","C","global",16.7783 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2183,"Simulated","C","global",16.838 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2184,"Simulated","C","global",16.8733 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2185,"Simulated","C","global",16.8405 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2186,"Simulated","C","global",16.9488 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2187,"Simulated","C","global",16.8957 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2188,"Simulated","C","global",16.939 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2189,"Simulated","C","global",17.1098 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2190,"Simulated","C","global",17.1147 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2191,"Simulated","C","global",17.1378 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2192,"Simulated","C","global",17.1278 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2193,"Simulated","C","global",17.1538 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2194,"Simulated","C","global",17.1501 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2195,"Simulated","C","global",16.9487 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2196,"Simulated","C","global",16.8978 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2197,"Simulated","C","global",16.8509 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2198,"Simulated","C","global",16.9643 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2199,"Simulated","C","global",16.9375 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2200,"Simulated","C","global",16.7941 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2201,"Simulated","C","global",16.84 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2202,"Simulated","C","global",16.8083 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2203,"Simulated","C","global",16.8698 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2204,"Simulated","C","global",16.9626 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2205,"Simulated","C","global",16.9662 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2206,"Simulated","C","global",16.8331 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2207,"Simulated","C","global",16.7504 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2208,"Simulated","C","global",16.7963 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2209,"Simulated","C","global",16.8281 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2210,"Simulated","C","global",16.7916 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2211,"Simulated","C","global",16.7196 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2212,"Simulated","C","global",16.7236 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2213,"Simulated","C","global",16.6759 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2214,"Simulated","C","global",16.8057 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2215,"Simulated","C","global",16.8313 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2216,"Simulated","C","global",16.735 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2217,"Simulated","C","global",16.7891 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2218,"Simulated","C","global",16.9076 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2219,"Simulated","C","global",16.914 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2220,"Simulated","C","global",16.8713 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2221,"Simulated","C","global",17.0157 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2222,"Simulated","C","global",16.8306 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2223,"Simulated","C","global",16.8198 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2224,"Simulated","C","global",16.8353 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2225,"Simulated","C","global",16.9422 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2226,"Simulated","C","global",16.9196 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2227,"Simulated","C","global",17.0345 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2228,"Simulated","C","global",17.1335 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2229,"Simulated","C","global",17.1124 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2230,"Simulated","C","global",17.0803 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2231,"Simulated","C","global",16.986 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2232,"Simulated","C","global",16.9901 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2233,"Simulated","C","global",16.9625 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2234,"Simulated","C","global",17.1003 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2235,"Simulated","C","global",17.1946 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2236,"Simulated","C","global",17.0965 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2237,"Simulated","C","global",17.1051 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2238,"Simulated","C","global",17.0322 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2239,"Simulated","C","global",17.0894 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2240,"Simulated","C","global",17.1477 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2241,"Simulated","C","global",17.1353 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2242,"Simulated","C","global",16.975 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2243,"Simulated","C","global",16.9276 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2244,"Simulated","C","global",16.9901 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2245,"Simulated","C","global",17.0191 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2246,"Simulated","C","global",17.1367 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2247,"Simulated","C","global",17.1424 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2248,"Simulated","C","global",17.1925 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2249,"Simulated","C","global",17.151 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2250,"Simulated","C","global",17.0926 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2251,"Simulated","C","global",17.0358 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2252,"Simulated","C","global",16.9259 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2253,"Simulated","C","global",16.8707 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2254,"Simulated","C","global",16.9447 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2255,"Simulated","C","global",17.0152 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2256,"Simulated","C","global",17.0406 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2257,"Simulated","C","global",17.0933 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2258,"Simulated","C","global",17.1583 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2259,"Simulated","C","global",17.0759 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2260,"Simulated","C","global",17.0321 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2261,"Simulated","C","global",16.9993 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2262,"Simulated","C","global",16.769 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2263,"Simulated","C","global",16.8436 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2264,"Simulated","C","global",17.0093 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2265,"Simulated","C","global",16.9895 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2266,"Simulated","C","global",16.9514 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2267,"Simulated","C","global",17.1233 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2268,"Simulated","C","global",17.1285 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2269,"Simulated","C","global",17.2753 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2270,"Simulated","C","global",17.1926 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2271,"Simulated","C","global",17.1084 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2272,"Simulated","C","global",17.0248 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2273,"Simulated","C","global",17.0426 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2274,"Simulated","C","global",17.1018 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2275,"Simulated","C","global",16.9974 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2276,"Simulated","C","global",17.1175 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2277,"Simulated","C","global",16.9961 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2278,"Simulated","C","global",17.2383 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2279,"Simulated","C","global",17.3491 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2280,"Simulated","C","global",17.2447 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2281,"Simulated","C","global",17.1888 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2282,"Simulated","C","global",17.2319 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2283,"Simulated","C","global",17.2662 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2284,"Simulated","C","global",17.2111 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2285,"Simulated","C","global",17.1781 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2286,"Simulated","C","global",17.1188 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2287,"Simulated","C","global",17.1936 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2288,"Simulated","C","global",17.2911 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2289,"Simulated","C","global",17.2505 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2290,"Simulated","C","global",17.2039 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2291,"Simulated","C","global",17.2786 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2292,"Simulated","C","global",17.1847 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2293,"Simulated","C","global",17.1071 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2294,"Simulated","C","global",17.2196 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2295,"Simulated","C","global",17.13 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2296,"Simulated","C","global",17.1188 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2297,"Simulated","C","global",17.2229 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2298,"Simulated","C","global",17.3401 -"HadGEM2-ES","tas","temperature","tgav","rcp45",2299,"Simulated","C","global",17.3562 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2005,"Simulated","C","HL",-11.142025 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-8.23102499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-8.29082499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-8.26847499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-8.21147499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-8.27392499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-8.22124999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-8.10929999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-8.23847499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-7.98402499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-7.90959999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-7.79702499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-7.71842499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-7.74489999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-7.59392499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-7.68364999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-7.55099999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-7.65664999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-7.48489999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-7.49117499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-7.65912499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-7.23977499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-7.18074999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-7.34622499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-7.36042499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-7.32507499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-7.14107499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-7.08507499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-6.86592499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-6.95004999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-7.08097499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-7.08907499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-6.96844999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-6.77809999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-6.83942499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-6.73067499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-6.54787499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-6.57237499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-6.34632499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-6.47947499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-6.41032499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-6.15934999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-6.28064999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-6.17729999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-6.14684999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-6.24659999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-6.21999999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-6.04709999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-5.94644999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-5.92649999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-5.98954999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-5.82822499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-5.94199999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-5.67167499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-5.77062499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-5.65392499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-5.68134999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-5.85639999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-5.76909999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-5.78449999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-5.7887 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-5.50689999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-5.49249999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-5.51272499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-5.57354999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-5.56057499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-5.27857499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-5.35552499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-5.36934999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-5.53494999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-5.45209999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-5.47824999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-5.31522499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-5.04067499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-5.08557499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-5.09082499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-5.12404999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-5.18039999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-5.23612499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-5.19817499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-5.16087499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-4.98647499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-5.18334999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-5.15182499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-5.28052499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-5.26909999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-5.04749999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-5.12077499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-4.98232499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-5.04222499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-5.49004999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-5.28937499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-5.24144999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-5.15859999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-5.05157499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-5.19304999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-4.96209999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-4.96420000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2103,"Simulated","C","HL",-5.07869999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2104,"Simulated","C","HL",-5.31359999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2105,"Simulated","C","HL",-5.35399999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2106,"Simulated","C","HL",-5.02709999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2107,"Simulated","C","HL",-5.05179999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2108,"Simulated","C","HL",-5.20249999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2109,"Simulated","C","HL",-5.07739999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2110,"Simulated","C","HL",-4.86609999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2111,"Simulated","C","HL",-4.74709999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2112,"Simulated","C","HL",-4.84359999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2113,"Simulated","C","HL",-5.0335 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2114,"Simulated","C","HL",-5.26589999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2115,"Simulated","C","HL",-4.8972 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2116,"Simulated","C","HL",-5.05059999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2117,"Simulated","C","HL",-5.1678 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2118,"Simulated","C","HL",-4.8664 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2119,"Simulated","C","HL",-4.9316 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2120,"Simulated","C","HL",-4.6995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2121,"Simulated","C","HL",-4.75779999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2122,"Simulated","C","HL",-4.5924 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2123,"Simulated","C","HL",-4.41399999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2124,"Simulated","C","HL",-4.71789999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2125,"Simulated","C","HL",-4.80419999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2126,"Simulated","C","HL",-4.69119999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2127,"Simulated","C","HL",-4.58029999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2128,"Simulated","C","HL",-4.56599999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2129,"Simulated","C","HL",-4.53619999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2130,"Simulated","C","HL",-4.5181 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2131,"Simulated","C","HL",-4.58679999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2132,"Simulated","C","HL",-4.44 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2133,"Simulated","C","HL",-4.52969999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2134,"Simulated","C","HL",-4.4393 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2135,"Simulated","C","HL",-4.28869999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2136,"Simulated","C","HL",-4.58389999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2137,"Simulated","C","HL",-4.55379999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2138,"Simulated","C","HL",-4.637 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2139,"Simulated","C","HL",-4.9228 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2140,"Simulated","C","HL",-4.589 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2141,"Simulated","C","HL",-4.93119999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2142,"Simulated","C","HL",-4.74989999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2143,"Simulated","C","HL",-4.78039999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2144,"Simulated","C","HL",-4.9391 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2145,"Simulated","C","HL",-4.82909999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2146,"Simulated","C","HL",-4.8227 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2147,"Simulated","C","HL",-4.55829999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2148,"Simulated","C","HL",-4.43759999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2149,"Simulated","C","HL",-4.50579999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2150,"Simulated","C","HL",-4.56829999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2151,"Simulated","C","HL",-4.47359999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2152,"Simulated","C","HL",-4.64979999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2153,"Simulated","C","HL",-4.8605 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2154,"Simulated","C","HL",-4.84249999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2155,"Simulated","C","HL",-4.58389999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2156,"Simulated","C","HL",-4.36439999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2157,"Simulated","C","HL",-4.42829999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2158,"Simulated","C","HL",-4.33699999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2159,"Simulated","C","HL",-4.35829999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2160,"Simulated","C","HL",-4.69649999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2161,"Simulated","C","HL",-4.70229999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2162,"Simulated","C","HL",-4.70929999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2163,"Simulated","C","HL",-4.68539999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2164,"Simulated","C","HL",-4.49109999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2165,"Simulated","C","HL",-4.3279 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2166,"Simulated","C","HL",-4.39669999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2167,"Simulated","C","HL",-4.8442 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2168,"Simulated","C","HL",-4.92609999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2169,"Simulated","C","HL",-4.92629999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2170,"Simulated","C","HL",-4.94129999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2171,"Simulated","C","HL",-4.91129999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2172,"Simulated","C","HL",-4.7054 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2173,"Simulated","C","HL",-4.71459999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2174,"Simulated","C","HL",-4.78699999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2175,"Simulated","C","HL",-4.72389999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2176,"Simulated","C","HL",-4.52199999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2177,"Simulated","C","HL",-4.71009999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2178,"Simulated","C","HL",-4.40189999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2179,"Simulated","C","HL",-4.26749999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2180,"Simulated","C","HL",-4.2688 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2181,"Simulated","C","HL",-4.31629999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2182,"Simulated","C","HL",-4.71859999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2183,"Simulated","C","HL",-4.59859999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2184,"Simulated","C","HL",-4.28379999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2185,"Simulated","C","HL",-4.43809999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2186,"Simulated","C","HL",-4.08669999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2187,"Simulated","C","HL",-4.14099999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2188,"Simulated","C","HL",-4.27539999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2189,"Simulated","C","HL",-4.0308 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2190,"Simulated","C","HL",-4.3175 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2191,"Simulated","C","HL",-4.0385 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2192,"Simulated","C","HL",-3.84469999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2193,"Simulated","C","HL",-3.92079999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2194,"Simulated","C","HL",-3.82829999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2195,"Simulated","C","HL",-4.03459999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2196,"Simulated","C","HL",-4.0077 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2197,"Simulated","C","HL",-4.19619999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2198,"Simulated","C","HL",-4.06099999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2199,"Simulated","C","HL",-4.17609999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2200,"Simulated","C","HL",-4.64269999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2201,"Simulated","C","HL",-4.37009999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2202,"Simulated","C","HL",-4.2921 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2203,"Simulated","C","HL",-4.24029999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2204,"Simulated","C","HL",-4.25669999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2205,"Simulated","C","HL",-4.49969999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2206,"Simulated","C","HL",-4.46719999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2207,"Simulated","C","HL",-4.56559999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2208,"Simulated","C","HL",-4.53139999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2209,"Simulated","C","HL",-4.85509999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2210,"Simulated","C","HL",-4.40729999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2211,"Simulated","C","HL",-4.62379999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2212,"Simulated","C","HL",-4.7808 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2213,"Simulated","C","HL",-4.84359999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2214,"Simulated","C","HL",-4.71929999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2215,"Simulated","C","HL",-4.67329999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2216,"Simulated","C","HL",-4.6388 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2217,"Simulated","C","HL",-4.6189 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2218,"Simulated","C","HL",-4.26189999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2219,"Simulated","C","HL",-4.13979999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2220,"Simulated","C","HL",-4.44299999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2221,"Simulated","C","HL",-3.98269999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2222,"Simulated","C","HL",-4.3614 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2223,"Simulated","C","HL",-4.35069999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2224,"Simulated","C","HL",-4.26339999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2225,"Simulated","C","HL",-4.11439999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2226,"Simulated","C","HL",-4.55009999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2227,"Simulated","C","HL",-4.23169999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2228,"Simulated","C","HL",-4.08369999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2229,"Simulated","C","HL",-3.9006 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2230,"Simulated","C","HL",-3.91249999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2231,"Simulated","C","HL",-4.02369999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2232,"Simulated","C","HL",-3.95759999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2233,"Simulated","C","HL",-3.91369999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2234,"Simulated","C","HL",-4.0419 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2235,"Simulated","C","HL",-4.03449999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2236,"Simulated","C","HL",-3.84899999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2237,"Simulated","C","HL",-3.90429999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2238,"Simulated","C","HL",-3.87359999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2239,"Simulated","C","HL",-4.03969999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2240,"Simulated","C","HL",-3.76589999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2241,"Simulated","C","HL",-3.6918 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2242,"Simulated","C","HL",-4.0831 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2243,"Simulated","C","HL",-4.25039999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2244,"Simulated","C","HL",-4.1395 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2245,"Simulated","C","HL",-4.27229999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2246,"Simulated","C","HL",-4.23749999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2247,"Simulated","C","HL",-3.90339999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2248,"Simulated","C","HL",-4.07979999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2249,"Simulated","C","HL",-4.20139999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2250,"Simulated","C","HL",-4.19559999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2251,"Simulated","C","HL",-4.30879999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2252,"Simulated","C","HL",-4.23539999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2253,"Simulated","C","HL",-4.6318 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2254,"Simulated","C","HL",-4.38729999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2255,"Simulated","C","HL",-4.30239999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2256,"Simulated","C","HL",-4.28119999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2257,"Simulated","C","HL",-4.16999999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2258,"Simulated","C","HL",-3.96949999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2259,"Simulated","C","HL",-4.07659999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2260,"Simulated","C","HL",-4.26619999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2261,"Simulated","C","HL",-4.28089999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2262,"Simulated","C","HL",-4.4024 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2263,"Simulated","C","HL",-4.55459999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2264,"Simulated","C","HL",-4.2774 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2265,"Simulated","C","HL",-4.21019999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2266,"Simulated","C","HL",-4.16389999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2267,"Simulated","C","HL",-3.96839999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2268,"Simulated","C","HL",-4.05459999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2269,"Simulated","C","HL",-3.92009999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2270,"Simulated","C","HL",-3.94379999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2271,"Simulated","C","HL",-4.09889999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2272,"Simulated","C","HL",-4.00700000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2273,"Simulated","C","HL",-4.0068 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2274,"Simulated","C","HL",-3.82929999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2275,"Simulated","C","HL",-4.1114 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2276,"Simulated","C","HL",-3.78099999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2277,"Simulated","C","HL",-4.01669999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2278,"Simulated","C","HL",-3.98109999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2279,"Simulated","C","HL",-3.846 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2280,"Simulated","C","HL",-3.65619999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2281,"Simulated","C","HL",-3.8886 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2282,"Simulated","C","HL",-3.8537 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2283,"Simulated","C","HL",-3.84719999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2284,"Simulated","C","HL",-3.96009999999995 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2285,"Simulated","C","HL",-3.78979999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2286,"Simulated","C","HL",-3.8295 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2287,"Simulated","C","HL",-3.91089999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2288,"Simulated","C","HL",-3.66089999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2289,"Simulated","C","HL",-3.738 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2290,"Simulated","C","HL",-3.93989999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2291,"Simulated","C","HL",-3.64349999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2292,"Simulated","C","HL",-3.81079999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2293,"Simulated","C","HL",-3.89079999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2294,"Simulated","C","HL",-3.9117 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2295,"Simulated","C","HL",-4.21420000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2296,"Simulated","C","HL",-3.9905 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2297,"Simulated","C","HL",-3.96609999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2298,"Simulated","C","HL",-3.91059999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp45",2299,"Simulated","C","HL",-3.4348 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2005,"Simulated","C","LL",17.80945 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",19.570775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",19.67085 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",19.606075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",19.57765 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",19.573725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",19.639525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",19.701775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",19.691 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",19.7639 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",19.783475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",19.8674 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",19.9563 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",19.95465 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",19.930025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",19.908775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",20.008525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",20.032925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",20.0238 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",20.0339 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",20.1149 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",20.141725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",20.1455 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",20.250475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",20.2526 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",20.2538 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",20.2792 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",20.3164 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",20.37835 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",20.283325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",20.29845 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",20.3698 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",20.42315 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",20.447325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",20.524025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",20.51595 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",20.592425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",20.5685 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",20.572425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",20.602175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",20.63995 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",20.774725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",20.80615 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",20.8233 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",20.81705 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",20.812875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",20.767525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",20.874375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",20.91175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",20.931775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",20.97515 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",20.99115 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",21.050025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",21.04225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",21.04075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",21.08305 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",21.08025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",21.121925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",21.0977 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",21.154375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",21.1334 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",21.2363 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",21.22215 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",21.191675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",21.1811 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",21.185 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",21.204175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",21.182225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",21.2648 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",21.32825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",21.281025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",21.3396 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",21.4168 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",21.482525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",21.44375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",21.445475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",21.391875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",21.426925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",21.426825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",21.470675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",21.49565 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",21.4159 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",21.406025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",21.41455 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",21.408475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",21.3862 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",21.4295 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",21.5183 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",21.5028 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",21.469825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",21.519975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",21.5294 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",21.54005 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",21.53145 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",21.487 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",21.392475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",21.5414 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",21.5938 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2103,"Simulated","C","LL",21.5379 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2104,"Simulated","C","LL",21.3431 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2105,"Simulated","C","LL",21.3738 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2106,"Simulated","C","LL",21.4147 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2107,"Simulated","C","LL",21.398 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2108,"Simulated","C","LL",21.4975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2109,"Simulated","C","LL",21.6529 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2110,"Simulated","C","LL",21.6654 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2111,"Simulated","C","LL",21.7112 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2112,"Simulated","C","LL",21.5776 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2113,"Simulated","C","LL",21.5157 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2114,"Simulated","C","LL",21.5621 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2115,"Simulated","C","LL",21.5275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2116,"Simulated","C","LL",21.6361 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2117,"Simulated","C","LL",21.5005 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2118,"Simulated","C","LL",21.5953 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2119,"Simulated","C","LL",21.6386 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2120,"Simulated","C","LL",21.5351 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2121,"Simulated","C","LL",21.4974 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2122,"Simulated","C","LL",21.6806 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2123,"Simulated","C","LL",21.6207 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2124,"Simulated","C","LL",21.5988 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2125,"Simulated","C","LL",21.6738 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2126,"Simulated","C","LL",21.7183 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2127,"Simulated","C","LL",21.6431 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2128,"Simulated","C","LL",21.6261 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2129,"Simulated","C","LL",21.6267 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2130,"Simulated","C","LL",21.6281 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2131,"Simulated","C","LL",21.6764 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2132,"Simulated","C","LL",21.7056 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2133,"Simulated","C","LL",21.7855 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2134,"Simulated","C","LL",21.8367 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2135,"Simulated","C","LL",21.6601 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2136,"Simulated","C","LL",21.5953 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2137,"Simulated","C","LL",21.5907 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2138,"Simulated","C","LL",21.6266 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2139,"Simulated","C","LL",21.683 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2140,"Simulated","C","LL",21.5437 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2141,"Simulated","C","LL",21.5128 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2142,"Simulated","C","LL",21.5427 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2143,"Simulated","C","LL",21.5522 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2144,"Simulated","C","LL",21.5504 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2145,"Simulated","C","LL",21.4991 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2146,"Simulated","C","LL",21.4064 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2147,"Simulated","C","LL",21.4811 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2148,"Simulated","C","LL",21.6431 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2149,"Simulated","C","LL",21.7485 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2150,"Simulated","C","LL",21.6109 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2151,"Simulated","C","LL",21.7072 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2152,"Simulated","C","LL",21.6745 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2153,"Simulated","C","LL",21.4531 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2154,"Simulated","C","LL",21.4691 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2155,"Simulated","C","LL",21.6777 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2156,"Simulated","C","LL",21.8164 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2157,"Simulated","C","LL",21.6645 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2158,"Simulated","C","LL",21.6905 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2159,"Simulated","C","LL",21.7742 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2160,"Simulated","C","LL",21.6703 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2161,"Simulated","C","LL",21.6674 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2162,"Simulated","C","LL",21.6942 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2163,"Simulated","C","LL",21.6837 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2164,"Simulated","C","LL",21.7016 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2165,"Simulated","C","LL",21.6617 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2166,"Simulated","C","LL",21.7282 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2167,"Simulated","C","LL",21.6486 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2168,"Simulated","C","LL",21.6013 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2169,"Simulated","C","LL",21.5825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2170,"Simulated","C","LL",21.5106 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2171,"Simulated","C","LL",21.6838 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2172,"Simulated","C","LL",21.6947 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2173,"Simulated","C","LL",21.5561 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2174,"Simulated","C","LL",21.4925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2175,"Simulated","C","LL",21.6097 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2176,"Simulated","C","LL",21.5868 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2177,"Simulated","C","LL",21.6078 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2178,"Simulated","C","LL",21.6707 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2179,"Simulated","C","LL",21.6662 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2180,"Simulated","C","LL",21.6253 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2181,"Simulated","C","LL",21.7056 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2182,"Simulated","C","LL",21.7294 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2183,"Simulated","C","LL",21.775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2184,"Simulated","C","LL",21.746 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2185,"Simulated","C","LL",21.7413 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2186,"Simulated","C","LL",21.7937 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2187,"Simulated","C","LL",21.7407 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2188,"Simulated","C","LL",21.825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2189,"Simulated","C","LL",21.9788 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2190,"Simulated","C","LL",22.0508 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2191,"Simulated","C","LL",22.015 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2192,"Simulated","C","LL",21.9581 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2193,"Simulated","C","LL",22.0076 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2194,"Simulated","C","LL",21.9817 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2195,"Simulated","C","LL",21.7813 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2196,"Simulated","C","LL",21.7126 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2197,"Simulated","C","LL",21.6984 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2198,"Simulated","C","LL",21.8067 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2199,"Simulated","C","LL",21.8002 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2200,"Simulated","C","LL",21.7312 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2201,"Simulated","C","LL",21.7249 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2202,"Simulated","C","LL",21.668 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2203,"Simulated","C","LL",21.7318 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2204,"Simulated","C","LL",21.8497 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2205,"Simulated","C","LL",21.9101 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2206,"Simulated","C","LL",21.7388 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2207,"Simulated","C","LL",21.6597 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2208,"Simulated","C","LL",21.7085 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2209,"Simulated","C","LL",21.822 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2210,"Simulated","C","LL",21.674 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2211,"Simulated","C","LL",21.6353 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2212,"Simulated","C","LL",21.6763 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2213,"Simulated","C","LL",21.6321 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2214,"Simulated","C","LL",21.7631 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2215,"Simulated","C","LL",21.7841 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2216,"Simulated","C","LL",21.6577 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2217,"Simulated","C","LL",21.7197 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2218,"Simulated","C","LL",21.7833 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2219,"Simulated","C","LL",21.763 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2220,"Simulated","C","LL",21.7804 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2221,"Simulated","C","LL",21.852 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2222,"Simulated","C","LL",21.7114 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2223,"Simulated","C","LL",21.6956 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2224,"Simulated","C","LL",21.6946 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2225,"Simulated","C","LL",21.7918 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2226,"Simulated","C","LL",21.8644 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2227,"Simulated","C","LL",21.9324 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2228,"Simulated","C","LL",22.0201 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2229,"Simulated","C","LL",21.9521 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2230,"Simulated","C","LL",21.9152 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2231,"Simulated","C","LL",21.8248 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2232,"Simulated","C","LL",21.8146 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2233,"Simulated","C","LL",21.7706 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2234,"Simulated","C","LL",21.9697 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2235,"Simulated","C","LL",22.0839 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2236,"Simulated","C","LL",21.9205 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2237,"Simulated","C","LL",21.9439 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2238,"Simulated","C","LL",21.8472 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2239,"Simulated","C","LL",21.9558 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2240,"Simulated","C","LL",21.9644 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2241,"Simulated","C","LL",21.9321 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2242,"Simulated","C","LL",21.8249 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2243,"Simulated","C","LL",21.8051 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2244,"Simulated","C","LL",21.8566 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2245,"Simulated","C","LL",21.9228 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2246,"Simulated","C","LL",22.0595 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2247,"Simulated","C","LL",21.9895 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2248,"Simulated","C","LL",22.0918 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2249,"Simulated","C","LL",22.0687 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2250,"Simulated","C","LL",21.9956 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2251,"Simulated","C","LL",21.9517 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2252,"Simulated","C","LL",21.7997 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2253,"Simulated","C","LL",21.823 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2254,"Simulated","C","LL",21.8578 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2255,"Simulated","C","LL",21.9249 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2256,"Simulated","C","LL",21.9513 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2257,"Simulated","C","LL",21.9906 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2258,"Simulated","C","LL",22.0243 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2259,"Simulated","C","LL",21.9475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2260,"Simulated","C","LL",21.9374 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2261,"Simulated","C","LL",21.9004 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2262,"Simulated","C","LL",21.645 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2263,"Simulated","C","LL",21.7719 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2264,"Simulated","C","LL",21.9118 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2265,"Simulated","C","LL",21.8721 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2266,"Simulated","C","LL",21.8146 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2267,"Simulated","C","LL",21.981 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2268,"Simulated","C","LL",22.0073 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2269,"Simulated","C","LL",22.1569 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2270,"Simulated","C","LL",22.0606 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2271,"Simulated","C","LL",21.9927 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2272,"Simulated","C","LL",21.8687 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2273,"Simulated","C","LL",21.8905 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2274,"Simulated","C","LL",21.9225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2275,"Simulated","C","LL",21.859 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2276,"Simulated","C","LL",21.9308 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2277,"Simulated","C","LL",21.8356 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2278,"Simulated","C","LL",22.1255 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2279,"Simulated","C","LL",22.2306 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2280,"Simulated","C","LL",22.0584 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2281,"Simulated","C","LL",22.0433 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2282,"Simulated","C","LL",22.0882 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2283,"Simulated","C","LL",22.1289 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2284,"Simulated","C","LL",22.0872 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2285,"Simulated","C","LL",22.0073 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2286,"Simulated","C","LL",21.9434 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2287,"Simulated","C","LL",22.0543 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2288,"Simulated","C","LL",22.1167 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2289,"Simulated","C","LL",22.0845 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2290,"Simulated","C","LL",22.0738 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2291,"Simulated","C","LL",22.0974000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2292,"Simulated","C","LL",22.0203 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2293,"Simulated","C","LL",21.9432 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2294,"Simulated","C","LL",22.0864 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2295,"Simulated","C","LL",22.0458 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2296,"Simulated","C","LL",21.9806 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2297,"Simulated","C","LL",22.1031 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2298,"Simulated","C","LL",22.2344000000001 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp45",2299,"Simulated","C","LL",22.1446 -"inmcm4","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",13.8734 -"inmcm4","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",13.9497 -"inmcm4","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",13.9935 -"inmcm4","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",13.9465 -"inmcm4","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",13.9353 -"inmcm4","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",13.9282 -"inmcm4","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",13.9488 -"inmcm4","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.0084 -"inmcm4","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.0169 -"inmcm4","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",13.9114 -"inmcm4","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",13.9762 -"inmcm4","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",13.9653 -"inmcm4","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",13.9951 -"inmcm4","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",14.0245 -"inmcm4","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",13.9659 -"inmcm4","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",14.0841 -"inmcm4","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",14.0534 -"inmcm4","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",14.0595 -"inmcm4","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",14.0718 -"inmcm4","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",14.1657 -"inmcm4","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",14.1383 -"inmcm4","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",14.2321 -"inmcm4","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",14.1834 -"inmcm4","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",14.2166 -"inmcm4","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",14.284 -"inmcm4","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",14.191 -"inmcm4","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",14.2611 -"inmcm4","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",14.2505 -"inmcm4","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",14.289 -"inmcm4","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",14.4033 -"inmcm4","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",14.3604 -"inmcm4","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",14.3643 -"inmcm4","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",14.4443 -"inmcm4","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",14.3678 -"inmcm4","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",14.3804 -"inmcm4","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",14.4878 -"inmcm4","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",14.4553 -"inmcm4","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",14.37 -"inmcm4","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",14.379 -"inmcm4","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",14.4032 -"inmcm4","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",14.4358 -"inmcm4","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",14.4645 -"inmcm4","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",14.5136 -"inmcm4","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",14.5439 -"inmcm4","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",14.5117 -"inmcm4","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",14.5841 -"inmcm4","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",14.5873 -"inmcm4","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",14.6353 -"inmcm4","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",14.6354 -"inmcm4","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",14.638 -"inmcm4","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",14.6705 -"inmcm4","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",14.5606 -"inmcm4","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",14.5422 -"inmcm4","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",14.6289 -"inmcm4","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",14.7624 -"inmcm4","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",14.7677 -"inmcm4","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",14.6773 -"inmcm4","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",14.779 -"inmcm4","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",14.7269 -"inmcm4","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",14.7185 -"inmcm4","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",14.6476 -"inmcm4","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",14.7712 -"inmcm4","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",14.7484 -"inmcm4","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",14.7682 -"inmcm4","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",14.8325 -"inmcm4","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",14.8665 -"inmcm4","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",14.8846 -"inmcm4","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",14.9279 -"inmcm4","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",14.8073 -"inmcm4","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",14.8731 -"inmcm4","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",14.9109 -"inmcm4","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",14.9721 -"inmcm4","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",14.9788 -"inmcm4","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",15.0286 -"inmcm4","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",15.0437 -"inmcm4","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",14.9208 -"inmcm4","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",15.0165 -"inmcm4","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",14.9972 -"inmcm4","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",14.9836 -"inmcm4","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",15.057 -"inmcm4","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",14.8851 -"inmcm4","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",15.0128 -"inmcm4","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",15.072 -"inmcm4","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",15.06 -"inmcm4","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",15.0361 -"inmcm4","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",15.0283 -"inmcm4","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",15.0009 -"inmcm4","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",14.9955 -"inmcm4","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",14.9318 -"inmcm4","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",14.9658 -"inmcm4","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",15.0932 -"inmcm4","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",14.975 -"inmcm4","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",14.9823 -"inmcm4","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",15.0783 -"inmcm4","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",14.9792 -"inmcm4","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-8.34219999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-7.98339999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-7.83269999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-7.96429999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-7.82869999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-7.8836 -"inmcm4","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-7.79339999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-7.78909999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-7.6397 -"inmcm4","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-8.0598 -"inmcm4","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-7.82389999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-8.05449999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-7.69999999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-8.02459999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-7.9486 -"inmcm4","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-7.59249999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-7.79039999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-7.40049999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-7.65599999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-7.29829999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-7.65799999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-7.3605 -"inmcm4","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-7.35939999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-7.40940000000001 -"inmcm4","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-7.27909999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-7.5215 -"inmcm4","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-7.3433 -"inmcm4","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-7.57819999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-7.17529999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-7.16919999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-7.0403 -"inmcm4","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-7.32559999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-7.03139999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-6.83259999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-7.13139999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-6.97089999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-6.91889999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-7.2998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-6.89249999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-6.70489999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-6.75219999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-6.89529999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-6.73689999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-6.88669999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-6.93339999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-7.01219999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-7.03809999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-7.02519999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-6.95059999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-6.7099 -"inmcm4","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-6.53749999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-6.99339999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-6.76130000000001 -"inmcm4","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-6.8843 -"inmcm4","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-6.72679999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-6.524 -"inmcm4","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-6.91039999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-6.71509999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-6.93969999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-6.7484 -"inmcm4","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-6.97589999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-6.56609999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-6.67059999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-6.57239999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-6.58479999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-6.7244 -"inmcm4","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-6.40729999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-6.60309999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-6.63739999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-6.3938 -"inmcm4","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-6.33939999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-6.25349999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-6.00619999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-5.89299999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-6.03809999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-6.38999999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-6.35659999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-6.27979999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-6.10999999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-6.16589999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-6.3603 -"inmcm4","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-6.22519999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-6.03369999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-6.09449999999998 -"inmcm4","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-6.25479999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-6.19059999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-6.10109999999997 -"inmcm4","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-6.4024 -"inmcm4","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-6.35819999999995 -"inmcm4","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-6.48609999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-6.27869999999996 -"inmcm4","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-6.3365 -"inmcm4","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-6.1909 -"inmcm4","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-6.26429999999999 -"inmcm4","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-6.41879999999998 -"inmcm4","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",18.6144 -"inmcm4","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",18.6304 -"inmcm4","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",18.6514 -"inmcm4","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",18.6224 -"inmcm4","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",18.5799 -"inmcm4","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",18.583 -"inmcm4","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",18.5887 -"inmcm4","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",18.6601 -"inmcm4","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",18.6385 -"inmcm4","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",18.6002 -"inmcm4","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",18.6285 -"inmcm4","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",18.6645 -"inmcm4","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",18.625 -"inmcm4","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",18.7299 -"inmcm4","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",18.6427 -"inmcm4","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",18.71 -"inmcm4","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",18.7151 -"inmcm4","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",18.6392 -"inmcm4","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",18.7087 -"inmcm4","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",18.7462 -"inmcm4","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",18.7898 -"inmcm4","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",18.8402 -"inmcm4","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",18.7808 -"inmcm4","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",18.8317 -"inmcm4","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",18.8857 -"inmcm4","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",18.8246 -"inmcm4","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",18.8716 -"inmcm4","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",18.9089 -"inmcm4","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",18.8697 -"inmcm4","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",19.007 -"inmcm4","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",18.9274 -"inmcm4","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",18.9931 -"inmcm4","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",19.0273 -"inmcm4","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",18.8921 -"inmcm4","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",18.9712 -"inmcm4","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",19.0672 -"inmcm4","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",19.0167 -"inmcm4","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",18.9945 -"inmcm4","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",18.9185 -"inmcm4","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",18.9079 -"inmcm4","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",18.9575 -"inmcm4","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",19.0228 -"inmcm4","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",19.0486 -"inmcm4","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",19.1174 -"inmcm4","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",19.0882 -"inmcm4","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",19.1929 -"inmcm4","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",19.2023 -"inmcm4","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",19.2578 -"inmcm4","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",19.242 -"inmcm4","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",19.1938 -"inmcm4","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",19.1964 -"inmcm4","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",19.1604 -"inmcm4","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",19.0885 -"inmcm4","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",19.22 -"inmcm4","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",19.3483 -"inmcm4","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",19.3115 -"inmcm4","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",19.2843 -"inmcm4","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",19.3659 -"inmcm4","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",19.3507 -"inmcm4","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",19.2997 -"inmcm4","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",19.2622 -"inmcm4","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",19.3248 -"inmcm4","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",19.3194 -"inmcm4","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",19.3225 -"inmcm4","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",19.4031 -"inmcm4","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",19.4742 -"inmcm4","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",19.4284 -"inmcm4","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",19.5228 -"inmcm4","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",19.3838 -"inmcm4","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",19.4116 -"inmcm4","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",19.4459 -"inmcm4","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",19.5018 -"inmcm4","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",19.4571 -"inmcm4","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",19.4934 -"inmcm4","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",19.5427 -"inmcm4","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",19.4687 -"inmcm4","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",19.5777 -"inmcm4","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",19.5379 -"inmcm4","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",19.4851 -"inmcm4","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",19.5861 -"inmcm4","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",19.419 -"inmcm4","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",19.5452 -"inmcm4","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",19.5761 -"inmcm4","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",19.5746 -"inmcm4","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",19.5798 -"inmcm4","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",19.5566 -"inmcm4","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",19.5043 -"inmcm4","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",19.562 -"inmcm4","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",19.4752 -"inmcm4","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",19.5438 -"inmcm4","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",19.6541 -"inmcm4","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",19.5231 -"inmcm4","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",19.5009 -"inmcm4","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",19.633 -"inmcm4","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",19.5457 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",13.4292 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",13.458975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",13.49205 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",13.43825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",13.50115 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",13.554575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",13.576125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",13.6537 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",13.751525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",13.64885 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",13.69345 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",13.6377 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",13.7071 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",13.757225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",13.72065 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",13.8211 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",13.926075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",13.859975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",13.915025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",13.902525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",14.001375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",13.964225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",13.99535 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",14.153175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",14.071325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",14.0326 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",14.138 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",14.1744 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",14.25575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",14.282925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",14.3382 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",14.346475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",14.3693 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",14.399775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",14.468725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",14.3991 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",14.39205 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",14.4133 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",14.4431 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",14.529975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",14.57905 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",14.690875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",14.71805 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",14.796375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",14.7313 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",14.7192 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",14.7709 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",14.7917 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",14.727825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",14.791425 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",14.848725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",14.88255 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",14.989675 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",14.97575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",14.911775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",14.94215 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",15.013725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",15.01355 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",15.02455 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",15.053775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",15.008275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",15.00225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",15.065575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",15.0011 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",15.113725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",15.10855 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",15.0227 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",15.09725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",15.146825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",15.118 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",15.173675 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",15.19935 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",15.1753 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",15.094375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",15.1562 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",15.2748 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",15.22745 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",15.234875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",15.16705 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",15.226925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",15.30755 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",15.2771 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",15.308325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",15.3271 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",15.32615 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",15.26385 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",15.325425 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",15.341775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",15.37975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",15.26565 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",15.319475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",15.312225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",15.295225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",15.44435 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",15.381325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",15.6251 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",15.5862 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2103,"Simulated","C","global",15.5068 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2104,"Simulated","C","global",15.4011 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2105,"Simulated","C","global",15.5086 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2106,"Simulated","C","global",15.4495 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2107,"Simulated","C","global",15.4 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2108,"Simulated","C","global",15.4098 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2109,"Simulated","C","global",15.454 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2110,"Simulated","C","global",15.3723 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2111,"Simulated","C","global",15.5636 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2112,"Simulated","C","global",15.419 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2113,"Simulated","C","global",15.3592 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2114,"Simulated","C","global",15.3701 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2115,"Simulated","C","global",15.4004 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2116,"Simulated","C","global",15.4931 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2117,"Simulated","C","global",15.4058 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2118,"Simulated","C","global",15.5352 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2119,"Simulated","C","global",15.568 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2120,"Simulated","C","global",15.3893 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2121,"Simulated","C","global",15.2949 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2122,"Simulated","C","global",15.437 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2123,"Simulated","C","global",15.6157 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2124,"Simulated","C","global",15.437 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2125,"Simulated","C","global",15.474 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2126,"Simulated","C","global",15.3947 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2127,"Simulated","C","global",15.591 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2128,"Simulated","C","global",15.5474 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2129,"Simulated","C","global",15.3622 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2130,"Simulated","C","global",15.5331 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2131,"Simulated","C","global",15.4359 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2132,"Simulated","C","global",15.4899 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2133,"Simulated","C","global",15.455 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2134,"Simulated","C","global",15.617 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2135,"Simulated","C","global",15.5152 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2136,"Simulated","C","global",15.3751 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2137,"Simulated","C","global",15.5078 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2138,"Simulated","C","global",15.6508 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2139,"Simulated","C","global",15.3383 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2140,"Simulated","C","global",15.2396 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2141,"Simulated","C","global",15.3128 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2142,"Simulated","C","global",15.3837 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2143,"Simulated","C","global",15.59 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2144,"Simulated","C","global",15.3214 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2145,"Simulated","C","global",15.4972 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2146,"Simulated","C","global",15.3601 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2147,"Simulated","C","global",15.491 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2148,"Simulated","C","global",15.7538 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2149,"Simulated","C","global",15.4723 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2150,"Simulated","C","global",15.4637 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2151,"Simulated","C","global",15.6065 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2152,"Simulated","C","global",15.6328 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2153,"Simulated","C","global",15.5802 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2154,"Simulated","C","global",15.4842 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2155,"Simulated","C","global",15.7288 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2156,"Simulated","C","global",15.7377 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2157,"Simulated","C","global",15.7457 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2158,"Simulated","C","global",15.725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2159,"Simulated","C","global",15.681 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2160,"Simulated","C","global",15.8135 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2161,"Simulated","C","global",15.796 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2162,"Simulated","C","global",15.698 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2163,"Simulated","C","global",15.6544 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2164,"Simulated","C","global",15.5938 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2165,"Simulated","C","global",15.544 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2166,"Simulated","C","global",15.6263 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2167,"Simulated","C","global",15.5374 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2168,"Simulated","C","global",15.6354 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2169,"Simulated","C","global",15.6663 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2170,"Simulated","C","global",15.5934 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2171,"Simulated","C","global",15.5843 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2172,"Simulated","C","global",15.5906 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2173,"Simulated","C","global",15.5643 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2174,"Simulated","C","global",15.5924 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2175,"Simulated","C","global",15.5547 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2176,"Simulated","C","global",15.3877 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2177,"Simulated","C","global",15.5694 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2178,"Simulated","C","global",15.7163 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2179,"Simulated","C","global",15.757 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2180,"Simulated","C","global",15.5473 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2181,"Simulated","C","global",15.4669 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2182,"Simulated","C","global",15.6129 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2183,"Simulated","C","global",15.5415 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2184,"Simulated","C","global",15.6647 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2185,"Simulated","C","global",15.6918 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2186,"Simulated","C","global",15.6066 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2187,"Simulated","C","global",15.5416 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2188,"Simulated","C","global",15.7476 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2189,"Simulated","C","global",15.7088 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2190,"Simulated","C","global",15.8269 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2191,"Simulated","C","global",15.853 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2192,"Simulated","C","global",15.7058 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2193,"Simulated","C","global",15.6387 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2194,"Simulated","C","global",15.6966 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2195,"Simulated","C","global",15.6744 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2196,"Simulated","C","global",15.6641 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2197,"Simulated","C","global",15.5667 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2198,"Simulated","C","global",15.609 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2199,"Simulated","C","global",15.7282 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2200,"Simulated","C","global",15.7908 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2201,"Simulated","C","global",15.6562 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2202,"Simulated","C","global",15.9207 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2203,"Simulated","C","global",15.9648 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2204,"Simulated","C","global",15.8173 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2205,"Simulated","C","global",15.5266 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2206,"Simulated","C","global",15.7131 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2207,"Simulated","C","global",15.8678 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2208,"Simulated","C","global",15.8447 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2209,"Simulated","C","global",15.7146 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2210,"Simulated","C","global",15.724 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2211,"Simulated","C","global",15.9504 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2212,"Simulated","C","global",15.7956 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2213,"Simulated","C","global",15.868 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2214,"Simulated","C","global",15.9192 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2215,"Simulated","C","global",15.7747 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2216,"Simulated","C","global",15.8535 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2217,"Simulated","C","global",15.9093 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2218,"Simulated","C","global",15.8877 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2219,"Simulated","C","global",15.6093 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2220,"Simulated","C","global",15.6362 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2221,"Simulated","C","global",15.8085 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2222,"Simulated","C","global",15.7267000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2223,"Simulated","C","global",15.5244 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2224,"Simulated","C","global",15.6164 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2225,"Simulated","C","global",15.628 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2226,"Simulated","C","global",15.5186 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2227,"Simulated","C","global",15.7475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2228,"Simulated","C","global",15.5298 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2229,"Simulated","C","global",15.6165 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2230,"Simulated","C","global",15.5084 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2231,"Simulated","C","global",15.7338 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2232,"Simulated","C","global",15.8304 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2233,"Simulated","C","global",15.9286 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2234,"Simulated","C","global",15.7945 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2235,"Simulated","C","global",15.8 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2236,"Simulated","C","global",15.7888 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2237,"Simulated","C","global",15.7455 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2238,"Simulated","C","global",15.6087 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2239,"Simulated","C","global",15.8583 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2240,"Simulated","C","global",15.9416000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2241,"Simulated","C","global",15.9788 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2242,"Simulated","C","global",15.8811 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2243,"Simulated","C","global",15.8625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2244,"Simulated","C","global",15.8171 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2245,"Simulated","C","global",15.9139 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2246,"Simulated","C","global",15.8835 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2247,"Simulated","C","global",15.9391 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2248,"Simulated","C","global",16.0125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2249,"Simulated","C","global",16.0579 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2250,"Simulated","C","global",16.0195000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2251,"Simulated","C","global",15.883 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2252,"Simulated","C","global",15.885 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2253,"Simulated","C","global",15.8346 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2254,"Simulated","C","global",15.8842 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2255,"Simulated","C","global",15.9352 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2256,"Simulated","C","global",15.9611 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2257,"Simulated","C","global",15.826 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2258,"Simulated","C","global",15.8886 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2259,"Simulated","C","global",16.0284 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2260,"Simulated","C","global",16.032 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2261,"Simulated","C","global",16.1014 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2262,"Simulated","C","global",16.0027 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2263,"Simulated","C","global",15.9909 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2264,"Simulated","C","global",15.8692 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2265,"Simulated","C","global",15.8751 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2266,"Simulated","C","global",15.9648 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2267,"Simulated","C","global",16.0077 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2268,"Simulated","C","global",15.9415 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2269,"Simulated","C","global",15.8743 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2270,"Simulated","C","global",15.9459 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2271,"Simulated","C","global",16.1254 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2272,"Simulated","C","global",16.0929 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2273,"Simulated","C","global",15.9009 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2274,"Simulated","C","global",15.8518 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2275,"Simulated","C","global",15.9883 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2276,"Simulated","C","global",15.8805 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2277,"Simulated","C","global",15.7553 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2278,"Simulated","C","global",15.9024 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2279,"Simulated","C","global",15.6483 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2280,"Simulated","C","global",15.7452 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2281,"Simulated","C","global",15.8778 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2282,"Simulated","C","global",16.1753 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2283,"Simulated","C","global",15.792 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2284,"Simulated","C","global",15.7876 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2285,"Simulated","C","global",15.6996 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2286,"Simulated","C","global",15.9183 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2287,"Simulated","C","global",16.0354 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2288,"Simulated","C","global",16.0124 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2289,"Simulated","C","global",15.8440000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2290,"Simulated","C","global",15.9085 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2291,"Simulated","C","global",16.0412 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2292,"Simulated","C","global",16.039 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2293,"Simulated","C","global",16.0904 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2294,"Simulated","C","global",15.8767 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2295,"Simulated","C","global",15.9972 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2296,"Simulated","C","global",15.9908 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2297,"Simulated","C","global",16.0164 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2298,"Simulated","C","global",16.1829 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2299,"Simulated","C","global",16.2631 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp45",2300,"Simulated","C","global",16.2109 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-8.83459999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-8.65307499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-8.60432499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-8.84252499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-8.69182499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-8.52974999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-8.58109999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-8.51184999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-8.30294999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-8.63467499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-8.33304999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-8.69427499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-8.52102499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-8.37299999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-8.52332499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-8.32399999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-8.07094999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-8.42674999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-8.19037499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-8.26952499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-8.19162499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-8.03897499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-8.14697499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-7.91417499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-8.05937499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-8.02859999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-7.86862499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-7.92792499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-7.82329999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-7.82647499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-7.64379999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-7.63822499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-7.51802499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-7.56704999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-7.56257499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-7.82824999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-7.59769999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-7.65569999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-7.62164999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-7.45359999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-7.53669999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-7.19332499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-7.26869999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-7.15964999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-7.17019999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-7.15367499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-7.10067499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-7.15662499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-7.25829999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-7.09252499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-6.91924999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-7.00687499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-6.92619999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-6.85359999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-6.85919999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-6.95694999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-6.74899999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-6.82654999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-7.01632499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-6.89329999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-7.00747499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-6.89944999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-6.78792499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-6.99162499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-6.80684999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-6.82402499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-6.82582499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-6.70849999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-6.67649999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-6.76764999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-6.66587499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-6.60967499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-6.52804999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-6.89144999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-6.70824999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-6.45325 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-6.70332499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-6.72347499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-6.66484999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-6.54282499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-6.23524999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-6.52012499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-6.42672499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-6.33534999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-6.32624999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-6.51242499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-6.57102499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-6.58502499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-6.38604999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-6.46529999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-6.41637499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-6.57829999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-6.53912499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-6.30192499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-6.32627499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-5.7953 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-6.03309999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2103,"Simulated","C","HL",-6.24769999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2104,"Simulated","C","HL",-6.38819999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2105,"Simulated","C","HL",-6.29109999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2106,"Simulated","C","HL",-6.07999999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2107,"Simulated","C","HL",-6.29309999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2108,"Simulated","C","HL",-6.06459999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2109,"Simulated","C","HL",-6.44999999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2110,"Simulated","C","HL",-6.09769999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2111,"Simulated","C","HL",-6.06059999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2112,"Simulated","C","HL",-6.274 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2113,"Simulated","C","HL",-6.35559999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2114,"Simulated","C","HL",-6.7122 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2115,"Simulated","C","HL",-6.39149999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2116,"Simulated","C","HL",-6.15299999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2117,"Simulated","C","HL",-6.29229999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2118,"Simulated","C","HL",-6.30959999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2119,"Simulated","C","HL",-6.4674 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2120,"Simulated","C","HL",-6.28929999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2121,"Simulated","C","HL",-6.3999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2122,"Simulated","C","HL",-6.13529999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2123,"Simulated","C","HL",-6.24599999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2124,"Simulated","C","HL",-6.64579999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2125,"Simulated","C","HL",-6.38229999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2126,"Simulated","C","HL",-6.2901 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2127,"Simulated","C","HL",-5.96509999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2128,"Simulated","C","HL",-6.23169999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2129,"Simulated","C","HL",-6.565 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2130,"Simulated","C","HL",-6.63829999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2131,"Simulated","C","HL",-6.43379999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2132,"Simulated","C","HL",-5.8759 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2133,"Simulated","C","HL",-6.14169999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2134,"Simulated","C","HL",-6.06549999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2135,"Simulated","C","HL",-6.36929999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2136,"Simulated","C","HL",-6.67629999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2137,"Simulated","C","HL",-6.38569999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2138,"Simulated","C","HL",-6.46479999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2139,"Simulated","C","HL",-6.90170000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2140,"Simulated","C","HL",-6.82389999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2141,"Simulated","C","HL",-6.69729999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2142,"Simulated","C","HL",-6.6096 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2143,"Simulated","C","HL",-6.45729999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2144,"Simulated","C","HL",-6.7878 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2145,"Simulated","C","HL",-6.18639999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2146,"Simulated","C","HL",-6.40129999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2147,"Simulated","C","HL",-6.00579999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2148,"Simulated","C","HL",-5.79949999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2149,"Simulated","C","HL",-6.53319999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2150,"Simulated","C","HL",-6.45849999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2151,"Simulated","C","HL",-6.10129999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2152,"Simulated","C","HL",-5.97899999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2153,"Simulated","C","HL",-6.21679999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2154,"Simulated","C","HL",-6.08779999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2155,"Simulated","C","HL",-5.49439999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2156,"Simulated","C","HL",-5.91789999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2157,"Simulated","C","HL",-5.86899999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2158,"Simulated","C","HL",-5.8064 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2159,"Simulated","C","HL",-5.7681 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2160,"Simulated","C","HL",-5.32369999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2161,"Simulated","C","HL",-5.56899999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2162,"Simulated","C","HL",-5.58209999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2163,"Simulated","C","HL",-5.6816 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2164,"Simulated","C","HL",-6.24309999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2165,"Simulated","C","HL",-6.29329999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2166,"Simulated","C","HL",-6.12439999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2167,"Simulated","C","HL",-6.45839999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2168,"Simulated","C","HL",-6.27789999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2169,"Simulated","C","HL",-5.89959999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2170,"Simulated","C","HL",-6.25329999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2171,"Simulated","C","HL",-6.36739999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2172,"Simulated","C","HL",-6.18739999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2173,"Simulated","C","HL",-6.32999999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2174,"Simulated","C","HL",-6.0018 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2175,"Simulated","C","HL",-6.13119999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2176,"Simulated","C","HL",-6.66669999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2177,"Simulated","C","HL",-6.19289999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2178,"Simulated","C","HL",-6.33639999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2179,"Simulated","C","HL",-6.00099999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2180,"Simulated","C","HL",-6.2688 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2181,"Simulated","C","HL",-6.7731 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2182,"Simulated","C","HL",-6.3673 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2183,"Simulated","C","HL",-6.35539999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2184,"Simulated","C","HL",-6.17929999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2185,"Simulated","C","HL",-5.78299999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2186,"Simulated","C","HL",-6.10729999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2187,"Simulated","C","HL",-6.1198 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2188,"Simulated","C","HL",-5.86269999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2189,"Simulated","C","HL",-6.2167 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2190,"Simulated","C","HL",-5.7713 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2191,"Simulated","C","HL",-5.54829999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2192,"Simulated","C","HL",-6.24019999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2193,"Simulated","C","HL",-6.21369999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2194,"Simulated","C","HL",-6.17099999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2195,"Simulated","C","HL",-6.14949999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2196,"Simulated","C","HL",-6.19719999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2197,"Simulated","C","HL",-6.51649999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2198,"Simulated","C","HL",-6.26319999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2199,"Simulated","C","HL",-6.0505 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2200,"Simulated","C","HL",-6.24279999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2201,"Simulated","C","HL",-6.55059999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2202,"Simulated","C","HL",-5.79789999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2203,"Simulated","C","HL",-5.52609999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2204,"Simulated","C","HL",-5.93349999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2205,"Simulated","C","HL",-6.3691 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2206,"Simulated","C","HL",-5.95169999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2207,"Simulated","C","HL",-5.6397 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2208,"Simulated","C","HL",-5.99099999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2209,"Simulated","C","HL",-5.94279999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2210,"Simulated","C","HL",-6.0102 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2211,"Simulated","C","HL",-5.55959999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2212,"Simulated","C","HL",-5.84309999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2213,"Simulated","C","HL",-6.22739999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2214,"Simulated","C","HL",-6.10609999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2215,"Simulated","C","HL",-6.09179999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2216,"Simulated","C","HL",-5.9169 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2217,"Simulated","C","HL",-6.02719999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2218,"Simulated","C","HL",-5.77879999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2219,"Simulated","C","HL",-6.24529999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2220,"Simulated","C","HL",-6.2672 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2221,"Simulated","C","HL",-5.98919999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2222,"Simulated","C","HL",-6.20479999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2223,"Simulated","C","HL",-6.42789999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2224,"Simulated","C","HL",-6.0444 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2225,"Simulated","C","HL",-6.27109999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2226,"Simulated","C","HL",-6.43239999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2227,"Simulated","C","HL",-6.3039 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2228,"Simulated","C","HL",-6.20099999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2229,"Simulated","C","HL",-5.8879 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2230,"Simulated","C","HL",-6.6182 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2231,"Simulated","C","HL",-5.93869999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2232,"Simulated","C","HL",-5.76249999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2233,"Simulated","C","HL",-5.8621 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2234,"Simulated","C","HL",-5.8981 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2235,"Simulated","C","HL",-5.65569999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2236,"Simulated","C","HL",-5.85429999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2237,"Simulated","C","HL",-6.08569999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2238,"Simulated","C","HL",-6.3664 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2239,"Simulated","C","HL",-5.61179999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2240,"Simulated","C","HL",-5.35149999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2241,"Simulated","C","HL",-5.49539999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2242,"Simulated","C","HL",-5.79019999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2243,"Simulated","C","HL",-5.9658 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2244,"Simulated","C","HL",-5.90459999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2245,"Simulated","C","HL",-5.47559999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2246,"Simulated","C","HL",-5.5093 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2247,"Simulated","C","HL",-5.62639999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2248,"Simulated","C","HL",-5.13619999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2249,"Simulated","C","HL",-5.26029999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2250,"Simulated","C","HL",-5.70279999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2251,"Simulated","C","HL",-5.81699999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2252,"Simulated","C","HL",-6.02509999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2253,"Simulated","C","HL",-5.91539999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2254,"Simulated","C","HL",-5.82939999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2255,"Simulated","C","HL",-5.49019999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2256,"Simulated","C","HL",-5.661 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2257,"Simulated","C","HL",-5.85379999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2258,"Simulated","C","HL",-5.70650000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2259,"Simulated","C","HL",-5.3175 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2260,"Simulated","C","HL",-5.29579999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2261,"Simulated","C","HL",-4.98499999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2262,"Simulated","C","HL",-5.3888 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2263,"Simulated","C","HL",-5.61329999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2264,"Simulated","C","HL",-5.64019999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2265,"Simulated","C","HL",-5.92859999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2266,"Simulated","C","HL",-5.69439999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2267,"Simulated","C","HL",-5.5874 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2268,"Simulated","C","HL",-5.4101 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2269,"Simulated","C","HL",-5.5061 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2270,"Simulated","C","HL",-5.50209999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2271,"Simulated","C","HL",-5.21349999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2272,"Simulated","C","HL",-5.17289999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2273,"Simulated","C","HL",-5.75529999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2274,"Simulated","C","HL",-5.5752 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2275,"Simulated","C","HL",-5.55439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2276,"Simulated","C","HL",-5.86279999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2277,"Simulated","C","HL",-5.55869999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2278,"Simulated","C","HL",-5.7414 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2279,"Simulated","C","HL",-6.51189999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2280,"Simulated","C","HL",-5.99029999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2281,"Simulated","C","HL",-5.91499999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2282,"Simulated","C","HL",-5.38979999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2283,"Simulated","C","HL",-5.85699999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2284,"Simulated","C","HL",-6.02019999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2285,"Simulated","C","HL",-6.28389999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2286,"Simulated","C","HL",-5.67779999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2287,"Simulated","C","HL",-5.40189999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2288,"Simulated","C","HL",-5.45709999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2289,"Simulated","C","HL",-5.71599999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2290,"Simulated","C","HL",-5.947 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2291,"Simulated","C","HL",-5.6857 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2292,"Simulated","C","HL",-5.5641 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2293,"Simulated","C","HL",-5.32309999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2294,"Simulated","C","HL",-5.81399999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2295,"Simulated","C","HL",-5.49859999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2296,"Simulated","C","HL",-5.65179999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2297,"Simulated","C","HL",-5.36839999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2298,"Simulated","C","HL",-5.26779999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2299,"Simulated","C","HL",-5.30809999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp45",2300,"Simulated","C","HL",-5.04259999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",18.365675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",18.361775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",18.39145 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",18.37845 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",18.422 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",18.451225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",18.48895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",18.568375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",18.641625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",18.58975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",18.57735 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",18.589275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",18.63565 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",18.6641 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",18.65285 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",18.731225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",18.803425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",18.8016 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",18.81645 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",18.818675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",18.9221 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",18.84295 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",18.904925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",19.0461 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",18.978325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",18.9241 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",19.0175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",19.07505 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",19.151275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",19.18515 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",19.212175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",19.2211 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",19.2223 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",19.270375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",19.353575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",19.32745 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",19.2677 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",19.306575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",19.335375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",19.404325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",19.482725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",19.543275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",19.593 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",19.66455 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",19.58745 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",19.569 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",19.6204 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",19.65815 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",19.6027 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",19.6437 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",19.6753 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",19.736025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",19.849 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",19.8158 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",19.739125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",19.7978 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",19.839075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",19.85605 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",19.911625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",19.920075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",19.8897 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",19.85845 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",19.911 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",19.877425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",19.9741 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",19.971625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",19.867125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",19.93205 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",19.985625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",19.9706 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",20.0161 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",20.034975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",19.987475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",19.96925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",20.00405 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",20.09245 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",20.08995 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",20.103575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",20.0078 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",20.0539 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",20.08415 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",20.11015 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",20.1275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",20.130325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",20.12705 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",20.09225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",20.180375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",20.203525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",20.2058 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",20.084 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",20.13885 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",20.1659 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",20.136475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",20.265925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",20.1945 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",20.3747 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",20.3801 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2103,"Simulated","C","LL",20.3304 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2104,"Simulated","C","LL",20.2322 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2105,"Simulated","C","LL",20.3423 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2106,"Simulated","C","LL",20.2233 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2107,"Simulated","C","LL",20.2098 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2108,"Simulated","C","LL",20.1713 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2109,"Simulated","C","LL",20.3108 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2110,"Simulated","C","LL",20.1327 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2111,"Simulated","C","LL",20.3584 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2112,"Simulated","C","LL",20.2289 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2113,"Simulated","C","LL",20.1741 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2114,"Simulated","C","LL",20.2663 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2115,"Simulated","C","LL",20.2322 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2116,"Simulated","C","LL",20.2927 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2117,"Simulated","C","LL",20.2168 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2118,"Simulated","C","LL",20.3788 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2119,"Simulated","C","LL",20.4538 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2120,"Simulated","C","LL",20.196 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2121,"Simulated","C","LL",20.1052 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2122,"Simulated","C","LL",20.22 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2123,"Simulated","C","LL",20.4627 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2124,"Simulated","C","LL",20.3334 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2125,"Simulated","C","LL",20.3201 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2126,"Simulated","C","LL",20.2027 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2127,"Simulated","C","LL",20.3704 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2128,"Simulated","C","LL",20.3763 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2129,"Simulated","C","LL",20.2237 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2130,"Simulated","C","LL",20.4491 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2131,"Simulated","C","LL",20.2849000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2132,"Simulated","C","LL",20.2271 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2133,"Simulated","C","LL",20.2435 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2134,"Simulated","C","LL",20.4245 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2135,"Simulated","C","LL",20.3675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2136,"Simulated","C","LL",20.2644 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2137,"Simulated","C","LL",20.3622 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2138,"Simulated","C","LL",20.5543 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2139,"Simulated","C","LL",20.2695000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2140,"Simulated","C","LL",20.1316 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2141,"Simulated","C","LL",20.193 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2142,"Simulated","C","LL",20.2601 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2143,"Simulated","C","LL",20.4785 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2144,"Simulated","C","LL",20.2236 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2145,"Simulated","C","LL",20.3051 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2146,"Simulated","C","LL",20.1852 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2147,"Simulated","C","LL",20.2574 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2148,"Simulated","C","LL",20.5327 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2149,"Simulated","C","LL",20.3514 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2150,"Simulated","C","LL",20.3244 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2151,"Simulated","C","LL",20.4197 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2152,"Simulated","C","LL",20.4248 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2153,"Simulated","C","LL",20.4133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2154,"Simulated","C","LL",20.2673 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2155,"Simulated","C","LL",20.4347 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2156,"Simulated","C","LL",20.5393 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2157,"Simulated","C","LL",20.5383 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2158,"Simulated","C","LL",20.499 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2159,"Simulated","C","LL",20.4368 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2160,"Simulated","C","LL",20.5001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2161,"Simulated","C","LL",20.5333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2162,"Simulated","C","LL",20.4163 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2163,"Simulated","C","LL",20.3851 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2164,"Simulated","C","LL",20.4356 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2165,"Simulated","C","LL",20.386 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2166,"Simulated","C","LL",20.4489 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2167,"Simulated","C","LL",20.4145 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2168,"Simulated","C","LL",20.4941 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2169,"Simulated","C","LL",20.448 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2170,"Simulated","C","LL",20.4373000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2171,"Simulated","C","LL",20.4515 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2172,"Simulated","C","LL",20.4194 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2173,"Simulated","C","LL",20.4188 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2174,"Simulated","C","LL",20.3803 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2175,"Simulated","C","LL",20.3632 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2176,"Simulated","C","LL",20.2777 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2177,"Simulated","C","LL",20.3946 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2178,"Simulated","C","LL",20.6059 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2179,"Simulated","C","LL",20.581 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2180,"Simulated","C","LL",20.3844 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2181,"Simulated","C","LL",20.3979 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2182,"Simulated","C","LL",20.4865 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2183,"Simulated","C","LL",20.3966 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2184,"Simulated","C","LL",20.5081 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2185,"Simulated","C","LL",20.4533 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2186,"Simulated","C","LL",20.4212 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2187,"Simulated","C","LL",20.3447 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2188,"Simulated","C","LL",20.5391 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2189,"Simulated","C","LL",20.5702 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2190,"Simulated","C","LL",20.6158 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2191,"Simulated","C","LL",20.5983 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2192,"Simulated","C","LL",20.572 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2193,"Simulated","C","LL",20.4839 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2194,"Simulated","C","LL",20.5452 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2195,"Simulated","C","LL",20.5134 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2196,"Simulated","C","LL",20.511 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2197,"Simulated","C","LL",20.4631 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2198,"Simulated","C","LL",20.4584 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2199,"Simulated","C","LL",20.5571 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2200,"Simulated","C","LL",20.6762 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2201,"Simulated","C","LL",20.58 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2202,"Simulated","C","LL",20.7363 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2203,"Simulated","C","LL",20.7297 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2204,"Simulated","C","LL",20.6401 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2205,"Simulated","C","LL",20.3816 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2206,"Simulated","C","LL",20.5167 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2207,"Simulated","C","LL",20.6365 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2208,"Simulated","C","LL",20.6862 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2209,"Simulated","C","LL",20.5167 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2210,"Simulated","C","LL",20.5431 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2211,"Simulated","C","LL",20.7197 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2212,"Simulated","C","LL",20.5935 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2213,"Simulated","C","LL",20.7672 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2214,"Simulated","C","LL",20.8027 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2215,"Simulated","C","LL",20.6229 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2216,"Simulated","C","LL",20.6804 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2217,"Simulated","C","LL",20.7731 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2218,"Simulated","C","LL",20.6918 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2219,"Simulated","C","LL",20.455 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2220,"Simulated","C","LL",20.4926 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2221,"Simulated","C","LL",20.6418 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2222,"Simulated","C","LL",20.5895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2223,"Simulated","C","LL",20.3918 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2224,"Simulated","C","LL",20.4192 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2225,"Simulated","C","LL",20.4837 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2226,"Simulated","C","LL",20.3858 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2227,"Simulated","C","LL",20.637 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2228,"Simulated","C","LL",20.3481 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2229,"Simulated","C","LL",20.3846 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2230,"Simulated","C","LL",20.4145 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2231,"Simulated","C","LL",20.5391 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2232,"Simulated","C","LL",20.6181 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2233,"Simulated","C","LL",20.76 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2234,"Simulated","C","LL",20.6043 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2235,"Simulated","C","LL",20.5574 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2236,"Simulated","C","LL",20.5877 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2237,"Simulated","C","LL",20.5862 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2238,"Simulated","C","LL",20.4811 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2239,"Simulated","C","LL",20.6188 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2240,"Simulated","C","LL",20.6629 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2241,"Simulated","C","LL",20.7403 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2242,"Simulated","C","LL",20.686 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2243,"Simulated","C","LL",20.7023 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2244,"Simulated","C","LL",20.6332 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2245,"Simulated","C","LL",20.6566 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2246,"Simulated","C","LL",20.6269 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2247,"Simulated","C","LL",20.7207 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2248,"Simulated","C","LL",20.7017 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2249,"Simulated","C","LL",20.7845 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2250,"Simulated","C","LL",20.8359 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2251,"Simulated","C","LL",20.6944 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2252,"Simulated","C","LL",20.743 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2253,"Simulated","C","LL",20.657 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2254,"Simulated","C","LL",20.6984 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2255,"Simulated","C","LL",20.6858 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2256,"Simulated","C","LL",20.7552 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2257,"Simulated","C","LL",20.6327 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2258,"Simulated","C","LL",20.6768 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2259,"Simulated","C","LL",20.7613 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2260,"Simulated","C","LL",20.7608 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2261,"Simulated","C","LL",20.7768 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2262,"Simulated","C","LL",20.7458 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2263,"Simulated","C","LL",20.7811 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2264,"Simulated","C","LL",20.6385 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2265,"Simulated","C","LL",20.7093 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2266,"Simulated","C","LL",20.7673 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2267,"Simulated","C","LL",20.7959 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2268,"Simulated","C","LL",20.6756 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2269,"Simulated","C","LL",20.615 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2270,"Simulated","C","LL",20.7014 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2271,"Simulated","C","LL",20.8567 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2272,"Simulated","C","LL",20.8081 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2273,"Simulated","C","LL",20.7026 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2274,"Simulated","C","LL",20.6029 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2275,"Simulated","C","LL",20.7649 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2276,"Simulated","C","LL",20.7017 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2277,"Simulated","C","LL",20.4812 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2278,"Simulated","C","LL",20.7013 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2279,"Simulated","C","LL",20.5617 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2280,"Simulated","C","LL",20.5645 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2281,"Simulated","C","LL",20.7097 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2282,"Simulated","C","LL",20.9566 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2283,"Simulated","C","LL",20.5921 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2284,"Simulated","C","LL",20.6229 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2285,"Simulated","C","LL",20.5739 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2286,"Simulated","C","LL",20.7068 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2287,"Simulated","C","LL",20.7886 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2288,"Simulated","C","LL",20.7727 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2289,"Simulated","C","LL",20.6244 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2290,"Simulated","C","LL",20.7543 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2291,"Simulated","C","LL",20.8586 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2292,"Simulated","C","LL",20.8291 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2293,"Simulated","C","LL",20.8384 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2294,"Simulated","C","LL",20.6858 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2295,"Simulated","C","LL",20.7635 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2296,"Simulated","C","LL",20.7896 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2297,"Simulated","C","LL",20.7579 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2298,"Simulated","C","LL",20.939 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2299,"Simulated","C","LL",21.0463 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp45",2300,"Simulated","C","LL",20.9234 -"MIROC-ESM","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",14.2885 -"MIROC-ESM","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",14.3278 -"MIROC-ESM","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",14.2924 -"MIROC-ESM","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",14.2447 -"MIROC-ESM","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",14.4428 -"MIROC-ESM","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",14.5007 -"MIROC-ESM","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",14.6381 -"MIROC-ESM","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",14.6023 -"MIROC-ESM","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",14.6287 -"MIROC-ESM","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",14.6076 -"MIROC-ESM","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",14.5772 -"MIROC-ESM","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",14.6207 -"MIROC-ESM","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",14.6526 -"MIROC-ESM","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",14.8009 -"MIROC-ESM","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",14.7818 -"MIROC-ESM","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",14.965 -"MIROC-ESM","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",14.971 -"MIROC-ESM","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",14.9229 -"MIROC-ESM","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",14.9787 -"MIROC-ESM","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",15.0132 -"MIROC-ESM","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",15.254 -"MIROC-ESM","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",15.2106 -"MIROC-ESM","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",15.0353 -"MIROC-ESM","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",15.1999 -"MIROC-ESM","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",15.0808 -"MIROC-ESM","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",15.2474 -"MIROC-ESM","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",15.3204 -"MIROC-ESM","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",15.2999 -"MIROC-ESM","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",15.5136 -"MIROC-ESM","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",15.5131 -"MIROC-ESM","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",15.4189 -"MIROC-ESM","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",15.4911 -"MIROC-ESM","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",15.5142 -"MIROC-ESM","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",15.4604 -"MIROC-ESM","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",15.6471 -"MIROC-ESM","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",15.5563 -"MIROC-ESM","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",15.608 -"MIROC-ESM","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",15.5882 -"MIROC-ESM","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",15.671 -"MIROC-ESM","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",15.6009 -"MIROC-ESM","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",15.7269 -"MIROC-ESM","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",15.7279 -"MIROC-ESM","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",15.8533 -"MIROC-ESM","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",15.8786 -"MIROC-ESM","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",15.8276 -"MIROC-ESM","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",15.8573 -"MIROC-ESM","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",15.8875 -"MIROC-ESM","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",15.8563 -"MIROC-ESM","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",15.8456 -"MIROC-ESM","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",15.7954 -"MIROC-ESM","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",15.6735 -"MIROC-ESM","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",15.9101 -"MIROC-ESM","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",16.0978 -"MIROC-ESM","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",16.0508 -"MIROC-ESM","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",16.0473 -"MIROC-ESM","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",16.0429 -"MIROC-ESM","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",16.2752 -"MIROC-ESM","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",16.2718 -"MIROC-ESM","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",16.2916 -"MIROC-ESM","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",16.2477 -"MIROC-ESM","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",16.359 -"MIROC-ESM","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",16.4336 -"MIROC-ESM","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",16.4046 -"MIROC-ESM","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",16.2029 -"MIROC-ESM","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",16.2819 -"MIROC-ESM","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",16.3896 -"MIROC-ESM","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",16.4906 -"MIROC-ESM","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",16.4694 -"MIROC-ESM","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",16.449 -"MIROC-ESM","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",16.5556 -"MIROC-ESM","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",16.5721 -"MIROC-ESM","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",16.6153 -"MIROC-ESM","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",16.4728 -"MIROC-ESM","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",16.4569 -"MIROC-ESM","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",16.5504 -"MIROC-ESM","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",16.4858 -"MIROC-ESM","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",16.5632 -"MIROC-ESM","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",16.4596 -"MIROC-ESM","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",16.5184 -"MIROC-ESM","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",16.5246 -"MIROC-ESM","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",16.4505 -"MIROC-ESM","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",16.3914 -"MIROC-ESM","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",16.4104 -"MIROC-ESM","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",16.3766 -"MIROC-ESM","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",16.5626 -"MIROC-ESM","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",16.6318 -"MIROC-ESM","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",16.6104 -"MIROC-ESM","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",16.5775 -"MIROC-ESM","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",16.5616 -"MIROC-ESM","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",16.441 -"MIROC-ESM","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",16.5297 -"MIROC-ESM","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",16.5038 -"MIROC-ESM","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",16.6742 -"MIROC-ESM","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",16.6314 -"MIROC-ESM","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",16.6173 -"MIROC-ESM","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",16.6888 -"MIROC-ESM","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",16.6783 -"MIROC-ESM","tas","temperature","tgav","rcp45",2103,"Simulated","C","global",16.5377 -"MIROC-ESM","tas","temperature","tgav","rcp45",2104,"Simulated","C","global",16.6762 -"MIROC-ESM","tas","temperature","tgav","rcp45",2105,"Simulated","C","global",16.6535 -"MIROC-ESM","tas","temperature","tgav","rcp45",2106,"Simulated","C","global",16.6315 -"MIROC-ESM","tas","temperature","tgav","rcp45",2107,"Simulated","C","global",16.5405 -"MIROC-ESM","tas","temperature","tgav","rcp45",2108,"Simulated","C","global",16.5797 -"MIROC-ESM","tas","temperature","tgav","rcp45",2109,"Simulated","C","global",16.7190000000001 -"MIROC-ESM","tas","temperature","tgav","rcp45",2110,"Simulated","C","global",16.6682 -"MIROC-ESM","tas","temperature","tgav","rcp45",2111,"Simulated","C","global",16.6716 -"MIROC-ESM","tas","temperature","tgav","rcp45",2112,"Simulated","C","global",16.7429 -"MIROC-ESM","tas","temperature","tgav","rcp45",2113,"Simulated","C","global",16.6645 -"MIROC-ESM","tas","temperature","tgav","rcp45",2114,"Simulated","C","global",16.6489 -"MIROC-ESM","tas","temperature","tgav","rcp45",2115,"Simulated","C","global",16.6899 -"MIROC-ESM","tas","temperature","tgav","rcp45",2116,"Simulated","C","global",16.5809 -"MIROC-ESM","tas","temperature","tgav","rcp45",2117,"Simulated","C","global",16.428 -"MIROC-ESM","tas","temperature","tgav","rcp45",2118,"Simulated","C","global",16.5825 -"MIROC-ESM","tas","temperature","tgav","rcp45",2119,"Simulated","C","global",16.5704 -"MIROC-ESM","tas","temperature","tgav","rcp45",2120,"Simulated","C","global",16.579 -"MIROC-ESM","tas","temperature","tgav","rcp45",2121,"Simulated","C","global",16.586 -"MIROC-ESM","tas","temperature","tgav","rcp45",2122,"Simulated","C","global",16.6173 -"MIROC-ESM","tas","temperature","tgav","rcp45",2123,"Simulated","C","global",16.7699 -"MIROC-ESM","tas","temperature","tgav","rcp45",2124,"Simulated","C","global",16.843 -"MIROC-ESM","tas","temperature","tgav","rcp45",2125,"Simulated","C","global",16.867 -"MIROC-ESM","tas","temperature","tgav","rcp45",2126,"Simulated","C","global",16.6791 -"MIROC-ESM","tas","temperature","tgav","rcp45",2127,"Simulated","C","global",16.7 -"MIROC-ESM","tas","temperature","tgav","rcp45",2128,"Simulated","C","global",16.6691 -"MIROC-ESM","tas","temperature","tgav","rcp45",2129,"Simulated","C","global",16.5538 -"MIROC-ESM","tas","temperature","tgav","rcp45",2130,"Simulated","C","global",16.6647 -"MIROC-ESM","tas","temperature","tgav","rcp45",2131,"Simulated","C","global",16.6571 -"MIROC-ESM","tas","temperature","tgav","rcp45",2132,"Simulated","C","global",16.6616 -"MIROC-ESM","tas","temperature","tgav","rcp45",2133,"Simulated","C","global",16.6266 -"MIROC-ESM","tas","temperature","tgav","rcp45",2134,"Simulated","C","global",16.8202 -"MIROC-ESM","tas","temperature","tgav","rcp45",2135,"Simulated","C","global",16.7054 -"MIROC-ESM","tas","temperature","tgav","rcp45",2136,"Simulated","C","global",16.8394 -"MIROC-ESM","tas","temperature","tgav","rcp45",2137,"Simulated","C","global",16.8091 -"MIROC-ESM","tas","temperature","tgav","rcp45",2138,"Simulated","C","global",16.6995 -"MIROC-ESM","tas","temperature","tgav","rcp45",2139,"Simulated","C","global",16.7568 -"MIROC-ESM","tas","temperature","tgav","rcp45",2140,"Simulated","C","global",16.7649 -"MIROC-ESM","tas","temperature","tgav","rcp45",2141,"Simulated","C","global",16.7828 -"MIROC-ESM","tas","temperature","tgav","rcp45",2142,"Simulated","C","global",16.7226 -"MIROC-ESM","tas","temperature","tgav","rcp45",2143,"Simulated","C","global",16.7145 -"MIROC-ESM","tas","temperature","tgav","rcp45",2144,"Simulated","C","global",16.6236 -"MIROC-ESM","tas","temperature","tgav","rcp45",2145,"Simulated","C","global",16.637 -"MIROC-ESM","tas","temperature","tgav","rcp45",2146,"Simulated","C","global",16.6548 -"MIROC-ESM","tas","temperature","tgav","rcp45",2147,"Simulated","C","global",16.7452 -"MIROC-ESM","tas","temperature","tgav","rcp45",2148,"Simulated","C","global",16.8199 -"MIROC-ESM","tas","temperature","tgav","rcp45",2149,"Simulated","C","global",16.7187 -"MIROC-ESM","tas","temperature","tgav","rcp45",2150,"Simulated","C","global",16.7342 -"MIROC-ESM","tas","temperature","tgav","rcp45",2151,"Simulated","C","global",16.7031 -"MIROC-ESM","tas","temperature","tgav","rcp45",2152,"Simulated","C","global",16.7457 -"MIROC-ESM","tas","temperature","tgav","rcp45",2153,"Simulated","C","global",16.727 -"MIROC-ESM","tas","temperature","tgav","rcp45",2154,"Simulated","C","global",16.6868 -"MIROC-ESM","tas","temperature","tgav","rcp45",2155,"Simulated","C","global",16.89 -"MIROC-ESM","tas","temperature","tgav","rcp45",2156,"Simulated","C","global",16.8614 -"MIROC-ESM","tas","temperature","tgav","rcp45",2157,"Simulated","C","global",16.7972 -"MIROC-ESM","tas","temperature","tgav","rcp45",2158,"Simulated","C","global",16.6919 -"MIROC-ESM","tas","temperature","tgav","rcp45",2159,"Simulated","C","global",16.6756 -"MIROC-ESM","tas","temperature","tgav","rcp45",2160,"Simulated","C","global",16.6369 -"MIROC-ESM","tas","temperature","tgav","rcp45",2161,"Simulated","C","global",16.8351 -"MIROC-ESM","tas","temperature","tgav","rcp45",2162,"Simulated","C","global",16.7732 -"MIROC-ESM","tas","temperature","tgav","rcp45",2163,"Simulated","C","global",16.7938 -"MIROC-ESM","tas","temperature","tgav","rcp45",2164,"Simulated","C","global",16.9671 -"MIROC-ESM","tas","temperature","tgav","rcp45",2165,"Simulated","C","global",16.7992 -"MIROC-ESM","tas","temperature","tgav","rcp45",2166,"Simulated","C","global",16.7641 -"MIROC-ESM","tas","temperature","tgav","rcp45",2167,"Simulated","C","global",16.8895 -"MIROC-ESM","tas","temperature","tgav","rcp45",2168,"Simulated","C","global",16.9075 -"MIROC-ESM","tas","temperature","tgav","rcp45",2169,"Simulated","C","global",16.8389 -"MIROC-ESM","tas","temperature","tgav","rcp45",2170,"Simulated","C","global",16.6689 -"MIROC-ESM","tas","temperature","tgav","rcp45",2171,"Simulated","C","global",16.8129 -"MIROC-ESM","tas","temperature","tgav","rcp45",2172,"Simulated","C","global",16.8683 -"MIROC-ESM","tas","temperature","tgav","rcp45",2173,"Simulated","C","global",16.8518 -"MIROC-ESM","tas","temperature","tgav","rcp45",2174,"Simulated","C","global",16.7384 -"MIROC-ESM","tas","temperature","tgav","rcp45",2175,"Simulated","C","global",16.7345 -"MIROC-ESM","tas","temperature","tgav","rcp45",2176,"Simulated","C","global",16.772 -"MIROC-ESM","tas","temperature","tgav","rcp45",2177,"Simulated","C","global",16.8473 -"MIROC-ESM","tas","temperature","tgav","rcp45",2178,"Simulated","C","global",16.7456 -"MIROC-ESM","tas","temperature","tgav","rcp45",2179,"Simulated","C","global",16.7003 -"MIROC-ESM","tas","temperature","tgav","rcp45",2180,"Simulated","C","global",16.7528 -"MIROC-ESM","tas","temperature","tgav","rcp45",2181,"Simulated","C","global",16.8029 -"MIROC-ESM","tas","temperature","tgav","rcp45",2182,"Simulated","C","global",16.8002 -"MIROC-ESM","tas","temperature","tgav","rcp45",2183,"Simulated","C","global",16.7397 -"MIROC-ESM","tas","temperature","tgav","rcp45",2184,"Simulated","C","global",16.777 -"MIROC-ESM","tas","temperature","tgav","rcp45",2185,"Simulated","C","global",16.7779 -"MIROC-ESM","tas","temperature","tgav","rcp45",2186,"Simulated","C","global",16.8567 -"MIROC-ESM","tas","temperature","tgav","rcp45",2187,"Simulated","C","global",16.8685 -"MIROC-ESM","tas","temperature","tgav","rcp45",2188,"Simulated","C","global",16.9083 -"MIROC-ESM","tas","temperature","tgav","rcp45",2189,"Simulated","C","global",16.9005 -"MIROC-ESM","tas","temperature","tgav","rcp45",2190,"Simulated","C","global",16.938 -"MIROC-ESM","tas","temperature","tgav","rcp45",2191,"Simulated","C","global",16.8716 -"MIROC-ESM","tas","temperature","tgav","rcp45",2192,"Simulated","C","global",17.0638 -"MIROC-ESM","tas","temperature","tgav","rcp45",2193,"Simulated","C","global",17.0461 -"MIROC-ESM","tas","temperature","tgav","rcp45",2194,"Simulated","C","global",16.9023 -"MIROC-ESM","tas","temperature","tgav","rcp45",2195,"Simulated","C","global",16.9132 -"MIROC-ESM","tas","temperature","tgav","rcp45",2196,"Simulated","C","global",16.7623 -"MIROC-ESM","tas","temperature","tgav","rcp45",2197,"Simulated","C","global",16.7879 -"MIROC-ESM","tas","temperature","tgav","rcp45",2198,"Simulated","C","global",16.7733 -"MIROC-ESM","tas","temperature","tgav","rcp45",2199,"Simulated","C","global",16.8575 -"MIROC-ESM","tas","temperature","tgav","rcp45",2200,"Simulated","C","global",16.9904 -"MIROC-ESM","tas","temperature","tgav","rcp45",2201,"Simulated","C","global",16.9635 -"MIROC-ESM","tas","temperature","tgav","rcp45",2202,"Simulated","C","global",16.9486 -"MIROC-ESM","tas","temperature","tgav","rcp45",2203,"Simulated","C","global",16.8669 -"MIROC-ESM","tas","temperature","tgav","rcp45",2204,"Simulated","C","global",16.9318 -"MIROC-ESM","tas","temperature","tgav","rcp45",2205,"Simulated","C","global",16.8226 -"MIROC-ESM","tas","temperature","tgav","rcp45",2206,"Simulated","C","global",16.8511 -"MIROC-ESM","tas","temperature","tgav","rcp45",2207,"Simulated","C","global",16.8744 -"MIROC-ESM","tas","temperature","tgav","rcp45",2208,"Simulated","C","global",16.9523 -"MIROC-ESM","tas","temperature","tgav","rcp45",2209,"Simulated","C","global",16.9137 -"MIROC-ESM","tas","temperature","tgav","rcp45",2210,"Simulated","C","global",16.869 -"MIROC-ESM","tas","temperature","tgav","rcp45",2211,"Simulated","C","global",16.9887 -"MIROC-ESM","tas","temperature","tgav","rcp45",2212,"Simulated","C","global",16.948 -"MIROC-ESM","tas","temperature","tgav","rcp45",2213,"Simulated","C","global",16.9805 -"MIROC-ESM","tas","temperature","tgav","rcp45",2214,"Simulated","C","global",16.9279 -"MIROC-ESM","tas","temperature","tgav","rcp45",2215,"Simulated","C","global",16.9444 -"MIROC-ESM","tas","temperature","tgav","rcp45",2216,"Simulated","C","global",16.9187 -"MIROC-ESM","tas","temperature","tgav","rcp45",2217,"Simulated","C","global",16.9595 -"MIROC-ESM","tas","temperature","tgav","rcp45",2218,"Simulated","C","global",16.9638 -"MIROC-ESM","tas","temperature","tgav","rcp45",2219,"Simulated","C","global",17.0128 -"MIROC-ESM","tas","temperature","tgav","rcp45",2220,"Simulated","C","global",16.9684 -"MIROC-ESM","tas","temperature","tgav","rcp45",2221,"Simulated","C","global",16.9399 -"MIROC-ESM","tas","temperature","tgav","rcp45",2222,"Simulated","C","global",16.9282 -"MIROC-ESM","tas","temperature","tgav","rcp45",2223,"Simulated","C","global",16.9105 -"MIROC-ESM","tas","temperature","tgav","rcp45",2224,"Simulated","C","global",16.9144 -"MIROC-ESM","tas","temperature","tgav","rcp45",2225,"Simulated","C","global",16.9182 -"MIROC-ESM","tas","temperature","tgav","rcp45",2226,"Simulated","C","global",17.1028 -"MIROC-ESM","tas","temperature","tgav","rcp45",2227,"Simulated","C","global",17.0291 -"MIROC-ESM","tas","temperature","tgav","rcp45",2228,"Simulated","C","global",16.9425 -"MIROC-ESM","tas","temperature","tgav","rcp45",2229,"Simulated","C","global",16.9691 -"MIROC-ESM","tas","temperature","tgav","rcp45",2230,"Simulated","C","global",17.0636 -"MIROC-ESM","tas","temperature","tgav","rcp45",2231,"Simulated","C","global",17.0553 -"MIROC-ESM","tas","temperature","tgav","rcp45",2232,"Simulated","C","global",17.0698 -"MIROC-ESM","tas","temperature","tgav","rcp45",2233,"Simulated","C","global",17.0715 -"MIROC-ESM","tas","temperature","tgav","rcp45",2234,"Simulated","C","global",17.0251 -"MIROC-ESM","tas","temperature","tgav","rcp45",2235,"Simulated","C","global",17.0627 -"MIROC-ESM","tas","temperature","tgav","rcp45",2236,"Simulated","C","global",16.9753 -"MIROC-ESM","tas","temperature","tgav","rcp45",2237,"Simulated","C","global",16.9221 -"MIROC-ESM","tas","temperature","tgav","rcp45",2238,"Simulated","C","global",16.9805 -"MIROC-ESM","tas","temperature","tgav","rcp45",2239,"Simulated","C","global",16.8324 -"MIROC-ESM","tas","temperature","tgav","rcp45",2240,"Simulated","C","global",16.8263 -"MIROC-ESM","tas","temperature","tgav","rcp45",2241,"Simulated","C","global",17.0569 -"MIROC-ESM","tas","temperature","tgav","rcp45",2242,"Simulated","C","global",17.1995 -"MIROC-ESM","tas","temperature","tgav","rcp45",2243,"Simulated","C","global",17.0302 -"MIROC-ESM","tas","temperature","tgav","rcp45",2244,"Simulated","C","global",17.0218 -"MIROC-ESM","tas","temperature","tgav","rcp45",2245,"Simulated","C","global",17.0382 -"MIROC-ESM","tas","temperature","tgav","rcp45",2246,"Simulated","C","global",16.9754 -"MIROC-ESM","tas","temperature","tgav","rcp45",2247,"Simulated","C","global",17.1231 -"MIROC-ESM","tas","temperature","tgav","rcp45",2248,"Simulated","C","global",17.1975 -"MIROC-ESM","tas","temperature","tgav","rcp45",2249,"Simulated","C","global",17.0698 -"MIROC-ESM","tas","temperature","tgav","rcp45",2250,"Simulated","C","global",17.0587 -"MIROC-ESM","tas","temperature","tgav","rcp45",2251,"Simulated","C","global",16.9526 -"MIROC-ESM","tas","temperature","tgav","rcp45",2252,"Simulated","C","global",16.9832 -"MIROC-ESM","tas","temperature","tgav","rcp45",2253,"Simulated","C","global",16.9559 -"MIROC-ESM","tas","temperature","tgav","rcp45",2254,"Simulated","C","global",16.9115 -"MIROC-ESM","tas","temperature","tgav","rcp45",2255,"Simulated","C","global",16.9098 -"MIROC-ESM","tas","temperature","tgav","rcp45",2256,"Simulated","C","global",16.9203 -"MIROC-ESM","tas","temperature","tgav","rcp45",2257,"Simulated","C","global",17.0367 -"MIROC-ESM","tas","temperature","tgav","rcp45",2258,"Simulated","C","global",17.1847 -"MIROC-ESM","tas","temperature","tgav","rcp45",2259,"Simulated","C","global",17.1484 -"MIROC-ESM","tas","temperature","tgav","rcp45",2260,"Simulated","C","global",17.1133 -"MIROC-ESM","tas","temperature","tgav","rcp45",2261,"Simulated","C","global",17.009 -"MIROC-ESM","tas","temperature","tgav","rcp45",2262,"Simulated","C","global",16.9247 -"MIROC-ESM","tas","temperature","tgav","rcp45",2263,"Simulated","C","global",17.0612 -"MIROC-ESM","tas","temperature","tgav","rcp45",2264,"Simulated","C","global",17.0806 -"MIROC-ESM","tas","temperature","tgav","rcp45",2265,"Simulated","C","global",17.0153 -"MIROC-ESM","tas","temperature","tgav","rcp45",2266,"Simulated","C","global",17.1874 -"MIROC-ESM","tas","temperature","tgav","rcp45",2267,"Simulated","C","global",17.0516 -"MIROC-ESM","tas","temperature","tgav","rcp45",2268,"Simulated","C","global",17.1011 -"MIROC-ESM","tas","temperature","tgav","rcp45",2269,"Simulated","C","global",17.159 -"MIROC-ESM","tas","temperature","tgav","rcp45",2270,"Simulated","C","global",17.19 -"MIROC-ESM","tas","temperature","tgav","rcp45",2271,"Simulated","C","global",17.2491 -"MIROC-ESM","tas","temperature","tgav","rcp45",2272,"Simulated","C","global",17.1554 -"MIROC-ESM","tas","temperature","tgav","rcp45",2273,"Simulated","C","global",17.0795 -"MIROC-ESM","tas","temperature","tgav","rcp45",2274,"Simulated","C","global",17.1548 -"MIROC-ESM","tas","temperature","tgav","rcp45",2275,"Simulated","C","global",17.0363 -"MIROC-ESM","tas","temperature","tgav","rcp45",2276,"Simulated","C","global",16.9861 -"MIROC-ESM","tas","temperature","tgav","rcp45",2277,"Simulated","C","global",16.9367 -"MIROC-ESM","tas","temperature","tgav","rcp45",2278,"Simulated","C","global",17.1046 -"MIROC-ESM","tas","temperature","tgav","rcp45",2279,"Simulated","C","global",16.9743 -"MIROC-ESM","tas","temperature","tgav","rcp45",2280,"Simulated","C","global",16.9624 -"MIROC-ESM","tas","temperature","tgav","rcp45",2281,"Simulated","C","global",17.1722 -"MIROC-ESM","tas","temperature","tgav","rcp45",2282,"Simulated","C","global",17.1342 -"MIROC-ESM","tas","temperature","tgav","rcp45",2283,"Simulated","C","global",17.2348 -"MIROC-ESM","tas","temperature","tgav","rcp45",2284,"Simulated","C","global",17.249 -"MIROC-ESM","tas","temperature","tgav","rcp45",2285,"Simulated","C","global",17.1742 -"MIROC-ESM","tas","temperature","tgav","rcp45",2286,"Simulated","C","global",17.1284 -"MIROC-ESM","tas","temperature","tgav","rcp45",2287,"Simulated","C","global",17.1662 -"MIROC-ESM","tas","temperature","tgav","rcp45",2288,"Simulated","C","global",17.1607 -"MIROC-ESM","tas","temperature","tgav","rcp45",2289,"Simulated","C","global",17.2178 -"MIROC-ESM","tas","temperature","tgav","rcp45",2290,"Simulated","C","global",17.1694 -"MIROC-ESM","tas","temperature","tgav","rcp45",2291,"Simulated","C","global",17.1833 -"MIROC-ESM","tas","temperature","tgav","rcp45",2292,"Simulated","C","global",17.1659 -"MIROC-ESM","tas","temperature","tgav","rcp45",2293,"Simulated","C","global",17.1626 -"MIROC-ESM","tas","temperature","tgav","rcp45",2294,"Simulated","C","global",17.1603 -"MIROC-ESM","tas","temperature","tgav","rcp45",2295,"Simulated","C","global",17.208 -"MIROC-ESM","tas","temperature","tgav","rcp45",2296,"Simulated","C","global",17.1688 -"MIROC-ESM","tas","temperature","tgav","rcp45",2297,"Simulated","C","global",17.2047 -"MIROC-ESM","tas","temperature","tgav","rcp45",2298,"Simulated","C","global",17.1494 -"MIROC-ESM","tas","temperature","tgav","rcp45",2299,"Simulated","C","global",17.1899 -"MIROC-ESM","tas","temperature","tgav","rcp45",2300,"Simulated","C","global",17.2568 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-8.95169999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-9.029 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-8.72809999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-8.76959999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-8.51009999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-8.59099999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-8.32799999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-8.1635 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-8.21109999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-8.44759999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-8.5471 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-8.13649999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-7.8338 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-7.62309999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-8.06529999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-7.72129999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-7.47929999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-7.42419999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-7.31649999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-7.59209999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-7.38889999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-7.24439999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-7.7174 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-7.1651 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-7.34879999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-7.0718 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-7.13219999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-7.0265 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-6.75359999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-6.68389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-6.78099999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-6.5333 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-6.70519999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-6.89149999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-6.5419 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-6.3981 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-6.44299999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-6.27879999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-6.10639999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-6.37129999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-6.1857 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-6.4153 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-6.35409999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-6.11579999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-6.0394 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-6.17910000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-5.86269999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-5.96729999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-6.1721 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-6.20659999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-6.45179999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-5.82159999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-5.56209999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-5.90549999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-5.84779999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-6.0489 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-5.3408 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-5.64159999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-5.5351 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-5.5761 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-5.38979999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-5.21469999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-5.17319999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-5.6019 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-5.5444 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-5.47199999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-5.4776 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-5.55879999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-5.65459999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-5.12269999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-5.02839999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-5.0256 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-5.16949999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-5.19259999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-4.98359999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-5.04379999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-5.0059 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-5.3082 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-5.21909999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-5.06389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-5.14149999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-5.21789999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-5.47609999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-5.5335 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-5.13549999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-5.19399999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-5.15940000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-4.99899999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-5.02599999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-5.11959999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-5.0915 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-5.19929999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-5.09049999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-4.95959999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-4.95659999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-5.15609999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-4.88249999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2103,"Simulated","C","HL",-5.09989999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2104,"Simulated","C","HL",-4.82839999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2105,"Simulated","C","HL",-4.87619999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2106,"Simulated","C","HL",-4.76779999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2107,"Simulated","C","HL",-5.24179999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2108,"Simulated","C","HL",-4.82459999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2109,"Simulated","C","HL",-4.52509999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2110,"Simulated","C","HL",-4.63899999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2111,"Simulated","C","HL",-4.89509999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2112,"Simulated","C","HL",-4.71029999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2113,"Simulated","C","HL",-5.02969999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2114,"Simulated","C","HL",-5.03789999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2115,"Simulated","C","HL",-4.6687 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2116,"Simulated","C","HL",-5.00149999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2117,"Simulated","C","HL",-5.17719999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2118,"Simulated","C","HL",-4.8528 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2119,"Simulated","C","HL",-4.8879 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2120,"Simulated","C","HL",-4.98999999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2121,"Simulated","C","HL",-5.10049999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2122,"Simulated","C","HL",-5.30859999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2123,"Simulated","C","HL",-4.9776 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2124,"Simulated","C","HL",-4.64189999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2125,"Simulated","C","HL",-4.5573 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2126,"Simulated","C","HL",-4.80669999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2127,"Simulated","C","HL",-4.69379999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2128,"Simulated","C","HL",-4.8766 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2129,"Simulated","C","HL",-5.39009999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2130,"Simulated","C","HL",-5.00309999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2131,"Simulated","C","HL",-5.10629999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2132,"Simulated","C","HL",-4.7602 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2133,"Simulated","C","HL",-4.8254 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2134,"Simulated","C","HL",-4.63479999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2135,"Simulated","C","HL",-5.09779999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2136,"Simulated","C","HL",-4.8954 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2137,"Simulated","C","HL",-4.67859999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2138,"Simulated","C","HL",-5.00319999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2139,"Simulated","C","HL",-4.55429999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2140,"Simulated","C","HL",-4.5247 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2141,"Simulated","C","HL",-4.90789999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2142,"Simulated","C","HL",-4.9187 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2143,"Simulated","C","HL",-4.928 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2144,"Simulated","C","HL",-4.89769999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2145,"Simulated","C","HL",-4.93619999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2146,"Simulated","C","HL",-4.97379999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2147,"Simulated","C","HL",-4.8272 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2148,"Simulated","C","HL",-4.74549999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2149,"Simulated","C","HL",-4.62079999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2150,"Simulated","C","HL",-4.79199999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2151,"Simulated","C","HL",-4.81479999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2152,"Simulated","C","HL",-5.10489999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2153,"Simulated","C","HL",-4.91789999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2154,"Simulated","C","HL",-4.93389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2155,"Simulated","C","HL",-4.69009999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2156,"Simulated","C","HL",-4.62449999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2157,"Simulated","C","HL",-4.64819999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2158,"Simulated","C","HL",-4.80339999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2159,"Simulated","C","HL",-4.68879999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2160,"Simulated","C","HL",-5.0412 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2161,"Simulated","C","HL",-4.75039999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2162,"Simulated","C","HL",-4.67399999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2163,"Simulated","C","HL",-4.80809999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2164,"Simulated","C","HL",-4.50829999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2165,"Simulated","C","HL",-4.57469999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2166,"Simulated","C","HL",-4.95259999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2167,"Simulated","C","HL",-4.67559999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2168,"Simulated","C","HL",-4.74399999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2169,"Simulated","C","HL",-4.92719999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2170,"Simulated","C","HL",-5.07169999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2171,"Simulated","C","HL",-4.56469999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2172,"Simulated","C","HL",-4.262 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2173,"Simulated","C","HL",-4.51669999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2174,"Simulated","C","HL",-4.6112 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2175,"Simulated","C","HL",-4.68079999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2176,"Simulated","C","HL",-4.90479999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2177,"Simulated","C","HL",-4.78549999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2178,"Simulated","C","HL",-4.74199999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2179,"Simulated","C","HL",-5.00419999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2180,"Simulated","C","HL",-4.97809999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2181,"Simulated","C","HL",-4.71529999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2182,"Simulated","C","HL",-4.70979999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2183,"Simulated","C","HL",-4.75459999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2184,"Simulated","C","HL",-4.58699999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2185,"Simulated","C","HL",-4.74649999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2186,"Simulated","C","HL",-4.80949999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2187,"Simulated","C","HL",-4.59029999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2188,"Simulated","C","HL",-4.47789999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2189,"Simulated","C","HL",-4.5616 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2190,"Simulated","C","HL",-4.64349999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2191,"Simulated","C","HL",-4.82749999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2192,"Simulated","C","HL",-4.39959999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2193,"Simulated","C","HL",-4.32149999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2194,"Simulated","C","HL",-4.46909999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2195,"Simulated","C","HL",-4.4008 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2196,"Simulated","C","HL",-4.8295 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2197,"Simulated","C","HL",-4.75369999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2198,"Simulated","C","HL",-4.98769999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2199,"Simulated","C","HL",-4.87239999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2200,"Simulated","C","HL",-4.4624 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2201,"Simulated","C","HL",-4.5478 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2202,"Simulated","C","HL",-4.36419999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2203,"Simulated","C","HL",-4.7722 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2204,"Simulated","C","HL",-4.27159999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2205,"Simulated","C","HL",-4.5 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2206,"Simulated","C","HL",-4.51479999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2207,"Simulated","C","HL",-4.45769999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2208,"Simulated","C","HL",-4.38 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2209,"Simulated","C","HL",-4.68959999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2210,"Simulated","C","HL",-4.62059999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2211,"Simulated","C","HL",-4.5027 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2212,"Simulated","C","HL",-4.66219999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2213,"Simulated","C","HL",-4.39499999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2214,"Simulated","C","HL",-4.44129999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2215,"Simulated","C","HL",-4.52139999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2216,"Simulated","C","HL",-4.48519999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2217,"Simulated","C","HL",-4.44279999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2218,"Simulated","C","HL",-4.71749999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2219,"Simulated","C","HL",-4.68059999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2220,"Simulated","C","HL",-4.66149999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2221,"Simulated","C","HL",-4.5872 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2222,"Simulated","C","HL",-4.36579999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2223,"Simulated","C","HL",-4.34829999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2224,"Simulated","C","HL",-4.5215 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2225,"Simulated","C","HL",-4.61059999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2226,"Simulated","C","HL",-3.94459999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2227,"Simulated","C","HL",-4.45189999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2228,"Simulated","C","HL",-4.47069999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2229,"Simulated","C","HL",-4.64489999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2230,"Simulated","C","HL",-4.25839999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2231,"Simulated","C","HL",-4.34999999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2232,"Simulated","C","HL",-4.32779999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2233,"Simulated","C","HL",-4.41469999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2234,"Simulated","C","HL",-4.58409999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2235,"Simulated","C","HL",-4.495 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2236,"Simulated","C","HL",-4.41849999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2237,"Simulated","C","HL",-4.72089999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2238,"Simulated","C","HL",-4.4255 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2239,"Simulated","C","HL",-4.23519999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2240,"Simulated","C","HL",-4.62549999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2241,"Simulated","C","HL",-4.24949999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2242,"Simulated","C","HL",-4.07799999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2243,"Simulated","C","HL",-4.32249999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2244,"Simulated","C","HL",-4.22269999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2245,"Simulated","C","HL",-4.26669999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2246,"Simulated","C","HL",-4.49769999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2247,"Simulated","C","HL",-4.26709999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2248,"Simulated","C","HL",-4.26919999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2249,"Simulated","C","HL",-4.31180000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2250,"Simulated","C","HL",-4.45359999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2251,"Simulated","C","HL",-4.815 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2252,"Simulated","C","HL",-4.3374 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2253,"Simulated","C","HL",-4.5179 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2254,"Simulated","C","HL",-4.48939999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2255,"Simulated","C","HL",-4.5077 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2256,"Simulated","C","HL",-4.6875 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2257,"Simulated","C","HL",-4.66339999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2258,"Simulated","C","HL",-4.3252 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2259,"Simulated","C","HL",-4.1114 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2260,"Simulated","C","HL",-3.94929999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2261,"Simulated","C","HL",-4.29539999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2262,"Simulated","C","HL",-4.69389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2263,"Simulated","C","HL",-4.53609999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2264,"Simulated","C","HL",-4.34959999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2265,"Simulated","C","HL",-4.45839999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2266,"Simulated","C","HL",-4.08749999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2267,"Simulated","C","HL",-4.35649999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2268,"Simulated","C","HL",-4.27539999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2269,"Simulated","C","HL",-4.34429999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2270,"Simulated","C","HL",-4.40989999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2271,"Simulated","C","HL",-4.10839999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2272,"Simulated","C","HL",-4.06909999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2273,"Simulated","C","HL",-3.97399999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2274,"Simulated","C","HL",-3.83169999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2275,"Simulated","C","HL",-4.16149999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2276,"Simulated","C","HL",-4.27189999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2277,"Simulated","C","HL",-4.30089999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2278,"Simulated","C","HL",-3.72309999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2279,"Simulated","C","HL",-4.31829999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2280,"Simulated","C","HL",-4.24199999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2281,"Simulated","C","HL",-3.95389999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2282,"Simulated","C","HL",-4.04289999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2283,"Simulated","C","HL",-4.2038 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2284,"Simulated","C","HL",-3.9982 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2285,"Simulated","C","HL",-4.24959999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2286,"Simulated","C","HL",-4.23919999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2287,"Simulated","C","HL",-4.20249999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2288,"Simulated","C","HL",-4.35429999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2289,"Simulated","C","HL",-4.12899999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2290,"Simulated","C","HL",-4.10829999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2291,"Simulated","C","HL",-4.1189 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2292,"Simulated","C","HL",-4.33429999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2293,"Simulated","C","HL",-4.0498 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2294,"Simulated","C","HL",-4.37289999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2295,"Simulated","C","HL",-4.2099 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2296,"Simulated","C","HL",-4.18449999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2297,"Simulated","C","HL",-4.108 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2298,"Simulated","C","HL",-4.2122 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2299,"Simulated","C","HL",-4.31659999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp45",2300,"Simulated","C","HL",-4.29949999999997 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",19.1408 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",19.2045 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",19.0989 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",19.0499 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",19.2351 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",19.322 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",19.4332 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",19.3555 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",19.3973 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",19.4213 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",19.4053 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",19.3721 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",19.3475 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",19.4828 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",19.552 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",19.7016 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",19.6584 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",19.5888 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",19.6337 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",19.7329 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",19.9816 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",19.899 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",19.7858 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",19.8695 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",19.7639 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",19.9074 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",20.0083 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",19.9614 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",20.1627 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",20.1475 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",20.0539 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",20.0896 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",20.1534 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",20.1272 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",20.2799 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",20.1401 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",20.212 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",20.1538 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",20.2179 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",20.1885 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",20.302 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",20.3511 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",20.49 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",20.4708 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",20.3931 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",20.4583 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",20.4287 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",20.4128 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",20.4426 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",20.3891 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",20.293 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",20.4475 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",20.6201 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",20.635 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",20.6187 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",20.6554 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",20.7883 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",20.8471 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",20.8488 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",20.8043 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",20.9 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",20.9535 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",20.9098 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",20.7555 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",20.8389 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",20.954 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",21.0774 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",21.0686 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",21.064 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",21.0818 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",21.0821 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",21.1337 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",20.9915 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",20.9771 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",21.0465 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",20.9809 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",21.0665 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",21.0045 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",21.0569 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",21.032 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",20.9587 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",20.9032 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",20.9801 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",20.9512 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",21.0929 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",21.1888 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",21.1557 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",21.0824 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",21.0688 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",20.9426 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",21.0439 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",21.0352 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",21.2184 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",21.1393 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",21.1216 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",21.2498000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",21.1799 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2103,"Simulated","C","LL",21.0553 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2104,"Simulated","C","LL",21.1661 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2105,"Simulated","C","LL",21.1487 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2106,"Simulated","C","LL",21.0995 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2107,"Simulated","C","LL",21.0884 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2108,"Simulated","C","LL",21.0486 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2109,"Simulated","C","LL",21.1545 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2110,"Simulated","C","LL",21.1169 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2111,"Simulated","C","LL",21.1745 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2112,"Simulated","C","LL",21.2221 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2113,"Simulated","C","LL",21.194 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2114,"Simulated","C","LL",21.1768 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2115,"Simulated","C","LL",21.1493 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2116,"Simulated","C","LL",21.087 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2117,"Simulated","C","LL",20.939 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2118,"Simulated","C","LL",21.058 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2119,"Simulated","C","LL",21.0507 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2120,"Simulated","C","LL",21.0824 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2121,"Simulated","C","LL",21.1138 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2122,"Simulated","C","LL",21.1952 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2123,"Simulated","C","LL",21.3106 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2124,"Simulated","C","LL",21.3288 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2125,"Simulated","C","LL",21.3402 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2126,"Simulated","C","LL",21.1651 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2127,"Simulated","C","LL",21.1667 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2128,"Simulated","C","LL",21.1676 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2129,"Simulated","C","LL",21.1355 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2130,"Simulated","C","LL",21.1887 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2131,"Simulated","C","LL",21.2011 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2132,"Simulated","C","LL",21.1342 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2133,"Simulated","C","LL",21.1055 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2134,"Simulated","C","LL",21.2998 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2135,"Simulated","C","LL",21.2576 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2136,"Simulated","C","LL",21.3774 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2137,"Simulated","C","LL",21.2954 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2138,"Simulated","C","LL",21.2308 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2139,"Simulated","C","LL",21.2063 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2140,"Simulated","C","LL",21.21 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2141,"Simulated","C","LL",21.3115 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2142,"Simulated","C","LL",21.2411 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2143,"Simulated","C","LL",21.2332 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2144,"Simulated","C","LL",21.117 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2145,"Simulated","C","LL",21.1412 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2146,"Simulated","C","LL",21.1706 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2147,"Simulated","C","LL",21.2492 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2148,"Simulated","C","LL",21.3225 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2149,"Simulated","C","LL",21.1742 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2150,"Simulated","C","LL",21.2287 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2151,"Simulated","C","LL",21.1958 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2152,"Simulated","C","LL",21.3079 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2153,"Simulated","C","LL",21.2462 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2154,"Simulated","C","LL",21.201 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2155,"Simulated","C","LL",21.3957 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2156,"Simulated","C","LL",21.3474000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2157,"Simulated","C","LL",21.2747 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2158,"Simulated","C","LL",21.1799 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2159,"Simulated","C","LL",21.1363 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2160,"Simulated","C","LL",21.163 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2161,"Simulated","C","LL",21.3419 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2162,"Simulated","C","LL",21.2511 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2163,"Simulated","C","LL",21.304 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2164,"Simulated","C","LL",21.4509 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2165,"Simulated","C","LL",21.2619 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2166,"Simulated","C","LL",21.2982 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2167,"Simulated","C","LL",21.3921 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2168,"Simulated","C","LL",21.4281 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2169,"Simulated","C","LL",21.3834 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2170,"Simulated","C","LL",21.2081 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2171,"Simulated","C","LL",21.2763 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2172,"Simulated","C","LL",21.2801 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2173,"Simulated","C","LL",21.3133 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2174,"Simulated","C","LL",21.1959 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2175,"Simulated","C","LL",21.2057 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2176,"Simulated","C","LL",21.2979 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2177,"Simulated","C","LL",21.364 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2178,"Simulated","C","LL",21.232 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2179,"Simulated","C","LL",21.232 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2180,"Simulated","C","LL",21.29 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2181,"Simulated","C","LL",21.2957 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2182,"Simulated","C","LL",21.2912 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2183,"Simulated","C","LL",21.2274 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2184,"Simulated","C","LL",21.2376 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2185,"Simulated","C","LL",21.2719 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2186,"Simulated","C","LL",21.3804 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2187,"Simulated","C","LL",21.3489 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2188,"Simulated","C","LL",21.3735 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2189,"Simulated","C","LL",21.3816 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2190,"Simulated","C","LL",21.4439 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2191,"Simulated","C","LL",21.4021 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2192,"Simulated","C","LL",21.5451 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2193,"Simulated","C","LL",21.5074 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2194,"Simulated","C","LL",21.3644 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2195,"Simulated","C","LL",21.3633 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2196,"Simulated","C","LL",21.2704 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2197,"Simulated","C","LL",21.2855 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2198,"Simulated","C","LL",21.3168 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2199,"Simulated","C","LL",21.3945000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2200,"Simulated","C","LL",21.4695 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2201,"Simulated","C","LL",21.4548 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2202,"Simulated","C","LL",21.3985 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2203,"Simulated","C","LL",21.3849 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2204,"Simulated","C","LL",21.3588 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2205,"Simulated","C","LL",21.2746 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2206,"Simulated","C","LL",21.3121 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2207,"Simulated","C","LL",21.3283 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2208,"Simulated","C","LL",21.4062 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2209,"Simulated","C","LL",21.4243 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2210,"Simulated","C","LL",21.3558 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2211,"Simulated","C","LL",21.4758 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2212,"Simulated","C","LL",21.46 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2213,"Simulated","C","LL",21.4434 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2214,"Simulated","C","LL",21.3896 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2215,"Simulated","C","LL",21.4262 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2216,"Simulated","C","LL",21.3876 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2217,"Simulated","C","LL",21.4281 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2218,"Simulated","C","LL",21.4906 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2219,"Simulated","C","LL",21.5421 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2220,"Simulated","C","LL",21.4845 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2221,"Simulated","C","LL",21.4345 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2222,"Simulated","C","LL",21.3742 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2223,"Simulated","C","LL",21.3491 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2224,"Simulated","C","LL",21.39 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2225,"Simulated","C","LL",21.4132 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2226,"Simulated","C","LL",21.4972 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2227,"Simulated","C","LL",21.5141 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2228,"Simulated","C","LL",21.4134 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2229,"Simulated","C","LL",21.4819 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2230,"Simulated","C","LL",21.5154 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2231,"Simulated","C","LL",21.5245 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2232,"Simulated","C","LL",21.5373 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2233,"Simulated","C","LL",21.5576 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2234,"Simulated","C","LL",21.5369 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2235,"Simulated","C","LL",21.5638 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2236,"Simulated","C","LL",21.4421 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2237,"Simulated","C","LL",21.4409 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2238,"Simulated","C","LL",21.4498 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2239,"Simulated","C","LL",21.2311 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2240,"Simulated","C","LL",21.3052 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2241,"Simulated","C","LL",21.5054 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2242,"Simulated","C","LL",21.6419 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2243,"Simulated","C","LL",21.4884 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2244,"Simulated","C","LL",21.4574 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2245,"Simulated","C","LL",21.4864 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2246,"Simulated","C","LL",21.4588 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2247,"Simulated","C","LL",21.5892 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2248,"Simulated","C","LL",21.6795 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2249,"Simulated","C","LL",21.534 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2250,"Simulated","C","LL",21.5502 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2251,"Simulated","C","LL",21.4974 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2252,"Simulated","C","LL",21.4347 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2253,"Simulated","C","LL",21.4394 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2254,"Simulated","C","LL",21.3797 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2255,"Simulated","C","LL",21.3815 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2256,"Simulated","C","LL",21.4317 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2257,"Simulated","C","LL",21.5675 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2258,"Simulated","C","LL",21.6757 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2259,"Simulated","C","LL",21.5872 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2260,"Simulated","C","LL",21.5109 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2261,"Simulated","C","LL",21.4571 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2262,"Simulated","C","LL",21.4384 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2263,"Simulated","C","LL",21.5705 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2264,"Simulated","C","LL",21.555 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2265,"Simulated","C","LL",21.4988 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2266,"Simulated","C","LL",21.6294 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2267,"Simulated","C","LL",21.5213 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2268,"Simulated","C","LL",21.5643 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2269,"Simulated","C","LL",21.6487 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2270,"Simulated","C","LL",21.6998 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2271,"Simulated","C","LL",21.7084 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2272,"Simulated","C","LL",21.5868 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2273,"Simulated","C","LL",21.4752 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2274,"Simulated","C","LL",21.5366 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2275,"Simulated","C","LL",21.4622 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2276,"Simulated","C","LL",21.4246 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2277,"Simulated","C","LL",21.3708 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2278,"Simulated","C","LL",21.4532 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2279,"Simulated","C","LL",21.42 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2280,"Simulated","C","LL",21.3896 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2281,"Simulated","C","LL",21.5832 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2282,"Simulated","C","LL",21.5557 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2283,"Simulated","C","LL",21.711 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2284,"Simulated","C","LL",21.6852 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2285,"Simulated","C","LL",21.6472 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2286,"Simulated","C","LL",21.5898 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2287,"Simulated","C","LL",21.6278 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2288,"Simulated","C","LL",21.6528 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2289,"Simulated","C","LL",21.6748 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2290,"Simulated","C","LL",21.612 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2291,"Simulated","C","LL",21.6309 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2292,"Simulated","C","LL",21.6549 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2293,"Simulated","C","LL",21.5915 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2294,"Simulated","C","LL",21.6562 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2295,"Simulated","C","LL",21.6798 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2296,"Simulated","C","LL",21.6271 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2297,"Simulated","C","LL",21.6545 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2298,"Simulated","C","LL",21.6094000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2299,"Simulated","C","LL",21.6802 -"MIROC-ESM","tas","temperature","tgav_LL","rcp45",2300,"Simulated","C","LL",21.7575000000001 -"NorESM1-ME","tas","temperature","tgav","rcp45",2006,"Simulated","C","global",13.6041 -"NorESM1-ME","tas","temperature","tgav","rcp45",2007,"Simulated","C","global",13.5247 -"NorESM1-ME","tas","temperature","tgav","rcp45",2008,"Simulated","C","global",13.5549 -"NorESM1-ME","tas","temperature","tgav","rcp45",2009,"Simulated","C","global",13.5814 -"NorESM1-ME","tas","temperature","tgav","rcp45",2010,"Simulated","C","global",13.5738 -"NorESM1-ME","tas","temperature","tgav","rcp45",2011,"Simulated","C","global",13.5071 -"NorESM1-ME","tas","temperature","tgav","rcp45",2012,"Simulated","C","global",13.6177 -"NorESM1-ME","tas","temperature","tgav","rcp45",2013,"Simulated","C","global",13.8606 -"NorESM1-ME","tas","temperature","tgav","rcp45",2014,"Simulated","C","global",13.6945 -"NorESM1-ME","tas","temperature","tgav","rcp45",2015,"Simulated","C","global",13.7434 -"NorESM1-ME","tas","temperature","tgav","rcp45",2016,"Simulated","C","global",13.8867 -"NorESM1-ME","tas","temperature","tgav","rcp45",2017,"Simulated","C","global",13.8842 -"NorESM1-ME","tas","temperature","tgav","rcp45",2018,"Simulated","C","global",13.6962 -"NorESM1-ME","tas","temperature","tgav","rcp45",2019,"Simulated","C","global",13.6829 -"NorESM1-ME","tas","temperature","tgav","rcp45",2020,"Simulated","C","global",13.7908 -"NorESM1-ME","tas","temperature","tgav","rcp45",2021,"Simulated","C","global",13.6938 -"NorESM1-ME","tas","temperature","tgav","rcp45",2022,"Simulated","C","global",13.798 -"NorESM1-ME","tas","temperature","tgav","rcp45",2023,"Simulated","C","global",13.8716 -"NorESM1-ME","tas","temperature","tgav","rcp45",2024,"Simulated","C","global",13.9032 -"NorESM1-ME","tas","temperature","tgav","rcp45",2025,"Simulated","C","global",13.9462 -"NorESM1-ME","tas","temperature","tgav","rcp45",2026,"Simulated","C","global",13.8667 -"NorESM1-ME","tas","temperature","tgav","rcp45",2027,"Simulated","C","global",13.9462 -"NorESM1-ME","tas","temperature","tgav","rcp45",2028,"Simulated","C","global",14.1132 -"NorESM1-ME","tas","temperature","tgav","rcp45",2029,"Simulated","C","global",14.0326 -"NorESM1-ME","tas","temperature","tgav","rcp45",2030,"Simulated","C","global",14.0243 -"NorESM1-ME","tas","temperature","tgav","rcp45",2031,"Simulated","C","global",14.01 -"NorESM1-ME","tas","temperature","tgav","rcp45",2032,"Simulated","C","global",14.1102 -"NorESM1-ME","tas","temperature","tgav","rcp45",2033,"Simulated","C","global",14.0201 -"NorESM1-ME","tas","temperature","tgav","rcp45",2034,"Simulated","C","global",14.0201 -"NorESM1-ME","tas","temperature","tgav","rcp45",2035,"Simulated","C","global",14.0524 -"NorESM1-ME","tas","temperature","tgav","rcp45",2036,"Simulated","C","global",14.2039 -"NorESM1-ME","tas","temperature","tgav","rcp45",2037,"Simulated","C","global",14.1082 -"NorESM1-ME","tas","temperature","tgav","rcp45",2038,"Simulated","C","global",14.2190000000001 -"NorESM1-ME","tas","temperature","tgav","rcp45",2039,"Simulated","C","global",14.1077 -"NorESM1-ME","tas","temperature","tgav","rcp45",2040,"Simulated","C","global",14.3038 -"NorESM1-ME","tas","temperature","tgav","rcp45",2041,"Simulated","C","global",14.2718 -"NorESM1-ME","tas","temperature","tgav","rcp45",2042,"Simulated","C","global",14.2337 -"NorESM1-ME","tas","temperature","tgav","rcp45",2043,"Simulated","C","global",14.2656 -"NorESM1-ME","tas","temperature","tgav","rcp45",2044,"Simulated","C","global",14.2756 -"NorESM1-ME","tas","temperature","tgav","rcp45",2045,"Simulated","C","global",14.3643 -"NorESM1-ME","tas","temperature","tgav","rcp45",2046,"Simulated","C","global",14.5384 -"NorESM1-ME","tas","temperature","tgav","rcp45",2047,"Simulated","C","global",14.4221 -"NorESM1-ME","tas","temperature","tgav","rcp45",2048,"Simulated","C","global",14.34 -"NorESM1-ME","tas","temperature","tgav","rcp45",2049,"Simulated","C","global",14.3661 -"NorESM1-ME","tas","temperature","tgav","rcp45",2050,"Simulated","C","global",14.5382 -"NorESM1-ME","tas","temperature","tgav","rcp45",2051,"Simulated","C","global",14.6919 -"NorESM1-ME","tas","temperature","tgav","rcp45",2052,"Simulated","C","global",14.6929 -"NorESM1-ME","tas","temperature","tgav","rcp45",2053,"Simulated","C","global",14.5239 -"NorESM1-ME","tas","temperature","tgav","rcp45",2054,"Simulated","C","global",14.5386 -"NorESM1-ME","tas","temperature","tgav","rcp45",2055,"Simulated","C","global",14.5967 -"NorESM1-ME","tas","temperature","tgav","rcp45",2056,"Simulated","C","global",14.6171000000001 -"NorESM1-ME","tas","temperature","tgav","rcp45",2057,"Simulated","C","global",14.4686 -"NorESM1-ME","tas","temperature","tgav","rcp45",2058,"Simulated","C","global",14.6856 -"NorESM1-ME","tas","temperature","tgav","rcp45",2059,"Simulated","C","global",14.7925 -"NorESM1-ME","tas","temperature","tgav","rcp45",2060,"Simulated","C","global",14.5966 -"NorESM1-ME","tas","temperature","tgav","rcp45",2061,"Simulated","C","global",14.5042 -"NorESM1-ME","tas","temperature","tgav","rcp45",2062,"Simulated","C","global",14.5209 -"NorESM1-ME","tas","temperature","tgav","rcp45",2063,"Simulated","C","global",14.8065 -"NorESM1-ME","tas","temperature","tgav","rcp45",2064,"Simulated","C","global",14.7198 -"NorESM1-ME","tas","temperature","tgav","rcp45",2065,"Simulated","C","global",14.6721 -"NorESM1-ME","tas","temperature","tgav","rcp45",2066,"Simulated","C","global",14.626 -"NorESM1-ME","tas","temperature","tgav","rcp45",2067,"Simulated","C","global",14.6386 -"NorESM1-ME","tas","temperature","tgav","rcp45",2068,"Simulated","C","global",14.7662 -"NorESM1-ME","tas","temperature","tgav","rcp45",2069,"Simulated","C","global",14.753 -"NorESM1-ME","tas","temperature","tgav","rcp45",2070,"Simulated","C","global",14.9187 -"NorESM1-ME","tas","temperature","tgav","rcp45",2071,"Simulated","C","global",14.846 -"NorESM1-ME","tas","temperature","tgav","rcp45",2072,"Simulated","C","global",14.9397 -"NorESM1-ME","tas","temperature","tgav","rcp45",2073,"Simulated","C","global",14.9982 -"NorESM1-ME","tas","temperature","tgav","rcp45",2074,"Simulated","C","global",14.8678 -"NorESM1-ME","tas","temperature","tgav","rcp45",2075,"Simulated","C","global",14.8264 -"NorESM1-ME","tas","temperature","tgav","rcp45",2076,"Simulated","C","global",14.8066 -"NorESM1-ME","tas","temperature","tgav","rcp45",2077,"Simulated","C","global",14.8264 -"NorESM1-ME","tas","temperature","tgav","rcp45",2078,"Simulated","C","global",14.9319 -"NorESM1-ME","tas","temperature","tgav","rcp45",2079,"Simulated","C","global",14.9371 -"NorESM1-ME","tas","temperature","tgav","rcp45",2080,"Simulated","C","global",14.8594000000001 -"NorESM1-ME","tas","temperature","tgav","rcp45",2081,"Simulated","C","global",14.9244 -"NorESM1-ME","tas","temperature","tgav","rcp45",2082,"Simulated","C","global",14.8651 -"NorESM1-ME","tas","temperature","tgav","rcp45",2083,"Simulated","C","global",14.8286 -"NorESM1-ME","tas","temperature","tgav","rcp45",2084,"Simulated","C","global",14.9751 -"NorESM1-ME","tas","temperature","tgav","rcp45",2085,"Simulated","C","global",14.9538 -"NorESM1-ME","tas","temperature","tgav","rcp45",2086,"Simulated","C","global",14.9681 -"NorESM1-ME","tas","temperature","tgav","rcp45",2087,"Simulated","C","global",14.9358 -"NorESM1-ME","tas","temperature","tgav","rcp45",2088,"Simulated","C","global",14.9088 -"NorESM1-ME","tas","temperature","tgav","rcp45",2089,"Simulated","C","global",15.1202 -"NorESM1-ME","tas","temperature","tgav","rcp45",2090,"Simulated","C","global",15.1907 -"NorESM1-ME","tas","temperature","tgav","rcp45",2091,"Simulated","C","global",14.99 -"NorESM1-ME","tas","temperature","tgav","rcp45",2092,"Simulated","C","global",14.9854 -"NorESM1-ME","tas","temperature","tgav","rcp45",2093,"Simulated","C","global",14.9074 -"NorESM1-ME","tas","temperature","tgav","rcp45",2094,"Simulated","C","global",14.8991 -"NorESM1-ME","tas","temperature","tgav","rcp45",2095,"Simulated","C","global",15.0068 -"NorESM1-ME","tas","temperature","tgav","rcp45",2096,"Simulated","C","global",14.9868 -"NorESM1-ME","tas","temperature","tgav","rcp45",2097,"Simulated","C","global",14.9362 -"NorESM1-ME","tas","temperature","tgav","rcp45",2098,"Simulated","C","global",14.9722 -"NorESM1-ME","tas","temperature","tgav","rcp45",2099,"Simulated","C","global",15.0081 -"NorESM1-ME","tas","temperature","tgav","rcp45",2100,"Simulated","C","global",15.1885 -"NorESM1-ME","tas","temperature","tgav","rcp45",2101,"Simulated","C","global",15.2806 -"NorESM1-ME","tas","temperature","tgav","rcp45",2102,"Simulated","C","global",15.4264 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2006,"Simulated","C","HL",-11.0763 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2007,"Simulated","C","HL",-11.4943 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2008,"Simulated","C","HL",-11.4673 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2009,"Simulated","C","HL",-11.2748 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2010,"Simulated","C","HL",-11.3107 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2011,"Simulated","C","HL",-11.322 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2012,"Simulated","C","HL",-11.2571 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2013,"Simulated","C","HL",-10.9282 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2014,"Simulated","C","HL",-11.1456 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2015,"Simulated","C","HL",-11.0753 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2016,"Simulated","C","HL",-10.6513 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2017,"Simulated","C","HL",-10.7881 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2018,"Simulated","C","HL",-11.2196 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2019,"Simulated","C","HL",-11.3759 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2020,"Simulated","C","HL",-10.9907 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2021,"Simulated","C","HL",-11.0865 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2022,"Simulated","C","HL",-11.0552 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2023,"Simulated","C","HL",-11.0684 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2024,"Simulated","C","HL",-11.126 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2025,"Simulated","C","HL",-11.0641 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2026,"Simulated","C","HL",-11.0561 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2027,"Simulated","C","HL",-10.6317 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2028,"Simulated","C","HL",-10.3978 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2029,"Simulated","C","HL",-11.1107 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2030,"Simulated","C","HL",-10.7738 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2031,"Simulated","C","HL",-10.8031 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2032,"Simulated","C","HL",-10.4792 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2033,"Simulated","C","HL",-10.769 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2034,"Simulated","C","HL",-10.641 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2035,"Simulated","C","HL",-10.6234 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2036,"Simulated","C","HL",-10.0484 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2037,"Simulated","C","HL",-10.4314 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2038,"Simulated","C","HL",-10.1425 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2039,"Simulated","C","HL",-10.4522 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2040,"Simulated","C","HL",-9.87389999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2041,"Simulated","C","HL",-9.93259999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2042,"Simulated","C","HL",-10.2932 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2043,"Simulated","C","HL",-10.0114 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2044,"Simulated","C","HL",-9.77269999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2045,"Simulated","C","HL",-9.93879999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2046,"Simulated","C","HL",-9.90659999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2047,"Simulated","C","HL",-10.045 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2048,"Simulated","C","HL",-10.0793 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2049,"Simulated","C","HL",-9.88739999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2050,"Simulated","C","HL",-9.67399999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2051,"Simulated","C","HL",-9.52089999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2052,"Simulated","C","HL",-9.11589999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2053,"Simulated","C","HL",-9.65559999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2054,"Simulated","C","HL",-9.71420000000001 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2055,"Simulated","C","HL",-9.50019999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2056,"Simulated","C","HL",-9.78629999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2057,"Simulated","C","HL",-10.1457 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2058,"Simulated","C","HL",-9.83569999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2059,"Simulated","C","HL",-9.23390000000001 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2060,"Simulated","C","HL",-9.66889999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2061,"Simulated","C","HL",-9.84969999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2062,"Simulated","C","HL",-10.3641 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2063,"Simulated","C","HL",-9.53189999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2064,"Simulated","C","HL",-9.80429999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2065,"Simulated","C","HL",-9.67789999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2066,"Simulated","C","HL",-9.74269999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2067,"Simulated","C","HL",-9.84439999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2068,"Simulated","C","HL",-9.45859999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2069,"Simulated","C","HL",-9.5976 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2070,"Simulated","C","HL",-9.02769999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2071,"Simulated","C","HL",-9.25079999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2072,"Simulated","C","HL",-9.18509999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2073,"Simulated","C","HL",-9.0489 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2074,"Simulated","C","HL",-9.08859999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2075,"Simulated","C","HL",-9.2928 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2076,"Simulated","C","HL",-9.18939999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2077,"Simulated","C","HL",-9.26089999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2078,"Simulated","C","HL",-9.02759999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2079,"Simulated","C","HL",-9.22539999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2080,"Simulated","C","HL",-9.67499999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2081,"Simulated","C","HL",-9.06359999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2082,"Simulated","C","HL",-9.4196 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2083,"Simulated","C","HL",-9.36239999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2084,"Simulated","C","HL",-9.21959999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2085,"Simulated","C","HL",-9.31959999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2086,"Simulated","C","HL",-9.10859999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2087,"Simulated","C","HL",-9.05679999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2088,"Simulated","C","HL",-9.41209999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2089,"Simulated","C","HL",-9.07659999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2090,"Simulated","C","HL",-8.75629999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2091,"Simulated","C","HL",-9.05589999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2092,"Simulated","C","HL",-9.08329999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2093,"Simulated","C","HL",-9.1857 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2094,"Simulated","C","HL",-9.2217 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2095,"Simulated","C","HL",-9.10789999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2096,"Simulated","C","HL",-9.19669999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2097,"Simulated","C","HL",-9.16629999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2098,"Simulated","C","HL",-9.11799999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2099,"Simulated","C","HL",-9.15749999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2100,"Simulated","C","HL",-8.90649999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2101,"Simulated","C","HL",-8.58529999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp45",2102,"Simulated","C","HL",-8.81559999999996 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2006,"Simulated","C","LL",19.0759 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2007,"Simulated","C","LL",19.0714 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2008,"Simulated","C","LL",19.1023 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2009,"Simulated","C","LL",19.092 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2010,"Simulated","C","LL",19.0906 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2011,"Simulated","C","LL",19.0117 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2012,"Simulated","C","LL",19.1325000000001 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2013,"Simulated","C","LL",19.3564 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2014,"Simulated","C","LL",19.2015 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2015,"Simulated","C","LL",19.2457 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2016,"Simulated","C","LL",19.327 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2017,"Simulated","C","LL",19.354 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2018,"Simulated","C","LL",19.2202 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2019,"Simulated","C","LL",19.2385 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2020,"Simulated","C","LL",19.2847 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2021,"Simulated","C","LL",19.1876 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2022,"Simulated","C","LL",19.3078 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2023,"Simulated","C","LL",19.4009 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2024,"Simulated","C","LL",19.4521 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2025,"Simulated","C","LL",19.491 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2026,"Simulated","C","LL",19.3921 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2027,"Simulated","C","LL",19.3951 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2028,"Simulated","C","LL",19.5473 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2029,"Simulated","C","LL",19.6069 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2030,"Simulated","C","LL",19.5221 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2031,"Simulated","C","LL",19.511 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2032,"Simulated","C","LL",19.5618 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2033,"Simulated","C","LL",19.5159 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2034,"Simulated","C","LL",19.4876 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2035,"Simulated","C","LL",19.5229 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2036,"Simulated","C","LL",19.5808 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2037,"Simulated","C","LL",19.5487 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2038,"Simulated","C","LL",19.62 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2039,"Simulated","C","LL",19.5526 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2040,"Simulated","C","LL",19.664 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2041,"Simulated","C","LL",19.638 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2042,"Simulated","C","LL",19.6713 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2043,"Simulated","C","LL",19.6478 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2044,"Simulated","C","LL",19.6072 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2045,"Simulated","C","LL",19.7523 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2046,"Simulated","C","LL",19.9579 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2047,"Simulated","C","LL",19.8463 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2048,"Simulated","C","LL",19.7539 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2049,"Simulated","C","LL",19.743 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2050,"Simulated","C","LL",19.9062 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2051,"Simulated","C","LL",20.0598 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2052,"Simulated","C","LL",19.9714 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2053,"Simulated","C","LL",19.8843 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2054,"Simulated","C","LL",19.9154 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2055,"Simulated","C","LL",19.9389 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2056,"Simulated","C","LL",20.0273 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2057,"Simulated","C","LL",19.9257 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2058,"Simulated","C","LL",20.1219 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2059,"Simulated","C","LL",20.1192 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2060,"Simulated","C","LL",19.9763 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2061,"Simulated","C","LL",19.9034 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2062,"Simulated","C","LL",20.0378 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2063,"Simulated","C","LL",20.2024 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2064,"Simulated","C","LL",20.1567 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2065,"Simulated","C","LL",20.0705 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2066,"Simulated","C","LL",20.0285 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2067,"Simulated","C","LL",20.0663 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2068,"Simulated","C","LL",20.1369 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2069,"Simulated","C","LL",20.1514 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2070,"Simulated","C","LL",20.2278 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2071,"Simulated","C","LL",20.1883 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2072,"Simulated","C","LL",20.2881 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2073,"Simulated","C","LL",20.3295 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2074,"Simulated","C","LL",20.1788 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2075,"Simulated","C","LL",20.1737 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2076,"Simulated","C","LL",20.1265 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2077,"Simulated","C","LL",20.1666 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2078,"Simulated","C","LL",20.2436 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2079,"Simulated","C","LL",20.2939 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2080,"Simulated","C","LL",20.2986 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2081,"Simulated","C","LL",20.2426 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2082,"Simulated","C","LL",20.249 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2083,"Simulated","C","LL",20.1917 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2084,"Simulated","C","LL",20.3391 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2085,"Simulated","C","LL",20.3351 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2086,"Simulated","C","LL",20.3059 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2087,"Simulated","C","LL",20.255 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2088,"Simulated","C","LL",20.3007 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2089,"Simulated","C","LL",20.4847 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2090,"Simulated","C","LL",20.4999 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2091,"Simulated","C","LL",20.321 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2092,"Simulated","C","LL",20.3215 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2093,"Simulated","C","LL",20.2489 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2094,"Simulated","C","LL",20.2468 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2095,"Simulated","C","LL",20.3531 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2096,"Simulated","C","LL",20.3482 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2097,"Simulated","C","LL",20.2799 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2098,"Simulated","C","LL",20.3131 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2099,"Simulated","C","LL",20.3658 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2100,"Simulated","C","LL",20.5303 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2101,"Simulated","C","LL",20.5718 -"NorESM1-ME","tas","temperature","tgav_LL","rcp45",2102,"Simulated","C","LL",20.8009 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp45/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp45/summary.csv deleted file mode 100644 index 37acf285b..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp45/summary.csv +++ /dev/null @@ -1,886 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,tas,temperature,tgav,rcp45,C,Simulated,global,0.551711796,13.4292,14.93944,14.25457389,14.2885,1,CMIP5 -2006,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.048269679,-11.0763,-8.231025,-9.409758333,-8.9517,1,CMIP5 -2006,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.711480104,18.365675,20.2854,19.42032111,19.2792,1,CMIP5 -2007,tas,temperature,tgav,rcp45,C,Simulated,global,0.567578988,13.458975,15.0701,14.27147278,14.3278,1,CMIP5 -2007,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.118682518,-11.4943,-7.9834,-9.346493333,-9.029,1,CMIP5 -2007,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.698495479,18.361775,20.3024,19.42769833,19.2668,1,CMIP5 -2008,tas,temperature,tgav,rcp45,C,Simulated,global,0.561195006,13.49205,15.168,14.29704389,14.2924,1,CMIP5 -2008,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.158492588,-11.4673,-7.8327,-9.272626667,-8.7281,1,CMIP5 -2008,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.69913457,18.39145,20.3892,19.44325833,19.4364,1,CMIP5 -2009,tas,temperature,tgav,rcp45,C,Simulated,global,0.57900362,13.43825,15.1318,14.29296778,14.2447,1,CMIP5 -2009,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.112463127,-11.2748,-7.9643,-9.298286667,-8.842525,1,CMIP5 -2009,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.733689598,18.37845,20.4281,19.44320444,19.3923,1,CMIP5 -2010,tas,temperature,tgav,rcp45,C,Simulated,global,0.565153957,13.50115,15.0487,14.31081444,14.3606,1,CMIP5 -2010,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.178888142,-11.3107,-7.8287,-9.217434444,-8.691825,1,CMIP5 -2010,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.714807446,18.422,20.2946,19.44746722,19.2916,1,CMIP5 -2011,tas,temperature,tgav,rcp45,C,Simulated,global,0.594268143,13.5071,15.0641,14.33103167,14.42395,1,CMIP5 -2011,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.145110692,-11.322,-7.8836,-9.198864444,-8.591,1,CMIP5 -2011,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.738230757,18.451225,20.3978,19.46792333,19.322,1,CMIP5 -2012,tas,temperature,tgav,rcp45,C,Simulated,global,0.572296282,13.576125,15.03892,14.36095778,14.495475,1,CMIP5 -2012,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.16146995,-11.2571,-7.7934,-9.19352,-8.8465,1,CMIP5 -2012,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.708003205,18.48895,20.325,19.50347389,19.4332,1,CMIP5 -2013,tas,temperature,tgav,rcp45,C,Simulated,global,0.491995658,13.6537,14.97818,14.37702278,14.462525,1,CMIP5 -2013,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.174560105,-10.9282,-7.7891,-9.230645,-8.9231,1,CMIP5 -2013,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.664961919,18.568375,20.3613,19.53145056,19.3564,1,CMIP5 -2014,tas,temperature,tgav,rcp45,C,Simulated,global,0.549879058,13.6945,15.1596,14.427275,14.56945,1,CMIP5 -2014,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.195622348,-11.1456,-7.6397,-9.084175,-8.7779,1,CMIP5 -2014,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.702443461,18.6385,20.4867,19.56049833,19.3973,1,CMIP5 -2015,tas,temperature,tgav,rcp45,C,Simulated,global,0.584261557,13.64885,15.18584,14.41304611,14.599325,1,CMIP5 -2015,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.080087612,-11.0753,-7.9096,-9.229886111,-9.0067,1,CMIP5 -2015,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.730793924,18.58975,20.4466,19.57520056,19.4213,1,CMIP5 -2016,tas,temperature,tgav,rcp45,C,Simulated,global,0.538042538,13.69345,15.16552,14.45161889,14.5772,1,CMIP5 -2016,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.149057862,-10.6513,-7.797025,-9.164450556,-8.7662,1,CMIP5 -2016,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.731711907,18.57735,20.4616,19.60721,19.4053,1,CMIP5 -2017,tas,temperature,tgav,rcp45,C,Simulated,global,0.576986592,13.6377,15.2169,14.48980111,14.6207,1,CMIP5 -2017,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.077108554,-10.7881,-7.718425,-9.085728889,-8.694275,1,CMIP5 -2017,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.734250716,18.589275,20.5254,19.63709944,19.4531,1,CMIP5 -2018,tas,temperature,tgav,rcp45,C,Simulated,global,0.596875116,13.6962,15.2417,14.481205,14.6526,1,CMIP5 -2018,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.22770076,-11.2196,-7.7,-8.984627222,-8.521025,1,CMIP5 -2018,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.739356242,18.625,20.4827,19.60538889,19.3578,1,CMIP5 -2019,tas,temperature,tgav,rcp45,C,Simulated,global,0.589508955,13.6829,15.24776,14.48011222,14.777525,1,CMIP5 -2019,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.341841667,-11.3759,-7.593925,-9.065102778,-8.7347,1,CMIP5 -2019,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.707603974,18.6641,20.4498,19.62071389,19.4828,1,CMIP5 -2020,tas,temperature,tgav,rcp45,C,Simulated,global,0.605265902,13.72065,15.31286,14.51241222,14.7434,1,CMIP5 -2020,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.170316822,-10.9907,-7.68365,-9.104570556,-8.8364,1,CMIP5 -2020,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.749500361,18.6427,20.5491,19.66934278,19.552,1,CMIP5 -2021,tas,temperature,tgav,rcp45,C,Simulated,global,0.629642847,13.6938,15.3302,14.59172833,14.849375,1,CMIP5 -2021,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.222451841,-11.0865,-7.551,-8.867575556,-8.526,1,CMIP5 -2021,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.749612338,18.71,20.5752,19.71403222,19.7016,1,CMIP5 -2022,tas,temperature,tgav,rcp45,C,Simulated,global,0.638042314,13.798,15.38684,14.62831556,14.849425,1,CMIP5 -2022,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.170412949,-11.0552,-7.4793,-8.780615556,-8.6638,1,CMIP5 -2022,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.754163952,18.7151,20.6214,19.74007889,19.6584,1,CMIP5 -2023,tas,temperature,tgav,rcp45,C,Simulated,global,0.592430555,13.859975,15.3619,14.63539278,14.8741,1,CMIP5 -2023,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.254333648,-11.0684,-7.4005,-8.711083333,-8.42675,1,CMIP5 -2023,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.723856786,18.6392,20.5445,19.73359333,19.5888,1,CMIP5 -2024,tas,temperature,tgav,rcp45,C,Simulated,global,0.580518095,13.9032,15.34738,14.66572833,14.88115,1,CMIP5 -2024,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.266665637,-11.126,-7.3165,-8.735763333,-8.3081,1,CMIP5 -2024,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.712395784,18.7087,20.5948,19.77583667,19.689,1,CMIP5 -2025,tas,temperature,tgav,rcp45,C,Simulated,global,0.604813353,13.902525,15.42186,14.69152611,14.91555,1,CMIP5 -2025,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.205273688,-11.0641,-7.2983,-8.704156667,-8.303,1,CMIP5 -2025,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.731498507,18.7462,20.61446,19.80075944,19.7329,1,CMIP5 -2026,tas,temperature,tgav,rcp45,C,Simulated,global,0.6720401,13.8667,15.5628,14.76053111,15.015825,1,CMIP5 -2026,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.205935132,-11.0561,-7.239775,-8.63176,-8.4639,1,CMIP5 -2026,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.75424457,18.7898,20.7383,19.868245,19.9816,1,CMIP5 -2027,tas,temperature,tgav,rcp45,C,Simulated,global,0.631335735,13.9462,15.5378,14.76952222,15.029975,1,CMIP5 -2027,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.212124941,-10.6317,-7.18075,-8.500840556,-8.038975,1,CMIP5 -2027,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.748028138,18.8402,20.72824,19.85023222,19.899,1,CMIP5 -2028,tas,temperature,tgav,rcp45,C,Simulated,global,0.604679623,13.99535,15.53852,14.765605,15.0353,1,CMIP5 -2028,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.046495312,-10.3978,-7.346225,-8.543975556,-8.2547,1,CMIP5 -2028,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.741482615,18.7808,20.73256,19.85486222,19.7858,1,CMIP5 -2029,tas,temperature,tgav,rcp45,C,Simulated,global,0.589854952,14.0326,15.54698,14.80966167,15.0196,1,CMIP5 -2029,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.319313398,-11.1107,-7.1651,-8.506491111,-7.914175,1,CMIP5 -2029,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.697704293,18.8317,20.7438,19.90104444,19.8695,1,CMIP5 -2030,tas,temperature,tgav,rcp45,C,Simulated,global,0.59891797,14.0243,15.59436,14.79733167,15.0696,1,CMIP5 -2030,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.17976386,-10.7738,-7.2791,-8.489936667,-8.0775,1,CMIP5 -2030,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.707934964,18.8857,20.76832,19.88263833,19.7639,1,CMIP5 -2031,tas,temperature,tgav,rcp45,C,Simulated,global,0.638401907,14.01,15.5879,14.82565556,15.0787,1,CMIP5 -2031,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.215618111,-10.8031,-7.0718,-8.457783889,-8.1342,1,CMIP5 -2031,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.732528113,18.8246,20.77912,19.91012444,19.9074,1,CMIP5 -2032,tas,temperature,tgav,rcp45,C,Simulated,global,0.618247276,14.1102,15.58972,14.86499944,15.146,1,CMIP5 -2032,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.167203696,-10.4792,-7.085075,-8.438075556,-8.4812,1,CMIP5 -2032,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.723594856,18.8716,20.76626,19.95370667,20.0083,1,CMIP5 -2033,tas,temperature,tgav,rcp45,C,Simulated,global,0.662714478,14.0201,15.69188,14.88207278,15.278175,1,CMIP5 -2033,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.199494271,-10.769,-6.865925,-8.364356667,-8.4376,1,CMIP5 -2033,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.735612029,18.9089,20.83344,19.95836,19.9614,1,CMIP5 -2034,tas,temperature,tgav,rcp45,C,Simulated,global,0.668453652,14.0201,15.73856,14.92785944,15.185225,1,CMIP5 -2034,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.232301732,-10.641,-6.7536,-8.254427778,-8.3765,1,CMIP5 -2034,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.734659737,18.8697,20.8896,19.99071111,20.1627,1,CMIP5 -2035,tas,temperature,tgav,rcp45,C,Simulated,global,0.64825481,14.0524,15.79086,14.95472889,15.172975,1,CMIP5 -2035,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.235318196,-10.6234,-6.6839,-8.287727778,-8.4131,1,CMIP5 -2035,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.71352187,19.007,20.96124,20.03057111,20.1475,1,CMIP5 -2036,tas,temperature,tgav,rcp45,C,Simulated,global,0.63755427,14.2039,15.83526,14.98160389,15.229475,1,CMIP5 -2036,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.096347524,-10.0484,-6.781,-8.160897222,-8.2677,1,CMIP5 -2036,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.746923014,18.9274,20.98658,20.03562833,20.0539,1,CMIP5 -2037,tas,temperature,tgav,rcp45,C,Simulated,global,0.670072145,14.1082,15.81422,14.97193833,15.29545,1,CMIP5 -2037,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.224840044,-10.4314,-6.5333,-8.233248333,-8.4877,1,CMIP5 -2037,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.74705797,18.9931,20.99522,20.03927444,20.0896,1,CMIP5 -2038,tas,temperature,tgav,rcp45,C,Simulated,global,0.660076427,14.219,15.89074,15.00024889,15.1579,1,CMIP5 -2038,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.213529902,-10.1425,-6.7052,-8.185760556,-8.7022,1,CMIP5 -2038,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.734784151,19.0273,21.04644,20.06372944,20.1534,1,CMIP5 -2039,tas,temperature,tgav,rcp45,C,Simulated,global,0.6789315,14.1077,15.88344,15.00180167,15.1482,1,CMIP5 -2039,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.279332938,-10.4522,-6.8326,-8.241428333,-8.6026,1,CMIP5 -2039,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.77088344,18.8921,21.02636,20.07799556,20.1272,1,CMIP5 -2040,tas,temperature,tgav,rcp45,C,Simulated,global,0.685134938,14.3038,15.90594,15.07889611,15.3028,1,CMIP5 -2040,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.14573781,-9.8739,-6.5419,-8.074496667,-8.3976,1,CMIP5 -2040,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.768781339,18.9712,21.02252,20.13542722,20.2799,1,CMIP5 -2041,tas,temperature,tgav,rcp45,C,Simulated,global,0.67475805,14.2718,16.00966,15.13132333,15.4894,1,CMIP5 -2041,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.199689172,-9.9326,-6.3981,-8.016618333,-8.0747,1,CMIP5 -2041,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.778247364,19.0672,21.15268,20.18611722,20.1401,1,CMIP5 -2042,tas,temperature,tgav,rcp45,C,Simulated,global,0.710166322,14.2337,16.07944,15.11953222,15.4337,1,CMIP5 -2042,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.277774181,-10.2932,-6.443,-8.025908333,-8.0217,1,CMIP5 -2042,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.811168938,19.0167,21.23104,20.17346,20.212,1,CMIP5 -2043,tas,temperature,tgav,rcp45,C,Simulated,global,0.719274283,14.2656,16.07874,15.11859333,15.469,1,CMIP5 -2043,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.213902292,-10.0114,-6.2788,-7.971773889,-8.1002,1,CMIP5 -2043,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.808113182,18.9945,21.22056,20.16072889,20.1538,1,CMIP5 -2044,tas,temperature,tgav,rcp45,C,Simulated,global,0.726962962,14.2756,16.12096,15.131015,15.5028,1,CMIP5 -2044,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.267642414,-9.7727,-6.1064,-7.971218333,-8.40084,1,CMIP5 -2044,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.835797929,18.9185,21.24082,20.17631889,20.2179,1,CMIP5 -2045,tas,temperature,tgav,rcp45,C,Simulated,global,0.669137274,14.3643,16.07096,15.13055389,15.4732,1,CMIP5 -2045,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.341933257,-9.9388,-6.3713,-7.982905,-8.1024,1,CMIP5 -2045,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.800487968,18.9079,21.18422,20.17752167,20.1885,1,CMIP5 -2046,tas,temperature,tgav,rcp45,C,Simulated,global,0.653833497,14.4358,16.04994,15.232635,15.5244,1,CMIP5 -2046,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.318492564,-9.9066,-6.15935,-7.864223333,-7.8844,1,CMIP5 -2046,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.777110538,18.9575,21.18498,20.27629222,20.302,1,CMIP5 -2047,tas,temperature,tgav,rcp45,C,Simulated,global,0.671441191,14.4221,16.11304,15.27202667,15.5275,1,CMIP5 -2047,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.271436618,-10.045,-6.28065,-7.838966111,-7.6926,1,CMIP5 -2047,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.784785871,19.0228,21.23014,20.31831833,20.3511,1,CMIP5 -2048,tas,temperature,tgav,rcp45,C,Simulated,global,0.678696361,14.34,16.14768,15.25631444,15.4705,1,CMIP5 -2048,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.320316145,-10.0793,-6.1773,-7.846053333,-7.9743,1,CMIP5 -2048,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.756767092,19.0486,21.25696,20.30089556,20.49,1,CMIP5 -2049,tas,temperature,tgav,rcp45,C,Simulated,global,0.705867698,14.3661,16.24868,15.26907556,15.4674,1,CMIP5 -2049,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.35109219,-9.8874,-6.1158,-7.821213333,-7.9649,1,CMIP5 -2049,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.782064919,19.1174,21.3553,20.31047778,20.4708,1,CMIP5 -2050,tas,temperature,tgav,rcp45,C,Simulated,global,0.681436393,14.5117,16.25682,15.32193833,15.6688,1,CMIP5 -2050,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.212792635,-9.674,-6.0394,-7.668748889,-7.6504,1,CMIP5 -2050,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.782495457,19.0882,21.32018,20.34217833,20.3931,1,CMIP5 -2051,tas,temperature,tgav,rcp45,C,Simulated,global,0.64414048,14.5841,16.22284,15.36626556,15.71545,1,CMIP5 -2051,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.162982113,-9.5209,-6.1791,-7.721648333,-7.9359,1,CMIP5 -2051,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.754117277,19.1929,21.33588,20.40756722,20.4583,1,CMIP5 -2052,tas,temperature,tgav,rcp45,C,Simulated,global,0.624008375,14.5873,16.22996,15.39245667,15.5823,1,CMIP5 -2052,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.199633279,-9.1159,-5.8627,-7.590081667,-7.4005,1,CMIP5 -2052,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.735551266,19.2023,21.3358,20.410575,20.4287,1,CMIP5 -2053,tas,temperature,tgav,rcp45,C,Simulated,global,0.663329963,14.5239,16.29158,15.36723944,15.6294,1,CMIP5 -2053,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.317141309,-9.6556,-5.94645,-7.717610556,-7.9022,1,CMIP5 -2053,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.74551078,19.2578,21.38718,20.40767556,20.4128,1,CMIP5 -2054,tas,temperature,tgav,rcp45,C,Simulated,global,0.679400378,14.5386,16.25532,15.37111611,15.6694,1,CMIP5 -2054,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.28942837,-9.7142,-5.9265,-7.726664444,-7.7939,1,CMIP5 -2054,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.772939138,19.242,21.3662,20.41385278,20.4426,1,CMIP5 -2055,tas,temperature,tgav,rcp45,C,Simulated,global,0.659920513,14.5967,16.2449,15.42119444,15.7312,1,CMIP5 -2055,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.16890456,-9.5002,-5.98955,-7.566272778,-7.554,1,CMIP5 -2055,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.774814791,19.1938,21.3555,20.44066111,20.3891,1,CMIP5 -2056,tas,temperature,tgav,rcp45,C,Simulated,global,0.678754334,14.6171,16.3299,15.41458056,15.6735,1,CMIP5 -2056,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.231361056,-9.7863,-5.828225,-7.556755,-7.8613,1,CMIP5 -2056,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.786234423,19.1964,21.41626,20.43051222,20.293,1,CMIP5 -2057,tas,temperature,tgav,rcp45,C,Simulated,global,0.743625789,14.4686,16.3091,15.41036944,15.8441,1,CMIP5 -2057,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.371608662,-10.1457,-5.8216,-7.635235,-7.9477,1,CMIP5 -2057,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.817389939,19.1604,21.37806,20.44296778,20.4475,1,CMIP5 -2058,tas,temperature,tgav,rcp45,C,Simulated,global,0.720866165,14.5422,16.3589,15.50065556,15.9584,1,CMIP5 -2058,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.441126738,-9.8357,-5.5621,-7.500723889,-7.6581,1,CMIP5 -2058,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.810516464,19.0885,21.45296,20.52284556,20.6201,1,CMIP5 -2059,tas,temperature,tgav,rcp45,C,Simulated,global,0.683012325,14.6289,16.46236,15.497865,15.6326,1,CMIP5 -2059,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.230186815,-9.2339,-5.770625,-7.528940556,-7.97154,1,CMIP5 -2059,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.766773238,19.22,21.56388,20.52614778,20.635,1,CMIP5 -2060,tas,temperature,tgav,rcp45,C,Simulated,global,0.695832696,14.5966,16.44556,15.47978167,15.6859,1,CMIP5 -2060,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.366189577,-9.6689,-5.653925,-7.543376111,-7.8203,1,CMIP5 -2060,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.764540767,19.3483,21.54238,20.507195,20.6187,1,CMIP5 -2061,tas,temperature,tgav,rcp45,C,Simulated,global,0.729500947,14.5042,16.49214,15.50144056,15.7851,1,CMIP5 -2061,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.373012286,-9.8497,-5.68135,-7.561986667,-7.798,1,CMIP5 -2061,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.806709964,19.3115,21.58256,20.53759,20.6554,1,CMIP5 -2062,tas,temperature,tgav,rcp45,C,Simulated,global,0.793012111,14.5209,16.53822,15.51396333,15.8072,1,CMIP5 -2062,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.566459945,-10.3641,-5.3408,-7.614146667,-7.92712,1,CMIP5 -2062,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.82927776,19.2843,21.6463,20.56464444,20.7883,1,CMIP5 -2063,tas,temperature,tgav,rcp45,C,Simulated,global,0.73130105,14.6425,16.5144,15.54576944,15.7595,1,CMIP5 -2063,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.355974381,-9.5319,-5.6416,-7.520543333,-7.89834,1,CMIP5 -2063,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.789959316,19.3659,21.6115,20.58249444,20.8471,1,CMIP5 -2064,tas,temperature,tgav,rcp45,C,Simulated,global,0.713821297,14.7198,16.4581,15.57431111,15.9208,1,CMIP5 -2064,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.357623702,-9.8043,-5.5351,-7.483673889,-7.5206,1,CMIP5 -2064,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.769620307,19.3507,21.54036,20.60935111,20.8488,1,CMIP5 -2065,tas,temperature,tgav,rcp45,C,Simulated,global,0.734205639,14.6721,16.49096,15.56980667,15.9212,1,CMIP5 -2065,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.301605992,-9.6779,-5.5761,-7.388931111,-7.5046,1,CMIP5 -2065,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.798415002,19.2997,21.58016,20.583015,20.8043,1,CMIP5 -2066,tas,temperature,tgav,rcp45,C,Simulated,global,0.777454836,14.626,16.4904,15.58661944,15.8286,1,CMIP5 -2066,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.374959681,-9.7427,-5.3898,-7.366757222,-7.3527,1,CMIP5 -2066,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.819528078,19.2622,21.56242,20.59863556,20.9,1,CMIP5 -2067,tas,temperature,tgav,rcp45,C,Simulated,global,0.78424593,14.6386,16.57148,15.62335611,15.9556,1,CMIP5 -2067,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.477179073,-9.8444,-5.2147,-7.323398889,-7.467,1,CMIP5 -2067,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.836035745,19.3248,21.64482,20.63393556,20.9535,1,CMIP5 -2068,tas,temperature,tgav,rcp45,C,Simulated,global,0.766604606,14.7484,16.56934,15.62455722,15.907,1,CMIP5 -2068,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.39161266,-9.4586,-5.1732,-7.311123333,-7.70986,1,CMIP5 -2068,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.803349018,19.3194,21.63854,20.63355722,20.9098,1,CMIP5 -2069,tas,temperature,tgav,rcp45,C,Simulated,global,0.736476639,14.753,16.55704,15.56572111,15.73,1,CMIP5 -2069,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.329343385,-9.5976,-5.57355,-7.392879444,-7.69634,1,CMIP5 -2069,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.777255285,19.3225,21.62084,20.57999611,20.7555,1,CMIP5 -2070,tas,temperature,tgav,rcp45,C,Simulated,global,0.696672385,14.7819,16.52098,15.60870611,15.7443,1,CMIP5 -2070,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.256205549,-9.0277,-5.5444,-7.307191667,-7.6546,1,CMIP5 -2070,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.752786158,19.4031,21.56858,20.61295333,20.8389,1,CMIP5 -2071,tas,temperature,tgav,rcp45,C,Simulated,global,0.730175422,14.8363,16.59862,15.65188,15.8893,1,CMIP5 -2071,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.336019535,-9.2508,-5.278575,-7.288844444,-7.6689,1,CMIP5 -2071,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.773879525,19.4742,21.67932,20.66084667,20.954,1,CMIP5 -2072,tas,temperature,tgav,rcp45,C,Simulated,global,0.72533319,14.8846,16.69002,15.68448,15.8365,1,CMIP5 -2072,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.338446356,-9.1851,-5.355525,-7.224887778,-7.2628,1,CMIP5 -2072,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.793357217,19.4284,21.7722,20.68652778,21.0774,1,CMIP5 -2073,tas,temperature,tgav,rcp45,C,Simulated,global,0.708463732,14.9279,16.65284,15.68605444,15.7491,1,CMIP5 -2073,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.29626567,-9.0489,-5.36935,-7.273858889,-7.54678,1,CMIP5 -2073,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.745680142,19.5228,21.70546,20.69981222,21.0686,1,CMIP5 -2074,tas,temperature,tgav,rcp45,C,Simulated,global,0.759170929,14.7947,16.6493,15.66765,15.9387,1,CMIP5 -2074,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.285525985,-9.0886,-5.53495,-7.33081,-7.59444,1,CMIP5 -2074,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.821000639,19.3838,21.71112,20.68928833,21.064,1,CMIP5 -2075,tas,temperature,tgav,rcp45,C,Simulated,global,0.787575158,14.8264,16.69394,15.71382111,15.9732,1,CMIP5 -2075,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.376221523,-9.2928,-5.1227,-7.186221111,-7.47234,1,CMIP5 -2075,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.831321322,19.4116,21.7396,20.71454722,21.0818,1,CMIP5 -2076,tas,temperature,tgav,rcp45,C,Simulated,global,0.788044975,14.8042,16.64916,15.71772889,15.9039,1,CMIP5 -2076,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.309208167,-9.1894,-5.0284,-7.070727222,-7.56132,1,CMIP5 -2076,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.815135623,19.4459,21.70404,20.69471556,21.0821,1,CMIP5 -2077,tas,temperature,tgav,rcp45,C,Simulated,global,0.774957911,14.8264,16.66626,15.73603444,15.9348,1,CMIP5 -2077,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.427772004,-9.2609,-5.0256,-7.123228889,-7.47676,1,CMIP5 -2077,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.804742235,19.5018,21.70706,20.72797056,21.1337,1,CMIP5 -2078,tas,temperature,tgav,rcp45,C,Simulated,global,0.753387358,14.9025,16.6845,15.75368889,15.8996,1,CMIP5 -2078,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.403404202,-9.0276,-5.040675,-7.001793889,-7.3659,1,CMIP5 -2078,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.819761347,19.4571,21.73674,20.72253778,20.9915,1,CMIP5 -2079,tas,temperature,tgav,rcp45,C,Simulated,global,0.764123968,14.861,16.71986,15.75394833,15.9501,1,CMIP5 -2079,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.452752932,-9.2254,-5.085575,-7.121189444,-7.50938,1,CMIP5 -2079,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.811965382,19.4934,21.77864,20.74991556,20.9771,1,CMIP5 -2080,tas,temperature,tgav,rcp45,C,Simulated,global,0.787203085,14.8594,16.80276,15.80257333,16.0871,1,CMIP5 -2080,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.528440712,-9.675,-4.9836,-7.071732778,-7.45922,1,CMIP5 -2080,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.819384429,19.5427,21.86838,20.79790056,21.0465,1,CMIP5 -2081,tas,temperature,tgav,rcp45,C,Simulated,global,0.795280806,14.7932,16.79556,15.77555944,15.9628,1,CMIP5 -2081,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.367825518,-9.0636,-5.0438,-7.020164444,-7.39988,1,CMIP5 -2081,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.825614415,19.4687,21.8473,20.75361389,20.9809,1,CMIP5 -2082,tas,temperature,tgav,rcp45,C,Simulated,global,0.803100946,14.8058,16.75654,15.78014056,15.8787,1,CMIP5 -2082,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.419840324,-9.4196,-5.0059,-7.078029444,-7.37284,1,CMIP5 -2082,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.803061811,19.5777,21.7945,20.77240833,21.0665,1,CMIP5 -2083,tas,temperature,tgav,rcp45,C,Simulated,global,0.799630501,14.7468,16.78926,15.75020944,15.9233,1,CMIP5 -2083,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.401438853,-9.3624,-5.236125,-7.174315556,-7.34364,1,CMIP5 -2083,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.823712561,19.5379,21.82794,20.75710444,21.0045,1,CMIP5 -2084,tas,temperature,tgav,rcp45,C,Simulated,global,0.773682889,14.875,16.77182,15.77799944,15.9306,1,CMIP5 -2084,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.4310163,-9.2196,-5.198175,-7.145562778,-7.47284,1,CMIP5 -2084,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.833354356,19.4851,21.83384,20.78425722,21.0569,1,CMIP5 -2085,tas,temperature,tgav,rcp45,C,Simulated,global,0.788314123,14.7926,16.72756,15.800265,15.9376,1,CMIP5 -2085,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.40694904,-9.3196,-5.0639,-7.031282222,-7.43814,1,CMIP5 -2085,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.815700565,19.5861,21.77308,20.78647,21.032,1,CMIP5 -2086,tas,temperature,tgav,rcp45,C,Simulated,global,0.767757776,14.8851,16.7437,15.79574722,15.9527,1,CMIP5 -2086,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.372453734,-9.1086,-4.986475,-6.968498333,-7.5791,1,CMIP5 -2086,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.827919527,19.419,21.8359,20.76650556,20.9587,1,CMIP5 -2087,tas,temperature,tgav,rcp45,C,Simulated,global,0.722640213,14.9358,16.77712,15.78131056,15.9119,1,CMIP5 -2087,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.375140492,-9.0568,-5.18335,-7.082859444,-7.39826,1,CMIP5 -2087,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.774895698,19.5452,21.82472,20.774355,20.9032,1,CMIP5 -2088,tas,temperature,tgav,rcp45,C,Simulated,global,0.746550848,14.8506,16.7535,15.76693056,15.8023,1,CMIP5 -2088,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.423148942,-9.4121,-5.151825,-7.120583333,-7.5214,1,CMIP5 -2088,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.774678981,19.5761,21.82184,20.76548778,20.9801,1,CMIP5 -2089,tas,temperature,tgav,rcp45,C,Simulated,global,0.710967955,14.8588,16.77806,15.787765,15.8472,1,CMIP5 -2089,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.313431161,-9.0766,-5.280525,-7.074275,-7.4073,1,CMIP5 -2089,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.748522558,19.5746,21.8277,20.78108889,20.9512,1,CMIP5 -2090,tas,temperature,tgav,rcp45,C,Simulated,global,0.722920117,14.965,16.7998,15.84523056,15.921,1,CMIP5 -2090,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.262618128,-8.7563,-5.1355,-6.95753,-7.43542,1,CMIP5 -2090,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.768024185,19.5798,21.85982,20.82514111,21.0929,1,CMIP5 -2091,tas,temperature,tgav,rcp45,C,Simulated,global,0.808655324,14.7872,16.8432,15.82435278,15.9587,1,CMIP5 -2091,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.360576501,-9.0559,-5.0475,-7.003305,-7.31422,1,CMIP5 -2091,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.840483924,19.5566,21.887,20.80947222,21.1888,1,CMIP5 -2092,tas,temperature,tgav,rcp45,C,Simulated,global,0.789004033,14.7864,16.82824,15.80078222,15.9444,1,CMIP5 -2092,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.446386182,-9.0833,-5.120775,-7.109144444,-7.4421,1,CMIP5 -2092,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.830769958,19.5043,21.89558,20.80346167,21.1557,1,CMIP5 -2093,tas,temperature,tgav,rcp45,C,Simulated,global,0.786428039,14.8828,16.84612,15.80028,15.8654,1,CMIP5 -2093,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.408966512,-9.1857,-4.982325,-7.010725556,-7.30538,1,CMIP5 -2093,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.795752645,19.562,21.8887,20.78165833,21.0824,1,CMIP5 -2094,tas,temperature,tgav,rcp45,C,Simulated,global,0.789488805,14.8991,16.88612,15.81563278,15.8908,1,CMIP5 -2094,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.425648805,-9.2217,-5.026,-6.988921667,-7.2468,1,CMIP5 -2094,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.833448318,19.4752,21.9401,20.79530278,21.0688,1,CMIP5 -2095,tas,temperature,tgav,rcp45,C,Simulated,global,0.780916362,14.7794,16.87558,15.78196444,16.0292,1,CMIP5 -2095,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.319423963,-9.1079,-5.1196,-7.115203333,-7.30358,1,CMIP5 -2095,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.831293326,19.5438,21.9239,20.78299722,20.9426,1,CMIP5 -2096,tas,temperature,tgav,rcp45,C,Simulated,global,0.76583127,14.7828,16.84548,15.79453111,15.9412,1,CMIP5 -2096,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.432788019,-9.1967,-5.0915,-7.108892222,-7.28588,1,CMIP5 -2096,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.781770239,19.6541,21.88382,20.79628556,21.0439,1,CMIP5 -2097,tas,temperature,tgav,rcp45,C,Simulated,global,0.771007375,14.9069,16.83326,15.79518444,15.9325,1,CMIP5 -2097,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.337652539,-9.1663,-5.1993,-7.071198889,-7.44764,1,CMIP5 -2097,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.809962759,19.5231,21.90284,20.78867667,21.0352,1,CMIP5 -2098,tas,temperature,tgav,rcp45,C,Simulated,global,0.79974168,14.9122,16.92272,15.82033833,15.9052,1,CMIP5 -2098,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.39697306,-9.118,-5.0905,-7.042373889,-7.19964,1,CMIP5 -2098,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.820944557,19.5009,21.9592,20.81385833,21.2184,1,CMIP5 -2099,tas,temperature,tgav,rcp45,C,Simulated,global,0.76339489,14.8541,16.8521,15.83516944,15.9081,1,CMIP5 -2099,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.509342213,-9.1575,-4.9596,-7.081108889,-7.39628,1,CMIP5 -2099,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.785300949,19.633,21.9149,20.83961389,21.1393,1,CMIP5 -2100,tas,temperature,tgav,rcp45,C,Simulated,global,0.751787712,14.8611,16.85088,15.84288667,15.9998,1,CMIP5 -2100,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.373210982,-8.9065,-4.9566,-7.000851667,-7.27134,1,CMIP5 -2100,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.803765712,19.5457,21.88732,20.83133278,21.1216,1,CMIP5 -2101,tas,temperature,tgav,rcp45,C,Simulated,global,0.634942761,15.2806,16.8635,16.23121667,16.46465,1,CMIP5 -2101,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.54289388,-8.5853,-4.9621,-6.634808333,-6.522925,1,CMIP5 -2101,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.590000224,20.3747,21.8983,21.1803,21.3478,1,CMIP5 -2102,tas,temperature,tgav,rcp45,C,Simulated,global,0.603048078,15.4264,16.84485,16.26060833,16.51395,1,CMIP5 -2102,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.647073073,-8.8156,-4.8825,-6.669141667,-6.598675,1,CMIP5 -2102,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.552707625,20.3801,21.8577,21.22436667,21.35685,1,CMIP5 -2103,tas,temperature,tgav,rcp45,C,Simulated,global,0.517096841,15.5068,16.87855,16.38255,16.5377,1,CMIP5 -2103,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.40390555,-8.21,-5.0787,-6.42181,-6.2477,1,CMIP5 -2103,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.627312986,20.3304,21.96285,21.29327,21.5379,1,CMIP5 -2104,tas,temperature,tgav,rcp45,C,Simulated,global,0.555930837,15.4011,16.82625,16.33381,16.4125,1,CMIP5 -2104,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.354122159,-8.0017,-4.8284,-6.39793,-6.3882,1,CMIP5 -2104,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.619484655,20.2322,21.8965,21.22956,21.3431,1,CMIP5 -2105,tas,temperature,tgav,rcp45,C,Simulated,global,0.513981845,15.5086,16.8481,16.36542,16.4465,1,CMIP5 -2105,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.251833513,-7.7823,-4.8762,-6.33569,-6.2911,1,CMIP5 -2105,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.579708914,20.3423,21.90555,21.25511,21.3738,1,CMIP5 -2106,tas,temperature,tgav,rcp45,C,Simulated,global,0.552420718,15.4495,16.90415,16.38583,16.4791,1,CMIP5 -2106,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.289605533,-7.6001,-4.7678,-6.15941,-6.08,1,CMIP5 -2106,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.647455788,20.2233,21.96235,21.24129,21.4147,1,CMIP5 -2107,tas,temperature,tgav,rcp45,C,Simulated,global,0.570864829,15.4,16.92965,16.36171,16.4919,1,CMIP5 -2107,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.229047293,-7.7829,-5.0518,-6.35103,-6.2931,1,CMIP5 -2107,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.670516001,20.2098,22.0064,21.25256,21.398,1,CMIP5 -2108,tas,temperature,tgav,rcp45,C,Simulated,global,0.589394272,15.4098,16.9799,16.40896,16.5761,1,CMIP5 -2108,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.143561986,-7.4005,-4.8246,-6.1292,-6.0646,1,CMIP5 -2108,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.701012081,20.1713,22.0187,21.26364,21.4975,1,CMIP5 -2109,tas,temperature,tgav,rcp45,C,Simulated,global,0.593751689,15.454,17.0022,16.44766,16.649,1,CMIP5 -2109,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.428247026,-7.9012,-4.5251,-6.24499,-6.45,1,CMIP5 -2109,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.660955076,20.3108,22.0702,21.33586,21.4909,1,CMIP5 -2110,tas,temperature,tgav,rcp45,C,Simulated,global,0.641763264,15.3723,17.0578,16.43038,16.6682,1,CMIP5 -2110,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.403193981,-7.9647,-4.639,-6.10576,-6.0977,1,CMIP5 -2110,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.731978044,20.1327,22.0728,21.28408,21.4326,1,CMIP5 -2111,tas,temperature,tgav,rcp45,C,Simulated,global,0.552305405,15.5636,16.99565,16.48841,16.6716,1,CMIP5 -2111,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.310377307,-7.7124,-4.7471,-6.10152,-6.0606,1,CMIP5 -2111,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.636805387,20.3584,22.02495,21.35351,21.4985,1,CMIP5 -2112,tas,temperature,tgav,rcp45,C,Simulated,global,0.592302635,15.419,16.922,16.42358,16.6316,1,CMIP5 -2112,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.338620881,-7.679,-4.7103,-6.13496,-6.274,1,CMIP5 -2112,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.646240577,20.2289,21.9517,21.28214,21.4304,1,CMIP5 -2113,tas,temperature,tgav,rcp45,C,Simulated,global,0.62073892,15.3592,17.00335,16.40537,16.5457,1,CMIP5 -2113,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.21500384,-7.6929,-5.0297,-6.25597,-6.3556,1,CMIP5 -2113,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.693782408,20.1741,22.05005,21.28593,21.4958,1,CMIP5 -2114,tas,temperature,tgav,rcp45,C,Simulated,global,0.658249991,15.3701,17.1687,16.4176,16.54,1,CMIP5 -2114,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.316293183,-8.2817,-5.0379,-6.41759,-6.7122,1,CMIP5 -2114,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.697613909,20.2663,22.17105,21.33629,21.5052,1,CMIP5 -2115,tas,temperature,tgav,rcp45,C,Simulated,global,0.621746436,15.4004,17.05865,16.43849,16.5808,1,CMIP5 -2115,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.485403823,-8.2571,-4.6687,-6.22696,-6.3915,1,CMIP5 -2115,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.68977667,20.2322,22.06515,21.31963,21.5275,1,CMIP5 -2116,tas,temperature,tgav,rcp45,C,Simulated,global,0.552279896,15.4931,16.95475,16.41221,16.5809,1,CMIP5 -2116,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.332408167,-8.1464,-5.0015,-6.26156,-6.153,1,CMIP5 -2116,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.639922686,20.2927,21.94715,21.29563,21.5152,1,CMIP5 -2117,tas,temperature,tgav,rcp45,C,Simulated,global,0.544170141,15.4058,16.8641,16.32018,16.428,1,CMIP5 -2117,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.219315725,-7.8316,-5.1678,-6.36137,-6.2923,1,CMIP5 -2117,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.652548215,20.2168,21.91715,21.20529,21.453,1,CMIP5 -2118,tas,temperature,tgav,rcp45,C,Simulated,global,0.53350511,15.5352,16.94695,16.41535,16.5825,1,CMIP5 -2118,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.423193399,-8.0267,-4.8528,-6.26865,-6.3096,1,CMIP5 -2118,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.61663186,20.3788,22.00685,21.30061,21.4641,1,CMIP5 -2119,tas,temperature,tgav,rcp45,C,Simulated,global,0.558140744,15.568,17.085,16.4543,16.5704,1,CMIP5 -2119,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.373811324,-8.021,-4.8879,-6.28816,-6.4674,1,CMIP5 -2119,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.636198041,20.4538,22.14145,21.35267,21.4788,1,CMIP5 -2120,tas,temperature,tgav,rcp45,C,Simulated,global,0.612854136,15.3893,17.028,16.41982,16.579,1,CMIP5 -2120,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.270520807,-7.6805,-4.6995,-6.123,-6.2893,1,CMIP5 -2120,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.690833274,20.196,22.0356,21.27442,21.523,1,CMIP5 -2121,tas,temperature,tgav,rcp45,C,Simulated,global,0.63534887,15.2949,16.97125,16.37607,16.5824,1,CMIP5 -2121,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.23407993,-7.66,-4.7578,-6.18275,-6.3999,1,CMIP5 -2121,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.7013194,20.1052,21.97525,21.23409,21.4788,1,CMIP5 -2122,tas,temperature,tgav,rcp45,C,Simulated,global,0.625293167,15.437,17.09325,16.46855,16.6173,1,CMIP5 -2122,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.303064326,-7.9661,-4.5924,-6.15038,-6.1353,1,CMIP5 -2122,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.700242624,20.22,22.0714,21.33888,21.5272,1,CMIP5 -2123,tas,temperature,tgav,rcp45,C,Simulated,global,0.585621487,15.6157,17.16215,16.52939,16.747,1,CMIP5 -2123,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.3804856,-7.9017,-4.414,-6.03287,-6.246,1,CMIP5 -2123,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.605324677,20.4627,22.12865,21.38775,21.4161,1,CMIP5 -2124,tas,temperature,tgav,rcp45,C,Simulated,global,0.616040928,15.437,16.97855,16.45731,16.6723,1,CMIP5 -2124,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.532516677,-8.1332,-4.6419,-6.25189,-6.6458,1,CMIP5 -2124,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.621642938,20.3334,22.0102,21.34798,21.4687,1,CMIP5 -2125,tas,temperature,tgav,rcp45,C,Simulated,global,0.587424342,15.474,16.8736,16.46374,16.7171,1,CMIP5 -2125,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.493776374,-8.0037,-4.5573,-6.18878,-6.3823,1,CMIP5 -2125,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.609046511,20.3201,21.8992,21.34256,21.4795,1,CMIP5 -2126,tas,temperature,tgav,rcp45,C,Simulated,global,0.630608612,15.3947,17.0117,16.44968,16.6791,1,CMIP5 -2126,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.413470681,-7.9386,-4.6912,-6.1587,-6.2901,1,CMIP5 -2126,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.701753902,20.2027,22.03905,21.31857,21.4677,1,CMIP5 -2127,tas,temperature,tgav,rcp45,C,Simulated,global,0.542014491,15.591,17.0042,16.50606,16.7,1,CMIP5 -2127,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.311976058,-7.5284,-4.5803,-5.93745,-5.9651,1,CMIP5 -2127,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.618126185,20.3704,21.99925,21.33949,21.518,1,CMIP5 -2128,tas,temperature,tgav,rcp45,C,Simulated,global,0.575108472,15.5474,17.07965,16.51293,16.6691,1,CMIP5 -2128,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.358231456,-7.6848,-4.566,-6.09189,-6.2317,1,CMIP5 -2128,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.656371597,20.3763,22.1282,21.38054,21.6045,1,CMIP5 -2129,tas,temperature,tgav,rcp45,C,Simulated,global,0.643484802,15.3622,17.0583,16.4547,16.5702,1,CMIP5 -2129,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.302693364,-7.7619,-4.5362,-6.27137,-6.565,1,CMIP5 -2129,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.715626844,20.2237,22.10305,21.34789,21.6267,1,CMIP5 -2130,tas,temperature,tgav,rcp45,C,Simulated,global,0.575487977,15.5331,17.0525,16.50822,16.6647,1,CMIP5 -2130,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.324158068,-7.6261,-4.5181,-6.14434,-6.6383,1,CMIP5 -2130,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.608214419,20.4491,22.0611,21.3867,21.6065,1,CMIP5 -2131,tas,temperature,tgav,rcp45,C,Simulated,global,0.630898358,15.4359,17.0843,16.52116,16.6686,1,CMIP5 -2131,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.325080102,-7.7747,-4.5868,-6.18661,-6.4338,1,CMIP5 -2131,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.709721515,20.2849,22.11945,21.41077,21.6764,1,CMIP5 -2132,tas,temperature,tgav,rcp45,C,Simulated,global,0.636260312,15.4899,17.19365,16.54635,16.6616,1,CMIP5 -2132,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.283448834,-7.5129,-4.44,-5.84871,-5.8759,1,CMIP5 -2132,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.737270339,20.2271,22.1729,21.36894,21.6049,1,CMIP5 -2133,tas,temperature,tgav,rcp45,C,Simulated,global,0.624453419,15.455,17.0663,16.51164,16.6266,1,CMIP5 -2133,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.452201631,-8.0763,-4.5297,-6.06771,-6.1417,1,CMIP5 -2133,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.718941847,20.2435,22.0421,21.3739,21.6929,1,CMIP5 -2134,tas,temperature,tgav,rcp45,C,Simulated,global,0.567392655,15.617,17.01415,16.58645,16.8202,1,CMIP5 -2134,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.510475948,-7.9668,-4.4393,-6.01677,-6.0655,1,CMIP5 -2134,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.633924826,20.4245,22.02335,21.45379,21.6846,1,CMIP5 -2135,tas,temperature,tgav,rcp45,C,Simulated,global,0.61559294,15.5152,17.1438,16.55724,16.7054,1,CMIP5 -2135,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.371113098,-7.7285,-4.2887,-6.06077,-6.3693,1,CMIP5 -2135,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.670874842,20.3675,22.1471,21.42706,21.6601,1,CMIP5 -2136,tas,temperature,tgav,rcp45,C,Simulated,global,0.668725947,15.3751,17.0928,16.53122,16.6946,1,CMIP5 -2136,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.291380892,-7.4457,-4.5839,-6.11683,-6.6763,1,CMIP5 -2136,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.694171397,20.2644,22.1196,21.40854,21.5953,1,CMIP5 -2137,tas,temperature,tgav,rcp45,C,Simulated,global,0.583886159,15.5078,16.99325,16.49207,16.6964,1,CMIP5 -2137,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.426410106,-7.6997,-4.5538,-6.09209,-6.3857,1,CMIP5 -2137,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.617225775,20.3622,22.0325,21.35552,21.4968,1,CMIP5 -2138,tas,temperature,tgav,rcp45,C,Simulated,global,0.520001413,15.6508,17.0273,16.5264,16.6995,1,CMIP5 -2138,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.344145066,-7.7798,-4.637,-6.19426,-6.4648,1,CMIP5 -2138,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.565960862,20.5543,22.062,21.41932,21.6229,1,CMIP5 -2139,tas,temperature,tgav,rcp45,C,Simulated,global,0.668415649,15.3383,17.07775,16.46267,16.7024,1,CMIP5 -2139,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.349721798,-7.6229,-4.5543,-6.17214,-6.859,1,CMIP5 -2139,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.677719293,20.2695,22.07545,21.33921,21.4618,1,CMIP5 -2140,tas,temperature,tgav,rcp45,C,Simulated,global,0.734814754,15.2396,17.1947,16.46968,16.6517,1,CMIP5 -2140,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.374143315,-7.5503,-4.5247,-6.0078,-6.5511,1,CMIP5 -2140,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.742745089,20.1316,22.1526,21.31128,21.5185,1,CMIP5 -2141,tas,temperature,tgav,rcp45,C,Simulated,global,0.692295326,15.3128,17.1548,16.46694,16.5624,1,CMIP5 -2141,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.146516712,-7.4829,-4.9079,-6.11388,-6.5501,1,CMIP5 -2141,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.701321039,20.193,22.10415,21.33107,21.5128,1,CMIP5 -2142,tas,temperature,tgav,rcp45,C,Simulated,global,0.626704617,15.3837,17.0052,16.46732,16.6208,1,CMIP5 -2142,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.170900501,-7.3055,-4.7499,-6.08559,-6.6096,1,CMIP5 -2142,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.651403592,20.2601,21.9847,21.325,21.5427,1,CMIP5 -2143,tas,temperature,tgav,rcp45,C,Simulated,global,0.561158438,15.59,17.0945,16.53468,16.6517,1,CMIP5 -2143,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.084216631,-7.1353,-4.7804,-6.01094,-6.4573,1,CMIP5 -2143,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.591884657,20.4785,22.07375,21.39117,21.5522,1,CMIP5 -2144,tas,temperature,tgav,rcp45,C,Simulated,global,0.709565048,15.3214,17.2587,16.49126,16.6236,1,CMIP5 -2144,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.179281621,-7.5359,-4.8977,-6.15172,-6.5981,1,CMIP5 -2144,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.755793022,20.2236,22.23975,21.36875,21.5504,1,CMIP5 -2145,tas,temperature,tgav,rcp45,C,Simulated,global,0.616719963,15.4972,17.19205,16.50225,16.6146,1,CMIP5 -2145,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.090895704,-7.2901,-4.8291,-5.99782,-6.1864,1,CMIP5 -2145,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.694453845,20.3051,22.1903,21.34826,21.4991,1,CMIP5 -2146,tas,temperature,tgav,rcp45,C,Simulated,global,0.641173165,15.3601,17.0909,16.42448,16.5204,1,CMIP5 -2146,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.281646701,-7.841,-4.8227,-6.1802,-6.4013,1,CMIP5 -2146,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.70569299,20.1852,22.09205,21.29221,21.4064,1,CMIP5 -2147,tas,temperature,tgav,rcp45,C,Simulated,global,0.582964032,15.491,17.0233,16.47144,16.6065,1,CMIP5 -2147,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.497856643,-8.127,-4.5583,-6.10916,-6.0058,1,CMIP5 -2147,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.667368856,20.2574,22.04485,21.33275,21.4811,1,CMIP5 -2148,tas,temperature,tgav,rcp45,C,Simulated,global,0.514281451,15.7538,17.11795,16.61099,16.7608,1,CMIP5 -2148,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.327465982,-7.5484,-4.4376,-5.87103,-5.7995,1,CMIP5 -2148,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.586849938,20.5327,22.1168,21.452,21.6431,1,CMIP5 -2149,tas,temperature,tgav,rcp45,C,Simulated,global,0.652851966,15.4723,17.20725,16.56973,16.7187,1,CMIP5 -2149,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.271316195,-7.335,-4.5058,-5.90936,-6.5332,1,CMIP5 -2149,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.690707896,20.3514,22.1679,21.41192,21.6176,1,CMIP5 -2150,tas,temperature,tgav,rcp45,C,Simulated,global,0.620381251,15.4637,17.1008,16.51892,16.7103,1,CMIP5 -2150,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.407202438,-7.9242,-4.5683,-6.09631,-6.4585,1,CMIP5 -2150,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.667452322,20.3244,22.07825,21.38905,21.6109,1,CMIP5 -2151,tas,temperature,tgav,rcp45,C,Simulated,global,0.5759152,15.6065,17.13965,16.56919,16.7031,1,CMIP5 -2151,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.274802464,-7.5617,-4.4736,-5.90984,-6.1013,1,CMIP5 -2151,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.639352691,20.4197,22.0958,21.41036,21.6333,1,CMIP5 -2152,tas,temperature,tgav,rcp45,C,Simulated,global,0.55588339,15.6328,17.1089,16.57544,16.7457,1,CMIP5 -2152,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.171911694,-7.5851,-4.6498,-5.98337,-5.979,1,CMIP5 -2152,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.623311108,20.4248,22.0586,21.43352,21.6745,1,CMIP5 -2153,tas,temperature,tgav,rcp45,C,Simulated,global,0.543374589,15.5802,16.99655,16.50427,16.6904,1,CMIP5 -2153,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.184508177,-7.4629,-4.8605,-6.09137,-6.2168,1,CMIP5 -2153,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.607170678,20.4133,22.0065,21.37048,21.4531,1,CMIP5 -2154,tas,temperature,tgav,rcp45,C,Simulated,global,0.614994462,15.4842,17.1466,16.50464,16.662,1,CMIP5 -2154,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.185183957,-7.5132,-4.8425,-6.06134,-6.0878,1,CMIP5 -2154,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.709727528,20.2673,22.17335,21.36407,21.4691,1,CMIP5 -2155,tas,temperature,tgav,rcp45,C,Simulated,global,0.543059322,15.7288,17.15335,16.61255,16.7616,1,CMIP5 -2155,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.416101898,-7.8015,-4.5839,-5.89845,-5.4944,1,CMIP5 -2155,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.641005748,20.4347,22.18015,21.45943,21.6089,1,CMIP5 -2156,tas,temperature,tgav,rcp45,C,Simulated,global,0.536345756,15.7377,17.09685,16.63941,16.8614,1,CMIP5 -2156,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.44416425,-7.5857,-4.3644,-5.92497,-5.9179,1,CMIP5 -2156,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.611104936,20.5393,22.1557,21.49824,21.6324,1,CMIP5 -2157,tas,temperature,tgav,rcp45,C,Simulated,global,0.52702244,15.7457,17.14985,16.59705,16.7799,1,CMIP5 -2157,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.430412541,-7.8292,-4.4283,-5.90568,-5.869,1,CMIP5 -2157,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.59280216,20.5383,22.14065,21.44261,21.5949,1,CMIP5 -2158,tas,temperature,tgav,rcp45,C,Simulated,global,0.551099442,15.725,17.22715,16.60919,16.6919,1,CMIP5 -2158,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.385316532,-7.6499,-4.337,-5.89531,-5.8064,1,CMIP5 -2158,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.657502725,20.499,22.2604,21.45464,21.6434,1,CMIP5 -2159,tas,temperature,tgav,rcp45,C,Simulated,global,0.57378166,15.681,17.21575,16.59301,16.6756,1,CMIP5 -2159,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.460823096,-7.9088,-4.3583,-5.88488,-5.7681,1,CMIP5 -2159,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.676434556,20.4368,22.2092,21.43306,21.6088,1,CMIP5 -2160,tas,temperature,tgav,rcp45,C,Simulated,global,0.500128831,15.8135,17.19205,16.56965,16.6369,1,CMIP5 -2160,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.331581121,-7.8492,-4.6965,-5.93905,-5.3237,1,CMIP5 -2160,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.631856956,20.5001,22.1981,21.41614,21.5492,1,CMIP5 -2161,tas,temperature,tgav,rcp45,C,Simulated,global,0.536198977,15.796,17.2647,16.64616,16.731,1,CMIP5 -2161,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.227632349,-7.5485,-4.7023,-5.831,-5.569,1,CMIP5 -2161,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624905863,20.5333,22.2442,21.48672,21.6468,1,CMIP5 -2162,tas,temperature,tgav,rcp45,C,Simulated,global,0.530033562,15.698,17.10765,16.58847,16.7515,1,CMIP5 -2162,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.152817234,-7.2468,-4.674,-5.77233,-5.5821,1,CMIP5 -2162,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624442411,20.4163,22.06785,21.40457,21.5934,1,CMIP5 -2163,tas,temperature,tgav,rcp45,C,Simulated,global,0.542561889,15.6544,17.06635,16.58929,16.7474,1,CMIP5 -2163,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.268144732,-7.5098,-4.6854,-5.92963,-5.6816,1,CMIP5 -2163,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.650460624,20.3851,22.0835,21.43846,21.6837,1,CMIP5 -2164,tas,temperature,tgav,rcp45,C,Simulated,global,0.579236301,15.5938,16.97905,16.60987,16.7983,1,CMIP5 -2164,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.336113375,-7.1597,-4.4911,-5.90658,-6.2431,1,CMIP5 -2164,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.605973619,20.4356,22.0129,21.45922,21.6951,1,CMIP5 -2165,tas,temperature,tgav,rcp45,C,Simulated,global,0.579134331,15.544,17.00435,16.54321,16.7965,1,CMIP5 -2165,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.406074645,-7.3892,-4.3279,-5.92604,-6.2933,1,CMIP5 -2165,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.619690427,20.386,22.0256,21.382,21.5748,1,CMIP5 -2166,tas,temperature,tgav,rcp45,C,Simulated,global,0.568873516,15.6263,17.1116,16.57448,16.7641,1,CMIP5 -2166,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.287652798,-7.5167,-4.3967,-5.96015,-6.1244,1,CMIP5 -2166,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.620777228,20.4489,22.1062,21.42712,21.5541,1,CMIP5 -2167,tas,temperature,tgav,rcp45,C,Simulated,global,0.628765694,15.5374,17.20155,16.58349,16.6892,1,CMIP5 -2167,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.220656356,-7.5356,-4.6756,-6.0128,-6.4584,1,CMIP5 -2167,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.64339567,20.4145,22.16065,21.45099,21.6391,1,CMIP5 -2168,tas,temperature,tgav,rcp45,C,Simulated,global,0.606431516,15.6354,17.2623,16.59206,16.6354,1,CMIP5 -2168,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.194474138,-7.6168,-4.744,-6.02011,-6.2779,1,CMIP5 -2168,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624148972,20.4941,22.23105,21.46273,21.5591,1,CMIP5 -2169,tas,temperature,tgav,rcp45,C,Simulated,global,0.575089404,15.6663,17.2278,16.58994,16.6201,1,CMIP5 -2169,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.087040397,-7.5109,-4.9263,-5.9312,-5.8996,1,CMIP5 -2169,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624712784,20.448,22.1593,21.44064,21.5825,1,CMIP5 -2170,tas,temperature,tgav,rcp45,C,Simulated,global,0.534830639,15.5934,17.03115,16.48915,16.5934,1,CMIP5 -2170,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.154503776,-7.4743,-4.9413,-6.17264,-6.2533,1,CMIP5 -2170,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.606940909,20.4373,22.0742,21.36972,21.5106,1,CMIP5 -2171,tas,temperature,tgav,rcp45,C,Simulated,global,0.611012277,15.5843,17.2356,16.59514,16.7053,1,CMIP5 -2171,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.158596839,-7.2934,-4.5647,-5.9427,-6.3674,1,CMIP5 -2171,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.649852037,20.4515,22.2073,21.4506,21.6341,1,CMIP5 -2172,tas,temperature,tgav,rcp45,C,Simulated,global,0.600592578,15.5906,17.17295,16.59143,16.7527,1,CMIP5 -2172,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.320095471,-7.3252,-4.262,-5.85025,-6.1874,1,CMIP5 -2172,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.648492328,20.4194,22.17225,21.42573,21.5622,1,CMIP5 -2173,tas,temperature,tgav,rcp45,C,Simulated,global,0.579188691,15.5643,17.07195,16.53543,16.6382,1,CMIP5 -2173,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.335677247,-7.5196,-4.5167,-6.00226,-6.33,1,CMIP5 -2173,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.610781723,20.4188,22.08335,21.38961,21.5561,1,CMIP5 -2174,tas,temperature,tgav,rcp45,C,Simulated,global,0.517539947,15.5924,16.9341,16.47292,16.573,1,CMIP5 -2174,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.360148579,-7.653,-4.6112,-6.03635,-6.0018,1,CMIP5 -2174,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.591714421,20.3803,21.95815,21.32039,21.4925,1,CMIP5 -2175,tas,temperature,tgav,rcp45,C,Simulated,global,0.563551818,15.5547,17.0181,16.52922,16.6801,1,CMIP5 -2175,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.173276081,-7.06425,-4.6808,-5.92185,-6.1312,1,CMIP5 -2175,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.634085434,20.3632,22.0462,21.36502,21.6003,1,CMIP5 -2176,tas,temperature,tgav,rcp45,C,Simulated,global,0.679126147,15.3877,17.183,16.54784,16.6993,1,CMIP5 -2176,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.221879319,-7.1367,-4.522,-6.03111,-6.6667,1,CMIP5 -2176,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.71515755,20.2777,22.2165,21.41048,21.5868,1,CMIP5 -2177,tas,temperature,tgav,rcp45,C,Simulated,global,0.574486219,15.5694,17.05005,16.55041,16.6811,1,CMIP5 -2177,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.219807657,-7.3399,-4.7101,-6.00371,-6.1929,1,CMIP5 -2177,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.621377413,20.3946,22.06935,21.40785,21.6035,1,CMIP5 -2178,tas,temperature,tgav,rcp45,C,Simulated,global,0.528199184,15.7163,17.1271,16.59656,16.7456,1,CMIP5 -2178,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.345794176,-7.4399,-4.4019,-5.97634,-6.3364,1,CMIP5 -2178,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.578320102,20.6059,22.1565,21.4578,21.6239,1,CMIP5 -2179,tas,temperature,tgav,rcp45,C,Simulated,global,0.551085783,15.757,17.2741,16.6344,16.7003,1,CMIP5 -2179,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.234435799,-7.3019,-4.2675,-5.85756,-6.001,1,CMIP5 -2179,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.626376044,20.581,22.2824,21.47744,21.6256,1,CMIP5 -2180,tas,temperature,tgav,rcp45,C,Simulated,global,0.603467768,15.5473,17.1443,16.57158,16.7528,1,CMIP5 -2180,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.276230547,-7.1971,-4.2688,-5.94113,-6.2688,1,CMIP5 -2180,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.661763951,20.3844,22.1839,21.41902,21.6115,1,CMIP5 -2181,tas,temperature,tgav,rcp45,C,Simulated,global,0.618786661,15.4669,17.01385,16.53283,16.8029,1,CMIP5 -2181,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.437830754,-7.5222,-4.3163,-6.05338,-6.7731,1,CMIP5 -2181,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.615674656,20.3979,22.01515,21.39715,21.5714,1,CMIP5 -2182,tas,temperature,tgav,rcp45,C,Simulated,global,0.57887214,15.6129,17.13955,16.59725,16.7783,1,CMIP5 -2182,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.203636797,-7.3388,-4.7098,-5.97706,-6.3673,1,CMIP5 -2182,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.619788988,20.4865,22.12765,21.45995,21.665,1,CMIP5 -2183,tas,temperature,tgav,rcp45,C,Simulated,global,0.625780735,15.5415,17.20815,16.58989,16.7397,1,CMIP5 -2183,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.256355074,-7.3653,-4.5986,-5.99462,-6.3554,1,CMIP5 -2183,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.693504077,20.3966,22.2415,21.4542,21.6305,1,CMIP5 -2184,tas,temperature,tgav,rcp45,C,Simulated,global,0.567070305,15.6647,17.15355,16.61379,16.777,1,CMIP5 -2184,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.42122447,-7.5917,-4.2838,-5.88773,-6.1793,1,CMIP5 -2184,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.623668189,20.5081,22.15415,21.45945,21.6514,1,CMIP5 -2185,tas,temperature,tgav,rcp45,C,Simulated,global,0.552228379,15.6918,17.1523,16.62414,16.7779,1,CMIP5 -2185,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.247181999,-7.3405,-4.4381,-5.80969,-5.783,1,CMIP5 -2185,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.639334926,20.4533,22.14085,21.45523,21.6688,1,CMIP5 -2186,tas,temperature,tgav,rcp45,C,Simulated,global,0.602664062,15.6066,17.13255,16.63753,16.8567,1,CMIP5 -2186,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.464904091,-7.642,-4.0867,-5.91205,-6.1073,1,CMIP5 -2186,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.658879927,20.4212,22.15335,21.49241,21.7134,1,CMIP5 -2187,tas,temperature,tgav,rcp45,C,Simulated,global,0.642016454,15.5416,17.204,16.64642,16.8685,1,CMIP5 -2187,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.37264955,-7.3396,-4.141,-5.78252,-6.1198,1,CMIP5 -2187,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.700427387,20.3447,22.19945,21.47597,21.7407,1,CMIP5 -2188,tas,temperature,tgav,rcp45,C,Simulated,global,0.58779143,15.7476,17.29935,16.69405,16.9083,1,CMIP5 -2188,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.362136682,-7.4544,-4.2754,-5.73293,-5.8627,1,CMIP5 -2188,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.646486177,20.5391,22.288,21.52378,21.5933,1,CMIP5 -2189,tas,temperature,tgav,rcp45,C,Simulated,global,0.608316757,15.7088,17.21435,16.69497,16.9005,1,CMIP5 -2189,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.515160614,-7.6299,-4.0308,-5.84868,-6.2167,1,CMIP5 -2189,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.639335477,20.5702,22.2292,21.54958,21.5881,1,CMIP5 -2190,tas,temperature,tgav,rcp45,C,Simulated,global,0.551057922,15.8269,17.1823,16.74514,16.938,1,CMIP5 -2190,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.359300714,-7.5456,-4.3175,-5.79532,-5.7713,1,CMIP5 -2190,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.619143955,20.6158,22.1684,21.59948,21.7185,1,CMIP5 -2191,tas,temperature,tgav,rcp45,C,Simulated,global,0.522126601,15.853,17.1378,16.70612,16.8716,1,CMIP5 -2191,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.438381317,-7.6095,-4.0385,-5.75448,-5.5483,1,CMIP5 -2191,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.592045691,20.5983,22.04925,21.54221,21.6464,1,CMIP5 -2192,tas,temperature,tgav,rcp45,C,Simulated,global,0.599415711,15.7058,17.1278,16.73235,17.0638,1,CMIP5 -2192,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.473157546,-7.1643,-3.8447,-5.6808,-6.2402,1,CMIP5 -2192,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.588419963,20.572,22.04715,21.55909,21.6731,1,CMIP5 -2193,tas,temperature,tgav,rcp45,C,Simulated,global,0.65657234,15.6387,17.2143,16.72876,17.0461,1,CMIP5 -2193,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.494628404,-7.2435,-3.9208,-5.70113,-6.2137,1,CMIP5 -2193,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.672566344,20.4839,22.2295,21.55912,21.5672,1,CMIP5 -2194,tas,temperature,tgav,rcp45,C,Simulated,global,0.633996007,15.6966,17.2991,16.73562,16.9023,1,CMIP5 -2194,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.446201859,-7.2612,-3.8283,-5.65318,-6.171,1,CMIP5 -2194,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.663617186,20.5452,22.27575,21.55705,21.6182,1,CMIP5 -2195,tas,temperature,tgav,rcp45,C,Simulated,global,0.592170727,15.6744,17.19345,16.67455,16.9132,1,CMIP5 -2195,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.363219168,-7.0719,-4.0346,-5.66063,-6.1495,1,CMIP5 -2195,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.618285201,20.5134,22.17095,21.48467,21.5944,1,CMIP5 -2196,tas,temperature,tgav,rcp45,C,Simulated,global,0.592946319,15.6641,17.2184,16.67928,16.8538,1,CMIP5 -2196,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.271180283,-6.9321,-4.0077,-5.74166,-6.1972,1,CMIP5 -2196,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.658236066,20.511,22.26075,21.50701,21.7126,1,CMIP5 -2197,tas,temperature,tgav,rcp45,C,Simulated,global,0.638663536,15.5667,17.2719,16.64732,16.7879,1,CMIP5 -2197,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.301315729,-7.2418,-4.1962,-5.84662,-6.5165,1,CMIP5 -2197,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.667365286,20.4631,22.24045,21.49155,21.6984,1,CMIP5 -2198,tas,temperature,tgav,rcp45,C,Simulated,global,0.611472008,15.609,17.1892,16.65422,16.7733,1,CMIP5 -2198,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.295068567,-7.2535,-4.061,-5.84114,-6.2632,1,CMIP5 -2198,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.654545573,20.4584,22.1646,21.49808,21.7439,1,CMIP5 -2199,tas,temperature,tgav,rcp45,C,Simulated,global,0.564287989,15.7282,17.19415,16.69607,16.8575,1,CMIP5 -2199,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.278976312,-7.287,-4.1761,-5.81299,-6.0505,1,CMIP5 -2199,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.616928004,20.5571,22.17855,21.54295,21.7844,1,CMIP5 -2200,tas,temperature,tgav,rcp45,C,Simulated,global,0.550643206,15.7908,17.2404,16.7111,16.7941,1,CMIP5 -2200,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.246570999,-7.3605,-4.4624,-5.83779,-6.2428,1,CMIP5 -2200,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.562090676,20.6762,22.19305,21.56831,21.7312,1,CMIP5 -2201,tas,temperature,tgav,rcp45,C,Simulated,global,0.578827409,15.6562,17.10635,16.66407,16.84,1,CMIP5 -2201,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.301923621,-6.9965,-4.3701,-5.87193,-6.5506,1,CMIP5 -2201,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.575345368,20.58,22.11745,21.51807,21.7132,1,CMIP5 -2202,tas,temperature,tgav,rcp45,C,Simulated,global,0.443601975,15.9207,17.02205,16.69087,16.8083,1,CMIP5 -2202,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.29034259,-6.99805,-4.2921,-5.65055,-5.7979,1,CMIP5 -2202,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.484804294,20.7363,22.0372,21.50254,21.668,1,CMIP5 -2203,tas,temperature,tgav,rcp45,C,Simulated,global,0.451545549,15.9648,17.15075,16.68489,16.8669,1,CMIP5 -2203,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.365385644,-7.398,-4.2403,-5.77898,-5.5261,1,CMIP5 -2203,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.532088111,20.7297,22.1845,21.52156,21.5769,1,CMIP5 -2204,tas,temperature,tgav,rcp45,C,Simulated,global,0.556322053,15.8173,17.288,16.74572,16.9318,1,CMIP5 -2204,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.267463003,-6.8832,-4.2567,-5.59866,-5.9335,1,CMIP5 -2204,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.613792165,20.6401,22.28565,21.55863,21.6589,1,CMIP5 -2205,tas,temperature,tgav,rcp45,C,Simulated,global,0.654545484,15.5266,17.21145,16.65175,16.8226,1,CMIP5 -2205,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.224357157,-6.9512,-4.4997,-5.82082,-6.3691,1,CMIP5 -2205,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.710843356,20.3816,22.2214,21.49288,21.6767,1,CMIP5 -2206,tas,temperature,tgav,rcp45,C,Simulated,global,0.553993973,15.7131,17.1744,16.65032,16.8331,1,CMIP5 -2206,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.303966029,-7.4851,-4.4672,-5.7868,-5.9517,1,CMIP5 -2206,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.611029334,20.5167,22.12045,21.48267,21.7253,1,CMIP5 -2207,tas,temperature,tgav,rcp45,C,Simulated,global,0.528535304,15.8678,17.32535,16.71121,16.7504,1,CMIP5 -2207,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.20544648,-7.231,-4.4577,-5.67842,-5.6397,1,CMIP5 -2207,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.610935328,20.6365,22.2994,21.5333,21.6597,1,CMIP5 -2208,tas,temperature,tgav,rcp45,C,Simulated,global,0.57146628,15.8447,17.41155,16.73387,16.7963,1,CMIP5 -2208,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.402102931,-7.6651,-4.38,-5.8447,-5.991,1,CMIP5 -2208,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.633462895,20.6862,22.43665,21.59637,21.7085,1,CMIP5 -2209,tas,temperature,tgav,rcp45,C,Simulated,global,0.572380955,15.7146,17.2293,16.66644,16.8281,1,CMIP5 -2209,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.091158168,-7.1369,-4.6896,-5.86962,-5.9428,1,CMIP5 -2209,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.636422837,20.5167,22.2304,21.52112,21.6122,1,CMIP5 -2210,tas,temperature,tgav,rcp45,C,Simulated,global,0.531957601,15.724,17.10615,16.63087,16.7916,1,CMIP5 -2210,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.290401295,-7.3725,-4.4073,-5.82274,-6.0102,1,CMIP5 -2210,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.576071629,20.5431,22.07725,21.46643,21.674,1,CMIP5 -2211,tas,temperature,tgav,rcp45,C,Simulated,global,0.469383447,15.9504,17.18245,16.69741,16.7196,1,CMIP5 -2211,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.220087479,-7.1911,-4.5027,-5.72742,-5.5596,1,CMIP5 -2211,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.525222615,20.7197,22.18135,21.52699,21.6228,1,CMIP5 -2212,tas,temperature,tgav,rcp45,C,Simulated,global,0.564260358,15.7956,17.3264,16.69068,16.7236,1,CMIP5 -2212,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.127853588,-7.3189,-4.6622,-5.81472,-5.8431,1,CMIP5 -2212,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.613599743,20.5935,22.2945,21.5381,21.6662,1,CMIP5 -2213,tas,temperature,tgav,rcp45,C,Simulated,global,0.508291253,15.868,17.20155,16.70575,16.8028,1,CMIP5 -2213,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.171937613,-7.0463,-4.395,-5.85026,-6.2274,1,CMIP5 -2213,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.525889283,20.7672,22.20005,21.56499,21.6321,1,CMIP5 -2214,tas,temperature,tgav,rcp45,C,Simulated,global,0.473054379,15.9192,17.17165,16.70441,16.8057,1,CMIP5 -2214,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.262485642,-7.285,-4.4413,-5.87955,-6.1061,1,CMIP5 -2214,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.513940841,20.8027,22.18625,21.56931,21.7049,1,CMIP5 -2215,tas,temperature,tgav,rcp45,C,Simulated,global,0.576659482,15.7747,17.31595,16.68601,16.8313,1,CMIP5 -2215,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.324931872,-7.6191,-4.5214,-5.91939,-6.0918,1,CMIP5 -2215,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.620375679,20.6229,22.32845,21.55491,21.6129,1,CMIP5 -2216,tas,temperature,tgav,rcp45,C,Simulated,global,0.526503948,15.8535,17.283,16.68462,16.735,1,CMIP5 -2216,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.283363333,-7.4761,-4.4852,-5.82983,-5.9169,1,CMIP5 -2216,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.577447874,20.6804,22.2762,21.53368,21.6577,1,CMIP5 -2217,tas,temperature,tgav,rcp45,C,Simulated,global,0.499060484,15.9093,17.2462,16.72862,16.7891,1,CMIP5 -2217,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.293734728,-7.3773,-4.4428,-5.84602,-6.0272,1,CMIP5 -2217,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.545919841,20.7731,22.2592,21.59086,21.7197,1,CMIP5 -2218,tas,temperature,tgav,rcp45,C,Simulated,global,0.547294731,15.8877,17.3658,16.76036,16.9076,1,CMIP5 -2218,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.185812134,-7.1439,-4.2619,-5.66283,-5.7788,1,CMIP5 -2218,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.592826335,20.6918,22.33035,21.58929,21.6504,1,CMIP5 -2219,tas,temperature,tgav,rcp45,C,Simulated,global,0.645264819,15.6093,17.267,16.72392,16.914,1,CMIP5 -2219,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.227584014,-6.932,-4.1398,-5.71158,-6.2453,1,CMIP5 -2219,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.665873235,20.455,22.24185,21.55537,21.763,1,CMIP5 -2220,tas,temperature,tgav,rcp45,C,Simulated,global,0.608335352,15.6362,17.19185,16.68895,16.8713,1,CMIP5 -2220,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.235070518,-7.08835,-4.443,-5.86227,-6.2672,1,CMIP5 -2220,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.653258553,20.4926,22.26125,21.54583,21.7104,1,CMIP5 -2221,tas,temperature,tgav,rcp45,C,Simulated,global,0.577462373,15.8085,17.3344,16.76548,16.9399,1,CMIP5 -2221,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.344555323,-7.1746,-3.9827,-5.66473,-5.9892,1,CMIP5 -2221,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.62360083,20.6418,22.32955,21.59551,21.7197,1,CMIP5 -2222,tas,temperature,tgav,rcp45,C,Simulated,global,0.566873303,15.7267,17.21965,16.68387,16.8306,1,CMIP5 -2222,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.368073596,-7.3961,-4.3614,-5.7868,-6.2048,1,CMIP5 -2222,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.597948467,20.5895,22.19415,21.52347,21.7114,1,CMIP5 -2223,tas,temperature,tgav,rcp45,C,Simulated,global,0.668904724,15.5244,17.2794,16.6729,16.8304,1,CMIP5 -2223,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.308710205,-6.9881,-4.3483,-5.7666,-6.4279,1,CMIP5 -2223,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.707950865,20.3918,22.28975,21.50595,21.6956,1,CMIP5 -2224,tas,temperature,tgav,rcp45,C,Simulated,global,0.638764911,15.6164,17.31665,16.69967,16.8353,1,CMIP5 -2224,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.230981528,-7.0675,-4.2634,-5.67716,-6.0444,1,CMIP5 -2224,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.69409689,20.4192,22.28705,21.51859,21.6946,1,CMIP5 -2225,tas,temperature,tgav,rcp45,C,Simulated,global,0.645536974,15.628,17.33785,16.72195,16.9182,1,CMIP5 -2225,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.169966205,-6.5745,-4.1144,-5.62301,-6.2711,1,CMIP5 -2225,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.675384037,20.4837,22.3242,21.53466,21.6604,1,CMIP5 -2226,tas,temperature,tgav,rcp45,C,Simulated,global,0.691489628,15.5186,17.24665,16.71649,16.9196,1,CMIP5 -2226,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.377874721,-6.8969,-3.9446,-5.72615,-6.4324,1,CMIP5 -2226,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.708911307,20.3858,22.26875,21.55151,21.7414,1,CMIP5 -2227,tas,temperature,tgav,rcp45,C,Simulated,global,0.589370248,15.7475,17.22485,16.75437,17.0291,1,CMIP5 -2227,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.362395033,-7.1206,-4.2317,-5.79607,-6.3039,1,CMIP5 -2227,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.610054805,20.637,22.25605,21.61129,21.7169,1,CMIP5 -2228,tas,temperature,tgav,rcp45,C,Simulated,global,0.707771487,15.5298,17.32585,16.73685,16.9425,1,CMIP5 -2228,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.491430081,-7.5282,-4.0837,-5.82062,-6.201,1,CMIP5 -2228,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.777219461,20.3481,22.36715,21.59419,21.8222,1,CMIP5 -2229,tas,temperature,tgav,rcp45,C,Simulated,global,0.657692242,15.6165,17.2659,16.7445,16.9691,1,CMIP5 -2229,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.435684768,-7.439,-3.9006,-5.69716,-5.8879,1,CMIP5 -2229,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.721336638,20.3846,22.2516,21.5762,21.8108,1,CMIP5 -2230,tas,temperature,tgav,rcp45,C,Simulated,global,0.696067125,15.5084,17.19145,16.71447,17.0636,1,CMIP5 -2230,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.650024811,-7.5706,-3.9125,-5.84714,-6.6182,1,CMIP5 -2230,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.694452158,20.4145,22.21645,21.57273,21.8021,1,CMIP5 -2231,tas,temperature,tgav,rcp45,C,Simulated,global,0.610137113,15.7338,17.3059,16.76782,16.986,1,CMIP5 -2231,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.403573795,-7.1694,-4.0237,-5.64118,-5.9387,1,CMIP5 -2231,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.65726526,20.5391,22.32305,21.59307,21.7539,1,CMIP5 -2232,tas,temperature,tgav,rcp45,C,Simulated,global,0.584603848,15.8304,17.34075,16.77183,16.9901,1,CMIP5 -2232,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.475911125,-7.4274,-3.9576,-5.61835,-5.7625,1,CMIP5 -2232,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.626115273,20.6181,22.34275,21.59267,21.6506,1,CMIP5 -2233,tas,temperature,tgav,rcp45,C,Simulated,global,0.510052139,15.9286,17.2187,16.7781,16.9625,1,CMIP5 -2233,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.567288054,-7.6574,-3.9137,-5.72194,-5.8621,1,CMIP5 -2233,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.539459445,20.76,22.22555,21.62209,21.7706,1,CMIP5 -2234,tas,temperature,tgav,rcp45,C,Simulated,global,0.592149496,15.7945,17.28605,16.77461,17.0251,1,CMIP5 -2234,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.461373764,-7.6985,-4.0419,-5.72857,-5.8981,1,CMIP5 -2234,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624085389,20.6043,22.23565,21.62019,21.7544,1,CMIP5 -2235,tas,temperature,tgav,rcp45,C,Simulated,global,0.586024243,15.8,17.1946,16.79436,17.0627,1,CMIP5 -2235,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.470586243,-7.5541,-4.0345,-5.68644,-5.6557,1,CMIP5 -2235,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.647618022,20.5574,22.165,21.63504,21.8051,1,CMIP5 -2236,tas,temperature,tgav,rcp45,C,Simulated,global,0.56081998,15.7888,17.15065,16.76477,16.9753,1,CMIP5 -2236,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.505723527,-7.3811,-3.849,-5.656,-5.8543,1,CMIP5 -2236,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.616522609,20.5877,22.1465,21.59214,21.8639,1,CMIP5 -2237,tas,temperature,tgav,rcp45,C,Simulated,global,0.591454206,15.7455,17.2342,16.75396,16.9221,1,CMIP5 -2237,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.41467438,-7.3206,-3.9043,-5.75227,-6.0857,1,CMIP5 -2237,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.635339956,20.5862,22.2377,21.6,21.7913,1,CMIP5 -2238,tas,temperature,tgav,rcp45,C,Simulated,global,0.676005499,15.6087,17.37585,16.74255,16.9805,1,CMIP5 -2238,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.418701454,-7.2086,-3.8736,-5.63957,-6.32375,1,CMIP5 -2238,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.68283844,20.4811,22.32405,21.56255,21.7106,1,CMIP5 -2239,tas,temperature,tgav,rcp45,C,Simulated,global,0.529805429,15.8583,17.20215,16.73749,16.8324,1,CMIP5 -2239,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.289128301,-6.8232,-4.0397,-5.45747,-5.6118,1,CMIP5 -2239,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.615185326,20.6188,22.1671,21.5181,21.6177,1,CMIP5 -2240,tas,temperature,tgav,rcp45,C,Simulated,global,0.507170839,15.9416,17.2011,16.7554,16.8263,1,CMIP5 -2240,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.600094051,-7.6052,-3.7659,-5.66273,-5.3515,1,CMIP5 -2240,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.618571785,20.6629,22.24685,21.58119,21.7266,1,CMIP5 -2241,tas,temperature,tgav,rcp45,C,Simulated,global,0.521981362,15.9788,17.2723,16.82288,17.0569,1,CMIP5 -2241,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.663356004,-7.6834,-3.6918,-5.56812,-5.4954,1,CMIP5 -2241,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.578392246,20.7403,22.28175,21.64311,21.756,1,CMIP5 -2242,tas,temperature,tgav,rcp45,C,Simulated,global,0.596409991,15.8811,17.41685,16.83187,16.975,1,CMIP5 -2242,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.533223303,-7.653,-4.078,-5.58721,-5.7902,1,CMIP5 -2242,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.61230818,20.686,22.3753,21.65938,21.7688,1,CMIP5 -2243,tas,temperature,tgav,rcp45,C,Simulated,global,0.580509791,15.8625,17.4192,16.78092,16.9276,1,CMIP5 -2243,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.374582004,-7.4775,-4.2504,-5.65937,-5.9658,1,CMIP5 -2243,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.604070654,20.7023,22.36745,21.61381,21.7058,1,CMIP5 -2244,tas,temperature,tgav,rcp45,C,Simulated,global,0.568869082,15.8171,17.29315,16.77235,16.9901,1,CMIP5 -2244,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.504094487,-7.621,-4.1395,-5.68497,-5.9046,1,CMIP5 -2244,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.616146502,20.6332,22.2686,21.60832,21.8258,1,CMIP5 -2245,tas,temperature,tgav,rcp45,C,Simulated,global,0.55840349,15.9139,17.38765,16.80945,17.0191,1,CMIP5 -2245,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.318463537,-7.3045,-4.2667,-5.52779,-5.4756,1,CMIP5 -2245,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.624206538,20.6566,22.3375,21.62022,21.6978,1,CMIP5 -2246,tas,temperature,tgav,rcp45,C,Simulated,global,0.5849323,15.8835,17.4262,16.8402,16.9754,1,CMIP5 -2246,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.159566604,-6.9195,-4.2375,-5.50774,-5.5093,1,CMIP5 -2246,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.673189467,20.6269,22.39555,21.65361,21.7273,1,CMIP5 -2247,tas,temperature,tgav,rcp45,C,Simulated,global,0.565606132,15.9391,17.3933,16.88458,17.1231,1,CMIP5 -2247,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.381728494,-7.1249,-3.9034,-5.47559,-5.6264,1,CMIP5 -2247,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.617155655,20.7207,22.3728,21.69954,21.8255,1,CMIP5 -2248,tas,temperature,tgav,rcp45,C,Simulated,global,0.538473458,16.0125,17.33265,16.90597,17.1925,1,CMIP5 -2248,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.362758331,-7.085,-4.0798,-5.43946,-5.1362,1,CMIP5 -2248,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.62428533,20.7017,22.3352,21.71776,21.7806,1,CMIP5 -2249,tas,temperature,tgav,rcp45,C,Simulated,global,0.488029084,16.0579,17.2897,16.88978,17.0698,1,CMIP5 -2249,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.318931499,-7.167,-4.2014,-5.49051,-5.2603,1,CMIP5 -2249,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.581915058,20.7845,22.25925,21.70957,21.9014,1,CMIP5 -2250,tas,temperature,tgav,rcp45,C,Simulated,global,0.504527485,16.0195,17.3273,16.86886,17.0587,1,CMIP5 -2250,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.247730629,-7.0692,-4.1956,-5.58015,-5.7028,1,CMIP5 -2250,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.555277584,20.8359,22.2979,21.7038,21.8394,1,CMIP5 -2251,tas,temperature,tgav,rcp45,C,Simulated,global,0.555976769,15.883,17.362,16.80094,16.9526,1,CMIP5 -2251,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.10004955,-7.017,-4.3088,-5.65542,-5.817,1,CMIP5 -2251,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.605250917,20.6944,22.3064,21.63758,21.738,1,CMIP5 -2252,tas,temperature,tgav,rcp45,C,Simulated,global,0.535942397,15.885,17.30955,16.79169,16.9259,1,CMIP5 -2252,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.24231923,-6.9006,-4.2354,-5.60354,-6.0251,1,CMIP5 -2252,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.573456797,20.743,22.28475,21.61535,21.7997,1,CMIP5 -2253,tas,temperature,tgav,rcp45,C,Simulated,global,0.547321901,15.8346,17.301,16.73854,16.8707,1,CMIP5 -2253,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.239090863,-7.3291,-4.5179,-5.81578,-5.9154,1,CMIP5 -2253,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.610526653,20.657,22.30895,21.59643,21.7538,1,CMIP5 -2254,tas,temperature,tgav,rcp45,C,Simulated,global,0.522163878,15.8842,17.24105,16.70295,16.9115,1,CMIP5 -2254,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.500661666,-7.9237,-4.3873,-5.8654,-5.8294,1,CMIP5 -2254,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.576852055,20.6984,22.2391,21.56294,21.6397,1,CMIP5 -2255,tas,temperature,tgav,rcp45,C,Simulated,global,0.509450408,15.9352,17.2629,16.74986,16.9098,1,CMIP5 -2255,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.312687919,-7.3816,-4.3024,-5.63939,-5.4902,1,CMIP5 -2255,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.587432491,20.6858,22.2275,21.57168,21.6387,1,CMIP5 -2256,tas,temperature,tgav,rcp45,C,Simulated,global,0.50075355,15.9611,17.27495,16.79109,16.9203,1,CMIP5 -2256,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.158756729,-6.9212,-4.2812,-5.63571,-5.661,1,CMIP5 -2256,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.573725788,20.7552,22.26555,21.62127,21.7026,1,CMIP5 -2257,tas,temperature,tgav,rcp45,C,Simulated,global,0.564129458,15.826,17.21925,16.81201,17.0367,1,CMIP5 -2257,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.126994203,-6.6527,-4.17,-5.58664,-5.8538,1,CMIP5 -2257,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.608642798,20.6327,22.20345,21.63621,21.7868,1,CMIP5 -2258,tas,temperature,tgav,rcp45,C,Simulated,global,0.559025931,15.8886,17.19315,16.86353,17.1583,1,CMIP5 -2258,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.282204778,-6.88945,-3.9695,-5.46639,-5.7065,1,CMIP5 -2258,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.596855833,20.6768,22.22135,21.67259,21.7648,1,CMIP5 -2259,tas,temperature,tgav,rcp45,C,Simulated,global,0.512453954,16.0284,17.3395,16.8823,17.0759,1,CMIP5 -2259,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.36846705,-7.0372,-4.0766,-5.42474,-5.3175,1,CMIP5 -2259,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.584377423,20.7613,22.33385,21.68603,21.8003,1,CMIP5 -2260,tas,temperature,tgav,rcp45,C,Simulated,global,0.487510192,16.032,17.26215,16.88177,17.0321,1,CMIP5 -2260,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.282750542,-6.80175,-3.9493,-5.36375,-5.2958,1,CMIP5 -2260,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.579581532,20.7608,22.28645,21.67323,21.8706,1,CMIP5 -2261,tas,temperature,tgav,rcp45,C,Simulated,global,0.459607044,16.1014,17.33,16.8786,16.9993,1,CMIP5 -2261,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.245497156,-6.7667,-4.2809,-5.4058,-4.985,1,CMIP5 -2261,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.596423335,20.7768,22.3611,21.6775,21.8921,1,CMIP5 -2262,tas,temperature,tgav,rcp45,C,Simulated,global,0.483496693,16.0027,17.2953,16.79712,16.9247,1,CMIP5 -2262,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,0.977184068,-6.6414,-4.4024,-5.48664,-5.3888,1,CMIP5 -2262,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.571187605,20.7458,22.29305,21.59621,21.645,1,CMIP5 -2263,tas,temperature,tgav,rcp45,C,Simulated,global,0.498684763,15.9909,17.30985,16.82379,16.9134,1,CMIP5 -2263,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,0.961329609,-6.6163,-4.5361,-5.52116,-5.6133,1,CMIP5 -2263,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.536214558,20.7811,22.2363,21.63718,21.7719,1,CMIP5 -2264,tas,temperature,tgav,rcp45,C,Simulated,global,0.582440295,15.8692,17.4059,16.86088,17.0093,1,CMIP5 -2264,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.081250722,-6.6551,-4.2774,-5.42991,-5.6402,1,CMIP5 -2264,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.636968942,20.6385,22.34025,21.66225,21.8657,1,CMIP5 -2265,tas,temperature,tgav,rcp45,C,Simulated,global,0.569954956,15.8751,17.3997,16.83338,16.9895,1,CMIP5 -2265,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.100901472,-6.6339,-4.2102,-5.50498,-5.9286,1,CMIP5 -2265,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.60504069,20.7093,22.34665,21.64503,21.7983,1,CMIP5 -2266,tas,temperature,tgav,rcp45,C,Simulated,global,0.543641481,15.9648,17.3677,16.8875,16.9662,1,CMIP5 -2266,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.171809875,-6.474,-4.0875,-5.36476,-5.6944,1,CMIP5 -2266,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.575342892,20.7673,22.34555,21.68049,21.8146,1,CMIP5 -2267,tas,temperature,tgav,rcp45,C,Simulated,global,0.50469405,16.0077,17.29205,16.86717,17.0516,1,CMIP5 -2267,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.220766884,-6.6611,-3.9684,-5.4136,-5.5874,1,CMIP5 -2267,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.556663188,20.7959,22.2584,21.6658,21.7724,1,CMIP5 -2268,tas,temperature,tgav,rcp45,C,Simulated,global,0.527774116,15.9415,17.22675,16.86715,17.1011,1,CMIP5 -2268,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.243620198,-6.7084,-4.0546,-5.40632,-5.4101,1,CMIP5 -2268,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.602629363,20.6756,22.22415,21.66403,21.8488,1,CMIP5 -2269,tas,temperature,tgav,rcp45,C,Simulated,global,0.592376747,15.8743,17.27875,16.89339,17.159,1,CMIP5 -2269,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.322834782,-6.8508,-3.9201,-5.45685,-5.5061,1,CMIP5 -2269,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.659546092,20.615,22.27755,21.70649,21.8343,1,CMIP5 -2270,tas,temperature,tgav,rcp45,C,Simulated,global,0.556373748,15.9459,17.29465,16.89445,17.19,1,CMIP5 -2270,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.342673182,-7.2014,-3.9438,-5.47976,-5.5021,1,CMIP5 -2270,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.5991757,20.7014,22.2296,21.7124,21.8706,1,CMIP5 -2271,tas,temperature,tgav,rcp45,C,Simulated,global,0.474052771,16.1254,17.26255,16.91707,17.1084,1,CMIP5 -2271,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.434269836,-7.3665,-4.0989,-5.43459,-5.2135,1,CMIP5 -2271,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.519589591,20.8567,22.2,21.73034,21.8939,1,CMIP5 -2272,tas,temperature,tgav,rcp45,C,Simulated,global,0.464233214,16.0929,17.25795,16.87073,17.0248,1,CMIP5 -2272,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.450240081,-7.2047,-4.007,-5.40677,-5.1729,1,CMIP5 -2272,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.533208974,20.8081,22.2351,21.6676,21.8393,1,CMIP5 -2273,tas,temperature,tgav,rcp45,C,Simulated,global,0.544949762,15.9009,17.29605,16.82939,17.0426,1,CMIP5 -2273,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.53842754,-7.3037,-3.974,-5.56167,-5.7553,1,CMIP5 -2273,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.608760185,20.7026,22.3205,21.65104,21.8664,1,CMIP5 -2274,tas,temperature,tgav,rcp45,C,Simulated,global,0.615294947,15.8518,17.457,16.89008,17.1018,1,CMIP5 -2274,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.555910023,-7.1918,-3.8293,-5.41187,-5.5752,1,CMIP5 -2274,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.696937865,20.6029,22.4864,21.69208,21.912,1,CMIP5 -2275,tas,temperature,tgav,rcp45,C,Simulated,global,0.536156224,15.9883,17.42765,16.89227,17.0117,1,CMIP5 -2275,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.231924627,-6.7551,-4.1114,-5.39808,-5.5544,1,CMIP5 -2275,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.617865626,20.7649,22.40425,21.69287,21.859,1,CMIP5 -2276,tas,temperature,tgav,rcp45,C,Simulated,global,0.560087841,15.8805,17.32605,16.82455,16.9861,1,CMIP5 -2276,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.551923389,-7.5234,-3.781,-5.586,-5.8628,1,CMIP5 -2276,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.614259267,20.7017,22.2988,21.64992,21.8937,1,CMIP5 -2277,tas,temperature,tgav,rcp45,C,Simulated,global,0.594054494,15.7553,17.30765,16.77703,16.9367,1,CMIP5 -2277,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.298456412,-6.8506,-4.0167,-5.47186,-5.5587,1,CMIP5 -2277,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.691694125,20.4812,22.3061,21.56796,21.8356,1,CMIP5 -2278,tas,temperature,tgav,rcp45,C,Simulated,global,0.574958969,15.9024,17.31315,16.89479,17.1046,1,CMIP5 -2278,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.424773043,-6.7699,-3.7231,-5.35226,-5.7414,1,CMIP5 -2278,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.636001985,20.7013,22.29465,21.68709,21.8608,1,CMIP5 -2279,tas,temperature,tgav,rcp45,C,Simulated,global,0.677807174,15.6483,17.3491,16.81675,16.9743,1,CMIP5 -2279,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.474857174,-6.9488,-3.846,-5.67836,-6.5119,1,CMIP5 -2279,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.698374058,20.5617,22.2306,21.66205,21.8774,1,CMIP5 -2280,tas,temperature,tgav,rcp45,C,Simulated,global,0.668154499,15.7452,17.4789,16.8663,16.9624,1,CMIP5 -2280,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.358446677,-6.7131,-3.6562,-5.39291,-5.9903,1,CMIP5 -2280,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.723870425,20.5645,22.4568,21.65998,21.8306,1,CMIP5 -2281,tas,temperature,tgav,rcp45,C,Simulated,global,0.647892829,15.8778,17.59725,16.94411,17.1722,1,CMIP5 -2281,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.261116252,-6.5138,-3.8886,-5.2825,-5.915,1,CMIP5 -2281,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.678328759,20.7097,22.55355,21.73191,21.7698,1,CMIP5 -2282,tas,temperature,tgav,rcp45,C,Simulated,global,0.443586116,16.1753,17.2319,16.94013,17.1342,1,CMIP5 -2282,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.300507011,-6.61165,-3.8537,-5.27355,-5.3898,1,CMIP5 -2282,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.496127267,20.9566,22.1979,21.7246,21.8246,1,CMIP5 -2283,tas,temperature,tgav,rcp45,C,Simulated,global,0.624219823,15.792,17.2662,16.87592,17.1959,1,CMIP5 -2283,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.31708885,-6.66215,-3.8472,-5.42183,-5.857,1,CMIP5 -2283,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.641038176,20.5921,22.1772,21.67836,21.7826,1,CMIP5 -2284,tas,temperature,tgav,rcp45,C,Simulated,global,0.666635165,15.7876,17.47,16.92664,17.2111,1,CMIP5 -2284,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.310280857,-6.6615,-3.9601,-5.39274,-6.0202,1,CMIP5 -2284,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.683358656,20.6229,22.43785,21.73425,21.8381,1,CMIP5 -2285,tas,temperature,tgav,rcp45,C,Simulated,global,0.666689011,15.6996,17.3415,16.84552,17.1742,1,CMIP5 -2285,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.474172298,-7.1004,-3.7898,-5.59169,-6.2839,1,CMIP5 -2285,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.665689481,20.5739,22.32655,21.67727,21.8314,1,CMIP5 -2286,tas,temperature,tgav,rcp45,C,Simulated,global,0.547798281,15.9183,17.2777,16.85928,17.1188,1,CMIP5 -2286,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.376006432,-6.8082,-3.8295,-5.45273,-5.6778,1,CMIP5 -2286,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.592292898,20.7068,22.28585,21.66385,21.7934,1,CMIP5 -2287,tas,temperature,tgav,rcp45,C,Simulated,global,0.51698781,16.0354,17.30215,16.94039,17.1662,1,CMIP5 -2287,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.276632685,-6.6401,-3.9109,-5.34312,-5.4019,1,CMIP5 -2287,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.584248853,20.7886,22.30105,21.73927,21.9246,1,CMIP5 -2288,tas,temperature,tgav,rcp45,C,Simulated,global,0.533415806,16.0124,17.2911,16.90792,17.1607,1,CMIP5 -2288,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.562212898,-7.1428,-3.6609,-5.531,-5.4571,1,CMIP5 -2288,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.598671134,20.7727,22.3238,21.73868,21.8274,1,CMIP5 -2289,tas,temperature,tgav,rcp45,C,Simulated,global,0.630101366,15.844,17.4024,16.92942,17.2178,1,CMIP5 -2289,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.316635909,-6.6269,-3.738,-5.32028,-5.716,1,CMIP5 -2289,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.666214457,20.6244,22.3703,21.72106,21.8513,1,CMIP5 -2290,tas,temperature,tgav,rcp45,C,Simulated,global,0.588099039,15.9085,17.3859,16.912,17.1694,1,CMIP5 -2290,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.317964341,-6.7773,-3.9399,-5.43006,-5.947,1,CMIP5 -2290,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.607469637,20.7543,22.34745,21.72437,21.8343,1,CMIP5 -2291,tas,temperature,tgav,rcp45,C,Simulated,global,0.525303777,16.0412,17.28425,16.93311,17.1833,1,CMIP5 -2291,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.348534241,-6.6658,-3.6435,-5.29455,-5.6857,1,CMIP5 -2291,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.53585341,20.8586,22.2207,21.72032,21.794,1,CMIP5 -2292,tas,temperature,tgav,rcp45,C,Simulated,global,0.519677455,16.039,17.3367,16.93638,17.1659,1,CMIP5 -2292,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.343497673,-7.0686,-3.8108,-5.40852,-5.5641,1,CMIP5 -2292,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.557641913,20.8291,22.2644,21.74806,21.9716,1,CMIP5 -2293,tas,temperature,tgav,rcp45,C,Simulated,global,0.46986485,16.0904,17.23045,16.87945,17.1071,1,CMIP5 -2293,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.505568147,-7.2573,-3.8908,-5.4304,-5.3231,1,CMIP5 -2293,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.522409387,20.8384,22.21245,21.68331,21.831,1,CMIP5 -2294,tas,temperature,tgav,rcp45,C,Simulated,global,0.561994081,15.8767,17.2196,16.84815,17.13835,1,CMIP5 -2294,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.346536668,-6.8905,-3.9117,-5.53736,-5.814,1,CMIP5 -2294,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.582579207,20.6858,22.115,21.66902,21.8017,1,CMIP5 -2295,tas,temperature,tgav,rcp45,C,Simulated,global,0.506219915,15.9972,17.208,16.87038,17.13,1,CMIP5 -2295,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.360925692,-6.9492,-4.2099,-5.55774,-5.4986,1,CMIP5 -2295,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.558162987,20.7635,22.18115,21.70063,21.8329,1,CMIP5 -2296,tas,temperature,tgav,rcp45,C,Simulated,global,0.523585249,15.9908,17.28305,16.87725,17.1188,1,CMIP5 -2296,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.37066968,-7.0194,-3.9905,-5.48605,-5.6518,1,CMIP5 -2296,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.557661887,20.7896,22.26625,21.69335,21.8032,1,CMIP5 -2297,tas,temperature,tgav,rcp45,C,Simulated,global,0.537941351,16.0164,17.32245,16.92145,17.2047,1,CMIP5 -2297,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.343424459,-6.865,-3.9661,-5.37388,-5.3684,1,CMIP5 -2297,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.597650818,20.7579,22.3092,21.723,21.7903,1,CMIP5 -2298,tas,temperature,tgav,rcp45,C,Simulated,global,0.488093601,16.1829,17.34835,16.96909,17.1494,1,CMIP5 -2298,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.44703608,-7.2563,-3.9106,-5.43652,-5.2678,1,CMIP5 -2298,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.560195823,20.939,22.3351,21.7941,21.8526,1,CMIP5 -2299,tas,temperature,tgav,rcp45,C,Simulated,global,0.461705789,16.2631,17.3562,16.99769,17.1899,1,CMIP5 -2299,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.51214898,-7.0614,-3.4348,-5.33754,-5.3081,1,CMIP5 -2299,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.49767523,21.0463,22.3378,21.8064,21.8231,1,CMIP5 -2300,tas,temperature,tgav,rcp45,C,Simulated,global,0.512766201,16.2109,17.33515,16.9424125,17.1118,1,CMIP5 -2300,tas,temperature,tgav_HL,rcp45,C,Simulated,HL,1.175286538,-6.8484,-4.2995,-5.6396,-5.70525,1,CMIP5 -2300,tas,temperature,tgav_LL,rcp45,C,Simulated,LL,0.577924569,20.9234,22.28405,21.7260125,21.8483,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp60/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp60/ensemble_mean_model.csv deleted file mode 100644 index 97ca0c8cd..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp60/ensemble_mean_model.csv +++ /dev/null @@ -1,1717 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",15.0402 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",15.0919 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",15.0668 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",15.2343 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",15.0462 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",15.0553 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",15.1341 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",15.1177 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",15.1742 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",15.1177 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",15.1216 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",15.0605 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",15.1017000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",15.2313 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",15.1272 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",15.1522000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",15.0775 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",15.0732 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",15.0706 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",15.2599 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",15.4032 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",15.4318 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",15.4755 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",15.4501 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",15.4312 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",15.4587 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",15.4731 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",15.5241 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",15.4498 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",15.6001 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",15.6566 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",15.5555 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",15.5981 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",15.6731 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",15.6937 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",15.7143 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",15.7802 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",15.8089000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",15.8129 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",15.7584 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",15.8387 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",16.01 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",15.7803 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",15.7605 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",15.8455 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",15.9928 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",16.0725 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",16.0663 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",16.0989 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",16.0229 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",16.0437 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",16.0742 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",16.1471 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",16.1678 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",16.0809 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",16.1494 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",16.0832 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",16.0653 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",16.1716 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",16.1808 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",16.188 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",16.1787 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",16.2099 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",16.2807 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",16.2797 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",16.2879 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",16.3778 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",16.2626 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",16.34 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",16.2597 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",16.2929 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",16.3695 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",16.5069 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",16.424 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",16.4027 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",16.5244 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",16.5909 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",16.7013 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",16.5622 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",16.5465 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",16.6373 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",16.7485 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",16.8214 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",16.7603 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",16.7252 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",16.7793 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",16.8221 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",16.7749 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",16.8559 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",16.8904 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",16.7751 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",16.8096 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",16.8501 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",16.8615 -"bcc-csm1-1","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",16.8415 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-10.5741 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-10.0059 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-10.0965 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-9.87799999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-10.4337 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-10.3213 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-10.2567 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-10.5225 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-10.1159 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-10.5224 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-10.2519 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-10.5952 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-10.2606 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-9.97489999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-10.0691 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-10.2845 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-10.4943 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-10.1711 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-10.4048 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-9.77549999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-9.33269999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-9.31549999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-9.0496 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-9.25709999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-9.21279999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-9.56739999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-9.55829999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-9.411 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-9.64079999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-9.38 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-9.08569999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-9.19729999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-9.11689999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-8.9819 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-9.09359999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-9.0145 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-8.88369999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-8.76479999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-8.40959999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-8.78579999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-8.95209999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-8.27979999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-8.8134 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-8.7824 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-9.19839999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-8.65979999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-8.3954 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-8.41019999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-8.48749999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-8.45749999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-8.59609999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-8.60579999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-7.98129999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-8.21909999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-8.27759999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-8.74129999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-8.82649999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-8.98139999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-8.32299999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-8.20759999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-8.40159999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-8.60749999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-8.26159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-8.36309999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-8.34449999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-8.12629999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-8.25039999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-8.23309999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-8.25449999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-8.65170000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-8.1995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-8.43359999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-7.77509999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-8.10209999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-8.30549999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-8.01159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-7.60179999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-7.8229 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-8.07509999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-8.11689999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-7.54469999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-7.30869999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-7.0487 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-7.82459999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-7.34499999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-7.48469999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-7.4572 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-7.3236 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-6.9348 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-7.03499999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-7.34569999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-7.06359999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-7.54839999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-7.53499999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-7.39059999999995 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",20.3882 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",20.3320000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",20.3206 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",20.4775 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",20.3661 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",20.3536 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",20.4354 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",20.4711 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",20.4545 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",20.4711 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",20.4192 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",20.4171 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",20.397 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",20.494 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",20.3879 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",20.4631 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",20.4166 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",20.3439 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",20.3896 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",20.487 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",20.5678 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",20.5988 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",20.5961 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",20.6087 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",20.5766 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",20.6838 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",20.6994 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",20.7302 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",20.6884 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",20.8157 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",20.8225 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",20.7236 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",20.7583 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",20.8208 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",20.869 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",20.8774 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",20.9297 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",20.9396 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",20.8702 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",20.883 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",21.0148 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",21.0814 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",20.9152 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",20.8848 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",21.0743000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",21.14 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",21.1811 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",21.1767 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",21.2322 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",21.1341 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",21.1882 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",21.2271 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",21.1848 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",21.2595 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",21.1667 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",21.3464 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",21.2841 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",21.2948 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",21.2858 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",21.2728 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",21.322 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",21.3538 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",21.3192 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",21.426 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",21.421 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",21.3853 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",21.5199 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",21.377 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",21.475 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",21.4609 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",21.4066 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",21.5481 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",21.5767 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",21.5448 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",21.5615 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",21.6472 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",21.6421 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",21.8216 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",21.7061 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",21.696 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",21.6863 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",21.7713 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",21.8052 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",21.8933 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",21.7508 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",21.8454 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",21.8913 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",21.8064 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",21.8231 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",21.8858 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",21.8113 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",21.794 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",21.9442 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",21.9552 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",21.9009 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",14.0618 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",14.1197 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",14.1457 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",14.1392 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",14.1645 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",14.067 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",14.0761 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",14.0592 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",14.1562 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",14.2687 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",14.3395 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",14.1304 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",14.1263 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",14.1839000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",14.2301 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",14.4053 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",14.1841 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",14.2806 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",14.1498 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",14.0583 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",14.1009 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",14.1533 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",14.2713 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",14.2125 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",14.2891 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",14.2875 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",14.3447 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",14.2719 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",14.2838 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",14.3507 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",14.3736 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",14.3655 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",14.3614 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",14.4074 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",14.4116 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",14.4374 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",14.5999 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",14.4625 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",14.3959 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",14.5201 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",14.7375 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",14.5831 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",14.4829 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",14.5499 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",14.5869 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",14.7457 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",14.464 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",14.484 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",14.4434 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",14.5713 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",14.6817 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",14.7104 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",14.6461 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",14.7271 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",14.7059 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",14.8225 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",14.7801 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",14.7308 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",14.7998 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",14.7957 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",14.8454 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",14.9242 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",14.8977 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",14.8482 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",14.9059 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",14.9125 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",14.9616 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",15.0252 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",15.052 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",15.027 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",14.9661 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",15.1438 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",15.1106 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",15.3763 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",15.1505 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",15.2969000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",15.2164 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",15.1982 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",15.2652 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",15.3226 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",15.3166000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",15.3688 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",15.2767 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",15.2947 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",15.2713 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",15.5653 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",15.3906 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",15.2457 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",15.4365 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",15.7204 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",15.6214000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",15.4102 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",15.5196 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",15.5314 -"GFDL-ESM2G","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",15.5709 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-8.56609999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-8.33689999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-8.80549999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-8.7595 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-8.49279999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-8.78789999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-8.94369999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-8.87189999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-8.70209999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-8.43459999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-8.20909999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-8.601 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-8.61429999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-8.7022 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-8.5127 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-8.07639999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-8.38989999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-8.20909999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-8.53679999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-8.81799999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-9.28129999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-9.13139999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-8.74369999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-8.79749999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-8.71019999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-8.58009999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-8.29999999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-8.46539999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-8.44599999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-8.39269999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-8.52349999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-8.42689999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-8.24169999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-8.36009999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-8.22699999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-8.14689999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-8.17879999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-8.39369999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-8.50959999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-8.45279999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-8.05519999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-8.0659 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-7.97949999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-8.09909999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-8.13189999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-7.99289999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-8.27319999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-8.33139999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-8.49449999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-7.98809999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-7.99709999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-7.94069999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-8.04179999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-7.97229999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-8.01849999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-7.81219999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-7.90879999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-8.15639999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-7.75259999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-7.7337 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-7.81579999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-7.9194 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-7.8023 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-7.64439999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-7.86939999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-7.59629999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-7.4828 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-7.37889999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-7.65159999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-7.56969999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-7.52769999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-7.46439999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-7.47969999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-7.14889999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-7.41829999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-7.27419999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-7.46809999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-7.4905 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-7.28159999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-7.28559999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-7.0204 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-7.29269999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-7.29489999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-7.154 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-7.2638 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-6.78949999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-7.12359999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-7.52209999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-6.92699999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-6.54969999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-6.77719999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-7.1524 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-7.00039999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-6.94739999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-6.86899999999997 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",19.1916000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",19.2106 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",19.3487 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",19.3303 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",19.3009 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",19.2482 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",19.2946 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",19.2577 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",19.3381 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",19.4155 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",19.4513 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",19.2835 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",19.2816 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",19.3722 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",19.3858 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",19.5018 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",19.3016 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",19.379 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",19.2928 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",19.2443 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",19.4016 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",19.4319 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",19.4888 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",19.4289 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",19.503 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",19.4716 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",19.4782 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",19.4264 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",19.4366 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",19.5066 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",19.5643 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",19.5325 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",19.4855 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",19.5688 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",19.5438 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",19.5573 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",19.7638 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",19.644 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",19.5886 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",19.728 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",19.9046 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",19.7177 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",19.5751 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",19.6844 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",19.7373 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",19.9005 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",19.6185 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",19.6563 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",19.6434 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",19.6855 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",19.8229 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",19.8454 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",19.7895 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",19.873 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",19.8575 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",19.9538 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",19.9236 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",19.9193 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",19.9124 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",19.9031 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",19.9826 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",20.1028 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",20.0438 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",19.9472 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",20.069 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",20.0152 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",20.0497 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",20.1042 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",20.1989 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",20.1496 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",20.0654 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",20.269 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",20.2318 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",20.4827 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",20.2668 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",20.4138 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",20.3589 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",20.3416 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",20.3765 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",20.4479 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",20.3804 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",20.5062 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",20.3937 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",20.3838 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",20.3799 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",20.6331 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",20.4946 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",20.4071 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",20.5063 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",20.769 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",20.6991 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",20.5251 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",20.6248000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",20.6273 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",20.658 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2005,"Simulated","C","global",12.395375 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",14.334325 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",14.3964 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",14.44195 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",14.477175 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",14.453825 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",14.447725 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",14.58405 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",14.627325 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",14.699975 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",14.666475 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",14.65015 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",14.652325 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",14.63205 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",14.630575 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",14.68845 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",14.741875 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",14.73635 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",14.749525 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",14.75415 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",14.81385 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",14.9031 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",14.954975 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",15.025925 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",14.9924 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",14.937525 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",14.9695 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",15.0213 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",15.0449 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",15.083975 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",15.0979 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",15.11205 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",15.180625 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",15.20205 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",15.246725 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",15.3157 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",15.379575 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",15.41755 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",15.3933 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",15.481525 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",15.45555 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",15.50485 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",15.54255 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",15.504925 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",15.5341 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",15.60055 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",15.682575 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",15.7247 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",15.752175 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",15.8041 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",15.82415 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",15.7753666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",15.8401666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",15.9791666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",15.9429666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",15.9718 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",15.9673666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",15.9494333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",16.0445333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",16.1707333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",16.1432333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",16.1708666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",16.1923666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",16.3444666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",16.4393333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",16.4232666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",16.4023 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",16.4235666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",16.3855 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",16.4950333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",16.4905666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",16.5953 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",16.64 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",16.6803666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",16.6978333333334 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",16.3837 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",16.838925 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",16.856525 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",16.7896 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",16.740975 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",16.798175 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",16.8845 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",16.9436666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",16.9765 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",17.0665666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",17.1802333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",17.1535 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",17.1324 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",17.2580666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",17.2831 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",17.3457666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",17.3297666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",17.2633 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",17.2772333333333 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",17.3910666666667 -"HadGEM2-ES","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",17.4030333333333 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2005,"Simulated","C","HL",-11.078525 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-8.40069999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-8.11374999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-8.24837499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-8.03934999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-8.03344999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-8.08414999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-7.89779999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-7.95762499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-7.92287499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-7.83214999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-7.81624999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-7.58219999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-7.90122499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-7.87692499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-7.71064999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-7.80554999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-7.93144999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-7.83199999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-7.74912499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-7.55247499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-7.37322499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-7.49077499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-7.38384999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-7.29984999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-7.31399999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-7.34589999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-7.29102499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-7.21899999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-7.17619999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-7.15572499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-7.18074999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-7.03392499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-7.06624999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-6.93442499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-6.83722499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-6.66079999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-6.66034999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-6.63949999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-6.64339999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-6.61189999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-6.52619999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-6.51802499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-6.49537499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-6.52077499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-6.51539999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-6.32149999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-6.14894999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-6.25864999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-5.94164999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-6.079375 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-6.15346666666664 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-6.19556666666665 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-6.02669999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-5.88936666666664 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-5.69499999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-5.73809999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-5.93476666666663 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-5.78019999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-5.73046666666666 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-5.62903333333331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-5.57263333333331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-5.56883333333331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-5.26249999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-5.18349999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-5.17873333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-5.22333333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-5.17239999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-5.23283333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-5.1931 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-5.22079999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-4.97983333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-5.0158333333333 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-4.9166333333333 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-4.89919999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-5.11509999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-4.68839999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-4.64479999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-4.55829999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-4.68372499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-4.62449999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-4.56444999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-4.49489999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-4.4416333333333 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-4.25533333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-4.05613333333332 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-4.06716666666665 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-4.23113333333331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-4.05056666666665 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-3.8976333333333 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-3.86769999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-3.90183333333331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-4.03926666666664 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-4.05626666666666 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-3.92219999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-3.7285333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2005,"Simulated","C","LL",17.801 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",19.5706 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",19.580875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",19.667925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",19.663125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",19.633075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",19.637175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",19.762025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",19.829075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",19.910425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",19.848275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",19.824575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",19.773275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",19.8218 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",19.814425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",19.847325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",19.934925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",19.9571 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",19.950475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",19.937 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",19.96515 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",20.03365 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",20.124575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",20.1873 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",20.126625 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",20.06235 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",20.1091 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",20.1602 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",20.172675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",20.21085 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",20.22325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",20.246425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",20.29695 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",20.330725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",20.3554 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",20.4179 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",20.45585 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",20.5024 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",20.467825 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",20.577225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",20.538 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",20.5789 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",20.623425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",20.57195 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",20.613675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",20.69415 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",20.75045 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",20.762525 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",20.821575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",20.812475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",20.868875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",20.8258666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",20.9153 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",21.0474333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",20.9712333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",20.9619666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",20.9664333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",20.9897333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",21.0711 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",21.2149333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",21.1576666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",21.1786333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",21.2041666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",21.3208333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",21.4192666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",21.3985333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",21.3829333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",21.3974333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",21.3644666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",21.4900333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",21.4909666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",21.5642666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",21.6276 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",21.6544333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",21.6719 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",21.3349 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",21.796925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",21.808575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",21.7063 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",21.67535 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",21.7321 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",21.824425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",21.8812 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",21.9093333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",21.9773 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",22.0712333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",22.0408 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",22.0527 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",22.1656666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",22.1611666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",22.2314666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",22.2196666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",22.1695666666667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",22.1906 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",22.2997333333333 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",22.2698333333333 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",13.429 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",13.4088 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",13.343 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",13.4265 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",13.473 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",13.428 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",13.4774 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",13.6922 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",13.727 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",13.7234 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",13.7423 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",13.8132 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",13.917 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",13.7787 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",13.7917 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",13.8403 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",13.896 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",13.8617 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",13.9451 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",14.0926 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",14.0022 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",13.9471 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",14.0007 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",14.0207 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",14.044 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",14.0236 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",14.2392 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",14.0527 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",14.1067 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",14.2301 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",14.0598 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",14.1826 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",14.3323 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",14.1864 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",14.1965 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",14.2347 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",14.2391 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",14.4399 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",14.5095 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",14.6848 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",14.7205 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",14.6103 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",14.4623 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",14.5658 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",14.5778 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",14.6416 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",14.6768 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",14.7582 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",14.6833 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",14.6089 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",14.7931 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",14.7415 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",14.966 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",14.8203 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",14.9036 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",14.7081 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",15.0065 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",14.8767 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",14.934 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",14.7933 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",14.9872 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",14.8883 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",15.1211 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",14.9904 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",15.2189 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",15.2517 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",15.0362 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",15.1491 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",15.0676 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",15.0799 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",15.1187 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",15.1723 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",15.2712 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",15.4312 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",15.5277 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",15.3102 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",15.5272000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",15.4232 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",15.447 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",15.464 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",15.486 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",15.5572 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",15.6464 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",15.8567 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",15.9191 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",16.0228 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",15.8174 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",15.5329 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",15.5937 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",15.7759 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",15.7648 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",15.8585 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",16.0582 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",15.9869 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",15.916 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-8.68919999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-9.0437 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-9.04179999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-8.80079999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-9.07799999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-8.96689999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-8.37419999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-8.12119999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-8.375 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-8.49639999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-8.6909 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-8.24519999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-7.87009999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-8.32779999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-8.12289999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-8.39209999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-8.43119999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-8.39589999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-8.32259999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-7.83239999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-8.06629999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-8.44959999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-8.1823 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-8.048 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-8.08159999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-7.93029999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-7.89789999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-8.14029999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-8.21199999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-7.7586 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-7.88129999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-7.92399999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-7.76329999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-8.11689999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-8.05419999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-8.19259999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-7.88999999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-7.74979999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-7.43449999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-6.88549999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-6.97449999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-7.76130000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-7.94129999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-7.21549999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-7.32069999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-7.2269 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-6.9819 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-7.05439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-7.57279999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-7.58150000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-7.10909999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-7.15659999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-6.61559999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-6.51919999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-6.71569999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-7.08459999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-6.49559999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-7.16039999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-7.02069999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-6.90249999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-6.50619999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-7.26669999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-6.72319999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-6.61439999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-6.36989999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-6.3546 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-6.89549999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-6.5172 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-6.75789999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-6.72399999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-6.99689999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-7.00199999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-6.6875 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-6.6053 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-6.30959999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-6.66909999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-5.9982 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-6.601 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-6.60849999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-6.43739999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-6.1712 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-6.21420000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-6.28129999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-5.72319999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-5.42169999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-5.80219999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-5.98649999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-6.3913 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-6.07319999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-6.12629999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-6.0643 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-5.99309999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-5.47139999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-5.91199999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-5.72669999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",18.3333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",18.3872 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",18.3063 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",18.3548 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",18.4732 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",18.3936 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",18.3225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",18.5289 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",18.6276 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",18.6502 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",18.7164 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",18.7042 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",18.7479 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",18.6804 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",18.6508 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",18.7699 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",18.8466 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",18.797 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",18.8822 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",18.954 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",18.8953 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",18.9129 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",18.9193 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",18.9139 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",18.95 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",18.8915 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",19.1477 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",18.9734 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",19.0555 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",19.1058 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",18.9246 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",19.0843 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",19.2316 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",19.1317 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",19.1301 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",19.2073 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",19.1456 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",19.3599 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",19.3751 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",19.4676 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",19.5309 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",19.5707 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",19.4298 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",19.3955 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",19.4335 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",19.4905 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",19.4792 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",19.5947 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",19.6183 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",19.5291 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",19.6495 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",19.5968 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",19.7512 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",19.552 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",19.6972 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",19.5402 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",19.7742 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",19.7629 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",19.802 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",19.6039 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",19.7529 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",19.8004 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",19.9645 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",19.7807 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",20.0056 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",20.0423 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",19.8991 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",19.953 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",19.9067 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",19.9143 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",20.0222 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",20.0889 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",20.14 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",20.3172 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",20.3696 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",20.1835 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",20.3 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",20.3065 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",20.3373 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",20.3201 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",20.2879 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",20.3845 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",20.5084 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",20.6415 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",20.6509 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",20.8619 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",20.6519 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",20.3941 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",20.3978 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",20.6321 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",20.6048 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",20.7034 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",20.8317 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",20.8424 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",20.7146 -"MIROC-ESM","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",14.1874 -"MIROC-ESM","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",14.1828 -"MIROC-ESM","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",14.3402 -"MIROC-ESM","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",14.3406 -"MIROC-ESM","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",14.4861 -"MIROC-ESM","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",14.4221 -"MIROC-ESM","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",14.3661 -"MIROC-ESM","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",14.3068 -"MIROC-ESM","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",14.3885 -"MIROC-ESM","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",14.3542 -"MIROC-ESM","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",14.6441 -"MIROC-ESM","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",14.8425 -"MIROC-ESM","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",14.7261 -"MIROC-ESM","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",14.628 -"MIROC-ESM","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",14.7591 -"MIROC-ESM","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",14.7638 -"MIROC-ESM","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",14.6213 -"MIROC-ESM","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",14.7106 -"MIROC-ESM","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",14.7233 -"MIROC-ESM","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",14.6971 -"MIROC-ESM","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",14.8187 -"MIROC-ESM","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",14.8839 -"MIROC-ESM","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",14.9754 -"MIROC-ESM","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",15.0673 -"MIROC-ESM","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",15.1024 -"MIROC-ESM","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",15.0204 -"MIROC-ESM","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",15.0262 -"MIROC-ESM","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",14.9593 -"MIROC-ESM","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",14.9819 -"MIROC-ESM","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",15.0423 -"MIROC-ESM","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",15.1385 -"MIROC-ESM","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",15.1895 -"MIROC-ESM","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",15.1813 -"MIROC-ESM","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",15.1961 -"MIROC-ESM","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",15.2083 -"MIROC-ESM","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",15.2872 -"MIROC-ESM","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",15.4676 -"MIROC-ESM","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",15.5113 -"MIROC-ESM","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",15.5121 -"MIROC-ESM","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",15.442 -"MIROC-ESM","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",15.5038 -"MIROC-ESM","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",15.546 -"MIROC-ESM","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",15.5366 -"MIROC-ESM","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",15.5562 -"MIROC-ESM","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",15.5849 -"MIROC-ESM","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",15.6049 -"MIROC-ESM","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",15.598 -"MIROC-ESM","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",15.7381 -"MIROC-ESM","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",15.7548 -"MIROC-ESM","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",15.8417 -"MIROC-ESM","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",15.8986 -"MIROC-ESM","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",15.7195 -"MIROC-ESM","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",15.777 -"MIROC-ESM","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",15.8938 -"MIROC-ESM","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",15.9472 -"MIROC-ESM","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",16.0119 -"MIROC-ESM","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",15.9521 -"MIROC-ESM","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",15.9435 -"MIROC-ESM","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",15.9491 -"MIROC-ESM","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",16.0227 -"MIROC-ESM","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",16.0154 -"MIROC-ESM","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",16.0646 -"MIROC-ESM","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",16.1549 -"MIROC-ESM","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",16.2046 -"MIROC-ESM","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",16.1829 -"MIROC-ESM","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",16.391 -"MIROC-ESM","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",16.4507 -"MIROC-ESM","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",16.4146 -"MIROC-ESM","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",16.356 -"MIROC-ESM","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",16.4787 -"MIROC-ESM","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",16.3716 -"MIROC-ESM","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",16.3841 -"MIROC-ESM","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",16.5936 -"MIROC-ESM","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",16.8169 -"MIROC-ESM","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",16.7357 -"MIROC-ESM","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",16.8383 -"MIROC-ESM","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",16.7573 -"MIROC-ESM","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",16.899 -"MIROC-ESM","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",16.962 -"MIROC-ESM","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",16.8756 -"MIROC-ESM","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",16.9782 -"MIROC-ESM","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",17.022 -"MIROC-ESM","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",16.9343 -"MIROC-ESM","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",16.8765 -"MIROC-ESM","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",16.8508 -"MIROC-ESM","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",17.0268 -"MIROC-ESM","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",17.1418 -"MIROC-ESM","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",17.0143 -"MIROC-ESM","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",17.0534 -"MIROC-ESM","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",17.2413 -"MIROC-ESM","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",17.2019 -"MIROC-ESM","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",17.2229 -"MIROC-ESM","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",17.3508 -"MIROC-ESM","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",17.2873 -"MIROC-ESM","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",17.266 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-9.22669999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-8.976 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-8.84139999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-8.67140000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-8.5804 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-8.6087 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-8.46839999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-8.67759999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-8.46199999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-8.79849999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-8.39179999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-7.9622 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-8.17599999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-8.25379999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-8.02629999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-7.95929999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-8.08629999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-8.0754 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-8.24349999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-7.87139999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-7.94639999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-7.85229999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-7.40589999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-7.34739999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-7.23059999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-7.31999999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-7.5367 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-7.39329999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-7.49879999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-7.39249999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-7.24169999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-7.35919999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-7.1798 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-7.23909999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-7.1037 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-6.89909999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-6.99119999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-6.60169999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-6.73359999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-6.96129999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-6.60179999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-6.51829999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-6.60769999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-6.68429999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-6.47979999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-6.70609999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-6.68449999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-6.66129999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-6.5736 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-6.45529999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-6.24379999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-6.37709999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-6.12219999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-6.02969999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-5.87899999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-5.99439999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-6.10019999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-5.97469999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-6.12829999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-6.03739999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-6.00389999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-5.90469999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-5.74609999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-5.68329999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-5.65379999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-5.22229999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-5.34289999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-5.40729999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-5.5598 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-5.5487 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-5.3415 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-5.34719999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-4.84289999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-4.67509999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-4.8415 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-4.8793 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-4.93059999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-4.464 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-4.56359999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-4.59949999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-4.28659999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-4.47379999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-4.5849 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-4.51769999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-4.89259999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-4.5034 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-4.34809999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-4.74899999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-4.66489999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-4.06449999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-4.2996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-4.02109999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-3.97919999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-3.82909999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-3.93099999999998 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",19.076 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",19.018 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",19.1803 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",19.1452 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",19.3021 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",19.2307 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",19.1337 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",19.1057 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",19.1594 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",19.1882 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",19.4537 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",19.6039 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",19.5078 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",19.4055 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",19.5164 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",19.5081 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",19.3624 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",19.4681 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",19.5186 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",19.4091 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",19.5718 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",19.631 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",19.6484 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",19.7473 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",19.7653 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",19.6848 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",19.7371 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",19.6263 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",19.6757 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",19.7264 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",19.8113 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",19.8974 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",19.85 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",19.8803 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",19.8668 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",19.9194 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",20.1567 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",20.1282 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",20.1567 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",20.1195 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",20.1193 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",20.1528 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",20.1601 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",20.1997 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",20.1917 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",20.2632 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",20.2503 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",20.4148 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",20.4167 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",20.497 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",20.5217 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",20.333 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",20.3493 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",20.4711 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",20.5042 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",20.6065 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",20.5564 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",20.5197 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",20.5586 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",20.6286 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",20.6128 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",20.6515 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",20.7275 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",20.7746 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",20.7421000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",20.9036 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",21.001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",20.9708 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",20.9318 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",21.0778 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",20.905 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",20.9213 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",21.0693 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",21.3042 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",21.2408 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",21.3726 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",21.2855 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",21.3594000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",21.4563 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",21.3594000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",21.418 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",21.5101 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",21.4273 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",21.3434 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",21.3906 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",21.522 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",21.6287 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",21.5583 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",21.5879 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",21.6897 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",21.6912 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",21.6584 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",21.8043 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",21.6962 -"MIROC-ESM","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",21.6917 -"NorESM1-ME","tas","temperature","tgav","rcp60",2006,"Simulated","C","global",13.5479 -"NorESM1-ME","tas","temperature","tgav","rcp60",2007,"Simulated","C","global",13.5754 -"NorESM1-ME","tas","temperature","tgav","rcp60",2008,"Simulated","C","global",13.6732 -"NorESM1-ME","tas","temperature","tgav","rcp60",2009,"Simulated","C","global",13.5485 -"NorESM1-ME","tas","temperature","tgav","rcp60",2010,"Simulated","C","global",13.5542 -"NorESM1-ME","tas","temperature","tgav","rcp60",2011,"Simulated","C","global",13.6853 -"NorESM1-ME","tas","temperature","tgav","rcp60",2012,"Simulated","C","global",13.6582 -"NorESM1-ME","tas","temperature","tgav","rcp60",2013,"Simulated","C","global",13.6046 -"NorESM1-ME","tas","temperature","tgav","rcp60",2014,"Simulated","C","global",13.753 -"NorESM1-ME","tas","temperature","tgav","rcp60",2015,"Simulated","C","global",13.794 -"NorESM1-ME","tas","temperature","tgav","rcp60",2016,"Simulated","C","global",13.6729 -"NorESM1-ME","tas","temperature","tgav","rcp60",2017,"Simulated","C","global",13.6876 -"NorESM1-ME","tas","temperature","tgav","rcp60",2018,"Simulated","C","global",13.9682 -"NorESM1-ME","tas","temperature","tgav","rcp60",2019,"Simulated","C","global",13.86 -"NorESM1-ME","tas","temperature","tgav","rcp60",2020,"Simulated","C","global",13.7844 -"NorESM1-ME","tas","temperature","tgav","rcp60",2021,"Simulated","C","global",13.6861 -"NorESM1-ME","tas","temperature","tgav","rcp60",2022,"Simulated","C","global",13.5495 -"NorESM1-ME","tas","temperature","tgav","rcp60",2023,"Simulated","C","global",13.6774 -"NorESM1-ME","tas","temperature","tgav","rcp60",2024,"Simulated","C","global",13.7437 -"NorESM1-ME","tas","temperature","tgav","rcp60",2025,"Simulated","C","global",13.7797 -"NorESM1-ME","tas","temperature","tgav","rcp60",2026,"Simulated","C","global",13.8197 -"NorESM1-ME","tas","temperature","tgav","rcp60",2027,"Simulated","C","global",13.9123 -"NorESM1-ME","tas","temperature","tgav","rcp60",2028,"Simulated","C","global",13.8625 -"NorESM1-ME","tas","temperature","tgav","rcp60",2029,"Simulated","C","global",13.8264 -"NorESM1-ME","tas","temperature","tgav","rcp60",2030,"Simulated","C","global",13.841 -"NorESM1-ME","tas","temperature","tgav","rcp60",2031,"Simulated","C","global",14.0479 -"NorESM1-ME","tas","temperature","tgav","rcp60",2032,"Simulated","C","global",14.105 -"NorESM1-ME","tas","temperature","tgav","rcp60",2033,"Simulated","C","global",14.1264 -"NorESM1-ME","tas","temperature","tgav","rcp60",2034,"Simulated","C","global",14.3352 -"NorESM1-ME","tas","temperature","tgav","rcp60",2035,"Simulated","C","global",14.2124 -"NorESM1-ME","tas","temperature","tgav","rcp60",2036,"Simulated","C","global",13.9198 -"NorESM1-ME","tas","temperature","tgav","rcp60",2037,"Simulated","C","global",14.0251 -"NorESM1-ME","tas","temperature","tgav","rcp60",2038,"Simulated","C","global",14.1402 -"NorESM1-ME","tas","temperature","tgav","rcp60",2039,"Simulated","C","global",14.1493 -"NorESM1-ME","tas","temperature","tgav","rcp60",2040,"Simulated","C","global",14.1898 -"NorESM1-ME","tas","temperature","tgav","rcp60",2041,"Simulated","C","global",14.3087 -"NorESM1-ME","tas","temperature","tgav","rcp60",2042,"Simulated","C","global",14.0994 -"NorESM1-ME","tas","temperature","tgav","rcp60",2043,"Simulated","C","global",14.1273 -"NorESM1-ME","tas","temperature","tgav","rcp60",2044,"Simulated","C","global",14.0686 -"NorESM1-ME","tas","temperature","tgav","rcp60",2045,"Simulated","C","global",14.1696 -"NorESM1-ME","tas","temperature","tgav","rcp60",2046,"Simulated","C","global",14.0624 -"NorESM1-ME","tas","temperature","tgav","rcp60",2047,"Simulated","C","global",14.2445 -"NorESM1-ME","tas","temperature","tgav","rcp60",2048,"Simulated","C","global",14.3904 -"NorESM1-ME","tas","temperature","tgav","rcp60",2049,"Simulated","C","global",14.2981 -"NorESM1-ME","tas","temperature","tgav","rcp60",2050,"Simulated","C","global",14.2664 -"NorESM1-ME","tas","temperature","tgav","rcp60",2051,"Simulated","C","global",14.365 -"NorESM1-ME","tas","temperature","tgav","rcp60",2052,"Simulated","C","global",14.3344 -"NorESM1-ME","tas","temperature","tgav","rcp60",2053,"Simulated","C","global",14.2974 -"NorESM1-ME","tas","temperature","tgav","rcp60",2054,"Simulated","C","global",14.3895 -"NorESM1-ME","tas","temperature","tgav","rcp60",2055,"Simulated","C","global",14.4547 -"NorESM1-ME","tas","temperature","tgav","rcp60",2056,"Simulated","C","global",14.3144 -"NorESM1-ME","tas","temperature","tgav","rcp60",2057,"Simulated","C","global",14.2869 -"NorESM1-ME","tas","temperature","tgav","rcp60",2058,"Simulated","C","global",14.4098 -"NorESM1-ME","tas","temperature","tgav","rcp60",2059,"Simulated","C","global",14.4758 -"NorESM1-ME","tas","temperature","tgav","rcp60",2060,"Simulated","C","global",14.4276 -"NorESM1-ME","tas","temperature","tgav","rcp60",2061,"Simulated","C","global",14.4488 -"NorESM1-ME","tas","temperature","tgav","rcp60",2062,"Simulated","C","global",14.4143 -"NorESM1-ME","tas","temperature","tgav","rcp60",2063,"Simulated","C","global",14.4913 -"NorESM1-ME","tas","temperature","tgav","rcp60",2064,"Simulated","C","global",14.5243 -"NorESM1-ME","tas","temperature","tgav","rcp60",2065,"Simulated","C","global",14.5549 -"NorESM1-ME","tas","temperature","tgav","rcp60",2066,"Simulated","C","global",14.7129 -"NorESM1-ME","tas","temperature","tgav","rcp60",2067,"Simulated","C","global",14.7137 -"NorESM1-ME","tas","temperature","tgav","rcp60",2068,"Simulated","C","global",14.6511 -"NorESM1-ME","tas","temperature","tgav","rcp60",2069,"Simulated","C","global",14.7079 -"NorESM1-ME","tas","temperature","tgav","rcp60",2070,"Simulated","C","global",14.7099 -"NorESM1-ME","tas","temperature","tgav","rcp60",2071,"Simulated","C","global",14.9575 -"NorESM1-ME","tas","temperature","tgav","rcp60",2072,"Simulated","C","global",14.8926 -"NorESM1-ME","tas","temperature","tgav","rcp60",2073,"Simulated","C","global",14.8033 -"NorESM1-ME","tas","temperature","tgav","rcp60",2074,"Simulated","C","global",14.8229 -"NorESM1-ME","tas","temperature","tgav","rcp60",2075,"Simulated","C","global",14.8538 -"NorESM1-ME","tas","temperature","tgav","rcp60",2076,"Simulated","C","global",14.9079 -"NorESM1-ME","tas","temperature","tgav","rcp60",2077,"Simulated","C","global",15.0304 -"NorESM1-ME","tas","temperature","tgav","rcp60",2078,"Simulated","C","global",15.2509 -"NorESM1-ME","tas","temperature","tgav","rcp60",2079,"Simulated","C","global",15.131 -"NorESM1-ME","tas","temperature","tgav","rcp60",2080,"Simulated","C","global",15.1058 -"NorESM1-ME","tas","temperature","tgav","rcp60",2081,"Simulated","C","global",15.0426 -"NorESM1-ME","tas","temperature","tgav","rcp60",2082,"Simulated","C","global",14.9848 -"NorESM1-ME","tas","temperature","tgav","rcp60",2083,"Simulated","C","global",15.0822 -"NorESM1-ME","tas","temperature","tgav","rcp60",2084,"Simulated","C","global",15.1327 -"NorESM1-ME","tas","temperature","tgav","rcp60",2085,"Simulated","C","global",15.2684 -"NorESM1-ME","tas","temperature","tgav","rcp60",2086,"Simulated","C","global",15.1311 -"NorESM1-ME","tas","temperature","tgav","rcp60",2087,"Simulated","C","global",15.1877 -"NorESM1-ME","tas","temperature","tgav","rcp60",2088,"Simulated","C","global",15.1993000000001 -"NorESM1-ME","tas","temperature","tgav","rcp60",2089,"Simulated","C","global",15.1438 -"NorESM1-ME","tas","temperature","tgav","rcp60",2090,"Simulated","C","global",15.3058 -"NorESM1-ME","tas","temperature","tgav","rcp60",2091,"Simulated","C","global",15.1954 -"NorESM1-ME","tas","temperature","tgav","rcp60",2092,"Simulated","C","global",15.2031 -"NorESM1-ME","tas","temperature","tgav","rcp60",2093,"Simulated","C","global",15.3342 -"NorESM1-ME","tas","temperature","tgav","rcp60",2094,"Simulated","C","global",15.5013 -"NorESM1-ME","tas","temperature","tgav","rcp60",2095,"Simulated","C","global",15.4775 -"NorESM1-ME","tas","temperature","tgav","rcp60",2096,"Simulated","C","global",15.4041 -"NorESM1-ME","tas","temperature","tgav","rcp60",2097,"Simulated","C","global",15.3872 -"NorESM1-ME","tas","temperature","tgav","rcp60",2098,"Simulated","C","global",15.3573 -"NorESM1-ME","tas","temperature","tgav","rcp60",2099,"Simulated","C","global",15.4655 -"NorESM1-ME","tas","temperature","tgav","rcp60",2100,"Simulated","C","global",15.5245 -"NorESM1-ME","tas","temperature","tgav","rcp60",2101,"Simulated","C","global",15.6171000000001 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2006,"Simulated","C","HL",-11.3482 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2007,"Simulated","C","HL",-11.2931 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2008,"Simulated","C","HL",-11.1168 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2009,"Simulated","C","HL",-11.6551 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2010,"Simulated","C","HL",-11.7083 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2011,"Simulated","C","HL",-11.1071 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2012,"Simulated","C","HL",-11.0317 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2013,"Simulated","C","HL",-11.1807 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2014,"Simulated","C","HL",-10.9456 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2015,"Simulated","C","HL",-10.5445 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2016,"Simulated","C","HL",-10.9205 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2017,"Simulated","C","HL",-11.0165 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2018,"Simulated","C","HL",-10.5568 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2019,"Simulated","C","HL",-10.8982999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2020,"Simulated","C","HL",-11.1693 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2021,"Simulated","C","HL",-11.1491 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2022,"Simulated","C","HL",-11.3506 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2023,"Simulated","C","HL",-11.0822 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2024,"Simulated","C","HL",-11.3280999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2025,"Simulated","C","HL",-10.9147 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2026,"Simulated","C","HL",-10.9162 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2027,"Simulated","C","HL",-10.8646 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2028,"Simulated","C","HL",-10.6208 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2029,"Simulated","C","HL",-10.7631 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2030,"Simulated","C","HL",-10.9772 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2031,"Simulated","C","HL",-10.6161 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2032,"Simulated","C","HL",-10.3003 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2033,"Simulated","C","HL",-10.5533 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2034,"Simulated","C","HL",-10.1288 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2035,"Simulated","C","HL",-10.0779 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2036,"Simulated","C","HL",-10.7047 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2037,"Simulated","C","HL",-10.3937 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2038,"Simulated","C","HL",-10.3966 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2039,"Simulated","C","HL",-10.1525999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2040,"Simulated","C","HL",-10.1255 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2041,"Simulated","C","HL",-9.94229999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2042,"Simulated","C","HL",-10.4136 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2043,"Simulated","C","HL",-10.2337 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2044,"Simulated","C","HL",-10.5639 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2045,"Simulated","C","HL",-10.4909 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2046,"Simulated","C","HL",-10.5052 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2047,"Simulated","C","HL",-10.3083 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2048,"Simulated","C","HL",-9.90119999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2049,"Simulated","C","HL",-9.97289999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2050,"Simulated","C","HL",-10.0334 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2051,"Simulated","C","HL",-10.0428 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2052,"Simulated","C","HL",-10.1371 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2053,"Simulated","C","HL",-10.2994 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2054,"Simulated","C","HL",-10.1125 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2055,"Simulated","C","HL",-9.8768 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2056,"Simulated","C","HL",-10.1471 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2057,"Simulated","C","HL",-10.3666 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2058,"Simulated","C","HL",-9.94739999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2059,"Simulated","C","HL",-9.87989999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2060,"Simulated","C","HL",-10.0624 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2061,"Simulated","C","HL",-9.90569999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2062,"Simulated","C","HL",-10.0757 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2063,"Simulated","C","HL",-9.84299999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2064,"Simulated","C","HL",-9.77079999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2065,"Simulated","C","HL",-9.86839999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2066,"Simulated","C","HL",-9.75409999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2067,"Simulated","C","HL",-9.36179999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2068,"Simulated","C","HL",-9.61899999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2069,"Simulated","C","HL",-9.68219999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2070,"Simulated","C","HL",-9.93859999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2071,"Simulated","C","HL",-9.2072 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2072,"Simulated","C","HL",-9.19889999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2073,"Simulated","C","HL",-9.5523 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2074,"Simulated","C","HL",-9.43519999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2075,"Simulated","C","HL",-9.45419999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2076,"Simulated","C","HL",-9.49519999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2077,"Simulated","C","HL",-9.53899999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2078,"Simulated","C","HL",-8.64349999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2079,"Simulated","C","HL",-8.9205 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2080,"Simulated","C","HL",-8.87819999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2081,"Simulated","C","HL",-8.89179999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2082,"Simulated","C","HL",-9.10239999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2083,"Simulated","C","HL",-9.15449999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2084,"Simulated","C","HL",-8.98809999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2085,"Simulated","C","HL",-8.60909999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2086,"Simulated","C","HL",-8.91499999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2087,"Simulated","C","HL",-8.87649999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2088,"Simulated","C","HL",-8.67129999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2089,"Simulated","C","HL",-9.09739999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2090,"Simulated","C","HL",-8.43489999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2091,"Simulated","C","HL",-8.60299999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2092,"Simulated","C","HL",-8.73859999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2093,"Simulated","C","HL",-8.31389999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2094,"Simulated","C","HL",-8.05579999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2095,"Simulated","C","HL",-8.40949999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2096,"Simulated","C","HL",-8.5865 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2097,"Simulated","C","HL",-8.34719999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2098,"Simulated","C","HL",-8.52069999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2099,"Simulated","C","HL",-8.44139999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2100,"Simulated","C","HL",-8.11469999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp60",2101,"Simulated","C","HL",-8.05239999999998 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2006,"Simulated","C","LL",19.0673 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2007,"Simulated","C","LL",19.0888 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2008,"Simulated","C","LL",19.1692 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2009,"Simulated","C","LL",19.1361 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2010,"Simulated","C","LL",19.1548 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2011,"Simulated","C","LL",19.182 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2012,"Simulated","C","LL",19.1321 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2013,"Simulated","C","LL",19.0993 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2014,"Simulated","C","LL",19.2288 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2015,"Simulated","C","LL",19.1899 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2016,"Simulated","C","LL",19.1252 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2017,"Simulated","C","LL",19.1647 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2018,"Simulated","C","LL",19.4054 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2019,"Simulated","C","LL",19.3491 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2020,"Simulated","C","LL",19.3167 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2021,"Simulated","C","LL",19.1922 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2022,"Simulated","C","LL",19.0699 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2023,"Simulated","C","LL",19.1668 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2024,"Simulated","C","LL",19.3021 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2025,"Simulated","C","LL",19.2545 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2026,"Simulated","C","LL",19.3036 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2027,"Simulated","C","LL",19.4053 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2028,"Simulated","C","LL",19.2903 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2029,"Simulated","C","LL",19.2779 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2030,"Simulated","C","LL",19.3432 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2031,"Simulated","C","LL",19.5158 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2032,"Simulated","C","LL",19.5156 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2033,"Simulated","C","LL",19.5981 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2034,"Simulated","C","LL",19.7589 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2035,"Simulated","C","LL",19.5977 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2036,"Simulated","C","LL",19.379 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2037,"Simulated","C","LL",19.4386 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2038,"Simulated","C","LL",19.58 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2039,"Simulated","C","LL",19.5372 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2040,"Simulated","C","LL",19.5805 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2041,"Simulated","C","LL",19.6853 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2042,"Simulated","C","LL",19.5339 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2043,"Simulated","C","LL",19.5282 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2044,"Simulated","C","LL",19.5295 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2045,"Simulated","C","LL",19.6369 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2046,"Simulated","C","LL",19.5092 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2047,"Simulated","C","LL",19.6877 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2048,"Simulated","C","LL",19.7759 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2049,"Simulated","C","LL",19.6791 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2050,"Simulated","C","LL",19.6535 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2051,"Simulated","C","LL",19.7756 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2052,"Simulated","C","LL",19.7592 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2053,"Simulated","C","LL",19.7499 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2054,"Simulated","C","LL",19.8212 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2055,"Simulated","C","LL",19.8484 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2056,"Simulated","C","LL",19.737 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2057,"Simulated","C","LL",19.7519 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2058,"Simulated","C","LL",19.8092 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2059,"Simulated","C","LL",19.8749 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2060,"Simulated","C","LL",19.8564 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2061,"Simulated","C","LL",19.8476 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2062,"Simulated","C","LL",19.8431 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2063,"Simulated","C","LL",19.8856 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2064,"Simulated","C","LL",19.91 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2065,"Simulated","C","LL",19.9690000000001 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2066,"Simulated","C","LL",20.1368000000001 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2067,"Simulated","C","LL",20.0507 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2068,"Simulated","C","LL",20.0312 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2069,"Simulated","C","LL",20.1146 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2070,"Simulated","C","LL",20.1739 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2071,"Simulated","C","LL",20.3144 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2072,"Simulated","C","LL",20.2332 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2073,"Simulated","C","LL",20.2023 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2074,"Simulated","C","LL",20.2003 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2075,"Simulated","C","LL",20.2423 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2076,"Simulated","C","LL",20.3177 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2077,"Simulated","C","LL",20.4771 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2078,"Simulated","C","LL",20.548 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2079,"Simulated","C","LL",20.4628 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2080,"Simulated","C","LL",20.4228 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2081,"Simulated","C","LL",20.3485 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2082,"Simulated","C","LL",20.3245 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2083,"Simulated","C","LL",20.4549 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2084,"Simulated","C","LL",20.4799 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2085,"Simulated","C","LL",20.5617 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2086,"Simulated","C","LL",20.4616 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2087,"Simulated","C","LL",20.5222 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2088,"Simulated","C","LL",20.4909 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2089,"Simulated","C","LL",20.5177 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2090,"Simulated","C","LL",20.5687 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2091,"Simulated","C","LL",20.4712 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2092,"Simulated","C","LL",20.5108 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2093,"Simulated","C","LL",20.5766 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2094,"Simulated","C","LL",20.7235 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2095,"Simulated","C","LL",20.7728 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2096,"Simulated","C","LL",20.7223 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2097,"Simulated","C","LL",20.6486 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2098,"Simulated","C","LL",20.6507 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2099,"Simulated","C","LL",20.7653 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2100,"Simulated","C","LL",20.765 -"NorESM1-ME","tas","temperature","tgav_LL","rcp60",2101,"Simulated","C","LL",20.8644 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp60/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp60/summary.csv deleted file mode 100644 index cdcbd90bf..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp60/summary.csv +++ /dev/null @@ -1,286 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,tas,temperature,tgav,rcp60,C,Simulated,global,0.583615899,13.429,15.0402,14.10010417,14.1246,1,CMIP5 -2006,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.214571182,-11.3482,-8.4007,-9.4675,-8.95795,1,CMIP5 -2006,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.678675206,18.3333,20.3882,19.27116667,19.1338,1,CMIP5 -2007,tas,temperature,tgav,rcp60,C,Simulated,global,0.604453627,13.4088,15.0919,14.12916667,14.15125,1,CMIP5 -2007,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.181186032,-11.2931,-8.11375,-9.294891667,-9.00985,1,CMIP5 -2007,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.648642867,18.3872,20.332,19.26957917,19.1497,1,CMIP5 -2008,tas,temperature,tgav,rcp60,C,Simulated,global,0.60638121,13.343,15.0668,14.168475,14.24295,1,CMIP5 -2008,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.052819134,-11.1168,-8.248375,-9.358395833,-8.9416,1,CMIP5 -2008,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.662122572,18.3063,20.3206,19.33217083,19.2645,1,CMIP5 -2009,tas,temperature,tgav,rcp60,C,Simulated,global,0.66221332,13.4265,15.2343,14.19437917,14.2399,1,CMIP5 -2009,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.296633673,-11.6551,-8.03935,-9.300691667,-8.78015,1,CMIP5 -2009,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.699686025,18.3548,20.4775,19.35117083,19.23775,1,CMIP5 -2010,tas,temperature,tgav,rcp60,C,Simulated,global,0.601514707,13.473,15.0462,14.19630417,14.3091625,1,CMIP5 -2010,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.404406407,-11.7083,-8.03345,-9.387775,-8.8292,1,CMIP5 -2010,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.619895622,18.4732,20.3661,19.37169583,19.3015,1,CMIP5 -2011,tas,temperature,tgav,rcp60,C,Simulated,global,0.586401318,13.428,15.0553,14.1842375,14.24455,1,CMIP5 -2011,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.152136198,-11.1071,-8.08415,-9.312675,-8.8774,1,CMIP5 -2011,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.641358557,18.3936,20.3536,19.34087917,19.23945,1,CMIP5 -2012,tas,temperature,tgav,rcp60,C,Simulated,global,0.612721998,13.4774,15.1341,14.21599167,14.2211,1,CMIP5 -2012,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.219976432,-11.0317,-7.8978,-9.162083333,-8.70605,1,CMIP5 -2012,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.707231893,18.3225,20.4354,19.34672083,19.21415,1,CMIP5 -2013,tas,temperature,tgav,rcp60,C,Simulated,global,0.576398176,13.6046,15.1177,14.2346375,14.183,1,CMIP5 -2013,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.323416189,-11.1807,-7.957625,-9.221920833,-8.77475,1,CMIP5 -2013,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.676092588,18.5289,20.4711,19.3819625,19.1817,1,CMIP5 -2014,tas,temperature,tgav,rcp60,C,Simulated,global,0.56189411,13.727,15.1742,14.31647917,14.27235,1,CMIP5 -2014,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.175919456,-10.9456,-7.922875,-9.087245833,-8.58205,1,CMIP5 -2014,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.639248549,18.6276,20.4545,19.4531375,19.28345,1,CMIP5 -2015,tas,temperature,tgav,rcp60,C,Simulated,global,0.527783245,13.7234,15.1177,14.32074583,14.31145,1,CMIP5 -2015,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.150226252,-10.5445,-7.83215,-9.104758333,-8.64745,1,CMIP5 -2015,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.628914071,18.6502,20.4711,19.46052917,19.3027,1,CMIP5 -2016,tas,temperature,tgav,rcp60,C,Simulated,global,0.565507877,13.6729,15.1216,14.36175833,14.4918,1,CMIP5 -2016,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.243760594,-10.9205,-7.81625,-9.046741667,-8.54135,1,CMIP5 -2016,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.584684789,18.7164,20.4192,19.49839583,19.4525,1,CMIP5 -2017,tas,temperature,tgav,rcp60,C,Simulated,global,0.567920999,13.6876,15.0605,14.36442083,14.3913625,1,CMIP5 -2017,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.444094466,-11.0165,-7.5822,-9.000383333,-8.4231,1,CMIP5 -2017,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.586288137,18.7042,20.4171,19.4911125,19.4437,1,CMIP5 -2018,tas,temperature,tgav,rcp60,C,Simulated,global,0.478826641,13.917,15.1017,14.41189167,14.379175,1,CMIP5 -2018,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.2050055,-10.5568,-7.8701,-8.896504167,-8.39515,1,CMIP5 -2018,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.552481704,18.7479,20.397,19.52691667,19.4566,1,CMIP5 -2019,tas,temperature,tgav,rcp60,C,Simulated,global,0.551224936,13.7787,15.2313,14.3854125,14.40595,1,CMIP5 -2019,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.175791704,-10.8983,-7.876925,-9.005654167,-8.515,1,CMIP5 -2019,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.600741034,18.6804,20.494,19.51927083,19.38885,1,CMIP5 -2020,tas,temperature,tgav,rcp60,C,Simulated,global,0.551139516,13.7844,15.1272,14.396825,14.459275,1,CMIP5 -2020,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.37411,-11.1693,-7.71065,-8.935158333,-8.3178,1,CMIP5 -2020,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.578829218,18.6508,20.3879,19.5174875,19.4511,1,CMIP5 -2021,tas,temperature,tgav,rcp60,C,Simulated,global,0.57131242,13.6861,15.1522,14.43159583,14.5735875,1,CMIP5 -2021,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.412970677,-11.1491,-7.80555,-8.944491667,-8.23425,1,CMIP5 -2021,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.586814675,18.7699,20.4631,19.56167083,19.50495,1,CMIP5 -2022,tas,temperature,tgav,rcp60,C,Simulated,global,0.570325912,13.5495,15.0775,14.344125,14.4027,1,CMIP5 -2022,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.438939615,-11.3506,-7.93145,-9.113958333,-8.41055,1,CMIP5 -2022,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.58633783,18.8466,20.4166,19.49236667,19.332,1,CMIP5 -2023,tas,temperature,tgav,rcp60,C,Simulated,global,0.547292346,13.6774,15.0732,14.39217083,14.4956,1,CMIP5 -2023,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.334724797,-11.0822,-7.832,-8.96095,-8.3025,1,CMIP5 -2023,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.553920147,18.797,20.3439,19.51754583,19.42355,1,CMIP5 -2024,tas,temperature,tgav,rcp60,C,Simulated,global,0.525334847,13.7437,15.0706,14.397775,14.43655,1,CMIP5 -2024,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.42456276,-11.3281,-7.749125,-9.0974875,-8.4297,1,CMIP5 -2024,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.534633207,18.8822,20.3896,19.55371667,19.41035,1,CMIP5 -2025,tas,temperature,tgav,rcp60,C,Simulated,global,0.562111845,13.7797,15.2599,14.45024167,14.39485,1,CMIP5 -2025,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.325031045,-10.9147,-7.552475,-8.794079167,-8.3447,1,CMIP5 -2025,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.566767531,18.954,20.487,19.55234167,19.3318,1,CMIP5 -2026,tas,temperature,tgav,rcp60,C,Simulated,global,0.624394502,13.8197,15.4032,14.50796667,14.4598,1,CMIP5 -2026,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.287952598,-10.9162,-7.373225,-8.819354167,-8.6738,1,CMIP5 -2026,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.590638722,18.8953,20.5678,19.62895833,19.4867,1,CMIP5 -2027,tas,temperature,tgav,rcp60,C,Simulated,global,0.629371071,13.9123,15.4318,14.54722917,14.5186,1,CMIP5 -2027,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.213070857,-10.8646,-7.490775,-8.850695833,-8.7905,1,CMIP5 -2027,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.594911362,18.9129,20.5988,19.68407917,19.53145,1,CMIP5 -2028,tas,temperature,tgav,rcp60,C,Simulated,global,0.648062739,13.8625,15.4755,14.6018875,14.62335,1,CMIP5 -2028,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.21475672,-10.6208,-7.38385,-8.564358333,-8.463,1,CMIP5 -2028,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.610615931,18.9193,20.5961,19.68836667,19.5686,1,CMIP5 -2029,tas,temperature,tgav,rcp60,C,Simulated,global,0.660160996,13.8264,15.4501,14.5949,14.60245,1,CMIP5 -2029,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.320047431,-10.7631,-7.29985,-8.585491667,-8.42275,1,CMIP5 -2029,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.612868832,18.9139,20.6087,19.6838875,19.5881,1,CMIP5 -2030,tas,temperature,tgav,rcp60,C,Simulated,global,0.638554188,13.841,15.4312,14.6075375,14.6133125,1,CMIP5 -2030,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.402543105,-10.9772,-7.2306,-8.587733333,-8.3959,1,CMIP5 -2030,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.571420052,18.95,20.5766,19.700075,19.63415,1,CMIP5 -2031,tas,temperature,tgav,rcp60,C,Simulated,global,0.596348348,14.0236,15.4587,14.6346,14.6285,1,CMIP5 -2031,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.315368152,-10.6161,-7.32,-8.559966667,-8.2552,1,CMIP5 -2031,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.611741364,18.8915,20.6838,19.7261,19.6003,1,CMIP5 -2032,tas,temperature,tgav,rcp60,C,Simulated,global,0.547705839,14.105,15.4731,14.70158333,14.683,1,CMIP5 -2032,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.195904416,-10.3003,-7.291025,-8.480704167,-8.09895,1,CMIP5 -2032,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.557120841,19.1477,20.6994,19.7897,19.62635,1,CMIP5 -2033,tas,temperature,tgav,rcp60,C,Simulated,global,0.59808011,14.0527,15.5241,14.66321667,14.6156,1,CMIP5 -2033,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.267813089,-10.5533,-7.219,-8.530383333,-8.30285,1,CMIP5 -2033,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.614088567,18.9734,20.7302,19.7545125,19.6122,1,CMIP5 -2034,tas,temperature,tgav,rcp60,C,Simulated,global,0.537982436,14.1067,15.4498,14.70689583,14.65855,1,CMIP5 -2034,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.165621508,-10.1288,-7.1762,-8.5171,-8.329,1,CMIP5 -2034,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.576440727,19.0555,20.6884,19.804325,19.7173,1,CMIP5 -2035,tas,temperature,tgav,rcp60,C,Simulated,global,0.574056953,14.2124,15.6001,14.75558333,14.6965,1,CMIP5 -2035,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.161091304,-10.0779,-7.155725,-8.359570833,-8.07565,1,CMIP5 -2035,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.603323471,19.1058,20.8157,19.82924167,19.66205,1,CMIP5 -2036,tas,temperature,tgav,rcp60,C,Simulated,global,0.693058299,13.9198,15.6566,14.71005833,14.742825,1,CMIP5 -2036,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.333151358,-10.7047,-7.18075,-8.436275,-8.2024,1,CMIP5 -2036,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.669865862,18.9246,20.8225,19.79135417,19.6878,1,CMIP5 -2037,tas,temperature,tgav,rcp60,C,Simulated,global,0.636033204,14.0251,15.5555,14.74980417,14.7730625,1,CMIP5 -2037,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.247922154,-10.3937,-7.033925,-8.389170833,-8.17545,1,CMIP5 -2037,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.603136361,19.0843,20.7236,19.82889167,19.71495,1,CMIP5 -2038,tas,temperature,tgav,rcp60,C,Simulated,global,0.598399118,14.1402,15.5981,14.80255833,14.77135,1,CMIP5 -2038,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.275247474,-10.3966,-7.06625,-8.294091667,-8.0025,1,CMIP5 -2038,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.572921616,19.2316,20.7583,19.8726875,19.715,1,CMIP5 -2039,tas,temperature,tgav,rcp60,C,Simulated,global,0.643775053,14.1493,15.6731,14.8098375,14.80175,1,CMIP5 -2039,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.176819315,-10.1526,-6.934425,-8.297504167,-8.2385,1,CMIP5 -2039,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.614066194,19.1317,20.8208,19.88236667,19.72455,1,CMIP5 -2040,tas,temperature,tgav,rcp60,C,Simulated,global,0.649772067,14.1898,15.6937,14.83593333,14.80995,1,CMIP5 -2040,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.231047439,-10.1255,-6.837225,-8.240204167,-8.1406,1,CMIP5 -2040,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.637177748,19.1301,20.869,19.90135,19.72365,1,CMIP5 -2041,tas,temperature,tgav,rcp60,C,Simulated,global,0.640158855,14.2347,15.7143,14.89364583,14.8623,1,CMIP5 -2041,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.244481548,-9.9423,-6.6608,-8.1427,-8.16975,1,CMIP5 -2041,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.615267898,19.2073,20.8774,19.950425,19.80235,1,CMIP5 -2042,tas,temperature,tgav,rcp60,C,Simulated,global,0.710727792,14.0994,15.7802,14.93395833,15.008725,1,CMIP5 -2042,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.363099243,-10.4136,-6.66035,-8.169608333,-8.0344,1,CMIP5 -2042,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.654854185,19.1456,20.9297,20.00535,19.96025,1,CMIP5 -2043,tas,temperature,tgav,rcp60,C,Simulated,global,0.696227592,14.1273,15.8089,14.9572,14.9279,1,CMIP5 -2043,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.383738696,-10.2337,-6.6017,-8.063866667,-8.07175,1,CMIP5 -2043,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.612607286,19.3599,20.9396,20.0112875,19.8861,1,CMIP5 -2044,tas,temperature,tgav,rcp60,C,Simulated,global,0.723867937,14.0686,15.8129,14.96342083,14.9955125,1,CMIP5 -2044,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.4663223,-10.5639,-6.6434,-8.0491,-7.92205,1,CMIP5 -2044,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.615553923,19.3751,20.8702,20.01622083,19.87265,1,CMIP5 -2045,tas,temperature,tgav,rcp60,C,Simulated,global,0.632000797,14.1696,15.7584,15.005075,15.0634,1,CMIP5 -2045,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.501267373,-10.4909,-6.6119,-8.031366667,-7.70705,1,CMIP5 -2045,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.556686708,19.4676,20.883,20.06216667,19.92375,1,CMIP5 -2046,tas,temperature,tgav,rcp60,C,Simulated,global,0.665685497,14.0624,15.8387,15.06129167,15.12065,1,CMIP5 -2046,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.570959214,-10.5052,-6.5262,-7.935833333,-7.51485,1,CMIP5 -2046,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.596174885,19.5092,21.0148,20.10961667,20.01195,1,CMIP5 -2047,tas,temperature,tgav,rcp60,C,Simulated,global,0.701578984,14.2445,16.01,15.08940833,15.076425,1,CMIP5 -2047,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.400672912,-10.3083,-6.518025,-7.908604167,-7.9136,1,CMIP5 -2047,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.604500792,19.5707,21.0814,20.13895417,19.93525,1,CMIP5 -2048,tas,temperature,tgav,rcp60,C,Simulated,global,0.64432171,14.3904,15.7803,15.0262375,14.9939125,1,CMIP5 -2048,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.301617717,-9.9012,-6.495375,-7.9564125,-7.9604,1,CMIP5 -2048,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.585781685,19.4298,20.9152,20.07134167,19.968,1,CMIP5 -2049,tas,temperature,tgav,rcp60,C,Simulated,global,0.639546073,14.2981,15.7605,15.0441,15.04995,1,CMIP5 -2049,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.338753757,-9.9729,-6.520775,-7.8791625,-7.6573,1,CMIP5 -2049,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.588644838,19.3955,20.8848,20.07619583,19.94205,1,CMIP5 -2050,tas,temperature,tgav,rcp60,C,Simulated,global,0.67366613,14.2664,15.8455,15.07700833,15.0859,1,CMIP5 -2050,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.452422808,-10.0334,-6.4798,-7.9466,-7.7263,1,CMIP5 -2050,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.645003735,19.4335,21.0743,20.13074167,19.9645,1,CMIP5 -2051,tas,temperature,tgav,rcp60,C,Simulated,global,0.668746092,14.365,15.9928,15.17209583,15.1753,1,CMIP5 -2051,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.379412292,-10.0428,-6.3215,-7.825,-7.6099,1,CMIP5 -2051,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.626320252,19.4905,21.14,20.22004167,20.08185,1,CMIP5 -2052,tas,temperature,tgav,rcp60,C,Simulated,global,0.740481183,14.3344,16.0725,15.14506667,15.1374,1,CMIP5 -2052,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.461144249,-10.1371,-6.14895,-7.770175,-7.62755,1,CMIP5 -2052,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.682614436,19.4792,21.1811,20.1751375,20.00475,1,CMIP5 -2053,tas,temperature,tgav,rcp60,C,Simulated,global,0.757054546,14.2974,16.0663,15.18269583,15.24815,1,CMIP5 -2053,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.491463574,-10.2994,-6.25865,-7.835891667,-7.6929,1,CMIP5 -2053,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.669834952,19.5947,21.1767,20.2356625,20.08235,1,CMIP5 -2054,tas,temperature,tgav,rcp60,C,Simulated,global,0.771619219,14.3895,16.0989,15.19566667,15.21905,1,CMIP5 -2054,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.502490833,-10.1125,-5.94165,-7.863758333,-8.03015,1,CMIP5 -2054,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.672225414,19.6183,21.2322,20.25737917,20.11895,1,CMIP5 -2055,tas,temperature,tgav,rcp60,C,Simulated,global,0.745129961,14.4547,16.0229,15.22060833,15.216525,1,CMIP5 -2055,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.383873223,-9.8768,-6.079375,-7.7397625,-7.7848,1,CMIP5 -2055,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.667027244,19.5291,21.1341,20.26049583,20.1727,1,CMIP5 -2056,tas,temperature,tgav,rcp60,C,Simulated,global,0.739420555,14.3144,16.0437,15.25114444,15.28423333,1,CMIP5 -2056,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.532360641,-10.1471,-6.153466667,-7.707777778,-7.5531,1,CMIP5 -2056,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.645264043,19.6495,21.1882,20.29086111,20.1723,1,CMIP5 -2057,tas,temperature,tgav,rcp60,C,Simulated,global,0.737920363,14.2869,16.0742,15.22877778,15.2305,1,CMIP5 -2057,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.566219563,-10.3666,-6.195566667,-7.773727778,-7.54865,1,CMIP5 -2057,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.669017808,19.5968,21.2271,20.27825,20.0892,1,CMIP5 -2058,tas,temperature,tgav,rcp60,C,Simulated,global,0.73964328,14.4098,16.1471,15.32086111,15.3715,1,CMIP5 -2058,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.506941844,-9.9474,-6.0267,-7.455833333,-7.29845,1,CMIP5 -2058,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.654790856,19.7512,21.1848,20.32190556,20.07925,1,CMIP5 -2059,tas,temperature,tgav,rcp60,C,Simulated,global,0.741359195,14.4758,16.1678,15.33796111,15.35705,1,CMIP5 -2059,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.554470913,-9.8799,-5.889366667,-7.418261111,-7.24575,1,CMIP5 -2059,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.680621765,19.552,21.2595,20.33362222,20.173,1,CMIP5 -2060,tas,temperature,tgav,rcp60,C,Simulated,global,0.740512784,14.4276,16.0809,15.3395,15.4254,1,CMIP5 -2060,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.668506101,-10.0624,-5.695,-7.441366667,-7.3671,1,CMIP5 -2060,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.628824537,19.6972,21.1667,20.34066111,20.18085,1,CMIP5 -2061,tas,temperature,tgav,rcp60,C,Simulated,global,0.769511017,14.4488,16.1494,15.35134444,15.39493333,1,CMIP5 -2061,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.60976045,-9.9057,-5.7381,-7.54605,-7.4484,1,CMIP5 -2061,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.707026862,19.5402,21.3464,20.37682222,20.28015,1,CMIP5 -2062,tas,temperature,tgav,rcp60,C,Simulated,global,0.717846438,14.4143,16.0832,15.36427222,15.47796667,1,CMIP5 -2062,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.670911149,-10.0757,-5.934766667,-7.556927778,-7.2022,1,CMIP5 -2062,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.645361992,19.7742,21.2841,20.39518889,20.24,1,CMIP5 -2063,tas,temperature,tgav,rcp60,C,Simulated,global,0.733567602,14.4913,16.0653,15.35868889,15.4101,1,CMIP5 -2063,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.635897532,-9.843,-5.7802,-7.64935,-7.6584,1,CMIP5 -2063,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.658250916,19.7629,21.2948,20.4089,20.2195,1,CMIP5 -2064,tas,temperature,tgav,rcp60,C,Simulated,global,0.752519378,14.5243,16.1716,15.42492222,15.44155,1,CMIP5 -2064,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.491823123,-9.7708,-5.730466667,-7.454311111,-7.38665,1,CMIP5 -2064,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.677635929,19.802,21.2858,20.44728889,20.2355,1,CMIP5 -2065,tas,temperature,tgav,rcp60,C,Simulated,global,0.774065636,14.5549,16.1808,15.41510556,15.4092,1,CMIP5 -2065,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.555442308,-9.8684,-5.629033333,-7.396438889,-7.3181,1,CMIP5 -2065,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.700214524,19.6039,21.2728,20.42251111,20.2988,1,CMIP5 -2066,tas,temperature,tgav,rcp60,C,Simulated,global,0.706959936,14.7129,16.188,15.48662778,15.5013,1,CMIP5 -2066,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.599074472,-9.7541,-5.572633333,-7.342372222,-7.161,1,CMIP5 -2066,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.649105928,19.7529,21.322,20.49762222,20.3748,1,CMIP5 -2067,tas,temperature,tgav,rcp60,C,Simulated,global,0.718683006,14.7137,16.19236667,15.49364444,15.4944,1,CMIP5 -2067,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.494966161,-9.3618,-5.568833333,-7.438155556,-7.59305,1,CMIP5 -2067,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.646901501,19.8004,21.3538,20.52722778,20.37715,1,CMIP5 -2068,tas,temperature,tgav,rcp60,C,Simulated,global,0.754847859,14.6511,16.34446667,15.56319444,15.638,1,CMIP5 -2068,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.638823228,-9.619,-5.2625,-7.235783333,-7.26275,1,CMIP5 -2068,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.645546542,19.9645,21.32083333,20.56783889,20.38565,1,CMIP5 -2069,tas,temperature,tgav,rcp60,C,Simulated,global,0.807869313,14.7079,16.43933333,15.57852222,15.5975,1,CMIP5 -2069,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.698296039,-9.6822,-5.1835,-7.19515,-7.1294,1,CMIP5 -2069,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.736724557,19.7807,21.426,20.57706111,20.4446,1,CMIP5 -2070,tas,temperature,tgav,rcp60,C,Simulated,global,0.761104436,14.7099,16.42326667,15.62009444,15.7009,1,CMIP5 -2070,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.812138253,-9.9386,-5.178733333,-7.225822222,-7.11965,1,CMIP5 -2070,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.654425416,20.0056,21.421,20.63502222,20.458,1,CMIP5 -2071,tas,temperature,tgav,rcp60,C,Simulated,global,0.733316669,14.9125,16.4023,15.70048333,15.7698,1,CMIP5 -2071,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.625854429,-9.2072,-5.2223,-6.955005556,-6.97545,1,CMIP5 -2071,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.636179974,20.0152,21.3853,20.67395556,20.609,1,CMIP5 -2072,tas,temperature,tgav,rcp60,C,Simulated,global,0.797962421,14.8926,16.4507,15.69041111,15.707,1,CMIP5 -2072,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.594313827,-9.1989,-5.1724,-7.05715,-7.18915,1,CMIP5 -2072,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.711312566,19.8991,21.5199,20.68338889,20.6171,1,CMIP5 -2073,tas,temperature,tgav,rcp60,C,Simulated,global,0.755744431,14.8033,16.4146,15.67338333,15.70585,1,CMIP5 -2073,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.676529865,-9.5523,-5.232833333,-7.053605556,-6.94805,1,CMIP5 -2073,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.651949044,19.953,21.377,20.66196111,20.58655,1,CMIP5 -2074,tas,temperature,tgav,rcp60,C,Simulated,global,0.782357446,14.8229,16.49503333,15.68892222,15.7038,1,CMIP5 -2074,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.625128642,-9.4352,-5.1931,-7.142016667,-7.20475,1,CMIP5 -2074,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.694065394,19.9067,21.49003333,20.70045556,20.56605,1,CMIP5 -2075,tas,temperature,tgav,rcp60,C,Simulated,global,0.787162383,14.8538,16.49056667,15.69827778,15.6698,1,CMIP5 -2075,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.68499079,-9.4542,-5.2208,-7.19485,-7.14685,1,CMIP5 -2075,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.703421244,19.9143,21.49096667,20.72264444,20.66005,1,CMIP5 -2076,tas,temperature,tgav,rcp60,C,Simulated,global,0.788368061,14.9079,16.5953,15.70875,15.7058,1,CMIP5 -2076,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.716174917,-9.4952,-4.979833333,-7.090105556,-7.2623,1,CMIP5 -2076,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.677561911,20.0222,21.56426667,20.71352778,20.61135,1,CMIP5 -2077,tas,temperature,tgav,rcp60,C,Simulated,global,0.746645156,15.0304,16.64,15.79001667,15.7709,1,CMIP5 -2077,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.748076482,-9.539,-5.015833333,-7.133672222,-7.2332,1,CMIP5 -2077,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.655480538,20.0889,21.6276,20.822,20.6992,1,CMIP5 -2078,tas,temperature,tgav,rcp60,C,Simulated,global,0.761343896,15.1106,16.68036667,15.90226111,15.88905,1,CMIP5 -2078,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.559924189,-8.6435,-4.8429,-6.724222222,-7.0836,1,CMIP5 -2078,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.663078316,20.14,21.65443333,20.87003889,20.80865,1,CMIP5 -2079,tas,temperature,tgav,rcp60,C,Simulated,global,0.748232204,15.131,16.8169,15.97953889,15.9276,1,CMIP5 -2079,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.699781128,-8.9205,-4.6751,-6.725183333,-6.8771,1,CMIP5 -2079,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.609161462,20.3172,21.6719,20.96393333,20.89345,1,CMIP5 -2080,tas,temperature,tgav,rcp60,C,Simulated,global,0.709183913,15.1058,16.7357,15.88435,15.9557,1,CMIP5 -2080,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.666257339,-8.8782,-4.8415,-6.811366667,-6.86395,1,CMIP5 -2080,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.573749477,20.2668,21.5615,20.86606667,20.8318,1,CMIP5 -2081,tas,temperature,tgav,rcp60,C,Simulated,global,0.844350848,15.0426,16.838925,15.97522083,15.9173,1,CMIP5 -2081,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.685749926,-8.8918,-4.6884,-6.735733333,-6.97165,1,CMIP5 -2081,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.723621992,20.1835,21.796925,20.96042083,20.8932,1,CMIP5 -2082,tas,temperature,tgav,rcp60,C,Simulated,global,0.839494567,14.9848,16.856525,15.98885417,16.05905,1,CMIP5 -2082,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.731330439,-9.1024,-4.6448,-6.624316667,-6.73315,1,CMIP5 -2082,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.705946073,20.3,21.808575,20.9532625,20.8222,1,CMIP5 -2083,tas,temperature,tgav,rcp60,C,Simulated,global,0.86486671,15.0822,16.899,16.01558333,16.06225,1,CMIP5 -2083,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.871083531,-9.1545,-4.464,-6.681866667,-7.04575,1,CMIP5 -2083,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.709169338,20.3065,21.8216,20.99838333,20.90715,1,CMIP5 -2084,tas,temperature,tgav,rcp60,C,Simulated,global,0.822980766,15.1327,16.962,16.01834583,16.0046,1,CMIP5 -2084,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.794575281,-8.9881,-4.5636,-6.700104167,-6.94505,1,CMIP5 -2084,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.67248007,20.3373,21.7061,21.00524167,20.9681,1,CMIP5 -2085,tas,temperature,tgav,rcp60,C,Simulated,global,0.770869233,15.2684,16.8756,16.04587917,16.00525,1,CMIP5 -2085,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.716838191,-8.6091,-4.5995,-6.612166667,-6.8615,1,CMIP5 -2085,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.649068683,20.3201,21.7321,21.01953333,20.96055,1,CMIP5 -2086,tas,temperature,tgav,rcp60,C,Simulated,global,0.848555981,15.1311,16.9782,16.07228333,16.06165,1,CMIP5 -2086,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.783634836,-8.915,-4.2866,-6.417058333,-6.5958,1,CMIP5 -2086,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.707912507,20.2879,21.824425,21.00977083,20.9398,1,CMIP5 -2087,tas,temperature,tgav,rcp60,C,Simulated,global,0.852681933,15.1877,17.022,16.13797778,16.15285,1,CMIP5 -2087,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.738881204,-8.8765,-4.4738,-6.443466667,-6.75345,1,CMIP5 -2087,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.696762604,20.3845,21.8812,21.09591667,21.01615,1,CMIP5 -2088,tas,temperature,tgav,rcp60,C,Simulated,global,0.856593196,15.1993,16.9765,16.14243333,16.2339,1,CMIP5 -2088,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.644587734,-8.6713,-4.441633333,-6.387122222,-6.665,1,CMIP5 -2088,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.704073583,20.3937,21.90933333,21.08913889,20.96785,1,CMIP5 -2089,tas,temperature,tgav,rcp60,C,Simulated,global,0.844836669,15.1438,17.06656667,16.16642778,16.3085,1,CMIP5 -2089,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.921964126,-9.0974,-4.255333333,-6.428705556,-6.4386,1,CMIP5 -2089,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.709415753,20.3838,21.9773,21.12616667,20.99245,1,CMIP5 -2090,tas,temperature,tgav,rcp60,C,Simulated,global,0.82471292,15.2713,17.18023333,16.20873889,16.32215,1,CMIP5 -2090,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.693578531,-8.4349,-4.056133333,-6.235688889,-6.34275,1,CMIP5 -2090,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.699470887,20.3799,22.07123333,21.13535556,21.02075,1,CMIP5 -2091,tas,temperature,tgav,rcp60,C,Simulated,global,0.815187643,15.1954,17.1535,16.29051667,16.40105,1,CMIP5 -2091,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.752577054,-8.603,-4.067166667,-6.208327778,-6.29585,1,CMIP5 -2091,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.661655081,20.4712,22.0408,21.22906667,21.19195,1,CMIP5 -2092,tas,temperature,tgav,rcp60,C,Simulated,global,0.885769385,15.2031,17.1418,16.25123333,16.31975,1,CMIP5 -2092,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.797297747,-8.7386,-4.231133333,-6.314188889,-6.55505,1,CMIP5 -2092,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.729606206,20.4946,22.0527,21.205,21.1403,1,CMIP5 -2093,tas,temperature,tgav,rcp60,C,Simulated,global,0.918493803,15.2457,17.25806667,16.19334444,16.1539,1,CMIP5 -2093,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.674542525,-8.3139,-4.050566667,-6.391744444,-6.85745,1,CMIP5 -2093,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.785010865,20.3941,22.16566667,21.15136111,21.06745,1,CMIP5 -2094,tas,temperature,tgav,rcp60,C,Simulated,global,0.863084052,15.4365,17.2831,16.28731667,16.2248,1,CMIP5 -2094,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.556679794,-8.0558,-3.897633333,-6.092222222,-6.5001,1,CMIP5 -2094,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.750247713,20.3978,22.16116667,21.19996111,21.1557,1,CMIP5 -2095,tas,temperature,tgav,rcp60,C,Simulated,global,0.841983089,15.4775,17.34576667,16.40854444,16.33315,1,CMIP5 -2095,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.75996805,-8.4095,-3.8677,-6.008783333,-6.338,1,CMIP5 -2095,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.687487746,20.6321,22.23146667,21.33014444,21.23125,1,CMIP5 -2096,tas,temperature,tgav,rcp60,C,Simulated,global,0.852575946,15.4041,17.32976667,16.34951111,16.26995,1,CMIP5 -2096,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.802456532,-8.5865,-3.901833333,-6.162522222,-6.42075,1,CMIP5 -2096,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.698273401,20.6048,22.21966667,21.29139444,21.20675,1,CMIP5 -2097,tas,temperature,tgav,rcp60,C,Simulated,global,0.878113672,15.3872,17.2633,16.32528333,16.33405,1,CMIP5 -2097,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.770073838,-8.3472,-4.0211,-6.102777778,-6.52835,1,CMIP5 -2097,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.706294952,20.5251,22.16956667,21.24984444,21.1809,1,CMIP5 -2098,tas,temperature,tgav,rcp60,C,Simulated,global,0.878097315,15.3573,17.3508,16.40220556,16.45415,1,CMIP5 -2098,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.888812042,-8.5207,-3.9792,-6.096061111,-6.2359,1,CMIP5 -2098,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.714025251,20.6248,22.1906,21.34105,21.318,1,CMIP5 -2099,tas,temperature,tgav,rcp60,C,Simulated,global,0.869293459,15.4655,17.39106667,16.42061111,16.4242,1,CMIP5 -2099,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.907594382,-8.4414,-3.8291,-6.09785,-6.4297,1,CMIP5 -2099,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.708336859,20.6273,22.29973333,21.36435556,21.2693,1,CMIP5 -2100,tas,temperature,tgav,rcp60,C,Simulated,global,0.85283518,15.5245,17.40303333,16.42032222,16.37875,1,CMIP5 -2100,tas,temperature,tgav_HL,rcp60,C,Simulated,HL,1.825724118,-8.1147,-3.728533333,-5.960088889,-6.29785,1,CMIP5 -2100,tas,temperature,tgav_LL,rcp60,C,Simulated,LL,0.705620247,20.658,22.26983333,21.33333889,21.22835,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp85/ensemble_mean_model.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp85/ensemble_mean_model.csv deleted file mode 100644 index d9db0491f..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp85/ensemble_mean_model.csv +++ /dev/null @@ -1,4366 +0,0 @@ -"model","variable","ctag","vtag","scenario","year","type","units","latbox","value" -"bcc-csm1-1","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",15.0207 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",15.1295 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",15.2107 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",15.1682 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",15.1788 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",15.1829 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",15.0633 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",15.1302 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",15.0699 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",15.1419 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",15.1301 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",15.234 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",15.3001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",15.4094 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",15.4027 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",15.2229 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",15.1982 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",15.4587 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",15.4038 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",15.3169 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",15.4259 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",15.505 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",15.5431 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",15.4973 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",15.5519 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",15.4626 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",15.5768 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",15.622 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",15.8002 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",15.8312 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",15.7476 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",15.8308 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",15.9371 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",16.022 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",16.0009 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",15.9748 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",16.0355 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",15.965 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",16.0023 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",16.0852 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",16.177 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",16.1292 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",16.2138 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",16.2575000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",16.3322 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",16.2954 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",16.308 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",16.4819 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",16.5267 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",16.5932 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",16.4923 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",16.548 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",16.6783 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",16.7757 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",16.845 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",16.8088 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",16.9386 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",17.1183 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",17.1428 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",17.1581 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",17.3146 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",17.3423 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",17.1956 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",17.2298 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",17.2833 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",17.3135 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",17.4182 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",17.3958 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",17.2765 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",17.3577 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",17.5382 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",17.5261 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",17.5057 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",17.6221 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",17.6297 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",17.7189 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",17.6915 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",17.7115 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",17.8155 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",17.8282 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",17.792 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",17.9318 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",18.0138 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",18.1653 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",18.1344 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",18.2759 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",18.2706 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",18.257 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",18.3092 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",18.3495 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",18.2697 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",18.3833 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",18.5188 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",18.5321 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",18.589 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2101,"Simulated","C","global",18.6089 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2102,"Simulated","C","global",18.6156 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2103,"Simulated","C","global",18.6417 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2104,"Simulated","C","global",18.7654 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2105,"Simulated","C","global",18.7822 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2106,"Simulated","C","global",19.0244 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2107,"Simulated","C","global",18.9105 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2108,"Simulated","C","global",18.8981 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2109,"Simulated","C","global",18.9069 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2110,"Simulated","C","global",18.9531 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2111,"Simulated","C","global",19.0633 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2112,"Simulated","C","global",19.0842 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2113,"Simulated","C","global",18.9325 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2114,"Simulated","C","global",19.1039 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2115,"Simulated","C","global",19.1134 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2116,"Simulated","C","global",19.0757 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2117,"Simulated","C","global",19.1734 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2118,"Simulated","C","global",19.2993 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2119,"Simulated","C","global",19.3234 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2120,"Simulated","C","global",19.3824 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2121,"Simulated","C","global",19.4218 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2122,"Simulated","C","global",19.476 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2123,"Simulated","C","global",19.436 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2124,"Simulated","C","global",19.5427 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2125,"Simulated","C","global",19.6266 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2126,"Simulated","C","global",19.6339 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2127,"Simulated","C","global",19.7213 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2128,"Simulated","C","global",19.7079 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2129,"Simulated","C","global",19.7392 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2130,"Simulated","C","global",19.8451 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2131,"Simulated","C","global",19.7237 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2132,"Simulated","C","global",19.8288 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2133,"Simulated","C","global",19.8245 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2134,"Simulated","C","global",19.8427 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2135,"Simulated","C","global",19.7632 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2136,"Simulated","C","global",19.8151 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2137,"Simulated","C","global",19.8928 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2138,"Simulated","C","global",19.8861 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2139,"Simulated","C","global",19.9148 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2140,"Simulated","C","global",19.9727 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2141,"Simulated","C","global",19.9656 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2142,"Simulated","C","global",20.0668 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2143,"Simulated","C","global",20.1328 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2144,"Simulated","C","global",20.1177 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2145,"Simulated","C","global",20.08 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2146,"Simulated","C","global",20.3325 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2147,"Simulated","C","global",20.3002 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2148,"Simulated","C","global",20.2362 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2149,"Simulated","C","global",20.2807 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2150,"Simulated","C","global",20.2503 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2151,"Simulated","C","global",20.1941 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2152,"Simulated","C","global",20.3665 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2153,"Simulated","C","global",20.3743 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2154,"Simulated","C","global",20.4386 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2155,"Simulated","C","global",20.5314 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2156,"Simulated","C","global",20.6345 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2157,"Simulated","C","global",20.6612 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2158,"Simulated","C","global",20.5134 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2159,"Simulated","C","global",20.6621 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2160,"Simulated","C","global",20.6795 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2161,"Simulated","C","global",20.7232 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2162,"Simulated","C","global",20.7714 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2163,"Simulated","C","global",20.7229 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2164,"Simulated","C","global",20.741 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2165,"Simulated","C","global",20.7248 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2166,"Simulated","C","global",20.9137 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2167,"Simulated","C","global",20.874 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2168,"Simulated","C","global",20.913 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2169,"Simulated","C","global",21.04 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2170,"Simulated","C","global",20.9867 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2171,"Simulated","C","global",21.0445 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2172,"Simulated","C","global",21.1844 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2173,"Simulated","C","global",21.1776 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2174,"Simulated","C","global",21.049 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2175,"Simulated","C","global",21.1682 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2176,"Simulated","C","global",21.2109 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2177,"Simulated","C","global",21.2798 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2178,"Simulated","C","global",21.2034 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2179,"Simulated","C","global",21.2335 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2180,"Simulated","C","global",21.3064 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2181,"Simulated","C","global",21.4066 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2182,"Simulated","C","global",21.4857 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2183,"Simulated","C","global",21.395 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2184,"Simulated","C","global",21.4273 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2185,"Simulated","C","global",21.3895 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2186,"Simulated","C","global",21.3412 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2187,"Simulated","C","global",21.5518 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2188,"Simulated","C","global",21.5334 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2189,"Simulated","C","global",21.5258 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2190,"Simulated","C","global",21.6175 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2191,"Simulated","C","global",21.6225 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2192,"Simulated","C","global",21.6278 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2193,"Simulated","C","global",21.641 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2194,"Simulated","C","global",21.6561 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2195,"Simulated","C","global",21.6602 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2196,"Simulated","C","global",21.661 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2197,"Simulated","C","global",21.7788 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2198,"Simulated","C","global",21.8533 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2199,"Simulated","C","global",21.7778 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2200,"Simulated","C","global",21.8349 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2201,"Simulated","C","global",21.8662 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2202,"Simulated","C","global",21.8371 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2203,"Simulated","C","global",21.8614 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2204,"Simulated","C","global",21.9049 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2205,"Simulated","C","global",21.8514 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2206,"Simulated","C","global",21.852 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2207,"Simulated","C","global",21.92 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2208,"Simulated","C","global",22.0146 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2209,"Simulated","C","global",22.1181 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2210,"Simulated","C","global",21.9683 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2211,"Simulated","C","global",21.9658 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2212,"Simulated","C","global",22.1042 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2213,"Simulated","C","global",22.1058 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2214,"Simulated","C","global",22.124 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2215,"Simulated","C","global",22.0987 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2216,"Simulated","C","global",22.1488000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2217,"Simulated","C","global",22.1241 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2218,"Simulated","C","global",22.0764 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2219,"Simulated","C","global",22.1376 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2220,"Simulated","C","global",22.208 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2221,"Simulated","C","global",22.1633 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2222,"Simulated","C","global",22.2698 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2223,"Simulated","C","global",22.2827 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2224,"Simulated","C","global",22.2453 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2225,"Simulated","C","global",22.244 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2226,"Simulated","C","global",22.2692 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2227,"Simulated","C","global",22.2131 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2228,"Simulated","C","global",22.2476 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2229,"Simulated","C","global",22.3154 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2230,"Simulated","C","global",22.3613 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2231,"Simulated","C","global",22.3155 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2232,"Simulated","C","global",22.2070000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2233,"Simulated","C","global",22.3355 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2234,"Simulated","C","global",22.4035 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2235,"Simulated","C","global",22.4427 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2236,"Simulated","C","global",22.4783 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2237,"Simulated","C","global",22.3926 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2238,"Simulated","C","global",22.3773 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2239,"Simulated","C","global",22.4753 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2240,"Simulated","C","global",22.475 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2241,"Simulated","C","global",22.577 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2242,"Simulated","C","global",22.5739 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2243,"Simulated","C","global",22.5257 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2244,"Simulated","C","global",22.5021 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2245,"Simulated","C","global",22.4733 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2246,"Simulated","C","global",22.5293 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2247,"Simulated","C","global",22.4576 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2248,"Simulated","C","global",22.5209 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2249,"Simulated","C","global",22.6392 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2250,"Simulated","C","global",22.5178 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2251,"Simulated","C","global",22.5547 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2252,"Simulated","C","global",22.543 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2253,"Simulated","C","global",22.6044 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2254,"Simulated","C","global",22.6271 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2255,"Simulated","C","global",22.6052 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2256,"Simulated","C","global",22.4485 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2257,"Simulated","C","global",22.5732 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2258,"Simulated","C","global",22.5305 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2259,"Simulated","C","global",22.587 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2260,"Simulated","C","global",22.623 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2261,"Simulated","C","global",22.7245 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2262,"Simulated","C","global",22.609 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2263,"Simulated","C","global",22.6747 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2264,"Simulated","C","global",22.6753 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2265,"Simulated","C","global",22.6582 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2266,"Simulated","C","global",22.6691 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2267,"Simulated","C","global",22.6991 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2268,"Simulated","C","global",22.6365 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2269,"Simulated","C","global",22.6197 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2270,"Simulated","C","global",22.563 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2271,"Simulated","C","global",22.691 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2272,"Simulated","C","global",22.7057 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2273,"Simulated","C","global",22.6772 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2274,"Simulated","C","global",22.6692 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2275,"Simulated","C","global",22.7493 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2276,"Simulated","C","global",22.6547 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2277,"Simulated","C","global",22.6626 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2278,"Simulated","C","global",22.6812 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2279,"Simulated","C","global",22.7157 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2280,"Simulated","C","global",22.6524 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2281,"Simulated","C","global",22.6445000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2282,"Simulated","C","global",22.7468 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2283,"Simulated","C","global",22.7109 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2284,"Simulated","C","global",22.7786 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2285,"Simulated","C","global",22.7287 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2286,"Simulated","C","global",22.7602 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2287,"Simulated","C","global",22.8403 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2288,"Simulated","C","global",22.8483 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2289,"Simulated","C","global",22.7806 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2290,"Simulated","C","global",22.9046 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2291,"Simulated","C","global",22.8801 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2292,"Simulated","C","global",22.8558 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2293,"Simulated","C","global",22.8502 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2294,"Simulated","C","global",22.8639 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2295,"Simulated","C","global",22.8718 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2296,"Simulated","C","global",22.8188 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2297,"Simulated","C","global",22.767 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2298,"Simulated","C","global",22.7952 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2299,"Simulated","C","global",22.8363000000001 -"bcc-csm1-1","tas","temperature","tgav","rcp85",2300,"Simulated","C","global",22.8883 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-10.3236 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-10.2464 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-9.79539999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-10.051 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-9.7998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-9.70929999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-9.9588 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-9.96789999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-10.2746 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-10.0934999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-10.1327 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-9.90129999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-9.84739999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-9.5849 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-9.52979999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-10.2714 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-10.1667 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-10.0459 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-9.76900000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-10.339 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-9.87979999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-9.48939999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-9.37049999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-9.72489999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-9.45099999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-9.75899999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-9.44039999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-9.24489999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-9.30509999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-8.71279999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-9.19109999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-9.23139999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-8.82869999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-8.28799999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-8.24279999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-8.44239999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-8.5292 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-8.8304 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-8.81459999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-8.79689999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-8.46319999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-8.20439999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-8.04679999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-8.32139999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-8.55439999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-8.25119999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-8.50549999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-8.2867 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-7.96079999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-7.60999999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-7.84559999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-7.53099999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-7.31969999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-7.30769999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-6.71129999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-6.82369999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-6.80019999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-6.67319999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-6.6909 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-6.483 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-6.23489999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-6.40899999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-6.54809999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-6.48439999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-6.52209999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-6.52889999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-6.46999999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-6.52889999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-7.03979999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-6.84769999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-6.17359999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-6.18079999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-6.25639999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-6.26059999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-6.68739999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-6.56419999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-6.55189999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-6.41929999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-5.93119999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-5.72239999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-6.2559 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-5.6628 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-5.37449999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-5.0915 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-5.2448 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-4.952 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-5.1977 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-5.3125 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-4.95189999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-4.71159999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-5.11719999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-4.71689999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-4.48249999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-4.31759999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-4.55739999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2101,"Simulated","C","HL",-4.54589999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2102,"Simulated","C","HL",-4.37309999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2103,"Simulated","C","HL",-4.49239999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2104,"Simulated","C","HL",-4.42199999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2105,"Simulated","C","HL",-4.38139999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2106,"Simulated","C","HL",-3.88749999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2107,"Simulated","C","HL",-3.97899999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2108,"Simulated","C","HL",-4.04969999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2109,"Simulated","C","HL",-4.12849999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2110,"Simulated","C","HL",-4.01499999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2111,"Simulated","C","HL",-3.9803 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2112,"Simulated","C","HL",-4.11719999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2113,"Simulated","C","HL",-4.25709999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2114,"Simulated","C","HL",-4.0514 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2115,"Simulated","C","HL",-3.93119999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2116,"Simulated","C","HL",-3.6456 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2117,"Simulated","C","HL",-3.90969999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2118,"Simulated","C","HL",-3.59069999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2119,"Simulated","C","HL",-3.72589999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2120,"Simulated","C","HL",-3.65709999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2121,"Simulated","C","HL",-3.35969999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2122,"Simulated","C","HL",-3.3177 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2123,"Simulated","C","HL",-3.04499999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2124,"Simulated","C","HL",-2.71689999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2125,"Simulated","C","HL",-2.7604 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2126,"Simulated","C","HL",-2.66249999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2127,"Simulated","C","HL",-2.47949999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2128,"Simulated","C","HL",-2.7002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2129,"Simulated","C","HL",-2.93039999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2130,"Simulated","C","HL",-2.4599 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2131,"Simulated","C","HL",-2.5675 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2132,"Simulated","C","HL",-2.44099999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2133,"Simulated","C","HL",-2.7448 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2134,"Simulated","C","HL",-2.6968 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2135,"Simulated","C","HL",-3.0077 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2136,"Simulated","C","HL",-2.75629999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2137,"Simulated","C","HL",-2.53489999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2138,"Simulated","C","HL",-2.9325 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2139,"Simulated","C","HL",-2.5634 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2140,"Simulated","C","HL",-2.68379999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2141,"Simulated","C","HL",-2.58519999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2142,"Simulated","C","HL",-2.46299999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2143,"Simulated","C","HL",-2.35389999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2144,"Simulated","C","HL",-2.31319999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2145,"Simulated","C","HL",-2.27259999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2146,"Simulated","C","HL",-1.51159999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2147,"Simulated","C","HL",-2.01139999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2148,"Simulated","C","HL",-1.92879999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2149,"Simulated","C","HL",-1.84589999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2150,"Simulated","C","HL",-2.10569999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2151,"Simulated","C","HL",-2.29489999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2152,"Simulated","C","HL",-2.11869999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2153,"Simulated","C","HL",-2.1463 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2154,"Simulated","C","HL",-1.66109999999998 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2155,"Simulated","C","HL",-1.5849 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2156,"Simulated","C","HL",-1.55349999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2157,"Simulated","C","HL",-1.53859999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2158,"Simulated","C","HL",-1.50579999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2159,"Simulated","C","HL",-1.31489999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2160,"Simulated","C","HL",-1.27549999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2161,"Simulated","C","HL",-1.18979999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2162,"Simulated","C","HL",-0.94399999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2163,"Simulated","C","HL",-1.10069999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2164,"Simulated","C","HL",-1.0292 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2165,"Simulated","C","HL",-1.23429999999996 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2166,"Simulated","C","HL",-1.10699999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2167,"Simulated","C","HL",-0.914099999999962 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2168,"Simulated","C","HL",-0.953899999999976 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2169,"Simulated","C","HL",-0.738699999999994 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2170,"Simulated","C","HL",-0.989399999999989 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2171,"Simulated","C","HL",-0.838499999999954 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2172,"Simulated","C","HL",-0.283299999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2173,"Simulated","C","HL",-0.372199999999964 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2174,"Simulated","C","HL",-0.802699999999959 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2175,"Simulated","C","HL",-0.612199999999973 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2176,"Simulated","C","HL",-0.363499999999988 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2177,"Simulated","C","HL",-0.204399999999964 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2178,"Simulated","C","HL",-0.462400000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2179,"Simulated","C","HL",-0.502299999999991 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2180,"Simulated","C","HL",-0.671199999999999 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2181,"Simulated","C","HL",-0.515799999999956 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2182,"Simulated","C","HL",-0.16459999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2183,"Simulated","C","HL",-0.28589999999997 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2184,"Simulated","C","HL",-0.221299999999985 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2185,"Simulated","C","HL",-0.314899999999966 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2186,"Simulated","C","HL",-0.3827 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2187,"Simulated","C","HL",-0.00449999999995043 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2188,"Simulated","C","HL",-0.131599999999992 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2189,"Simulated","C","HL",0.170000000000016 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2190,"Simulated","C","HL",0.218600000000038 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2191,"Simulated","C","HL",0.065400000000011 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2192,"Simulated","C","HL",-0.0115999999999872 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2193,"Simulated","C","HL",0.167700000000025 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2194,"Simulated","C","HL",0.00140000000004648 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2195,"Simulated","C","HL",0.201300000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2196,"Simulated","C","HL",0.0520000000000209 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2197,"Simulated","C","HL",0.29060000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2198,"Simulated","C","HL",0.655200000000036 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2199,"Simulated","C","HL",0.697900000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2200,"Simulated","C","HL",0.482100000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2201,"Simulated","C","HL",0.529100000000028 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2202,"Simulated","C","HL",0.645500000000027 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2203,"Simulated","C","HL",0.71410000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2204,"Simulated","C","HL",0.792900000000031 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2205,"Simulated","C","HL",0.759000000000015 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2206,"Simulated","C","HL",0.921300000000031 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2207,"Simulated","C","HL",0.873800000000017 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2208,"Simulated","C","HL",1.00480000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2209,"Simulated","C","HL",0.993600000000015 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2210,"Simulated","C","HL",0.660400000000038 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2211,"Simulated","C","HL",0.953000000000031 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2212,"Simulated","C","HL",1.02960000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2213,"Simulated","C","HL",1.04900000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2214,"Simulated","C","HL",1.07800000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2215,"Simulated","C","HL",0.944800000000043 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2216,"Simulated","C","HL",1.25790000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2217,"Simulated","C","HL",1.0591 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2218,"Simulated","C","HL",1.05890000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2219,"Simulated","C","HL",1.05790000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2220,"Simulated","C","HL",0.915099999999995 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2221,"Simulated","C","HL",1.03570000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2222,"Simulated","C","HL",1.12170000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2223,"Simulated","C","HL",1.154 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2224,"Simulated","C","HL",0.977400000000046 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2225,"Simulated","C","HL",0.841600000000028 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2226,"Simulated","C","HL",1.15050000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2227,"Simulated","C","HL",1.15860000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2228,"Simulated","C","HL",1.02300000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2229,"Simulated","C","HL",1.04390000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2230,"Simulated","C","HL",1.17830000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2231,"Simulated","C","HL",1.35120000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2232,"Simulated","C","HL",1.21130000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2233,"Simulated","C","HL",1.11990000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2234,"Simulated","C","HL",1.27780000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2235,"Simulated","C","HL",1.27330000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2236,"Simulated","C","HL",1.38580000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2237,"Simulated","C","HL",1.22030000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2238,"Simulated","C","HL",1.05020000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2239,"Simulated","C","HL",1.4006 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2240,"Simulated","C","HL",1.49200000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2241,"Simulated","C","HL",1.66210000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2242,"Simulated","C","HL",1.822 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2243,"Simulated","C","HL",1.84680000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2244,"Simulated","C","HL",1.77480000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2245,"Simulated","C","HL",1.83390000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2246,"Simulated","C","HL",1.62430000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2247,"Simulated","C","HL",1.42860000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2248,"Simulated","C","HL",1.61590000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2249,"Simulated","C","HL",1.73790000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2250,"Simulated","C","HL",1.483 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2251,"Simulated","C","HL",1.59620000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2252,"Simulated","C","HL",1.61720000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2253,"Simulated","C","HL",1.7593 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2254,"Simulated","C","HL",1.72470000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2255,"Simulated","C","HL",1.75800000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2256,"Simulated","C","HL",1.666 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2257,"Simulated","C","HL",1.529 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2258,"Simulated","C","HL",1.64860000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2259,"Simulated","C","HL",1.80950000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2260,"Simulated","C","HL",1.72670000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2261,"Simulated","C","HL",1.84900000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2262,"Simulated","C","HL",1.72450000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2263,"Simulated","C","HL",1.72480000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2264,"Simulated","C","HL",1.91570000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2265,"Simulated","C","HL",1.94050000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2266,"Simulated","C","HL",1.48050000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2267,"Simulated","C","HL",1.50850000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2268,"Simulated","C","HL",1.66150000000005 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2269,"Simulated","C","HL",1.81720000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2270,"Simulated","C","HL",1.75780000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2271,"Simulated","C","HL",1.91360000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2272,"Simulated","C","HL",1.74170000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2273,"Simulated","C","HL",1.77140000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2274,"Simulated","C","HL",1.8141 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2275,"Simulated","C","HL",2.26750000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2276,"Simulated","C","HL",2.1379 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2277,"Simulated","C","HL",1.77080000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2278,"Simulated","C","HL",1.77260000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2279,"Simulated","C","HL",1.79900000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2280,"Simulated","C","HL",1.66840000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2281,"Simulated","C","HL",2.01930000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2282,"Simulated","C","HL",2.04590000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2283,"Simulated","C","HL",1.791 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2284,"Simulated","C","HL",2.07040000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2285,"Simulated","C","HL",1.93040000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2286,"Simulated","C","HL",1.99650000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2287,"Simulated","C","HL",2.08140000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2288,"Simulated","C","HL",1.98560000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2289,"Simulated","C","HL",2.19 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2290,"Simulated","C","HL",2.45230000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2291,"Simulated","C","HL",2.4076 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2292,"Simulated","C","HL",2.12270000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2293,"Simulated","C","HL",2.26130000000001 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2294,"Simulated","C","HL",2.17340000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2295,"Simulated","C","HL",2.2534 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2296,"Simulated","C","HL",2.08070000000004 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2297,"Simulated","C","HL",2.2133 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2298,"Simulated","C","HL",1.94490000000002 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2299,"Simulated","C","HL",1.92650000000003 -"bcc-csm1-1","tas","temperature","tgav_HL","rcp85",2300,"Simulated","C","HL",2.05420000000004 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",20.3123000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",20.4277 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",20.4317 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",20.4337 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",20.394 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",20.3801 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",20.2876 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",20.3704 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",20.3616 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",20.4108 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",20.4047 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",20.482 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",20.5506 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",20.6279 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",20.6083 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",20.5458 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",20.4941 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",20.7838 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",20.6596 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",20.6735 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",20.7095 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",20.7235 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",20.7448 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",20.7634 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",20.7722 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",20.7286 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",20.8001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",20.814 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",21.0419 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",20.9557 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",20.9545 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",21.0635 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",21.1079 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",21.0977 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",21.0627 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",21.0728 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",21.1643 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",21.142 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",21.1838 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",21.2803 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",21.3217 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",21.2097 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",21.2791 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",21.3893 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",21.5282 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",21.4205 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",21.4888 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",21.6533 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",21.6394 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",21.6466 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",21.5737 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",21.5754 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",21.6888 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",21.804 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",21.7633 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",21.743 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",21.895 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",22.0858 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",22.1191 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",22.0941 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",22.2315 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",22.3013 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",22.153 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",22.181 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",22.2536 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",22.2915 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",22.4058 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",22.391 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",22.3535 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",22.4115 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",22.489 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",22.4758 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",22.467 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",22.6086 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",22.7069 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",22.789 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",22.7532 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",22.7498000000001 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",22.7736 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",22.7453 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",22.8129 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",22.858 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",22.897 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",23.0211 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",23.0157 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",23.1256 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",23.1706 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",23.178 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",23.1659 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",23.1644 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",23.1526 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",23.2063 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",23.3213 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",23.3028 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",23.4217 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2101,"Simulated","C","LL",23.4434 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2102,"Simulated","C","LL",23.4154 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2103,"Simulated","C","LL",23.4719 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2104,"Simulated","C","LL",23.6067 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2105,"Simulated","C","LL",23.6185 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2106,"Simulated","C","LL",23.8082 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2107,"Simulated","C","LL",23.6895 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2108,"Simulated","C","LL",23.6893 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2109,"Simulated","C","LL",23.7164 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2110,"Simulated","C","LL",23.7486 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2111,"Simulated","C","LL",23.8745 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2112,"Simulated","C","LL",23.9284 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2113,"Simulated","C","LL",23.7742 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2114,"Simulated","C","LL",23.9384 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2115,"Simulated","C","LL",23.9248 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2116,"Simulated","C","LL",23.8197 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2117,"Simulated","C","LL",23.9928 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2118,"Simulated","C","LL",24.0784 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2119,"Simulated","C","LL",24.1359 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2120,"Simulated","C","LL",24.1927 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2121,"Simulated","C","LL",24.1784 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2122,"Simulated","C","LL",24.2351 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2123,"Simulated","C","LL",24.1298 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2124,"Simulated","C","LL",24.1902 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2125,"Simulated","C","LL",24.3008 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2126,"Simulated","C","LL",24.2891 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2127,"Simulated","C","LL",24.3565 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2128,"Simulated","C","LL",24.3865 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2129,"Simulated","C","LL",24.4723 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2130,"Simulated","C","LL",24.5021 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2131,"Simulated","C","LL",24.3779 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2132,"Simulated","C","LL",24.4785 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2133,"Simulated","C","LL",24.5367 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2134,"Simulated","C","LL",24.5486 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2135,"Simulated","C","LL",24.5175 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2136,"Simulated","C","LL",24.5277 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2137,"Simulated","C","LL",24.5754 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2138,"Simulated","C","LL",24.6504 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2139,"Simulated","C","LL",24.608 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2140,"Simulated","C","LL",24.7031 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2141,"Simulated","C","LL",24.6739 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2142,"Simulated","C","LL",24.7707 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2143,"Simulated","C","LL",24.8278 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2144,"Simulated","C","LL",24.801 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2145,"Simulated","C","LL",24.747 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2146,"Simulated","C","LL",24.8933 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2147,"Simulated","C","LL",24.9586 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2148,"Simulated","C","LL",24.864 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2149,"Simulated","C","LL",24.9004 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2150,"Simulated","C","LL",24.9179 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2151,"Simulated","C","LL",24.8896 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2152,"Simulated","C","LL",25.0612 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2153,"Simulated","C","LL",25.0764 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2154,"Simulated","C","LL",25.0527 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2155,"Simulated","C","LL",25.1491 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2156,"Simulated","C","LL",25.2671 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2157,"Simulated","C","LL",25.2962 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2158,"Simulated","C","LL",25.1107 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2159,"Simulated","C","LL",25.2506 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2160,"Simulated","C","LL",25.2635 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2161,"Simulated","C","LL",25.2984 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2162,"Simulated","C","LL",25.3054 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2163,"Simulated","C","LL",25.2795 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2164,"Simulated","C","LL",25.2864 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2165,"Simulated","C","LL",25.3097 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2166,"Simulated","C","LL",25.5114 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2167,"Simulated","C","LL",25.4231 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2168,"Simulated","C","LL",25.4786 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2169,"Simulated","C","LL",25.5871 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2170,"Simulated","C","LL",25.5751 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2171,"Simulated","C","LL",25.6134 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2172,"Simulated","C","LL",25.6667 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2173,"Simulated","C","LL",25.6769 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2174,"Simulated","C","LL",25.6114 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2175,"Simulated","C","LL",25.7157 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2176,"Simulated","C","LL",25.7154 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2177,"Simulated","C","LL",25.7654 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2178,"Simulated","C","LL",25.727 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2179,"Simulated","C","LL",25.7717 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2180,"Simulated","C","LL",25.8951 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2181,"Simulated","C","LL",25.9837 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2182,"Simulated","C","LL",26.006 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2183,"Simulated","C","LL",25.9218 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2184,"Simulated","C","LL",25.9472 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2185,"Simulated","C","LL",25.9212 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2186,"Simulated","C","LL",25.8769 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2187,"Simulated","C","LL",26.0525 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2188,"Simulated","C","LL",26.0568 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2189,"Simulated","C","LL",25.9846 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2190,"Simulated","C","LL",26.0853 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2191,"Simulated","C","LL",26.1234 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2192,"Simulated","C","LL",26.1458 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2193,"Simulated","C","LL",26.1244 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2194,"Simulated","C","LL",26.1773 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2195,"Simulated","C","LL",26.1406 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2196,"Simulated","C","LL",26.1727 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2197,"Simulated","C","LL",26.2653 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2198,"Simulated","C","LL",26.2792 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2199,"Simulated","C","LL",26.179 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2200,"Simulated","C","LL",26.2931 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2201,"Simulated","C","LL",26.3212 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2202,"Simulated","C","LL",26.2617 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2203,"Simulated","C","LL",26.2767 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2204,"Simulated","C","LL",26.3128 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2205,"Simulated","C","LL",26.2553 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2206,"Simulated","C","LL",26.2221 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2207,"Simulated","C","LL",26.3142 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2208,"Simulated","C","LL",26.4012 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2209,"Simulated","C","LL",26.5287 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2210,"Simulated","C","LL",26.4171 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2211,"Simulated","C","LL",26.353 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2212,"Simulated","C","LL",26.5044 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2213,"Simulated","C","LL",26.5022 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2214,"Simulated","C","LL",26.5182 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2215,"Simulated","C","LL",26.5154 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2216,"Simulated","C","LL",26.5106 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2217,"Simulated","C","LL",26.5223 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2218,"Simulated","C","LL",26.4646 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2219,"Simulated","C","LL",26.5389 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2220,"Simulated","C","LL",26.6537 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2221,"Simulated","C","LL",26.5745 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2222,"Simulated","C","LL",26.6853 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2223,"Simulated","C","LL",26.6941 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2224,"Simulated","C","LL",26.6859 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2225,"Simulated","C","LL",26.7125 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2226,"Simulated","C","LL",26.6785 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2227,"Simulated","C","LL",26.6091 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2228,"Simulated","C","LL",26.679 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2229,"Simulated","C","LL",26.7566 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2230,"Simulated","C","LL",26.784 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2231,"Simulated","C","LL",26.6926 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2232,"Simulated","C","LL",26.5907 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2233,"Simulated","C","LL",26.7651 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2234,"Simulated","C","LL",26.8143 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2235,"Simulated","C","LL",26.8627 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2236,"Simulated","C","LL",26.8822 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2237,"Simulated","C","LL",26.8131 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2238,"Simulated","C","LL",26.8301 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2239,"Simulated","C","LL",26.8755 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2240,"Simulated","C","LL",26.856 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2241,"Simulated","C","LL",26.9438 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2242,"Simulated","C","LL",26.9066 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2243,"Simulated","C","LL",26.8433 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2244,"Simulated","C","LL",26.8297 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2245,"Simulated","C","LL",26.7826 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2246,"Simulated","C","LL",26.8941 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2247,"Simulated","C","LL",26.8482 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2248,"Simulated","C","LL",26.8856 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2249,"Simulated","C","LL",27.0032 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2250,"Simulated","C","LL",26.9096 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2251,"Simulated","C","LL",26.9306 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2252,"Simulated","C","LL",26.9121 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2253,"Simulated","C","LL",26.9566 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2254,"Simulated","C","LL",26.9913 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2255,"Simulated","C","LL",26.9578 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2256,"Simulated","C","LL",26.7877 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2257,"Simulated","C","LL",26.967 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2258,"Simulated","C","LL",26.8904 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2259,"Simulated","C","LL",26.9251 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2260,"Simulated","C","LL",26.9859 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2261,"Simulated","C","LL",27.0831 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2262,"Simulated","C","LL",26.9695 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2263,"Simulated","C","LL",27.0488 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2264,"Simulated","C","LL",27.0097 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2265,"Simulated","C","LL",26.9838 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2266,"Simulated","C","LL",27.0931 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2267,"Simulated","C","LL",27.1235 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2268,"Simulated","C","LL",27.0159 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2269,"Simulated","C","LL",26.963 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2270,"Simulated","C","LL",26.9069 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2271,"Simulated","C","LL",27.0291 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2272,"Simulated","C","LL",27.0828 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2273,"Simulated","C","LL",27.0421 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2274,"Simulated","C","LL",27.0235 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2275,"Simulated","C","LL",27.0256 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2276,"Simulated","C","LL",26.9384 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2277,"Simulated","C","LL",27.0246 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2278,"Simulated","C","LL",27.0467 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2279,"Simulated","C","LL",27.0829 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2280,"Simulated","C","LL",27.0336 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2281,"Simulated","C","LL",26.9508 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2282,"Simulated","C","LL",27.0689 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2283,"Simulated","C","LL",27.0787 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2284,"Simulated","C","LL",27.1022 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2285,"Simulated","C","LL",27.0711 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2286,"Simulated","C","LL",27.0954 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2287,"Simulated","C","LL",27.1745 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2288,"Simulated","C","LL",27.2042 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2289,"Simulated","C","LL",27.0796 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2290,"Simulated","C","LL",27.1748 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2291,"Simulated","C","LL",27.1546 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2292,"Simulated","C","LL",27.1846 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2293,"Simulated","C","LL",27.1489 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2294,"Simulated","C","LL",27.1838 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2295,"Simulated","C","LL",27.1767 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2296,"Simulated","C","LL",27.1487 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2297,"Simulated","C","LL",27.0584 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2298,"Simulated","C","LL",27.1486 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2299,"Simulated","C","LL",27.202 -"bcc-csm1-1","tas","temperature","tgav_LL","rcp85",2300,"Simulated","C","LL",27.2382 -"CanESM2","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.92522 -"CanESM2","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",14.91342 -"CanESM2","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",14.9243 -"CanESM2","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",15.0395 -"CanESM2","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",15.07086 -"CanESM2","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",15.04616 -"CanESM2","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",15.0722 -"CanESM2","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",15.12272 -"CanESM2","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",15.15614 -"CanESM2","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",15.2482 -"CanESM2","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",15.27766 -"CanESM2","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",15.23208 -"CanESM2","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",15.2618 -"CanESM2","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",15.36386 -"CanESM2","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",15.38158 -"CanESM2","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",15.39848 -"CanESM2","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",15.52448 -"CanESM2","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",15.54526 -"CanESM2","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",15.59688 -"CanESM2","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",15.60614 -"CanESM2","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",15.6213 -"CanESM2","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",15.78436 -"CanESM2","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",15.7436 -"CanESM2","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",15.7435 -"CanESM2","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",15.80408 -"CanESM2","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",15.8363 -"CanESM2","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",15.99066 -"CanESM2","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",15.93398 -"CanESM2","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",15.94178 -"CanESM2","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",15.9791 -"CanESM2","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",15.9981 -"CanESM2","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",16.137 -"CanESM2","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",16.1379 -"CanESM2","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",16.16506 -"CanESM2","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",16.23586 -"CanESM2","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",16.25276 -"CanESM2","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",16.36444 -"CanESM2","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",16.41768 -"CanESM2","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",16.5099 -"CanESM2","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",16.4892 -"CanESM2","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",16.52766 -"CanESM2","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",16.6611 -"CanESM2","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",16.6767 -"CanESM2","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",16.6917 -"CanESM2","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",16.7989 -"CanESM2","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",16.88592 -"CanESM2","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",16.82604 -"CanESM2","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",16.81074 -"CanESM2","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",16.92226 -"CanESM2","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",17.03604 -"CanESM2","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",17.01862 -"CanESM2","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",17.09418 -"CanESM2","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",17.19916 -"CanESM2","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",17.2552 -"CanESM2","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",17.29774 -"CanESM2","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",17.2953 -"CanESM2","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",17.46632 -"CanESM2","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",17.47304 -"CanESM2","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",17.52136 -"CanESM2","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",17.5213 -"CanESM2","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",17.55382 -"CanESM2","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",17.68086 -"CanESM2","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",17.73024 -"CanESM2","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",17.72206 -"CanESM2","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",17.78648 -"CanESM2","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",17.85268 -"CanESM2","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",17.9122 -"CanESM2","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",17.94464 -"CanESM2","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",18.0106 -"CanESM2","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",18.10782 -"CanESM2","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",18.17624 -"CanESM2","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",18.17648 -"CanESM2","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",18.27032 -"CanESM2","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",18.42962 -"CanESM2","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",18.40174 -"CanESM2","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",18.40682 -"CanESM2","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",18.41054 -"CanESM2","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",18.56948 -"CanESM2","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",18.63472 -"CanESM2","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",18.6052 -"CanESM2","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",18.68192 -"CanESM2","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",18.81518 -"CanESM2","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",18.81132 -"CanESM2","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",18.92322 -"CanESM2","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",18.90958 -"CanESM2","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",18.998 -"CanESM2","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",19.07014 -"CanESM2","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",19.19328 -"CanESM2","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",19.19684 -"CanESM2","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",19.22524 -"CanESM2","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",19.22604 -"CanESM2","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",19.36578 -"CanESM2","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",19.43854 -"CanESM2","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",19.50066 -"CanESM2","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",19.5398 -"CanESM2","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-10.13692 -"CanESM2","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-10.25482 -"CanESM2","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-10.19436 -"CanESM2","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-9.94097999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-9.93162 -"CanESM2","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-9.97823999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-9.86435999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-9.86987999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-9.94389999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-9.7275 -"CanESM2","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-9.65567999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-9.71815999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-9.60647999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-9.63925999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-9.64055999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-9.44137999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-9.22711999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-9.25545999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-9.07661999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-9.08383999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-9.34731999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-8.90573999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-9.02027999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-8.99311999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-8.88509999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-8.98731999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-8.68051999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-8.67143999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-8.56683999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-8.60337999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-8.71471999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-8.44445999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-8.51641999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-8.39785999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-8.30789999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-8.32097999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-7.96423999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-7.98943999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-8.00373999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-7.80839999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-7.88725999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-7.78739999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-7.72551999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-7.72155999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-7.45549999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-7.35803999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-7.27647999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-7.37415999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-7.25751999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-7.18979999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-7.14155999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-7.06977999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-6.91747999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-6.93145999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-6.76967999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-6.81793999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-6.47449999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-6.51527999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-6.41671999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-6.44925999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-6.44815999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-6.21249999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-6.18747999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-6.12697999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-6.01787999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-5.95351999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-5.86453999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-5.71827999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-5.81245999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-5.60199999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-5.70589999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-5.60957999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-5.47351999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-5.17497999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-5.25669999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-5.03767999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-5.06149999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-4.89345999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-4.87713999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-4.87701999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-4.71329999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-4.61467999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-4.67141999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-4.50979999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-4.39191999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-4.26244 -"CanESM2","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-4.18401999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-4.00997999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-3.95241999999996 -"CanESM2","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-3.92133999999998 -"CanESM2","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-3.93693999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-3.77631999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-3.69133999999999 -"CanESM2","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-3.55849999999997 -"CanESM2","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-3.55599999999997 -"CanESM2","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",20.15792 -"CanESM2","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",20.16824 -"CanESM2","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",20.16876 -"CanESM2","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",20.25512 -"CanESM2","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",20.2911 -"CanESM2","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",20.27098 -"CanESM2","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",20.27866 -"CanESM2","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",20.34088 -"CanESM2","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",20.39676 -"CanESM2","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",20.46284 -"CanESM2","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",20.48344 -"CanESM2","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",20.44144 -"CanESM2","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",20.45398 -"CanESM2","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",20.58422 -"CanESM2","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",20.60592 -"CanESM2","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",20.5848 -"CanESM2","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",20.6923 -"CanESM2","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",20.72336 -"CanESM2","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",20.74842 -"CanESM2","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",20.76116 -"CanESM2","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",20.83448 -"CanESM2","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",20.93938 -"CanESM2","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",20.91404 -"CanESM2","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",20.90822 -"CanESM2","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",20.95892 -"CanESM2","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",21.01916 -"CanESM2","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",21.1417 -"CanESM2","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",21.07132 -"CanESM2","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",21.05888 -"CanESM2","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",21.11164 -"CanESM2","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",21.15786 -"CanESM2","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",21.26934 -"CanESM2","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",21.28544 -"CanESM2","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",21.2935 -"CanESM2","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",21.36034 -"CanESM2","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",21.3835 -"CanESM2","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",21.44396 -"CanESM2","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",21.5136 -"CanESM2","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",21.62808 -"CanESM2","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",21.5623 -"CanESM2","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",21.62522 -"CanESM2","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",21.76566 -"CanESM2","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",21.77162 -"CanESM2","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",21.78892 -"CanESM2","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",21.86294 -"CanESM2","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",21.9478 -"CanESM2","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",21.85836 -"CanESM2","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",21.8603 -"CanESM2","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",21.97072 -"CanESM2","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",22.09412 -"CanESM2","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",22.06296 -"CanESM2","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",22.13932 -"CanESM2","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",22.23446 -"CanESM2","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",22.3051 -"CanESM2","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",22.32276 -"CanESM2","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",22.32988 -"CanESM2","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",22.4649 -"CanESM2","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",22.48156 -"CanESM2","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",22.51938 -"CanESM2","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",22.52608 -"CanESM2","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",22.56516 -"CanESM2","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",22.66952 -"CanESM2","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",22.72398 -"CanESM2","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",22.70148 -"CanESM2","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",22.75656 -"CanESM2","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",22.82314 -"CanESM2","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",22.87652 -"CanESM2","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",22.88516 -"CanESM2","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",22.98456 -"CanESM2","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",23.05814 -"CanESM2","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",23.16256 -"CanESM2","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",23.14274 -"CanESM2","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",23.2278 -"CanESM2","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",23.35802 -"CanESM2","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",23.34136 -"CanESM2","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",23.30176 -"CanESM2","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",23.31126 -"CanESM2","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",23.46826 -"CanESM2","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",23.54376 -"CanESM2","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",23.50806 -"CanESM2","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",23.56662 -"CanESM2","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",23.70708 -"CanESM2","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",23.71428 -"CanESM2","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",23.81578 -"CanESM2","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",23.77466 -"CanESM2","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",23.85454 -"CanESM2","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",23.92536 -"CanESM2","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",24.03782 -"CanESM2","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",24.03016 -"CanESM2","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",24.05796 -"CanESM2","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",24.06222 -"CanESM2","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",24.19762 -"CanESM2","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",24.26778 -"CanESM2","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",24.31516 -"CanESM2","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",24.36196 -"CESM1-BGC","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.6755 -"CESM1-BGC","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",14.6508 -"CESM1-BGC","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",14.7783 -"CESM1-BGC","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",14.9065000000001 -"CESM1-BGC","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",14.8122 -"CESM1-BGC","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",14.8686 -"CESM1-BGC","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",14.7795 -"CESM1-BGC","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",14.7041 -"CESM1-BGC","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",14.8438 -"CESM1-BGC","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",14.9548 -"CESM1-BGC","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.9076 -"CESM1-BGC","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.9559 -"CESM1-BGC","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",15.0644 -"CESM1-BGC","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",15.0979 -"CESM1-BGC","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",14.962 -"CESM1-BGC","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",15.1283 -"CESM1-BGC","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",15.0479 -"CESM1-BGC","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",14.926 -"CESM1-BGC","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",15.0378 -"CESM1-BGC","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",15.0548 -"CESM1-BGC","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",15.1095 -"CESM1-BGC","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",15.3491 -"CESM1-BGC","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",15.4082 -"CESM1-BGC","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",15.2052 -"CESM1-BGC","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",15.3297 -"CESM1-BGC","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",15.4183 -"CESM1-BGC","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",15.3108 -"CESM1-BGC","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",15.4627 -"CESM1-BGC","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",15.6534 -"CESM1-BGC","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",15.511 -"CESM1-BGC","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",15.511 -"CESM1-BGC","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",15.5672 -"CESM1-BGC","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",15.5992 -"CESM1-BGC","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",15.7626 -"CESM1-BGC","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",15.7748 -"CESM1-BGC","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",15.7135 -"CESM1-BGC","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",15.6993000000001 -"CESM1-BGC","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",15.7274 -"CESM1-BGC","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",15.8513 -"CESM1-BGC","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",15.9767000000001 -"CESM1-BGC","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",15.8507 -"CESM1-BGC","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",15.7835 -"CESM1-BGC","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",15.8595 -"CESM1-BGC","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",16.0676 -"CESM1-BGC","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",16.0861 -"CESM1-BGC","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",15.9898 -"CESM1-BGC","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",16.0357 -"CESM1-BGC","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",16.213 -"CESM1-BGC","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",16.274 -"CESM1-BGC","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",16.3128 -"CESM1-BGC","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",16.2741 -"CESM1-BGC","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",16.4709 -"CESM1-BGC","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",16.5329 -"CESM1-BGC","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",16.4274 -"CESM1-BGC","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",16.5071 -"CESM1-BGC","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",16.5166 -"CESM1-BGC","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",16.5474 -"CESM1-BGC","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",16.581 -"CESM1-BGC","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",16.6448 -"CESM1-BGC","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",16.8369 -"CESM1-BGC","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",16.8635 -"CESM1-BGC","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",16.7745 -"CESM1-BGC","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",16.7596 -"CESM1-BGC","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",16.8654 -"CESM1-BGC","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",16.9852 -"CESM1-BGC","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",17.0579 -"CESM1-BGC","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",17.0237 -"CESM1-BGC","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",17.0976 -"CESM1-BGC","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",17.1266 -"CESM1-BGC","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",17.2443 -"CESM1-BGC","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",17.1383 -"CESM1-BGC","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",17.2158 -"CESM1-BGC","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",17.3271 -"CESM1-BGC","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",17.3182 -"CESM1-BGC","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",17.5354 -"CESM1-BGC","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",17.5909 -"CESM1-BGC","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",17.6067 -"CESM1-BGC","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",17.5421 -"CESM1-BGC","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",17.5132 -"CESM1-BGC","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",17.6199 -"CESM1-BGC","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",17.6594 -"CESM1-BGC","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",17.8012 -"CESM1-BGC","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",17.8745 -"CESM1-BGC","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",17.8278 -"CESM1-BGC","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",17.8286 -"CESM1-BGC","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",17.9977 -"CESM1-BGC","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",18.0616 -"CESM1-BGC","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",17.9844000000001 -"CESM1-BGC","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",18.0034 -"CESM1-BGC","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",18.1289 -"CESM1-BGC","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",18.1724 -"CESM1-BGC","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",18.1344 -"CESM1-BGC","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",18.1884 -"CESM1-BGC","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",18.2358 -"CESM1-BGC","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",18.3124 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-10.0258 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-9.7063 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-9.74849999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-9.255 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-9.49639999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-9.58359999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-9.73789999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-9.92379999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-9.41759999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-9.31689999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-9.45939999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-9.0745 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-9.09639999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-8.93349999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-9.45919999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-9.26589999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-9.58429999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-9.55129999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-9.31979999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-9.51139999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-9.19989999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-8.75309999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-8.81299999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-9.0378 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-9.07689999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-8.79559999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-9.26419999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-8.78909999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-8.48379999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-8.6902 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-8.57589999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-8.31349999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-8.5378 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-7.99079999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-8.07259999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-8.22749999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-8.26159999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-8.43119999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-8.23239999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-7.98429999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-8.12099999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-8.17409999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-8.15439999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-7.76839999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-7.84649999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-8.0949 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-7.8374 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-7.34589999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-7.32759999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-7.16059999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-7.3372 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-7.50739999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-7.07679999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-7.01939999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-6.79749999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-7.03709999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-6.99189999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-6.76939999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-6.57219999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-6.20759999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-6.31319999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-6.4957 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-6.7373 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-6.56059999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-6.1026 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-6.30359999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-6.40029999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-6.21949999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-5.94 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-5.94579999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-5.83519999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-5.9776 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-5.70189999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-5.8141 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-5.36199999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-5.47589999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-5.55579999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-5.6635 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-5.39329999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-5.57569999999998 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-5.39879999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-5.02759999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-4.76759999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-4.86019999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-4.82489999999996 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-4.49899999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-4.55439999999999 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-4.40349999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-4.5453 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-4.61839999999995 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-4.75689999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-4.5831 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-4.41269999999997 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-4.4948 -"CESM1-BGC","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-4.2921 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",20.2563 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",20.1538 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",20.3197 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",20.3654 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",20.3043 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",20.3931 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",20.3187 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",20.2682 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",20.3251 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",20.4385 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",20.4129 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",20.3851 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",20.5231 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",20.5274 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",20.4794 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",20.6396 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",20.6131 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",20.4562 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",20.5409 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",20.605 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",20.6017000000001 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",20.7945 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",20.8806 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",20.6824 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",20.8439 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",20.889 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",20.8631 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",20.942 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",21.1067 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",20.9788 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",20.9529 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",20.9626 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",21.0525 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",21.1293 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",21.1627 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",21.1225 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",21.1128 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",21.1856 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",21.2925 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",21.3902 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",21.2667 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",21.1963 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",21.285 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",21.4529 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",21.4932 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",21.4313 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",21.4294 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",21.5357 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",21.6064 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",21.6161 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",21.6086 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",21.8883 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",21.867 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",21.7248 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",21.7723 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",21.8381 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",21.8656 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",21.8565 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",21.8902 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",22.0434 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",22.0998 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",22.0319 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",22.0683 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",22.158 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",22.2014 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",22.3359 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",22.3159 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",22.3656 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",22.338 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",22.4836 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",22.3287 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",22.4559 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",22.53 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",22.5446 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",22.7086 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",22.8024 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",22.8398 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",22.7849000000001 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",22.6885 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",22.8605 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",22.869 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",22.9589 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",22.99 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",22.9537 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",22.9467 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",23.0804 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",23.1713 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",23.0425 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",23.0978 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",23.2682 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",23.3529 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",23.2669 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",23.2946 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",23.3713 -"CESM1-BGC","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",23.4194 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.0578 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",13.9753 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",14.0936 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",14.1079 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",14.1467 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",14.0873 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",14.117 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",14.2129 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",14.1759 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",14.3623 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.2739 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.1134 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",14.1326 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",14.1823 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",14.0956 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",14.2503 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",14.3803 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",14.2514 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",14.33 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",14.5287 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",14.3694 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",14.5335 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",14.7319 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",14.4885 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",14.3025 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",14.605 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",14.6528 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",14.6165 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",14.6389 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",14.5893 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",14.7682 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",14.8105 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",14.7194 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",14.7313 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",14.8621 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",14.662 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",14.7132 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",14.8839 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",14.9984 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",14.9785 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",14.9319 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",14.9392 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",14.9894 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",15.092 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",15.1771 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",15.0815 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",15.1838 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",15.2019 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",15.0643 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",15.2137 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",15.3938 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",15.3644 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",15.2332 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",15.2969000000001 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",15.4619 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",15.6393 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",15.289 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",15.4838 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",15.5785 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",15.5362 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",15.6153 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",15.7226 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",15.8622 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",15.9069 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",15.5978 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",15.7995 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",15.9425 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",16.0262 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",15.9866 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",15.9676 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",16.0878 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",16.0291 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",16.1246 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",16.3528 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",16.3584 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",16.208 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",16.2004 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",16.308 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",16.2586 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",16.3538 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",16.529 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",16.6051 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",16.6482 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",16.6311 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",16.7132 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",16.6899 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",16.739 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",16.7578 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",16.8649 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",16.9195 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",17.0534 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",16.897 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",16.88 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",17.0376 -"GFDL-ESM2G","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",16.9229 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-8.56099999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-8.86009999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-8.67439999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-8.74879999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-8.59089999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-8.63349999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-8.64659999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-8.61809999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-8.7672 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-7.94159999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-8.65719999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-8.89209999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-9.00959999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-8.77769999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-8.66719999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-8.49179999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-8.20709999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-8.65209999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-8.5147 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-8.07529999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-8.30429999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-8.13029999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-8.20729999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-8.00149999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-8.29359999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-8.072 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-7.81629999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-7.6053 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-7.57209999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-8.21449999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-7.80929999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-7.505 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-7.87479999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-7.90569999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-7.59219999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-8.29379999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-8.18359999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-8.22499999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-7.57029999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-7.7167 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-7.52699999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-7.3836 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-7.70999999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-7.57979999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-7.33599999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-7.4128 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-7.24019999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-7.14579999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-7.55509999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-7.31739999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-6.97989999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-6.78809999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-7.17079999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-7.49629999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-7.01859999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-6.7448 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-7.3725 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-7.28789999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-7.04640000000001 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-7.10089999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-6.74869999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-6.5677 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-6.6669 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-6.30119999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-7.06950000000001 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-6.61829999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-6.58319999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-6.45429999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-6.24119999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-6.12979999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-5.8888 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-6.1103 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-6.19479999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-5.85890000000001 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-6.05679999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-6.14819999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-6.0292 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-6.24879999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-6.3818 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-5.98469999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-5.53149999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-5.30039999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-5.23819999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-5.35309999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-5.06779999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-5.43579999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-5.31959999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-5.46719999999999 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-5.53369999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-5.17059999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-4.95119999999997 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-4.95329999999996 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-5.08769999999998 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-5.18859999999995 -"GFDL-ESM2G","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-5.11249999999995 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",19.1854 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",19.1521 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",19.2551 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",19.2895 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",19.3013 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",19.2381 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",19.2774 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",19.3887 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",19.3771 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",19.4186 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",19.4723 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",19.3287 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",19.3789 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",19.3873 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",19.256 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",19.4059 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",19.5008 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",19.4436 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",19.5089 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",19.653 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",19.5095 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",19.6714 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",19.9322 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",19.587 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",19.4251 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",19.7459 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",19.7465 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",19.6541 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",19.6741 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",19.7589 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",19.8865 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",19.8694 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",19.8415 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",19.863 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",19.9525 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",19.8661 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",19.9039 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",20.1227 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",20.1147 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",20.1234 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",20.0233 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",19.9998000000001 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",20.1353 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",20.2316 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",20.2807 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",20.181 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",20.2673 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",20.2682 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",20.1921 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",20.3215 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",20.4659 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",20.3864 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",20.3121 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",20.4641 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",20.5582 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",20.7138 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",20.4264 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",20.6461 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",20.7075 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",20.668 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",20.6852 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",20.7758 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",20.9695 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",20.9415 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",20.7364 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",20.8816 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",21.0491 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",21.1226 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",21.0256 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",20.977 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",21.0699 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",21.0481 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",21.1843 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",21.3882 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",21.4399 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",21.2761 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",21.2398 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",21.4216 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",21.3912 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",21.4179 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",21.5301 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",21.571 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",21.6098 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",21.6149 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",21.6509 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",21.7058 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",21.7397 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",21.7962 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",21.9426 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",21.9273 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",22.0418 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",21.8504 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",21.8601 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",22.0762 -"GFDL-ESM2G","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",21.9183 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2005,"Simulated","C","global",12.37105 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.35405 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",14.3638 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",14.47025 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",14.503625 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",14.560325 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",14.560375 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",14.536325 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",14.59935 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",14.6498 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",14.709025 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.78585 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.8042 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",14.8126 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",14.8481 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",14.920325 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",14.955725 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",14.9696 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",15.02985 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",14.950375 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",15.0238 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",15.110975 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",15.156425 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",15.185875 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",15.279475 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",15.31815 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",15.29035 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",15.36095 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",15.3934 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",15.422475 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",15.492075 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",15.55365 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",15.6141 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",15.694725 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",15.727875 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",15.738675 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",15.765925 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",15.749775 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",15.855575 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",15.892225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",15.994525 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",16.037825 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",16.128 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",16.196125 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",16.206225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",16.334425 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",16.358725 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",16.41225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",16.4447 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",16.545525 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",16.594475 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",16.6642 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",16.77385 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",16.869825 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",16.994175 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",17.01285 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",16.97225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",16.97375 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",16.99565 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",17.014975 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",17.127475 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",17.236 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",17.3175 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",17.41965 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",17.443675 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",17.524625 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",17.54595 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",17.577975 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",17.664725 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",17.682725 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",17.715875 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",17.82695 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",17.93205 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",18.0451 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",18.0816 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",18.195225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",18.217 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",18.2386 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",18.233675 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",18.2603 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",18.3044 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",18.48395 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",18.523575 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",18.5995 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",18.59895 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",18.692825 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",18.81845 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",18.805225 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",18.881 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",18.846775 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",18.900125 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",18.902 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",19.0906 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",19.1139 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",19.1729 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",19.15625 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2101,"Simulated","C","global",19.2548 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2102,"Simulated","C","global",19.3068 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2103,"Simulated","C","global",19.2332 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2104,"Simulated","C","global",19.1872 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2105,"Simulated","C","global",19.3369 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2106,"Simulated","C","global",19.4731 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2107,"Simulated","C","global",19.6104 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2108,"Simulated","C","global",19.8106 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2109,"Simulated","C","global",19.8551 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2110,"Simulated","C","global",19.8607 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2111,"Simulated","C","global",19.8188 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2112,"Simulated","C","global",19.8593 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2113,"Simulated","C","global",19.8259 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2114,"Simulated","C","global",19.8484 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2115,"Simulated","C","global",20.1199 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2116,"Simulated","C","global",20.1219 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2117,"Simulated","C","global",20.2127 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2118,"Simulated","C","global",20.1369 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2119,"Simulated","C","global",20.2451 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2120,"Simulated","C","global",20.3301 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2121,"Simulated","C","global",20.2164 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2122,"Simulated","C","global",20.3228 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2123,"Simulated","C","global",20.3744 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2124,"Simulated","C","global",20.4744 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2125,"Simulated","C","global",20.5867 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2126,"Simulated","C","global",20.521 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2127,"Simulated","C","global",20.648 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2128,"Simulated","C","global",20.7367 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2129,"Simulated","C","global",20.6311 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2130,"Simulated","C","global",20.6593 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2131,"Simulated","C","global",20.7866 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2132,"Simulated","C","global",20.8612 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2133,"Simulated","C","global",20.9357 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2134,"Simulated","C","global",21.0639 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2135,"Simulated","C","global",21.1613 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2136,"Simulated","C","global",21.2483 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2137,"Simulated","C","global",21.2669 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2138,"Simulated","C","global",21.2827 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2139,"Simulated","C","global",21.3795 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2140,"Simulated","C","global",21.3216 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2141,"Simulated","C","global",21.5185 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2142,"Simulated","C","global",21.4276 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2143,"Simulated","C","global",21.4841 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2144,"Simulated","C","global",21.4536 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2145,"Simulated","C","global",21.4655 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2146,"Simulated","C","global",21.5373 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2147,"Simulated","C","global",21.5506 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2148,"Simulated","C","global",21.6345 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2149,"Simulated","C","global",21.6189 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2150,"Simulated","C","global",21.6262 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2151,"Simulated","C","global",21.5864 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2152,"Simulated","C","global",21.5913 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2153,"Simulated","C","global",21.6719000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2154,"Simulated","C","global",21.7542 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2155,"Simulated","C","global",21.6986 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2156,"Simulated","C","global",21.7087 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2157,"Simulated","C","global",21.742 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2158,"Simulated","C","global",21.889 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2159,"Simulated","C","global",21.993 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2160,"Simulated","C","global",22.1144 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2161,"Simulated","C","global",22.1123 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2162,"Simulated","C","global",22.2065 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2163,"Simulated","C","global",22.187 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2164,"Simulated","C","global",22.0877 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2165,"Simulated","C","global",22.1734 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2166,"Simulated","C","global",22.3244 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2167,"Simulated","C","global",22.3187 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2168,"Simulated","C","global",22.3804 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2169,"Simulated","C","global",22.4953 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2170,"Simulated","C","global",22.4544 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2171,"Simulated","C","global",22.6399 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2172,"Simulated","C","global",22.7243 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2173,"Simulated","C","global",22.855 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2174,"Simulated","C","global",22.825 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2175,"Simulated","C","global",22.8687 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2176,"Simulated","C","global",22.818 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2177,"Simulated","C","global",22.7223 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2178,"Simulated","C","global",22.7962 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2179,"Simulated","C","global",22.6971 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2180,"Simulated","C","global",22.7399 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2181,"Simulated","C","global",22.8534 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2182,"Simulated","C","global",22.9392 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2183,"Simulated","C","global",22.9471 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2184,"Simulated","C","global",23.0812 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2185,"Simulated","C","global",23.0916 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2186,"Simulated","C","global",23.1815 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2187,"Simulated","C","global",23.1433 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2188,"Simulated","C","global",22.99 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2189,"Simulated","C","global",23.0723 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2190,"Simulated","C","global",23.1841 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2191,"Simulated","C","global",23.2493 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2192,"Simulated","C","global",23.2242 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2193,"Simulated","C","global",23.1161 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2194,"Simulated","C","global",23.235 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2195,"Simulated","C","global",23.3131 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2196,"Simulated","C","global",23.3178 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2197,"Simulated","C","global",23.3403 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2198,"Simulated","C","global",23.3149 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2199,"Simulated","C","global",23.335 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2200,"Simulated","C","global",23.3504 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2201,"Simulated","C","global",23.4814 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2202,"Simulated","C","global",23.623 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2203,"Simulated","C","global",23.5726 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2204,"Simulated","C","global",23.6093 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2205,"Simulated","C","global",23.603 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2206,"Simulated","C","global",23.7112 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2207,"Simulated","C","global",23.7106 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2208,"Simulated","C","global",23.7438 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2209,"Simulated","C","global",23.7775 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2210,"Simulated","C","global",23.8329 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2211,"Simulated","C","global",23.9002 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2212,"Simulated","C","global",23.7685 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2213,"Simulated","C","global",23.7761 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2214,"Simulated","C","global",23.7768 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2215,"Simulated","C","global",23.9564 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2216,"Simulated","C","global",23.8891 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2217,"Simulated","C","global",23.812 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2218,"Simulated","C","global",23.8741 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2219,"Simulated","C","global",23.9191 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2220,"Simulated","C","global",23.9362 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2221,"Simulated","C","global",23.9512 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2222,"Simulated","C","global",24.0149 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2223,"Simulated","C","global",24.0904 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2224,"Simulated","C","global",24.0309 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2225,"Simulated","C","global",24.0822 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2226,"Simulated","C","global",24.0662 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2227,"Simulated","C","global",24.0858 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2228,"Simulated","C","global",24.1861 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2229,"Simulated","C","global",24.144 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2230,"Simulated","C","global",24.0889 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2231,"Simulated","C","global",24.2736 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2232,"Simulated","C","global",24.2345 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2233,"Simulated","C","global",24.3665 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2234,"Simulated","C","global",24.3546 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2235,"Simulated","C","global",24.3737 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2236,"Simulated","C","global",24.37 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2237,"Simulated","C","global",24.409 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2238,"Simulated","C","global",24.325 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2239,"Simulated","C","global",24.3917 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2240,"Simulated","C","global",24.3226 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2241,"Simulated","C","global",24.3654 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2242,"Simulated","C","global",24.4323 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2243,"Simulated","C","global",24.519 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2244,"Simulated","C","global",24.5043 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2245,"Simulated","C","global",24.5558 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2246,"Simulated","C","global",24.6085 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2247,"Simulated","C","global",24.5339 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2248,"Simulated","C","global",24.5963 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2249,"Simulated","C","global",24.6761 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2250,"Simulated","C","global",24.6547 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2251,"Simulated","C","global",24.703 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2252,"Simulated","C","global",24.68 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2253,"Simulated","C","global",24.7276 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2254,"Simulated","C","global",24.7425 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2255,"Simulated","C","global",24.7945 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2256,"Simulated","C","global",24.7667 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2257,"Simulated","C","global",24.7444 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2258,"Simulated","C","global",24.6919 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2259,"Simulated","C","global",24.6927 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2260,"Simulated","C","global",24.7417 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2261,"Simulated","C","global",24.7586 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2262,"Simulated","C","global",24.8399 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2263,"Simulated","C","global",24.7407 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2264,"Simulated","C","global",24.7965 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2265,"Simulated","C","global",24.6513 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2266,"Simulated","C","global",24.8063 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2267,"Simulated","C","global",24.8305 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2268,"Simulated","C","global",24.6601 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2269,"Simulated","C","global",24.7684 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2270,"Simulated","C","global",24.7472 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2271,"Simulated","C","global",24.7013 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2272,"Simulated","C","global",24.7843 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2273,"Simulated","C","global",24.8471 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2274,"Simulated","C","global",24.8344 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2275,"Simulated","C","global",24.8476 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2276,"Simulated","C","global",24.7794 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2277,"Simulated","C","global",24.8495 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2278,"Simulated","C","global",24.79 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2279,"Simulated","C","global",24.7098 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2280,"Simulated","C","global",24.7149 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2281,"Simulated","C","global",24.8374 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2282,"Simulated","C","global",24.8473 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2283,"Simulated","C","global",24.6753 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2284,"Simulated","C","global",24.7395 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2285,"Simulated","C","global",24.7514 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2286,"Simulated","C","global",24.6704 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2287,"Simulated","C","global",24.7404 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2288,"Simulated","C","global",24.9416000000001 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2289,"Simulated","C","global",24.9378 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2290,"Simulated","C","global",24.9108 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2291,"Simulated","C","global",24.8677 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2292,"Simulated","C","global",24.9805 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2293,"Simulated","C","global",25.0362 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2294,"Simulated","C","global",25.0198 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2295,"Simulated","C","global",24.8913 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2296,"Simulated","C","global",24.8789 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2297,"Simulated","C","global",25.0146 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2298,"Simulated","C","global",24.9116 -"HadGEM2-ES","tas","temperature","tgav","rcp85",2299,"Simulated","C","global",24.9794 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2005,"Simulated","C","HL",-11.2308 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-8.27592499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-8.29529999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-8.15787499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-7.99397499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-7.80332499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-8.01077499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-7.95134999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-8.00179999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-7.85544999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-7.78447499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-7.54277499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-7.66069999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-7.72932499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-7.65694999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-7.58044999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-7.42322499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-7.49259999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-7.48339999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-7.55279999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-7.34707499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-7.27337499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-7.178225 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-7.03432499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-6.87607499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-6.83409999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-7.03274999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-6.82319999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-6.80509999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-6.58934999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-6.58652499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-6.45624999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-6.31252499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-6.30727499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-6.36899999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-6.25387499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-6.19364999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-6.28674999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-5.98772499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-6.13399999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-5.91967499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-5.80149999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-5.74967499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-5.51882499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-5.55784999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-5.35804999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-5.15927499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-5.12394999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-5.11557499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-5.02842499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-4.93664999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-4.97284999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-4.81542499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-4.60052499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-4.48837499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-4.44519999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-4.49949999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-4.57459999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-4.39539999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-4.26494999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-4.10572499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-4.23939999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-4.02942499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-3.94824999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-3.795175 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-3.77419999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-3.62404999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-3.68497499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-3.59542499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-3.52594999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-3.49177499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-3.36922499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-3.19752499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-3.04327499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-3.01092499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-2.75907499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-2.72894999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-2.67677499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-2.60142499999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-2.65707499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-2.64059999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-2.31737499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-2.28062499999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-2.15282499999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-2.16139999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-2.03634999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-1.87332499999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-1.76479999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-1.79654999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-1.71549999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-1.66709999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-1.64184999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-1.35859999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-1.21735 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-1.11209999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-1.15314999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2101,"Simulated","C","HL",-1.41319999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2102,"Simulated","C","HL",-1.12059999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2103,"Simulated","C","HL",-1.04129999999998 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2104,"Simulated","C","HL",-1.20259999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2105,"Simulated","C","HL",-0.868799999999965 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2106,"Simulated","C","HL",-0.726099999999974 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2107,"Simulated","C","HL",-0.532399999999996 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2108,"Simulated","C","HL",-0.266699999999958 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2109,"Simulated","C","HL",-0.497399999999971 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2110,"Simulated","C","HL",-0.193799999999953 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2111,"Simulated","C","HL",-0.404200000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2112,"Simulated","C","HL",-0.0883999999999787 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2113,"Simulated","C","HL",-0.134099999999989 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2114,"Simulated","C","HL",-0.0675999999999704 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2115,"Simulated","C","HL",0.263599999999997 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2116,"Simulated","C","HL",-0.0797999999999774 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2117,"Simulated","C","HL",0.0859000000000378 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2118,"Simulated","C","HL",0.270600000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2119,"Simulated","C","HL",0.299300000000017 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2120,"Simulated","C","HL",0.344200000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2121,"Simulated","C","HL",0.405900000000031 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2122,"Simulated","C","HL",0.324700000000007 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2123,"Simulated","C","HL",0.527100000000019 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2124,"Simulated","C","HL",0.687100000000044 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2125,"Simulated","C","HL",1.09860000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2126,"Simulated","C","HL",0.867000000000019 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2127,"Simulated","C","HL",0.866200000000049 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2128,"Simulated","C","HL",1.01180000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2129,"Simulated","C","HL",0.933800000000019 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2130,"Simulated","C","HL",0.87560000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2131,"Simulated","C","HL",0.995400000000018 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2132,"Simulated","C","HL",1.18990000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2133,"Simulated","C","HL",1.28660000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2134,"Simulated","C","HL",1.30200000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2135,"Simulated","C","HL",1.4708 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2136,"Simulated","C","HL",1.88260000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2137,"Simulated","C","HL",1.94570000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2138,"Simulated","C","HL",1.70890000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2139,"Simulated","C","HL",1.67500000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2140,"Simulated","C","HL",1.38810000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2141,"Simulated","C","HL",1.70980000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2142,"Simulated","C","HL",1.69930000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2143,"Simulated","C","HL",2.02010000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2144,"Simulated","C","HL",2.18640000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2145,"Simulated","C","HL",2.32780000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2146,"Simulated","C","HL",2.44050000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2147,"Simulated","C","HL",2.35820000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2148,"Simulated","C","HL",2.50530000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2149,"Simulated","C","HL",2.37050000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2150,"Simulated","C","HL",2.52890000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2151,"Simulated","C","HL",2.34640000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2152,"Simulated","C","HL",2.4905 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2153,"Simulated","C","HL",2.56200000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2154,"Simulated","C","HL",2.75170000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2155,"Simulated","C","HL",2.3879 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2156,"Simulated","C","HL",2.42470000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2157,"Simulated","C","HL",2.52860000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2158,"Simulated","C","HL",2.70510000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2159,"Simulated","C","HL",2.7201 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2160,"Simulated","C","HL",2.98869999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2161,"Simulated","C","HL",2.8759 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2162,"Simulated","C","HL",3.0136 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2163,"Simulated","C","HL",2.81390000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2164,"Simulated","C","HL",3.0129 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2165,"Simulated","C","HL",2.87140000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2166,"Simulated","C","HL",3.06210000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2167,"Simulated","C","HL",3.27440000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2168,"Simulated","C","HL",3.25190000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2169,"Simulated","C","HL",3.24240000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2170,"Simulated","C","HL",3.06560000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2171,"Simulated","C","HL",3.4128 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2172,"Simulated","C","HL",3.65950000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2173,"Simulated","C","HL",3.38510000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2174,"Simulated","C","HL",3.47210000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2175,"Simulated","C","HL",3.40950000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2176,"Simulated","C","HL",3.56040000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2177,"Simulated","C","HL",3.4658 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2178,"Simulated","C","HL",3.52410000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2179,"Simulated","C","HL",3.63600000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2180,"Simulated","C","HL",3.7056 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2181,"Simulated","C","HL",3.59750000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2182,"Simulated","C","HL",3.83640000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2183,"Simulated","C","HL",3.83610000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2184,"Simulated","C","HL",3.9871 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2185,"Simulated","C","HL",4.13120000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2186,"Simulated","C","HL",4.084 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2187,"Simulated","C","HL",4.24110000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2188,"Simulated","C","HL",4.14660000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2189,"Simulated","C","HL",4.10230000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2190,"Simulated","C","HL",4.05280000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2191,"Simulated","C","HL",4.29080000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2192,"Simulated","C","HL",4.12470000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2193,"Simulated","C","HL",4.13530000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2194,"Simulated","C","HL",4.18100000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2195,"Simulated","C","HL",4.41860000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2196,"Simulated","C","HL",4.29640000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2197,"Simulated","C","HL",4.40370000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2198,"Simulated","C","HL",4.42200000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2199,"Simulated","C","HL",4.4452 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2200,"Simulated","C","HL",4.55360000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2201,"Simulated","C","HL",4.45230000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2202,"Simulated","C","HL",4.48660000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2203,"Simulated","C","HL",4.4855 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2204,"Simulated","C","HL",4.447 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2205,"Simulated","C","HL",4.42860000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2206,"Simulated","C","HL",4.9984 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2207,"Simulated","C","HL",4.8501 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2208,"Simulated","C","HL",4.9402 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2209,"Simulated","C","HL",4.9572 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2210,"Simulated","C","HL",4.85940000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2211,"Simulated","C","HL",4.95430000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2212,"Simulated","C","HL",4.71230000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2213,"Simulated","C","HL",5.02080000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2214,"Simulated","C","HL",4.93600000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2215,"Simulated","C","HL",5.15660000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2216,"Simulated","C","HL",5.08940000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2217,"Simulated","C","HL",5.16120000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2218,"Simulated","C","HL",5.22500000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2219,"Simulated","C","HL",5.27020000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2220,"Simulated","C","HL",5.15820000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2221,"Simulated","C","HL",4.95520000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2222,"Simulated","C","HL",5.00040000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2223,"Simulated","C","HL",5.2355 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2224,"Simulated","C","HL",5.27720000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2225,"Simulated","C","HL",5.25600000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2226,"Simulated","C","HL",5.31390000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2227,"Simulated","C","HL",5.10700000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2228,"Simulated","C","HL",5.26280000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2229,"Simulated","C","HL",5.3331 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2230,"Simulated","C","HL",5.38030000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2231,"Simulated","C","HL",5.47790000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2232,"Simulated","C","HL",5.45260000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2233,"Simulated","C","HL",5.51420000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2234,"Simulated","C","HL",5.39920000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2235,"Simulated","C","HL",5.6377 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2236,"Simulated","C","HL",5.48830000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2237,"Simulated","C","HL",5.58250000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2238,"Simulated","C","HL",5.3451 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2239,"Simulated","C","HL",5.71070000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2240,"Simulated","C","HL",5.46000000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2241,"Simulated","C","HL",5.69030000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2242,"Simulated","C","HL",5.6576 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2243,"Simulated","C","HL",5.60470000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2244,"Simulated","C","HL",5.5727 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2245,"Simulated","C","HL",5.46100000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2246,"Simulated","C","HL",5.48080000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2247,"Simulated","C","HL",5.65640000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2248,"Simulated","C","HL",5.69110000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2249,"Simulated","C","HL",5.78380000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2250,"Simulated","C","HL",5.81810000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2251,"Simulated","C","HL",5.83150000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2252,"Simulated","C","HL",5.7527 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2253,"Simulated","C","HL",5.79610000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2254,"Simulated","C","HL",5.81890000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2255,"Simulated","C","HL",5.88300000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2256,"Simulated","C","HL",6.05240000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2257,"Simulated","C","HL",5.94530000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2258,"Simulated","C","HL",5.97040000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2259,"Simulated","C","HL",5.77370000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2260,"Simulated","C","HL",5.82030000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2261,"Simulated","C","HL",5.83190000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2262,"Simulated","C","HL",6.03970000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2263,"Simulated","C","HL",6.03280000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2264,"Simulated","C","HL",5.9246 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2265,"Simulated","C","HL",5.89830000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2266,"Simulated","C","HL",5.97160000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2267,"Simulated","C","HL",6.12280000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2268,"Simulated","C","HL",5.84980000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2269,"Simulated","C","HL",5.96950000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2270,"Simulated","C","HL",6.00240000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2271,"Simulated","C","HL",6.03720000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2272,"Simulated","C","HL",6.02730000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2273,"Simulated","C","HL",6.16060000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2274,"Simulated","C","HL",5.99980000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2275,"Simulated","C","HL",6.03660000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2276,"Simulated","C","HL",6.08440000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2277,"Simulated","C","HL",6.08420000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2278,"Simulated","C","HL",6.28980000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2279,"Simulated","C","HL",6.02760000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2280,"Simulated","C","HL",6.20730000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2281,"Simulated","C","HL",6.23020000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2282,"Simulated","C","HL",6.07260000000002 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2283,"Simulated","C","HL",5.84190000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2284,"Simulated","C","HL",5.96850000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2285,"Simulated","C","HL",6.11930000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2286,"Simulated","C","HL",5.93740000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2287,"Simulated","C","HL",5.87569999999999 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2288,"Simulated","C","HL",6.37890000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2289,"Simulated","C","HL",6.2029 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2290,"Simulated","C","HL",6.16610000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2291,"Simulated","C","HL",6.15290000000005 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2292,"Simulated","C","HL",6.22970000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2293,"Simulated","C","HL",6.23930000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2294,"Simulated","C","HL",6.33570000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2295,"Simulated","C","HL",6.26130000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2296,"Simulated","C","HL",6.23070000000001 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2297,"Simulated","C","HL",6.33320000000003 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2298,"Simulated","C","HL",6.04920000000004 -"HadGEM2-ES","tas","temperature","tgav_HL","rcp85",2299,"Simulated","C","HL",6.19480000000004 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2005,"Simulated","C","LL",17.806075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",19.5661 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",19.5826 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",19.6819 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",19.685225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",19.711075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",19.75895 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",19.71565 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",19.804775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",19.833175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",19.88965 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",19.928475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",19.978225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",20.004475 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",20.031425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",20.10265 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",20.109975 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",20.143 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",20.215 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",20.133225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",20.17615 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",20.2664 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",20.300425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",20.303575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",20.382275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",20.4202 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",20.4317 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",20.470325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",20.506075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",20.49215 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",20.577125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",20.622875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",20.6642 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",20.76215 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",20.81715 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",20.8039 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",20.8236 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",20.825075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",20.88645 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",20.96515 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",21.041675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",21.06775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",21.166775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",21.197425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",21.218775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",21.3305 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",21.3146 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",21.3723 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",21.4103 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",21.51425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",21.553375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",21.64745 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",21.746175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",21.81465 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",21.941875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",21.9549 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",21.91745 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",21.936575 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",21.922275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",21.916025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",22.017725 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",22.182 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",22.2339 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",22.34095 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",22.335225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",22.43 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",22.42165 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",22.475075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",22.561125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",22.567275 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",22.60025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",22.7087 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",22.798425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",22.902 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",22.939425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",23.021225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",23.041 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",23.05565 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",23.032175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",23.07775 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",23.1282 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",23.274675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",23.315 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",23.37895 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",23.380225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",23.466875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",23.583925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",23.54265 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",23.643175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",23.582425 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",23.636925 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",23.633375 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",23.800175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",23.796325 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",23.844625 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",23.83365 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2101,"Simulated","C","LL",24.0147 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2102,"Simulated","C","LL",24.0113 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2103,"Simulated","C","LL",23.9025 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2104,"Simulated","C","LL",23.8832 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2105,"Simulated","C","LL",23.9903 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2106,"Simulated","C","LL",24.1251 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2107,"Simulated","C","LL",24.2495 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2108,"Simulated","C","LL",24.4346 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2109,"Simulated","C","LL",24.5424 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2110,"Simulated","C","LL",24.4794 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2111,"Simulated","C","LL",24.4762 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2112,"Simulated","C","LL",24.4534 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2113,"Simulated","C","LL",24.4228 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2114,"Simulated","C","LL",24.4352 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2115,"Simulated","C","LL",24.693 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2116,"Simulated","C","LL",24.7746 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2117,"Simulated","C","LL",24.848 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2118,"Simulated","C","LL",24.7122 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2119,"Simulated","C","LL",24.8387 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2120,"Simulated","C","LL",24.933 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2121,"Simulated","C","LL",24.7789 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2122,"Simulated","C","LL",24.9285 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2123,"Simulated","C","LL",24.9454 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2124,"Simulated","C","LL",25.0316 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2125,"Simulated","C","LL",25.0748 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2126,"Simulated","C","LL",25.0474 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2127,"Simulated","C","LL",25.2039 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2128,"Simulated","C","LL",25.2794 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2129,"Simulated","C","LL",25.1675 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2130,"Simulated","C","LL",25.2156 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2131,"Simulated","C","LL",25.3446 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2132,"Simulated","C","LL",25.3916 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2133,"Simulated","C","LL",25.461 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2134,"Simulated","C","LL",25.6153 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2135,"Simulated","C","LL",25.6962 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2136,"Simulated","C","LL",25.7084 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2137,"Simulated","C","LL",25.7168 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2138,"Simulated","C","LL",25.7906 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2139,"Simulated","C","LL",25.9175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2140,"Simulated","C","LL",25.9125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2141,"Simulated","C","LL",26.0805 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2142,"Simulated","C","LL",25.9712 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2143,"Simulated","C","LL",25.9668 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2144,"Simulated","C","LL",25.8911 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2145,"Simulated","C","LL",25.8731 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2146,"Simulated","C","LL",25.9354 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2147,"Simulated","C","LL",25.9708 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2148,"Simulated","C","LL",26.0401 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2149,"Simulated","C","LL",26.0519 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2150,"Simulated","C","LL",26.0245 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2151,"Simulated","C","LL",26.0175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2152,"Simulated","C","LL",25.9903 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2153,"Simulated","C","LL",26.0732 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2154,"Simulated","C","LL",26.1306 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2155,"Simulated","C","LL",26.1461 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2156,"Simulated","C","LL",26.1499 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2157,"Simulated","C","LL",26.1671 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2158,"Simulated","C","LL",26.3072 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2159,"Simulated","C","LL",26.4316 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2160,"Simulated","C","LL",26.5192 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2161,"Simulated","C","LL",26.5426 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2162,"Simulated","C","LL",26.6268 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2163,"Simulated","C","LL",26.6487 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2164,"Simulated","C","LL",26.4807 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2165,"Simulated","C","LL",26.6188 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2166,"Simulated","C","LL",26.7606 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2167,"Simulated","C","LL",26.7047 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2168,"Simulated","C","LL",26.7858 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2169,"Simulated","C","LL",26.9294 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2170,"Simulated","C","LL",26.9197 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2171,"Simulated","C","LL",27.068 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2172,"Simulated","C","LL",27.1151 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2173,"Simulated","C","LL",27.3391 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2174,"Simulated","C","LL",27.2821 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2175,"Simulated","C","LL",27.3502 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2176,"Simulated","C","LL",27.2532 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2177,"Simulated","C","LL",27.1572 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2178,"Simulated","C","LL",27.2348 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2179,"Simulated","C","LL",27.087 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2180,"Simulated","C","LL",27.1237 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2181,"Simulated","C","LL",27.2882 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2182,"Simulated","C","LL",27.3386 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2183,"Simulated","C","LL",27.3484 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2184,"Simulated","C","LL",27.4787 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2185,"Simulated","C","LL",27.4582 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2186,"Simulated","C","LL",27.5797 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2187,"Simulated","C","LL",27.4965 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2188,"Simulated","C","LL",27.3298 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2189,"Simulated","C","LL",27.4412 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2190,"Simulated","C","LL",27.5901 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2191,"Simulated","C","LL",27.6155 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2192,"Simulated","C","LL",27.623 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2193,"Simulated","C","LL",27.4875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2194,"Simulated","C","LL",27.6232 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2195,"Simulated","C","LL",27.6646 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2196,"Simulated","C","LL",27.6985 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2197,"Simulated","C","LL",27.7015 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2198,"Simulated","C","LL",27.6662 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2199,"Simulated","C","LL",27.6854 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2200,"Simulated","C","LL",27.6794 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2201,"Simulated","C","LL",27.8639 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2202,"Simulated","C","LL",28.0303 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2203,"Simulated","C","LL",27.9684 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2204,"Simulated","C","LL",28.0225 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2205,"Simulated","C","LL",28.0189 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2206,"Simulated","C","LL",28.0208 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2207,"Simulated","C","LL",28.0543 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2208,"Simulated","C","LL",28.0744 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2209,"Simulated","C","LL",28.1119 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2210,"Simulated","C","LL",28.2027 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2211,"Simulated","C","LL",28.2636 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2212,"Simulated","C","LL",28.1573 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2213,"Simulated","C","LL",28.0955 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2214,"Simulated","C","LL",28.116 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2215,"Simulated","C","LL",28.2861 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2216,"Simulated","C","LL",28.2188 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2217,"Simulated","C","LL",28.1075 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2218,"Simulated","C","LL",28.169 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2219,"Simulated","C","LL",28.2141 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2220,"Simulated","C","LL",28.261 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2221,"Simulated","C","LL",28.3261 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2222,"Simulated","C","LL",28.3941 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2223,"Simulated","C","LL",28.4328 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2224,"Simulated","C","LL",28.3499 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2225,"Simulated","C","LL",28.418 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2226,"Simulated","C","LL",28.385 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2227,"Simulated","C","LL",28.4567 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2228,"Simulated","C","LL",28.5443 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2229,"Simulated","C","LL",28.4763 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2230,"Simulated","C","LL",28.3976 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2231,"Simulated","C","LL",28.6024 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2232,"Simulated","C","LL",28.5601 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2233,"Simulated","C","LL",28.7083 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2234,"Simulated","C","LL",28.7201 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2235,"Simulated","C","LL",28.6886 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2236,"Simulated","C","LL",28.7186 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2237,"Simulated","C","LL",28.7448 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2238,"Simulated","C","LL",28.6962 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2239,"Simulated","C","LL",28.694 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2240,"Simulated","C","LL",28.6667 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2241,"Simulated","C","LL",28.6663 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2242,"Simulated","C","LL",28.7563 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2243,"Simulated","C","LL",28.8751 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2244,"Simulated","C","LL",28.8643 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2245,"Simulated","C","LL",28.9534 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2246,"Simulated","C","LL",29.0138 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2247,"Simulated","C","LL",28.8815 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2248,"Simulated","C","LL",28.9503 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2249,"Simulated","C","LL",29.0271 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2250,"Simulated","C","LL",28.9929 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2251,"Simulated","C","LL",29.0492 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2252,"Simulated","C","LL",29.0391 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2253,"Simulated","C","LL",29.0875 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2254,"Simulated","C","LL",29.1008 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2255,"Simulated","C","LL",29.15 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2256,"Simulated","C","LL",29.0766 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2257,"Simulated","C","LL",29.074 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2258,"Simulated","C","LL",29.0035 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2259,"Simulated","C","LL",29.0499 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2260,"Simulated","C","LL",29.0993 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2261,"Simulated","C","LL",29.1175 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2262,"Simulated","C","LL",29.1698 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2263,"Simulated","C","LL",29.0493 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2264,"Simulated","C","LL",29.1428 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2265,"Simulated","C","LL",28.9702 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2266,"Simulated","C","LL",29.1441 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2267,"Simulated","C","LL",29.1389 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2268,"Simulated","C","LL",28.9922 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2269,"Simulated","C","LL",29.0978 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2270,"Simulated","C","LL",29.0642 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2271,"Simulated","C","LL",28.9997 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2272,"Simulated","C","LL",29.1042 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2273,"Simulated","C","LL",29.1508 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2274,"Simulated","C","LL",29.172 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2275,"Simulated","C","LL",29.1798 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2276,"Simulated","C","LL",29.0849 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2277,"Simulated","C","LL",29.1712 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2278,"Simulated","C","LL",29.0507 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2279,"Simulated","C","LL",29.0125 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2280,"Simulated","C","LL",28.9774 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2281,"Simulated","C","LL",29.1227 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2282,"Simulated","C","LL",29.1713 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2283,"Simulated","C","LL",29.0127 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2284,"Simulated","C","LL",29.0626 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2285,"Simulated","C","LL",29.0424 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2286,"Simulated","C","LL",28.9846 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2287,"Simulated","C","LL",29.085 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2288,"Simulated","C","LL",29.2167 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2289,"Simulated","C","LL",29.2526 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2290,"Simulated","C","LL",29.2277 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2291,"Simulated","C","LL",29.1779 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2292,"Simulated","C","LL",29.2989 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2293,"Simulated","C","LL",29.3652 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2294,"Simulated","C","LL",29.3228 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2295,"Simulated","C","LL",29.1819 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2296,"Simulated","C","LL",29.1737 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2297,"Simulated","C","LL",29.317 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2298,"Simulated","C","LL",29.2557 -"HadGEM2-ES","tas","temperature","tgav_LL","rcp85",2299,"Simulated","C","LL",29.3056 -"inmcm4","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.074 -"inmcm4","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",13.9136 -"inmcm4","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",13.9098 -"inmcm4","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",14.0113 -"inmcm4","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",14.0809 -"inmcm4","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",14.0091 -"inmcm4","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",14.0317 -"inmcm4","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",13.9685 -"inmcm4","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",14.0478 -"inmcm4","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",14.012 -"inmcm4","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.0859 -"inmcm4","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.1197 -"inmcm4","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",13.991 -"inmcm4","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",14.0374 -"inmcm4","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",14.1777 -"inmcm4","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",14.1283 -"inmcm4","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",14.1249 -"inmcm4","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",14.1454 -"inmcm4","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",14.2717 -"inmcm4","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",14.2714 -"inmcm4","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",14.3053 -"inmcm4","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",14.3088 -"inmcm4","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",14.3539 -"inmcm4","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",14.4293 -"inmcm4","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",14.34 -"inmcm4","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",14.3723 -"inmcm4","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",14.4916 -"inmcm4","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",14.5113 -"inmcm4","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",14.4386 -"inmcm4","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",14.4508 -"inmcm4","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",14.5024 -"inmcm4","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",14.5954 -"inmcm4","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",14.571 -"inmcm4","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",14.5607 -"inmcm4","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",14.5974000000001 -"inmcm4","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",14.6837 -"inmcm4","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",14.6121 -"inmcm4","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",14.6753 -"inmcm4","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",14.7321 -"inmcm4","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",14.6884 -"inmcm4","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",14.599 -"inmcm4","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",14.7194 -"inmcm4","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",14.8316 -"inmcm4","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",14.8025 -"inmcm4","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",14.854 -"inmcm4","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",14.7889 -"inmcm4","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",14.8785 -"inmcm4","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",14.8778 -"inmcm4","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",14.9843 -"inmcm4","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",15.0821 -"inmcm4","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",15.1516 -"inmcm4","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",15.1849 -"inmcm4","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",15.1204 -"inmcm4","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",15.2719 -"inmcm4","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",15.3723 -"inmcm4","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",15.3288 -"inmcm4","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",15.3565 -"inmcm4","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",15.4325 -"inmcm4","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",15.4681 -"inmcm4","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",15.4892 -"inmcm4","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",15.6796000000001 -"inmcm4","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",15.6237 -"inmcm4","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",15.6654 -"inmcm4","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",15.7431 -"inmcm4","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",15.7376 -"inmcm4","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",15.8412 -"inmcm4","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",15.8563 -"inmcm4","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",15.8822 -"inmcm4","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",15.891 -"inmcm4","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",15.9718 -"inmcm4","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",16.0457 -"inmcm4","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",16.0723 -"inmcm4","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",16.0312 -"inmcm4","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",16.0132 -"inmcm4","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",16.0377 -"inmcm4","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",16.1449 -"inmcm4","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",16.0795 -"inmcm4","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",16.1325000000001 -"inmcm4","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",16.1517 -"inmcm4","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",16.1283 -"inmcm4","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",16.1855 -"inmcm4","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",16.2595 -"inmcm4","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",16.3492 -"inmcm4","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",16.4117 -"inmcm4","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",16.3642 -"inmcm4","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",16.4213 -"inmcm4","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",16.5454 -"inmcm4","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",16.4394 -"inmcm4","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",16.5115 -"inmcm4","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",16.5452 -"inmcm4","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",16.5657 -"inmcm4","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",16.6205 -"inmcm4","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",16.6294 -"inmcm4","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",16.7045 -"inmcm4","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",16.7697 -"inmcm4","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-7.72929999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-7.81559999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-7.7937 -"inmcm4","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-7.74709999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-7.58449999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-7.74979999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-7.61239999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-7.80899999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-7.51279999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-7.8442 -"inmcm4","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-7.80249999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-7.3877 -"inmcm4","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-7.7706 -"inmcm4","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-7.47179999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-7.31869999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-7.70919999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-7.53479999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-7.63389999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-7.45519999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-7.55289999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-7.44819999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-7.20509999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-7.20939999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-7.24579999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-7.50059999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-7.13279999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-6.84619999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-6.95669999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-7.22279999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-6.9674 -"inmcm4","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-7.09019999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-7.21469999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-7.41359999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-7.05669999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-7.18259999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-6.87529999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-6.93389999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-6.88479999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-6.6105 -"inmcm4","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-7.0292 -"inmcm4","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-7.18459999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-7.02289999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-6.78489999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-6.70739999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-6.4239 -"inmcm4","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-6.79039999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-6.86339999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-6.33249999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-6.57380000000001 -"inmcm4","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-6.30369999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-6.11099999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-6.16549999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-6.1567 -"inmcm4","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-6.01769999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-5.6069 -"inmcm4","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-5.91049999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-5.91409999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-5.66699999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-5.74599999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-5.5772 -"inmcm4","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-5.20739999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-5.08689999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-4.82929999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-5.11319999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-5.01369999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-4.95839999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-4.99189999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-4.84449999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-4.91889999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-4.72629999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-4.51939999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-4.43809999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-4.63169999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-4.66749999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-4.70149999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-4.93039999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-4.92379999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-4.8811 -"inmcm4","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-4.85929999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-4.63999999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-4.447 -"inmcm4","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-4.50879999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-4.3014 -"inmcm4","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-4.02319999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-4.37779999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-4.43119999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-4.28799999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-4.3929 -"inmcm4","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-4.30809999999997 -"inmcm4","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-4.19829999999996 -"inmcm4","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-4.00969999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-3.99029999999999 -"inmcm4","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-3.97279999999995 -"inmcm4","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-3.87099999999998 -"inmcm4","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-3.96509999999995 -"inmcm4","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",18.727 -"inmcm4","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",18.5508 -"inmcm4","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",18.5415 -"inmcm4","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",18.6547 -"inmcm4","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",18.7044 -"inmcm4","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",18.6526 -"inmcm4","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",18.6507 -"inmcm4","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",18.616 -"inmcm4","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",18.649 -"inmcm4","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",18.6763 -"inmcm4","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",18.757 -"inmcm4","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",18.7095 -"inmcm4","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",18.635 -"inmcm4","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",18.6277 -"inmcm4","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",18.7652 -"inmcm4","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",18.7886 -"inmcm4","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",18.7473 -"inmcm4","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",18.7932 -"inmcm4","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",18.9084 -"inmcm4","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",18.9289 -"inmcm4","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",18.9477 -"inmcm4","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",18.9001 -"inmcm4","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",18.9556 -"inmcm4","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",19.0549 -"inmcm4","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",19.0009 -"inmcm4","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",18.9617 -"inmcm4","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",19.0452 -"inmcm4","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",19.0927 -"inmcm4","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",19.0613 -"inmcm4","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",19.0216 -"inmcm4","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",19.1104 -"inmcm4","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",19.2498000000001 -"inmcm4","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",19.2626 -"inmcm4","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",19.174 -"inmcm4","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",19.2454 -"inmcm4","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",19.2846 -"inmcm4","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",19.2102 -"inmcm4","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",19.2763 -"inmcm4","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",19.2868 -"inmcm4","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",19.3231 -"inmcm4","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",19.2478 -"inmcm4","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",19.3593 -"inmcm4","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",19.4447 -"inmcm4","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",19.3929 -"inmcm4","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",19.3948 -"inmcm4","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",19.3941 -"inmcm4","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",19.5183 -"inmcm4","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",19.4042 -"inmcm4","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",19.5849 -"inmcm4","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",19.646 -"inmcm4","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",19.6892 -"inmcm4","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",19.7412 -"inmcm4","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",19.6611 -"inmcm4","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",19.8152 -"inmcm4","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",19.8494 -"inmcm4","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",19.8614 -"inmcm4","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",19.8959 -"inmcm4","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",19.9353 -"inmcm4","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",19.9953 -"inmcm4","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",19.9849 -"inmcm4","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",20.137 -"inmcm4","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",20.0435 -"inmcm4","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",20.0391 -"inmcm4","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",20.1939 -"inmcm4","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",20.1661 -"inmcm4","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",20.2799 -"inmcm4","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",20.3054 -"inmcm4","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",20.3054 -"inmcm4","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",20.3320000000001 -"inmcm4","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",20.3889 -"inmcm4","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",20.4344 -"inmcm4","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",20.4494 -"inmcm4","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",20.4408 -"inmcm4","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",20.4266 -"inmcm4","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",20.4637 -"inmcm4","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",20.6425 -"inmcm4","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",20.5617 -"inmcm4","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",20.6169 -"inmcm4","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",20.6356 -"inmcm4","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",20.5604 -"inmcm4","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",20.5886 -"inmcm4","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",20.6916000000001 -"inmcm4","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",20.7561 -"inmcm4","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",20.7727 -"inmcm4","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",20.7907 -"inmcm4","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",20.8714000000001 -"inmcm4","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",20.9914 -"inmcm4","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",20.8852 -"inmcm4","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",20.9545 -"inmcm4","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",20.972 -"inmcm4","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",20.9566 -"inmcm4","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",21.019 -"inmcm4","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",21.026 -"inmcm4","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",21.0955 -"inmcm4","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",21.1946 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",13.4116 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",13.450175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",13.5582 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",13.623825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",13.6127 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",13.609625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",13.634375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",13.627775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",13.6656 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",13.72395 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",13.7609 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",13.82285 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",13.721125 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",13.81115 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",13.851825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",13.87965 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",13.9383 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",13.9809 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",14.010525 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",13.9731 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",14.103175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",14.166325 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",14.174075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",14.219675 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",14.25435 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",14.281725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",14.392875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",14.311025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",14.421725 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",14.50295 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",14.580575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",14.5404 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",14.6179 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",14.630575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",14.68415 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",14.6202 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",14.77585 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",14.885925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",14.932625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",14.9551 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",14.94885 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",15.07185 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",15.138225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",15.200625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",15.22235 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",15.3015 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",15.374875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",15.44165 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",15.4954 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",15.460975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",15.596 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",15.559925 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",15.69985 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",15.809575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",15.788575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",15.805275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",15.92795 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",15.96785 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",16.094875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",16.14355 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",16.1696 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",16.1175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",16.22645 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",16.4286 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",16.522275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",16.419975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",16.4055 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",16.555025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",16.585075 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",16.617625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",16.6916 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",16.739825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",16.7938 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",16.90495 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",16.939775 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",17.0112 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",17.049225 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",17.118825 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",17.2015 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",17.262275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",17.16295 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",17.3167 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",17.386575 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",17.416475 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",17.598175 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",17.645875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",17.621875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",17.6477 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",17.715625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",17.7992 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",17.91805 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",18.005275 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",17.970425 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",18.031625 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",18.07565 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2101,"Simulated","C","global",18.3579 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2102,"Simulated","C","global",18.3202 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2103,"Simulated","C","global",18.2095 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2104,"Simulated","C","global",18.3341 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2105,"Simulated","C","global",18.4024 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2106,"Simulated","C","global",18.4685 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2107,"Simulated","C","global",18.6484 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2108,"Simulated","C","global",18.42 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2109,"Simulated","C","global",18.484 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2110,"Simulated","C","global",18.5687 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2111,"Simulated","C","global",18.688 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2112,"Simulated","C","global",18.6673 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2113,"Simulated","C","global",18.8852 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2114,"Simulated","C","global",18.7128 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2115,"Simulated","C","global",18.7791 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2116,"Simulated","C","global",18.7765 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2117,"Simulated","C","global",18.9167 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2118,"Simulated","C","global",19.0511 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2119,"Simulated","C","global",19.0644 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2120,"Simulated","C","global",19.148 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2121,"Simulated","C","global",19.2391 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2122,"Simulated","C","global",19.4971 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2123,"Simulated","C","global",19.375 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2124,"Simulated","C","global",19.5315000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2125,"Simulated","C","global",19.5734 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2126,"Simulated","C","global",19.504 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2127,"Simulated","C","global",19.4157 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2128,"Simulated","C","global",19.3974 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2129,"Simulated","C","global",19.5432 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2130,"Simulated","C","global",19.5343 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2131,"Simulated","C","global",19.6926 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2132,"Simulated","C","global",19.678 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2133,"Simulated","C","global",19.8706 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2134,"Simulated","C","global",19.8105 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2135,"Simulated","C","global",19.9043 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2136,"Simulated","C","global",19.7508 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2137,"Simulated","C","global",19.8949 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2138,"Simulated","C","global",20.089 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2139,"Simulated","C","global",20.182 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2140,"Simulated","C","global",20.1161 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2141,"Simulated","C","global",20.1878 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2142,"Simulated","C","global",19.9708 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2143,"Simulated","C","global",20.1621 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2144,"Simulated","C","global",20.1662 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2145,"Simulated","C","global",20.1611 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2146,"Simulated","C","global",20.2636 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2147,"Simulated","C","global",20.4267 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2148,"Simulated","C","global",20.5983 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2149,"Simulated","C","global",20.5237 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2150,"Simulated","C","global",20.6958 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2151,"Simulated","C","global",20.7372 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2152,"Simulated","C","global",20.5691 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2153,"Simulated","C","global",20.7678 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2154,"Simulated","C","global",20.8274 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2155,"Simulated","C","global",20.8627 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2156,"Simulated","C","global",20.9601 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2157,"Simulated","C","global",21.0101 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2158,"Simulated","C","global",20.8624 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2159,"Simulated","C","global",21.0411 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2160,"Simulated","C","global",21.1702 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2161,"Simulated","C","global",21.048 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2162,"Simulated","C","global",21.1932 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2163,"Simulated","C","global",21.1673 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2164,"Simulated","C","global",21.2139 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2165,"Simulated","C","global",21.4834 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2166,"Simulated","C","global",21.4733 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2167,"Simulated","C","global",21.3122 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2168,"Simulated","C","global",21.347 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2169,"Simulated","C","global",21.5866 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2170,"Simulated","C","global",21.5655 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2171,"Simulated","C","global",21.6961 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2172,"Simulated","C","global",21.6291000000001 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2173,"Simulated","C","global",21.4582 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2174,"Simulated","C","global",21.5603 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2175,"Simulated","C","global",21.7279 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2176,"Simulated","C","global",21.7799 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2177,"Simulated","C","global",21.7975 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2178,"Simulated","C","global",21.9505 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2179,"Simulated","C","global",21.9025 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2180,"Simulated","C","global",21.9928 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2181,"Simulated","C","global",22.0046 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2182,"Simulated","C","global",21.9309 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2183,"Simulated","C","global",22.0313 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2184,"Simulated","C","global",22.0553 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2185,"Simulated","C","global",21.9243 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2186,"Simulated","C","global",22.0931 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2187,"Simulated","C","global",22.0846 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2188,"Simulated","C","global",22.1254 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2189,"Simulated","C","global",22.0851 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2190,"Simulated","C","global",22.3865 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2191,"Simulated","C","global",22.3572 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2192,"Simulated","C","global",22.2195 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2193,"Simulated","C","global",22.3689 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2194,"Simulated","C","global",22.3395 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2195,"Simulated","C","global",22.465 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2196,"Simulated","C","global",22.4348 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2197,"Simulated","C","global",22.5716 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2198,"Simulated","C","global",22.6472 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2199,"Simulated","C","global",22.7875 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2200,"Simulated","C","global",22.8093 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2201,"Simulated","C","global",22.7589 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2202,"Simulated","C","global",22.7666 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2203,"Simulated","C","global",22.8308 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2204,"Simulated","C","global",22.8195 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2205,"Simulated","C","global",22.8506 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2206,"Simulated","C","global",22.8878 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2207,"Simulated","C","global",22.8287 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2208,"Simulated","C","global",22.7054 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2209,"Simulated","C","global",22.9904 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2210,"Simulated","C","global",22.9821 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2211,"Simulated","C","global",22.9492 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2212,"Simulated","C","global",22.8465 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2213,"Simulated","C","global",22.953 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2214,"Simulated","C","global",23.1594 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2215,"Simulated","C","global",23.3184 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2216,"Simulated","C","global",23.2717 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2217,"Simulated","C","global",23.2182 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2218,"Simulated","C","global",23.3484 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2219,"Simulated","C","global",23.3762 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2220,"Simulated","C","global",23.1864 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2221,"Simulated","C","global",23.2051 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2222,"Simulated","C","global",23.35 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2223,"Simulated","C","global",23.4811 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2224,"Simulated","C","global",23.4062 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2225,"Simulated","C","global",23.371 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2226,"Simulated","C","global",23.4653 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2227,"Simulated","C","global",23.5973 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2228,"Simulated","C","global",23.557 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2229,"Simulated","C","global",23.567 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2230,"Simulated","C","global",23.5688 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2231,"Simulated","C","global",23.7306 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2232,"Simulated","C","global",23.8779 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2233,"Simulated","C","global",23.7716 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2234,"Simulated","C","global",23.8247 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2235,"Simulated","C","global",23.9268 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2236,"Simulated","C","global",23.7396 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2237,"Simulated","C","global",23.6732 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2238,"Simulated","C","global",23.6213 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2239,"Simulated","C","global",23.8374 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2240,"Simulated","C","global",23.8819 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2241,"Simulated","C","global",23.8421 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2242,"Simulated","C","global",23.9766 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2243,"Simulated","C","global",23.8831 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2244,"Simulated","C","global",24.0128 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2245,"Simulated","C","global",24.1281 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2246,"Simulated","C","global",24.0587 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2247,"Simulated","C","global",23.8589 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2248,"Simulated","C","global",24.0046 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2249,"Simulated","C","global",24.1582 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2250,"Simulated","C","global",24.2009 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2251,"Simulated","C","global",24.2701 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2252,"Simulated","C","global",24.3095 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2253,"Simulated","C","global",24.1652 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2254,"Simulated","C","global",24.2143 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2255,"Simulated","C","global",24.3098 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2256,"Simulated","C","global",24.3613 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2257,"Simulated","C","global",24.3423 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2258,"Simulated","C","global",24.349 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2259,"Simulated","C","global",24.2715 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2260,"Simulated","C","global",24.3015 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2261,"Simulated","C","global",24.396 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2262,"Simulated","C","global",24.5107 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2263,"Simulated","C","global",24.4447 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2264,"Simulated","C","global",24.3823 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2265,"Simulated","C","global",24.2219 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2266,"Simulated","C","global",24.4952 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2267,"Simulated","C","global",24.6911 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2268,"Simulated","C","global",24.5536 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2269,"Simulated","C","global",24.4564 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2270,"Simulated","C","global",24.5537 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2271,"Simulated","C","global",24.7398 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2272,"Simulated","C","global",24.573 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2273,"Simulated","C","global",24.651 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2274,"Simulated","C","global",24.6148 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2275,"Simulated","C","global",24.6278 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2276,"Simulated","C","global",24.6803 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2277,"Simulated","C","global",24.6228 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2278,"Simulated","C","global",24.5926 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2279,"Simulated","C","global",24.4889 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2280,"Simulated","C","global",24.4623 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2281,"Simulated","C","global",24.4708 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2282,"Simulated","C","global",24.6945 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2283,"Simulated","C","global",24.6399 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2284,"Simulated","C","global",24.5544 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2285,"Simulated","C","global",24.7734 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2286,"Simulated","C","global",24.7337 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2287,"Simulated","C","global",24.6049 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2288,"Simulated","C","global",24.8296 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2289,"Simulated","C","global",24.9294 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2290,"Simulated","C","global",24.71 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2291,"Simulated","C","global",24.8219 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2292,"Simulated","C","global",24.8187 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2293,"Simulated","C","global",24.7338 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2294,"Simulated","C","global",24.8248 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2295,"Simulated","C","global",24.8763 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2296,"Simulated","C","global",24.9298 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2297,"Simulated","C","global",24.913 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2298,"Simulated","C","global",24.918 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2299,"Simulated","C","global",24.8816 -"IPSL-CM5A-LR","tas","temperature","tgav","rcp85",2300,"Simulated","C","global",24.8941 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-8.93537499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-8.64479999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-8.58344999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-8.52577499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-8.56362499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-8.56742499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-8.50202499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-8.57712499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-8.49087499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-8.20499999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-8.20624999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-8.31065 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-8.43492499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-8.36354999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-8.50542499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-8.16419999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-8.11124999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-8.16902499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-8.12434999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-8.30469999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-8.01157499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-7.94337499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-7.83932499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-7.78812499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-7.70434999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-7.92227499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-7.68809999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-7.63807499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-7.42704999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-7.52274999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-7.30139999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-7.47519999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-7.21969999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-7.40309999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-7.23229999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-7.57804999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-7.22532499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-7.01382499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-7.08034999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-6.92569999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-7.06989999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-6.75464999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-6.66637499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-6.64369999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-6.68509999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-6.56757499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-6.57647499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-6.55049999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-6.41757499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-6.54319999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-6.29229999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-6.29372499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-6.16292499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-5.86284999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-5.90174999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-5.94502499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-5.77407499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-5.76357499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-5.54787499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-5.53979999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-5.49332499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-5.67009999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-5.67217499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-5.09039999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-5.09894999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-5.33659999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-5.31774999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-5.15117499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-5.115625 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-5.02939999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-4.84512499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-4.99397499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-4.92522499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-4.92462499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-4.92092499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-4.76277499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-4.82359999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-4.59654999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-4.49527499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-4.47059999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-4.66772499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-4.50907499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-4.31677499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-4.19672499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-4.07059999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-4.06739999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-4.33202499999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-4.19399999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-4.20407499999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-3.93342499999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-3.59164999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-3.65327499999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-3.74049999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-3.518925 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-3.58029999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2101,"Simulated","C","HL",-3.22149999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2102,"Simulated","C","HL",-3.38579999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2103,"Simulated","C","HL",-3.70349999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2104,"Simulated","C","HL",-3.69959999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2105,"Simulated","C","HL",-3.32599999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2106,"Simulated","C","HL",-2.9862 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2107,"Simulated","C","HL",-2.69649999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2108,"Simulated","C","HL",-3.21179999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2109,"Simulated","C","HL",-3.03899999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2110,"Simulated","C","HL",-2.90009999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2111,"Simulated","C","HL",-2.73099999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2112,"Simulated","C","HL",-2.54449999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2113,"Simulated","C","HL",-2.315 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2114,"Simulated","C","HL",-2.86349999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2115,"Simulated","C","HL",-3.25729999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2116,"Simulated","C","HL",-2.99709999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2117,"Simulated","C","HL",-2.65609999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2118,"Simulated","C","HL",-2.71889999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2119,"Simulated","C","HL",-3.02379999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2120,"Simulated","C","HL",-2.97219999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2121,"Simulated","C","HL",-2.6515 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2122,"Simulated","C","HL",-1.87 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2123,"Simulated","C","HL",-1.95519999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2124,"Simulated","C","HL",-2.0136 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2125,"Simulated","C","HL",-2.21549999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2126,"Simulated","C","HL",-2.37399999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2127,"Simulated","C","HL",-2.4676 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2128,"Simulated","C","HL",-2.29689999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2129,"Simulated","C","HL",-2.04769999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2130,"Simulated","C","HL",-2.04999999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2131,"Simulated","C","HL",-2.0301 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2132,"Simulated","C","HL",-2.06529999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2133,"Simulated","C","HL",-2.08779999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2134,"Simulated","C","HL",-2.21899999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2135,"Simulated","C","HL",-2.0872 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2136,"Simulated","C","HL",-2.52539999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2137,"Simulated","C","HL",-1.74329999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2138,"Simulated","C","HL",-1.54509999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2139,"Simulated","C","HL",-1.6096 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2140,"Simulated","C","HL",-1.47639999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2141,"Simulated","C","HL",-1.63799999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2142,"Simulated","C","HL",-1.79509999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2143,"Simulated","C","HL",-1.33139999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2144,"Simulated","C","HL",-1.59549999999996 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2145,"Simulated","C","HL",-1.6583 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2146,"Simulated","C","HL",-1.73399999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2147,"Simulated","C","HL",-1.26319999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2148,"Simulated","C","HL",-1.13959999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2149,"Simulated","C","HL",-0.963599999999985 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2150,"Simulated","C","HL",-1.13069999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2151,"Simulated","C","HL",-1.02079999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2152,"Simulated","C","HL",-1.00289999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2153,"Simulated","C","HL",-1.1574 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2154,"Simulated","C","HL",-0.989199999999983 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2155,"Simulated","C","HL",-0.740199999999959 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2156,"Simulated","C","HL",-0.86099999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2157,"Simulated","C","HL",-0.959199999999953 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2158,"Simulated","C","HL",-1.09349999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2159,"Simulated","C","HL",-0.629699999999957 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2160,"Simulated","C","HL",-0.259799999999984 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2161,"Simulated","C","HL",-0.648299999999949 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2162,"Simulated","C","HL",-0.489099999999951 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2163,"Simulated","C","HL",-0.455600000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2164,"Simulated","C","HL",-0.323999999999955 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2165,"Simulated","C","HL",-0.0421999999999798 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2166,"Simulated","C","HL",-0.0622999999999934 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2167,"Simulated","C","HL",-0.170099999999991 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2168,"Simulated","C","HL",-0.154799999999966 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2169,"Simulated","C","HL",-0.147199999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2170,"Simulated","C","HL",0.1404 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2171,"Simulated","C","HL",0.302600000000041 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2172,"Simulated","C","HL",0.0470000000000255 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2173,"Simulated","C","HL",-0.305700000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2174,"Simulated","C","HL",-0.201999999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2175,"Simulated","C","HL",0.255899999999997 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2176,"Simulated","C","HL",0.28490000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2177,"Simulated","C","HL",0.247700000000009 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2178,"Simulated","C","HL",0.377900000000011 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2179,"Simulated","C","HL",0.0940000000000509 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2180,"Simulated","C","HL",0.501800000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2181,"Simulated","C","HL",0.153700000000015 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2182,"Simulated","C","HL",0.558600000000013 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2183,"Simulated","C","HL",0.269800000000032 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2184,"Simulated","C","HL",0.311599999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2185,"Simulated","C","HL",0.222700000000032 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2186,"Simulated","C","HL",0.582899999999995 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2187,"Simulated","C","HL",0.857600000000048 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2188,"Simulated","C","HL",0.831400000000031 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2189,"Simulated","C","HL",0.663499999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2190,"Simulated","C","HL",0.682299999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2191,"Simulated","C","HL",0.806100000000015 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2192,"Simulated","C","HL",0.871100000000013 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2193,"Simulated","C","HL",0.88820000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2194,"Simulated","C","HL",0.725099999999998 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2195,"Simulated","C","HL",1.01580000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2196,"Simulated","C","HL",0.958900000000028 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2197,"Simulated","C","HL",0.941700000000026 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2198,"Simulated","C","HL",1.28070000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2199,"Simulated","C","HL",1.5899 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2200,"Simulated","C","HL",1.39490000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2201,"Simulated","C","HL",1.43040000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2202,"Simulated","C","HL",0.923200000000008 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2203,"Simulated","C","HL",1.50940000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2204,"Simulated","C","HL",1.5324 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2205,"Simulated","C","HL",1.50420000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2206,"Simulated","C","HL",1.45300000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2207,"Simulated","C","HL",1.47630000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2208,"Simulated","C","HL",1.26530000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2209,"Simulated","C","HL",1.57620000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2210,"Simulated","C","HL",1.43780000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2211,"Simulated","C","HL",1.27660000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2212,"Simulated","C","HL",1.28320000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2213,"Simulated","C","HL",1.52200000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2214,"Simulated","C","HL",1.62100000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2215,"Simulated","C","HL",1.48470000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2216,"Simulated","C","HL",1.88400000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2217,"Simulated","C","HL",1.887 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2218,"Simulated","C","HL",1.99900000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2219,"Simulated","C","HL",2.05500000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2220,"Simulated","C","HL",1.68460000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2221,"Simulated","C","HL",1.9579 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2222,"Simulated","C","HL",1.82420000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2223,"Simulated","C","HL",2.01090000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2224,"Simulated","C","HL",2.16230000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2225,"Simulated","C","HL",2.233 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2226,"Simulated","C","HL",2.46700000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2227,"Simulated","C","HL",2.29349999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2228,"Simulated","C","HL",2.31440000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2229,"Simulated","C","HL",2.38170000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2230,"Simulated","C","HL",2.11850000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2231,"Simulated","C","HL",2.56180000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2232,"Simulated","C","HL",2.53320000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2233,"Simulated","C","HL",2.72070000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2234,"Simulated","C","HL",2.97830000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2235,"Simulated","C","HL",3.04420000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2236,"Simulated","C","HL",2.5958 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2237,"Simulated","C","HL",2.63900000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2238,"Simulated","C","HL",2.64100000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2239,"Simulated","C","HL",2.62600000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2240,"Simulated","C","HL",2.54040000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2241,"Simulated","C","HL",2.59890000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2242,"Simulated","C","HL",2.87430000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2243,"Simulated","C","HL",2.63320000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2244,"Simulated","C","HL",2.85910000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2245,"Simulated","C","HL",2.95050000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2246,"Simulated","C","HL",2.87360000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2247,"Simulated","C","HL",2.41550000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2248,"Simulated","C","HL",2.79830000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2249,"Simulated","C","HL",2.8802 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2250,"Simulated","C","HL",2.79910000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2251,"Simulated","C","HL",2.82980000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2252,"Simulated","C","HL",3.25540000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2253,"Simulated","C","HL",2.98500000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2254,"Simulated","C","HL",3.09910000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2255,"Simulated","C","HL",3.05500000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2256,"Simulated","C","HL",3.00460000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2257,"Simulated","C","HL",3.30400000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2258,"Simulated","C","HL",3.02510000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2259,"Simulated","C","HL",2.82650000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2260,"Simulated","C","HL",2.7226 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2261,"Simulated","C","HL",3.26240000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2262,"Simulated","C","HL",3.10599999999999 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2263,"Simulated","C","HL",3.02680000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2264,"Simulated","C","HL",3.07480000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2265,"Simulated","C","HL",2.77210000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2266,"Simulated","C","HL",3.1345 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2267,"Simulated","C","HL",3.47140000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2268,"Simulated","C","HL",3.66060000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2269,"Simulated","C","HL",3.38840000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2270,"Simulated","C","HL",3.2681 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2271,"Simulated","C","HL",3.55350000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2272,"Simulated","C","HL",3.52850000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2273,"Simulated","C","HL",3.3501 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2274,"Simulated","C","HL",3.39430000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2275,"Simulated","C","HL",3.32370000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2276,"Simulated","C","HL",3.5822 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2277,"Simulated","C","HL",3.68210000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2278,"Simulated","C","HL",3.66030000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2279,"Simulated","C","HL",3.69310000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2280,"Simulated","C","HL",3.19980000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2281,"Simulated","C","HL",3.2842 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2282,"Simulated","C","HL",3.44 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2283,"Simulated","C","HL",3.52430000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2284,"Simulated","C","HL",3.3519 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2285,"Simulated","C","HL",3.77850000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2286,"Simulated","C","HL",3.76980000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2287,"Simulated","C","HL",3.45860000000005 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2288,"Simulated","C","HL",3.45120000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2289,"Simulated","C","HL",3.53200000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2290,"Simulated","C","HL",3.5763 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2291,"Simulated","C","HL",3.72640000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2292,"Simulated","C","HL",3.64260000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2293,"Simulated","C","HL",3.39440000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2294,"Simulated","C","HL",3.52160000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2295,"Simulated","C","HL",3.88460000000003 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2296,"Simulated","C","HL",3.93620000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2297,"Simulated","C","HL",3.70320000000004 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2298,"Simulated","C","HL",3.71690000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2299,"Simulated","C","HL",3.76530000000002 -"IPSL-CM5A-LR","tas","temperature","tgav_HL","rcp85",2300,"Simulated","C","HL",3.92140000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",18.366575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",18.349325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",18.467575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",18.535025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",18.52985 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",18.5269 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",18.542675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",18.551275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",18.578325 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",18.586175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",18.631675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",18.7304 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",18.6337 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",18.727875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",18.80905 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",18.767425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",18.827275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",18.892075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",18.918425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",18.91265 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",19.00665 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",19.06855 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",19.055025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",19.0994 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",19.123075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",19.204925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",19.288775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",19.17775 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",19.266175 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",19.386625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",19.43245 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",19.421875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",19.45985 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",19.51605 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",19.5437 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",19.5421 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",19.654125 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",19.741625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",19.813425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",19.806675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",19.8309 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",19.911375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",19.97275 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",20.04405 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",20.07975 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",20.15045 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",20.242 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",20.3179 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",20.354025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",20.3398 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",20.4492 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",20.405425 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",20.5474 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",20.614825 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",20.5979 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",20.627825 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",20.739825 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",20.786075 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",20.8936 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",20.951225 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",20.97285 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",20.948375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",21.0818 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",21.199825 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",21.31615 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",21.243875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",21.22195 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",21.3678 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",21.396625 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",21.41725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",21.466725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",21.558675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",21.609375 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",21.745025 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",21.786725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",21.8389 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",21.89895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",21.933525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",22.01205 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",22.08095 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",22.00315 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",22.155925 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",22.198725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",22.2085 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",22.402525 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",22.46005 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",22.4895 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",22.4904 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",22.575675 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",22.6177 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",22.6872 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",22.80725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",22.78415 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",22.809875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",22.8772 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2101,"Simulated","C","LL",23.1424 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2102,"Simulated","C","LL",23.1328 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2103,"Simulated","C","LL",23.068 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2104,"Simulated","C","LL",23.2192 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2105,"Simulated","C","LL",23.2198 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2106,"Simulated","C","LL",23.2253 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2107,"Simulated","C","LL",23.381 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2108,"Simulated","C","LL",23.216 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2109,"Simulated","C","LL",23.256 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2110,"Simulated","C","LL",23.3288 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2111,"Simulated","C","LL",23.4368 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2112,"Simulated","C","LL",23.3701 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2113,"Simulated","C","LL",23.5857 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2114,"Simulated","C","LL",23.4964000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2115,"Simulated","C","LL",23.6647 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2116,"Simulated","C","LL",23.604 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2117,"Simulated","C","LL",23.6997 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2118,"Simulated","C","LL",23.8779 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2119,"Simulated","C","LL",23.9615 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2120,"Simulated","C","LL",24.0523 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2121,"Simulated","C","LL",24.0924 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2122,"Simulated","C","LL",24.2344000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2123,"Simulated","C","LL",24.1042 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2124,"Simulated","C","LL",24.3082 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2125,"Simulated","C","LL",24.4042 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2126,"Simulated","C","LL",24.3546 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2127,"Simulated","C","LL",24.2674 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2128,"Simulated","C","LL",24.2072 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2129,"Simulated","C","LL",24.33 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2130,"Simulated","C","LL",24.3197 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2131,"Simulated","C","LL",24.5086 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2132,"Simulated","C","LL",24.4986 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2133,"Simulated","C","LL",24.7391 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2134,"Simulated","C","LL",24.6945 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2135,"Simulated","C","LL",24.78 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2136,"Simulated","C","LL",24.6897 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2137,"Simulated","C","LL",24.6923 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2138,"Simulated","C","LL",24.8854 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2139,"Simulated","C","LL",25.0133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2140,"Simulated","C","LL",24.9033 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2141,"Simulated","C","LL",25.0266 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2142,"Simulated","C","LL",24.7965 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2143,"Simulated","C","LL",24.9272 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2144,"Simulated","C","LL",24.9909 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2145,"Simulated","C","LL",24.9985 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2146,"Simulated","C","LL",25.1407 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2147,"Simulated","C","LL",25.2355 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2148,"Simulated","C","LL",25.4177 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2149,"Simulated","C","LL",25.2875 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2150,"Simulated","C","LL",25.5348 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2151,"Simulated","C","LL",25.561 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2152,"Simulated","C","LL",25.3517000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2153,"Simulated","C","LL",25.6286 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2154,"Simulated","C","LL",25.6643 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2155,"Simulated","C","LL",25.6522000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2156,"Simulated","C","LL",25.7978 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2157,"Simulated","C","LL",25.8809 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2158,"Simulated","C","LL",25.73 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2159,"Simulated","C","LL",25.8457 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2160,"Simulated","C","LL",25.9214 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2161,"Simulated","C","LL",25.8582 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2162,"Simulated","C","LL",26.0003 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2163,"Simulated","C","LL",25.9613000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2164,"Simulated","C","LL",25.9888 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2165,"Simulated","C","LL",26.2556 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2166,"Simulated","C","LL",26.2479 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2167,"Simulated","C","LL",26.0748 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2168,"Simulated","C","LL",26.1138 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2169,"Simulated","C","LL",26.405 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2170,"Simulated","C","LL",26.3155 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2171,"Simulated","C","LL",26.439 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2172,"Simulated","C","LL",26.414 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2173,"Simulated","C","LL",26.2833 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2174,"Simulated","C","LL",26.3852 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2175,"Simulated","C","LL",26.4883 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2176,"Simulated","C","LL",26.5454 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2177,"Simulated","C","LL",26.575 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2178,"Simulated","C","LL",26.7331 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2179,"Simulated","C","LL",26.7374 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2180,"Simulated","C","LL",26.7573 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2181,"Simulated","C","LL",26.8491 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2182,"Simulated","C","LL",26.6692 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2183,"Simulated","C","LL",26.8558 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2184,"Simulated","C","LL",26.8759 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2185,"Simulated","C","LL",26.7356 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2186,"Simulated","C","LL",26.8618 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2187,"Simulated","C","LL",26.7906 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2188,"Simulated","C","LL",26.8462 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2189,"Simulated","C","LL",26.8343 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2190,"Simulated","C","LL",27.1983 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2191,"Simulated","C","LL",27.1351 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2192,"Simulated","C","LL",26.9523 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2193,"Simulated","C","LL",27.1312 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2194,"Simulated","C","LL",27.1315 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2195,"Simulated","C","LL",27.2202 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2196,"Simulated","C","LL",27.196 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2197,"Simulated","C","LL",27.3669 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2198,"Simulated","C","LL",27.3842 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2199,"Simulated","C","LL",27.487 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2200,"Simulated","C","LL",27.5567 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2201,"Simulated","C","LL",27.4874 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2202,"Simulated","C","LL",27.6092 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2203,"Simulated","C","LL",27.5577 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2204,"Simulated","C","LL",27.5389 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2205,"Simulated","C","LL",27.583 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2206,"Simulated","C","LL",27.6399 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2207,"Simulated","C","LL",27.5624 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2208,"Simulated","C","LL",27.4586 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2209,"Simulated","C","LL",27.7379 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2210,"Simulated","C","LL",27.7584 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2211,"Simulated","C","LL",27.7541000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2212,"Simulated","C","LL",27.6271 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2213,"Simulated","C","LL",27.7043 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2214,"Simulated","C","LL",27.9344 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2215,"Simulated","C","LL",28.1588 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2216,"Simulated","C","LL",28.0133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2217,"Simulated","C","LL",27.9473 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2218,"Simulated","C","LL",28.0814 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2219,"Simulated","C","LL",28.103 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2220,"Simulated","C","LL",27.9534 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2221,"Simulated","C","LL",27.9156 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2222,"Simulated","C","LL",28.1223 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2223,"Simulated","C","LL",28.2412 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2224,"Simulated","C","LL",28.116 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2225,"Simulated","C","LL",28.0571 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2226,"Simulated","C","LL",28.1207 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2227,"Simulated","C","LL",28.3204 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2228,"Simulated","C","LL",28.2663 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2229,"Simulated","C","LL",28.2638 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2230,"Simulated","C","LL",28.3243000000001 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2231,"Simulated","C","LL",28.4236 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2232,"Simulated","C","LL",28.6099 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2233,"Simulated","C","LL",28.4384 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2234,"Simulated","C","LL",28.4463 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2235,"Simulated","C","LL",28.5565 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2236,"Simulated","C","LL",28.4272 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2237,"Simulated","C","LL",28.3365 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2238,"Simulated","C","LL",28.2726 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2239,"Simulated","C","LL",28.54 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2240,"Simulated","C","LL",28.6131 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2241,"Simulated","C","LL",28.5517 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2242,"Simulated","C","LL",28.655 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2243,"Simulated","C","LL",28.5942 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2244,"Simulated","C","LL",28.7026 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2245,"Simulated","C","LL",28.8232 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2246,"Simulated","C","LL",28.7554 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2247,"Simulated","C","LL",28.6128 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2248,"Simulated","C","LL",28.7058 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2249,"Simulated","C","LL",28.8755 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2250,"Simulated","C","LL",28.9456 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2251,"Simulated","C","LL",29.0232 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2252,"Simulated","C","LL",28.977 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2253,"Simulated","C","LL",28.8608 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2254,"Simulated","C","LL",28.8955 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2255,"Simulated","C","LL",29.0219 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2256,"Simulated","C","LL",29.0959 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2257,"Simulated","C","LL",29.0063 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2258,"Simulated","C","LL",29.0764 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2259,"Simulated","C","LL",29.0257 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2260,"Simulated","C","LL",29.0854 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2261,"Simulated","C","LL",29.0812 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2262,"Simulated","C","LL",29.2561 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2263,"Simulated","C","LL",29.1929 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2264,"Simulated","C","LL",29.1061 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2265,"Simulated","C","LL",28.9772 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2266,"Simulated","C","LL",29.2307 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2267,"Simulated","C","LL",29.3953 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2268,"Simulated","C","LL",29.1856 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2269,"Simulated","C","LL",29.1271 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2270,"Simulated","C","LL",29.2725 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2271,"Simulated","C","LL",29.4368 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2272,"Simulated","C","LL",29.2385 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2273,"Simulated","C","LL",29.3732 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2274,"Simulated","C","LL",29.3193 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2275,"Simulated","C","LL",29.3508 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2276,"Simulated","C","LL",29.3577 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2277,"Simulated","C","LL",29.2653 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2278,"Simulated","C","LL",29.2333 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2279,"Simulated","C","LL",29.0993 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2280,"Simulated","C","LL",29.176 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2281,"Simulated","C","LL",29.1677 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2282,"Simulated","C","LL",29.4066 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2283,"Simulated","C","LL",29.3212 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2284,"Simulated","C","LL",29.2549 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2285,"Simulated","C","LL",29.4279 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2286,"Simulated","C","LL",29.3813 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2287,"Simulated","C","LL",29.293 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2288,"Simulated","C","LL",29.5691 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2289,"Simulated","C","LL",29.6732 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2290,"Simulated","C","LL",29.3952 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2291,"Simulated","C","LL",29.4986 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2292,"Simulated","C","LL",29.5133 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2293,"Simulated","C","LL",29.4646 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2294,"Simulated","C","LL",29.5475 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2295,"Simulated","C","LL",29.5301 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2296,"Simulated","C","LL",29.5841 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2297,"Simulated","C","LL",29.6151 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2298,"Simulated","C","LL",29.6183 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2299,"Simulated","C","LL",29.5631 -"IPSL-CM5A-LR","tas","temperature","tgav_LL","rcp85",2300,"Simulated","C","LL",29.5437 -"MIROC-ESM","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",14.202 -"MIROC-ESM","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",14.3933 -"MIROC-ESM","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",14.4654 -"MIROC-ESM","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",14.3291 -"MIROC-ESM","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",14.2502 -"MIROC-ESM","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",14.2864 -"MIROC-ESM","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",14.4749 -"MIROC-ESM","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",14.4236 -"MIROC-ESM","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",14.3401 -"MIROC-ESM","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",14.5606 -"MIROC-ESM","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.689 -"MIROC-ESM","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.5875 -"MIROC-ESM","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",14.724 -"MIROC-ESM","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",14.8304 -"MIROC-ESM","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",14.834 -"MIROC-ESM","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",14.9858 -"MIROC-ESM","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",14.944 -"MIROC-ESM","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",14.9551 -"MIROC-ESM","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",14.9809 -"MIROC-ESM","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",15.1635 -"MIROC-ESM","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",15.3027 -"MIROC-ESM","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",15.3563 -"MIROC-ESM","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",15.3131 -"MIROC-ESM","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",15.2473 -"MIROC-ESM","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",15.2658 -"MIROC-ESM","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",15.3517000000001 -"MIROC-ESM","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",15.4028 -"MIROC-ESM","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",15.6376 -"MIROC-ESM","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",15.6446 -"MIROC-ESM","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",15.5945 -"MIROC-ESM","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",15.5796 -"MIROC-ESM","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",15.6128 -"MIROC-ESM","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",15.7303 -"MIROC-ESM","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",15.8503 -"MIROC-ESM","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",15.8299 -"MIROC-ESM","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",15.81 -"MIROC-ESM","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",15.9122 -"MIROC-ESM","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",15.9305 -"MIROC-ESM","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",15.9086 -"MIROC-ESM","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",15.9003 -"MIROC-ESM","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",16.0445 -"MIROC-ESM","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",16.1329 -"MIROC-ESM","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",15.9927 -"MIROC-ESM","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",16.1295 -"MIROC-ESM","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",16.2941 -"MIROC-ESM","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",16.2357 -"MIROC-ESM","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",16.3408 -"MIROC-ESM","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",16.4829 -"MIROC-ESM","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",16.5165 -"MIROC-ESM","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",16.529 -"MIROC-ESM","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",16.5744 -"MIROC-ESM","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",16.5754 -"MIROC-ESM","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",16.7171 -"MIROC-ESM","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",16.6278 -"MIROC-ESM","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",16.7808 -"MIROC-ESM","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",16.8489 -"MIROC-ESM","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",16.7892000000001 -"MIROC-ESM","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",16.8458 -"MIROC-ESM","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",16.9736 -"MIROC-ESM","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",17.1673 -"MIROC-ESM","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",17.1814 -"MIROC-ESM","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",17.1506 -"MIROC-ESM","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",17.2497 -"MIROC-ESM","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",17.2576 -"MIROC-ESM","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",17.3111 -"MIROC-ESM","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",17.3238 -"MIROC-ESM","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",17.5517 -"MIROC-ESM","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",17.6927 -"MIROC-ESM","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",17.6813 -"MIROC-ESM","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",17.7063 -"MIROC-ESM","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",17.8522 -"MIROC-ESM","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",17.8572 -"MIROC-ESM","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",17.9471 -"MIROC-ESM","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",17.9174 -"MIROC-ESM","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",18.028 -"MIROC-ESM","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",18.1986 -"MIROC-ESM","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",18.2906 -"MIROC-ESM","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",18.3187 -"MIROC-ESM","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",18.4178 -"MIROC-ESM","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",18.4348 -"MIROC-ESM","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",18.3991 -"MIROC-ESM","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",18.5519 -"MIROC-ESM","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",18.6567 -"MIROC-ESM","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",18.6935 -"MIROC-ESM","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",18.7291 -"MIROC-ESM","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",18.7422 -"MIROC-ESM","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",18.7572 -"MIROC-ESM","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",18.8449 -"MIROC-ESM","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",18.8323 -"MIROC-ESM","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",19.0052 -"MIROC-ESM","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",19.1262 -"MIROC-ESM","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",19.3307 -"MIROC-ESM","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",19.2294 -"MIROC-ESM","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",19.2384 -"MIROC-ESM","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",19.5266 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-8.91229999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-8.7715 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-8.63200000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-8.8372 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-8.75529999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-8.86269999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-8.43189999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-8.44299999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-9.0025 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-8.17849999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-8.24559999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-8.16229999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-7.74779999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-7.92589999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-7.60759999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-7.29289999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-7.6807 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-7.69279999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-7.42749999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-7.10899999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-7.01869999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-6.78739999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-7.05949999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-7.24709999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-6.82619999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-6.83799999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-6.488 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-6.42499999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-6.46359999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-6.59639999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-6.64979999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-6.49309999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-6.50029999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-6.0378 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-6.0582 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-6.24679999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-6.04519999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-5.79699999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-5.68869999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-5.7122 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-5.80579999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-5.99629999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-6.15259999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-5.92089999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-5.6327 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-5.63599999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-5.63049999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-5.3657 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-4.96749999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-4.78999999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-4.96349999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-4.99289999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-4.74599999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-5.1782 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-4.9348 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-4.65349999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-4.66319999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-4.58699999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-4.45099999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-4.21179999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-4.19739999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-4.39179999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-4.2013 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-4.30779999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-3.95729999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-3.96749999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-3.82139999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-3.61219999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-3.56129999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-3.5505 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-3.17229999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-3.24160000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-3.09769999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-3.09829999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-3.00729999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-2.90749999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-2.69599999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-2.697 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-2.7373 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-2.73159999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-2.55859999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-2.83909999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-2.46849999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-2.47649999999999 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-2.3519 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-2.23229999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-2.26049999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-2.07119999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-1.91209999999995 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-1.90949999999998 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-1.74160000000001 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-1.52819999999997 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-1.6431 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-1.76939999999996 -"MIROC-ESM","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-1.58599999999996 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",19.028 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",19.2298 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",19.2878 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",19.1659 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",19.0535 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",19.1197 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",19.2576 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",19.1979 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",19.2138 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",19.3082 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",19.4775 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",19.3374 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",19.4158 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",19.5816 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",19.5196 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",19.6374 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",19.6678 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",19.6838 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",19.6596 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",19.8138 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",19.9632 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",19.9796 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",19.9842 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",19.9438 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",19.8784 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",19.9847 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",19.9734 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",20.2441 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",20.2605 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",20.2277 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",20.2209 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",20.2282 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",20.3719 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",20.4203 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",20.3999 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",20.4152 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",20.4966 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",20.4669 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",20.4179 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",20.4127 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",20.6066 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",20.7533 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",20.6164 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",20.7333 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",20.8722 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",20.8023 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",20.9281 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",21.0446 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",21.0022 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",20.9802 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",21.0713 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",21.0787 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",21.1984 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",21.1806 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",21.3148 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",21.3384 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",21.2683 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",21.3207 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",21.4468 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",21.631 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",21.6451 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",21.6484 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",21.7284 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",21.7602 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",21.7517 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",21.7692 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",22.0141 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",22.1409 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",22.1165 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",22.1445000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",22.2419 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",22.2624 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",22.341 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",22.3053 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",22.4199 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",22.6053 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",22.6724 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",22.7066 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",22.8347 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",22.8542 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",22.7749 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",23.0181 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",23.0674 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",23.1135 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",23.1306 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",23.1214000000001 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",23.1455 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",23.212 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",23.1635 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",23.3719 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",23.4831 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",23.6858 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",23.5873 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",23.6246 -"MIROC-ESM","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",23.9347 -"NorESM1-ME","tas","temperature","tgav","rcp85",2006,"Simulated","C","global",13.5787 -"NorESM1-ME","tas","temperature","tgav","rcp85",2007,"Simulated","C","global",13.5921 -"NorESM1-ME","tas","temperature","tgav","rcp85",2008,"Simulated","C","global",13.7509 -"NorESM1-ME","tas","temperature","tgav","rcp85",2009,"Simulated","C","global",13.5164 -"NorESM1-ME","tas","temperature","tgav","rcp85",2010,"Simulated","C","global",13.6274 -"NorESM1-ME","tas","temperature","tgav","rcp85",2011,"Simulated","C","global",13.7141 -"NorESM1-ME","tas","temperature","tgav","rcp85",2012,"Simulated","C","global",13.5264 -"NorESM1-ME","tas","temperature","tgav","rcp85",2013,"Simulated","C","global",13.6631 -"NorESM1-ME","tas","temperature","tgav","rcp85",2014,"Simulated","C","global",13.6847 -"NorESM1-ME","tas","temperature","tgav","rcp85",2015,"Simulated","C","global",13.7778 -"NorESM1-ME","tas","temperature","tgav","rcp85",2016,"Simulated","C","global",14.0388 -"NorESM1-ME","tas","temperature","tgav","rcp85",2017,"Simulated","C","global",14.0104 -"NorESM1-ME","tas","temperature","tgav","rcp85",2018,"Simulated","C","global",13.8509 -"NorESM1-ME","tas","temperature","tgav","rcp85",2019,"Simulated","C","global",13.7721 -"NorESM1-ME","tas","temperature","tgav","rcp85",2020,"Simulated","C","global",13.7922 -"NorESM1-ME","tas","temperature","tgav","rcp85",2021,"Simulated","C","global",13.9866 -"NorESM1-ME","tas","temperature","tgav","rcp85",2022,"Simulated","C","global",14.0192 -"NorESM1-ME","tas","temperature","tgav","rcp85",2023,"Simulated","C","global",13.9267 -"NorESM1-ME","tas","temperature","tgav","rcp85",2024,"Simulated","C","global",13.9482 -"NorESM1-ME","tas","temperature","tgav","rcp85",2025,"Simulated","C","global",14.067 -"NorESM1-ME","tas","temperature","tgav","rcp85",2026,"Simulated","C","global",13.9889 -"NorESM1-ME","tas","temperature","tgav","rcp85",2027,"Simulated","C","global",13.9444 -"NorESM1-ME","tas","temperature","tgav","rcp85",2028,"Simulated","C","global",14.1017000000001 -"NorESM1-ME","tas","temperature","tgav","rcp85",2029,"Simulated","C","global",14.2011 -"NorESM1-ME","tas","temperature","tgav","rcp85",2030,"Simulated","C","global",14.1762 -"NorESM1-ME","tas","temperature","tgav","rcp85",2031,"Simulated","C","global",14.1005 -"NorESM1-ME","tas","temperature","tgav","rcp85",2032,"Simulated","C","global",14.0943 -"NorESM1-ME","tas","temperature","tgav","rcp85",2033,"Simulated","C","global",14.3634 -"NorESM1-ME","tas","temperature","tgav","rcp85",2034,"Simulated","C","global",14.3631 -"NorESM1-ME","tas","temperature","tgav","rcp85",2035,"Simulated","C","global",14.4049 -"NorESM1-ME","tas","temperature","tgav","rcp85",2036,"Simulated","C","global",14.3031 -"NorESM1-ME","tas","temperature","tgav","rcp85",2037,"Simulated","C","global",14.3431 -"NorESM1-ME","tas","temperature","tgav","rcp85",2038,"Simulated","C","global",14.3755 -"NorESM1-ME","tas","temperature","tgav","rcp85",2039,"Simulated","C","global",14.3416 -"NorESM1-ME","tas","temperature","tgav","rcp85",2040,"Simulated","C","global",14.4541 -"NorESM1-ME","tas","temperature","tgav","rcp85",2041,"Simulated","C","global",14.4337 -"NorESM1-ME","tas","temperature","tgav","rcp85",2042,"Simulated","C","global",14.5378 -"NorESM1-ME","tas","temperature","tgav","rcp85",2043,"Simulated","C","global",14.6361 -"NorESM1-ME","tas","temperature","tgav","rcp85",2044,"Simulated","C","global",14.6894 -"NorESM1-ME","tas","temperature","tgav","rcp85",2045,"Simulated","C","global",14.6677 -"NorESM1-ME","tas","temperature","tgav","rcp85",2046,"Simulated","C","global",14.6528 -"NorESM1-ME","tas","temperature","tgav","rcp85",2047,"Simulated","C","global",14.7306 -"NorESM1-ME","tas","temperature","tgav","rcp85",2048,"Simulated","C","global",14.8332 -"NorESM1-ME","tas","temperature","tgav","rcp85",2049,"Simulated","C","global",14.8446 -"NorESM1-ME","tas","temperature","tgav","rcp85",2050,"Simulated","C","global",14.8734 -"NorESM1-ME","tas","temperature","tgav","rcp85",2051,"Simulated","C","global",14.9261 -"NorESM1-ME","tas","temperature","tgav","rcp85",2052,"Simulated","C","global",14.9317 -"NorESM1-ME","tas","temperature","tgav","rcp85",2053,"Simulated","C","global",15.0438 -"NorESM1-ME","tas","temperature","tgav","rcp85",2054,"Simulated","C","global",15.0018 -"NorESM1-ME","tas","temperature","tgav","rcp85",2055,"Simulated","C","global",14.9993 -"NorESM1-ME","tas","temperature","tgav","rcp85",2056,"Simulated","C","global",15.0342 -"NorESM1-ME","tas","temperature","tgav","rcp85",2057,"Simulated","C","global",15.19 -"NorESM1-ME","tas","temperature","tgav","rcp85",2058,"Simulated","C","global",15.3843 -"NorESM1-ME","tas","temperature","tgav","rcp85",2059,"Simulated","C","global",15.3742 -"NorESM1-ME","tas","temperature","tgav","rcp85",2060,"Simulated","C","global",15.273 -"NorESM1-ME","tas","temperature","tgav","rcp85",2061,"Simulated","C","global",15.4052 -"NorESM1-ME","tas","temperature","tgav","rcp85",2062,"Simulated","C","global",15.5661 -"NorESM1-ME","tas","temperature","tgav","rcp85",2063,"Simulated","C","global",15.513 -"NorESM1-ME","tas","temperature","tgav","rcp85",2064,"Simulated","C","global",15.5474 -"NorESM1-ME","tas","temperature","tgav","rcp85",2065,"Simulated","C","global",15.5308 -"NorESM1-ME","tas","temperature","tgav","rcp85",2066,"Simulated","C","global",15.5682 -"NorESM1-ME","tas","temperature","tgav","rcp85",2067,"Simulated","C","global",15.6305 -"NorESM1-ME","tas","temperature","tgav","rcp85",2068,"Simulated","C","global",15.6958 -"NorESM1-ME","tas","temperature","tgav","rcp85",2069,"Simulated","C","global",15.8399 -"NorESM1-ME","tas","temperature","tgav","rcp85",2070,"Simulated","C","global",15.7553 -"NorESM1-ME","tas","temperature","tgav","rcp85",2071,"Simulated","C","global",15.7936 -"NorESM1-ME","tas","temperature","tgav","rcp85",2072,"Simulated","C","global",15.8538 -"NorESM1-ME","tas","temperature","tgav","rcp85",2073,"Simulated","C","global",15.9938 -"NorESM1-ME","tas","temperature","tgav","rcp85",2074,"Simulated","C","global",16.1745 -"NorESM1-ME","tas","temperature","tgav","rcp85",2075,"Simulated","C","global",16.0713 -"NorESM1-ME","tas","temperature","tgav","rcp85",2076,"Simulated","C","global",15.983 -"NorESM1-ME","tas","temperature","tgav","rcp85",2077,"Simulated","C","global",16.1045 -"NorESM1-ME","tas","temperature","tgav","rcp85",2078,"Simulated","C","global",16.0903 -"NorESM1-ME","tas","temperature","tgav","rcp85",2079,"Simulated","C","global",16.1574 -"NorESM1-ME","tas","temperature","tgav","rcp85",2080,"Simulated","C","global",16.215 -"NorESM1-ME","tas","temperature","tgav","rcp85",2081,"Simulated","C","global",16.2614 -"NorESM1-ME","tas","temperature","tgav","rcp85",2082,"Simulated","C","global",16.2582 -"NorESM1-ME","tas","temperature","tgav","rcp85",2083,"Simulated","C","global",16.465 -"NorESM1-ME","tas","temperature","tgav","rcp85",2084,"Simulated","C","global",16.5571 -"NorESM1-ME","tas","temperature","tgav","rcp85",2085,"Simulated","C","global",16.6301 -"NorESM1-ME","tas","temperature","tgav","rcp85",2086,"Simulated","C","global",16.4647000000001 -"NorESM1-ME","tas","temperature","tgav","rcp85",2087,"Simulated","C","global",16.3301 -"NorESM1-ME","tas","temperature","tgav","rcp85",2088,"Simulated","C","global",16.4732 -"NorESM1-ME","tas","temperature","tgav","rcp85",2089,"Simulated","C","global",16.6094000000001 -"NorESM1-ME","tas","temperature","tgav","rcp85",2090,"Simulated","C","global",16.611 -"NorESM1-ME","tas","temperature","tgav","rcp85",2091,"Simulated","C","global",16.7349 -"NorESM1-ME","tas","temperature","tgav","rcp85",2092,"Simulated","C","global",16.7527 -"NorESM1-ME","tas","temperature","tgav","rcp85",2093,"Simulated","C","global",16.8445 -"NorESM1-ME","tas","temperature","tgav","rcp85",2094,"Simulated","C","global",16.8906 -"NorESM1-ME","tas","temperature","tgav","rcp85",2095,"Simulated","C","global",16.8266 -"NorESM1-ME","tas","temperature","tgav","rcp85",2096,"Simulated","C","global",16.824 -"NorESM1-ME","tas","temperature","tgav","rcp85",2097,"Simulated","C","global",16.8869 -"NorESM1-ME","tas","temperature","tgav","rcp85",2098,"Simulated","C","global",16.9896 -"NorESM1-ME","tas","temperature","tgav","rcp85",2099,"Simulated","C","global",17.0441 -"NorESM1-ME","tas","temperature","tgav","rcp85",2100,"Simulated","C","global",17.3341 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2006,"Simulated","C","HL",-11.0749 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2007,"Simulated","C","HL",-11.2804 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2008,"Simulated","C","HL",-10.9907 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2009,"Simulated","C","HL",-11.5236 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2010,"Simulated","C","HL",-11.1799999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2011,"Simulated","C","HL",-11.0757 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2012,"Simulated","C","HL",-11.6268 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2013,"Simulated","C","HL",-11.1383 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2014,"Simulated","C","HL",-11.1057 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2015,"Simulated","C","HL",-10.7883 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2016,"Simulated","C","HL",-10.4578 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2017,"Simulated","C","HL",-10.5314 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2018,"Simulated","C","HL",-10.6307 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2019,"Simulated","C","HL",-10.7921 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2020,"Simulated","C","HL",-11.0531 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2021,"Simulated","C","HL",-10.7208 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2022,"Simulated","C","HL",-10.561 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2023,"Simulated","C","HL",-10.3616 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2024,"Simulated","C","HL",-10.6596 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2025,"Simulated","C","HL",-10.6023 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2026,"Simulated","C","HL",-10.8027 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2027,"Simulated","C","HL",-10.5529 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2028,"Simulated","C","HL",-10.2986 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2029,"Simulated","C","HL",-10.1952 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2030,"Simulated","C","HL",-10.3289 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2031,"Simulated","C","HL",-10.2932 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2032,"Simulated","C","HL",-10.5414 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2033,"Simulated","C","HL",-10.2019 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2034,"Simulated","C","HL",-10.1659 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2035,"Simulated","C","HL",-9.95589999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2036,"Simulated","C","HL",-10.2441 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2037,"Simulated","C","HL",-10.0063 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2038,"Simulated","C","HL",-10.0861 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2039,"Simulated","C","HL",-10.109 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2040,"Simulated","C","HL",-9.68629999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2041,"Simulated","C","HL",-10.2479 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2042,"Simulated","C","HL",-9.90879999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2043,"Simulated","C","HL",-9.66359999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2044,"Simulated","C","HL",-9.71299999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2045,"Simulated","C","HL",-9.6807 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2046,"Simulated","C","HL",-9.65789999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2047,"Simulated","C","HL",-9.43029999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2048,"Simulated","C","HL",-9.63279999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2049,"Simulated","C","HL",-9.38499999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2050,"Simulated","C","HL",-9.63279999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2051,"Simulated","C","HL",-9.18429999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2052,"Simulated","C","HL",-9.2355 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2053,"Simulated","C","HL",-9.13579999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2054,"Simulated","C","HL",-9.36249999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2055,"Simulated","C","HL",-9.05239999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2056,"Simulated","C","HL",-9.12709999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2057,"Simulated","C","HL",-8.94549999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2058,"Simulated","C","HL",-8.63549999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2059,"Simulated","C","HL",-8.55989999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2060,"Simulated","C","HL",-8.69689999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2061,"Simulated","C","HL",-8.57589999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2062,"Simulated","C","HL",-8.05489999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2063,"Simulated","C","HL",-8.32380000000001 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2064,"Simulated","C","HL",-8.23649999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2065,"Simulated","C","HL",-8.47559999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2066,"Simulated","C","HL",-8.23869999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2067,"Simulated","C","HL",-8.06279999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2068,"Simulated","C","HL",-8.06449999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2069,"Simulated","C","HL",-7.89959999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2070,"Simulated","C","HL",-8.03579999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2071,"Simulated","C","HL",-7.84449999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2072,"Simulated","C","HL",-7.72059999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2073,"Simulated","C","HL",-7.70519999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2074,"Simulated","C","HL",-7.23109999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2075,"Simulated","C","HL",-7.20549999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2076,"Simulated","C","HL",-7.54719999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2077,"Simulated","C","HL",-7.1764 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2078,"Simulated","C","HL",-7.19899999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2079,"Simulated","C","HL",-7.00849999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2080,"Simulated","C","HL",-6.8023 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2081,"Simulated","C","HL",-7.15949999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2082,"Simulated","C","HL",-7.15319999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2083,"Simulated","C","HL",-6.75729999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2084,"Simulated","C","HL",-6.45159999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2085,"Simulated","C","HL",-6.358 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2086,"Simulated","C","HL",-6.91679999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2087,"Simulated","C","HL",-7.28379999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2088,"Simulated","C","HL",-6.82709999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2089,"Simulated","C","HL",-6.54789999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2090,"Simulated","C","HL",-6.7998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2091,"Simulated","C","HL",-6.40799999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2092,"Simulated","C","HL",-6.26779999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2093,"Simulated","C","HL",-6.04649999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2094,"Simulated","C","HL",-6.25939999999997 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2095,"Simulated","C","HL",-6.44039999999995 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2096,"Simulated","C","HL",-6.22409999999996 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2097,"Simulated","C","HL",-6.10399999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2098,"Simulated","C","HL",-6.56889999999999 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2099,"Simulated","C","HL",-6.30419999999998 -"NorESM1-ME","tas","temperature","tgav_HL","rcp85",2100,"Simulated","C","HL",-5.7056 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2006,"Simulated","C","LL",19.0445 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2007,"Simulated","C","LL",19.1065 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2008,"Simulated","C","LL",19.2361 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2009,"Simulated","C","LL",19.0676 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2010,"Simulated","C","LL",19.1275 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2011,"Simulated","C","LL",19.2102 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2012,"Simulated","C","LL",19.1027 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2013,"Simulated","C","LL",19.1615 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2014,"Simulated","C","LL",19.1808 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2015,"Simulated","C","LL",19.2242 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2016,"Simulated","C","LL",19.4697 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2017,"Simulated","C","LL",19.4514 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2018,"Simulated","C","LL",19.2786 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2019,"Simulated","C","LL",19.2179 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2020,"Simulated","C","LL",19.3005 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2021,"Simulated","C","LL",19.4643 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2022,"Simulated","C","LL",19.4687 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2023,"Simulated","C","LL",19.3116 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2024,"Simulated","C","LL",19.404 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2025,"Simulated","C","LL",19.5363 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2026,"Simulated","C","LL",19.4851 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2027,"Simulated","C","LL",19.3754 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2028,"Simulated","C","LL",19.5113 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2029,"Simulated","C","LL",19.6098 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2030,"Simulated","C","LL",19.6091 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2031,"Simulated","C","LL",19.5086 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2032,"Simulated","C","LL",19.5562 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2033,"Simulated","C","LL",19.8096 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2034,"Simulated","C","LL",19.8012 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2035,"Simulated","C","LL",19.8057 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2036,"Simulated","C","LL",19.7452 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2037,"Simulated","C","LL",19.7414 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2038,"Simulated","C","LL",19.7987 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2039,"Simulated","C","LL",19.7624 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2040,"Simulated","C","LL",19.8062 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2041,"Simulated","C","LL",19.9056 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2042,"Simulated","C","LL",19.9576 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2043,"Simulated","C","LL",20.0234 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2044,"Simulated","C","LL",20.0994 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2045,"Simulated","C","LL",20.0651 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2046,"Simulated","C","LL",20.0419 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2047,"Simulated","C","LL",20.0867 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2048,"Simulated","C","LL",20.2569 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2049,"Simulated","C","LL",20.2157 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2050,"Simulated","C","LL",20.3058 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2051,"Simulated","C","LL",20.271 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2052,"Simulated","C","LL",20.289 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2053,"Simulated","C","LL",20.4038 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2054,"Simulated","C","LL",20.4028 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2055,"Simulated","C","LL",20.331 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2056,"Simulated","C","LL",20.3903 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2057,"Simulated","C","LL",20.5404 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2058,"Simulated","C","LL",20.7091 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2059,"Simulated","C","LL",20.6799 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2060,"Simulated","C","LL",20.5866 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2061,"Simulated","C","LL",20.7213 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2062,"Simulated","C","LL",20.8026 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2063,"Simulated","C","LL",20.7973 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2064,"Simulated","C","LL",20.8200000000001 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2065,"Simulated","C","LL",20.8527 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2066,"Simulated","C","LL",20.8458 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2067,"Simulated","C","LL",20.8829 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2068,"Simulated","C","LL",20.9631 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2069,"Simulated","C","LL",21.1025 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2070,"Simulated","C","LL",21.0294 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2071,"Simulated","C","LL",21.0338 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2072,"Simulated","C","LL",21.0799 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2073,"Simulated","C","LL",21.2476 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2074,"Simulated","C","LL",21.3633 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2075,"Simulated","C","LL",21.2316 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2076,"Simulated","C","LL",21.1992 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2077,"Simulated","C","LL",21.2655 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2078,"Simulated","C","LL",21.2533 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2079,"Simulated","C","LL",21.293 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2080,"Simulated","C","LL",21.3176 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2081,"Simulated","C","LL",21.4535 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2082,"Simulated","C","LL",21.4482 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2083,"Simulated","C","LL",21.6131 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2084,"Simulated","C","LL",21.658 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2085,"Simulated","C","LL",21.7264 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2086,"Simulated","C","LL",21.648 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2087,"Simulated","C","LL",21.5649 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2088,"Simulated","C","LL",21.6387 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2089,"Simulated","C","LL",21.7431 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2090,"Simulated","C","LL",21.8009 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2091,"Simulated","C","LL",21.8654 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2092,"Simulated","C","LL",21.856 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2093,"Simulated","C","LL",21.9192 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2094,"Simulated","C","LL",22.0228 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2095,"Simulated","C","LL",21.9846 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2096,"Simulated","C","LL",21.9335 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2097,"Simulated","C","LL",21.9838 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2098,"Simulated","C","LL",22.2121 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2099,"Simulated","C","LL",22.2201 -"NorESM1-ME","tas","temperature","tgav_LL","rcp85",2100,"Simulated","C","LL",22.4418 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp85/summary.csv b/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp85/summary.csv deleted file mode 100644 index 1e7e299e7..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/CMIP5/Hector_models_tas/rcp85/summary.csv +++ /dev/null @@ -1,886 +0,0 @@ -year,variable,ctag,vtag,scenario,units,type,latbox,error,error_min,error_max,meanvalue,value,nmodels,model -2006,tas,temperature,tgav,rcp85,C,Simulated,global,0.555121975,13.4116,15.0207,14.25550778,14.202,1,CMIP5 -2006,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.104652058,-11.0749,-7.7293,-9.330568889,-8.935375,1,CMIP5 -2006,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.707024621,18.366575,20.3123,19.40489944,19.1854,1,CMIP5 -2007,tas,temperature,tgav,rcp85,C,Simulated,global,0.577387863,13.450175,15.1295,14.26466611,14.3638,1,CMIP5 -2007,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.118368424,-11.2804,-7.8156,-9.319468889,-8.8601,1,CMIP5 -2007,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.728690378,18.349325,20.4277,19.41342944,19.2298,1,CMIP5 -2008,tas,temperature,tgav,rcp85,C,Simulated,global,0.562051329,13.5582,15.2107,14.35127222,14.4654,1,CMIP5 -2008,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.054014413,-10.9907,-7.7937,-9.174487222,-8.6744,1,CMIP5 -2008,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.722688649,18.467575,20.4317,19.48779278,19.2878,1,CMIP5 -2009,tas,temperature,tgav,rcp85,C,Simulated,global,0.599352522,13.5164,15.1682,14.35626111,14.3291,1,CMIP5 -2009,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.17404906,-11.5236,-7.7471,-9.180381111,-8.8372,1,CMIP5 -2009,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.725739695,18.535025,20.4337,19.49468556,19.2895,1,CMIP5 -2010,tas,temperature,tgav,rcp85,C,Simulated,global,0.575528791,13.6127,15.1788,14.37112056,14.2502,1,CMIP5 -2010,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.134925411,-11.18,-7.5845,-9.078385556,-8.7553,1,CMIP5 -2010,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.713050835,18.52985,20.394,19.49078056,19.3013,1,CMIP5 -2011,tas,temperature,tgav,rcp85,C,Simulated,global,0.573175655,13.609625,15.1829,14.37384,14.2864,1,CMIP5 -2011,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.051110706,-11.0757,-7.7498,-9.130115556,-8.8627,1,CMIP5 -2011,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.724189044,18.5269,20.3931,19.50562556,19.2381,1,CMIP5 -2012,tas,temperature,tgav,rcp85,C,Simulated,global,0.571224664,13.5264,15.0722,14.35952222,14.4749,1,CMIP5 -2012,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.25670816,-11.6268,-7.6124,-9.148015,-8.6466,1,CMIP5 -2012,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.69343517,18.542675,20.3187,19.49240944,19.2774,1,CMIP5 -2013,tas,temperature,tgav,rcp85,C,Simulated,global,0.564182642,13.627775,15.1302,14.38358278,14.4236,1,CMIP5 -2013,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.116181405,-11.1383,-7.809,-9.149878333,-8.6181,1,CMIP5 -2013,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.710900471,18.551275,20.3704,19.52218111,19.3887,1,CMIP5 -2014,tas,temperature,tgav,rcp85,C,Simulated,global,0.559977322,13.6656,15.15614,14.40374889,14.3401,1,CMIP5 -2014,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.159221115,-11.1057,-7.5128,-9.152291667,-9.0025,1,CMIP5 -2014,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.715167893,18.578325,20.39676,19.54618444,19.3771,1,CMIP5 -2015,tas,temperature,tgav,rcp85,C,Simulated,global,0.570851071,13.72395,15.2482,14.49895278,14.5606,1,CMIP5 -2015,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.124973859,-10.7883,-7.784475,-8.875552778,-8.205,1,CMIP5 -2015,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.735627678,18.586175,20.46284,19.60169611,19.4186,1,CMIP5 -2016,tas,temperature,tgav,rcp85,C,Simulated,global,0.529676001,13.7609,15.27766,14.54996778,14.689,1,CMIP5 -2016,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.051482182,-10.4578,-7.542775,-8.906656111,-8.6572,1,CMIP5 -2016,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.693552569,18.631675,20.48344,19.67085444,19.4775,1,CMIP5 -2017,tas,temperature,tgav,rcp85,C,Simulated,global,0.543025872,13.82285,15.234,14.54222556,14.5875,1,CMIP5 -2017,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.063883433,-10.5314,-7.3877,-8.848756667,-8.8921,1,CMIP5 -2017,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.70154294,18.7095,20.482,19.64935167,19.4514,1,CMIP5 -2018,tas,temperature,tgav,rcp85,C,Simulated,global,0.621962616,13.721125,15.3001,14.53983611,14.724,1,CMIP5 -2018,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.038433822,-10.6307,-7.729325,-8.874803333,-9.0096,1,CMIP5 -2018,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.764422086,18.6337,20.5506,19.65268389,19.4158,1,CMIP5 -2019,tas,temperature,tgav,rcp85,C,Simulated,global,0.651881689,13.7721,15.4094,14.59473444,14.8304,1,CMIP5 -2019,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.080051918,-10.7921,-7.4718,-8.793962222,-8.7777,1,CMIP5 -2019,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.780731353,18.6277,20.6279,19.70148,19.5816,1,CMIP5 -2020,tas,temperature,tgav,rcp85,C,Simulated,global,0.631330964,13.7922,15.4027,14.60199222,14.834,1,CMIP5 -2020,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.222447139,-11.0531,-7.3187,-8.818003889,-8.6672,1,CMIP5 -2020,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.747481276,18.7652,20.6083,19.71629111,19.5196,1,CMIP5 -2021,tas,temperature,tgav,rcp85,C,Simulated,global,0.590347764,13.87965,15.39848,14.65956167,14.955725,1,CMIP5 -2021,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.240933626,-10.7208,-7.2929,-8.753422778,-8.4918,1,CMIP5 -2021,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.737346368,18.767425,20.6396,19.77153333,19.6374,1,CMIP5 -2022,tas,temperature,tgav,rcp85,C,Simulated,global,0.576112362,13.9383,15.52448,14.68298667,14.944,1,CMIP5 -2022,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.178483706,-10.561,-7.4926,-8.729507778,-8.2071,1,CMIP5 -2022,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.735497434,18.7473,20.6923,19.79493056,19.6678,1,CMIP5 -2023,tas,temperature,tgav,rcp85,C,Simulated,global,0.626322658,13.9267,15.54526,14.69103444,14.926,1,CMIP5 -2023,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.089031267,-10.3616,-7.4834,-8.760609444,-8.6521,1,CMIP5 -2023,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.761506823,18.7932,20.7838,19.81140389,19.6838,1,CMIP5 -2024,tas,temperature,tgav,rcp85,C,Simulated,global,0.603164819,13.9482,15.59688,14.72557556,14.950375,1,CMIP5 -2024,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.136965916,-10.6596,-7.4275,-8.655507778,-8.5147,1,CMIP5 -2024,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.717893965,18.9084,20.74842,19.83127444,19.6596,1,CMIP5 -2025,tas,temperature,tgav,rcp85,C,Simulated,global,0.584599545,13.9731,15.60614,14.77837111,15.0238,1,CMIP5 -2025,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.290311248,-10.6023,-7.109,-8.658390556,-8.3047,1,CMIP5 -2025,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.709896231,18.91265,20.76116,19.89560667,19.8138,1,CMIP5 -2026,tas,temperature,tgav,rcp85,C,Simulated,global,0.620784807,13.9889,15.6213,14.81523889,15.1095,1,CMIP5 -2026,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.29554354,-10.8027,-7.0187,-8.587318889,-8.3043,1,CMIP5 -2026,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.723115172,18.9477,20.83448,19.92491444,19.9632,1,CMIP5 -2027,tas,temperature,tgav,rcp85,C,Simulated,global,0.666995125,13.9444,15.78436,14.90046778,15.156425,1,CMIP5 -2027,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.222542221,-10.5529,-6.7874,-8.327282222,-8.1303,1,CMIP5 -2027,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.766198744,18.9001,20.93938,19.97253944,19.9796,1,CMIP5 -2028,tas,temperature,tgav,rcp85,C,Simulated,global,0.622852957,14.1017,15.7436,14.95060556,15.185875,1,CMIP5 -2028,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.144047976,-10.2986,-7.034325,-8.316914444,-8.2073,1,CMIP5 -2028,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.748033998,18.9556,20.91404,20.03126,19.9842,1,CMIP5 -2029,tas,temperature,tgav,rcp85,C,Simulated,global,0.587713365,14.2011,15.7435,14.92348333,15.2052,1,CMIP5 -2029,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.184633951,-10.1952,-6.876075,-8.345513333,-8.0015,1,CMIP5 -2029,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.711478811,19.0549,20.90822,20.00346611,19.9438,1,CMIP5 -2030,tas,temperature,tgav,rcp85,C,Simulated,global,0.64618576,14.1762,15.80408,14.92696444,15.2658,1,CMIP5 -2030,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.209209632,-10.3289,-6.8262,-8.322305556,-8.2936,1,CMIP5 -2030,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.764014151,19.0009,20.95892,20.00353278,19.8784,1,CMIP5 -2031,tas,temperature,tgav,rcp85,C,Simulated,global,0.628751876,14.1005,15.8363,14.96875278,15.29035,1,CMIP5 -2031,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.23075049,-10.2932,-6.838,-8.314771667,-8.072,1,CMIP5 -2031,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.753137017,18.9617,21.01916,20.05269833,19.9847,1,CMIP5 -2032,tas,temperature,tgav,rcp85,C,Simulated,global,0.638634284,14.0943,15.99066,15.03039833,15.3108,1,CMIP5 -2032,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.389593128,-10.5414,-6.488,-8.17648,-7.8163,1,CMIP5 -2032,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.750176179,19.0452,21.1417,20.09836667,19.9734,1,CMIP5 -2033,tas,temperature,tgav,rcp85,C,Simulated,global,0.634409104,14.311025,15.93398,15.09465611,15.3934,1,CMIP5 -2033,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.262074504,-10.2019,-6.425,-8.037501667,-7.638075,1,CMIP5 -2033,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.748115434,19.0927,21.07132,20.14573833,20.2441,1,CMIP5 -2034,tas,temperature,tgav,rcp85,C,Simulated,global,0.665093747,14.3631,15.94178,15.14719778,15.422475,1,CMIP5 -2034,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.245544441,-10.1659,-6.4636,-7.977393333,-7.5721,1,CMIP5 -2034,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.787536777,19.0613,21.1067,20.19587833,20.2605,1,CMIP5 -2035,tas,temperature,tgav,rcp85,C,Simulated,global,0.649371415,14.4049,15.9791,15.15064722,15.492075,1,CMIP5 -2035,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.144531148,-9.9559,-6.586525,-7.983317222,-8.2145,1,CMIP5 -2035,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.754310467,19.0216,21.11164,20.20264333,20.2277,1,CMIP5 -2036,tas,temperature,tgav,rcp85,C,Simulated,global,0.628158003,14.3031,15.9981,15.17158056,15.511,1,CMIP5 -2036,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.267646381,-10.2441,-6.45625,-8.003641111,-7.8093,1,CMIP5 -2036,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.733607129,19.1104,21.15786,20.23150944,20.2209,1,CMIP5 -2037,tas,temperature,tgav,rcp85,C,Simulated,global,0.654998135,14.3431,16.137,15.22792222,15.5672,1,CMIP5 -2037,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.223770184,-10.0063,-6.312525,-7.888465,-7.505,1,CMIP5 -2037,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.747077649,19.2498,21.26934,20.27447944,20.2282,1,CMIP5 -2038,tas,temperature,tgav,rcp85,C,Simulated,global,0.681523451,14.3755,16.1379,15.26478056,15.5992,1,CMIP5 -2038,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.205220427,-10.0861,-6.307275,-7.920521667,-7.8748,1,CMIP5 -2038,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.762056545,19.2626,21.28544,20.32694889,20.3719,1,CMIP5 -2039,tas,temperature,tgav,rcp85,C,Simulated,global,0.725019189,14.3416,16.16506,15.31022333,15.727875,1,CMIP5 -2039,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.214082542,-10.109,-6.0378,-7.728662222,-7.9057,1,CMIP5 -2039,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.78580903,19.174,21.2935,20.34148889,20.4203,1,CMIP5 -2040,tas,temperature,tgav,rcp85,C,Simulated,global,0.691068544,14.4541,16.23586,15.35309833,15.738675,1,CMIP5 -2040,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.117093551,-9.6863,-6.0582,-7.625419444,-7.5922,1,CMIP5 -2040,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.767936413,19.2454,21.36034,20.37081556,20.3999,1,CMIP5 -2041,tas,temperature,tgav,rcp85,C,Simulated,global,0.707595958,14.4337,16.25276,15.324065,15.7135,1,CMIP5 -2041,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.274477112,-10.2479,-6.19365,-7.825153333,-8.2275,1,CMIP5 -2041,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.760545421,19.2846,21.3835,20.37955556,20.4152,1,CMIP5 -2042,tas,temperature,tgav,rcp85,C,Simulated,global,0.70968939,14.5378,16.36444,15.37779611,15.6993,1,CMIP5 -2042,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.211050931,-9.9088,-6.0452,-7.704290556,-7.96424,1,CMIP5 -2042,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.773202812,19.2102,21.44396,20.41872889,20.4966,1,CMIP5 -2043,tas,temperature,tgav,rcp85,C,Simulated,global,0.668450524,14.6361,16.41768,15.44193111,15.7274,1,CMIP5 -2043,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.308194503,-9.6636,-5.797,-7.646998889,-7.98944,1,CMIP5 -2043,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.749990865,19.2763,21.5136,20.48428611,20.4669,1,CMIP5 -2044,tas,temperature,tgav,rcp85,C,Simulated,global,0.66489074,14.6894,16.5099,15.50187222,15.8513,1,CMIP5 -2044,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.300062679,-9.713,-5.6887,-7.538621111,-7.5703,1,CMIP5 -2044,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.77728427,19.2868,21.62808,20.53352833,20.4179,1,CMIP5 -2045,tas,temperature,tgav,rcp85,C,Simulated,global,0.695264424,14.6677,16.4892,15.52618056,15.9003,1,CMIP5 -2045,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.27762193,-9.6807,-5.7122,-7.508197222,-7.7167,1,CMIP5 -2045,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.790507006,19.3231,21.5623,20.55616111,20.4127,1,CMIP5 -2046,tas,temperature,tgav,rcp85,C,Simulated,global,0.739178532,14.599,16.52766,15.53002611,15.8507,1,CMIP5 -2046,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.232896456,-9.6579,-5.8015,-7.502017778,-7.527,1,CMIP5 -2046,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.812727649,19.2478,21.62522,20.55909667,20.6066,1,CMIP5 -2047,tas,temperature,tgav,rcp85,C,Simulated,global,0.728708509,14.7194,16.6611,15.58841667,15.7835,1,CMIP5 -2047,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.160298715,-9.4303,-5.749675,-7.389258333,-7.3836,1,CMIP5 -2047,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.795911256,19.3593,21.76566,20.60543444,20.7533,1,CMIP5 -2048,tas,temperature,tgav,rcp85,C,Simulated,global,0.69509436,14.8316,16.6767,15.63680556,15.8595,1,CMIP5 -2048,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.23397283,-9.6328,-5.518825,-7.376913333,-7.71,1,CMIP5 -2048,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.765454182,19.4447,21.77162,20.66213278,20.6164,1,CMIP5 -2049,tas,temperature,tgav,rcp85,C,Simulated,global,0.709435253,14.8025,16.6917,15.69913889,16.0676,1,CMIP5 -2049,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.203318781,-9.385,-5.55785,-7.289556667,-7.5798,1,CMIP5 -2049,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.797463683,19.3929,21.78892,20.718605,20.7333,1,CMIP5 -2050,tas,temperature,tgav,rcp85,C,Simulated,global,0.73841695,14.854,16.7989,15.77473056,16.0861,1,CMIP5 -2050,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.367917271,-9.6328,-5.35805,-7.213883333,-7.336,1,CMIP5 -2050,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.824184433,19.3948,21.86294,20.79423222,20.8722,1,CMIP5 -2051,tas,temperature,tgav,rcp85,C,Simulated,global,0.750072204,14.7889,16.88592,15.76261611,15.9898,1,CMIP5 -2051,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.278607561,-9.1843,-5.159275,-7.16161,-7.35804,1,CMIP5 -2051,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.822963116,19.3941,21.9478,20.76811667,20.8023,1,CMIP5 -2052,tas,temperature,tgav,rcp85,C,Simulated,global,0.724249483,14.8785,16.82604,15.810185,16.0357,1,CMIP5 -2052,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.299411591,-9.2355,-5.12395,-7.143267222,-7.2402,1,CMIP5 -2052,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.776973209,19.5183,21.85836,20.82150667,20.9281,1,CMIP5 -2053,tas,temperature,tgav,rcp85,C,Simulated,global,0.739657598,14.8778,16.81074,15.88871,16.213,1,CMIP5 -2053,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.292010658,-9.1358,-5.115575,-6.961403889,-7.1458,1,CMIP5 -2053,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.820989504,19.4042,21.8603,20.87758889,21.0446,1,CMIP5 -2054,tas,temperature,tgav,rcp85,C,Simulated,global,0.780694129,14.9843,16.92226,15.92564278,16.274,1,CMIP5 -2054,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.391574459,-9.3625,-4.9675,-6.93898,-7.25752,1,CMIP5 -2054,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.817979089,19.5849,21.97072,20.91853278,21.0022,1,CMIP5 -2055,tas,temperature,tgav,rcp85,C,Simulated,global,0.783068511,14.9993,17.03604,15.98017667,16.3128,1,CMIP5 -2055,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.327298314,-9.0524,-4.79,-6.767083333,-7.1606,1,CMIP5 -2055,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.825666975,19.646,22.09412,20.94763278,20.9802,1,CMIP5 -2056,tas,temperature,tgav,rcp85,C,Simulated,global,0.733570941,15.0342,17.01862,16.02213556,16.2741,1,CMIP5 -2056,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.340220433,-9.1271,-4.9635,-6.752334444,-6.9799,1,CMIP5 -2056,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.785180603,19.6892,22.06296,20.99540111,21.0713,1,CMIP5 -2057,tas,temperature,tgav,rcp85,C,Simulated,global,0.750242492,15.1849,17.09418,16.08461722,16.4709,1,CMIP5 -2057,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.296232444,-8.9455,-4.815425,-6.678814444,-6.7881,1,CMIP5 -2057,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.827578719,19.7412,22.13932,21.05570222,21.0787,1,CMIP5 -2058,tas,temperature,tgav,rcp85,C,Simulated,global,0.794899909,15.1204,17.19916,16.15944833,16.5329,1,CMIP5 -2058,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.279458318,-8.6355,-4.600525,-6.531825556,-6.91748,1,CMIP5 -2058,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.85803588,19.6611,22.23446,21.11477889,21.1984,1,CMIP5 -2059,tas,temperature,tgav,rcp85,C,Simulated,global,0.776332057,15.2719,17.2552,16.20365,16.4274,1,CMIP5 -2059,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.263028487,-8.5599,-4.488375,-6.540209444,-6.93146,1,CMIP5 -2059,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.827368536,19.8152,22.3051,21.17004444,21.1806,1,CMIP5 -2060,tas,temperature,tgav,rcp85,C,Simulated,global,0.785778981,15.273,17.29774,16.25991833,16.5071,1,CMIP5 -2060,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.26679357,-8.6969,-4.4452,-6.320292222,-6.7113,1,CMIP5 -2060,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.826330786,19.8494,22.32276,21.19112889,21.3148,1,CMIP5 -2061,tas,temperature,tgav,rcp85,C,Simulated,global,0.747838266,15.3288,17.2953,16.29115833,16.5166,1,CMIP5 -2061,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.259134114,-8.5759,-4.4995,-6.334218333,-6.7448,1,CMIP5 -2061,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.797488071,19.8614,22.32988,21.23235056,21.3384,1,CMIP5 -2062,tas,temperature,tgav,rcp85,C,Simulated,global,0.79916012,15.289,17.46632,16.31720222,16.5474,1,CMIP5 -2062,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.176341252,-8.0549,-4.5746,-6.291108333,-6.4745,1,CMIP5 -2062,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.845193288,19.8959,22.4649,21.25501111,21.2683,1,CMIP5 -2063,tas,temperature,tgav,rcp85,C,Simulated,global,0.790466404,15.4325,17.47304,16.37899333,16.581,1,CMIP5 -2063,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.258510625,-8.3238,-4.3954,-6.220283889,-6.51528,1,CMIP5 -2063,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.830346728,19.9353,22.48156,21.31462333,21.3207,1,CMIP5 -2064,tas,temperature,tgav,rcp85,C,Simulated,global,0.784464461,15.4681,17.52136,16.44293444,16.6448,1,CMIP5 -2064,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.257424709,-8.2365,-4.26495,-6.108060556,-6.41672,1,CMIP5 -2064,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.81509078,19.9953,22.51938,21.367545,21.4468,1,CMIP5 -2065,tas,temperature,tgav,rcp85,C,Simulated,global,0.825051845,15.4892,17.5213,16.50120278,16.8369,1,CMIP5 -2065,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.368975383,-8.4756,-4.105725,-6.016765,-6.2076,1,CMIP5 -2065,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.839257833,19.9849,22.52608,21.41879222,21.631,1,CMIP5 -2066,tas,temperature,tgav,rcp85,C,Simulated,global,0.813459137,15.5682,17.55382,16.57578,16.8635,1,CMIP5 -2066,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.278409636,-8.2387,-4.1974,-5.902353889,-6.2349,1,CMIP5 -2066,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.847133858,20.137,22.56516,21.48493444,21.6451,1,CMIP5 -2067,tas,temperature,tgav,rcp85,C,Simulated,global,0.826380375,15.6237,17.68086,16.59556222,16.7745,1,CMIP5 -2067,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.240940151,-8.0628,-4.029425,-5.880658333,-6.2125,1,CMIP5 -2067,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.879220376,20.0435,22.66952,21.503955,21.6484,1,CMIP5 -2068,tas,temperature,tgav,rcp85,C,Simulated,global,0.799088607,15.6654,17.73024,16.64496,16.7596,1,CMIP5 -2068,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.339939604,-8.0645,-3.94825,-5.872811667,-6.18748,1,CMIP5 -2068,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.855117885,20.0391,22.72398,21.56312556,21.7284,1,CMIP5 -2069,tas,temperature,tgav,rcp85,C,Simulated,global,0.756028339,15.7431,17.72206,16.71522611,16.8654,1,CMIP5 -2069,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.274972781,-7.8996,-3.795175,-5.742150556,-6.12698,1,CMIP5 -2069,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.809586242,20.1939,22.70148,21.61929222,21.7602,1,CMIP5 -2070,tas,temperature,tgav,rcp85,C,Simulated,global,0.845278037,15.5978,17.78648,16.72263111,16.9852,1,CMIP5 -2070,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.407079278,-8.0358,-3.7742,-5.732447778,-6.01788,1,CMIP5 -2070,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.868905787,20.1661,22.75656,21.62681222,21.7517,1,CMIP5 -2071,tas,temperature,tgav,rcp85,C,Simulated,global,0.816979591,15.7936,17.85268,16.77201167,17.0579,1,CMIP5 -2071,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.348516733,-7.8445,-3.62405,-5.681707778,-5.95352,1,CMIP5 -2071,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.856901155,20.2799,22.82314,21.67561833,21.7692,1,CMIP5 -2072,tas,temperature,tgav,rcp85,C,Simulated,global,0.829405954,15.8538,17.9122,16.83798611,17.0237,1,CMIP5 -2072,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.331737989,-7.7206,-3.684975,-5.650518333,-5.86454,1,CMIP5 -2072,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.860293755,20.3054,22.87652,21.749305,22.0141,1,CMIP5 -2073,tas,temperature,tgav,rcp85,C,Simulated,global,0.815963598,15.8822,17.94464,16.91696556,17.0976,1,CMIP5 -2073,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.375138591,-7.7052,-3.595425,-5.536608889,-5.71828,1,CMIP5 -2073,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.84580066,20.3054,22.88516,21.82079833,22.1409,1,CMIP5 -2074,tas,temperature,tgav,rcp85,C,Simulated,global,0.799727364,15.891,18.0106,16.93498889,17.1266,1,CMIP5 -2074,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.339202975,-7.2311,-3.52595,-5.487370556,-5.81246,1,CMIP5 -2074,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.850548488,20.332,22.98456,21.83081778,22.1165,1,CMIP5 -2075,tas,temperature,tgav,rcp85,C,Simulated,global,0.833035865,15.9676,18.10782,16.97336889,17.2443,1,CMIP5 -2075,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.317175031,-7.2055,-3.491775,-5.392086111,-5.602,1,CMIP5 -2075,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.886857848,20.3889,23.05814,21.85697111,22.1445,1,CMIP5 -2076,tas,temperature,tgav,rcp85,C,Simulated,global,0.863262055,15.983,18.17624,17.03777667,17.1383,1,CMIP5 -2076,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.398044912,-7.5472,-3.1723,-5.228527778,-5.7059,1,CMIP5 -2076,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.895233967,20.4344,23.16256,21.90012056,22.2419,1,CMIP5 -2077,tas,temperature,tgav,rcp85,C,Simulated,global,0.861424703,16.0291,18.17648,17.072595,17.2158,1,CMIP5 -2077,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.366363933,-7.1764,-3.197525,-5.213986667,-5.60958,1,CMIP5 -2077,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.898497714,20.4494,23.14274,21.93966,22.2624,1,CMIP5 -2078,tas,temperature,tgav,rcp85,C,Simulated,global,0.894249109,16.0312,18.27032,17.12613556,17.3271,1,CMIP5 -2078,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.409318388,-7.199,-3.043275,-5.16928,-5.47352,1,CMIP5 -2078,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.91806641,20.4408,23.2278,21.99506389,22.341,1,CMIP5 -2079,tas,temperature,tgav,rcp85,C,Simulated,global,0.887151117,16.0132,18.42962,17.19969667,17.3182,1,CMIP5 -2079,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.354112496,-7.0085,-3.010925,-5.090936667,-5.17498,1,CMIP5 -2079,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.92604664,20.4266,23.35802,22.06764111,22.3053,1,CMIP5 -2080,tas,temperature,tgav,rcp85,C,Simulated,global,0.900141106,16.0377,18.40174,17.26010444,17.5354,1,CMIP5 -2080,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.434539153,-6.8023,-2.759075,-5.061555556,-5.2567,1,CMIP5 -2080,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.938335663,20.4637,23.34136,22.13399,22.4199,1,CMIP5 -2081,tas,temperature,tgav,rcp85,C,Simulated,global,0.923442386,16.1449,18.40682,17.30641333,17.5909,1,CMIP5 -2081,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.508183944,-7.1595,-2.72895,-5.079456111,-5.03768,1,CMIP5 -2081,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.919375547,20.6425,23.30176,22.19449556,22.6053,1,CMIP5 -2082,tas,temperature,tgav,rcp85,C,Simulated,global,0.947900761,16.0795,18.41054,17.31391833,17.6067,1,CMIP5 -2082,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.546552456,-7.1532,-2.676775,-5.052419444,-5.0615,1,CMIP5 -2082,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.946531612,20.5617,23.31126,22.19788444,22.6724,1,CMIP5 -2083,tas,temperature,tgav,rcp85,C,Simulated,global,0.920039553,16.1325,18.56948,17.37775333,17.5421,1,CMIP5 -2083,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.514141533,-6.7573,-2.601425,-4.973159444,-4.89346,1,CMIP5 -2083,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.915065612,20.6169,23.46826,22.25854,22.7066,1,CMIP5 -2084,tas,temperature,tgav,rcp85,C,Simulated,global,0.941543333,16.1517,18.63472,17.42338,17.5132,1,CMIP5 -2084,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.404135925,-6.4516,-2.657075,-4.864887778,-4.87714,1,CMIP5 -2084,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.928936996,20.6356,23.54376,22.29057333,22.6885,1,CMIP5 -2085,tas,temperature,tgav,rcp85,C,Simulated,global,0.926061577,16.1283,18.6052,17.46299722,17.6199,1,CMIP5 -2085,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.339790878,-6.358,-2.6406,-4.777846667,-4.87702,1,CMIP5 -2085,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.94489059,20.5604,23.50806,22.32021222,22.7453,1,CMIP5 -2086,tas,temperature,tgav,rcp85,C,Simulated,global,0.944597906,16.1855,18.68192,17.48428,17.6594,1,CMIP5 -2086,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.533537706,-6.9168,-2.317375,-4.756333333,-4.7133,1,CMIP5 -2086,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.960891011,20.5886,23.56662,22.34088278,22.7749,1,CMIP5 -2087,tas,temperature,tgav,rcp85,C,Simulated,global,0.991098578,16.2595,18.81518,17.57056167,17.8012,1,CMIP5 -2087,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.477292008,-7.2838,-2.280625,-4.669653333,-4.61468,1,CMIP5 -2087,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.98781787,20.6916,23.70708,22.42672278,22.858,1,CMIP5 -2088,tas,temperature,tgav,rcp85,C,Simulated,global,0.974435264,16.3492,18.81132,17.64588833,17.8745,1,CMIP5 -2088,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.436972857,-6.8271,-2.152825,-4.457591111,-4.67142,1,CMIP5 -2088,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.976347585,20.7561,23.71428,22.47232833,22.897,1,CMIP5 -2089,tas,temperature,tgav,rcp85,C,Simulated,global,0.97443957,16.4117,18.92322,17.69749389,17.8278,1,CMIP5 -2089,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.373970092,-6.5479,-2.1614,-4.357813889,-4.5098,1,CMIP5 -2089,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.986343407,20.7727,23.81578,22.51372278,22.9537,1,CMIP5 -2090,tas,temperature,tgav,rcp85,C,Simulated,global,0.97843754,16.3642,18.90958,17.73123111,17.8286,1,CMIP5 -2090,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.456403977,-6.7998,-2.03635,-4.351763333,-4.39192,1,CMIP5 -2090,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.970703065,20.7907,23.77466,22.55328444,22.9467,1,CMIP5 -2091,tas,temperature,tgav,rcp85,C,Simulated,global,0.994696242,16.4213,18.998,17.81380278,17.9977,1,CMIP5 -2091,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.431915151,-6.408,-1.873325,-4.240162778,-4.4312,1,CMIP5 -2091,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.97850269,20.8714,23.85454,22.629835,23.0804,1,CMIP5 -2092,tas,temperature,tgav,rcp85,C,Simulated,global,0.977127232,16.5454,19.07014,17.84708222,18.0616,1,CMIP5 -2092,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.429706203,-6.2678,-1.7648,-4.240982778,-4.332025,1,CMIP5 -2092,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.964610083,20.9914,23.92536,22.67022333,23.1455,1,CMIP5 -2093,tas,temperature,tgav,rcp85,C,Simulated,global,1.016802938,16.4394,19.19328,17.87222,17.9844,1,CMIP5 -2093,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.443732197,-6.0465,-1.79655,-4.188258889,-4.3929,1,CMIP5 -2093,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.003132375,20.8852,24.03782,22.68938833,23.0425,1,CMIP5 -2094,tas,temperature,tgav,rcp85,C,Simulated,global,0.979616048,16.5115,19.19684,17.90790444,18.0034,1,CMIP5 -2094,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.506872865,-6.2594,-1.7155,-4.153610556,-4.3081,1,CMIP5 -2094,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.950425302,20.9545,24.03016,22.72615111,23.0978,1,CMIP5 -2095,tas,temperature,tgav,rcp85,C,Simulated,global,1.009437118,16.5452,19.22524,17.96660722,18.1289,1,CMIP5 -2095,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.501708216,-6.4404,-1.6671,-4.063407222,-4.1983,1,CMIP5 -2095,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.984814322,20.972,24.05796,22.77788722,23.1644,1,CMIP5 -2096,tas,temperature,tgav,rcp85,C,Simulated,global,1.001883039,16.5657,19.22604,18.00638778,18.1724,1,CMIP5 -2096,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.520871687,-6.2241,-1.64185,-3.996793333,-4.0097,1,CMIP5 -2096,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.994969557,20.9566,24.06222,22.81147722,23.1526,1,CMIP5 -2097,tas,temperature,tgav,rcp85,C,Simulated,global,1.077754644,16.6205,19.36578,18.07938389,18.1344,1,CMIP5 -2097,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.551143091,-6.104,-1.3586,-3.851555,-3.9903,1,CMIP5 -2097,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.049941214,21.019,24.19762,22.86858278,23.2063,1,CMIP5 -2098,tas,temperature,tgav,rcp85,C,Simulated,global,1.071149926,16.6294,19.43854,18.10649611,18.1884,1,CMIP5 -2098,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.639032034,-6.5689,-1.21735,-3.868543333,-3.9728,1,CMIP5 -2098,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.034373389,21.026,24.26778,22.90551722,23.2946,1,CMIP5 -2099,tas,temperature,tgav,rcp85,C,Simulated,global,1.047025041,16.7045,19.50066,18.16640944,18.2358,1,CMIP5 -2099,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.59843384,-6.3042,-1.1121,-3.792791667,-3.871,1,CMIP5 -2099,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.010865951,21.0955,24.31516,22.96224,23.3028,1,CMIP5 -2100,tas,temperature,tgav,rcp85,C,Simulated,global,1.063901239,16.7697,19.5398,18.24737778,18.3124,1,CMIP5 -2100,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.50662179,-5.7056,-1.15315,-3.723127778,-3.9651,1,CMIP5 -2100,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.031711964,21.1946,24.36196,23.04481222,23.4194,1,CMIP5 -2101,tas,temperature,tgav,rcp85,C,Simulated,global,0.462712549,18.3579,19.2548,18.74053333,18.6089,1,CMIP5 -2101,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.572566561,-4.5459,-1.4132,-3.0602,-3.2215,1,CMIP5 -2101,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.443074858,23.1424,24.0147,23.5335,23.4434,1,CMIP5 -2102,tas,temperature,tgav,rcp85,C,Simulated,global,0.506359253,18.3202,19.3068,18.74753333,18.6156,1,CMIP5 -2102,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.66756552,-4.3731,-1.1206,-2.959833333,-3.3858,1,CMIP5 -2102,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.448464384,23.1328,24.0113,23.51983333,23.4154,1,CMIP5 -2103,tas,temperature,tgav,rcp85,C,Simulated,global,0.513911597,18.2095,19.2332,18.6948,18.6417,1,CMIP5 -2103,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.808303222,-4.4924,-1.0413,-3.079066667,-3.7035,1,CMIP5 -2103,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.417321183,23.068,23.9025,23.4808,23.4719,1,CMIP5 -2104,tas,temperature,tgav,rcp85,C,Simulated,global,0.426558816,18.3341,19.1872,18.76223333,18.7654,1,CMIP5 -2104,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.689250678,-4.422,-1.2026,-3.108066667,-3.6996,1,CMIP5 -2104,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.333542726,23.2192,23.8832,23.5697,23.6067,1,CMIP5 -2105,tas,temperature,tgav,rcp85,C,Simulated,global,0.469969925,18.4024,19.3369,18.8405,18.7822,1,CMIP5 -2105,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.802316091,-4.3814,-0.8688,-2.858733333,-3.326,1,CMIP5 -2105,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.385328254,23.2198,23.9903,23.60953333,23.6185,1,CMIP5 -2106,tas,temperature,tgav,rcp85,C,Simulated,global,0.503252365,18.4685,19.4731,18.98866667,19.0244,1,CMIP5 -2106,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.628641748,-3.8875,-0.7261,-2.533266667,-2.9862,1,CMIP5 -2106,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.456405898,23.2253,24.1251,23.71953333,23.8082,1,CMIP5 -2107,tas,temperature,tgav,rcp85,C,Simulated,global,0.497326254,18.6484,19.6104,19.05643333,18.9105,1,CMIP5 -2107,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.741990558,-3.979,-0.5324,-2.402633333,-2.6965,1,CMIP5 -2107,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.44027728,23.381,24.2495,23.77333333,23.6895,1,CMIP5 -2108,tas,temperature,tgav,rcp85,C,Simulated,global,0.706517778,18.42,19.8106,19.0429,18.8981,1,CMIP5 -2108,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.986906281,-4.0497,-0.2667,-2.5094,-3.2118,1,CMIP5 -2108,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.614338525,23.216,24.4346,23.77996667,23.6893,1,CMIP5 -2109,tas,temperature,tgav,rcp85,C,Simulated,global,0.702120937,18.484,19.8551,19.082,18.9069,1,CMIP5 -2109,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.863313716,-4.1285,-0.4974,-2.554966667,-3.039,1,CMIP5 -2109,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.651801238,23.256,24.5424,23.83826667,23.7164,1,CMIP5 -2110,tas,temperature,tgav,rcp85,C,Simulated,global,0.663421073,18.5687,19.8607,19.1275,18.9531,1,CMIP5 -2110,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.965054331,-4.015,-0.1938,-2.369633333,-2.9001,1,CMIP5 -2110,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.582262976,23.3288,24.4794,23.85226667,23.7486,1,CMIP5 -2111,tas,temperature,tgav,rcp85,C,Simulated,global,0.575954133,18.688,19.8188,19.19003333,19.0633,1,CMIP5 -2111,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.814903117,-3.9803,-0.4042,-2.371833333,-2.731,1,CMIP5 -2111,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.521851917,23.4368,24.4762,23.92916667,23.8745,1,CMIP5 -2112,tas,temperature,tgav,rcp85,C,Simulated,global,0.604903521,18.6673,19.8593,19.2036,19.0842,1,CMIP5 -2112,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.030477856,-4.1172,-0.0884,-2.250033333,-2.5445,1,CMIP5 -2112,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.541735295,23.3701,24.4534,23.9173,23.9284,1,CMIP5 -2113,tas,temperature,tgav,rcp85,C,Simulated,global,0.529987003,18.8852,19.8259,19.21453333,18.9325,1,CMIP5 -2113,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.062652266,-4.2571,-0.1341,-2.2354,-2.315,1,CMIP5 -2113,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.439118553,23.5857,24.4228,23.92756667,23.7742,1,CMIP5 -2114,tas,temperature,tgav,rcp85,C,Simulated,global,0.576892078,18.7128,19.8484,19.2217,19.1039,1,CMIP5 -2114,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.045272014,-4.0514,-0.0676,-2.3275,-2.8635,1,CMIP5 -2114,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.469666492,23.4964,24.4352,23.95666667,23.9384,1,CMIP5 -2115,tas,temperature,tgav,rcp85,C,Simulated,global,0.697918737,18.7791,20.1199,19.33746667,19.1134,1,CMIP5 -2115,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.252673414,-3.9312,0.2636,-2.3083,-3.2573,1,CMIP5 -2115,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.534662532,23.6647,24.693,24.09416667,23.9248,1,CMIP5 -2116,tas,temperature,tgav,rcp85,C,Simulated,global,0.706417752,18.7765,20.1219,19.3247,19.0757,1,CMIP5 -2116,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.899391182,-3.6456,-0.0798,-2.240833333,-2.9971,1,CMIP5 -2116,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.622985401,23.604,24.7746,24.0661,23.8197,1,CMIP5 -2117,tas,temperature,tgav,rcp85,C,Simulated,global,0.686252551,18.9167,20.2127,19.43426667,19.1734,1,CMIP5 -2117,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.043481356,-3.9097,0.0859,-2.159966667,-2.6561,1,CMIP5 -2117,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.596638855,23.6997,24.848,24.18016667,23.9928,1,CMIP5 -2118,tas,temperature,tgav,rcp85,C,Simulated,global,0.568937407,19.0511,20.1369,19.49576667,19.2993,1,CMIP5 -2118,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.025124818,-3.5907,0.2706,-2.013,-2.7189,1,CMIP5 -2118,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.435499556,23.8779,24.7122,24.22283333,24.0784,1,CMIP5 -2119,tas,temperature,tgav,rcp85,C,Simulated,global,0.620572905,19.0644,20.2451,19.5443,19.3234,1,CMIP5 -2119,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.150122983,-3.7259,0.2993,-2.150133333,-3.0238,1,CMIP5 -2119,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.464367498,23.9615,24.8387,24.31203333,24.1359,1,CMIP5 -2120,tas,temperature,tgav,rcp85,C,Simulated,global,0.625891239,19.148,20.3301,19.62016667,19.3824,1,CMIP5 -2120,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.140015524,-3.6571,0.3442,-2.095033333,-2.9722,1,CMIP5 -2120,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.473178744,24.0523,24.933,24.39266667,24.1927,1,CMIP5 -2121,tas,temperature,tgav,rcp85,C,Simulated,global,0.519596597,19.2391,20.2164,19.62576667,19.4218,1,CMIP5 -2121,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.001207359,-3.3597,0.4059,-1.868433333,-2.6515,1,CMIP5 -2121,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.374005013,24.0924,24.7789,24.3499,24.1784,1,CMIP5 -2122,tas,temperature,tgav,rcp85,C,Simulated,global,0.482924414,19.476,20.3228,19.7653,19.4971,1,CMIP5 -2122,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.833922078,-3.3177,0.3247,-1.621,-1.87,1,CMIP5 -2122,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.400536902,24.2344,24.9285,24.466,24.2351,1,CMIP5 -2123,tas,temperature,tgav,rcp85,C,Simulated,global,0.560225538,19.375,20.3744,19.72846667,19.436,1,CMIP5 -2123,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.830727348,-3.045,0.5271,-1.491033333,-1.9552,1,CMIP5 -2123,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.478448214,24.1042,24.9454,24.39313333,24.1298,1,CMIP5 -2124,tas,temperature,tgav,rcp85,C,Simulated,global,0.541179382,19.5315,20.4744,19.84953333,19.5427,1,CMIP5 -2124,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.797017315,-2.7169,0.6871,-1.3478,-2.0136,1,CMIP5 -2124,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.455555617,24.1902,25.0316,24.51,24.3082,1,CMIP5 -2125,tas,temperature,tgav,rcp85,C,Simulated,global,0.570292197,19.5734,20.5867,19.9289,19.6266,1,CMIP5 -2125,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.088542387,-2.7604,1.0986,-1.292433333,-2.2155,1,CMIP5 -2125,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.420212629,24.3008,25.0748,24.59326667,24.4042,1,CMIP5 -2126,tas,temperature,tgav,rcp85,C,Simulated,global,0.553490352,19.504,20.521,19.8863,19.6339,1,CMIP5 -2126,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.959790954,-2.6625,0.867,-1.389833333,-2.374,1,CMIP5 -2126,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.420174761,24.2891,25.0474,24.5637,24.3546,1,CMIP5 -2127,tas,temperature,tgav,rcp85,C,Simulated,global,0.641707039,19.4157,20.648,19.92833333,19.7213,1,CMIP5 -2127,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.928214742,-2.4795,0.8662,-1.3603,-2.4676,1,CMIP5 -2127,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.516890998,24.2674,25.2039,24.60926667,24.3565,1,CMIP5 -2128,tas,temperature,tgav,rcp85,C,Simulated,global,0.701018804,19.3974,20.7367,19.94733333,19.7079,1,CMIP5 -2128,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.036708561,-2.7002,1.0118,-1.328433333,-2.2969,1,CMIP5 -2128,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.574315787,24.2072,25.2794,24.62436667,24.3865,1,CMIP5 -2129,tas,temperature,tgav,rcp85,C,Simulated,global,0.579860331,19.5432,20.6311,19.97116667,19.7392,1,CMIP5 -2129,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.024868028,-2.9304,0.9338,-1.3481,-2.0477,1,CMIP5 -2129,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.44813662,24.33,25.1675,24.6566,24.4723,1,CMIP5 -2130,tas,temperature,tgav,rcp85,C,Simulated,global,0.580968054,19.5343,20.6593,20.0129,19.8451,1,CMIP5 -2130,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.819006763,-2.4599,0.8756,-1.211433333,-2.05,1,CMIP5 -2130,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.473460456,24.3197,25.2156,24.67913333,24.5021,1,CMIP5 -2131,tas,temperature,tgav,rcp85,C,Simulated,global,0.622837542,19.6926,20.7866,20.06763333,19.7237,1,CMIP5 -2131,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.920794342,-2.5675,0.9954,-1.200733333,-2.0301,1,CMIP5 -2131,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.524481868,24.3779,25.3446,24.7437,24.5086,1,CMIP5 -2132,tas,temperature,tgav,rcp85,C,Simulated,global,0.644017681,19.678,20.8612,20.12266667,19.8288,1,CMIP5 -2132,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.996701962,-2.441,1.1899,-1.105466667,-2.0653,1,CMIP5 -2132,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.521473013,24.4785,25.3916,24.78956667,24.4986,1,CMIP5 -2133,tas,temperature,tgav,rcp85,C,Simulated,global,0.628666401,19.8245,20.9357,20.21026667,19.8706,1,CMIP5 -2133,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.162961331,-2.7448,1.2866,-1.182,-2.0878,1,CMIP5 -2133,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.485873073,24.5367,25.461,24.91226667,24.7391,1,CMIP5 -2134,tas,temperature,tgav,rcp85,C,Simulated,global,0.714536894,19.8105,21.0639,20.23903333,19.8427,1,CMIP5 -2134,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.183885501,-2.6968,1.302,-1.2046,-2.219,1,CMIP5 -2134,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.578360951,24.5486,25.6153,24.9528,24.6945,1,CMIP5 -2135,tas,temperature,tgav,rcp85,C,Simulated,global,0.769701438,19.7632,21.1613,20.27626667,19.9043,1,CMIP5 -2135,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.365151387,-3.0077,1.4708,-1.208033333,-2.0872,1,CMIP5 -2135,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.618824474,24.5175,25.6962,24.9979,24.78,1,CMIP5 -2136,tas,temperature,tgav,rcp85,C,Simulated,global,0.84663087,19.7508,21.2483,20.2714,19.8151,1,CMIP5 -2136,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.614165642,-2.7563,1.8826,-1.133033333,-2.5254,1,CMIP5 -2136,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.640058094,24.5277,25.7084,24.97526667,24.6897,1,CMIP5 -2137,tas,temperature,tgav,rcp85,C,Simulated,global,0.792731482,19.8928,21.2669,20.35153333,19.8949,1,CMIP5 -2137,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.391342995,-2.5349,1.9457,-0.7775,-1.7433,1,CMIP5 -2137,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.627967597,24.5754,25.7168,24.99483333,24.6923,1,CMIP5 -2138,tas,temperature,tgav,rcp85,C,Simulated,global,0.75460582,19.8861,21.2827,20.41926667,20.089,1,CMIP5 -2138,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.382435334,-2.9325,1.7089,-0.9229,-1.5451,1,CMIP5 -2138,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.602033786,24.6504,25.7906,25.1088,24.8854,1,CMIP5 -2139,tas,temperature,tgav,rcp85,C,Simulated,global,0.780037198,19.9148,21.3795,20.4921,20.182,1,CMIP5 -2139,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.223449503,-2.5634,1.675,-0.832666667,-1.6096,1,CMIP5 -2139,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.670402364,24.608,25.9175,25.1796,25.0133,1,CMIP5 -2140,tas,temperature,tgav,rcp85,C,Simulated,global,0.740869424,19.9727,21.3216,20.47013333,20.1161,1,CMIP5 -2140,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.091392862,-2.6838,1.3881,-0.924033333,-1.4764,1,CMIP5 -2140,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.648230031,24.7031,25.9125,25.17296667,24.9033,1,CMIP5 -2141,tas,temperature,tgav,rcp85,C,Simulated,global,0.839804912,19.9656,21.5185,20.5573,20.1878,1,CMIP5 -2141,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.256545209,-2.5852,1.7098,-0.8378,-1.638,1,CMIP5 -2141,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.731849946,24.6739,26.0805,25.26033333,25.0266,1,CMIP5 -2142,tas,temperature,tgav,rcp85,C,Simulated,global,0.814786156,19.9708,21.4276,20.4884,20.0668,1,CMIP5 -2142,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.235384496,-2.463,1.6993,-0.852933333,-1.7951,1,CMIP5 -2142,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.685782519,24.7707,25.9712,25.17946667,24.7965,1,CMIP5 -2143,tas,temperature,tgav,rcp85,C,Simulated,global,0.77185428,20.1328,21.4841,20.593,20.1621,1,CMIP5 -2143,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.288009852,-2.3539,2.0201,-0.555066667,-1.3314,1,CMIP5 -2143,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.630868386,24.8278,25.9668,25.2406,24.9272,1,CMIP5 -2144,tas,temperature,tgav,rcp85,C,Simulated,global,0.757669653,20.1177,21.4536,20.57916667,20.1662,1,CMIP5 -2144,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.417445658,-2.3132,2.1864,-0.5741,-1.5955,1,CMIP5 -2144,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.582342977,24.801,25.8911,25.22766667,24.9909,1,CMIP5 -2145,tas,temperature,tgav,rcp85,C,Simulated,global,0.777565305,20.08,21.4655,20.56886667,20.1611,1,CMIP5 -2145,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.49766684,-2.2726,2.3278,-0.534366667,-1.6583,1,CMIP5 -2145,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.591083556,24.747,25.8731,25.2062,24.9985,1,CMIP5 -2146,tas,temperature,tgav,rcp85,C,Simulated,global,0.716310214,20.2636,21.5373,20.71113333,20.3325,1,CMIP5 -2146,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.34858136,-1.734,2.4405,-0.268366667,-1.5116,1,CMIP5 -2146,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.544476394,24.8933,25.9354,25.32313333,25.1407,1,CMIP5 -2147,tas,temperature,tgav,rcp85,C,Simulated,global,0.688313594,20.3002,21.5506,20.75916667,20.4267,1,CMIP5 -2147,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.336940498,-2.0114,2.3582,-0.305466667,-1.2632,1,CMIP5 -2147,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.52311384,24.9586,25.9708,25.3883,25.2355,1,CMIP5 -2148,tas,temperature,tgav,rcp85,C,Simulated,global,0.725726043,20.2362,21.6345,20.823,20.5983,1,CMIP5 -2148,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.365353232,-1.9288,2.5053,-0.1877,-1.1396,1,CMIP5 -2148,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.588384322,24.864,26.0401,25.4406,25.4177,1,CMIP5 -2149,tas,temperature,tgav,rcp85,C,Simulated,global,0.712892147,20.2807,21.6189,20.80776667,20.5237,1,CMIP5 -2149,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.223836964,-1.8459,2.3705,-0.146333333,-0.9636,1,CMIP5 -2149,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.585961606,24.9004,26.0519,25.41326667,25.2875,1,CMIP5 -2150,tas,temperature,tgav,rcp85,C,Simulated,global,0.70204644,20.2503,21.6262,20.85743333,20.6958,1,CMIP5 -2150,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.443454328,-2.1057,2.5289,-0.235833333,-1.1307,1,CMIP5 -2150,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.554517096,24.9179,26.0245,25.4924,25.5348,1,CMIP5 -2151,tas,temperature,tgav,rcp85,C,Simulated,global,0.701735651,20.1941,21.5864,20.83923333,20.7372,1,CMIP5 -2151,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.39802114,-2.2949,2.3464,-0.3231,-1.0208,1,CMIP5 -2151,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.567351834,24.8896,26.0175,25.48936667,25.561,1,CMIP5 -2152,tas,temperature,tgav,rcp85,C,Simulated,global,0.656515377,20.3665,21.5913,20.8423,20.5691,1,CMIP5 -2152,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.404633646,-2.1187,2.4905,-0.210366667,-1.0029,1,CMIP5 -2152,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.475294123,25.0612,25.9903,25.46773333,25.3517,1,CMIP5 -2153,tas,temperature,tgav,rcp85,C,Simulated,global,0.665332601,20.3743,21.6719,20.938,20.7678,1,CMIP5 -2153,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.482604427,-2.1463,2.562,-0.247233333,-1.1574,1,CMIP5 -2153,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.499366973,25.0764,26.0732,25.59273333,25.6286,1,CMIP5 -2154,tas,temperature,tgav,rcp85,C,Simulated,global,0.675885474,20.4386,21.7542,21.00673333,20.8274,1,CMIP5 -2154,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.377624384,-1.6611,2.7517,0.0338,-0.9892,1,CMIP5 -2154,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.540579729,25.0527,26.1306,25.61586667,25.6643,1,CMIP5 -2155,tas,temperature,tgav,rcp85,C,Simulated,global,0.601504273,20.5314,21.6986,21.0309,20.8627,1,CMIP5 -2155,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.092911351,-1.5849,2.3879,0.020933333,-0.7402,1,CMIP5 -2155,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.498507075,25.1491,26.1461,25.64913333,25.6522,1,CMIP5 -2156,tas,temperature,tgav,rcp85,C,Simulated,global,0.550805919,20.6345,21.7087,21.1011,20.9601,1,CMIP5 -2156,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.125302174,-1.5535,2.4247,0.0034,-0.861,1,CMIP5 -2156,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.444400859,25.2671,26.1499,25.73826667,25.7978,1,CMIP5 -2157,tas,temperature,tgav,rcp85,C,Simulated,global,0.551594274,20.6612,21.742,21.13776667,21.0101,1,CMIP5 -2157,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.20009731,-1.5386,2.5286,0.010266667,-0.9592,1,CMIP5 -2157,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.443894008,25.2962,26.1671,25.7814,25.8809,1,CMIP5 -2158,tas,temperature,tgav,rcp85,C,Simulated,global,0.71507388,20.5134,21.889,21.08826667,20.8624,1,CMIP5 -2158,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.321315434,-1.5058,2.7051,0.035266667,-1.0935,1,CMIP5 -2158,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.598373431,25.1107,26.3072,25.71596667,25.73,1,CMIP5 -2159,tas,temperature,tgav,rcp85,C,Simulated,global,0.68569301,20.6621,21.993,21.23206667,21.0411,1,CMIP5 -2159,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.159162032,-1.3149,2.7201,0.2585,-0.6297,1,CMIP5 -2159,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.590505972,25.2506,26.4316,25.84263333,25.8457,1,CMIP5 -2160,tas,temperature,tgav,rcp85,C,Simulated,global,0.729296252,20.6795,22.1144,21.32136667,21.1702,1,CMIP5 -2160,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.227397599,-1.2755,2.9887,0.484466667,-0.2598,1,CMIP5 -2160,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.628089662,25.2635,26.5192,25.90136667,25.9214,1,CMIP5 -2161,tas,temperature,tgav,rcp85,C,Simulated,global,0.726616398,20.7232,22.1123,21.2945,21.048,1,CMIP5 -2161,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.207680698,-1.1898,2.8759,0.345933333,-0.6483,1,CMIP5 -2161,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.623138968,25.2984,26.5426,25.89973333,25.8582,1,CMIP5 -2162,tas,temperature,tgav,rcp85,C,Simulated,global,0.737586621,20.7714,22.2065,21.39036667,21.1932,1,CMIP5 -2162,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.165580717,-0.944,3.0136,0.526833333,-0.4891,1,CMIP5 -2162,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.660994985,25.3054,26.6268,25.9775,26.0003,1,CMIP5 -2163,tas,temperature,tgav,rcp85,C,Simulated,global,0.750651746,20.7229,22.187,21.35906667,21.1673,1,CMIP5 -2163,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.098804319,-1.1007,2.8139,0.4192,-0.4556,1,CMIP5 -2163,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.684601909,25.2795,26.6487,25.96316667,25.9613,1,CMIP5 -2164,tas,temperature,tgav,rcp85,C,Simulated,global,0.683222968,20.741,22.0877,21.34753333,21.2139,1,CMIP5 -2164,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.15911946,-1.0292,3.0129,0.553233333,-0.324,1,CMIP5 -2164,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.600233824,25.2864,26.4807,25.91863333,25.9888,1,CMIP5 -2165,tas,temperature,tgav,rcp85,C,Simulated,global,0.724570668,20.7248,22.1734,21.46053333,21.4834,1,CMIP5 -2165,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.112145034,-1.2343,2.8714,0.531633333,-0.0422,1,CMIP5 -2165,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.675818499,25.3097,26.6188,26.06136667,26.2556,1,CMIP5 -2166,tas,temperature,tgav,rcp85,C,Simulated,global,0.710351774,20.9137,22.3244,21.57046667,21.4733,1,CMIP5 -2166,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.169280536,-1.107,3.0621,0.630933333,-0.0623,1,CMIP5 -2166,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.627932345,25.5114,26.7606,26.1733,26.2479,1,CMIP5 -2167,tas,temperature,tgav,rcp85,C,Simulated,global,0.740745073,20.874,22.3187,21.50163333,21.3122,1,CMIP5 -2167,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.234638244,-0.9141,3.2744,0.730066667,-0.1701,1,CMIP5 -2167,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.640830901,25.4231,26.7047,26.06753333,26.0748,1,CMIP5 -2168,tas,temperature,tgav,rcp85,C,Simulated,global,0.753827381,20.913,22.3804,21.5468,21.347,1,CMIP5 -2168,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.23356663,-0.9539,3.2519,0.7144,-0.1548,1,CMIP5 -2168,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.653686326,25.4786,26.7858,26.12606667,26.1138,1,CMIP5 -2169,tas,temperature,tgav,rcp85,C,Simulated,global,0.735119643,21.04,22.4953,21.7073,21.5866,1,CMIP5 -2169,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.148193723,-0.7387,3.2424,0.7855,-0.1472,1,CMIP5 -2169,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.676476787,25.5871,26.9294,26.30716667,26.405,1,CMIP5 -2170,tas,temperature,tgav,rcp85,C,Simulated,global,0.739289742,20.9867,22.4544,21.66886667,21.5655,1,CMIP5 -2170,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.09269635,-0.9894,3.0656,0.738866667,0.1404,1,CMIP5 -2170,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.673448706,25.5751,26.9197,26.2701,26.3155,1,CMIP5 -2171,tas,temperature,tgav,rcp85,C,Simulated,global,0.802147343,21.0445,22.6399,21.7935,21.6961,1,CMIP5 -2171,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.20034107,-0.8385,3.4128,0.958966667,0.3026,1,CMIP5 -2171,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.729510969,25.6134,27.068,26.37346667,26.439,1,CMIP5 -2172,tas,temperature,tgav,rcp85,C,Simulated,global,0.792518469,21.1844,22.7243,21.84593333,21.6291,1,CMIP5 -2172,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.187270985,-0.2833,3.6595,1.141066667,0.047,1,CMIP5 -2172,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.724322794,25.6667,27.1151,26.3986,26.414,1,CMIP5 -2173,tas,temperature,tgav,rcp85,C,Simulated,global,0.898466968,21.1776,22.855,21.83026667,21.4582,1,CMIP5 -2173,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.150338352,-0.3722,3.3851,0.9024,-0.3057,1,CMIP5 -2173,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.841164217,25.6769,27.3391,26.4331,26.2833,1,CMIP5 -2174,tas,temperature,tgav,rcp85,C,Simulated,global,0.914245571,21.049,22.825,21.81143333,21.5603,1,CMIP5 -2174,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.31422292,-0.8027,3.4721,0.822466667,-0.202,1,CMIP5 -2174,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.83610551,25.6114,27.2821,26.42623333,26.3852,1,CMIP5 -2175,tas,temperature,tgav,rcp85,C,Simulated,global,0.866639966,21.1682,22.8687,21.9216,21.7279,1,CMIP5 -2175,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.116319977,-0.6122,3.4095,1.017733333,0.2559,1,CMIP5 -2175,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.81765647,25.7157,27.3502,26.51806667,26.4883,1,CMIP5 -2176,tas,temperature,tgav,rcp85,C,Simulated,global,0.814880668,21.2109,22.818,21.93626667,21.7799,1,CMIP5 -2176,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.103422371,-0.3635,3.5604,1.1606,0.2849,1,CMIP5 -2176,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.769708785,25.7154,27.2532,26.50466667,26.5454,1,CMIP5 -2177,tas,temperature,tgav,rcp85,C,Simulated,global,0.730761541,21.2798,22.7223,21.9332,21.7975,1,CMIP5 -2177,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.001288338,-0.2044,3.4658,1.1697,0.2477,1,CMIP5 -2177,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.698989299,25.7654,27.1572,26.4992,26.575,1,CMIP5 -2178,tas,temperature,tgav,rcp85,C,Simulated,global,0.796908479,21.2034,22.7962,21.98336667,21.9505,1,CMIP5 -2178,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.10146222,-0.4624,3.5241,1.146533333,0.3779,1,CMIP5 -2178,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.767832549,25.727,27.2348,26.56496667,26.7331,1,CMIP5 -2179,tas,temperature,tgav,rcp85,C,Simulated,global,0.732697655,21.2335,22.6971,21.94436667,21.9025,1,CMIP5 -2179,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.237068937,-0.5023,3.636,1.0759,0.094,1,CMIP5 -2179,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.681274631,25.7717,27.087,26.53203333,26.7374,1,CMIP5 -2180,tas,temperature,tgav,rcp85,C,Simulated,global,0.716964158,21.3064,22.7399,22.01303333,21.9928,1,CMIP5 -2180,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.265562538,-0.6712,3.7056,1.178733333,0.5018,1,CMIP5 -2180,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.630752957,25.8951,27.1237,26.59203333,26.7573,1,CMIP5 -2181,tas,temperature,tgav,rcp85,C,Simulated,global,0.727013948,21.4066,22.8534,22.0882,22.0046,1,CMIP5 -2181,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.207080484,-0.5158,3.5975,1.078466667,0.1537,1,CMIP5 -2181,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.663757765,25.9837,27.2882,26.707,26.8491,1,CMIP5 -2182,tas,temperature,tgav,rcp85,C,Simulated,global,0.744707345,21.4857,22.9392,22.1186,21.9309,1,CMIP5 -2182,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.132095686,-0.1646,3.8364,1.410133333,0.5586,1,CMIP5 -2182,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.666302404,26.006,27.3386,26.67126667,26.6692,1,CMIP5 -2183,tas,temperature,tgav,rcp85,C,Simulated,global,0.780233057,21.395,22.9471,22.12446667,22.0313,1,CMIP5 -2183,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.236745485,-0.2859,3.8361,1.273333333,0.2698,1,CMIP5 -2183,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.724591646,25.9218,27.3484,26.70866667,26.8558,1,CMIP5 -2184,tas,temperature,tgav,rcp85,C,Simulated,global,0.834889216,21.4273,23.0812,22.18793333,22.0553,1,CMIP5 -2184,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.291430165,-0.2213,3.9871,1.359133333,0.3116,1,CMIP5 -2184,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.771507591,25.9472,27.4787,26.76726667,26.8759,1,CMIP5 -2185,tas,temperature,tgav,rcp85,C,Simulated,global,0.870416063,21.3895,23.0916,22.13513333,21.9243,1,CMIP5 -2185,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.426698416,-0.3149,4.1312,1.346333333,0.2227,1,CMIP5 -2185,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.768956774,25.9212,27.4582,26.705,26.7356,1,CMIP5 -2186,tas,temperature,tgav,rcp85,C,Simulated,global,0.925263229,21.3412,23.1815,22.20526667,22.0931,1,CMIP5 -2186,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.350230253,-0.3827,4.084,1.428066667,0.5829,1,CMIP5 -2186,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.854881694,25.8769,27.5797,26.7728,26.8618,1,CMIP5 -2187,tas,temperature,tgav,rcp85,C,Simulated,global,0.810102234,21.5518,23.1433,22.2599,22.0846,1,CMIP5 -2187,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.244118536,-0.0045,4.2411,1.698066667,0.8576,1,CMIP5 -2187,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.722059834,26.0525,27.4965,26.77986667,26.7906,1,CMIP5 -2188,tas,temperature,tgav,rcp85,C,Simulated,global,0.732539046,21.5334,22.99,22.21626667,22.1254,1,CMIP5 -2188,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.244285903,-0.1316,4.1466,1.615466667,0.8314,1,CMIP5 -2188,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.642592447,26.0568,27.3298,26.74426667,26.8462,1,CMIP5 -2189,tas,temperature,tgav,rcp85,C,Simulated,global,0.783054125,21.5258,23.0723,22.22773333,22.0851,1,CMIP5 -2189,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.142112313,0.17,4.1023,1.645266667,0.6635,1,CMIP5 -2189,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.731664912,25.9846,27.4412,26.75336667,26.8343,1,CMIP5 -2190,tas,temperature,tgav,rcp85,C,Simulated,global,0.783343509,21.6175,23.1841,22.39603333,22.3865,1,CMIP5 -2190,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.09270071,0.2186,4.0528,1.651233333,0.6823,1,CMIP5 -2190,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.78067271,26.0853,27.5901,26.9579,27.1983,1,CMIP5 -2191,tas,temperature,tgav,rcp85,C,Simulated,global,0.814668106,21.6225,23.2493,22.40966667,22.3572,1,CMIP5 -2191,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.256316162,0.0654,4.2908,1.720766667,0.8061,1,CMIP5 -2191,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.761652092,26.1234,27.6155,26.958,27.1351,1,CMIP5 -2192,tas,temperature,tgav,rcp85,C,Simulated,global,0.807054721,21.6278,23.2242,22.35716667,22.2195,1,CMIP5 -2192,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.17845702,-0.0116,4.1247,1.6614,0.8711,1,CMIP5 -2192,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.739639617,26.1458,27.623,26.90703333,26.9523,1,CMIP5 -2193,tas,temperature,tgav,rcp85,C,Simulated,global,0.737571043,21.641,23.1161,22.37533333,22.3689,1,CMIP5 -2193,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.113631489,0.1677,4.1353,1.7304,0.8882,1,CMIP5 -2193,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.706946196,26.1244,27.4875,26.91436667,27.1312,1,CMIP5 -2194,tas,temperature,tgav,rcp85,C,Simulated,global,0.791820794,21.6561,23.235,22.4102,22.3395,1,CMIP5 -2194,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.233683156,0.0014,4.181,1.635833333,0.7251,1,CMIP5 -2194,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.735174961,26.1773,27.6232,26.97733333,27.1315,1,CMIP5 -2195,tas,temperature,tgav,rcp85,C,Simulated,global,0.82654452,21.6602,23.3131,22.47943333,22.465,1,CMIP5 -2195,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.237114115,0.2013,4.4186,1.878566667,1.0158,1,CMIP5 -2195,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.783752036,26.1406,27.6646,27.00846667,27.2202,1,CMIP5 -2196,tas,temperature,tgav,rcp85,C,Simulated,global,0.828999566,21.661,23.3178,22.4712,22.4348,1,CMIP5 -2196,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.235184751,0.052,4.2964,1.7691,0.9589,1,CMIP5 -2196,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.777572588,26.1727,27.6985,27.0224,27.196,1,CMIP5 -2197,tas,temperature,tgav,rcp85,C,Simulated,global,0.780780996,21.7788,23.3403,22.56356667,22.5716,1,CMIP5 -2197,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.210843234,0.2906,4.4037,1.878666667,0.9417,1,CMIP5 -2197,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.751459708,26.2653,27.7015,27.11123333,27.3669,1,CMIP5 -2198,tas,temperature,tgav,rcp85,C,Simulated,global,0.731707485,21.8533,23.3149,22.60513333,22.6472,1,CMIP5 -2198,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.018572027,0.6552,4.422,2.1193,1.2807,1,CMIP5 -2198,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.733066391,26.2792,27.6662,27.10986667,27.3842,1,CMIP5 -2199,tas,temperature,tgav,rcp85,C,Simulated,global,0.789949595,21.7778,23.335,22.63343333,22.7875,1,CMIP5 -2199,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.957492417,0.6979,4.4452,2.244333333,1.5899,1,CMIP5 -2199,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.818481065,26.179,27.6854,27.11713333,27.487,1,CMIP5 -2200,tas,temperature,tgav,rcp85,C,Simulated,global,0.768004429,21.8349,23.3504,22.66486667,22.8093,1,CMIP5 -2200,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.136496422,0.4821,4.5536,2.143533333,1.3949,1,CMIP5 -2200,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.767416438,26.2931,27.6794,27.1764,27.5567,1,CMIP5 -2201,tas,temperature,tgav,rcp85,C,Simulated,global,0.809093173,21.8662,23.4814,22.70216667,22.7589,1,CMIP5 -2201,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.054901439,0.5291,4.4523,2.137266667,1.4304,1,CMIP5 -2201,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.804331812,26.3212,27.8639,27.22416667,27.4874,1,CMIP5 -2202,tas,temperature,tgav,rcp85,C,Simulated,global,0.893199308,21.8371,23.623,22.74223333,22.7666,1,CMIP5 -2202,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.14200008,0.6455,4.4866,2.018433333,0.9232,1,CMIP5 -2202,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.923853111,26.2617,28.0303,27.3004,27.6092,1,CMIP5 -2203,tas,temperature,tgav,rcp85,C,Simulated,global,0.858118974,21.8614,23.5726,22.75493333,22.8308,1,CMIP5 -2203,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.988011203,0.7141,4.4855,2.236333333,1.5094,1,CMIP5 -2203,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.882372217,26.2767,27.9684,27.2676,27.5577,1,CMIP5 -2204,tas,temperature,tgav,rcp85,C,Simulated,global,0.852961171,21.9049,23.6093,22.7779,22.8195,1,CMIP5 -2204,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.931933411,0.7929,4.447,2.257433333,1.5324,1,CMIP5 -2204,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.881311925,26.3128,28.0225,27.2914,27.5389,1,CMIP5 -2205,tas,temperature,tgav,rcp85,C,Simulated,global,0.87869306,21.8514,23.603,22.76833333,22.8506,1,CMIP5 -2205,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.939647844,0.759,4.4286,2.2306,1.5042,1,CMIP5 -2205,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.918611367,26.2553,28.0189,27.28573333,27.583,1,CMIP5 -2206,tas,temperature,tgav,rcp85,C,Simulated,global,0.931619901,21.852,23.7112,22.817,22.8878,1,CMIP5 -2206,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.216427699,0.9213,4.9984,2.457566667,1.453,1,CMIP5 -2206,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.94785401,26.2221,28.0208,27.29426667,27.6399,1,CMIP5 -2207,tas,temperature,tgav,rcp85,C,Simulated,global,0.895333426,21.92,23.7106,22.81976667,22.8287,1,CMIP5 -2207,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.143070009,0.8738,4.8501,2.400066667,1.4763,1,CMIP5 -2207,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.89702442,26.3142,28.0543,27.3103,27.5624,1,CMIP5 -2208,tas,temperature,tgav,rcp85,C,Simulated,global,0.870403339,22.0146,23.7438,22.82126667,22.7054,1,CMIP5 -2208,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.200762119,1.0048,4.9402,2.403433333,1.2653,1,CMIP5 -2208,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.846256722,26.4012,28.0744,27.3114,27.4586,1,CMIP5 -2209,tas,temperature,tgav,rcp85,C,Simulated,global,0.830064461,22.1181,23.7775,22.962,22.9904,1,CMIP5 -2209,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.140121053,0.9936,4.9572,2.509,1.5762,1,CMIP5 -2209,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.827502556,26.5287,28.1119,27.4595,27.7379,1,CMIP5 -2210,tas,temperature,tgav,rcp85,C,Simulated,global,0.933486675,21.9683,23.8329,22.92776667,22.9821,1,CMIP5 -2210,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.233953831,0.6604,4.8594,2.3192,1.4378,1,CMIP5 -2210,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.929592701,26.4171,28.2027,27.4594,27.7584,1,CMIP5 -2211,tas,temperature,tgav,rcp85,C,Simulated,global,0.967245222,21.9658,23.9002,22.9384,22.9492,1,CMIP5 -2211,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.222633421,0.953,4.9543,2.394633333,1.2766,1,CMIP5 -2211,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.989365438,26.353,28.2636,27.4569,27.7541,1,CMIP5 -2212,tas,temperature,tgav,rcp85,C,Simulated,global,0.833765333,22.1042,23.7685,22.9064,22.8465,1,CMIP5 -2212,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.056911887,1.0296,4.7123,2.3417,1.2832,1,CMIP5 -2212,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.843963441,26.5044,28.1573,27.4296,27.6271,1,CMIP5 -2213,tas,temperature,tgav,rcp85,C,Simulated,global,0.835178977,22.1058,23.7761,22.94496667,22.953,1,CMIP5 -2213,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.169505538,1.049,5.0208,2.5306,1.522,1,CMIP5 -2213,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.830329928,26.5022,28.0955,27.434,27.7043,1,CMIP5 -2214,tas,temperature,tgav,rcp85,C,Simulated,global,0.835163034,22.124,23.7768,23.02006667,23.1594,1,CMIP5 -2214,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.08839005,1.078,4.936,2.545,1.621,1,CMIP5 -2214,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.87479196,26.5182,28.116,27.52286667,27.9344,1,CMIP5 -2215,tas,temperature,tgav,rcp85,C,Simulated,global,0.943906897,22.0987,23.9564,23.1245,23.3184,1,CMIP5 -2215,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.291782453,0.9448,5.1566,2.5287,1.4847,1,CMIP5 -2215,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.987618967,26.5154,28.2861,27.65343333,28.1588,1,CMIP5 -2216,tas,temperature,tgav,rcp85,C,Simulated,global,0.882301088,22.1488,23.8891,23.1032,23.2717,1,CMIP5 -2216,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.055358145,1.2579,5.0894,2.743766667,1.884,1,CMIP5 -2216,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.93258465,26.5106,28.2188,27.5809,28.0133,1,CMIP5 -2217,tas,temperature,tgav,rcp85,C,Simulated,global,0.856218397,22.1241,23.812,23.05143333,23.2182,1,CMIP5 -2217,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.169217542,1.0591,5.1612,2.702433333,1.887,1,CMIP5 -2217,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.872653815,26.5223,28.1075,27.5257,27.9473,1,CMIP5 -2218,tas,temperature,tgav,rcp85,C,Simulated,global,0.924307829,22.0764,23.8741,23.09963333,23.3484,1,CMIP5 -2218,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.185072585,1.0589,5.225,2.760966667,1.999,1,CMIP5 -2218,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.959747828,26.4646,28.169,27.57166667,28.0814,1,CMIP5 -2219,tas,temperature,tgav,rcp85,C,Simulated,global,0.913109397,22.1376,23.9191,23.1443,23.3762,1,CMIP5 -2219,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.201332579,1.0579,5.2702,2.794366667,2.055,1,CMIP5 -2219,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.936753886,26.5389,28.2141,27.61866667,28.103,1,CMIP5 -2220,tas,temperature,tgav,rcp85,C,Simulated,global,0.866616201,22.208,23.9362,23.1102,23.1864,1,CMIP5 -2220,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.260601867,0.9151,5.1582,2.585966667,1.6846,1,CMIP5 -2220,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.853156017,26.6537,28.261,27.6227,27.9534,1,CMIP5 -2221,tas,temperature,tgav,rcp85,C,Simulated,global,0.898016227,22.1633,23.9512,23.10653333,23.2051,1,CMIP5 -2221,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.049257605,1.0357,4.9552,2.6496,1.9579,1,CMIP5 -2221,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.916075144,26.5745,28.3261,27.6054,27.9156,1,CMIP5 -2222,tas,temperature,tgav,rcp85,C,Simulated,global,0.880747605,22.2698,24.0149,23.21156667,23.35,1,CMIP5 -2222,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.066642461,1.1217,5.0004,2.648766667,1.8242,1,CMIP5 -2222,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.918226704,26.6853,28.3941,27.7339,28.1223,1,CMIP5 -2223,tas,temperature,tgav,rcp85,C,Simulated,global,0.919709043,22.2827,24.0904,23.28473333,23.4811,1,CMIP5 -2223,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.152168094,1.154,5.2355,2.800133333,2.0109,1,CMIP5 -2223,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.953354312,26.6941,28.4328,27.78936667,28.2412,1,CMIP5 -2224,tas,temperature,tgav,rcp85,C,Simulated,global,0.90611867,22.2453,24.0309,23.22746667,23.4062,1,CMIP5 -2224,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.220918356,0.9774,5.2772,2.805633333,2.1623,1,CMIP5 -2224,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.900813634,26.6859,28.3499,27.71726667,28.116,1,CMIP5 -2225,tas,temperature,tgav,rcp85,C,Simulated,global,0.926904677,22.244,24.0822,23.2324,23.371,1,CMIP5 -2225,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.256895003,0.8416,5.256,2.776866667,2.233,1,CMIP5 -2225,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.898788835,26.7125,28.418,27.7292,28.0571,1,CMIP5 -2226,tas,temperature,tgav,rcp85,C,Simulated,global,0.914780941,22.2692,24.0662,23.2669,23.4653,1,CMIP5 -2226,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.128062946,1.1505,5.3139,2.977133333,2.467,1,CMIP5 -2226,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.918507628,26.6785,28.385,27.72806667,28.1207,1,CMIP5 -2227,tas,temperature,tgav,rcp85,C,Simulated,global,0.971394803,22.2131,24.0858,23.29873333,23.5973,1,CMIP5 -2227,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.032799499,1.1586,5.107,2.853033333,2.2935,1,CMIP5 -2227,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.02962381,26.6091,28.4567,27.7954,28.3204,1,CMIP5 -2228,tas,temperature,tgav,rcp85,C,Simulated,global,0.988945349,22.2476,24.1861,23.33023333,23.557,1,CMIP5 -2228,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.173195825,1.023,5.2628,2.866733333,2.3144,1,CMIP5 -2228,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.006325774,26.679,28.5443,27.82986667,28.2663,1,CMIP5 -2229,tas,temperature,tgav,rcp85,C,Simulated,global,0.934809207,22.3154,24.144,23.34213333,23.567,1,CMIP5 -2229,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.194603512,1.0439,5.3331,2.919566667,2.3817,1,CMIP5 -2229,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.937565658,26.7566,28.4763,27.83223333,28.2638,1,CMIP5 -2230,tas,temperature,tgav,rcp85,C,Simulated,global,0.886299613,22.3613,24.0889,23.33966667,23.5688,1,CMIP5 -2230,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.205301162,1.1783,5.3803,2.892366667,2.1185,1,CMIP5 -2230,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.911189876,26.784,28.3976,27.8353,28.3243,1,CMIP5 -2231,tas,temperature,tgav,rcp85,C,Simulated,global,1.01089998,22.3155,24.2736,23.4399,23.7306,1,CMIP5 -2231,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.121274949,1.3512,5.4779,3.1303,2.5618,1,CMIP5 -2231,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.054803811,26.6926,28.6024,27.9062,28.4236,1,CMIP5 -2232,tas,temperature,tgav,rcp85,C,Simulated,global,1.082422177,22.207,24.2345,23.4398,23.8779,1,CMIP5 -2232,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.170212803,1.2113,5.4526,3.0657,2.5332,1,CMIP5 -2232,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.15167885,26.5907,28.6099,27.92023333,28.5601,1,CMIP5 -2233,tas,temperature,tgav,rcp85,C,Simulated,global,1.044130437,22.3355,24.3665,23.4912,23.7716,1,CMIP5 -2233,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.223963256,1.1199,5.5142,3.118266667,2.7207,1,CMIP5 -2233,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.052679529,26.7651,28.7083,27.9706,28.4384,1,CMIP5 -2234,tas,temperature,tgav,rcp85,C,Simulated,global,1.008909862,22.4035,24.3546,23.5276,23.8247,1,CMIP5 -2234,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.071166942,1.2778,5.3992,3.218433333,2.9783,1,CMIP5 -2234,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.030409634,26.8143,28.7201,27.99356667,28.4463,1,CMIP5 -2235,tas,temperature,tgav,rcp85,C,Simulated,global,1.010860477,22.4427,24.3737,23.58106667,23.9268,1,CMIP5 -2235,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.195082247,1.2733,5.6377,3.3184,3.0442,1,CMIP5 -2235,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.018194453,26.8627,28.6886,28.03593333,28.5565,1,CMIP5 -2236,tas,temperature,tgav,rcp85,C,Simulated,global,0.963224683,22.4783,24.37,23.5293,23.7396,1,CMIP5 -2236,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.107967524,1.3858,5.4883,3.156633333,2.5958,1,CMIP5 -2236,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.986940045,26.8822,28.7186,28.00933333,28.4272,1,CMIP5 -2237,tas,temperature,tgav,rcp85,C,Simulated,global,1.02039265,22.3926,24.409,23.4916,23.6732,1,CMIP5 -2237,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.225072687,1.2203,5.5825,3.147266667,2.639,1,CMIP5 -2237,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.018080002,26.8131,28.7448,27.9648,28.3365,1,CMIP5 -2238,tas,temperature,tgav,rcp85,C,Simulated,global,0.986261035,22.3773,24.325,23.4412,23.6213,1,CMIP5 -2238,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.171365448,1.0502,5.3451,3.0121,2.641,1,CMIP5 -2238,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.978312528,26.8301,28.6962,27.93296667,28.2726,1,CMIP5 -2239,tas,temperature,tgav,rcp85,C,Simulated,global,0.986167148,22.4753,24.3917,23.56813333,23.8374,1,CMIP5 -2239,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.220883505,1.4006,5.7107,3.245766667,2.626,1,CMIP5 -2239,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.008399598,26.8755,28.694,28.0365,28.54,1,CMIP5 -2240,tas,temperature,tgav,rcp85,C,Simulated,global,0.964987898,22.475,24.3226,23.55983333,23.8819,1,CMIP5 -2240,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.056219457,1.492,5.46,3.164133333,2.5404,1,CMIP5 -2240,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.030283768,26.856,28.6667,28.04526667,28.6131,1,CMIP5 -2241,tas,temperature,tgav,rcp85,C,Simulated,global,0.919483139,22.577,24.3654,23.59483333,23.8421,1,CMIP5 -2241,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.107950958,1.6621,5.6903,3.3171,2.5989,1,CMIP5 -2241,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,0.963109705,26.9438,28.6663,28.05393333,28.5517,1,CMIP5 -2242,tas,temperature,tgav,rcp85,C,Simulated,global,0.968579745,22.5739,24.4323,23.66093333,23.9766,1,CMIP5 -2242,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.981830868,1.822,5.6576,3.4513,2.8743,1,CMIP5 -2242,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.03991621,26.9066,28.7563,28.10596667,28.655,1,CMIP5 -2243,tas,temperature,tgav,rcp85,C,Simulated,global,1.018180441,22.5257,24.519,23.6426,23.8831,1,CMIP5 -2243,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.982004441,1.8468,5.6047,3.361566667,2.6332,1,CMIP5 -2243,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.100966762,26.8433,28.8751,28.1042,28.5942,1,CMIP5 -2244,tas,temperature,tgav,rcp85,C,Simulated,global,1.043439152,22.5021,24.5043,23.67306667,24.0128,1,CMIP5 -2244,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.956330573,1.7748,5.5727,3.4022,2.8591,1,CMIP5 -2244,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.130891865,26.8297,28.8643,28.1322,28.7026,1,CMIP5 -2245,tas,temperature,tgav,rcp85,C,Simulated,global,1.099855792,22.4733,24.5558,23.71906667,24.1281,1,CMIP5 -2245,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.857653548,1.8339,5.461,3.415133333,2.9505,1,CMIP5 -2245,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.217468209,26.7826,28.9534,28.1864,28.8232,1,CMIP5 -2246,tas,temperature,tgav,rcp85,C,Simulated,global,1.077374667,22.5293,24.6085,23.73216667,24.0587,1,CMIP5 -2246,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.967690464,1.6243,5.4808,3.326233333,2.8736,1,CMIP5 -2246,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.156455529,26.8941,29.0138,28.2211,28.7554,1,CMIP5 -2247,tas,temperature,tgav,rcp85,C,Simulated,global,1.059110348,22.4576,24.5339,23.6168,23.8589,1,CMIP5 -2247,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.211775202,1.4286,5.6564,3.166833333,2.4155,1,CMIP5 -2247,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.104560376,26.8482,28.8815,28.11416667,28.6128,1,CMIP5 -2248,tas,temperature,tgav,rcp85,C,Simulated,global,1.069170998,22.5209,24.5963,23.70726667,24.0046,1,CMIP5 -2248,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.096569287,1.6159,5.6911,3.368433333,2.7983,1,CMIP5 -2248,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.128117486,26.8856,28.9503,28.18056667,28.7058,1,CMIP5 -2249,tas,temperature,tgav,rcp85,C,Simulated,global,1.058658193,22.6392,24.6761,23.8245,24.1582,1,CMIP5 -2249,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.085867088,1.7379,5.7838,3.4673,2.8802,1,CMIP5 -2249,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.127287383,27.0032,29.0271,28.30193333,28.8755,1,CMIP5 -2250,tas,temperature,tgav,rcp85,C,Simulated,global,1.12584055,22.5178,24.6547,23.79113333,24.2009,1,CMIP5 -2250,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.222595038,1.483,5.8181,3.366733333,2.7991,1,CMIP5 -2250,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.189374638,26.9096,28.9929,28.2827,28.9456,1,CMIP5 -2251,tas,temperature,tgav,rcp85,C,Simulated,global,1.136162581,22.5547,24.703,23.8426,24.2701,1,CMIP5 -2251,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.178292066,1.5962,5.8315,3.419166667,2.8298,1,CMIP5 -2251,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.215738234,26.9306,29.0492,28.33433333,29.0232,1,CMIP5 -2252,tas,temperature,tgav,rcp85,C,Simulated,global,1.141969169,22.543,24.68,23.84416667,24.3095,1,CMIP5 -2252,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.082569198,1.6172,5.7527,3.541766667,3.2554,1,CMIP5 -2252,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.210495589,26.9121,29.0391,28.3094,28.977,1,CMIP5 -2253,tas,temperature,tgav,rcp85,C,Simulated,global,1.100027927,22.6044,24.7276,23.8324,24.1652,1,CMIP5 -2253,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.069636761,1.7593,5.7961,3.513466667,2.985,1,CMIP5 -2253,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.17033509,26.9566,29.0875,28.30163333,28.8608,1,CMIP5 -2254,tas,temperature,tgav,rcp85,C,Simulated,global,1.100993206,22.6271,24.7425,23.8613,24.2143,1,CMIP5 -2254,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.083617089,1.7247,5.8189,3.547566667,3.0991,1,CMIP5 -2254,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.163193591,26.9913,29.1008,28.3292,28.8955,1,CMIP5 -2255,tas,temperature,tgav,rcp85,C,Simulated,global,1.149900702,22.6052,24.7945,23.90316667,24.3098,1,CMIP5 -2255,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.109321297,1.758,5.883,3.565333333,3.055,1,CMIP5 -2255,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.230356267,26.9578,29.15,28.37656667,29.0219,1,CMIP5 -2256,tas,temperature,tgav,rcp85,C,Simulated,global,1.238090212,22.4485,24.7667,23.85883333,24.3613,1,CMIP5 -2256,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.248015412,1.666,6.0524,3.574333333,3.0046,1,CMIP5 -2256,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.327103547,26.7877,29.0959,28.32006667,29.0766,1,CMIP5 -2257,tas,temperature,tgav,rcp85,C,Simulated,global,1.155098023,22.5732,24.7444,23.88663333,24.3423,1,CMIP5 -2257,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.222265975,1.529,5.9453,3.592766667,3.304,1,CMIP5 -2257,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.197412264,26.967,29.074,28.3491,29.0063,1,CMIP5 -2258,tas,temperature,tgav,rcp85,C,Simulated,global,1.161620464,22.5305,24.6919,23.85713333,24.349,1,CMIP5 -2258,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.207845842,1.6486,5.9704,3.548033333,3.0251,1,CMIP5 -2258,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.241578432,26.8904,29.0764,28.32343333,29.0035,1,CMIP5 -2259,tas,temperature,tgav,rcp85,C,Simulated,global,1.114220369,22.587,24.6927,23.8504,24.2715,1,CMIP5 -2259,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.058930081,1.8095,5.7737,3.4699,2.8265,1,CMIP5 -2259,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.219827928,26.9251,29.0499,28.33356667,29.0257,1,CMIP5 -2260,tas,temperature,tgav,rcp85,C,Simulated,global,1.118036074,22.623,24.7417,23.88873333,24.3015,1,CMIP5 -2260,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.134835008,1.7267,5.8203,3.4232,2.7226,1,CMIP5 -2260,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.216179333,26.9859,29.0993,28.3902,29.0854,1,CMIP5 -2261,tas,temperature,tgav,rcp85,C,Simulated,global,1.084969571,22.7245,24.7586,23.9597,24.396,1,CMIP5 -2261,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.019221064,1.849,5.8319,3.647766667,3.2624,1,CMIP5 -2261,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.164223966,27.0831,29.1175,28.42726667,29.0812,1,CMIP5 -2262,tas,temperature,tgav,rcp85,C,Simulated,global,1.204280583,22.609,24.8399,23.98653333,24.5107,1,CMIP5 -2262,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.203636728,1.7245,6.0397,3.6234,3.106,1,CMIP5 -2262,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.295975009,26.9695,29.2561,28.46513333,29.1698,1,CMIP5 -2263,tas,temperature,tgav,rcp85,C,Simulated,global,1.117204249,22.6747,24.7407,23.95336667,24.4447,1,CMIP5 -2263,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.209453326,1.7248,6.0328,3.5948,3.0268,1,CMIP5 -2263,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.198595429,27.0488,29.1929,28.43033333,29.0493,1,CMIP5 -2264,tas,temperature,tgav,rcp85,C,Simulated,global,1.124344259,22.6753,24.7965,23.95136667,24.3823,1,CMIP5 -2264,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.063013656,1.9157,5.9246,3.638366667,3.0748,1,CMIP5 -2264,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.221089367,27.0097,29.1428,28.41953333,29.1061,1,CMIP5 -2265,tas,temperature,tgav,rcp85,C,Simulated,global,1.048966925,22.6582,24.6513,23.8438,24.2219,1,CMIP5 -2265,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.086818385,1.9405,5.8983,3.536966667,2.7721,1,CMIP5 -2265,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.148874632,26.9838,28.9772,28.3104,28.9702,1,CMIP5 -2266,tas,temperature,tgav,rcp85,C,Simulated,global,1.15463185,22.6691,24.8063,23.9902,24.4952,1,CMIP5 -2266,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.271373726,1.4805,5.9716,3.528866667,3.1345,1,CMIP5 -2266,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.209919716,27.0931,29.2307,28.4893,29.1441,1,CMIP5 -2267,tas,temperature,tgav,rcp85,C,Simulated,global,1.192361964,22.6991,24.8305,24.07356667,24.6911,1,CMIP5 -2267,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.315695103,1.5085,6.1228,3.7009,3.4714,1,CMIP5 -2267,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.244230241,27.1235,29.3953,28.55256667,29.1389,1,CMIP5 -2268,tas,temperature,tgav,rcp85,C,Simulated,global,1.138827732,22.6365,24.6601,23.95006667,24.5536,1,CMIP5 -2268,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.094868904,1.6615,5.8498,3.723966667,3.6606,1,CMIP5 -2268,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.200747222,27.0159,29.1856,28.3979,28.9922,1,CMIP5 -2269,tas,temperature,tgav,rcp85,C,Simulated,global,1.16101411,22.6197,24.7684,23.94816667,24.4564,1,CMIP5 -2269,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.09651862,1.8172,5.9695,3.725033333,3.3884,1,CMIP5 -2269,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.241072006,26.963,29.1271,28.39596667,29.0978,1,CMIP5 -2270,tas,temperature,tgav,rcp85,C,Simulated,global,1.209067022,22.563,24.7472,23.95463333,24.5537,1,CMIP5 -2270,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.151512326,1.7578,6.0024,3.6761,3.2681,1,CMIP5 -2270,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.309796138,26.9069,29.2725,28.41453333,29.0642,1,CMIP5 -2271,tas,temperature,tgav,rcp85,C,Simulated,global,1.17191935,22.691,24.7398,24.04403333,24.7013,1,CMIP5 -2271,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.07613883,1.9136,6.0372,3.834766667,3.5535,1,CMIP5 -2271,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.282662599,27.0291,29.4368,28.48853333,28.9997,1,CMIP5 -2272,tas,temperature,tgav,rcp85,C,Simulated,global,1.143972242,22.7057,24.7843,24.021,24.573,1,CMIP5 -2272,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.152634937,1.7417,6.0273,3.765833333,3.5285,1,CMIP5 -2272,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.207693183,27.0828,29.2385,28.47516667,29.1042,1,CMIP5 -2273,tas,temperature,tgav,rcp85,C,Simulated,global,1.200194961,22.6772,24.8471,24.05843333,24.651,1,CMIP5 -2273,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.223221408,1.7714,6.1606,3.7607,3.3501,1,CMIP5 -2273,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.286474813,27.0421,29.3732,28.52203333,29.1508,1,CMIP5 -2274,tas,temperature,tgav,rcp85,C,Simulated,global,1.191754628,22.6692,24.8344,24.03946667,24.6148,1,CMIP5 -2274,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.113675581,1.8141,5.9998,3.736066667,3.3943,1,CMIP5 -2274,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.285071151,27.0235,29.3193,28.50493333,29.172,1,CMIP5 -2275,tas,temperature,tgav,rcp85,C,Simulated,global,1.15325172,22.7493,24.8476,24.0749,24.6278,1,CMIP5 -2275,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.944286487,2.2675,6.0366,3.875933333,3.3237,1,CMIP5 -2275,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.295914971,27.0256,29.3508,28.51873333,29.1798,1,CMIP5 -2276,tas,temperature,tgav,rcp85,C,Simulated,global,1.199112607,22.6547,24.7794,24.03813333,24.6803,1,CMIP5 -2276,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.996741912,2.1379,6.0844,3.934833333,3.5822,1,CMIP5 -2276,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.325071984,26.9384,29.3577,28.46033333,29.0849,1,CMIP5 -2277,tas,temperature,tgav,rcp85,C,Simulated,global,1.202518783,22.6626,24.8495,24.04496667,24.6228,1,CMIP5 -2277,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.161348794,1.7708,6.0842,3.8457,3.6821,1,CMIP5 -2277,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.267378059,27.0246,29.2653,28.48703333,29.1712,1,CMIP5 -2278,tas,temperature,tgav,rcp85,C,Simulated,global,1.164721294,22.6812,24.79,24.02126667,24.5926,1,CMIP5 -2278,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.268728623,1.7726,6.2898,3.907566667,3.6603,1,CMIP5 -2278,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.213162418,27.0467,29.2333,28.44356667,29.0507,1,CMIP5 -2279,tas,temperature,tgav,rcp85,C,Simulated,global,1.093120141,22.7157,24.7098,23.97146667,24.4889,1,CMIP5 -2279,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.118118781,1.799,6.0276,3.8399,3.6931,1,CMIP5 -2279,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.139938548,27.0829,29.0993,28.39823333,29.0125,1,CMIP5 -2280,tas,temperature,tgav,rcp85,C,Simulated,global,1.124977853,22.6524,24.7149,23.9432,24.4623,1,CMIP5 -2280,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.309107166,1.6684,6.2073,3.691833333,3.1998,1,CMIP5 -2280,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.183756602,27.0336,29.176,28.39566667,28.9774,1,CMIP5 -2281,tas,temperature,tgav,rcp85,C,Simulated,global,1.17463311,22.6445,24.8374,23.98423333,24.4708,1,CMIP5 -2281,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.160654485,2.0193,6.2302,3.844566667,3.2842,1,CMIP5 -2281,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.267137208,26.9508,29.1677,28.41373333,29.1227,1,CMIP5 -2282,tas,temperature,tgav,rcp85,C,Simulated,global,1.171109401,22.7468,24.8473,24.0962,24.6945,1,CMIP5 -2282,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.044847609,2.0459,6.0726,3.852833333,3.44,1,CMIP5 -2282,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.287134617,27.0689,29.4066,28.54893333,29.1713,1,CMIP5 -2283,tas,temperature,tgav,rcp85,C,Simulated,global,1.124067133,22.7109,24.6753,24.0087,24.6399,1,CMIP5 -2283,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.03246113,1.791,5.8419,3.719066667,3.5243,1,CMIP5 -2283,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.215478952,27.0787,29.3212,28.47086667,29.0127,1,CMIP5 -2284,tas,temperature,tgav,rcp85,C,Simulated,global,1.082655413,22.7786,24.7395,24.02416667,24.5544,1,CMIP5 -2284,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.986790604,2.0704,5.9685,3.796933333,3.3519,1,CMIP5 -2284,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.191236384,27.1022,29.2549,28.47323333,29.0626,1,CMIP5 -2285,tas,temperature,tgav,rcp85,C,Simulated,global,1.174208768,22.7287,24.7734,24.0845,24.7514,1,CMIP5 -2285,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.099273742,1.9304,6.1193,3.942733333,3.7785,1,CMIP5 -2285,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.264195408,27.0711,29.4279,28.5138,29.0424,1,CMIP5 -2286,tas,temperature,tgav,rcp85,C,Simulated,global,1.121574279,22.7602,24.7337,24.05476667,24.6704,1,CMIP5 -2286,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.973734846,1.9965,5.9374,3.901233333,3.7698,1,CMIP5 -2286,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.221459942,27.0954,29.3813,28.4871,28.9846,1,CMIP5 -2287,tas,temperature,tgav,rcp85,C,Simulated,global,1.060074952,22.8403,24.7404,24.06186667,24.6049,1,CMIP5 -2287,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.92075353,2.0814,5.8757,3.805233333,3.4586,1,CMIP5 -2287,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.167712614,27.1745,29.293,28.5175,29.085,1,CMIP5 -2288,tas,temperature,tgav,rcp85,C,Simulated,global,1.177568015,22.8483,24.9416,24.2065,24.8296,1,CMIP5 -2288,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.236831671,1.9856,6.3789,3.938566667,3.4512,1,CMIP5 -2288,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.27587186,27.2042,29.5691,28.66333333,29.2167,1,CMIP5 -2289,tas,temperature,tgav,rcp85,C,Simulated,global,1.243042225,22.7806,24.9378,24.21593333,24.9294,1,CMIP5 -2289,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.042793725,2.19,6.2029,3.974966667,3.532,1,CMIP5 -2289,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.391976671,27.0796,29.6732,28.66846667,29.2526,1,CMIP5 -2290,tas,temperature,tgav,rcp85,C,Simulated,global,1.104885231,22.9046,24.9108,24.17513333,24.71,1,CMIP5 -2290,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.904501268,2.4523,6.1661,4.0649,3.5763,1,CMIP5 -2290,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.236435119,27.1748,29.3952,28.59923333,29.2277,1,CMIP5 -2291,tas,temperature,tgav,rcp85,C,Simulated,global,1.134551206,22.8801,24.8677,24.1899,24.8219,1,CMIP5 -2291,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.899754711,2.4076,6.1529,4.095633333,3.7264,1,CMIP5 -2291,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.270887313,27.1546,29.4986,28.61036667,29.1779,1,CMIP5 -2292,tas,temperature,tgav,rcp85,C,Simulated,global,1.182758481,22.8558,24.9805,24.21833333,24.8187,1,CMIP5 -2292,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.076480653,2.1227,6.2297,3.998333333,3.6426,1,CMIP5 -2292,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.287055784,27.1846,29.5133,28.6656,29.2989,1,CMIP5 -2293,tas,temperature,tgav,rcp85,C,Simulated,global,1.184482357,22.8502,25.0362,24.20673333,24.7338,1,CMIP5 -2293,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.049465606,2.2613,6.2393,3.965,3.3944,1,CMIP5 -2293,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.309219395,27.1489,29.4646,28.65956667,29.3652,1,CMIP5 -2294,tas,temperature,tgav,rcp85,C,Simulated,global,1.192410627,22.8639,25.0198,24.23616667,24.8248,1,CMIP5 -2294,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.123736618,2.1734,6.3357,4.010233333,3.5216,1,CMIP5 -2294,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.304663991,27.1838,29.5475,28.6847,29.3228,1,CMIP5 -2295,tas,temperature,tgav,rcp85,C,Simulated,global,1.161652953,22.8718,24.8913,24.21313333,24.8763,1,CMIP5 -2295,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.015472597,2.2534,6.2613,4.1331,3.8846,1,CMIP5 -2295,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.270207453,27.1767,29.5301,28.62956667,29.1819,1,CMIP5 -2296,tas,temperature,tgav,rcp85,C,Simulated,global,1.204361783,22.8188,24.9298,24.20916667,24.8789,1,CMIP5 -2296,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.078866298,2.0807,6.2307,4.082533333,3.9362,1,CMIP5 -2296,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.303854946,27.1487,29.5841,28.6355,29.1737,1,CMIP5 -2297,tas,temperature,tgav,rcp85,C,Simulated,global,1.269340007,22.767,25.0146,24.23153333,24.913,1,CMIP5 -2297,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.086075982,2.2133,6.3332,4.083233333,3.7032,1,CMIP5 -2297,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.39802554,27.0584,29.6151,28.6635,29.317,1,CMIP5 -2298,tas,temperature,tgav,rcp85,C,Simulated,global,1.223755814,22.7952,24.918,24.20826667,24.9116,1,CMIP5 -2298,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.058514261,1.9449,6.0492,3.903666667,3.7169,1,CMIP5 -2298,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.333589596,27.1486,29.6183,28.6742,29.2557,1,CMIP5 -2299,tas,temperature,tgav,rcp85,C,Simulated,global,1.210075379,22.8363,24.9794,24.23243333,24.8816,1,CMIP5 -2299,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,2.140951524,1.9265,6.1948,3.9622,3.7653,1,CMIP5 -2299,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.295262677,27.202,29.5631,28.69023333,29.3056,1,CMIP5 -2300,tas,temperature,tgav,rcp85,C,Simulated,global,1.418314782,22.8883,24.8941,23.8912,23.8912,1,CMIP5 -2300,tas,temperature,tgav_HL,rcp85,C,Simulated,HL,1.320309782,2.0542,3.9214,2.9878,2.9878,1,CMIP5 -2300,tas,temperature,tgav_LL,rcp85,C,Simulated,LL,1.630234684,27.2382,29.5437,28.39095,28.39095,1,CMIP5 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/BATS_PH.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/BATS_PH.csv deleted file mode 100644 index e6fa21303..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/BATS_PH.csv +++ /dev/null @@ -1,18 +0,0 @@ -#Bermuda Atlantic Time Series,,,,,,, -# surface values from ODV data sets,,,,,,, -year,value,vtag,ctag,type,scenario,model,units -1992,8.123473333,PH_LL,ocean,Observed,historical,BATS,U_PH -1993,8.110631667,PH_LL,ocean,Observed,historical,BATS,U_PH -1994,8.121494,PH_LL,ocean,Observed,historical,BATS,U_PH -1995,8.111846667,PH_LL,ocean,Observed,historical,BATS,U_PH -1996,8.105546667,PH_LL,ocean,Observed,historical,BATS,U_PH -1997,8.107123077,PH_LL,ocean,Observed,historical,BATS,U_PH -1998,8.08757,PH_LL,ocean,Observed,historical,BATS,U_PH -1999,8.108839,PH_LL,ocean,Observed,historical,BATS,U_PH -2000,8.109815,PH_LL,ocean,Observed,historical,BATS,U_PH -2001,8.103787222,PH_LL,ocean,Observed,historical,BATS,U_PH -2002,8.106296364,PH_LL,ocean,Observed,historical,BATS,U_PH -2003,8.0763965,PH_LL,ocean,Observed,historical,BATS,U_PH -2004,8.0893435,PH_LL,ocean,Observed,historical,BATS,U_PH -2005,8.09519625,PH_LL,ocean,Observed,historical,BATS,U_PH -2006,8.097756667,PH_LL,ocean,Observed,historical,BATS,U_PH diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/HOTS_PCO2.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/HOTS_PCO2.csv deleted file mode 100644 index f6dfd452c..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/HOTS_PCO2.csv +++ /dev/null @@ -1,33 +0,0 @@ -#HOT_surface_CO2.txt pCO2 (insitu),,,,,,, -#Hawaii Ocean Time-series surface CO2 system data product,,,,,,, -#Created 5 October 2009 by J.E. Dore,,,,,,, -#Last updated 19 May 2013 by J.E. Dore,,,,,,, -"#See HOT_surface_CO2_readme.pdf for explanatory material, metadata, and notes (http://hahana.soest.hawaii.edu/hot/products/products.html)",,,,,,, -#When using this data product please cite as adapted from: Dore J.E. etal 2009. Physical and biogeochemical modulation of ocean acidification in the central North Pacific. Proc Natl Acad Sci USA 106:12235-12240.,,,,,,, -#Please direct questions or comments regarding this data product to John Dore: jdore@montana.edu,,,,,,, -,,,,,,, -Year,value,ctag,vtag,units,type,scenario,model -1988,330.75,ocean,pco2_ll,uatm,Observed,historical,HOTS -1989,331.56,ocean,pco2_ll,uatm,Observed,historical,HOTS -1990,323.0222222,ocean,pco2_ll,uatm,Observed,historical,HOTS -1991,329.36,ocean,pco2_ll,uatm,Observed,historical,HOTS -1992,332.7727273,ocean,pco2_ll,uatm,Observed,historical,HOTS -1993,331.7833333,ocean,pco2_ll,uatm,Observed,historical,HOTS -1994,333.5222222,ocean,pco2_ll,uatm,Observed,historical,HOTS -1995,334.9444444,ocean,pco2_ll,uatm,Observed,historical,HOTS -1996,341.8,ocean,pco2_ll,uatm,Observed,historical,HOTS -1997,340.25,ocean,pco2_ll,uatm,Observed,historical,HOTS -1998,347.8333333,ocean,pco2_ll,uatm,Observed,historical,HOTS -1999,347.67,ocean,pco2_ll,uatm,Observed,historical,HOTS -2000,354.4181818,ocean,pco2_ll,uatm,Observed,historical,HOTS -2001,353.725,ocean,pco2_ll,uatm,Observed,historical,HOTS -2002,351.72,ocean,pco2_ll,uatm,Observed,historical,HOTS -2003,347.7181818,ocean,pco2_ll,uatm,Observed,historical,HOTS -2004,348.825,ocean,pco2_ll,uatm,Observed,historical,HOTS -2005,357.93,ocean,pco2_ll,uatm,Observed,historical,HOTS -2006,353.9166667,ocean,pco2_ll,uatm,Observed,historical,HOTS -2007,363.9444444,ocean,pco2_ll,uatm,Observed,historical,HOTS -2008,362.25,ocean,pco2_ll,uatm,Observed,historical,HOTS -2009,368.16,ocean,pco2_ll,uatm,Observed,historical,HOTS -2010,365.4222222,ocean,pco2_ll,uatm,Observed,historical,HOTS -2011,363.64,ocean,pco2_ll,uatm,Observed,historical,HOTS diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/HOTS_PH.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/HOTS_PH.csv deleted file mode 100644 index 1fdd06ee3..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/HOTS_PH.csv +++ /dev/null @@ -1,25 +0,0 @@ -#Hawaii Ocean Time-Series,,,,,,, -#(2) ALOHA Station,,,,,,, -#0 -100 m pH,,,,,,, -Year,value,ctag,vtag,units,type,scenario,model -1992,8.0955,ocean,ph_LL,U_PH,Observed,historical,HOTS -1993,8.094142857,ocean,ph_LL,U_PH,Observed,historical,HOTS -1994,8.101553191,ocean,ph_LL,U_PH,Observed,historical,HOTS -1995,8.087835443,ocean,ph_LL,U_PH,Observed,historical,HOTS -1996,8.0949875,ocean,ph_LL,U_PH,Observed,historical,HOTS -1997,8.082925,ocean,ph_LL,U_PH,Observed,historical,HOTS -1998,8.082384615,ocean,ph_LL,U_PH,Observed,historical,HOTS -1999,NA,ocean,ph_LL,U_PH,Observed,historical,HOTS -2000,NA,ocean,ph_LL,U_PH,Observed,historical,HOTS -2001,NA,ocean,ph_LL,U_PH,Observed,historical,HOTS -2002,NA,ocean,ph_LL,U_PH,Observed,historical,HOTS -2003,8.082090909,ocean,ph_LL,U_PH,Observed,historical,HOTS -2004,8.084511628,ocean,ph_LL,U_PH,Observed,historical,HOTS -2005,8.084022222,ocean,ph_LL,U_PH,Observed,historical,HOTS -2006,8.076020408,ocean,ph_LL,U_PH,Observed,historical,HOTS -2007,8.081128205,ocean,ph_LL,U_PH,Observed,historical,HOTS -2008,8.0736,ocean,ph_LL,U_PH,Observed,historical,HOTS -2009,8.06565,ocean,ph_LL,U_PH,Observed,historical,HOTS -2010,8.062725,ocean,ph_LL,U_PH,Observed,historical,HOTS -2011,8.072088889,ocean,ph_LL,U_PH,Observed,historical,HOTS -2012,8.061431818,ocean,ph_LL,U_PH,Observed,historical,HOTS diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/HadCRUT4.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/HadCRUT4.csv deleted file mode 100644 index a12165f4e..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/HadCRUT4.csv +++ /dev/null @@ -1,166 +0,0 @@ -#Global Temperature (Climatic Research Unit) Anomaly from 1850,,,,,,,,,, -year,1961:1990, Smoothed,value,valuesmoothed,vtag,ctag,model,units,type,scenario -1850,-0.374,-0.297,0,0,tgav,temperature,HadCRUT4,degC,Observed,Historical -1851,-0.219,-0.294,0.155,0.003,tgav,temperature,HadCRUT4,degC,Observed,Historical -1852,-0.223,-0.294,0.151,0.003,tgav,temperature,HadCRUT4,degC,Observed,Historical -1853,-0.268,-0.299,0.106,-0.002,tgav,temperature,HadCRUT4,degC,Observed,Historical -1854,-0.243,-0.307,0.131,-0.01,tgav,temperature,HadCRUT4,degC,Observed,Historical -1855,-0.264,-0.319,0.11,-0.022,tgav,temperature,HadCRUT4,degC,Observed,Historical -1856,-0.356,-0.333,0.018,-0.036,tgav,temperature,HadCRUT4,degC,Observed,Historical -1857,-0.454,-0.345,-0.08,-0.048,tgav,temperature,HadCRUT4,degC,Observed,Historical -1858,-0.461,-0.356,-0.087,-0.059,tgav,temperature,HadCRUT4,degC,Observed,Historical -1859,-0.282,-0.363,0.092,-0.066,tgav,temperature,HadCRUT4,degC,Observed,Historical -1860,-0.338,-0.367,0.036,-0.07,tgav,temperature,HadCRUT4,degC,Observed,Historical -1861,-0.391,-0.365,-0.017,-0.068,tgav,temperature,HadCRUT4,degC,Observed,Historical -1862,-0.503,-0.36,-0.129,-0.063,tgav,temperature,HadCRUT4,degC,Observed,Historical -1863,-0.275,-0.351,0.099,-0.054,tgav,temperature,HadCRUT4,degC,Observed,Historical -1864,-0.478,-0.339,-0.104,-0.042,tgav,temperature,HadCRUT4,degC,Observed,Historical -1865,-0.27,-0.325,0.104,-0.028,tgav,temperature,HadCRUT4,degC,Observed,Historical -1866,-0.241,-0.312,0.133,-0.015,tgav,temperature,HadCRUT4,degC,Observed,Historical -1867,-0.308,-0.301,0.066,-0.004,tgav,temperature,HadCRUT4,degC,Observed,Historical -1868,-0.23,-0.293,0.144,0.004,tgav,temperature,HadCRUT4,degC,Observed,Historical -1869,-0.259,-0.289,0.115,0.008,tgav,temperature,HadCRUT4,degC,Observed,Historical -1870,-0.271,-0.288,0.103,0.009,tgav,temperature,HadCRUT4,degC,Observed,Historical -1871,-0.326,-0.288,0.048,0.009,tgav,temperature,HadCRUT4,degC,Observed,Historical -1872,-0.229,-0.287,0.145,0.01,tgav,temperature,HadCRUT4,degC,Observed,Historical -1873,-0.306,-0.284,0.068,0.013,tgav,temperature,HadCRUT4,degC,Observed,Historical -1874,-0.373,-0.276,0.001,0.021,tgav,temperature,HadCRUT4,degC,Observed,Historical -1875,-0.408,-0.265,-0.034,0.032,tgav,temperature,HadCRUT4,degC,Observed,Historical -1876,-0.384,-0.252,-0.01,0.045,tgav,temperature,HadCRUT4,degC,Observed,Historical -1877,-0.073,-0.239,0.301,0.058,tgav,temperature,HadCRUT4,degC,Observed,Historical -1878,0.032,-0.231,0.406,0.066,tgav,temperature,HadCRUT4,degC,Observed,Historical -1879,-0.234,-0.229,0.14,0.068,tgav,temperature,HadCRUT4,degC,Observed,Historical -1880,-0.23,-0.235,0.144,0.062,tgav,temperature,HadCRUT4,degC,Observed,Historical -1881,-0.207,-0.248,0.167,0.049,tgav,temperature,HadCRUT4,degC,Observed,Historical -1882,-0.214,-0.266,0.16,0.031,tgav,temperature,HadCRUT4,degC,Observed,Historical -1883,-0.292,-0.286,0.082,0.011,tgav,temperature,HadCRUT4,degC,Observed,Historical -1884,-0.403,-0.305,-0.029,-0.008,tgav,temperature,HadCRUT4,degC,Observed,Historical -1885,-0.385,-0.321,-0.011,-0.024,tgav,temperature,HadCRUT4,degC,Observed,Historical -1886,-0.366,-0.333,0.008,-0.036,tgav,temperature,HadCRUT4,degC,Observed,Historical -1887,-0.418,-0.342,-0.044,-0.045,tgav,temperature,HadCRUT4,degC,Observed,Historical -1888,-0.309,-0.349,0.065,-0.052,tgav,temperature,HadCRUT4,degC,Observed,Historical -1889,-0.173,-0.355,0.201,-0.058,tgav,temperature,HadCRUT4,degC,Observed,Historical -1890,-0.419,-0.36,-0.045,-0.063,tgav,temperature,HadCRUT4,degC,Observed,Historical -1891,-0.339,-0.363,0.035,-0.066,tgav,temperature,HadCRUT4,degC,Observed,Historical -1892,-0.456,-0.364,-0.082,-0.067,tgav,temperature,HadCRUT4,degC,Observed,Historical -1893,-0.475,-0.36,-0.101,-0.063,tgav,temperature,HadCRUT4,degC,Observed,Historical -1894,-0.408,-0.353,-0.034,-0.056,tgav,temperature,HadCRUT4,degC,Observed,Historical -1895,-0.393,-0.344,-0.019,-0.047,tgav,temperature,HadCRUT4,degC,Observed,Historical -1896,-0.191,-0.334,0.183,-0.037,tgav,temperature,HadCRUT4,degC,Observed,Historical -1897,-0.21,-0.326,0.164,-0.029,tgav,temperature,HadCRUT4,degC,Observed,Historical -1898,-0.408,-0.323,-0.034,-0.026,tgav,temperature,HadCRUT4,degC,Observed,Historical -1899,-0.288,-0.327,0.086,-0.03,tgav,temperature,HadCRUT4,degC,Observed,Historical -1900,-0.198,-0.336,0.176,-0.039,tgav,temperature,HadCRUT4,degC,Observed,Historical -1901,-0.267,-0.351,0.107,-0.054,tgav,temperature,HadCRUT4,degC,Observed,Historical -1902,-0.412,-0.369,-0.038,-0.072,tgav,temperature,HadCRUT4,degC,Observed,Historical -1903,-0.481,-0.387,-0.107,-0.09,tgav,temperature,HadCRUT4,degC,Observed,Historical -1904,-0.528,-0.406,-0.154,-0.109,tgav,temperature,HadCRUT4,degC,Observed,Historical -1905,-0.382,-0.423,-0.008,-0.126,tgav,temperature,HadCRUT4,degC,Observed,Historical -1906,-0.294,-0.437,0.08,-0.14,tgav,temperature,HadCRUT4,degC,Observed,Historical -1907,-0.476,-0.448,-0.102,-0.151,tgav,temperature,HadCRUT4,degC,Observed,Historical -1908,-0.523,-0.455,-0.149,-0.158,tgav,temperature,HadCRUT4,degC,Observed,Historical -1909,-0.536,-0.456,-0.162,-0.159,tgav,temperature,HadCRUT4,degC,Observed,Historical -1910,-0.496,-0.451,-0.122,-0.154,tgav,temperature,HadCRUT4,degC,Observed,Historical -1911,-0.554,-0.439,-0.18,-0.142,tgav,temperature,HadCRUT4,degC,Observed,Historical -1912,-0.449,-0.422,-0.075,-0.125,tgav,temperature,HadCRUT4,degC,Observed,Historical -1913,-0.439,-0.403,-0.065,-0.106,tgav,temperature,HadCRUT4,degC,Observed,Historical -1914,-0.258,-0.383,0.116,-0.086,tgav,temperature,HadCRUT4,degC,Observed,Historical -1915,-0.164,-0.364,0.21,-0.067,tgav,temperature,HadCRUT4,degC,Observed,Historical -1916,-0.398,-0.348,-0.024,-0.051,tgav,temperature,HadCRUT4,degC,Observed,Historical -1917,-0.481,-0.333,-0.107,-0.036,tgav,temperature,HadCRUT4,degC,Observed,Historical -1918,-0.343,-0.318,0.031,-0.021,tgav,temperature,HadCRUT4,degC,Observed,Historical -1919,-0.284,-0.304,0.09,-0.007,tgav,temperature,HadCRUT4,degC,Observed,Historical -1920,-0.252,-0.291,0.122,0.006,tgav,temperature,HadCRUT4,degC,Observed,Historical -1921,-0.19,-0.278,0.184,0.019,tgav,temperature,HadCRUT4,degC,Observed,Historical -1922,-0.309,-0.266,0.065,0.031,tgav,temperature,HadCRUT4,degC,Observed,Historical -1923,-0.275,-0.254,0.099,0.043,tgav,temperature,HadCRUT4,degC,Observed,Historical -1924,-0.3,-0.243,0.074,0.054,tgav,temperature,HadCRUT4,degC,Observed,Historical -1925,-0.219,-0.233,0.155,0.064,tgav,temperature,HadCRUT4,degC,Observed,Historical -1926,-0.112,-0.223,0.262,0.074,tgav,temperature,HadCRUT4,degC,Observed,Historical -1927,-0.213,-0.214,0.161,0.083,tgav,temperature,HadCRUT4,degC,Observed,Historical -1928,-0.211,-0.205,0.163,0.092,tgav,temperature,HadCRUT4,degC,Observed,Historical -1929,-0.349,-0.196,0.025,0.101,tgav,temperature,HadCRUT4,degC,Observed,Historical -1930,-0.138,-0.187,0.236,0.11,tgav,temperature,HadCRUT4,degC,Observed,Historical -1931,-0.087,-0.177,0.287,0.12,tgav,temperature,HadCRUT4,degC,Observed,Historical -1932,-0.135,-0.165,0.239,0.132,tgav,temperature,HadCRUT4,degC,Observed,Historical -1933,-0.273,-0.152,0.101,0.145,tgav,temperature,HadCRUT4,degC,Observed,Historical -1934,-0.126,-0.137,0.248,0.16,tgav,temperature,HadCRUT4,degC,Observed,Historical -1935,-0.176,-0.119,0.198,0.178,tgav,temperature,HadCRUT4,degC,Observed,Historical -1936,-0.143,-0.099,0.231,0.198,tgav,temperature,HadCRUT4,degC,Observed,Historical -1937,-0.025,-0.078,0.349,0.219,tgav,temperature,HadCRUT4,degC,Observed,Historical -1938,-0.005,-0.057,0.369,0.24,tgav,temperature,HadCRUT4,degC,Observed,Historical -1939,-0.055,-0.038,0.319,0.259,tgav,temperature,HadCRUT4,degC,Observed,Historical -1940,0.018,-0.023,0.392,0.274,tgav,temperature,HadCRUT4,degC,Observed,Historical -1941,0.018,-0.011,0.392,0.286,tgav,temperature,HadCRUT4,degC,Observed,Historical -1942,-0.023,-0.003,0.351,0.294,tgav,temperature,HadCRUT4,degC,Observed,Historical -1943,-0.003,0,0.371,0.297,tgav,temperature,HadCRUT4,degC,Observed,Historical -1944,0.15,-0.002,0.524,0.295,tgav,temperature,HadCRUT4,degC,Observed,Historical -1945,0.033,-0.007,0.407,0.29,tgav,temperature,HadCRUT4,degC,Observed,Historical -1946,-0.068,-0.016,0.306,0.281,tgav,temperature,HadCRUT4,degC,Observed,Historical -1947,-0.038,-0.026,0.336,0.271,tgav,temperature,HadCRUT4,degC,Observed,Historical -1948,-0.035,-0.036,0.339,0.261,tgav,temperature,HadCRUT4,degC,Observed,Historical -1949,-0.076,-0.044,0.298,0.253,tgav,temperature,HadCRUT4,degC,Observed,Historical -1950,-0.174,-0.05,0.2,0.247,tgav,temperature,HadCRUT4,degC,Observed,Historical -1951,-0.048,-0.055,0.326,0.242,tgav,temperature,HadCRUT4,degC,Observed,Historical -1952,0.033,-0.059,0.407,0.238,tgav,temperature,HadCRUT4,degC,Observed,Historical -1953,0.101,-0.062,0.475,0.235,tgav,temperature,HadCRUT4,degC,Observed,Historical -1954,-0.128,-0.064,0.246,0.233,tgav,temperature,HadCRUT4,degC,Observed,Historical -1955,-0.185,-0.063,0.189,0.234,tgav,temperature,HadCRUT4,degC,Observed,Historical -1956,-0.262,-0.059,0.112,0.238,tgav,temperature,HadCRUT4,degC,Observed,Historical -1957,-0.001,-0.053,0.373,0.244,tgav,temperature,HadCRUT4,degC,Observed,Historical -1958,0.049,-0.045,0.423,0.252,tgav,temperature,HadCRUT4,degC,Observed,Historical -1959,0.017,-0.039,0.391,0.258,tgav,temperature,HadCRUT4,degC,Observed,Historical -1960,-0.05,-0.035,0.324,0.262,tgav,temperature,HadCRUT4,degC,Observed,Historical -1961,0.039,-0.036,0.413,0.261,tgav,temperature,HadCRUT4,degC,Observed,Historical -1962,0.018,-0.042,0.392,0.255,tgav,temperature,HadCRUT4,degC,Observed,Historical -1963,0.05,-0.05,0.424,0.247,tgav,temperature,HadCRUT4,degC,Observed,Historical -1964,-0.224,-0.058,0.15,0.239,tgav,temperature,HadCRUT4,degC,Observed,Historical -1965,-0.141,-0.066,0.233,0.231,tgav,temperature,HadCRUT4,degC,Observed,Historical -1966,-0.073,-0.071,0.301,0.226,tgav,temperature,HadCRUT4,degC,Observed,Historical -1967,-0.076,-0.074,0.298,0.223,tgav,temperature,HadCRUT4,degC,Observed,Historical -1968,-0.113,-0.076,0.261,0.221,tgav,temperature,HadCRUT4,degC,Observed,Historical -1969,0.029,-0.077,0.403,0.22,tgav,temperature,HadCRUT4,degC,Observed,Historical -1970,-0.029,-0.078,0.345,0.219,tgav,temperature,HadCRUT4,degC,Observed,Historical -1971,-0.184,-0.08,0.19,0.217,tgav,temperature,HadCRUT4,degC,Observed,Historical -1972,-0.069,-0.082,0.305,0.215,tgav,temperature,HadCRUT4,degC,Observed,Historical -1973,0.063,-0.082,0.437,0.215,tgav,temperature,HadCRUT4,degC,Observed,Historical -1974,-0.211,-0.078,0.163,0.219,tgav,temperature,HadCRUT4,degC,Observed,Historical -1975,-0.145,-0.07,0.229,0.227,tgav,temperature,HadCRUT4,degC,Observed,Historical -1976,-0.238,-0.057,0.136,0.24,tgav,temperature,HadCRUT4,degC,Observed,Historical -1977,0.046,-0.038,0.42,0.259,tgav,temperature,HadCRUT4,degC,Observed,Historical -1978,-0.062,-0.016,0.312,0.281,tgav,temperature,HadCRUT4,degC,Observed,Historical -1979,0.058,0.006,0.432,0.303,tgav,temperature,HadCRUT4,degC,Observed,Historical -1980,0.093,0.027,0.467,0.324,tgav,temperature,HadCRUT4,degC,Observed,Historical -1981,0.142,0.044,0.516,0.341,tgav,temperature,HadCRUT4,degC,Observed,Historical -1982,0.013,0.059,0.387,0.356,tgav,temperature,HadCRUT4,degC,Observed,Historical -1983,0.191,0.07,0.565,0.367,tgav,temperature,HadCRUT4,degC,Observed,Historical -1984,-0.014,0.082,0.36,0.379,tgav,temperature,HadCRUT4,degC,Observed,Historical -1985,-0.029,0.095,0.345,0.392,tgav,temperature,HadCRUT4,degC,Observed,Historical -1986,0.047,0.11,0.421,0.407,tgav,temperature,HadCRUT4,degC,Observed,Historical -1987,0.186,0.126,0.56,0.423,tgav,temperature,HadCRUT4,degC,Observed,Historical -1988,0.201,0.144,0.575,0.441,tgav,temperature,HadCRUT4,degC,Observed,Historical -1989,0.121,0.161,0.495,0.458,tgav,temperature,HadCRUT4,degC,Observed,Historical -1990,0.291,0.178,0.665,0.475,tgav,temperature,HadCRUT4,degC,Observed,Historical -1991,0.253,0.193,0.627,0.49,tgav,temperature,HadCRUT4,degC,Observed,Historical -1992,0.102,0.209,0.476,0.506,tgav,temperature,HadCRUT4,degC,Observed,Historical -1993,0.143,0.227,0.517,0.524,tgav,temperature,HadCRUT4,degC,Observed,Historical -1994,0.203,0.248,0.577,0.545,tgav,temperature,HadCRUT4,degC,Observed,Historical -1995,0.324,0.271,0.698,0.568,tgav,temperature,HadCRUT4,degC,Observed,Historical -1996,0.179,0.297,0.553,0.594,tgav,temperature,HadCRUT4,degC,Observed,Historical -1997,0.392,0.323,0.766,0.62,tgav,temperature,HadCRUT4,degC,Observed,Historical -1998,0.531,0.349,0.905,0.646,tgav,temperature,HadCRUT4,degC,Observed,Historical -1999,0.301,0.373,0.675,0.67,tgav,temperature,HadCRUT4,degC,Observed,Historical -2000,0.294,0.395,0.668,0.692,tgav,temperature,HadCRUT4,degC,Observed,Historical -2001,0.437,0.416,0.811,0.713,tgav,temperature,HadCRUT4,degC,Observed,Historical -2002,0.492,0.434,0.866,0.731,tgav,temperature,HadCRUT4,degC,Observed,Historical -2003,0.503,0.449,0.877,0.746,tgav,temperature,HadCRUT4,degC,Observed,Historical -2004,0.445,0.46,0.819,0.757,tgav,temperature,HadCRUT4,degC,Observed,Historical -2005,0.539,0.467,0.913,0.764,tgav,temperature,HadCRUT4,degC,Observed,Historical -2006,0.495,0.472,0.869,0.769,tgav,temperature,HadCRUT4,degC,Observed,Historical -2007,0.483,0.473,0.857,0.77,tgav,temperature,HadCRUT4,degC,Observed,Historical -2008,0.388,0.473,0.762,0.77,tgav,temperature,HadCRUT4,degC,Observed,Historical -2009,0.494,0.472,0.868,0.769,tgav,temperature,HadCRUT4,degC,Observed,Historical -2010,0.547,0.471,0.921,0.768,tgav,temperature,HadCRUT4,degC,Observed,Historical -2011,0.406,0.471,0.78,0.768,tgav,temperature,HadCRUT4,degC,Observed,Historical -2012,0.448,0.471,0.822,0.768,tgav,temperature,HadCRUT4,degC,Observed,Historical -2013,0.486,0.471,0.86,0.768,tgav,temperature,HadCRUT4,degC,Observed,Historical diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/LeQuere_atmco2.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/LeQuere_atmco2.csv deleted file mode 100644 index 3bff1bba1..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/LeQuere_atmco2.csv +++ /dev/null @@ -1,57 +0,0 @@ -"# All values in PgC/yr, for the globe. For values in billion tonnes of CO2, multiply the numbers below by 3.67.",,,,,, -# Global Carbon Project (GCP) www.tyndall.ac.uk/global-carbon-budget-2010,,,,,, -# LeQuere et al. 2009,,,,,, -,,,,,, -year,value,ctag,vtag,type,units,scenario -1959.5,2,carbon_cycle,atmos_CO2,Observed,PgC/yr,historical -1960.5,1.15,,,,, -1961.5,2.02,,,,, -1962.5,1.36,,,,, -1963.5,1.51,,,,, -1964.5,0.59,,,,, -1965.5,2.17,,,,, -1966.5,2.63,,,,, -1967.5,1.57,,,,, -1968.5,2.19,,,,, -1969.5,2.78,,,,, -1970.5,2.25,,,,, -1971.5,1.8,,,,, -1972.5,3.59,,,,, -1973.5,2.57,,,,, -1974.5,1.66,,,,, -1975.5,2.4,,,,, -1976.5,1.78,,,,, -1977.5,4.46,,,,, -1978.5,2.76,,,,, -1979.5,3.72,,,,, -1980.5,3.74,,,,, -1981.5,2.34,,,,, -1982.5,2.21,,,,, -1983.5,3.89,,,,, -1984.5,2.48,,,,, -1985.5,3.69,,,,, -1986.5,2.23,,,,, -1987.5,5.71,,,,, -1988.5,4.73,,,,, -1989.5,2.87,,,,, -1990.5,2.59,,,,, -1991.5,1.49,,,,, -1992.5,1.46,,,,, -1993.5,2.65,,,,, -1994.5,3.57,,,,, -1995.5,4.14,,,,, -1996.5,2.27,,,,, -1997.5,4.18,,,,, -1998.5,6.03,,,,, -1999.5,2.82,,,,, -2000.5,2.63,,,,, -2001.5,3.91,,,,, -2002.5,5.12,,,,, -2003.5,4.67,,,,, -2004.5,3.35,,,,, -2005.5,5.12,,,,, -2006.5,3.8,,,,, -2007.5,4.5,,,,, -2008.5,3.84,,,,, -2009.5,3.46,,,,, -2010.5,5.01,,,,, diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/LeQuere_fgco2.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/LeQuere_fgco2.csv deleted file mode 100644 index d327a5803..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/LeQuere_fgco2.csv +++ /dev/null @@ -1,58 +0,0 @@ -# All values in PgC/yr for the globe. For values in billion tonnes of CO2 multiply the numbers below by 3.67.,,,,,,, -# Global Carbon Project (GCP) www.tyndall.ac.uk/global-carbon-budget-2010 http://www.globalcarbonproject.org/carbonbudget,,,,,,, -# LeQuere et al. 2009,,,,,,, -#updated from 2009 to 2012 reference on 6/18/14,,,,,,, -Year,value,ctag,vtag,units,type,model,scenario -1959,1.03,ocean,fgco2,PgC/yr,Observed,GCP,historical -1960,1,ocean,fgco2,PgC/yr,Observed,GCP,historical -1961,0.92,ocean,fgco2,PgC/yr,Observed,GCP,historical -1962,0.92,ocean,fgco2,PgC/yr,Observed,GCP,historical -1963,1.07,ocean,fgco2,PgC/yr,Observed,GCP,historical -1964,1.34,ocean,fgco2,PgC/yr,Observed,GCP,historical -1965,1.49,ocean,fgco2,PgC/yr,Observed,GCP,historical -1966,1.47,ocean,fgco2,PgC/yr,Observed,GCP,historical -1967,1.26,ocean,fgco2,PgC/yr,Observed,GCP,historical -1968,1.23,ocean,fgco2,PgC/yr,Observed,GCP,historical -1969,1.31,ocean,fgco2,PgC/yr,Observed,GCP,historical -1970,1.24,ocean,fgco2,PgC/yr,Observed,GCP,historical -1971,1.36,ocean,fgco2,PgC/yr,Observed,GCP,historical -1972,1.6,ocean,fgco2,PgC/yr,Observed,GCP,historical -1973,1.55,ocean,fgco2,PgC/yr,Observed,GCP,historical -1974,1.45,ocean,fgco2,PgC/yr,Observed,GCP,historical -1975,1.58,ocean,fgco2,PgC/yr,Observed,GCP,historical -1976,1.6,ocean,fgco2,PgC/yr,Observed,GCP,historical -1977,1.7,ocean,fgco2,PgC/yr,Observed,GCP,historical -1978,1.72,ocean,fgco2,PgC/yr,Observed,GCP,historical -1979,1.41,ocean,fgco2,PgC/yr,Observed,GCP,historical -1980,1.85,ocean,fgco2,PgC/yr,Observed,GCP,historical -1981,1.82,ocean,fgco2,PgC/yr,Observed,GCP,historical -1982,1.87,ocean,fgco2,PgC/yr,Observed,GCP,historical -1983,2.09,ocean,fgco2,PgC/yr,Observed,GCP,historical -1984,1.96,ocean,fgco2,PgC/yr,Observed,GCP,historical -1985,1.91,ocean,fgco2,PgC/yr,Observed,GCP,historical -1986,1.94,ocean,fgco2,PgC/yr,Observed,GCP,historical -1987,1.93,ocean,fgco2,PgC/yr,Observed,GCP,historical -1988,1.93,ocean,fgco2,PgC/yr,Observed,GCP,historical -1989,1.86,ocean,fgco2,PgC/yr,Observed,GCP,historical -1990,2.03,ocean,fgco2,PgC/yr,Observed,GCP,historical -1991,2.16,ocean,fgco2,PgC/yr,Observed,GCP,historical -1992,2.4,ocean,fgco2,PgC/yr,Observed,GCP,historical -1993,2.35,ocean,fgco2,PgC/yr,Observed,GCP,historical -1994,2.22,ocean,fgco2,PgC/yr,Observed,GCP,historical -1995,2.09,ocean,fgco2,PgC/yr,Observed,GCP,historical -1996,2.07,ocean,fgco2,PgC/yr,Observed,GCP,historical -1997,2.17,ocean,fgco2,PgC/yr,Observed,GCP,historical -1998,2.34,ocean,fgco2,PgC/yr,Observed,GCP,historical -1999,2.18,ocean,fgco2,PgC/yr,Observed,GCP,historical -2000,2.1,ocean,fgco2,PgC/yr,Observed,GCP,historical -2001,1.96,ocean,fgco2,PgC/yr,Observed,GCP,historical -2002,2.43,ocean,fgco2,PgC/yr,Observed,GCP,historical -2003,2.38,ocean,fgco2,PgC/yr,Observed,GCP,historical -2004,2.31,ocean,fgco2,PgC/yr,Observed,GCP,historical -2005,2.43,ocean,fgco2,PgC/yr,Observed,GCP,historical -2006,2.48,ocean,fgco2,PgC/yr,Observed,GCP,historical -2007,2.56,ocean,fgco2,PgC/yr,Observed,GCP,historical -2008,2.36,ocean,fgco2,PgC/yr,Observed,GCP,historical -2009,2.55,ocean,fgco2,PgC/yr,Observed,GCP,historical -2010,2.54,ocean,fgco2,PgC/yr,Observed,GCP,historical -2011,2.69,ocean,fgco2,PgC/yr,Observed,GCP,historical diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/LeQuere_nbp.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/LeQuere_nbp.csv deleted file mode 100644 index d964fd198..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/LeQuere_nbp.csv +++ /dev/null @@ -1,58 +0,0 @@ -# All values in PgC/yr for the globe. For values in billion tonnes of CO2 multiply the numbers below by 3.67.,,,,,,, -# Global Carbon Project (GCP) www.tyndall.ac.uk/global-carbon-budget-2010 http://www.globalcarbonproject.org/carbonbudget,,,,,,, -# LeQuere et al. 2009,,,,,,, -#updated from 2009 to 2012 reference on 6/18/14,,,,,,, -year,value,ctag,vtag,type,units,model,scenario -1959,0.84,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1960,1.51,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1961,1.52,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1962,2.09,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1963,2.06,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1964,2.12,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1965,0.84,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1966,1.02,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1967,2.41,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1968,1.78,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1969,1.21,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1970,1.94,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1971,2.7,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1972,0.98,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1973,1.27,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1974,3.02,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1975,1.71,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1976,2.52,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1977,0.6,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1978,1.93,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1979,0.67,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1980,1.07,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1981,2.15,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1982,2.38,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1983,0.59,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1984,2.14,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1985,1.55,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1986,3.02,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1987,-0.41,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1988,0.8,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1989,2.91,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1990,3.08,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1991,4.04,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1992,4.03,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1993,2.8,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1994,2,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1995,1.71,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1996,3.68,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1997,2.5,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1998,-0.15,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -1999,2.84,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2000,3.17,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2001,2.08,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2002,0.59,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2003,1.2,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2004,3.1,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2005,1.65,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2006,3.37,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2007,2.59,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2008,3.3,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2009,3.34,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2010,2.65,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical -2011,4.1,carbon_cycle,nbp,Observed,PgC/yr,GCP,historical diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/church_slr.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/church_slr.csv deleted file mode 100644 index e919f8b58..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/church_slr.csv +++ /dev/null @@ -1,135 +0,0 @@ -# Sea level data of Church & White (200x),,,,,,, -# as downloaded from SI of Vermeer et al (2006) and renormalized to 1990,,,,,,, -Year,value_slr,value_sl_rc,ctag,type,units,scenario,model -1870.5,-15.245,,slr,Observed,cm,historical,Church -1871.5,-15.545,-0.3,slr,Observed,cm,historical,Church -1872.5,-14.705,0.84,slr,Observed,cm,historical,Church -1873.5,-15.075,-0.37,slr,Observed,cm,historical,Church -1874.5,-15.245,-0.17,slr,Observed,cm,historical,Church -1875.5,-15.605,-0.36,slr,Observed,cm,historical,Church -1876.5,-14.355,1.25,slr,Observed,cm,historical,Church -1877.5,-13.345,1.01,slr,Observed,cm,historical,Church -1878.5,-13.205,0.14,slr,Observed,cm,historical,Church -1879.5,-14.405,-1.2,slr,Observed,cm,historical,Church -1880.5,-14.325,0.08,slr,Observed,cm,historical,Church -1881.5,-13.955,0.37,slr,Observed,cm,historical,Church -1882.5,-15.205,-1.25,slr,Observed,cm,historical,Church -1883.5,-15.075,0.13,slr,Observed,cm,historical,Church -1884.5,-13.985,1.09,slr,Observed,cm,historical,Church -1885.5,-14.225,-0.24,slr,Observed,cm,historical,Church -1886.5,-13.655,0.57,slr,Observed,cm,historical,Church -1887.5,-13.985,-0.33,slr,Observed,cm,historical,Church -1888.5,-14.305,-0.32,slr,Observed,cm,historical,Church -1889.5,-13.725,0.58,slr,Observed,cm,historical,Church -1890.5,-13.755,-0.03,slr,Observed,cm,historical,Church -1891.5,-13.695,0.06,slr,Observed,cm,historical,Church -1892.5,-13.335,0.36,slr,Observed,cm,historical,Church -1893.5,-12.795,0.54,slr,Observed,cm,historical,Church -1894.5,-13.535,-0.74,slr,Observed,cm,historical,Church -1895.5,-12.355,1.18,slr,Observed,cm,historical,Church -1896.5,-12.915,-0.56,slr,Observed,cm,historical,Church -1897.5,-12.535,0.38,slr,Observed,cm,historical,Church -1898.5,-12.085,0.45,slr,Observed,cm,historical,Church -1899.5,-11.635,0.45,slr,Observed,cm,historical,Church -1900.5,-12.485,-0.85,slr,Observed,cm,historical,Church -1901.5,-12.855,-0.37,slr,Observed,cm,historical,Church -1902.5,-12.635,0.22,slr,Observed,cm,historical,Church -1903.5,-11.915,0.72,slr,Observed,cm,historical,Church -1904.5,-12.185,-0.27,slr,Observed,cm,historical,Church -1905.5,-12.585,-0.4,slr,Observed,cm,historical,Church -1906.5,-11.965,0.62,slr,Observed,cm,historical,Church -1907.5,-12.205,-0.24,slr,Observed,cm,historical,Church -1908.5,-12.465,-0.26,slr,Observed,cm,historical,Church -1909.5,-12.045,0.42,slr,Observed,cm,historical,Church -1910.5,-12.275,-0.23,slr,Observed,cm,historical,Church -1911.5,-11.455,0.82,slr,Observed,cm,historical,Church -1912.5,-11.775,-0.32,slr,Observed,cm,historical,Church -1913.5,-11.655,0.12,slr,Observed,cm,historical,Church -1914.5,-10.835,0.82,slr,Observed,cm,historical,Church -1915.5,-10.195,0.64,slr,Observed,cm,historical,Church -1916.5,-11.065,-0.87,slr,Observed,cm,historical,Church -1917.5,-11.495,-0.43,slr,Observed,cm,historical,Church -1918.5,-11.195,0.3,slr,Observed,cm,historical,Church -1919.5,-10.995,0.2,slr,Observed,cm,historical,Church -1920.5,-11.045,-0.05,slr,Observed,cm,historical,Church -1921.5,-11.205,-0.16,slr,Observed,cm,historical,Church -1922.5,-11.325,-0.12,slr,Observed,cm,historical,Church -1923.5,-11.015,0.31,slr,Observed,cm,historical,Church -1924.5,-11.765,-0.75,slr,Observed,cm,historical,Church -1925.5,-11.905,-0.14,slr,Observed,cm,historical,Church -1926.5,-11.355,0.55,slr,Observed,cm,historical,Church -1927.5,-11.115,0.24,slr,Observed,cm,historical,Church -1928.5,-11.195,-0.08,slr,Observed,cm,historical,Church -1929.5,-11.485,-0.29,slr,Observed,cm,historical,Church -1930.5,-10.725,0.76,slr,Observed,cm,historical,Church -1931.5,-10.725,0,slr,Observed,cm,historical,Church -1932.5,-10.235,0.49,slr,Observed,cm,historical,Church -1933.5,-10.055,0.18,slr,Observed,cm,historical,Church -1934.5,-10.675,-0.62,slr,Observed,cm,historical,Church -1935.5,-9.835,0.84,slr,Observed,cm,historical,Church -1936.5,-9.865,-0.03,slr,Observed,cm,historical,Church -1937.5,-9.535,0.33,slr,Observed,cm,historical,Church -1938.5,-9.025,0.51,slr,Observed,cm,historical,Church -1939.5,-8.985,0.04,slr,Observed,cm,historical,Church -1940.5,-9.455,-0.47,slr,Observed,cm,historical,Church -1941.5,-7.955,1.5,slr,Observed,cm,historical,Church -1942.5,-7.845,0.11,slr,Observed,cm,historical,Church -1943.5,-8.085,-0.24,slr,Observed,cm,historical,Church -1944.5,-8.275,-0.19,slr,Observed,cm,historical,Church -1945.5,-8.015,0.26,slr,Observed,cm,historical,Church -1946.5,-7.435,0.58,slr,Observed,cm,historical,Church -1947.5,-7.405,0.03,slr,Observed,cm,historical,Church -1948.5,-6.805,0.6,slr,Observed,cm,historical,Church -1949.5,-6.845,-0.04,slr,Observed,cm,historical,Church -1950.5,-6.355,0.49,slr,Observed,cm,historical,Church -1951.5,-5.295,1.06,slr,Observed,cm,historical,Church -1952.5,-5.595,-0.3,slr,Observed,cm,historical,Church -1953.5,-5.345,0.25,slr,Observed,cm,historical,Church -1954.5,-5.505,-0.16,slr,Observed,cm,historical,Church -1955.5,-5.195,0.31,slr,Observed,cm,historical,Church -1956.5,-5.715,-0.52,slr,Observed,cm,historical,Church -1957.5,-4.255,1.46,slr,Observed,cm,historical,Church -1958.5,-3.945,0.31,slr,Observed,cm,historical,Church -1959.5,-4.075,-0.13,slr,Observed,cm,historical,Church -1960.5,-3.935,0.14,slr,Observed,cm,historical,Church -1961.5,-3.505,0.43,slr,Observed,cm,historical,Church -1962.5,-3.875,-0.37,slr,Observed,cm,historical,Church -1963.5,-3.845,0.03,slr,Observed,cm,historical,Church -1964.5,-4.415,-0.57,slr,Observed,cm,historical,Church -1965.5,-3.285,1.13,slr,Observed,cm,historical,Church -1966.5,-3.935,-0.65,slr,Observed,cm,historical,Church -1967.5,-3.995,-0.06,slr,Observed,cm,historical,Church -1968.5,-3.875,0.12,slr,Observed,cm,historical,Church -1969.5,-2.945,0.93,slr,Observed,cm,historical,Church -1970.5,-3.165,-0.22,slr,Observed,cm,historical,Church -1971.5,-2.365,0.8,slr,Observed,cm,historical,Church -1972.5,-1.915,0.45,slr,Observed,cm,historical,Church -1973.5,-1.955,-0.04,slr,Observed,cm,historical,Church -1974.5,-1.135,0.82,slr,Observed,cm,historical,Church -1975.5,-1.255,-0.12,slr,Observed,cm,historical,Church -1976.5,-1.515,-0.26,slr,Observed,cm,historical,Church -1977.5,-1.945,-0.43,slr,Observed,cm,historical,Church -1978.5,-1.415,0.53,slr,Observed,cm,historical,Church -1979.5,-1.475,-0.06,slr,Observed,cm,historical,Church -1980.5,-0.955,0.52,slr,Observed,cm,historical,Church -1981.5,0.115,1.07,slr,Observed,cm,historical,Church -1982.5,-0.525,-0.64,slr,Observed,cm,historical,Church -1983.5,0.025,0.55,slr,Observed,cm,historical,Church -1984.5,-0.045,-0.07,slr,Observed,cm,historical,Church -1985.5,-1.005,-0.96,slr,Observed,cm,historical,Church -1986.5,-1.095,-0.09,slr,Observed,cm,historical,Church -1987.5,-0.535,0.56,slr,Observed,cm,historical,Church -1988.5,-0.405,0.13,slr,Observed,cm,historical,Church -1989.5,-0.315,0.09,slr,Observed,cm,historical,Church -1990.5,0.315,0.63,slr,Observed,cm,historical,Church -1991.5,1.315,1,slr,Observed,cm,historical,Church -1992.5,1.565,0.25,slr,Observed,cm,historical,Church -1993.5,1.035,-0.53,slr,Observed,cm,historical,Church -1994.5,1.355,0.32,slr,Observed,cm,historical,Church -1995.5,2.025,0.67,slr,Observed,cm,historical,Church -1996.5,2.435,0.41,slr,Observed,cm,historical,Church -1997.5,3.375,0.94,slr,Observed,cm,historical,Church -1998.5,2.735,-0.64,slr,Observed,cm,historical,Church -1999.5,3.205,0.47,slr,Observed,cm,historical,Church -2000.5,3.565,0.36,slr,Observed,cm,historical,Church -2001.5,3.795,0.23,slr,Observed,cm,historical,Church diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/historical_SO2.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/historical_SO2.csv deleted file mode 100644 index 306c62f37..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/historical_SO2.csv +++ /dev/null @@ -1,25 +0,0 @@ -# Historical SO2 record ,,,,,, -# constructed using : Smith et al. through 1999,,,,,, -# Klimont et al. from 2000-2011,,,,,, -# Constant open burning emissions from 2000 - 2011,,,,,, -Year,value,vtag,units,type,ctag,scenario -1992,124770,SO2_emissions,Gg,observed,Forcing,historical -1993,122657,SO2_emissions,Gg,observed,Forcing,historical -1994,120543,SO2_emissions,Gg,observed,Forcing,historical -1995,118311,SO2_emissions,Gg,observed,Forcing,historical -1996,117804,SO2_emissions,Gg,observed,Forcing,historical -1997,116703,SO2_emissions,Gg,observed,Forcing,historical -1998,114790,SO2_emissions,Gg,observed,Forcing,historical -1999,110752,SO2_emissions,Gg,observed,Forcing,historical -2000,110425,SO2_emissions,Gg,observed,Forcing,historical -2001,108731,SO2_emissions,Gg,observed,Forcing,historical -2002,108097,SO2_emissions,Gg,observed,Forcing,historical -2003,110944,SO2_emissions,Gg,observed,Forcing,historical -2004,114584,SO2_emissions,Gg,observed,Forcing,historical -2005,116005,SO2_emissions,Gg,observed,Forcing,historical -2006,115887,SO2_emissions,Gg,observed,Forcing,historical -2007,114739,SO2_emissions,Gg,observed,Forcing,historical -2008,112351,SO2_emissions,Gg,observed,Forcing,historical -2009,107799,SO2_emissions,Gg,observed,Forcing,historical -2010,106726,SO2_emissions,Gg,observed,Forcing,historical -2011,104701,SO2_emissions,Gg,observed,Forcing,historical diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/lawdome_co2.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/lawdome_co2.csv deleted file mode 100644 index dc41b400c..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/lawdome_co2.csv +++ /dev/null @@ -1,197 +0,0 @@ -# Historical CO2 record derived from a spline fit (75 year cutoff) of the Law Dome ,,,,,,, -# from http://cdiac.ornl.gov/ftp/trends/co2/lawdome.smoothed.yr75,,,,,,, -Year,value,vtag,units,type,ctag,scenario,model -1010,279.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1015,279.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1020,279.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1025,279.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1030,279.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1035,280,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1040,280.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1045,280.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1050,280.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1055,280.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1060,280.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1065,281.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1070,281.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1075,281.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1080,281.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1085,281.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1090,282.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1095,282.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1100,282.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1105,282.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1110,282.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1115,283,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1120,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1125,283.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1130,283.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1135,283.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1140,283.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1145,283.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1150,283.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1155,284,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1160,284,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1165,284.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1170,284.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1175,284.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1180,284,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1185,284,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1190,283.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1195,283.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1200,283.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1205,283.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1210,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1215,283,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1220,282.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1225,282.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1230,282.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1235,282.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1240,282,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1245,281.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1250,281.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1255,281.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1260,282,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1265,282.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1270,282.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1275,282.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1280,282.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1285,282.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1290,282.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1295,282.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1300,283,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1305,283.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1310,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1315,283.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1320,283.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1325,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1330,283.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1335,282.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1340,282.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1345,282.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1350,282.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1355,281.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1360,281.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1365,281.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1370,281,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1375,280.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1380,280.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1385,280.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1390,280.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1395,280.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1400,280.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1405,280.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1410,280.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1415,280.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1420,280.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1425,280.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1430,280.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1435,280.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1440,280.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1445,280.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1450,280.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1455,280.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1460,280.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1465,280.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1470,280.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1475,280.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1480,281,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1485,281.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1490,281.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1495,281.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1500,282.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1505,282.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1510,282.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1515,282.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1520,283.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1525,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1530,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1535,283.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1540,283.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1545,283,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1550,282.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1555,282.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1560,282.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1565,281.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1570,281.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1575,280.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1580,279.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1585,278.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1590,278,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1595,277.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1600,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1605,275.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1610,275.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1615,275.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1620,275.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1625,275.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1630,275.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1635,275.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1640,276.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1645,276.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1650,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1655,276.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1660,276.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1665,276.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1670,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1675,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1680,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1685,276.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1690,276.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1695,276.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1700,276.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1705,276.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1710,276.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1715,277,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1720,277,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1725,277,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1730,277,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1735,276.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1740,276.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1745,276.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1750,277,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1755,277.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1760,277.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1765,278,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1770,278.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1775,279.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1780,280.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1785,280.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1790,281.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1795,282.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1800,282.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1805,283.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1810,283.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1815,284,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1820,284.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1825,284.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1830,284.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1835,284.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1840,284.6,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1845,284.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1850,285.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1855,285.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1860,286.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1865,287.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1870,288.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1875,289.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1880,290.8,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1885,292.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1890,293.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1895,295.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1900,296.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1905,298.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1910,299.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1915,301.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1920,303.2,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1925,304.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1930,306.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1935,308,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1940,309.3,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1945,310.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1950,312,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1955,314.1,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1960,316.9,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1965,320.5,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1970,324.7,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome -1975,329.4,atmos_CO2,ppmv CO2,Observed,carbon_cycle,historical,Law Dome diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/marland.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/marland.csv deleted file mode 100644 index 314cbf009..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/marland.csv +++ /dev/null @@ -1,242 +0,0 @@ -# Atmospheric CO2 record,,,,,,,,,, -# Observed data set for Hector backend,,,,,,,,,, -# from ???,,,,,,,,,, -# Changes from original: added component, variable, type, value and units,,,,,,, -year,CO2,EFOSS,component,vtag,value,units,type,scenario,model,ctag -1764,277.951,0.003,carbon_cycle,atmos_CO2,277.951,ppmv CO2,Observed,historical,Marland,carbon_cycle -1765,277.98,0.003,carbon_cycle,atmos_CO2,277.98,ppmv CO2,Observed,historical,Marland,carbon_cycle -1766,278.011,0.003,carbon_cycle,atmos_CO2,278.011,ppmv CO2,Observed,historical,Marland,carbon_cycle -1767,278.045,0.003,carbon_cycle,atmos_CO2,278.045,ppmv CO2,Observed,historical,Marland,carbon_cycle -1768,278.082,0.003,carbon_cycle,atmos_CO2,278.082,ppmv CO2,Observed,historical,Marland,carbon_cycle -1769,278.121,0.003,carbon_cycle,atmos_CO2,278.121,ppmv CO2,Observed,historical,Marland,carbon_cycle -1770,278.164,0.003,carbon_cycle,atmos_CO2,278.164,ppmv CO2,Observed,historical,Marland,carbon_cycle -1771,278.21,0.004,carbon_cycle,atmos_CO2,278.21,ppmv CO2,Observed,historical,Marland,carbon_cycle -1772,278.258,0.004,carbon_cycle,atmos_CO2,278.258,ppmv CO2,Observed,historical,Marland,carbon_cycle -1773,278.31,0.004,carbon_cycle,atmos_CO2,278.31,ppmv CO2,Observed,historical,Marland,carbon_cycle -1774,278.364,0.004,carbon_cycle,atmos_CO2,278.364,ppmv CO2,Observed,historical,Marland,carbon_cycle -1775,278.422,0.004,carbon_cycle,atmos_CO2,278.422,ppmv CO2,Observed,historical,Marland,carbon_cycle -1776,278.483,0.004,carbon_cycle,atmos_CO2,278.483,ppmv CO2,Observed,historical,Marland,carbon_cycle -1777,278.546,0.004,carbon_cycle,atmos_CO2,278.546,ppmv CO2,Observed,historical,Marland,carbon_cycle -1778,278.613,0.004,carbon_cycle,atmos_CO2,278.613,ppmv CO2,Observed,historical,Marland,carbon_cycle -1779,278.683,0.004,carbon_cycle,atmos_CO2,278.683,ppmv CO2,Observed,historical,Marland,carbon_cycle -1780,278.756,0.004,carbon_cycle,atmos_CO2,278.756,ppmv CO2,Observed,historical,Marland,carbon_cycle -1781,278.833,0.005,carbon_cycle,atmos_CO2,278.833,ppmv CO2,Observed,historical,Marland,carbon_cycle -1782,278.912,0.005,carbon_cycle,atmos_CO2,278.912,ppmv CO2,Observed,historical,Marland,carbon_cycle -1783,278.995,0.005,carbon_cycle,atmos_CO2,278.995,ppmv CO2,Observed,historical,Marland,carbon_cycle -1784,279.081,0.005,carbon_cycle,atmos_CO2,279.081,ppmv CO2,Observed,historical,Marland,carbon_cycle -1785,279.171,0.005,carbon_cycle,atmos_CO2,279.171,ppmv CO2,Observed,historical,Marland,carbon_cycle -1786,279.263,0.005,carbon_cycle,atmos_CO2,279.263,ppmv CO2,Observed,historical,Marland,carbon_cycle -1787,279.359,0.005,carbon_cycle,atmos_CO2,279.359,ppmv CO2,Observed,historical,Marland,carbon_cycle -1788,279.459,0.005,carbon_cycle,atmos_CO2,279.459,ppmv CO2,Observed,historical,Marland,carbon_cycle -1789,279.561,0.005,carbon_cycle,atmos_CO2,279.561,ppmv CO2,Observed,historical,Marland,carbon_cycle -1790,279.668,0.005,carbon_cycle,atmos_CO2,279.668,ppmv CO2,Observed,historical,Marland,carbon_cycle -1791,279.777,0.006,carbon_cycle,atmos_CO2,279.777,ppmv CO2,Observed,historical,Marland,carbon_cycle -1792,279.89,0.006,carbon_cycle,atmos_CO2,279.89,ppmv CO2,Observed,historical,Marland,carbon_cycle -1793,280.007,0.006,carbon_cycle,atmos_CO2,280.007,ppmv CO2,Observed,historical,Marland,carbon_cycle -1794,280.127,0.006,carbon_cycle,atmos_CO2,280.127,ppmv CO2,Observed,historical,Marland,carbon_cycle -1795,280.25,0.006,carbon_cycle,atmos_CO2,280.25,ppmv CO2,Observed,historical,Marland,carbon_cycle -1796,280.377,0.006,carbon_cycle,atmos_CO2,280.377,ppmv CO2,Observed,historical,Marland,carbon_cycle -1797,280.507,0.007,carbon_cycle,atmos_CO2,280.507,ppmv CO2,Observed,historical,Marland,carbon_cycle -1798,280.64,0.007,carbon_cycle,atmos_CO2,280.64,ppmv CO2,Observed,historical,Marland,carbon_cycle -1799,280.776,0.007,carbon_cycle,atmos_CO2,280.776,ppmv CO2,Observed,historical,Marland,carbon_cycle -1800,280.914,0.008,carbon_cycle,atmos_CO2,280.914,ppmv CO2,Observed,historical,Marland,carbon_cycle -1801,281.054,0.008,carbon_cycle,atmos_CO2,281.054,ppmv CO2,Observed,historical,Marland,carbon_cycle -1802,281.195,0.01,carbon_cycle,atmos_CO2,281.195,ppmv CO2,Observed,historical,Marland,carbon_cycle -1803,281.337,0.009,carbon_cycle,atmos_CO2,281.337,ppmv CO2,Observed,historical,Marland,carbon_cycle -1804,281.479,0.009,carbon_cycle,atmos_CO2,281.479,ppmv CO2,Observed,historical,Marland,carbon_cycle -1805,281.622,0.009,carbon_cycle,atmos_CO2,281.622,ppmv CO2,Observed,historical,Marland,carbon_cycle -1806,281.764,0.01,carbon_cycle,atmos_CO2,281.764,ppmv CO2,Observed,historical,Marland,carbon_cycle -1807,281.906,0.01,carbon_cycle,atmos_CO2,281.906,ppmv CO2,Observed,historical,Marland,carbon_cycle -1808,282.047,0.01,carbon_cycle,atmos_CO2,282.047,ppmv CO2,Observed,historical,Marland,carbon_cycle -1809,282.185,0.01,carbon_cycle,atmos_CO2,282.185,ppmv CO2,Observed,historical,Marland,carbon_cycle -1810,282.322,0.01,carbon_cycle,atmos_CO2,282.322,ppmv CO2,Observed,historical,Marland,carbon_cycle -1811,282.457,0.011,carbon_cycle,atmos_CO2,282.457,ppmv CO2,Observed,historical,Marland,carbon_cycle -1812,282.588,0.011,carbon_cycle,atmos_CO2,282.588,ppmv CO2,Observed,historical,Marland,carbon_cycle -1813,282.717,0.011,carbon_cycle,atmos_CO2,282.717,ppmv CO2,Observed,historical,Marland,carbon_cycle -1814,282.841,0.011,carbon_cycle,atmos_CO2,282.841,ppmv CO2,Observed,historical,Marland,carbon_cycle -1815,282.962,0.012,carbon_cycle,atmos_CO2,282.962,ppmv CO2,Observed,historical,Marland,carbon_cycle -1816,283.078,0.013,carbon_cycle,atmos_CO2,283.078,ppmv CO2,Observed,historical,Marland,carbon_cycle -1817,283.19,0.014,carbon_cycle,atmos_CO2,283.19,ppmv CO2,Observed,historical,Marland,carbon_cycle -1818,283.297,0.014,carbon_cycle,atmos_CO2,283.297,ppmv CO2,Observed,historical,Marland,carbon_cycle -1819,283.401,0.014,carbon_cycle,atmos_CO2,283.401,ppmv CO2,Observed,historical,Marland,carbon_cycle -1820,283.502,0.014,carbon_cycle,atmos_CO2,283.502,ppmv CO2,Observed,historical,Marland,carbon_cycle -1821,283.6,0.014,carbon_cycle,atmos_CO2,283.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1822,283.696,0.015,carbon_cycle,atmos_CO2,283.696,ppmv CO2,Observed,historical,Marland,carbon_cycle -1823,283.79,0.016,carbon_cycle,atmos_CO2,283.79,ppmv CO2,Observed,historical,Marland,carbon_cycle -1824,283.883,0.016,carbon_cycle,atmos_CO2,283.883,ppmv CO2,Observed,historical,Marland,carbon_cycle -1825,283.974,0.017,carbon_cycle,atmos_CO2,283.974,ppmv CO2,Observed,historical,Marland,carbon_cycle -1826,284.066,0.017,carbon_cycle,atmos_CO2,284.066,ppmv CO2,Observed,historical,Marland,carbon_cycle -1827,284.157,0.018,carbon_cycle,atmos_CO2,284.157,ppmv CO2,Observed,historical,Marland,carbon_cycle -1828,284.249,0.018,carbon_cycle,atmos_CO2,284.249,ppmv CO2,Observed,historical,Marland,carbon_cycle -1829,284.343,0.018,carbon_cycle,atmos_CO2,284.343,ppmv CO2,Observed,historical,Marland,carbon_cycle -1830,284.438,0.024,carbon_cycle,atmos_CO2,284.438,ppmv CO2,Observed,historical,Marland,carbon_cycle -1831,284.535,0.023,carbon_cycle,atmos_CO2,284.535,ppmv CO2,Observed,historical,Marland,carbon_cycle -1832,284.3,0.023,carbon_cycle,atmos_CO2,284.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1833,284.1,0.024,carbon_cycle,atmos_CO2,284.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1834,284,0.024,carbon_cycle,atmos_CO2,284,ppmv CO2,Observed,historical,Marland,carbon_cycle -1835,283.8,0.025,carbon_cycle,atmos_CO2,283.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1836,283.7,0.029,carbon_cycle,atmos_CO2,283.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1837,283.5,0.029,carbon_cycle,atmos_CO2,283.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1838,283.4,0.03,carbon_cycle,atmos_CO2,283.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1839,283.4,0.031,carbon_cycle,atmos_CO2,283.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1840,283.4,0.033,carbon_cycle,atmos_CO2,283.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1841,283.4,0.034,carbon_cycle,atmos_CO2,283.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1842,283.5,0.036,carbon_cycle,atmos_CO2,283.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1843,283.6,0.037,carbon_cycle,atmos_CO2,283.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1844,283.7,0.039,carbon_cycle,atmos_CO2,283.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1845,283.9,0.043,carbon_cycle,atmos_CO2,283.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1846,284.1,0.043,carbon_cycle,atmos_CO2,284.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1847,284.2,0.046,carbon_cycle,atmos_CO2,284.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1848,284.4,0.047,carbon_cycle,atmos_CO2,284.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1849,284.6,0.05,carbon_cycle,atmos_CO2,284.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1850,284.7,0.054,carbon_cycle,atmos_CO2,284.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1851,284.9,0.054,carbon_cycle,atmos_CO2,284.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1852,285,0.057,carbon_cycle,atmos_CO2,285,ppmv CO2,Observed,historical,Marland,carbon_cycle -1853,285.1,0.059,carbon_cycle,atmos_CO2,285.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1854,285.3,0.069,carbon_cycle,atmos_CO2,285.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1855,285.4,0.071,carbon_cycle,atmos_CO2,285.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1856,285.6,0.076,carbon_cycle,atmos_CO2,285.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1857,285.7,0.077,carbon_cycle,atmos_CO2,285.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1858,285.9,0.078,carbon_cycle,atmos_CO2,285.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1859,286.1,0.083,carbon_cycle,atmos_CO2,286.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1860,286.2,0.091,carbon_cycle,atmos_CO2,286.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1861,286.4,0.095,carbon_cycle,atmos_CO2,286.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1862,286.5,0.097,carbon_cycle,atmos_CO2,286.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1863,286.6,0.104,carbon_cycle,atmos_CO2,286.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1864,286.8,0.112,carbon_cycle,atmos_CO2,286.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1865,286.9,0.119,carbon_cycle,atmos_CO2,286.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1866,287,0.122,carbon_cycle,atmos_CO2,287,ppmv CO2,Observed,historical,Marland,carbon_cycle -1867,287.1,0.13,carbon_cycle,atmos_CO2,287.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1868,287.2,0.135,carbon_cycle,atmos_CO2,287.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1869,287.4,0.142,carbon_cycle,atmos_CO2,287.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1870,287.5,0.147,carbon_cycle,atmos_CO2,287.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1871,287.7,0.156,carbon_cycle,atmos_CO2,287.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1872,287.9,0.173,carbon_cycle,atmos_CO2,287.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1873,288.1,0.184,carbon_cycle,atmos_CO2,288.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1874,288.4,0.174,carbon_cycle,atmos_CO2,288.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1875,288.7,0.188,carbon_cycle,atmos_CO2,288.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1876,289,0.191,carbon_cycle,atmos_CO2,289,ppmv CO2,Observed,historical,Marland,carbon_cycle -1877,289.4,0.194,carbon_cycle,atmos_CO2,289.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1878,289.8,0.196,carbon_cycle,atmos_CO2,289.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1879,290.2,0.21,carbon_cycle,atmos_CO2,290.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1880,290.7,0.236,carbon_cycle,atmos_CO2,290.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1881,291.2,0.243,carbon_cycle,atmos_CO2,291.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1882,291.7,0.256,carbon_cycle,atmos_CO2,291.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1883,292.1,0.272,carbon_cycle,atmos_CO2,292.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1884,292.6,0.275,carbon_cycle,atmos_CO2,292.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1885,293,0.277,carbon_cycle,atmos_CO2,293,ppmv CO2,Observed,historical,Marland,carbon_cycle -1886,293.3,0.281,carbon_cycle,atmos_CO2,293.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1887,293.6,0.295,carbon_cycle,atmos_CO2,293.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1888,293.8,0.327,carbon_cycle,atmos_CO2,293.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1889,294,0.327,carbon_cycle,atmos_CO2,294,ppmv CO2,Observed,historical,Marland,carbon_cycle -1890,294.2,0.356,carbon_cycle,atmos_CO2,294.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1891,294.3,0.372,carbon_cycle,atmos_CO2,294.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1892,294.5,0.374,carbon_cycle,atmos_CO2,294.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1893,294.6,0.37,carbon_cycle,atmos_CO2,294.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1894,294.7,0.383,carbon_cycle,atmos_CO2,294.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1895,294.8,0.406,carbon_cycle,atmos_CO2,294.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1896,294.9,0.419,carbon_cycle,atmos_CO2,294.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1897,295,0.44,carbon_cycle,atmos_CO2,295,ppmv CO2,Observed,historical,Marland,carbon_cycle -1898,295.2,0.465,carbon_cycle,atmos_CO2,295.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1899,295.5,0.507,carbon_cycle,atmos_CO2,295.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1900,295.8,0.534,carbon_cycle,atmos_CO2,295.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1901,296.1,0.552,carbon_cycle,atmos_CO2,296.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1902,296.5,0.566,carbon_cycle,atmos_CO2,296.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1903,296.8,0.617,carbon_cycle,atmos_CO2,296.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1904,297.2,0.624,carbon_cycle,atmos_CO2,297.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1905,297.6,0.663,carbon_cycle,atmos_CO2,297.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1906,298.1,0.707,carbon_cycle,atmos_CO2,298.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1907,298.5,0.784,carbon_cycle,atmos_CO2,298.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1908,298.9,0.75,carbon_cycle,atmos_CO2,298.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1909,299.3,0.785,carbon_cycle,atmos_CO2,299.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1910,299.7,0.819,carbon_cycle,atmos_CO2,299.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1911,300.1,0.836,carbon_cycle,atmos_CO2,300.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1912,300.4,0.879,carbon_cycle,atmos_CO2,300.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1913,300.8,0.943,carbon_cycle,atmos_CO2,300.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1914,301.1,0.85,carbon_cycle,atmos_CO2,301.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1915,301.4,0.838,carbon_cycle,atmos_CO2,301.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1916,301.7,0.901,carbon_cycle,atmos_CO2,301.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1917,302.1,0.955,carbon_cycle,atmos_CO2,302.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1918,302.4,0.936,carbon_cycle,atmos_CO2,302.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1919,302.7,0.806,carbon_cycle,atmos_CO2,302.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1920,303,0.932,carbon_cycle,atmos_CO2,303,ppmv CO2,Observed,historical,Marland,carbon_cycle -1921,303.4,0.803,carbon_cycle,atmos_CO2,303.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1922,303.8,0.845,carbon_cycle,atmos_CO2,303.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1923,304.1,0.97,carbon_cycle,atmos_CO2,304.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1924,304.5,0.963,carbon_cycle,atmos_CO2,304.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1925,305,0.975,carbon_cycle,atmos_CO2,305,ppmv CO2,Observed,historical,Marland,carbon_cycle -1926,305.4,0.983,carbon_cycle,atmos_CO2,305.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1927,305.8,1.062,carbon_cycle,atmos_CO2,305.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1928,306.3,1.055,carbon_cycle,atmos_CO2,306.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1929,306.8,1.135,carbon_cycle,atmos_CO2,306.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1930,307.2,1.043,carbon_cycle,atmos_CO2,307.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1931,307.7,0.932,carbon_cycle,atmos_CO2,307.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1932,308.2,0.84,carbon_cycle,atmos_CO2,308.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1933,308.6,0.886,carbon_cycle,atmos_CO2,308.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1934,309,0.965,carbon_cycle,atmos_CO2,309,ppmv CO2,Observed,historical,Marland,carbon_cycle -1935,309.4,1.018,carbon_cycle,atmos_CO2,309.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1936,309.8,1.119,carbon_cycle,atmos_CO2,309.8,ppmv CO2,Observed,historical,Marland,carbon_cycle -1937,310,1.198,carbon_cycle,atmos_CO2,310,ppmv CO2,Observed,historical,Marland,carbon_cycle -1938,310.2,1.13,carbon_cycle,atmos_CO2,310.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1939,310.3,1.179,carbon_cycle,atmos_CO2,310.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1940,310.4,1.288,carbon_cycle,atmos_CO2,310.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1941,310.4,1.322,carbon_cycle,atmos_CO2,310.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1942,310.3,1.331,carbon_cycle,atmos_CO2,310.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1943,310.2,1.381,carbon_cycle,atmos_CO2,310.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1944,310.1,1.376,carbon_cycle,atmos_CO2,310.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1945,310.1,1.153,carbon_cycle,atmos_CO2,310.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1946,310.1,1.228,carbon_cycle,atmos_CO2,310.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1947,310.2,1.38,carbon_cycle,atmos_CO2,310.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1948,310.3,1.455,carbon_cycle,atmos_CO2,310.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1949,310.5,1.403,carbon_cycle,atmos_CO2,310.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1950,310.7,1.612,carbon_cycle,atmos_CO2,310.7,ppmv CO2,Observed,historical,Marland,carbon_cycle -1951,311.1,1.748,carbon_cycle,atmos_CO2,311.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1952,311.5,1.774,carbon_cycle,atmos_CO2,311.5,ppmv CO2,Observed,historical,Marland,carbon_cycle -1953,311.9,1.817,carbon_cycle,atmos_CO2,311.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1954,312.4,1.838,carbon_cycle,atmos_CO2,312.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1955,313,2.013,carbon_cycle,atmos_CO2,313,ppmv CO2,Observed,historical,Marland,carbon_cycle -1956,313.6,2.146,carbon_cycle,atmos_CO2,313.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1957,314.2,2.236,carbon_cycle,atmos_CO2,314.2,ppmv CO2,Observed,historical,Marland,carbon_cycle -1958,314.9,2.294,carbon_cycle,atmos_CO2,314.9,ppmv CO2,Observed,historical,Marland,carbon_cycle -1959,315.39,2.422,carbon_cycle,atmos_CO2,315.39,ppmv CO2,Observed,historical,Marland,carbon_cycle -1960,316.32,2.534,carbon_cycle,atmos_CO2,316.32,ppmv CO2,Observed,historical,Marland,carbon_cycle -1961,317.06,2.549,carbon_cycle,atmos_CO2,317.06,ppmv CO2,Observed,historical,Marland,carbon_cycle -1962,317.86,2.651,carbon_cycle,atmos_CO2,317.86,ppmv CO2,Observed,historical,Marland,carbon_cycle -1963,318.4,2.797,carbon_cycle,atmos_CO2,318.4,ppmv CO2,Observed,historical,Marland,carbon_cycle -1964,318.93,2.951,carbon_cycle,atmos_CO2,318.93,ppmv CO2,Observed,historical,Marland,carbon_cycle -1965,319.44,3.086,carbon_cycle,atmos_CO2,319.44,ppmv CO2,Observed,historical,Marland,carbon_cycle -1966,320.78,3.242,carbon_cycle,atmos_CO2,320.78,ppmv CO2,Observed,historical,Marland,carbon_cycle -1967,321.59,3.346,carbon_cycle,atmos_CO2,321.59,ppmv CO2,Observed,historical,Marland,carbon_cycle -1968,322.46,3.518,carbon_cycle,atmos_CO2,322.46,ppmv CO2,Observed,historical,Marland,carbon_cycle -1969,324.03,3.726,carbon_cycle,atmos_CO2,324.03,ppmv CO2,Observed,historical,Marland,carbon_cycle -1970,325.09,3.998,carbon_cycle,atmos_CO2,325.09,ppmv CO2,Observed,historical,Marland,carbon_cycle -1971,325.73,4.147,carbon_cycle,atmos_CO2,325.73,ppmv CO2,Observed,historical,Marland,carbon_cycle -1972,326.87,4.31,carbon_cycle,atmos_CO2,326.87,ppmv CO2,Observed,historical,Marland,carbon_cycle -1973,329.09,4.54,carbon_cycle,atmos_CO2,329.09,ppmv CO2,Observed,historical,Marland,carbon_cycle -1974,329.66,4.548,carbon_cycle,atmos_CO2,329.66,ppmv CO2,Observed,historical,Marland,carbon_cycle -1975,330.56,4.52,carbon_cycle,atmos_CO2,330.56,ppmv CO2,Observed,historical,Marland,carbon_cycle -1976,331.56,4.78,carbon_cycle,atmos_CO2,331.56,ppmv CO2,Observed,historical,Marland,carbon_cycle -1977,333.31,4.921,carbon_cycle,atmos_CO2,333.31,ppmv CO2,Observed,historical,Marland,carbon_cycle -1978,334.91,4.989,carbon_cycle,atmos_CO2,334.91,ppmv CO2,Observed,historical,Marland,carbon_cycle -1979,336.26,5.268,carbon_cycle,atmos_CO2,336.26,ppmv CO2,Observed,historical,Marland,carbon_cycle -1980,338.1,5.212,carbon_cycle,atmos_CO2,338.1,ppmv CO2,Observed,historical,Marland,carbon_cycle -1981,339.34,5.047,carbon_cycle,atmos_CO2,339.34,ppmv CO2,Observed,historical,Marland,carbon_cycle -1982,340.56,5.006,carbon_cycle,atmos_CO2,340.56,ppmv CO2,Observed,historical,Marland,carbon_cycle -1983,342.21,4.985,carbon_cycle,atmos_CO2,342.21,ppmv CO2,Observed,historical,Marland,carbon_cycle -1984,343.81,5.162,carbon_cycle,atmos_CO2,343.81,ppmv CO2,Observed,historical,Marland,carbon_cycle -1985,345.3,5.313,carbon_cycle,atmos_CO2,345.3,ppmv CO2,Observed,historical,Marland,carbon_cycle -1986,346.72,5.473,carbon_cycle,atmos_CO2,346.72,ppmv CO2,Observed,historical,Marland,carbon_cycle -1987,348.44,5.61,carbon_cycle,atmos_CO2,348.44,ppmv CO2,Observed,historical,Marland,carbon_cycle -1988,350.96,5.812,carbon_cycle,atmos_CO2,350.96,ppmv CO2,Observed,historical,Marland,carbon_cycle -1989,352.59,5.933,carbon_cycle,atmos_CO2,352.59,ppmv CO2,Observed,historical,Marland,carbon_cycle -1990,353.83,6.007,carbon_cycle,atmos_CO2,353.83,ppmv CO2,Observed,historical,Marland,carbon_cycle -1991,355.18,6.091,carbon_cycle,atmos_CO2,355.18,ppmv CO2,Observed,historical,Marland,carbon_cycle -1992,355.88,5.98,carbon_cycle,atmos_CO2,355.88,ppmv CO2,Observed,historical,Marland,carbon_cycle -1993,356.6,5.979,carbon_cycle,atmos_CO2,356.6,ppmv CO2,Observed,historical,Marland,carbon_cycle -1994,358.03,6.087,carbon_cycle,atmos_CO2,358.03,ppmv CO2,Observed,historical,Marland,carbon_cycle -1995,358.85,6.204,carbon_cycle,atmos_CO2,358.85,ppmv CO2,Observed,historical,Marland,carbon_cycle -1996,361.62,6.322,carbon_cycle,atmos_CO2,361.62,ppmv CO2,Observed,historical,Marland,carbon_cycle -1997,362.76,6.424,carbon_cycle,atmos_CO2,362.76,ppmv CO2,Observed,historical,Marland,carbon_cycle -1998,365.48,6.382,carbon_cycle,atmos_CO2,365.48,ppmv CO2,Observed,historical,Marland,carbon_cycle -1999,367.56,6.356,carbon_cycle,atmos_CO2,367.56,ppmv CO2,Observed,historical,Marland,carbon_cycle -2000,368.77,6.519,carbon_cycle,atmos_CO2,368.77,ppmv CO2,Observed,historical,Marland,carbon_cycle diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Historical/maunaloa.csv b/scripts/outputplotter/comparison_data/GMD_2015/Historical/maunaloa.csv deleted file mode 100644 index 475733d23..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Historical/maunaloa.csv +++ /dev/null @@ -1,56 +0,0 @@ -# Atmospheric CO2 record,,,,,,,,,,,,,,,,,,,, -# Observed data set for Hector backend,,,,,,,,,,,,,,,,,,,, -# from http://cdiac.ornl.gov/ftp/trends/co2/maunaloa.co2,,,,,,,,,,,,,,,,,,,, -# Changes from original: added vtag, vtag, type, value and units,,,,,,,,,,,,,,,,, -Year,Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec,Average,value,ctag,vtag,units,type,scenario,model -1958,,,315.7,317.45,317.5,317.26,315.86,314.93,313.2,312.44,313.33,314.67,,,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1959,315.62,316.38,316.71,317.72,318.29,318.16,316.54,314.8,313.84,313.26,314.8,315.58,315.98,315.98,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1960,316.43,316.97,317.58,319.02,320.03,319.59,318.18,315.91,314.16,313.84,315,316.19,316.91,316.91,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1961,316.93,317.7,318.54,319.48,320.58,319.77,318.57,316.79,314.8,315.38,316.1,317.01,317.64,317.64,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1962,317.94,318.56,319.68,320.63,321.01,320.55,319.58,317.4,316.25,315.42,316.69,317.7,318.45,318.45,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1963,318.74,319.08,319.86,321.39,322.24,321.47,319.74,317.77,316.21,315.99,317.12,318.31,318.99,318.99,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1964,319.57,,,,322.24,321.89,320.44,318.7,316.7,316.79,317.79,318.71,,,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1965,319.44,320.44,320.89,322.13,322.16,321.87,321.39,318.8,317.81,317.3,318.87,319.42,320.04,320.04,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1966,320.62,321.59,322.39,323.87,324.01,323.75,322.39,320.37,318.64,318.1,319.79,321.08,321.38,321.38,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1967,322.06,322.5,323.04,324.42,325,324.09,322.55,320.92,319.31,319.31,320.72,321.96,322.16,322.16,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1968,322.57,323.15,323.89,325.02,325.57,325.36,324.14,322.03,320.41,320.25,321.31,322.84,323.05,323.05,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1969,324,324.42,325.64,326.66,327.34,326.76,325.88,323.67,322.38,321.78,322.85,324.12,324.63,324.63,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1970,325.03,325.99,326.87,328.14,328.07,327.66,326.35,324.69,323.1,323.16,323.98,325.13,325.68,325.68,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1971,326.17,326.68,327.18,327.78,328.92,328.57,327.34,325.46,323.36,323.57,324.8,326.01,326.32,326.32,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1972,326.77,327.63,327.75,329.72,330.07,329.09,328.05,326.32,324.93,325.06,326.5,327.55,327.45,327.45,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1973,328.55,329.56,330.3,331.5,332.48,332.07,330.87,329.31,327.51,327.18,328.16,328.64,329.68,329.68,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1974,329.35,330.71,331.48,332.65,333.09,332.25,331.18,329.4,327.43,327.37,328.46,329.57,330.25,330.25,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1975,330.4,331.41,332.04,333.31,333.96,333.6,331.91,330.06,328.56,328.34,329.49,330.76,331.15,331.15,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1976,331.75,332.56,333.5,334.58,334.87,334.34,333.05,330.94,329.3,328.94,330.31,331.68,332.15,332.15,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1977,332.93,333.42,334.7,336.07,336.74,336.27,334.93,332.75,331.59,331.16,332.4,333.85,333.9,333.9,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1978,334.97,335.39,336.64,337.76,338.01,337.89,336.54,334.68,332.76,332.55,333.92,334.95,335.51,335.51,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1979,336.23,336.76,337.96,338.89,339.47,339.29,337.73,336.09,333.91,333.86,335.29,336.73,336.85,336.85,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1980,338.01,338.36,340.08,340.77,341.46,341.17,339.56,337.6,335.88,336.02,337.1,338.21,338.69,338.69,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1981,339.23,340.47,341.38,342.51,342.91,342.25,340.49,338.43,336.69,336.86,338.36,339.61,339.93,339.93,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1982,340.75,341.61,342.7,343.57,344.13,343.35,342.06,339.81,337.98,337.86,339.26,340.49,341.13,341.13,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1983,341.37,342.52,343.1,344.94,345.75,345.32,343.99,342.39,339.86,339.99,341.15,342.99,342.78,342.78,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1984,343.7,344.5,345.28,347.08,347.43,346.79,345.4,343.28,341.07,341.35,342.98,344.22,344.42,344.42,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1985,344.97,346,347.43,348.35,348.93,348.25,346.56,344.68,343.09,342.8,344.24,345.55,345.9,345.9,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1986,346.3,346.96,347.86,349.55,350.21,349.54,347.94,345.9,344.85,344.17,345.66,346.9,347.15,347.15,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1987,348.02,348.47,349.42,350.99,351.84,351.25,349.52,348.1,346.45,346.36,347.81,348.96,348.93,348.93,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1988,350.43,351.73,352.22,353.59,354.22,353.79,352.38,350.43,348.72,348.88,350.07,351.34,351.48,351.48,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1989,352.76,353.07,353.68,355.42,355.67,355.13,353.9,351.67,349.8,349.99,351.29,352.52,352.91,352.91,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1990,353.66,354.7,355.39,356.2,357.16,356.23,354.82,352.91,350.96,351.18,352.83,354.21,354.19,354.19,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1991,354.72,355.75,357.16,358.6,359.33,358.24,356.17,354.02,352.15,352.21,353.75,354.99,355.59,355.59,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1992,355.98,356.72,357.81,359.15,359.66,359.25,357.02,355,353.01,353.31,354.16,355.4,356.37,356.37,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1993,356.7,357.16,358.38,359.46,360.28,359.6,357.57,355.52,353.69,353.99,355.34,356.8,357.04,357.04,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1994,358.37,358.91,359.97,361.26,361.68,360.95,359.55,357.48,355.84,355.99,357.58,359.04,358.89,358.89,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1995,359.97,361,361.64,363.45,363.79,363.26,361.9,359.46,358.05,357.76,359.56,360.7,360.88,360.88,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1996,362.05,363.25,364.02,364.72,365.41,364.97,363.65,361.48,359.45,359.6,360.76,362.33,362.64,362.64,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1997,363.18,364,364.56,366.35,366.79,365.62,364.47,362.51,360.19,360.77,362.43,364.28,363.76,363.76,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1998,365.33,366.15,367.31,368.61,369.3,368.87,367.64,365.77,363.9,364.23,365.46,366.97,366.63,366.63,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -1999,368.15,368.87,369.59,371.14,371,370.35,369.27,366.93,364.63,365.13,366.67,368.01,368.31,368.31,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2000,369.14,369.46,370.52,371.66,371.82,371.7,370.12,368.12,366.62,366.73,368.29,369.53,369.48,369.48,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2001,370.28,371.5,372.12,372.87,374.02,373.3,371.62,369.55,367.96,368.09,369.68,371.24,371.02,371.02,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2002,372.43,373.09,373.52,374.86,375.55,375.41,374.02,371.49,370.7,370.25,372.08,373.78,373.1,373.1,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2003,374.68,375.63,376.11,377.65,378.35,378.13,376.62,374.5,372.99,373.01,374.35,375.7,375.64,375.64,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2004,376.79,377.37,378.41,380.52,380.63,379.57,377.79,375.86,374.07,374.24,375.86,377.47,377.38,377.38,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2005,378.37,379.69,380.41,382.1,382.28,382.13,380.66,378.71,376.42,376.88,378.32,380.04,379.67,379.67,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2006,381.38,382.03,382.64,384.62,384.95,384.06,382.29,380.47,378.67,379.06,380.14,381.74,381.84,381.84,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2007,382.45,383.68,384.23,386.26,386.39,385.87,384.39,381.78,380.73,380.81,382.33,383.69,383.55,383.55,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa -2008,385.07,385.72,385.85,386.71,388.45,387.64,386.1,383.95,382.91,382.73,383.96,385.02,385.34,385.34,carbon_cycle,atmos_CO2,ppmv CO2,Observed,historical,MaunaLoa diff --git a/scripts/outputplotter/comparison_data/GMD_2015/IPCC/IPCC2005.csv b/scripts/outputplotter/comparison_data/GMD_2015/IPCC/IPCC2005.csv deleted file mode 100644 index 77acd5045..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/IPCC/IPCC2005.csv +++ /dev/null @@ -1,15 +0,0 @@ -"vtag","error_max","error_min","value","year","type","units","source","ctag" -"FCO2",1.83,1.49,1.66,2005,"Observed","W/m2","IPCC","forcing" -"FCH4",0.53,0.43,0.48,2005,"Observed","W/m2","IPCC","forcing" -"FN2O",0.18,0.14,0.16,2005,"Observed","W/m2","IPCC","forcing" -"Fhalos",0.37,0.31,0.34,2005,"Observed","W/m2","IPCC","forcing" -"FO3s",0.05,-0.15,-0.05,2005,"Observed","W/m2","IPCC","forcing" -"FO3t",0.65,0.25,0.35,2005,"Observed","W/m2","IPCC","forcing" -"FwvCH4",0.12,0.02,0.07,2005,"Observed","W/m2","IPCC","forcing" -"Falbedo_lu",0,-0.4,-0.2,2005,"Observed","W/m2","IPCC","forcing" -"Falbedo_bc",0.2,0,0.1,2005,"Observed","W/m2","IPCC","forcing" -"Faerosol_direct",-0.1,-0.9,-0.5,2005,"Observed","W/m2","IPCC","forcing" -"Faerosol_cloud",-0.3,-1.8,-0.8,2005,"Observed","W/m2","IPCC","forcing" -"Fcontrail",0.03,0.003,0.01,2005,"Observed","W/m2","IPCC","forcing" -"Fsolar",0.3,0.06,0.12,2005,"Observed","W/m2","IPCC","forcing" -"Ftot",2.4,0.6,1.6,2005,"Observed","W/m2","IPCC","forcing" diff --git a/scripts/outputplotter/comparison_data/GMD_2015/IPCC/IPCC_alflux.xlsx b/scripts/outputplotter/comparison_data/GMD_2015/IPCC/IPCC_alflux.xlsx deleted file mode 100644 index 9a028ef95..000000000 Binary files a/scripts/outputplotter/comparison_data/GMD_2015/IPCC/IPCC_alflux.xlsx and /dev/null differ diff --git a/scripts/outputplotter/comparison_data/GMD_2015/IPCC/IPCC_aoflux.xlsx b/scripts/outputplotter/comparison_data/GMD_2015/IPCC/IPCC_aoflux.xlsx deleted file mode 100644 index e3938cb43..000000000 Binary files a/scripts/outputplotter/comparison_data/GMD_2015/IPCC/IPCC_aoflux.xlsx and /dev/null differ diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC/MAGICC53_aoflux.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC/MAGICC53_aoflux.csv deleted file mode 100644 index 404db5fd7..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC/MAGICC53_aoflux.csv +++ /dev/null @@ -1,25 +0,0 @@ -#MAGICC 5.3,,,,,,, -#3 climate sensitivity for RCP 4.5,,,,,,, -Year,value,ctag,vtag,type,scenario,units,model -1990,2.24,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -1995,2.33121,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2000,2.47924,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2005,2.67979,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2010,2.90364,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2015,3.08354,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2020,3.28317,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2025,3.50961,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2030,3.75161,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2035,3.98262,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2040,4.19039,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2045,4.36006,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2050,4.48307,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2055,4.53838,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2060,4.52437,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2065,4.45329,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2070,4.32561,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2075,4.14301,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2080,3.90181,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2085,3.68223,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2090,3.54139,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 -2095,3.43219,ocean,atm_ocean_flux,Simulated,rcp45,Pg C/yr,MAGICC 5.3 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC/MAGICC53_aoflux_rcp85.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC/MAGICC53_aoflux_rcp85.csv deleted file mode 100644 index e807f12f0..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC/MAGICC53_aoflux_rcp85.csv +++ /dev/null @@ -1,25 +0,0 @@ -#MAGICC 5.3,,,,,,, -#3 climate sensitivity for RCP 4.5,,,,,,, -Year,value,ctag,vtag,type,scenario,units,model -1990,2.24,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -1995,2.33121,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2000,2.47924,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2005,2.67979,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2010,2.93349,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2015,3.20421,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2020,3.57009,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2025,3.98049,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2030,4.40974,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2035,4.87384,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2040,5.34899,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2045,5.8163,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2050,6.29892,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2055,6.77887,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2060,7.2441,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2065,7.66882,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2070,8.03235,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2075,8.33935,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2080,8.5742,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2085,8.75353,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2090,8.8713,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 -2095,8.94463,ocean,atm_ocean_flux,Simulated,rcp85,Pg C/yr,MAGICC 5.3 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC/magicc.csv1 b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC/magicc.csv1 deleted file mode 100644 index 9d8a815ce..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC/magicc.csv1 +++ /dev/null @@ -1 +0,0 @@ -# MAGICC (DT2X=3.0) output,,,,,,,,,,, # Observed data set for Hector backend,,,,,,,,,,, # Changes from original: added component, variable, type, value and units,,,,,,,, YEAR,RUN,FILE,DT2X,VARIABLE_magicc,VALUE,misc,units,run_name,component,variable,type 1765,EPA_Baseline,concs.dis,1.5,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CO2HI,278,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CO2HI,278.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CO2HI,278.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CO2HI,278.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CO2HI,279.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CO2HI,279.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CO2HI,280.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CO2HI,280.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CO2HI,281.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CO2HI,282.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CO2HI,282.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CO2HI,283.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CO2HI,283.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CO2HI,284.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CO2HI,284.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CO2HI,285.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CO2HI,286.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CO2HI,286.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CO2HI,287.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CO2HI,288,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CO2HI,288.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CO2HI,289.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CO2HI,290.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CO2HI,291.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CO2HI,292.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CO2HI,293.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CO2HI,294.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CO2HI,296,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CO2HI,297.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CO2HI,298.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CO2HI,300.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CO2HI,301.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CO2HI,303.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CO2HI,304.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CO2HI,306.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CO2HI,307.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CO2HI,309.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CO2HI,311.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CO2HI,313.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CO2HI,316.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CO2HI,320.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CO2HI,325.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CO2HI,331.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CO2HI,338.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CO2HI,345.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CO2HI,353.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CO2HI,361.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CO2HI,369.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CO2HI,380.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CO2HI,392.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CO2HI,405.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CO2HI,420.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CO2HI,435.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CO2HI,452.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CO2HI,471,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CO2HI,490.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CO2HI,511.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CO2HI,533.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CO2HI,556.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CO2HI,580.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CO2HI,606.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CO2HI,632.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CO2HI,659.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CO2HI,687.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CO2HI,717.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CO2HI,747.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CO2HI,778.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CO2HI,810.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CO2LO,278,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CO2LO,278.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CO2LO,278.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CO2LO,278.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CO2LO,279.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CO2LO,279.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CO2LO,280.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CO2LO,280.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CO2LO,281.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CO2LO,282.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CO2LO,282.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CO2LO,283.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CO2LO,283.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CO2LO,284.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CO2LO,284.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CO2LO,285.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CO2LO,286.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CO2LO,286.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CO2LO,287.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CO2LO,288,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CO2LO,288.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CO2LO,289.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CO2LO,290.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CO2LO,291.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CO2LO,292.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CO2LO,293.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CO2LO,294.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CO2LO,296,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CO2LO,297.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CO2LO,298.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CO2LO,300.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CO2LO,301.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CO2LO,303.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CO2LO,304.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CO2LO,306.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CO2LO,307.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CO2LO,309.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CO2LO,311.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CO2LO,313.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CO2LO,316.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CO2LO,320.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CO2LO,325.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CO2LO,331.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CO2LO,338.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CO2LO,345.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CO2LO,353.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CO2LO,361.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CO2LO,369.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CO2LO,377.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CO2LO,386,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CO2LO,395.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CO2LO,406.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CO2LO,418.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CO2LO,431.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CO2LO,445.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CO2LO,460.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CO2LO,476.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CO2LO,493.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CO2LO,511.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CO2LO,530.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CO2LO,549.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CO2LO,569.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CO2LO,589.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CO2LO,611.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CO2LO,633.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CO2LO,656,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CO2LO,679.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CO2LO,703.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CO2MID,278,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1770,EPA_Baseline,concs.dis,1.5,CO2MID,278.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1775,EPA_Baseline,concs.dis,1.5,CO2MID,278.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1780,EPA_Baseline,concs.dis,1.5,CO2MID,278.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1785,EPA_Baseline,concs.dis,1.5,CO2MID,279.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1790,EPA_Baseline,concs.dis,1.5,CO2MID,279.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1795,EPA_Baseline,concs.dis,1.5,CO2MID,280.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1800,EPA_Baseline,concs.dis,1.5,CO2MID,280.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1805,EPA_Baseline,concs.dis,1.5,CO2MID,281.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1810,EPA_Baseline,concs.dis,1.5,CO2MID,282.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1815,EPA_Baseline,concs.dis,1.5,CO2MID,282.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1820,EPA_Baseline,concs.dis,1.5,CO2MID,283.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1825,EPA_Baseline,concs.dis,1.5,CO2MID,283.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1830,EPA_Baseline,concs.dis,1.5,CO2MID,284.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1835,EPA_Baseline,concs.dis,1.5,CO2MID,284.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1840,EPA_Baseline,concs.dis,1.5,CO2MID,285.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1845,EPA_Baseline,concs.dis,1.5,CO2MID,286.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1850,EPA_Baseline,concs.dis,1.5,CO2MID,286.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1855,EPA_Baseline,concs.dis,1.5,CO2MID,287.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1860,EPA_Baseline,concs.dis,1.5,CO2MID,288,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1865,EPA_Baseline,concs.dis,1.5,CO2MID,288.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1870,EPA_Baseline,concs.dis,1.5,CO2MID,289.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1875,EPA_Baseline,concs.dis,1.5,CO2MID,290.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1880,EPA_Baseline,concs.dis,1.5,CO2MID,291.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1885,EPA_Baseline,concs.dis,1.5,CO2MID,292.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1890,EPA_Baseline,concs.dis,1.5,CO2MID,293.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1895,EPA_Baseline,concs.dis,1.5,CO2MID,294.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1900,EPA_Baseline,concs.dis,1.5,CO2MID,296,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1905,EPA_Baseline,concs.dis,1.5,CO2MID,297.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1910,EPA_Baseline,concs.dis,1.5,CO2MID,298.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1915,EPA_Baseline,concs.dis,1.5,CO2MID,300.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1920,EPA_Baseline,concs.dis,1.5,CO2MID,301.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1925,EPA_Baseline,concs.dis,1.5,CO2MID,303.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1930,EPA_Baseline,concs.dis,1.5,CO2MID,304.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1935,EPA_Baseline,concs.dis,1.5,CO2MID,306.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1940,EPA_Baseline,concs.dis,1.5,CO2MID,307.7,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1945,EPA_Baseline,concs.dis,1.5,CO2MID,309.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1950,EPA_Baseline,concs.dis,1.5,CO2MID,311.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1955,EPA_Baseline,concs.dis,1.5,CO2MID,313.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1960,EPA_Baseline,concs.dis,1.5,CO2MID,316.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1965,EPA_Baseline,concs.dis,1.5,CO2MID,320.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1970,EPA_Baseline,concs.dis,1.5,CO2MID,325.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1975,EPA_Baseline,concs.dis,1.5,CO2MID,331.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1980,EPA_Baseline,concs.dis,1.5,CO2MID,338.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1985,EPA_Baseline,concs.dis,1.5,CO2MID,345.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1990,EPA_Baseline,concs.dis,1.5,CO2MID,353.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1995,EPA_Baseline,concs.dis,1.5,CO2MID,361.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2000,EPA_Baseline,concs.dis,1.5,CO2MID,369.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2005,EPA_Baseline,concs.dis,1.5,CO2MID,378.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2010,EPA_Baseline,concs.dis,1.5,CO2MID,389.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2015,EPA_Baseline,concs.dis,1.5,CO2MID,400.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2020,EPA_Baseline,concs.dis,1.5,CO2MID,413,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2025,EPA_Baseline,concs.dis,1.5,CO2MID,426.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2030,EPA_Baseline,concs.dis,1.5,CO2MID,441.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2035,EPA_Baseline,concs.dis,1.5,CO2MID,457.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2040,EPA_Baseline,concs.dis,1.5,CO2MID,475.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2045,EPA_Baseline,concs.dis,1.5,CO2MID,493.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2050,EPA_Baseline,concs.dis,1.5,CO2MID,513.1,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2055,EPA_Baseline,concs.dis,1.5,CO2MID,533.6,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2060,EPA_Baseline,concs.dis,1.5,CO2MID,554.9,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2065,EPA_Baseline,concs.dis,1.5,CO2MID,577.2,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2070,EPA_Baseline,concs.dis,1.5,CO2MID,600.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2075,EPA_Baseline,concs.dis,1.5,CO2MID,624.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2080,EPA_Baseline,concs.dis,1.5,CO2MID,649.3,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2085,EPA_Baseline,concs.dis,1.5,CO2MID,675,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2090,EPA_Baseline,concs.dis,1.5,CO2MID,701.8,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2095,EPA_Baseline,concs.dis,1.5,CO2MID,729.4,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 2100,EPA_Baseline,concs.dis,1.5,CO2MID,757.5,,ppmv CO2,EPA_Baseline,Carbon cycle,,Simulated 1765,EPA_Baseline,concs.dis,1.5,CO2USER,278,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1770,EPA_Baseline,concs.dis,1.5,CO2USER,278.1,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1775,EPA_Baseline,concs.dis,1.5,CO2USER,278.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1780,EPA_Baseline,concs.dis,1.5,CO2USER,278.7,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1785,EPA_Baseline,concs.dis,1.5,CO2USER,279.1,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1790,EPA_Baseline,concs.dis,1.5,CO2USER,279.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1795,EPA_Baseline,concs.dis,1.5,CO2USER,280.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1800,EPA_Baseline,concs.dis,1.5,CO2USER,280.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1805,EPA_Baseline,concs.dis,1.5,CO2USER,281.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1810,EPA_Baseline,concs.dis,1.5,CO2USER,282.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1815,EPA_Baseline,concs.dis,1.5,CO2USER,282.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1820,EPA_Baseline,concs.dis,1.5,CO2USER,283.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1825,EPA_Baseline,concs.dis,1.5,CO2USER,283.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1830,EPA_Baseline,concs.dis,1.5,CO2USER,284.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1835,EPA_Baseline,concs.dis,1.5,CO2USER,284.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1840,EPA_Baseline,concs.dis,1.5,CO2USER,285.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1845,EPA_Baseline,concs.dis,1.5,CO2USER,286.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1850,EPA_Baseline,concs.dis,1.5,CO2USER,286.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1855,EPA_Baseline,concs.dis,1.5,CO2USER,287.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1860,EPA_Baseline,concs.dis,1.5,CO2USER,288,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1865,EPA_Baseline,concs.dis,1.5,CO2USER,288.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1870,EPA_Baseline,concs.dis,1.5,CO2USER,289.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1875,EPA_Baseline,concs.dis,1.5,CO2USER,290.1,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1880,EPA_Baseline,concs.dis,1.5,CO2USER,291.1,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1885,EPA_Baseline,concs.dis,1.5,CO2USER,292.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1890,EPA_Baseline,concs.dis,1.5,CO2USER,293.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1895,EPA_Baseline,concs.dis,1.5,CO2USER,294.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1900,EPA_Baseline,concs.dis,1.5,CO2USER,296,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1905,EPA_Baseline,concs.dis,1.5,CO2USER,297.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1910,EPA_Baseline,concs.dis,1.5,CO2USER,298.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1915,EPA_Baseline,concs.dis,1.5,CO2USER,300.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1920,EPA_Baseline,concs.dis,1.5,CO2USER,301.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1925,EPA_Baseline,concs.dis,1.5,CO2USER,303.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1930,EPA_Baseline,concs.dis,1.5,CO2USER,304.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1935,EPA_Baseline,concs.dis,1.5,CO2USER,306.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1940,EPA_Baseline,concs.dis,1.5,CO2USER,307.7,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1945,EPA_Baseline,concs.dis,1.5,CO2USER,309.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1950,EPA_Baseline,concs.dis,1.5,CO2USER,311.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1955,EPA_Baseline,concs.dis,1.5,CO2USER,313.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1960,EPA_Baseline,concs.dis,1.5,CO2USER,316.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1965,EPA_Baseline,concs.dis,1.5,CO2USER,320.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1970,EPA_Baseline,concs.dis,1.5,CO2USER,325.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1975,EPA_Baseline,concs.dis,1.5,CO2USER,331.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1980,EPA_Baseline,concs.dis,1.5,CO2USER,338.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1985,EPA_Baseline,concs.dis,1.5,CO2USER,345.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1990,EPA_Baseline,concs.dis,1.5,CO2USER,353.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1995,EPA_Baseline,concs.dis,1.5,CO2USER,361.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2000,EPA_Baseline,concs.dis,1.5,CO2USER,369.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2005,EPA_Baseline,concs.dis,1.5,CO2USER,378.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2010,EPA_Baseline,concs.dis,1.5,CO2USER,389.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2015,EPA_Baseline,concs.dis,1.5,CO2USER,400.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2020,EPA_Baseline,concs.dis,1.5,CO2USER,413,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2025,EPA_Baseline,concs.dis,1.5,CO2USER,426.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2030,EPA_Baseline,concs.dis,1.5,CO2USER,441.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2035,EPA_Baseline,concs.dis,1.5,CO2USER,457.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2040,EPA_Baseline,concs.dis,1.5,CO2USER,475.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2045,EPA_Baseline,concs.dis,1.5,CO2USER,493.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2050,EPA_Baseline,concs.dis,1.5,CO2USER,513.1,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2055,EPA_Baseline,concs.dis,1.5,CO2USER,533.6,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2060,EPA_Baseline,concs.dis,1.5,CO2USER,554.9,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2065,EPA_Baseline,concs.dis,1.5,CO2USER,577.2,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2070,EPA_Baseline,concs.dis,1.5,CO2USER,600.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2075,EPA_Baseline,concs.dis,1.5,CO2USER,624.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2080,EPA_Baseline,concs.dis,1.5,CO2USER,649.3,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2085,EPA_Baseline,concs.dis,1.5,CO2USER,675,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2090,EPA_Baseline,concs.dis,1.5,CO2USER,701.8,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2095,EPA_Baseline,concs.dis,1.5,CO2USER,729.4,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 2100,EPA_Baseline,concs.dis,1.5,CO2USER,757.5,simple3box.atmos_CO2,ppmv CO2,EPA_Baseline,Carbon cycle,atmos_CO2,Simulated 1765,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,1.5,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,1.5,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,1.5,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,1.5,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,1.5,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,1.5,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,1.5,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,1.5,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,1.5,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,1.5,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,1.5,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,1.5,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,1.5,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,1.5,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,1.5,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,1.5,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,1.5,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,1.5,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,1.5,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,1.5,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,1.5,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,1.5,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,1.5,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,1.5,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,1.5,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,1.5,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,1.5,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,1.5,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,1.5,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,1.5,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,1.5,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,1.5,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,1.5,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,1.5,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,1.5,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,1.5,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,1.5,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,1.5,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,1.5,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,1.5,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,1.5,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,1.5,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,1.5,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,1.5,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,1.5,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,1.5,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,1.5,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,1.5,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,1.5,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,1.5,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,1.5,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,1.5,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,1.5,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,1.5,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,1.5,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,1.5,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,1.5,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,1.5,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,1.5,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,1.5,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,1.5,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,1.5,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,1.5,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,1.5,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,1.5,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,1.5,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,1.5,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,1.5,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,1.5,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,1.5,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,1.5,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,1.5,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,1.5,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,1.5,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,1.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,1.5,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,1.5,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,1.5,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,1.5,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,1.5,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,1.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,1.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,CH4tot,0,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,CH4tot,0.012,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,CH4tot,0.0237,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,CH4tot,0.0318,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,CH4tot,0.0454,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,CH4tot,0.0664,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,CH4tot,0.092,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,CH4tot,0.1194,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,CH4tot,0.1468,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,CH4tot,0.1741,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,CH4tot,0.1994,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2215,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2414,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2581,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2712,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2819,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2884,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,CH4tot,0.29,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2882,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2854,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2829,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2806,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,CH4tot,0.2788,forcing.CH4,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,CO2,0,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,CO2,0.114,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,CO2,0.2311,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,CO2,0.3678,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,CO2,0.5127,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,CO2,0.6675,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,CO2,0.8305,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,CO2,1.0033,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,CO2,1.1875,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,CO2,1.3811,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,CO2,1.5806,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,CO2,1.7839,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,CO2,1.9911,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,CO2,2.2005,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,CO2,2.4104,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,CO2,2.6211,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,CO2,2.8317,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,CO2,3.0414,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,CO2,3.2505,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,CO2,3.4588,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,CO2,3.6664,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,CO2,3.8735,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,CO2,4.0756,forcing.CO2,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,TOTAL,0.50541,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,TOTAL,0.71904,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,TOTAL,0.94235,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,TOTAL,1.1701,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,TOTAL,1.42745,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,TOTAL,1.69603,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,TOTAL,1.97543,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,TOTAL,2.25424,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,TOTAL,2.53241,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,TOTAL,2.81093,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,TOTAL,3.06744,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,TOTAL,3.31989,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,TOTAL,3.57066,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,TOTAL,3.81233,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,TOTAL,4.04677,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,TOTAL,4.27605,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,TOTAL,4.50523,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,TOTAL,4.73428,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,TOTAL,4.9622,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,TOTAL,5.17965,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,1.5,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,1.5,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,1.5,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,1.5,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,1.5,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,1.5,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,1.5,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,1.5,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,1.5,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,1.5,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,1.5,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,1.5,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,1.5,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,1.5,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,1.5,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,1.5,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,1.5,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,1.5,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,1.5,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,1.5,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,1.5,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,1.5,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,1.5,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,1.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,1.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,1.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,1.5,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,1.5,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,1.5,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,1.5,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,1.5,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,1.5,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,1.5,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,1.5,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,1.5,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,1.5,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,1.5,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,1.5,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,1.5,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,1.5,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,1.5,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,1.5,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,1.5,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,1.5,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,1.5,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,1.5,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,1.5,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,1.5,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,1.5,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,1.5,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,1.5,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,1.5,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,1.5,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,1.5,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,1.5,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,1.5,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,1.5,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,1.5,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,1.5,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,1.5,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,1.5,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,1.5,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,1.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,1.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,1.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,1.5,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,1.5,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,1.5,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,1.5,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,1.5,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,1.5,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,1.5,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,1.5,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,1.5,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,1.5,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,1.5,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,1.5,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,1.5,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,1.5,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,1.5,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,1.5,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,1.5,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,1.5,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,1.5,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,1.5,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,1.5,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,1.5,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,1.5,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,1.5,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,1.5,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,1.5,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,1.5,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,1.5,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,1.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,1.5,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,1.5,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,1.5,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,1.5,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,1.5,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,1.5,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,1.5,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,1.5,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,1.5,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,1.5,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,1.5,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,1.5,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,1.5,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,1.5,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,1.5,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,1.5,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,1.5,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,1.5,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,1.5,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,1.5,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,1.5,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,1.5,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,1.5,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,1.5,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,1.5,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,1.5,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,1.5,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,1.5,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,1.5,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,1.5,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,1.5,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,1.5,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,1.5,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1770,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1775,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1780,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1785,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1790,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1795,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1800,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1805,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1810,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1815,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1820,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1825,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1830,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1835,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1840,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1845,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1850,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1855,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1860,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1865,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1870,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1875,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1880,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1885,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1890,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1895,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1900,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1905,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1910,EPA_Baseline,sealev.dis,1.5,MSLUSER,-4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1915,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.9,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1920,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.9,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1925,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.8,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1930,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1935,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1940,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1945,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1950,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1955,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1960,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1965,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1970,EPA_Baseline,sealev.dis,1.5,MSLUSER,-3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1975,EPA_Baseline,sealev.dis,1.5,MSLUSER,-2.8,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1980,EPA_Baseline,sealev.dis,1.5,MSLUSER,-2.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1985,EPA_Baseline,sealev.dis,1.5,MSLUSER,-2.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1990,EPA_Baseline,sealev.dis,1.5,MSLUSER,0,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1995,EPA_Baseline,sealev.dis,1.5,MSLUSER,0.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2000,EPA_Baseline,sealev.dis,1.5,MSLUSER,1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2005,EPA_Baseline,sealev.dis,1.5,MSLUSER,1.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2010,EPA_Baseline,sealev.dis,1.5,MSLUSER,2.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2015,EPA_Baseline,sealev.dis,1.5,MSLUSER,2.8,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2020,EPA_Baseline,sealev.dis,1.5,MSLUSER,3.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2025,EPA_Baseline,sealev.dis,1.5,MSLUSER,4.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2030,EPA_Baseline,sealev.dis,1.5,MSLUSER,5.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2035,EPA_Baseline,sealev.dis,1.5,MSLUSER,6.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2040,EPA_Baseline,sealev.dis,1.5,MSLUSER,7.2,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2045,EPA_Baseline,sealev.dis,1.5,MSLUSER,8.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2050,EPA_Baseline,sealev.dis,1.5,MSLUSER,9.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2055,EPA_Baseline,sealev.dis,1.5,MSLUSER,10.6,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2060,EPA_Baseline,sealev.dis,1.5,MSLUSER,11.9,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2065,EPA_Baseline,sealev.dis,1.5,MSLUSER,13.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2070,EPA_Baseline,sealev.dis,1.5,MSLUSER,14.4,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2075,EPA_Baseline,sealev.dis,1.5,MSLUSER,15.7,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2080,EPA_Baseline,sealev.dis,1.5,MSLUSER,17.1,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2085,EPA_Baseline,sealev.dis,1.5,MSLUSER,18.5,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2090,EPA_Baseline,sealev.dis,1.5,MSLUSER,19.9,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2095,EPA_Baseline,sealev.dis,1.5,MSLUSER,21.3,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 2100,EPA_Baseline,sealev.dis,1.5,MSLUSER,22.8,,cm,EPA_Baseline,slr,slr_no_ice,Simulated 1765,EPA_Baseline,temps.dis,1.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,1.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,1.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,1.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,1.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,1.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,1.5,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,1.5,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,1.5,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,1.5,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,1.5,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,1.5,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,1.5,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,1.5,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,1.5,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,1.5,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,1.5,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,1.5,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,1.5,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,1.5,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,1.5,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,1.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,1.5,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,1.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,1.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,1.5,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,1.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,1.5,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,1.5,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,1.5,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,1.5,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,1.5,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,1.5,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,1.5,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,1.5,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,1.5,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,1.5,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,1.5,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,1.5,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,1.5,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,1.5,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,1.5,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,1.5,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,1.5,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,1.5,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,1.5,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,1.5,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,1.5,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,1.5,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,1.5,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,1.5,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,1.5,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,1.5,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,1.5,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,1.5,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,1.5,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,1.5,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,1.5,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,1.5,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,1.5,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,1.5,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,1.5,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,1.5,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,1.5,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,1.5,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,1.5,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,1.5,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,1.5,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,1.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,1.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,1.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,1.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,1.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,1.5,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,1.5,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,1.5,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,1.5,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,1.5,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,1.5,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,1.5,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,1.5,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,1.5,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,1.5,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,1.5,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,1.5,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,1.5,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,1.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,1.5,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,1.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,1.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,1.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,1.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,1.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,1.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,1.5,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,1.5,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,1.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,1.5,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,1.5,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,1.5,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,1.5,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,1.5,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,1.5,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,1.5,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,1.5,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,1.5,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,1.5,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,1.5,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,1.5,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,1.5,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,1.5,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,1.5,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,1.5,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,1.5,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,1.5,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,1.5,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,1.5,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,1.5,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,1.5,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,1.5,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,1.5,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,1.5,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,1.5,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,1.5,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,1.5,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,1.5,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,1.5,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,1.5,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,1.5,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,1.5,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,1.5,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,1.5,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,1.5,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,1.5,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,1.5,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,1.5,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,1.5,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,1.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,1.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,1.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,1.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,1.5,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,1.5,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,1.5,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,1.5,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,1.5,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,1.5,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,1.5,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,1.5,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,1.5,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,1.5,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,1.5,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,1.5,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,1.5,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,1.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,1.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,1.5,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,1.5,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,1.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,1.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,1.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,1.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,1.5,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,1.5,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,1.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,1.5,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,1.5,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,1.5,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,1.5,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,1.5,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,1.5,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,1.5,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,1.5,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,1.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,1.5,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,1.5,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,1.5,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,1.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,1.5,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,1.5,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,1.5,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,1.5,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,1.5,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,1.5,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,1.5,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,1.5,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,1.5,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,1.5,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,1.5,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,1.5,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,1.5,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,1.5,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,1.5,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,1.5,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,1.5,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,1.5,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,1.5,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,1.5,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,1.5,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,1.5,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,1.5,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,1.5,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,1.5,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,1.5,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,1.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,1.5,TEMUSER,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,1.5,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,1.5,TEMUSER,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,1.5,TEMUSER,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,1.5,TEMUSER,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,1.5,TEMUSER,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,1.5,TEMUSER,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,1.5,TEMUSER,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,1.5,TEMUSER,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,1.5,TEMUSER,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,1.5,TEMUSER,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,1.5,TEMUSER,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,1.5,TEMUSER,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,1.5,TEMUSER,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,1.5,TEMUSER,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,1.5,TEMUSER,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,1.5,TEMUSER,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,1.5,TEMUSER,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,1.5,TEMUSER,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,1.5,TEMUSER,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,1.5,TEMUSER,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,1.5,TEMUSER,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,1.5,TEMUSER,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,1.5,TEMUSER,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CO2HI,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CO2HI,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CO2HI,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CO2HI,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CO2HI,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CO2HI,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CO2HI,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CO2HI,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CO2HI,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CO2HI,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CO2HI,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CO2HI,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CO2HI,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CO2HI,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CO2HI,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CO2HI,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CO2HI,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CO2HI,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CO2HI,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CO2HI,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CO2HI,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CO2HI,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CO2HI,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CO2HI,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CO2HI,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CO2HI,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CO2HI,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CO2HI,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CO2HI,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CO2HI,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CO2HI,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CO2HI,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CO2HI,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CO2HI,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CO2HI,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CO2HI,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CO2HI,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CO2HI,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CO2HI,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CO2HI,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CO2HI,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CO2HI,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CO2HI,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CO2HI,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CO2HI,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CO2HI,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CO2HI,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CO2HI,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CO2HI,380.5,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CO2HI,392.8,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CO2HI,406.2,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CO2HI,420.6,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CO2HI,436.3,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CO2HI,453.6,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CO2HI,472.2,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CO2HI,492.2,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CO2HI,513.5,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CO2HI,536,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CO2HI,559.7,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CO2HI,584.4,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CO2HI,610.3,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CO2HI,637.2,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CO2HI,665.2,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CO2HI,694.2,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CO2HI,724.2,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CO2HI,755.4,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CO2HI,787.8,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CO2HI,820.7,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CO2LO,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CO2LO,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CO2LO,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CO2LO,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CO2LO,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CO2LO,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CO2LO,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CO2LO,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CO2LO,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CO2LO,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CO2LO,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CO2LO,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CO2LO,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CO2LO,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CO2LO,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CO2LO,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CO2LO,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CO2LO,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CO2LO,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CO2LO,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CO2LO,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CO2LO,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CO2LO,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CO2LO,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CO2LO,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CO2LO,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CO2LO,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CO2LO,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CO2LO,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CO2LO,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CO2LO,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CO2LO,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CO2LO,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CO2LO,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CO2LO,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CO2LO,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CO2LO,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CO2LO,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CO2LO,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CO2LO,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CO2LO,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CO2LO,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CO2LO,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CO2LO,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CO2LO,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CO2LO,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CO2LO,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CO2LO,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CO2LO,377.4,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CO2LO,386.2,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CO2LO,396,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CO2LO,406.9,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CO2LO,418.8,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CO2LO,432.1,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CO2LO,446.6,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CO2LO,462.2,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CO2LO,478.6,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CO2LO,496,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CO2LO,514.3,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CO2LO,533.2,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CO2LO,553.1,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CO2LO,573.6,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CO2LO,594.9,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CO2LO,616.9,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CO2LO,639.7,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CO2LO,663.3,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CO2LO,687.8,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CO2LO,712.6,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CO2MID,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CO2MID,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CO2MID,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CO2MID,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CO2MID,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CO2MID,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CO2MID,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CO2MID,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CO2MID,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CO2MID,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CO2MID,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CO2MID,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CO2MID,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CO2MID,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CO2MID,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CO2MID,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CO2MID,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CO2MID,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CO2MID,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CO2MID,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CO2MID,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CO2MID,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CO2MID,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CO2MID,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CO2MID,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CO2MID,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CO2MID,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CO2MID,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CO2MID,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CO2MID,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CO2MID,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CO2MID,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CO2MID,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CO2MID,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CO2MID,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CO2MID,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CO2MID,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CO2MID,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CO2MID,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CO2MID,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CO2MID,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CO2MID,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CO2MID,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CO2MID,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CO2MID,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CO2MID,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CO2MID,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CO2MID,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CO2MID,378.9,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CO2MID,389.4,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CO2MID,400.9,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CO2MID,413.5,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CO2MID,427.2,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CO2MID,442.4,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CO2MID,459,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CO2MID,476.7,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CO2MID,495.5,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CO2MID,515.4,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CO2MID,536.4,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CO2MID,558.3,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CO2MID,581.2,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CO2MID,605,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CO2MID,629.7,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CO2MID,655.3,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CO2MID,681.9,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CO2MID,709.5,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CO2MID,738.2,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CO2MID,767.3,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,CO2USER,278,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,CO2USER,278.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,CO2USER,278.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,CO2USER,278.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,CO2USER,279.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,CO2USER,279.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,CO2USER,280.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,CO2USER,280.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,CO2USER,281.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,CO2USER,282.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,CO2USER,282.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,CO2USER,283.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,CO2USER,283.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,CO2USER,284.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,CO2USER,284.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,CO2USER,285.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,CO2USER,286.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,CO2USER,286.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,CO2USER,287.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,CO2USER,288,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,CO2USER,288.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,CO2USER,289.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,CO2USER,290.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,CO2USER,291.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,CO2USER,292.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,CO2USER,293.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,CO2USER,294.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,CO2USER,296,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,CO2USER,297.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,CO2USER,298.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,CO2USER,300.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,CO2USER,301.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,CO2USER,303.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,CO2USER,304.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,CO2USER,306.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,CO2USER,307.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,CO2USER,309.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,CO2USER,311.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,CO2USER,313.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,CO2USER,316.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,CO2USER,320.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,CO2USER,325.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,CO2USER,331.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,CO2USER,338.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,CO2USER,345.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,CO2USER,353.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,CO2USER,361.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,CO2USER,369.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,CO2USER,378.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,CO2USER,389.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,CO2USER,400.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,CO2USER,413.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,CO2USER,427.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,CO2USER,442.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,CO2USER,459,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,CO2USER,476.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,CO2USER,495.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,CO2USER,515.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,CO2USER,536.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,CO2USER,558.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,CO2USER,581.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,CO2USER,605,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,CO2USER,629.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,CO2USER,655.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,CO2USER,681.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,CO2USER,709.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,CO2USER,738.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,CO2USER,767.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,CH4tot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,CH4tot,0.012,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,CH4tot,0.0237,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,CH4tot,0.0318,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,CH4tot,0.0454,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,CH4tot,0.0664,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,CH4tot,0.092,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,CH4tot,0.1194,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,CH4tot,0.1468,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,CH4tot,0.1741,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,CH4tot,0.1994,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,CH4tot,0.2215,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,CH4tot,0.2414,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,CH4tot,0.2581,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,CH4tot,0.2712,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,CH4tot,0.2819,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,CH4tot,0.2884,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,CH4tot,0.29,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,CH4tot,0.2882,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,CH4tot,0.2854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,CH4tot,0.2829,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,CH4tot,0.2806,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,CH4tot,0.2788,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,CO2,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,CO2,0.114,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,CO2,0.2311,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,CO2,0.3687,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,CO2,0.5149,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,CO2,0.6714,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,CO2,0.8364,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,CO2,1.0116,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,CO2,1.1984,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,CO2,1.3949,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,CO2,1.5976,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,CO2,1.8043,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,CO2,2.0153,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,CO2,2.2286,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,CO2,2.4427,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,CO2,2.6576,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,CO2,2.8726,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,CO2,3.0867,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,CO2,3.3003,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,CO2,3.5133,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,CO2,3.7256,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,CO2,3.9373,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,CO2,4.1442,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,TOTAL,0.50632,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,TOTAL,0.7213,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,TOTAL,0.94632,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,TOTAL,1.17608,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,TOTAL,1.43574,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,TOTAL,1.70693,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,TOTAL,1.98923,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,TOTAL,2.27121,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,TOTAL,2.55287,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,TOTAL,2.83513,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,TOTAL,3.09559,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,TOTAL,3.35215,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,TOTAL,3.60717,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,TOTAL,3.85321,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,TOTAL,4.09211,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,TOTAL,4.32592,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,TOTAL,4.55969,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,TOTAL,4.79339,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,TOTAL,5.026,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,TOTAL,5.24822,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2,MSLUSER,-4.8,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2,MSLUSER,-4.8,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2,MSLUSER,-4.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2,MSLUSER,-4.4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2,MSLUSER,-4.3,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2,MSLUSER,-4.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2,MSLUSER,-4.2,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2,MSLUSER,-4.1,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2,MSLUSER,-4,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2,MSLUSER,-4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2,MSLUSER,-3.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2,MSLUSER,-3.8,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2,MSLUSER,-3.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2,MSLUSER,-3.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2,MSLUSER,-3.5,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2,MSLUSER,-3.3,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2,MSLUSER,-3.2,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2,MSLUSER,-3,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2,MSLUSER,-2.7,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2,MSLUSER,-2.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2,MSLUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2,MSLUSER,0.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2,MSLUSER,1.2,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2,MSLUSER,1.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2,MSLUSER,2.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2,MSLUSER,3.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2,MSLUSER,4.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2,MSLUSER,5.3,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2,MSLUSER,6.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2,MSLUSER,7.5,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2,MSLUSER,8.8,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2,MSLUSER,10.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2,MSLUSER,11.5,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2,MSLUSER,13,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2,MSLUSER,14.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2,MSLUSER,16.1,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2,MSLUSER,17.7,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2,MSLUSER,19.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2,MSLUSER,21.1,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2,MSLUSER,22.8,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2,MSLUSER,24.6,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2,MSLUSER,26.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2,MSLUSER,28.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2,TEMUSER,-0.332,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2,TEMUSER,-0.333,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2,TEMUSER,-0.333,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2,TEMUSER,-0.333,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2,TEMUSER,-0.332,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2,TEMUSER,-0.331,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2,TEMUSER,-0.329,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2,TEMUSER,-0.326,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2,TEMUSER,-0.322,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2,TEMUSER,-0.318,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2,TEMUSER,-0.314,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2,TEMUSER,-0.31,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2,TEMUSER,-0.307,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2,TEMUSER,-0.303,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2,TEMUSER,-0.299,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2,TEMUSER,-0.294,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2,TEMUSER,-0.289,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2,TEMUSER,-0.283,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2,TEMUSER,-0.277,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2,TEMUSER,-0.271,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2,TEMUSER,-0.273,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2,TEMUSER,-0.276,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2,TEMUSER,-0.279,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2,TEMUSER,-0.28,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2,TEMUSER,-0.28,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2,TEMUSER,-0.279,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2,TEMUSER,-0.278,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2,TEMUSER,-0.275,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2,TEMUSER,-0.272,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2,TEMUSER,-0.268,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2,TEMUSER,-0.263,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2,TEMUSER,-0.258,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2,TEMUSER,-0.252,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2,TEMUSER,-0.246,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2,TEMUSER,-0.242,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2,TEMUSER,-0.234,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2,TEMUSER,-0.226,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2,TEMUSER,-0.213,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2,TEMUSER,-0.21,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2,TEMUSER,-0.218,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2,TEMUSER,-0.222,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2,TEMUSER,-0.214,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2,TEMUSER,-0.178,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2,TEMUSER,-0.124,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2,TEMUSER,-0.067,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2,TEMUSER,0.061,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2,TEMUSER,0.126,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2,TEMUSER,0.198,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2,TEMUSER,0.28,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2,TEMUSER,0.367,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2,TEMUSER,0.458,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2,TEMUSER,0.561,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2,TEMUSER,0.67,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2,TEMUSER,0.785,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2,TEMUSER,0.902,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2,TEMUSER,1.021,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2,TEMUSER,1.142,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2,TEMUSER,1.257,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2,TEMUSER,1.37,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2,TEMUSER,1.484,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2,TEMUSER,1.595,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2,TEMUSER,1.704,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2,TEMUSER,1.812,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2,TEMUSER,1.919,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2,TEMUSER,2.027,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2,TEMUSER,2.134,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2,TEMUSER,2.239,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CO2HI,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CO2HI,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CO2HI,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CO2HI,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CO2HI,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CO2HI,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CO2HI,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CO2HI,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CO2HI,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CO2HI,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CO2HI,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CO2HI,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CO2HI,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CO2HI,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CO2HI,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CO2HI,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CO2HI,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CO2HI,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CO2HI,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CO2HI,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CO2HI,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CO2HI,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CO2HI,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CO2HI,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CO2HI,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CO2HI,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CO2HI,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CO2HI,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CO2HI,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CO2HI,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CO2HI,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CO2HI,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CO2HI,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CO2HI,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CO2HI,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CO2HI,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CO2HI,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CO2HI,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CO2HI,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CO2HI,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CO2HI,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CO2HI,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CO2HI,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CO2HI,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CO2HI,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CO2HI,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CO2HI,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CO2HI,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CO2HI,380.5,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CO2HI,392.9,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CO2HI,406.5,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CO2HI,421.1,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CO2HI,436.9,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CO2HI,454.4,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CO2HI,473.3,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CO2HI,493.6,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CO2HI,515.2,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CO2HI,538.1,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CO2HI,562.3,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CO2HI,587.6,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CO2HI,614,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CO2HI,641.5,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CO2HI,670.2,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CO2HI,699.9,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CO2HI,730.8,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CO2HI,762.8,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CO2HI,796.1,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CO2HI,830,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CO2LO,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CO2LO,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CO2LO,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CO2LO,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CO2LO,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CO2LO,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CO2LO,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CO2LO,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CO2LO,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CO2LO,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CO2LO,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CO2LO,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CO2LO,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CO2LO,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CO2LO,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CO2LO,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CO2LO,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CO2LO,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CO2LO,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CO2LO,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CO2LO,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CO2LO,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CO2LO,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CO2LO,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CO2LO,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CO2LO,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CO2LO,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CO2LO,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CO2LO,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CO2LO,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CO2LO,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CO2LO,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CO2LO,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CO2LO,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CO2LO,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CO2LO,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CO2LO,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CO2LO,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CO2LO,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CO2LO,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CO2LO,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CO2LO,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CO2LO,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CO2LO,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CO2LO,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CO2LO,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CO2LO,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CO2LO,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CO2LO,377.4,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CO2LO,386.3,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CO2LO,396.3,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CO2LO,407.2,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CO2LO,419.4,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CO2LO,432.9,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CO2LO,447.6,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CO2LO,463.5,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CO2LO,480.2,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CO2LO,498,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CO2LO,516.6,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CO2LO,536.1,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CO2LO,556.4,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CO2LO,577.5,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CO2LO,599.4,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CO2LO,622.1,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CO2LO,645.6,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CO2LO,670.1,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CO2LO,695.4,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CO2LO,721.1,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CO2MID,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CO2MID,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CO2MID,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CO2MID,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CO2MID,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CO2MID,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CO2MID,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CO2MID,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CO2MID,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CO2MID,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CO2MID,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CO2MID,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CO2MID,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CO2MID,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CO2MID,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CO2MID,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CO2MID,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CO2MID,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CO2MID,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CO2MID,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CO2MID,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CO2MID,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CO2MID,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CO2MID,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CO2MID,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CO2MID,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CO2MID,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CO2MID,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CO2MID,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CO2MID,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CO2MID,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CO2MID,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CO2MID,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CO2MID,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CO2MID,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CO2MID,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CO2MID,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CO2MID,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CO2MID,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CO2MID,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CO2MID,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CO2MID,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CO2MID,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CO2MID,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CO2MID,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CO2MID,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CO2MID,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CO2MID,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CO2MID,378.9,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CO2MID,389.5,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CO2MID,401.2,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CO2MID,413.9,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CO2MID,427.8,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CO2MID,443.2,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CO2MID,460,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CO2MID,478,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CO2MID,497.1,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CO2MID,517.5,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CO2MID,538.9,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CO2MID,561.3,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CO2MID,584.7,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CO2MID,609.1,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CO2MID,634.5,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CO2MID,660.9,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CO2MID,688.3,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CO2MID,716.7,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CO2MID,746.3,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CO2MID,776.4,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,CO2USER,278,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,CO2USER,278.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,CO2USER,278.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,CO2USER,278.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,CO2USER,279.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,CO2USER,279.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,CO2USER,280.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,CO2USER,280.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,CO2USER,281.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,CO2USER,282.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,CO2USER,282.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,CO2USER,283.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,CO2USER,283.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,CO2USER,284.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,CO2USER,284.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,CO2USER,285.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,CO2USER,286.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,CO2USER,286.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,CO2USER,287.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,CO2USER,288,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,CO2USER,288.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,CO2USER,289.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,CO2USER,290.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,CO2USER,291.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,CO2USER,292.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,CO2USER,293.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,CO2USER,294.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,CO2USER,296,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,CO2USER,297.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,CO2USER,298.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,CO2USER,300.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,CO2USER,301.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,CO2USER,303.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,CO2USER,304.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,CO2USER,306.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,CO2USER,307.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,CO2USER,309.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,CO2USER,311.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,CO2USER,313.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,CO2USER,316.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,CO2USER,320.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,CO2USER,325.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,CO2USER,331.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,CO2USER,338.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,CO2USER,345.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,CO2USER,353.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,CO2USER,361.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,CO2USER,369.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,CO2USER,378.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,CO2USER,389.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,CO2USER,401.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,CO2USER,413.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,CO2USER,427.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,CO2USER,443.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,CO2USER,460,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,CO2USER,478,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,CO2USER,497.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,CO2USER,517.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,CO2USER,538.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,CO2USER,561.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,CO2USER,584.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,CO2USER,609.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,CO2USER,634.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,CO2USER,660.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,CO2USER,688.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,CO2USER,716.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,CO2USER,746.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,CO2USER,776.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,2.5,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,2.5,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,2.5,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,2.5,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,2.5,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,2.5,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,2.5,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,2.5,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,2.5,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,2.5,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,2.5,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,2.5,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,2.5,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,2.5,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,2.5,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,2.5,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,2.5,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,2.5,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,2.5,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,2.5,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,2.5,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,2.5,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,2.5,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,2.5,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,2.5,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,2.5,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,2.5,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,2.5,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,2.5,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,2.5,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,2.5,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,2.5,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,2.5,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,2.5,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,2.5,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,2.5,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,2.5,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,2.5,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,2.5,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,2.5,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,2.5,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,2.5,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,2.5,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,2.5,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,2.5,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,2.5,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,2.5,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,2.5,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,2.5,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,2.5,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,2.5,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,2.5,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,2.5,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,2.5,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,2.5,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,2.5,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,2.5,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,2.5,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,2.5,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,2.5,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,2.5,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,2.5,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,2.5,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,2.5,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,2.5,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,2.5,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,2.5,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,2.5,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,2.5,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,2.5,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,2.5,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,2.5,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,2.5,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,2.5,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,2.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,2.5,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,2.5,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,2.5,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,2.5,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,2.5,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,2.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,2.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,CH4tot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,CH4tot,0.012,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,CH4tot,0.0237,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,CH4tot,0.0318,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,CH4tot,0.0454,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,CH4tot,0.0664,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,CH4tot,0.092,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,CH4tot,0.1194,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,CH4tot,0.1468,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,CH4tot,0.1741,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,CH4tot,0.1994,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2215,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2414,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2581,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2712,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2819,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2884,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,CH4tot,0.29,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2882,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2829,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2806,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,CH4tot,0.2788,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,CO2,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,CO2,0.114,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,CO2,0.2311,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,CO2,0.3695,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,CO2,0.5169,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,CO2,0.6748,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,CO2,0.8416,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,CO2,1.0188,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,CO2,1.2079,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,CO2,1.4069,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,CO2,1.6124,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,CO2,1.8223,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,CO2,2.0366,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,CO2,2.2535,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,CO2,2.4713,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,CO2,2.6902,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,CO2,2.9092,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,CO2,3.1274,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,CO2,3.3453,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,CO2,3.5626,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,CO2,3.7793,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,CO2,3.9955,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,CO2,4.2069,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,TOTAL,0.50709,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,TOTAL,0.72323,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,TOTAL,0.94973,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,TOTAL,1.18124,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,TOTAL,1.44292,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,TOTAL,1.7164,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,TOTAL,2.00124,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,TOTAL,2.28606,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,TOTAL,2.57082,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,TOTAL,2.85645,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,TOTAL,3.12049,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,TOTAL,3.3808,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,TOTAL,3.63972,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,TOTAL,3.8898,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,TOTAL,4.13285,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,TOTAL,4.3709,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,TOTAL,4.609,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,TOTAL,4.8471,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,TOTAL,5.08416,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,TOTAL,5.31093,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,2.5,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,2.5,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,2.5,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,2.5,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,2.5,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,2.5,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,2.5,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,2.5,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,2.5,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,2.5,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,2.5,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,2.5,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,2.5,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,2.5,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,2.5,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,2.5,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,2.5,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,2.5,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,2.5,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,2.5,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,2.5,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,2.5,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,2.5,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2.5,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2.5,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2.5,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2.5,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2.5,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2.5,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2.5,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2.5,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2.5,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2.5,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2.5,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2.5,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2.5,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2.5,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2.5,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2.5,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2.5,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2.5,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2.5,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2.5,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2.5,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2.5,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2.5,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2.5,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2.5,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2.5,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2.5,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2.5,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2.5,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2.5,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2.5,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2.5,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2.5,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2.5,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2.5,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2.5,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2.5,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2.5,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2.5,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2.5,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2.5,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2.5,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2.5,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2.5,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2.5,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2.5,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2.5,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2.5,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2.5,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2.5,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2.5,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2.5,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2.5,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2.5,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2.5,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2.5,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2.5,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2.5,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2.5,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2.5,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2.5,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2.5,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2.5,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2.5,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2.5,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2.5,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2.5,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2.5,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2.5,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2.5,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2.5,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2.5,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2.5,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2.5,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2.5,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2.5,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2.5,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2.5,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2.5,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2.5,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2.5,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2.5,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2.5,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2.5,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2.5,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2.5,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2.5,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2.5,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2.5,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2.5,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2.5,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2.5,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2.5,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2.5,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2.5,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2.5,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2.5,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.4,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.4,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.4,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,2.5,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.8,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.4,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4.1,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,2.5,MSLUSER,-4,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.7,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.6,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.5,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.4,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,2.5,MSLUSER,-3.1,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,2.5,MSLUSER,-2.8,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,2.5,MSLUSER,-2.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,2.5,MSLUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,2.5,MSLUSER,0.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,2.5,MSLUSER,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,2.5,MSLUSER,2.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,2.5,MSLUSER,2.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,2.5,MSLUSER,3.9,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,2.5,MSLUSER,4.9,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,2.5,MSLUSER,6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,2.5,MSLUSER,7.3,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,2.5,MSLUSER,8.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,2.5,MSLUSER,10.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,2.5,MSLUSER,11.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,2.5,MSLUSER,13.3,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,2.5,MSLUSER,15,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,2.5,MSLUSER,16.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,2.5,MSLUSER,18.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,2.5,MSLUSER,20.6,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,2.5,MSLUSER,22.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,2.5,MSLUSER,24.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,2.5,MSLUSER,26.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,2.5,MSLUSER,28.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,2.5,MSLUSER,30.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,2.5,MSLUSER,33.1,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2.5,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2.5,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2.5,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2.5,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2.5,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2.5,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2.5,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2.5,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2.5,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2.5,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2.5,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2.5,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2.5,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2.5,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2.5,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2.5,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2.5,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2.5,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2.5,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2.5,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2.5,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2.5,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2.5,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2.5,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2.5,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2.5,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2.5,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2.5,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2.5,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2.5,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2.5,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2.5,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2.5,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2.5,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2.5,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2.5,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2.5,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2.5,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2.5,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2.5,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2.5,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2.5,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2.5,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2.5,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2.5,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2.5,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2.5,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2.5,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2.5,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2.5,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2.5,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2.5,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2.5,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2.5,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2.5,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2.5,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2.5,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2.5,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2.5,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2.5,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2.5,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2.5,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2.5,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2.5,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2.5,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2.5,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2.5,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2.5,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2.5,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2.5,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2.5,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2.5,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2.5,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2.5,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2.5,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2.5,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2.5,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2.5,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2.5,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2.5,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2.5,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2.5,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2.5,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2.5,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2.5,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2.5,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2.5,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2.5,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2.5,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2.5,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2.5,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2.5,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2.5,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2.5,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2.5,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2.5,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2.5,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2.5,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2.5,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2.5,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2.5,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2.5,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2.5,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2.5,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2.5,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2.5,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2.5,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2.5,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2.5,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2.5,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2.5,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2.5,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2.5,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2.5,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2.5,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2.5,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2.5,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2.5,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2.5,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2.5,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2.5,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2.5,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2.5,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2.5,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2.5,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2.5,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2.5,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2.5,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2.5,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2.5,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2.5,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2.5,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2.5,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2.5,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2.5,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2.5,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2.5,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2.5,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2.5,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2.5,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2.5,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2.5,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2.5,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2.5,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2.5,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2.5,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2.5,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2.5,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2.5,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2.5,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2.5,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2.5,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2.5,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2.5,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2.5,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2.5,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2.5,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2.5,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2.5,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2.5,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2.5,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2.5,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2.5,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2.5,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2.5,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2.5,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2.5,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2.5,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.38,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.381,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.381,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.381,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.381,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.379,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.377,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.373,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.369,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.365,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.36,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.355,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.351,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.347,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.342,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.337,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.33,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.323,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.316,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.31,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.311,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.314,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.317,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.319,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.319,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.318,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.316,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.314,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.31,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.305,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.299,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.293,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.287,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.28,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.275,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.266,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.257,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.242,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.238,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.247,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.252,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.242,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.203,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.141,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,2.5,TEMUSER,-0.077,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,2.5,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,2.5,TEMUSER,0.071,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,2.5,TEMUSER,0.147,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,2.5,TEMUSER,0.231,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,2.5,TEMUSER,0.325,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,2.5,TEMUSER,0.427,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,2.5,TEMUSER,0.535,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,2.5,TEMUSER,0.655,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,2.5,TEMUSER,0.783,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,2.5,TEMUSER,0.918,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,2.5,TEMUSER,1.057,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,2.5,TEMUSER,1.198,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,2.5,TEMUSER,1.342,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,2.5,TEMUSER,1.48,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,2.5,TEMUSER,1.616,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,2.5,TEMUSER,1.753,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,2.5,TEMUSER,1.887,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,2.5,TEMUSER,2.02,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,2.5,TEMUSER,2.151,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,2.5,TEMUSER,2.281,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,2.5,TEMUSER,2.412,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,2.5,TEMUSER,2.543,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,2.5,TEMUSER,2.672,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CO2HI,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CO2HI,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CO2HI,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CO2HI,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CO2HI,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CO2HI,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CO2HI,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CO2HI,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CO2HI,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CO2HI,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CO2HI,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CO2HI,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CO2HI,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CO2HI,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CO2HI,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CO2HI,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CO2HI,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CO2HI,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CO2HI,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CO2HI,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CO2HI,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CO2HI,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CO2HI,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CO2HI,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CO2HI,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CO2HI,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CO2HI,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CO2HI,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CO2HI,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CO2HI,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CO2HI,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CO2HI,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CO2HI,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CO2HI,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CO2HI,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CO2HI,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CO2HI,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CO2HI,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CO2HI,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CO2HI,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CO2HI,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CO2HI,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CO2HI,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CO2HI,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CO2HI,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CO2HI,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CO2HI,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CO2HI,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CO2HI,380.6,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CO2HI,393,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CO2HI,406.7,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CO2HI,421.4,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CO2HI,437.5,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CO2HI,455.1,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CO2HI,474.3,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CO2HI,494.8,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CO2HI,516.8,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CO2HI,540,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CO2HI,564.6,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CO2HI,590.3,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CO2HI,617.3,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CO2HI,645.4,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CO2HI,674.7,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CO2HI,705.1,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CO2HI,736.7,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CO2HI,769.6,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CO2HI,803.7,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CO2HI,838.6,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CO2LO,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CO2LO,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CO2LO,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CO2LO,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CO2LO,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CO2LO,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CO2LO,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CO2LO,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CO2LO,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CO2LO,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CO2LO,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CO2LO,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CO2LO,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CO2LO,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CO2LO,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CO2LO,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CO2LO,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CO2LO,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CO2LO,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CO2LO,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CO2LO,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CO2LO,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CO2LO,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CO2LO,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CO2LO,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CO2LO,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CO2LO,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CO2LO,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CO2LO,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CO2LO,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CO2LO,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CO2LO,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CO2LO,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CO2LO,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CO2LO,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CO2LO,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CO2LO,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CO2LO,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CO2LO,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CO2LO,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CO2LO,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CO2LO,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CO2LO,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CO2LO,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CO2LO,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CO2LO,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CO2LO,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CO2LO,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CO2LO,377.5,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CO2LO,386.4,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CO2LO,396.5,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CO2LO,407.6,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CO2LO,419.9,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CO2LO,433.5,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CO2LO,448.5,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CO2LO,464.6,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CO2LO,481.6,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CO2LO,499.7,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CO2LO,518.7,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CO2LO,538.6,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CO2LO,559.4,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CO2LO,581,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CO2LO,603.5,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CO2LO,626.8,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CO2LO,651.1,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CO2LO,676.3,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CO2LO,702.4,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CO2LO,729,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CO2MID,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CO2MID,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CO2MID,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CO2MID,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CO2MID,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CO2MID,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CO2MID,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CO2MID,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CO2MID,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CO2MID,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CO2MID,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CO2MID,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CO2MID,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CO2MID,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CO2MID,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CO2MID,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CO2MID,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CO2MID,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CO2MID,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CO2MID,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CO2MID,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CO2MID,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CO2MID,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CO2MID,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CO2MID,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CO2MID,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CO2MID,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CO2MID,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CO2MID,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CO2MID,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CO2MID,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CO2MID,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CO2MID,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CO2MID,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CO2MID,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CO2MID,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CO2MID,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CO2MID,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CO2MID,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CO2MID,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CO2MID,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CO2MID,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CO2MID,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CO2MID,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CO2MID,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CO2MID,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CO2MID,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CO2MID,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CO2MID,379,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CO2MID,389.6,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CO2MID,401.4,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CO2MID,414.2,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CO2MID,428.3,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CO2MID,443.9,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CO2MID,460.9,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CO2MID,479.2,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CO2MID,498.6,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CO2MID,519.3,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CO2MID,541.1,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CO2MID,564,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CO2MID,587.9,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CO2MID,612.9,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CO2MID,638.9,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CO2MID,665.9,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CO2MID,694,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CO2MID,723.3,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CO2MID,753.7,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CO2MID,784.7,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,CO2USER,278,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,CO2USER,278.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,CO2USER,278.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,CO2USER,278.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,CO2USER,279.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,CO2USER,279.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,CO2USER,280.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,CO2USER,280.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,CO2USER,281.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,CO2USER,282.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,CO2USER,282.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,CO2USER,283.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,CO2USER,283.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,CO2USER,284.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,CO2USER,284.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,CO2USER,285.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,CO2USER,286.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,CO2USER,286.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,CO2USER,287.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,CO2USER,288,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,CO2USER,288.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,CO2USER,289.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,CO2USER,290.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,CO2USER,291.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,CO2USER,292.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,CO2USER,293.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,CO2USER,294.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,CO2USER,296,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,CO2USER,297.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,CO2USER,298.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,CO2USER,300.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,CO2USER,301.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,CO2USER,303.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,CO2USER,304.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,CO2USER,306.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,CO2USER,307.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,CO2USER,309.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,CO2USER,311.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,CO2USER,313.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,CO2USER,316.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,CO2USER,320.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,CO2USER,325.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,CO2USER,331.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,CO2USER,338.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,CO2USER,345.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,CO2USER,353.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,CO2USER,361.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,CO2USER,369.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,CO2USER,379,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,CO2USER,389.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,CO2USER,401.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,CO2USER,414.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,CO2USER,428.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,CO2USER,443.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,CO2USER,460.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,CO2USER,479.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,CO2USER,498.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,CO2USER,519.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,CO2USER,541.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,CO2USER,564,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,CO2USER,587.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,CO2USER,612.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,CO2USER,638.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,CO2USER,665.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,CO2USER,694,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,CO2USER,723.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,CO2USER,753.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,CO2USER,784.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,3,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,3,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,3,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,3,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,3,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,3,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,3,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,3,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,3,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,3,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,3,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,3,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,3,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,3,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,3,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,3,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,3,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,3,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,3,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,3,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,3,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,3,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,3,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,3,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,3,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,3,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,3,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,3,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,3,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,3,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,3,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,3,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,3,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,3,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,3,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,3,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,3,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,3,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,3,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,3,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,3,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,3,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,3,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,3,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,3,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,3,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,3,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,3,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,3,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,3,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,3,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,3,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,3,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,3,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,3,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,3,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,3,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,3,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,3,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,3,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,3,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,3,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,3,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,3,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,3,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,3,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,3,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,3,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,3,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,3,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,3,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,3,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,3,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,3,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,3,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,3,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,3,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,3,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,3,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,3,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,3,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,3,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,3,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,3,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,3,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,3,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,3,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,3,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,3,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,3,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,3,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,CH4tot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,CH4tot,0.012,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,CH4tot,0.0237,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,CH4tot,0.0318,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,CH4tot,0.0454,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,CH4tot,0.0664,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,CH4tot,0.092,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,CH4tot,0.1194,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,CH4tot,0.1468,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,CH4tot,0.1741,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,CH4tot,0.1994,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,CH4tot,0.2215,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,CH4tot,0.2414,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,CH4tot,0.2581,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,CH4tot,0.2712,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,CH4tot,0.2819,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,CH4tot,0.2884,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,CH4tot,0.29,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,CH4tot,0.2882,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,CH4tot,0.2854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,CH4tot,0.2829,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,CH4tot,0.2806,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,CH4tot,0.2788,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,CO2,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,CO2,0.114,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,CO2,0.2311,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,CO2,0.3702,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,CO2,0.5185,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,CO2,0.6778,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,CO2,0.8461,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,CO2,1.025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,CO2,1.2162,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,CO2,1.4175,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,CO2,1.6255,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,CO2,1.8382,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,CO2,2.0555,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,CO2,2.2757,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,CO2,2.4969,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,CO2,2.7194,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,CO2,2.942,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,CO2,3.1642,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,CO2,3.386,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,CO2,3.6074,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,CO2,3.8281,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,CO2,4.0485,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,CO2,4.2643,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,TOTAL,0.50776,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,TOTAL,0.7249,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,TOTAL,0.95269,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,TOTAL,1.18573,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,TOTAL,1.44917,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,TOTAL,1.72467,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,TOTAL,2.01178,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,TOTAL,2.29912,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,TOTAL,2.58668,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,TOTAL,2.87534,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,TOTAL,3.14263,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,TOTAL,3.40637,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,TOTAL,3.66888,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,TOTAL,3.92268,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,TOTAL,4.16959,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,TOTAL,4.4116,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,TOTAL,4.65375,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,TOTAL,4.89598,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,TOTAL,5.13726,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,TOTAL,5.36833,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,3,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,3,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,3,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,3,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,3,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,3,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,3,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,3,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,3,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,3,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,3,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,3,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,3,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,3,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,3,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,3,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,3,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,3,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,3,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,3,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,3,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,3,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,3,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,3,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,3,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,3,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,3,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,3,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,3,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,3,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,3,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,3,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,3,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,3,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,3,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,3,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,3,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,3,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,3,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,3,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,3,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,3,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,3,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,3,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,3,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,3,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,3,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,3,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,3,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,3,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,3,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,3,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,3,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,3,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,3,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,3,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,3,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,3,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,3,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,3,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,3,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,3,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,3,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,3,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,3,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,3,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,3,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,3,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,3,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,3,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,3,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,3,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,3,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,3,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,3,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,3,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,3,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,3,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,3,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,3,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,3,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,3,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,3,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,3,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,3,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,3,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,3,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,3,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,3,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,3,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,3,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,3,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,3,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,3,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,3,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,3,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,3,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,3,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,3,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,3,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,3,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,3,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,3,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,3,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,3,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,3,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,3,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,3,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,3,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,3,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,3,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,3,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,3,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,3,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,3,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,3,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,3,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,3,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,3,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,3,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,3,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,3,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,3,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,3,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,3,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,3,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,3,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,3,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,3,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,3,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,3,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,3,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,3,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,3,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,3,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,3,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,3,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,3,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,3,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,3,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,3,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,3,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,3,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,3,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,3,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,3,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,3,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,3,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,3,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,3,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,3,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,3,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,3,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,3,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,3,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,3,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,3,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,3,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,3,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,3,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,3,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,3,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,3,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,3,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,3,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,3,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,3,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,3,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,3,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,3,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,3,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,3,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,3,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,3,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,3,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,3,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,3,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,3,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,3,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,3,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,3,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,3,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,3,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,3,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,3,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,3,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,3,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,3,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,3,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,3,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,3,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,3,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,3,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,3,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,3,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,3,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,3,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,3,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,3,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,3,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,3,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,3,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,3,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,3,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,3,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,3,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,3,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,3,MSLUSER,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,3,MSLUSER,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,3,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,3,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,3,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,3,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,3,MSLUSER,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,3,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,3,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,3,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,3,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,3,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,3,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,3,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,3,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,3,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,3,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,3,MSLUSER,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,3,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,3,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,3,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,3,MSLUSER,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,3,MSLUSER,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,3,MSLUSER,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,3,MSLUSER,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,3,MSLUSER,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,3,MSLUSER,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,3,MSLUSER,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,3,MSLUSER,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,3,MSLUSER,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,3,MSLUSER,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,3,MSLUSER,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,3,MSLUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,3,MSLUSER,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,3,MSLUSER,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,3,MSLUSER,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,3,MSLUSER,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,3,MSLUSER,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,3,MSLUSER,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,3,MSLUSER,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,3,MSLUSER,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,3,MSLUSER,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,3,MSLUSER,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,3,MSLUSER,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,3,MSLUSER,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,3,MSLUSER,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,3,MSLUSER,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,3,MSLUSER,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,3,MSLUSER,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,3,MSLUSER,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,3,MSLUSER,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,3,MSLUSER,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,3,MSLUSER,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,3,MSLUSER,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,3,MSLUSER,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,3,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,3,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,3,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,3,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,3,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,3,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,3,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,3,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,3,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,3,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,3,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,3,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,3,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,3,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,3,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,3,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,3,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,3,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,3,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,3,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,3,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,3,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,3,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,3,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,3,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,3,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,3,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,3,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,3,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,3,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,3,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,3,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,3,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,3,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,3,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,3,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,3,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,3,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,3,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,3,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,3,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,3,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,3,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,3,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,3,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,3,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,3,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,3,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,3,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,3,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,3,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,3,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,3,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,3,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,3,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,3,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,3,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,3,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,3,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,3,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,3,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,3,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,3,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,3,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,3,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,3,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,3,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,3,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,3,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,3,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,3,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,3,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,3,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,3,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,3,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,3,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,3,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,3,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,3,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,3,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,3,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,3,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,3,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,3,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,3,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,3,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,3,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,3,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,3,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,3,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,3,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,3,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,3,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,3,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,3,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,3,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,3,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,3,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,3,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,3,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,3,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,3,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,3,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,3,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,3,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,3,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,3,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,3,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,3,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,3,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,3,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,3,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,3,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,3,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,3,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,3,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,3,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,3,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,3,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,3,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,3,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,3,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,3,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,3,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,3,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,3,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,3,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,3,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,3,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,3,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,3,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,3,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,3,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,3,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,3,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,3,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,3,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,3,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,3,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,3,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,3,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,3,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,3,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,3,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,3,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,3,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,3,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,3,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,3,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,3,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,3,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,3,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,3,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,3,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,3,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,3,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,3,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,3,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,3,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,3,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,3,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,3,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,3,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,3,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,3,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,3,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,3,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,3,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,3,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,3,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,3,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,3,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,3,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,3,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,3,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,3,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,3,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,3,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,3,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,3,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,3,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,3,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,3,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,3,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,3,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,3,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,3,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,3,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,3,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,3,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,3,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,3,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,3,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,3,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,3,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,3,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,3,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,3,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,3,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,3,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,3,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,3,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,3,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,3,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,3,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,3,TEMUSER,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,3,TEMUSER,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,3,TEMUSER,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,3,TEMUSER,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,3,TEMUSER,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,3,TEMUSER,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,3,TEMUSER,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,3,TEMUSER,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,3,TEMUSER,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,3,TEMUSER,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,3,TEMUSER,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,3,TEMUSER,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,3,TEMUSER,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,3,TEMUSER,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,3,TEMUSER,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,3,TEMUSER,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,3,TEMUSER,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,3,TEMUSER,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,3,TEMUSER,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,3,TEMUSER,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,3,TEMUSER,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,3,TEMUSER,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,3,TEMUSER,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,3,TEMUSER,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,3,TEMUSER,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,3,TEMUSER,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,3,TEMUSER,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,3,TEMUSER,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,3,TEMUSER,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,3,TEMUSER,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,3,TEMUSER,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,3,TEMUSER,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,3,TEMUSER,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,3,TEMUSER,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,3,TEMUSER,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,3,TEMUSER,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,3,TEMUSER,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,3,TEMUSER,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,3,TEMUSER,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,3,TEMUSER,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,3,TEMUSER,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,3,TEMUSER,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,3,TEMUSER,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,3,TEMUSER,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,3,TEMUSER,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,3,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,3,TEMUSER,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,3,TEMUSER,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,3,TEMUSER,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,3,TEMUSER,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,3,TEMUSER,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,3,TEMUSER,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,3,TEMUSER,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,3,TEMUSER,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,3,TEMUSER,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,3,TEMUSER,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,3,TEMUSER,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,3,TEMUSER,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,3,TEMUSER,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,3,TEMUSER,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,3,TEMUSER,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,3,TEMUSER,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,3,TEMUSER,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,3,TEMUSER,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,3,TEMUSER,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,3,TEMUSER,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,3,TEMUSER,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,3,TEMUSER,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CO2HI,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CO2HI,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CO2HI,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CO2HI,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CO2HI,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CO2HI,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CO2HI,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CO2HI,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CO2HI,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CO2HI,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CO2HI,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CO2HI,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CO2HI,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CO2HI,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CO2HI,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CO2HI,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CO2HI,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CO2HI,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CO2HI,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CO2HI,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CO2HI,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CO2HI,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CO2HI,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CO2HI,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CO2HI,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CO2HI,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CO2HI,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CO2HI,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CO2HI,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CO2HI,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CO2HI,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CO2HI,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CO2HI,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CO2HI,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CO2HI,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CO2HI,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CO2HI,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CO2HI,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CO2HI,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CO2HI,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CO2HI,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CO2HI,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CO2HI,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CO2HI,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CO2HI,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CO2HI,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CO2HI,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CO2HI,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CO2HI,380.7,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CO2HI,393.3,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CO2HI,407.2,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CO2HI,422.3,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CO2HI,438.7,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CO2HI,456.8,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CO2HI,476.5,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CO2HI,497.8,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CO2HI,520.4,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CO2HI,544.7,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CO2HI,570.3,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CO2HI,597.2,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CO2HI,625.5,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CO2HI,655.1,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CO2HI,686,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CO2HI,718.2,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CO2HI,751.8,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CO2HI,786.8,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CO2HI,823.3,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CO2HI,860.6,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CO2LO,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CO2LO,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CO2LO,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CO2LO,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CO2LO,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CO2LO,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CO2LO,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CO2LO,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CO2LO,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CO2LO,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CO2LO,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CO2LO,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CO2LO,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CO2LO,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CO2LO,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CO2LO,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CO2LO,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CO2LO,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CO2LO,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CO2LO,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CO2LO,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CO2LO,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CO2LO,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CO2LO,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CO2LO,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CO2LO,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CO2LO,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CO2LO,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CO2LO,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CO2LO,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CO2LO,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CO2LO,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CO2LO,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CO2LO,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CO2LO,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CO2LO,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CO2LO,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CO2LO,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CO2LO,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CO2LO,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CO2LO,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CO2LO,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CO2LO,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CO2LO,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CO2LO,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CO2LO,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CO2LO,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CO2LO,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CO2LO,377.6,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CO2LO,386.7,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CO2LO,397,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CO2LO,408.4,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CO2LO,421,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CO2LO,435.1,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CO2LO,450.5,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CO2LO,467.2,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CO2LO,485,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CO2LO,503.9,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CO2LO,523.8,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CO2LO,544.8,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CO2LO,566.8,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CO2LO,589.8,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CO2LO,613.8,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CO2LO,638.8,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CO2LO,664.9,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CO2LO,692.1,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CO2LO,720.5,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CO2LO,749.5,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CO2MID,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CO2MID,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CO2MID,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CO2MID,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CO2MID,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CO2MID,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CO2MID,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CO2MID,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CO2MID,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CO2MID,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CO2MID,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CO2MID,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CO2MID,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CO2MID,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CO2MID,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CO2MID,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CO2MID,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CO2MID,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CO2MID,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CO2MID,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CO2MID,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CO2MID,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CO2MID,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CO2MID,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CO2MID,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CO2MID,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CO2MID,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CO2MID,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CO2MID,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CO2MID,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CO2MID,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CO2MID,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CO2MID,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CO2MID,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CO2MID,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CO2MID,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CO2MID,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CO2MID,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CO2MID,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CO2MID,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CO2MID,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CO2MID,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CO2MID,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CO2MID,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CO2MID,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CO2MID,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CO2MID,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CO2MID,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CO2MID,379.1,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CO2MID,389.9,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CO2MID,401.9,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CO2MID,415,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CO2MID,429.5,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CO2MID,445.5,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CO2MID,463.1,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CO2MID,482,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CO2MID,502.2,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CO2MID,523.7,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CO2MID,546.6,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CO2MID,570.6,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CO2MID,595.8,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CO2MID,622.2,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CO2MID,649.8,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CO2MID,678.6,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CO2MID,708.7,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CO2MID,740.1,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CO2MID,772.8,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CO2MID,806.3,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,CO2USER,278,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,CO2USER,278.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,CO2USER,278.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,CO2USER,278.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,CO2USER,279.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,CO2USER,279.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,CO2USER,280.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,CO2USER,280.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,CO2USER,281.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,CO2USER,282.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,CO2USER,282.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,CO2USER,283.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,CO2USER,283.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,CO2USER,284.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,CO2USER,284.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,CO2USER,285.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,CO2USER,286.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,CO2USER,286.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,CO2USER,287.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,CO2USER,288,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,CO2USER,288.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,CO2USER,289.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,CO2USER,290.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,CO2USER,291.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,CO2USER,292.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,CO2USER,293.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,CO2USER,294.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,CO2USER,296,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,CO2USER,297.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,CO2USER,298.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,CO2USER,300.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,CO2USER,301.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,CO2USER,303.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,CO2USER,304.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,CO2USER,306.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,CO2USER,307.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,CO2USER,309.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,CO2USER,311.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,CO2USER,313.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,CO2USER,316.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,CO2USER,320.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,CO2USER,325.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,CO2USER,331.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,CO2USER,338.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,CO2USER,345.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,CO2USER,353.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,CO2USER,361.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,CO2USER,369.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,CO2USER,379.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,CO2USER,389.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,CO2USER,401.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,CO2USER,415,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,CO2USER,429.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,CO2USER,445.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,CO2USER,463.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,CO2USER,482,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,CO2USER,502.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,CO2USER,523.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,CO2USER,546.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,CO2USER,570.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,CO2USER,595.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,CO2USER,622.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,CO2USER,649.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,CO2USER,678.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,CO2USER,708.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,CO2USER,740.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,CO2USER,772.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,CO2USER,806.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,4.5,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,4.5,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,4.5,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,4.5,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,4.5,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,4.5,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,4.5,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,4.5,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,4.5,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,4.5,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,4.5,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,4.5,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,4.5,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,4.5,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,4.5,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,4.5,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,4.5,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,4.5,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,4.5,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,4.5,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,4.5,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,4.5,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,4.5,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,4.5,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,4.5,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,4.5,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,4.5,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,4.5,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,4.5,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,4.5,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,4.5,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,4.5,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,4.5,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,4.5,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,4.5,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,4.5,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,4.5,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,4.5,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,4.5,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,4.5,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,4.5,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,4.5,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,4.5,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,4.5,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,4.5,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,4.5,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,4.5,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,4.5,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,4.5,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,4.5,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,4.5,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,4.5,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,4.5,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,4.5,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,4.5,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,4.5,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,4.5,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,4.5,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,4.5,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,4.5,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,4.5,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,4.5,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,4.5,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,4.5,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,4.5,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,4.5,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,4.5,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,4.5,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,4.5,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,4.5,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,4.5,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,4.5,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,4.5,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,4.5,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,4.5,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,4.5,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,4.5,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,4.5,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,4.5,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,4.5,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,4.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,4.5,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,CH4tot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,CH4tot,0.012,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,CH4tot,0.0237,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,CH4tot,0.0318,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,CH4tot,0.0454,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,CH4tot,0.0664,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,CH4tot,0.092,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,CH4tot,0.1194,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,CH4tot,0.1468,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,CH4tot,0.1741,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,CH4tot,0.1994,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2215,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2414,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2581,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2712,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2819,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2884,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,CH4tot,0.29,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2882,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2829,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2806,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,CH4tot,0.2788,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,CO2,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,CO2,0.114,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,CO2,0.2311,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,CO2,0.3717,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,CO2,0.5224,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,CO2,0.6847,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,CO2,0.8566,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,CO2,1.0397,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,CO2,1.2357,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,CO2,1.4424,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,CO2,1.6566,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,CO2,1.8761,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,CO2,2.101,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,CO2,2.3292,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,CO2,2.5591,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,CO2,2.7907,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,CO2,3.0229,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,CO2,3.255,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,CO2,3.4872,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,CO2,3.7192,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,CO2,3.9509,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,CO2,4.1824,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,CO2,4.4097,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,TOTAL,0.50931,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,TOTAL,0.72877,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,TOTAL,0.95956,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,TOTAL,1.19621,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,TOTAL,1.46385,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,TOTAL,1.74418,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,TOTAL,2.03675,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,TOTAL,2.33023,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,TOTAL,2.62465,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,TOTAL,2.92083,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,TOTAL,3.19622,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,TOTAL,3.4686,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,TOTAL,3.74022,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,TOTAL,4.00358,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,TOTAL,4.26045,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,TOTAL,4.51277,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,TOTAL,4.76555,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,TOTAL,5.01869,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,TOTAL,5.27113,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,TOTAL,5.51368,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,4.5,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,4.5,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,4.5,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,4.5,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,4.5,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,4.5,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,4.5,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,4.5,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,4.5,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,4.5,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,4.5,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,4.5,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,4.5,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,4.5,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,4.5,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,4.5,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,4.5,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,4.5,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,4.5,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,4.5,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,4.5,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,4.5,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,4.5,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,4.5,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,4.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,4.5,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,4.5,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,4.5,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,4.5,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,4.5,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,4.5,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,4.5,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,4.5,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,4.5,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,4.5,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,4.5,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,4.5,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,4.5,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,4.5,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,4.5,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,4.5,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,4.5,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,4.5,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,4.5,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,4.5,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,4.5,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,4.5,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,4.5,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,4.5,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,4.5,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,4.5,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,4.5,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,4.5,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,4.5,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,4.5,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,4.5,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,4.5,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,4.5,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,4.5,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,4.5,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,4.5,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,4.5,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,4.5,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,4.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,4.5,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,4.5,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,4.5,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,4.5,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,4.5,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,4.5,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,4.5,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,4.5,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,4.5,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,4.5,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,4.5,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,4.5,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,4.5,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,4.5,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,4.5,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,4.5,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,4.5,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,4.5,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,4.5,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,4.5,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,4.5,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,4.5,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,4.5,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,4.5,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,4.5,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,4.5,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,4.5,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,4.5,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,4.5,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,4.5,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,4.5,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,4.5,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,4.5,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,4.5,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,4.5,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,4.5,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,4.5,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,4.5,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,4.5,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,4.5,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,4.5,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,4.5,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,4.5,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,4.5,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,4.5,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,4.5,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,4.5,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,4.5,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,4.5,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,4.5,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,4.5,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,4.5,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,4.5,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,4.5,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,4.5,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,4.5,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,4.5,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,4.5,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,4.5,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,4.5,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,4.5,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,4.5,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,4.5,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.4,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.4,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.3,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.2,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.2,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6.1,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,4.5,MSLUSER,-6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.7,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5.1,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,4.5,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.6,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.2,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,4.5,MSLUSER,-4.1,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,4.5,MSLUSER,-3.9,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,4.5,MSLUSER,-3.7,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,4.5,MSLUSER,-3.5,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,4.5,MSLUSER,-3.1,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,4.5,MSLUSER,-2.6,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,4.5,MSLUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,4.5,MSLUSER,0.8,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,4.5,MSLUSER,1.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,4.5,MSLUSER,2.7,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,4.5,MSLUSER,3.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,4.5,MSLUSER,5.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,4.5,MSLUSER,6.6,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,4.5,MSLUSER,8.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,4.5,MSLUSER,9.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,4.5,MSLUSER,11.8,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,4.5,MSLUSER,13.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,4.5,MSLUSER,16.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,4.5,MSLUSER,18.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,4.5,MSLUSER,20.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,4.5,MSLUSER,23.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,4.5,MSLUSER,26.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,4.5,MSLUSER,29.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,4.5,MSLUSER,32,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,4.5,MSLUSER,35,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,4.5,MSLUSER,38.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,4.5,MSLUSER,41.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,4.5,MSLUSER,44.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,4.5,MSLUSER,47.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,4.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,4.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,4.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,4.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,4.5,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,4.5,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,4.5,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,4.5,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,4.5,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,4.5,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,4.5,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,4.5,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,4.5,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,4.5,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,4.5,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,4.5,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,4.5,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,4.5,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,4.5,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,4.5,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,4.5,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,4.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,4.5,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,4.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,4.5,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,4.5,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,4.5,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,4.5,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,4.5,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,4.5,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,4.5,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,4.5,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,4.5,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,4.5,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,4.5,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,4.5,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,4.5,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,4.5,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,4.5,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,4.5,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,4.5,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,4.5,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,4.5,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,4.5,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,4.5,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,4.5,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,4.5,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,4.5,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,4.5,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,4.5,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,4.5,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,4.5,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,4.5,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,4.5,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,4.5,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,4.5,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,4.5,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,4.5,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,4.5,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,4.5,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,4.5,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,4.5,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,4.5,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,4.5,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,4.5,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,4.5,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,4.5,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,4.5,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,4.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,4.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,4.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,4.5,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,4.5,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,4.5,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,4.5,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,4.5,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,4.5,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,4.5,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,4.5,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,4.5,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,4.5,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,4.5,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,4.5,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,4.5,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,4.5,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,4.5,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,4.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,4.5,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,4.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,4.5,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,4.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,4.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,4.5,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,4.5,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,4.5,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,4.5,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,4.5,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,4.5,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,4.5,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,4.5,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,4.5,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,4.5,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,4.5,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,4.5,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,4.5,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,4.5,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,4.5,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,4.5,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,4.5,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,4.5,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,4.5,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,4.5,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,4.5,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,4.5,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,4.5,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,4.5,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,4.5,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,4.5,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,4.5,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,4.5,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,4.5,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,4.5,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,4.5,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,4.5,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,4.5,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,4.5,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,4.5,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,4.5,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,4.5,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,4.5,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,4.5,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,4.5,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,4.5,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,4.5,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,4.5,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,4.5,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,4.5,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,4.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,4.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,4.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,4.5,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,4.5,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,4.5,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,4.5,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,4.5,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,4.5,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,4.5,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,4.5,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,4.5,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,4.5,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,4.5,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,4.5,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,4.5,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,4.5,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,4.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,4.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,4.5,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,4.5,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,4.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,4.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,4.5,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,4.5,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,4.5,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,4.5,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,4.5,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,4.5,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,4.5,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,4.5,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,4.5,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,4.5,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,4.5,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,4.5,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,4.5,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,4.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,4.5,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,4.5,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,4.5,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,4.5,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,4.5,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,4.5,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,4.5,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,4.5,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,4.5,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,4.5,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,4.5,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,4.5,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,4.5,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,4.5,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,4.5,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,4.5,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,4.5,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,4.5,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,4.5,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,4.5,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,4.5,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,4.5,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,4.5,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,4.5,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,4.5,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,4.5,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,4.5,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,4.5,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,4.5,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,4.5,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,4.5,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.515,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.516,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.517,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.517,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.516,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.514,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.511,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.507,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.502,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.496,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.489,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.483,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.477,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.47,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.464,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.456,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.447,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.437,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.427,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.417,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.418,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.421,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.424,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.426,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.426,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.424,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.422,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.418,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.414,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.407,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.399,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.391,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.381,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.372,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.364,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.352,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.339,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.319,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.312,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.322,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.328,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.317,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.268,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.189,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,4.5,TEMUSER,-0.103,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,4.5,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,4.5,TEMUSER,0.099,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,4.5,TEMUSER,0.205,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,4.5,TEMUSER,0.322,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,4.5,TEMUSER,0.455,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,4.5,TEMUSER,0.6,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,4.5,TEMUSER,0.754,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,4.5,TEMUSER,0.927,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,4.5,TEMUSER,1.112,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,4.5,TEMUSER,1.309,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,4.5,TEMUSER,1.513,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,4.5,TEMUSER,1.723,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,4.5,TEMUSER,1.938,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,4.5,TEMUSER,2.148,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,4.5,TEMUSER,2.358,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,4.5,TEMUSER,2.57,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,4.5,TEMUSER,2.78,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,4.5,TEMUSER,2.989,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,4.5,TEMUSER,3.197,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,4.5,TEMUSER,3.406,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,4.5,TEMUSER,3.617,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,4.5,TEMUSER,3.827,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,4.5,TEMUSER,4.036,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CH4HI,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CH4HI,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CH4HI,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CH4HI,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CH4HI,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CH4HI,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CH4HI,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CH4HI,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CH4HI,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CH4HI,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CH4HI,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CH4HI,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CH4HI,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CH4HI,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CH4HI,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CH4HI,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CH4HI,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CH4HI,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CH4HI,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CH4HI,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CH4HI,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CH4HI,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CH4HI,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CH4HI,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CH4HI,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CH4HI,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CH4HI,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CH4HI,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CH4HI,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CH4HI,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CH4HI,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CH4HI,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CH4HI,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CH4HI,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CH4HI,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CH4HI,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CH4HI,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CH4HI,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CH4HI,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CH4HI,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CH4HI,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CH4HI,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CH4HI,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CH4HI,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CH4HI,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CH4HI,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CH4HI,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CH4HI,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CH4HI,1785.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CH4HI,1822.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CH4HI,1879,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CH4HI,1950.1,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CH4HI,2028.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CH4HI,2109.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CH4HI,2192.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CH4HI,2270.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CH4HI,2338.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CH4HI,2399.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CH4HI,2450.3,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CH4HI,2489.6,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CH4HI,2520.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CH4HI,2538,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CH4HI,2538.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CH4HI,2527.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CH4HI,2512.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CH4HI,2498.9,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CH4HI,2486.6,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CH4HI,2476.7,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CH4LO,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CH4LO,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CH4LO,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CH4LO,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CH4LO,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CH4LO,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CH4LO,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CH4LO,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CH4LO,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CH4LO,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CH4LO,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CH4LO,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CH4LO,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CH4LO,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CH4LO,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CH4LO,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CH4LO,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CH4LO,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CH4LO,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CH4LO,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CH4LO,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CH4LO,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CH4LO,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CH4LO,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CH4LO,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CH4LO,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CH4LO,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CH4LO,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CH4LO,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CH4LO,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CH4LO,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CH4LO,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CH4LO,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CH4LO,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CH4LO,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CH4LO,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CH4LO,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CH4LO,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CH4LO,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CH4LO,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CH4LO,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CH4LO,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CH4LO,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CH4LO,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CH4LO,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CH4LO,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CH4LO,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CH4LO,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CH4LO,1784.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CH4LO,1817.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CH4LO,1869.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CH4LO,1933.2,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CH4LO,2002,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CH4LO,2071,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CH4LO,2140.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CH4LO,2206.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CH4LO,2266.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CH4LO,2322.2,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CH4LO,2370.7,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CH4LO,2410,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CH4LO,2443.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CH4LO,2465.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CH4LO,2475.2,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CH4LO,2475.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CH4LO,2473.5,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CH4LO,2471.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CH4LO,2469.8,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CH4LO,2468.5,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CH4MID,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CH4MID,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CH4MID,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CH4MID,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CH4MID,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CH4MID,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CH4MID,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CH4MID,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CH4MID,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CH4MID,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CH4MID,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CH4MID,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CH4MID,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CH4MID,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CH4MID,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CH4MID,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CH4MID,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CH4MID,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CH4MID,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CH4MID,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CH4MID,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CH4MID,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CH4MID,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CH4MID,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CH4MID,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CH4MID,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CH4MID,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CH4MID,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CH4MID,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CH4MID,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CH4MID,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CH4MID,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CH4MID,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CH4MID,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CH4MID,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CH4MID,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CH4MID,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CH4MID,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CH4MID,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CH4MID,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CH4MID,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CH4MID,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CH4MID,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CH4MID,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CH4MID,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CH4MID,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CH4MID,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CH4MID,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CH4MID,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CH4MID,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CH4MID,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CH4MID,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CH4MID,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CH4MID,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CH4MID,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CH4MID,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CH4MID,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CH4MID,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CH4MID,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CH4MID,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CH4MID,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CH4MID,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CH4MID,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CH4MID,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CH4MID,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CH4MID,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CH4MID,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CH4MID,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CH4USER,702.6,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CH4USER,704.6,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CH4USER,707.1,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CH4USER,710.2,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CH4USER,713.8,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CH4USER,718,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CH4USER,722.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CH4USER,728,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CH4USER,733.8,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CH4USER,740.1,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CH4USER,747,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CH4USER,754.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CH4USER,762.5,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CH4USER,771.1,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CH4USER,780.2,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CH4USER,789.8,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CH4USER,800,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CH4USER,810.7,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CH4USER,822,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CH4USER,833.9,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CH4USER,846.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CH4USER,859.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CH4USER,872.7,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CH4USER,886.7,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CH4USER,901.3,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CH4USER,916.4,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CH4USER,932.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CH4USER,948.4,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CH4USER,965.1,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CH4USER,982.5,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CH4USER,1000.3,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CH4USER,1018.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CH4USER,1037.7,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CH4USER,1057.2,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CH4USER,1077.3,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CH4USER,1097.9,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CH4USER,1124.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CH4USER,1163,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CH4USER,1213.6,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CH4USER,1275.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CH4USER,1347.2,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CH4USER,1428.6,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CH4USER,1503.4,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CH4USER,1578.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CH4USER,1648.8,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CH4USER,1704.8,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CH4USER,1734.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CH4USER,1764.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CH4USER,1784.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CH4USER,1819.8,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CH4USER,1874.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CH4USER,1941.8,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CH4USER,2015.4,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CH4USER,2090.4,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CH4USER,2166.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CH4USER,2238.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CH4USER,2302.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CH4USER,2360.4,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CH4USER,2409.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CH4USER,2449,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CH4USER,2481,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CH4USER,2500.8,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CH4USER,2505.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CH4USER,2500.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CH4USER,2491.6,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CH4USER,2484,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CH4USER,2477.2,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CH4USER,2471.8,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CO2HI,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CO2HI,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CO2HI,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CO2HI,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CO2HI,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CO2HI,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CO2HI,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CO2HI,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CO2HI,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CO2HI,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CO2HI,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CO2HI,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CO2HI,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CO2HI,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CO2HI,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CO2HI,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CO2HI,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CO2HI,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CO2HI,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CO2HI,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CO2HI,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CO2HI,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CO2HI,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CO2HI,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CO2HI,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CO2HI,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CO2HI,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CO2HI,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CO2HI,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CO2HI,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CO2HI,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CO2HI,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CO2HI,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CO2HI,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CO2HI,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CO2HI,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CO2HI,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CO2HI,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CO2HI,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CO2HI,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CO2HI,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CO2HI,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CO2HI,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CO2HI,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CO2HI,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CO2HI,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CO2HI,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CO2HI,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CO2HI,380.8,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CO2HI,393.5,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CO2HI,407.6,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CO2HI,422.9,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CO2HI,439.6,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CO2HI,458,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CO2HI,478.1,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CO2HI,499.9,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CO2HI,523.2,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CO2HI,548.1,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CO2HI,574.5,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CO2HI,602.3,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CO2HI,631.7,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CO2HI,662.5,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CO2HI,694.7,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CO2HI,728.4,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CO2HI,763.6,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CO2HI,800.4,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CO2HI,838.8,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CO2HI,878.2,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CO2LO,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CO2LO,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CO2LO,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CO2LO,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CO2LO,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CO2LO,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CO2LO,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CO2LO,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CO2LO,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CO2LO,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CO2LO,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CO2LO,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CO2LO,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CO2LO,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CO2LO,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CO2LO,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CO2LO,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CO2LO,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CO2LO,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CO2LO,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CO2LO,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CO2LO,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CO2LO,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CO2LO,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CO2LO,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CO2LO,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CO2LO,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CO2LO,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CO2LO,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CO2LO,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CO2LO,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CO2LO,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CO2LO,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CO2LO,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CO2LO,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CO2LO,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CO2LO,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CO2LO,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CO2LO,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CO2LO,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CO2LO,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CO2LO,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CO2LO,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CO2LO,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CO2LO,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CO2LO,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CO2LO,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CO2LO,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CO2LO,377.6,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CO2LO,386.9,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CO2LO,397.3,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CO2LO,408.9,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CO2LO,421.8,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CO2LO,436.2,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CO2LO,452,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CO2LO,469.2,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CO2LO,487.4,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CO2LO,507,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CO2LO,527.7,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CO2LO,549.5,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CO2LO,572.5,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CO2LO,596.6,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CO2LO,621.8,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CO2LO,648.2,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CO2LO,675.8,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CO2LO,704.7,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CO2LO,734.9,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CO2LO,766,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CO2MID,278,,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CO2MID,278.1,,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CO2MID,278.4,,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CO2MID,278.7,,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CO2MID,279.1,,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CO2MID,279.6,,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CO2MID,280.2,,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CO2MID,280.8,,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CO2MID,281.6,,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CO2MID,282.3,,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CO2MID,282.9,,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CO2MID,283.5,,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CO2MID,283.9,,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CO2MID,284.4,,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CO2MID,284.9,,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CO2MID,285.5,,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CO2MID,286.2,,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CO2MID,286.9,,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CO2MID,287.5,,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CO2MID,288,,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CO2MID,288.6,,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CO2MID,289.3,,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CO2MID,290.1,,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CO2MID,291.1,,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CO2MID,292.3,,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CO2MID,293.6,,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CO2MID,294.8,,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CO2MID,296,,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CO2MID,297.3,,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CO2MID,298.8,,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CO2MID,300.4,,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CO2MID,301.9,,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CO2MID,303.5,,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CO2MID,304.9,,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CO2MID,306.3,,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CO2MID,307.7,,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CO2MID,309.2,,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CO2MID,311.2,,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CO2MID,313.6,,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CO2MID,316.6,,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CO2MID,320.3,,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CO2MID,325.2,,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CO2MID,331.2,,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CO2MID,338.2,,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CO2MID,345.8,,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CO2MID,353.6,,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CO2MID,361.2,,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CO2MID,369.2,,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CO2MID,379.2,,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CO2MID,390.1,,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CO2MID,402.3,,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CO2MID,415.6,,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CO2MID,430.3,,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CO2MID,446.7,,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CO2MID,464.6,,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CO2MID,484,,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CO2MID,504.8,,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CO2MID,527,,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CO2MID,550.6,,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CO2MID,575.5,,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CO2MID,601.8,,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CO2MID,629.4,,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CO2MID,658.3,,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CO2MID,688.5,,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CO2MID,720.2,,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CO2MID,753.3,,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CO2MID,788,,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CO2MID,823.6,,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,CO2USER,278,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,CO2USER,278.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,CO2USER,278.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,CO2USER,278.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,CO2USER,279.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,CO2USER,279.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,CO2USER,280.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,CO2USER,280.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,CO2USER,281.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,CO2USER,282.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,CO2USER,282.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,CO2USER,283.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,CO2USER,283.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,CO2USER,284.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,CO2USER,284.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,CO2USER,285.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,CO2USER,286.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,CO2USER,286.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,CO2USER,287.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,CO2USER,288,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,CO2USER,288.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,CO2USER,289.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,CO2USER,290.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,CO2USER,291.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,CO2USER,292.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,CO2USER,293.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,CO2USER,294.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,CO2USER,296,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,CO2USER,297.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,CO2USER,298.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,CO2USER,300.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,CO2USER,301.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,CO2USER,303.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,CO2USER,304.9,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,CO2USER,306.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,CO2USER,307.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,CO2USER,309.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,CO2USER,311.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,CO2USER,313.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,CO2USER,316.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,CO2USER,320.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,CO2USER,325.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,CO2USER,331.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,CO2USER,338.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,CO2USER,345.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,CO2USER,353.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,CO2USER,361.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,CO2USER,369.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,CO2USER,379.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,CO2USER,390.1,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,CO2USER,402.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,CO2USER,415.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,CO2USER,430.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,CO2USER,446.7,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,CO2USER,464.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,CO2USER,484,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,CO2USER,504.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,CO2USER,527,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,CO2USER,550.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,CO2USER,575.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,CO2USER,601.8,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,CO2USER,629.4,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,CO2USER,658.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,CO2USER,688.5,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,CO2USER,720.2,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,CO2USER,753.3,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,CO2USER,788,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,CO2USER,823.6,simple3box.atmos_CO2,ppm,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,MIDTAUCH4,NA,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.6,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.66,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.75,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,MIDTAUCH4,9.89,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.04,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.21,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.38,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.55,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.66,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.75,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.84,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.91,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.95,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.99,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.94,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.87,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.78,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.73,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.69,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.64,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,MIDTAUCH4,10.63,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,concs.dis,6,N2O,270.1,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,concs.dis,6,N2O,270.2,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,concs.dis,6,N2O,270.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,concs.dis,6,N2O,270.5,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,concs.dis,6,N2O,270.6,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,concs.dis,6,N2O,270.8,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,concs.dis,6,N2O,271,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,concs.dis,6,N2O,271.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,concs.dis,6,N2O,271.5,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,concs.dis,6,N2O,271.8,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,concs.dis,6,N2O,272.1,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,concs.dis,6,N2O,272.5,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,concs.dis,6,N2O,272.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,concs.dis,6,N2O,273.2,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,concs.dis,6,N2O,273.6,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,concs.dis,6,N2O,274.1,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,concs.dis,6,N2O,274.5,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,concs.dis,6,N2O,275,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,concs.dis,6,N2O,275.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,concs.dis,6,N2O,276,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,concs.dis,6,N2O,276.6,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,concs.dis,6,N2O,277.2,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,concs.dis,6,N2O,277.8,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,concs.dis,6,N2O,278.4,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,concs.dis,6,N2O,279.1,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,concs.dis,6,N2O,279.8,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,concs.dis,6,N2O,280.5,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,concs.dis,6,N2O,281.2,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,concs.dis,6,N2O,282,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,concs.dis,6,N2O,282.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,concs.dis,6,N2O,283.6,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,concs.dis,6,N2O,284.4,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,concs.dis,6,N2O,285.2,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,concs.dis,6,N2O,286.1,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,concs.dis,6,N2O,287,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,concs.dis,6,N2O,288,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,concs.dis,6,N2O,288.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,concs.dis,6,N2O,289.9,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,concs.dis,6,N2O,290.8,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,concs.dis,6,N2O,291.7,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,concs.dis,6,N2O,293,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,concs.dis,6,N2O,295.3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,concs.dis,6,N2O,298.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,concs.dis,6,N2O,301.3,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,concs.dis,6,N2O,304.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,concs.dis,6,N2O,308.4,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,concs.dis,6,N2O,312.3,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,concs.dis,6,N2O,316.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,concs.dis,6,N2O,320.6,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,concs.dis,6,N2O,324.9,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,concs.dis,6,N2O,329.5,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,concs.dis,6,N2O,334.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,concs.dis,6,N2O,339.5,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,concs.dis,6,N2O,344.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,concs.dis,6,N2O,350,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,concs.dis,6,N2O,355.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,concs.dis,6,N2O,360.6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,concs.dis,6,N2O,365.9,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,concs.dis,6,N2O,371.2,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,concs.dis,6,N2O,376.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,concs.dis,6,N2O,381.2,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,concs.dis,6,N2O,386,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,concs.dis,6,N2O,390.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,concs.dis,6,N2O,394.9,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,concs.dis,6,N2O,398.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,concs.dis,6,N2O,402.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,concs.dis,6,N2O,406.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,concs.dis,6,N2O,409.9,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,CH4,571.13,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,CH4,580.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,CH4,589.43,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,CH4,598.63,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,CH4,618,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,CH4,637.36,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,CH4,656.73,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,CH4,671.76,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,CH4,686.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,CH4,701.83,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,CH4,711.96,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,CH4,722.1,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,CH4,732.23,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,CH4,736.26,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,CH4,740.3,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,CH4,744.33,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,CH4,743.13,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,CH4,741.93,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,CH4,740.73,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,CH4,741.86,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,CH4,743,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,CH4,744.13,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,CH4,744.13,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,FOSSCO2,6.1,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,FOSSCO2,6.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,FOSSCO2,7.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,FOSSCO2,7.9,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,FOSSCO2,8.73,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,FOSSCO2,9.57,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,FOSSCO2,10.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,FOSSCO2,11.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,FOSSCO2,12.33,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,FOSSCO2,13.3,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,FOSSCO2,14.1,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,FOSSCO2,14.9,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,FOSSCO2,15.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,FOSSCO2,16.4,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,FOSSCO2,17.1,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,FOSSCO2,17.8,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,FOSSCO2,18.47,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,FOSSCO2,19.13,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,FOSSCO2,19.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,FOSSCO2,20.33,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,FOSSCO2,20.87,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,FOSSCO2,21.4,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,N2O,16.03,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,N2O,16.28,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,N2O,16.53,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,N2O,16.83,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,N2O,17.26,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,N2O,17.7,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,N2O,18.13,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,N2O,18.46,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,N2O,18.8,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,N2O,19.13,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,N2O,19.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,N2O,19.53,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,N2O,19.73,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,N2O,19.83,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,N2O,19.93,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,N2O,20.03,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,N2O,20,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,N2O,19.96,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,N2O,19.93,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,N2O,19.9,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,N2O,19.86,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,N2O,19.83,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,N2O,19.83,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,NETDEFOR,1.21,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,NETDEFOR,1.25,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,NETDEFOR,1.3,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,NETDEFOR,1.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,NETDEFOR,0.97,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,NETDEFOR,0.83,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,NETDEFOR,0.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,NETDEFOR,0.67,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,NETDEFOR,0.63,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,NETDEFOR,0.6,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,NETDEFOR,0.5,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,NETDEFOR,0.4,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,NETDEFOR,0.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,SO2.GL,70.88,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,SO2.GL,71.43,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,SO2.GL,71.98,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,SO2.GL,72.58,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,SO2.GL,71.45,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,SO2.GL,70.31,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,SO2.GL,69.18,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,SO2.GL,65.95,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,SO2.GL,62.71,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,SO2.GL,59.48,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,SO2.GL,55.58,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,SO2.GL,51.68,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,SO2.GL,47.78,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,SO2.GL,46.21,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,SO2.GL,44.65,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,SO2.GL,43.08,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,SO2.GL,41.68,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,SO2.GL,40.28,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,SO2.GL,38.88,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,SO2.GL,38.01,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,SO2.GL,37.15,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,SO2.GL,36.28,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,SO2.REG1,34.97,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,SO2.REG1,31.42,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,SO2.REG1,27.87,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,SO2.REG1,24.37,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,SO2.REG1,22.07,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,SO2.REG1,19.77,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,SO2.REG1,17.47,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,SO2.REG1,16.37,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,SO2.REG1,15.27,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,SO2.REG1,14.17,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,SO2.REG1,13.33,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,SO2.REG1,12.5,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,SO2.REG1,11.67,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,SO2.REG1,11.43,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,SO2.REG1,11.2,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,SO2.REG1,10.97,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,SO2.REG1,10.83,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,SO2.REG1,10.7,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,SO2.REG1,10.57,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,SO2.REG1,10.53,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,SO2.REG1,10.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,SO2.REG1,10.47,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,SO2.REG2,26.46,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,SO2.REG2,29.46,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,SO2.REG2,32.46,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,SO2.REG2,35.46,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,SO2.REG2,36.43,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,SO2.REG2,37.4,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,SO2.REG2,38.36,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,SO2.REG2,36,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,SO2.REG2,33.63,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,SO2.REG2,31.26,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,SO2.REG2,28.5,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,SO2.REG2,25.73,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,SO2.REG2,22.96,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,SO2.REG2,21.56,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,SO2.REG2,20.16,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,SO2.REG2,18.76,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,SO2.REG2,17.93,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,SO2.REG2,17.1,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,SO2.REG2,16.26,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,SO2.REG2,16.1,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,SO2.REG2,15.93,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,SO2.REG2,15.76,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,emiss.dis,6,SO2.REG3,9.45,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,emiss.dis,6,SO2.REG3,10.55,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,emiss.dis,6,SO2.REG3,11.65,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,emiss.dis,6,SO2.REG3,12.75,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,emiss.dis,6,SO2.REG3,12.95,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,emiss.dis,6,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,emiss.dis,6,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,emiss.dis,6,SO2.REG3,13.58,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,emiss.dis,6,SO2.REG3,13.82,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,emiss.dis,6,SO2.REG3,14.05,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,emiss.dis,6,SO2.REG3,13.75,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,emiss.dis,6,SO2.REG3,13.45,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,emiss.dis,6,SO2.REG3,13.15,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,emiss.dis,6,SO2.REG3,13.22,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,emiss.dis,6,SO2.REG3,13.28,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,emiss.dis,6,SO2.REG3,13.35,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,emiss.dis,6,SO2.REG3,12.92,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,emiss.dis,6,SO2.REG3,12.48,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,emiss.dis,6,SO2.REG3,12.05,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,emiss.dis,6,SO2.REG3,11.38,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,emiss.dis,6,SO2.REG3,10.72,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,emiss.dis,6,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,emiss.dis,6,SO2.REG3,10.05,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,BIOAER,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,BIOAER,7.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,BIOAER,0.0015,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,BIOAER,2.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,BIOAER,-0.001,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,BIOAER,-0.0021,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,BIOAER,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,BIOAER,-0.0034,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,BIOAER,-0.0037,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,BIOAER,-0.004,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,BIOAER,-0.0044,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,BIOAER,-0.0053,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,BIOAER,-0.0064,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,BIOAER,-0.0075,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,BIOAER,-0.0078,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,BIOAER,-0.008,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,BIOAER,-0.0082,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,BIOAER,-0.0083,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,CH4.O3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,CH4.O3,0.003,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,CH4.O3,0.0061,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,CH4.O3,0.0085,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,CH4.O3,0.0126,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,CH4.O3,0.0188,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,CH4.O3,0.0262,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,CH4.O3,0.034,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,CH4.O3,0.0417,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,CH4.O3,0.0492,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,CH4.O3,0.0561,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,CH4.O3,0.0619,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,CH4.O3,0.0672,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,CH4.O3,0.0716,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,CH4.O3,0.0749,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,CH4.O3,0.0777,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,CH4.O3,0.0797,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,CH4.O3,0.0793,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,CH4.O3,0.0786,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,CH4.O3,0.0779,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,CH4.O3,0.0773,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,CH4.O3,0.0769,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,CH4tot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,CH4tot,0.012,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,CH4tot,0.0237,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,CH4tot,0.0318,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,CH4tot,0.0454,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,CH4tot,0.0664,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,CH4tot,0.092,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,CH4tot,0.1194,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,CH4tot,0.1468,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,CH4tot,0.1741,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,CH4tot,0.1994,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,CH4tot,0.2215,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,CH4tot,0.2414,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,CH4tot,0.2581,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,CH4tot,0.2712,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,CH4tot,0.2819,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,CH4tot,0.2884,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,CH4tot,0.29,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,CH4tot,0.2882,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,CH4tot,0.2854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,CH4tot,0.2829,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,CH4tot,0.2806,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,CH4tot,0.2788,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,CO2,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,CO2,0.114,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,CO2,0.2311,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,CO2,0.3728,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,CO2,0.5251,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,CO2,0.6895,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,CO2,0.864,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,CO2,1.0502,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,CO2,1.2497,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,CO2,1.4605,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,CO2,1.6792,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,CO2,1.9039,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,CO2,2.1345,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,CO2,2.3689,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,CO2,2.6055,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,CO2,2.8442,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,CO2,3.084,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,CO2,3.3241,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,CO2,3.5645,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,CO2,3.8051,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,CO2,4.0458,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,CO2,4.2865,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,CO2,4.5233,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,FOC.FBC,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,FOC.FBC,0.0019,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,FOC.FBC,0.0038,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,FOC.FBC,0.0056,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,FOC.FBC,0.002,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0019,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0062,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0169,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0281,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0393,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0526,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.066,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0791,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0849,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0903,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.0956,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1005,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1053,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.11,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1131,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1161,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1189,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,FOC.FBC,-0.1191,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,HALOtot,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,HALOtot,9.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,HALOtot,0.0221,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,HALOtot,0.054,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,HALOtot,0.0833,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,HALOtot,0.1017,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,HALOtot,0.1087,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,HALOtot,0.1132,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,HALOtot,0.1155,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,HALOtot,0.1182,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,HALOtot,0.122,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,HALOtot,0.1255,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,HALOtot,0.1284,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,HALOtot,0.1321,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,HALOtot,0.1373,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,HALOtot,0.1434,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,HALOtot,0.1506,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,HALOtot,0.1586,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,HALOtot,0.1671,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,HALOtot,0.176,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,HALOtot,0.1851,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,HALOtot,0.1944,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,HALOtot,0.2024,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,MONTDIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,MONTDIR,0.0373,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,MONTDIR,0.0572,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,MONTDIR,0.0733,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,MONTDIR,0.0675,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,MONTDIR,0.0463,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,MONTDIR,0.0199,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,MONTDIR,-0.0045,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,MONTDIR,-0.0262,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,MONTDIR,-0.0448,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,MONTDIR,-0.062,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,MONTDIR,-0.079,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,MONTDIR,-0.0944,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1196,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,MONTDIR,-0.13,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1395,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1481,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,MONTDIR,-0.156,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1632,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,MONTDIR,-0.17,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,MONTDIR,-0.1763,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,N2O,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,N2O,0.0127,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,N2O,0.0257,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,N2O,0.0389,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,N2O,0.0526,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,N2O,0.0671,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,N2O,0.0822,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,N2O,0.0978,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,N2O,0.1137,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,N2O,0.1298,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,N2O,0.1459,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,N2O,0.1618,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,N2O,0.1775,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,N2O,0.1929,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,N2O,0.2078,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,N2O,0.2222,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,N2O,0.236,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,N2O,0.2491,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,N2O,0.2613,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,N2O,0.2729,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,N2O,0.2838,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,N2O,0.2941,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,N2O,0.3038,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,QAERMN,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,QAERMN,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,QKYOTO,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,QKYOTO,0.0054,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,QKYOTO,0.0117,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,QKYOTO,0.0202,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,QKYOTO,0.0301,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,QKYOTO,0.0407,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,QKYOTO,0.0514,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,QKYOTO,0.0617,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,QKYOTO,0.0713,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,QKYOTO,0.0806,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,QKYOTO,0.0899,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,QKYOTO,0.0991,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,QKYOTO,0.1082,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,QKYOTO,0.1176,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,QKYOTO,0.1275,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,QKYOTO,0.1376,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,QKYOTO,0.1482,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,QKYOTO,0.1592,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,QKYOTO,0.1706,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,QKYOTO,0.1821,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,QKYOTO,0.1937,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,QKYOTO,0.2053,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,QKYOTO,0.2156,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,QLAND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,QLAND,-4.00E-04,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,SO4DIR,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,SO4DIR,-0.0032,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,SO4DIR,-0.0063,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,SO4DIR,-0.0092,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,SO4DIR,-0.0033,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,SO4DIR,0.0031,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,SO4DIR,0.0101,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,SO4DIR,0.0278,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,SO4DIR,0.046,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,SO4DIR,0.0644,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,SO4DIR,0.0863,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,SO4DIR,0.1083,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,SO4DIR,0.1296,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,SO4DIR,0.1391,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,SO4DIR,0.148,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,SO4DIR,0.1568,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,SO4DIR,0.1647,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,SO4DIR,0.1726,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,SO4DIR,0.1804,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,SO4DIR,0.1854,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,SO4DIR,0.1903,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,SO4DIR,0.1949,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,SO4DIR,0.1952,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,SO4IND,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,SO4IND,-0.0035,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,SO4IND,-0.007,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,SO4IND,-0.0101,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,SO4IND,-0.0036,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,SO4IND,0.0035,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,SO4IND,0.0113,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,SO4IND,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,SO4IND,0.0531,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,SO4IND,0.0755,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,SO4IND,0.103,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,SO4IND,0.1319,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,SO4IND,0.1611,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,SO4IND,0.1745,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,SO4IND,0.1872,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,SO4IND,0.2,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,SO4IND,0.2118,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,SO4IND,0.2238,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,SO4IND,0.2357,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,SO4IND,0.2436,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,SO4IND,0.2513,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,SO4IND,0.2587,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,SO4IND,0.2591,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,STRATO3,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,STRATO3,-0.0418,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,STRATO3,-0.0468,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,STRATO3,-0.0337,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,STRATO3,-0.0201,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,STRATO3,-0.0065,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,STRATO3,0.0111,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,STRATO3,0.0316,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,STRATO3,0.0487,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,STRATO3,0.0638,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,STRATO3,0.0769,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,STRATO3,0.0885,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,STRATO3,0.0991,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,STRATO3,0.1089,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,STRATO3,0.1176,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,STRATO3,0.1254,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,STRATO3,0.1324,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,STRATO3,0.1388,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,STRATO3,0.1446,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,STRATO3,0.1498,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,STRATO3,0.1547,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,STRATO3,0.1591,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,STRATO3,0.1631,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,TOTAL,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,TOTAL,0.14472,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,TOTAL,0.31475,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,TOTAL,0.51038,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,TOTAL,0.7315,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,TOTAL,0.96442,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,TOTAL,1.20364,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,TOTAL,1.47433,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,TOTAL,1.75818,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,TOTAL,2.05478,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,TOTAL,2.35282,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,TOTAL,2.65241,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,TOTAL,2.95429,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,TOTAL,3.2359,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,TOTAL,3.51498,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,TOTAL,3.79373,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,TOTAL,4.06466,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,TOTAL,4.32948,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,TOTAL,4.59012,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,TOTAL,4.85153,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,TOTAL,5.11359,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,TOTAL,5.37523,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,TOTAL,5.62726,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,TROPOZ,0,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,TROPOZ,0.0101,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,TROPOZ,0.021,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,TROPOZ,0.0274,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,TROPOZ,0.0318,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,TROPOZ,0.038,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,TROPOZ,0.0455,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,TROPOZ,0.0556,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,TROPOZ,0.0658,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,TROPOZ,0.0758,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,TROPOZ,0.0739,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,TROPOZ,0.0698,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,TROPOZ,0.0651,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,TROPOZ,0.0596,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,TROPOZ,0.0532,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,TROPOZ,0.0461,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,TROPOZ,0.0357,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,TROPOZ,0.0239,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,TROPOZ,0.0112,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,TROPOZ,0.0049,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,TROPOZ,-6.00E-04,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,TROPOZ,-0.006,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,TROPOZ,-0.007,,W/m2,EPA_Baseline,,,Simulated 1990,EPA_Baseline,forcings.dis,6,YEAR.1,1990,,W/m2,EPA_Baseline,,,Simulated 1995,EPA_Baseline,forcings.dis,6,YEAR.1,1995,,W/m2,EPA_Baseline,,,Simulated 2000,EPA_Baseline,forcings.dis,6,YEAR.1,2000,,W/m2,EPA_Baseline,,,Simulated 2005,EPA_Baseline,forcings.dis,6,YEAR.1,2005,,W/m2,EPA_Baseline,,,Simulated 2010,EPA_Baseline,forcings.dis,6,YEAR.1,2010,,W/m2,EPA_Baseline,,,Simulated 2015,EPA_Baseline,forcings.dis,6,YEAR.1,2015,,W/m2,EPA_Baseline,,,Simulated 2020,EPA_Baseline,forcings.dis,6,YEAR.1,2020,,W/m2,EPA_Baseline,,,Simulated 2025,EPA_Baseline,forcings.dis,6,YEAR.1,2025,,W/m2,EPA_Baseline,,,Simulated 2030,EPA_Baseline,forcings.dis,6,YEAR.1,2030,,W/m2,EPA_Baseline,,,Simulated 2035,EPA_Baseline,forcings.dis,6,YEAR.1,2035,,W/m2,EPA_Baseline,,,Simulated 2040,EPA_Baseline,forcings.dis,6,YEAR.1,2040,,W/m2,EPA_Baseline,,,Simulated 2045,EPA_Baseline,forcings.dis,6,YEAR.1,2045,,W/m2,EPA_Baseline,,,Simulated 2050,EPA_Baseline,forcings.dis,6,YEAR.1,2050,,W/m2,EPA_Baseline,,,Simulated 2055,EPA_Baseline,forcings.dis,6,YEAR.1,2055,,W/m2,EPA_Baseline,,,Simulated 2060,EPA_Baseline,forcings.dis,6,YEAR.1,2060,,W/m2,EPA_Baseline,,,Simulated 2065,EPA_Baseline,forcings.dis,6,YEAR.1,2065,,W/m2,EPA_Baseline,,,Simulated 2070,EPA_Baseline,forcings.dis,6,YEAR.1,2070,,W/m2,EPA_Baseline,,,Simulated 2075,EPA_Baseline,forcings.dis,6,YEAR.1,2075,,W/m2,EPA_Baseline,,,Simulated 2080,EPA_Baseline,forcings.dis,6,YEAR.1,2080,,W/m2,EPA_Baseline,,,Simulated 2085,EPA_Baseline,forcings.dis,6,YEAR.1,2085,,W/m2,EPA_Baseline,,,Simulated 2090,EPA_Baseline,forcings.dis,6,YEAR.1,2090,,W/m2,EPA_Baseline,,,Simulated 2095,EPA_Baseline,forcings.dis,6,YEAR.1,2095,,W/m2,EPA_Baseline,,,Simulated 2100,EPA_Baseline,forcings.dis,6,YEAR.1,2100,,W/m2,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,6,MSLHI,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,6,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,6,MSLHI,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,6,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,6,MSLHI,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,6,MSLHI,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,6,MSLHI,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,6,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,6,MSLHI,-6.9,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,6,MSLHI,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,6,MSLHI,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,6,MSLHI,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,6,MSLHI,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,6,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,6,MSLHI,-6.4,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,6,MSLHI,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,6,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,6,MSLHI,-6.2,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,6,MSLHI,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,6,MSLHI,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,6,MSLHI,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,6,MSLHI,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,6,MSLHI,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,6,MSLHI,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,6,MSLHI,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,6,MSLHI,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,6,MSLHI,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,6,MSLHI,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,6,MSLHI,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,6,MSLHI,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,6,MSLHI,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,6,MSLHI,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,6,MSLHI,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,6,MSLHI,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,6,MSLHI,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,6,MSLHI,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,6,MSLHI,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,6,MSLHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,6,MSLHI,1.1,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,6,MSLHI,2.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,6,MSLHI,3.8,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,6,MSLHI,5.4,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,6,MSLHI,7.2,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,6,MSLHI,9.3,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,6,MSLHI,11.6,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,6,MSLHI,14.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,6,MSLHI,16.9,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,6,MSLHI,19.9,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,6,MSLHI,23.2,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,6,MSLHI,26.7,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,6,MSLHI,30.5,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,6,MSLHI,34.5,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,6,MSLHI,38.7,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,6,MSLHI,43,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,6,MSLHI,47.6,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,6,MSLHI,52.3,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,6,MSLHI,57.2,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,6,MSLHI,62.3,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,6,MSLHI,67.5,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,6,MSLHI,72.9,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,6,MSLLO,-4.7,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,6,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,6,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,6,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,6,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,6,MSLLO,-4.6,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,6,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,6,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,6,MSLLO,-4.5,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,6,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,6,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,6,MSLLO,-4.4,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,6,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,6,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,6,MSLLO,-4.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,6,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,6,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,6,MSLLO,-4.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,6,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,6,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,6,MSLLO,-4.1,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,6,MSLLO,-4,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,6,MSLLO,-4,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,6,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,6,MSLLO,-3.9,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,6,MSLLO,-3.8,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,6,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,6,MSLLO,-3.7,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,6,MSLLO,-3.6,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,6,MSLLO,-3.5,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,6,MSLLO,-3.4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,6,MSLLO,-3.3,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,6,MSLLO,-3.2,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,6,MSLLO,-3.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,6,MSLLO,-3,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,6,MSLLO,-2.8,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,6,MSLLO,-2.6,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,6,MSLLO,-2.3,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,6,MSLLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,6,MSLLO,0.4,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,6,MSLLO,0.7,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,6,MSLLO,1.2,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,6,MSLLO,1.6,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,6,MSLLO,2.1,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,6,MSLLO,2.7,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,6,MSLLO,3.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,6,MSLLO,3.9,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,6,MSLLO,4.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,6,MSLLO,5.3,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,6,MSLLO,6,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,6,MSLLO,6.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,6,MSLLO,7.6,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,6,MSLLO,8.4,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,6,MSLLO,9.3,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,6,MSLLO,10.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,6,MSLLO,11,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,6,MSLLO,11.8,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,6,MSLLO,12.7,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,6,MSLLO,13.5,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,6,MSLLO,14.4,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,6,MSLLO,15.3,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,6,MSLMID,-5.9,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,6,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,6,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,6,MSLMID,-5.8,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,6,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,6,MSLMID,-5.7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,6,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,6,MSLMID,-5.6,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,6,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,6,MSLMID,-5.5,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,6,MSLMID,-5.4,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,6,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,6,MSLMID,-5.3,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,6,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,6,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,6,MSLMID,-5.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,6,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,6,MSLMID,-5.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,6,MSLMID,-5,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,6,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,6,MSLMID,-4.9,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,6,MSLMID,-4.8,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,6,MSLMID,-4.7,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,6,MSLMID,-4.6,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,6,MSLMID,-4.5,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,6,MSLMID,-4.4,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,6,MSLMID,-4.3,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,6,MSLMID,-4.2,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,6,MSLMID,-4,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,6,MSLMID,-3.9,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,6,MSLMID,-3.8,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,6,MSLMID,-3.6,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,6,MSLMID,-3.5,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,6,MSLMID,-3.2,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,6,MSLMID,-2.9,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,6,MSLMID,-2.5,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,6,MSLMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,6,MSLMID,0.7,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,6,MSLMID,1.4,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,6,MSLMID,2.3,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,6,MSLMID,3.2,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,6,MSLMID,4.3,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,6,MSLMID,5.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,6,MSLMID,6.7,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,6,MSLMID,8.1,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,6,MSLMID,9.6,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,6,MSLMID,11.2,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,6,MSLMID,13,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,6,MSLMID,14.8,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,6,MSLMID,16.8,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,6,MSLMID,18.8,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,6,MSLMID,20.9,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,6,MSLMID,23.1,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,6,MSLMID,25.3,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,6,MSLMID,27.6,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,6,MSLMID,30,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,6,MSLMID,32.4,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,6,MSLMID,34.9,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,6,MSLMID,37.4,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,sealev.dis,6,MSLUSER,-7.3,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,sealev.dis,6,MSLUSER,-7.2,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,sealev.dis,6,MSLUSER,-7.2,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,sealev.dis,6,MSLUSER,-7.1,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,sealev.dis,6,MSLUSER,-7.1,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,sealev.dis,6,MSLUSER,-7,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,sealev.dis,6,MSLUSER,-7,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,sealev.dis,6,MSLUSER,-6.9,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,sealev.dis,6,MSLUSER,-6.8,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,sealev.dis,6,MSLUSER,-6.8,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,sealev.dis,6,MSLUSER,-6.7,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,sealev.dis,6,MSLUSER,-6.6,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,sealev.dis,6,MSLUSER,-6.5,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,sealev.dis,6,MSLUSER,-6.4,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,sealev.dis,6,MSLUSER,-6.3,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,sealev.dis,6,MSLUSER,-6.3,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,sealev.dis,6,MSLUSER,-6.2,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,sealev.dis,6,MSLUSER,-6.1,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,sealev.dis,6,MSLUSER,-6.1,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,sealev.dis,6,MSLUSER,-6,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,sealev.dis,6,MSLUSER,-5.9,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,sealev.dis,6,MSLUSER,-5.8,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,sealev.dis,6,MSLUSER,-5.7,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,sealev.dis,6,MSLUSER,-5.6,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,sealev.dis,6,MSLUSER,-5.5,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,sealev.dis,6,MSLUSER,-5.3,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,sealev.dis,6,MSLUSER,-5.2,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,sealev.dis,6,MSLUSER,-5,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,sealev.dis,6,MSLUSER,-4.9,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,sealev.dis,6,MSLUSER,-4.7,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,sealev.dis,6,MSLUSER,-4.5,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,sealev.dis,6,MSLUSER,-4.3,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,sealev.dis,6,MSLUSER,-4.1,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,sealev.dis,6,MSLUSER,-3.9,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,sealev.dis,6,MSLUSER,-3.6,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,sealev.dis,6,MSLUSER,-3.2,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,sealev.dis,6,MSLUSER,-2.7,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,sealev.dis,6,MSLUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,sealev.dis,6,MSLUSER,0.9,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,sealev.dis,6,MSLUSER,1.9,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,sealev.dis,6,MSLUSER,3.1,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,sealev.dis,6,MSLUSER,4.3,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,sealev.dis,6,MSLUSER,5.8,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,sealev.dis,6,MSLUSER,7.4,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,sealev.dis,6,MSLUSER,9.2,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,sealev.dis,6,MSLUSER,11.2,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,sealev.dis,6,MSLUSER,13.4,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,sealev.dis,6,MSLUSER,15.7,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,sealev.dis,6,MSLUSER,18.3,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,sealev.dis,6,MSLUSER,21,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,sealev.dis,6,MSLUSER,23.9,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,sealev.dis,6,MSLUSER,26.9,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,sealev.dis,6,MSLUSER,30.1,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,sealev.dis,6,MSLUSER,33.4,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,sealev.dis,6,MSLUSER,36.9,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,sealev.dis,6,MSLUSER,40.4,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,sealev.dis,6,MSLUSER,44,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,sealev.dis,6,MSLUSER,47.8,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,sealev.dis,6,MSLUSER,51.7,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,sealev.dis,6,MSLUSER,55.6,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,6,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,6,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,6,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,6,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,6,TEMHI,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,6,TEMHI,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,6,TEMHI,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,6,TEMHI,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,6,TEMHI,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,6,TEMHI,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,6,TEMHI,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,6,TEMHI,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,6,TEMHI,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,6,TEMHI,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,6,TEMHI,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,6,TEMHI,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,6,TEMHI,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,6,TEMHI,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,6,TEMHI,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,6,TEMHI,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,6,TEMHI,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,6,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,6,TEMHI,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,6,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,6,TEMHI,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,6,TEMHI,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,6,TEMHI,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,6,TEMHI,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,6,TEMHI,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,6,TEMHI,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,6,TEMHI,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,6,TEMHI,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,6,TEMHI,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,6,TEMHI,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,6,TEMHI,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,6,TEMHI,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,6,TEMHI,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,6,TEMHI,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,6,TEMHI,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,6,TEMHI,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,6,TEMHI,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,6,TEMHI,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,6,TEMHI,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,6,TEMHI,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,6,TEMHI,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,6,TEMHI,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,6,TEMHI,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,6,TEMHI,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,6,TEMHI,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,6,TEMHI,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,6,TEMHI,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,6,TEMHI,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,6,TEMHI,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,6,TEMHI,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,6,TEMHI,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,6,TEMHI,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,6,TEMHI,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,6,TEMHI,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,6,TEMHI,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,6,TEMHI,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,6,TEMHI,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,6,TEMHI,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,6,TEMHI,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,6,TEMHI,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,6,TEMHI,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,6,TEMHI,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,6,TEMHI,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,6,TEMHI,4.779,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,6,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,6,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,6,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,6,TEMLO,-0.276,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,6,TEMLO,-0.275,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,6,TEMLO,-0.274,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,6,TEMLO,-0.272,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,6,TEMLO,-0.27,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,6,TEMLO,-0.267,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,6,TEMLO,-0.263,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,6,TEMLO,-0.26,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,6,TEMLO,-0.257,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,6,TEMLO,-0.254,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,6,TEMLO,-0.251,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,6,TEMLO,-0.248,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,6,TEMLO,-0.244,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,6,TEMLO,-0.239,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,6,TEMLO,-0.235,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,6,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,6,TEMLO,-0.225,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,6,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,6,TEMLO,-0.23,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,6,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,6,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,6,TEMLO,-0.233,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,6,TEMLO,-0.232,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,6,TEMLO,-0.231,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,6,TEMLO,-0.229,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,6,TEMLO,-0.227,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,6,TEMLO,-0.223,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,6,TEMLO,-0.219,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,6,TEMLO,-0.215,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,6,TEMLO,-0.21,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,6,TEMLO,-0.205,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,6,TEMLO,-0.202,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,6,TEMLO,-0.196,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,6,TEMLO,-0.189,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,6,TEMLO,-0.178,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,6,TEMLO,-0.176,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,6,TEMLO,-0.183,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,6,TEMLO,-0.187,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,6,TEMLO,-0.179,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,6,TEMLO,-0.148,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,6,TEMLO,-0.102,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,6,TEMLO,-0.055,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,6,TEMLO,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,6,TEMLO,0.049,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,6,TEMLO,0.102,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,6,TEMLO,0.161,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,6,TEMLO,0.226,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,6,TEMLO,0.297,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,6,TEMLO,0.37,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,6,TEMLO,0.452,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,6,TEMLO,0.539,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,6,TEMLO,0.631,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,6,TEMLO,0.724,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,6,TEMLO,0.817,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,6,TEMLO,0.913,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,6,TEMLO,1.002,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,6,TEMLO,1.091,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,6,TEMLO,1.179,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,6,TEMLO,1.265,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,6,TEMLO,1.349,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,6,TEMLO,1.432,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,6,TEMLO,1.515,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,6,TEMLO,1.597,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,6,TEMLO,1.68,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,6,TEMLO,1.76,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,6,TEMMID,-0.421,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,6,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,6,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,6,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,6,TEMMID,-0.422,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,6,TEMMID,-0.42,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,6,TEMMID,-0.417,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,6,TEMMID,-0.414,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,6,TEMMID,-0.409,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,6,TEMMID,-0.404,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,6,TEMMID,-0.399,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,6,TEMMID,-0.394,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,6,TEMMID,-0.389,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,6,TEMMID,-0.384,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,6,TEMMID,-0.379,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,6,TEMMID,-0.373,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,6,TEMMID,-0.366,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,6,TEMMID,-0.358,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,6,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,6,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,6,TEMMID,-0.344,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,6,TEMMID,-0.347,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,6,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,6,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,6,TEMMID,-0.351,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,6,TEMMID,-0.35,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,6,TEMMID,-0.349,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,6,TEMMID,-0.346,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,6,TEMMID,-0.342,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,6,TEMMID,-0.336,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,6,TEMMID,-0.33,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,6,TEMMID,-0.323,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,6,TEMMID,-0.316,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,6,TEMMID,-0.308,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,6,TEMMID,-0.302,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,6,TEMMID,-0.293,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,6,TEMMID,-0.282,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,6,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,6,TEMMID,-0.261,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,6,TEMMID,-0.27,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,6,TEMMID,-0.276,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,6,TEMMID,-0.266,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,6,TEMMID,-0.223,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,6,TEMMID,-0.156,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,6,TEMMID,-0.085,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,6,TEMMID,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,6,TEMMID,0.08,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,6,TEMMID,0.164,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,6,TEMMID,0.258,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,6,TEMMID,0.364,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,6,TEMMID,0.48,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,6,TEMMID,0.601,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,6,TEMMID,0.736,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,6,TEMMID,0.881,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,6,TEMMID,1.035,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,6,TEMMID,1.193,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,6,TEMMID,1.354,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,6,TEMMID,1.518,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,6,TEMMID,1.677,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,6,TEMMID,1.834,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,6,TEMMID,1.992,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,6,TEMMID,2.148,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,6,TEMMID,2.302,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,6,TEMMID,2.454,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,6,TEMMID,2.607,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,6,TEMMID,2.76,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,6,TEMMID,2.913,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,6,TEMMID,3.063,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,6,TEMNOSO2,0,,,EPA_Baseline,,,Simulated 1765,EPA_Baseline,temps.dis,6,TEMUSER,-0.581,,,EPA_Baseline,,,Simulated 1770,EPA_Baseline,temps.dis,6,TEMUSER,-0.583,,,EPA_Baseline,,,Simulated 1775,EPA_Baseline,temps.dis,6,TEMUSER,-0.583,,,EPA_Baseline,,,Simulated 1780,EPA_Baseline,temps.dis,6,TEMUSER,-0.583,,,EPA_Baseline,,,Simulated 1785,EPA_Baseline,temps.dis,6,TEMUSER,-0.583,,,EPA_Baseline,,,Simulated 1790,EPA_Baseline,temps.dis,6,TEMUSER,-0.581,,,EPA_Baseline,,,Simulated 1795,EPA_Baseline,temps.dis,6,TEMUSER,-0.577,,,EPA_Baseline,,,Simulated 1800,EPA_Baseline,temps.dis,6,TEMUSER,-0.573,,,EPA_Baseline,,,Simulated 1805,EPA_Baseline,temps.dis,6,TEMUSER,-0.567,,,EPA_Baseline,,,Simulated 1810,EPA_Baseline,temps.dis,6,TEMUSER,-0.56,,,EPA_Baseline,,,Simulated 1815,EPA_Baseline,temps.dis,6,TEMUSER,-0.553,,,EPA_Baseline,,,Simulated 1820,EPA_Baseline,temps.dis,6,TEMUSER,-0.546,,,EPA_Baseline,,,Simulated 1825,EPA_Baseline,temps.dis,6,TEMUSER,-0.539,,,EPA_Baseline,,,Simulated 1830,EPA_Baseline,temps.dis,6,TEMUSER,-0.531,,,EPA_Baseline,,,Simulated 1835,EPA_Baseline,temps.dis,6,TEMUSER,-0.524,,,EPA_Baseline,,,Simulated 1840,EPA_Baseline,temps.dis,6,TEMUSER,-0.515,,,EPA_Baseline,,,Simulated 1845,EPA_Baseline,temps.dis,6,TEMUSER,-0.505,,,EPA_Baseline,,,Simulated 1850,EPA_Baseline,temps.dis,6,TEMUSER,-0.493,,,EPA_Baseline,,,Simulated 1855,EPA_Baseline,temps.dis,6,TEMUSER,-0.482,,,EPA_Baseline,,,Simulated 1860,EPA_Baseline,temps.dis,6,TEMUSER,-0.471,,,EPA_Baseline,,,Simulated 1865,EPA_Baseline,temps.dis,6,TEMUSER,-0.47,,,EPA_Baseline,,,Simulated 1870,EPA_Baseline,temps.dis,6,TEMUSER,-0.473,,,EPA_Baseline,,,Simulated 1875,EPA_Baseline,temps.dis,6,TEMUSER,-0.476,,,EPA_Baseline,,,Simulated 1880,EPA_Baseline,temps.dis,6,TEMUSER,-0.477,,,EPA_Baseline,,,Simulated 1885,EPA_Baseline,temps.dis,6,TEMUSER,-0.477,,,EPA_Baseline,,,Simulated 1890,EPA_Baseline,temps.dis,6,TEMUSER,-0.475,,,EPA_Baseline,,,Simulated 1895,EPA_Baseline,temps.dis,6,TEMUSER,-0.473,,,EPA_Baseline,,,Simulated 1900,EPA_Baseline,temps.dis,6,TEMUSER,-0.469,,,EPA_Baseline,,,Simulated 1905,EPA_Baseline,temps.dis,6,TEMUSER,-0.463,,,EPA_Baseline,,,Simulated 1910,EPA_Baseline,temps.dis,6,TEMUSER,-0.455,,,EPA_Baseline,,,Simulated 1915,EPA_Baseline,temps.dis,6,TEMUSER,-0.447,,,EPA_Baseline,,,Simulated 1920,EPA_Baseline,temps.dis,6,TEMUSER,-0.437,,,EPA_Baseline,,,Simulated 1925,EPA_Baseline,temps.dis,6,TEMUSER,-0.427,,,EPA_Baseline,,,Simulated 1930,EPA_Baseline,temps.dis,6,TEMUSER,-0.416,,,EPA_Baseline,,,Simulated 1935,EPA_Baseline,temps.dis,6,TEMUSER,-0.407,,,EPA_Baseline,,,Simulated 1940,EPA_Baseline,temps.dis,6,TEMUSER,-0.393,,,EPA_Baseline,,,Simulated 1945,EPA_Baseline,temps.dis,6,TEMUSER,-0.378,,,EPA_Baseline,,,Simulated 1950,EPA_Baseline,temps.dis,6,TEMUSER,-0.355,,,EPA_Baseline,,,Simulated 1955,EPA_Baseline,temps.dis,6,TEMUSER,-0.346,,,EPA_Baseline,,,Simulated 1960,EPA_Baseline,temps.dis,6,TEMUSER,-0.356,,,EPA_Baseline,,,Simulated 1965,EPA_Baseline,temps.dis,6,TEMUSER,-0.363,,,EPA_Baseline,,,Simulated 1970,EPA_Baseline,temps.dis,6,TEMUSER,-0.351,,,EPA_Baseline,,,Simulated 1975,EPA_Baseline,temps.dis,6,TEMUSER,-0.298,,,EPA_Baseline,,,Simulated 1980,EPA_Baseline,temps.dis,6,TEMUSER,-0.211,,,EPA_Baseline,,,Simulated 1985,EPA_Baseline,temps.dis,6,TEMUSER,-0.115,,,EPA_Baseline,,,Simulated 1990,EPA_Baseline,temps.dis,6,TEMUSER,0,,,EPA_Baseline,,,Simulated 1995,EPA_Baseline,temps.dis,6,TEMUSER,0.112,,,EPA_Baseline,,,Simulated 2000,EPA_Baseline,temps.dis,6,TEMUSER,0.232,,,EPA_Baseline,,,Simulated 2005,EPA_Baseline,temps.dis,6,TEMUSER,0.366,,,EPA_Baseline,,,Simulated 2010,EPA_Baseline,temps.dis,6,TEMUSER,0.518,,,EPA_Baseline,,,Simulated 2015,EPA_Baseline,temps.dis,6,TEMUSER,0.685,,,EPA_Baseline,,,Simulated 2020,EPA_Baseline,temps.dis,6,TEMUSER,0.863,,,EPA_Baseline,,,Simulated 2025,EPA_Baseline,temps.dis,6,TEMUSER,1.062,,,EPA_Baseline,,,Simulated 2030,EPA_Baseline,temps.dis,6,TEMUSER,1.277,,,EPA_Baseline,,,Simulated 2035,EPA_Baseline,temps.dis,6,TEMUSER,1.506,,,EPA_Baseline,,,Simulated 2040,EPA_Baseline,temps.dis,6,TEMUSER,1.743,,,EPA_Baseline,,,Simulated 2045,EPA_Baseline,temps.dis,6,TEMUSER,1.989,,,EPA_Baseline,,,Simulated 2050,EPA_Baseline,temps.dis,6,TEMUSER,2.243,,,EPA_Baseline,,,Simulated 2055,EPA_Baseline,temps.dis,6,TEMUSER,2.492,,,EPA_Baseline,,,Simulated 2060,EPA_Baseline,temps.dis,6,TEMUSER,2.743,,,EPA_Baseline,,,Simulated 2065,EPA_Baseline,temps.dis,6,TEMUSER,2.996,,,EPA_Baseline,,,Simulated 2070,EPA_Baseline,temps.dis,6,TEMUSER,3.249,,,EPA_Baseline,,,Simulated 2075,EPA_Baseline,temps.dis,6,TEMUSER,3.502,,,EPA_Baseline,,,Simulated 2080,EPA_Baseline,temps.dis,6,TEMUSER,3.755,,,EPA_Baseline,,,Simulated 2085,EPA_Baseline,temps.dis,6,TEMUSER,4.009,,,EPA_Baseline,,,Simulated 2090,EPA_Baseline,temps.dis,6,TEMUSER,4.265,,,EPA_Baseline,,,Simulated 2095,EPA_Baseline,temps.dis,6,TEMUSER,4.523,,,EPA_Baseline,,,Simulated 2100,EPA_Baseline,temps.dis,6,TEMUSER,4.779,,,EPA_Baseline,,,Simulated \ No newline at end of file diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP3PD/RCP3PD_MAGICC_CO2.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP3PD/RCP3PD_MAGICC_CO2.csv deleted file mode 100644 index 59eff4ef8..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP3PD/RCP3PD_MAGICC_CO2.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC 6 RCP 3PD,,,,,,, -# CO2 concentration (ppm),,,,,,, -year,value,vtag,ctag,units,type,scenario,model -1765,2.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1766,2.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1767,2.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1768,2.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1769,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1770,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1771,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1772,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1773,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1774,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1775,2.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1776,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1777,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1778,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1779,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1780,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1781,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1782,2.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1783,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1784,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1785,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1786,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1787,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1788,2.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1789,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1790,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1791,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1792,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1793,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1794,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1795,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1796,2.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1797,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1798,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1799,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1800,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1801,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1802,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1803,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1804,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1805,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1806,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1807,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1808,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1809,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1810,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1811,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1812,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1813,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1814,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1815,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1816,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1817,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1818,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1819,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1820,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1821,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1822,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1823,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1824,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1825,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1826,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1827,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1828,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1829,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1830,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1831,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1832,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1833,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1834,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1835,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1836,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1837,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1838,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1839,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1840,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1841,2.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1842,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1843,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1844,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1845,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1846,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1847,2.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1848,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1849,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1850,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1851,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1852,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1853,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1854,2.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1855,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1856,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1857,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1858,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1859,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1860,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1861,2.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1862,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1863,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1864,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1865,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1866,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1867,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1868,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1869,2.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1870,2.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1871,2.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1872,2.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1873,2.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1874,2.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1875,2.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1876,2.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1877,2.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1878,2.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1879,2.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1880,2.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1881,2.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1882,2.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1883,2.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1884,2.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1885,2.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1886,2.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1887,2.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1888,2.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1889,2.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1890,2.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1891,2.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1892,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1893,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1894,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1895,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1896,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1897,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1898,2.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1899,2.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1900,2.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1901,2.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1902,2.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1903,2.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1904,2.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1905,2.98E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1906,2.98E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1907,2.99E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1908,2.99E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1909,3.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1910,3.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1911,3.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1912,3.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1913,3.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1914,3.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1915,3.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1916,3.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1917,3.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1918,3.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1919,3.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1920,3.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1921,3.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1922,3.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1923,3.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1924,3.05E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1925,3.05E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1926,3.06E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1927,3.06E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1928,3.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1929,3.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1930,3.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1931,3.08E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1932,3.08E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1933,3.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1934,3.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1935,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1936,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1937,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1938,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1939,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1940,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1941,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1942,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1943,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1944,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1945,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1946,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1947,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1948,3.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1949,3.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1950,3.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1951,3.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1952,3.12E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1953,3.12E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1954,3.13E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1955,3.13E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1956,3.14E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1957,3.15E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1958,3.15E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1959,3.16E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1960,3.17E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1961,3.17E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1962,3.18E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1963,3.19E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1964,3.19E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1965,3.20E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1966,3.21E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1967,3.22E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1968,3.23E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1969,3.25E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1970,3.25E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1971,3.26E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1972,3.28E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1973,3.29E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1974,3.30E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1975,3.31E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1976,3.32E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1977,3.34E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1978,3.36E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1979,3.37E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1980,3.39E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1981,3.40E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1982,3.41E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1983,3.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1984,3.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1985,3.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1986,3.48E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1987,3.50E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1988,3.52E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1989,3.53E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1990,3.55E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1991,3.56E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1992,3.56E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1993,3.57E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1994,3.59E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1995,3.61E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1996,3.62E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1997,3.64E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1998,3.67E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -1999,3.68E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2000,3.70E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2001,3.71E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2002,3.74E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2003,3.76E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2004,3.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2005,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2006,3.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2007,3.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2008,3.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2009,3.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2010,3.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2011,3.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2012,3.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2013,3.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2014,4.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2015,4.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2016,4.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2017,4.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2018,4.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2019,4.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2020,4.14E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2021,4.16E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2022,4.18E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2023,4.21E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2024,4.23E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2025,4.25E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2026,4.26E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2027,4.28E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2028,4.30E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2029,4.31E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2030,4.33E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2031,4.34E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2032,4.36E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2033,4.37E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2034,4.38E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2035,4.39E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2036,4.40E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2037,4.41E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2038,4.41E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2039,4.42E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2040,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2041,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2042,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2043,4.44E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2044,4.44E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2045,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2046,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2047,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2048,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2049,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2050,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2051,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2052,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2053,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2054,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2055,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2056,4.46E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2057,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2058,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2059,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2060,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2061,4.45E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2062,4.44E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2063,4.44E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2064,4.44E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2065,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2066,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2067,4.43E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2068,4.42E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2069,4.42E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2070,4.41E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2071,4.41E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2072,4.40E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2073,4.39E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2074,4.39E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2075,4.38E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2076,4.38E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2077,4.37E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2078,4.37E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2079,4.36E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2080,4.36E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2081,4.35E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2082,4.34E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2083,4.34E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2084,4.33E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2085,4.33E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2086,4.32E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2087,4.32E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2088,4.31E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2089,4.31E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2090,4.30E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2091,4.30E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2092,4.29E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2093,4.29E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2094,4.28E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2095,4.28E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2096,4.27E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2097,4.27E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2098,4.26E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2099,4.26E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2100,4.25E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2101,4.25E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2102,4.24E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2103,4.24E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2104,4.24E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2105,4.23E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2106,4.23E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2107,4.22E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2108,4.22E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2109,4.21E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2110,4.21E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2111,4.20E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2112,4.20E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2113,4.20E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2114,4.19E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2115,4.19E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2116,4.18E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2117,4.18E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2118,4.17E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2119,4.17E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2120,4.16E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2121,4.16E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2122,4.16E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2123,4.15E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2124,4.15E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2125,4.14E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2126,4.14E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2127,4.13E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2128,4.13E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2129,4.12E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2130,4.12E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2131,4.12E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2132,4.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2133,4.11E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2134,4.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2135,4.10E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2136,4.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2137,4.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2138,4.09E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2139,4.08E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2140,4.08E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2141,4.08E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2142,4.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2143,4.07E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2144,4.06E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2145,4.06E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2146,4.06E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2147,4.05E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2148,4.05E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2149,4.05E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2150,4.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2151,4.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2152,4.04E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2153,4.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2154,4.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2155,4.03E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2156,4.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2157,4.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2158,4.02E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2159,4.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2160,4.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2161,4.01E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2162,4.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2163,4.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2164,4.00E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2165,3.99E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2166,3.99E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2167,3.99E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2168,3.98E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2169,3.98E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2170,3.98E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2171,3.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2172,3.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2173,3.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2174,3.97E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2175,3.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2176,3.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2177,3.96E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2178,3.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2179,3.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2180,3.95E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2181,3.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2182,3.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2183,3.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2184,3.94E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2185,3.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2186,3.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2187,3.93E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2188,3.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2189,3.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2190,3.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2191,3.92E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2192,3.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2193,3.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2194,3.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2195,3.91E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2196,3.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2197,3.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2198,3.90E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2199,3.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2200,3.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2201,3.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2202,3.89E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2203,3.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2204,3.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2205,3.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2206,3.88E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2207,3.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2208,3.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2209,3.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2210,3.87E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2211,3.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2212,3.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2213,3.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2214,3.86E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2215,3.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2216,3.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2217,3.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2218,3.85E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2219,3.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2220,3.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2221,3.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2222,3.84E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2223,3.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2224,3.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2225,3.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2226,3.83E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2227,3.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2228,3.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2229,3.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2230,3.82E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2231,3.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2232,3.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2233,3.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2234,3.81E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2235,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2236,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2237,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2238,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2239,3.80E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2240,3.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2241,3.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2242,3.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2243,3.79E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2244,3.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2245,3.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2246,3.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2247,3.78E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2248,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2249,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2250,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2251,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2252,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2253,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2254,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2255,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2256,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2257,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2258,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2259,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2260,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2261,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2262,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2263,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2264,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2265,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2266,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2267,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2268,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2269,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2270,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2271,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2272,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2273,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2274,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2275,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2276,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2277,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2278,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2279,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2280,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2281,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2282,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2283,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2284,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2285,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2286,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2287,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2288,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2289,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2290,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2291,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2292,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2293,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2294,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2295,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2296,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2297,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2298,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2299,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 -2300,3.77E+02,atmos_CO2,carbon_cycle,ppmv CO2,Simulated,rcp26,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP3PD/RCP3PD_MAGICC_RF.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP3PD/RCP3PD_MAGICC_RF.csv deleted file mode 100644 index 0f692f74e..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP3PD/RCP3PD_MAGICC_RF.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC 6 RCP 3PD ,,,,,,, -# TOTAL_INCLVOLCANIC_RF,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,0.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1766,1.96E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1767,6.16E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1768,3.13E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1769,-1.21E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1770,3.28E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1771,7.06E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1772,6.43E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1773,5.23E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1774,3.90E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1775,3.38E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1776,5.50E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1777,9.16E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1778,1.19E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1779,1.11E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1780,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1781,9.51E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1782,2.20E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1783,-1.36E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1784,-1.49E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1785,8.68E-03,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1786,1.06E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1787,1.36E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1788,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1789,-8.59E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1790,-2.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1791,-4.76E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1792,4.83E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1793,7.60E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1794,4.26E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1795,6.17E-03,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1796,1.90E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1797,4.02E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1798,4.99E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1799,5.65E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1800,8.55E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1801,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1802,7.98E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1803,7.19E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1804,7.57E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1805,7.05E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1806,5.77E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1807,5.21E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1808,-9.30E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1809,-2.23E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1810,-1.73E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1811,-6.43E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1812,-3.80E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1813,-2.41E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1814,-1.42E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1815,-3.17E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1816,-2.42E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1817,-8.29E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1818,-1.67E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1819,7.32E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1820,8.56E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1821,8.74E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1822,9.07E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1823,9.55E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1824,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1825,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1826,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1827,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1828,1.64E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1829,1.10E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1830,-2.72E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1831,-6.79E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1832,-4.88E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1833,-1.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1834,-7.94E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1835,-1.31E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1836,-6.26E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1837,-8.84E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1838,1.22E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1839,1.40E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1840,8.19E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1841,9.19E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1842,8.31E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1843,3.89E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1844,7.34E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1845,1.39E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1846,1.79E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1847,2.16E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1848,2.37E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1849,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1850,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1851,1.75E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1852,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1853,1.60E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1854,1.43E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1855,-1.22E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1856,-7.65E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1857,-5.89E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1858,-6.96E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1859,1.29E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1860,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1861,6.30E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1862,-1.17E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1863,7.46E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1864,1.33E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1865,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1866,1.42E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1867,1.53E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1868,1.92E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1869,2.25E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1870,2.50E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1871,2.22E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1872,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1873,1.16E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1874,1.26E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1875,7.39E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1876,3.78E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1877,8.33E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1878,1.20E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1879,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1880,1.84E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1881,2.10E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1882,4.89E-03,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1883,-1.60E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1884,-1.47E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1885,-4.31E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1886,-5.05E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1887,-1.94E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1888,-3.04E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1889,-3.30E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1890,-3.82E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1891,-1.39E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1892,1.72E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1893,1.99E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1894,2.54E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1895,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1896,-9.06E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1897,-4.80E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1898,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1899,1.71E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1900,1.94E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1901,1.38E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1902,-6.86E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1903,-5.85E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1904,-4.29E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1905,1.48E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1906,1.66E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1907,1.08E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1908,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1909,2.40E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1910,2.44E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1911,2.42E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1912,-2.31E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1913,5.16E-02,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1914,2.59E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1915,3.65E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1916,4.09E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1917,4.37E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1918,4.24E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1919,3.93E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1920,2.19E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1921,3.43E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1922,3.90E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1923,3.83E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1924,3.96E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1925,4.53E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1926,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1927,4.93E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1928,3.91E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1929,3.92E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1930,4.48E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1931,4.44E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1932,3.81E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1933,4.68E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1934,5.02E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1935,5.80E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1936,6.18E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1937,6.07E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1938,5.95E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1939,6.15E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1940,6.17E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1941,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1942,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1943,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1944,5.86E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1945,6.30E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1946,6.54E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1947,6.60E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1948,6.73E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1949,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1950,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1951,5.39E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1952,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1953,4.98E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1954,5.46E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1955,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1956,7.14E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1957,7.55E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1958,7.45E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1959,7.28E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1960,5.68E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1961,4.70E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1962,3.55E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1963,-4.96E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1964,-3.40E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1965,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1966,5.21E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1967,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1968,2.02E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1969,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1970,7.46E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1971,8.63E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1972,8.67E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1973,7.93E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1974,5.73E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1975,6.06E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1976,8.85E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1977,1.05E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1978,1.04E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1979,1.21E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1980,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1981,1.09E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1982,-1.28E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1983,4.80E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1984,9.59E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1985,1.08E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1986,1.14E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1987,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1988,1.42E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1989,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1990,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1991,-3.64E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1992,2.65E-01,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1993,1.06E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1994,1.34E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1995,1.47E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1996,1.54E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1997,1.63E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1998,1.75E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -1999,1.85E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2000,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2001,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2002,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2003,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2004,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2005,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2006,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2007,1.97E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2008,2.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2009,2.15E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2010,2.18E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2011,2.23E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2012,2.28E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2013,2.33E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2014,2.38E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2015,2.42E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2016,2.46E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2017,2.50E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2018,2.54E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2019,2.58E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2020,2.62E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2021,2.65E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2022,2.68E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2023,2.71E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2024,2.74E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2025,2.77E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2026,2.79E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2027,2.82E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2028,2.84E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2029,2.87E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2030,2.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2031,2.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2032,2.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2033,2.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2034,2.95E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2035,2.96E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2036,2.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2037,2.99E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2038,3.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2039,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2040,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2041,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2042,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2043,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2044,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2045,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2046,3.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2047,3.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2048,3.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2049,2.99E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2050,2.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2051,2.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2052,2.97E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2053,2.95E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2054,2.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2055,2.93E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2056,2.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2057,2.91E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2058,2.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2059,2.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2060,2.88E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2061,2.87E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2062,2.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2063,2.85E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2064,2.84E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2065,2.83E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2066,2.82E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2067,2.81E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2068,2.81E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2069,2.80E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2070,2.79E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2071,2.78E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2072,2.77E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2073,2.77E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2074,2.76E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2075,2.75E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2076,2.74E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2077,2.74E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2078,2.73E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2079,2.73E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2080,2.72E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2081,2.71E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2082,2.71E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2083,2.70E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2084,2.69E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2085,2.69E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2086,2.68E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2087,2.67E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2088,2.67E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2089,2.66E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2090,2.65E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2091,2.65E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2092,2.64E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2093,2.63E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2094,2.63E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2095,2.62E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2096,2.62E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2097,2.61E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2098,2.60E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2099,2.60E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2100,2.59E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2101,2.58E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2102,2.57E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2103,2.56E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2104,2.56E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2105,2.55E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2106,2.54E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2107,2.53E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2108,2.52E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2109,2.52E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2110,2.51E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2111,2.50E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2112,2.50E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2113,2.49E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2114,2.48E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2115,2.47E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2116,2.47E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2117,2.46E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2118,2.45E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2119,2.45E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2120,2.44E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2121,2.43E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2122,2.43E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2123,2.42E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2124,2.41E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2125,2.41E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2126,2.40E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2127,2.39E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2128,2.39E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2129,2.38E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2130,2.37E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2131,2.37E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2132,2.36E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2133,2.35E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2134,2.35E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2135,2.34E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2136,2.34E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2137,2.33E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2138,2.33E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2139,2.32E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2140,2.31E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2141,2.31E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2142,2.30E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2143,2.30E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2144,2.29E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2145,2.29E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2146,2.28E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2147,2.28E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2148,2.27E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2149,2.27E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2150,2.26E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2151,2.25E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2152,2.25E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2153,2.24E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2154,2.24E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2155,2.23E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2156,2.23E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2157,2.22E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2158,2.22E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2159,2.22E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2160,2.21E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2161,2.21E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2162,2.20E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2163,2.20E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2164,2.19E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2165,2.19E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2166,2.18E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2167,2.18E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2168,2.17E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2169,2.17E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2170,2.16E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2171,2.16E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2172,2.15E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2173,2.15E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2174,2.15E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2175,2.14E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2176,2.14E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2177,2.13E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2178,2.13E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2179,2.12E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2180,2.12E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2181,2.12E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2182,2.11E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2183,2.11E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2184,2.10E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2185,2.10E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2186,2.09E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2187,2.09E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2188,2.09E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2189,2.08E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2190,2.08E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2191,2.07E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2192,2.07E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2193,2.07E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2194,2.06E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2195,2.06E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2196,2.05E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2197,2.05E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2198,2.05E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2199,2.04E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2200,2.04E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2201,2.03E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2202,2.03E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2203,2.03E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2204,2.02E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2205,2.02E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2206,2.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2207,2.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2208,2.01E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2209,2.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2210,2.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2211,2.00E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2212,1.99E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2213,1.99E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2214,1.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2215,1.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2216,1.98E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2217,1.97E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2218,1.97E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2219,1.97E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2220,1.96E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2221,1.96E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2222,1.95E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2223,1.95E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2224,1.95E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2225,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2226,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2227,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2228,1.93E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2229,1.93E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2230,1.93E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2231,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2232,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2233,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2234,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2235,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2236,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2237,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2238,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2239,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2240,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2241,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2242,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2243,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2244,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2245,1.87E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2246,1.87E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2247,1.87E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2248,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2249,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2250,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2251,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2252,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2253,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2254,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2255,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2256,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2257,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2258,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2259,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2260,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2261,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2262,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2263,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2264,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2265,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2266,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2267,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2268,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2269,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2270,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2271,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2272,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2273,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2274,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2275,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2276,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2277,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2278,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2279,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2280,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2281,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2282,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2283,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2284,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2285,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2286,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2287,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2288,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2289,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2290,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2291,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2292,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2293,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2294,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2295,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2296,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2297,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2298,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2299,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 -2300,1.86E+00,Ftot,W/m2,forcing,Simulated,rcp26,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP3PD/RCP3PD_MAGICC_temp.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP3PD/RCP3PD_MAGICC_temp.csv deleted file mode 100644 index 9d553fdae..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP3PD/RCP3PD_MAGICC_temp.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC 6 RCP 3PD,,,,,,, -# global temperature change,,,,,,, -year,value,vtag,ctag,units,type,scenario,model -1765,0.00E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1766,-6.73E-04,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1767,8.00E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1768,1.73E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1769,1.36E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1770,-4.08E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1771,-2.61E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1772,6.34E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1773,9.33E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1774,1.08E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1775,1.05E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1776,1.31E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1777,1.93E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1778,2.65E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1779,2.98E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1780,3.15E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1781,3.14E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1782,2.81E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1783,1.72E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1784,-1.51E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1785,-3.51E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1786,-9.93E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1787,1.06E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1788,2.30E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1789,2.75E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1790,8.08E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1791,-2.94E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1792,-2.13E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1793,-6.26E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1794,2.71E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1795,4.93E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1796,1.57E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1797,1.06E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1798,4.51E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1799,8.47E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1800,1.42E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1801,1.99E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1802,2.07E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1803,2.06E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1804,2.15E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1805,2.18E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1806,2.05E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1807,1.92E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1808,1.84E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1809,-9.67E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1810,-3.91E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1811,-4.91E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1812,-3.54E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1813,-2.66E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1814,-2.17E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1815,-3.18E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1816,-6.83E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1817,-7.92E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1818,-5.83E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1819,-4.14E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1820,-2.95E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1821,-2.30E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1822,-1.87E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1823,-1.55E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1824,-1.29E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1825,-1.06E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1826,-8.64E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1827,-6.87E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1828,-5.34E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1829,-4.19E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1830,-4.48E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1831,-9.98E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1832,-2.04E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1833,-2.27E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1834,-1.61E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1835,-2.06E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1836,-3.67E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1837,-3.33E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1838,-2.36E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1839,-1.62E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1840,-1.22E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1841,-1.09E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1842,-9.31E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1843,-7.87E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1844,-7.61E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1845,-6.65E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1846,-4.54E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1847,-2.68E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1848,-9.96E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1849,-8.05E-04,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1850,-5.26E-05,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1851,-3.90E-04,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1852,-5.74E-04,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1853,1.42E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1854,2.82E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1855,4.46E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1856,-1.77E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1857,-1.40E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1858,-1.87E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1859,-1.22E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1860,-7.60E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1861,-4.84E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1862,-4.09E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1863,-5.75E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1864,-4.61E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1865,-3.12E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1866,-2.09E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1867,-1.30E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1868,-1.10E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1869,1.25E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1870,2.15E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1871,2.47E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1872,2.02E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1873,1.20E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1874,3.97E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1875,3.34E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1876,-1.62E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1877,-1.57E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1878,-1.17E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1879,-3.35E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1880,5.04E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1881,1.49E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1882,2.48E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1883,-1.55E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1884,-2.58E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1885,-4.04E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1886,-2.88E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1887,-2.71E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1888,-2.19E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1889,-2.12E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1890,-1.95E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1891,-2.28E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1892,-1.88E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1893,-1.57E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1894,-1.05E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1895,-7.19E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1896,-5.54E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1897,-8.25E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1898,-8.39E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1899,-6.82E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1900,-5.06E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1901,-3.90E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1902,-3.05E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1903,-1.49E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1904,-2.21E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1905,-1.53E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1906,-1.03E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1907,-7.72E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1908,-7.96E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1909,-6.25E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1910,-4.04E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1911,-2.74E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1912,-1.15E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1913,-1.07E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1914,-7.77E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1915,-2.92E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1916,6.35E-03,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1917,3.02E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1918,4.61E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1919,5.73E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1920,6.18E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1921,3.73E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1922,5.10E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1923,6.24E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1924,7.54E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1925,8.54E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1926,9.91E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1927,1.06E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1928,1.16E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1929,1.08E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1930,1.01E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1931,1.11E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1932,1.18E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1933,1.10E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1934,1.27E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1935,1.43E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1936,1.58E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1937,1.69E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1938,1.79E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1939,1.81E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1940,1.88E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1941,1.91E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1942,1.91E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1943,1.77E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1944,1.84E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1945,1.94E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1946,2.04E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1947,2.13E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1948,2.13E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1949,2.18E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1950,2.08E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1951,2.00E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1952,1.88E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1953,1.81E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1954,1.74E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1955,1.84E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1956,2.00E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1957,2.17E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1958,2.25E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1959,2.32E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1960,2.35E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1961,2.07E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1962,1.85E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1963,1.70E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1964,3.35E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1965,-2.27E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1966,2.12E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1967,8.13E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1968,1.13E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1969,7.14E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1970,9.57E-02,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1971,1.53E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1972,1.99E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1973,2.24E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1974,2.28E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1975,2.15E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1976,1.95E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1977,2.47E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1978,3.03E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1979,3.22E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1980,3.58E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1981,3.81E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1982,3.92E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1983,1.52E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1984,1.62E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1985,2.57E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1986,3.15E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1987,3.55E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1988,4.06E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1989,4.53E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1990,4.90E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1991,5.11E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1992,2.23E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1993,1.78E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1994,3.00E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1995,3.93E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1996,4.57E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1997,5.05E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1998,5.54E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -1999,6.03E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2000,6.43E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2001,6.76E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2002,7.03E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2003,7.22E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2004,7.38E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2005,7.55E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2006,7.74E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2007,7.94E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2008,8.15E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2009,8.50E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2010,8.80E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2011,9.09E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2012,9.38E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2013,9.67E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2014,9.95E-01,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2015,1.02E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2016,1.05E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2017,1.08E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2018,1.10E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2019,1.13E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2020,1.16E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2021,1.18E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2022,1.20E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2023,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2024,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2025,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2026,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2027,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2028,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2029,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2030,1.37E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2031,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2032,1.41E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2033,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2034,1.44E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2035,1.46E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2036,1.47E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2037,1.48E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2038,1.50E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2039,1.51E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2040,1.52E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2041,1.53E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2042,1.54E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2043,1.55E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2044,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2045,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2046,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2047,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2048,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2049,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2050,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2051,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2052,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2053,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2054,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2055,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2056,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2057,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2058,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2059,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2060,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2061,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2062,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2063,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2064,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2065,1.60E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2066,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2067,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2068,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2069,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2070,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2071,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2072,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2073,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2074,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2075,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2076,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2077,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2078,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2079,1.59E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2080,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2081,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2082,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2083,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2084,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2085,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2086,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2087,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2088,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2089,1.58E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2090,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2091,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2092,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2093,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2094,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2095,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2096,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2097,1.57E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2098,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2099,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2100,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2101,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2102,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2103,1.56E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2104,1.55E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2105,1.55E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2106,1.55E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2107,1.55E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2108,1.54E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2109,1.54E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2110,1.54E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2111,1.54E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2112,1.53E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2113,1.53E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2114,1.53E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2115,1.52E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2116,1.52E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2117,1.52E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2118,1.52E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2119,1.51E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2120,1.51E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2121,1.51E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2122,1.51E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2123,1.50E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2124,1.50E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2125,1.50E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2126,1.50E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2127,1.49E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2128,1.49E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2129,1.49E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2130,1.49E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2131,1.48E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2132,1.48E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2133,1.48E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2134,1.48E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2135,1.47E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2136,1.47E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2137,1.47E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2138,1.47E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2139,1.46E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2140,1.46E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2141,1.46E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2142,1.46E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2143,1.45E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2144,1.45E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2145,1.45E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2146,1.45E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2147,1.44E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2148,1.44E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2149,1.44E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2150,1.44E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2151,1.43E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2152,1.43E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2153,1.43E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2154,1.43E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2155,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2156,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2157,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2158,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2159,1.42E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2160,1.41E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2161,1.41E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2162,1.41E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2163,1.41E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2164,1.40E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2165,1.40E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2166,1.40E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2167,1.40E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2168,1.40E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2169,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2170,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2171,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2172,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2173,1.39E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2174,1.38E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2175,1.38E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2176,1.38E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2177,1.38E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2178,1.38E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2179,1.37E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2180,1.37E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2181,1.37E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2182,1.37E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2183,1.36E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2184,1.36E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2185,1.36E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2186,1.36E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2187,1.36E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2188,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2189,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2190,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2191,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2192,1.35E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2193,1.34E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2194,1.34E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2195,1.34E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2196,1.34E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2197,1.34E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2198,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2199,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2200,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2201,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2202,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2203,1.33E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2204,1.32E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2205,1.32E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2206,1.32E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2207,1.32E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2208,1.32E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2209,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2210,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2211,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2212,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2213,1.31E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2214,1.30E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2215,1.30E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2216,1.30E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2217,1.30E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2218,1.30E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2219,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2220,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2221,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2222,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2223,1.29E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2224,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2225,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2226,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2227,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2228,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2229,1.28E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2230,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2231,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2232,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2233,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2234,1.27E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2235,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2236,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2237,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2238,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2239,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2240,1.26E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2241,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2242,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2243,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2244,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2245,1.25E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2246,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2247,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2248,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2249,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2250,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2251,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2252,1.24E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2253,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2254,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2255,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2256,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2257,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2258,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2259,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2260,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2261,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2262,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2263,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2264,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2265,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2266,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2267,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2268,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2269,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2270,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2271,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2272,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2273,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2274,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2275,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2276,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2277,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2278,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2279,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2280,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2281,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2282,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2283,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2284,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2285,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2286,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2287,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2288,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2289,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2290,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2291,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2292,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2293,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2294,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2295,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2296,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2297,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2298,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2299,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 -2300,1.23E+00,Tgav,Temperature,C,Simulated,rcp26,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP45/RCP45_MAGICC_RF.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP45/RCP45_MAGICC_RF.csv deleted file mode 100644 index 6f8a0df66..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP45/RCP45_MAGICC_RF.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC6 RCP4.5,,,,,,, -# TOTAL_INCLVOLCANIC_RF W/m2,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,0.00E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1766,1.96E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1767,6.16E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1768,3.13E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1769,-1.21E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1770,3.28E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1771,7.06E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1772,6.43E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1773,5.23E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1774,3.90E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1775,3.38E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1776,5.50E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1777,9.16E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1778,1.19E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1779,1.11E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1780,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1781,9.51E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1782,2.20E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1783,-1.36E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1784,-1.49E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1785,8.68E-03,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1786,1.06E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1787,1.36E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1788,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1789,-8.59E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1790,-2.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1791,-4.76E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1792,4.83E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1793,7.60E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1794,4.26E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1795,6.17E-03,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1796,1.90E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1797,4.02E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1798,4.99E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1799,5.65E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1800,8.55E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1801,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1802,7.98E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1803,7.19E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1804,7.57E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1805,7.05E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1806,5.77E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1807,5.21E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1808,-9.30E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1809,-2.23E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1810,-1.73E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1811,-6.43E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1812,-3.80E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1813,-2.41E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1814,-1.42E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1815,-3.17E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1816,-2.42E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1817,-8.29E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1818,-1.67E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1819,7.32E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1820,8.56E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1821,8.74E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1822,9.07E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1823,9.55E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1824,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1825,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1826,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1827,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1828,1.64E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1829,1.10E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1830,-2.72E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1831,-6.79E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1832,-4.88E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1833,-1.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1834,-7.94E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1835,-1.31E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1836,-6.26E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1837,-8.84E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1838,1.22E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1839,1.40E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1840,8.19E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1841,9.19E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1842,8.31E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1843,3.89E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1844,7.34E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1845,1.39E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1846,1.79E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1847,2.16E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1848,2.37E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1849,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1850,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1851,1.75E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1852,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1853,1.60E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1854,1.43E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1855,-1.22E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1856,-7.65E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1857,-5.89E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1858,-6.96E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1859,1.29E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1860,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1861,6.30E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1862,-1.17E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1863,7.46E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1864,1.33E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1865,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1866,1.42E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1867,1.53E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1868,1.92E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1869,2.25E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1870,2.50E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1871,2.22E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1872,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1873,1.16E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1874,1.26E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1875,7.39E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1876,3.78E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1877,8.33E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1878,1.20E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1879,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1880,1.84E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1881,2.10E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1882,4.89E-03,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1883,-1.60E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1884,-1.47E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1885,-4.31E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1886,-5.05E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1887,-1.94E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1888,-3.04E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1889,-3.30E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1890,-3.82E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1891,-1.39E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1892,1.72E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1893,1.99E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1894,2.54E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1895,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1896,-9.06E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1897,-4.80E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1898,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1899,1.71E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1900,1.94E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1901,1.38E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1902,-6.86E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1903,-5.85E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1904,-4.29E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1905,1.48E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1906,1.66E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1907,1.08E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1908,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1909,2.40E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1910,2.44E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1911,2.42E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1912,-2.31E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1913,5.16E-02,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1914,2.59E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1915,3.65E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1916,4.09E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1917,4.37E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1918,4.24E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1919,3.93E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1920,2.19E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1921,3.43E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1922,3.90E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1923,3.83E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1924,3.96E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1925,4.53E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1926,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1927,4.93E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1928,3.91E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1929,3.92E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1930,4.48E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1931,4.44E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1932,3.81E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1933,4.68E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1934,5.02E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1935,5.80E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1936,6.18E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1937,6.07E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1938,5.95E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1939,6.15E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1940,6.17E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1941,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1942,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1943,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1944,5.86E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1945,6.30E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1946,6.54E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1947,6.60E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1948,6.73E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1949,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1950,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1951,5.39E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1952,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1953,4.98E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1954,5.46E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1955,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1956,7.14E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1957,7.55E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1958,7.45E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1959,7.28E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1960,5.68E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1961,4.70E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1962,3.55E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1963,-4.96E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1964,-3.40E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1965,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1966,5.21E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1967,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1968,2.02E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1969,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1970,7.46E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1971,8.63E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1972,8.67E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1973,7.93E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1974,5.73E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1975,6.06E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1976,8.85E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1977,1.05E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1978,1.04E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1979,1.21E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1980,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1981,1.09E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1982,-1.28E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1983,4.80E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1984,9.59E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1985,1.08E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1986,1.14E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1987,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1988,1.42E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1989,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1990,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1991,-3.64E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1992,2.65E-01,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1993,1.06E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1994,1.34E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1995,1.47E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1996,1.54E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1997,1.63E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1998,1.75E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -1999,1.85E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2000,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2001,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2002,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2003,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2004,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2005,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2006,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2007,1.97E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2008,2.01E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2009,2.14E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2010,2.17E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2011,2.21E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2012,2.26E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2013,2.30E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2014,2.34E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2015,2.38E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2016,2.43E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2017,2.47E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2018,2.51E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2019,2.56E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2020,2.60E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2021,2.64E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2022,2.68E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2023,2.72E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2024,2.77E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2025,2.81E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2026,2.85E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2027,2.89E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2028,2.93E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2029,2.97E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2030,3.02E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2031,3.06E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2032,3.10E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2033,3.14E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2034,3.18E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2035,3.22E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2036,3.26E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2037,3.30E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2038,3.34E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2039,3.38E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2040,3.42E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2041,3.45E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2042,3.49E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2043,3.53E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2044,3.56E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2045,3.59E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2046,3.63E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2047,3.66E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2048,3.70E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2049,3.73E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2050,3.76E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2051,3.79E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2052,3.81E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2053,3.84E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2054,3.87E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2055,3.89E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2056,3.91E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2057,3.94E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2058,3.96E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2059,3.98E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2060,4.00E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2061,4.02E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2062,4.04E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2063,4.05E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2064,4.07E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2065,4.09E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2066,4.10E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2067,4.11E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2068,4.13E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2069,4.14E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2070,4.15E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2071,4.16E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2072,4.17E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2073,4.18E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2074,4.18E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2075,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2076,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2077,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2078,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2079,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2080,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2081,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2082,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2083,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2084,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2085,4.19E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2086,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2087,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2088,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2089,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2090,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2091,4.21E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2092,4.21E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2093,4.21E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2094,4.22E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2095,4.22E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2096,4.23E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2097,4.23E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2098,4.23E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2099,4.24E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2100,4.24E+00,Ftot,W/m2,forcing,Simulated,rcp45,MAGICC6 -2101,4.25E+00,Ftot,W/m3,forcing,Simulated,rcp45,MAGICC6 -2102,4.25E+00,Ftot,W/m4,forcing,Simulated,rcp45,MAGICC6 -2103,4.26E+00,Ftot,W/m5,forcing,Simulated,rcp45,MAGICC6 -2104,4.26E+00,Ftot,W/m6,forcing,Simulated,rcp45,MAGICC6 -2105,4.26E+00,Ftot,W/m7,forcing,Simulated,rcp45,MAGICC6 -2106,4.27E+00,Ftot,W/m8,forcing,Simulated,rcp45,MAGICC6 -2107,4.27E+00,Ftot,W/m9,forcing,Simulated,rcp45,MAGICC6 -2108,4.27E+00,Ftot,W/m10,forcing,Simulated,rcp45,MAGICC6 -2109,4.27E+00,Ftot,W/m11,forcing,Simulated,rcp45,MAGICC6 -2110,4.27E+00,Ftot,W/m12,forcing,Simulated,rcp45,MAGICC6 -2111,4.28E+00,Ftot,W/m13,forcing,Simulated,rcp45,MAGICC6 -2112,4.28E+00,Ftot,W/m14,forcing,Simulated,rcp45,MAGICC6 -2113,4.28E+00,Ftot,W/m15,forcing,Simulated,rcp45,MAGICC6 -2114,4.28E+00,Ftot,W/m16,forcing,Simulated,rcp45,MAGICC6 -2115,4.28E+00,Ftot,W/m17,forcing,Simulated,rcp45,MAGICC6 -2116,4.28E+00,Ftot,W/m18,forcing,Simulated,rcp45,MAGICC6 -2117,4.28E+00,Ftot,W/m19,forcing,Simulated,rcp45,MAGICC6 -2118,4.28E+00,Ftot,W/m20,forcing,Simulated,rcp45,MAGICC6 -2119,4.28E+00,Ftot,W/m21,forcing,Simulated,rcp45,MAGICC6 -2120,4.28E+00,Ftot,W/m22,forcing,Simulated,rcp45,MAGICC6 -2121,4.28E+00,Ftot,W/m23,forcing,Simulated,rcp45,MAGICC6 -2122,4.28E+00,Ftot,W/m24,forcing,Simulated,rcp45,MAGICC6 -2123,4.28E+00,Ftot,W/m25,forcing,Simulated,rcp45,MAGICC6 -2124,4.28E+00,Ftot,W/m26,forcing,Simulated,rcp45,MAGICC6 -2125,4.28E+00,Ftot,W/m27,forcing,Simulated,rcp45,MAGICC6 -2126,4.28E+00,Ftot,W/m28,forcing,Simulated,rcp45,MAGICC6 -2127,4.28E+00,Ftot,W/m29,forcing,Simulated,rcp45,MAGICC6 -2128,4.28E+00,Ftot,W/m30,forcing,Simulated,rcp45,MAGICC6 -2129,4.28E+00,Ftot,W/m31,forcing,Simulated,rcp45,MAGICC6 -2130,4.28E+00,Ftot,W/m32,forcing,Simulated,rcp45,MAGICC6 -2131,4.28E+00,Ftot,W/m33,forcing,Simulated,rcp45,MAGICC6 -2132,4.28E+00,Ftot,W/m34,forcing,Simulated,rcp45,MAGICC6 -2133,4.28E+00,Ftot,W/m35,forcing,Simulated,rcp45,MAGICC6 -2134,4.28E+00,Ftot,W/m36,forcing,Simulated,rcp45,MAGICC6 -2135,4.28E+00,Ftot,W/m37,forcing,Simulated,rcp45,MAGICC6 -2136,4.28E+00,Ftot,W/m38,forcing,Simulated,rcp45,MAGICC6 -2137,4.28E+00,Ftot,W/m39,forcing,Simulated,rcp45,MAGICC6 -2138,4.28E+00,Ftot,W/m40,forcing,Simulated,rcp45,MAGICC6 -2139,4.28E+00,Ftot,W/m41,forcing,Simulated,rcp45,MAGICC6 -2140,4.28E+00,Ftot,W/m42,forcing,Simulated,rcp45,MAGICC6 -2141,4.28E+00,Ftot,W/m43,forcing,Simulated,rcp45,MAGICC6 -2142,4.28E+00,Ftot,W/m44,forcing,Simulated,rcp45,MAGICC6 -2143,4.28E+00,Ftot,W/m45,forcing,Simulated,rcp45,MAGICC6 -2144,4.28E+00,Ftot,W/m46,forcing,Simulated,rcp45,MAGICC6 -2145,4.28E+00,Ftot,W/m47,forcing,Simulated,rcp45,MAGICC6 -2146,4.28E+00,Ftot,W/m48,forcing,Simulated,rcp45,MAGICC6 -2147,4.28E+00,Ftot,W/m49,forcing,Simulated,rcp45,MAGICC6 -2148,4.28E+00,Ftot,W/m50,forcing,Simulated,rcp45,MAGICC6 -2149,4.28E+00,Ftot,W/m51,forcing,Simulated,rcp45,MAGICC6 -2150,4.28E+00,Ftot,W/m52,forcing,Simulated,rcp45,MAGICC6 -2151,4.27E+00,Ftot,W/m53,forcing,Simulated,rcp45,MAGICC6 -2152,4.27E+00,Ftot,W/m54,forcing,Simulated,rcp45,MAGICC6 -2153,4.27E+00,Ftot,W/m55,forcing,Simulated,rcp45,MAGICC6 -2154,4.27E+00,Ftot,W/m56,forcing,Simulated,rcp45,MAGICC6 -2155,4.27E+00,Ftot,W/m57,forcing,Simulated,rcp45,MAGICC6 -2156,4.27E+00,Ftot,W/m58,forcing,Simulated,rcp45,MAGICC6 -2157,4.27E+00,Ftot,W/m59,forcing,Simulated,rcp45,MAGICC6 -2158,4.27E+00,Ftot,W/m60,forcing,Simulated,rcp45,MAGICC6 -2159,4.27E+00,Ftot,W/m61,forcing,Simulated,rcp45,MAGICC6 -2160,4.27E+00,Ftot,W/m62,forcing,Simulated,rcp45,MAGICC6 -2161,4.27E+00,Ftot,W/m63,forcing,Simulated,rcp45,MAGICC6 -2162,4.27E+00,Ftot,W/m64,forcing,Simulated,rcp45,MAGICC6 -2163,4.27E+00,Ftot,W/m65,forcing,Simulated,rcp45,MAGICC6 -2164,4.27E+00,Ftot,W/m66,forcing,Simulated,rcp45,MAGICC6 -2165,4.27E+00,Ftot,W/m67,forcing,Simulated,rcp45,MAGICC6 -2166,4.27E+00,Ftot,W/m68,forcing,Simulated,rcp45,MAGICC6 -2167,4.27E+00,Ftot,W/m69,forcing,Simulated,rcp45,MAGICC6 -2168,4.27E+00,Ftot,W/m70,forcing,Simulated,rcp45,MAGICC6 -2169,4.27E+00,Ftot,W/m71,forcing,Simulated,rcp45,MAGICC6 -2170,4.27E+00,Ftot,W/m72,forcing,Simulated,rcp45,MAGICC6 -2171,4.27E+00,Ftot,W/m73,forcing,Simulated,rcp45,MAGICC6 -2172,4.27E+00,Ftot,W/m74,forcing,Simulated,rcp45,MAGICC6 -2173,4.27E+00,Ftot,W/m75,forcing,Simulated,rcp45,MAGICC6 -2174,4.27E+00,Ftot,W/m76,forcing,Simulated,rcp45,MAGICC6 -2175,4.27E+00,Ftot,W/m77,forcing,Simulated,rcp45,MAGICC6 -2176,4.27E+00,Ftot,W/m78,forcing,Simulated,rcp45,MAGICC6 -2177,4.27E+00,Ftot,W/m79,forcing,Simulated,rcp45,MAGICC6 -2178,4.27E+00,Ftot,W/m80,forcing,Simulated,rcp45,MAGICC6 -2179,4.27E+00,Ftot,W/m81,forcing,Simulated,rcp45,MAGICC6 -2180,4.27E+00,Ftot,W/m82,forcing,Simulated,rcp45,MAGICC6 -2181,4.27E+00,Ftot,W/m83,forcing,Simulated,rcp45,MAGICC6 -2182,4.27E+00,Ftot,W/m84,forcing,Simulated,rcp45,MAGICC6 -2183,4.27E+00,Ftot,W/m85,forcing,Simulated,rcp45,MAGICC6 -2184,4.27E+00,Ftot,W/m86,forcing,Simulated,rcp45,MAGICC6 -2185,4.27E+00,Ftot,W/m87,forcing,Simulated,rcp45,MAGICC6 -2186,4.27E+00,Ftot,W/m88,forcing,Simulated,rcp45,MAGICC6 -2187,4.27E+00,Ftot,W/m89,forcing,Simulated,rcp45,MAGICC6 -2188,4.27E+00,Ftot,W/m90,forcing,Simulated,rcp45,MAGICC6 -2189,4.27E+00,Ftot,W/m91,forcing,Simulated,rcp45,MAGICC6 -2190,4.27E+00,Ftot,W/m92,forcing,Simulated,rcp45,MAGICC6 -2191,4.27E+00,Ftot,W/m93,forcing,Simulated,rcp45,MAGICC6 -2192,4.27E+00,Ftot,W/m94,forcing,Simulated,rcp45,MAGICC6 -2193,4.27E+00,Ftot,W/m95,forcing,Simulated,rcp45,MAGICC6 -2194,4.27E+00,Ftot,W/m96,forcing,Simulated,rcp45,MAGICC6 -2195,4.27E+00,Ftot,W/m97,forcing,Simulated,rcp45,MAGICC6 -2196,4.27E+00,Ftot,W/m98,forcing,Simulated,rcp45,MAGICC6 -2197,4.27E+00,Ftot,W/m99,forcing,Simulated,rcp45,MAGICC6 -2198,4.27E+00,Ftot,W/m100,forcing,Simulated,rcp45,MAGICC6 -2199,4.27E+00,Ftot,W/m101,forcing,Simulated,rcp45,MAGICC6 -2200,4.27E+00,Ftot,W/m102,forcing,Simulated,rcp45,MAGICC6 -2201,4.27E+00,Ftot,W/m103,forcing,Simulated,rcp45,MAGICC6 -2202,4.27E+00,Ftot,W/m104,forcing,Simulated,rcp45,MAGICC6 -2203,4.27E+00,Ftot,W/m105,forcing,Simulated,rcp45,MAGICC6 -2204,4.27E+00,Ftot,W/m106,forcing,Simulated,rcp45,MAGICC6 -2205,4.27E+00,Ftot,W/m107,forcing,Simulated,rcp45,MAGICC6 -2206,4.27E+00,Ftot,W/m108,forcing,Simulated,rcp45,MAGICC6 -2207,4.27E+00,Ftot,W/m109,forcing,Simulated,rcp45,MAGICC6 -2208,4.27E+00,Ftot,W/m110,forcing,Simulated,rcp45,MAGICC6 -2209,4.27E+00,Ftot,W/m111,forcing,Simulated,rcp45,MAGICC6 -2210,4.27E+00,Ftot,W/m112,forcing,Simulated,rcp45,MAGICC6 -2211,4.27E+00,Ftot,W/m113,forcing,Simulated,rcp45,MAGICC6 -2212,4.27E+00,Ftot,W/m114,forcing,Simulated,rcp45,MAGICC6 -2213,4.27E+00,Ftot,W/m115,forcing,Simulated,rcp45,MAGICC6 -2214,4.27E+00,Ftot,W/m116,forcing,Simulated,rcp45,MAGICC6 -2215,4.27E+00,Ftot,W/m117,forcing,Simulated,rcp45,MAGICC6 -2216,4.27E+00,Ftot,W/m118,forcing,Simulated,rcp45,MAGICC6 -2217,4.27E+00,Ftot,W/m119,forcing,Simulated,rcp45,MAGICC6 -2218,4.27E+00,Ftot,W/m120,forcing,Simulated,rcp45,MAGICC6 -2219,4.27E+00,Ftot,W/m121,forcing,Simulated,rcp45,MAGICC6 -2220,4.27E+00,Ftot,W/m122,forcing,Simulated,rcp45,MAGICC6 -2221,4.27E+00,Ftot,W/m123,forcing,Simulated,rcp45,MAGICC6 -2222,4.27E+00,Ftot,W/m124,forcing,Simulated,rcp45,MAGICC6 -2223,4.27E+00,Ftot,W/m125,forcing,Simulated,rcp45,MAGICC6 -2224,4.27E+00,Ftot,W/m126,forcing,Simulated,rcp45,MAGICC6 -2225,4.27E+00,Ftot,W/m127,forcing,Simulated,rcp45,MAGICC6 -2226,4.27E+00,Ftot,W/m128,forcing,Simulated,rcp45,MAGICC6 -2227,4.27E+00,Ftot,W/m129,forcing,Simulated,rcp45,MAGICC6 -2228,4.27E+00,Ftot,W/m130,forcing,Simulated,rcp45,MAGICC6 -2229,4.27E+00,Ftot,W/m131,forcing,Simulated,rcp45,MAGICC6 -2230,4.27E+00,Ftot,W/m132,forcing,Simulated,rcp45,MAGICC6 -2231,4.27E+00,Ftot,W/m133,forcing,Simulated,rcp45,MAGICC6 -2232,4.27E+00,Ftot,W/m134,forcing,Simulated,rcp45,MAGICC6 -2233,4.27E+00,Ftot,W/m135,forcing,Simulated,rcp45,MAGICC6 -2234,4.27E+00,Ftot,W/m136,forcing,Simulated,rcp45,MAGICC6 -2235,4.27E+00,Ftot,W/m137,forcing,Simulated,rcp45,MAGICC6 -2236,4.27E+00,Ftot,W/m138,forcing,Simulated,rcp45,MAGICC6 -2237,4.27E+00,Ftot,W/m139,forcing,Simulated,rcp45,MAGICC6 -2238,4.27E+00,Ftot,W/m140,forcing,Simulated,rcp45,MAGICC6 -2239,4.27E+00,Ftot,W/m141,forcing,Simulated,rcp45,MAGICC6 -2240,4.27E+00,Ftot,W/m142,forcing,Simulated,rcp45,MAGICC6 -2241,4.27E+00,Ftot,W/m143,forcing,Simulated,rcp45,MAGICC6 -2242,4.27E+00,Ftot,W/m144,forcing,Simulated,rcp45,MAGICC6 -2243,4.27E+00,Ftot,W/m145,forcing,Simulated,rcp45,MAGICC6 -2244,4.27E+00,Ftot,W/m146,forcing,Simulated,rcp45,MAGICC6 -2245,4.27E+00,Ftot,W/m147,forcing,Simulated,rcp45,MAGICC6 -2246,4.27E+00,Ftot,W/m148,forcing,Simulated,rcp45,MAGICC6 -2247,4.27E+00,Ftot,W/m149,forcing,Simulated,rcp45,MAGICC6 -2248,4.27E+00,Ftot,W/m150,forcing,Simulated,rcp45,MAGICC6 -2249,4.27E+00,Ftot,W/m151,forcing,Simulated,rcp45,MAGICC6 -2250,4.27E+00,Ftot,W/m152,forcing,Simulated,rcp45,MAGICC6 -2251,4.27E+00,Ftot,W/m153,forcing,Simulated,rcp45,MAGICC6 -2252,4.27E+00,Ftot,W/m154,forcing,Simulated,rcp45,MAGICC6 -2253,4.27E+00,Ftot,W/m155,forcing,Simulated,rcp45,MAGICC6 -2254,4.27E+00,Ftot,W/m156,forcing,Simulated,rcp45,MAGICC6 -2255,4.27E+00,Ftot,W/m157,forcing,Simulated,rcp45,MAGICC6 -2256,4.27E+00,Ftot,W/m158,forcing,Simulated,rcp45,MAGICC6 -2257,4.27E+00,Ftot,W/m159,forcing,Simulated,rcp45,MAGICC6 -2258,4.27E+00,Ftot,W/m160,forcing,Simulated,rcp45,MAGICC6 -2259,4.27E+00,Ftot,W/m161,forcing,Simulated,rcp45,MAGICC6 -2260,4.27E+00,Ftot,W/m162,forcing,Simulated,rcp45,MAGICC6 -2261,4.27E+00,Ftot,W/m163,forcing,Simulated,rcp45,MAGICC6 -2262,4.27E+00,Ftot,W/m164,forcing,Simulated,rcp45,MAGICC6 -2263,4.27E+00,Ftot,W/m165,forcing,Simulated,rcp45,MAGICC6 -2264,4.27E+00,Ftot,W/m166,forcing,Simulated,rcp45,MAGICC6 -2265,4.27E+00,Ftot,W/m167,forcing,Simulated,rcp45,MAGICC6 -2266,4.27E+00,Ftot,W/m168,forcing,Simulated,rcp45,MAGICC6 -2267,4.27E+00,Ftot,W/m169,forcing,Simulated,rcp45,MAGICC6 -2268,4.27E+00,Ftot,W/m170,forcing,Simulated,rcp45,MAGICC6 -2269,4.27E+00,Ftot,W/m171,forcing,Simulated,rcp45,MAGICC6 -2270,4.27E+00,Ftot,W/m172,forcing,Simulated,rcp45,MAGICC6 -2271,4.27E+00,Ftot,W/m173,forcing,Simulated,rcp45,MAGICC6 -2272,4.27E+00,Ftot,W/m174,forcing,Simulated,rcp45,MAGICC6 -2273,4.27E+00,Ftot,W/m175,forcing,Simulated,rcp45,MAGICC6 -2274,4.27E+00,Ftot,W/m176,forcing,Simulated,rcp45,MAGICC6 -2275,4.27E+00,Ftot,W/m177,forcing,Simulated,rcp45,MAGICC6 -2276,4.27E+00,Ftot,W/m178,forcing,Simulated,rcp45,MAGICC6 -2277,4.27E+00,Ftot,W/m179,forcing,Simulated,rcp45,MAGICC6 -2278,4.27E+00,Ftot,W/m180,forcing,Simulated,rcp45,MAGICC6 -2279,4.27E+00,Ftot,W/m181,forcing,Simulated,rcp45,MAGICC6 -2280,4.27E+00,Ftot,W/m182,forcing,Simulated,rcp45,MAGICC6 -2281,4.27E+00,Ftot,W/m183,forcing,Simulated,rcp45,MAGICC6 -2282,4.27E+00,Ftot,W/m184,forcing,Simulated,rcp45,MAGICC6 -2283,4.27E+00,Ftot,W/m185,forcing,Simulated,rcp45,MAGICC6 -2284,4.27E+00,Ftot,W/m186,forcing,Simulated,rcp45,MAGICC6 -2285,4.27E+00,Ftot,W/m187,forcing,Simulated,rcp45,MAGICC6 -2286,4.27E+00,Ftot,W/m188,forcing,Simulated,rcp45,MAGICC6 -2287,4.27E+00,Ftot,W/m189,forcing,Simulated,rcp45,MAGICC6 -2288,4.27E+00,Ftot,W/m190,forcing,Simulated,rcp45,MAGICC6 -2289,4.27E+00,Ftot,W/m191,forcing,Simulated,rcp45,MAGICC6 -2290,4.27E+00,Ftot,W/m192,forcing,Simulated,rcp45,MAGICC6 -2291,4.27E+00,Ftot,W/m193,forcing,Simulated,rcp45,MAGICC6 -2292,4.27E+00,Ftot,W/m194,forcing,Simulated,rcp45,MAGICC6 -2293,4.27E+00,Ftot,W/m195,forcing,Simulated,rcp45,MAGICC6 -2294,4.27E+00,Ftot,W/m196,forcing,Simulated,rcp45,MAGICC6 -2295,4.27E+00,Ftot,W/m197,forcing,Simulated,rcp45,MAGICC6 -2296,4.27E+00,Ftot,W/m198,forcing,Simulated,rcp45,MAGICC6 -2297,4.27E+00,Ftot,W/m199,forcing,Simulated,rcp45,MAGICC6 -2298,4.27E+00,Ftot,W/m200,forcing,Simulated,rcp45,MAGICC6 -2299,4.27E+00,Ftot,W/m201,forcing,Simulated,rcp45,MAGICC6 -2300,4.27E+00,Ftot,W/m202,forcing,Simulated,rcp45,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP45/RCP45_MAGICC_co2.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP45/RCP45_MAGICC_co2.csv deleted file mode 100644 index 3554caa85..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP45/RCP45_MAGICC_co2.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC6 RCP4.5,,,,,,, -#Atmospheric CO2,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1766,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1767,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1768,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1769,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1770,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1771,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1772,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1773,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1774,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1775,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1776,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1777,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1778,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1779,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1780,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1781,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1782,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1783,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1784,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1785,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1786,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1787,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1788,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1789,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1790,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1791,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1792,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1793,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1794,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1795,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1796,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1797,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1798,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1799,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1800,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1801,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1802,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1803,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1804,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1805,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1806,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1807,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1808,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1809,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1810,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1811,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1812,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1813,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1814,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1815,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1816,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1817,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1818,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1819,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1820,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1821,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1822,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1823,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1824,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1825,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1826,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1827,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1828,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1829,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1830,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1831,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1832,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1833,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1834,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1835,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1836,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1837,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1838,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1839,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1840,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1841,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1842,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1843,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1844,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1845,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1846,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1847,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1848,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1849,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1850,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1851,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1852,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1853,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1854,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1855,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1856,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1857,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1858,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1859,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1860,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1861,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1862,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1863,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1864,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1865,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1866,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1867,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1868,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1869,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1870,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1871,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1872,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1873,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1874,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1875,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1876,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1877,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1878,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1879,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1880,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1881,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1882,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1883,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1884,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1885,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1886,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1887,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1888,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1889,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1890,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1891,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1892,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1893,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1894,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1895,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1896,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1897,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1898,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1899,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1900,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1901,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1902,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1903,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1904,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1905,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1906,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1907,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1908,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1909,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1910,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1911,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1912,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1913,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1914,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1915,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1916,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1917,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1918,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1919,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1920,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1921,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1922,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1923,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1924,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1925,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1926,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1927,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1928,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1929,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1930,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1931,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1932,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1933,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1934,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1935,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1936,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1937,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1938,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1939,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1940,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1941,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1942,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1943,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1944,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1945,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1946,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1947,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1948,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1949,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1950,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1951,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1952,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1953,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1954,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1955,3.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1956,3.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1957,3.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1958,3.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1959,3.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1960,3.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1961,3.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1962,3.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1963,3.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1964,3.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1965,3.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1966,3.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1967,3.22E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1968,3.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1969,3.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1970,3.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1971,3.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1972,3.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1973,3.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1974,3.30E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1975,3.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1976,3.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1977,3.33E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1978,3.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1979,3.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1980,3.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1981,3.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1982,3.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1983,3.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1984,3.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1985,3.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1986,3.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1987,3.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1988,3.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1989,3.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1990,3.54E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1991,3.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1992,3.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1993,3.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1994,3.58E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1995,3.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1996,3.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1997,3.63E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1998,3.65E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -1999,3.67E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2000,3.69E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2001,3.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2002,3.73E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2003,3.75E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2004,3.77E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2005,3.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2006,3.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2007,3.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2008,3.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2009,3.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2010,3.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2011,3.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2012,3.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2013,3.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2014,3.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2015,4.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2016,4.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2017,4.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2018,4.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2019,4.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2020,4.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2021,4.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2022,4.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2023,4.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2024,4.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2025,4.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2026,4.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2027,4.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2028,4.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2029,4.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2030,4.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2031,4.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2032,4.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2033,4.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2034,4.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2035,4.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2036,4.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2037,4.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2038,4.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2039,4.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2040,4.63E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2041,4.66E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2042,4.68E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2043,4.71E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2044,4.74E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2045,4.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2046,4.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2047,4.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2048,4.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2049,4.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2050,4.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2051,4.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2052,4.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2053,4.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2054,4.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2055,5.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2056,5.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2057,5.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2058,5.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2059,5.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2060,5.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2061,5.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2062,5.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2063,5.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2064,5.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2065,5.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2066,5.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2067,5.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2068,5.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2069,5.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2070,5.28E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2071,5.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2072,5.30E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2073,5.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2074,5.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2075,5.33E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2076,5.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2077,5.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2078,5.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2079,5.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2080,5.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2081,5.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2082,5.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2083,5.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2084,5.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2085,5.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2086,5.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2087,5.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2088,5.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2089,5.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2090,5.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2091,5.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2092,5.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2093,5.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2094,5.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2095,5.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2096,5.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2097,5.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2098,5.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2099,5.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2100,5.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2101,5.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2102,5.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2103,5.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2104,5.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2105,5.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2106,5.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2107,5.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2108,5.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2109,5.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2110,5.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2111,5.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2112,5.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2113,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2114,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2115,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2116,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2117,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2118,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2119,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2120,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2121,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2122,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2123,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2124,5.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2125,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2126,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2127,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2128,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2129,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2130,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2131,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2132,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2133,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2134,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2135,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2136,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2137,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2138,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2139,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2140,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2141,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2142,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2143,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2144,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2145,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2146,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2147,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2148,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2149,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2150,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2151,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2152,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2153,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2154,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2155,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2156,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2157,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2158,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2159,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2160,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2161,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2162,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2163,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2164,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2165,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2166,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2167,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2168,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2169,5.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2170,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2171,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2172,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2173,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2174,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2175,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2176,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2177,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2178,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2179,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2180,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2181,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2182,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2183,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2184,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2185,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2186,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2187,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2188,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2189,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2190,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2191,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2192,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2193,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2194,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2195,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2196,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2197,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2198,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2199,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2200,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2201,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2202,5.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2203,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2204,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2205,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2206,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2207,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2208,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2209,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2210,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2211,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2212,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2213,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2214,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2215,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2216,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2217,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2218,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2219,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2220,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2221,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2222,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2223,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2224,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2225,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2226,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2227,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2228,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2229,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2230,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2231,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2232,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2233,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2234,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2235,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2236,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2237,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2238,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2239,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2240,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2241,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2242,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2243,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2244,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2245,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2246,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2247,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2248,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2249,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2250,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2251,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2252,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2253,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2254,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2255,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2256,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2257,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2258,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2259,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2260,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2261,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2262,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2263,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2264,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2265,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2266,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2267,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2268,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2269,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2270,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2271,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2272,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2273,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2274,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2275,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2276,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2277,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2278,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2279,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2280,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2281,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2282,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2283,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2284,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2285,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2286,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2287,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2288,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2289,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2290,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2291,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2292,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2293,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2294,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2295,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2296,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2297,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2298,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2299,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 -2300,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp45,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP45/RCP45_MAGICC_temp.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP45/RCP45_MAGICC_temp.csv deleted file mode 100644 index 453898ec1..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP45/RCP45_MAGICC_temp.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC global temperature,,,,,,, -# RCP 4.5,,,,,,, -Year,value,vtag,ctag,units,type,Scenario,model -1765,0.00E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1766,-6.73E-04,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1767,8.00E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1768,1.73E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1769,1.36E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1770,-4.08E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1771,-2.61E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1772,6.34E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1773,9.33E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1774,1.08E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1775,1.05E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1776,1.31E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1777,1.93E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1778,2.65E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1779,2.98E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1780,3.15E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1781,3.14E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1782,2.81E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1783,1.72E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1784,-1.51E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1785,-3.51E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1786,-9.93E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1787,1.06E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1788,2.30E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1789,2.75E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1790,8.08E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1791,-2.94E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1792,-2.13E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1793,-6.26E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1794,2.71E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1795,4.93E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1796,1.57E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1797,1.06E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1798,4.51E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1799,8.47E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1800,1.42E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1801,1.99E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1802,2.07E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1803,2.06E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1804,2.15E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1805,2.18E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1806,2.05E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1807,1.92E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1808,1.84E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1809,-9.67E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1810,-3.91E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1811,-4.91E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1812,-3.54E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1813,-2.66E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1814,-2.17E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1815,-3.18E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1816,-6.83E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1817,-7.92E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1818,-5.83E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1819,-4.14E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1820,-2.95E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1821,-2.30E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1822,-1.87E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1823,-1.55E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1824,-1.29E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1825,-1.06E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1826,-8.64E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1827,-6.87E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1828,-5.34E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1829,-4.19E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1830,-4.48E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1831,-9.98E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1832,-2.04E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1833,-2.27E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1834,-1.61E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1835,-2.06E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1836,-3.67E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1837,-3.33E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1838,-2.36E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1839,-1.62E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1840,-1.22E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1841,-1.09E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1842,-9.31E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1843,-7.87E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1844,-7.61E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1845,-6.65E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1846,-4.54E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1847,-2.68E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1848,-9.96E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1849,-8.05E-04,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1850,-5.26E-05,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1851,-3.90E-04,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1852,-5.74E-04,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1853,1.42E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1854,2.82E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1855,4.46E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1856,-1.77E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1857,-1.40E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1858,-1.87E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1859,-1.22E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1860,-7.60E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1861,-4.84E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1862,-4.09E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1863,-5.75E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1864,-4.61E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1865,-3.12E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1866,-2.09E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1867,-1.30E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1868,-1.10E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1869,1.25E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1870,2.15E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1871,2.47E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1872,2.02E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1873,1.20E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1874,3.97E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1875,3.34E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1876,-1.62E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1877,-1.57E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1878,-1.17E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1879,-3.35E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1880,5.04E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1881,1.49E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1882,2.48E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1883,-1.55E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1884,-2.58E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1885,-4.04E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1886,-2.88E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1887,-2.71E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1888,-2.19E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1889,-2.12E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1890,-1.95E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1891,-2.28E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1892,-1.88E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1893,-1.57E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1894,-1.05E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1895,-7.19E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1896,-5.54E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1897,-8.25E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1898,-8.39E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1899,-6.82E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1900,-5.06E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1901,-3.90E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1902,-3.05E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1903,-1.49E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1904,-2.21E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1905,-1.53E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1906,-1.03E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1907,-7.72E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1908,-7.96E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1909,-6.25E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1910,-4.04E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1911,-2.74E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1912,-1.15E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1913,-1.07E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1914,-7.77E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1915,-2.92E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1916,6.35E-03,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1917,3.02E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1918,4.61E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1919,5.73E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1920,6.18E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1921,3.73E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1922,5.10E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1923,6.24E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1924,7.54E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1925,8.54E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1926,9.91E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1927,1.06E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1928,1.16E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1929,1.08E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1930,1.01E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1931,1.11E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1932,1.18E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1933,1.10E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1934,1.27E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1935,1.43E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1936,1.58E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1937,1.69E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1938,1.79E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1939,1.81E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1940,1.88E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1941,1.91E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1942,1.91E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1943,1.77E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1944,1.84E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1945,1.94E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1946,2.04E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1947,2.13E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1948,2.13E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1949,2.18E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1950,2.08E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1951,2.00E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1952,1.88E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1953,1.81E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1954,1.74E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1955,1.84E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1956,2.00E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1957,2.17E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1958,2.25E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1959,2.32E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1960,2.35E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1961,2.07E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1962,1.85E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1963,1.70E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1964,3.35E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1965,-2.27E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1966,2.12E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1967,8.13E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1968,1.13E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1969,7.14E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1970,9.57E-02,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1971,1.53E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1972,1.99E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1973,2.24E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1974,2.28E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1975,2.15E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1976,1.95E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1977,2.47E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1978,3.03E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1979,3.22E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1980,3.58E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1981,3.81E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1982,3.92E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1983,1.52E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1984,1.62E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1985,2.57E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1986,3.15E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1987,3.55E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1988,4.06E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1989,4.53E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1990,4.90E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1991,5.11E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1992,2.23E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1993,1.78E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1994,3.00E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1995,3.93E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1996,4.57E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1997,5.05E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1998,5.54E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -1999,6.03E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2000,6.43E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2001,6.76E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2002,7.03E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2003,7.22E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2004,7.38E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2005,7.55E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2006,7.74E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2007,7.94E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2008,8.15E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2009,8.50E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2010,8.79E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2011,9.06E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2012,9.33E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2013,9.59E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2014,9.86E-01,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2015,1.01E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2016,1.04E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2017,1.07E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2018,1.09E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2019,1.12E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2020,1.14E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2021,1.17E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2022,1.20E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2023,1.22E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2024,1.25E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2025,1.28E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2026,1.30E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2027,1.33E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2028,1.36E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2029,1.38E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2030,1.41E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2031,1.43E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2032,1.46E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2033,1.49E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2034,1.51E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2035,1.54E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2036,1.57E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2037,1.59E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2038,1.62E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2039,1.64E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2040,1.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2041,1.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2042,1.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2043,1.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2044,1.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2045,1.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2046,1.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2047,1.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2048,1.87E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2049,1.89E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2050,1.91E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2051,1.94E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2052,1.96E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2053,1.98E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2054,2.00E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2055,2.02E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2056,2.04E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2057,2.06E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2058,2.08E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2059,2.10E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2060,2.12E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2061,2.13E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2062,2.15E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2063,2.17E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2064,2.19E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2065,2.20E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2066,2.22E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2067,2.23E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2068,2.25E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2069,2.26E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2070,2.27E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2071,2.29E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2072,2.30E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2073,2.31E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2074,2.32E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2075,2.33E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2076,2.34E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2077,2.35E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2078,2.36E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2079,2.37E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2080,2.38E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2081,2.39E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2082,2.39E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2083,2.40E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2084,2.40E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2085,2.41E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2086,2.42E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2087,2.42E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2088,2.43E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2089,2.43E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2090,2.44E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2091,2.44E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2092,2.45E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2093,2.46E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2094,2.46E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2095,2.47E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2096,2.47E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2097,2.48E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2098,2.49E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2099,2.49E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2100,2.50E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2101,2.50E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2102,2.51E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2103,2.51E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2104,2.52E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2105,2.53E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2106,2.53E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2107,2.54E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2108,2.54E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2109,2.55E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2110,2.55E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2111,2.56E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2112,2.56E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2113,2.56E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2114,2.57E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2115,2.57E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2116,2.58E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2117,2.58E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2118,2.58E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2119,2.59E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2120,2.59E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2121,2.59E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2122,2.60E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2123,2.60E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2124,2.60E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2125,2.61E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2126,2.61E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2127,2.61E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2128,2.61E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2129,2.62E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2130,2.62E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2131,2.62E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2132,2.62E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2133,2.63E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2134,2.63E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2135,2.63E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2136,2.63E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2137,2.64E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2138,2.64E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2139,2.64E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2140,2.64E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2141,2.65E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2142,2.65E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2143,2.65E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2144,2.65E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2145,2.65E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2146,2.66E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2147,2.66E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2148,2.66E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2149,2.66E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2150,2.66E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2151,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2152,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2153,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2154,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2155,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2156,2.67E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2157,2.68E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2158,2.68E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2159,2.68E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2160,2.68E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2161,2.68E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2162,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2163,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2164,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2165,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2166,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2167,2.69E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2168,2.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2169,2.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2170,2.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2171,2.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2172,2.70E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2173,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2174,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2175,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2176,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2177,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2178,2.71E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2179,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2180,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2181,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2182,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2183,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2184,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2185,2.72E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2186,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2187,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2188,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2189,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2190,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2191,2.73E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2192,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2193,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2194,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2195,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2196,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2197,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2198,2.74E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2199,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2200,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2201,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2202,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2203,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2204,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2205,2.75E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2206,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2207,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2208,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2209,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2210,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2211,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2212,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2213,2.76E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2214,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2215,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2216,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2217,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2218,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2219,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2220,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2221,2.77E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2222,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2223,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2224,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2225,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2226,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2227,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2228,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2229,2.78E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2230,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2231,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2232,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2233,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2234,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2235,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2236,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2237,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2238,2.79E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2239,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2240,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2241,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2242,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2243,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2244,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2245,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2246,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2247,2.80E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2248,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2249,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2250,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2251,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2252,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2253,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2254,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2255,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2256,2.81E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2257,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2258,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2259,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2260,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2261,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2262,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2263,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2264,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2265,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2266,2.82E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2267,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2268,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2269,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2270,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2271,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2272,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2273,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2274,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2275,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2276,2.83E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2277,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2278,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2279,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2280,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2281,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2282,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2283,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2284,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2285,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2286,2.84E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2287,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2288,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2289,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2290,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2291,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2292,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2293,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2294,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2295,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2296,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2297,2.85E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2298,2.86E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2299,2.86E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 -2300,2.86E+00,Tgav,Temperature,C,Simulated,rcp45,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP60/RCP6_MAGICC_CO2.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP60/RCP6_MAGICC_CO2.csv deleted file mode 100644 index f14b69b9e..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP60/RCP6_MAGICC_CO2.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC atmospheric CO2,,,,,,, -# RCP 6.0,,,,,,, -Year,value,vtag,units,ctag,type,Scenario,model -1765,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1766,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1767,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1768,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1769,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1770,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1771,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1772,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1773,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1774,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1775,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1776,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1777,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1778,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1779,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1780,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1781,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1782,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1783,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1784,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1785,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1786,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1787,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1788,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1789,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1790,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1791,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1792,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1793,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1794,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1795,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1796,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1797,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1798,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1799,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1800,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1801,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1802,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1803,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1804,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1805,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1806,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1807,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1808,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1809,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1810,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1811,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1812,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1813,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1814,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1815,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1816,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1817,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1818,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1819,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1820,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1821,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1822,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1823,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1824,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1825,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1826,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1827,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1828,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1829,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1830,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1831,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1832,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1833,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1834,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1835,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1836,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1837,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1838,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1839,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1840,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1841,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1842,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1843,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1844,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1845,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1846,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1847,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1848,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1849,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1850,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1851,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1852,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1853,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1854,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1855,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1856,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1857,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1858,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1859,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1860,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1861,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1862,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1863,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1864,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1865,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1866,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1867,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1868,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1869,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1870,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1871,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1872,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1873,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1874,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1875,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1876,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1877,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1878,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1879,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1880,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1881,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1882,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1883,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1884,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1885,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1886,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1887,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1888,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1889,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1890,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1891,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1892,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1893,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1894,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1895,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1896,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1897,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1898,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1899,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1900,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1901,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1902,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1903,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1904,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1905,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1906,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1907,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1908,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1909,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1910,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1911,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1912,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1913,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1914,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1915,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1916,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1917,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1918,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1919,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1920,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1921,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1922,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1923,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1924,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1925,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1926,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1927,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1928,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1929,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1930,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1931,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1932,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1933,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1934,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1935,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1936,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1937,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1938,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1939,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1940,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1941,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1942,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1943,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1944,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1945,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1946,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1947,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1948,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1949,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1950,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1951,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1952,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1953,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1954,3.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1955,3.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1956,3.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1957,3.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1958,3.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1959,3.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1960,3.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1961,3.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1962,3.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1963,3.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1964,3.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1965,3.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1966,3.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1967,3.22E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1968,3.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1969,3.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1970,3.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1971,3.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1972,3.28E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1973,3.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1974,3.30E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1975,3.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1976,3.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1977,3.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1978,3.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1979,3.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1980,3.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1981,3.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1982,3.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1983,3.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1984,3.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1985,3.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1986,3.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1987,3.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1988,3.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1989,3.53E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1990,3.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1991,3.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1992,3.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1993,3.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1994,3.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1995,3.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1996,3.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1997,3.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1998,3.67E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -1999,3.68E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2000,3.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2001,3.71E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2002,3.74E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2003,3.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2004,3.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2005,3.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2006,3.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2007,3.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2008,3.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2009,3.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2010,3.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2011,3.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2012,3.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2013,3.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2014,3.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2015,4.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2016,4.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2017,4.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2018,4.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2019,4.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2020,4.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2021,4.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2022,4.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2023,4.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2024,4.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2025,4.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2026,4.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2027,4.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2028,4.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2029,4.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2030,4.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2031,4.33E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2032,4.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2033,4.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2034,4.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2035,4.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2036,4.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2037,4.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2038,4.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2039,4.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2040,4.54E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2041,4.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2042,4.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2043,4.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2044,4.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2045,4.67E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2046,4.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2047,4.73E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2048,4.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2049,4.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2050,4.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2051,4.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2052,4.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2053,4.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2054,4.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2055,4.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2056,5.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2057,5.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2058,5.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2059,5.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2060,5.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2061,5.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2062,5.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2063,5.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2064,5.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2065,5.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2066,5.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2067,5.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2068,5.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2069,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2070,5.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2071,5.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2072,5.65E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2073,5.69E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2074,5.74E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2075,5.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2076,5.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2077,5.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2078,5.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2079,5.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2080,6.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2081,6.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2082,6.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2083,6.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2084,6.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2085,6.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2086,6.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2087,6.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2088,6.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2089,6.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2090,6.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2091,6.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2092,6.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2093,6.53E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2094,6.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2095,6.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2096,6.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2097,6.67E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2098,6.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2099,6.74E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2100,6.77E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2101,6.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2102,6.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2103,6.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2104,6.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2105,6.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2106,6.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2107,6.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2108,7.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2109,7.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2110,7.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2111,7.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2112,7.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2113,7.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2114,7.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2115,7.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2116,7.22E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2117,7.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2118,7.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2119,7.28E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2120,7.30E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2121,7.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2122,7.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2123,7.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2124,7.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2125,7.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2126,7.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2127,7.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2128,7.44E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2129,7.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2130,7.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2131,7.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2132,7.49E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2133,7.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2134,7.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2135,7.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2136,7.53E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2137,7.54E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2138,7.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2139,7.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2140,7.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2141,7.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2142,7.58E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2143,7.58E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2144,7.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2145,7.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2146,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2147,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2148,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2149,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2150,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2151,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2152,7.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2153,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2154,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2155,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2156,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2157,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2158,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2159,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2160,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2161,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2162,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2163,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2164,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2165,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2166,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2167,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2168,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2169,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2170,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2171,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2172,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2173,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2174,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2175,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2176,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2177,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2178,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2179,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2180,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2181,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2182,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2183,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2184,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2185,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2186,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2187,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2188,7.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2189,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2190,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2191,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2192,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2193,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2194,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2195,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2196,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2197,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2198,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2199,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2200,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2201,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2202,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2203,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2204,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2205,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2206,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2207,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2208,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2209,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2210,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2211,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2212,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2213,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2214,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2215,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2216,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2217,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2218,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2219,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2220,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2221,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2222,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2223,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2224,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2225,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2226,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2227,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2228,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2229,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2230,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2231,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2232,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2233,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2234,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2235,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2236,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2237,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2238,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2239,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2240,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2241,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2242,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2243,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2244,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2245,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2246,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2247,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2248,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2249,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2250,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2251,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2252,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2253,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2254,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2255,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2256,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2257,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2258,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2259,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2260,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2261,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2262,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2263,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2264,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2265,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2266,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2267,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2268,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2269,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2270,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2271,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2272,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2273,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2274,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2275,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2276,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2277,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2278,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2279,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2280,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2281,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2282,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2283,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2284,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2285,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2286,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2287,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2288,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2289,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2290,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2291,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2292,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2293,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2294,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2295,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2296,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2297,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2298,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2299,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 -2300,7.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp60,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP60/RCP6_MAGICC_RF.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP60/RCP6_MAGICC_RF.csv deleted file mode 100644 index bd4cede9c..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP60/RCP6_MAGICC_RF.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC6 RCP 6,,,,,,, -# Total Including Volcanic forcing W/m2,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,0.00E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1766,1.96E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1767,6.16E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1768,3.13E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1769,-1.21E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1770,3.28E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1771,7.06E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1772,6.43E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1773,5.23E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1774,3.90E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1775,3.38E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1776,5.50E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1777,9.16E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1778,1.19E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1779,1.11E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1780,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1781,9.51E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1782,2.20E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1783,-1.36E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1784,-1.49E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1785,8.68E-03,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1786,1.06E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1787,1.36E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1788,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1789,-8.59E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1790,-2.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1791,-4.76E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1792,4.83E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1793,7.60E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1794,4.26E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1795,6.17E-03,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1796,1.90E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1797,4.02E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1798,4.99E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1799,5.65E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1800,8.55E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1801,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1802,7.98E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1803,7.19E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1804,7.57E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1805,7.05E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1806,5.77E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1807,5.21E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1808,-9.30E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1809,-2.23E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1810,-1.73E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1811,-6.43E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1812,-3.80E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1813,-2.41E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1814,-1.42E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1815,-3.17E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1816,-2.42E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1817,-8.29E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1818,-1.67E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1819,7.32E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1820,8.56E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1821,8.74E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1822,9.07E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1823,9.55E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1824,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1825,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1826,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1827,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1828,1.64E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1829,1.10E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1830,-2.72E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1831,-6.79E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1832,-4.88E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1833,-1.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1834,-7.94E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1835,-1.31E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1836,-6.26E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1837,-8.84E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1838,1.22E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1839,1.40E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1840,8.19E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1841,9.19E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1842,8.31E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1843,3.89E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1844,7.34E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1845,1.39E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1846,1.79E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1847,2.16E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1848,2.37E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1849,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1850,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1851,1.75E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1852,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1853,1.60E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1854,1.43E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1855,-1.22E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1856,-7.65E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1857,-5.89E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1858,-6.96E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1859,1.29E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1860,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1861,6.30E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1862,-1.17E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1863,7.46E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1864,1.33E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1865,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1866,1.42E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1867,1.53E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1868,1.92E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1869,2.25E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1870,2.50E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1871,2.22E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1872,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1873,1.16E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1874,1.26E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1875,7.39E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1876,3.78E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1877,8.33E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1878,1.20E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1879,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1880,1.84E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1881,2.10E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1882,4.89E-03,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1883,-1.60E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1884,-1.47E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1885,-4.31E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1886,-5.05E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1887,-1.94E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1888,-3.04E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1889,-3.30E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1890,-3.82E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1891,-1.39E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1892,1.72E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1893,1.99E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1894,2.54E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1895,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1896,-9.06E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1897,-4.80E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1898,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1899,1.71E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1900,1.94E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1901,1.38E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1902,-6.86E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1903,-5.85E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1904,-4.29E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1905,1.48E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1906,1.66E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1907,1.08E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1908,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1909,2.40E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1910,2.44E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1911,2.42E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1912,-2.31E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1913,5.16E-02,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1914,2.59E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1915,3.65E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1916,4.09E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1917,4.37E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1918,4.24E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1919,3.93E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1920,2.19E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1921,3.43E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1922,3.90E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1923,3.83E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1924,3.96E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1925,4.53E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1926,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1927,4.93E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1928,3.91E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1929,3.92E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1930,4.48E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1931,4.44E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1932,3.81E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1933,4.68E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1934,5.02E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1935,5.80E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1936,6.18E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1937,6.07E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1938,5.95E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1939,6.15E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1940,6.17E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1941,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1942,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1943,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1944,5.86E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1945,6.30E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1946,6.54E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1947,6.60E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1948,6.73E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1949,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1950,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1951,5.39E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1952,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1953,4.98E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1954,5.46E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1955,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1956,7.14E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1957,7.55E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1958,7.45E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1959,7.28E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1960,5.68E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1961,4.70E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1962,3.55E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1963,-4.96E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1964,-3.40E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1965,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1966,5.21E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1967,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1968,2.02E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1969,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1970,7.46E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1971,8.63E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1972,8.67E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1973,7.93E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1974,5.73E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1975,6.06E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1976,8.85E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1977,1.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1978,1.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1979,1.21E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1980,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1981,1.09E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1982,-1.28E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1983,4.80E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1984,9.59E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1985,1.08E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1986,1.14E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1987,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1988,1.42E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1989,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1990,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1991,-3.64E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1992,2.65E-01,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1993,1.06E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1994,1.34E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1995,1.47E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1996,1.54E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1997,1.63E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1998,1.75E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -1999,1.85E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2000,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2001,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2002,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2003,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2004,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2005,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2006,1.93E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2007,1.95E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2008,1.98E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2009,2.11E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2010,2.13E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2011,2.17E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2012,2.21E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2013,2.25E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2014,2.29E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2015,2.33E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2016,2.36E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2017,2.40E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2018,2.43E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2019,2.47E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2020,2.51E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2021,2.54E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2022,2.58E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2023,2.62E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2024,2.66E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2025,2.69E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2026,2.73E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2027,2.77E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2028,2.81E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2029,2.85E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2030,2.88E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2031,2.91E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2032,2.93E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2033,2.96E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2034,2.99E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2035,3.02E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2036,3.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2037,3.08E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2038,3.11E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2039,3.14E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2040,3.18E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2041,3.22E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2042,3.25E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2043,3.29E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2044,3.33E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2045,3.37E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2046,3.41E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2047,3.44E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2048,3.48E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2049,3.52E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2050,3.56E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2051,3.60E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2052,3.63E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2053,3.67E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2054,3.71E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2055,3.74E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2056,3.78E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2057,3.82E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2058,3.86E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2059,3.90E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2060,3.94E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2061,4.00E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2062,4.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2063,4.10E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2064,4.16E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2065,4.21E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2066,4.26E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2067,4.32E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2068,4.37E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2069,4.43E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2070,4.48E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2071,4.53E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2072,4.58E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2073,4.63E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2074,4.67E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2075,4.72E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2076,4.77E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2077,4.82E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2078,4.87E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2079,4.91E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2080,4.96E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2081,5.00E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2082,5.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2083,5.07E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2084,5.11E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2085,5.14E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2086,5.17E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2087,5.20E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2088,5.22E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2089,5.25E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2090,5.27E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2091,5.29E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2092,5.31E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2093,5.33E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2094,5.35E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2095,5.38E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2096,5.40E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2097,5.42E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2098,5.44E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2099,5.46E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2100,5.48E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2101,5.50E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2102,5.52E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2103,5.54E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2104,5.57E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2105,5.59E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2106,5.61E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2107,5.62E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2108,5.64E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2109,5.66E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2110,5.68E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2111,5.70E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2112,5.72E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2113,5.73E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2114,5.75E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2115,5.77E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2116,5.78E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2117,5.80E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2118,5.81E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2119,5.83E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2120,5.84E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2121,5.86E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2122,5.87E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2123,5.88E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2124,5.90E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2125,5.91E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2126,5.92E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2127,5.93E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2128,5.94E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2129,5.95E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2130,5.96E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2131,5.97E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2132,5.98E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2133,5.98E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2134,5.99E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2135,6.00E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2136,6.01E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2137,6.01E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2138,6.02E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2139,6.02E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2140,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2141,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2142,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2143,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2144,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2145,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2146,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2147,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2148,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2149,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2150,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2151,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2152,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2153,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2154,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2155,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2156,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2157,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2158,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2159,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2160,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2161,6.05E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2162,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2163,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2164,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2165,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2166,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2167,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2168,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2169,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2170,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2171,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2172,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2173,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2174,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2175,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2176,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2177,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2178,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2179,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2180,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2181,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2182,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2183,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2184,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2185,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2186,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2187,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2188,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2189,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2190,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2191,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2192,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2193,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2194,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2195,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2196,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2197,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2198,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2199,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2200,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2201,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2202,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2203,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2204,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2205,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2206,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2207,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2208,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2209,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2210,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2211,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2212,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2213,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2214,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2215,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2216,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2217,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2218,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2219,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2220,6.04E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2221,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2222,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2223,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2224,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2225,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2226,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2227,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2228,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2229,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2230,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2231,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2232,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2233,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2234,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2235,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2236,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2237,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2238,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2239,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2240,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2241,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2242,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2243,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2244,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2245,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2246,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2247,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2248,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2249,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2250,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2251,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2252,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2253,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2254,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2255,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2256,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2257,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2258,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2259,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2260,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2261,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2262,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2263,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2264,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2265,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2266,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2267,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2268,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2269,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2270,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2271,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2272,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2273,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2274,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2275,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2276,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2277,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2278,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2279,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2280,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2281,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2282,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2283,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2284,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2285,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2286,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2287,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2288,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2289,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2290,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2291,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2292,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2293,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2294,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2295,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2296,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2297,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2298,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2299,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 -2300,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp60,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP60/RCP6_MAGICC_temp.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP60/RCP6_MAGICC_temp.csv deleted file mode 100644 index 96447ca14..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP60/RCP6_MAGICC_temp.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC global temperature,,,,,,, -# RCP 6.0,,,,,,, -Year,value,vtag,ctag,units,type,Scenario,model -1765,0.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1766,-6.73E-04,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1767,8.00E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1768,1.73E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1769,1.36E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1770,-4.08E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1771,-2.61E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1772,6.34E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1773,9.33E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1774,1.08E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1775,1.05E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1776,1.31E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1777,1.93E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1778,2.65E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1779,2.98E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1780,3.15E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1781,3.14E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1782,2.81E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1783,1.72E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1784,-1.51E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1785,-3.51E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1786,-9.93E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1787,1.06E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1788,2.30E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1789,2.75E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1790,8.08E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1791,-2.94E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1792,-2.13E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1793,-6.26E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1794,2.71E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1795,4.93E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1796,1.57E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1797,1.06E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1798,4.51E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1799,8.47E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1800,1.42E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1801,1.99E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1802,2.07E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1803,2.06E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1804,2.15E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1805,2.18E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1806,2.05E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1807,1.92E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1808,1.84E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1809,-9.67E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1810,-3.91E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1811,-4.91E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1812,-3.54E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1813,-2.66E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1814,-2.17E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1815,-3.18E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1816,-6.83E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1817,-7.92E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1818,-5.83E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1819,-4.14E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1820,-2.95E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1821,-2.30E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1822,-1.87E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1823,-1.55E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1824,-1.29E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1825,-1.06E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1826,-8.64E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1827,-6.87E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1828,-5.34E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1829,-4.19E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1830,-4.48E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1831,-9.98E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1832,-2.04E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1833,-2.27E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1834,-1.61E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1835,-2.06E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1836,-3.67E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1837,-3.33E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1838,-2.36E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1839,-1.62E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1840,-1.22E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1841,-1.09E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1842,-9.31E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1843,-7.87E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1844,-7.61E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1845,-6.65E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1846,-4.54E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1847,-2.68E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1848,-9.96E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1849,-8.05E-04,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1850,-5.26E-05,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1851,-3.90E-04,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1852,-5.74E-04,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1853,1.42E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1854,2.82E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1855,4.46E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1856,-1.77E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1857,-1.40E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1858,-1.87E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1859,-1.22E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1860,-7.60E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1861,-4.84E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1862,-4.09E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1863,-5.75E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1864,-4.61E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1865,-3.12E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1866,-2.09E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1867,-1.30E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1868,-1.10E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1869,1.25E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1870,2.15E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1871,2.47E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1872,2.02E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1873,1.20E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1874,3.97E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1875,3.34E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1876,-1.62E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1877,-1.57E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1878,-1.17E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1879,-3.35E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1880,5.04E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1881,1.49E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1882,2.48E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1883,-1.55E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1884,-2.58E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1885,-4.04E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1886,-2.88E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1887,-2.71E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1888,-2.19E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1889,-2.12E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1890,-1.95E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1891,-2.28E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1892,-1.88E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1893,-1.57E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1894,-1.05E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1895,-7.19E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1896,-5.54E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1897,-8.25E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1898,-8.39E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1899,-6.82E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1900,-5.06E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1901,-3.90E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1902,-3.05E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1903,-1.49E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1904,-2.21E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1905,-1.53E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1906,-1.03E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1907,-7.72E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1908,-7.96E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1909,-6.25E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1910,-4.04E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1911,-2.74E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1912,-1.15E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1913,-1.07E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1914,-7.77E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1915,-2.92E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1916,6.35E-03,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1917,3.02E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1918,4.61E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1919,5.73E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1920,6.18E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1921,3.73E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1922,5.10E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1923,6.24E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1924,7.54E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1925,8.54E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1926,9.91E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1927,1.06E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1928,1.16E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1929,1.08E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1930,1.01E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1931,1.11E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1932,1.18E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1933,1.10E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1934,1.27E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1935,1.43E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1936,1.58E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1937,1.69E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1938,1.79E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1939,1.81E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1940,1.88E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1941,1.91E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1942,1.91E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1943,1.77E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1944,1.84E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1945,1.94E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1946,2.04E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1947,2.13E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1948,2.13E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1949,2.18E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1950,2.08E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1951,2.00E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1952,1.88E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1953,1.81E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1954,1.74E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1955,1.84E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1956,2.00E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1957,2.17E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1958,2.25E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1959,2.32E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1960,2.35E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1961,2.07E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1962,1.85E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1963,1.70E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1964,3.35E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1965,-2.27E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1966,2.12E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1967,8.13E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1968,1.13E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1969,7.14E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1970,9.57E-02,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1971,1.53E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1972,1.99E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1973,2.24E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1974,2.28E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1975,2.15E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1976,1.95E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1977,2.47E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1978,3.03E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1979,3.22E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1980,3.58E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1981,3.81E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1982,3.92E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1983,1.52E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1984,1.62E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1985,2.57E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1986,3.15E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1987,3.55E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1988,4.06E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1989,4.53E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1990,4.90E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1991,5.11E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1992,2.23E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1993,1.78E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1994,3.00E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1995,3.93E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1996,4.57E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1997,5.05E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1998,5.54E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -1999,6.03E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2000,6.43E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2001,6.76E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2002,7.03E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2003,7.22E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2004,7.38E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2005,7.54E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2006,7.72E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2007,7.89E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2008,8.08E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2009,8.40E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2010,8.67E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2011,8.92E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2012,9.16E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2013,9.41E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2014,9.65E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2015,9.89E-01,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2016,1.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2017,1.04E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2018,1.06E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2019,1.08E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2020,1.11E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2021,1.13E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2022,1.15E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2023,1.18E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2024,1.20E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2025,1.22E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2026,1.25E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2027,1.27E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2028,1.30E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2029,1.32E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2030,1.34E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2031,1.37E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2032,1.39E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2033,1.41E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2034,1.43E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2035,1.45E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2036,1.47E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2037,1.49E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2038,1.51E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2039,1.53E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2040,1.55E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2041,1.57E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2042,1.59E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2043,1.62E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2044,1.64E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2045,1.66E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2046,1.69E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2047,1.71E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2048,1.74E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2049,1.76E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2050,1.78E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2051,1.81E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2052,1.83E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2053,1.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2054,1.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2055,1.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2056,1.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2057,1.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2058,1.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2059,2.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2060,2.02E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2061,2.05E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2062,2.08E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2063,2.11E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2064,2.14E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2065,2.17E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2066,2.21E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2067,2.24E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2068,2.27E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2069,2.30E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2070,2.34E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2071,2.37E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2072,2.40E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2073,2.43E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2074,2.46E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2075,2.50E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2076,2.53E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2077,2.56E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2078,2.59E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2079,2.62E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2080,2.65E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2081,2.68E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2082,2.71E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2083,2.74E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2084,2.77E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2085,2.79E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2086,2.82E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2087,2.84E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2088,2.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2089,2.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2090,2.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2091,2.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2092,2.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2093,2.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2094,2.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2095,3.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2096,3.03E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2097,3.05E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2098,3.07E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2099,3.09E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2100,3.11E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2101,3.12E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2102,3.14E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2103,3.16E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2104,3.18E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2105,3.19E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2106,3.21E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2107,3.23E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2108,3.24E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2109,3.26E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2110,3.28E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2111,3.29E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2112,3.31E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2113,3.32E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2114,3.34E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2115,3.35E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2116,3.37E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2117,3.38E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2118,3.40E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2119,3.41E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2120,3.42E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2121,3.44E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2122,3.45E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2123,3.46E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2124,3.47E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2125,3.49E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2126,3.50E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2127,3.51E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2128,3.52E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2129,3.53E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2130,3.54E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2131,3.55E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2132,3.56E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2133,3.57E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2134,3.58E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2135,3.59E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2136,3.60E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2137,3.61E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2138,3.62E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2139,3.63E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2140,3.63E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2141,3.64E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2142,3.65E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2143,3.66E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2144,3.66E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2145,3.67E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2146,3.67E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2147,3.68E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2148,3.69E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2149,3.69E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2150,3.70E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2151,3.70E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2152,3.71E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2153,3.71E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2154,3.71E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2155,3.72E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2156,3.72E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2157,3.73E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2158,3.73E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2159,3.73E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2160,3.74E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2161,3.74E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2162,3.74E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2163,3.75E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2164,3.75E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2165,3.75E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2166,3.76E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2167,3.76E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2168,3.76E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2169,3.77E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2170,3.77E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2171,3.77E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2172,3.78E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2173,3.78E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2174,3.78E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2175,3.79E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2176,3.79E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2177,3.79E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2178,3.79E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2179,3.80E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2180,3.80E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2181,3.80E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2182,3.81E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2183,3.81E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2184,3.81E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2185,3.81E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2186,3.82E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2187,3.82E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2188,3.82E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2189,3.82E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2190,3.83E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2191,3.83E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2192,3.83E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2193,3.83E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2194,3.84E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2195,3.84E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2196,3.84E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2197,3.84E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2198,3.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2199,3.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2200,3.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2201,3.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2202,3.85E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2203,3.86E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2204,3.86E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2205,3.86E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2206,3.86E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2207,3.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2208,3.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2209,3.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2210,3.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2211,3.87E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2212,3.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2213,3.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2214,3.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2215,3.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2216,3.88E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2217,3.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2218,3.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2219,3.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2220,3.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2221,3.89E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2222,3.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2223,3.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2224,3.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2225,3.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2226,3.90E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2227,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2228,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2229,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2230,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2231,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2232,3.91E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2233,3.92E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2234,3.92E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2235,3.92E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2236,3.92E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2237,3.92E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2238,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2239,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2240,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2241,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2242,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2243,3.93E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2244,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2245,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2246,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2247,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2248,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2249,3.94E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2250,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2251,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2252,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2253,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2254,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2255,3.95E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2256,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2257,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2258,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2259,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2260,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2261,3.96E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2262,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2263,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2264,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2265,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2266,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2267,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2268,3.97E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2269,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2270,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2271,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2272,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2273,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2274,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2275,3.98E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2276,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2277,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2278,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2279,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2280,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2281,3.99E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2282,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2283,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2284,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2285,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2286,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2287,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2288,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2289,4.00E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2290,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2291,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2292,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2293,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2294,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2295,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2296,4.01E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2297,4.02E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2298,4.02E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2299,4.02E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 -2300,4.02E+00,Tgav,Temperature,C,Simulated,rcp60,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP85/RCP85_MAGICC_CO2.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP85/RCP85_MAGICC_CO2.csv deleted file mode 100644 index eb9392d7d..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP85/RCP85_MAGICC_CO2.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC6 RCP8.5,,,,,,, -#Atmospheric CO2,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1766,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1767,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1768,2.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1769,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1770,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1771,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1772,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1773,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1774,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1775,2.79E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1776,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1777,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1778,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1779,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1780,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1781,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1782,2.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1783,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1784,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1785,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1786,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1787,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1788,2.81E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1789,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1790,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1791,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1792,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1793,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1794,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1795,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1796,2.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1797,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1798,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1799,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1800,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1801,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1802,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1803,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1804,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1805,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1806,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1807,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1808,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1809,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1810,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1811,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1812,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1813,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1814,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1815,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1816,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1817,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1818,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1819,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1820,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1821,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1822,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1823,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1824,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1825,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1826,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1827,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1828,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1829,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1830,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1831,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1832,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1833,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1834,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1835,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1836,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1837,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1838,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1839,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1840,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1841,2.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1842,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1843,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1844,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1845,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1846,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1847,2.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1848,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1849,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1850,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1851,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1852,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1853,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1854,2.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1855,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1856,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1857,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1858,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1859,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1860,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1861,2.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1862,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1863,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1864,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1865,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1866,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1867,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1868,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1869,2.87E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1870,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1871,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1872,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1873,2.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1874,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1875,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1876,2.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1877,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1878,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1879,2.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1880,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1881,2.91E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1882,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1883,2.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1884,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1885,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1886,2.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1887,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1888,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1889,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1890,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1891,2.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1892,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1893,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1894,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1895,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1896,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1897,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1898,2.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1899,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1900,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1901,2.96E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1902,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1903,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1904,2.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1905,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1906,2.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1907,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1908,2.99E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1909,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1910,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1911,3.00E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1912,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1913,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1914,3.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1915,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1916,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1917,3.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1918,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1919,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1920,3.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1921,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1922,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1923,3.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1924,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1925,3.05E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1926,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1927,3.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1928,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1929,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1930,3.07E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1931,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1932,3.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1933,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1934,3.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1935,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1936,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1937,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1938,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1939,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1940,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1941,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1942,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1943,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1944,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1945,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1946,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1947,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1948,3.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1949,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1950,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1951,3.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1952,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1953,3.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1954,3.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1955,3.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1956,3.14E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1957,3.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1958,3.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1959,3.16E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1960,3.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1961,3.17E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1962,3.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1963,3.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1964,3.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1965,3.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1966,3.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1967,3.22E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1968,3.23E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1969,3.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1970,3.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1971,3.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1972,3.28E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1973,3.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1974,3.30E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1975,3.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1976,3.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1977,3.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1978,3.36E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1979,3.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1980,3.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1981,3.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1982,3.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1983,3.43E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1984,3.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1985,3.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1986,3.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1987,3.50E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1988,3.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1989,3.53E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1990,3.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1991,3.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1992,3.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1993,3.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1994,3.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1995,3.61E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1996,3.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1997,3.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1998,3.67E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -1999,3.68E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2000,3.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2001,3.71E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2002,3.74E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2003,3.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2004,3.78E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2005,3.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2006,3.82E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2007,3.84E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2008,3.86E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2009,3.88E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2010,3.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2011,3.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2012,3.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2013,3.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2014,4.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2015,4.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2016,4.06E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2017,4.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2018,4.12E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2019,4.15E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2020,4.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2021,4.21E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2022,4.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2023,4.27E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2024,4.31E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2025,4.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2026,4.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2027,4.41E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2028,4.45E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2029,4.48E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2030,4.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2031,4.56E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2032,4.60E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2033,4.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2034,4.68E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2035,4.72E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2036,4.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2037,4.80E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2038,4.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2039,4.89E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2040,4.94E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2041,4.98E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2042,5.03E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2043,5.08E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2044,5.13E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2045,5.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2046,5.24E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2047,5.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2048,5.35E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2049,5.40E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2050,5.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2051,5.52E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2052,5.58E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2053,5.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2054,5.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2055,5.77E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2056,5.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2057,5.90E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2058,5.97E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2059,6.04E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2060,6.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2061,6.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2062,6.25E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2063,6.32E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2064,6.39E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2065,6.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2066,6.54E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2067,6.62E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2068,6.70E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2069,6.77E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2070,6.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2071,6.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2072,7.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2073,7.09E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2074,7.18E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2075,7.26E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2076,7.34E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2077,7.42E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2078,7.51E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2079,7.59E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2080,7.68E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2081,7.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2082,7.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2083,7.93E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2084,8.02E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2085,8.11E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2086,8.20E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2087,8.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2088,8.37E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2089,8.46E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2090,8.55E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2091,8.64E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2092,8.73E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2093,8.83E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2094,8.92E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2095,9.01E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2096,9.10E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2097,9.19E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2098,9.29E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2099,9.38E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2100,9.47E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2101,9.57E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2102,9.66E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2103,9.76E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2104,9.85E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2105,9.95E+02,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2106,1.00E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2107,1.01E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2108,1.02E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2109,1.03E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2110,1.04E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2111,1.05E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2112,1.06E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2113,1.07E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2114,1.08E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2115,1.09E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2116,1.10E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2117,1.11E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2118,1.12E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2119,1.13E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2120,1.14E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2121,1.15E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2122,1.16E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2123,1.17E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2124,1.18E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2125,1.19E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2126,1.20E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2127,1.21E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2128,1.22E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2129,1.23E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2130,1.24E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2131,1.25E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2132,1.26E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2133,1.27E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2134,1.28E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2135,1.29E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2136,1.30E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2137,1.31E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2138,1.32E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2139,1.33E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2140,1.34E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2141,1.35E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2142,1.36E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2143,1.37E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2144,1.38E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2145,1.39E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2146,1.40E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2147,1.41E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2148,1.42E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2149,1.44E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2150,1.45E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2151,1.46E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2152,1.47E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2153,1.48E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2154,1.49E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2155,1.50E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2156,1.51E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2157,1.52E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2158,1.53E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2159,1.54E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2160,1.55E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2161,1.56E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2162,1.56E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2163,1.57E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2164,1.58E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2165,1.59E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2166,1.60E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2167,1.61E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2168,1.62E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2169,1.63E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2170,1.64E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2171,1.64E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2172,1.65E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2173,1.66E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2174,1.67E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2175,1.68E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2176,1.69E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2177,1.69E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2178,1.70E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2179,1.71E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2180,1.72E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2181,1.72E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2182,1.73E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2183,1.74E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2184,1.75E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2185,1.75E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2186,1.76E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2187,1.77E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2188,1.77E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2189,1.78E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2190,1.79E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2191,1.79E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2192,1.80E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2193,1.81E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2194,1.81E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2195,1.82E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2196,1.82E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2197,1.83E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2198,1.83E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2199,1.84E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2200,1.85E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2201,1.85E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2202,1.86E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2203,1.86E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2204,1.87E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2205,1.87E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2206,1.88E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2207,1.88E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2208,1.89E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2209,1.89E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2210,1.89E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2211,1.90E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2212,1.90E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2213,1.91E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2214,1.91E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2215,1.91E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2216,1.92E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2217,1.92E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2218,1.92E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2219,1.93E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2220,1.93E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2221,1.93E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2222,1.94E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2223,1.94E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2224,1.94E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2225,1.95E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2226,1.95E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2227,1.95E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2228,1.95E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2229,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2230,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2231,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2232,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2233,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2234,1.96E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2235,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2236,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2237,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2238,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2239,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2240,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2241,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2242,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2243,1.97E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2244,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2245,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2246,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2247,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2248,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2249,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2250,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2251,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2252,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2253,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2254,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2255,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2256,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2257,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2258,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2259,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2260,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2261,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2262,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2263,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2264,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2265,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2266,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2267,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2268,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2269,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2270,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2271,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2272,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2273,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2274,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2275,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2276,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2277,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2278,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2279,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2280,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2281,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2282,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2283,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2284,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2285,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2286,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2287,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2288,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2289,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2290,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2291,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2292,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2293,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2294,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2295,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2296,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2297,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2298,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2299,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 -2300,1.98E+03,atmos_co2,ppmv,carbon_cycle,Simulated,rcp85,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP85/RCP85_MAGICC_RF.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP85/RCP85_MAGICC_RF.csv deleted file mode 100644 index 500b0c6cb..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP85/RCP85_MAGICC_RF.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC6 RCP8.5,,,,,,, -# total including volcanic radiative forcing W/m2,,,,,,, -year,value,vtag,units,ctag,type,Scenario,model -1765,0.00E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1766,1.96E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1767,6.16E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1768,3.13E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1769,-1.21E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1770,3.28E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1771,7.06E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1772,6.43E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1773,5.23E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1774,3.90E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1775,3.38E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1776,5.50E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1777,9.16E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1778,1.19E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1779,1.11E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1780,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1781,9.51E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1782,2.20E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1783,-1.36E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1784,-1.49E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1785,8.68E-03,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1786,1.06E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1787,1.36E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1788,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1789,-8.59E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1790,-2.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1791,-4.76E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1792,4.83E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1793,7.60E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1794,4.26E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1795,6.17E-03,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1796,1.90E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1797,4.02E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1798,4.99E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1799,5.65E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1800,8.55E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1801,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1802,7.98E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1803,7.19E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1804,7.57E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1805,7.05E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1806,5.77E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1807,5.21E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1808,-9.30E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1809,-2.23E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1810,-1.73E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1811,-6.43E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1812,-3.80E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1813,-2.41E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1814,-1.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1815,-3.17E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1816,-2.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1817,-8.29E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1818,-1.67E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1819,7.32E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1820,8.56E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1821,8.74E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1822,9.07E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1823,9.55E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1824,1.07E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1825,1.23E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1826,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1827,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1828,1.64E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1829,1.10E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1830,-2.72E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1831,-6.79E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1832,-4.88E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1833,-1.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1834,-7.94E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1835,-1.31E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1836,-6.26E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1837,-8.84E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1838,1.22E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1839,1.40E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1840,8.19E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1841,9.19E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1842,8.31E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1843,3.89E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1844,7.34E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1845,1.39E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1846,1.79E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1847,2.16E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1848,2.37E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1849,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1850,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1851,1.75E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1852,1.62E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1853,1.60E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1854,1.43E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1855,-1.22E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1856,-7.65E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1857,-5.89E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1858,-6.96E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1859,1.29E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1860,1.88E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1861,6.30E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1862,-1.17E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1863,7.46E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1864,1.33E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1865,1.44E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1866,1.42E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1867,1.53E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1868,1.92E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1869,2.25E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1870,2.50E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1871,2.22E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1872,1.58E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1873,1.16E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1874,1.26E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1875,7.39E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1876,3.78E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1877,8.33E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1878,1.20E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1879,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1880,1.84E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1881,2.10E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1882,4.89E-03,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1883,-1.60E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1884,-1.47E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1885,-4.31E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1886,-5.05E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1887,-1.94E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1888,-3.04E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1889,-3.30E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1890,-3.82E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1891,-1.39E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1892,1.72E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1893,1.99E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1894,2.54E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1895,1.51E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1896,-9.06E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1897,-4.80E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1898,1.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1899,1.71E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1900,1.94E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1901,1.38E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1902,-6.86E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1903,-5.85E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1904,-4.29E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1905,1.48E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1906,1.66E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1907,1.08E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1908,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1909,2.40E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1910,2.44E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1911,2.42E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1912,-2.31E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1913,5.16E-02,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1914,2.59E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1915,3.65E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1916,4.09E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1917,4.37E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1918,4.24E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1919,3.93E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1920,2.19E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1921,3.43E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1922,3.90E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1923,3.83E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1924,3.96E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1925,4.53E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1926,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1927,4.93E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1928,3.91E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1929,3.92E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1930,4.48E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1931,4.44E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1932,3.81E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1933,4.68E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1934,5.02E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1935,5.80E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1936,6.18E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1937,6.07E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1938,5.95E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1939,6.15E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1940,6.17E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1941,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1942,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1943,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1944,5.86E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1945,6.30E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1946,6.54E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1947,6.60E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1948,6.73E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1949,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1950,5.99E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1951,5.39E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1952,5.29E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1953,4.98E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1954,5.46E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1955,6.19E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1956,7.14E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1957,7.55E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1958,7.45E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1959,7.28E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1960,5.68E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1961,4.70E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1962,3.55E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1963,-4.96E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1964,-3.40E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1965,2.01E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1966,5.21E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1967,5.52E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1968,2.02E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1969,4.84E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1970,7.46E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1971,8.63E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1972,8.67E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1973,7.93E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1974,5.73E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1975,6.06E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1976,8.85E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1977,1.05E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1978,1.04E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1979,1.21E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1980,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1981,1.09E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1982,-1.28E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1983,4.80E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1984,9.59E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1985,1.08E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1986,1.14E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1987,1.26E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1988,1.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1989,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1990,1.51E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1991,-3.64E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1992,2.65E-01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1993,1.06E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1994,1.34E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1995,1.47E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1996,1.54E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1997,1.63E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1998,1.75E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -1999,1.85E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2000,1.88E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2001,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2002,1.92E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2003,1.90E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2004,1.89E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2005,1.91E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2006,1.94E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2007,1.98E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2008,2.02E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2009,2.17E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2010,2.20E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2011,2.24E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2012,2.29E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2013,2.33E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2014,2.38E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2015,2.43E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2016,2.48E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2017,2.53E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2018,2.58E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2019,2.64E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2020,2.69E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2021,2.75E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2022,2.81E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2023,2.87E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2024,2.92E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2025,2.98E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2026,3.04E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2027,3.10E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2028,3.16E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2029,3.22E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2030,3.29E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2031,3.35E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2032,3.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2033,3.49E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2034,3.56E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2035,3.63E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2036,3.70E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2037,3.77E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2038,3.84E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2039,3.91E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2040,3.98E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2041,4.06E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2042,4.13E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2043,4.20E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2044,4.28E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2045,4.35E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2046,4.43E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2047,4.51E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2048,4.58E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2049,4.66E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2050,4.74E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2051,4.81E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2052,4.89E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2053,4.96E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2054,5.04E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2055,5.12E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2056,5.19E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2057,5.27E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2058,5.35E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2059,5.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2060,5.50E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2061,5.58E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2062,5.65E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2063,5.73E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2064,5.81E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2065,5.88E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2066,5.96E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2067,6.03E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2068,6.10E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2069,6.18E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2070,6.25E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2071,6.32E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2072,6.39E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2073,6.47E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2074,6.54E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2075,6.61E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2076,6.68E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2077,6.75E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2078,6.82E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2079,6.89E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2080,6.96E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2081,7.03E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2082,7.11E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2083,7.18E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2084,7.25E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2085,7.32E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2086,7.39E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2087,7.46E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2088,7.53E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2089,7.60E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2090,7.67E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2091,7.74E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2092,7.81E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2093,7.87E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2094,7.94E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2095,8.00E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2096,8.06E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2097,8.13E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2098,8.19E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2099,8.25E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2100,8.31E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2101,8.37E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2102,8.43E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2103,8.49E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2104,8.54E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2105,8.60E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2106,8.65E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2107,8.71E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2108,8.76E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2109,8.82E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2110,8.87E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2111,8.92E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2112,8.97E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2113,9.02E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2114,9.08E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2115,9.13E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2116,9.18E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2117,9.22E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2118,9.27E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2119,9.32E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2120,9.37E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2121,9.42E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2122,9.47E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2123,9.51E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2124,9.56E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2125,9.61E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2126,9.65E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2127,9.70E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2128,9.74E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2129,9.79E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2130,9.83E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2131,9.88E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2132,9.92E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2133,9.96E+00,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2134,1.00E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2135,1.01E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2136,1.01E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2137,1.01E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2138,1.02E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2139,1.02E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2140,1.03E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2141,1.03E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2142,1.03E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2143,1.04E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2144,1.04E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2145,1.05E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2146,1.05E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2147,1.05E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2148,1.06E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2149,1.06E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2150,1.07E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2151,1.07E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2152,1.07E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2153,1.08E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2154,1.08E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2155,1.09E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2156,1.09E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2157,1.09E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2158,1.10E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2159,1.10E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2160,1.10E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2161,1.11E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2162,1.11E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2163,1.11E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2164,1.12E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2165,1.12E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2166,1.12E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2167,1.13E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2168,1.13E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2169,1.13E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2170,1.13E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2171,1.14E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2172,1.14E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2173,1.14E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2174,1.15E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2175,1.15E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2176,1.15E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2177,1.15E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2178,1.16E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2179,1.16E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2180,1.16E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2181,1.16E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2182,1.16E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2183,1.17E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2184,1.17E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2185,1.17E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2186,1.17E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2187,1.18E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2188,1.18E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2189,1.18E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2190,1.18E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2191,1.18E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2192,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2193,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2194,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2195,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2196,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2197,1.19E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2198,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2199,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2200,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2201,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2202,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2203,1.20E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2204,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2205,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2206,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2207,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2208,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2209,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2210,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2211,1.21E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2212,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2213,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2214,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2215,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2216,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2217,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2218,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2219,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2220,1.22E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2221,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2222,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2223,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2224,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2225,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2226,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2227,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2228,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2229,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2230,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2231,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2232,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2233,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2234,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2235,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2236,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2237,1.23E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2238,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2239,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2240,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2241,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2242,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2243,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2244,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2245,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2246,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2247,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2248,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2249,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2250,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2251,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2252,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2253,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2254,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2255,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2256,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2257,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2258,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2259,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2260,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2261,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2262,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2263,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2264,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2265,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2266,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2267,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2268,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2269,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2270,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2271,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2272,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2273,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2274,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2275,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2276,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2277,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2278,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2279,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2280,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2281,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2282,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2283,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2284,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2285,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2286,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2287,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2288,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2289,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2290,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2291,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2292,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2293,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2294,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2295,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2296,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2297,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2298,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2299,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 -2300,1.24E+01,Ftot,W/m2,forcing,Simulated,rcp85,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP85/RCP85_MAGICC_temp.csv b/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP85/RCP85_MAGICC_temp.csv deleted file mode 100644 index 5f3eaff89..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/MAGICC6/RCP85/RCP85_MAGICC_temp.csv +++ /dev/null @@ -1,539 +0,0 @@ -# MAGICC global temperature,,,,,,, -# RCP 8.5,,,,,,, -Year,value,vtag,ctag,units,type,Scenario,model -1765,0.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1766,-6.73E-04,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1767,8.00E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1768,1.73E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1769,1.36E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1770,-4.08E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1771,-2.61E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1772,6.34E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1773,9.33E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1774,1.08E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1775,1.05E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1776,1.31E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1777,1.93E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1778,2.65E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1779,2.98E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1780,3.15E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1781,3.14E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1782,2.81E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1783,1.72E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1784,-1.51E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1785,-3.51E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1786,-9.93E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1787,1.06E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1788,2.30E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1789,2.75E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1790,8.08E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1791,-2.94E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1792,-2.13E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1793,-6.26E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1794,2.71E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1795,4.93E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1796,1.57E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1797,1.06E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1798,4.51E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1799,8.47E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1800,1.42E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1801,1.99E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1802,2.07E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1803,2.06E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1804,2.15E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1805,2.18E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1806,2.05E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1807,1.92E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1808,1.84E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1809,-9.67E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1810,-3.91E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1811,-4.91E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1812,-3.54E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1813,-2.66E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1814,-2.17E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1815,-3.18E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1816,-6.83E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1817,-7.92E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1818,-5.83E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1819,-4.14E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1820,-2.95E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1821,-2.30E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1822,-1.87E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1823,-1.55E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1824,-1.29E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1825,-1.06E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1826,-8.64E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1827,-6.87E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1828,-5.34E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1829,-4.19E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1830,-4.48E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1831,-9.98E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1832,-2.04E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1833,-2.27E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1834,-1.61E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1835,-2.06E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1836,-3.67E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1837,-3.33E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1838,-2.36E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1839,-1.62E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1840,-1.22E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1841,-1.09E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1842,-9.31E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1843,-7.87E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1844,-7.61E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1845,-6.65E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1846,-4.54E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1847,-2.68E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1848,-9.96E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1849,-8.05E-04,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1850,-5.26E-05,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1851,-3.90E-04,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1852,-5.74E-04,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1853,1.42E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1854,2.82E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1855,4.46E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1856,-1.77E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1857,-1.40E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1858,-1.87E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1859,-1.22E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1860,-7.60E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1861,-4.84E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1862,-4.09E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1863,-5.75E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1864,-4.61E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1865,-3.12E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1866,-2.09E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1867,-1.30E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1868,-1.10E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1869,1.25E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1870,2.15E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1871,2.47E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1872,2.02E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1873,1.20E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1874,3.97E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1875,3.34E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1876,-1.62E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1877,-1.57E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1878,-1.17E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1879,-3.35E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1880,5.04E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1881,1.49E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1882,2.48E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1883,-1.55E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1884,-2.58E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1885,-4.04E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1886,-2.88E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1887,-2.71E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1888,-2.19E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1889,-2.12E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1890,-1.95E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1891,-2.28E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1892,-1.88E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1893,-1.57E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1894,-1.05E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1895,-7.19E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1896,-5.54E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1897,-8.25E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1898,-8.39E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1899,-6.82E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1900,-5.06E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1901,-3.90E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1902,-3.05E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1903,-1.49E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1904,-2.21E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1905,-1.53E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1906,-1.03E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1907,-7.72E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1908,-7.96E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1909,-6.25E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1910,-4.04E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1911,-2.74E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1912,-1.15E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1913,-1.07E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1914,-7.77E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1915,-2.92E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1916,6.35E-03,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1917,3.02E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1918,4.61E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1919,5.73E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1920,6.18E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1921,3.73E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1922,5.10E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1923,6.24E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1924,7.54E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1925,8.54E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1926,9.91E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1927,1.06E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1928,1.16E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1929,1.08E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1930,1.01E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1931,1.11E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1932,1.18E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1933,1.10E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1934,1.27E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1935,1.43E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1936,1.58E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1937,1.69E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1938,1.79E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1939,1.81E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1940,1.88E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1941,1.91E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1942,1.91E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1943,1.77E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1944,1.84E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1945,1.94E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1946,2.04E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1947,2.13E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1948,2.13E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1949,2.18E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1950,2.08E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1951,2.00E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1952,1.88E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1953,1.81E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1954,1.74E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1955,1.84E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1956,2.00E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1957,2.17E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1958,2.25E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1959,2.32E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1960,2.35E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1961,2.07E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1962,1.85E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1963,1.70E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1964,3.35E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1965,-2.27E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1966,2.12E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1967,8.13E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1968,1.13E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1969,7.14E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1970,9.57E-02,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1971,1.53E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1972,1.99E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1973,2.24E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1974,2.28E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1975,2.15E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1976,1.95E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1977,2.47E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1978,3.03E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1979,3.22E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1980,3.58E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1981,3.81E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1982,3.92E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1983,1.52E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1984,1.62E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1985,2.57E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1986,3.15E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1987,3.55E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1988,4.06E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1989,4.53E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1990,4.90E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1991,5.11E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1992,2.23E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1993,1.78E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1994,3.00E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1995,3.93E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1996,4.57E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1997,5.05E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1998,5.54E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -1999,6.03E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2000,6.43E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2001,6.76E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2002,7.03E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2003,7.22E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2004,7.38E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2005,7.55E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2006,7.75E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2007,7.97E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2008,8.20E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2009,8.58E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2010,8.89E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2011,9.17E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2012,9.44E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2013,9.71E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2014,9.99E-01,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2015,1.03E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2016,1.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2017,1.08E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2018,1.11E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2019,1.14E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2020,1.17E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2021,1.20E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2022,1.24E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2023,1.27E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2024,1.30E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2025,1.33E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2026,1.37E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2027,1.40E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2028,1.43E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2029,1.47E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2030,1.50E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2031,1.54E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2032,1.58E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2033,1.62E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2034,1.65E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2035,1.69E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2036,1.73E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2037,1.77E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2038,1.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2039,1.86E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2040,1.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2041,1.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2042,1.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2043,2.03E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2044,2.07E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2045,2.11E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2046,2.16E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2047,2.20E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2048,2.25E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2049,2.29E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2050,2.34E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2051,2.39E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2052,2.43E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2053,2.48E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2054,2.52E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2055,2.57E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2056,2.62E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2057,2.67E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2058,2.71E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2059,2.76E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2060,2.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2061,2.86E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2062,2.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2063,2.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2064,3.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2065,3.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2066,3.09E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2067,3.14E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2068,3.19E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2069,3.24E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2070,3.29E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2071,3.33E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2072,3.38E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2073,3.43E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2074,3.48E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2075,3.52E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2076,3.57E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2077,3.62E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2078,3.66E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2079,3.71E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2080,3.76E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2081,3.80E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2082,3.85E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2083,3.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2084,3.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2085,3.99E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2086,4.04E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2087,4.09E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2088,4.14E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2089,4.19E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2090,4.23E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2091,4.28E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2092,4.33E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2093,4.37E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2094,4.42E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2095,4.46E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2096,4.51E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2097,4.55E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2098,4.60E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2099,4.64E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2100,4.69E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2101,4.73E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2102,4.77E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2103,4.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2104,4.85E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2105,4.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2106,4.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2107,4.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2108,5.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2109,5.06E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2110,5.09E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2111,5.13E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2112,5.17E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2113,5.21E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2114,5.25E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2115,5.29E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2116,5.32E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2117,5.36E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2118,5.40E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2119,5.43E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2120,5.47E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2121,5.50E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2122,5.54E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2123,5.57E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2124,5.61E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2125,5.64E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2126,5.68E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2127,5.71E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2128,5.75E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2129,5.78E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2130,5.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2131,5.85E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2132,5.88E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2133,5.91E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2134,5.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2135,5.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2136,6.01E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2137,6.04E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2138,6.07E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2139,6.10E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2140,6.14E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2141,6.17E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2142,6.20E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2143,6.23E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2144,6.26E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2145,6.29E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2146,6.32E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2147,6.35E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2148,6.38E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2149,6.41E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2150,6.44E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2151,6.47E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2152,6.50E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2153,6.53E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2154,6.55E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2155,6.58E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2156,6.61E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2157,6.64E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2158,6.66E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2159,6.69E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2160,6.72E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2161,6.74E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2162,6.77E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2163,6.79E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2164,6.82E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2165,6.84E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2166,6.87E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2167,6.89E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2168,6.91E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2169,6.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2170,6.96E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2171,6.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2172,7.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2173,7.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2174,7.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2175,7.07E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2176,7.09E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2177,7.11E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2178,7.13E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2179,7.15E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2180,7.17E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2181,7.19E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2182,7.21E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2183,7.22E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2184,7.24E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2185,7.26E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2186,7.28E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2187,7.30E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2188,7.31E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2189,7.33E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2190,7.35E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2191,7.36E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2192,7.38E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2193,7.39E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2194,7.41E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2195,7.42E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2196,7.44E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2197,7.45E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2198,7.47E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2199,7.48E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2200,7.50E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2201,7.51E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2202,7.52E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2203,7.54E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2204,7.55E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2205,7.56E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2206,7.57E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2207,7.59E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2208,7.60E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2209,7.61E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2210,7.62E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2211,7.63E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2212,7.64E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2213,7.65E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2214,7.67E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2215,7.68E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2216,7.69E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2217,7.70E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2218,7.71E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2219,7.72E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2220,7.72E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2221,7.73E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2222,7.74E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2223,7.75E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2224,7.76E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2225,7.77E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2226,7.78E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2227,7.78E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2228,7.79E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2229,7.80E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2230,7.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2231,7.81E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2232,7.82E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2233,7.83E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2234,7.83E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2235,7.84E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2236,7.85E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2237,7.85E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2238,7.86E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2239,7.86E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2240,7.87E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2241,7.87E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2242,7.88E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2243,7.88E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2244,7.89E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2245,7.89E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2246,7.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2247,7.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2248,7.90E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2249,7.91E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2250,7.91E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2251,7.91E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2252,7.92E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2253,7.92E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2254,7.92E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2255,7.93E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2256,7.93E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2257,7.93E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2258,7.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2259,7.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2260,7.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2261,7.94E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2262,7.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2263,7.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2264,7.95E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2265,7.96E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2266,7.96E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2267,7.96E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2268,7.96E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2269,7.97E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2270,7.97E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2271,7.97E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2272,7.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2273,7.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2274,7.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2275,7.98E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2276,7.99E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2277,7.99E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2278,7.99E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2279,7.99E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2280,8.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2281,8.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2282,8.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2283,8.00E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2284,8.01E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2285,8.01E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2286,8.01E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2287,8.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2288,8.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2289,8.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2290,8.02E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2291,8.03E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2292,8.03E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2293,8.03E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2294,8.04E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2295,8.04E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2296,8.04E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2297,8.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2298,8.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2299,8.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 -2300,8.05E+00,Tgav,Temperature,C,Simulated,rcp85,MAGICC6 diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Other_models/g-carbon.csv b/scripts/outputplotter/comparison_data/GMD_2015/Other_models/g-carbon.csv deleted file mode 100644 index 4abb79106..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Other_models/g-carbon.csv +++ /dev/null @@ -1 +0,0 @@ -# LUC emissions flux from the G-Carbon model (Steve Smith),,,,, Year,value,vtag,units,type,ctag 1505,0.28,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1506,0.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1507,0.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1508,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1509,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1510,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1511,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1512,0.23,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1513,0.22,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1514,0.21,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1515,0.2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1516,0.2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1517,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1518,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1519,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1520,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1521,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1522,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1523,0.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1524,0.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1525,0.14,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1526,0.13,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1527,0.13,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1528,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1529,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1530,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1531,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1532,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1533,0.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1534,0.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1535,0.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1536,0.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1537,0.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1538,0.08,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1539,0.08,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1540,0.08,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1541,0.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1542,0.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1543,0.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1544,0.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1545,0.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1546,0.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1547,0.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1548,0.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1549,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1550,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1551,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1552,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1553,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1554,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1555,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1556,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1557,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1558,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1559,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1560,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1561,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1562,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1563,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1564,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1565,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1566,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1567,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1568,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1569,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1570,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1571,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1572,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1573,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1574,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1575,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1576,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1577,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1578,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1579,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1580,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1581,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1582,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1583,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1584,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1585,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1586,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1587,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1588,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1589,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1590,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1591,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1592,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1593,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1594,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1595,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1596,-0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1597,-0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1598,-0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1599,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1600,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1601,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1602,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1603,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1604,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1605,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1606,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1607,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1608,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1609,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1610,0,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1611,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1612,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1613,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1614,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1615,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1616,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1617,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1618,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1619,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1620,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1621,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1622,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1623,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1624,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1625,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1626,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1627,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1628,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1629,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1630,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1631,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1632,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1633,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1634,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1635,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1636,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1637,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1638,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1639,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1640,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1641,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1642,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1643,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1644,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1645,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1646,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1647,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1648,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1649,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1650,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1651,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1652,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1653,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1654,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1655,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1656,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1657,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1658,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1659,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1660,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1661,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1662,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1663,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1664,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1665,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1666,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1667,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1668,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1669,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1670,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1671,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1672,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1673,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1674,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1675,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1676,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1677,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1678,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1679,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1680,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1681,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1682,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1683,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1684,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1685,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1686,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1687,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1688,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1689,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1690,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1691,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1692,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1693,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1694,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1695,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1696,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1697,0.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1698,0.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1699,0.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1700,0.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1701,0.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1702,0.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1703,0.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1704,0.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1705,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1706,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1707,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1708,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1709,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1710,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1711,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1712,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1713,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1714,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1715,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1716,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1717,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1718,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1719,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1720,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1721,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1722,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1723,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1724,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1725,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1726,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1727,0.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1728,0.13,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1729,0.14,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1730,0.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1731,0.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1732,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1733,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1734,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1735,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1736,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1737,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1738,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1739,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1740,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1741,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1742,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1743,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1744,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1745,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1746,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1747,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1748,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1749,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1750,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1751,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1752,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1753,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1754,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1755,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1756,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1757,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1758,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1759,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1760,0.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1761,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1762,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1763,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1764,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1765,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1766,0.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1767,0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1768,0.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1769,0.2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1770,0.21,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1771,0.22,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1772,0.23,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1773,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1774,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1775,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1776,0.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1777,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1778,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1779,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1780,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1781,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1782,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1783,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1784,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1785,0.23,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1786,0.23,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1787,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1788,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1789,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1790,0.24,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1791,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1792,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1793,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1794,0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1795,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1796,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1797,0.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1798,0.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1799,0.28,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1800,0.28,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1801,0.29,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1802,0.3,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1803,0.31,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1804,0.31,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1805,0.32,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1806,0.33,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1807,0.33,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1808,0.33,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1809,0.34,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1810,0.34,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1811,0.35,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1812,0.35,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1813,0.36,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1814,0.36,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1815,0.36,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1816,0.37,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1817,0.38,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1818,0.39,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1819,0.41,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1820,0.42,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1821,0.43,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1822,0.45,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1823,0.46,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1824,0.47,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1825,0.49,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1826,0.49,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1827,0.5,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1828,0.52,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1829,0.53,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1830,0.55,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1831,0.56,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1832,0.57,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1833,0.59,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1834,0.61,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1835,0.62,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1836,0.63,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1837,0.64,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1838,0.65,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1839,0.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1840,0.68,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1841,0.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1842,0.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1843,0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1844,0.73,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1845,0.74,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1846,0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1847,0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1848,0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1849,0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1850,0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1851,0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1852,0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1853,0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1854,0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1855,0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1856,0.8,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1857,0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1858,0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1859,0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1860,0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1861,0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1862,0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1863,0.74,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1864,0.73,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1865,0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1866,0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1867,0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1868,0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1869,0.83,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1870,0.87,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1871,0.91,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1872,0.96,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1873,1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1874,1.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1875,1.08,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1876,1.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1877,1.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1878,1.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1879,1.14,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1880,1.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1881,1.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1882,1.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1883,1.19,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1884,1.21,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1885,1.22,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1886,1.23,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1887,1.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1888,1.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1889,1.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1890,1.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1891,1.28,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1892,1.29,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1893,1.3,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1894,1.3,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1895,1.31,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1896,1.31,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1897,1.34,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1898,1.37,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1899,1.41,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1900,1.44,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1901,1.48,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1902,1.52,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1903,1.57,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1904,1.61,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1905,1.65,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1906,1.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1907,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1908,1.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1909,1.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1910,1.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1911,1.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1912,1.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1913,1.71,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1914,1.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1915,1.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1916,1.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1917,1.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1918,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1919,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1920,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1921,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1922,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1923,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1924,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1925,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1926,1.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1927,1.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1928,1.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1929,1.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1930,1.82,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1931,1.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1932,1.89,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1933,1.93,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1934,1.96,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1935,2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1936,2.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1937,2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1938,1.98,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1939,1.97,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1940,1.95,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1941,1.93,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1942,1.9,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1943,1.88,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1944,1.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1945,1.82,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1946,1.81,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1947,1.92,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1948,2.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1949,2.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1950,2.27,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1951,2.39,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1952,2.51,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1953,2.64,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1954,2.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1955,2.9,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1956,2.92,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1957,2.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1958,2.57,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1959,2.38,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1960,2.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1961,1.99,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1962,1.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1963,1.59,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1964,1.38,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1965,1.17,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1966,1.14,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1967,1.12,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1968,1.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1969,1.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1970,1.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1971,1.07,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1972,1.05,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1973,1.04,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1974,1.02,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1975,1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1976,0.98,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1977,1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1978,1.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1979,1.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1980,1.06,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1981,1.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1982,1.13,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1983,1.16,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1984,1.2,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1985,1.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1986,1.26,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1987,1.21,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1988,1.15,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1989,1.09,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1990,1.03,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1991,0.97,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1992,0.9,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1993,0.83,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1994,0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1995,0.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1996,0.65,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1997,0.58,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1998,0.51,lucEmissions,Pg C/yr,Simulated,carbon_cycle 1999,0.43,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2000,0.37,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2001,0.3,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2002,0.21,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2003,0.11,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2004,0.01,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2005,-0.1,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2006,-0.18,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2007,-0.25,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2008,-0.33,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2009,-0.42,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2010,-0.52,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2011,-0.59,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2012,-0.64,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2013,-0.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2014,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2015,-0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2016,-0.82,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2017,-0.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2018,-0.87,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2019,-0.89,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2020,-0.91,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2021,-0.93,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2022,-0.94,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2023,-0.95,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2024,-0.96,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2025,-0.96,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2026,-0.95,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2027,-0.93,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2028,-0.91,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2029,-0.9,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2030,-0.88,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2031,-0.86,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2032,-0.84,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2033,-0.82,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2034,-0.8,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2035,-0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2036,-0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2037,-0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2038,-0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2039,-0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2040,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2041,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2042,-0.73,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2043,-0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2044,-0.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2045,-0.68,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2046,-0.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2047,-0.66,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2048,-0.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2049,-0.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2050,-0.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2051,-0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2052,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2053,-0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2054,-0.8,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2055,-0.83,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2056,-0.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2057,-0.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2058,-0.85,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2059,-0.84,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2060,-0.83,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2061,-0.82,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2062,-0.8,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2063,-0.79,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2064,-0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2065,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2066,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2067,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2068,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2069,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2070,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2071,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2072,-0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2073,-0.77,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2074,-0.78,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2075,-0.76,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2076,-0.75,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2077,-0.73,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2078,-0.72,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2079,-0.7,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2080,-0.69,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2081,-0.67,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2082,-0.66,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2083,-0.65,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2084,-0.63,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2085,-0.62,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2086,-0.6,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2087,-0.59,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2088,-0.58,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2089,-0.57,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2090,-0.56,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2091,-0.55,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2092,-0.54,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2093,-0.53,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2094,-0.52,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2095,-0.51,lucEmissions,Pg C/yr,Simulated,carbon_cycle 2096,-0.5,lucEmissions,Pg C/yr,Simulated,carbon_cycle \ No newline at end of file diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Other_models/potter_npp.csv b/scripts/outputplotter/comparison_data/GMD_2015/Other_models/potter_npp.csv deleted file mode 100644 index 66d103fa2..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Other_models/potter_npp.csv +++ /dev/null @@ -1 +0,0 @@ -# Global NPP data from Potter et al. (2011), 10.1007/s10584-012-0460-2",,,, Year,value_npp,units,type,ctag 2000,49.9,Pg C/yr,Observed,carbon_cycle 2001,50,Pg C/yr,Observed,carbon_cycle 2002,50.3,Pg C/yr,Observed,carbon_cycle 2003,50.3,Pg C/yr,Observed,carbon_cycle 2004,50.5,Pg C/yr,Observed,carbon_cycle 2005,50.9,Pg C/yr,Observed,carbon_cycle 2006,51.1,Pg C/yr,Observed,carbon_cycle 2007,51.2,Pg C/yr,Observed,carbon_cycle 2008,50.7,Pg C/yr,Observed,carbon_cycle 2009,50,Pg C/yr,Observed,carbon_cycle \ No newline at end of file diff --git a/scripts/outputplotter/comparison_data/GMD_2015/Other_models/zhao_npp.csv b/scripts/outputplotter/comparison_data/GMD_2015/Other_models/zhao_npp.csv deleted file mode 100644 index 777dc6bb5..000000000 --- a/scripts/outputplotter/comparison_data/GMD_2015/Other_models/zhao_npp.csv +++ /dev/null @@ -1 +0,0 @@ -# Global NPP data from Zhao and Running (2010), doi 10.1126/science.1192666 Year,value_npp,value_npp_tropics,units,type,ctag 2000,54.692,30.089,Pg C/yr,Observed,carbon_cycle 2001,53.841,28.85,Pg C/yr,Observed,carbon_cycle 2002,52.727,28.153,Pg C/yr,Observed,carbon_cycle 2003,53.465,28.423,Pg C/yr,Observed,carbon_cycle 2004,54.565,29.249,Pg C/yr,Observed,carbon_cycle 2005,51.672,26.419,Pg C/yr,Observed,carbon_cycle 2006,53.557,28.615,Pg C/yr,Observed,carbon_cycle 2007,53.123,27.89,Pg C/yr,Observed,carbon_cycle 2008,53.725,28.708,Pg C/yr,Observed,carbon_cycle 2009,53.841,29.09,Pg C/yr,Observed,carbon_cycle \ No newline at end of file diff --git a/src/INIReader.cpp b/src/INIReader.cpp index 2c46a7cbb..bb914427d 100644 --- a/src/INIReader.cpp +++ b/src/INIReader.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -11,12 +11,12 @@ * Added by Ben on 10/7/10. * Based on inih -- simple .INI file parser * - * inih is released under the New BSD license (see LICENSE.txt). Go to the project - * home page for more info: + * inih is released under the New BSD license (see LICENSE.txt). Go to the + * project home page for more info: * * http://code.google.com/p/inih/ * - */ + */ // Read an INI file into easy-to-access name/value pairs. @@ -24,54 +24,46 @@ #include #include -#include "ini.h" #include "INIReader.h" +#include "ini.h" namespace Hector { - + using std::string; -INIReader::INIReader( string filename ) -{ - _error = ini_parse(filename.c_str(), ValueHandler, this); +INIReader::INIReader(string filename) { + _error = ini_parse(filename.c_str(), ValueHandler, this); } -int INIReader::ParseError() -{ - return _error; -} +int INIReader::ParseError() { return _error; } -string INIReader::Get(string section, string name, string default_value) -{ - string key = MakeKey(section, name); - return _values.count(key) ? _values[key] : default_value; +string INIReader::Get(string section, string name, string default_value) { + string key = MakeKey(section, name); + return _values.count(key) ? _values[key] : default_value; } -long INIReader::GetInteger(string section, string name, long default_value) -{ - string valstr = Get(section, name, ""); - const char* value = valstr.c_str(); - char* end; - // This parses "1234" (decimal) and also "0x4D2" (hex) - long n = strtol(value, &end, 0); - return end > value ? n : default_value; +long INIReader::GetInteger(string section, string name, long default_value) { + string valstr = Get(section, name, ""); + const char *value = valstr.c_str(); + char *end; + // This parses "1234" (decimal) and also "0x4D2" (hex) + long n = strtol(value, &end, 0); + return end > value ? n : default_value; } -string INIReader::MakeKey(string section, string name) -{ - string key = section + "." + name; - // Convert to lower case to make lookups case-insensitive - for (unsigned i = 0; i < key.length(); i++) - key[i] = tolower(key[i]); - return key; +string INIReader::MakeKey(string section, string name) { + string key = section + "." + name; + // Convert to lower case to make lookups case-insensitive + for (unsigned i = 0; i < key.length(); i++) + key[i] = tolower(key[i]); + return key; } -int INIReader::ValueHandler(void* user, const char* section, const char* name, - const char* value) -{ - INIReader* reader = (INIReader*)user; - reader->_values[MakeKey(section, name)] = value; - return 1; +int INIReader::ValueHandler(void *user, const char *section, const char *name, + const char *value) { + INIReader *reader = (INIReader *)user; + reader->_values[MakeKey(section, name)] = value; + return 1; } -} +} // namespace Hector diff --git a/src/RcppExports.cpp b/src/RcppExports.cpp index 44a956627..ef28bcefc 100644 --- a/src/RcppExports.cpp +++ b/src/RcppExports.cpp @@ -30,6 +30,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// BIOME_SPLIT_CHAR +String BIOME_SPLIT_CHAR(); +RcppExport SEXP _hector_BIOME_SPLIT_CHAR() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(BIOME_SPLIT_CHAR()); + return rcpp_result_gen; +END_RCPP +} // LL_DEBUG int LL_DEBUG(); RcppExport SEXP _hector_LL_DEBUG() { @@ -70,6 +80,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// TRACKING_DATE +String TRACKING_DATE(); +RcppExport SEXP _hector_TRACKING_DATE() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(TRACKING_DATE()); + return rcpp_result_gen; +END_RCPP +} // EMISSIONS_BC String EMISSIONS_BC(); RcppExport SEXP _hector_EMISSIONS_BC() { @@ -90,13 +110,23 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// RF_T_ALBEDO -String RF_T_ALBEDO(); -RcppExport SEXP _hector_RF_T_ALBEDO() { +// FTOT_CONSTRAIN +String FTOT_CONSTRAIN(); +RcppExport SEXP _hector_FTOT_CONSTRAIN() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(FTOT_CONSTRAIN()); + return rcpp_result_gen; +END_RCPP +} +// RF_ALBEDO +String RF_ALBEDO(); +RcppExport SEXP _hector_RF_ALBEDO() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_T_ALBEDO()); + rcpp_result_gen = Rcpp::wrap(RF_ALBEDO()); return rcpp_result_gen; END_RCPP } @@ -110,6 +140,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// DELTA_CO2 +String DELTA_CO2(); +RcppExport SEXP _hector_DELTA_CO2() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DELTA_CO2()); + return rcpp_result_gen; +END_RCPP +} // RF_N2O String RF_N2O(); RcppExport SEXP _hector_RF_N2O() { @@ -120,6 +160,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// DELTA_N2O +String DELTA_N2O(); +RcppExport SEXP _hector_DELTA_N2O() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DELTA_N2O()); + return rcpp_result_gen; +END_RCPP +} // RF_H2O_STRAT String RF_H2O_STRAT(); RcppExport SEXP _hector_RF_H2O_STRAT() { @@ -150,6 +200,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// RHO_BC +String RHO_BC(); +RcppExport SEXP _hector_RHO_BC() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_BC()); + return rcpp_result_gen; +END_RCPP +} // RF_OC String RF_OC(); RcppExport SEXP _hector_RF_OC() { @@ -160,23 +220,33 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// RF_SO2D -String RF_SO2D(); -RcppExport SEXP _hector_RF_SO2D() { +// RHO_OC +String RHO_OC(); +RcppExport SEXP _hector_RHO_OC() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_SO2D()); + rcpp_result_gen = Rcpp::wrap(RHO_OC()); return rcpp_result_gen; END_RCPP } -// RF_SO2I -String RF_SO2I(); -RcppExport SEXP _hector_RF_SO2I() { +// RF_NH3 +String RF_NH3(); +RcppExport SEXP _hector_RF_NH3() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_SO2I()); + rcpp_result_gen = Rcpp::wrap(RF_NH3()); + return rcpp_result_gen; +END_RCPP +} +// RHO_NH3 +String RHO_NH3(); +RcppExport SEXP _hector_RHO_NH3() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_NH3()); return rcpp_result_gen; END_RCPP } @@ -190,6 +260,26 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// RF_ACI +String RF_ACI(); +RcppExport SEXP _hector_RF_ACI() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_ACI()); + return rcpp_result_gen; +END_RCPP +} +// RHO_SO2 +String RHO_SO2(); +RcppExport SEXP _hector_RHO_SO2() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_SO2()); + return rcpp_result_gen; +END_RCPP +} // RF_VOL String RF_VOL(); RcppExport SEXP _hector_RF_VOL() { @@ -200,6 +290,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// RF_MISC +String RF_MISC(); +RcppExport SEXP _hector_RF_MISC() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_MISC()); + return rcpp_result_gen; +END_RCPP +} // RFADJ_PREFIX String RFADJ_PREFIX(); RcppExport SEXP _hector_RFADJ_PREFIX() { @@ -266,217 +366,747 @@ RcppExport SEXP _hector_RF_HFC4310() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HFC4310()); + rcpp_result_gen = Rcpp::wrap(RF_HFC4310()); + return rcpp_result_gen; +END_RCPP +} +// RF_HFC125 +String RF_HFC125(); +RcppExport SEXP _hector_RF_HFC125() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HFC125()); + return rcpp_result_gen; +END_RCPP +} +// RF_HFC134A +String RF_HFC134A(); +RcppExport SEXP _hector_RF_HFC134A() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HFC134A()); + return rcpp_result_gen; +END_RCPP +} +// RF_HFC143A +String RF_HFC143A(); +RcppExport SEXP _hector_RF_HFC143A() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HFC143A()); + return rcpp_result_gen; +END_RCPP +} +// RF_HFC227EA +String RF_HFC227EA(); +RcppExport SEXP _hector_RF_HFC227EA() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HFC227EA()); + return rcpp_result_gen; +END_RCPP +} +// RF_HFC245FA +String RF_HFC245FA(); +RcppExport SEXP _hector_RF_HFC245FA() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HFC245FA()); + return rcpp_result_gen; +END_RCPP +} +// RF_SF6 +String RF_SF6(); +RcppExport SEXP _hector_RF_SF6() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_SF6()); + return rcpp_result_gen; +END_RCPP +} +// RF_CFC11 +String RF_CFC11(); +RcppExport SEXP _hector_RF_CFC11() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_CFC11()); + return rcpp_result_gen; +END_RCPP +} +// RF_CFC12 +String RF_CFC12(); +RcppExport SEXP _hector_RF_CFC12() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_CFC12()); + return rcpp_result_gen; +END_RCPP +} +// RF_CFC113 +String RF_CFC113(); +RcppExport SEXP _hector_RF_CFC113() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_CFC113()); + return rcpp_result_gen; +END_RCPP +} +// RF_CFC114 +String RF_CFC114(); +RcppExport SEXP _hector_RF_CFC114() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_CFC114()); + return rcpp_result_gen; +END_RCPP +} +// RF_CFC115 +String RF_CFC115(); +RcppExport SEXP _hector_RF_CFC115() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_CFC115()); + return rcpp_result_gen; +END_RCPP +} +// RF_CCL4 +String RF_CCL4(); +RcppExport SEXP _hector_RF_CCL4() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_CCL4()); + return rcpp_result_gen; +END_RCPP +} +// RF_CH3CCL3 +String RF_CH3CCL3(); +RcppExport SEXP _hector_RF_CH3CCL3() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_CH3CCL3()); + return rcpp_result_gen; +END_RCPP +} +// RF_HCFC22 +String RF_HCFC22(); +RcppExport SEXP _hector_RF_HCFC22() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HCFC22()); + return rcpp_result_gen; +END_RCPP +} +// RF_HCFC141B +String RF_HCFC141B(); +RcppExport SEXP _hector_RF_HCFC141B() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HCFC141B()); + return rcpp_result_gen; +END_RCPP +} +// RF_HCFC142B +String RF_HCFC142B(); +RcppExport SEXP _hector_RF_HCFC142B() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HCFC142B()); + return rcpp_result_gen; +END_RCPP +} +// RF_HALON1211 +String RF_HALON1211(); +RcppExport SEXP _hector_RF_HALON1211() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HALON1211()); + return rcpp_result_gen; +END_RCPP +} +// RF_HALON1301 +String RF_HALON1301(); +RcppExport SEXP _hector_RF_HALON1301() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HALON1301()); + return rcpp_result_gen; +END_RCPP +} +// RF_HALON2402 +String RF_HALON2402(); +RcppExport SEXP _hector_RF_HALON2402() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_HALON2402()); + return rcpp_result_gen; +END_RCPP +} +// RF_CH3CL +String RF_CH3CL(); +RcppExport SEXP _hector_RF_CH3CL() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_CH3CL()); + return rcpp_result_gen; +END_RCPP +} +// RF_CH3BR +String RF_CH3BR(); +RcppExport SEXP _hector_RF_CH3BR() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RF_CH3BR()); + return rcpp_result_gen; +END_RCPP +} +// RHO_CF4 +String RHO_CF4(); +RcppExport SEXP _hector_RHO_CF4() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_CF4()); + return rcpp_result_gen; +END_RCPP +} +// RHO_C2F6 +String RHO_C2F6(); +RcppExport SEXP _hector_RHO_C2F6() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_C2F6()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HFC23 +String RHO_HFC23(); +RcppExport SEXP _hector_RHO_HFC23() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HFC23()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HFC32 +String RHO_HFC32(); +RcppExport SEXP _hector_RHO_HFC32() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HFC32()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HFC4310 +String RHO_HFC4310(); +RcppExport SEXP _hector_RHO_HFC4310() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HFC4310()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HFC125 +String RHO_HFC125(); +RcppExport SEXP _hector_RHO_HFC125() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HFC125()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HFC134A +String RHO_HFC134A(); +RcppExport SEXP _hector_RHO_HFC134A() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HFC134A()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HFC143A +String RHO_HFC143A(); +RcppExport SEXP _hector_RHO_HFC143A() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HFC143A()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HFC227EA +String RHO_HFC227EA(); +RcppExport SEXP _hector_RHO_HFC227EA() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HFC227EA()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HFC245FA +String RHO_HFC245FA(); +RcppExport SEXP _hector_RHO_HFC245FA() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HFC245FA()); + return rcpp_result_gen; +END_RCPP +} +// RHO_SF6 +String RHO_SF6(); +RcppExport SEXP _hector_RHO_SF6() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_SF6()); + return rcpp_result_gen; +END_RCPP +} +// RHO_CFC11 +String RHO_CFC11(); +RcppExport SEXP _hector_RHO_CFC11() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_CFC11()); + return rcpp_result_gen; +END_RCPP +} +// RHO_CFC12 +String RHO_CFC12(); +RcppExport SEXP _hector_RHO_CFC12() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_CFC12()); + return rcpp_result_gen; +END_RCPP +} +// RHO_CFC113 +String RHO_CFC113(); +RcppExport SEXP _hector_RHO_CFC113() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_CFC113()); + return rcpp_result_gen; +END_RCPP +} +// RHO_CFC114 +String RHO_CFC114(); +RcppExport SEXP _hector_RHO_CFC114() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_CFC114()); + return rcpp_result_gen; +END_RCPP +} +// RHO_CFC115 +String RHO_CFC115(); +RcppExport SEXP _hector_RHO_CFC115() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_CFC115()); + return rcpp_result_gen; +END_RCPP +} +// RHO_CCL4 +String RHO_CCL4(); +RcppExport SEXP _hector_RHO_CCL4() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_CCL4()); + return rcpp_result_gen; +END_RCPP +} +// RHO_CH3CCL3 +String RHO_CH3CCL3(); +RcppExport SEXP _hector_RHO_CH3CCL3() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_CH3CCL3()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HCFC22 +String RHO_HCFC22(); +RcppExport SEXP _hector_RHO_HCFC22() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HCFC22()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HCFC141B +String RHO_HCFC141B(); +RcppExport SEXP _hector_RHO_HCFC141B() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HCFC141B()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HCFC142B +String RHO_HCFC142B(); +RcppExport SEXP _hector_RHO_HCFC142B() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HCFC142B()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HALON1211 +String RHO_HALON1211(); +RcppExport SEXP _hector_RHO_HALON1211() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HALON1211()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HALON1301 +String RHO_HALON1301(); +RcppExport SEXP _hector_RHO_HALON1301() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HALON1301()); + return rcpp_result_gen; +END_RCPP +} +// RHO_HALON2402 +String RHO_HALON2402(); +RcppExport SEXP _hector_RHO_HALON2402() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_HALON2402()); + return rcpp_result_gen; +END_RCPP +} +// RHO_CH3CL +String RHO_CH3CL(); +RcppExport SEXP _hector_RHO_CH3CL() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_CH3CL()); + return rcpp_result_gen; +END_RCPP +} +// RHO_CH3BR +String RHO_CH3BR(); +RcppExport SEXP _hector_RHO_CH3BR() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RHO_CH3BR()); + return rcpp_result_gen; +END_RCPP +} +// DELTA_CF4 +String DELTA_CF4(); +RcppExport SEXP _hector_DELTA_CF4() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DELTA_CF4()); + return rcpp_result_gen; +END_RCPP +} +// DELTA_C2F6 +String DELTA_C2F6(); +RcppExport SEXP _hector_DELTA_C2F6() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DELTA_C2F6()); + return rcpp_result_gen; +END_RCPP +} +// DELTA_HFC23 +String DELTA_HFC23(); +RcppExport SEXP _hector_DELTA_HFC23() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DELTA_HFC23()); + return rcpp_result_gen; +END_RCPP +} +// DELTA_HFC32 +String DELTA_HFC32(); +RcppExport SEXP _hector_DELTA_HFC32() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DELTA_HFC32()); + return rcpp_result_gen; +END_RCPP +} +// DELTA_HFC4310 +String DELTA_HFC4310(); +RcppExport SEXP _hector_DELTA_HFC4310() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DELTA_HFC4310()); + return rcpp_result_gen; +END_RCPP +} +// DELTA_HFC125 +String DELTA_HFC125(); +RcppExport SEXP _hector_DELTA_HFC125() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DELTA_HFC125()); return rcpp_result_gen; END_RCPP } -// RF_HFC125 -String RF_HFC125(); -RcppExport SEXP _hector_RF_HFC125() { +// DELTA_HFC134A +String DELTA_HFC134A(); +RcppExport SEXP _hector_DELTA_HFC134A() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HFC125()); + rcpp_result_gen = Rcpp::wrap(DELTA_HFC134A()); return rcpp_result_gen; END_RCPP } -// RF_HFC134A -String RF_HFC134A(); -RcppExport SEXP _hector_RF_HFC134A() { +// DELTA_HFC143A +String DELTA_HFC143A(); +RcppExport SEXP _hector_DELTA_HFC143A() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HFC134A()); + rcpp_result_gen = Rcpp::wrap(DELTA_HFC143A()); return rcpp_result_gen; END_RCPP } -// RF_HFC143A -String RF_HFC143A(); -RcppExport SEXP _hector_RF_HFC143A() { +// DELTA_HFC227EA +String DELTA_HFC227EA(); +RcppExport SEXP _hector_DELTA_HFC227EA() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HFC143A()); + rcpp_result_gen = Rcpp::wrap(DELTA_HFC227EA()); return rcpp_result_gen; END_RCPP } -// RF_HFC227EA -String RF_HFC227EA(); -RcppExport SEXP _hector_RF_HFC227EA() { +// DELTA_HFC245FA +String DELTA_HFC245FA(); +RcppExport SEXP _hector_DELTA_HFC245FA() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HFC227EA()); + rcpp_result_gen = Rcpp::wrap(DELTA_HFC245FA()); return rcpp_result_gen; END_RCPP } -// RF_HFC245FA -String RF_HFC245FA(); -RcppExport SEXP _hector_RF_HFC245FA() { +// DELTA_SF6 +String DELTA_SF6(); +RcppExport SEXP _hector_DELTA_SF6() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HFC245FA()); + rcpp_result_gen = Rcpp::wrap(DELTA_SF6()); return rcpp_result_gen; END_RCPP } -// RF_SF6 -String RF_SF6(); -RcppExport SEXP _hector_RF_SF6() { +// DELTA_CFC11 +String DELTA_CFC11(); +RcppExport SEXP _hector_DELTA_CFC11() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_SF6()); + rcpp_result_gen = Rcpp::wrap(DELTA_CFC11()); return rcpp_result_gen; END_RCPP } -// RF_CFC11 -String RF_CFC11(); -RcppExport SEXP _hector_RF_CFC11() { +// DELTA_CFC12 +String DELTA_CFC12(); +RcppExport SEXP _hector_DELTA_CFC12() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_CFC11()); + rcpp_result_gen = Rcpp::wrap(DELTA_CFC12()); return rcpp_result_gen; END_RCPP } -// RF_CFC12 -String RF_CFC12(); -RcppExport SEXP _hector_RF_CFC12() { +// DELTA_CFC113 +String DELTA_CFC113(); +RcppExport SEXP _hector_DELTA_CFC113() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_CFC12()); + rcpp_result_gen = Rcpp::wrap(DELTA_CFC113()); return rcpp_result_gen; END_RCPP } -// RF_CFC113 -String RF_CFC113(); -RcppExport SEXP _hector_RF_CFC113() { +// DELTA_CFC114 +String DELTA_CFC114(); +RcppExport SEXP _hector_DELTA_CFC114() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_CFC113()); + rcpp_result_gen = Rcpp::wrap(DELTA_CFC114()); return rcpp_result_gen; END_RCPP } -// RF_CFC114 -String RF_CFC114(); -RcppExport SEXP _hector_RF_CFC114() { +// DELTA_CFC115 +String DELTA_CFC115(); +RcppExport SEXP _hector_DELTA_CFC115() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_CFC114()); + rcpp_result_gen = Rcpp::wrap(DELTA_CFC115()); return rcpp_result_gen; END_RCPP } -// RF_CFC115 -String RF_CFC115(); -RcppExport SEXP _hector_RF_CFC115() { +// DELTA_CCL4 +String DELTA_CCL4(); +RcppExport SEXP _hector_DELTA_CCL4() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_CFC115()); + rcpp_result_gen = Rcpp::wrap(DELTA_CCL4()); return rcpp_result_gen; END_RCPP } -// RF_CCL4 -String RF_CCL4(); -RcppExport SEXP _hector_RF_CCL4() { +// DELTA_CH3CCL3 +String DELTA_CH3CCL3(); +RcppExport SEXP _hector_DELTA_CH3CCL3() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_CCL4()); + rcpp_result_gen = Rcpp::wrap(DELTA_CH3CCL3()); return rcpp_result_gen; END_RCPP } -// RF_CH3CCL3 -String RF_CH3CCL3(); -RcppExport SEXP _hector_RF_CH3CCL3() { +// DELTA_HCFC22 +String DELTA_HCFC22(); +RcppExport SEXP _hector_DELTA_HCFC22() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_CH3CCL3()); + rcpp_result_gen = Rcpp::wrap(DELTA_HCFC22()); return rcpp_result_gen; END_RCPP } -// RF_HCFC22 -String RF_HCFC22(); -RcppExport SEXP _hector_RF_HCFC22() { +// DELTA_HCFC141B +String DELTA_HCFC141B(); +RcppExport SEXP _hector_DELTA_HCFC141B() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HCFC22()); + rcpp_result_gen = Rcpp::wrap(DELTA_HCFC141B()); return rcpp_result_gen; END_RCPP } -// RF_HCFC141B -String RF_HCFC141B(); -RcppExport SEXP _hector_RF_HCFC141B() { +// DELTA_HCFC142B +String DELTA_HCFC142B(); +RcppExport SEXP _hector_DELTA_HCFC142B() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HCFC141B()); + rcpp_result_gen = Rcpp::wrap(DELTA_HCFC142B()); return rcpp_result_gen; END_RCPP } -// RF_HCFC142B -String RF_HCFC142B(); -RcppExport SEXP _hector_RF_HCFC142B() { +// DELTA_HALON1211 +String DELTA_HALON1211(); +RcppExport SEXP _hector_DELTA_HALON1211() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HCFC142B()); + rcpp_result_gen = Rcpp::wrap(DELTA_HALON1211()); return rcpp_result_gen; END_RCPP } -// RF_HALON1211 -String RF_HALON1211(); -RcppExport SEXP _hector_RF_HALON1211() { +// DELTA_HALON1301 +String DELTA_HALON1301(); +RcppExport SEXP _hector_DELTA_HALON1301() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HALON1211()); + rcpp_result_gen = Rcpp::wrap(DELTA_HALON1301()); return rcpp_result_gen; END_RCPP } -// RF_HALON1301 -String RF_HALON1301(); -RcppExport SEXP _hector_RF_HALON1301() { +// DELTA_HALON2402 +String DELTA_HALON2402(); +RcppExport SEXP _hector_DELTA_HALON2402() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HALON1301()); + rcpp_result_gen = Rcpp::wrap(DELTA_HALON2402()); return rcpp_result_gen; END_RCPP } -// RF_HALON2402 -String RF_HALON2402(); -RcppExport SEXP _hector_RF_HALON2402() { +// DELTA_CH3CL +String DELTA_CH3CL(); +RcppExport SEXP _hector_DELTA_CH3CL() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_HALON2402()); + rcpp_result_gen = Rcpp::wrap(DELTA_CH3CL()); return rcpp_result_gen; END_RCPP } -// RF_CH3CL -String RF_CH3CL(); -RcppExport SEXP _hector_RF_CH3CL() { +// DELTA_CH3BR +String DELTA_CH3BR(); +RcppExport SEXP _hector_DELTA_CH3BR() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_CH3CL()); + rcpp_result_gen = Rcpp::wrap(DELTA_CH3BR()); return rcpp_result_gen; END_RCPP } -// RF_CH3BR -String RF_CH3BR(); -RcppExport SEXP _hector_RF_CH3BR() { +// Q_CO2 +String Q_CO2(); +RcppExport SEXP _hector_Q_CO2() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(RF_CH3BR()); + rcpp_result_gen = Rcpp::wrap(Q_CO2()); return rcpp_result_gen; END_RCPP } @@ -1000,13 +1630,13 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// ATMOSPHERIC_CH4 -String ATMOSPHERIC_CH4(); -RcppExport SEXP _hector_ATMOSPHERIC_CH4() { +// CONCENTRATIONS_CH4 +String CONCENTRATIONS_CH4(); +RcppExport SEXP _hector_CONCENTRATIONS_CH4() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(ATMOSPHERIC_CH4()); + rcpp_result_gen = Rcpp::wrap(CONCENTRATIONS_CH4()); return rcpp_result_gen; END_RCPP } @@ -1040,6 +1670,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// DELTA_CH4 +String DELTA_CH4(); +RcppExport SEXP _hector_DELTA_CH4() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DELTA_CH4()); + return rcpp_result_gen; +END_RCPP +} // EMISSIONS_CH4 String EMISSIONS_CH4(); RcppExport SEXP _hector_EMISSIONS_CH4() { @@ -1080,13 +1720,13 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// ATMOSPHERIC_N2O -String ATMOSPHERIC_N2O(); -RcppExport SEXP _hector_ATMOSPHERIC_N2O() { +// CONCENTRATIONS_N2O +String CONCENTRATIONS_N2O(); +RcppExport SEXP _hector_CONCENTRATIONS_N2O() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(ATMOSPHERIC_N2O()); + rcpp_result_gen = Rcpp::wrap(CONCENTRATIONS_N2O()); return rcpp_result_gen; END_RCPP } @@ -1140,13 +1780,13 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// ATMOSPHERIC_O3 -String ATMOSPHERIC_O3(); -RcppExport SEXP _hector_ATMOSPHERIC_O3() { +// CONCENTRATIONS_O3 +String CONCENTRATIONS_O3(); +RcppExport SEXP _hector_CONCENTRATIONS_O3() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(ATMOSPHERIC_O3()); + rcpp_result_gen = Rcpp::wrap(CONCENTRATIONS_O3()); return rcpp_result_gen; END_RCPP } @@ -1190,13 +1830,23 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// OCEAN_CFLUX -String OCEAN_CFLUX(); -RcppExport SEXP _hector_OCEAN_CFLUX() { +// EMISSIONS_NH3 +String EMISSIONS_NH3(); +RcppExport SEXP _hector_EMISSIONS_NH3() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(EMISSIONS_NH3()); + return rcpp_result_gen; +END_RCPP +} +// OCEAN_UPTAKE +String OCEAN_UPTAKE(); +RcppExport SEXP _hector_OCEAN_UPTAKE() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(OCEAN_CFLUX()); + rcpp_result_gen = Rcpp::wrap(OCEAN_UPTAKE()); return rcpp_result_gen; END_RCPP } @@ -1230,6 +1880,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// OCEAN_C_ML +String OCEAN_C_ML(); +RcppExport SEXP _hector_OCEAN_C_ML() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(OCEAN_C_ML()); + return rcpp_result_gen; +END_RCPP +} // OCEAN_C_IO String OCEAN_C_IO(); RcppExport SEXP _hector_OCEAN_C_IO() { @@ -1250,6 +1910,26 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// OCEAN_PREIND_C_SURF +String OCEAN_PREIND_C_SURF(); +RcppExport SEXP _hector_OCEAN_PREIND_C_SURF() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(OCEAN_PREIND_C_SURF()); + return rcpp_result_gen; +END_RCPP +} +// OCEAN_PREIND_C_ID +String OCEAN_PREIND_C_ID(); +RcppExport SEXP _hector_OCEAN_PREIND_C_ID() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(OCEAN_PREIND_C_ID()); + return rcpp_result_gen; +END_RCPP +} // TT String TT(); RcppExport SEXP _hector_TT() { @@ -1310,23 +1990,33 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// ATM_OCEAN_FLUX_HL -String ATM_OCEAN_FLUX_HL(); -RcppExport SEXP _hector_ATM_OCEAN_FLUX_HL() { +// PH +String PH(); +RcppExport SEXP _hector_PH() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(PH()); + return rcpp_result_gen; +END_RCPP +} +// HL_OCEAN_UPTAKE +String HL_OCEAN_UPTAKE(); +RcppExport SEXP _hector_HL_OCEAN_UPTAKE() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(ATM_OCEAN_FLUX_HL()); + rcpp_result_gen = Rcpp::wrap(HL_OCEAN_UPTAKE()); return rcpp_result_gen; END_RCPP } -// ATM_OCEAN_FLUX_LL -String ATM_OCEAN_FLUX_LL(); -RcppExport SEXP _hector_ATM_OCEAN_FLUX_LL() { +// LL_OCEAN_UPTAKE +String LL_OCEAN_UPTAKE(); +RcppExport SEXP _hector_LL_OCEAN_UPTAKE() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(ATM_OCEAN_FLUX_LL()); + rcpp_result_gen = Rcpp::wrap(LL_OCEAN_UPTAKE()); return rcpp_result_gen; END_RCPP } @@ -1350,6 +2040,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// PCO2 +String PCO2(); +RcppExport SEXP _hector_PCO2() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(PCO2()); + return rcpp_result_gen; +END_RCPP +} // DIC_HL String DIC_HL(); RcppExport SEXP _hector_DIC_HL() { @@ -1360,6 +2060,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// DIC +String DIC(); +RcppExport SEXP _hector_DIC() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DIC()); + return rcpp_result_gen; +END_RCPP +} // DIC_LL String DIC_LL(); RcppExport SEXP _hector_DIC_LL() { @@ -1370,23 +2080,23 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// TEMP_HL -String TEMP_HL(); -RcppExport SEXP _hector_TEMP_HL() { +// SST_HL +String SST_HL(); +RcppExport SEXP _hector_SST_HL() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(TEMP_HL()); + rcpp_result_gen = Rcpp::wrap(SST_HL()); return rcpp_result_gen; END_RCPP } -// TEMP_LL -String TEMP_LL(); -RcppExport SEXP _hector_TEMP_LL() { +// SST_LL +String SST_LL(); +RcppExport SEXP _hector_SST_LL() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(TEMP_LL()); + rcpp_result_gen = Rcpp::wrap(SST_LL()); return rcpp_result_gen; END_RCPP } @@ -1410,13 +2120,13 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// LAND_CFLUX -String LAND_CFLUX(); -RcppExport SEXP _hector_LAND_CFLUX() { +// CO3 +String CO3(); +RcppExport SEXP _hector_CO3() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(LAND_CFLUX()); + rcpp_result_gen = Rcpp::wrap(CO3()); return rcpp_result_gen; END_RCPP } @@ -1430,13 +2140,13 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// ATMOSPHERIC_CO2 -String ATMOSPHERIC_CO2(); -RcppExport SEXP _hector_ATMOSPHERIC_CO2() { +// CONCENTRATIONS_CO2 +String CONCENTRATIONS_CO2(); +RcppExport SEXP _hector_CONCENTRATIONS_CO2() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(ATMOSPHERIC_CO2()); + rcpp_result_gen = Rcpp::wrap(CONCENTRATIONS_CO2()); return rcpp_result_gen; END_RCPP } @@ -1450,6 +2160,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// RH +String RH(); +RcppExport SEXP _hector_RH() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(RH()); + return rcpp_result_gen; +END_RCPP +} // PREINDUSTRIAL_CO2 String PREINDUSTRIAL_CO2(); RcppExport SEXP _hector_PREINDUSTRIAL_CO2() { @@ -1460,13 +2180,13 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// ATMOSPHERIC_C -String ATMOSPHERIC_C(); -RcppExport SEXP _hector_ATMOSPHERIC_C() { +// ATMOSPHERIC_CO2 +String ATMOSPHERIC_CO2(); +RcppExport SEXP _hector_ATMOSPHERIC_CO2() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(ATMOSPHERIC_C()); + rcpp_result_gen = Rcpp::wrap(ATMOSPHERIC_CO2()); return rcpp_result_gen; END_RCPP } @@ -1480,6 +2200,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// DACCS_UPTAKE +String DACCS_UPTAKE(); +RcppExport SEXP _hector_DACCS_UPTAKE() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(DACCS_UPTAKE()); + return rcpp_result_gen; +END_RCPP +} // LUC_EMISSIONS String LUC_EMISSIONS(); RcppExport SEXP _hector_LUC_EMISSIONS() { @@ -1490,6 +2220,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// LUC_UPTAKE +String LUC_UPTAKE(); +RcppExport SEXP _hector_LUC_UPTAKE() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(LUC_UPTAKE()); + return rcpp_result_gen; +END_RCPP +} // BETA String BETA(String biome); RcppExport SEXP _hector_BETA(SEXP biomeSEXP) { @@ -1533,6 +2273,16 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// NBP_CONSTRAIN +String NBP_CONSTRAIN(); +RcppExport SEXP _hector_NBP_CONSTRAIN() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(NBP_CONSTRAIN()); + return rcpp_result_gen; +END_RCPP +} // F_NPPV String F_NPPV(String biome); RcppExport SEXP _hector_F_NPPV(SEXP biomeSEXP) { @@ -1566,26 +2316,6 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// F_LUCV -String F_LUCV(); -RcppExport SEXP _hector_F_LUCV() { -BEGIN_RCPP - Rcpp::RObject rcpp_result_gen; - Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(F_LUCV()); - return rcpp_result_gen; -END_RCPP -} -// F_LUCD -String F_LUCD(); -RcppExport SEXP _hector_F_LUCD() { -BEGIN_RCPP - Rcpp::RObject rcpp_result_gen; - Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(F_LUCD()); - return rcpp_result_gen; -END_RCPP -} // VEG_C String VEG_C(String biome); RcppExport SEXP _hector_VEG_C(SEXP biomeSEXP) { @@ -1619,34 +2349,101 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// NPP_FLUX0 -String NPP_FLUX0(String biome); -RcppExport SEXP _hector_NPP_FLUX0(SEXP biomeSEXP) { +// PERMAFROST_C +String PERMAFROST_C(String biome); +RcppExport SEXP _hector_PERMAFROST_C(SEXP biomeSEXP) { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; Rcpp::traits::input_parameter< String >::type biome(biomeSEXP); - rcpp_result_gen = Rcpp::wrap(NPP_FLUX0(biome)); + rcpp_result_gen = Rcpp::wrap(PERMAFROST_C(biome)); + return rcpp_result_gen; +END_RCPP +} +// THAWEDP_C +String THAWEDP_C(String biome); +RcppExport SEXP _hector_THAWEDP_C(SEXP biomeSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< String >::type biome(biomeSEXP); + rcpp_result_gen = Rcpp::wrap(THAWEDP_C(biome)); + return rcpp_result_gen; +END_RCPP +} +// FRAC_FROZEN +String FRAC_FROZEN(String biome); +RcppExport SEXP _hector_FRAC_FROZEN(SEXP biomeSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< String >::type biome(biomeSEXP); + rcpp_result_gen = Rcpp::wrap(FRAC_FROZEN(biome)); + return rcpp_result_gen; +END_RCPP +} +// FRAC_STATIC +String FRAC_STATIC(String biome); +RcppExport SEXP _hector_FRAC_STATIC(SEXP biomeSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< String >::type biome(biomeSEXP); + rcpp_result_gen = Rcpp::wrap(FRAC_STATIC(biome)); + return rcpp_result_gen; +END_RCPP +} +// PERMAFROST_MU +String PERMAFROST_MU(String biome); +RcppExport SEXP _hector_PERMAFROST_MU(SEXP biomeSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< String >::type biome(biomeSEXP); + rcpp_result_gen = Rcpp::wrap(PERMAFROST_MU(biome)); + return rcpp_result_gen; +END_RCPP +} +// PERMAFROST_SIGMA +String PERMAFROST_SIGMA(String biome); +RcppExport SEXP _hector_PERMAFROST_SIGMA(SEXP biomeSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< String >::type biome(biomeSEXP); + rcpp_result_gen = Rcpp::wrap(PERMAFROST_SIGMA(biome)); + return rcpp_result_gen; +END_RCPP +} +// FRAC_DECOMP_CH4 +String FRAC_DECOMP_CH4(String biome); +RcppExport SEXP _hector_FRAC_DECOMP_CH4(SEXP biomeSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< String >::type biome(biomeSEXP); + rcpp_result_gen = Rcpp::wrap(FRAC_DECOMP_CH4(biome)); return rcpp_result_gen; END_RCPP } -// NATURAL_SO2 -String NATURAL_SO2(); -RcppExport SEXP _hector_NATURAL_SO2() { +// EARTH_C +String EARTH_C(); +RcppExport SEXP _hector_EARTH_C() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(NATURAL_SO2()); + rcpp_result_gen = Rcpp::wrap(EARTH_C()); return rcpp_result_gen; END_RCPP } -// Y2000_SO2 -String Y2000_SO2(); -RcppExport SEXP _hector_Y2000_SO2() { +// NPP_FLUX0 +String NPP_FLUX0(String biome); +RcppExport SEXP _hector_NPP_FLUX0(SEXP biomeSEXP) { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(Y2000_SO2()); + Rcpp::traits::input_parameter< String >::type biome(biomeSEXP); + rcpp_result_gen = Rcpp::wrap(NPP_FLUX0(biome)); return rcpp_result_gen; END_RCPP } @@ -1700,53 +2497,63 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// GLOBAL_TEMP -String GLOBAL_TEMP(); -RcppExport SEXP _hector_GLOBAL_TEMP() { +// GLOBAL_TAS +String GLOBAL_TAS(); +RcppExport SEXP _hector_GLOBAL_TAS() { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + rcpp_result_gen = Rcpp::wrap(GLOBAL_TAS()); + return rcpp_result_gen; +END_RCPP +} +// SST +String SST(); +RcppExport SEXP _hector_SST() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(GLOBAL_TEMP()); + rcpp_result_gen = Rcpp::wrap(SST()); return rcpp_result_gen; END_RCPP } -// GLOBAL_TEMPEQ -String GLOBAL_TEMPEQ(); -RcppExport SEXP _hector_GLOBAL_TEMPEQ() { +// OCEAN_TAS +String OCEAN_TAS(); +RcppExport SEXP _hector_OCEAN_TAS() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(GLOBAL_TEMPEQ()); + rcpp_result_gen = Rcpp::wrap(OCEAN_TAS()); return rcpp_result_gen; END_RCPP } -// OCEAN_SURFACE_TEMP -String OCEAN_SURFACE_TEMP(); -RcppExport SEXP _hector_OCEAN_SURFACE_TEMP() { +// LAND_TAS +String LAND_TAS(); +RcppExport SEXP _hector_LAND_TAS() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(OCEAN_SURFACE_TEMP()); + rcpp_result_gen = Rcpp::wrap(LAND_TAS()); return rcpp_result_gen; END_RCPP } -// OCEAN_AIR_TEMP -String OCEAN_AIR_TEMP(); -RcppExport SEXP _hector_OCEAN_AIR_TEMP() { +// LO_WARMING_RATIO +String LO_WARMING_RATIO(); +RcppExport SEXP _hector_LO_WARMING_RATIO() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(OCEAN_AIR_TEMP()); + rcpp_result_gen = Rcpp::wrap(LO_WARMING_RATIO()); return rcpp_result_gen; END_RCPP } -// LAND_AIR_TEMP -String LAND_AIR_TEMP(); -RcppExport SEXP _hector_LAND_AIR_TEMP() { +// TAS_CONSTRAIN +String TAS_CONSTRAIN(); +RcppExport SEXP _hector_TAS_CONSTRAIN() { BEGIN_RCPP Rcpp::RObject rcpp_result_gen; Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(LAND_AIR_TEMP()); + rcpp_result_gen = Rcpp::wrap(TAS_CONSTRAIN()); return rcpp_result_gen; END_RCPP } @@ -1790,16 +2597,6 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } -// BIOME_SPLIT_CHAR -String BIOME_SPLIT_CHAR(); -RcppExport SEXP _hector_BIOME_SPLIT_CHAR() { -BEGIN_RCPP - Rcpp::RObject rcpp_result_gen; - Rcpp::RNGScope rcpp_rngScope_gen; - rcpp_result_gen = Rcpp::wrap(BIOME_SPLIT_CHAR()); - return rcpp_result_gen; -END_RCPP -} // newcore_impl Environment newcore_impl(String inifile, int loglevel, bool suppresslogging, String name); RcppExport SEXP _hector_newcore_impl(SEXP inifileSEXP, SEXP loglevelSEXP, SEXP suppressloggingSEXP, SEXP nameSEXP) { @@ -1860,6 +2657,17 @@ BEGIN_RCPP return rcpp_result_gen; END_RCPP } +// get_tracking_data_impl +std::string get_tracking_data_impl(Environment core); +RcppExport SEXP _hector_get_tracking_data_impl(SEXP coreSEXP) { +BEGIN_RCPP + Rcpp::RObject rcpp_result_gen; + Rcpp::RNGScope rcpp_rngScope_gen; + Rcpp::traits::input_parameter< Environment >::type core(coreSEXP); + rcpp_result_gen = Rcpp::wrap(get_tracking_data_impl(core)); + return rcpp_result_gen; +END_RCPP +} // get_biome_list std::vector get_biome_list(Environment core); RcppExport SEXP _hector_get_biome_list(SEXP coreSEXP) { @@ -1939,23 +2747,33 @@ END_RCPP static const R_CallMethodDef CallEntries[] = { {"_hector_GETDATA", (DL_FUNC) &_hector_GETDATA, 0}, {"_hector_SETDATA", (DL_FUNC) &_hector_SETDATA, 0}, + {"_hector_BIOME_SPLIT_CHAR", (DL_FUNC) &_hector_BIOME_SPLIT_CHAR, 0}, {"_hector_LL_DEBUG", (DL_FUNC) &_hector_LL_DEBUG, 0}, {"_hector_LL_NOTICE", (DL_FUNC) &_hector_LL_NOTICE, 0}, {"_hector_LL_WARNING", (DL_FUNC) &_hector_LL_WARNING, 0}, {"_hector_LL_SEVERE", (DL_FUNC) &_hector_LL_SEVERE, 0}, + {"_hector_TRACKING_DATE", (DL_FUNC) &_hector_TRACKING_DATE, 0}, {"_hector_EMISSIONS_BC", (DL_FUNC) &_hector_EMISSIONS_BC, 0}, {"_hector_RF_TOTAL", (DL_FUNC) &_hector_RF_TOTAL, 0}, - {"_hector_RF_T_ALBEDO", (DL_FUNC) &_hector_RF_T_ALBEDO, 0}, + {"_hector_FTOT_CONSTRAIN", (DL_FUNC) &_hector_FTOT_CONSTRAIN, 0}, + {"_hector_RF_ALBEDO", (DL_FUNC) &_hector_RF_ALBEDO, 0}, {"_hector_RF_CO2", (DL_FUNC) &_hector_RF_CO2, 0}, + {"_hector_DELTA_CO2", (DL_FUNC) &_hector_DELTA_CO2, 0}, {"_hector_RF_N2O", (DL_FUNC) &_hector_RF_N2O, 0}, + {"_hector_DELTA_N2O", (DL_FUNC) &_hector_DELTA_N2O, 0}, {"_hector_RF_H2O_STRAT", (DL_FUNC) &_hector_RF_H2O_STRAT, 0}, {"_hector_RF_O3_TROP", (DL_FUNC) &_hector_RF_O3_TROP, 0}, {"_hector_RF_BC", (DL_FUNC) &_hector_RF_BC, 0}, + {"_hector_RHO_BC", (DL_FUNC) &_hector_RHO_BC, 0}, {"_hector_RF_OC", (DL_FUNC) &_hector_RF_OC, 0}, - {"_hector_RF_SO2D", (DL_FUNC) &_hector_RF_SO2D, 0}, - {"_hector_RF_SO2I", (DL_FUNC) &_hector_RF_SO2I, 0}, + {"_hector_RHO_OC", (DL_FUNC) &_hector_RHO_OC, 0}, + {"_hector_RF_NH3", (DL_FUNC) &_hector_RF_NH3, 0}, + {"_hector_RHO_NH3", (DL_FUNC) &_hector_RHO_NH3, 0}, {"_hector_RF_SO2", (DL_FUNC) &_hector_RF_SO2, 0}, + {"_hector_RF_ACI", (DL_FUNC) &_hector_RF_ACI, 0}, + {"_hector_RHO_SO2", (DL_FUNC) &_hector_RHO_SO2, 0}, {"_hector_RF_VOL", (DL_FUNC) &_hector_RF_VOL, 0}, + {"_hector_RF_MISC", (DL_FUNC) &_hector_RF_MISC, 0}, {"_hector_RFADJ_PREFIX", (DL_FUNC) &_hector_RFADJ_PREFIX, 0}, {"_hector_RF_PREFIX", (DL_FUNC) &_hector_RF_PREFIX, 0}, {"_hector_RF_CF4", (DL_FUNC) &_hector_RF_CF4, 0}, @@ -1984,6 +2802,59 @@ static const R_CallMethodDef CallEntries[] = { {"_hector_RF_HALON2402", (DL_FUNC) &_hector_RF_HALON2402, 0}, {"_hector_RF_CH3CL", (DL_FUNC) &_hector_RF_CH3CL, 0}, {"_hector_RF_CH3BR", (DL_FUNC) &_hector_RF_CH3BR, 0}, + {"_hector_RHO_CF4", (DL_FUNC) &_hector_RHO_CF4, 0}, + {"_hector_RHO_C2F6", (DL_FUNC) &_hector_RHO_C2F6, 0}, + {"_hector_RHO_HFC23", (DL_FUNC) &_hector_RHO_HFC23, 0}, + {"_hector_RHO_HFC32", (DL_FUNC) &_hector_RHO_HFC32, 0}, + {"_hector_RHO_HFC4310", (DL_FUNC) &_hector_RHO_HFC4310, 0}, + {"_hector_RHO_HFC125", (DL_FUNC) &_hector_RHO_HFC125, 0}, + {"_hector_RHO_HFC134A", (DL_FUNC) &_hector_RHO_HFC134A, 0}, + {"_hector_RHO_HFC143A", (DL_FUNC) &_hector_RHO_HFC143A, 0}, + {"_hector_RHO_HFC227EA", (DL_FUNC) &_hector_RHO_HFC227EA, 0}, + {"_hector_RHO_HFC245FA", (DL_FUNC) &_hector_RHO_HFC245FA, 0}, + {"_hector_RHO_SF6", (DL_FUNC) &_hector_RHO_SF6, 0}, + {"_hector_RHO_CFC11", (DL_FUNC) &_hector_RHO_CFC11, 0}, + {"_hector_RHO_CFC12", (DL_FUNC) &_hector_RHO_CFC12, 0}, + {"_hector_RHO_CFC113", (DL_FUNC) &_hector_RHO_CFC113, 0}, + {"_hector_RHO_CFC114", (DL_FUNC) &_hector_RHO_CFC114, 0}, + {"_hector_RHO_CFC115", (DL_FUNC) &_hector_RHO_CFC115, 0}, + {"_hector_RHO_CCL4", (DL_FUNC) &_hector_RHO_CCL4, 0}, + {"_hector_RHO_CH3CCL3", (DL_FUNC) &_hector_RHO_CH3CCL3, 0}, + {"_hector_RHO_HCFC22", (DL_FUNC) &_hector_RHO_HCFC22, 0}, + {"_hector_RHO_HCFC141B", (DL_FUNC) &_hector_RHO_HCFC141B, 0}, + {"_hector_RHO_HCFC142B", (DL_FUNC) &_hector_RHO_HCFC142B, 0}, + {"_hector_RHO_HALON1211", (DL_FUNC) &_hector_RHO_HALON1211, 0}, + {"_hector_RHO_HALON1301", (DL_FUNC) &_hector_RHO_HALON1301, 0}, + {"_hector_RHO_HALON2402", (DL_FUNC) &_hector_RHO_HALON2402, 0}, + {"_hector_RHO_CH3CL", (DL_FUNC) &_hector_RHO_CH3CL, 0}, + {"_hector_RHO_CH3BR", (DL_FUNC) &_hector_RHO_CH3BR, 0}, + {"_hector_DELTA_CF4", (DL_FUNC) &_hector_DELTA_CF4, 0}, + {"_hector_DELTA_C2F6", (DL_FUNC) &_hector_DELTA_C2F6, 0}, + {"_hector_DELTA_HFC23", (DL_FUNC) &_hector_DELTA_HFC23, 0}, + {"_hector_DELTA_HFC32", (DL_FUNC) &_hector_DELTA_HFC32, 0}, + {"_hector_DELTA_HFC4310", (DL_FUNC) &_hector_DELTA_HFC4310, 0}, + {"_hector_DELTA_HFC125", (DL_FUNC) &_hector_DELTA_HFC125, 0}, + {"_hector_DELTA_HFC134A", (DL_FUNC) &_hector_DELTA_HFC134A, 0}, + {"_hector_DELTA_HFC143A", (DL_FUNC) &_hector_DELTA_HFC143A, 0}, + {"_hector_DELTA_HFC227EA", (DL_FUNC) &_hector_DELTA_HFC227EA, 0}, + {"_hector_DELTA_HFC245FA", (DL_FUNC) &_hector_DELTA_HFC245FA, 0}, + {"_hector_DELTA_SF6", (DL_FUNC) &_hector_DELTA_SF6, 0}, + {"_hector_DELTA_CFC11", (DL_FUNC) &_hector_DELTA_CFC11, 0}, + {"_hector_DELTA_CFC12", (DL_FUNC) &_hector_DELTA_CFC12, 0}, + {"_hector_DELTA_CFC113", (DL_FUNC) &_hector_DELTA_CFC113, 0}, + {"_hector_DELTA_CFC114", (DL_FUNC) &_hector_DELTA_CFC114, 0}, + {"_hector_DELTA_CFC115", (DL_FUNC) &_hector_DELTA_CFC115, 0}, + {"_hector_DELTA_CCL4", (DL_FUNC) &_hector_DELTA_CCL4, 0}, + {"_hector_DELTA_CH3CCL3", (DL_FUNC) &_hector_DELTA_CH3CCL3, 0}, + {"_hector_DELTA_HCFC22", (DL_FUNC) &_hector_DELTA_HCFC22, 0}, + {"_hector_DELTA_HCFC141B", (DL_FUNC) &_hector_DELTA_HCFC141B, 0}, + {"_hector_DELTA_HCFC142B", (DL_FUNC) &_hector_DELTA_HCFC142B, 0}, + {"_hector_DELTA_HALON1211", (DL_FUNC) &_hector_DELTA_HALON1211, 0}, + {"_hector_DELTA_HALON1301", (DL_FUNC) &_hector_DELTA_HALON1301, 0}, + {"_hector_DELTA_HALON2402", (DL_FUNC) &_hector_DELTA_HALON2402, 0}, + {"_hector_DELTA_CH3CL", (DL_FUNC) &_hector_DELTA_CH3CL, 0}, + {"_hector_DELTA_CH3BR", (DL_FUNC) &_hector_DELTA_CH3BR, 0}, + {"_hector_Q_CO2", (DL_FUNC) &_hector_Q_CO2, 0}, {"_hector_EMISSIONS_CF4", (DL_FUNC) &_hector_EMISSIONS_CF4, 0}, {"_hector_EMISSIONS_C2F6", (DL_FUNC) &_hector_EMISSIONS_C2F6, 0}, {"_hector_EMISSIONS_HFC23", (DL_FUNC) &_hector_EMISSIONS_HFC23, 0}, @@ -2036,90 +2907,107 @@ static const R_CallMethodDef CallEntries[] = { {"_hector_HALON2402_CONSTRAIN", (DL_FUNC) &_hector_HALON2402_CONSTRAIN, 0}, {"_hector_CH3CL_CONSTRAIN", (DL_FUNC) &_hector_CH3CL_CONSTRAIN, 0}, {"_hector_CH3BR_CONSTRAIN", (DL_FUNC) &_hector_CH3BR_CONSTRAIN, 0}, - {"_hector_ATMOSPHERIC_CH4", (DL_FUNC) &_hector_ATMOSPHERIC_CH4, 0}, + {"_hector_CONCENTRATIONS_CH4", (DL_FUNC) &_hector_CONCENTRATIONS_CH4, 0}, {"_hector_CH4_CONSTRAIN", (DL_FUNC) &_hector_CH4_CONSTRAIN, 0}, {"_hector_PREINDUSTRIAL_CH4", (DL_FUNC) &_hector_PREINDUSTRIAL_CH4, 0}, {"_hector_RF_CH4", (DL_FUNC) &_hector_RF_CH4, 0}, + {"_hector_DELTA_CH4", (DL_FUNC) &_hector_DELTA_CH4, 0}, {"_hector_EMISSIONS_CH4", (DL_FUNC) &_hector_EMISSIONS_CH4, 0}, {"_hector_NATURAL_CH4", (DL_FUNC) &_hector_NATURAL_CH4, 0}, {"_hector_LIFETIME_SOIL", (DL_FUNC) &_hector_LIFETIME_SOIL, 0}, {"_hector_LIFETIME_STRAT", (DL_FUNC) &_hector_LIFETIME_STRAT, 0}, - {"_hector_ATMOSPHERIC_N2O", (DL_FUNC) &_hector_ATMOSPHERIC_N2O, 0}, + {"_hector_CONCENTRATIONS_N2O", (DL_FUNC) &_hector_CONCENTRATIONS_N2O, 0}, {"_hector_PREINDUSTRIAL_N2O", (DL_FUNC) &_hector_PREINDUSTRIAL_N2O, 0}, {"_hector_EMISSIONS_N2O", (DL_FUNC) &_hector_EMISSIONS_N2O, 0}, {"_hector_NAT_EMISSIONS_N2O", (DL_FUNC) &_hector_NAT_EMISSIONS_N2O, 0}, {"_hector_N2O_CONSTRAIN", (DL_FUNC) &_hector_N2O_CONSTRAIN, 0}, {"_hector_PREINDUSTRIAL_O3", (DL_FUNC) &_hector_PREINDUSTRIAL_O3, 0}, - {"_hector_ATMOSPHERIC_O3", (DL_FUNC) &_hector_ATMOSPHERIC_O3, 0}, + {"_hector_CONCENTRATIONS_O3", (DL_FUNC) &_hector_CONCENTRATIONS_O3, 0}, {"_hector_EMISSIONS_NOX", (DL_FUNC) &_hector_EMISSIONS_NOX, 0}, {"_hector_EMISSIONS_CO", (DL_FUNC) &_hector_EMISSIONS_CO, 0}, {"_hector_EMISSIONS_NMVOC", (DL_FUNC) &_hector_EMISSIONS_NMVOC, 0}, {"_hector_EMISSIONS_OC", (DL_FUNC) &_hector_EMISSIONS_OC, 0}, - {"_hector_OCEAN_CFLUX", (DL_FUNC) &_hector_OCEAN_CFLUX, 0}, + {"_hector_EMISSIONS_NH3", (DL_FUNC) &_hector_EMISSIONS_NH3, 0}, + {"_hector_OCEAN_UPTAKE", (DL_FUNC) &_hector_OCEAN_UPTAKE, 0}, {"_hector_OCEAN_C", (DL_FUNC) &_hector_OCEAN_C, 0}, {"_hector_OCEAN_C_HL", (DL_FUNC) &_hector_OCEAN_C_HL, 0}, {"_hector_OCEAN_C_LL", (DL_FUNC) &_hector_OCEAN_C_LL, 0}, + {"_hector_OCEAN_C_ML", (DL_FUNC) &_hector_OCEAN_C_ML, 0}, {"_hector_OCEAN_C_IO", (DL_FUNC) &_hector_OCEAN_C_IO, 0}, {"_hector_OCEAN_C_DO", (DL_FUNC) &_hector_OCEAN_C_DO, 0}, + {"_hector_OCEAN_PREIND_C_SURF", (DL_FUNC) &_hector_OCEAN_PREIND_C_SURF, 0}, + {"_hector_OCEAN_PREIND_C_ID", (DL_FUNC) &_hector_OCEAN_PREIND_C_ID, 0}, {"_hector_TT", (DL_FUNC) &_hector_TT, 0}, {"_hector_TU", (DL_FUNC) &_hector_TU, 0}, {"_hector_TWI", (DL_FUNC) &_hector_TWI, 0}, {"_hector_TID", (DL_FUNC) &_hector_TID, 0}, {"_hector_PH_HL", (DL_FUNC) &_hector_PH_HL, 0}, {"_hector_PH_LL", (DL_FUNC) &_hector_PH_LL, 0}, - {"_hector_ATM_OCEAN_FLUX_HL", (DL_FUNC) &_hector_ATM_OCEAN_FLUX_HL, 0}, - {"_hector_ATM_OCEAN_FLUX_LL", (DL_FUNC) &_hector_ATM_OCEAN_FLUX_LL, 0}, + {"_hector_PH", (DL_FUNC) &_hector_PH, 0}, + {"_hector_HL_OCEAN_UPTAKE", (DL_FUNC) &_hector_HL_OCEAN_UPTAKE, 0}, + {"_hector_LL_OCEAN_UPTAKE", (DL_FUNC) &_hector_LL_OCEAN_UPTAKE, 0}, {"_hector_PCO2_HL", (DL_FUNC) &_hector_PCO2_HL, 0}, {"_hector_PCO2_LL", (DL_FUNC) &_hector_PCO2_LL, 0}, + {"_hector_PCO2", (DL_FUNC) &_hector_PCO2, 0}, {"_hector_DIC_HL", (DL_FUNC) &_hector_DIC_HL, 0}, + {"_hector_DIC", (DL_FUNC) &_hector_DIC, 0}, {"_hector_DIC_LL", (DL_FUNC) &_hector_DIC_LL, 0}, - {"_hector_TEMP_HL", (DL_FUNC) &_hector_TEMP_HL, 0}, - {"_hector_TEMP_LL", (DL_FUNC) &_hector_TEMP_LL, 0}, + {"_hector_SST_HL", (DL_FUNC) &_hector_SST_HL, 0}, + {"_hector_SST_LL", (DL_FUNC) &_hector_SST_LL, 0}, {"_hector_CO3_LL", (DL_FUNC) &_hector_CO3_LL, 0}, {"_hector_CO3_HL", (DL_FUNC) &_hector_CO3_HL, 0}, - {"_hector_LAND_CFLUX", (DL_FUNC) &_hector_LAND_CFLUX, 0}, + {"_hector_CO3", (DL_FUNC) &_hector_CO3, 0}, {"_hector_NBP", (DL_FUNC) &_hector_NBP, 0}, - {"_hector_ATMOSPHERIC_CO2", (DL_FUNC) &_hector_ATMOSPHERIC_CO2, 0}, + {"_hector_CONCENTRATIONS_CO2", (DL_FUNC) &_hector_CONCENTRATIONS_CO2, 0}, {"_hector_NPP", (DL_FUNC) &_hector_NPP, 0}, + {"_hector_RH", (DL_FUNC) &_hector_RH, 0}, {"_hector_PREINDUSTRIAL_CO2", (DL_FUNC) &_hector_PREINDUSTRIAL_CO2, 0}, - {"_hector_ATMOSPHERIC_C", (DL_FUNC) &_hector_ATMOSPHERIC_C, 0}, + {"_hector_ATMOSPHERIC_CO2", (DL_FUNC) &_hector_ATMOSPHERIC_CO2, 0}, {"_hector_FFI_EMISSIONS", (DL_FUNC) &_hector_FFI_EMISSIONS, 0}, + {"_hector_DACCS_UPTAKE", (DL_FUNC) &_hector_DACCS_UPTAKE, 0}, {"_hector_LUC_EMISSIONS", (DL_FUNC) &_hector_LUC_EMISSIONS, 0}, + {"_hector_LUC_UPTAKE", (DL_FUNC) &_hector_LUC_UPTAKE, 0}, {"_hector_BETA", (DL_FUNC) &_hector_BETA, 1}, {"_hector_Q10_RH", (DL_FUNC) &_hector_Q10_RH, 1}, {"_hector_WARMINGFACTOR", (DL_FUNC) &_hector_WARMINGFACTOR, 1}, {"_hector_CO2_CONSTRAIN", (DL_FUNC) &_hector_CO2_CONSTRAIN, 0}, + {"_hector_NBP_CONSTRAIN", (DL_FUNC) &_hector_NBP_CONSTRAIN, 0}, {"_hector_F_NPPV", (DL_FUNC) &_hector_F_NPPV, 1}, {"_hector_F_NPPD", (DL_FUNC) &_hector_F_NPPD, 1}, {"_hector_F_LITTERD", (DL_FUNC) &_hector_F_LITTERD, 1}, - {"_hector_F_LUCV", (DL_FUNC) &_hector_F_LUCV, 0}, - {"_hector_F_LUCD", (DL_FUNC) &_hector_F_LUCD, 0}, {"_hector_VEG_C", (DL_FUNC) &_hector_VEG_C, 1}, {"_hector_DETRITUS_C", (DL_FUNC) &_hector_DETRITUS_C, 1}, {"_hector_SOIL_C", (DL_FUNC) &_hector_SOIL_C, 1}, + {"_hector_PERMAFROST_C", (DL_FUNC) &_hector_PERMAFROST_C, 1}, + {"_hector_THAWEDP_C", (DL_FUNC) &_hector_THAWEDP_C, 1}, + {"_hector_FRAC_FROZEN", (DL_FUNC) &_hector_FRAC_FROZEN, 1}, + {"_hector_FRAC_STATIC", (DL_FUNC) &_hector_FRAC_STATIC, 1}, + {"_hector_PERMAFROST_MU", (DL_FUNC) &_hector_PERMAFROST_MU, 1}, + {"_hector_PERMAFROST_SIGMA", (DL_FUNC) &_hector_PERMAFROST_SIGMA, 1}, + {"_hector_FRAC_DECOMP_CH4", (DL_FUNC) &_hector_FRAC_DECOMP_CH4, 1}, + {"_hector_EARTH_C", (DL_FUNC) &_hector_EARTH_C, 0}, {"_hector_NPP_FLUX0", (DL_FUNC) &_hector_NPP_FLUX0, 1}, - {"_hector_NATURAL_SO2", (DL_FUNC) &_hector_NATURAL_SO2, 0}, - {"_hector_Y2000_SO2", (DL_FUNC) &_hector_Y2000_SO2, 0}, {"_hector_EMISSIONS_SO2", (DL_FUNC) &_hector_EMISSIONS_SO2, 0}, {"_hector_VOLCANIC_SO2", (DL_FUNC) &_hector_VOLCANIC_SO2, 0}, {"_hector_ECS", (DL_FUNC) &_hector_ECS, 0}, {"_hector_AERO_SCALE", (DL_FUNC) &_hector_AERO_SCALE, 0}, {"_hector_VOLCANIC_SCALE", (DL_FUNC) &_hector_VOLCANIC_SCALE, 0}, - {"_hector_GLOBAL_TEMP", (DL_FUNC) &_hector_GLOBAL_TEMP, 0}, - {"_hector_GLOBAL_TEMPEQ", (DL_FUNC) &_hector_GLOBAL_TEMPEQ, 0}, - {"_hector_OCEAN_SURFACE_TEMP", (DL_FUNC) &_hector_OCEAN_SURFACE_TEMP, 0}, - {"_hector_OCEAN_AIR_TEMP", (DL_FUNC) &_hector_OCEAN_AIR_TEMP, 0}, - {"_hector_LAND_AIR_TEMP", (DL_FUNC) &_hector_LAND_AIR_TEMP, 0}, + {"_hector_GLOBAL_TAS", (DL_FUNC) &_hector_GLOBAL_TAS, 0}, + {"_hector_SST", (DL_FUNC) &_hector_SST, 0}, + {"_hector_OCEAN_TAS", (DL_FUNC) &_hector_OCEAN_TAS, 0}, + {"_hector_LAND_TAS", (DL_FUNC) &_hector_LAND_TAS, 0}, + {"_hector_LO_WARMING_RATIO", (DL_FUNC) &_hector_LO_WARMING_RATIO, 0}, + {"_hector_TAS_CONSTRAIN", (DL_FUNC) &_hector_TAS_CONSTRAIN, 0}, {"_hector_DIFFUSIVITY", (DL_FUNC) &_hector_DIFFUSIVITY, 0}, {"_hector_FLUX_MIXED", (DL_FUNC) &_hector_FLUX_MIXED, 0}, {"_hector_FLUX_INTERIOR", (DL_FUNC) &_hector_FLUX_INTERIOR, 0}, {"_hector_HEAT_FLUX", (DL_FUNC) &_hector_HEAT_FLUX, 0}, - {"_hector_BIOME_SPLIT_CHAR", (DL_FUNC) &_hector_BIOME_SPLIT_CHAR, 0}, {"_hector_newcore_impl", (DL_FUNC) &_hector_newcore_impl, 4}, {"_hector_shutdown", (DL_FUNC) &_hector_shutdown, 1}, {"_hector_reset", (DL_FUNC) &_hector_reset, 2}, {"_hector_run", (DL_FUNC) &_hector_run, 2}, {"_hector_getdate", (DL_FUNC) &_hector_getdate, 1}, + {"_hector_get_tracking_data_impl", (DL_FUNC) &_hector_get_tracking_data_impl, 1}, {"_hector_get_biome_list", (DL_FUNC) &_hector_get_biome_list, 1}, {"_hector_create_biome_impl", (DL_FUNC) &_hector_create_biome_impl, 2}, {"_hector_delete_biome_impl", (DL_FUNC) &_hector_delete_biome_impl, 2}, diff --git a/src/bc_component.cpp b/src/bc_component.cpp index d943481cc..2f0f2c45b 100644 --- a/src/bc_component.cpp +++ b/src/bc_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -13,9 +13,9 @@ */ #include "bc_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "h_util.hpp" -#include "avisitor.hpp" namespace Hector { @@ -25,132 +25,129 @@ using namespace std; /*! \brief Constructor */ BlackCarbonComponent::BlackCarbonComponent() { - BC_emissions.allowInterp( true ); - BC_emissions.name = BLACK_CARBON_COMPONENT_NAME; + BC_emissions.allowInterp(true); + BC_emissions.name = BLACK_CARBON_COMPONENT_NAME; } //------------------------------------------------------------------------------ /*! \brief Destructor */ -BlackCarbonComponent::~BlackCarbonComponent() { -} +BlackCarbonComponent::~BlackCarbonComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string BlackCarbonComponent::getComponentName() const { - const string name = BLACK_CARBON_COMPONENT_NAME; + const string name = BLACK_CARBON_COMPONENT_NAME; - return name; + return name; } //------------------------------------------------------------------------------ // documentation is inherited -void BlackCarbonComponent::init( Core* coreptr ) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; - core = coreptr; - - // Inform core what data we can accept - core->registerInput(D_EMISSIONS_BC, getComponentName()); +void BlackCarbonComponent::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + core = coreptr; + + // Inform core what data we can accept + core->registerInput(D_EMISSIONS_BC, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval BlackCarbonComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - setData(datum, info); - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval BlackCarbonComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); + + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } - return returnval; + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void BlackCarbonComponent::setData( const string& varName, - const message_data& data ) -{ - H_LOG( logger, Logger::DEBUG ) << "Setting " << varName << "[" << data.date << "]=" << data.value_str << std::endl; - - try { - if( varName == D_EMISSIONS_BC ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - BC_emissions.set(data.date, data.getUnitval(U_TG)); - } else { - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void BlackCarbonComponent::setData(const string &varName, + const message_data &data) { + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; + + try { + if (varName == D_EMISSIONS_BC) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + BC_emissions.set(data.date, data.getUnitval(U_TG)); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited void BlackCarbonComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - oldDate = core->getStartDate(); + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + oldDate = core->getStartDate(); } //------------------------------------------------------------------------------ // documentation is inherited -void BlackCarbonComponent::run( const double runToDate ) { - H_ASSERT( !core->inSpinup() && runToDate-oldDate == 1, "timestep must equal 1" ); - oldDate = runToDate; +void BlackCarbonComponent::run(const double runToDate) { + H_ASSERT(!core->inSpinup() && runToDate - oldDate == 1, + "timestep must equal 1"); + oldDate = runToDate; } //------------------------------------------------------------------------------ // documentation is inherited -unitval BlackCarbonComponent::getData( const std::string& varName, - const double date ) { +unitval BlackCarbonComponent::getData(const std::string &varName, + const double date) { - unitval returnval; + unitval returnval; - H_ASSERT( date != Core::undefinedIndex(), "Date required for bc_component" ); + H_ASSERT(date != Core::undefinedIndex(), "Date required for bc_component"); - if( varName == D_EMISSIONS_BC ) { - returnval = BC_emissions.get( date ); - } else { - H_THROW( "Caller is requesting unknown variable: " + varName ); - } + if (varName == D_EMISSIONS_BC) { + returnval = BC_emissions.get(date); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } - return returnval; + return returnval; } -void BlackCarbonComponent::reset(double time) -{ - // Set time counter to requested date; there are no outputs to - // reset. - oldDate = time; - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; +//------------------------------------------------------------------------------ +// documentation is inherited +void BlackCarbonComponent::reset(double time) { + // Set time counter to requested date; there are no outputs to + // reset. + oldDate = time; + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } - //------------------------------------------------------------------------------ // documentation is inherited void BlackCarbonComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void BlackCarbonComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void BlackCarbonComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/carbon-cycle-model.cpp b/src/carbon-cycle-model.cpp index 04e4b51d7..367e5ebd7 100644 --- a/src/carbon-cycle-model.cpp +++ b/src/carbon-cycle-model.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -18,10 +18,12 @@ namespace Hector { //------------------------------------------------------------------------------ // documentation is inherited -void CarbonCycleModel::init( Core* core ) { - logger.open( getComponentName(), false, core->getGlobalLogger().getEchoToFile(), core->getGlobalLogger().getMinLogLevel() ); - H_LOG(logger, Logger::DEBUG) << getComponentName() << " initialized." << std::endl; +void CarbonCycleModel::init(Core *core) { + logger.open(getComponentName(), false, + core->getGlobalLogger().getEchoToFile(), + core->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) + << getComponentName() << " initialized." << std::endl; } - -} +} // namespace Hector diff --git a/src/carbon-cycle-solver.cpp b/src/carbon-cycle-solver.cpp index 91e0de12b..f91c475d4 100644 --- a/src/carbon-cycle-solver.cpp +++ b/src/carbon-cycle-solver.cpp @@ -1,10 +1,10 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. */ - /* +/* * carbon-cycle-solver.cpp * * ODE solver for integrating the carbon cycle in hector. @@ -17,161 +17,153 @@ #include // some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: odeint.hpp still generates lots of warnings #pragma clang diagnostic push #pragma clang diagnostic ignored "-Weverything" #include #pragma clang diagnostic pop -#include "carbon-cycle-solver.hpp" #include "avisitor.hpp" +#include "carbon-cycle-solver.hpp" namespace Hector { //------------------------------------------------------------------------------ /*! \brief Constructor */ -CarbonCycleSolver::CarbonCycleSolver() : nc( 0 ), -eps_abs( 1.0e-6 ),eps_rel( 1.0e-6 ), -dt( 0.3 ) -{ -} +CarbonCycleSolver::CarbonCycleSolver() + : nc(0), eps_abs(1.0e-6), eps_rel(1.0e-6), dt(0.3) {} //------------------------------------------------------------------------------ /*! \brief Deconstructor */ -CarbonCycleSolver::~CarbonCycleSolver() -{ -} +CarbonCycleSolver::~CarbonCycleSolver() {} //------------------------------------------------------------------------------ // documentation is inherited -void CarbonCycleSolver::init( Core* coreptr ) { - // This component is very verbose at the debug and notice levels, so limit - // output to the warning level, even if the rest of the model is configured - // for something lower. - logger.open(getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), Logger::WARNING); - H_LOG( logger, Logger::DEBUG ) << getComponentName() << " initialized." << std::endl; - - core = coreptr; - - in_spinup = false; - - // We want to run after the carbon box models, to give them a chance to initialize - core->registerDependency( D_ATMOSPHERIC_C, getComponentName() ); +void CarbonCycleSolver::init(Core *coreptr) { + // This component is very verbose at the debug and notice levels, so limit + // output to the warning level, even if the rest of the model is configured + // for something lower. + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), Logger::WARNING); + H_LOG(logger, Logger::DEBUG) + << getComponentName() << " initialized." << std::endl; + + core = coreptr; + + in_spinup = false; + + // We want to run after the carbon box models, to give them a chance to + // initialize + core->registerDependency(D_ATMOSPHERIC_CO2, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval CarbonCycleSolver::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - //TODO: call setData below - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval CarbonCycleSolver::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; - return returnval; + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + // TODO: call setData below + + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void CarbonCycleSolver::setData( const std::string &varName, - const message_data& data ) -{ - H_LOG( logger, Logger::DEBUG ) << "Setting " << varName << "[" << data.date << "]=" << data.value_str << std::endl; - - try { - if( varName == D_CCS_EPS_ABS ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - eps_abs = data.getUnitval(U_UNDEFINED);; - } - else if( varName == D_CCS_EPS_REL ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - eps_rel = data.getUnitval(U_UNDEFINED);; - } - else if( varName == D_CCS_DT ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - dt = data.getUnitval(U_UNDEFINED); - } - else if( varName == D_EPS_SPINUP ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - eps_spinup = data.getUnitval(U_PGC); - } - else { - H_LOG( logger, Logger::SEVERE ) << "Unknown variable " << varName << std::endl; - H_THROW( "Unknown variable name while parsing "+ getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void CarbonCycleSolver::setData(const std::string &varName, + const message_data &data) { + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; + + try { + if (varName == D_CCS_EPS_ABS) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + eps_abs = data.getUnitval(U_UNDEFINED); + ; + } else if (varName == D_CCS_EPS_REL) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + eps_rel = data.getUnitval(U_UNDEFINED); + ; + } else if (varName == D_CCS_DT) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + dt = data.getUnitval(U_UNDEFINED); + } else if (varName == D_EPS_SPINUP) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + eps_spinup = data.getUnitval(U_PGC); + } else { + H_LOG(logger, Logger::SEVERE) + << "Unknown variable " << varName << std::endl; + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } - return; + return; } //------------------------------------------------------------------------------ // documentation is inherited -void CarbonCycleSolver::prepareToRun() -{ - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - - cmodel = dynamic_cast( core->getComponentByCapability( D_ATMOSPHERIC_C ) ); - - // initialize the solver's internal data - t = core->getStartDate(); - nc = cmodel->ncpool(); - H_LOG( logger, Logger::DEBUG ) << "Carbon model in use is " << cmodel->getComponentName() << std::endl; - H_LOG( logger, Logger::DEBUG ) << "Carbon model pools: " << nc << std::endl; - H_ASSERT( nc > 0, "nc must be > 0" ); - // resize the array of carbon pool values - c.resize(nc); - +void CarbonCycleSolver::prepareToRun() { + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + + cmodel = dynamic_cast( + core->getComponentByCapability(D_ATMOSPHERIC_CO2)); + + // initialize the solver's internal data + t = core->getStartDate(); + nc = cmodel->ncpool(); + H_LOG(logger, Logger::DEBUG) + << "Carbon model in use is " << cmodel->getComponentName() << std::endl; + H_LOG(logger, Logger::DEBUG) << "Carbon model pools: " << nc << std::endl; + H_ASSERT(nc > 0, "nc must be > 0"); + // resize the array of carbon pool values + c.resize(nc); } //------------------------------------------------------------------------------ // documentation is inherited -unitval CarbonCycleSolver::getData( const std::string& varName, - const double date ) { +unitval CarbonCycleSolver::getData(const std::string &varName, + const double date) { - unitval returnval; + unitval returnval; - H_ASSERT( date == Core::undefinedIndex(), "Date not allowed for CarbonCycleSolver" ); + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for CarbonCycleSolver"); - H_THROW( "Caller is requesting unknown variable: " + varName ); + H_THROW("Caller is requesting unknown variable: " + varName); - return returnval; + return returnval; } -void CarbonCycleSolver::reset(double time) -{ - // Only state maintained by this component is the time counter - t = time; - in_spinup = false; // reset this in case we will be expected to rerun the spinup. - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; +void CarbonCycleSolver::reset(double time) { + // Only state maintained by this component is the time counter + t = time; + in_spinup = + false; // reset this in case we will be expected to rerun the spinup. + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } - - //------------------------------------------------------------------------------ // documentation is inherited -void CarbonCycleSolver::shutDown() -{ - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); +void CarbonCycleSolver::shutDown() { + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } - //------------------------------------------------------------------------------ /*! \brief Dispatch function called by ODE solver * \param[in] y pools @@ -180,33 +172,31 @@ void CarbonCycleSolver::shutDown() * \exception If the carbon model returned failure flag we must throw * an exception to stop the ODE solver. */ -void CarbonCycleSolver::ODEEvalFunctor::operator()( const std::vector& y, - std::vector& dydt, - double t ) -{ - // Note the std garuntees vetors are contigous so we can convert to array by - // taking the address of the first value. - int status = modelptr->calcderivs( t, &y[0], &dydt[0] ); - - if( status != ODE_SUCCESS ) { - bad_derivative_exception e(status); - throw e; - } +void CarbonCycleSolver::ODEEvalFunctor::operator()(const std::vector &y, + std::vector &dydt, + double t) { + // Note the std guarantees that vectors are contiguous, so we can convert to + // array by taking the address of the first value. + int status = modelptr->calcderivs(t, &y[0], &dydt[0]); + + if (status != ODE_SUCCESS) { + bad_derivative_exception e(status); + throw e; + } } //------------------------------------------------------------------------------ /*! \brief Observer callback called by ODE solver when a successful * step has been taken. - * \details We use this callback to update our state variable time (t) - * and in principle carbon pools (c) however the later is - * already updated by the solver (pass by reference) so we will - * skip copying here. - * \param[in] y pools - * \param[in] t time + * \details We use this callback to update our state variable time + * (t) and in principle carbon pools (c) however the later is already updated by + * the solver (pass by reference) so we will skip copying here. \param[in] y + * pools \param[in] t time */ -void CarbonCycleSolver::ODEEvalFunctor::operator()( const std::vector& y, double t ) { - // copy the current time to the original in CarbonCycleSolver - (*this->t) = t; +void CarbonCycleSolver::ODEEvalFunctor::operator()(const std::vector &y, + double t) { + // copy the current time to the original in CarbonCycleSolver + (*this->t) = t; } //------------------------------------------------------------------------------ @@ -216,160 +206,172 @@ void CarbonCycleSolver::ODEEvalFunctor::operator()( const std::vector& y * \param[in] tmid middle of time step * \exception will always happen; gsl solver has failed */ -void CarbonCycleSolver::failure( int stat, double t0, double tmid ) { - H_LOG( logger, Logger::SEVERE ) << "gsl_ode_evolve_apply failed at t= " << - t0 << " tinit= " << t << " tmid = " << tmid << " last dt= " << - dt << "\nError code: " << stat << "\ncvals:\n"; - for( int i=0; igetCValues(t, &c[0]); + + double t0 = t; // stash this in case we need to report & diagnose an error + // Now integrate from the beginning of the time step using the updated + // slow params. Note we can discard t0 and the values in cc + cmodel->slowparameval(t, &c[0]); + int retry = 0; + + H_LOG(logger, Logger::DEBUG) + << "Entering ODE solver " << t << "->" << tnew << std::endl; + while (t < tnew && retry < MAX_CARBON_MODEL_RETRIES) { + + H_LOG(logger, Logger::DEBUG) + << "Resetting evolver and stepper" << std::endl; + double t_start = t; + double t_target = tnew; + + while (t < t_target && retry < MAX_CARBON_MODEL_RETRIES) { + H_LOG(logger, Logger::NOTICE) + << "Attempting ODE solver " << t << "->" << t_target << " (" << t0 + << "->" << tnew << ")" << std::endl; + + int stat = ODE_SUCCESS; + ODEEvalFunctor odeFunctor(cmodel, &t); + try { + using namespace boost::numeric::odeint; + typedef runge_kutta_dopri5> error_stepper_type; + integrate_adaptive( + make_controlled(eps_abs, eps_rel), odeFunctor, + c, t_start, t_target, dt, odeFunctor); + } catch (bad_derivative_exception &e) { + stat = e.errorFlag; + } + + if (stat == CARBON_CYCLE_RETRY) { + H_LOG(logger, Logger::NOTICE) << "Carbon model requests retry #" + << ++retry << " at t= " << t << std::endl; + t_target = t_start + (t_target - t_start) / 2.0; + t = t_start; + + dt = t_target - t; + cmodel->getCValues( + t, &c[0]); // reset pools and inform model of new starting point + H_LOG(logger, Logger::NOTICE) + << "New target is " << t_target << std::endl; + } else if (stat != ODE_SUCCESS) + failure(stat, t_start, t_target); } - H_ASSERT( tnew > t, "solver tnew is not greater than t" ); - - // Get the initial state data from the box model. c will be filled in - // Note that we rely on the box model to handle the units. Inside the - // solver we strip the unit values and work with raw numbers. - cmodel->getCValues( t, &c[0] ); - - double t0 = t; // stash this in case we need to report & diagnose an error - // Now integrate from the beginning of the time step using the updated - // slow params. Note we can discard t0 and the values in cc - cmodel->slowparameval( t, &c[0] ); - int retry = 0; - - H_LOG( logger, Logger::DEBUG ) << "Entering ODE solver " << t << "->" << tnew << std::endl; - while( t < tnew && retry < MAX_CARBON_MODEL_RETRIES ) { - - H_LOG( logger, Logger::DEBUG ) << "Resetting evolver and stepper" << std::endl; - double t_start = t; - double t_target = tnew; - - while( t < t_target && retry < MAX_CARBON_MODEL_RETRIES ) { - H_LOG( logger, Logger::NOTICE ) << "Attempting ODE solver " << t << "->" << t_target << " (" << t0 << "->" << tnew << ")" << std::endl; - - int stat = ODE_SUCCESS; - ODEEvalFunctor odeFunctor( cmodel, &t ); - try { - using namespace boost::numeric::odeint; - typedef runge_kutta_dopri5 > error_stepper_type; - integrate_adaptive( make_controlled( eps_abs, eps_rel ), - odeFunctor, c, t_start, t_target, dt, odeFunctor ); - } catch( bad_derivative_exception& e ) { - stat = e.errorFlag; - } - - if( stat == CARBON_CYCLE_RETRY ) { - H_LOG( logger, Logger::NOTICE ) << "Carbon model requests retry #" << ++retry << " at t= " << t << std::endl; - t_target = t_start + ( t_target - t_start ) / 2.0; - t = t_start; - - dt = t_target - t; - cmodel->getCValues( t, &c[0] ); // reset pools and inform model of new starting point - H_LOG( logger, Logger::NOTICE ) << "New target is " << t_target << std::endl; - } else if( stat != ODE_SUCCESS ) - failure( stat, t_start, t_target ); - } - - // We have exited GSL solver loop, but did we make it? - if( retry < MAX_CARBON_MODEL_RETRIES ) { - H_LOG( logger, Logger::NOTICE ) << "Success: we have reached " << t_target << std::endl; - - retry = 0; - cmodel->stashCValues( t, &c[0] ); // update state - } else { - H_LOG( logger, Logger::SEVERE ) << "Failure after failure: t is " << t << "; we have not reached " << t_target << std::endl; - - } + + // We have exited GSL solver loop, but did we make it? + if (retry < MAX_CARBON_MODEL_RETRIES) { + H_LOG(logger, Logger::NOTICE) + << "Success: we have reached " << t_target << std::endl; + + retry = 0; + cmodel->stashCValues(t, &c[0]); // update state + } else { + H_LOG(logger, Logger::SEVERE) + << "Failure after failure: t is " << t << "; we have not reached " + << t_target << std::endl; } - H_ASSERT( t == tnew, "solver failure: t != tnew" ); + } + H_ASSERT(t == tnew, "solver failure: t != tnew"); - H_LOG( logger, Logger::NOTICE ) << "ODE solver success at t= " << t << - " last dt= " << dt << std::endl; - H_LOG( logger, Logger::DEBUG ) << "cvals\terrors\n"; + H_LOG(logger, Logger::NOTICE) + << "ODE solver success at t= " << t << " last dt= " << dt << std::endl; + H_LOG(logger, Logger::DEBUG) << "cvals\terrors\n"; - cmodel->record_state(tnew); + cmodel->record_state(tnew); - H_LOG( logger, Logger::NOTICE ) << std::endl; + H_LOG(logger, Logger::NOTICE) << std::endl; } //------------------------------------------------------------------------------ /*! \brief Run the carbon cycle to steady state, if possible * \exception epsilon must be >0 * - * We normally want the carbon model to be in steady state, i.e. with unchanging - * carbon pools, at the end of the preindustrial period before the main run. - * To reach this point, run the carbon model until all dc/dt are ~0. + * We normally want the carbon model to be in steady state, i.e. with + * unchanging carbon pools, at the end of the preindustrial period before the + * main run. To reach this point, run the carbon model until all dc/dt are ~0. */ -bool CarbonCycleSolver::run_spinup( const int step ) -{ - - if( !in_spinup ) { // first time - in_spinup = true; - t = step-1; - c_original.resize(nc); - c_old.resize(nc); - c_new.resize(nc); - dcdt.resize(nc); - // initialize to zero - for(int i=0; igetCValues( t, &c_original[0] ); - cmodel->record_state(t); +bool CarbonCycleSolver::run_spinup(const int step) { + + if (!in_spinup) { // first time + in_spinup = true; + t = step - 1; + c_original.resize(nc); + c_old.resize(nc); + c_new.resize(nc); + dcdt.resize(nc); + // initialize to zero + for (int i = 0; i < nc; ++i) + c_original[i] = c_old[i] = c_new[i] = dcdt[i] = 0.0; + + cmodel->getCValues(t, &c_original[0]); + cmodel->record_state(t); + } + + cmodel->getCValues(t, &c_old[0]); + run(step); + cmodel->getCValues(step, &c_new[0]); + + int max_dcdt_pool = 0; + double max_dcdt = 0.0; + + for (int i = 0; i < nc; i++) { // find the biggest difference + dcdt[i] = fabs(c_new[i] - c_old[i]); + c_old[i] = c_new[i]; + if (dcdt[i] > max_dcdt) { + max_dcdt = dcdt[i]; } + } - cmodel->getCValues( t, &c_old[0] ); - run( step ); - cmodel->getCValues( step, &c_new[0] ); - - int max_dcdt_pool = 0; - double max_dcdt = 0.0; + bool spunup = (max_dcdt < eps_spinup.value(U_PGC)); - for( int i=0; i max_dcdt) { - max_dcdt = dcdt[i]; - } - } - - bool spunup = ( max_dcdt < eps_spinup.value( U_PGC ) ); - - if( spunup ) { - Logger& glog = core->getGlobalLogger(); - H_LOG( glog, Logger::NOTICE ) << "Carbon model is spun up after " << step << " steps" << std::endl; - H_LOG( logger, Logger::NOTICE ) << "Carbon model spun up after " << step << " steps. Max residual dc/dt=" - << max_dcdt << " (pool " << max_dcdt_pool << ")" << std::endl; - for( int i=0; igetStartDate(); - H_LOG( logger, Logger::NOTICE ) << "Resetting solver time counter to t= " << t << std::endl; + if (spunup) { + Logger &glog = core->getGlobalLogger(); + H_LOG(glog, Logger::NOTICE) + << "Carbon model is spun up after " << step << " steps" << std::endl; + H_LOG(logger, Logger::NOTICE) + << "Carbon model spun up after " << step + << " steps. Max residual dc/dt=" << max_dcdt << " (pool " + << max_dcdt_pool << ")" << std::endl; + for (int i = 0; i < nc; i++) { + H_LOG(logger, Logger::NOTICE) + << "New pool " << i << ":" << c_new[i] + << " (delta=" << c_new[i] - c_original[i] << ")" << std::endl; } + t = core->getStartDate(); + H_LOG(logger, Logger::NOTICE) + << "Resetting solver time counter to t= " << t << std::endl; + } - // Record the state as the state at the model start time. This - // will be repeatedly overwritten until the spinup is complete. - cmodel->record_state(core->getStartDate()); + // Record the state as the state at the model start time. This + // will be repeatedly overwritten until the spinup is complete. + cmodel->record_state(core->getStartDate()); - return spunup; + return spunup; } //------------------------------------------------------------------------------ /*! \brief visitor accept code */ -void CarbonCycleSolver::accept( AVisitor* visitor ) -{ - visitor->visit( this ); -} +void CarbonCycleSolver::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/ch4_component.cpp b/src/ch4_component.cpp index f4c63d44e..d20c920e6 100644 --- a/src/ch4_component.cpp +++ b/src/ch4_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,11 +12,11 @@ * */ -#include #include "ch4_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "h_util.hpp" -#include "avisitor.hpp" +#include namespace Hector { @@ -26,205 +26,243 @@ using namespace std; /*! \brief Constructor */ CH4Component::CH4Component() { - CH4_emissions.allowInterp( true ); - CH4_emissions.name = CH4_COMPONENT_NAME; - CH4.allowInterp( true ); - CH4.name = D_ATMOSPHERIC_CH4; + CH4_emissions.allowInterp(true); + CH4_emissions.name = CH4_COMPONENT_NAME; + CH4.allowInterp(true); + CH4.name = D_CH4_CONC; } //------------------------------------------------------------------------------ /*! \brief Destructor */ -CH4Component::~CH4Component() { -} +CH4Component::~CH4Component() {} //------------------------------------------------------------------------------ // documentation is inherited string CH4Component::getComponentName() const { - const string name = CH4_COMPONENT_NAME; + const string name = CH4_COMPONENT_NAME; - return name; + return name; } //------------------------------------------------------------------------------ // documentation is inherited -void CH4Component::init( Core* coreptr ) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; - core = coreptr; - - // Inform core what data we can provide - core->registerCapability( D_ATMOSPHERIC_CH4, getComponentName() ); - core->registerCapability( D_PREINDUSTRIAL_CH4, getComponentName() ); - core->registerDependency( D_LIFETIME_OH, getComponentName() ); - // ...and what input data that we can accept - core->registerInput(D_EMISSIONS_CH4, getComponentName()); - core->registerInput(D_CONSTRAINT_CH4, getComponentName()); - core->registerInput(D_PREINDUSTRIAL_CH4, getComponentName()); +void CH4Component::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + core = coreptr; + + // Inform core what data we can provide + core->registerCapability(D_CH4_CONC, getComponentName()); + core->registerCapability(D_PREINDUSTRIAL_CH4, getComponentName()); + core->registerCapability(D_LIFETIME_STRAT, getComponentName()); + core->registerCapability(D_LIFETIME_SOIL, getComponentName()); + core->registerDependency(D_LIFETIME_OH, getComponentName()); + // ...and what input data that we can accept + core->registerInput(D_EMISSIONS_CH4, getComponentName()); + core->registerInput(D_NATURAL_CH4, getComponentName()); + core->registerInput(D_CONSTRAINT_CH4, getComponentName()); + core->registerInput(D_PREINDUSTRIAL_CH4, getComponentName()); + core->registerInput(D_LIFETIME_STRAT, getComponentName()); + core->registerInput(D_LIFETIME_SOIL, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval CH4Component::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) { - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - setData(datum, info); - //TODO: call setData below - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval CH4Component::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); - return returnval; + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void CH4Component::setData( const string& varName, - const message_data& data ) { - try { - if( varName == D_PREINDUSTRIAL_CH4 ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - M0 = data.getUnitval( U_PPBV_CH4 ); - } else if( varName == D_EMISSIONS_CH4 ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - CH4_emissions.set(data.date, data.getUnitval( U_TG_CH4 )); - } else if( varName == D_LIFETIME_SOIL ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - Tsoil = data.getUnitval( U_YRS ); - } else if( varName == D_LIFETIME_STRAT ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - Tstrat = data.getUnitval( U_YRS ); - } else if( varName == D_CONVERSION_CH4 ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - UC_CH4 = data.getUnitval( U_TG_PPBV ); - } else if( varName == D_NATURAL_CH4 ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - CH4N = data.getUnitval( U_TG_CH4 ); - } else if( varName == D_CONSTRAINT_CH4 ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required for CH4 concentration constraint" ); - CH4_constrain.set( data.date, data.getUnitval( U_PPBV_CH4 ) ); - } - else { - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void CH4Component::setData(const string &varName, const message_data &data) { + try { + if (varName == D_PREINDUSTRIAL_CH4) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + if (data.getUnitval(U_PPBV_CH4).value(U_PPBV_CH4) != 731.41) { + H_LOG(logger, Logger::WARNING) + << "Changing " << varName + << " from default value; this is not recomended and may cause" + << " issues with RF CH4 calucation" << std::endl; + } + M0 = data.getUnitval(U_PPBV_CH4); + } else if (varName == D_EMISSIONS_CH4) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + CH4_emissions.set(data.date, data.getUnitval(U_TG_CH4)); + } else if (varName == D_LIFETIME_SOIL) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + Tsoil = data.getUnitval(U_YRS); + } else if (varName == D_LIFETIME_STRAT) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + Tstrat = data.getUnitval(U_YRS); + } else if (varName == D_CONVERSION_CH4) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + UC_CH4 = data.getUnitval(U_TG_PPBV); + } else if (varName == D_NATURAL_CH4) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + CH4N = data.getUnitval(U_TG_CH4); + } else if (varName == D_CONSTRAINT_CH4) { + H_ASSERT(data.date != Core::undefinedIndex(), + "date required for CH4 concentration constraint"); + CH4_constrain.set(data.date, data.getUnitval(U_PPBV_CH4)); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited void CH4Component::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - oldDate = core->getStartDate(); - if ( CH4_constrain.size() && CH4_constrain.exists( oldDate ) ) { - H_LOG( logger, Logger::WARNING ) << "Overwriting preindustrial CH4 value with CH4 constraint value" << std::endl; - M0 = CH4_constrain.get( oldDate ); - } - CH4.set( oldDate, M0 ); // set the first year's value - } + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + oldDate = core->getStartDate(); + if (CH4_constrain.size() && CH4_constrain.exists(oldDate)) { + H_LOG(logger, Logger::WARNING) + << "Overwriting preindustrial CH4 value with CH4 constraint value" + << std::endl; + M0 = CH4_constrain.get(oldDate); + } + CH4.set(oldDate, M0); // set the first year's value +} //------------------------------------------------------------------------------ // documentation is inherited -void CH4Component::run( const double runToDate ) { - H_ASSERT( !core->inSpinup() && runToDate-oldDate == 1, "timestep must equal 1" ); - - if ( CH4_constrain.size() && CH4_constrain.exists( runToDate ) ) { - CH4.set( runToDate, CH4_constrain.get( runToDate ) ); - } else { - - // modified from Wigley et al, 2002 - // https://doi.org/10.1175/1520-0442(2002)015%3C2690:RFDTRG%3E2.0.CO;2 - const double current_ch4em = CH4_emissions.get( runToDate ).value( U_TG_CH4 ); - const double current_toh = core->sendMessage( M_GETDATA, D_LIFETIME_OH, runToDate ).value( U_YRS ); - H_LOG( logger, Logger::DEBUG ) << "Year " << runToDate << " current_toh = " << current_toh << std::endl; - - const double ch4n = CH4N.value( U_TG_CH4 ); - const double emisTocon = ( current_ch4em + ch4n ) / UC_CH4.value( U_TG_PPBV ); - double previous_ch4 = M0.value( U_PPBV_CH4 ); - - H_LOG( logger, Logger::DEBUG ) << "Year " << runToDate << " previous CH4 = " << previous_ch4 << std::endl; - - if (runToDate!=oldDate) { - previous_ch4 = CH4.get( oldDate ); - } - - const double soil_sink = previous_ch4 / Tsoil.value( U_YRS ); - const double strat_sink = previous_ch4 / Tstrat.value( U_YRS ); - const double oh_sink = previous_ch4 / current_toh; - - const double dCH4 = emisTocon - soil_sink - strat_sink - oh_sink; // change in CH4 concentration to be added to previous_ch4 - - CH4.set( runToDate, unitval( previous_ch4 + dCH4, U_PPBV_CH4 ) ); - - } - - oldDate = runToDate; - H_LOG( logger, Logger::DEBUG ) << runToDate << " CH4 concentration = " << CH4.get( runToDate ) << std::endl; +void CH4Component::run(const double runToDate) { + H_ASSERT(!core->inSpinup() && runToDate - oldDate == 1, + "timestep must equal 1"); + + if (CH4_constrain.size() && CH4_constrain.exists(runToDate)) { + CH4.set(runToDate, CH4_constrain.get(runToDate)); + } else { + + // modified from Wigley et al, 2002 + // https://doi.org/10.1175/1520-0442(2002)015%3C2690:RFDTRG%3E2.0.CO;2 + const double current_ch4em = CH4_emissions.get(runToDate).value(U_TG_CH4); + const double current_toh = + core->sendMessage(M_GETDATA, D_LIFETIME_OH, runToDate).value(U_YRS); + H_LOG(logger, Logger::DEBUG) + << "Year " << runToDate << " current_toh = " << current_toh + << std::endl; + +// Permafrost thaw produces CH4 emissions +#define PG_C_TO_TG_CH4 (1000.0 * 16.04 / 12.01) + const double rh_ch4 = + core->sendMessage(M_GETDATA, D_RH_CH4).value(U_PGC_YR) * PG_C_TO_TG_CH4; + + // Additional, background CH4 natural emissions + const double ch4n = CH4N.value(U_TG_CH4); + const double emisTocon = + (current_ch4em + rh_ch4 + ch4n) / UC_CH4.value(U_TG_PPBV); + const double previous_ch4 = CH4.get(oldDate); + + H_LOG(logger, Logger::DEBUG) + << "Year " << runToDate << " previous CH4 = " << previous_ch4 + << std::endl; + + const double soil_sink = previous_ch4 / Tsoil.value(U_YRS); + const double strat_sink = previous_ch4 / Tstrat.value(U_YRS); + const double oh_sink = previous_ch4 / current_toh; + + const double dCH4 = + emisTocon - soil_sink - strat_sink - + oh_sink; // change in CH4 concentration to be added to previous_ch4 + + CH4.set(runToDate, unitval(previous_ch4 + dCH4, U_PPBV_CH4)); + } + + oldDate = runToDate; + H_LOG(logger, Logger::DEBUG) + << runToDate << " CH4 concentration = " << CH4.get(runToDate) + << std::endl; } //------------------------------------------------------------------------------ // documentation is inherited -unitval CH4Component::getData( const std::string& varName, - const double date ) { - - unitval returnval; - - if( varName == D_ATMOSPHERIC_CH4 ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for atmospheric CH4" ); - returnval = CH4.get( date ); - } else if( varName == D_PREINDUSTRIAL_CH4 ) { - H_ASSERT( date == Core::undefinedIndex(), "Date not allowed for preindustrial CH4" ); - returnval = M0; - } else if( varName == D_EMISSIONS_CH4 ) { - H_ASSERT( date != Core::undefinedIndex(), "Date not allowed for CH4 emissions" ); - returnval = CH4_emissions.get( date ); - } else if( varName == D_CONSTRAINT_CH4 ) { - H_ASSERT( date != Core::undefinedIndex(), "Date not allowed for CH4 constraint" ); - if ( CH4_constrain.exists( date ) ) { - returnval = CH4_constrain.get( date ); - } else { - H_LOG( logger, Logger::DEBUG ) << "No CH4 constraint for requested date " << date << - ". Returning missing value." << std::endl; - returnval = unitval( MISSING_FLOAT, U_PPBV_CH4 ); - } +unitval CH4Component::getData(const std::string &varName, const double date) { + + unitval returnval; + + if (varName == D_CH4_CONC) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for atmospheric CH4"); + returnval = CH4.get(date); + } else if (varName == D_PREINDUSTRIAL_CH4) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for preindustrial CH4"); + returnval = M0; + } else if (varName == D_EMISSIONS_CH4) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for CH4 emissions"); + returnval = CH4_emissions.get(date); + } else if (varName == D_NATURAL_CH4) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for natural CH4 emissions"); + returnval = CH4N; + } else if (varName == D_LIFETIME_SOIL) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for CH4 soil lifetime"); + returnval = Tsoil; + } else if (varName == D_LIFETIME_STRAT) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for CH4 tropospheric lifetime"); + returnval = Tstrat; + } else if (varName == D_CONSTRAINT_CH4) { + H_ASSERT(date != Core::undefinedIndex(), + "Date not allowed for CH4 constraint"); + if (CH4_constrain.exists(date)) { + returnval = CH4_constrain.get(date); } else { - H_THROW( "Caller is requesting unknown variable: " + varName ); + H_LOG(logger, Logger::DEBUG) + << "No CH4 constraint for requested date " << date + << ". Returning missing value." << std::endl; + returnval = unitval(MISSING_FLOAT, U_PPBV_CH4); } + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } - return returnval; + return returnval; } +//------------------------------------------------------------------------------ +// documentation is inherited void CH4Component::reset(double time) { - // reset the internal time counter and truncate concentration time - // series - oldDate = time; - CH4.truncate(time); - H_LOG(logger, Logger::NOTICE) << getComponentName() << " reset to time= " << time << "\n"; + // reset the internal time counter and truncate concentration time + // series + oldDate = time; + CH4.truncate(time); + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } //------------------------------------------------------------------------------ // documentation is inherited void CH4Component::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void CH4Component::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void CH4Component::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/core.cpp b/src/core.cpp index 510b6321f..ba25a4017 100644 --- a/src/core.cpp +++ b/src/core.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,28 +12,36 @@ * */ +#include +// some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: string.hpp still generates two warnings +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Weverything" #include "boost/algorithm/string.hpp" +#pragma clang diagnostic pop -#include "imodel_component.hpp" -#include "halocarbon_component.hpp" -#include "oh_component.hpp" -#include "ch4_component.hpp" -#include "n2o_component.hpp" +#include "avisitor.hpp" #include "bc_component.hpp" -#include "oc_component.hpp" -#include "so2_component.hpp" -#include "forcing_component.hpp" -#include "slr_component.hpp" -#include "ocean_component.hpp" -#include "o3_component.hpp" -#include "temperature_component.hpp" +#include "carbon-cycle-solver.hpp" +#include "ch4_component.hpp" #include "core.hpp" +#include "csv_tracking_visitor.hpp" #include "dependency_finder.hpp" -#include "logger.hpp" -#include "carbon-cycle-solver.hpp" +#include "forcing_component.hpp" #include "h_util.hpp" +#include "halocarbon_component.hpp" +#include "imodel_component.hpp" +#include "logger.hpp" +#include "n2o_component.hpp" +#include "nh3_component.hpp" +#include "o3_component.hpp" +#include "oc_component.hpp" +#include "ocean_component.hpp" +#include "oh_component.hpp" #include "simpleNbox.hpp" -#include "avisitor.hpp" +#include "slr_component.hpp" +#include "so2_component.hpp" +#include "temperature_component.hpp" namespace Hector { @@ -47,18 +55,11 @@ using namespace std; * * \sa init() */ -Core::Core(Logger::LogLevel loglvl, bool echotoscreen, bool echotofile) : - setup_complete(false), - run_name( "" ), - startDate( -1.0 ), - endDate( -1.0 ), - lastDate( -1.0), - isInited( false ), - do_spinup( true ), - max_spinup( 2000 ), - in_spinup( false ) -{ - glog.open(string(MODEL_NAME), echotoscreen, echotofile, loglvl); +Core::Core(Logger::LogLevel loglvl, bool echotoscreen, bool echotofile) + : setup_complete(false), run_name(""), startDate(-1.0), endDate(-1.0), + lastDate(-1.0), trackingDate(9999), isInited(false), do_spinup(true), + max_spinup(2000), in_spinup(false) { + glog.open(string(MODEL_NAME), echotoscreen, echotofile, loglvl); } //------------------------------------------------------------------------------ @@ -66,9 +67,9 @@ Core::Core(Logger::LogLevel loglvl, bool echotoscreen, bool echotofile) : * \note Memory for visitors is not handled by the core. */ Core::~Core() { - for( CNameComponentIterator it = modelComponents.begin(); it != modelComponents.end(); ++it ) { - delete( *it ).second; - } + for (auto mc : modelComponents) { + delete mc.second; + } } //------------------------------------------------------------------------------ @@ -76,9 +77,9 @@ Core::~Core() { * * \return A string name for the Core. */ -const string& Core::getComponentName() const { - const static string NAME = CORE_COMPONENT_NAME; - return NAME; +const string &Core::getComponentName() const { + const static string NAME = CORE_COMPONENT_NAME; + return NAME; } //------------------------------------------------------------------------------ @@ -87,109 +88,124 @@ const string& Core::getComponentName() const { * All model subcomponents will also be initialized. */ void Core::init() { - H_ASSERT( !isInited, "core has already been initialized" ); - - // TODO: maybe some model component factory? - IModelComponent *temp; - - temp = new SimpleNbox(); - modelComponents[ temp->getComponentName() ] = temp; - temp = new CarbonCycleSolver(); - modelComponents[ temp->getComponentName() ] = temp; - - temp = new OHComponent(); - modelComponents[ temp->getComponentName() ] = temp; - temp = new CH4Component(); - modelComponents[ temp->getComponentName() ] = temp; - temp = new N2OComponent(); - modelComponents[ temp->getComponentName() ] = temp; - - temp = new OzoneComponent(); - modelComponents[ temp->getComponentName() ] = temp; - - temp = new ForcingComponent(); - modelComponents[ temp->getComponentName() ] = temp; - temp = new slrComponent(); - modelComponents[ temp->getComponentName() ] = temp; - temp = new OceanComponent(); - modelComponents[ temp->getComponentName() ] = temp; - temp = new TemperatureComponent(); - modelComponents[ temp->getComponentName() ] = temp; - - temp = new HalocarbonComponent( CF4_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( C2F6_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HFC23_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HFC32_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HFC4310_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HFC125_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HFC134a_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HFC143a_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HFC227ea_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HFC245fa_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( SF6_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HCFC22_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( CFC11_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( CFC12_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( CFC113_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( CFC114_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( CFC115_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( CCl4_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( CH3CCl3_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HCFC141b_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( HCFC142b_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( halon1211_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( halon1301_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( halon2402_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( CH3Cl_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - temp = new HalocarbonComponent( CH3Br_COMPONENT_BASE ); - modelComponents[ temp->getComponentName() ] = temp; - - temp = new BlackCarbonComponent(); - modelComponents[ temp->getComponentName() ] = temp; - temp = new OrganicCarbonComponent(); - modelComponents[ temp->getComponentName() ] = temp; - temp = new SulfurComponent(); - modelComponents[ temp->getComponentName() ] = temp; - temp = new OzoneComponent(); - modelComponents[ temp->getComponentName() ] = temp; - - for( NameComponentIterator it = modelComponents.begin(); it != modelComponents.end(); ++it ) { - try { - ( *it ).second->init( this ); - } - catch(h_exception e) { - H_LOG(glog, Logger::SEVERE) << "error initializing component " << it->first; - throw; - } + H_ASSERT(!isInited, "core has already been initialized"); + + // We handle this input; need to register it here so that R users can change + // it + registerInput(D_TRACKING_DATE, CORE_COMPONENT_NAME); + + IModelComponent *temp; + + temp = new SimpleNbox(); + modelComponents[temp->getComponentName()] = temp; + temp = new CarbonCycleSolver(); + modelComponents[temp->getComponentName()] = temp; + + temp = new OHComponent(); + modelComponents[temp->getComponentName()] = temp; + temp = new CH4Component(); + modelComponents[temp->getComponentName()] = temp; + temp = new N2OComponent(); + modelComponents[temp->getComponentName()] = temp; + + temp = new ForcingComponent(); + modelComponents[temp->getComponentName()] = temp; + temp = new slrComponent(); + modelComponents[temp->getComponentName()] = temp; + temp = new OceanComponent(); + modelComponents[temp->getComponentName()] = temp; + temp = new TemperatureComponent(); + modelComponents[temp->getComponentName()] = temp; + + temp = new HalocarbonComponent(CF4_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(C2F6_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HFC23_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HFC32_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HFC4310_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HFC125_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HFC134a_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HFC143a_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HFC227ea_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HFC245fa_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(SF6_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HCFC22_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(CFC11_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(CFC12_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(CFC113_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(CFC114_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(CFC115_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(CCl4_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(CH3CCl3_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HCFC141b_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(HCFC142b_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(halon1211_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(halon1301_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(halon2402_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(CH3Cl_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + temp = new HalocarbonComponent(CH3Br_COMPONENT_BASE); + modelComponents[temp->getComponentName()] = temp; + + temp = new BlackCarbonComponent(); + modelComponents[temp->getComponentName()] = temp; + temp = new OrganicCarbonComponent(); + modelComponents[temp->getComponentName()] = temp; + temp = new NH3Component(); + modelComponents[temp->getComponentName()] = temp; + temp = new SulfurComponent(); + modelComponents[temp->getComponentName()] = temp; + temp = new OzoneComponent(); + modelComponents[temp->getComponentName()] = temp; + + for (auto mc : modelComponents) { + try { + mc.second->init(this); + } catch (h_exception e) { + H_LOG(glog, Logger::SEVERE) + << "error initializing component " << mc.first; + throw; } + } + + // Set that the core has now been initialized. + isInited = true; +} - // Set that the core has now been initialized. - isInited = true; +//------------------------------------------------------------------------------ +/*! \brief Return the carbon tracking data stored in the csvFluxPoolVisitor + */ +std::string Core::getTrackingData() const { + + // use a string output stream to collect the results + ostringstream tracking_out; + for (auto visitorIt : modelVisitors) { + visitorIt->outputTrackingData(tracking_out); + } + return tracking_out.str(); } //------------------------------------------------------------------------------ @@ -197,79 +213,83 @@ void Core::init() { * the data if componentName is equal to Core::getComponentName(). * \param componentName The name of the component to forward the setData to. * \param data The message_data containing the information to set. - * \exception h_exception If either the componentName or varName was not recognized. + * \exception h_exception If either the componentName or varName was not + * recognized. */ -void Core::setData( const string& componentName, const string& varName, - const message_data& data ) -{ - if( componentName == getComponentName() ) { - try { - if( varName == D_RUN_NAME ) { - H_ASSERT( data.date == undefinedIndex(), "date not allowed" ); - run_name = data.value_str; - } else if( varName == D_START_DATE ) { - H_ASSERT( data.date == undefinedIndex(), "date not allowed" ); - lastDate = startDate = data.getUnitval(U_UNDEFINED); - } else if( varName == D_END_DATE ) { - H_ASSERT( data.date == undefinedIndex(), "date not allowed" ); - endDate = data.getUnitval(U_UNDEFINED); - } else if( varName == D_DO_SPINUP ) { - H_ASSERT( data.date == undefinedIndex(), "date not allowed" ); - do_spinup = (data.getUnitval(U_UNDEFINED) > 0); - } else if( varName == D_MAX_SPINUP ) { - H_ASSERT( data.date == undefinedIndex(), "date not allowed" ); - max_spinup = data.getUnitval(U_UNDEFINED); - } else { - H_THROW( "Unknown variable name while parsing "+ getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); - } - } else { // data is not intended for us - IModelComponent* component = getComponentByName( componentName ); - - if( varName == D_ENABLED ) { - // The core intercepts "enabled=xxx" lines to mark components as disabled - if( data.getUnitval(U_UNDEFINED) <= 0 ) { - H_LOG( glog, Logger::WARNING ) << "Disabling " << componentName << endl; - disabledComponents.push_back( componentName ); - } - } else if( varName == D_OUTPUT_ENABLED ) { - // The core intercepts "output=xxx" lines to mark components as disabled - if( data.getUnitval(U_UNDEFINED) <= 0 ) { - H_LOG( glog, Logger::WARNING ) << "Disabling output for " << componentName << endl; - disabledOutputComponents.push_back( componentName ); - } - } else { - component->setData( varName, data ); // route data - } +void Core::setData(const string &componentName, const string &varName, + const message_data &data) { + if (componentName == getComponentName()) { + try { + if (varName == D_RUN_NAME) { + H_ASSERT(data.date == undefinedIndex(), "date not allowed"); + run_name = data.value_str; + } else if (varName == D_START_DATE) { + H_ASSERT(data.date == undefinedIndex(), "date not allowed"); + lastDate = startDate = data.getUnitval(U_UNDEFINED); + } else if (varName == D_END_DATE) { + H_ASSERT(data.date == undefinedIndex(), "date not allowed"); + endDate = data.getUnitval(U_UNDEFINED); + } else if (varName == D_TRACKING_DATE) { + H_ASSERT(data.date == undefinedIndex(), "date not allowed"); + trackingDate = data.getUnitval(U_UNITLESS); + } else if (varName == D_DO_SPINUP) { + H_ASSERT(data.date == undefinedIndex(), "date not allowed"); + do_spinup = (data.getUnitval(U_UNDEFINED) > 0); + } else if (varName == D_MAX_SPINUP) { + H_ASSERT(data.date == undefinedIndex(), "date not allowed"); + max_spinup = data.getUnitval(U_UNDEFINED); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); + } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } + } else { // data is not intended for us + IModelComponent *component = getComponentByName(componentName); + + if (varName == D_ENABLED) { + // The core intercepts "enabled=xxx" lines to mark components as disabled + if (data.getUnitval(U_UNDEFINED) <= 0) { + H_LOG(glog, Logger::WARNING) << "Disabling " << componentName << endl; + disabledComponents.push_back(componentName); + } + } else if (varName == D_OUTPUT_ENABLED) { + // The core intercepts "output=xxx" lines to mark components as disabled + if (data.getUnitval(U_UNDEFINED) <= 0) { + H_LOG(glog, Logger::WARNING) + << "Disabling output for " << componentName << endl; + disabledOutputComponents.push_back(componentName); + } + } else { + component->setData(varName, data); // route data } + } } //------------------------------------------------------------------------------ /*! \brief Add a visitor which will be called after each model time-step. * - * Each set visitor will be called after all models have solved a time-step. It + * Each set visitor will be called after all models have solved a time-step. It * is up to the visitor to determine if it needs to do anything at that date. - * Visitors can be guaranteed to be called in the order in which they were added. + * Visitors can be guaranteed to be called in the order in which they were + * added. * * \param visitor A visitor to add. * \note The memory for the given visitor must still be managed by the caller. */ -void Core::addVisitor( AVisitor* visitor ) { - H_LOG( glog, Logger::DEBUG) << "Core adding a visitor" << endl; +void Core::addVisitor(AVisitor *visitor) { + H_LOG(glog, Logger::DEBUG) << "Core adding a visitor" << endl; - modelVisitors.push_back( visitor ); + modelVisitors.push_back(visitor); } - //------------------------------------------------------------------------------ /*! \brief Prepare model components to run * \details This subroutine does the last phase of the setup. It comprises all - * of the things that need to be done after parsing is complete but before - * we begin the runs proper. As such, this subroutine should be called only - * once per run. The steps performed are: + * of the things that need to be done after parsing is complete but + * before we begin the runs proper. As such, this subroutine should be called + * only once per run. The steps performed are: * * 1) Remove disabled components * 2) Construct dependency graph @@ -279,112 +299,124 @@ void Core::addVisitor( AVisitor* visitor ) { * * \exception h_exception An error which may occur at any stage of the process. */ -void Core::prepareToRun(void) -{ - - /* Most of this stuff only needs to be done once, even if we reset the - * model; therefore it would be a good candidate to go in init instead of - * here. However, in order to remove disabled components we have to first - * read the input file so that we know which ones are meant to be disabled. - * The input file doesn't get read until after init is run, so we have to - * defer this setup until here and guard it so that it only gets run - * once. */ - if(!setup_complete) { - // ------------------------------------ - // 1. Go through the list of components that have been disabled and remove them - // from the capability and component lists - - for( vector::iterator it=disabledComponents.begin(); it != disabledComponents.end(); ++it ) { - H_LOG( glog, Logger::WARNING ) << "Disabling " << *it << endl; - IModelComponent * mcomp = getComponentByName( *it ); - mcomp->shutDown(); - delete mcomp; - modelComponents.erase( *it ); - - componentMapIterator it2 = componentCapabilities.begin(); - while( it2 != componentCapabilities.end() ) { - if( it2->second==*it ) { - H_LOG( glog, Logger::DEBUG) << "--erasing " << it2->first << " " << it2->second << endl; - componentCapabilities.erase( it2++ ); - } else { - ++it2; - } - } // while - } // for - - // ------------------------------------ - // 2. At this point all components should have registered both their capabilities - // and dependencies. The latter are registered as dependencies on capabilities, - // so now we go through the componentDependencies map, find the associated - // component, and register the link with depFinder. - DependencyFinder depFinder; - H_LOG( glog, Logger::NOTICE ) << "Computing dependencies and re-ordering components..." << endl; - for( componentMapIterator it = componentDependencies.begin(); it != componentDependencies.end(); ++it ) { - // H_LOG( glog, Logger::DEBUG) << it->first << " " << it->second << endl; - if( checkCapability( it->second ) ) { - depFinder.addDependency( it->first, getComponentByCapability( it->second )->getComponentName() ); - } else { - H_LOG( glog, Logger::SEVERE) << "Capability " << it->second << " not found but requested by " << it->first << endl; - H_LOG( glog, Logger::WARNING) << "The model will almost certainly not run successfully!" << endl; - } +void Core::prepareToRun(void) { + /* Most of this stuff only needs to be done once, even if we reset the + * model; therefore it would be a good candidate to go in init instead of + * here. However, in order to remove disabled components we have to first + * read the input file so that we know which ones are meant to be disabled. + * The input file doesn't get read until after init is run, so we have to + * defer this setup until here and guard it so that it only gets run + * once. */ + if (!setup_complete) { + // ------------------------------------ + // 1. Go through the list of components that have been disabled and remove + // them from the capability and component lists + + for (auto dc : disabledComponents) { + H_LOG(glog, Logger::WARNING) << "Disabling " << dc << endl; + IModelComponent *mcomp = getComponentByName(dc); + mcomp->shutDown(); + delete mcomp; + modelComponents.erase(dc); + + componentMapIterator it2 = componentCapabilities.begin(); + while (it2 != componentCapabilities.end()) { + if (it2->second == dc) { + H_LOG(glog, Logger::DEBUG) + << "--erasing " << it2->first << " " << it2->second << endl; + componentCapabilities.erase(it2++); + } else { + ++it2; } + } // while + } // for - // ------------------------------------ - // 3. Now that all dependency information has been resolved and entered, create an ordering, - // and then re-sort the modelComponents map based on this new ordering - depFinder.createOrdering(); - DependencyOrderingComparator comp( depFinder.getOrdering() ); - modelComponents = map(modelComponents.begin(), modelComponents.end(), comp ); - - } - setup_complete = true; - - /* Everything from here on down is ok to run more than once */ // ------------------------------------ - // 4. Tell model components we are finished sending data and about to start running. - H_LOG( glog, Logger::NOTICE) << "Preparing to run..." << endl; - for( NameComponentIterator it = modelComponents.begin(); it != modelComponents.end(); ++it ) { - // H_LOG( glog, Logger::DEBUG) << "Preparing " << (*it).second->getComponentName() << " to run" << endl; - ( *it ).second->prepareToRun(); + // 2. At this point all components should have registered both their + // capabilities and dependencies. The latter are registered as dependencies + // on capabilities, so now we go through the componentDependencies map, find + // the associated component, and register the link with depFinder. + DependencyFinder depFinder; + H_LOG(glog, Logger::NOTICE) + << "Computing dependencies and re-ordering components..." << endl; + for (auto dep : componentDependencies) { + if (checkCapability(dep.second)) { + depFinder.addDependency( + dep.first, + getComponentByCapability(dep.second)->getComponentName()); + } else { + H_LOG(glog, Logger::SEVERE) + << "Capability " << dep.second << " not found but requested by " + << dep.first << endl; + H_LOG(glog, Logger::WARNING) + << "The model will almost certainly not run successfully!" << endl; + } } // ------------------------------------ - // 5. Spin up the model - if( do_spinup ) { - H_LOG( glog, Logger::NOTICE) << "Spinning up model..." << endl; - run_spinup(); - } else { - H_LOG( glog, Logger::WARNING) << "No model spinup was requested" << endl; - } // if + // 3. Now that all dependency information has been resolved and entered, + // create an ordering, and then re-sort the modelComponents map based on + // this new ordering + depFinder.createOrdering(); + DependencyOrderingComparator comp(depFinder.getOrdering()); + modelComponents = + map( + modelComponents.begin(), modelComponents.end(), comp); + } + setup_complete = true; + + /* Everything from here on down is ok to run more than once */ + // ------------------------------------ + // 4. Tell model components we are finished sending data and about to start + // running. + H_LOG(glog, Logger::NOTICE) << "Preparing to run..." << endl; + for (auto mc : modelComponents) { + mc.second->prepareToRun(); + } + + // ------------------------------------ + // Visit all the visitors; this lets them record the core pointer, tracking + // date, etc. + for (auto vis : modelVisitors) { + vis->visit(this); + } // for + + // ------------------------------------ + // 5. Spin up the model + if (do_spinup) { + H_LOG(glog, Logger::NOTICE) << "Spinning up model..." << endl; + run_spinup(); + } else { + H_LOG(glog, Logger::WARNING) << "No model spinup was requested" << endl; + } // if } -bool Core::run_spinup() -{ - in_spinup = true; - bool spunup = false; - int step = 0; - while( !spunup && ++steprun_spinup( step ); - - // Let visitors attempt to collect data if necessary - for( VisitorIterator visitorIt = modelVisitors.begin(); visitorIt != modelVisitors.end(); ++visitorIt ) { - if( ( *visitorIt )->shouldVisit( in_spinup, step ) ) { - accept( *visitorIt ); - } - } // for - } // while - - if( spunup ) { - H_LOG( glog, Logger::NOTICE) << "Model spun up after " << step << " steps" << endl; - } else { - H_LOG( glog, Logger::SEVERE) << "Model failed to spin up after " << step << " steps" << endl; - } - in_spinup = false; - - return spunup; +bool Core::run_spinup() { + in_spinup = true; + bool spunup = false; + int step = 0; + while (!spunup && ++step < max_spinup) { + spunup = true; + for (auto mc : modelComponents) + spunup = spunup && mc.second->run_spinup(step); + // Let visitors attempt to collect data if necessary + for (auto vis : modelVisitors) { + if (vis->shouldVisit(in_spinup, step)) { + accept(vis); + } + } // for + } // while + + if (spunup) { + H_LOG(glog, Logger::NOTICE) + << "Model spun up after " << step << " steps" << endl; + } else { + H_LOG(glog, Logger::SEVERE) + << "Model failed to spin up after " << step << " steps" << endl; + } + in_spinup = false; + + return spunup; } //------------------------------------------------------------------------------ @@ -413,93 +445,119 @@ bool Core::run_spinup() * * \exception h_exception An error which may occur at any stage of the process. */ - void Core::run(double runtodate) { - if(runtodate < 0.0) { - // run to the configured default enddate. This is mainly for - // backward compatibility. The input run-to date will always - // override the enddate stored in the core object. - runtodate = endDate; + if (runtodate < 0.0) { + // run to the configured default enddate. This is mainly for + // backward compatibility. The input run-to date will always + // override the enddate stored in the core object. + runtodate = endDate; + } else if (runtodate < lastDate + 1) { + H_LOG(glog, Logger::WARNING) + << "Requested run-to date is less than 1+lastDate. Models not run." + << endl; + return; + } else if (runtodate > endDate) { + H_LOG(glog, Logger::WARNING) + << "Requested run-to date is after the configured end date. " + << "Components are not guaranteed to be valid after endDate." << endl; + } + + // ------------------------------------ + // 6. Run all model dates. + H_LOG(glog, Logger::NOTICE) << "Running..." << endl; + + // Let visitors record initial model state + // Note that just for this initial output, in calling shouldVisit below, we're + // telling visitors that spinup is 'true' (which it's not). This is necessary + // because the ocean component hasn't had a chance to initialize its active + // chemistry yet, and without that calc_revelle() will throw an error. Kind of + // hacky; but the only alternative I see is to create a whole new + // done_with_spinup() signal to the components--a lot of work. + for (auto visitorIt : modelVisitors) { + if (visitorIt->shouldVisit(true, lastDate)) { + accept(visitorIt); } - else if(runtodate < lastDate+1) { - H_LOG(glog, Logger::WARNING) - << "Requested run-to date is less than 1+lastDate. Models not run." << endl; - return; - } - else if(runtodate > endDate) { - H_LOG(glog, Logger::WARNING) - << "Requested run-to date is after the configured end date. " - << "Components are not guaranteed to be valid after endDate." << endl; + } + + // Main model run loop + for (double currDate = lastDate + 1.0; currDate <= runtodate; + currDate += 1.0) { + H_LOG(glog, Logger::NOTICE) << currDate << endl; + + // If we've hit the tracking start year, note this in the log + if (currDate == trackingDate) { + H_LOG(glog, Logger::NOTICE) + << "Starting tracking in " << currDate << endl; + // nb components are responsible for checking and acting on this } - // ------------------------------------ - // 6. Run all model dates. - H_LOG( glog, Logger::NOTICE) << "Running..." << endl; - for(double currDate = lastDate+1.0; currDate <= runtodate; currDate += 1.0 ) { - for( NameComponentIterator it = modelComponents.begin(); it != modelComponents.end(); ++it ) { - ( *it ).second->run( currDate ); - } + for (auto it : modelComponents) { + it.second->run(currDate); + } - // Let visitors attempt to collect data if necessary - for( VisitorIterator visitorIt = modelVisitors.begin(); visitorIt != modelVisitors.end(); ++visitorIt ) { - if( ( *visitorIt )->shouldVisit( in_spinup, currDate ) ) { - accept( *visitorIt ); - } - } + // Let visitors attempt to collect data if necessary + for (auto vis : modelVisitors) { + if (vis->shouldVisit(in_spinup, currDate)) { + accept(vis); + } } + } - // Record the last finished date. We will resume here the next time run is called - lastDate = runtodate; + // Record the last finished date; we will resume here the next time run is + // called + lastDate = runtodate; } - -void Core::reset(double resetdate) -{ - bool rerun_spinup = false; - H_LOG(glog, Logger::NOTICE) << "Resetting model to t= " << resetdate << endl; - if(resetdate < getStartDate()) { - if(do_spinup) { - rerun_spinup = true; - resetdate = 0; // t=0 is the first iteration of the spinup. - H_LOG(glog, Logger::NOTICE) << "Rerunning spinup.\n"; - } - else { - H_LOG(glog, Logger::NOTICE) << "Requested reset time before start date. " - << "Resetting to start date.\n"; - resetdate = getStartDate(); - } - } - - for(NameComponentIterator it = modelComponents.begin(); it != modelComponents.end(); ++it) { - H_LOG(glog, Logger::DEBUG) << "Resetting component: " << it->first << endl; - it->second->reset(resetdate); +void Core::reset(double resetdate) { + bool rerun_spinup = false; + H_LOG(glog, Logger::NOTICE) << "Resetting model to t= " << resetdate << endl; + if (resetdate < getStartDate()) { + if (do_spinup) { + rerun_spinup = true; + resetdate = 0; // t=0 is the first iteration of the spinup. + H_LOG(glog, Logger::NOTICE) << "Rerunning spinup.\n"; + } else { + H_LOG(glog, Logger::NOTICE) << "Requested reset time before start date. " + << "Resetting to start date.\n"; + resetdate = getStartDate(); } - - // The prepareToRun function reruns all of the initial setup, including the - // spinup. This is necessary because we may have changed some of the model - // parameters, and for many components the parameters produce their effect - // by influencing the initial state. - if(rerun_spinup) - prepareToRun(); - - if(rerun_spinup) - lastDate = getStartDate(); - else - lastDate = resetdate; + } + + // Order all components to reset + for (auto mc : modelComponents) { + H_LOG(glog, Logger::DEBUG) << "Resetting component: " << mc.first << endl; + mc.second->reset(resetdate); + } + + // Inform all visitors of the reset as well + // Currently (2021) only csvFluxPoolVisitor implements this + for (auto vis : modelVisitors) { + H_LOG(glog, Logger::DEBUG) << "Resetting visitor" << endl; + vis->reset(resetdate); + } + + // The prepareToRun function reruns all of the initial setup, including the + // spinup. This is necessary because we may have changed some of the model + // parameters, and for many components the parameters produce their effect + // by influencing the initial state. + if (rerun_spinup) { + prepareToRun(); + lastDate = getStartDate(); + } else { + lastDate = resetdate; + } } - /*! \brief Shut down all model components * \details After this function is called no components are valid, * and you must not call run() again. */ -void Core::shutDown() -{ - // ------------------------------------ - // 7. Tell model components we are finished. - for( NameComponentIterator it = modelComponents.begin(); it != modelComponents.end(); ++it ) { - ( *it ).second->shutDown(); - } +void Core::shutDown() { + // ------------------------------------ + // 7. Tell model components we are finished. + for (auto mc : modelComponents) { + mc.second->shutDown(); + } } //------------------------------------------------------------------------------ @@ -507,35 +565,37 @@ void Core::shutDown() * \param componentName The name of the component to retrieve. * \exception h_exception If the componentName was not recognized. */ -IModelComponent* Core::getComponentByName( const string& componentName ) const -{ - CNameComponentIterator it = modelComponents.find( componentName ); +IModelComponent *Core::getComponentByName(const string &componentName) const { + CNameComponentIterator it = modelComponents.find(componentName); - // throw an exception for an unknown component - string err = "Unknown model component: " + componentName; - H_ASSERT( it != modelComponents.end(), err ); + // throw an exception for an unknown component + string err = "Unknown model component: " + componentName; + H_ASSERT(it != modelComponents.end(), err); - return ( *it ).second; + return (*it).second; } //------------------------------------------------------------------------------ /*! \brief Returns the model component with a particular capability. - * \param componentName The capability of the component to retrieve. + * \param capabilityName The capability of the component to retrieve. * \exception h_exception If the capabilityName was not recognized. */ -IModelComponent* Core::getComponentByCapability( const string& capabilityName ) const -{ - H_ASSERT( isInited, "getComponentByCapability not available until core is initialized") +IModelComponent * +Core::getComponentByCapability(const string &capabilityName) const { + H_ASSERT(isInited, + "getComponentByCapability not available until core is initialized") - multimap::const_iterator it = componentCapabilities.find( capabilityName ); + multimap::const_iterator it = + componentCapabilities.find(capabilityName); - // Note that even if multiple components registered a capability, this will return only the first + // Note that even if multiple components registered a capability, this will + // return only the first - // throw an exception for an unknown capability - string err = "Unknown model capability: " + capabilityName; - H_ASSERT( componentCapabilities.count( capabilityName ), err ); + // throw an exception for an unknown capability + string err = "Unknown model capability: " + capabilityName; + H_ASSERT(componentCapabilities.count(capabilityName), err); - return getComponentByName( ( *it ).second ); + return getComponentByName((*it).second); } //------------------------------------------------------------------------------ @@ -544,36 +604,42 @@ IModelComponent* Core::getComponentByCapability( const string& capabilityName ) * \param componentName The name of the associated component. * \param warndupe If true (the default) warn when a duplicate capability * is declared. This should only be set to false when being - * called from registerInput, which sometimes creates duplicates - * for benign reasons. - * \exception h_exception If the componentName was not recognized. - * \note By "capability" we mean any piece of data that the component wants to expose to the model core or other components; this can be an input, an output, or an internal variable. + * called from registerInput, which sometimes creates + * duplicates for benign reasons. \exception h_exception If the componentName + * was not recognized. \note By "capability" we mean any piece of data that the + * component wants to expose to the model core or other components; this can be + * an input, an output, or an internal variable. */ -void Core::registerCapability(const string& capabilityName, const string& componentName, bool warndupe - ) { - H_ASSERT( !isInited, "registerCapability not available after core is initialized") - - // check whether the capability already exists - int ncap = (int)componentCapabilities.count(capabilityName); - if(ncap > 0 && warndupe) { - // If this capability is a dupe, issue a warning, unless we - // have been instructed not to. - H_LOG( glog, Logger::WARNING ) << componentName << " is declaring capability " << capabilityName << " previously registered" << endl; - } - else if(ncap == 0) { - // Only add the capability if it doesn't already exist. - // Adding a duplicate capability has no useful effect anyhow. - componentCapabilities.insert( pair( capabilityName, componentName ) ); - H_LOG(glog, Logger::DEBUG) << capabilityName << " registered to component " << componentName << "\n"; - } +void Core::registerCapability(const string &capabilityName, + const string &componentName, bool warndupe) { + H_ASSERT(!isInited, + "registerCapability not available after core is initialized") + + // check whether the capability already exists + int ncap = (int)componentCapabilities.count(capabilityName); + if (ncap > 0 && warndupe) { + // If this capability is a dupe, issue a warning, unless we + // have been instructed not to. + H_LOG(glog, Logger::WARNING) + << componentName << " is declaring capability " << capabilityName + << " previously registered" << endl; + } else if (ncap == 0) { + // Only add the capability if it doesn't already exist. + // Adding a duplicate capability has no useful effect anyhow. + componentCapabilities.insert( + pair(capabilityName, componentName)); + H_LOG(glog, Logger::DEBUG) << capabilityName << " registered to component " + << componentName << "\n"; + } } //------------------------------------------------------------------------------ /*! \brief Register a component as accepting a certain input * * \details Associate the input capability with a component. We also - * register the input as a capability (under the same name), allowing other objects to query the host component for its value(s). - * so that other components can read these values. + * register the input as a capability (under the same name), allowing + * other objects to query the host component for its value(s). so that other + * components can read these values. * * \param inputName The name of the input the component can accept * \param componentName The name of the component. @@ -581,21 +647,20 @@ void Core::registerCapability(const string& capabilityName, const string& compon * inputs; however, only one of them should allow a corresponding * capability to be declared. */ -void Core::registerInput(const string& inputName, const string& componentName) { - H_ASSERT( !isInited, "registerInput not available after core is initialized") - componentInputs.insert( pair( inputName, componentName ) ); - registerCapability(inputName, componentName, false); +void Core::registerInput(const string &inputName, const string &componentName) { + H_ASSERT(!isInited, "registerInput not available after core is initialized") + componentInputs.insert(pair(inputName, componentName)); + registerCapability(inputName, componentName, false); } //------------------------------------------------------------------------------ /*! \brief Check whether a capability has been registered with the core * \param capabilityName The capability of the component to register. - * \param componentName The name of the associated component. * \returns int Count of the components registered to provide this. */ -int Core::checkCapability( const string& capabilityName ) { +int Core::checkCapability(const string &capabilityName) { - return( int( componentCapabilities.count( capabilityName ) ) ); + return (int(componentCapabilities.count(capabilityName))); } //------------------------------------------------------------------------------ @@ -603,13 +668,15 @@ int Core::checkCapability( const string& capabilityName ) { * \param capabilityName The capability on which the component depends. * \param componentName The name of the component. */ -void Core::registerDependency( const string& capabilityName, const string& componentName ) { - H_ASSERT( !isInited, "registerDependency not available after core is initialized") +void Core::registerDependency(const string &capabilityName, + const string &componentName) { + H_ASSERT(!isInited, + "registerDependency not available after core is initialized") - componentDependencies.insert( pair( componentName, capabilityName ) ); + componentDependencies.insert( + pair(componentName, capabilityName)); } - //------------------------------------------------------------------------------ /*! \brief Look up component and send message in one operation without any need * to send message data. @@ -617,10 +684,26 @@ void Core::registerDependency( const string& capabilityName, const string& compo * \param datum The datum caller is interested in. * \exception h_exception If the componentName was not recognized. */ -unitval Core::sendMessage( const std::string& message, - const std::string& datum ) -{ - return sendMessage( message, datum, message_data() ); +unitval Core::sendMessage(const std::string &message, + const std::string &datum) { + return sendMessage(message, datum, message_data()); +} + +//------------------------------------------------------------------------------ +// documentation is inherited +unitval Core::getData(const std::string &varName, const double date) { + + unitval returnval; + + if (varName == D_TRACKING_DATE) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for tracking date"); + returnval = unitval(trackingDate, U_UNITLESS); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } + + return returnval; } //------------------------------------------------------------------------------ @@ -630,84 +713,93 @@ unitval Core::sendMessage( const std::string& message, * \param info Extra information, message-specific. * \exception h_exception If the componentName was not recognized. */ -unitval Core::sendMessage( const std::string& message, - const std::string& datum, - const message_data& info ) -{ - - std::vector datum_split; - boost::split( datum_split, datum, boost::is_any_of( SNBOX_PARSECHAR ) ); - H_ASSERT( datum_split.size() < 3, "max of one separator allowed in variable names" ); - std::string datum_capability; - if ( datum_split.size() == 2 ) { - datum_capability = datum_split[ 1 ]; +unitval Core::sendMessage(const std::string &message, const std::string &datum, + const message_data &info) { + std::vector datum_split; + boost::split(datum_split, datum, boost::is_any_of(SNBOX_PARSECHAR)); + H_ASSERT(datum_split.size() < 3, + "max of one separator allowed in variable names"); + std::string datum_capability; + if (datum_split.size() == 2) { + datum_capability = datum_split[1]; + } else { + datum_capability = datum_split[0]; + } + + if (message == M_GETDATA || message == M_DUMP_TO_DEEP_OCEAN) { + // M_GETDATA is used extensively by components to query each other re state + // M_DUMP_TO_DEEP_OCEAN is a special message used only to constrain the + // atmosphere We can treat it like a M_GETDATA message + + if (!isInited) { + H_LOG(glog, Logger::SEVERE) + << "message getData not available until core is initialized." + << "\n\tmessage: " << message << "\tdatum: " << datum << endl; + H_THROW("Invalid sendMessage/GETDATA. Check global log for details."); } else { - datum_capability = datum_split[ 0 ]; + componentMapIterator it = componentCapabilities.find(datum_capability); + + string err = "Unknown model datum: " + datum; + H_ASSERT(checkCapability(datum_capability), err); + // Special case: core handles + if ((*it).second == CORE_COMPONENT_NAME) { + return this->getData(datum, info.date); + } else { + return getComponentByName((*it).second) + ->sendMessage(message, datum, info); + } } - - if (message == M_GETDATA || message == M_DUMP_TO_DEEP_OCEAN) { - // M_GETDATA is used extensively by components to query each other re state - // M_DUMP_TO_DEEP_OCEAN is a special message used only to constrain the atmosphere - // We can treat it like a M_GETDATA message - - if(!isInited) { - H_LOG(glog, Logger::SEVERE) - << "message getData not available until core is initialized." - << "\n\tmessage: " << message << "\tdatum: " << datum << endl; - H_THROW("Invalid sendMessage/GETDATA. Check global log for details."); - } - else { - componentMapIterator it = componentCapabilities.find( datum_capability ); - - string err = "Unknown model datum: " + datum; - H_ASSERT( checkCapability( datum_capability ), err ); - return getComponentByName( ( *it ).second )->sendMessage( message, datum, info ); - } + } else if (message == M_SETDATA) { + // locate the components that take this kind of input. If + // there are multiple, we send the message to all of them. + pair itpr = + componentInputs.equal_range(datum_capability); + if (itpr.first == itpr.second) { + H_LOG(glog, Logger::SEVERE) + << "No such input: " << datum << " Aborting."; + H_THROW("Invalid datum in sendMessage/SETDATA."); } - else if (message == M_SETDATA ) { - // locate the components that take this kind of input. If - // there are multiple, we send the message to all of them. - pair itpr = - componentInputs.equal_range(datum_capability); - if(itpr.first == itpr.second) { - H_LOG(glog, Logger::SEVERE) - << "No such input: " << datum << " Aborting."; - H_THROW("Invalid datum in sendMessage/SETDATA."); - } - for(componentMapIterator it=itpr.first; it != itpr.second; ++it) - getComponentByName(it->second)->sendMessage(message, datum, info); - return info.value_unitval; - } - else { - H_LOG(glog, Logger::SEVERE) - << "Unknown message: " << message << " Aborting."; - H_THROW("Invalid message type in sendMessage."); + for (componentMapIterator it = itpr.first; it != itpr.second; ++it) { + // Special case: core handles + if (it->second == CORE_COMPONENT_NAME) { + this->setData(CORE_COMPONENT_NAME, datum, info); + } else { + getComponentByName(it->second)->sendMessage(message, datum, info); + } } + + return info.value_unitval; + } else { + H_LOG(glog, Logger::SEVERE) + << "Unknown message: " << message << " Aborting."; + H_THROW("Invalid message type in sendMessage."); + } } //------------------------------------------------------------------------------ /*! \brief Add an additional model component to be run. * \param modelComponent The model component to add. - * \exception h_exception If the core has already been initialized model components - * may not be added. - * \note The core assumes ownership of memory associated with all components. + * \exception h_exception If the core has already been initialized model + * components may not be added. \note The core assumes ownership of memory + * associated with all components. */ -void Core::addModelComponent( IModelComponent* modelComponent ) { - H_ASSERT( !isInited, "Model components can only be added before initialization." ); +void Core::addModelComponent(IModelComponent *modelComponent) { + H_ASSERT(!isInited, + "Model components can only be added before initialization."); - modelComponents[ modelComponent->getComponentName() ] = modelComponent; + modelComponents[modelComponent->getComponentName()] = modelComponent; } //------------------------------------------------------------------------------ // documentation is inherited -void Core::accept( AVisitor* visitor ) { - visitor->visit( this ); +void Core::accept(AVisitor *visitor) { + visitor->visit(this); - // forward the accept to the contained model components - for( NameComponentIterator it = modelComponents.begin(); it != modelComponents.end(); ++it ) { - ( *it ).second->accept( visitor ); - } + // forward the accept to the contained model components + for (auto mc : modelComponents) { + mc.second->accept(visitor); + } } //------------------------------------------------------------------------------ @@ -716,18 +808,23 @@ void Core::accept( AVisitor* visitor ) { * \return A constant double value which can be compared against to indicate * and index value has not been set. */ -double Core::undefinedIndex() { - return -1; -} +double Core::undefinedIndex() { return -1; } std::vector Core::core_registry; /*! Create a core and add it to the registry */ -int Core::mkcore(bool logtofile, Logger::LogLevel loglvl, bool logtoscrn) -{ - core_registry.push_back(new Core(loglvl, logtoscrn, logtofile)); - return (int)core_registry.size() - 1; +int Core::mkcore(bool logtofile, Logger::LogLevel loglvl, bool logtoscrn) { + // Create a dummy output filestream, essentially /dev/null + std::ofstream dummy; + CSVFluxPoolVisitor *visitr = new CSVFluxPoolVisitor(dummy); + + // Create the new core, add the visitor, and push onto the core registry + Core *core = new Core(loglvl, logtoscrn, logtofile); + core->addVisitor(visitr); + core_registry.push_back(core); + + return (int)core_registry.size() - 1; } /*! Get a core by index @@ -735,74 +832,70 @@ int Core::mkcore(bool logtofile, Logger::LogLevel loglvl, bool logtoscrn) * \details Return a pointer to the core corresponding to the input * index. If an invalid index is passed, return a null pointer. */ -Core *Core::getcore(int idx) -{ - if(idx < core_registry.size() && idx >= 0) { - return core_registry[idx]; - } - else { - return NULL; - } +Core *Core::getcore(int idx) { + if (idx < core_registry.size() && idx >= 0) { + return core_registry[idx]; + } else { + return NULL; + } } - /*! Shutdown a core in the global registry * \details Call the core's shutdown method, delete the core object, * and set its entry in the registry to a null pointer. If an invalid * index is passed, this is a no-op. */ -void Core::delcore(int idx) -{ - Core *core = getcore(idx); - - if(core) { - core->shutDown(); - delete core; - core_registry[idx] = NULL; - } - // If core is null, it's already been shutdown, so do nothing. +void Core::delcore(int idx) { + Core *core = getcore(idx); + + if (core) { + core->shutDown(); + delete core; + core_registry[idx] = NULL; + } + // If core is null, it's already been shutdown, so do nothing. } //! Retrieve the current biome list -std::vector Core::getBiomeList() const -{ - IModelComponent* cmodel_i = getComponentByCapability( D_VEGC ); - SimpleNbox* cmodel = dynamic_cast(cmodel_i); - if (cmodel) { - return( cmodel->getBiomeList() ); - } else { - H_THROW("Failed to retrieve biome list because of error in dynamic cast to `SimpleNbox`.") - } +std::vector Core::getBiomeList() const { + IModelComponent *cmodel_i = getComponentByCapability(D_VEGC); + SimpleNbox *cmodel = dynamic_cast(cmodel_i); + if (cmodel) { + return (cmodel->getBiomeList()); + } else { + H_THROW("Failed to retrieve biome list because of error in dynamic cast to " + "`SimpleNbox`.") + } } /*! Create a new biome * \details Add the biome to `biome_list`, set all pool values to * zero, and set all parameters to the values of the previous biome. */ -void Core::createBiome(const std::string& biome) -{ - IModelComponent* cmodel_i = getComponentByCapability( D_VEGC ); - CarbonCycleModel* cmodel = dynamic_cast(cmodel_i); - if (cmodel) { - return( cmodel->createBiome(biome) ); - } else { - H_THROW("Failed to create biome because of error in dynamic cast to `SimpleNbox`.") - } +void Core::createBiome(const std::string &biome) { + IModelComponent *cmodel_i = getComponentByCapability(D_VEGC); + CarbonCycleModel *cmodel = dynamic_cast(cmodel_i); + if (cmodel) { + return (cmodel->createBiome(biome)); + } else { + H_THROW("Failed to create biome because of error in dynamic cast to " + "`SimpleNbox`.") + } } /*! Delete a biome * \details Remove the biome from `biome_list` and `erase` all * associated pool and parameter values. */ -void Core::deleteBiome(const std::string& biome) -{ - IModelComponent* cmodel_i = getComponentByCapability( D_VEGC ); - CarbonCycleModel* cmodel = dynamic_cast(cmodel_i); - if (cmodel) { - return( cmodel->deleteBiome(biome) ); - } else { - H_THROW("Failed to delete biome because of error in dynamic cast to `SimpleNbox`.") - } +void Core::deleteBiome(const std::string &biome) { + IModelComponent *cmodel_i = getComponentByCapability(D_VEGC); + CarbonCycleModel *cmodel = dynamic_cast(cmodel_i); + if (cmodel) { + return (cmodel->deleteBiome(biome)); + } else { + H_THROW("Failed to delete biome because of error in dynamic cast to " + "`SimpleNbox`.") + } } /*! Rename a biome @@ -810,15 +903,15 @@ void Core::deleteBiome(const std::string& biome) * and set all pools and parameters to the values of `oldname`. Then, * delete `oldname` (see `deleteBiome`). */ -void Core::renameBiome(const std::string& oldname, const std::string& newname) -{ - IModelComponent* cmodel_i = getComponentByCapability( D_VEGC ); - CarbonCycleModel* cmodel = dynamic_cast(cmodel_i); - if (cmodel) { - return( cmodel->renameBiome(oldname, newname) ); - } else { - H_THROW("Failed to rename biome because of error in dynamic cast to `SimpleNbox`.") - } +void Core::renameBiome(const std::string &oldname, const std::string &newname) { + IModelComponent *cmodel_i = getComponentByCapability(D_VEGC); + CarbonCycleModel *cmodel = dynamic_cast(cmodel_i); + if (cmodel) { + return (cmodel->renameBiome(oldname, newname)); + } else { + H_THROW("Failed to rename biome because of error in dynamic cast to " + "`SimpleNbox`.") + } } -} +} // namespace Hector diff --git a/src/csv_outputstream_visitor.cpp b/src/csv_outputstream_visitor.cpp index 1985e714a..e0dd20e6c 100644 --- a/src/csv_outputstream_visitor.cpp +++ b/src/csv_outputstream_visitor.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -13,29 +13,32 @@ */ #include +#include // some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: lexical_cast.hpp still generates many warnings #pragma clang diagnostic push #pragma clang diagnostic ignored "-Weverything" #include #pragma clang diagnostic pop +#include "bc_component.hpp" +#include "ch4_component.hpp" +#include "core.hpp" +#include "csv_outputstream_visitor.hpp" #include "dummy_model_component.hpp" #include "forcing_component.hpp" +#include "h_util.hpp" #include "halocarbon_component.hpp" -#include "temperature_component.hpp" -#include "bc_component.hpp" -#include "oc_component.hpp" -#include "slr_component.hpp" +#include "n2o_component.hpp" +#include "nh3_component.hpp" #include "o3_component.hpp" +#include "oc_component.hpp" #include "oh_component.hpp" -#include "ch4_component.hpp" -#include "n2o_component.hpp" -#include "core.hpp" -#include "unitval.hpp" -#include "h_util.hpp" #include "simpleNbox.hpp" -#include "csv_outputstream_visitor.hpp" +#include "slr_component.hpp" +#include "temperature_component.hpp" +#include "unitval.hpp" namespace Hector { @@ -43,256 +46,301 @@ using namespace std; //------------------------------------------------------------------------------ /*! \brief Constructor - * \param filename The file to write the csv output to. + * \param outputStream The file to write the csv output to + * \param printHeader Boolean controlling whether we print a header or not */ -CSVOutputStreamVisitor::CSVOutputStreamVisitor( ostream& outputStream, const bool printHeader ) -:csvFile( outputStream ) -{ - if( printHeader ) { - // Print model version header - csvFile << "# Output from " << MODEL_NAME << " version " << MODEL_VERSION << endl; - - // Print table header - csvFile << "year" << DELIMITER << "run_name" << DELIMITER << "spinup" << DELIMITER - << "component" << DELIMITER << "variable" << DELIMITER << "value" << DELIMITER - << "units" << endl; - } - run_name = ""; - current_date = 0; - datestring = ""; - spinupstring = ""; +CSVOutputStreamVisitor::CSVOutputStreamVisitor(ostream &outputStream, + const bool printHeader) + : csvFile(outputStream) { + if (printHeader) { + + // Save the current time (real world not Hector current time) to write out + // in outputstream. + std::time_t result = std::time(nullptr); + const string real_time = std::ctime(&result); + std::regex newlines_re("\n+"); + auto print_time = std::regex_replace(real_time, newlines_re, ""); + + // Print model version header + csvFile << "# Output from " << MODEL_NAME << " version " << MODEL_VERSION + << " on " << print_time << endl; + + // Print table header + csvFile << "year" << DELIMITER << "run_name" << DELIMITER << "spinup" + << DELIMITER << "component" << DELIMITER << "variable" << DELIMITER + << "value" << DELIMITER << "units" << endl; + } + run_name = ""; + current_date = 0; + datestring = ""; + spinupstring = ""; } //------------------------------------------------------------------------------ /*! \brief Destructor */ -CSVOutputStreamVisitor::~CSVOutputStreamVisitor() { -} +CSVOutputStreamVisitor::~CSVOutputStreamVisitor() {} //------------------------------------------------------------------------------ // documentation is inherited -bool CSVOutputStreamVisitor::shouldVisit( const bool is, const double date ) { +bool CSVOutputStreamVisitor::shouldVisit(const bool is, const double date) { - current_date = date; - in_spinup = is; - datestring = boost::lexical_cast( date ); - spinupstring = boost::lexical_cast( in_spinup ); + current_date = date; + in_spinup = is; + datestring = boost::lexical_cast(date); + spinupstring = boost::lexical_cast(in_spinup); - // visit all model periods - return true; + // visit all model periods + return true; } //------------------------------------------------------------------------------ /*! \brief Return text that starts every output line */ std::string CSVOutputStreamVisitor::linestamp() { - return( datestring + DELIMITER + run_name + DELIMITER + spinupstring + DELIMITER ); + return (datestring + DELIMITER + run_name + DELIMITER + spinupstring + + DELIMITER); } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( Core* c ) { - run_name = c->getRun_name(); - core = c; +void CSVOutputStreamVisitor::visit(Core *c) { + run_name = c->getRun_name(); + core = c; } -// TODO: have to consolidate these macros into the two MESSAGE ones, +// TODO: consolidate these macros into the two MESSAGE ones, // and shift string literals to D_xxxx definitions // Macro to send a variable with associated unitval units to some output stream // Takes s (stream), c (component), xname (variable name), x (output variable) -#define STREAM_UNITVAL( s, c, xname, x ) { \ -s << linestamp() << c->getComponentName() << DELIMITER \ -<< xname << DELIMITER << x.value( x.units() ) << DELIMITER \ -<< x.unitsName() << std::endl; \ -} +#define STREAM_UNITVAL(s, c, xname, x) \ + { \ + s << linestamp() << c->getComponentName() << DELIMITER << xname \ + << DELIMITER << x.value(x.units()) << DELIMITER << x.unitsName() \ + << std::endl; \ + } // Macro to send a variable with associated unitval units to some output stream // This uses new sendMessage interface in imodel_component -// Takes s (stream), c (component), xname (variable name), date -#define STREAM_MESSAGE( s, c, xname ) { \ -unitval x = c->sendMessage( M_GETDATA, xname ); \ -s << linestamp() << c->getComponentName() << DELIMITER \ -<< xname << DELIMITER << x.value( x.units() ) << DELIMITER \ -<< x.unitsName() << std::endl; \ -} +// Takes s (stream), c (component), xname (variable name) +#define STREAM_MESSAGE(s, c, xname) \ + { \ + unitval x = c->sendMessage(M_GETDATA, xname); \ + s << linestamp() << c->getComponentName() << DELIMITER << xname \ + << DELIMITER << x.value(x.units()) << DELIMITER << x.unitsName() \ + << std::endl; \ + } // Macro for date-dependent variables // Takes s (stream), c (component), xname (variable name), date -#define STREAM_MESSAGE_DATE( s, c, xname, date ) { \ -unitval x = c->sendMessage( M_GETDATA, xname, message_data( date ) ); \ -s << linestamp() << c->getComponentName() << DELIMITER \ -<< xname << DELIMITER << x.value( x.units() ) << DELIMITER \ -<< x.unitsName() << std::endl; \ -} - +#define STREAM_MESSAGE_DATE(s, c, xname, date) \ + { \ + unitval x = c->sendMessage(M_GETDATA, xname, message_data(date)); \ + s << linestamp() << c->getComponentName() << DELIMITER << xname \ + << DELIMITER << x.value(x.units()) << DELIMITER << x.unitsName() \ + << std::endl; \ + } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( ForcingComponent* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; - streamsize oldPrecision = csvFile.precision( 4 ); +void CSVOutputStreamVisitor::visit(ForcingComponent *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + streamsize oldPrecision = csvFile.precision(4); - if(c->currentYear < c->baseyear) - return; + if (c->currentYear < c->baseyear) + return; - ForcingComponent::forcings_t forcings = c->forcings_ts.get(c->currentYear); + ForcingComponent::forcings_t forcings = c->forcings_ts.get(c->currentYear); - // Walk through the forcings map, outputting everything - for( ForcingComponent::forcingsIterator it = forcings.begin(); it != forcings.end(); ++it ) { - STREAM_UNITVAL( csvFile, c, ( *it ).first, ( *it ).second ); - } + // Walk through the forcings map, outputting everything + for (auto f : forcings) { + STREAM_UNITVAL(csvFile, c, f.first, f.second); + } - csvFile.precision( oldPrecision ); + csvFile.precision(oldPrecision); } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( SimpleNbox* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; - - // Global outputs - STREAM_MESSAGE( csvFile, c, D_LAND_CFLUX ); - STREAM_MESSAGE( csvFile, c, D_NPP ); - STREAM_MESSAGE( csvFile, c, D_RH ); - STREAM_MESSAGE( csvFile, c, D_ATMOSPHERIC_CO2 ); - STREAM_MESSAGE( csvFile, c, D_ATMOSPHERIC_C ); - STREAM_MESSAGE( csvFile, c, D_ATMOSPHERIC_C_RESIDUAL ); - STREAM_MESSAGE( csvFile, c, D_VEGC ); - STREAM_MESSAGE( csvFile, c, D_DETRITUSC ); - STREAM_MESSAGE( csvFile, c, D_SOILC ); - STREAM_MESSAGE( csvFile, c, D_EARTHC ); - - // Biome-specific outputs: . - if( c->veg_c.size() > 1 ) { - SimpleNbox::unitval_stringmap::const_iterator it; - for( it = c->veg_c.begin(); it != c->veg_c.end(); it++ ) { - std::string biome = ( *it ).first; - STREAM_UNITVAL( csvFile, c, biome+"."+D_NPP, c->npp( biome ) ); - STREAM_UNITVAL( csvFile, c, biome+"."+D_RH, c->rh( biome ) ); - STREAM_UNITVAL( csvFile, c, biome+"."+D_VEGC, c->veg_c[ biome ] ); - STREAM_UNITVAL( csvFile, c, biome+"."+D_DETRITUSC, c->detritus_c[ biome ] ); - STREAM_UNITVAL( csvFile, c, biome+"."+D_SOILC, c->soil_c[ biome ] ); - STREAM_UNITVAL( csvFile, c, biome+"."+D_TEMPFERTD, unitval( c->tempfertd[ biome ], U_UNITLESS ) ); - STREAM_UNITVAL( csvFile, c, biome+"."+D_TEMPFERTS, unitval( c->tempferts[ biome ], U_UNITLESS ) ); - } +void CSVOutputStreamVisitor::visit(SimpleNbox *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + + // Global outputs + // Note if there are multiple biomes, these values will be totals, summed + // across all biomes + STREAM_MESSAGE(csvFile, c, D_NBP); + STREAM_UNITVAL(csvFile, c, D_NPP, c->final_npp[SNBOX_DEFAULT_BIOME]); + STREAM_UNITVAL(csvFile, c, D_RH, c->final_rh[SNBOX_DEFAULT_BIOME]); + STREAM_UNITVAL(csvFile, c, D_RH_CH4, c->final_rh[SNBOX_DEFAULT_BIOME]); + STREAM_MESSAGE_DATE(csvFile, c, D_CO2_CONC, current_date); + STREAM_MESSAGE(csvFile, c, D_ATMOSPHERIC_CO2); + STREAM_MESSAGE(csvFile, c, D_ATMOSPHERIC_C_RESIDUAL); + STREAM_MESSAGE(csvFile, c, D_VEGC); + STREAM_MESSAGE(csvFile, c, D_DETRITUSC); + STREAM_MESSAGE(csvFile, c, D_SOILC); + STREAM_MESSAGE(csvFile, c, D_PERMAFROSTC); + STREAM_MESSAGE(csvFile, c, D_THAWEDPC); + STREAM_MESSAGE(csvFile, c, D_F_FROZEN); + STREAM_MESSAGE(csvFile, c, D_EARTHC); + + // Biome-specific outputs: . + if (c->veg_c.size() > 1) { + SimpleNbox::fluxpool_stringmap::const_iterator it; + for (auto b : c->veg_c) { + std::string biome = b.first; + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_NPP, + c->final_npp[biome]); + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_RH, + c->final_rh[biome]); + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_RH_CH4, + c->RH_ch4[biome]); + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_VEGC, + c->veg_c[biome]); + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_DETRITUSC, + c->detritus_c[biome]); + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_SOILC, + c->soil_c[biome]); + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_PERMAFROSTC, + c->permafrost_c[biome]); + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_THAWEDPC, + c->thawed_permafrost_c[biome]); + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_F_FROZEN, + unitval(c->f_frozen[biome], U_UNITLESS)); + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_TEMPFERTD, + unitval(c->tempfertd[biome], U_UNITLESS)); + STREAM_UNITVAL(csvFile, c, biome + SNBOX_PARSECHAR + D_TEMPFERTS, + unitval(c->tempferts[biome], U_UNITLESS)); } + } } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( HalocarbonComponent* c ) { - // TODO: how to get emissions in the gas specific units? - if( !core->outputEnabled( c->getComponentName() ) ) return; - STREAM_MESSAGE( csvFile, c, D_HC_CONCENTRATION ); +void CSVOutputStreamVisitor::visit(HalocarbonComponent *c) { + // TODO: how to get emissions in the gas specific units? + if (!core->outputEnabled(c->getComponentName())) + return; + STREAM_MESSAGE(csvFile, c, D_HC_CONCENTRATION); } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( TemperatureComponent* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; - STREAM_MESSAGE( csvFile, c, D_GLOBAL_TEMP ); - STREAM_MESSAGE( csvFile, c, D_FLUX_MIXED ); - STREAM_MESSAGE( csvFile, c, D_FLUX_INTERIOR ) - STREAM_MESSAGE(csvFile, c, D_HEAT_FLUX ); - } +void CSVOutputStreamVisitor::visit(TemperatureComponent *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + STREAM_MESSAGE(csvFile, c, D_GLOBAL_TAS); + STREAM_MESSAGE(csvFile, c, D_FLUX_MIXED); + STREAM_MESSAGE(csvFile, c, D_FLUX_INTERIOR) + STREAM_MESSAGE(csvFile, c, D_HEAT_FLUX); + STREAM_MESSAGE(csvFile, c, D_LAND_TAS); + STREAM_MESSAGE(csvFile, c, D_SST); +} + //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( OceanComponent* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; - STREAM_MESSAGE( csvFile, c, D_ATM_OCEAN_FLUX_HL ); - STREAM_MESSAGE( csvFile, c, D_ATM_OCEAN_FLUX_LL ); - STREAM_MESSAGE( csvFile, c, D_CARBON_DO ); - STREAM_MESSAGE( csvFile, c, D_CARBON_HL ); - STREAM_MESSAGE( csvFile, c, D_CARBON_IO ); - STREAM_MESSAGE( csvFile, c, D_CARBON_LL ); - STREAM_MESSAGE( csvFile, c, D_DIC_HL ); - STREAM_MESSAGE( csvFile, c, D_DIC_LL ); - STREAM_MESSAGE( csvFile, c, D_HL_DO ); - STREAM_MESSAGE( csvFile, c, D_OCEAN_CFLUX ); - STREAM_MESSAGE( csvFile, c, D_OMEGAAR_HL ); - STREAM_MESSAGE( csvFile, c, D_OMEGAAR_LL ); - STREAM_MESSAGE( csvFile, c, D_OMEGACA_HL ); - STREAM_MESSAGE( csvFile, c, D_OMEGACA_LL ); - STREAM_MESSAGE( csvFile, c, D_PCO2_HL ); - STREAM_MESSAGE( csvFile, c, D_PCO2_LL ); - STREAM_MESSAGE( csvFile, c, D_PH_HL ); - STREAM_MESSAGE( csvFile, c, D_PH_LL ); - STREAM_MESSAGE( csvFile, c, D_TEMP_HL ); - STREAM_MESSAGE( csvFile, c, D_TEMP_LL ); - STREAM_MESSAGE( csvFile, c, D_OCEAN_C ); - STREAM_MESSAGE( csvFile, c, D_CO3_HL ); - STREAM_MESSAGE( csvFile, c, D_CO3_LL ); - STREAM_MESSAGE( csvFile, c, D_TIMESTEPS ); - if( !in_spinup ) { - STREAM_MESSAGE( csvFile, c, D_REVELLE_HL ); - STREAM_MESSAGE( csvFile, c, D_REVELLE_LL ); - } +void CSVOutputStreamVisitor::visit(OceanComponent *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + STREAM_MESSAGE(csvFile, c, D_ATM_OCEAN_FLUX_HL); + STREAM_MESSAGE(csvFile, c, D_ATM_OCEAN_FLUX_LL); + STREAM_MESSAGE(csvFile, c, D_CARBON_DO); + STREAM_MESSAGE(csvFile, c, D_CARBON_HL); + STREAM_MESSAGE(csvFile, c, D_CARBON_IO); + STREAM_MESSAGE(csvFile, c, D_CARBON_LL); + STREAM_MESSAGE(csvFile, c, D_DIC_HL); + STREAM_MESSAGE(csvFile, c, D_DIC_LL); + STREAM_MESSAGE(csvFile, c, D_HL_DO); + STREAM_MESSAGE(csvFile, c, D_OCEAN_C_UPTAKE); + STREAM_MESSAGE(csvFile, c, D_OMEGAAR_HL); + STREAM_MESSAGE(csvFile, c, D_OMEGAAR_LL); + STREAM_MESSAGE(csvFile, c, D_OMEGACA_HL); + STREAM_MESSAGE(csvFile, c, D_OMEGACA_LL); + STREAM_MESSAGE(csvFile, c, D_PCO2_HL); + STREAM_MESSAGE(csvFile, c, D_PCO2_LL); + STREAM_MESSAGE(csvFile, c, D_PH_HL); + STREAM_MESSAGE(csvFile, c, D_PH_LL); + STREAM_MESSAGE(csvFile, c, D_TEMP_HL); + STREAM_MESSAGE(csvFile, c, D_TEMP_LL); + STREAM_MESSAGE(csvFile, c, D_OCEAN_C); + STREAM_MESSAGE(csvFile, c, D_CO3_HL); + STREAM_MESSAGE(csvFile, c, D_CO3_LL); + if (!in_spinup) { + STREAM_MESSAGE(csvFile, c, D_REVELLE_HL); + STREAM_MESSAGE(csvFile, c, D_REVELLE_LL); + } } - - //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( slrComponent* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; - if( current_date == max( c->refperiod_high, c->normalize_year ) ) { - std::string olddatestring = datestring; - for( int i=core->getStartDate()+1; i( i ); // convert to string and store - STREAM_MESSAGE_DATE( csvFile, c, D_SL_RC, i ); - STREAM_MESSAGE_DATE( csvFile, c, D_SLR, i ); - STREAM_MESSAGE_DATE( csvFile, c, D_SL_RC_NO_ICE, i ); - STREAM_MESSAGE_DATE( csvFile, c, D_SLR_NO_ICE, i ); - } - datestring = olddatestring; - } - if( current_date >= max( c->refperiod_high, c->normalize_year ) ) { // output all previous years - STREAM_MESSAGE_DATE( csvFile, c, D_SL_RC, current_date ); - STREAM_MESSAGE_DATE( csvFile, c, D_SLR, current_date ); - STREAM_MESSAGE_DATE( csvFile, c, D_SL_RC_NO_ICE, current_date ); - STREAM_MESSAGE_DATE( csvFile, c, D_SLR_NO_ICE, current_date ); +void CSVOutputStreamVisitor::visit(slrComponent *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + if (current_date == max(c->refperiod_high, c->normalize_year)) { + std::string olddatestring = datestring; + for (int i = core->getStartDate() + 1; i < current_date; i++) { + // TODO: this is a hack; need to fool the linestamp routine above + datestring = + boost::lexical_cast(i); // convert to string and store + STREAM_MESSAGE_DATE(csvFile, c, D_SLR, i); + STREAM_MESSAGE_DATE(csvFile, c, D_SLR_NO_ICE, i); } + datestring = olddatestring; + } + if (current_date >= + max(c->refperiod_high, c->normalize_year)) { // output all previous years + STREAM_MESSAGE_DATE(csvFile, c, D_SL_RC, current_date); + STREAM_MESSAGE_DATE(csvFile, c, D_SLR, current_date); + STREAM_MESSAGE_DATE(csvFile, c, D_SL_RC_NO_ICE, current_date); + STREAM_MESSAGE_DATE(csvFile, c, D_SLR_NO_ICE, current_date); + } } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( BlackCarbonComponent* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; +void CSVOutputStreamVisitor::visit(BlackCarbonComponent *c) { + if (!core->outputEnabled(c->getComponentName())) + return; } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( OrganicCarbonComponent* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; +void CSVOutputStreamVisitor::visit(OrganicCarbonComponent *c) { + if (!core->outputEnabled(c->getComponentName())) + return; } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( OzoneComponent* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; - STREAM_MESSAGE_DATE( csvFile, c, D_ATMOSPHERIC_O3, current_date ); +void CSVOutputStreamVisitor::visit(OzoneComponent *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + STREAM_MESSAGE_DATE(csvFile, c, D_ATMOSPHERIC_O3, current_date); } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( OHComponent* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; - STREAM_MESSAGE_DATE( csvFile, c, D_LIFETIME_OH, current_date ); +void CSVOutputStreamVisitor::visit(OHComponent *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + STREAM_MESSAGE_DATE(csvFile, c, D_LIFETIME_OH, current_date); } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( CH4Component* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; - STREAM_MESSAGE_DATE( csvFile, c, D_ATMOSPHERIC_CH4, current_date ); +void CSVOutputStreamVisitor::visit(CH4Component *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + STREAM_MESSAGE_DATE(csvFile, c, D_CH4_CONC, current_date); } //------------------------------------------------------------------------------ // documentation is inherited -void CSVOutputStreamVisitor::visit( N2OComponent* c ) { - if( !core->outputEnabled( c->getComponentName() ) ) return; -STREAM_MESSAGE_DATE( csvFile, c, D_ATMOSPHERIC_N2O, current_date ); +void CSVOutputStreamVisitor::visit(N2OComponent *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + STREAM_MESSAGE_DATE(csvFile, c, D_N2O_CONC, current_date); } -} +} // namespace Hector diff --git a/src/csv_table_reader.cpp b/src/csv_table_reader.cpp index 2045ff738..d2bfa1e17 100644 --- a/src/csv_table_reader.cpp +++ b/src/csv_table_reader.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -15,6 +15,7 @@ #include // some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: lexical_cast.hpp still generates many warnings #pragma clang diagnostic push #pragma clang diagnostic ignored "-Weverything" #include @@ -25,8 +26,8 @@ #include #include "core.hpp" -#include "message_data.hpp" #include "csv_table_reader.hpp" +#include "message_data.hpp" namespace Hector { @@ -40,22 +41,21 @@ using namespace std; * \param fileName The name of a csv file to read from. * \exception h_exception If there were errors when opening the file. */ -CSVTableReader::CSVTableReader( const string& fileName ) -:fileName( fileName ) -{ - // allow exceptions from bad io operations - tableInputStream.exceptions( ifstream::failbit | ifstream:: badbit ); - - try { - // attempt to open the file - tableInputStream.open( fileName.c_str() ); - } catch( ifstream::failure e ) { - // the macro errno in combination with strerror seem to be much more - // informative than error message from the exception - string errorStr = "Could not open csv file: "+fileName+" error: "+strerror(errno); - H_THROW( errorStr ); - } - lineNum = 0; +CSVTableReader::CSVTableReader(const string &fileName) : fileName(fileName) { + // allow exceptions from bad io operations + tableInputStream.exceptions(ifstream::failbit | ifstream::badbit); + + try { + // attempt to open the file + tableInputStream.open(fileName.c_str()); + } catch (ifstream::failure e) { + // the macro errno in combination with strerror seem to be much more + // informative than error message from the exception + string errorStr = + "Could not open csv file: " + fileName + " error: " + strerror(errno); + H_THROW(errorStr); + } + lineNum = 0; } //------------------------------------------------------------------------------ @@ -64,31 +64,31 @@ CSVTableReader::CSVTableReader( const string& fileName ) * Closes the input stream. */ CSVTableReader::~CSVTableReader() { - try { - tableInputStream.close(); - } catch( ifstream::failure e ) { - // ignoring close errors - } + try { + tableInputStream.close(); + } catch (ifstream::failure e) { + // ignoring close errors + } } - //------------------------------------------------------------------------------ /*! \brief Helper function * * Get the next line that doesn't start with a semicolon. */ string CSVTableReader::csv_getline() { - string s; - bool semicolon = true; - bool hash = true; - - while( ( semicolon || hash ) && !tableInputStream.eof() && tableInputStream.peek() != -1 ) { - getline( tableInputStream, s ); //TODO: this depends on Unix line endings - ++lineNum; - semicolon = s[ 0 ] == ';'; - hash = s[ 0 ] == '#'; - } - return s; + string s; + bool semicolon = true; + bool hash = true; + + while ((semicolon || hash) && !tableInputStream.eof() && + tableInputStream.peek() != -1) { + getline(tableInputStream, s); // TODO: this depends on Unix line endings + ++lineNum; + semicolon = s[0] == ';'; + hash = s[0] == '#'; + } + return s; } //------------------------------------------------------------------------------ @@ -97,104 +97,104 @@ string CSVTableReader::csv_getline() { * * The input stream will be reset to allow to processing multiple times from * this reader. Next the header row is read and searched to find the column - * which varName is contained in. Then each row of the table is read. Should the - * the first column be UNITS it will use the row to set the units string to pass - * along with read data to provide units checking. Otherwise it will assume - * the first column is the time series index and consistent columns for each - * row. Each value will be routed through the core as rows are read. Extra + * which varName is contained in. Then each row of the table is read. Should + * the the first column be UNITS it will use the row to set the units string to + * pass along with read data to provide units checking. Otherwise it will + * assume the first column is the time series index and consistent columns for + * each row. Each value will be routed through the core as rows are read. Extra * white space will be removed before sending the value into the core. * * \param core A pointer to the model core to route data through. * \param componentName The model component to set varName in. * \param varName The variable name to look for in the CSV file and set. - * \exception h_exception For any I/O errors, improper formatting, and inability - * to find varName. Also any errors while trying to - * setData will also be propagated. + * \exception h_exception For any I/O errors, improper formatting, and + * inability to find varName. Also any errors while trying to setData will also + * be propagated. */ -void CSVTableReader::process( Core* core, const string& componentName, - const string& varName ) -{ - using namespace boost; - try { - // reset the stream in case we are re-reading from this stream - tableInputStream.clear(); - tableInputStream.seekg( 0, ifstream::beg ); - lineNum = 0; - - string line; - vector row; - string unitsLabel; - size_t columnIndex = 0; // code for "not found", takes advantage of skipping col==0 in the loop below. - - // read the header line and attempt to find varName. The first column is - // not considered because that should be the index column. - line = csv_getline(); - H_ASSERT( !line.empty(), "line empty" ); - split( row, line, is_any_of( "," ) ); -// const int headerRowSize = row.size(); - for( size_t col = 1; col < row.size() && columnIndex == 0; ++col ) { - // ignore white space before comparing variable names - trim( row[ col ] ); - if( row[ col ] == varName ) { - columnIndex = col; - } - } - if( columnIndex == 0 ) { - H_THROW( "Could not find a column for "+varName+" in "+fileName+" header="+line ); - } +void CSVTableReader::process(Core *core, const string &componentName, + const string &varName) { + using namespace boost; + try { + // reset the stream in case we are re-reading from this stream + tableInputStream.clear(); + tableInputStream.seekg(0, ifstream::beg); + lineNum = 0; - // we are all set to process the table - // note that getline sets the fail bit when it hits eof which is not what - // want, a work around is to check peek - int lines_read = 0; - while( !tableInputStream.eof() && tableInputStream.peek() != -1 ) { - // read the next row to process - line = csv_getline(); - lines_read++; - - // Ignore blank lines. A stray windows line ending which may have made - // its way in from a mixed line ending file can be skipped as well. - if( line.empty() || line[ 0 ] == '\r' ) { - continue; - } - - split( row, line, is_any_of( "," ) ); - - // we should have a constant number of columns -//TODO: figure this out for VS! H_ASSERT( columnIndex < row.size() && headerRowSize == row.size(), "varying columns in data line "+ boost::lexical_cast( lines_read ) ); - - // remove extra white space from the table value - trim( row[ 0 ] ); - trim( row[ columnIndex ] ); - - if( row[ 0 ] == "UNITS" ) { - // this row of the table is specifying units for all columns - // we only need to keep track of the value for the column of interest - unitsLabel = row[ columnIndex ]; - } else { - // this row is a regular row of data - // the first column is assumed to be the index - double tseriesIndex = lexical_cast( row[ 0 ] ); - - // route the data to the appropriate model component - if( !row[ columnIndex ].empty() ) { // ignore blanks - message_data data( row[ columnIndex ] ); - data.date = tseriesIndex; - data.units_str = unitsLabel; - core->setData( componentName, varName, data ); - } - } - } + string line; + vector row; + string unitsLabel; + size_t columnIndex = 0; // code for "not found", takes advantage of skipping + // col==0 in the loop below. + + // read the header line and attempt to find varName. The first column is + // not considered because that should be the index column. + line = csv_getline(); + H_ASSERT(!line.empty(), "line empty"); + split(row, line, is_any_of(",")); + // const int headerRowSize = row.size(); + for (size_t col = 1; col < row.size() && columnIndex == 0; ++col) { + // ignore white space before comparing variable names + trim(row[col]); + if (row[col] == varName) { + columnIndex = col; + } + } + if (columnIndex == 0) { + H_THROW("Could not find a column for " + varName + " in " + fileName + + " header=" + line); + } - } catch( ifstream::failure e ) { - string errorStr = "I/O exception while processing "+fileName+" error: "+strerror(errno); - H_THROW( errorStr ); - } catch( bad_lexical_cast& castException ) { - H_THROW( "Could not convert index to double on line: "+lexical_cast( lineNum )+", exception: " - +castException.what() ); + // we are all set to process the table + // note that getline sets the fail bit when it hits eof which is not what + // want, a work around is to check peek + int lines_read = 0; + while (!tableInputStream.eof() && tableInputStream.peek() != -1) { + // read the next row to process + line = csv_getline(); + lines_read++; + + // Ignore blank lines. A stray windows line ending which may have made + // its way in from a mixed line ending file can be skipped as well. + if (line.empty() || line[0] == '\r') { + continue; + } + + split(row, line, is_any_of(",")); + + // remove extra white space from the table value + trim(row[0]); + trim(row[columnIndex]); + + if (row[0] == "UNITS") { + // this row of the table is specifying units for all columns + // we only need to keep track of the value for the column of interest + unitsLabel = row[columnIndex]; + } else { + // this row is a regular row of data + // the first column is assumed to be the index + double tseriesIndex = lexical_cast(row[0]); + + // route the data to the appropriate model component + if (!row[columnIndex].empty()) { // ignore blanks + message_data data(row[columnIndex]); + data.date = tseriesIndex; + data.units_str = unitsLabel; + core->setData(componentName, varName, data); + } + } } - // h_exceptions from setData should just be passed along -} + } catch (ifstream::failure e) { + string errorStr = "I/O exception while processing " + fileName + + " error: " + strerror(errno); + H_THROW(errorStr); + } catch (bad_lexical_cast &castException) { + H_THROW("Could not convert index to double on line: " + + lexical_cast(lineNum) + + ", exception: " + castException.what()); + } + // h_exceptions from setData should just be passed along } + +} // namespace Hector diff --git a/src/csv_tracking_visitor.cpp b/src/csv_tracking_visitor.cpp new file mode 100644 index 000000000..de8a1a5e5 --- /dev/null +++ b/src/csv_tracking_visitor.cpp @@ -0,0 +1,157 @@ +/* Hector -- A Simple Climate Model + Copyright (C) 2022 Battelle Memorial Institute + + Please see the accompanying file LICENSE.md for additional licensing + information. +*/ +/* + * csv_tracking_visitor.cpp + * hector + * + * Created by Skylar Gering on 21 January 2021. + * + */ + +#include + +// some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: lexical_cast.hpp still generates many warnings +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Weverything" +#include +#pragma clang diagnostic pop + +#include "core.hpp" +#include "csv_tracking_visitor.hpp" +#include "h_util.hpp" +#include "ocean_component.hpp" +#include "simpleNbox.hpp" +#include "unitval.hpp" + +namespace Hector { + +using namespace std; + +//------------------------------------------------------------------------------ +/*! \brief Constructor + * \param outputStream The file to write the csv output to + * \param printHeader Boolean controlling whether we print a header or not + */ +CSVFluxPoolVisitor::CSVFluxPoolVisitor(ostream &outputStream, + const bool printHeader) + : csvFile(outputStream) { + stringstream hdr; + if (printHeader) { + // Store table header + hdr << "year" << DELIMITER << "component" << DELIMITER << "pool_name" + << DELIMITER << "pool_value" << DELIMITER << "pool_units" << DELIMITER + << "source_name" << DELIMITER << "source_fraction" << endl; + } + header = hdr.str(); +} + +//------------------------------------------------------------------------------ +/*! \brief Destructor + */ +CSVFluxPoolVisitor::~CSVFluxPoolVisitor() { + // Write out the buffer to the csv file before closing down + + if (csvBuffer.size()) { + csvFile << header; // the header (or an empty string) + for (double yr = csvBuffer.firstdate(); yr <= csvBuffer.lastdate(); yr++) { + csvFile << csvBuffer.get(yr); + } + } +} + +//------------------------------------------------------------------------------ +// documentation is inherited +bool CSVFluxPoolVisitor::shouldVisit(const bool in_spinup, const double date) { + current_date = date; + datestring = boost::lexical_cast(date); + // visit all model periods that are >= the initial tracking date + return date >= tracking_date; +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void CSVFluxPoolVisitor::visit(Core *c) { + run_name = c->getRun_name(); + core = c; + tracking_date = core->getTrackingDate(); +} + +//------------------------------------------------------------------------------ +/*! \brief Print the sources, and associated fractions, of a fluxpool + */ +void CSVFluxPoolVisitor::print_pool(const fluxpool x, const string cname) { + if (x.tracking) { + stringstream output; + // there might already be "diff" output + if (csvBuffer.exists(current_date)) { + output << csvBuffer.get(current_date); + } + vector sources = x.get_sources(); + for (auto &s : sources) { + output << datestring << DELIMITER << cname << DELIMITER << x.name + << DELIMITER << x.value(U_PGC) << DELIMITER << x.unitsName() + << DELIMITER << s << DELIMITER << x.get_fraction(s) << endl; + } + csvBuffer.set(current_date, output.str()); + } +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void CSVFluxPoolVisitor::visit(SimpleNbox *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + + const string cname = c->getComponentName(); + + // The potentially tracked pools + print_pool(c->atmos_c, cname); + print_pool(c->earth_c, cname); + for (auto biome : c->biome_list) { + print_pool(c->veg_c[biome], cname); + print_pool(c->detritus_c[biome], cname); + print_pool(c->soil_c[biome], cname); + print_pool(c->permafrost_c[biome], cname); + print_pool(c->thawed_permafrost_c[biome], cname); + } +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void CSVFluxPoolVisitor::visit(OceanComponent *c) { + if (!core->outputEnabled(c->getComponentName())) + return; + + const string cname = c->getComponentName(); + + print_pool(c->surfaceHL.get_carbon(), cname); + print_pool(c->surfaceLL.get_carbon(), cname); + print_pool(c->inter.get_carbon(), cname); + print_pool(c->deep.get_carbon(), cname); +} + +//------------------------------------------------------------------------------ +/*! \brief Assemble the time series strings into the given tracking output + * stream. \param tracking_out The output stream to write results into. + */ +void CSVFluxPoolVisitor::outputTrackingData(ostream &tracking_out) const { + if (csvBuffer.size()) { + tracking_out << header; // the header (or an empty string) + for (double yr = csvBuffer.firstdate(); yr <= csvBuffer.lastdate(); yr++) { + tracking_out << csvBuffer.get(yr); + } + } +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void CSVFluxPoolVisitor::reset(const double reset_date) { + csvBuffer.truncate(reset_date); +} + +} // namespace Hector diff --git a/src/dependency_finder.cpp b/src/dependency_finder.cpp index 1c158161f..322a6fa69 100644 --- a/src/dependency_finder.cpp +++ b/src/dependency_finder.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,7 +12,7 @@ * */ -//#include +// #include #include #include @@ -27,9 +27,7 @@ using namespace std; /*! * \brief Constructor. */ -DependencyFinder::DependencyFinder() : ordcomputed(false) -{ -} +DependencyFinder::DependencyFinder() : ordcomputed(false) {} /*! * \brief Add a dependency for an object. @@ -39,33 +37,38 @@ DependencyFinder::DependencyFinder() : ordcomputed(false) * \param aDependency name of the item aObjectName is dependent on. * \return Whether the dependency was added to the matrix. */ -bool DependencyFinder::addDependency( const string& aObjectName, - const string& aDependency ){ - // Check if the object is already in the mapping of object name to matrix index. - ObjectIndexMap::iterator objectLocation = mObjectIndices.find( aObjectName ); - if( objectLocation == mObjectIndices.end() ){ - // Update the object location iterator after the item is added. - objectLocation = addTrackedItem( aObjectName ); - } - - // Check if the dependency is already in the mapping. - ObjectIndexMap::iterator dependencyLocation = mObjectIndices.find( aDependency ); - if( dependencyLocation == mObjectIndices.end() ){ - // Update the dependency location iterator after the item is added. - dependencyLocation = addTrackedItem( aDependency ); - } - - // The matrix is now set up correctly, add the dependency. - H_ASSERT( mDependencyMatrix.size() > objectLocation->second, "addDependency failure" ); - H_ASSERT( mDependencyMatrix[ objectLocation->second ].size() > dependencyLocation->second, "addDependency failure" ); - - // Check if the dependency already exists. - if( mDependencyMatrix[ objectLocation->second ][ dependencyLocation->second ] ){ - return false; - } - // Add the dependency and return that it was a new dependency. - mDependencyMatrix[ objectLocation->second ][ dependencyLocation->second ] = true; - return true; +bool DependencyFinder::addDependency(const string &aObjectName, + const string &aDependency) { + // Check if the object is already in the mapping of object name to matrix + // index. + ObjectIndexMap::iterator objectLocation = mObjectIndices.find(aObjectName); + if (objectLocation == mObjectIndices.end()) { + // Update the object location iterator after the item is added. + objectLocation = addTrackedItem(aObjectName); + } + + // Check if the dependency is already in the mapping. + ObjectIndexMap::iterator dependencyLocation = + mObjectIndices.find(aDependency); + if (dependencyLocation == mObjectIndices.end()) { + // Update the dependency location iterator after the item is added. + dependencyLocation = addTrackedItem(aDependency); + } + + // The matrix is now set up correctly, add the dependency. + H_ASSERT(mDependencyMatrix.size() > objectLocation->second, + "addDependency failure"); + H_ASSERT(mDependencyMatrix[objectLocation->second].size() > + dependencyLocation->second, + "addDependency failure"); + + // Check if the dependency already exists. + if (mDependencyMatrix[objectLocation->second][dependencyLocation->second]) { + return false; + } + // Add the dependency and return that it was a new dependency. + mDependencyMatrix[objectLocation->second][dependencyLocation->second] = true; + return true; } /*! @@ -76,68 +79,66 @@ bool DependencyFinder::addDependency( const string& aObjectName, * ordered vector. * * \exception h_exception If there is a cycle in the dependencies. - * \note This function does not destroy the dependecy matrix and so can be called - * multiple times if for instance more dependencies are added and the order - * needs updating. - * \pre All relevant objects must have called addDependency() to add their dependencies to the matrix. - * \sa getOrdering + * \note This function does not destroy the dependecy matrix and so can be + * called multiple times if for instance more dependencies are added and the + * order needs updating. \pre All relevant objects must have called + * addDependency() to add their dependencies to the matrix. \sa getOrdering */ void DependencyFinder::createOrdering() { - // If there is an existing stored ordering, clear it. - mOrdering.clear(); - - // Create a vector which marks the objects that are cleared (not a dependent of - // any non-cleared objects). - vector cleared( mDependencyMatrix.size() ); - - // Search until the ordering contains all objects in the matrix. Or in other words - // until all objects are cleared. - while( mOrdering.size() < mDependencyMatrix.size() ){ - size_t objIndexToClear = numeric_limits::max(); - - // Search for an object that is not yet cleared and is not a dependent of - // any non-cleared object. - for( size_t objIndex = 0; objIndex < mDependencyMatrix.size() && - objIndexToClear == numeric_limits::max(); ++objIndex ) - { - // Only search the object if it has not already been cleared. - if( !cleared[ objIndex ] ){ - // Check for any dependencies. - bool depFound = false; - for( size_t depIndex = 0; depIndex < mDependencyMatrix.size() && !depFound; ++depIndex ) - { - // Check if there is a dependency at this location by and object that has - // not already been cleared. - if( !cleared[ depIndex ] && mDependencyMatrix[ objIndex ][ depIndex ] ){ - // Found a dependency on the current object so we can stop searching - // and move on to the next object. - depFound = true; - } - } - // If we did not find a dependency on the current object so then we can now - // clear it then move on. - if( !depFound ){ - objIndexToClear = objIndex; - } - } + // If there is an existing stored ordering, clear it. + mOrdering.clear(); + + // Create a vector which marks the objects that are cleared (not a dependent + // of any non-cleared objects). + vector cleared(mDependencyMatrix.size()); + + // Search until the ordering contains all objects in the matrix. Or in other + // words until all objects are cleared. + while (mOrdering.size() < mDependencyMatrix.size()) { + size_t objIndexToClear = numeric_limits::max(); + + // Search for an object that is not yet cleared and is not a dependent of + // any non-cleared object. + for (size_t objIndex = 0; objIndex < mDependencyMatrix.size() && + objIndexToClear == numeric_limits::max(); + ++objIndex) { + // Only search the object if it has not already been cleared. + if (!cleared[objIndex]) { + // Check for any dependencies. + bool depFound = false; + for (size_t depIndex = 0; + depIndex < mDependencyMatrix.size() && !depFound; ++depIndex) { + // Check if there is a dependency at this location by and object that + // has not already been cleared. + if (!cleared[depIndex] && mDependencyMatrix[objIndex][depIndex]) { + // Found a dependency on the current object so we can stop searching + // and move on to the next object. + depFound = true; + } } - - // Make sure we found an object to clear. - if( objIndexToClear == numeric_limits::max() ){ - // Since there was no object with no dependencies, this graph has - // a cycle. - H_THROW( "Could not sort dependencies; there is a cycle in the graph." ); - } - else { - // Add the object found to the ordering and set it as cleared. - mOrdering.push_back( getNameFromIndex( objIndexToClear ) ); - cleared[ objIndexToClear ] = true; + // If we did not find a dependency on the current object so then we can + // now clear it then move on. + if (!depFound) { + objIndexToClear = objIndex; } + } + } + + // Make sure we found an object to clear. + if (objIndexToClear == numeric_limits::max()) { + // Since there was no object with no dependencies, this graph has + // a cycle. + H_THROW("Could not sort dependencies; there is a cycle in the graph."); + } else { + // Add the object found to the ordering and set it as cleared. + mOrdering.push_back(getNameFromIndex(objIndexToClear)); + cleared[objIndexToClear] = true; } + } - // Sorting finished, the internal ordering can now be fetched by - // getOrdering. - ordcomputed = true; + // Sorting finished, the internal ordering can now be fetched by + // getOrdering. + ordcomputed = true; } /*! @@ -146,13 +147,13 @@ void DependencyFinder::createOrdering() { * \return The correct object ordering. * \sa createOrdering */ -const vector& DependencyFinder::getOrdering() const { - // Check if the ordering has been initialized. Print an error if it has - // not. - if(!ordcomputed){ - H_THROW("Component ordering has not yet been computed."); - } - return mOrdering; +const vector &DependencyFinder::getOrdering() const { + // Check if the ordering has been initialized. Print an error if it has + // not. + if (!ordcomputed) { + H_THROW("Component ordering has not yet been computed."); + } + return mOrdering; } /*! @@ -160,11 +161,13 @@ const vector& DependencyFinder::getOrdering() const { * \param aObject Object index for which to remove the dependency. * \param aDependency Dependency index to remove. */ -void DependencyFinder::removeDependency( const size_t aObject, const size_t aDependency ){ - // Remove the dependency, or edge. - H_ASSERT( mDependencyMatrix.size() > aObject, "removeDependency failure" ); - H_ASSERT( mDependencyMatrix[ aObject ].size() > aDependency, "removeDependency failure" ); - mDependencyMatrix[ aObject ][ aDependency ] = false; +void DependencyFinder::removeDependency(const size_t aObject, + const size_t aDependency) { + // Remove the dependency, or edge. + H_ASSERT(mDependencyMatrix.size() > aObject, "removeDependency failure"); + H_ASSERT(mDependencyMatrix[aObject].size() > aDependency, + "removeDependency failure"); + mDependencyMatrix[aObject][aDependency] = false; } /*! @@ -173,49 +176,52 @@ void DependencyFinder::removeDependency( const size_t aObject, const size_t aDep * \param aItem Name of the item to track. * \return An iterator to the location of the new item. */ -DependencyFinder::ObjectIndexMap::iterator DependencyFinder::addTrackedItem( const string& aItem ){ - // Add the item to the mapping of item name to index within the matrix. - const size_t newLocation = mDependencyMatrix.size(); - - // Make pair creates a name value pair to insert into the matrix. - pair newPositionPair = mObjectIndices.insert( make_pair( aItem, newLocation ) ); - - // Check the precondition that the item does not already exist. - H_ASSERT( newPositionPair.second, "addTrackedItem failure" ); - - // Now add the item to the dependency matrix. Loop through the matrix and - // add a new position on the end of each row. - for( unsigned int row = 0; row < mDependencyMatrix.size(); ++row ){ - mDependencyMatrix[ row ].push_back( false ); - } - - // Add a new row to the matrix for the item. Default to not having any - // dependencies. - mDependencyMatrix.push_back( vector( newLocation + 1, false ) ); - - // Return an iterator to the position within the index map. - return newPositionPair.first; +DependencyFinder::ObjectIndexMap::iterator +DependencyFinder::addTrackedItem(const string &aItem) { + // Add the item to the mapping of item name to index within the matrix. + const size_t newLocation = mDependencyMatrix.size(); + + // Make pair creates a name value pair to insert into the matrix. + pair newPositionPair = + mObjectIndices.insert(make_pair(aItem, newLocation)); + + // Check the precondition that the item does not already exist. + H_ASSERT(newPositionPair.second, "addTrackedItem failure"); + + // Now add the item to the dependency matrix. Loop through the matrix and + // add a new position on the end of each row. + for (unsigned int row = 0; row < mDependencyMatrix.size(); ++row) { + mDependencyMatrix[row].push_back(false); + } + + // Add a new row to the matrix for the item. Default to not having any + // dependencies. + mDependencyMatrix.push_back(vector(newLocation + 1, false)); + + // Return an iterator to the position within the index map. + return newPositionPair.first; } /*! * \brief Get the name of an object from the matrix index. - * \param A matrix index to fetch the name for. - * \note This function is slow as it performs a reverse map lookup and should not - be used in sections of code which are called frequently. - * \return The name of the item associated with the index, NO_NAME if it is not + * \param aIndex A matrix index to fetch the name for. + * \note This function is slow as it performs a reverse map lookup and should + not be used in sections of code which are called frequently. + * \return The name of the item associated with the index; NO_NAME if it is not found. */ -const string& DependencyFinder::getNameFromIndex( const size_t aIndex ) const { - // Search the map linearly as this is the reverse lookup. - for( ObjectIndexMap::const_iterator item = mObjectIndices.begin(); item != mObjectIndices.end(); ++item ){ - // Check if we found the index we are searching for. - if( item->second == aIndex ){ - return item->first; - } +const string &DependencyFinder::getNameFromIndex(const size_t aIndex) const { + // Search the map linearly as this is the reverse lookup. + for (ObjectIndexMap::const_iterator item = mObjectIndices.begin(); + item != mObjectIndices.end(); ++item) { + // Check if we found the index we are searching for. + if (item->second == aIndex) { + return item->first; } - // The index does not exist. - const static string& NO_NAME = "NO_NAME"; - return NO_NAME; + } + // The index does not exist. + const static string &NO_NAME = "NO_NAME"; + return NO_NAME; } -} +} // namespace Hector diff --git a/src/dummy_model_component.cpp b/src/dummy_model_component.cpp index 9b8970f66..142e07d16 100644 --- a/src/dummy_model_component.cpp +++ b/src/dummy_model_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -13,9 +13,9 @@ */ #include "dummy_model_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "h_util.hpp" -#include "avisitor.hpp" namespace Hector { @@ -24,160 +24,150 @@ using namespace std; //------------------------------------------------------------------------------ /*! \brief Constructor */ -DummyModelComponent::DummyModelComponent(): -slope( -1 ), -prevX( -1 ), -y( -1 ), -c() -{ - c.allowInterp( true ); +DummyModelComponent::DummyModelComponent() : slope(-1), prevX(-1), y(-1), c() { + c.allowInterp(true); } //------------------------------------------------------------------------------ /*! \brief Destructor */ -DummyModelComponent::~DummyModelComponent() { -} +DummyModelComponent::~DummyModelComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string DummyModelComponent::getComponentName() const { - const string name = DUMMY_COMPONENT_NAME; + const string name = DUMMY_COMPONENT_NAME; - return name; + return name; } //------------------------------------------------------------------------------ /*! \brief Gets the current y. * \return The current y that has been calculated. */ -double DummyModelComponent::getY() const { - return y; -} +double DummyModelComponent::getY() const { return y; } //------------------------------------------------------------------------------ /*! \brief Gets a reference to c. Used for testing * \return c. */ -const tseries& DummyModelComponent::getC() const { - return c; -} +const tseries &DummyModelComponent::getC() const { return c; } //------------------------------------------------------------------------------ // documentation is inherited -void DummyModelComponent::init( Core* core ) { - logger.open( getComponentName(), false, core->getGlobalLogger().getEchoToFile(), core->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; +void DummyModelComponent::init(Core *core) { + logger.open(getComponentName(), false, + core->getGlobalLogger().getEchoToFile(), + core->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; } //------------------------------------------------------------------------------ // documentation is inherited -unitval DummyModelComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - //TODO: call setData below - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval DummyModelComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + // TODO: call setData below + + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } - return returnval; + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void DummyModelComponent::setData( const string& varName, - const message_data& data ) -{ - try { - if( varName == H_STRINGIFY_VAR( slope ) ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - slope = data.getUnitval(U_UNDEFINED);; - } else if( varName == H_STRINGIFY_VAR( y ) ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - y = data.getUnitval(U_UNDEFINED);; - } else if( varName == H_STRINGIFY_VAR( c ) ) { - c.set( data.date, data.getUnitval(U_UNDEFINED) ); - } else { - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void DummyModelComponent::setData(const string &varName, + const message_data &data) { + try { + if (varName == H_STRINGIFY_VAR(slope)) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + slope = data.getUnitval(U_UNDEFINED); + ; + } else if (varName == H_STRINGIFY_VAR(y)) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + y = data.getUnitval(U_UNDEFINED); + ; + } else if (varName == H_STRINGIFY_VAR(c)) { + c.set(data.date, data.getUnitval(U_UNDEFINED)); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited void DummyModelComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; - // do some error checking - H_ASSERT( slope != -1, "" ); - H_ASSERT( y != -1, "" ); - H_ASSERT( c.size() > 0, "" ); - // prevX = coreptr->getStartDate(); + // do some error checking + H_ASSERT(slope != -1, ""); + H_ASSERT(y != -1, ""); + H_ASSERT(c.size() > 0, ""); + // prevX = coreptr->getStartDate(); } //------------------------------------------------------------------------------ // documentation is inherited -void DummyModelComponent::run( const double runToDate ) { - // for some reason we need to calculate at a time-step of .1 - const double timeStep = 0.1; - // make sure we can take at least 1 time-step. - H_ASSERT( ( runToDate - prevX ) > timeStep, "time step error" ); - - for( ; prevX <= runToDate; prevX += timeStep ) { - y = slope * timeStep + y + c.get( prevX ) - c.get( prevX - timeStep ); - H_LOG( logger, Logger::DEBUG ) << "Y = " << y << " at x " << prevX << std::endl; - } +void DummyModelComponent::run(const double runToDate) { + // for some reason we need to calculate at a time-step of .1 + const double timeStep = 0.1; + // make sure we can take at least 1 time-step. + H_ASSERT((runToDate - prevX) > timeStep, "time step error"); + + for (; prevX <= runToDate; prevX += timeStep) { + y = slope * timeStep + y + c.get(prevX) - c.get(prevX - timeStep); + H_LOG(logger, Logger::DEBUG) + << "Y = " << y << " at x " << prevX << std::endl; + } } //------------------------------------------------------------------------------ // documentation is inherited -unitval DummyModelComponent::getData( const std::string& varName, - const double date ) { +unitval DummyModelComponent::getData(const std::string &varName, + const double date) { - unitval returnval; + unitval returnval; - if( varName == H_STRINGIFY_VAR( x ) ) { - H_ASSERT( date == Core::undefinedIndex(), "Date not allowed for x" ); - returnval.set( y, U_UNITLESS ); - } else { - H_THROW( "Caller is requesting unknown variable: " + varName ); - } + if (varName == H_STRINGIFY_VAR(x)) { + H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for x"); + returnval.set(y, U_UNITLESS); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } - return returnval; + return returnval; } -void DummyModelComponent::reset(double time) -{ - // This is a no-op for this component - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; +//------------------------------------------------------------------------------ +// documentation is inherited +void DummyModelComponent::reset(double time) { + // This is a no-op for this component + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } //------------------------------------------------------------------------------ // documentation is inherited void DummyModelComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void DummyModelComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void DummyModelComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/forcing_component.cpp b/src/forcing_component.cpp index 8771a58ab..203a805e4 100644 --- a/src/forcing_component.cpp +++ b/src/forcing_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,14 +12,25 @@ * */ +/* References: + + Meinshausen et al. (2011): Meinshausen, M., Raper, S. C. B., and Wigley, T. M. + L.: Emulating coupled atmosphere-ocean and carbon cycle models with a simpler + model, MAGICC6 – Part 1: Model description and calibration, Atmos. Chem. Phys., + 11, 1417–1456, https://doi.org/10.5194/acp-11-1417-2011, 2011. + + */ + // some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: array.hpp still generates one warning #pragma clang diagnostic push #pragma clang diagnostic ignored "-Weverything" #include #pragma clang diagnostic pop +#include -#include "forcing_component.hpp" #include "avisitor.hpp" +#include "forcing_component.hpp" namespace Hector { @@ -43,62 +54,22 @@ namespace Hector { */ const char *ForcingComponent::adjusted_halo_forcings[N_HALO_FORCINGS] = { - D_RFADJ_CF4, - D_RFADJ_C2F6, - D_RFADJ_HFC23, - D_RFADJ_HFC32, - D_RFADJ_HFC4310, - D_RFADJ_HFC125, - D_RFADJ_HFC134a, - D_RFADJ_HFC143a, - D_RFADJ_HFC227ea, - D_RFADJ_HFC245fa, - D_RFADJ_SF6, - D_RFADJ_CFC11, - D_RFADJ_CFC12, - D_RFADJ_CFC113, - D_RFADJ_CFC114, - D_RFADJ_CFC115, - D_RFADJ_CCl4, - D_RFADJ_CH3CCl3, - D_RFADJ_HCFC22, - D_RFADJ_HCFC141b, - D_RFADJ_HCFC142b, - D_RFADJ_halon1211, - D_RFADJ_halon1301, - D_RFADJ_halon2402, - D_RFADJ_CH3Cl, - D_RFADJ_CH3Br -}; + D_RFADJ_CF4, D_RFADJ_C2F6, D_RFADJ_HFC23, D_RFADJ_HFC32, + D_RFADJ_HFC4310, D_RFADJ_HFC125, D_RFADJ_HFC134a, D_RFADJ_HFC143a, + D_RFADJ_HFC227ea, D_RFADJ_HFC245fa, D_RFADJ_SF6, D_RFADJ_CFC11, + D_RFADJ_CFC12, D_RFADJ_CFC113, D_RFADJ_CFC114, D_RFADJ_CFC115, + D_RFADJ_CCl4, D_RFADJ_CH3CCl3, D_RFADJ_HCFC22, D_RFADJ_HCFC141b, + D_RFADJ_HCFC142b, D_RFADJ_halon1211, D_RFADJ_halon1301, D_RFADJ_halon2402, + D_RFADJ_CH3Cl, D_RFADJ_CH3Br}; const char *ForcingComponent::halo_forcing_names[N_HALO_FORCINGS] = { - D_RF_CF4, - D_RF_C2F6, - D_RF_HFC23, - D_RF_HFC32, - D_RF_HFC4310, - D_RF_HFC125, - D_RF_HFC134a, - D_RF_HFC143a, - D_RF_HFC227ea, - D_RF_HFC245fa, - D_RF_SF6, - D_RF_CFC11, - D_RF_CFC12, - D_RF_CFC113, - D_RF_CFC114, - D_RF_CFC115, - D_RF_CCl4, - D_RF_CH3CCl3, - D_RF_HCFC22, - D_RF_HCFC141b, - D_RF_HCFC142b, - D_RF_halon1211, - D_RF_halon1301, - D_RF_halon2402, - D_RF_CH3Cl, - D_RF_CH3Br -}; + D_RF_CF4, D_RF_C2F6, D_RF_HFC23, D_RF_HFC32, + D_RF_HFC4310, D_RF_HFC125, D_RF_HFC134a, D_RF_HFC143a, + D_RF_HFC227ea, D_RF_HFC245fa, D_RF_SF6, D_RF_CFC11, + D_RF_CFC12, D_RF_CFC113, D_RF_CFC114, D_RF_CFC115, + D_RF_CCl4, D_RF_CH3CCl3, D_RF_HCFC22, D_RF_HCFC141b, + D_RF_HCFC142b, D_RF_halon1211, D_RF_halon1301, D_RF_halon2402, + D_RF_CH3Cl, D_RF_CH3Br}; std::map ForcingComponent::forcing_name_map; @@ -108,432 +79,521 @@ using namespace std; /*! \brief Constructor */ ForcingComponent::ForcingComponent() { + Fmisc_ts.allowInterp(true); + Fmisc_ts.name = D_RF_MISC; } //------------------------------------------------------------------------------ /*! \brief Destructor */ -ForcingComponent::~ForcingComponent() { -} +ForcingComponent::~ForcingComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string ForcingComponent::getComponentName() const { - const string name = FORCING_COMPONENT_NAME; - return name; + const string name = FORCING_COMPONENT_NAME; + return name; } //------------------------------------------------------------------------------ // documentation is inherited -void ForcingComponent::init( Core* coreptr ) { - - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; - - core = coreptr; - - baseyear = 0.0; - currentYear = 0.0; - - Ftot_constrain.allowInterp( true ); - Ftot_constrain.name = D_RF_TOTAL; - - // Register the data we can provide - core->registerCapability( D_RF_TOTAL, getComponentName() ); - core->registerCapability( D_RF_BASEYEAR, getComponentName() ); - core->registerCapability( D_RF_CO2, getComponentName()); - core->registerCapability( D_RF_CH4, getComponentName()); - core->registerCapability( D_RF_N2O, getComponentName()); - core->registerCapability( D_RF_H2O_STRAT, getComponentName()); - core->registerCapability( D_RF_O3_TROP, getComponentName()); - core->registerCapability( D_RF_BC, getComponentName()); - core->registerCapability( D_RF_OC, getComponentName()); - core->registerCapability( D_RF_SO2d, getComponentName()); - core->registerCapability( D_RF_SO2i, getComponentName()); - core->registerCapability( D_RF_SO2, getComponentName()); - core->registerCapability( D_RF_VOL, getComponentName()); - for(int i=0; iregisterCapability(adjusted_halo_forcings[i], getComponentName()); - forcing_name_map[adjusted_halo_forcings[i]] = halo_forcing_names[i]; - } - - // Register our dependencies - - core->registerDependency( D_ATMOSPHERIC_CH4, getComponentName() ); - core->registerDependency( D_ATMOSPHERIC_CO2, getComponentName() ); - core->registerDependency( D_ATMOSPHERIC_O3, getComponentName() ); - core->registerDependency( D_EMISSIONS_BC, getComponentName() ); - core->registerDependency( D_EMISSIONS_OC, getComponentName() ); - core->registerDependency( D_NATURAL_SO2, getComponentName() ); - core->registerDependency( D_ATMOSPHERIC_N2O, getComponentName() ); - - core->registerDependency( D_RF_CF4, getComponentName() ); - core->registerDependency( D_RF_C2F6, getComponentName() ); - core->registerDependency( D_RF_HFC23, getComponentName() ); - core->registerDependency( D_RF_HFC32, getComponentName() ); - core->registerDependency( D_RF_HFC4310, getComponentName() ); - core->registerDependency( D_RF_HFC125, getComponentName() ); - core->registerDependency( D_RF_HFC134a, getComponentName() ); - core->registerDependency( D_RF_HFC143a, getComponentName() ); - core->registerDependency( D_RF_HFC227ea, getComponentName() ); - core->registerDependency( D_RF_HFC245fa, getComponentName() ); - core->registerDependency( D_RF_SF6, getComponentName() ); - core->registerDependency( D_RF_CFC11, getComponentName() ); - core->registerDependency( D_RF_CFC12, getComponentName() ); - core->registerDependency( D_RF_CFC113, getComponentName() ); - core->registerDependency( D_RF_CFC114, getComponentName() ); - core->registerDependency( D_RF_CFC115, getComponentName() ); - core->registerDependency( D_RF_CCl4, getComponentName() ); - core->registerDependency( D_RF_CH3CCl3, getComponentName() ); - core->registerDependency( D_RF_HCFC22, getComponentName() ); - core->registerDependency( D_RF_HCFC141b, getComponentName() ); - core->registerDependency( D_RF_HCFC142b, getComponentName() ); - core->registerDependency( D_RF_halon1211, getComponentName() ); - core->registerDependency( D_RF_halon1301, getComponentName() ); - core->registerDependency( D_RF_halon2402, getComponentName() ); - core->registerDependency( D_RF_CH3Br, getComponentName() ); - core->registerDependency( D_RF_CH3Cl, getComponentName() ); - core->registerDependency( D_RF_T_ALBEDO, getComponentName() ); +void ForcingComponent::init(Core *coreptr) { + + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + + core = coreptr; + + baseyear = 0.0; + currentYear = 0.0; + + Ftot_constrain.allowInterp(true); + Ftot_constrain.name = D_RF_TOTAL; + + // Register the data we can provide + core->registerCapability(D_RF_TOTAL, getComponentName()); + core->registerCapability(D_RF_BASEYEAR, getComponentName()); + core->registerCapability(D_RF_CO2, getComponentName()); + core->registerCapability(D_RF_CH4, getComponentName()); + core->registerCapability(D_RF_N2O, getComponentName()); + core->registerCapability(D_RF_H2O_STRAT, getComponentName()); + core->registerCapability(D_RF_O3_TROP, getComponentName()); + core->registerCapability(D_RF_BC, getComponentName()); + core->registerCapability(D_RF_OC, getComponentName()); + core->registerCapability(D_RF_NH3, getComponentName()); + core->registerCapability(D_RF_VOL, getComponentName()); + core->registerCapability(D_DELTA_CH4, getComponentName()); + core->registerCapability(D_DELTA_N2O, getComponentName()); + core->registerCapability(D_DELTA_CO2, getComponentName()); + core->registerCapability(D_RHO_BC, getComponentName()); + core->registerCapability(D_RHO_OC, getComponentName()); + core->registerCapability(D_RHO_SO2, getComponentName()); + core->registerCapability(D_RF_SO2, getComponentName()); + core->registerCapability(D_RF_ACI, getComponentName()); + for (int i = 0; i < N_HALO_FORCINGS; ++i) { + core->registerCapability(adjusted_halo_forcings[i], getComponentName()); + forcing_name_map[adjusted_halo_forcings[i]] = halo_forcing_names[i]; + } + + // Register our dependencies + core->registerDependency(D_CH4_CONC, getComponentName()); + core->registerDependency(D_CO2_CONC, getComponentName()); + core->registerDependency(D_ATMOSPHERIC_O3, getComponentName()); + core->registerDependency(D_EMISSIONS_BC, getComponentName()); + core->registerDependency(D_EMISSIONS_OC, getComponentName()); + core->registerDependency(D_EMISSIONS_NH3, getComponentName()); + core->registerDependency(D_N2O_CONC, getComponentName()); + core->registerDependency(D_RF_CF4, getComponentName()); + core->registerDependency(D_RF_C2F6, getComponentName()); + core->registerDependency(D_RF_HFC23, getComponentName()); + core->registerDependency(D_RF_HFC32, getComponentName()); + core->registerDependency(D_RF_HFC4310, getComponentName()); + core->registerDependency(D_RF_HFC125, getComponentName()); + core->registerDependency(D_RF_HFC134a, getComponentName()); + core->registerDependency(D_RF_HFC143a, getComponentName()); + core->registerDependency(D_RF_HFC227ea, getComponentName()); + core->registerDependency(D_RF_HFC245fa, getComponentName()); + core->registerDependency(D_RF_SF6, getComponentName()); + core->registerDependency(D_RF_CFC11, getComponentName()); + core->registerDependency(D_RF_CFC12, getComponentName()); + core->registerDependency(D_RF_CFC113, getComponentName()); + core->registerDependency(D_RF_CFC114, getComponentName()); + core->registerDependency(D_RF_CFC115, getComponentName()); + core->registerDependency(D_RF_CCl4, getComponentName()); + core->registerDependency(D_RF_CH3CCl3, getComponentName()); + core->registerDependency(D_RF_HCFC22, getComponentName()); + core->registerDependency(D_RF_HCFC141b, getComponentName()); + core->registerDependency(D_RF_HCFC142b, getComponentName()); + core->registerDependency(D_RF_halon1211, getComponentName()); + core->registerDependency(D_RF_halon1301, getComponentName()); + core->registerDependency(D_RF_halon2402, getComponentName()); + core->registerDependency(D_RF_CH3Br, getComponentName()); + core->registerDependency(D_RF_CH3Cl, getComponentName()); + core->registerDependency(D_RF_T_ALBEDO, getComponentName()); + + // Register the inputs we can receive from outside + core->registerInput(D_DELTA_CH4, getComponentName()); + core->registerInput(D_DELTA_N2O, getComponentName()); + core->registerInput(D_DELTA_CO2, getComponentName()); + core->registerInput(D_RHO_BC, getComponentName()); + core->registerInput(D_RHO_OC, getComponentName()); + core->registerInput(D_RHO_SO2, getComponentName()); + core->registerInput(D_RHO_NH3, getComponentName()); + core->registerInput(D_RF_MISC, getComponentName()); + core->registerInput(D_FTOT_CONSTRAIN, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval ForcingComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - //TODO: call setData below - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval ForcingComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); - return returnval; + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); + + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void ForcingComponent::setData( const string& varName, - const message_data& data ) -{ - H_LOG( logger, Logger::DEBUG ) << "Setting " << varName << "[" << data.date << "]=" << data.value_str << std::endl; - - try { - if( varName == D_RF_BASEYEAR ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - baseyear = data.getUnitval(U_UNDEFINED); - } else if( varName == D_FTOT_CONSTRAIN ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - Ftot_constrain.set(data.date, data.getUnitval(U_W_M2)); - } else { - H_LOG( logger, Logger::DEBUG ) << "Unknown variable " << varName << std::endl; - H_THROW( "Unknown variable name while parsing "+ getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void ForcingComponent::setData(const string &varName, + const message_data &data) { + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; + + try { + if (varName == D_RF_BASEYEAR) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + baseyear = data.getUnitval(U_UNDEFINED); + } else if (varName == D_DELTA_CH4) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + delta_ch4 = data.getUnitval(U_UNITLESS); + } else if (varName == D_DELTA_N2O) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + delta_n2o = data.getUnitval(U_UNITLESS); + } else if (varName == D_DELTA_CO2) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + delta_co2 = data.getUnitval(U_UNITLESS); + } else if (varName == D_RHO_BC) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + rho_bc = data.getUnitval(U_W_M2_TG); + } else if (varName == D_RHO_OC) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + rho_oc = data.getUnitval(U_W_M2_TG); + } else if (varName == D_RHO_NH3) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + rho_nh3 = data.getUnitval(U_W_M2_TG); + } else if (varName == D_RHO_SO2) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + rho_so2 = data.getUnitval(U_W_M2_GG); + } else if (varName == D_FTOT_CONSTRAIN) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + Ftot_constrain.set(data.date, data.getUnitval(U_W_M2)); + } else if (varName == D_RF_MISC) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + Fmisc_ts.set(data.date, data.getUnitval(U_W_M2)); + } else { + H_LOG(logger, Logger::DEBUG) + << "Unknown variable " << varName << std::endl; + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited void ForcingComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; - if( baseyear==0.0 ) - baseyear = core->getStartDate() + 1; // default, if not supplied by user - H_LOG( logger, Logger::DEBUG ) << "Base year for reporting is " << baseyear << std::endl; + if (baseyear == 0.0) + baseyear = core->getStartDate() + 1; // default, if not supplied by user + H_LOG(logger, Logger::DEBUG) + << "Base year for reporting is " << baseyear << std::endl; - H_ASSERT( baseyear > core->getStartDate(), "Base year must be >= model start date" ); + H_ASSERT(baseyear > core->getStartDate(), + "Base year must be >= model start date"); - if( Ftot_constrain.size() ) { - Logger& glog = core->getGlobalLogger(); - H_LOG( glog, Logger::WARNING ) << "Total forcing will be overwritten by user-supplied values!" << std::endl; - } + if (Ftot_constrain.size()) { + Logger &glog = core->getGlobalLogger(); + H_LOG(glog, Logger::WARNING) + << "Total forcing will be overwritten by user-supplied values!" + << std::endl; + } + + // delta parameters must be between -1 and 1 + H_ASSERT(delta_ch4 >= -1 && delta_ch4 <= 1, "bad delta CH4 value"); + H_ASSERT(delta_n2o >= -1 && delta_n2o <= 1, "bad delta N2O value"); + H_ASSERT(delta_co2 >= -1 && delta_co2 <= 1, "bad delta CO2 value"); - baseyear_forcings.clear(); + baseyear_forcings.clear(); } //------------------------------------------------------------------------------ // documentation is inherited -void ForcingComponent::run( const double runToDate ) { +void ForcingComponent::run(const double runToDate) { + + // Calculate instantaneous radiative forcing for any & all agents + // As each is computed, push it into 'forcings' map for Ftot calculation. + // Note that forcings have to be mutually exclusive, there are no subtotals + // for different species. + H_LOG(logger, Logger::DEBUG) << "-----------------------------" << std::endl; + currentYear = runToDate; + + if (runToDate < baseyear) { + H_LOG(logger, Logger::DEBUG) << "not yet at baseyear" << std::endl; + } else { + forcings_t forcings; + + // ---------- Major GHGs ---------- + if (core->checkCapability(D_CH4_CONC) && + core->checkCapability(D_N2O_CONC) && + core->checkCapability(D_CO2_CONC)) { + + // Parse our the pre industrial and concentrations to use in RF + // calculations + double C0 = + core->sendMessage(M_GETDATA, D_PREINDUSTRIAL_CO2).value(U_PPMV_CO2); + double M0 = + core->sendMessage(M_GETDATA, D_PREINDUSTRIAL_CH4).value(U_PPBV_CH4); + double N0 = + core->sendMessage(M_GETDATA, D_PREINDUSTRIAL_N2O).value(U_PPBV_N2O); + double CO2_conc = + core->sendMessage(M_GETDATA, D_CO2_CONC, message_data(runToDate)) + .value(U_PPMV_CO2); + double Ma = + core->sendMessage(M_GETDATA, D_CH4_CONC, message_data(runToDate)) + .value(U_PPBV_CH4); + double Na = + core->sendMessage(M_GETDATA, D_N2O_CONC, message_data(runToDate)) + .value(U_PPBV_N2O); + + // ---------- CO2 ---------- + // CO2 SARF is calculated using simplified expressions from IPCC + // AR6 listed in Table 7.SM.1. Then the SARF is adjusted by a scalar + // value to account for tropospheric interactions see + // Note that this simplified expression for radiative forcing was + // calibrated with a preindustrial N20 value of 277.15 ppm. + double C_alpha_max = C0 - (b1 / (2 * a1)); + double n2o_alpha = c1 * sqrt(Na); + double alpha_prime; + if (CO2_conc > C_alpha_max) { + alpha_prime = d1 - (pow(b1, 2) / (4 * a1)); + } else if (C0 < CO2_conc && CO2_conc < C_alpha_max) { + alpha_prime = d1 + a1 * pow((CO2_conc - C0), 2) + b1 * (CO2_conc - C0); + } else if (CO2_conc <= C0) { + alpha_prime = d1; + } else { + H_THROW("Caller is requesting unknown condition for CO2 SARF "); + } + double sarf_co2 = (alpha_prime + n2o_alpha) * log(CO2_conc / C0); + double fco2 = (sarf_co2 * delta_co2) + sarf_co2; + forcings[D_RF_CO2].set(fco2, U_W_M2); + + // ---------- N2O ---------- + // N2O SARF is calculated using simplified expressions from IPCC + // AR6 listed in Table 7.SM.1. Then the SARF is adjusted by a scalar + // value to account for tropospheric interactions see 7.3.2.3. + // Note that this simplified expression for radiative forcing was + // calibrated with a preindustrial N20 value of 273.87 ppb. + double sarf_n2o = + (a2 * sqrt(CO2_conc) + b2 * sqrt(Na) + c2 * sqrt(Ma) + d2) * + (sqrt(Na) - sqrt(N0)); + double fn2o = (delta_n2o * sarf_n2o) + sarf_n2o; + forcings[D_RF_N2O].set(fn2o, U_W_M2); + + // ---------- CH4 ---------- + // CH4 SARF is calculated using simplified expressions from IPCC + // AR6 listed in Table 7.SM.1. Then the SARF is adjusted by a scalar + // value to account for tropospheric interactions. + double sarf_ch4 = + (a3 * sqrt(Ma) + b3 * sqrt(Na) + d3) * (sqrt(Ma) - sqrt(M0)); + double fch4 = (delta_ch4 * sarf_ch4) + sarf_ch4; + forcings[D_RF_CH4].set(fch4, U_W_M2); + + // ---------- Stratospheric H2O based on CH4 oxidation ---------- + // The stratospheric water vapour RF based on changes in CH4 + // concentrations. + const double Ma_base = + 1831; // 2014 CH4 concentration ppb from the cmip6 historical scenario + const double stratH2O_base = + 0.0485; // W m-2 Strat H2O RF (1850 to 2014) from 7.3.2.6 IPCC AR6 + const double fh2o_strat = stratH2O_base * ((Ma - M0) / (Ma_base - M0)); // + forcings[D_RF_H2O_STRAT].set(fh2o_strat, U_W_M2); + } - // Calculate instantaneous radiative forcing for any & all agents - // As each is computed, push it into 'forcings' map for Ftot calculation. - // Note that forcings have to be mutually exclusive, there are no subtotals for different species. - H_LOG( logger, Logger::DEBUG ) << "-----------------------------" << std::endl; - currentYear = runToDate; + // ---------- Troposheric Ozone ---------- + if (core->checkCapability(D_ATMOSPHERIC_O3)) { + // from Tanaka et al, 2007 + const double ozone = core->sendMessage(M_GETDATA, D_ATMOSPHERIC_O3, + message_data(runToDate)) + .value(U_DU_O3); + const double fo3_trop = 0.042 * ozone; + forcings[D_RF_O3_TROP].set(fo3_trop, U_W_M2); + } - if( runToDate < baseyear ) { - H_LOG( logger, Logger::DEBUG ) << "not yet at baseyear" << std::endl; - } else { - forcings_t forcings; - - // ---------- CO2 ---------- - // Instantaneous radiative forcings for CO2, CH4, and N2O from http://www.esrl.noaa.gov/gmd/aggi/ - // These are in turn from IPCC (2001) - - // This is identical to that of MAGICC; see Meinshausen et al. (2011) - unitval Ca = core->sendMessage( M_GETDATA, D_ATMOSPHERIC_CO2 ); - if( runToDate==baseyear ) - C0 = Ca; - forcings[D_RF_CO2 ].set( 5.35 * log( Ca/C0 ), U_W_M2 ); - - // ---------- Terrestrial albedo ---------- - if( core->checkCapability( D_RF_T_ALBEDO ) ) { - forcings[ D_RF_T_ALBEDO ] = core->sendMessage( M_GETDATA, D_RF_T_ALBEDO, message_data( runToDate ) ); - } - - // ---------- N2O and CH4 ---------- - // Equations from Joos et al., 2001 - if( core->checkCapability( D_ATMOSPHERIC_CH4 ) && core->checkCapability( D_ATMOSPHERIC_N2O ) ) { - -#define f(M,N) 0.47 * log( 1 + 2.01 * 1e-5 * pow( M * N, 0.75 ) + 5.31 * 1e-15 * M * pow( M * N, 1.52 ) ) - double Ma = core->sendMessage( M_GETDATA, D_ATMOSPHERIC_CH4, message_data( runToDate ) ).value( U_PPBV_CH4 ); - double M0 = core->sendMessage( M_GETDATA, D_PREINDUSTRIAL_CH4 ).value( U_PPBV_CH4 ); - double Na = core->sendMessage( M_GETDATA, D_ATMOSPHERIC_N2O, message_data( runToDate ) ).value( U_PPBV_N2O ); - double N0 = core->sendMessage( M_GETDATA, D_PREINDUSTRIAL_N2O ).value( U_PPBV_N2O ); - - double fch4 = 0.036 * ( sqrt( Ma ) - sqrt( M0 ) ) - ( f( Ma, N0 ) - f( M0, N0 ) ); - forcings[D_RF_CH4].set( fch4, U_W_M2 ); - - double fn2o = 0.12 * ( sqrt( Na ) - sqrt( N0 ) ) - ( f( M0, Na ) - f( M0, N0 ) ); - forcings[D_RF_N2O].set( fn2o, U_W_M2 ); - - // ---------- Stratospheric H2O from CH4 oxidation ---------- - // From Tanaka et al, 2007, but using Joos et al., 2001 value of 0.05 - const double fh2o = 0.05 * ( 0.036 * ( sqrt( Ma ) - sqrt( M0 ) ) ); - forcings[D_RF_H2O_STRAT].set( fh2o, U_W_M2 ); - } - - // ---------- Troposheric Ozone ---------- - if( core->checkCapability( D_ATMOSPHERIC_O3 ) ) { - //from Tanaka et al, 2007 - const double ozone = core->sendMessage( M_GETDATA, D_ATMOSPHERIC_O3, message_data( runToDate ) ).value( U_DU_O3 ); - const double fo3 = 0.042 * ozone; - forcings[D_RF_O3_TROP].set( fo3, U_W_M2 ); - } - - // ---------- Halocarbons ---------- - // TODO: Would like to just 'know' all the halocarbon instances out there - boost::array halos = { - { - D_RF_CF4, - D_RF_C2F6, - D_RF_HFC23, - D_RF_HFC32, - D_RF_HFC4310, - D_RF_HFC125, - D_RF_HFC134a, - D_RF_HFC143a, - D_RF_HFC227ea, - D_RF_HFC245fa, - D_RF_SF6, - D_RF_CFC11, - D_RF_CFC12, - D_RF_CFC113, - D_RF_CFC114, - D_RF_CFC115, - D_RF_CCl4, - D_RF_CH3CCl3, - D_RF_HCFC22, - D_RF_HCFC141b, - D_RF_HCFC142b, - D_RF_halon1211, - D_RF_halon1301, - D_RF_halon2402, - D_RF_CH3Cl, - D_RF_CH3Br - } - }; - - // Halocarbons can be disabled individually via the input file, so we run through all possible ones - for (unsigned hc=0; hccheckCapability( halos[hc] ) ) { - // Forcing values are actually computed by the halocarbon itself - forcings[ halos[hc] ] = core->sendMessage( M_GETDATA, halos[hc], message_data( runToDate ) ); - } - } - - // ---------- Black carbon ---------- - if( core->checkCapability( D_EMISSIONS_BC ) ) { - double fbc = 0.0743 * core->sendMessage( M_GETDATA, D_EMISSIONS_BC, message_data( runToDate ) ).value( U_TG ); - forcings[D_RF_BC].set( fbc, U_W_M2 ); - // includes both indirect and direct forcings from Bond et al 2013, Journal of Geophysical Research Atmo (table C1 - Central) - } - - // ---------- Organic carbon ---------- - if( core->checkCapability( D_EMISSIONS_OC ) ) { - double foc = -0.0128 * core->sendMessage( M_GETDATA, D_EMISSIONS_OC, message_data( runToDate ) ).value( U_TG ); - forcings[D_RF_OC].set( foc, U_W_M2 ); - // includes both indirect and direct forcings from Bond et al 2013, Journal of Geophysical Research Atmo (table C1 - Central). - // The fossil fuel and biomass are weighted (-4.5) then added to the snow and clouds for a total of -12.8 (personal communication Steve Smith, PNNL) - } - - // ---------- Sulphate Aerosols ---------- - if( core->checkCapability( D_NATURAL_SO2 ) && core->checkCapability( D_EMISSIONS_SO2 ) ) { - - unitval S0 = core->sendMessage( M_GETDATA, D_2000_SO2 ); - unitval SN = core->sendMessage( M_GETDATA, D_NATURAL_SO2 ); - - // Includes only direct forcings from Forster et al 2007 (IPCC) - // Equations from Joos et al., 2001 - H_ASSERT( S0.value( U_GG_S ) >0, "S0 is 0" ); - unitval emission = core->sendMessage( M_GETDATA, D_EMISSIONS_SO2, message_data( runToDate ) ); - double fso2d = -0.35 * emission/S0; - forcings[D_RF_SO2d].set( fso2d, U_W_M2 ); - // includes only direct forcings from Forster etal 2007 (IPCC) - - // Indirect aerosol effect via changes in cloud properties - const double a = -0.6 * ( log( ( SN.value( U_GG_S ) + emission.value( U_GG_S ) ) / SN.value( U_GG_S ) ) ); // -.6 - const double b = pow ( log ( ( SN.value( U_GG_S ) + S0.value( U_GG_S ) ) / SN.value( U_GG_S ) ), -1 ); - double fso2i = a * b; - forcings[D_RF_SO2i].set( fso2i, U_W_M2 ); - } - - if( core->checkCapability( D_VOLCANIC_SO2 ) ) { - // Volcanic forcings - forcings[D_RF_VOL] = core->sendMessage( M_GETDATA, D_VOLCANIC_SO2, message_data( runToDate ) ); - } - - // ---------- Total ---------- - unitval Ftot( 0.0, U_W_M2 ); // W/m2 - for( forcingsIterator it = forcings.begin(); it != forcings.end(); ++it ) { - Ftot = Ftot + ( *it ).second; - H_LOG( logger, Logger::DEBUG ) << "forcing " << ( *it).first << " in " << runToDate << " is " << ( *it ).second << std::endl; - } - - // If the user has supplied total forcing data, use that - if( Ftot_constrain.size() && runToDate <= Ftot_constrain.lastdate() ) { - H_LOG( logger, Logger::WARNING ) << "** Overwriting total forcing with user-supplied value" << std::endl; - forcings[ D_RF_TOTAL ] = Ftot_constrain.get( runToDate ); - } else { - forcings[ D_RF_TOTAL ] = Ftot; - } - H_LOG( logger, Logger::DEBUG ) << "forcing total is " << forcings[ D_RF_TOTAL ] << std::endl; - - //---------- Change to relative forcing ---------- - // Note that the code below assumes model is always consistently run from base-year forward. - // Results will not be consistent if parameters are changed but base-year is not re-run. - - // At this point, we've computed all absolute forcings. If base year, save those values - if( runToDate==baseyear ) { - H_LOG( logger, Logger::DEBUG ) << "** At base year! Storing current forcing values" << std::endl; - baseyear_forcings = forcings; - } - - // Subtract base year forcing values from forcings, i.e. make them relative to base year - for( forcingsIterator it = forcings.begin(); it != forcings.end(); ++it ) { - forcings[ ( *it ).first ] = ( *it ).second - baseyear_forcings[ ( *it ).first ]; - } - - // Store the forcings that we have calculated - forcings_ts.set(runToDate, forcings); + // ---------- Halocarbons ---------- + boost::array halos = { + {D_RF_CF4, D_RF_C2F6, D_RF_HFC23, D_RF_HFC32, + D_RF_HFC4310, D_RF_HFC125, D_RF_HFC134a, D_RF_HFC143a, + D_RF_HFC227ea, D_RF_HFC245fa, D_RF_SF6, D_RF_CFC11, + D_RF_CFC12, D_RF_CFC113, D_RF_CFC114, D_RF_CFC115, + D_RF_CCl4, D_RF_CH3CCl3, D_RF_HCFC22, D_RF_HCFC141b, + D_RF_HCFC142b, D_RF_halon1211, D_RF_halon1301, D_RF_halon2402, + D_RF_CH3Cl, D_RF_CH3Br}}; + + // Halocarbons can be disabled individually via the input file, so we run + // through all possible ones + for (auto hc : halos) { + if (core->checkCapability(hc)) { + // Forcing values are actually computed by the halocarbon itself + forcings[hc] = + core->sendMessage(M_GETDATA, hc, message_data(runToDate)); + } } -} -//------------------------------------------------------------------------------ -// documentation is inherited -unitval ForcingComponent::getData( const std::string& varName, - const double date ) { + // Aerosols + if (core->checkCapability(D_EMISSIONS_BC) && + core->checkCapability(D_EMISSIONS_OC) && + core->checkCapability(D_EMISSIONS_SO2) && + core->checkCapability(D_EMISSIONS_NH3)) { + + // Aerosol-Radiation Interactions (RFari) + // RFari was calculated using a simple linear relationship to emissions of + // BC, OC, SO2, and NH3. + // The rho parameters correspond to the radiative efficiencies reported in + // the text of 7.SM.1.3.1 IPCC AR6, see there for more details. + + // ---------- Black carbon ---------- + double E_BC = + core->sendMessage(M_GETDATA, D_EMISSIONS_BC, message_data(runToDate)) + .value(U_TG); + double fbc = rho_bc * E_BC; + forcings[D_RF_BC].set(fbc, U_W_M2); + + // ---------- Organic carbon ---------- + double E_OC = + core->sendMessage(M_GETDATA, D_EMISSIONS_OC, message_data(runToDate)) + .value(U_TG); + double foc = rho_oc * E_OC; + forcings[D_RF_OC].set(foc, U_W_M2); + + // ---------- Sulphate Aerosols ---------- + unitval SO2_emission = core->sendMessage(M_GETDATA, D_EMISSIONS_SO2, + message_data(runToDate)); + double fso2 = rho_so2 * SO2_emission.value(U_GG_S); + forcings[D_RF_SO2].set(fso2, U_W_M2); + + // ---------- NH3 ---------- + double E_NH3 = + core->sendMessage(M_GETDATA, D_EMISSIONS_NH3, message_data(runToDate)) + .value(U_TG); + double fnh3 = rho_nh3 * E_NH3; + forcings[D_RF_NH3].set(fnh3, U_W_M2); + + // ---------- RFaci ---------- + // ERF from aerosol-cloud interactions (RFaci) + // Based on Equation 7.SM.1.2 from IPCC AR6 where + double aci_rf = + -1 * aci_beta * + log(1 + (SO2_emission / s_SO2) + ((E_BC + E_OC) / s_BCOC)); + forcings[D_RF_ACI].set(aci_rf, U_W_M2); + } + + // ---------- Terrestrial albedo ---------- + if (core->checkCapability(D_RF_T_ALBEDO)) { + forcings[D_RF_T_ALBEDO] = + core->sendMessage(M_GETDATA, D_RF_T_ALBEDO, message_data(runToDate)); + } + // ---------- Volcanic forcings ---------- + if (core->checkCapability(D_VOLCANIC_SO2)) { + // The volcanic forcings are read in from an ini file. + forcings[D_RF_VOL] = + core->sendMessage(M_GETDATA, D_VOLCANIC_SO2, message_data(runToDate)); + } - unitval returnval; - double getdate = date; // This is why I hate declaring PBV args as const! + // ---------- Miscellaneous forcings ---------- + // Miscellaneous forcings read in from an ini file. + forcings[D_RF_MISC] = Fmisc_ts.get(runToDate); - if(getdate == Core::undefinedIndex()) { - // If no date specified, provide the current date - getdate = currentYear; + // ---------- Total ---------- + // Calculate based as the sum of the different radiative forcings or as the + // user supplied constraint. + unitval Ftot(0.0, U_W_M2); // W/m2 + for (auto f : forcings) { + Ftot = Ftot + f.second; } - if(getdate < baseyear) { - // Forcing component hasn't run yet, so there is no data to get. - returnval.set(0.0, U_W_M2); - return returnval; + // Otherwise if the user has supplied total forcing data, use that instead. + if (Ftot_constrain.size() && runToDate <= Ftot_constrain.lastdate()) { + H_LOG(logger, Logger::WARNING) + << "** Overwriting total forcing with user-supplied value" + << std::endl; + forcings[D_RF_TOTAL] = Ftot_constrain.get(runToDate); + } else { + forcings[D_RF_TOTAL] = Ftot; } - H_LOG(logger, Logger::DEBUG) << "getData request, time= " - << getdate - << " baseyear = " - << baseyear - << std::endl; + //---------- Change to relative forcing ---------- + // Note that the code below assumes model is always consistently run from + // base-year forward. Results will not be consistent if parameters are + // changed but base-year is not re-run. At this point, we've computed all + // absolute forcings. If base year, save those values + if (runToDate == baseyear) { + H_LOG(logger, Logger::DEBUG) + << "** At base year! Storing current forcing values" << std::endl; + baseyear_forcings = forcings; + } + // Subtract base year forcing values from forcings, i.e. make them relative + // to base year + for (auto f : forcings) { + forcings[f.first] = f.second - baseyear_forcings[f.first]; + H_LOG(logger, Logger::DEBUG) + << "forcing " << f.first << " in " << runToDate << " is " << f.second + << std::endl; + } + H_LOG(logger, Logger::DEBUG) + << "forcing total is " << forcings[D_RF_TOTAL] << std::endl; + + // Store the forcings that we have calculated + forcings_ts.set(runToDate, forcings); + } +} + +//------------------------------------------------------------------------------ +// documentation is inherited +unitval ForcingComponent::getData(const std::string &varName, + const double date) { + + unitval returnval; + double getdate = date; // This is why I hate declaring PBV args as const! + + // If requesting data not associated with a date aka a parameter, + // return the parameter value. + if (varName == D_DELTA_CH4) { + returnval = delta_ch4; + } else if (varName == D_DELTA_N2O) { + returnval = delta_n2o; + } else if (varName == D_DELTA_CO2) { + returnval = delta_co2; + } else if (varName == D_RHO_BC) { + returnval = rho_bc; + } else if (varName == D_RHO_OC) { + returnval = rho_oc; + } else if (varName == D_RHO_SO2) { + returnval = rho_so2; + } else if (varName == D_RHO_NH3) { + returnval = rho_nh3; + } else if (varName == D_RF_BASEYEAR) { + returnval.set(baseyear, U_UNITLESS); + } else { + // All other data require a date + H_ASSERT(date != Core::undefinedIndex(), "Date required for " + varName); + + // If before RF base year, return zero + if (getdate < baseyear) { + returnval.set(0.0, U_W_M2); + return returnval; + } + + // Look up the forcing name and value forcings_t forcings(forcings_ts.get(getdate)); - if( varName == D_RF_BASEYEAR ) { - returnval.set( baseyear, U_UNITLESS ); - } else if (varName == D_RF_SO2) { - // total SO2 forcing - std::map::const_iterator forcing_SO2d = forcings.find( D_RF_SO2d ); - std::map::const_iterator forcing_SO2i = forcings.find( D_RF_SO2i ); - if ( forcing_SO2d != forcings.end() ) { - if ( forcing_SO2i != forcings.end() ) { - returnval = forcing_SO2d->second + forcing_SO2i->second; - } else { - returnval = forcing_SO2d->second; - } - } else { - if ( forcing_SO2i != forcings.end() ) { - returnval = forcing_SO2i->second; - } else { - returnval.set( 0.0, U_W_M2 ); - } - } + std::string forcing_name; + auto forcit = forcing_name_map.find(varName); + if (forcit != forcing_name_map.end()) { + forcing_name = forcing_name_map[varName]; + } else { + forcing_name = varName; + } + std::map::const_iterator forcing = + forcings.find(forcing_name); + if (forcing != forcings.end()) { + returnval = forcing->second; // from the forcing map } else { - std::string forcing_name; - auto forcit = forcing_name_map.find(varName); - if(forcit != forcing_name_map.end()) { - forcing_name = forcing_name_map[varName]; - } - else { - forcing_name = varName; - } - std::map::const_iterator forcing = forcings.find(forcing_name); - if ( forcing != forcings.end() ) { - // from the forcing map - returnval = forcing->second; - } else { - if (currentYear < baseyear) { - returnval.set( 0.0, U_W_M2 ); - } else { - H_THROW( "Caller is requesting unknown variable: " + varName ); - } - } + H_THROW("Caller is requesting unknown variable: " + varName); } + } - return returnval; + return returnval; } -void ForcingComponent::reset(double time) -{ - // Set the current year to the reset year, and drop outputs after the reset year. - currentYear = time; - forcings_ts.truncate(time); - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; +//------------------------------------------------------------------------------ +// documentation is inherited +void ForcingComponent::reset(double time) { + // Set the current year to the reset year, and drop outputs after the reset + // year. + currentYear = time; + forcings_ts.truncate(time); + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } - //------------------------------------------------------------------------------ // documentation is inherited void ForcingComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void ForcingComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void ForcingComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/h_interpolator.cpp b/src/h_interpolator.cpp index 2c542fead..d225e1a98 100644 --- a/src/h_interpolator.cpp +++ b/src/h_interpolator.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -14,9 +14,8 @@ #include -#include "h_interpolator.hpp" #include "h_exception.hpp" - +#include "h_interpolator.hpp" namespace Hector { @@ -26,14 +25,14 @@ namespace Hector { * Initializes any internal variables. */ h_interpolator::h_interpolator() { - xdata=0; // NULL - ydata=0; - b_coef=0; - c_coef=0; - d_coef=0; - ndata=0; - ilast = -1; - set_method( DEFAULT ); + xdata = 0; // NULL + ydata = 0; + b_coef = 0; + c_coef = 0; + d_coef = 0; + ndata = 0; + ilast = -1; + set_method(DEFAULT); } //----------------------------------------------------------------------- @@ -41,9 +40,7 @@ h_interpolator::h_interpolator() { * * De-initializes any internal variables. */ -h_interpolator::~h_interpolator() { - release_data(); -} +h_interpolator::~h_interpolator() { release_data(); } //----------------------------------------------------------------------- /*! \brief Release memory used by internal vars. @@ -51,11 +48,11 @@ h_interpolator::~h_interpolator() { * Release memory used by internal vars. */ void h_interpolator::release_data() { - delete[]( xdata ); // free old memory, if necessary - delete[]( ydata ); - delete[]( b_coef ); - delete[]( c_coef ); - delete[]( d_coef ); + delete[] (xdata); // free old memory, if necessary + delete[] (ydata); + delete[] (b_coef); + delete[] (c_coef); + delete[] (d_coef); } //----------------------------------------------------------------------- @@ -65,14 +62,15 @@ void h_interpolator::release_data() { */ void h_interpolator::refit_data() { - switch( method ) { - case LINEAR: /* nothing to do */ - break; - case SPLINE_FORSYTHE: - spline_forsythe( ndata, xdata, ydata, b_coef, c_coef, d_coef ); - break; - default: H_THROW( "Undefined interpolation method" ); - } + switch (method) { + case LINEAR: /* nothing to do */ + break; + case SPLINE_FORSYTHE: + spline_forsythe(ndata, xdata, ydata, b_coef, c_coef, d_coef); + break; + default: + H_THROW("Undefined interpolation method"); + } } //----------------------------------------------------------------------- @@ -81,26 +79,26 @@ void h_interpolator::refit_data() { * Receive new data: make a private copy, and fit spline * (or whatever) as necessary. */ -void h_interpolator::newdata( int n, double* x, double* y ) { - H_ASSERT( n, "interpolator newdata n=0" ); - release_data(); - - ndata = n; - xdata = new double[ ndata ]; - ydata = new double[ ndata ]; - b_coef = new double[ ndata ]; - c_coef = new double[ ndata ]; - d_coef = new double[ ndata ]; - for( int i=0; i= ndata ) - returnval = ydata[ ndata-1 ]; - else // the actual linear interpolation - returnval = ydata[ iprev ] + (x - xdata[ iprev ] ) * - ( ydata[ inext ] - ydata[ iprev ] ) / ( xdata[ inext ] - xdata[ iprev ] ); - - return returnval; +double h_interpolator::f_linear(double x) { + + int iprev, inext; + locate(x, iprev, inext); + + double returnval; + if (iprev < 0) + returnval = ydata[0]; + else if (inext >= ndata) + returnval = ydata[ndata - 1]; + else // the actual linear interpolation + returnval = ydata[iprev] + (x - xdata[iprev]) * + (ydata[inext] - ydata[iprev]) / + (xdata[inext] - xdata[iprev]); + + return returnval; } //----------------------------------------------------------------------- @@ -131,43 +129,41 @@ double h_interpolator::f_linear( double x ) { * * Return y=f'(x) using linear interpolation. */ -double h_interpolator::f_deriv_linear( double x ) { - - int iprev, inext; - locate(x, iprev,inext); - - - double returnval; - if( iprev < 0 ) { - // before the series, throw error? - returnval = 0; - } - else if( inext >= ndata && x > xdata[ ndata-1 ] ) { - // after the series, throw error? - returnval = 0; - } - else if( x == xdata[ iprev ] && (iprev != 0 && inext != ndata)) { - // Taking the derivative at the abscissas is problematic since the function - // is not continous here. Instead we will average the slopes on the surrounding - // segments - // Note for abscissas at the very begining or end of the data we assume the - // slope of the segment it is connected to (same as the general case). - double slopePrev = ( ydata[ inext-1 ] - ydata[ iprev-1 ] ) / (xdata[ inext-1 ] - xdata[ iprev-1 ] ); - double slopeNext = ( ydata[ inext ] - ydata[ iprev ] ) / (xdata[ inext ] - xdata[ iprev ] ); - returnval = ( slopePrev + slopeNext ) / 2.0; - } - else { - if(inext == ndata) { - // Special case for the very last point. We just use the slope of the - // previous segment. - --iprev; - --inext; - } - // we can just use the slope of this segment - returnval = ( ydata[ inext ] - ydata[ iprev ] ) / (xdata[ inext ] - xdata[ iprev ] ); +double h_interpolator::f_deriv_linear(double x) { + + int iprev, inext; + locate(x, iprev, inext); + + double returnval; + if (iprev < 0) { + // before the series, throw error? + returnval = 0; + } else if (inext >= ndata && x > xdata[ndata - 1]) { + // after the series, throw error? + returnval = 0; + } else if (x == xdata[iprev] && (iprev != 0 && inext != ndata)) { + // Taking the derivative at the abscissas is problematic since the function + // is not continous here. Instead we will average the slopes on the + // surrounding segments Note for abscissas at the very begining or end of + // the data we assume the slope of the segment it is connected to (same as + // the general case). + double slopePrev = (ydata[inext - 1] - ydata[iprev - 1]) / + (xdata[inext - 1] - xdata[iprev - 1]); + double slopeNext = + (ydata[inext] - ydata[iprev]) / (xdata[inext] - xdata[iprev]); + returnval = (slopePrev + slopeNext) / 2.0; + } else { + if (inext == ndata) { + // Special case for the very last point. We just use the slope of the + // previous segment. + --iprev; + --inext; } + // we can just use the slope of this segment + returnval = (ydata[inext] - ydata[iprev]) / (xdata[inext] - xdata[iprev]); + } - return returnval; + return returnval; } //----------------------------------------------------------------------- @@ -175,19 +171,20 @@ double h_interpolator::f_deriv_linear( double x ) { * * Return y=f(x) using current interpolation method. */ -double h_interpolator::f( double x ) { - - // Following section will be replaced by spline code - switch( method ) { - case LINEAR: - return f_linear( x ); - break; - case SPLINE_FORSYTHE: - return seval_forsythe( ndata, x, xdata, ydata, b_coef, c_coef, d_coef ); - break; - - default: H_THROW( "Undefined interpolation method" ); - } +double h_interpolator::f(double x) { + + // Following section will be replaced by spline code + switch (method) { + case LINEAR: + return f_linear(x); + break; + case SPLINE_FORSYTHE: + return seval_forsythe(ndata, x, xdata, ydata, b_coef, c_coef, d_coef); + break; + + default: + H_THROW("Undefined interpolation method"); + } } //----------------------------------------------------------------------- @@ -195,19 +192,20 @@ double h_interpolator::f( double x ) { * * Return y=f'(x) using current interpolation method. */ -double h_interpolator::f_deriv( double x ) { - - // Following section will be replaced by spline code - switch( method ) { - case LINEAR: - return f_deriv_linear( x ); - break; - case SPLINE_FORSYTHE: - return seval_deriv_forsythe( ndata, x, xdata, ydata, b_coef, c_coef, d_coef ); - break; - - default: H_THROW( "Undefined interpolation method" ); - } +double h_interpolator::f_deriv(double x) { + + // Following section will be replaced by spline code + switch (method) { + case LINEAR: + return f_deriv_linear(x); + break; + case SPLINE_FORSYTHE: + return seval_deriv_forsythe(ndata, x, xdata, ydata, b_coef, c_coef, d_coef); + break; + + default: + H_THROW("Undefined interpolation method"); + } } //----------------------------------------------------------------------- @@ -215,11 +213,11 @@ double h_interpolator::f_deriv( double x ) { * * Set spline method. */ -void h_interpolator::set_method( interpolation_methods m ) { - method = ( m==DEFAULT ) ? DEFAULT_METHOD : m; - //TODO: log method set - if( ndata ) - refit_data(); +void h_interpolator::set_method(interpolation_methods m) { + method = (m == DEFAULT) ? DEFAULT_METHOD : m; + // TODO: log method set + if (ndata) + refit_data(); } -} +} // namespace Hector diff --git a/src/h_reader.cpp b/src/h_reader.cpp index 6acb557c3..0ce58fdad 100644 --- a/src/h_reader.cpp +++ b/src/h_reader.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -24,11 +24,11 @@ namespace Hector { * * Backend is currently an INIReader. */ -h_reader::h_reader( std::string fname, readertype_t style, bool doparse ) { - filename = fname; - reader = NULL; - if( doparse ) - parse(); +h_reader::h_reader(std::string fname, readertype_t style, bool doparse) { + filename = fname; + reader = NULL; + if (doparse) + parse(); } /*! \brief Parse an INI-style file. @@ -36,32 +36,34 @@ h_reader::h_reader( std::string fname, readertype_t style, bool doparse ) { * Backend is currently an INIReader. */ void h_reader::parse() { - if(reader) - delete reader; + if (reader) + delete reader; - reader = new INIReader( filename ); - int le = (*reader).ParseError(); - if( le ) { - std::stringstream out; - out << "Parse error in file " << filename << " line: " << le; - H_THROW(out.str()); - } + reader = new INIReader(filename); + int le = (*reader).ParseError(); + if (le) { + std::stringstream out; + out << "Parse error in file " << filename << " line: " << le; + H_THROW(out.str()); + } } /*! \brief Search for and return a string. * * Backend is currently an INIReader. */ -std::string h_reader::get_string( std::string section, std::string name, std::string defaultvalue ) { - return (*reader).Get( section, name, defaultvalue ); +std::string h_reader::get_string(std::string section, std::string name, + std::string defaultvalue) { + return (*reader).Get(section, name, defaultvalue); } /*! \brief Search for and return a number. * * Backend is currently an INIReader. */ -double h_reader::get_number( std::string section, std::string name, double defaultvalue ) { - return (*reader).GetInteger( section, name, defaultvalue ); +double h_reader::get_number(std::string section, std::string name, + double defaultvalue) { + return (*reader).GetInteger(section, name, defaultvalue); } -} +} // namespace Hector diff --git a/src/h_util.cpp b/src/h_util.cpp new file mode 100644 index 000000000..3b2a8da4a --- /dev/null +++ b/src/h_util.cpp @@ -0,0 +1,84 @@ +/* Hector -- A Simple Climate Model + Copyright (C) 2022 Battelle Memorial Institute + + Please see the accompanying file LICENSE.md for additional licensing + information. +*/ +/* + * h_util.cpp + * hector + * + * Created by Pralit Patel on 1/14/22. + * + */ + +#include "h_util.hpp" +#include "h_exception.hpp" + +// If using the R package, use Rcpp to call R's file processing +// functions. Otherwise (e.g. if building standalone Hector), +// use std::filesystem (which is available since the C++ 17 standard) +// if available and finally fall back to boost::filesystem (which +// needs to be installed). + +// Language feature detection (to use __cpp_lib_filesystem) isn't even +// available unil the C++20 standard. Luckily we can use boost to get +// it in the meantime. +#include + +#ifdef USE_RCPP +#include + +#elif __cpp_lib_filesystem || __has_include() +#include +namespace fs = std::filesystem; +typedef std::error_code fs_error_code; +#else +#include +namespace fs = boost::filesystem; +typedef boost::system::error_code fs_error_code; +#endif + +namespace Hector { + +using namespace std; +using namespace boost; + +/*! + * \brief Checks if the given directory exists. If not it attempts to create + * it and if it was unable to do that it will raise an exception. + * \param dir The directory to check/create. + */ +void ensure_dir_exists(const std::string &dir) { +#ifdef USE_RCPP + // Load R functions for path management + Rcpp::Environment base("package:base"); + Rcpp::Environment utils("package:utils"); + Rcpp::Function dirCreate = base["dir.create"]; + Rcpp::Function file_test = utils["file_test"]; + // use file_test -d to see if dir exists and is a directory + if (!Rcpp::as(file_test("-d", dir))) { + // either does not exist or is a file + // we can try to create it and if it still fails it must + // have been a file or a permissions error + if (!Rcpp::as(dirCreate(dir))) { + // no luck, throw exception + H_THROW("Directory " + dir + " does not exist and could not create it."); + } + } +#else + fs::path fs_dir(dir); + // first check to see if dir exists and is a directory + if (!fs::is_directory(fs_dir)) { + // either does not exist or is a file + // we can try to create it and if it still fails it must + // have been a file or a permissions error + fs_error_code status; + if (!fs::create_directory(fs_dir, status)) { + H_THROW("Directory " + dir + " does not exist and could not create it."); + } + } +#endif +} + +} // namespace Hector diff --git a/src/halocarbon_component.cpp b/src/halocarbon_component.cpp index 19c0ea0d8..3253bef3b 100644 --- a/src/halocarbon_component.cpp +++ b/src/halocarbon_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -10,14 +10,20 @@ * * Created by Pralit Patel on 1/20/11. * + * References + * Hartin 2015: Hartin, C. A., Patel, P., Schwarber, A., Link, R. P., and + * Bond-Lamberty, B. P.: A simple object-oriented and open-source model for + * scientific and policy analyses of the global climate system – Hector v1.0, + * Geosci. Model Dev., 8, 939–955, https://doi.org/10.5194/gmd-8-939-2015, 2015. + * IPCC AR6: Need to add the citation! */ #include -#include "halocarbon_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "h_util.hpp" -#include "avisitor.hpp" +#include "halocarbon_component.hpp" namespace Hector { @@ -26,288 +32,279 @@ using namespace std; //------------------------------------------------------------------------------ /*! \brief Constructor */ -HalocarbonComponent::HalocarbonComponent( std::string g ) -:tau( -1 ) -{ - myGasName = g; +HalocarbonComponent::HalocarbonComponent(std::string g) : tau(-1) { + myGasName = g; } //------------------------------------------------------------------------------ /*! \brief Destructor */ -HalocarbonComponent::~HalocarbonComponent() { -} +HalocarbonComponent::~HalocarbonComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string HalocarbonComponent::getComponentName() const { - return myGasName + HALOCARBON_EXTENSION; + return myGasName + HALOCARBON_EXTENSION; } //------------------------------------------------------------------------------ // documentation is inherited -void HalocarbonComponent::init( Core* coreptr ) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - // concentration.name = myGasName; - core = coreptr; - - emissions.allowInterp( true ); - emissions.name = myGasName; - molarMass = 0.0; - H0.set( 0.0, U_PPTV ); //! Default is no preindustrial, but user can override - - //! \remark Inform core that we can provide forcing data - core->registerCapability( D_RF_PREFIX+myGasName, getComponentName() ); - //! \remark Inform core that we can provide concentrations - core->registerCapability( myGasName+CONCENTRATION_EXTENSION, getComponentName() ); - //! \remark Inform core that we can provide concentration constraints - core->registerCapability( myGasName+CONC_CONSTRAINT_EXTENSION, getComponentName() ); - // inform core that we can accept emissions for this gas - core->registerInput(myGasName+EMISSIONS_EXTENSION, getComponentName()); - - // inform core that we can accept concentration constraints for this gas - core->registerInput(myGasName+CONC_CONSTRAINT_EXTENSION, getComponentName()); +void HalocarbonComponent::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + // concentration.name = myGasName; + core = coreptr; + + emissions.allowInterp(true); + emissions.name = myGasName; + molarMass = 0.0; + H0.set(0.0, U_PPTV); //! Default is no preindustrial, but user can override + + // Register the data we can provide + core->registerCapability(D_RF_PREFIX + myGasName, + getComponentName()); // can provide forcing data + core->registerCapability(myGasName + CONCENTRATION_EXTENSION, + getComponentName()); // can provide concentrations + core->registerCapability( + myGasName + CONC_CONSTRAINT_EXTENSION, + getComponentName()); // can provide concentration constraints + core->registerCapability(D_HCRHO_PREFIX + myGasName, + getComponentName()); // can provide rho + core->registerCapability(D_HCDELTA_PREFIX + myGasName, + getComponentName()); // can provide rho + + // Register the inputs we can receive from outside + core->registerInput( + myGasName + CONC_CONSTRAINT_EXTENSION, + getComponentName()); // inform core that we can accept concentration + // constraints for this gas + core->registerInput(myGasName + EMISSIONS_EXTENSION, + getComponentName()); // inform core that we can accept + // emissions for this gas + core->registerInput(myGasName + CONC_CONSTRAINT_EXTENSION, + getComponentName()); // inform the core we can accept + // provide concentration constraints + core->registerInput( + D_HCRHO_PREFIX + myGasName, + getComponentName()); // nform the core we can accept rho for each HC. + core->registerInput( + D_HCDELTA_PREFIX + myGasName, + getComponentName()); // inform the core we can accept delta } //------------------------------------------------------------------------------ // documentation is inherited -unitval HalocarbonComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - setData( datum, info ); - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval HalocarbonComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; - return returnval; + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); + + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void HalocarbonComponent::setData( const string& varName, - const message_data& data ) -{ - H_LOG( logger, Logger::DEBUG ) << "Setting " << varName << "[" << data.date << "]=" << data.value_str << std::endl; - - try { - const string emiss_var_name = myGasName + EMISSIONS_EXTENSION; - const string conc_var_name = myGasName + CONC_CONSTRAINT_EXTENSION; - - if( varName == D_HC_TAU ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - tau = data.getUnitval(U_UNDEFINED); - } else if( varName == D_HC_RHO ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - rho = data.getUnitval(U_W_M2_PPTV); - } else if( varName == D_HC_MOLARMASS ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - molarMass = data.getUnitval(U_UNDEFINED); - } else if( varName == emiss_var_name ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - emissions.set(data.date, data.getUnitval(U_GG)); - } else if( varName == conc_var_name ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - Ha_constrain.set(data.date, data.getUnitval(U_PPTV)); - } else if( varName == D_PREINDUSTRIAL_HC ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - H0 = data.getUnitval(U_PPTV); - } else { - H_LOG( logger, Logger::DEBUG ) << "Unknown variable " << varName << std::endl; - H_THROW( "Unknown variable name while parsing "+ getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void HalocarbonComponent::setData(const string &varName, + const message_data &data) { + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; + + try { + const string emiss_var_name = myGasName + EMISSIONS_EXTENSION; + const string conc_var_name = myGasName + CONC_CONSTRAINT_EXTENSION; + + if (varName == D_HC_TAU) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + tau = data.getUnitval(U_UNDEFINED); + } else if (varName == D_HCRHO_PREFIX + myGasName) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + rho = data.getUnitval(U_W_M2_PPTV); + } else if (varName == D_HCDELTA_PREFIX + myGasName) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + delta = data.getUnitval(U_UNITLESS); + } else if (varName == D_HC_MOLARMASS) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + molarMass = data.getUnitval(U_UNDEFINED); + } else if (varName == emiss_var_name) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + emissions.set(data.date, data.getUnitval(U_GG)); + } else if (varName == conc_var_name) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + Ha_constrain.set(data.date, data.getUnitval(U_PPTV)); + } else if (varName == D_PREINDUSTRIAL_HC) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + H0 = data.getUnitval(U_PPTV); + } else { + H_LOG(logger, Logger::DEBUG) + << "Unknown variable " << varName << std::endl; + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited void HalocarbonComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - oldDate = core->getStartDate(); - - H_ASSERT( tau != -1 && tau != 0, "tau has bad value" ); - H_ASSERT( rho.units() != U_UNDEFINED, "rho has undefined units" ); - H_ASSERT( molarMass > 0, "molarMass must be >0" ); + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + oldDate = core->getStartDate(); - Ha_ts.set(oldDate,H0); + H_ASSERT(tau != -1 && tau != 0, "tau has bad value"); + H_ASSERT(rho.units() != U_UNDEFINED, "rho has undefined units"); + H_ASSERT(molarMass > 0, "molarMass must be >0"); + H_ASSERT( + delta >= -1 && delta <= 1, + "bad delta value"); // delta is a paramter that must be between -1 and 1 + Ha_ts.set(oldDate, H0); - //! \remark concentration values will not be allowed to interpolate beyond years already read in - // concentration.allowPartialInterp( true ); + //! \remark concentration values will not be allowed to interpolate beyond + //! years already read in + // concentration.allowPartialInterp( true ); } //------------------------------------------------------------------------------ // documentation is inherited -void HalocarbonComponent::run( const double runToDate ) { - H_ASSERT( !core->inSpinup() && runToDate-oldDate == 1, "timestep must equal 1" ); - #define AtmosphereDryAirConstant 1.8 - - unitval Ha(Ha_ts.get(oldDate)); - - // If emissions-forced, calculate concentration from emissions and lifespan. - if ( Ha_constrain.size() && Ha_constrain.exists( runToDate ) ) { - // Concentration-forced. Just grab the current value from the time series. - Ha = Ha_constrain.get(runToDate); - } else { - const double timestep = 1.0; - const double alpha = 1 / tau; - - // Compute the delta atmospheric concentration from current emissions - double emissMol = emissions.get( runToDate ).value( U_GG ) / molarMass * timestep; // this is in U_GMOL - unitval concDeltaEmiss; - concDeltaEmiss.set( emissMol / ( 0.1 * AtmosphereDryAirConstant ), U_PPTV ); - - // Update the atmospheric concentration, accounting for this delta and exponential decay - double expfac = exp(-alpha); - Ha = Ha*expfac + concDeltaEmiss*tau * (1.0-expfac); - } - - H_LOG( logger, Logger::DEBUG ) << "date: " << runToDate << " concentration: "<< Ha << endl; - Ha_ts.set(runToDate, Ha); - - // Calculate radiative forcing TODO: this should be moved to forcing component - unitval rf; - rf.set( rho.value( U_W_M2_PPTV ) * Ha.value( U_PPTV ), U_W_M2 ); - hc_forcing.set( runToDate, rf ); - - // Update time counter. - oldDate = runToDate; +void HalocarbonComponent::run(const double runToDate) { + H_ASSERT(!core->inSpinup() && runToDate - oldDate == 1, + "timestep must equal 1"); +#define AtmosphereDryAirConstant 1.8 + + unitval Ha(Ha_ts.get(oldDate)); + + // If emissions-forced, calculate concentration from emissions and lifespan. + if (Ha_constrain.size() && Ha_constrain.exists(runToDate)) { + // Concentration-forced. Just grab the current value from the time series. + Ha = Ha_constrain.get(runToDate); + } else { + const double timestep = 1.0; + const double alpha = 1 / tau; + + // Compute the delta atmospheric concentration from current emissions + double emissMol = emissions.get(runToDate).value(U_GG) / molarMass * + timestep; // this is in U_GMOL + unitval concDeltaEmiss; + concDeltaEmiss.set(emissMol / (0.1 * AtmosphereDryAirConstant), U_PPTV); + + // Update the atmospheric concentration, accounting for this delta and + // exponential decay + double expfac = exp(-alpha); + Ha = Ha * expfac + concDeltaEmiss * tau * (1.0 - expfac); + } + + H_LOG(logger, Logger::DEBUG) + << "date: " << runToDate << " concentration: " << Ha << endl; + Ha_ts.set(runToDate, Ha); + + // Calculate radiative forcing + double adjusted_rf; + double rf_unadjusted; + unitval rf; + + // First calculate the stratospheric-temperature adjusted radiative + // efficiencies using parameter values from IPCC AR6 & Equation 16 from Hartin + // 2015. + rf_unadjusted = rho.value(U_W_M2_PPTV) * Ha.value(U_PPTV); + // Now calculate the effective radiative forcing value by adjusting the + // radiative forcing by the tropospheric adjustments (the delta parameter). + adjusted_rf = rf_unadjusted + delta.value(U_UNITLESS) * rf_unadjusted; + rf.set(adjusted_rf, U_W_M2); + hc_forcing.set(runToDate, rf); + + // Update time counter. + oldDate = runToDate; } //------------------------------------------------------------------------------ // documentation is inherited -unitval HalocarbonComponent::getData( const std::string& varName, - const double date ) { - - unitval returnval; - double getdate = date; // will be used for any variable where a date is allowed. - if(getdate == Core::undefinedIndex()) { - // If no date specified, return the last computed date - getdate = oldDate; - } - - if( varName == D_RF_PREFIX+myGasName ) { - returnval = hc_forcing.get( getdate ); - } - else if( varName == D_PREINDUSTRIAL_HC ) { - // use date as input, not getdate, b/c there should be no date specified. - H_ASSERT( date == Core::undefinedIndex(), "Date not allowed for preindustrial hc" ); - returnval = H0; - } - else if( varName == myGasName+CONCENTRATION_EXTENSION ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for halocarbon concentration" ); - returnval = Ha_ts.get( getdate ); - } - else if( varName == myGasName+EMISSIONS_EXTENSION ) { - if( emissions.exists( getdate ) ) - returnval = emissions.get( getdate ); - else - returnval.set( 0.0, U_GG ); - } - else if( varName == D_HC_CONCENTRATION ) { - returnval = Ha_ts.get(getdate); - } - else if( varName == myGasName+CONC_CONSTRAINT_EXTENSION ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for halocarbon constraint" ); - if ( Ha_constrain.exists( getdate ) ) { - returnval = Ha_constrain.get( getdate ); - } else { - H_LOG( logger, Logger::DEBUG ) << "No CH4 constraint for requested date " << date << - ". Returning missing value." << std::endl; - returnval.set( MISSING_FLOAT, U_PPTV ); - } - } - else { - H_THROW( "Caller is requesting unknown variable: " + varName ); +unitval HalocarbonComponent::getData(const std::string &varName, + const double date) { + + unitval returnval; + double getdate = + date; // will be used for any variable where a date is allowed. + if (getdate == Core::undefinedIndex()) { + // If no date specified, return the last computed date + getdate = oldDate; + } + + if (varName == D_RF_PREFIX + myGasName) { + returnval = hc_forcing.get(getdate); + } else if (varName == D_PREINDUSTRIAL_HC) { + // use date as input, not getdate, b/c there should be no date specified. + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for preindustrial hc"); + returnval = H0; + } else if (varName == D_HCRHO_PREFIX + myGasName) { + // use date as input, not getdate, b/c there should be no date specified. + H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for rho"); + returnval = rho; + } else if (varName == D_HCDELTA_PREFIX + myGasName) { + // use date as input, not getdate, b/c there should be no date specified. + H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for delta"); + returnval = delta; + } else if (varName == myGasName + CONCENTRATION_EXTENSION) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for halocarbon concentration"); + returnval = Ha_ts.get(getdate); + } else if (varName == myGasName + EMISSIONS_EXTENSION) { + if (emissions.exists(getdate)) + returnval = emissions.get(getdate); + else + returnval.set(0.0, U_GG); + } else if (varName == D_HC_CONCENTRATION) { + returnval = Ha_ts.get(getdate); + } else if (varName == myGasName + CONC_CONSTRAINT_EXTENSION) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for halocarbon constraint"); + if (Ha_constrain.exists(getdate)) { + returnval = Ha_constrain.get(getdate); + } else { + H_LOG(logger, Logger::DEBUG) + << "No CH4 constraint for requested date " << date + << ". Returning missing value." << std::endl; + returnval.set(MISSING_FLOAT, U_PPTV); } + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } - return returnval; -} - - -void HalocarbonComponent::reset(double time) -{ - // reset time counter and truncate outputs - oldDate = time; - hc_forcing.truncate(time); - Ha_ts.truncate(time); - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; + return returnval; } - //------------------------------------------------------------------------------ // documentation is inherited -void HalocarbonComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); +void HalocarbonComponent::reset(double time) { + // reset time counter and truncate outputs + oldDate = time; + hc_forcing.truncate(time); + Ha_ts.truncate(time); + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } //------------------------------------------------------------------------------ // documentation is inherited -void HalocarbonComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); +void HalocarbonComponent::shutDown() { + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } - -//------------------------------------------------------------------------------ -/* \brief Calculate the derivative of this halocarbon at the - * current date given the current concentration - * \param[in] currConcentration The current concentration at the current date - * \param[in] currDate The current date. - * \return change from current concentration - * - * The change from the current concentration is computed by by adding emissions - * and assuming a constant decay of the halocarbons currently in the atmosphere. - */ -/* - unitval HalocarbonComponent::getChangeInConcentration( unitval currConcentration, double currDate ) const - { - #define AtmosphereDryAirConstant 1.8 - - const double timestep = 1.0; - const double alpha = 1 / tau; - - unitval cumulativeEmissMol; - cumulativeEmissMol.set( emissions.get( currDate ).value( U_GG ) / molarMass * timestep, U_GMOL ); - - unitval concFromEmiss; - concFromEmiss.set( cumulativeEmissMol.value( U_GMOL ) / ( 0.1 * AtmosphereDryAirConstant ), U_PPTV ); - - return currConcentration * -alpha + concFromEmiss; - } - */ - //------------------------------------------------------------------------------ -/* \brief Runge-Kutta approximation - * \param[in] time1 The start year which we assume we have already have a concentration - * \param[in] time2 The end year in which we want to approximate a concentration - * \return The approximate solution - * - * A simple Runge-Kutta to approximate the concentration over some time step. - */ -/* - unitval HalocarbonComponent::rk( double time1, double time2 ) const { - const double h = 1; // relates to time2? - unitval currConcentration = concentration.get( time1 ); - unitval k0 = getChangeInConcentration( currConcentration, time1 ); - unitval k1 = getChangeInConcentration( currConcentration + k0 * 0.5, time1 + 0.5 * h ); - unitval k2 = getChangeInConcentration( currConcentration + k1 * 0.5, time1 + 0.5 * h ); - unitval k3 = getChangeInConcentration( currConcentration + k2, time1 + h ); - return currConcentration + ( k0 + k1 * 2.0 + k2 * 2.0 + k3 ) / 6.0; - } - */ +// documentation is inherited +void HalocarbonComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/ini.c b/src/ini.c index 1a77ba90b..90cee125f 100644 --- a/src/ini.c +++ b/src/ini.c @@ -7,8 +7,8 @@ home page for more info: */ -#include #include +#include #include #include "ini.h" @@ -18,120 +18,110 @@ home page for more info: #define MAX_NAME 50 /* Strip whitespace chars off end of given string, in place. Return s. */ -static char* rstrip(char* s) -{ - char* p = s + strlen(s); - while (p > s && isspace(*--p)) - *p = '\0'; - return s; +static char *rstrip(char *s) { + char *p = s + strlen(s); + while (p > s && isspace(*--p)) + *p = '\0'; + return s; } /* Return pointer to first non-whitespace char in given string. */ -static char* lskip(const char* s) -{ - while (*s && isspace(*s)) - s++; - return (char*)s; +static char *lskip(const char *s) { + while (*s && isspace(*s)) + s++; + return (char *)s; } /* Return pointer to first char c or ';' comment in given string, or pointer to null at end of string if neither found. ';' must be prefixed by a whitespace character to register as a comment. */ -static char* find_char_or_comment(const char* s, char c) -{ - int was_whitespace = 0; - while (*s && *s != c && !(was_whitespace && *s == ';')) { - was_whitespace = isspace(*s); - s++; - } - return (char*)s; +static char *find_char_or_comment(const char *s, char c) { + int was_whitespace = 0; + while (*s && *s != c && !(was_whitespace && *s == ';')) { + was_whitespace = isspace(*s); + s++; + } + return (char *)s; } /* Version of strncpy that ensures dest (size bytes) is null-terminated. */ -static char* strncpy0(char* dest, const char* src, size_t size) -{ - strncpy(dest, src, size); - dest[size - 1] = '\0'; - return dest; +static char *strncpy0(char *dest, const char *src, size_t size) { + strncpy(dest, src, size); + dest[size - 1] = '\0'; + return dest; } /* See documentation in header file. */ -int ini_parse(const char* filename, - int (*handler)(void*, const char*, const char*, const char*), - void* user) -{ - /* Uses a fair bit of stack (use heap instead if you need to) */ - char line[MAX_LINE]; - char section[MAX_SECTION] = ""; - char prev_name[MAX_NAME] = ""; - - FILE* file; - char* start; - char* end; - char* name; - char* value; - int lineno = 0; - int error = 0; - - file = fopen(filename, "r"); - if (!file) - return -1; - - /* Scan through file line by line */ - while (fgets(line, sizeof(line), file) != NULL) { - lineno++; - start = lskip(rstrip(line)); +int ini_parse(const char *filename, + int (*handler)(void *, const char *, const char *, const char *), + void *user) { + /* Uses a fair bit of stack (use heap instead if you need to) */ + char line[MAX_LINE]; + char section[MAX_SECTION] = ""; + char prev_name[MAX_NAME] = ""; + + FILE *file; + char *start; + char *end; + char *name; + char *value; + int lineno = 0; + int error = 0; + + file = fopen(filename, "r"); + if (!file) + return -1; + + /* Scan through file line by line */ + while (fgets(line, sizeof(line), file) != NULL) { + lineno++; + start = lskip(rstrip(line)); #if INI_ALLOW_MULTILINE - if (*prev_name && *start && start > line) { - /* Non-black line with leading whitespace, treat as continuation - of previous name's value (as per Python ConfigParser). */ - if (!handler(user, section, prev_name, start) && !error) - error = lineno; - } - else + if (*prev_name && *start && start > line) { + /* Non-black line with leading whitespace, treat as continuation + of previous name's value (as per Python ConfigParser). */ + if (!handler(user, section, prev_name, start) && !error) + error = lineno; + } else #endif if (*start == ';' || *start == '#') { - /* Per Python ConfigParser, allow '#' comments at start of line */ - } - else if (*start == '[') { - /* A "[section]" line */ - end = find_char_or_comment(start + 1, ']'); - if (*end == ']') { - *end = '\0'; - strncpy0(section, start + 1, sizeof(section)); - *prev_name = '\0'; - } - else if (!error) { - /* No ']' found on section line */ - error = lineno; - } - } - else if (*start && *start != ';') { - /* Not a comment, must be a name=value pair */ - end = find_char_or_comment(start, '='); - if (*end == '=') { - *end = '\0'; - name = rstrip(start); - value = lskip(end + 1); - end = find_char_or_comment(value, '\0'); - if (*end == ';') - *end = '\0'; - rstrip(value); - - /* Valid name=value pair found, call handler */ - strncpy0(prev_name, name, sizeof(prev_name)); - if (!handler(user, section, name, value) && !error) - error = lineno; - } - else if (!error) { - /* No '=' found on name=value line */ - error = lineno; - } - } + /* Per Python ConfigParser, allow '#' comments at start of line */ + } else if (*start == '[') { + /* A "[section]" line */ + end = find_char_or_comment(start + 1, ']'); + if (*end == ']') { + *end = '\0'; + strncpy0(section, start + 1, sizeof(section)); + *prev_name = '\0'; + } else if (!error) { + /* No ']' found on section line */ + error = lineno; + } + } else if (*start && *start != ';') { + /* Not a comment, must be a name=value pair */ + end = find_char_or_comment(start, '='); + if (*end == '=') { + *end = '\0'; + name = rstrip(start); + value = lskip(end + 1); + end = find_char_or_comment(value, '\0'); + if (*end == ';') + *end = '\0'; + rstrip(value); + + /* Valid name=value pair found, call handler */ + strncpy0(prev_name, name, sizeof(prev_name)); + if (!handler(user, section, name, value) && !error) + error = lineno; + } else if (!error) { + /* No '=' found on name=value line */ + error = lineno; + } } + } - fclose(file); + fclose(file); - return error; + return error; } diff --git a/src/ini_to_core_reader.cpp b/src/ini_to_core_reader.cpp index 0159bdd5a..828a7645e 100644 --- a/src/ini_to_core_reader.cpp +++ b/src/ini_to_core_reader.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,25 +12,39 @@ * */ -#include +// some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: predicate.hpp still generates one warning +// 2023 and Boost 1.81.0_1: trim.hpp still generates one warning +// 2023 and Boost 1.81.0_1: lexical_cast.hpp still generates many warnings +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Weverything" #include #include +#include +#pragma clang diagnostic pop -// ANS: If using the R package, use Rcpp to call R's file processing -// functions. Otherwise (e.g. if building standalone Hector), fall -// back to boost::filesystem (which needs to be installed). +// If using the R package, use Rcpp to call R's file processing +// functions. Otherwise (e.g. if building standalone Hector), +// use std::filesystem (which is available since the C++ 17 standard) +// if available and finally fall back to boost::filesystem (which +// needs to be installed). #ifdef USE_RCPP +// some Rcpp code generates deprecated warnings under clang; ignore #include + +#elif __cpp_lib_filesystem || __has_include() +#include +namespace fs = std::filesystem; #else #include namespace fs = boost::filesystem; #endif #include "core.hpp" -#include "message_data.hpp" -#include "ini_to_core_reader.hpp" -#include "ini.h" #include "csv_table_reader.hpp" +#include "ini.h" +#include "ini_to_core_reader.hpp" +#include "message_data.hpp" namespace Hector { @@ -42,36 +56,32 @@ using namespace std; * Sets a pointer to the Core object which will handle routing read in data to * the correct setData */ -INIToCoreReader::INIToCoreReader( Core* core ):core( core ) -{ -} +INIToCoreReader::INIToCoreReader(Core *core) : core(core) {} //------------------------------------------------------------------------------ /*! \brief Destructor * Does not delete core since its memory is managed elsewhere. */ -INIToCoreReader::~INIToCoreReader() { -} +INIToCoreReader::~INIToCoreReader() {} //------------------------------------------------------------------------------ -/*! \brief Parse and INI file at the given name filename and route the data through - * the core. - * \param filename The INI file to be parsed by the core. +/*! \brief Parse and INI file at the given name filename and route the data + * through the core. \param filename The INI file to be parsed by the core. * \exception h_exception If either there was an error reading the INI file or * or there was a problem in the Core trying to set the * data. */ -void INIToCoreReader::parse( const string& filename ) { - iniFilePath = filename; - int errorCode = ini_parse( filename.c_str(), valueHandler, this ); - - // handle c errors by turning them into exceptions which can be handled later - if( errorCode == -1 ) { - H_THROW( "Could not open " + filename ); - } else if( errorCode != 0 ) { - // throw the original exception caught by valueHandler - throw valueHandlerException; - } +void INIToCoreReader::parse(const string &filename) { + iniFilePath = filename; + int errorCode = ini_parse(filename.c_str(), valueHandler, this); + + // handle c errors by turning them into exceptions which can be handled later + if (errorCode == -1) { + H_THROW("Could not open " + filename); + } else if (errorCode != 0) { + // throw the original exception caught by valueHandler + throw valueHandlerException; + } } //------------------------------------------------------------------------------ @@ -84,109 +94,102 @@ void INIToCoreReader::parse( const string& filename ) { * \param section The INI section (component name, as interpreted by the core) * \param name The name of the variable. * \param value The value of the variable to set. - * \exception h_exception Any errors generated by the core while trying to setData. + * \exception h_exception Any errors generated by the core while trying to + * setData. */ -int INIToCoreReader::valueHandler( void* user, const char* section, const char* name, - const char* value ) -{ - #ifdef USE_RCPP - // Load R functions for path management - Rcpp::Environment base("package:base"); - Rcpp::Function normalizePath = base["normalizePath"]; - Rcpp::Function dirname = base["dirname"]; - Rcpp::Function filepath = base["file.path"]; - #endif - - static const string csvFilePrefix = "csv:"; - INIToCoreReader* reader = (INIToCoreReader*)user; - - H_ASSERT( reader->core, "core pointer is null!" ); - string nameStr = name; - string valueStr = value; - StringIter startBracket = find( nameStr.begin(), nameStr.end(), '[' ); - try { - if( startBracket != nameStr.end() ) { - // the variableName[2000] = 5.0 case - StringIter endBracket = find( nameStr.begin(), nameStr.end(), ']' ); - - // the parseTSeriesIndex method will do error checking on if the brackets - // were found and make sense - double valueIndex = parseTSeriesIndex( startBracket, endBracket, nameStr.end() ); - - // substring the first part of name before the open bracket which is the - // actual variable name the core knows about - nameStr = string( static_cast( nameStr.begin() ), startBracket ); - message_data data( valueStr ); - data.date = valueIndex; - reader->core->setData( section, nameStr, data ); - } else if( boost::starts_with( valueStr, csvFilePrefix ) ) { - // the variableName = csv:input/table.csv case - - // remove the special case identifier to figure out the actual file name - // to process - string csvFileName( valueStr.begin() + csvFilePrefix.size(), valueStr.end() ); - #ifdef USE_RCPP - // ANS: This is the algorithm used if Hector is compiled - // as an R package. - // - // If the csvFileName normalizes to a real path, use that. - // Otherwise, assume that it is pointing to a file in the - // same directory as the INI file. - try { - // Second argument is "winslash", which is only used - // on Windows machines and is ignored for Unix-based - // systems. "\\" (single backward slash) is the - // default. Need it here to access the third argument - // -- mustWork -- which throws the error to be caught - // if the path doesn't exist - csvFileName = Rcpp::as(normalizePath(csvFileName, "\\", true)); - } catch (...) { - // Get the full path of the INI file with - // normalizePath. Then, get just the directory using dirname. - Rcpp::String parentPath = dirname(normalizePath(reader->iniFilePath)); - csvFileName = Rcpp::as(filepath(parentPath, csvFileName)); - } - #else - // ANS:: Algorithm for standalone Hector. Same logic -- if - // the given path (absolute or relative) points to a file - // that exists, use that. Otherwise, assume that the path - // is relative to the INI file's directory. - fs::path csvFilePath( csvFileName ); - if ( !fs::exists(csvFilePath) ) { - fs::path iniFilePath( reader->iniFilePath ); - fs::path fullPath( iniFilePath.parent_path() / csvFilePath ); - csvFileName = fullPath.string(); - } - #endif - - CSVTableReader tableReader( csvFileName ); - tableReader.process( reader->core, section, nameStr ); - } else { - // the typical variableName = value case - // note that this implies name is not a time series variable and the - // index will be left as the default uninitialized constant - message_data data( valueStr ); - reader->core->setData( section, name, data ); - } - } - catch(const h_exception& e) { - // We must guard this exception, since allowing it to - // propogate back to ini_parse is unsafe. - // Set the caught error so that when we get back from - // ini_parse we will have the original exception to - // rethrow - reader->valueHandlerException = e; - return 0; // Error code for ini_parse - } +int INIToCoreReader::valueHandler(void *user, const char *section, + const char *name, const char *value) { +#ifdef USE_RCPP + // Load R functions for path management + Rcpp::Environment base("package:base"); + Rcpp::Function normalizePath = base["normalizePath"]; + Rcpp::Function dirname = base["dirname"]; + Rcpp::Function filepath = base["file.path"]; + Rcpp::Function fileexists = base["file.exists"]; +#endif - return 1; + static const string csvFilePrefix = "csv:"; + INIToCoreReader *reader = (INIToCoreReader *)user; + + H_ASSERT(reader->core, "core pointer is null!"); + string nameStr = name; + string valueStr = value; + StringIter startBracket = find(nameStr.begin(), nameStr.end(), '['); + try { + if (startBracket != nameStr.end()) { + // the variableName[2000] = 5.0 case + StringIter endBracket = find(nameStr.begin(), nameStr.end(), ']'); + + // the parseTSeriesIndex method will do error checking on if the brackets + // were found and make sense + double valueIndex = + parseTSeriesIndex(startBracket, endBracket, nameStr.end()); + + // substring the first part of name before the open bracket which is the + // actual variable name the core knows about + nameStr = string(static_cast(nameStr.begin()), startBracket); + message_data data(valueStr); + data.date = valueIndex; + reader->core->setData(section, nameStr, data); + } else if (boost::starts_with(valueStr, csvFilePrefix)) { + // the variableName = csv:input/table.csv case + + // remove the special case identifier to figure out the actual file name + // to process + string csvFileName(valueStr.begin() + csvFilePrefix.size(), + valueStr.end()); +#ifdef USE_RCPP + // ANS: This is the algorithm used if Hector is compiled + // as an R package. + // + // If the csvFileName normalizes to a real path, use that. + // Otherwise, assume that it is pointing to a file in the + // same directory as the INI file. + // csvFileName = Rcpp::as(filepath(csvFileName)); + if (!Rcpp::as(fileexists(csvFileName))) { + Rcpp::String parentPath = dirname(normalizePath(reader->iniFilePath)); + csvFileName = Rcpp::as(filepath(parentPath, csvFileName)); + } +#else + // ANS:: Algorithm for standalone Hector. Same logic -- if + // the given path (absolute or relative) points to a file + // that exists, use that. Otherwise, assume that the path + // is relative to the INI file's directory. + fs::path csvFilePath(csvFileName); + if (!fs::exists(csvFilePath)) { + fs::path iniFilePath(reader->iniFilePath); + fs::path fullPath(iniFilePath.parent_path() / csvFilePath); + csvFileName = fullPath.string(); + } +#endif + + CSVTableReader tableReader(csvFileName); + tableReader.process(reader->core, section, nameStr); + } else { + // the typical variableName = value case + // note that this implies name is not a time series variable and the + // index will be left as the default uninitialized constant + message_data data(valueStr); + reader->core->setData(section, name, data); + } + } catch (const h_exception &e) { + // We must guard this exception, since allowing it to + // propogate back to ini_parse is unsafe. + // Set the caught error so that when we get back from + // ini_parse we will have the original exception to + // rethrow + reader->valueHandlerException = e; + return 0; // Error code for ini_parse + } + + return 1; } //------------------------------------------------------------------------------ /*! \brief Parse a single time series index from a variable name. * - * The date index is assumed to be enclosed within square brackets. Extra white - * space is allowed. + * The date index is assumed to be enclosed within square brackets. Extra + * white space is allowed. * * \param startBracket A string iterator pointing the the open bracket in the * variable name. @@ -197,26 +200,25 @@ int INIToCoreReader::valueHandler( void* user, const char* section, const char* * \exception h_exception If the start or end brackets were invalid or if the * parsed index was not a double. */ -double INIToCoreReader::parseTSeriesIndex( const StringIter startBracket, +double INIToCoreReader::parseTSeriesIndex(const StringIter startBracket, const StringIter endBracket, - const StringIter strEnd ) -{ - H_ASSERT( startBracket != strEnd, "index formatting issue" ); - H_ASSERT( endBracket != strEnd, "index formatting issue" ); - H_ASSERT( startBracket < endBracket, "index formatting issue" ); - - using namespace boost; - - // substring out the string in between the brackets - string dateIndexStr( startBracket + 1, endBracket ); - try { - // remove extra white space before converting - trim( dateIndexStr ); - return lexical_cast( dateIndexStr ); - } catch( bad_lexical_cast& castException ) { - H_THROW( "Could not convert index to double: "+dateIndexStr+", exception: " - +castException.what() ); - } + const StringIter strEnd) { + H_ASSERT(startBracket != strEnd, "index formatting issue"); + H_ASSERT(endBracket != strEnd, "index formatting issue"); + H_ASSERT(startBracket < endBracket, "index formatting issue"); + + using namespace boost; + + // substring out the string in between the brackets + string dateIndexStr(startBracket + 1, endBracket); + try { + // remove extra white space before converting + trim(dateIndexStr); + return lexical_cast(dateIndexStr); + } catch (bad_lexical_cast &castException) { + H_THROW("Could not convert index to double: " + dateIndexStr + + ", exception: " + castException.what()); + } } -} +} // namespace Hector diff --git a/src/logger.cpp b/src/logger.cpp index 7c00ddf35..b0f2befaa 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,24 +12,18 @@ * */ -#include #include "logger.hpp" #include "h_util.hpp" #include - -// If using the R package, use Rcpp to call R's file processing -// functions. Otherwise (e.g. if building standalone Hector), fall -// back to boost::filesystem (which needs to be installed). -#ifdef USE_RCPP -#include -#else -#include -namespace fs = boost::filesystem; -#endif +#include +#include +#include +#include #ifdef USE_RCPP // This should be defined only if compiling as an R package #include + #define STDOUT_STREAM Rcpp::Rcout #else #define STDOUT_STREAM std::cout @@ -39,96 +33,20 @@ namespace Hector { using namespace std; -//------------------------------------------------------------------------------ -// Methods for LoggerStreamBuf - -//------------------------------------------------------------------------------ -/*! \brief Constructor which will allow a user the option to echo output to a - * console buffer. - * - * \param echoToScreen Boolean to indicate whether output will be echoed. - */ -Logger::LoggerStreamBuf::LoggerStreamBuf( const bool echoToScreen ) -:filebuf() -{ - consoleBuf = echoToScreen ? STDOUT_STREAM.rdbuf() : 0; -} - -//------------------------------------------------------------------------------ -/*! \brief Destructor - */ -Logger::LoggerStreamBuf::~LoggerStreamBuf() { -} - -//------------------------------------------------------------------------------ -/*! \brief Synchronize stream buffer. - * \return 0 indicates success, any other value is an error code. - */ -int Logger::LoggerStreamBuf::sync() { - // sync will force an overflow to write EOF so wait until that occurs - // before forward a flush to the console - int ret = filebuf::sync(); - if(consoleBuf) { - ret = consoleBuf->pubsync(); - } - - return ret; -} - -//------------------------------------------------------------------------------ -/*! \brief Write a character in the case of a buffer overflow. - * \param c Character to be written. - * \return Any value other than EOF indicates success. - */ -int Logger::LoggerStreamBuf::overflow( int c ) { - if(consoleBuf && c == EOF ) { - // if this overflow was due to a sync then copy the current buffer - // to the console before it gets flushed - consoleBuf->sputn( pbase(), pptr() - pbase() ); - } - - return filebuf::overflow( c ); -} - -//------------------------------------------------------------------------------ -/*! \brief Write a sequence of characters. - * \param c Character sequence to be written. - * \param n Number of characters to be written. - * \return The actual number of characters written. - */ -streamsize Logger::LoggerStreamBuf::xsputn( const char* s, streamsize n ) { - if( consoleBuf && ( n + pptr() > epptr() ) && ( epptr() - pptr() > 0 ) ) { - // if the size of the incoming string is greater than than the buffer - // then it will flush the buffer and flush the given string without - // giving an overflow so we will need to update the console buffer now - consoleBuf->sputn( pbase(), pptr() - pbase() ); - consoleBuf->sputn( s, n ); - } - - return filebuf::xsputn( s, n ); -} - //------------------------------------------------------------------------------ // Methods for Logger //------------------------------------------------------------------------------ /*! \brief Create an uninitialized logger. */ -Logger::Logger() : -minLogLevel( WARNING ), -isInitialized( false ), -loggerStream( 0 ) -{ -} +Logger::Logger() : minLogLevel(WARNING), isInitialized(false), loggerStream() {} //------------------------------------------------------------------------------ /*! \brief Destructor. * * The logger will be automatically closed on destruction. */ -Logger::~Logger() { - close(); -} +Logger::~Logger() { close(); } //------------------------------------------------------------------------------ /*! \brief Open and initialize the logger. @@ -150,32 +68,51 @@ Logger::~Logger() { * initialized. * */ -void Logger::open( const string& logName, bool echoToScreen, - bool echoToFile, LogLevel minLogLevel ) { - H_ASSERT( !isInitialized, "This log has already been initialized." ); +void Logger::open(const string &logName, bool echoToScreen, bool echoToFile, + LogLevel minLogLevel) { + H_ASSERT(!isInitialized, "This log has already been initialized."); + + this->minLogLevel = minLogLevel; + this->echoToFile = echoToFile; + + using namespace boost::iostreams; - this->minLogLevel = minLogLevel; - this->echoToFile = echoToFile; + if (echoToScreen) { + // if the user wants to echo to screen we can use a "tee" to + // duplicate the output to go to the screen as well as carry + // on to potentially a file + tee_filter screenEcho(STDOUT_STREAM); + loggerStream.push(screenEcho); + } - if (echoToFile) { - chk_logdir(LOG_DIRECTORY); + if (echoToFile) { + ensure_dir_exists(LOG_DIRECTORY); - const string fqName = LOG_DIRECTORY + logName + LOG_EXTENSION; // fully-qualified name + const string fqName = + LOG_DIRECTORY + logName + LOG_EXTENSION; // fully-qualified name - LoggerStreamBuf* buff = new LoggerStreamBuf( echoToScreen ); - if( !buff->open( fqName.c_str(), ios::out ) ) - H_THROW("Unable to open log file " + fqName); + file_sink fileBuff(fqName); + if (!fileBuff.is_open()) + H_THROW("Unable to open log file " + fqName); - loggerStream.rdbuf( buff ); - } else { - loggerStream.rdbuf( STDOUT_STREAM.rdbuf() ); - } - enabled = echoToScreen || echoToFile; + // add the file sink to the output stream which will serve as an end point + // for the output data + loggerStream.push(fileBuff); + } else { + // if we are not going to echo to file explicitly set the end point to + // a null device + // doing it this way covers the cases: + // 1) that we are going to echo to screen but not file + // 2) If a user by passes shouldWrite / H_LOG this will ensure the output + // still goes nowhere + loggerStream.push(null_sink()); + } + enabled = echoToScreen || echoToFile; - isInitialized = true; + isInitialized = true; - // ensure that the log header is always printed. - printLogHeader( max( minLogLevel, NOTICE ) ); + // ensure that the log header is always printed. + printLogHeader(max(minLogLevel, NOTICE)); } //------------------------------------------------------------------------------ @@ -183,8 +120,8 @@ void Logger::open( const string& logName, bool echoToScreen, * \param writeLevel The priority level to check. * \return True if this level would be logged, false otherwise. */ -bool Logger::shouldWrite( const LogLevel writeLevel ) const { - return enabled && writeLevel >= minLogLevel; +bool Logger::shouldWrite(const LogLevel writeLevel) const { + return enabled && writeLevel >= minLogLevel; } //------------------------------------------------------------------------------ @@ -198,118 +135,70 @@ bool Logger::shouldWrite( const LogLevel writeLevel ) const { * H_LOG(log, level). * \exception h_exception If this logger has not been initialized. */ -ostream& Logger::write( const LogLevel writeLevel, - const string& functionInfo ) -{ - H_ASSERT( isInitialized, "can't write to logger until initialized" ); +ostream &Logger::write(const LogLevel writeLevel, const string &functionInfo) { + H_ASSERT(isInitialized, "can't write to logger until initialized"); - // note that we not double checking the writeLevel - return loggerStream << getDateTimeStamp() << ':' <( loggerStream.rdbuf() ); - lsbuf->close(); - delete lsbuf; - } - /*! \note Setting isInitialized back to false will allow this logger to - * be reopened. - */ - isInitialized = false; - } + if (isInitialized) { + /*! \note Setting isInitialized back to false will allow this logger to + * be reopened. + */ + isInitialized = false; + loggerStream.reset(); + } } - //------------------------------------------------------------------------------ /*! \brief Convert the enum to a string so that it can be logged. * \param logLevel The enum to convert. * \return The string representing the given LogLevel. */ -const string& Logger::logLevelToStr( const LogLevel logLevel ) { - const static string logLevelStrings[] = { - "DEBUG", - "NOTICE", - "WARNING", - "SEVERE" - }; +const string &Logger::logLevelToStr(const LogLevel logLevel) { + const static string logLevelStrings[] = {"DEBUG", "NOTICE", "WARNING", + "SEVERE"}; - return logLevelStrings[ logLevel ]; + return logLevelStrings[logLevel]; } //------------------------------------------------------------------------------ /*! \brief Get the current data and time stamp. * \return A string representing the current date and time. */ -const char* Logger::getDateTimeStamp() { - time_t rawtime; - struct tm* timeinfo; - time( &rawtime ); - timeinfo = localtime( &rawtime ); - char* ret = asctime( timeinfo ); - // remove the newline at the end of the string - int i = 0; - while( ret[ i ] != 0 ) { - i++; - } - if( i > 0 ) { - ret[ i - 1 ] = 0; - } +const char *Logger::getDateTimeStamp() { + time_t rawtime; + struct tm *timeinfo; + time(&rawtime); + timeinfo = localtime(&rawtime); + char *ret = asctime(timeinfo); + // remove the newline at the end of the string + int i = 0; + while (ret[i] != 0) { + i++; + } + if (i > 0) { + ret[i - 1] = 0; + } - return ret; -} - -/*! - * \brief Checks if the given directory exists. If not it attempts to create - * it and if it was unable to do that it will raise an exception. - * \param dir The directory to check/create. - */ -void Logger::chk_logdir(std::string dir) -{ -#ifdef USE_RCPP - // Load R functions for path management - Rcpp::Environment base("package:base"); - Rcpp::Environment utils("package:utils"); - Rcpp::Function dirCreate = base["dir.create"]; - Rcpp::Function file_test = utils["file_test"]; - // use file_test -d to see if dir exists and is a directory - if(!Rcpp::as(file_test("-d", dir))) { - // either does not exist or is a file - // we can try to create it and if it still fails it must - // have been a file or a permissions error - if(!Rcpp::as(dirCreate(dir))) { - // no luck, throw exception - H_THROW("Directory "+dir+" does not exist and could not create it."); - } - } -#else - fs::path fs_dir(dir); - // first check to see if dir exists and is a directory - if(!fs::is_directory(fs_dir)) { - // either does not exist or is a file - // we can try to create it and if it still fails it must - // have been a file or a permissions error - boost::system::error_code status; - if(!fs::create_directory(fs_dir, status)) { - H_THROW("Directory "+dir+" does not exist and could not create it."); - } - } -#endif + return ret; } //------------------------------------------------------------------------------ -/*! \brief Print a standard header at the top of all logs that indicates the model version. - * \param writeLevel The priority level to print the header. +/*! \brief Print a standard header at the top of all logs that indicates the + * model version. \param writeLevel The priority level to print the header. */ -void Logger::printLogHeader( const LogLevel writeLevel ) { - H_ASSERT( isInitialized, "Logger must be initialized" ); +void Logger::printLogHeader(const LogLevel writeLevel) { + H_ASSERT(isInitialized, "Logger must be initialized"); - H_LOG( (*this), writeLevel ) << MODEL_NAME << " version " << MODEL_VERSION << endl; + H_LOG((*this), writeLevel) + << MODEL_NAME << " version " << MODEL_VERSION << endl; } -} +} // namespace Hector diff --git a/src/main.cpp b/src/main.cpp index f5f95218e..ca1899107 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,15 +12,17 @@ * */ +#include #include #include "core.hpp" -#include "logger.hpp" +#include "csv_outputstream_visitor.hpp" +#include "csv_tracking_visitor.hpp" #include "h_exception.hpp" -#include "h_util.hpp" #include "h_reader.hpp" +#include "h_util.hpp" #include "ini_to_core_reader.hpp" -#include "csv_outputstream_visitor.hpp" +#include "logger.hpp" #include "unitval.hpp" @@ -31,73 +33,96 @@ using namespace std; * * Starting point for wrapper, not the core. */ -int main (int argc, char * const argv[]) { - using namespace Hector; - - try { - // Create the Hector core - Core core; - Logger& glog = core.getGlobalLogger(); - H_LOG( glog, Logger::NOTICE ) << MODEL_NAME << " wrapper start" << endl; - - // Parse the main configuration file - if( argc > 1 ) { - if( ifstream( argv[1] ) ) { - h_reader reader( argv[1], INI_style ); - } else { - H_LOG( glog, Logger::SEVERE ) << "Couldn't find input file " << argv[ 1 ] << endl; - H_THROW( "Couldn't find input file" ) - } - } else { - H_LOG( glog, Logger::SEVERE ) << "No configuration filename!" << endl; - H_THROW( "Usage: " ) - } - - // Initialize the core and send input data to it - H_LOG( glog, Logger::NOTICE ) << "Creating and initializing the core." << endl; - core.init(); - - H_LOG( glog, Logger::NOTICE ) << "Setting data in the core." << endl; - INIToCoreReader coreParser( &core ); - coreParser.parse( argv[1] ); - - // Create visitors - H_LOG( glog, Logger::NOTICE ) << "Adding visitors to the core." << endl; - filebuf csvoutputStreamFile; - - // Open the stream output file, which has an optional run name (specified in the INI file) in it - string rn = core.getRun_name(); - if( rn == "" ) - csvoutputStreamFile.open( string( string( OUTPUT_DIRECTORY ) + "outputstream.csv" ).c_str(), ios::out ); - else - csvoutputStreamFile.open( string( string( OUTPUT_DIRECTORY ) + "outputstream_" + rn + ".csv" ).c_str(), ios::out ); - - - ostream outputStream( &csvoutputStreamFile ); - CSVOutputStreamVisitor csvOutputStreamVisitor( outputStream ); - core.addVisitor( &csvOutputStreamVisitor ); - - H_LOG(glog, Logger::NOTICE) << "Calling prepareToRun()\n"; - core.prepareToRun(); - - H_LOG( glog, Logger::NOTICE ) << "Running the core." << endl; - core.run(); - - H_LOG( glog, Logger::NOTICE ) << "Hector wrapper end" << endl; - glog.close(); - } - catch( h_exception e ) { - cerr << "* Program exception:\n" << e << endl; - return 1; - } - catch( std::exception &e ) { - cerr << "Standard exception: " << e.what() << endl; - return 2; - } - catch( ... ) { - cerr << "Other exception! " << endl; - return 3; +int main(int argc, char *const argv[]) { + using namespace Hector; + + try { + // Create the Hector core + Core core(Hector::Logger::DEBUG, true, true); + Logger &glog = core.getGlobalLogger(); + H_LOG(glog, Logger::NOTICE) << MODEL_NAME << " wrapper start" << endl; + + // Parse the main configuration file + if (argc > 1) { + if (ifstream(argv[1])) { + H_LOG(glog, Logger::NOTICE) << "Reading input file " << argv[1] << endl; + h_reader reader(argv[1], INI_style); + } else { + H_LOG(glog, Logger::SEVERE) + << "Couldn't find input file " << argv[1] << endl; + H_THROW("Couldn't find input file") + } + } else { + H_LOG(glog, Logger::SEVERE) << "No configuration filename!" << endl; + H_THROW("Usage: ") } - return 0; + // Initialize the core and send input data to it + H_LOG(glog, Logger::NOTICE) + << "Creating and initializing the core." << endl; + core.init(); + + H_LOG(glog, Logger::NOTICE) << "Setting data in the core." << endl; + INIToCoreReader coreParser(&core); + coreParser.parse(argv[1]); + + // Create visitors + H_LOG(glog, Logger::NOTICE) << "Adding visitors to the core." << endl; + filebuf csvoutputStreamFile; + filebuf csvFluxPoolTrackingFile; + + // Open the stream output file, which has an optional run name (specified in + // the INI file) in it First ensure that OUTPUT_DIRECTORY exists so that we + // can place our outputs in there Note: this will attempt to create + // OUTPUT_DIRECTORY if it indeed did not exist and it will throw an + // exception if it couldn't create it + ensure_dir_exists(OUTPUT_DIRECTORY); + + string rn = core.getRun_name(); + if (rn == "") + csvoutputStreamFile.open( + string(string(OUTPUT_DIRECTORY) + "outputstream.csv").c_str(), + ios::out); + else + csvoutputStreamFile.open( + string(string(OUTPUT_DIRECTORY) + "outputstream_" + rn + ".csv") + .c_str(), + ios::out); + // Open the simpleNbox tracking output file, similarly named + if (rn == "") + csvFluxPoolTrackingFile.open( + string(string(OUTPUT_DIRECTORY) + "tracking.csv").c_str(), ios::out); + else + csvFluxPoolTrackingFile.open( + string(string(OUTPUT_DIRECTORY) + "tracking_" + rn + ".csv").c_str(), + ios::out); + + ostream outputStream(&csvoutputStreamFile); + CSVOutputStreamVisitor csvOutputStreamVisitor(outputStream); + core.addVisitor(&csvOutputStreamVisitor); + + ostream trackingStream(&csvFluxPoolTrackingFile); + CSVFluxPoolVisitor csvFluxPoolVisitor(trackingStream); + core.addVisitor(&csvFluxPoolVisitor); + + H_LOG(glog, Logger::NOTICE) << "Calling prepareToRun()\n"; + core.prepareToRun(); + + H_LOG(glog, Logger::NOTICE) << "Running the core." << endl; + core.run(); + + H_LOG(glog, Logger::NOTICE) << "Hector wrapper end" << endl; + glog.close(); + } catch (h_exception e) { + cerr << "* Program exception:\n" << e << endl; + return 1; + } catch (std::exception &e) { + cerr << "Standard exception: " << e.what() << endl; + return 2; + } catch (...) { + cerr << "Other exception! " << endl; + return 3; + } + + return 0; } diff --git a/src/makefile.standalone b/src/makefile.standalone index 13e24e23b..2ab5bc707 100644 --- a/src/makefile.standalone +++ b/src/makefile.standalone @@ -1,100 +1,135 @@ +## Makefile for Hector v3 +## Original author: Robert Link +## Greatly revised by Ben Bond-Lamberty, 2021 + +## ---------------------------------------------------- +## Build settings ifeq ($(strip $(CXX)),) -CXX = g++ -endif -CXXFLAGS = -g $(INCLUDES) $(OPTFLAGS) $(CXXEXTRA) $(CXXPROF) $(WFLAGS) -MMD -std=c++14 + CXX = g++ +endif + +## Check if the user has the c++17 standard library which +## is mostly just so that we do not have to bother linking any +## boost libraries. If not we fall back to c++14 and will require +## the boost system and filesystem libraries are compiled. +ifeq ($(strip $(NO_CXX17)),) + ## We can just set the standard and leave BOOST_LDFLAGS and BOOST_LIB_IMPORT + ## alone + CXXSTD = c++17 +else + ## Not set so use the default standard: c++14 and set the linker flags + ## to find and link boost system/filesystem which are then required + BOOST_LDFLAGS = -L"$(BOOSTLIB)" -Wl,-rpath,"$(BOOSTLIB)" + BOOST_LIB_IMPORT = -lboost_system -lboost_filesystem + CXXSTD = c++14 +endif +CXXFLAGS = -g $(INCLUDES) $(OPTFLAGS) $(CXXEXTRA) $(CXXPROF) $(WFLAGS) -MMD -std=$(CXXSTD) +## Note that $(CCEXTRA) allows for custom flags; see https://github.com/JGCRI/hector/issues/407 CFLAGS = -g $(INCLUDES) $(OPTFLAGS) $(CCEXTRA) -MMD -INCLUDES = -I"$(BOOSTROOT)" -I"$(HDRDIR)" -WFLAGS = -Wall -Wno-unused-local-typedefs # Turn on warnings, turn off one particularly annoying one that infests Boost libs +INCLUDES = -I"$(BOOSTINC)" -I"$(HDRDIR)" +WFLAGS = -Wall -Wno-unused-local-typedefs # Turn off warnings, esp. one common in Boost files OPTFLAGS = -O3 -LDFLAGS = $(CXXPROF) -L"$(BOOSTLIB)" -L. -Wl,-rpath,"$(BOOSTLIB)" +LDFLAGS = $(CXXPROF) -L. $(BOOST_LDFLAGS) +HDRDIR = $(CURDIR)/../inst/include -export CXXFLAGS OPTFLAGS +## These will be needed by the testing makefile +export CXX CXXFLAGS OPTFLAGS LDFLAGS INCLUDES -## project root -HROOT = $(CURDIR)/.. -HDRDIR = $(HROOT)/inst/include -export HROOT +## ---------------------------------------------------- +## Boost and Googletest settings -## Boost root -ifeq ($(strip $(BOOSTVERSION)),) -BOOSTVERSION = 1_63_0 -endif -ifeq ($(strip $(BOOSTROOT)),) -BOOSTROOT = $(HOME)/src/boost_$(BOOSTVERSION) -endif -ifeq ($(strip $(BOOSTLIB)),) -## BOOSTROOT can be customized in the environment by compiling as: +## BOOSTROOT and GTROOT can both be customized in the environment by e.g.: ## BOOSTROOT=/path/to/boost_X_Y_Z make hector -## For package manager installs, this could be in any of the following -## locations (non-exhaustive list): -## - /usr (boost libraries are in /usr/lib and headers/includes are in /usr/include) -## - /usr/local +## For package manager installs, this could be in locations such as: +## - /usr - I.e., libraries are in /usr/local/lib and headers/includes are in /usr/local/include +## - /usr/local - This is the default and used by the GitHub Actions YAML files +## If libraries are installed here, there's nothing to do or define ## - /usr/local/Cellar/boost_ -- For MacOS HomeBrew installs +## ## NOTE that if compiling BOOST from source, libraries may be ## installed in BOOSTROOT/stage/lib, in which case you may need to ## create a symbolic link from BOOSTROOT/lib to BOOSTROOT/stage/lib. -BOOSTLIB = $(BOOSTROOT)/lib +## +## If the header and library files aren't in include/ and lib/ subdirectories of +## BOOSTROOT and/or GTROOT, you can also define BOOSTINC, BOOSTLIB, GTINC, and GTLIB. +ifeq ($(strip $(BOOSTROOT)),) + BOOSTROOT = /usr/local/ +endif +ifeq ($(strip $(BOOSTINC)),) + BOOSTINC = $(BOOSTROOT)/include +endif +ifeq ($(strip $(BOOSTLIB)),) + BOOSTLIB = $(BOOSTROOT)/lib endif -## Gtest root -GTVERS = 1.5.0 -GTROOT = $(HROOT)/libs/gtest-$(GTVERS) -GTINC = $(GTROOT)/include -GTLIB = $(GTROOT)/lib/.libs +ifeq ($(strip $(GTROOT)),) + GTROOT = /usr/local/ +endif +ifeq ($(strip $(GTINC)),) + GTINC = $(GTROOT)/include +endif +ifeq ($(strip $(GTLIB)),) + GTLIB = $(GTROOT)/lib +endif +## These will be needed by the testing makefile export GTLIB GTINC - -## sources in the top level directory +## ---------------------------------------------------- +## Sources in the top level directory CXXSRCS = $(wildcard *.cpp) MAINS = main.cpp main-api.cpp RCPPS = $(wildcard rcpp_*.cpp) RcppExports.cpp +## Remove the mains, as well as Rcpp files, from source list +## The main file will be added later; *which* main depends on the target CXXSRCS := $(filter-out $(MAINS), $(CXXSRCS)) CXXSRCS := $(filter-out $(RCPPS), $(CXXSRCS)) CSRCS = $(wildcard *.c) OBJS = $(CXXSRCS:.cpp=.o) $(CSRCS:.c=.o) -DEPS = $(CXXSRCS:.cpp=.d) $(CSRCS:.c=.d) -## default target +## ---------------------------------------------------- +## Default target hector: libhector.a main.o - $(CXX) $(LDFLAGS) -o hector main.o -lhector -lm -lboost_system -lboost_filesystem + $(CXX) $(LDFLAGS) -o hector main.o -lhector -lm $(BOOST_LIB_IMPORT) -## alternate version that uses the capabilities needed for driving -## hector from an external source (e.g., an IAM) -## DO NOT BUILD THIS TARGET UNLESS YOU ARE TESTING HECTOR'S API -## FUNCTIONALITY. It uses some hard-coded emissions for testing and likely +## Testing target +testing: libhector.a + $(MAKE) -C unit-testing hector-unit-tests + +## Alternate version that uses the capabilities needed for driving +## Hector from an external source (e.g., an IAM) +## DO NOT BUILD THIS TARGET UNLESS YOU ARE TESTING HECTOR'S API FUNCTIONALITY. +## It uses some hard-coded emissions for testing and likely ## will not do what you want it to under all circumstances. # hector-api: libhector.a main-api.o # $(CXX) $(LDFLAGS) -o hector-api main-api.o -lhector -lgsl -lgslcblas -lm -## Targets that do not literally name files -.PHONY: clean test gtest - -test: testing - cd testing && ./hector-unit-tests - -testing: INCLUDES += -I$(GTINC) -testing: gtest components topdir - $(MAKE) -C testing hector-unit-tests +## Targets that do not literally name files; we always want them run when requested +.PHONY: clean testing chkvar -lib: libhector.a libhector.a: $(OBJS) - ar ru libhector.a *.o - -## top level directory objects --include $(DEPS) - -gtest: - if [ ! -f $(GTROOT)/config.status ] ; then cd $(GTROOT) && ./configure; fi - $(MAKE) -C $(GTROOT) + ar cr libhector.a $(OBJS) clean: - -$(MAKE) -C testing clean - -rm hector *.o *.d + -$(MAKE) -C unit-testing clean + -rm -f hector *.o *.d -rm -rf build chkvar: - echo $(CXXSRCS) - echo $(CSRCS) - echo $(OBJS) - echo $(INCLUDES) + @echo "LDFLAGS:" + @echo $(LDFLAGS) + @echo "CXXFLAGS:" + @echo $(CXXFLAGS) + @echo -n "CXXSRCS:" + @echo $(CXXSRCS) + @echo "CSRCS:" + @echo $(CSRCS) + @echo "OBJS:" + @echo $(OBJS) + @echo "INCLUDES:" + @echo $(INCLUDES) + @echo "BOOSTROOT:" + @echo $(BOOSTROOT) + @echo "GTROOT:" + @echo $(GTROOT) + -$(MAKE) -C unit-testing chkvar diff --git a/src/n2o_component.cpp b/src/n2o_component.cpp index 6d6594a06..2c3288182 100644 --- a/src/n2o_component.cpp +++ b/src/n2o_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,11 +12,11 @@ * */ -#include #include "n2o_component.hpp" -#include "core.hpp" #include "avisitor.hpp" +#include "core.hpp" #include "h_util.hpp" +#include namespace Hector { @@ -26,213 +26,229 @@ using namespace std; /*! \brief Constructor */ N2OComponent::N2OComponent() { - N2O_emissions.allowInterp( true ); - N2O_emissions.name = N2O_COMPONENT_NAME; - N2O_natural_emissions.allowInterp( true ); - N2O_natural_emissions.name = D_NAT_EMISSIONS_N2O; - N2O.allowInterp( true ); - N2O.name = D_ATMOSPHERIC_N2O; - TAU_N2O.allowInterp( true ); - TAU_N2O.name = D_TAU_N2O; - } + N2O_emissions.allowInterp(true); + N2O_emissions.name = N2O_COMPONENT_NAME; + N2O_natural_emissions.allowInterp(true); + N2O_natural_emissions.name = D_NAT_EMISSIONS_N2O; + N2O.allowInterp(true); + N2O.name = D_N2O_CONC; + TAU_N2O.allowInterp(true); + TAU_N2O.name = D_TAU_N2O; +} //------------------------------------------------------------------------------ /*! \brief Destructor */ -N2OComponent::~N2OComponent() { -} +N2OComponent::~N2OComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string N2OComponent::getComponentName() const { - const string name = N2O_COMPONENT_NAME; + const string name = N2O_COMPONENT_NAME; - return name; + return name; } //------------------------------------------------------------------------------ // documentation is inherited -void N2OComponent::init( Core* coreptr ) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; - core = coreptr; - oldDate = core->getStartDate(); - - // Inform core what data we can provide - core->registerCapability( D_ATMOSPHERIC_N2O, getComponentName() ); - core->registerCapability( D_PREINDUSTRIAL_N2O, getComponentName() ); - core->registerCapability( D_EMISSIONS_N2O, getComponentName() ); - core->registerCapability( D_CONSTRAINT_N2O, getComponentName() ); - // register data we can accept as input - core->registerInput(D_EMISSIONS_N2O, getComponentName()); - core->registerInput(D_PREINDUSTRIAL_N2O, getComponentName()); - core->registerInput(D_CONSTRAINT_N2O, getComponentName()); - core->registerInput(D_NAT_EMISSIONS_N2O, getComponentName()); +void N2OComponent::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + core = coreptr; + oldDate = core->getStartDate(); + + // Inform core what data we can provide + core->registerCapability(D_N2O_CONC, getComponentName()); + core->registerCapability(D_PREINDUSTRIAL_N2O, getComponentName()); + core->registerCapability(D_EMISSIONS_N2O, getComponentName()); + core->registerCapability(D_CONSTRAINT_N2O, getComponentName()); + // register data we can accept as input + core->registerInput(D_EMISSIONS_N2O, getComponentName()); + core->registerInput(D_PREINDUSTRIAL_N2O, getComponentName()); + core->registerInput(D_CONSTRAINT_N2O, getComponentName()); + core->registerInput(D_NAT_EMISSIONS_N2O, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval N2OComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - setData(datum, info); - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval N2OComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); - return returnval; + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void N2OComponent::setData( const string& varName, - const message_data& data ) -{ - try { - if( varName == D_PREINDUSTRIAL_N2O ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - N0 = data.getUnitval( U_PPBV_N2O ); - } else if( varName == D_EMISSIONS_N2O ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - N2O_emissions.set(data.date, data.getUnitval( U_TG_N ) ); - } else if( varName == D_NAT_EMISSIONS_N2O ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - N2O_natural_emissions.set(data.date, data.getUnitval( U_TG_N ) ); - } else if( varName == D_CONVERSION_N2O ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - UC_N2O = data.getUnitval(U_TG_PPBV); - } else if( varName == D_INITIAL_LIFETIME_N2O ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - TN2O0 = data.getUnitval( U_YRS ); - } else if( varName == D_ATMOSPHERIC_N2O ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - N2O.set( data.date, data.getUnitval( U_PPBV_N2O ) ); - } else if( varName == D_CONSTRAINT_N2O ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - N2O_constrain.set( data.date, data.getUnitval( U_PPBV_N2O ) ); - } else { - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void N2OComponent::setData(const string &varName, const message_data &data) { + try { + if (varName == D_PREINDUSTRIAL_N2O) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + if (data.getUnitval(U_PPBV_N2O).value(U_PPBV_N2O) != 273.87) { + H_LOG(logger, Logger::WARNING) + << "Changing " << varName + << " from default value; this is not recomended and may cause" + << " issues with RF N2O calucation" << std::endl; + } + N0 = data.getUnitval(U_PPBV_N2O); + } else if (varName == D_EMISSIONS_N2O) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + N2O_emissions.set(data.date, data.getUnitval(U_TG_N)); + } else if (varName == D_NAT_EMISSIONS_N2O) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + N2O_natural_emissions.set(data.date, data.getUnitval(U_TG_N)); + } else if (varName == D_CONVERSION_N2O) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + UC_N2O = data.getUnitval(U_TG_PPBV); + } else if (varName == D_INITIAL_LIFETIME_N2O) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + TN2O0 = data.getUnitval(U_YRS); + } else if (varName == D_N2O_CONC) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + N2O.set(data.date, data.getUnitval(U_PPBV_N2O)); + } else if (varName == D_CONSTRAINT_N2O) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + N2O_constrain.set(data.date, data.getUnitval(U_PPBV_N2O)); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited void N2OComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - oldDate = core->getStartDate(); - - if ( N2O_constrain.size() && N2O_constrain.exists( oldDate ) ) { - H_LOG( logger, Logger::WARNING ) << "Overwriting preindustrial N2O value with N2O constraint value" << std::endl; - N0 = N2O_constrain.get( oldDate ); - } - N2O.set( oldDate, N0 ); + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + oldDate = core->getStartDate(); + + if (N2O_constrain.size() && N2O_constrain.exists(oldDate)) { + H_LOG(logger, Logger::WARNING) + << "Overwriting preindustrial N2O value with N2O constraint value" + << std::endl; + N0 = N2O_constrain.get(oldDate); + } + N2O.set(oldDate, N0); } //------------------------------------------------------------------------------ // documentation is inherited -void N2OComponent::run( const double runToDate ) { +void N2OComponent::run(const double runToDate) { - H_ASSERT( !core->inSpinup() && runToDate-oldDate == 1, "timestep must equal 1" ); + H_ASSERT(!core->inSpinup() && runToDate - oldDate == 1, + "timestep must equal 1"); - if ( N2O_constrain.size() && N2O_constrain.exists( runToDate ) ) { - N2O.set( runToDate, N2O_constrain.get( runToDate ) ); - } else { - // Approach modified from Ward and Mahowald, 2014, 10.5194/acp-14-12701-2014 - double previous_n2o = N0.value( U_PPBV_N2O ); - - if (runToDate != oldDate) { - previous_n2o = N2O.get( oldDate ); - } - - // Decay constant varies based on N2O concentrations - // This is Eq. B8 in Ward and Mahowald, 2014 - TAU_N2O.set( runToDate, unitval( TN2O0.value( U_YRS ) * ( pow( previous_n2o /N0.value( U_PPBV_N2O ), -0.05 ) ), U_YRS ) ); - - // Current emissions are the sum of natural and anthropogenic sources - const double current_n2oem = N2O_emissions.get( runToDate ).value( U_TG_N ) + N2O_natural_emissions.get( runToDate ).value( U_TG_N ); - - // This calculation follows Eq. B7 in Ward and Mahowald 2014 - const double dN2O = current_n2oem / UC_N2O - previous_n2o / TAU_N2O.get( runToDate ).value( U_YRS ); - - N2O.set( runToDate, unitval( previous_n2o + dN2O, U_PPBV_N2O ) ); - H_LOG( logger, Logger::DEBUG ) << runToDate << "tau = " << TAU_N2O.get( runToDate ); + if (N2O_constrain.size() && N2O_constrain.exists(runToDate)) { + N2O.set(runToDate, N2O_constrain.get(runToDate)); + } else { + // Approach modified from Ward and Mahowald, 2014, 10.5194/acp-14-12701-2014 + double previous_n2o = N0.value(U_PPBV_N2O); + + if (runToDate != oldDate) { + previous_n2o = N2O.get(oldDate); } - oldDate = runToDate; - H_LOG( logger, Logger::DEBUG ) << runToDate << " N2O = " << N2O.get( runToDate ) << std::endl; + // Decay constant varies based on N2O concentrations + // This is Eq. B8 in Ward and Mahowald, 2014 + TAU_N2O.set(runToDate, + unitval(TN2O0.value(U_YRS) * + (pow(previous_n2o / N0.value(U_PPBV_N2O), -0.05)), + U_YRS)); + + // Current emissions are the sum of natural and anthropogenic sources + const double current_n2oem = + N2O_emissions.get(runToDate).value(U_TG_N) + + N2O_natural_emissions.get(runToDate).value(U_TG_N); + + // This calculation follows Eq. B7 in Ward and Mahowald 2014 + const double dN2O = current_n2oem / UC_N2O - + previous_n2o / TAU_N2O.get(runToDate).value(U_YRS); + + N2O.set(runToDate, unitval(previous_n2o + dN2O, U_PPBV_N2O)); + H_LOG(logger, Logger::DEBUG) + << runToDate << "tau = " << TAU_N2O.get(runToDate); + } + + oldDate = runToDate; + H_LOG(logger, Logger::DEBUG) + << runToDate << " N2O = " << N2O.get(runToDate) << std::endl; } //------------------------------------------------------------------------------ // documentation is inherited -unitval N2OComponent::getData( const std::string& varName, - const double date ) { - - unitval returnval; - - if( varName == D_ATMOSPHERIC_N2O ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for atmospheric N2O" ); - returnval = N2O.get( date ); - } else if( varName == D_PREINDUSTRIAL_N2O ) { - H_ASSERT( date == Core::undefinedIndex(), "Date not allowed for preindustrial N2O" ); - returnval = N0; - } else if( varName == D_EMISSIONS_N2O ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for N2O emissions" ); - returnval = N2O_emissions.get( date ); - } else if( varName == D_NAT_EMISSIONS_N2O ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for natural N2O emissions" ); - returnval = N2O_natural_emissions.get( date ); - } else if( varName == D_CONSTRAINT_N2O ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for N2O constraint" ); - if ( N2O_constrain.exists( date ) ) { - returnval = N2O_constrain.get( date ); - } else { - H_LOG( logger, Logger::DEBUG ) << "No N2O constraint for requested date " << date << - ". Returning missing value." << std::endl; - returnval = unitval( MISSING_FLOAT, U_PPBV_N2O ); - } +unitval N2OComponent::getData(const std::string &varName, const double date) { + + unitval returnval; + + if (varName == D_N2O_CONC) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for atmospheric N2O"); + returnval = N2O.get(date); + } else if (varName == D_PREINDUSTRIAL_N2O) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for preindustrial N2O"); + returnval = N0; + } else if (varName == D_EMISSIONS_N2O) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for N2O emissions"); + returnval = N2O_emissions.get(date); + } else if (varName == D_NAT_EMISSIONS_N2O) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for natural N2O emissions"); + returnval = N2O_natural_emissions.get(date); + } else if (varName == D_CONSTRAINT_N2O) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for N2O constraint"); + if (N2O_constrain.exists(date)) { + returnval = N2O_constrain.get(date); } else { - H_THROW( "Caller is requesting unknown variable: " + varName ); + H_LOG(logger, Logger::DEBUG) + << "No N2O constraint for requested date " << date + << ". Returning missing value." << std::endl; + returnval = unitval(MISSING_FLOAT, U_PPBV_N2O); } + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } - return returnval; + return returnval; } -void N2OComponent::reset(double time) -{ - // reset time counter, and truncate output time series - oldDate = time; - N2O.truncate(time); - TAU_N2O.truncate(time); - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; +//------------------------------------------------------------------------------ +// documentation is inherited +void N2OComponent::reset(double time) { + // reset time counter, and truncate output time series + oldDate = time; + N2O.truncate(time); + TAU_N2O.truncate(time); + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } //------------------------------------------------------------------------------ // documentation is inherited void N2OComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void N2OComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void N2OComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/nh3_component.cpp b/src/nh3_component.cpp new file mode 100644 index 000000000..3f7764b9e --- /dev/null +++ b/src/nh3_component.cpp @@ -0,0 +1,149 @@ +/* Hector -- A Simple Climate Model + Copyright (C) 2022 Battelle Memorial Institute + + Please see the accompanying file LICENSE.md for additional licensing + information. +*/ +/* + * nh3_component.cpp + * hector + * + */ + +#include "nh3_component.hpp" +#include "avisitor.hpp" +#include "core.hpp" +#include "h_util.hpp" + +namespace Hector { + +using namespace std; + +//------------------------------------------------------------------------------ +/*! \brief Constructor + */ +NH3Component::NH3Component() { + NH3_emissions.allowInterp(true); + NH3_emissions.name = NH3_COMPONENT_NAME; +} + +//------------------------------------------------------------------------------ +/*! \brief Destructor + */ +NH3Component::~NH3Component() {} + +//------------------------------------------------------------------------------ +// documentation is inherited +string NH3Component::getComponentName() const { + const string name = NH3_COMPONENT_NAME; + + return name; +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void NH3Component::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + core = coreptr; + + // Inform core what data we can accept + core->registerInput(D_EMISSIONS_NH3, getComponentName()); +} + +//------------------------------------------------------------------------------ +// documentation is inherited +unitval NH3Component::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); + + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void NH3Component::setData(const string &varName, const message_data &data) { + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; + + try { + if (varName == D_EMISSIONS_NH3) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + NH3_emissions.set(data.date, data.getUnitval(U_TG)); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); + } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void NH3Component::prepareToRun() { + + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + oldDate = core->getStartDate(); +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void NH3Component::run(const double runToDate) { + H_ASSERT(!core->inSpinup() && runToDate - oldDate == 1, + "timestep must equal 1"); + oldDate = runToDate; +} + +//------------------------------------------------------------------------------ +// documentation is inherited +unitval NH3Component::getData(const std::string &varName, const double date) { + + unitval returnval; + + H_ASSERT(date != Core::undefinedIndex(), "Date required for nh3_component"); + + if (varName == D_EMISSIONS_NH3) { + returnval = NH3_emissions.get(date); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } + + return returnval; +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void NH3Component::reset(double time) { + // Set time counter to requested date; there are no outputs to + // reset. + oldDate = time; + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void NH3Component::shutDown() { + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void NH3Component::accept(AVisitor *visitor) { visitor->visit(this); } + +} // namespace Hector diff --git a/src/o3_component.cpp b/src/o3_component.cpp index 02b93ad69..587bae918 100644 --- a/src/o3_component.cpp +++ b/src/o3_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -14,10 +14,10 @@ #include -#include "o3_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "h_util.hpp" -#include "avisitor.hpp" +#include "o3_component.hpp" namespace Hector { @@ -26,164 +26,160 @@ using namespace std; //------------------------------------------------------------------------------ /*! \brief Constructor */ -OzoneComponent::OzoneComponent() { -} +OzoneComponent::OzoneComponent() {} //------------------------------------------------------------------------------ /*! \brief Destructor */ -OzoneComponent::~OzoneComponent() { -} +OzoneComponent::~OzoneComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string OzoneComponent::getComponentName() const { - const string name = OZONE_COMPONENT_NAME; + const string name = OZONE_COMPONENT_NAME; - return name; + return name; } //------------------------------------------------------------------------------ // documentation is inherited -void OzoneComponent::init( Core* coreptr ) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; - core = coreptr; - - CO_emissions.allowInterp( true ); - NMVOC_emissions.allowInterp( true ); - NOX_emissions.allowInterp( true );//Inputs like CO and NMVOC and NOX, - O3.allowInterp(true); - - - - // Inform core what data we can provide - core->registerCapability( D_ATMOSPHERIC_O3, getComponentName() ); - // Register the emissions we accept (note that OH component also - // accepts these. That's ok - core->registerInput(D_EMISSIONS_CO, getComponentName()); - core->registerInput(D_EMISSIONS_NMVOC, getComponentName()); - core->registerInput(D_EMISSIONS_NOX, getComponentName()); +void OzoneComponent::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + core = coreptr; + + CO_emissions.allowInterp(true); + NMVOC_emissions.allowInterp(true); + NOX_emissions.allowInterp(true); // Inputs like CO and NMVOC and NOX, + O3.allowInterp(true); + + // Inform core what data we can provide + core->registerCapability(D_ATMOSPHERIC_O3, getComponentName()); + // Register the emissions we accept (note that OH component also + // accepts these. That's ok + core->registerInput(D_EMISSIONS_CO, getComponentName()); + core->registerInput(D_EMISSIONS_NMVOC, getComponentName()); + core->registerInput(D_EMISSIONS_NOX, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval OzoneComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - setData(datum, info); - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval OzoneComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; - return returnval; + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); + + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void OzoneComponent::setData( const string& varName, - const message_data& data ) -{ - H_LOG( logger, Logger::DEBUG ) << "Setting " << varName << "[" << data.date << "]=" << data.value_str << std::endl; - - try { - if ( varName == D_PREINDUSTRIAL_O3 ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - PO3 = data.getUnitval(U_DU_O3); - } else if( varName == D_EMISSIONS_NOX ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - NOX_emissions.set( data.date, data.getUnitval(U_TG_N)); - } else if( varName == D_EMISSIONS_CO ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - CO_emissions.set( data.date, data.getUnitval(U_TG_CO)); - } else if( varName == D_EMISSIONS_NMVOC ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - NMVOC_emissions.set( data.date, data.getUnitval(U_TG_NMVOC)); - } else { - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void OzoneComponent::setData(const string &varName, const message_data &data) { + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; + + try { + if (varName == D_PREINDUSTRIAL_O3) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + PO3 = data.getUnitval(U_DU_O3); + } else if (varName == D_EMISSIONS_NOX) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + NOX_emissions.set(data.date, data.getUnitval(U_TG_N)); + } else if (varName == D_EMISSIONS_CO) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + CO_emissions.set(data.date, data.getUnitval(U_TG_CO)); + } else if (varName == D_EMISSIONS_NMVOC) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + NMVOC_emissions.set(data.date, data.getUnitval(U_TG_NMVOC)); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited void OzoneComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - oldDate = core->getStartDate(); - O3.set(oldDate, PO3); // set the first year's value + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + oldDate = core->getStartDate(); + O3.set(oldDate, PO3); // set the first year's value } //------------------------------------------------------------------------------ // documentation is inherited -void OzoneComponent::run( const double runToDate ) { +void OzoneComponent::run(const double runToDate) { - // Calculate O3 based on NOX, CO, NMVOC, CH4. - // Modified from Tanaka et al 2007 + // Calculate O3 based on NOX, CO, NMVOC, CH4. + // Modified from Tanaka et al 2007 - unitval current_nox = NOX_emissions.get( runToDate ); - unitval current_co = CO_emissions.get( runToDate ); - unitval current_nmvoc = NMVOC_emissions.get( runToDate ); - unitval current_ch4 = core->sendMessage( M_GETDATA, D_ATMOSPHERIC_CH4, runToDate ); + unitval current_nox = NOX_emissions.get(runToDate); + unitval current_co = CO_emissions.get(runToDate); + unitval current_nmvoc = NMVOC_emissions.get(runToDate); + unitval current_ch4 = core->sendMessage(M_GETDATA, D_CH4_CONC, runToDate); - O3.set( runToDate, unitval( ( 5*log( current_ch4 ) ) + ( 0.125*current_nox ) + ( 0.0011*current_co ) - + ( 0.0033*current_nmvoc ), U_DU_O3 ) ); + O3.set(runToDate, + unitval((5 * log(current_ch4)) + (0.125 * current_nox) + + (0.0011 * current_co) + (0.0033 * current_nmvoc), + U_DU_O3)); - oldDate=runToDate; + oldDate = runToDate; - H_LOG( logger, Logger::DEBUG ) << "Year " << runToDate << " O3 concentration = " << O3.get( runToDate ) << std::endl; + H_LOG(logger, Logger::DEBUG) + << "Year " << runToDate << " O3 concentration = " << O3.get(runToDate) + << std::endl; } //------------------------------------------------------------------------------ // documentation is inherited -unitval OzoneComponent::getData( const std::string& varName, - const double date ) { +unitval OzoneComponent::getData(const std::string &varName, const double date) { - unitval returnval; + unitval returnval; - if( varName == D_ATMOSPHERIC_O3 ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for O3" ); //== is a comparision - returnval = O3.get( date ); - } else { - H_THROW( "Caller is requesting unknown variable: " + varName ); - } + if (varName == D_ATMOSPHERIC_O3) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for O3"); //== is a comparision + returnval = O3.get(date); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } - return returnval; + return returnval; } - -void OzoneComponent::reset(double time) -{ - O3.truncate(time); - oldDate = time; - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; +//------------------------------------------------------------------------------ +// documentation is inherited +void OzoneComponent::reset(double time) { + O3.truncate(time); + oldDate = time; + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } //------------------------------------------------------------------------------ // documentation is inherited void OzoneComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void OzoneComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void OzoneComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/oc_component.cpp b/src/oc_component.cpp index eee5255d9..01812c3e0 100644 --- a/src/oc_component.cpp +++ b/src/oc_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -13,9 +13,9 @@ */ #include "oc_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "h_util.hpp" -#include "avisitor.hpp" namespace Hector { @@ -25,131 +25,127 @@ using namespace std; /*! \brief Constructor */ OrganicCarbonComponent::OrganicCarbonComponent() { - OC_emissions.allowInterp( true ); - OC_emissions.name = ORGANIC_CARBON_COMPONENT_NAME; + OC_emissions.allowInterp(true); + OC_emissions.name = ORGANIC_CARBON_COMPONENT_NAME; } //------------------------------------------------------------------------------ /*! \brief Destructor */ -OrganicCarbonComponent::~OrganicCarbonComponent() { -} +OrganicCarbonComponent::~OrganicCarbonComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string OrganicCarbonComponent::getComponentName() const { - const string name = ORGANIC_CARBON_COMPONENT_NAME; + const string name = ORGANIC_CARBON_COMPONENT_NAME; - return name; + return name; } //------------------------------------------------------------------------------ // documentation is inherited -void OrganicCarbonComponent::init( Core* coreptr ) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; - core = coreptr; - - // Register OC emissions are also an input - core->registerInput(D_EMISSIONS_OC, getComponentName()); +void OrganicCarbonComponent::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + core = coreptr; + + // Register OC emissions are also an input + core->registerInput(D_EMISSIONS_OC, getComponentName()); } - //------------------------------------------------------------------------------ // documentation is inherited -unitval OrganicCarbonComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - //TODO: call setData below - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - setData(datum, info); - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval OrganicCarbonComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); - return returnval; + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void OrganicCarbonComponent::setData( const string& varName, - const message_data& data ) -{ - H_LOG( logger, Logger::DEBUG ) << "Setting " << varName << "[" << data.date << "]=" << data.value_str << std::endl; - - try { - if( varName == D_EMISSIONS_OC ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - OC_emissions.set(data.date, data.getUnitval(U_TG)); - } else { - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void OrganicCarbonComponent::setData(const string &varName, + const message_data &data) { + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; + + try { + if (varName == D_EMISSIONS_OC) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + OC_emissions.set(data.date, data.getUnitval(U_TG)); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited void OrganicCarbonComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - oldDate = core->getStartDate(); + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + oldDate = core->getStartDate(); } //------------------------------------------------------------------------------ // documentation is inherited -void OrganicCarbonComponent::run( const double runToDate ) { - H_ASSERT( !core->inSpinup() && runToDate-oldDate == 1, "timestep must equal 1" ); - oldDate = runToDate; +void OrganicCarbonComponent::run(const double runToDate) { + H_ASSERT(!core->inSpinup() && runToDate - oldDate == 1, + "timestep must equal 1"); + oldDate = runToDate; } //------------------------------------------------------------------------------ // documentation is inherited -unitval OrganicCarbonComponent::getData( const std::string& varName, - const double date ) { +unitval OrganicCarbonComponent::getData(const std::string &varName, + const double date) { - unitval returnval; + unitval returnval; - H_ASSERT( date != Core::undefinedIndex(), "Date required for oc_component" ); + H_ASSERT(date != Core::undefinedIndex(), "Date required for oc_component"); - if( varName == D_EMISSIONS_OC ) { - returnval = OC_emissions.get( date ); - } else { - H_THROW( "Caller is requesting unknown variable: " + varName ); - } + if (varName == D_EMISSIONS_OC) { + returnval = OC_emissions.get(date); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } - return returnval; + return returnval; } -void OrganicCarbonComponent::reset(double time) -{ - oldDate = time; - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; +//------------------------------------------------------------------------------ +// documentation is inherited +void OrganicCarbonComponent::reset(double time) { + oldDate = time; + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } //------------------------------------------------------------------------------ // documentation is inherited void OrganicCarbonComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void OrganicCarbonComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void OrganicCarbonComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/ocean_component.cpp b/src/ocean_component.cpp index 971dab20b..4332af388 100644 --- a/src/ocean_component.cpp +++ b/src/ocean_component.cpp @@ -1,25 +1,46 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. -*/ -/* * ocean_component.cpp * hector * * Created by Corinne Hartin on 1/3/13. * + * Structure of the ocean component (high latitude, low latitude, intermediate + & deep ocean) is + * based on Knox & McElroy. + * Knox, F. and McElroy, M. B.: Changes in Atmospheric CO2: Influence + * of the Marine Biota at High Latitude, J. Geophys. Res., 89, + * 4629–4637, doi:10.1029/JD089iD03p04629, 1984. + * + * Other References + * + * Hartin, C. A., Bond-Lamberty, B., Patel, P., and Mundra, A.: Ocean + acidification over + * the next three centuries using a simple global climate carbon-cycle + model: + * projections and sensitivities, Biogeosciences, 13, 4329–4342, + * https://doi.org/10.5194/bg-13-4329-2016, 2016. + * + * Riley, J. P. and Tongudai, M.: The major cation/chlorinity ratios + * in sea water, Chem. Geol., 2, 263–269, doi:10.1016/0009- + * 2541(67)90026-5, 1967. + * + * Leeya Pressburger, & Kalyn R. Dorheim. (2022). + * JGCRI/hector_cmip6data: v1.0 (v1.0). Zenodo. + * https://doi.org/10.5281/zenodo.7304553 */ #include #include -#include "ocean_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "h_util.hpp" +#include "ocean_component.hpp" #include "simpleNbox.hpp" -#include "avisitor.hpp" namespace Hector { @@ -29,454 +50,544 @@ using namespace std; /*! \brief Constructor */ -OceanComponent::OceanComponent() { - spinup_chem = true; -} +OceanComponent::OceanComponent() { spinup_chem = true; } //------------------------------------------------------------------------------ /*! \brief Destructor */ -OceanComponent::~OceanComponent() { -} +OceanComponent::~OceanComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string OceanComponent::getComponentName() const { - const string name = OCEAN_COMPONENT_NAME; + const string name = OCEAN_COMPONENT_NAME; - return name; + return name; } //------------------------------------------------------------------------------ // documentation is inherited -void OceanComponent::init( Core* coreptr ) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; - - max_timestep = OCEAN_MAX_TIMESTEP; - reduced_timestep_timeout = 0; - - surfaceHL.logger = &logger; - surfaceLL.logger = &logger; - inter.logger = &logger; - deep.logger = &logger; - - core = coreptr; - - oceanflux_constrain.allowInterp( true ); - oceanflux_constrain.name = "atm_ocean_constrain"; - - Tgav.set( 0.0, U_DEGC ); - - lastflux_annualized.set( 0.0, U_PGC ); - - // Register the data we can provide - core->registerCapability( D_OCEAN_CFLUX, getComponentName() ); - core->registerCapability( D_OCEAN_C, getComponentName() ); - core->registerCapability( D_CARBON_HL, getComponentName() ); - core->registerCapability( D_CARBON_LL, getComponentName() ); - core->registerCapability( D_CARBON_IO, getComponentName() ); - core->registerCapability( D_CARBON_DO, getComponentName() ); - core->registerCapability( D_TT, getComponentName() ); - core->registerCapability( D_TU, getComponentName() ); - core->registerCapability( D_TWI, getComponentName() ); - core->registerCapability( D_TID, getComponentName() ); - core->registerCapability( D_PH_HL, getComponentName() ); - core->registerCapability( D_PH_LL, getComponentName() ); - core->registerCapability( D_ATM_OCEAN_FLUX_HL, getComponentName() ); - core->registerCapability( D_ATM_OCEAN_FLUX_LL, getComponentName() ); - core->registerCapability( D_PCO2_HL, getComponentName() ); - core->registerCapability( D_PCO2_LL, getComponentName() ); - core->registerCapability( D_DIC_HL, getComponentName() ); - core->registerCapability( D_DIC_LL, getComponentName() ); - core->registerCapability( D_TEMP_HL, getComponentName() ); - core->registerCapability( D_TEMP_LL, getComponentName() ); - core->registerCapability( D_CO3_HL, getComponentName() ); - core->registerCapability( D_CO3_LL, getComponentName() ); - - - // Register the inputs we can receive from outside - core->registerInput(D_TT, getComponentName()); - core->registerInput(D_TU, getComponentName()); - core->registerInput(D_TWI, getComponentName()); - core->registerInput(D_TID, getComponentName()); - +void OceanComponent::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + + max_timestep = OCEAN_MAX_TIMESTEP; + reduced_timestep_timeout = 0; + + // Pointers to logs and the core + surfaceHL.logger = &logger; + surfaceLL.logger = &logger; + inter.logger = &logger; + deep.logger = &logger; + + core = coreptr; + + // Defaults + // Define the size of the preindustrial ocean surface and intermediate-deep + // ocean carbon pools from IPCC AR6 Figure 5.12. + preind_C_surface.set(900, U_PGC); // (Pg C) IPCC AR6 Figure 5.12 + preind_C_ID.set(37100, U_PGC); // (Pg C) IPCC AR6 Figure 5.12 + + // Register the data we can provide + core->registerCapability(D_OCEAN_C_UPTAKE, getComponentName()); + core->registerCapability(D_OCEAN_C, getComponentName()); + core->registerCapability(D_CARBON_HL, getComponentName()); + core->registerCapability(D_CARBON_LL, getComponentName()); + core->registerCapability(D_CARBON_IO, getComponentName()); + core->registerCapability(D_CARBON_DO, getComponentName()); + core->registerCapability(D_CARBON_ML, getComponentName()); + core->registerCapability(D_CARBON_PRE_SURF, getComponentName()); + core->registerCapability(D_CARBON_PRE_ID, getComponentName()); + core->registerCapability(D_TT, getComponentName()); + core->registerCapability(D_TU, getComponentName()); + core->registerCapability(D_TWI, getComponentName()); + core->registerCapability(D_TID, getComponentName()); + core->registerCapability(D_PH_HL, getComponentName()); + core->registerCapability(D_PH_LL, getComponentName()); + core->registerCapability(D_PH, getComponentName()); + core->registerCapability(D_ATM_OCEAN_FLUX_HL, getComponentName()); + core->registerCapability(D_ATM_OCEAN_FLUX_LL, getComponentName()); + core->registerCapability(D_PCO2_HL, getComponentName()); + core->registerCapability(D_PCO2_LL, getComponentName()); + core->registerCapability(D_PCO2, getComponentName()); + core->registerCapability(D_DIC_HL, getComponentName()); + core->registerCapability(D_DIC_LL, getComponentName()); + core->registerCapability(D_DIC, getComponentName()); + core->registerCapability(D_TEMP_HL, getComponentName()); + core->registerCapability(D_TEMP_LL, getComponentName()); + core->registerCapability(D_CO3_HL, getComponentName()); + core->registerCapability(D_CO3_LL, getComponentName()); + core->registerCapability(D_CO3, getComponentName()); + + // Register the inputs we can receive from outside + core->registerInput(D_TT, getComponentName()); + core->registerInput(D_TU, getComponentName()); + core->registerInput(D_TWI, getComponentName()); + core->registerInput(D_TID, getComponentName()); + core->registerInput(D_CARBON_PRE_SURF, getComponentName()); + core->registerInput(D_CARBON_PRE_ID, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval OceanComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message == M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message == M_SETDATA ) { //! Caller is requesting to set data - setData(datum, info); - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - - } else if( message == M_DUMP_TO_DEEP_OCEAN ) { - // info struct holds the amount being dumped/extracted from deep ocean - unitval carbon = info.value_unitval; - H_LOG( logger, Logger::DEBUG ) << "Atmosphere dumping " << carbon << " Pg C to deep ocean" << std::endl; - deep.set_carbon( deep.get_carbon() + carbon ); - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval OceanComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); + + } else if (message == M_DUMP_TO_DEEP_OCEAN) { + // info struct holds the amount being dumped/extracted from deep ocean + unitval carbon = info.value_unitval; + H_LOG(logger, Logger::DEBUG) << "Atmosphere dumping " << carbon + << " Pg C to deep ocean" << std::endl; + + // We don't want this to be tracked, so just overwrite the deep total + carbon = carbon + unitval(deep.get_carbon().value(U_PGC), U_PGC); + deep.set_carbon(carbon); + + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } - return returnval; + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void OceanComponent::setData( const string& varName, - const message_data& data ) -{ - H_LOG( logger, Logger::DEBUG ) << "Setting " << varName << "[" << data.date << "]=" << data.value_str << std::endl; - - try { - if( varName == D_CARBON_HL ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - surfaceHL.set_carbon( data.getUnitval( U_PGC ) ); - } else if( varName == D_CARBON_LL ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - surfaceLL.set_carbon( data.getUnitval( U_PGC ) ); - } else if( varName == D_CARBON_IO ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - inter.set_carbon( data.getUnitval( U_PGC ) ); - } else if( varName == D_CARBON_DO ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - deep.set_carbon( data.getUnitval( U_PGC ) ); - } else if( varName == D_TT ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - tt.set( data.getUnitval(U_M3_S), U_M3_S ); - } else if( varName == D_TU ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - tu.set( data.getUnitval(U_M3_S), U_M3_S ); - } else if( varName == D_TWI ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - twi.set( data.getUnitval(U_M3_S), U_M3_S) ; - } else if( varName == D_TID ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - tid.set( data.getUnitval(U_M3_S), U_M3_S) ; - } else if( varName == D_SPINUP_CHEM ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - spinup_chem = (data.getUnitval(U_UNDEFINED) > 0); - } else if( varName == D_ATM_OCEAN_CONSTRAIN ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - } else { - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void OceanComponent::setData(const string &varName, const message_data &data) { + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; + + try { + if (varName == D_CARBON_PRE_SURF) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + preind_C_surface = data.getUnitval(U_PGC); + } else if (varName == D_CARBON_PRE_ID) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + preind_C_ID = data.getUnitval(U_PGC); + } else if (varName == D_TT) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + tt.set(data.getUnitval(U_M3_S), U_M3_S); + } else if (varName == D_TU) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + tu.set(data.getUnitval(U_M3_S), U_M3_S); + } else if (varName == D_TWI) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + twi.set(data.getUnitval(U_M3_S), U_M3_S); + } else if (varName == D_TID) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + tid.set(data.getUnitval(U_M3_S), U_M3_S); + } else if (varName == D_SPINUP_CHEM) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + spinup_chem = (data.getUnitval(U_UNDEFINED) > 0); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited -// TO DO: should we put these in the ini file instead? void OceanComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - - // Set up our ocean box model. Carbon values here can be overridden by user input - H_LOG( logger, Logger::DEBUG ) << "Setting up ocean box model" << std::endl; - surfaceHL.initbox( unitval( 140, U_PGC ), "HL" ); - surfaceHL.surfacebox = true; - surfaceHL.preindustrial_flux.set( 1.000, U_PGC_YR ); // used if no spinup chemistry - surfaceHL.active_chemistry = spinup_chem; - - surfaceLL.initbox( unitval( 770, U_PGC ), "LL" ); - surfaceLL.surfacebox = true; - surfaceLL.preindustrial_flux.set( -1.000, U_PGC_YR ); // used if no spinup chemistry - surfaceLL.active_chemistry = spinup_chem; - - inter.initbox( unitval( 8400, U_PGC ), "intermediate" ); - deep.initbox( unitval( 26000, U_PGC ), "deep" ); - - double time = 60*60*24*365.25; // seconds per year - - // ocean_volume = 1.36e18 m3 - double thick_LL = 100; - double thick_HL = 100; - double thick_inter = 1000-thick_LL; - double thick_deep = 3777-thick_inter-thick_LL; // 3777m - 1000m - 100m - - // const double ocean_sarea = 5.101e14; // surface area m2 - const double ocean_area = 3.6e14; // m2; - const double part_high = 0.15; - const double part_low = 1-part_high; - const double LL_volume = ocean_area * part_low * thick_LL; - const double HL_volume = ocean_area * part_high * thick_HL; - const double I_volume = ocean_area* thick_inter; - const double D_volume = ocean_area* thick_deep; - - // transport * seconds / volume of box - // Advection --> transport of carbon from one box to the next (k values, fraction/yr ) - double LL_HL = ( tt.value( U_M3_S ) * time ) / LL_volume; - double HL_DO = ( ( tt + tu).value( U_M3_S ) * time ) / HL_volume; - double DO_IO = ( ( tt + tu).value( U_M3_S ) * time ) / D_volume; - double IO_HL = ( tu.value( U_M3_S) * time ) / I_volume; - double IO_LL = ( tt.value( U_M3_S) * time ) / I_volume; - - // Exchange parameters --> not explicitly modeling diffusion - double IO_LLex = ( twi.value( U_M3_S) *time ) / I_volume; - double LL_IOex = ( twi.value( U_M3_S) * time ) / LL_volume; - double DO_IOex = ( tid.value( U_M3_S) *time ) / D_volume; - double IO_DOex = ( tid.value( U_M3_S) * time ) / I_volume; - - // make_connection( box to connect to, k value, window size (0=present only) ) - surfaceLL.make_connection( &surfaceHL, LL_HL, 1 ); - surfaceLL.make_connection( &inter, LL_IOex, 1 ); - surfaceHL.make_connection( &deep, HL_DO, 1 ); - inter.make_connection( &surfaceLL, IO_LL + IO_LLex, 1 ); - inter.make_connection( &surfaceHL, IO_HL, 1 ); - inter.make_connection( &deep, IO_DOex, 1 ); - deep.make_connection( &inter, DO_IO + DO_IOex, 1 ); - - //inputs for surface chemistry boxes - //surfaceHL.mychemistry.alk = // mol/kg - surfaceHL.deltaT.set( -13.0, U_DEGC ); // delta T is added 288.15 to return the initial temperature value of the surface box - surfaceHL.mychemistry.S = 34.5; // Salinity - surfaceHL.mychemistry.volumeofbox = HL_volume; //5.4e15; //m3 - surfaceHL.mychemistry.As = ocean_area * part_high ; // surface area m2 - surfaceHL.mychemistry.U = 6.7; // average wind speed m/s - - //surfaceLL.mychemistry.alk = // mol/kg - surfaceLL.deltaT.set( 7.0, U_DEGC ); // delta T is added to 288.15 to return the initial temperature value of the surface box - surfaceLL.mychemistry.S = 34.5; // Salinity - surfaceLL.mychemistry.volumeofbox = LL_volume; //3.06e16; //m3 - surfaceLL.mychemistry.As = ocean_area * part_low; // surface area m2 - surfaceLL.mychemistry.U = 6.7; // average wind speed m/s - - // Log the state of all our boxes, so we know things are as they should be - surfaceLL.log_state(); - surfaceHL.log_state(); - inter.log_state(); - deep.log_state(); + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + + // Define constants used in ocean box set up. + const double spy = 60 * 60 * 24 * 365.25; // seconds per year + + // ocean depth + const double thick_LL = + 100; // (m) Thickness of surface ocean from Knox and McElroy (1984) + const double thick_HL = + 100; // (m) Thickness of surface ocean from Knox and McElroy (1984) + const double thick_inter = + 1000 - thick_LL; // (m) Thickness of of intermediate + // ocean from Knox and McElroy (1984) + const double thick_deep = + 3777 - thick_inter - + thick_LL; // (m) Thickness of deep ocean from Knox and McElroy (1984) + + // ocean area + const double ocean_area = 3.6e14; // (m2) Knox and McElroy (1984); + + // ocean box volumes (m3) + const double LL_volume = ocean_area * part_low * thick_LL; + const double HL_volume = ocean_area * part_high * thick_HL; + const double I_volume = ocean_area * thick_inter; + const double D_volume = ocean_area * thick_deep; + + // Calculate the fraction of volume of the two surface boxes, the deep, and + // intermediate ocean boxes. The fraction of the volumes will be used to + // determine the inital size of the preindustrial carbon pools for Hector's + // ocean boxes. + const double LL_vol_frac = LL_volume / (LL_volume + HL_volume); + const double HL_vol_frac = 1 - LL_vol_frac; + const double I_vol_frac = I_volume / (I_volume + D_volume); + const double D_vol_frac = 1 - I_vol_frac; + + // Partition the preindustrial ocean carbon pools by volume. + const double LL_preind_C = LL_vol_frac * preind_C_surface.value(U_PGC); + const double HL_preind_C = HL_vol_frac * preind_C_surface.value(U_PGC); + const double I_preind_C = I_vol_frac * preind_C_ID.value(U_PGC); + const double D_preind_C = D_vol_frac * preind_C_ID.value(U_PGC); + + // Set up our ocean box model. + H_LOG(logger, Logger::DEBUG) << "Setting up ocean box model" << std::endl; + surfaceHL.initbox(HL_preind_C, "HL"); + surfaceHL.surfacebox = true; + surfaceHL.preindustrial_flux.set(1.000, + U_PGC_YR); // used if no spinup chemistry + surfaceHL.active_chemistry = spinup_chem; + + surfaceLL.initbox(LL_preind_C, "LL"); + surfaceLL.surfacebox = true; + surfaceLL.preindustrial_flux.set(-1.000, + U_PGC_YR); // used if no spinup chemistry + surfaceLL.active_chemistry = spinup_chem; + + inter.initbox(I_preind_C, "intermediate"); + deep.initbox(D_preind_C, "deep"); + + // transport * seconds / volume of box + // Advection --> transport of carbon from one box to the next (k values, + // fraction/yr ) + double LL_HL = (tt.value(U_M3_S) * spy) / LL_volume; + double HL_DO = ((tt + tu).value(U_M3_S) * spy) / HL_volume; + double DO_IO = ((tt + tu).value(U_M3_S) * spy) / D_volume; + double IO_HL = (tu.value(U_M3_S) * spy) / I_volume; + double IO_LL = (tt.value(U_M3_S) * spy) / I_volume; + + // Exchange parameters --> not explicitly modeling diffusion + double IO_LLex = (twi.value(U_M3_S) * spy) / I_volume; + double LL_IOex = (twi.value(U_M3_S) * spy) / LL_volume; + double DO_IOex = (tid.value(U_M3_S) * spy) / D_volume; + double IO_DOex = (tid.value(U_M3_S) * spy) / I_volume; + + // Set up the flow connections between the boxes + surfaceLL.make_connection(&surfaceHL, LL_HL, 1); + surfaceLL.make_connection(&inter, LL_IOex, 1); + surfaceHL.make_connection(&deep, HL_DO, 1); + inter.make_connection(&surfaceLL, IO_LL + IO_LLex, 1); + inter.make_connection(&surfaceHL, IO_HL, 1); + inter.make_connection(&deep, IO_DOex, 1); + deep.make_connection(&inter, DO_IO + DO_IOex, 1); + + // Inputs for surface chemistry boxes + surfaceHL.deltaT.set(-16.4, + U_DEGC); // delta T to the absolute mean ocean tos to + // return the initial temperature value of the + // HL surface. Pressburger & Dorheim (2022) + surfaceHL.mychemistry.S = 34.5; // Salinity Riley and Tongudai (1967) + surfaceHL.mychemistry.volumeofbox = HL_volume; // m3 + surfaceHL.mychemistry.As = ocean_area * part_high; // surface area m2 + surfaceHL.mychemistry.U = 6.7; // average wind speed m/s Hartin et al. 2016 + + surfaceLL.deltaT.set(2.9, + U_DEGC); // delta T to the absolute mean ocean tos to + // return the initial temperature value of the + // LL surface. Pressburger & Dorheim (2022) + surfaceLL.mychemistry.S = 34.5; // Salinity Riley and Tongudai (1967) + surfaceLL.mychemistry.volumeofbox = LL_volume; // m3 + surfaceLL.mychemistry.As = ocean_area * part_low; // surface area m2 + surfaceLL.mychemistry.U = 6.7; // average wind speed m/s Hartin et al. 2016 + + // Initialize surface flux tracking variables and other things + annualflux_sum.set(0.0, U_PGC); + annualflux_sumHL.set(0.0, U_PGC); + annualflux_sumLL.set(0.0, U_PGC); + + SST.set(0.0, U_DEGC); + + lastflux_annualized.set(0.0, U_PGC); + + // Log the state of all our boxes, so we know things are as they should be + surfaceLL.log_state(); + surfaceHL.log_state(); + inter.log_state(); + deep.log_state(); } //------------------------------------------------------------------------------ /*! \brief Internal function to add up all model C pools * \returns unitval, total carbon in the ocean */ -unitval OceanComponent::totalcpool() const { - return deep.get_carbon() + inter.get_carbon() + surfaceLL.get_carbon() + surfaceHL.get_carbon(); +fluxpool OceanComponent::totalcpool() const { + return deep.get_carbon() + inter.get_carbon() + surfaceLL.get_carbon() + + surfaceHL.get_carbon(); } //------------------------------------------------------------------------------ -/*! \brief Internal function to calculate atmosphere-ocean C flux - * \param[in] date double, date of calculation (in case constraint used) - * \param[in] Ca unitval, atmospheric CO2 +/*! \brief Internal function to calculate atmosphere-ocean C + * flux \param[in] date double, date of calculation (in case constraint + * used) \param[in] CO2_conc unitval, atmospheric CO2 concentration * \param[in] cpoolscale double, how much to scale surface C pools by * \returns unitval, annual atmosphere-ocean C flux */ -unitval OceanComponent::annual_totalcflux( const double date, const unitval& Ca, const double cpoolscale ) const { +unitval OceanComponent::annual_totalcflux(const double date, + const unitval &CO2_conc, + const double cpoolscale) const { - unitval flux( 0.0, U_PGC_YR ); + unitval flux(0.0, U_PGC_YR); - if( in_spinup && !spinup_chem ) { - flux = surfaceHL.preindustrial_flux + surfaceLL.preindustrial_flux; - } else { - flux = surfaceHL.mychemistry.calc_annual_surface_flux( Ca, cpoolscale ) - + surfaceLL.mychemistry.calc_annual_surface_flux( Ca, cpoolscale ); - } - - if( !in_spinup && oceanflux_constrain.size() && date <= oceanflux_constrain.lastdate() ) { - flux = oceanflux_constrain.get( date ); - } + if (in_spinup && !spinup_chem) { + flux = surfaceHL.preindustrial_flux + surfaceLL.preindustrial_flux; + } else { + flux = + surfaceHL.mychemistry.calc_annual_surface_flux(CO2_conc, cpoolscale) + + surfaceLL.mychemistry.calc_annual_surface_flux(CO2_conc, cpoolscale); + } - return flux; + return flux; } //------------------------------------------------------------------------------ // documentation is inherited -void OceanComponent::run( const double runToDate ) { - - Ca = core->sendMessage( M_GETDATA, D_ATMOSPHERIC_CO2 ); - Tgav = core->sendMessage( M_GETDATA, D_GLOBAL_TEMP ); - in_spinup = core->inSpinup(); - annualflux_sum.set( 0.0, U_PGC ); - annualflux_sumHL.set( 0.0, U_PGC ); - annualflux_sumLL.set( 0.0, U_PGC ); - timesteps = 0; - - // Initialize ocean box boundary conditions and inform them new year starting - H_LOG(logger, Logger::DEBUG) << "Starting new year: Tgav= " << Tgav << std::endl; - surfaceHL.new_year( Tgav ); - surfaceLL.new_year( Tgav ); - inter.new_year( Tgav ); - deep.new_year( Tgav ); - - H_LOG( logger, Logger::DEBUG ) << "----------------------------------------------------" << std::endl; - H_LOG( logger, Logger::DEBUG ) << "runToDate=" << runToDate << ", spinup=" << in_spinup << std::endl; - H_LOG( logger, Logger::DEBUG ) << "runToDate=" << runToDate << ", Ca=" << Ca << ", spinup=" << in_spinup << std::endl; - - // If chemistry models weren't turned on during spinup, do so now - if( !spinup_chem && !in_spinup && !surfaceHL.active_chemistry ) { - H_LOG( logger, Logger::DEBUG ) << "*** Turning on chemistry models ***" << std::endl; - surfaceHL.active_chemistry = true; - surfaceLL.active_chemistry = true; - surfaceHL.chem_equilibrate( Ca ); - surfaceLL.chem_equilibrate( Ca ); - - // Warn if the user has supplied an atmosphere-ocean C flux constraint - if( oceanflux_constrain.size() ) { - unitval constrained_flux = oceanflux_constrain.get( runToDate ); - H_LOG( logger, Logger::WARNING ) << "Atm-ocean C fluxes will be constrained to " << constrained_flux << std::endl; - } - } - - // Call compute_fluxes with do_boxfluxes=false to run just chemistry - surfaceHL.compute_fluxes( Ca, 1.0, false ); - surfaceLL.compute_fluxes( Ca, 1.0, false ); - - - // Now wait for the solver to call us +void OceanComponent::run(const double runToDate) { + + // If we've hit the tracking start year, enagage! + const double tdate = core->getTrackingDate(); + if (!in_spinup && runToDate == tdate) { + H_LOG(logger, Logger::NOTICE) << "Tracking start" << std::endl; + surfaceHL.start_tracking(); + surfaceLL.start_tracking(); + inter.start_tracking(); + deep.start_tracking(); + } + + CO2_conc = core->sendMessage(M_GETDATA, D_CO2_CONC, message_data(runToDate)); + SST.set(core->sendMessage(M_GETDATA, D_SST), U_DEGC); + + in_spinup = core->inSpinup(); + + annualflux_sum.set(0.0, U_PGC); + annualflux_sumHL.set(0.0, U_PGC); + annualflux_sumLL.set(0.0, U_PGC); + timesteps = 0; + + // Initialize ocean box boundary conditions and inform them new year starting + H_LOG(logger, Logger::DEBUG) + << "Starting new year: SST= " << SST << std::endl; + surfaceHL.new_year(SST); + surfaceLL.new_year(SST); + inter.new_year(SST); + deep.new_year(SST); + H_LOG(logger, Logger::DEBUG) + << "----------------------------------------------------" << std::endl; + H_LOG(logger, Logger::DEBUG) + << "runToDate=" << runToDate << ", [CO2]=" << CO2_conc + << ", spinup=" << in_spinup << std::endl; + + // If chemistry models weren't turned on during spinup, do so now + if (!spinup_chem && !in_spinup && !surfaceHL.active_chemistry) { + + H_LOG(logger, Logger::DEBUG) + << "*** Turning on chemistry models ***" << std::endl; + surfaceHL.active_chemistry = true; + surfaceLL.active_chemistry = true; + surfaceHL.chem_equilibrate(CO2_conc); + surfaceLL.chem_equilibrate(CO2_conc); + } + + // Call compute_fluxes with do_boxfluxes=false to run just chemistry + surfaceHL.compute_fluxes(CO2_conc, atmosphere_cpool, 1.0, false); + surfaceLL.compute_fluxes(CO2_conc, atmosphere_cpool, 1.0, false); + + // Now wait for the solver to call us } - //------------------------------------------------------------------------------ + +//------------------------------------------------------------------------------ // documentation is inherited -bool OceanComponent::run_spinup( const int step ) { - run( step ); - return true; // solver will be the one signalling +bool OceanComponent::run_spinup(const int step) { + run(step); + return true; // solver will be the one signalling } //------------------------------------------------------------------------------ // documentation is inherited -unitval OceanComponent::getData( const std::string& varName, - const double date ) { - - unitval returnval; - - if(date == Core::undefinedIndex() ){ - // If no date, we're in spinup; just return the current value - - if( varName == D_OCEAN_CFLUX ){ - returnval = annualflux_sum; - } else if( varName == D_TT ) { - returnval = tt; - } else if( varName == D_TU ) { - returnval = tu; - } else if( varName == D_TID ) { - returnval = tid; - } else if( varName == D_TWI ) { - returnval = twi; - } else if( varName == D_OMEGACA_HL ) { - returnval = surfaceHL.mychemistry.OmegaCa; - } else if( varName == D_OMEGACA_LL ) { - returnval = surfaceLL.mychemistry.OmegaCa; - } else if( varName == D_OMEGAAR_HL ) { - returnval = surfaceHL.mychemistry.OmegaAr; - } else if( varName == D_OMEGAAR_LL ) { - returnval = surfaceLL.mychemistry.OmegaAr; - } else if( varName == D_REVELLE_HL ) { - returnval = surfaceHL.calc_revelle(); - } else if( varName == D_REVELLE_LL ) { - returnval = surfaceLL.calc_revelle(); - } else if( varName == D_ATM_OCEAN_FLUX_HL ) { - returnval = unitval( annualflux_sumHL.value( U_PGC ), U_PGC_YR ); - } else if( varName == D_ATM_OCEAN_FLUX_LL ) { - returnval = unitval( annualflux_sumLL.value( U_PGC ), U_PGC_YR ); - } else if( varName == D_CARBON_DO ) { - returnval = deep.get_carbon(); - } else if( varName == D_CARBON_HL ) { - returnval = surfaceHL.get_carbon(); - } else if( varName == D_CARBON_LL ) { - returnval = surfaceLL.get_carbon(); - } else if( varName == D_CARBON_IO ) { - returnval = inter.get_carbon(); - } else if( varName == D_DIC_HL ) { - returnval = surfaceHL.mychemistry.convertToDIC( surfaceHL.get_carbon() ); - } else if( varName == D_DIC_LL ) { - returnval = surfaceLL.mychemistry.convertToDIC( surfaceLL.get_carbon() ); - } else if( varName == D_HL_DO ) { - returnval = surfaceHL.annual_box_fluxes[ &deep ] ; - } else if( varName == D_PCO2_HL ) { - returnval = surfaceHL.mychemistry.PCO2o; - } else if( varName == D_PCO2_LL ) { - returnval = surfaceLL.mychemistry.PCO2o; - } else if( varName == D_PH_HL ) { - returnval = surfaceHL.mychemistry.pH; - } else if( varName == D_PH_LL ) { - returnval = surfaceLL.mychemistry.pH; - } else if( varName == D_TEMP_HL ) { - returnval = surfaceHL.get_Tbox(); - } else if( varName == D_TEMP_LL ) { - returnval = surfaceLL.get_Tbox(); - } else if( varName == D_OCEAN_C ) { - returnval = totalcpool(); - } else if( varName == D_CO3_HL ) { - returnval = surfaceHL.mychemistry.CO3; - } else if( varName == D_CO3_LL ) { - returnval = surfaceLL.mychemistry.CO3; - } else if( varName == D_TIMESTEPS ) { - returnval = unitval( timesteps, U_UNITLESS ); - } else { - H_THROW( "Problem with user request for constant data: " + varName ); - } - - } else if(date != Core::undefinedIndex() ){ - if( varName == D_OCEAN_CFLUX ){ - returnval = annualflux_sum_ts.get(date); - } else if( varName == D_OCEAN_C ) { - returnval = totalcpool(); - } else if( varName == D_HL_DO ) { - returnval = C_DO_ts.get( date ); - } else if( varName == D_PH_HL ) { - returnval = PH_HL_ts.get( date ); - } else if( varName == D_PH_LL ) { - returnval = PH_LL_ts.get( date ); - } else if( varName == D_ATM_OCEAN_FLUX_HL ) { - returnval = annualflux_sumHL_ts.get(date); - } else if( varName == D_ATM_OCEAN_FLUX_LL ) { - returnval = annualflux_sumLL_ts.get(date); - } else if( varName == D_PCO2_HL ) { - returnval = pco2_HL_ts.get( date ); - } else if( varName == D_PCO2_LL ) { - returnval = pco2_LL_ts.get( date ); - } else if( varName == D_DIC_HL ) { - returnval = dic_HL_ts.get( date ); - } else if( varName == D_DIC_LL ) { - returnval = dic_LL_ts.get( date ); - } else if( varName == D_CARBON_HL ) { - returnval = Ca_HL_ts.get(date); - } else if( varName == D_CARBON_LL ) { - returnval = Ca_LL_ts.get(date); - } else if( varName == D_CARBON_IO ) { - returnval = C_IO_ts.get(date); - } else if( varName == D_CARBON_DO ) { - returnval = C_DO_ts.get(date); - } else if( varName == D_TEMP_HL ) { - returnval = temp_HL_ts.get(date); - } else if( varName == D_TEMP_LL ) { - returnval = temp_LL_ts.get(date); - } else if( varName == D_CO3_LL ) { - returnval = co3_LL_ts.get(date); - } else if( varName == D_CO3_HL ) { - returnval = co3_HL_ts.get(date); - } else { - H_THROW( "Problem with user request for time series: " + varName ); - } - +unitval OceanComponent::getData(const std::string &varName, const double date) { + + unitval returnval; + + if (date == Core::undefinedIndex()) { + // If no date, we're in spinup; just return the current value + + if (varName == D_OCEAN_C_UPTAKE) { + returnval = annualflux_sum; + } else if (varName == D_TT) { + returnval = tt; + } else if (varName == D_TU) { + returnval = tu; + } else if (varName == D_TID) { + returnval = tid; + } else if (varName == D_TWI) { + returnval = twi; + } else if (varName == D_OMEGACA_HL) { + returnval = surfaceHL.mychemistry.OmegaCa; + } else if (varName == D_OMEGACA_LL) { + returnval = surfaceLL.mychemistry.OmegaCa; + } else if (varName == D_OMEGAAR_HL) { + returnval = surfaceHL.mychemistry.OmegaAr; + } else if (varName == D_OMEGAAR_LL) { + returnval = surfaceLL.mychemistry.OmegaAr; + } else if (varName == D_REVELLE_HL) { + returnval = surfaceHL.calc_revelle(); + } else if (varName == D_REVELLE_LL) { + returnval = surfaceLL.calc_revelle(); + } else if (varName == D_ATM_OCEAN_FLUX_HL) { + returnval = unitval(annualflux_sumHL.value(U_PGC), U_PGC_YR); + } else if (varName == D_ATM_OCEAN_FLUX_LL) { + returnval = unitval(annualflux_sumLL.value(U_PGC), U_PGC_YR); + } else if (varName == D_CARBON_PRE_SURF) { + returnval = preind_C_surface; + } else if (varName == D_CARBON_PRE_ID) { + returnval = preind_C_ID; + } else if (varName == D_CARBON_DO) { + returnval = deep.get_carbon(); + } else if (varName == D_CARBON_HL) { + returnval = surfaceHL.get_carbon(); + } else if (varName == D_CARBON_LL) { + returnval = surfaceLL.get_carbon(); + } else if (varName == D_CARBON_ML) { + returnval = surfaceLL.get_carbon() + surfaceHL.get_carbon(); + } else if (varName == D_CARBON_IO) { + returnval = inter.get_carbon(); + } else if (varName == D_DIC_HL) { + returnval = surfaceHL.mychemistry.convertToDIC(surfaceHL.get_carbon()); + } else if (varName == D_DIC_LL) { + returnval = surfaceLL.mychemistry.convertToDIC(surfaceLL.get_carbon()); + } else if (varName == D_DIC) { + double value = + part_low * + surfaceLL.mychemistry.convertToDIC(surfaceLL.get_carbon()) + + part_high * + surfaceHL.mychemistry.convertToDIC(surfaceHL.get_carbon()); + returnval = unitval(value, U_UMOL_KG); + } else if (varName == D_HL_DO) { + returnval = surfaceHL.annual_box_fluxes[&deep]; + } else if (varName == D_PCO2_HL) { + returnval = surfaceHL.mychemistry.PCO2o; + } else if (varName == D_PCO2_LL) { + returnval = surfaceLL.mychemistry.PCO2o; + } else if (varName == D_PCO2) { + double value = part_low * surfaceLL.mychemistry.PCO2o + + part_high * surfaceHL.mychemistry.PCO2o; + returnval = unitval(value, U_UATM); + } else if (varName == D_PH_HL) { + returnval = surfaceHL.mychemistry.pH; + } else if (varName == D_PH_LL) { + returnval = surfaceLL.mychemistry.pH; + } else if (varName == D_PH) { + double value = part_low * surfaceLL.mychemistry.pH + + part_high * surfaceHL.mychemistry.pH; + returnval = unitval(value, U_PH); + } else if (varName == D_TEMP_HL) { + returnval = surfaceHL.get_Tbox(); + } else if (varName == D_TEMP_LL) { + returnval = surfaceLL.get_Tbox(); + } else if (varName == D_OCEAN_C) { + returnval = totalcpool(); + } else if (varName == D_CO3_HL) { + returnval = surfaceHL.mychemistry.CO3; + } else if (varName == D_CO3_LL) { + returnval = surfaceLL.mychemistry.CO3; + } else if (varName == D_CO3) { + double value = part_low * surfaceLL.mychemistry.CO3 + + part_high * surfaceHL.mychemistry.CO3; + returnval = unitval(value, U_UMOL_KG); + } else if (varName == D_TIMESTEPS) { + returnval = unitval(timesteps, U_UNITLESS); } else { - H_ASSERT( date == Core::undefinedIndex(), "Date data not available for " + varName + " in OceanComponent::getData()" ); + H_THROW("Problem with user request for constant data: " + varName); } - - return returnval; + + } else if (date != Core::undefinedIndex()) { + if (varName == D_OCEAN_C_UPTAKE) { + returnval = annualflux_sum_ts.get(date); + } else if (varName == D_OCEAN_C) { + returnval = C_DO_ts.get(date) + C_IO_ts.get(date) + Ca_LL_ts.get(date) + + Ca_HL_ts.get(date); + } else if (varName == D_HL_DO) { + returnval = C_DO_ts.get(date); + } else if (varName == D_PH_HL) { + returnval = PH_HL_ts.get(date); + } else if (varName == D_PH_LL) { + returnval = PH_LL_ts.get(date); + } else if (varName == D_PH) { + double value = + part_low * PH_LL_ts.get(date) + part_high * PH_HL_ts.get(date); + returnval = unitval(value, U_PH); + } else if (varName == D_ATM_OCEAN_FLUX_HL) { + returnval = annualflux_sumHL_ts.get(date); + } else if (varName == D_ATM_OCEAN_FLUX_LL) { + returnval = annualflux_sumLL_ts.get(date); + } else if (varName == D_PCO2_HL) { + returnval = pco2_HL_ts.get(date); + } else if (varName == D_PCO2_LL) { + returnval = pco2_LL_ts.get(date); + } else if (varName == D_PCO2) { + double value = + part_low * pco2_LL_ts.get(date) + part_high * pco2_HL_ts.get(date); + returnval = unitval(value, U_UATM); + } else if (varName == D_DIC_HL) { + returnval = dic_HL_ts.get(date); + } else if (varName == D_DIC_LL) { + returnval = dic_LL_ts.get(date); + } else if (varName == D_DIC) { + double value = + part_low * dic_LL_ts.get(date) + part_high * dic_HL_ts.get(date); + returnval = unitval(value, U_UMOL_KG); + } else if (varName == D_CARBON_HL) { + returnval = Ca_HL_ts.get(date); + } else if (varName == D_CARBON_LL) { + returnval = Ca_LL_ts.get(date); + } else if (varName == D_CARBON_ML) { + returnval = Ca_LL_ts.get(date) + Ca_HL_ts.get(date); + } else if (varName == D_CARBON_IO) { + returnval = C_IO_ts.get(date); + } else if (varName == D_CARBON_DO) { + returnval = C_DO_ts.get(date); + } else if (varName == D_TEMP_HL) { + returnval = temp_HL_ts.get(date); + } else if (varName == D_TEMP_LL) { + returnval = temp_LL_ts.get(date); + } else if (varName == D_CO3_LL) { + returnval = co3_LL_ts.get(date); + } else if (varName == D_CO3_HL) { + returnval = co3_HL_ts.get(date); + } else if (varName == D_CO3) { + double value = + part_high * co3_HL_ts.get(date) + part_low * co3_LL_ts.get(date); + returnval = unitval(value, U_UMOL_KG); + } else { + H_THROW("Problem with user request for time series: " + varName); + } + + } else { + H_ASSERT(date == Core::undefinedIndex(), + "Date data not available for " + varName + + " in OceanComponent::getData()"); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void OceanComponent::getCValues( double t, double c[] ) { - c[ SNBOX_OCEAN ] = totalcpool().value( U_PGC ); +void OceanComponent::getCValues(double t, double c[]) { + c[SNBOX_OCEAN] = totalcpool().value(U_PGC); - ODEstartdate = t; + ODEstartdate = t; } //------------------------------------------------------------------------------ @@ -485,224 +596,264 @@ void OceanComponent::getCValues( double t, double c[] ) { * \param[in] c carbon pools (no units) * \param[out] dcdt carbon deltas - we fill in only ocean change * \returns code indicating success or failure - * - * \details "This function should store the vector elements f_i(t,y,params) + * \details "This function should store the vector elements f_i(t,y,params) * in the array dydt, for arguments (t,y) and parameters params." -GSL docs * Compute the air-ocean flux (Pg C/yr) at time t and for pools c[] */ -int OceanComponent::calcderivs( double t, const double c[], double dcdt[] ) const { - - const double yearfraction = ( t - ODEstartdate ); - - // If the solver has adjusted the ocean and/or atmosphere pools, - // need to be take into account in the flux computation - const unitval cpooldiff = unitval( c[ SNBOX_OCEAN ], U_PGC ) - totalcpool(); - const unitval surfacepools = surfaceLL.get_carbon() + surfaceHL. get_carbon(); - const double cpoolscale = ( surfacepools + cpooldiff ) / surfacepools; - unitval Ca( c[ SNBOX_ATMOS ] * PGC_TO_PPMVCO2, U_PPMV_CO2 ); +int OceanComponent::calcderivs(double t, const double c[], + double dcdt[]) const { + + const double yearfraction = (t - ODEstartdate); + + // If the solver has adjusted the ocean and/or atmosphere pools, + // need to be take into account in the flux computation + const unitval cpooldiff = unitval(c[SNBOX_OCEAN], U_PGC) - totalcpool(); + const unitval surfacepools = surfaceLL.get_carbon() + surfaceHL.get_carbon(); + const double cpoolscale = (surfacepools + cpooldiff) / surfacepools; + unitval CO2_conc(c[SNBOX_ATMOS] * PGC_TO_PPMVCO2, U_PPMV_CO2); + + dcdt[SNBOX_OCEAN] = + annual_totalcflux(t, CO2_conc, cpoolscale).value(U_PGC_YR); + + // If too big a timestep--i.e., stashCvalues below has signalled a reduced + // step that we're exceeding--signal to the solver that this won't work for + // us. + if (yearfraction > max_timestep) { + return CARBON_CYCLE_RETRY; + } else { + return ODE_SUCCESS; + } +} - const double cflux = annual_totalcflux( t, Ca, cpoolscale ).value( U_PGC_YR ); - dcdt[ SNBOX_OCEAN ] = cflux; +//------------------------------------------------------------------------------ +// documentation is inherited +void OceanComponent::slowparameval(double t, const double c[]) { - // If too big a timestep--i.e., stashCvalues below has signalled a reduced step - // that we're exceeding--signal to the solver that this won't work for us. - if( yearfraction > max_timestep ) { - return CARBON_CYCLE_RETRY; - } else { - return ODE_SUCCESS; - } + in_spinup = core->inSpinup(); } //------------------------------------------------------------------------------ -// documentation is inherited -void OceanComponent::slowparameval( double t, const double c[] ) { +/*! \brief Return the ocean-to-atmosphere flux to simpleNbox + * \returns The two ocean-atmosphere fluxpools added together + */ +fluxpool OceanComponent::get_oaflux() const { + return surfaceLL.get_oa_flux() + surfaceHL.get_oa_flux(); +} - in_spinup = core->inSpinup(); +//------------------------------------------------------------------------------ +/*! \brief Return the atmosphere-to-ocean flux to simpleNbox + * \returns The two atmosphere-ocean fluxpools added together + */ +fluxpool OceanComponent::get_aoflux() const { + return surfaceLL.get_ao_flux() + surfaceHL.get_ao_flux(); } //------------------------------------------------------------------------------ // documentation is inherited -void OceanComponent::stashCValues( double t, const double c[] ) { - - H_LOG( logger,Logger::DEBUG ) << "Stashing at t=" << t << ", model pools at " << t << ": " << c[ 0 ] << " " - << c[ 1 ] << " " << c[ 2 ] << " " << c[ 3 ] << " " << c[ 4 ] << " " << c[ 5 ] << std::endl; - - // At this point the solver has converged, going from ODEstartdate to t - // Now we finalize calculations: circulate ocean, update carbon states, etc. - const double yearfraction = ( t - ODEstartdate ); - H_LOG( logger, Logger::NOTICE ) << "Solver has finished. Yearfraction = " << yearfraction << std::endl; - H_ASSERT( yearfraction >= 0 && yearfraction <= 1, "yearfraction out of bounds" ); - - timesteps++; - const bool in_partial_year = ( t != int( t ) ); - - unitval Ca( c[ SNBOX_ATMOS ] * PGC_TO_PPMVCO2, U_PPMV_CO2 ); - - // Compute fluxes between the boxes (advection of carbon) - surfaceHL.compute_fluxes( Ca, yearfraction ); - surfaceLL.compute_fluxes( Ca, yearfraction ); - inter.compute_fluxes( Ca, yearfraction ); - deep.compute_fluxes( Ca, yearfraction ); - - // At this point, compute_fluxes has (by calling the chemistry model) computed atmosphere- - // ocean fluxes for the surface boxes. But these are end-of-timestep values, and we need to - // overwrite them with what the solver has sent us (~mid-timestep values), so that everything - // stays consistent. - unitval currentflux = surfaceHL.atmosphere_flux + surfaceLL.atmosphere_flux; - unitval solver_flux = unitval( c[ SNBOX_OCEAN ], U_PGC ) - totalcpool(); - unitval adjustment( 0.0, U_PGC ); - if( currentflux.value( U_PGC ) ) adjustment = ( solver_flux - currentflux ) / 2.0; - H_LOG( logger, Logger::DEBUG) << "Solver flux = " << solver_flux << ", currentflux = " << currentflux << ", adjust = " << adjustment << std::endl; - surfaceHL.atmosphere_flux = surfaceHL.atmosphere_flux + adjustment; - surfaceLL.atmosphere_flux = surfaceLL.atmosphere_flux + adjustment; - - // This (along with carbon-cycle-solver obviously) is the heart of the reduced-timestep code. - // If carbon flux has exceeded some critical value, need to reduce timestep for the future. - unitval cflux_annualdiff = solver_flux/yearfraction - lastflux_annualized; - - if( cflux_annualdiff.value( U_PGC ) > OCEAN_TSR_TRIGGER1 ) { - // Annual fluxes are changing rapidly. Reduce the max timestep allowed. - max_timestep = max( OCEAN_MIN_TIMESTEP, max_timestep * OCEAN_TSR_FACTOR ); - H_LOG( logger, Logger::DEBUG ) << "Reducing timestep to " << max_timestep << ": t=" << t << " yearfraction=" << yearfraction << std::endl; - H_LOG( logger, Logger::DEBUG ) << " solver_flux=" << solver_flux << " lastflux_annualized=" << lastflux_annualized; - H_LOG( logger, Logger::DEBUG ) << " cflux_annualdiff=" << cflux_annualdiff << std::endl; - reduced_timestep_timeout = OCEAN_TSR_TIMEOUT; - - } else if( !in_partial_year && reduced_timestep_timeout ) { - // Things look OK, so decrement the timeout counter if it's active - reduced_timestep_timeout = max( 0, reduced_timestep_timeout-1 ); - H_LOG( logger, Logger::DEBUG ) << "OK, reduced_timestep_timeout =" << reduced_timestep_timeout << std::endl; - if( !reduced_timestep_timeout ) { - H_LOG( logger, Logger::DEBUG ) << "Reduced ts timeout done; raising" << std::endl; - max_timestep = min( OCEAN_MAX_TIMESTEP, max_timestep / OCEAN_TSR_FACTOR ); - if( max_timestep < OCEAN_MAX_TIMESTEP ) { - reduced_timestep_timeout = OCEAN_TSR_TIMEOUT; // set timer for another raise attempt - } - } +void OceanComponent::stashCValues(double t, const double c[]) { + + H_LOG(logger, Logger::DEBUG) + << "Stashing at t=" << t << ", model pools at " << t << ": " << c[0] + << " " << c[1] << " " << c[2] << " " << c[3] << " " << c[4] << " " << c[5] + << std::endl; + + // At this point the solver has converged, going from ODEstartdate to t + // Now we finalize calculations: circulate ocean, update carbon states, etc. + const double yearfraction = (t - ODEstartdate); + // H_LOG( logger, Logger::NOTICE ) << "Solver has finished. Yearfraction = " + // << yearfraction << std::endl; + H_ASSERT(yearfraction >= 0 && yearfraction <= 1, + "yearfraction out of bounds"); + + timesteps++; + const bool in_partial_year = (t != int(t)); + + unitval CO2_conc(c[SNBOX_ATMOS] * PGC_TO_PPMVCO2, U_PPMV_CO2); + + // Compute fluxes between the boxes (advection of carbon) + surfaceHL.compute_fluxes(CO2_conc, atmosphere_cpool, yearfraction); + surfaceLL.compute_fluxes(CO2_conc, atmosphere_cpool, yearfraction); + inter.compute_fluxes(CO2_conc, atmosphere_cpool, yearfraction); + deep.compute_fluxes(CO2_conc, atmosphere_cpool, yearfraction); + + // At this point, compute_fluxes has (by calling the chemistry model) computed + // atmosphere- ocean fluxes for the surface boxes. But these are + // end-of-timestep values, and we need to overwrite them with what the solver + // has sent us (~mid-timestep values), so that everything stays consistent. + unitval currentflux = surfaceHL.atmosphere_flux + surfaceLL.atmosphere_flux; + unitval solver_flux = unitval(c[SNBOX_OCEAN], U_PGC) - totalcpool(); + unitval adjustment(0.0, U_PGC); + if (currentflux.value(U_PGC)) + adjustment = (solver_flux - currentflux) / 2.0; + H_LOG(logger, Logger::DEBUG) + << "Solver flux = " << solver_flux << ", currentflux = " << currentflux + << ", adjust = " << adjustment << std::endl; + surfaceHL.atmosphere_flux = surfaceHL.atmosphere_flux + adjustment; + surfaceLL.atmosphere_flux = surfaceLL.atmosphere_flux + adjustment; + + // Separate the one net flux (can be positive or negative) into the two + // fluxpool fluxes (always positive) This updates oa_flux and ao_flux within + // the two ocean boxes + surfaceHL.separate_surface_fluxes(atmosphere_cpool); + surfaceLL.separate_surface_fluxes(atmosphere_cpool); + + // This (along with carbon-cycle-solver obviously) is the heart of the + // reduced-timestep code. If carbon flux has exceeded some critical value, + // we need to reduce timestep for the future. + unitval cflux_annualdiff = solver_flux / yearfraction - lastflux_annualized; + + if (cflux_annualdiff.value(U_PGC) > OCEAN_TSR_TRIGGER1) { + // Annual fluxes are changing rapidly. Reduce the max timestep allowed. + max_timestep = max(OCEAN_MIN_TIMESTEP, max_timestep * OCEAN_TSR_FACTOR); + H_LOG(logger, Logger::DEBUG) + << "Reducing timestep to " << max_timestep << ": t=" << t + << " yearfraction=" << yearfraction << std::endl; + H_LOG(logger, Logger::DEBUG) + << " solver_flux=" << solver_flux + << " lastflux_annualized=" << lastflux_annualized; + H_LOG(logger, Logger::DEBUG) + << " cflux_annualdiff=" << cflux_annualdiff << std::endl; + reduced_timestep_timeout = OCEAN_TSR_TIMEOUT; + + } else if (!in_partial_year && reduced_timestep_timeout) { + // Things look OK, so decrement the timeout counter if it's active + reduced_timestep_timeout = max(0, reduced_timestep_timeout - 1); + H_LOG(logger, Logger::DEBUG) + << "OK, reduced_timestep_timeout =" << reduced_timestep_timeout + << std::endl; + if (!reduced_timestep_timeout) { + H_LOG(logger, Logger::DEBUG) + << "Reduced ts timeout done; raising" << std::endl; + max_timestep = min(OCEAN_MAX_TIMESTEP, max_timestep / OCEAN_TSR_FACTOR); + if (max_timestep < OCEAN_MAX_TIMESTEP) { + reduced_timestep_timeout = + OCEAN_TSR_TIMEOUT; // set timer for another raise attempt + } } - - // Update lastflux and add it to annual sum - unitval lastflux = surfaceLL.atmosphere_flux + surfaceHL.atmosphere_flux; - annualflux_sumHL = annualflux_sumHL + surfaceHL.atmosphere_flux; - annualflux_sumLL = annualflux_sumLL + surfaceLL.atmosphere_flux; - annualflux_sum = annualflux_sum + lastflux; - - // lastflux_annualized is our basis of comparison for variable timestep - lastflux_annualized = lastflux / yearfraction; - - H_LOG( logger, Logger::DEBUG ) << "lastflux_annualized=" << lastflux_annualized << std::endl; - H_LOG( logger, Logger::DEBUG ) << "annualflux_sum=" << annualflux_sum << std::endl; - - // Log the state of all our boxes - surfaceLL.log_state(); - surfaceHL.log_state(); - inter.log_state(); - deep.log_state(); - - // Update box states - surfaceHL.update_state(); - surfaceLL.update_state(); - inter.update_state(); - deep.update_state(); - - // All good! t will be the start of the next timestep, so - ODEstartdate = t; - - } - - -void OceanComponent::reset(double time) -{ - - // Reset state variables to their values at the reset time - surfaceHL = surfaceHL_tv.get(time); - surfaceLL = surfaceLL_tv.get(time); - inter = inter_tv.get(time); - deep = deep_tv.get(time); - - Tgav = Tgav_ts.get(time); - Ca = Ca_ts.get(time); - - annualflux_sum = annualflux_sum_ts.get(time); - annualflux_sumHL = annualflux_sumHL_ts.get(time); - annualflux_sumLL = annualflux_sumLL_ts.get(time); - lastflux_annualized = lastflux_annualized_ts.get(time); - - max_timestep = max_timestep_ts.get(time); - reduced_timestep_timeout = reduced_timestep_timeout_ts.get(time); - timesteps = 0; - - - // truncate all the time series beyond the reset time - surfaceHL_tv.truncate(time); - surfaceLL_tv.truncate(time); - inter_tv.truncate(time); - deep_tv.truncate(time); - - Tgav_ts.truncate(time); - Ca_ts.truncate(time); - - annualflux_sum_ts.truncate(time); - annualflux_sumHL_ts.truncate(time); - annualflux_sumLL_ts.truncate(time); - lastflux_annualized_ts.truncate(time); - - max_timestep_ts.truncate(time); - reduced_timestep_timeout_ts.truncate(time); - - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; + } + + // Update lastflux and add it to annual sum + unitval lastflux = surfaceLL.atmosphere_flux + surfaceHL.atmosphere_flux; + annualflux_sumHL = annualflux_sumHL + surfaceHL.atmosphere_flux; + annualflux_sumLL = annualflux_sumLL + surfaceLL.atmosphere_flux; + annualflux_sum = annualflux_sum + lastflux; + + // lastflux_annualized is our basis of comparison for variable timestep + lastflux_annualized = lastflux / yearfraction; + + H_LOG(logger, Logger::DEBUG) + << "lastflux_annualized=" << lastflux_annualized << std::endl; + H_LOG(logger, Logger::DEBUG) + << "annualflux_sum=" << annualflux_sum << std::endl; + + // Log the state of all our boxes + surfaceLL.log_state(); + surfaceHL.log_state(); + inter.log_state(); + deep.log_state(); + + // Update box states + surfaceHL.update_state(); + surfaceLL.update_state(); + inter.update_state(); + deep.update_state(); + + // All good! t will be the start of the next timestep, so + ODEstartdate = t; } +//------------------------------------------------------------------------------ +// documentation is inherited +void OceanComponent::reset(double time) { + // Reset state variables to their values at the reset time + surfaceHL = surfaceHL_tv.get(time); + surfaceLL = surfaceLL_tv.get(time); + inter = inter_tv.get(time); + deep = deep_tv.get(time); + + SST = SST_ts.get(time); + CO2_conc = Ca_ts.get(time); + + annualflux_sum = annualflux_sum_ts.get(time); + annualflux_sumHL = annualflux_sumHL_ts.get(time); + annualflux_sumLL = annualflux_sumLL_ts.get(time); + lastflux_annualized = lastflux_annualized_ts.get(time); + + max_timestep = max_timestep_ts.get(time); + reduced_timestep_timeout = reduced_timestep_timeout_ts.get(time); + timesteps = 0; + + // truncate all the time series beyond the reset time + surfaceHL_tv.truncate(time); + surfaceLL_tv.truncate(time); + inter_tv.truncate(time); + deep_tv.truncate(time); + + SST_ts.truncate(time); + Ca_ts.truncate(time); + + annualflux_sum_ts.truncate(time); + annualflux_sumHL_ts.truncate(time); + annualflux_sumLL_ts.truncate(time); + lastflux_annualized_ts.truncate(time); + + max_timestep_ts.truncate(time); + reduced_timestep_timeout_ts.truncate(time); + + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; +} -void OceanComponent::record_state(double time) -{ - H_LOG(logger, Logger::DEBUG) << "Recording component state at t= " << time << endl; - surfaceHL_tv.set(time, surfaceHL); - surfaceLL_tv.set(time, surfaceLL); - inter_tv.set(time, inter); - deep_tv.set(time, deep); - - // Record the state of the various ocean boxes and variables at each time step - // in a unitval time series so that the output can be output by the - // R wrapper. - Tgav_ts.set(time, Tgav); - Ca_ts.set(time, Ca); - annualflux_sum_ts.set(time, annualflux_sum); - annualflux_sumHL_ts.set(time, annualflux_sumHL); - annualflux_sumLL_ts.set(time, annualflux_sumLL); - lastflux_annualized_ts.set(time, lastflux_annualized); - C_IO_ts.set(time, inter.get_carbon()); - Ca_HL_ts.set(time, surfaceHL.get_carbon()); - C_DO_ts.set(time, surfaceHL.annual_box_fluxes[ &deep ]); - PH_HL_ts.set(time, surfaceHL.mychemistry.pH); - PH_LL_ts.set(time, surfaceLL.mychemistry.pH); - pco2_HL_ts.set(time, surfaceHL.mychemistry.PCO2o); - pco2_LL_ts.set(time, surfaceLL.mychemistry.PCO2o); - dic_HL_ts.set(time, surfaceHL.mychemistry.convertToDIC( surfaceHL.get_carbon() )); - dic_LL_ts.set(time, surfaceLL.mychemistry.convertToDIC( surfaceLL.get_carbon() )); - Ca_LL_ts.set(time, surfaceLL.get_carbon()); - C_DO_ts.set(time, deep.get_carbon()); - temp_HL_ts.set(time, surfaceHL.get_Tbox()); - temp_LL_ts.set(time, surfaceLL.get_Tbox()); - co3_HL_ts.set(time, surfaceHL.mychemistry.CO3); - co3_LL_ts.set(time, surfaceLL.mychemistry.CO3); - - max_timestep_ts.set(time, max_timestep); - reduced_timestep_timeout_ts.set(time, reduced_timestep_timeout); +//------------------------------------------------------------------------------ +// documentation is inherited +void OceanComponent::record_state(double time) { + H_LOG(logger, Logger::DEBUG) + << "Recording component state at t= " << time << endl; + surfaceHL_tv.set(time, surfaceHL); + surfaceLL_tv.set(time, surfaceLL); + inter_tv.set(time, inter); + deep_tv.set(time, deep); + + // Record the state of the various ocean boxes and variables at each time step + // in a unitval time series so that the output can be output by the + // R wrapper. + SST_ts.set(time, SST); + Ca_ts.set(time, CO2_conc); + annualflux_sum_ts.set(time, annualflux_sum); + annualflux_sumHL_ts.set(time, annualflux_sumHL); + annualflux_sumLL_ts.set(time, annualflux_sumLL); + lastflux_annualized_ts.set(time, lastflux_annualized); + C_IO_ts.set(time, inter.get_carbon()); + Ca_HL_ts.set(time, surfaceHL.get_carbon()); + C_DO_ts.set(time, surfaceHL.annual_box_fluxes[&deep]); + PH_HL_ts.set(time, surfaceHL.mychemistry.pH); + PH_LL_ts.set(time, surfaceLL.mychemistry.pH); + pco2_HL_ts.set(time, surfaceHL.mychemistry.PCO2o); + pco2_LL_ts.set(time, surfaceLL.mychemistry.PCO2o); + dic_HL_ts.set(time, + surfaceHL.mychemistry.convertToDIC(surfaceHL.get_carbon())); + dic_LL_ts.set(time, + surfaceLL.mychemistry.convertToDIC(surfaceLL.get_carbon())); + Ca_LL_ts.set(time, surfaceLL.get_carbon()); + C_DO_ts.set(time, deep.get_carbon()); + temp_HL_ts.set(time, surfaceHL.get_Tbox()); + temp_LL_ts.set(time, surfaceLL.get_Tbox()); + co3_HL_ts.set(time, surfaceHL.mychemistry.CO3); + co3_LL_ts.set(time, surfaceLL.mychemistry.CO3); + + max_timestep_ts.set(time, max_timestep); + reduced_timestep_timeout_ts.set(time, reduced_timestep_timeout); } //------------------------------------------------------------------------------ // documentation is inherited void OceanComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void OceanComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void OceanComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/ocean_csys.cpp b/src/ocean_csys.cpp index 9e06a51e8..968330ba7 100644 --- a/src/ocean_csys.cpp +++ b/src/ocean_csys.cpp @@ -1,17 +1,18 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. -*/ -// ocean_csys_class.cpp : Defines the entry point for the console application. -/* Ocean Carbon Chemistry CODE File: + + ocean_csys_class.cpp : Defines the entry point for the console application. + * Ocean Carbon Chemistry CODE File: * * Created by Corinne Hartin 1/30/13. - + * This code translated from MATLAB code + http://www.soest.hawaii.edu/oceanography/faculty/zeebe_files/CO2_System_in_Seawater/csys.html * Reference: Richard E. Zeebe and Dieter A. Wolf-Gladrow - + * Alfred Wegener Institute for * Polar and Marine Research * P.O. Box 12 01 61 @@ -19,13 +20,45 @@ * Germany * e-mail: rzeebe@awi-bremerhaven.de wolf@awi-bremerhaven.de * - * based on the book by Zeebe and Wolf-Gladrow (2001) CO2 in seawater: equilibrium, kintetics, isotopes. 346 p Amsterdam: Elsevier - * http://www.soest.hawaii.edu/oceanography/faculty/zeebe_files/CO2_System_in_Seawater/csys.html + * based on the book by Zeebe, R. E. and Wolf-Gladrow, D.: CO2 in Seawater: + Equilibrium, Kinetics, Isotopes, Elsevier, Amsterdam, 2001. + * + * + * Other References + * DOE: Handbook of methods for the analysis of the various parameters + * of the carbon dioxide system in sea water, edited by: Dickson, + * A. G. and Goyet, C., ORNL/CDIAC-74, 1994. + * Hartin, C. A., Bond-Lamberty, B., Patel, P., and Mundra, A.: + * Ocean acidification over the next three centuries using a simple global + * climate carbon-cycle model: projections and sensitivities, + Biogeosciences, 13, 4329–4342, https://doi.org/10.5194/bg-13-4329-2016, 2016. + * Lueker, T. J., Dickson, A. G., and Keeling, C. D.: Ocean pCO2 + * calculated from dissolved inorganic carbon, alkalinity, and equations + * for K1 and K2; validation based on laboratory measurements + * of CO2 in gas and seawater at equilibrium, Mar. Chem., 70, 105–119, + 2000. + * Mucci, A.: The solubility of calcite and aragonite in seawater at + * various salinities, temperatures and at one atmopshere pressure, + * Am. J. Sci., 283, 781–799, 1983. + * Riebesell U., Fabry V. J., Hansson L. & Gattuso J.-P. (eds) (2011) Guide to + best practices + * for ocean acidification research and data reporting. [reprinted edition + including + * erratum]. Luxembourg, Publications Office of the European Union, 258pp. + * (EUR 24872 EN). DOI 10.2777/66906 + * Wanninkhof, R.: Relationship between wind speed and gas exchange + * over the ocean, J. Geophys. Res.-Oceans, 97, 7373–7382, + * doi:10.1029/92JC00188, 1992. + * Weiss, R. F.: Carbon dioxide in water and seawater: the solubility + * of a non-ideal gas, Mar. Chem., 2, 203–215, + doi:10.1016/0304-4203(74)90015-2, 1974. + * */ #include // some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: polynomial.hpp still generates many warnings #pragma clang diagnostic push #pragma clang diagnostic ignored "-Weverything" #include @@ -37,81 +70,89 @@ #include "ocean_csys.hpp" namespace Hector { - + using namespace std; //------------------------------------------------------------------------------ -/*! \brief new oceanbox logger - * oceanbox logger may or may not be defined and therefore we check before logging +/*! \brief a new ocean csys logger + * + * The ocean csys logger may or may not be defined and therefore we check before + * logging */ -#define CS_LOG(log, level) \ -if( log != NULL ) H_LOG( (*log), level ) +#define OC_LOG(log, level) \ + if (log != NULL) \ + H_LOG((*log), level) //------------------------------------------------------------------------------ /*! \brief constructor */ oceancsys::oceancsys() : ncoeffs(6), m_a(ncoeffs) { - logger = NULL; - S = alk = As = Ks = 0.0; + logger = NULL; + S = alk = As = Ks = 0.0; } //------------------------------------------------------------------------------ -/*! \brief A helper functor class used to evauluate a polynomial and its derivative. - * \details This helper class gives an interface that is callable from boost's numerical - * solvers which need to evaluate a function and it's derivative. This class - * wrapps a polynomical by taking an array of coefficients in ascending order of - * the degree of the term they are associated. +/*! \brief A helper functor class used to evauluate a polynomial and its + * derivative. \details This helper class gives an interface that is callable + * from boost's numerical solvers which need to evaluate a function and it's + * derivative. This class wrapps a polynomical by taking an array of + * coefficients in ascending order of the degree of the term they are + * associated. */ class PolyDerivFunctor { - public: - PolyDerivFunctor(const double* coefs, const int degree) { - using namespace boost::math::tools; - const int size = degree + 1; - mPoly = polynomial(coefs, degree); - double* derivCoef = new double[size-1]; - for(int i = 1; i < size; ++i) { - derivCoef[i - 1] = coefs[i] * static_cast(i); - } - mPolyDeriv = polynomial(derivCoef, degree-1); - delete[] derivCoef; - } - - pair operator()(const double x) { - return pair(mPoly.evaluate(x), mPolyDeriv.evaluate(x)); - } - - private: - //! The representation of the polynomial to calculate. - boost::math::tools::polynomial mPoly; - - //! The representation of the derivative of the polynomial to calculate. - boost::math::tools::polynomial mPolyDeriv; +public: + PolyDerivFunctor(const double *coefs, const int degree) { + using namespace boost::math::tools; + const int size = degree + 1; + mPoly = polynomial(coefs, degree); + double *derivCoef = new double[size - 1]; + for (int i = 1; i < size; ++i) { + derivCoef[i - 1] = coefs[i] * static_cast(i); + } + mPolyDeriv = polynomial(derivCoef, degree - 1); + delete[] derivCoef; + } + + pair operator()(const double x) { + return pair(mPoly.evaluate(x), mPolyDeriv.evaluate(x)); + } + +private: + //! The representation of the polynomial to calculate. + boost::math::tools::polynomial mPoly; + + //! The representation of the derivative of the polynomial to calculate. + boost::math::tools::polynomial mPolyDeriv; }; //------------------------------------------------------------------------------ /*! \brief Find the largest real root, using GSL or appropriate algorithms - * \param ncoeff Number of coefficients - * \param *a Coefficients - * \return Largest real root (H+ ion) + * \param ncoeffs Number of coefficients + * \param a Coefficients + * \return Largest real root (H+ ion) */ -double find_largest_root( const int ncoeffs, double* a ) { - - using namespace boost::math::tools; - const int degree = ncoeffs-1; - PolyDerivFunctor polyFunctor(a, degree); - // Use Fujiwara's method to find an upper bound for the roots of the polynomial - double max = pow(std::abs(a[0] / ( 2.0 * a[degree])), 1.0 / degree); - for(int i = 1; i < degree; ++i) { - max = std::max(max, pow(std::abs(a[i]/a[degree]), 1.0 / static_cast(degree - i))); - } - max *= 2.0; - // Use Newton's method to find the largest real root starting from the Fujiwara upper bound - // arbitrarily solve unil 60% of the digits are correct. - const int digits = numeric_limits::digits; - int get_digits = static_cast(digits * 0.6); - double h = newton_raphson_iterate(polyFunctor, max-0.001, 0.0, max, get_digits); - - return h; +double find_largest_root(const int ncoeffs, double *a) { + + using namespace boost::math::tools; + const int degree = ncoeffs - 1; + PolyDerivFunctor polyFunctor(a, degree); + // Use Fujiwara's method to find an upper bound for the roots of the + // polynomial + double max = pow(std::abs(a[0] / (2.0 * a[degree])), 1.0 / degree); + + for (int i = 1; i < degree; ++i) { + max = std::max(max, pow(std::abs(a[i] / a[degree]), + 1.0 / static_cast(degree - i))); + } + max *= 2.0; + // Use Newton's method to find the largest real root starting from the + // Fujiwara upper bound arbitrarily solve unil 60% of the digits are correct. + const int digits = numeric_limits::digits; + int get_digits = static_cast(digits * 0.6); + double h = + newton_raphson_iterate(polyFunctor, max - 0.001, 0.0, max, get_digits); + + return h; } //------------------------------------------------------------------------------ @@ -122,181 +163,236 @@ double find_largest_root( const int ncoeffs, double* a ) { * pCO2 is used to calculate ocean-atmosphere fluxes * (from Takahashi et al, 2009, eq. 7 & 8) */ -void oceancsys::ocean_csys_run( unitval tbox, unitval carbon ) -{ - - double tmp, tmp1, tmp2, tmp3; - - // Convert carbon to dic value and temperature to K - const double dic = convertToDIC( carbon ).value( U_UMOL_KG )/1e6; // back to mol/kg - const double Tc = tbox.value( U_DEGC ); - const double Tk = Tc + 273.15; - - // Check that all is OK with input data - H_ASSERT( Tk > 265 && Tk < 308, "bad Tk value" ); // Kelvin - H_ASSERT( dic > 1000e-6 && dic < 3700e-6, "bad dic value" ); // mol/kg - - // alk should be constant once spinup is done, but check anyway - H_ASSERT( alk >= 2000e-6 && alk <= 2750e-6, "bad alk value" ); // mol/kg - - /*--------------------------------------------------------------- - This section calculates the constants K0, Sc, K1, K2, Ksp, Ksi etc. - ---------------------------------------------------------------*/ - - // --------------------- K0 ----------------------------------- - // solubility of CO2 calculated from Weiss 1974 (mol * L-1 * atm-1) - // used to calculate CO2 fluxes - tmp1 = -58.0931 + 90.5069* ( 100/Tk ) + 22.2940 * log( Tk/100 ); - tmp2 = S * ( 0.027766 - 0.025888 * ( Tk/100 ) + 0.0050578 * ( ( Tk/100 ) * ( Tk/100 ) ) ); - const double lnK0 = tmp1 + tmp2; - K0.set( exp( lnK0 ), U_MOL_L_ATM ); - - //---------------------Sc------------------------------------------ - // Schmidt Number from Wanninkhof 1992 - const double Sc = 2073.1 - ( 125.62 * Tc ) + (3.6276 * Tc * Tc) - ( 0.043219 * Tc * Tc * Tc ); - - // --------------------- Kwater ----------------------------------- - // table 1.1 in Part1: Seawater carbonate chemistry Andrew Dickson - // Millero (1995)(in Dickson and Goyet (1994, Chapter 5, p.18)) - tmp1 = -13847.26/Tk + 148.96502 - 23.6521 * log( Tk ); - tmp2 = + (118.67/Tk - 5.977 + 1.0495*log( Tk ) ) * sqrt( S ) - 0.01615 * S; - const double lnKw = tmp1 + tmp2; - Kw.set( exp(lnKw), U_MOL_KG); - - - //---------------------- Kh (K Henry) ---------------------------- - // solubility of CO2 calculated from Weiss 1974 (mol*kg-1*atm-1) - // Kh and K0 are identical equations with differing constants resulting in different units - // used to calculate pCO2 - tmp = 9345.17 / Tk - 60.2409 + 23.3585 * log( Tk/100 ); - const double nKhwe74 = tmp + S * ( 0.023517-0.00023656 * Tk + 0.0047036e-4 * Tk * Tk ); - Kh.set( exp( nKhwe74 ), U_MOL_KG_ATM); - - // --------------------- K1 --------------------------------------- - // Mehrbach et al (1973) refit by Lueker et al. (2000). - const double pK1mehr = 3633.86/Tk - 61.2172 + 9.6777*log( Tk ) - 0.011555 * S + 0.0001152 * S * S; - const unitval K1( pow( 10, -pK1mehr ), U_MOL_KG); - - // --------------------- K2 ---------------------------------------- - // Mehrbach et al. (1973) refit by Lueker et al. (2000). - const double pK2mehr = 471.78/Tk + 25.9290 - 3.16967 * log( Tk ) - 0.01781 * S + 0.0001122 * S * S; - const unitval K2( pow( 10.0, -pK2mehr ), U_MOL_KG); - - // --------------------- Kb -------------------------------------------- - // boric acid DOE 1994 - tmp1 = ( -8966.90-2890.53 * sqrt( S ) - 77.942 * S+ 1.728*pow( S,( 3.0/2.0 ) ) - 0.0996 * S * S )/Tk; - tmp2 = +148.0248+137.1942 * sqrt( S ) + 1.62142 * S; - tmp3 = +(-24.4344-25.085 * sqrt( S )-0.2474 * S ) * log( Tk ) + 0.053105 * sqrt( S ) * Tk; - const double lnKb = tmp1 + tmp2 + tmp3; - const unitval Kb( exp(lnKb), U_MOL_KG); - - // --------------------- Kspc (calcite) ---------------------------- - // Mucci, Alphonso, Amer. J. of Science 283:781-799, 1983 - tmp1 = -171.9065-0.077993 * Tk + 2839.319/Tk + 71.595 * log10( Tk ); - tmp2 = +( -0.77712+0.0028426 * Tk + 178.34/Tk ) * sqrt( S ); - tmp3 = -0.07711 * S + 0.0041249 * pow( S, 1.5 ); - const double log10Kspc = tmp1 + tmp2 + tmp3; - const double Kspc = pow( 10.0, log10Kspc ); // mol/kg - - // --------------------- Kspa (aragonite) ---------------------------- - // Mucci, Alphonso, Amer. J. of Science 283:781-799, 1983 - tmp1 = -171.945 - 0.077993 * Tk + 2903.293 / Tk + 71.595 * log10( Tk ); - tmp2 = +( -0.068393+0.0017276 * Tk + 88.135/Tk ) * sqrt( S ); - tmp3 = -0.10018 * S + 0.0059415 * pow( S, 1.5 ); - const double log10Kspa = tmp1 + tmp2 + tmp3; - const double Kspa = pow( 10.0, log10Kspa ); // mol/kg - - //------------------------- boron -------------------------------------- - // total boron concentration - // DOE 1994 - const double bor = 1 * ( 416.0 * ( S/35.0 ) ) * 1.e-6; // (mol/kg), DOE94 - - /* --------------------------------------- - ALK and DIC given solve for pH and pCO2 - ------------------------------------------*/ - - const double Kb_val = Kb.value( U_MOL_KG ); // for convenience in eqns below - const double K1_val = K1.value( U_MOL_KG ); - const double K2_val = K2.value( U_MOL_KG ); - const double Kw_val = Kw.value( U_MOL_KG ); - - const double p5 = -1.0; - const double p4 = -alk - Kb_val - K1_val; - const double p3 = dic * K1_val - alk * ( Kb_val + K1_val ) - + Kb_val * bor + Kw_val - Kb_val - * K1_val - K1_val * K2_val; - tmp = dic * ( Kb_val * K1_val + 2.0 * K1_val * K2_val ) - -alk * (Kb_val * K1_val + K1_val * K2_val) - + Kb_val * bor * K1_val; - const double p2 = tmp + ( Kw_val * Kb_val + Kw_val * K1_val - Kb_val * K1_val * K2_val ); - tmp = 2.0 * dic * Kb_val * K1_val * K2_val - - alk * Kb_val * K1_val * K2_val + Kb_val - * bor * K1_val * K2_val; - const double p1 = tmp + ( Kw_val * Kb_val * K1_val + Kw_val * K1_val * K2_val ); - const double p0 = Kw_val * Kb_val * K1_val * K2_val; - - m_a[ 0 ] = p0; - m_a[ 1 ] = p1; - m_a[ 2 ] = p2; - m_a[ 3 ] = p3; - m_a[ 4 ] = p4; - m_a[ 5 ] = p5; - - const double h = find_largest_root( ncoeffs, &m_a[0] ); - - const double co2st = dic/( 1.0 + K1_val / h + K1_val * K2_val / h / h ); // co2st = CO2* - const double hco3 = dic/( 1.0 + h / K1_val + K2_val / h ); - const double co3 = dic/( 1.0 + h / K2_val + h * h / K1_val / K2_val ); // mol/kg - - const double million = 1e6; // unit conversion - - // Output (all variables beginning with capital letter below) - TCO2o.set( co2st * million, U_UMOL_KG ); - HCO3.set( hco3 * million, U_UMOL_KG ); - CO3.set( co3 * million, U_UMOL_KG ); - PCO2o.set ( co2st * million/Kh.value( U_MOL_KG_ATM ), U_UATM ); - pH.set (-log10( h ), U_PH); - - // ---------------------------------------------------------------------------- - /*! \brief calculate air-sea flux of carbon - * based on Takahashi et al, 2009 Deep Sea Research - * Uses K0 (solubility), Sc (Schmidt number) , U (wind stress), PCO2atm, PCO2o - */ - - Tr.set( ( 0.585 * K0.value( U_MOL_L_ATM ) - * pow( Sc, -0.5 ) * U * U ), U_gC_m2_month_uatm ); // units : gC m-2 month-1 uatm-1. - // 0.585 is a unit conversion factor. See Takahashi et al, 2009 page 568 - // unit conversion * solubility * Schmidt number * wind speed^2 - - //------------------------------------------------------------------------ - /*! \brief calculate Omega of Ca/Ar - * Uses Ksp of Ca and Ar, CO3, S, and pH - */ - - // this is 0.010285*S/35 - const double calcium = 0.02128/40.087 * ( S/1.80655 ); //mol/kg Riley, and Tongudai, Chemical Geology 2:263-269, 1967 - OmegaCa.set( ( ( co3 * calcium ) / Kspc ), U_UNITLESS ); - OmegaAr.set( ( ( co3 * calcium ) / Kspa ), U_UNITLESS ); +void oceancsys::ocean_csys_run(unitval tbox, unitval carbon) { + + double tmp, tmp1, tmp2, tmp3; + + // Convert carbon to dic value and temperature to K + const double dic = + convertToDIC(carbon).value(U_UMOL_KG) / 1e6; // back to mol/kg + const double Tc = tbox.value(U_DEGC); + const double Tk = Tc + 273.15; + + // Using the recommended ranges Richard E. Zeebe and Dieter A. Wolf-Gladrow + // check the input values fro temperature, DIC, and alkalinity. If that is the + // case issue a warning, this may happen during idealized experiments or runs + // extending beyond 2100. + const bool questionable_Tk = !(Tk > 265 && Tk < 308); + const bool questionable_dic = !(dic > 1000e-6 && dic < 3700e-6); + const bool questionable_alk = !(alk >= 2000e-6 && alk <= 2750e-6); + + if (questionable_Tk) { + OC_LOG(logger, Logger::NOTICE) + << "Temp value outside of Zeebe & Wolf-Gladrow range" << endl; + } + if (questionable_dic) { + OC_LOG(logger, Logger::NOTICE) + << "DIC value outside of Zeebe & Wolf-Gladrow range" << endl; + } + if (questionable_alk) { + OC_LOG(logger, Logger::NOTICE) + << "Alk value outside of Zeebe & Wolf-Gladrow range" << endl; + } + + /*--------------------------------------------------------------- +This section calculates the constants K0, Sc, K1, K2, Ksp, Ksi etc. +---------------------------------------------------------------*/ + + // --------------------- K0 ----------------------------------- + // Solubility of CO2 Weiss 1974 (mol * L-1 * atm-1) + // Weiss 1974 equation 12 constants listed in column 1 of TABLE I + // CO2 solubility will be used to calculate fluxes. + tmp1 = -58.0931 + 90.5069 * (100 / Tk) + 22.2940 * log(Tk / 100); + tmp2 = S * (0.027766 - 0.025888 * (Tk / 100) + + 0.0050578 * ((Tk / 100) * (Tk / 100))); + const double lnK0 = tmp1 + tmp2; + K0.set(exp(lnK0), U_MOL_L_ATM); + + //---------------------Sc------------------------------------------ + // Calculate Schmidt Number an expressions for gas transfer that depends on + // temperature and salinity. Equation Sc = A - Bt + Ct 2 - Dt 3 (t in + // degrees C) from WANNINKHOF 1992 see TABLE A1 WANNINKHOF 1992 . for + // coefficients. + const double Sc = + 2073.1 - (125.62 * Tc) + (3.6276 * Tc * Tc) - (0.043219 * Tc * Tc * Tc); + + // --------------------- Kwater ----------------------------------- + // Calculate equilibrium constants (on the total hydrogen ion scale) as a + // function of salinity (S) and temperature (T). Table 1.1 of Part1: Seawater + // carbonate chemistry of Riebesell et al. 2011 + tmp1 = -13847.26 / Tk + 148.96502 - + 23.6521 * log(Tk); // eq 1.10 Riebesell et al. 2011 + tmp2 = +(118.67 / Tk - 5.977 + 1.0495 * log(Tk)) * sqrt(S) - + 0.01615 * S; // eq 1.10 Riebesell et al. 2011 + const double lnKw = tmp1 + tmp2; // eq 1.10 Riebesell et al. 2011 + Kw.set(exp(lnKw), U_MOL_KG); + + //---------------------- Kh (K Henry) ---------------------------- + // Solubility of CO2 calculated using Henry's law Weiss 1974 (moles * atm * + // kg-1) Weiss 1974 equation 12 constants listed in column 2 of TABLE I Note + // Kh and K0 are identical equations with differing constants resulting in + // different units used to calculate pCO2 + tmp = 9345.17 / Tk - 60.2409 + 23.3585 * log(Tk / 100); + const double nKhwe74 = + tmp + S * (0.023517 - 0.00023656 * Tk + 0.0047036e-4 * Tk * Tk); + Kh.set(exp(nKhwe74), U_MOL_KG_ATM); + + // --------------------- K1 --------------------------------------- + // First acidity constants of carbonic acid + // Lueker et al. (2000) equation 16 + const double pK1mehr = 3633.86 / Tk - 61.2172 + 9.6777 * log(Tk) - + 0.011555 * S + 0.0001152 * S * S; + const unitval K1(pow(10, -pK1mehr), U_MOL_KG); + + // --------------------- K2 ---------------------------------------- + // Second acidity constants of carbonic acid + // Lueker et al. (2000) equation 17 + const double pK2mehr = 471.78 / Tk + 25.9290 - 3.16967 * log(Tk) - + 0.01781 * S + 0.0001122 * S * S; + const unitval K2(pow(10.0, -pK2mehr), U_MOL_KG); + + // --------------------- Kb -------------------------------------------- + // The equilibrium constant of boric acid + // DOE 1994 + tmp1 = (-8966.90 - 2890.53 * sqrt(S) - 77.942 * S + + 1.728 * pow(S, (3.0 / 2.0)) - 0.0996 * S * S) / + Tk; + tmp2 = +148.0248 + 137.1942 * sqrt(S) + 1.62142 * S; + tmp3 = +(-24.4344 - 25.085 * sqrt(S) - 0.2474 * S) * log(Tk) + + 0.053105 * sqrt(S) * Tk; + const double lnKb = tmp1 + tmp2 + tmp3; + const unitval Kb(exp(lnKb), U_MOL_KG); + + // --------------------- Kspc (calcite) ---------------------------- + // Solubility of calcite + // Mucci 1983 + tmp1 = -171.9065 - 0.077993 * Tk + 2839.319 / Tk + 71.595 * log10(Tk); + tmp2 = +(-0.77712 + 0.0028426 * Tk + 178.34 / Tk) * sqrt(S); + tmp3 = -0.07711 * S + 0.0041249 * pow(S, 1.5); + const double log10Kspc = tmp1 + tmp2 + tmp3; + const double Kspc = pow(10.0, log10Kspc); // mol/kg + + // --------------------- Kspa (aragonite) ---------------------------- + // Solubility of aragonite + // Mucci 1983 + tmp1 = -171.945 - 0.077993 * Tk + 2903.293 / Tk + 71.595 * log10(Tk); + tmp2 = +(-0.068393 + 0.0017276 * Tk + 88.135 / Tk) * sqrt(S); + tmp3 = -0.10018 * S + 0.0059415 * pow(S, 1.5); + const double log10Kspa = tmp1 + tmp2 + tmp3; + const double Kspa = pow(10.0, log10Kspa); // mol/kg + + //------------------------- boron -------------------------------------- + // Total boron concentration related to seawater salinity + // DOE 1994 + const double bor = 1 * (416.0 * (S / 35.0)) * 1.e-6; // (mol/kg) + + /* --------------------------------------- +Since ALK and DIC are given, solve for pH and pCO2 +------------------------------------------*/ + // DIC is calculated as a function of total carbon pool size + // & ALK (total alkalinity) calculated at the end of model spinup + // and held constant for the rest of the run. See Hartin 2015. + + // See Zeebe and Wolf-Gladrow 2001 + // Appendix B system of equations 15. + + const double Kb_val = Kb.value(U_MOL_KG); // for convenience in eqns below + const double K1_val = K1.value(U_MOL_KG); + const double K2_val = K2.value(U_MOL_KG); + const double Kw_val = Kw.value(U_MOL_KG); + + // Define the six variables of the carbonate system + const double p5 = -1.0; + const double p4 = -alk - Kb_val - K1_val; + const double p3 = dic * K1_val - alk * (Kb_val + K1_val) + Kb_val * bor + + Kw_val - Kb_val * K1_val - K1_val * K2_val; + tmp = dic * (Kb_val * K1_val + 2.0 * K1_val * K2_val) - + alk * (Kb_val * K1_val + K1_val * K2_val) + Kb_val * bor * K1_val; + const double p2 = + tmp + (Kw_val * Kb_val + Kw_val * K1_val - Kb_val * K1_val * K2_val); + tmp = 2.0 * dic * Kb_val * K1_val * K2_val - alk * Kb_val * K1_val * K2_val + + Kb_val * bor * K1_val * K2_val; + const double p1 = tmp + (Kw_val * Kb_val * K1_val + Kw_val * K1_val * K2_val); + const double p0 = Kw_val * Kb_val * K1_val * K2_val; + m_a[0] = p0; + m_a[1] = p1; + m_a[2] = p2; + m_a[3] = p3; + m_a[4] = p4; + m_a[5] = p5; + + // Find the solution to the polynomial of the carbonate system + const double h = find_largest_root(ncoeffs, &m_a[0]); + + // Solve for the remiaing carbonate variables + const double co2st = + dic / (1.0 + K1_val / h + K1_val * K2_val / h / h); // co2st = CO2* + const double hco3 = dic / (1.0 + h / K1_val + K2_val / h); + const double co3 = + dic / (1.0 + h / K2_val + h * h / K1_val / K2_val); // mol/kg + + const double million = 1e6; // unit conversion + + // Output (all variables beginning with capital letter below) + TCO2o.set(co2st * million, U_UMOL_KG); + HCO3.set(hco3 * million, U_UMOL_KG); + CO3.set(co3 * million, U_UMOL_KG); + PCO2o.set(co2st * million / Kh.value(U_MOL_KG_ATM), U_UATM); + pH.set(-log10(h), U_PH); + + // ---------------------------------------------------------------------------- + /*! Calculate air-sea flux of carbon + * based on Takahashi et al, 2009 Deep Sea Research + * Uses K0 (solubility), Sc (Schmidt number) , U (wind stress), PCO2atm, PCO2o + */ + + Tr.set((0.585 * K0.value(U_MOL_L_ATM) * pow(Sc, -0.5) * U * U), + U_gC_m2_month_uatm); // units : gC m-2 month-1 uatm-1. + // 0.585 is a unit conversion factor from Takahashi et al, 2009 equation 8 + // unit conversion * solubility * Schmidt number * wind speed^2 + + //------------------------------------------------------------------------ + /*! \brief calculate Omega of Ca/Ar + * Uses Ksp of Ca and Ar, CO3, S, and pH + */ + + // this is 0.010285*S/35 + const double calcium = + 0.02128 / 40.087 * + (S / + 1.80655); // mol/kg Riley, and Tongudai, Chemical Geology 2:263-269, 1967 + OmegaCa.set(((co3 * calcium) / Kspc), U_UNITLESS); + OmegaAr.set(((co3 * calcium) / Kspa), U_UNITLESS); } //------------------------------------------------------------------------------- /*! \brief Calculate the (monthly) atmosphere-surface box flux - * \param Ca Atmospheric CO2 + * \param CO2_conc Atmospheric [CO2] * \param cpoolscale Scale the box C pool by this amount (1.0=none) - * \return Monthly atmospheric C flux, gC/m2/month + * \return Monthly atmospheric C flux, gC/m2/month (positive = into + * ocean) */ -double oceancsys::calc_monthly_surface_flux( const unitval& Ca, const double cpoolscale ) const { - return ( ( Ca.value( U_PPMV_CO2 ) - PCO2o.value( U_UATM ) * cpoolscale ) * Tr.value( U_gC_m2_month_uatm ) ); // units : gC m-2 month-1 +double oceancsys::calc_monthly_surface_flux(const unitval &CO2_conc, + const double cpoolscale) const { + // Tr is the gas transfer coefficient + return ((CO2_conc.value(U_PPMV_CO2) - PCO2o.value(U_UATM) * cpoolscale) * + Tr.value(U_gC_m2_month_uatm)); // units : gC m-2 month-1 } //------------------------------------------------------------------------------- /*! \brief Calculate the (annualized) atmosphere-surface box flux - * \param Ca Atmospheric CO2 + * \param CO2_conc Atmospheric [CO2] * \param cpoolscale Scale the box C pool by this amount (1.0=none) - * \return Annual atmospheric C flux, Pg C/yr + * \return Annual atmospheric C flux, Pg C/yr (positive = into + * ocean) */ -unitval oceancsys::calc_annual_surface_flux( const unitval& Ca, const double cpoolscale ) const { - return unitval( ( calc_monthly_surface_flux( Ca, cpoolscale ) * As * 12.0 ) / 1e15, U_PGC_YR ); +unitval oceancsys::calc_annual_surface_flux(const unitval &CO2_conc, + const double cpoolscale) const { + // Surface flux (gC m-2 month-1) * area of the box * number of months in the + // year / conversion constant + return unitval((calc_monthly_surface_flux(CO2_conc, cpoolscale) * As * 12.0) / + 1e15, + U_PGC_YR); } //------------------------------------------------------------------------------- @@ -304,9 +400,11 @@ unitval oceancsys::calc_annual_surface_flux( const unitval& Ca, const double cpo * \param carbon Carbon value to convert (Pg C) * Uses carbon pool, mass of carbon, density of seawater and volume of the box */ -unitval oceancsys::convertToDIC( const unitval carbon ) { - const double dic = ( ( carbon.value( U_PGC ) * 1e15 ) * ( 1.0/12.01 ) * (1.0/1027.0 ) * ( 1.0/volumeofbox ) ); // mol/kg - return unitval( dic * 1e6, U_UMOL_KG ); +unitval oceancsys::convertToDIC(const unitval carbon) { + // Carbon pool / (C atomic mass * density of sea water * volume ) + const double dic = ((carbon.value(U_PGC) * 1e15) * (1.0 / 12.01) * + (1.0 / 1027.0) * (1.0 / volumeofbox)); // mol/kg + return unitval(dic * 1e6, U_UMOL_KG); } -} +} // namespace Hector diff --git a/src/oceanbox.cpp b/src/oceanbox.cpp index dd32efbfd..0369fe8b1 100644 --- a/src/oceanbox.cpp +++ b/src/oceanbox.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -18,168 +18,130 @@ #include "oceanbox.hpp" namespace Hector { - + using namespace std; //------------------------------------------------------------------------------ /*! \brief a new oceanbox logger * - * The oceanbox logger may or may not be defined and therefore we check before logging + * The oceanbox logger may or may not be defined and therefore we check before + * logging */ -#define OB_LOG(log, level) \ -if( log != NULL ) H_LOG( (*log), level ) +#define OB_LOG(log, level) \ + if (log != NULL) \ + H_LOG((*log), level) //------------------------------------------------------------------------------ /*! \brief Constructor */ oceanbox::oceanbox() { - logger = NULL; - deltaT.set( 0.0, U_DEGC ); - initbox( unitval( 0.0, U_PGC ), "?" ); - surfacebox = false; - preindustrial_flux.set( 0.0, U_PGC_YR ); - warmingfactor = 1.0; // by default warms exactly as global - Tbox = unitval( -999, U_DEGC ); - atmosphere_flux.set( 0.0, U_PGC ); + logger = NULL; + deltaT.set(0.0, U_DEGC); + surfacebox = false; + Tbox = unitval(-999, U_DEGC); + atmosphere_flux.set(0.0, U_PGC); + preindustrial_flux.set(0.0, U_PGC_YR); + ao_flux.set(0.0, U_PGC); + oa_flux.set(0.0, U_PGC); } //------------------------------------------------------------------------------ /*! \brief sets the amount of carbon in this box */ -void oceanbox::set_carbon( const unitval C) { - carbon = C; - OB_LOG( logger, Logger::WARNING ) << Name << " box C has been set to " << carbon << endl; - carbonHistory.insert( carbonHistory.begin(), C.value( U_PGC ) ); +void oceanbox::set_carbon(const unitval C) { + carbon.adjust_pool_to_val(C.value(U_PGC)); + // OB_LOG( logger, Logger::WARNING ) << Name << " box C has been set to " << + // carbon << endl; } //------------------------------------------------------------------------------ -/*! \brief initialize basic information in an oceanbox +/*! \brief initialize all needed information in an oceanbox */ -void oceanbox::initbox( unitval C, string N ) { - // Reset the box to its pristine state - connection_list.clear(); - connection_k.clear(); - carbonHistory.clear(); - carbonLossHistory.clear(); - connection_window.clear(); - annual_box_fluxes.clear(); - - set_carbon( C ); - if( N != "" ) Name = N; - CarbonToAdd.set( 0.0, U_PGC ); // each box is separate from each other, and we keep track of carbon in each box. - active_chemistry = false; - - OB_LOG( logger, Logger::NOTICE) << "hello " << N << endl; +void oceanbox::initbox(double boxc, string name) { + connection_list.clear(); + connection_k.clear(); + connection_window.clear(); + annual_box_fluxes.clear(); + + // Each box is separate from each other, and we keep track of carbon in each + // box + Name = name; + carbon.set(boxc, U_PGC, false, name); + CarbonAdditions.set(0.0, U_PGC, false, name); + CarbonSubtractions.set(0.0, U_PGC, false, name); + active_chemistry = false; + + OB_LOG(logger, Logger::NOTICE) << "hello " << name << endl; } //------------------------------------------------------------------------------ /*! \brief Add carbon to an oceanbox - * \param[in] C amount of carbon to add to this box + * \param[in] carbon Amount of carbon to add to this box * * Carbon flows between boxes arrive via this method. Any carbon (it must be * a positive value) is scheduled for addition; the actual increment happens * in update_state(). */ -void oceanbox::add_carbon( unitval C ) { - H_ASSERT( C.value( U_PGC ) >= 0.0, "add_carbon called with negative value" ); - CarbonToAdd = CarbonToAdd + C; - OB_LOG( logger, Logger::DEBUG) << Name << " receiving " << C << " (" << CarbonToAdd << ")" << endl; +void oceanbox::add_carbon(fluxpool carbon) { + CarbonAdditions = CarbonAdditions + carbon; + OB_LOG(logger, Logger::DEBUG) + << Name << " receiving " << carbon << " (" << CarbonAdditions + << CarbonSubtractions << ")" << endl; } //------------------------------------------------------------------------------ /*! \brief Compute absolute temperature of box in C - * \param[in] Tgav Mean global temperature change from preindustrial, C + * \param[in] SST Mean ocean temperature change from preindustrial, C * \returns Absolute temperature of box, C */ -unitval oceanbox::compute_tabsC( const unitval Tgav ) const { - return Tgav * warmingfactor + unitval( MEAN_GLOBAL_TEMP, U_DEGC ) + deltaT; -} - -//------------------------------------------------------------------------------ -/*! \brief Is box C oscillating? - * \param[in] lookback Window size to look back into the past - * \param[in] maxamp Max amplitude (% of box size) allowed - * \param[in] maxflips Max flips (direction reversals) allowed - * \returns bool indicating whether box C is oscillating recently - * \details How do we identify is the box is oscillating? Count how many - * sign flips there are in the deltas (C(t)-C(t-1)) of a certain magnitude. - */ -bool oceanbox::oscillating( const unsigned lookback, const double maxamp, const int maxflips ) const { - -#define sgn( x ) ( x > 0 ) - ( x < 0 ) - - if( carbonHistory.size() < lookback ) return false; - - const double currentC = carbon.value( U_PGC ); - double minC = currentC, maxC = currentC; - double lastdelta = currentC - carbonHistory[ 0 ]; - int flipcount = 0; - for ( unsigned i=0; imaxflips && ( maxC-minC )/currentC*100 > maxamp; -} - -//------------------------------------------------------------------------------ -/*! \brief Calculate mean past box carbon - * \param[in] lookback Window size to look back into the past (including current value) - * \returns bool indicating whether box C is oscillating recently - * \exception lookback must be non-negative - */ -double oceanbox::vectorHistoryMean( std::vector v, int lookback ) const { - H_ASSERT( lookback > 0, "lookback must be >0" ); - H_ASSERT( v.size() > 0, "vector size must be >0" ); - - lookback = min( int( v.size() ), lookback ); - - double sum = 0.0; - for ( int j=0; jName << ", k=" << k << endl; - - // If a connection to this box already exists, replace it - for( unsigned i=0; i= 0, "window negative number" ); - connection_window.push_back( ws ); +void oceanbox::make_connection( + oceanbox *ob, const double k, + const int ws) { //, window=1 or whatever we are averaging over. use curent + // state of 1 or will use what we tell it to use. + + H_ASSERT(ob != this, "can't make connection to same box"); + OB_LOG(logger, Logger::NOTICE) << "Adding connection " << Name << " to " + << ob->Name << ", k=" << k << endl; + + // If a connection to this box already exists, replace it + for (unsigned i = 0; i < connection_list.size(); i++) { + if (connection_list[i] == ob) { + connection_k[i] = k; + connection_window[i] = ws; + OB_LOG(logger, Logger::WARNING) + << "** overwriting connection in " << Name << " ** " << endl; + OB_LOG(logger, Logger::WARNING) + << "** Are you sure about this? ** " << endl; + return; + } + } + + // Otherwise, make a new connection + connection_list.push_back(ob); // add new element to vector + connection_k.push_back(k); + H_ASSERT(ws >= 0, "window negative number"); + connection_window.push_back(ws); } //------------------------------------------------------------------------------ -double round( const double d ) { return floor( d + 0.5 ); } +double round(const double d) { return floor(d + 0.5); } //------------------------------------------------------------------------------ /*! \brief Log the current box state @@ -188,217 +150,222 @@ double round( const double d ) { return floor( d + 0.5 ); } * as well as connection summaries, to the active log. */ void oceanbox::log_state() { - OB_LOG( logger, Logger::DEBUG) << "----- State of " << Name << " box -----" << endl; - unitval futurec = carbon + CarbonToAdd + atmosphere_flux; - OB_LOG( logger, Logger::DEBUG) << " carbon = " << carbon << " -> " << futurec << endl; - OB_LOG( logger, Logger::DEBUG) << " T=" << Tbox << ", surfacebox=" << surfacebox << ", active_chemistry=" << active_chemistry << endl; - OB_LOG( logger, Logger::DEBUG) << " CarbonToAdd = " << CarbonToAdd << " (" - << ( CarbonToAdd/carbon*100 ) << "%)" << endl; - if( surfacebox ) { - OB_LOG( logger, Logger::DEBUG) << " FPgC = " << atmosphere_flux << " (" - << ( atmosphere_flux/carbon*100 ) << "%)" << endl; - } - - unitval K0 = mychemistry.get_K0(); - unitval Tr = mychemistry.get_Tr(); - OB_LOG( logger, Logger::DEBUG) << " K0 = " << K0 << " " << "Tr = " << Tr << endl; - - if( active_chemistry ) { - unitval dic = mychemistry.convertToDIC( carbon ); - OB_LOG( logger, Logger::DEBUG) << " Surface DIC = " << dic << endl; - } - for( unsigned i=0; iName << ", k=" << connection_k[ i ] << ", window=" << connection_window[ i ] << endl; - } -} - -//------------------------------------------------------------------------------ -/*! \brief Compute one flux from this to another box - * \param[in] i connection number - * \param[in] yf year fraction (0-1) - * \returns flux in Pg C, accounting for yf, connection strength - */ -unitval oceanbox::compute_connection_flux( int i, double yf ) const { - // Compute the mean_carbon over connection-specific history window - double mean_carbon = carbon.value( U_PGC ); - if( connection_window[ i ] ) - mean_carbon = vectorHistoryMean( carbonHistory, connection_window[ i ] ); - - unitval closs( mean_carbon * connection_k[ i ] * yf, U_PGC ); - return closs; + OB_LOG(logger, Logger::DEBUG) + << "----- State of " << Name << " box -----" << endl; + fluxpool futurec = + carbon + CarbonAdditions + ao_flux - oa_flux - CarbonSubtractions; + OB_LOG(logger, Logger::DEBUG) << " carbon = " << carbon.value(U_PGC) + << " -> " << futurec.value(U_PGC) << endl; + OB_LOG(logger, Logger::DEBUG) + << " T=" << Tbox << ", surfacebox=" << surfacebox + << ", active_chemistry=" << active_chemistry << endl; + OB_LOG(logger, Logger::DEBUG) + << " CarbonAdditions = " << CarbonAdditions.value(U_PGC) << " (" + << (CarbonAdditions / carbon * 100) << "%)" << endl; + OB_LOG(logger, Logger::DEBUG) + << " CarbonSubtractions = " << CarbonSubtractions.value(U_PGC) << " (" + << (CarbonSubtractions / carbon * 100) << "%)" << endl; + if (surfacebox) { + OB_LOG(logger, Logger::DEBUG) + << " FPgC = " << atmosphere_flux.value(U_PGC) << " (" + << (atmosphere_flux / carbon * 100) << "%)" << endl; + OB_LOG(logger, Logger::DEBUG) + << " ao_flux = " << ao_flux.value(U_PGC) << " (" + << (ao_flux / carbon * 100) << "%)" << endl; + OB_LOG(logger, Logger::DEBUG) + << " oa_flux = " << oa_flux.value(U_PGC) << " (" + << (oa_flux / carbon * 100) << "%)" << endl; + } + + unitval K0 = mychemistry.get_K0(); + unitval Tr = mychemistry.get_Tr(); + OB_LOG(logger, Logger::DEBUG) << " K0 = " << K0 << " " + << "Tr = " << Tr << endl; + + if (active_chemistry) { + unitval dic = mychemistry.convertToDIC(carbon); + OB_LOG(logger, Logger::DEBUG) << " Surface DIC = " << dic << endl; + } + for (unsigned i = 0; i < connection_list.size(); i++) { + OB_LOG(logger, Logger::DEBUG) + << " Connection #" << i << " to " << connection_list[i]->Name + << ", k=" << connection_k[i] << ", window=" << connection_window[i] + << endl; + } } //------------------------------------------------------------------------------ /*! \brief Compute all fluxes between boxes - * \param[in] Ca atmospheric CO2 + * \param[in] current_Ca atmospheric CO2 * \param[in] yf year fraction (0-1) * \param[in] do_circ flag: do circulation, or not? */ -void oceanbox::compute_fluxes( const unitval current_Ca, const double yf, const bool do_circ ) { - - Ca = current_Ca; - - // Step 1 : run chemistry mode, if applicable - if( active_chemistry ) { - OB_LOG( logger, Logger::DEBUG) << Name << " running ocean_csys" << endl; - H_ASSERT( Tbox.value( U_DEGC ) > -999, "bad tbox value" ); // TODO: this isn't a good temperature check - mychemistry.ocean_csys_run( Tbox, carbon ); - - atmosphere_flux = unitval( mychemistry.calc_annual_surface_flux( Ca ).value( U_PGC_YR ), U_PGC ); - - } else { - // No active chemistry, so atmosphere-box flux is simply a function of the - // difference between box carbon and atmospheric carbon s.t. it is preindustrial_flux - if( surfacebox ) - atmosphere_flux = unitval( preindustrial_flux.value( U_PGC_YR ), U_PGC ); - else - atmosphere_flux = unitval( 0.0, U_PGC ); - } - - // Step 2 : account for partial year - atmosphere_flux = atmosphere_flux * yf; - - // Step 3: check if this box is oscillating - /* - const bool osc = oscillating( 10, // over the last 10 states, - 1, // has box C varied by >1% - 3 ); // while changing direction 3+ times? - */ - - // Step 4 : calculate the carbon transports between the boxes - if( do_circ ) { - double unstable_box_flux_adjust = 1.0; - - // 'Preflight' the outbound fluxes, i.e. get estimate of their total - unitval closs_total( 0.0, U_PGC ); - for( unsigned i=0; i < connection_window.size(); i++ ){ - closs_total = closs_total + compute_connection_flux( i, yf ); - } // for i - - if( /* DISABLES CODE */ (0) /* osc */ ) { - const double mean_past_loss = vectorHistoryMean( carbonLossHistory, 10 ); - unstable_box_flux_adjust = mean_past_loss / closs_total.value( U_PGC ); - - OB_LOG( logger, Logger::DEBUG) << Name << "is oscillating." << std::endl; - std::cout << "Preflighted connection fluxes = " << closs_total << std::endl; - std::cout << "Recent mean loss = " << mean_past_loss << std::endl; - std::cout << "unstable_box_flux_adjust = " << unstable_box_flux_adjust << std::endl; - // The box's C is oscillating - } - - closs_total.set( 0.0, U_PGC ); - for( unsigned i=0; i < connection_window.size(); i++ ){ - - unitval closs = compute_connection_flux( i, yf ) * unstable_box_flux_adjust; - - OB_LOG( logger, Logger::DEBUG) << Name << " conn " << i << " flux= " << closs << endl; - - connection_list[ i ]->add_carbon( closs ); - CarbonToAdd = CarbonToAdd - closs; // PgC - closs_total = closs_total + closs; - annual_box_fluxes[ connection_list[ i ] ] = annual_box_fluxes[ connection_list[ i ] ] + - unitval( closs.value( U_PGC ), U_PGC_YR ); - } // for i - - carbonLossHistory.insert( carbonLossHistory.begin (), closs_total.value( U_PGC ) ); - - } // if do_circulation +void oceanbox::compute_fluxes(const unitval current_Ca, + const fluxpool atmosphere_cpool, const double yf, + const bool do_circ) { + + CO2_conc = current_Ca; + + // Step 1 : run chemistry mode, if applicable + if (active_chemistry) { + // Active chemistry only runs in the surface boxes. + OB_LOG(logger, Logger::DEBUG) << Name << " running ocean_csys" << endl; + + mychemistry.ocean_csys_run(Tbox, carbon); + atmosphere_flux = unitval( + mychemistry.calc_annual_surface_flux(CO2_conc).value(U_PGC_YR), U_PGC); + + } else { + // No active chemistry, so atmosphere-box flux is simply a function of the + // difference between box carbon and atmospheric carbon s.t. it is + // preindustrial_flux + if (surfacebox) + atmosphere_flux = unitval(preindustrial_flux.value(U_PGC_YR), U_PGC); + else + atmosphere_flux = unitval(0.0, U_PGC); + } + + // Step 2 : account for partial year + atmosphere_flux = atmosphere_flux * yf; + + separate_surface_fluxes(atmosphere_cpool); + + // Step 3: check if this box is oscillating + /* + const bool osc = oscillating( 10, // over the last 10 states, + 1, // has box C varied by >1% + 3 ); // while changing direction 3+ times? + */ + + // Step 4 : calculate the carbon transports between the boxes + if (do_circ) { + fluxpool closs_total(0.0, U_PGC, carbon.tracking); + + for (unsigned i = 0; i < connection_window.size(); i++) { + + fluxpool closs = carbon * connection_k[i] * yf; + + OB_LOG(logger, Logger::DEBUG) + << Name << " conn " << i << " flux= " << closs << endl; + + connection_list[i]->add_carbon(closs); + CarbonSubtractions = CarbonSubtractions + closs; // PgC + closs_total = closs_total + closs; + annual_box_fluxes[connection_list[i]] = + annual_box_fluxes[connection_list[i]] + + unitval(closs.value(U_PGC), U_PGC_YR); + } // for i + + } // if do_circulation +} + +void oceanbox::separate_surface_fluxes(fluxpool atmosphere_pool) { + // Set the fluxpool values from the current atmosphere_flux unitval + if (atmosphere_flux > 0) { + ao_flux = atmosphere_pool.flux_from_unitval(atmosphere_flux); + oa_flux = carbon.flux_from_unitval(unitval(0.0, U_PGC)); + } else { + ao_flux = atmosphere_pool.flux_from_unitval(unitval(0.0, U_PGC)); + oa_flux = carbon.flux_from_unitval(-atmosphere_flux); + } } //------------------------------------------------------------------------------ /*! \brief Function to calculate Revelle Factor -*/ - + */ // 2 ways of solving for the Revelle factor // keep track of last year pCO2 in the ocean and DIC unitval oceanbox::calc_revelle() { - H_ASSERT( active_chemistry, "Active Chemistry required"); - -// unitval deltapco2 = Ca - pco2_lastyear; - unitval deltadic = mychemistry.convertToDIC(carbon) - dic_lastyear; - - H_ASSERT( deltadic.value( U_UMOL_KG) != 0, "DeltaDIC can not be zero"); - - // Revelle Factor can be calculated multiple ways. - // Based on changing atmospheric conditions as well approximated via DIC and CO3 - return unitval ( mychemistry.convertToDIC( carbon ) / mychemistry.CO3, U_UNITLESS ); - // under high CO2, the HL box numbers are potentially unrealistic. + H_ASSERT(active_chemistry, "Active chemistry required"); + + // unitval deltapco2 = Ca - pco2_lastyear; + unitval deltadic = mychemistry.convertToDIC(carbon) - dic_lastyear; + + H_ASSERT(deltadic.value(U_UMOL_KG) != 0, "DeltaDIC cannot be zero"); + + // Revelle Factor can be calculated multiple ways: + // based on changing atmospheric conditions as well as approximated via DIC + // and CO3 + return unitval(mychemistry.convertToDIC(carbon) / mychemistry.CO3, + U_UNITLESS); + // under high CO2, the HL box numbers are potentially unrealistic. } //------------------------------------------------------------------------------ /*! \brief Update to a new carbon state */ void oceanbox::update_state() { - - carbonHistory.insert( carbonHistory.begin (), carbon.value( U_PGC ) ); - - carbon = carbon + CarbonToAdd + atmosphere_flux; - - H_ASSERT( carbon.value( U_PGC ) >= 0.0, "box carbon is negative" ); - CarbonToAdd.set( 0.0, U_PGC ); + + carbon = carbon + CarbonAdditions + ao_flux - oa_flux - CarbonSubtractions; + // these start with 0 from themselves (this box) + CarbonAdditions.set(0.0, U_PGC, carbon.tracking, Name); + CarbonSubtractions.set(0.0, U_PGC, carbon.tracking, Name); } //------------------------------------------------------------------------------ /*! \brief A new year is starting. Zero flux variables. - * \param[in] t Mean global temperature this year + * \param[in] SST Mean ocean surface temperature this year */ -void oceanbox::new_year( const unitval Tgav ) { - - for( unsigned i=0; i < connection_window.size(); i++ ){ - annual_box_fluxes[ connection_list[ i ] ] = unitval( 0.0, U_PGC_YR ); - } - atmosphere_flux.set( 0.0, U_PGC ); - Tbox = compute_tabsC( Tgav ); +void oceanbox::new_year(const unitval SST) { + + for (unsigned i = 0; i < connection_window.size(); i++) { + annual_box_fluxes[connection_list[i]] = unitval(0.0, U_PGC_YR); + } + Tbox = compute_tabsC(SST); - // save for Revelle Calc - pco2_lastyear = Ca; - dic_lastyear = mychemistry.convertToDIC( carbon ); + // save for Revelle Calc + pco2_lastyear = CO2_conc; + + if (surfacebox) { + atmosphere_flux.set(0.0, U_PGC); + dic_lastyear = mychemistry.convertToDIC(carbon); + } } //------------------------------------------------------------------------------ /*! \brief Function that chem_equilibrate tries to minimize * \param[in] alk alkalinity value to try - * \param[in] *params pointer to other parameters (just f_target currently) + * \param[in] params pointer to other parameters (just f_target currently) * \returns double, difference between flux and target flux * * The gsl minimization algorithm calls this function, which slots alk * into the csys chemistry input, runs csys, and reports back the difference * between csys's computed ocean-atmosphere flux and the target flux. */ -double oceanbox::fmin( double alk, void *params ) { - - // Call the chemistry model with new value for alk - mychemistry.set_alk( alk ); - mychemistry.ocean_csys_run( Tbox, carbon ); - - double f_target = *( double * )params; - double diff = fabs( mychemistry.calc_annual_surface_flux( Ca ).value( U_PGC_YR ) - f_target ); - // OB_LOG( logger, Logger::DEBUG) << "fmin at " << alk << ", f_target=" << f_target << ", returning " << diff << endl; - - return diff; +double oceanbox::fmin(double alk, void *params) { + + // Call the chemistry model with new value for alk + mychemistry.set_alk(alk); + mychemistry.ocean_csys_run(Tbox, carbon); + + double f_target = *(double *)params; + double diff = + fabs(mychemistry.calc_annual_surface_flux(CO2_conc).value(U_PGC_YR) - + f_target); + // OB_LOG( logger, Logger::DEBUG) << "fmin at " << alk << ", f_target=" << + // f_target << ", returning " << diff << endl; + + return diff; } //------------------------------------------------------------------------------ /*! \brief Functor wrapper for minimization function */ struct FMinWrapper { - FMinWrapper(oceanbox* instance, const double f_targetIn): - object_which_will_handle_signal(instance), - f_target(f_targetIn) - { - } - double operator()(const double alk) { - return object_which_will_handle_signal->fmin(alk, &f_target); - } - - private: - oceanbox* object_which_will_handle_signal; - double f_target; + FMinWrapper(oceanbox *instance, const double f_targetIn) + : object_which_will_handle_signal(instance), f_target(f_targetIn) {} + double operator()(const double alk) { + return object_which_will_handle_signal->fmin(alk, &f_target); + } + +private: + oceanbox *object_which_will_handle_signal; + double f_target; }; //------------------------------------------------------------------------------ /*! \brief Equilibrate the chemistry model to a given flux - * \param[in] Ca Atmospheric CO2 (ppmv) + * \param[in] current_Ca Atmospheric CO2 (ppmv) * * \details The global carbon cycle can be spun up with ocean chemistry either * on or off. In the former case, the ocean continually equilibrates with the @@ -408,63 +375,82 @@ struct FMinWrapper { * carbon should be in the preindustrial ocean. Before chemistry is re-enabled * for the main run, however, we need to adjust ocean conditions (alkalinity) * such that the chemistry model will produce the specified spinup-condition - * fluxes. That's what this method does. Note that we pass in current CO2 because - * in case the model was NOT spun up, need to set the box's internal tracking var. + * fluxes. That's what this method does. Note that we pass in current CO2 + * because in case the model was NOT spun up, need to set the box's internal + * tracking var. */ -void oceanbox::chem_equilibrate( const unitval current_Ca ) { - - using namespace std; - - Ca = current_Ca; - - H_ASSERT( active_chemistry, "chemistry not turned on" ); - OB_LOG( logger, Logger::DEBUG) << "Equilibrating chemistry for box " << Name << endl; - - // Initialize the box chemistry values: temperature, atmospheric CO2, DIC -// mychemistry.ocean_csys_run( Tbox, carbon ); - - unitval dic = mychemistry.convertToDIC( carbon ); - OB_LOG( logger, Logger::DEBUG) << "Ca=" << Ca << ", DIC=" << dic << endl; - - // Tune the chemistry model's alkalinity parameter to produce a particular flux. - // This happens after the box model has been spun up with chemistry turned off, before the chemistry - // model is turned on (because we don't want it to suddenly produce a larger ocean-atmosphere flux). - - // Here we use the Brent algorithm - // http://www.gnu.org/software/gsl/manual/html_node/Minimization-Algorithms.html - // to minimize abs(f-f0), where f is computed by the csys chemistry code and f0 passed in - - double alk_min = 2100e-6, alk_max = 2750e-6; - double f_target = preindustrial_flux.value( U_PGC_YR ); - - // Find a best-guess point; the GSL algorithm seems to need it - OB_LOG( logger, Logger::DEBUG) << "Looking for best-guess alkalinity" << endl; - const int w = 12; - OB_LOG( logger, Logger::DEBUG) << setw( w ) << "Alk" << setw( w ) << "FPgC" - << setw( w ) << "f_target" << setw( w ) << "diff" << endl; - double min_diff = 1e6; - double min_point = ( alk_min + alk_max ) / 2.0; - for( double alk1=alk_min; alk1 <= alk_max; alk1 += (alk_max-alk_min)/20 ) { - double diff = fmin( alk1, &f_target ); - if( diff < min_diff ) { - min_diff = diff; - min_point = alk1; - } - OB_LOG( logger, Logger::DEBUG) << setw( w ) << alk1 << setw( w ) << atmosphere_flux - << setw( w ) << f_target << setw( w ) << diff << endl; - } - double alk = min_point; // this is our best guess - OB_LOG( logger, Logger::DEBUG) << "Best guess minimum is at " << alk << endl; - - FMinWrapper fFunctor(this, f_target); - // arbitrarily solve unil 60% of the digits are correct. - const int digits = numeric_limits::digits; - int get_digits = static_cast(digits * 0.6); - std::pair r = boost::math::tools::brent_find_minima(fFunctor, alk_min, alk_max, get_digits); - OB_LOG( logger, Logger::DEBUG) << setw( w ) << "Alk" << setw( w ) << "FPgC" - << setw( w ) << "f_target" << setw( w ) << "diff" << endl; - OB_LOG( logger, Logger::DEBUG) << setw( w ) << r.first << setw( w ) << atmosphere_flux - << setw( w ) << f_target << setw( w ) << r.second << endl; +void oceanbox::chem_equilibrate(const unitval current_Ca) { + + using namespace std; + + CO2_conc = current_Ca; + + H_ASSERT(active_chemistry, "chemistry not turned on"); + OB_LOG(logger, Logger::DEBUG) + << "Equilibrating chemistry for box " << Name << endl; + + // Initialize the box chemistry values: temperature, atmospheric CO2, DIC + + unitval dic = mychemistry.convertToDIC(carbon); + OB_LOG(logger, Logger::DEBUG) + << "[CO2]=" << CO2_conc << ", DIC=" << dic << endl; + + // Tune the chemistry model's alkalinity parameter to produce a particular + // flux. This happens after the box model has been spun up with chemistry + // turned off, before the chemistry model is turned on (because we don't want + // it to suddenly produce a larger ocean-atmosphere flux). + + // Here we use the Brent algorithm + // http://www.gnu.org/software/gsl/manual/html_node/Minimization-Algorithms.html + // to minimize abs(f-f0), where f is computed by the csys chemistry code and + // f0 passed in + + double alk_min = 2100e-6, alk_max = 2750e-6; + double f_target = preindustrial_flux.value(U_PGC_YR); + + // Find a best-guess point; the GSL algorithm seems to need it + OB_LOG(logger, Logger::DEBUG) << "Looking for best-guess alkalinity" << endl; + const int w = 12; + OB_LOG(logger, Logger::DEBUG) + << setw(w) << "Alk" << setw(w) << "FPgC" << setw(w) << "f_target" + << setw(w) << "diff" << endl; + double min_diff = 1e6; + double min_point = (alk_min + alk_max) / 2.0; + for (double alk1 = alk_min; alk1 <= alk_max; + alk1 += (alk_max - alk_min) / 20) { + double diff = fmin(alk1, &f_target); + if (diff < min_diff) { + min_diff = diff; + min_point = alk1; + } + OB_LOG(logger, Logger::DEBUG) + << setw(w) << alk1 << setw(w) << atmosphere_flux << setw(w) << f_target + << setw(w) << diff << endl; + } + double alk = min_point; // this is our best guess + OB_LOG(logger, Logger::DEBUG) << "Best guess minimum is at " << alk << endl; + + FMinWrapper fFunctor(this, f_target); + // arbitrarily solve unil 60% of the digits are correct. + const int digits = numeric_limits::digits; + int get_digits = static_cast(digits * 0.6); + std::pair r = boost::math::tools::brent_find_minima( + fFunctor, alk_min, alk_max, get_digits); + OB_LOG(logger, Logger::DEBUG) + << setw(w) << "Alk" << setw(w) << "FPgC" << setw(w) << "f_target" + << setw(w) << "diff" << endl; + OB_LOG(logger, Logger::DEBUG) + << setw(w) << r.first << setw(w) << atmosphere_flux << setw(w) << f_target + << setw(w) << r.second << endl; } +//------------------------------------------------------------------------------ +/*! \brief Start tracking mode for this oceanbox + */ +void oceanbox::start_tracking() { + carbon.tracking = true; + CarbonAdditions.tracking = true; + CarbonSubtractions.tracking = true; } + +} // namespace Hector diff --git a/src/oh_component.cpp b/src/oh_component.cpp index e22b1e366..37de72875 100644 --- a/src/oh_component.cpp +++ b/src/oh_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,11 +12,11 @@ * */ -#include #include "oh_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "h_util.hpp" -#include "avisitor.hpp" +#include namespace Hector { @@ -26,193 +26,200 @@ using namespace std; /*! \brief Constructor */ OHComponent::OHComponent() { - NOX_emissions.allowInterp( true ); - NMVOC_emissions.allowInterp( true ); - CO_emissions.allowInterp( true ); - TAU_OH.allowInterp( true ); - //TOH0.set( 0.0, U_YRS ); - + NOX_emissions.allowInterp(true); + NMVOC_emissions.allowInterp(true); + CO_emissions.allowInterp(true); + TAU_OH.allowInterp(true); + // TOH0.set( 0.0, U_YRS ); } //------------------------------------------------------------------------------ /*! \brief Destructor */ -OHComponent::~OHComponent() { -} +OHComponent::~OHComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string OHComponent::getComponentName() const { - const string name = OH_COMPONENT_NAME; + const string name = OH_COMPONENT_NAME; - return name; + return name; } //------------------------------------------------------------------------------ // documentation is inherited -void OHComponent::init( Core* coreptr ) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; - core = coreptr; - - // Inform core what data we can provide - core->registerCapability( D_LIFETIME_OH, getComponentName() ); - // Register inputs accepted. Note that more than one component - // can accept an input - core->registerInput(D_EMISSIONS_CO, getComponentName()); - core->registerInput(D_EMISSIONS_NMVOC, getComponentName()); - core->registerInput(D_EMISSIONS_NOX, getComponentName()); +void OHComponent::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + core = coreptr; + + // Inform core what data we can provide + core->registerCapability(D_LIFETIME_OH, getComponentName()); + // Register inputs accepted. Note that more than one component + // can accept an input + core->registerInput(D_EMISSIONS_CO, getComponentName()); + core->registerInput(D_EMISSIONS_NMVOC, getComponentName()); + core->registerInput(D_EMISSIONS_NOX, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval OHComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - //TODO: make setData private - setData(datum, info); - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval OHComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); - return returnval; + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void OHComponent::setData( const string& varName, - const message_data& data ) -{ - try { - if( varName == D_EMISSIONS_NOX ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - NOX_emissions.set(data.date, data.getUnitval(U_TG_N)); - } else if( varName == D_EMISSIONS_CO ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - CO_emissions.set( data.date, data.getUnitval(U_TG_CO)); - } else if( varName == D_EMISSIONS_NMVOC ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - NMVOC_emissions.set( data.date, data.getUnitval(U_TG_NMVOC)); - } else if( varName == D_INITIAL_LIFETIME_OH ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - TOH0 = data.getUnitval(U_YRS); - } else if( varName == D_COEFFICENT_CH4 ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - CCH4 = data.getUnitval(U_UNDEFINED); - } else if( varName == D_COEFFICENT_CO ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - CCO = data.getUnitval(U_UNDEFINED); - } else if( varName == D_COEFFICENT_NMVOC ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - CNMVOC = data.getUnitval(U_UNDEFINED); - } else if( varName == D_COEFFICENT_NOX ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - CNOX = data.getUnitval(U_UNDEFINED); - } else { - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void OHComponent::setData(const string &varName, const message_data &data) { + try { + if (varName == D_EMISSIONS_NOX) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + NOX_emissions.set(data.date, data.getUnitval(U_TG_N)); + } else if (varName == D_EMISSIONS_CO) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + CO_emissions.set(data.date, data.getUnitval(U_TG_CO)); + } else if (varName == D_EMISSIONS_NMVOC) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + NMVOC_emissions.set(data.date, data.getUnitval(U_TG_NMVOC)); + } else if (varName == D_INITIAL_LIFETIME_OH) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + TOH0 = data.getUnitval(U_YRS); + } else if (varName == D_COEFFICENT_CH4) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + CCH4 = data.getUnitval(U_UNDEFINED); + } else if (varName == D_COEFFICENT_CO) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + CCO = data.getUnitval(U_UNDEFINED); + } else if (varName == D_COEFFICENT_NMVOC) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + CNMVOC = data.getUnitval(U_UNDEFINED); + } else if (varName == D_COEFFICENT_NOX) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + CNOX = data.getUnitval(U_UNDEFINED); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited void OHComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - oldDate = core->getStartDate(); - //get intial CH4 concentration - M0 = core->sendMessage( M_GETDATA, D_PREINDUSTRIAL_CH4 ); - TAU_OH.set( oldDate, TOH0 ); - } + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + oldDate = core->getStartDate(); + // get intial CH4 concentration + M0 = core->sendMessage(M_GETDATA, D_PREINDUSTRIAL_CH4); + TAU_OH.set(oldDate, TOH0); +} //------------------------------------------------------------------------------ // documentation is inherited -void OHComponent::run( const double runToDate ) -{ - H_LOG(logger, Logger::DEBUG) << "olddate: " << oldDate << " runToDate: " << runToDate << std::endl; - H_ASSERT( !core->inSpinup() && runToDate-oldDate == 1, "timestep must equal 1" ); - - // modified from Tanaka et al 2007 and Wigley et al 2002. - unitval current_nox = NOX_emissions.get( runToDate ); - unitval current_co = CO_emissions.get( runToDate ); - unitval current_nmvoc = NMVOC_emissions.get( runToDate ); - - //get this from CH4 component, this is last year's value - const double previous_ch4 = core->sendMessage( M_GETDATA, D_ATMOSPHERIC_CH4, oldDate ).value( U_PPBV_CH4 ); - - double toh = 0.0; - if ( previous_ch4 != M0 ) // if we are not at the first time - { - const double a = CCH4 * ( ( 1.0 * log( previous_ch4 ) ) - log( M0.value(U_PPBV_CH4) ) ); - const double b = CNOX * ( ( 1.0 * current_nox ) - NOX_emissions.get( NOX_emissions.firstdate() ).value( U_TG_N ) ); - const double c = CCO * ( ( 1.0 * + current_co ) - CO_emissions.get( CO_emissions.firstdate() ).value( U_TG_CO ) ); - const double d = CNMVOC * ( (1.0 * + current_nmvoc ) - NMVOC_emissions.get( NMVOC_emissions.firstdate() ).value( U_TG_NMVOC ) ); +void OHComponent::run(const double runToDate) { + H_LOG(logger, Logger::DEBUG) + << "olddate: " << oldDate << " runToDate: " << runToDate << std::endl; + H_ASSERT(!core->inSpinup() && runToDate - oldDate == 1, + "timestep must equal 1"); + + // modified from Tanaka et al 2007 and Wigley et al 2002. + unitval current_nox = NOX_emissions.get(runToDate); + unitval current_co = CO_emissions.get(runToDate); + unitval current_nmvoc = NMVOC_emissions.get(runToDate); + + // get this from CH4 component, this is last year's value + const double previous_ch4 = + core->sendMessage(M_GETDATA, D_CH4_CONC, oldDate).value(U_PPBV_CH4); + + double toh = 0.0; + if (previous_ch4 != M0) // if we are not at the first time + { + const double a = + CCH4 * ((1.0 * log(previous_ch4)) - log(M0.value(U_PPBV_CH4))); + const double b = + CNOX * ((1.0 * current_nox) - + NOX_emissions.get(NOX_emissions.firstdate()).value(U_TG_N)); + const double c = + CCO * ((1.0 * +current_co) - + CO_emissions.get(CO_emissions.firstdate()).value(U_TG_CO)); + const double d = + CNMVOC * + ((1.0 * +current_nmvoc) - + NMVOC_emissions.get(NMVOC_emissions.firstdate()).value(U_TG_NMVOC)); toh = a + b + c + d; - H_LOG( logger, Logger::DEBUG ) << "Year " << runToDate << " toh = " << toh << std::endl; - } + H_LOG(logger, Logger::DEBUG) + << "Year " << runToDate << " toh = " << toh << std::endl; + } - TAU_OH.set( runToDate, TOH0 * exp( -toh ) ); + TAU_OH.set(runToDate, TOH0 * exp(-toh)); - oldDate = runToDate; - H_LOG( logger, Logger::DEBUG ) << "Year " << runToDate << " OH lifetime = " << TAU_OH.get( runToDate ) << std::endl; + oldDate = runToDate; + H_LOG(logger, Logger::DEBUG) + << "Year " << runToDate << " OH lifetime = " << TAU_OH.get(runToDate) + << std::endl; } //------------------------------------------------------------------------------ // documentation is inherited -unitval OHComponent::getData( const std::string& varName, - const double date ) { - - unitval returnval; - - if( varName == D_LIFETIME_OH ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for OH lifetime" ); - returnval = TAU_OH.get( date ); - } else if ( varName == D_EMISSIONS_NOX ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for NOX emissions" ); - returnval = NOX_emissions.get( date ); - } else if ( varName == D_EMISSIONS_CO ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for CO emissions" ); - returnval = CO_emissions.get( date ); - } else if ( varName == D_EMISSIONS_NMVOC ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for NMVOC emissions" ); - returnval = NMVOC_emissions.get( date ); - } else { - H_THROW( "Caller is requesting unknown variable: " + varName ); - } - - return returnval; +unitval OHComponent::getData(const std::string &varName, const double date) { + + unitval returnval; + + if (varName == D_LIFETIME_OH) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for OH lifetime"); + returnval = TAU_OH.get(date); + } else if (varName == D_EMISSIONS_NOX) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for NOX emissions"); + returnval = NOX_emissions.get(date); + } else if (varName == D_EMISSIONS_CO) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for CO emissions"); + returnval = CO_emissions.get(date); + } else if (varName == D_EMISSIONS_NMVOC) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for NMVOC emissions"); + returnval = NMVOC_emissions.get(date); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } + + return returnval; } -void OHComponent::reset(double time) -{ - oldDate = time; - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; +//------------------------------------------------------------------------------ +// documentation is inherited +void OHComponent::reset(double time) { + oldDate = time; + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } - - //------------------------------------------------------------------------------ // documentation is inherited void OHComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void OHComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void OHComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/rcpp_constants.cpp b/src/rcpp_constants.cpp index 12fd886e7..0209b0baa 100644 --- a/src/rcpp_constants.cpp +++ b/src/rcpp_constants.cpp @@ -1,15 +1,15 @@ -#include -#include "hector.hpp" #include "component_data.hpp" +#include "hector.hpp" #include "simpleNbox.hpp" +#include using namespace Rcpp; /********************************************************************************* * Functions to expose constants defined in C++ headers to R * - * The only way I've been able to find to get these constants into R is to provide - * Rcpp exported functions that return them. + * The only way I've been able to find to get these constants into R is to + *provide Rcpp exported functions that return them. *********************************************************************************/ // [[Rcpp::plugins("cpp11")]] @@ -17,154 +17,163 @@ using namespace Rcpp; /* * Message types */ -//' @include aadoc.R //' @describeIn msgtype Message type for retrieving data from a component -//' @export //' @keywords internal // [[Rcpp::export]] -String GETDATA() { -return M_GETDATA; -} +String GETDATA() { return M_GETDATA; } //' @describeIn msgtype Message type for setting data in a component -//' @export //' @keywords internal // [[Rcpp::export]] -String SETDATA() { -return M_SETDATA; -} +String SETDATA() { return M_SETDATA; } + +//' @describeIn msgtype Character used to separate biome from variable name +// [[Rcpp::export]] +String BIOME_SPLIT_CHAR() { return SNBOX_PARSECHAR; } /* Logging levels */ //' @describeIn loglevels Set logging at 'debug' level. //' @export // [[Rcpp::export]] -int LL_DEBUG() { -return (int) Hector::Logger::DEBUG; -} +int LL_DEBUG() { return (int)Hector::Logger::DEBUG; } //' @describeIn loglevels Set logging at 'notice' level. //' @export // [[Rcpp::export]] -int LL_NOTICE() { -return (int) Hector::Logger::NOTICE; -} +int LL_NOTICE() { return (int)Hector::Logger::NOTICE; } //' @describeIn loglevels Set logging at 'warning' level. //' @export // [[Rcpp::export]] -int LL_WARNING() { -return (int) Hector::Logger::WARNING; -} +int LL_WARNING() { return (int)Hector::Logger::WARNING; } //' @describeIn loglevels Set logging at 'severe' level. //' @export // [[Rcpp::export]] -int LL_SEVERE() { -return (int) Hector::Logger::SEVERE; -} - +int LL_SEVERE() { return (int)Hector::Logger::SEVERE; } /***************************************************************** * Capabilities *****************************************************************/ +/* Core */ +//' @describeIn parameters Start of carbon tracking (Year) +//' @export +// [[Rcpp::export]] +String TRACKING_DATE() { return D_TRACKING_DATE; } + /* BC component */ -//' @describeIn emissions Black carbon emissions (\code{"Tg"}) +//' @describeIn emissions Black carbon emissions //' @export // [[Rcpp::export]] -String EMISSIONS_BC() { -return D_EMISSIONS_BC; -} +String EMISSIONS_BC() { return D_EMISSIONS_BC; } /* Forcing component */ //' @describeIn forcings Total radiative forcing //' @export // [[Rcpp::export]] -String RF_TOTAL() { -return D_RF_TOTAL; -} +String RF_TOTAL() { return D_RF_TOTAL; } + +//' @describeIn constraints Constrain total radiative forcing +//' @export +// [[Rcpp::export]] +String FTOT_CONSTRAIN() { return D_FTOT_CONSTRAIN; } //' @describeIn forcings Radiative forcing due to albedo //' @export // [[Rcpp::export]] -String RF_T_ALBEDO() { -return D_RF_T_ALBEDO; -} +String RF_ALBEDO() { return D_RF_T_ALBEDO; } //' @describeIn forcings Radiative forcing due to CO2 //' @export // [[Rcpp::export]] -String RF_CO2() { -return D_RF_CO2; -} +String RF_CO2() { return D_RF_CO2; } -//' @describeIn forcings Radiative forcing due to N2O +//' @describeIn delta the foring tropospheric adjustments for N2O //' @export // [[Rcpp::export]] -String RF_N2O() { -return D_RF_N2O; -} +String DELTA_CO2() { return D_DELTA_CO2; } + +//' @describeIn delta the foring tropospheric adjustments for N2O +//' @export +// [[Rcpp::export]] +String RF_N2O() { return D_RF_N2O; } + +//' @describeIn delta Radiative forcing due to N2O +//' @export +// [[Rcpp::export]] +String DELTA_N2O() { return D_DELTA_N2O; } //' @describeIn forcings Radiative forcing due to stratospheric water vapor //' @export // [[Rcpp::export]] -String RF_H2O_STRAT() { -return D_RF_H2O_STRAT; -} +String RF_H2O_STRAT() { return D_RF_H2O_STRAT; } //' @describeIn forcings Radiative forcing due to tropospheric ozone //' @export // [[Rcpp::export]] -String RF_O3_TROP() { -return D_RF_O3_TROP; -} +String RF_O3_TROP() { return D_RF_O3_TROP; } -//' @describeIn forcings Radiative forcing due to black carbon +//' @describeIn forcings Radiative forcing due to black carbon aerosol-radiation interactions //' @export // [[Rcpp::export]] -String RF_BC() { -return D_RF_BC; -} +String RF_BC() { return D_RF_BC; } -//' @describeIn forcings Radiative forcing due to organic carbon +//' @describeIn rho a radiative forcing efficiency for BC aerosol-radiation interactions //' @export // [[Rcpp::export]] -String RF_OC() { -return D_RF_OC; -} +String RHO_BC() { return D_RHO_BC; } -//' @describeIn forcings Direct contribution of SO2 to radiative forcing +//' @describeIn forcings Radiative forcing due to organic carbon aerosol-radiation interactions //' @export // [[Rcpp::export]] -String RF_SO2D() { -return D_RF_SO2d; -} +String RF_OC() { return D_RF_OC; } -//' @describeIn forcings Indirect contribution of SO2 to radiative forcing +//' @describeIn rho a radiative forcing efficiency for OC aerosol-radiation interactions //' @export // [[Rcpp::export]] -String RF_SO2I() { -return D_RF_SO2i; -} +String RHO_OC() { return D_RHO_OC; } -//' @describeIn forcings Total contribution (direct and indirect) of SO2 to radiative forcing +//' @describeIn forcings Radiative forcing due to NH3 aerosol-radiation interactions //' @export // [[Rcpp::export]] -String RF_SO2() { -return D_RF_SO2; -} +String RF_NH3() { return D_RF_NH3; } + +//' @describeIn rho a radiative forcing efficiency for NH3 aerosol-radiation interactions +//' @export +// [[Rcpp::export]] +String RHO_NH3() { return D_RHO_NH3; } + +//' @describeIn forcings Radiative forcing due to SO2 aerosol-radiation interactions +//' @export +// [[Rcpp::export]] +String RF_SO2() { return D_RF_SO2; } + +//' @describeIn forcings aerosol-cloud interactions, includes contributions from SO2, BC and OC +//' @export +// [[Rcpp::export]] +String RF_ACI() { return D_RF_ACI; } + +//' @describeIn rho a radiative forcing efficiency for SO2 +//' @export +// [[Rcpp::export]] +String RHO_SO2() { return D_RHO_SO2; } //' @describeIn forcings Radiative forcing due to volcanic activity //' @export // [[Rcpp::export]] -String RF_VOL() { -return D_RF_VOL; -} +String RF_VOL() { return D_RF_VOL; } + +//' @describeIn forcings Radiative miscellaneous forcing read in from ini. +//' @export +// [[Rcpp::export]] +String RF_MISC() { return D_RF_MISC; } /* Halocarbon forcings */ -/* There's a constant for total halocarbon forcing defined in component_data.hpp, but - returning the total halocarbon forcing appears not to be implemented. */ +/* There's a constant for total halocarbon forcing defined in + component_data.hpp, but returning the total halocarbon forcing appears not to + be implemented. */ // //' @export // // [[Rcpp::export]] // String RF_HALOCARBONS() { @@ -175,1066 +184,1204 @@ return D_RF_VOL; // internally to correct the reported names of the halocarbon // forcings. // [[Rcpp::export]] -String RFADJ_PREFIX() { -return D_RFADJ_PREFIX; -} +String RFADJ_PREFIX() { return D_RFADJ_PREFIX; } // Prefix for unadjusted forcing. This is what we substitute for // the adjusted forcing prefix // [[Rcpp::export]] -String RF_PREFIX() { -return D_RF_PREFIX; -} +String RF_PREFIX() { return D_RF_PREFIX; } //' @describeIn haloforcings Radiative forcing due to CF4 //' @export // [[Rcpp::export]] -String RF_CF4() { -return D_RFADJ_CF4; -} +String RF_CF4() { return D_RFADJ_CF4; } //' @describeIn haloforcings Radiative forcing due to C2F6 //' @export // [[Rcpp::export]] -String RF_C2F6() { -return D_RFADJ_C2F6; -} +String RF_C2F6() { return D_RFADJ_C2F6; } //' @describeIn haloforcings Radiative forcing due to HFC-23 //' @export // [[Rcpp::export]] -String RF_HFC23() { -return D_RFADJ_HFC23; -} +String RF_HFC23() { return D_RFADJ_HFC23; } //' @describeIn haloforcings Radiative forcing due to HFC-32 //' @export // [[Rcpp::export]] -String RF_HFC32() { -return D_RFADJ_HFC32; -} +String RF_HFC32() { return D_RFADJ_HFC32; } //' @describeIn haloforcings Radiative forcing due to HFC-4310 //' @export // [[Rcpp::export]] -String RF_HFC4310() { -return D_RFADJ_HFC4310; -} +String RF_HFC4310() { return D_RFADJ_HFC4310; } //' @describeIn haloforcings Radiative forcing due to HFC-125 //' @export // [[Rcpp::export]] -String RF_HFC125() { -return D_RFADJ_HFC125; -} +String RF_HFC125() { return D_RFADJ_HFC125; } //' @describeIn haloforcings Radiative forcing due to HFC-134a //' @export // [[Rcpp::export]] -String RF_HFC134A() { -return D_RFADJ_HFC134a; -} +String RF_HFC134A() { return D_RFADJ_HFC134a; } //' @describeIn haloforcings Radiative forcing due to HFC-143a //' @export // [[Rcpp::export]] -String RF_HFC143A() { -return D_RFADJ_HFC143a; -} +String RF_HFC143A() { return D_RFADJ_HFC143a; } //' @describeIn haloforcings Radiative forcing due to HFC227ea //' @export // [[Rcpp::export]] -String RF_HFC227EA() { -return D_RFADJ_HFC227ea; -} +String RF_HFC227EA() { return D_RFADJ_HFC227ea; } //' @describeIn haloforcings Radiative forcing due to HFC-245fa //' @export // [[Rcpp::export]] -String RF_HFC245FA() { -return D_RFADJ_HFC245fa; -} +String RF_HFC245FA() { return D_RFADJ_HFC245fa; } //' @describeIn haloforcings Radiative forcing due to sulfur hexafluoride //' @export // [[Rcpp::export]] -String RF_SF6() { -return D_RFADJ_SF6; -} +String RF_SF6() { return D_RFADJ_SF6; } //' @describeIn haloforcings Radiative forcing due to CFC-11 //' @export // [[Rcpp::export]] -String RF_CFC11() { -return D_RFADJ_CFC11; -} +String RF_CFC11() { return D_RFADJ_CFC11; } //' @describeIn haloforcings Radiative forcing due to CFC-12 //' @export // [[Rcpp::export]] -String RF_CFC12() { -return D_RFADJ_CFC12; -} +String RF_CFC12() { return D_RFADJ_CFC12; } //' @describeIn haloforcings Radiative forcing due to CFC-113 //' @export // [[Rcpp::export]] -String RF_CFC113() { -return D_RFADJ_CFC113; -} +String RF_CFC113() { return D_RFADJ_CFC113; } //' @describeIn haloforcings Radiative forcing due to CFC-114 //' @export // [[Rcpp::export]] -String RF_CFC114() { -return D_RFADJ_CFC114; -} +String RF_CFC114() { return D_RFADJ_CFC114; } //' @describeIn haloforcings Radiative forcing due to CFC-115 //' @export // [[Rcpp::export]] -String RF_CFC115() { -return D_RFADJ_CFC115; -} +String RF_CFC115() { return D_RFADJ_CFC115; } //' @describeIn haloforcings Radiative forcing due to carbon tetrachloride //' @export // [[Rcpp::export]] -String RF_CCL4() { -return D_RFADJ_CCl4; -} +String RF_CCL4() { return D_RFADJ_CCl4; } //' @describeIn haloforcings Radiative forcing due to trichloroethane //' @export // [[Rcpp::export]] -String RF_CH3CCL3() { -return D_RFADJ_CH3CCl3; -} +String RF_CH3CCL3() { return D_RFADJ_CH3CCl3; } //' @describeIn haloforcings Radiative forcing due to HCFC-22 //' @export // [[Rcpp::export]] -String RF_HCFC22() { -return D_RFADJ_HCFC22; -} +String RF_HCFC22() { return D_RFADJ_HCFC22; } //' @describeIn haloforcings Radiative forcing due to HCFC-141b //' @export // [[Rcpp::export]] -String RF_HCFC141B() { -return D_RFADJ_HCFC141b; -} +String RF_HCFC141B() { return D_RFADJ_HCFC141b; } -//' @describeIn haloforcings Radiative forcing due to HCFC-142b +//' @describeIn haloforcings Radiative forcing due to HCCFC-142b //' @export // [[Rcpp::export]] -String RF_HCFC142B() { -return D_RFADJ_HCFC142b; -} +String RF_HCFC142B() { return D_RFADJ_HCFC142b; } //' @describeIn haloforcings Radiative forcing due to halon-1211 //' @export // [[Rcpp::export]] -String RF_HALON1211() { -return D_RFADJ_halon1211; -} +String RF_HALON1211() { return D_RFADJ_halon1211; } //' @describeIn haloforcings Radiative forcing due to halon-1301 //' @export // [[Rcpp::export]] -String RF_HALON1301() { -return D_RFADJ_halon1301; -} +String RF_HALON1301() { return D_RFADJ_halon1301; } //' @describeIn haloforcings Radiative forcing due to halon-2402 //' @export // [[Rcpp::export]] -String RF_HALON2402() { -return D_RFADJ_halon2402; -} +String RF_HALON2402() { return D_RFADJ_halon2402; } //' @describeIn haloforcings Radiative forcing due to chloromethane //' @export // [[Rcpp::export]] -String RF_CH3CL() { -return D_RFADJ_CH3Cl; -} +String RF_CH3CL() { return D_RFADJ_CH3Cl; } //' @describeIn haloforcings Radiative forcing due to bromomethane //' @export // [[Rcpp::export]] -String RF_CH3BR() { -return D_RFADJ_CH3Br; -} +String RF_CH3BR() { return D_RFADJ_CH3Br; } + +/* halocarbon rho (radiative forcing efficiency) */ +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CF4 +//' @export +// [[Rcpp::export]] +String RHO_CF4() { return D_HCRHO_CF4; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for C2F6 +//' @export +// [[Rcpp::export]] +String RHO_C2F6() { return D_HCRHO_C2F6; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-23 +//' @export +// [[Rcpp::export]] +String RHO_HFC23() { return D_HCRHO_HFC23; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-32 +//' @export +// [[Rcpp::export]] +String RHO_HFC32() { return D_HCRHO_HFC32; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-4310 +//' @export +// [[Rcpp::export]] +String RHO_HFC4310() { return D_HCRHO_HFC4310; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-125 +//' @export +// [[Rcpp::export]] +String RHO_HFC125() { return D_HCRHO_HFC125; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-134a +//' @export +// [[Rcpp::export]] +String RHO_HFC134A() { return D_HCRHO_HFC134a; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-143a +//' @export +// [[Rcpp::export]] +String RHO_HFC143A() { return D_HCRHO_HFC143a; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-227ea +//' @export +// [[Rcpp::export]] +String RHO_HFC227EA() { return D_HCRHO_HFC227ea; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-254fa +//' @export +// [[Rcpp::export]] +String RHO_HFC245FA() { return D_HCRHO_HFC245fa; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for sulfur hexafluoride +//' @export +// [[Rcpp::export]] +String RHO_SF6() { return D_HCRHO_SF6; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-11 +//' @export +// [[Rcpp::export]] +String RHO_CFC11() { return D_HCRHO_CFC11; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-12 +//' @export +// [[Rcpp::export]] +String RHO_CFC12() { return D_HCRHO_CFC12; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-113 +//' @export +// [[Rcpp::export]] +String RHO_CFC113() { return D_HCRHO_CFC113; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-114 +//' @export +// [[Rcpp::export]] +String RHO_CFC114() { return D_HCRHO_CFC114; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for CFC-115 +//' @export +// [[Rcpp::export]] +String RHO_CFC115() { return D_HCRHO_CFC115; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for carbon tetrachloride +//' @export +// [[Rcpp::export]] +String RHO_CCL4() { return D_HCRHO_CCl4; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for trichloroethane ' +//' @export +// [[Rcpp::export]] +String RHO_CH3CCL3() { return D_HCRHO_CH3CCl3; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-22 +//' @export +// [[Rcpp::export]] +String RHO_HCFC22() { return D_HCRHO_HCFC22; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HFC-141b +//' @export +// [[Rcpp::export]] +String RHO_HCFC141B() { return D_HCRHO_HCFC141b; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for HCFC-142b +//' @export +// [[Rcpp::export]] +String RHO_HCFC142B() { return D_HCRHO_HCFC142b; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for halon-1211 ' +//' @export +// [[Rcpp::export]] +String RHO_HALON1211() { return D_HCRHO_halon1211; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for halon-1301 +//' @export +// [[Rcpp::export]] +String RHO_HALON1301() { return D_HCRHO_halon1301; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for halon-2402 ' +//' @export +// [[Rcpp::export]] +String RHO_HALON2402() { return D_HCRHO_halon2402; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for chloromethane +//' @export +// [[Rcpp::export]] +String RHO_CH3CL() { return D_HCRHO_CH3Cl; } + +//' @describeIn rho a radiative forcing efficiency for user-specified preindustrial concentration (Wm-2 pptv-1) for bromomethane +//' @export +// [[Rcpp::export]] +String RHO_CH3BR() { return D_HCRHO_CH3Br; } + +/* halocarbon delta (tropospheric adjustments for stratospheric-temperature + * adjusted radiative forcing) */ +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_CF4() { return D_HCDELTA_CF4; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_C2F6() { return D_HCDELTA_C2F6; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HFC23() { return D_HCDELTA_HFC23; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing ' +//' @export +// [[Rcpp::export]] +String DELTA_HFC32() { return D_HCDELTA_HFC32; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HFC4310() { return D_HCDELTA_HFC4310; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HFC125() { return D_HCDELTA_HFC125; } + +//' @describeIn delta the tropospheric adjustments used to convert from tratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HFC134A() { return D_HCDELTA_HFC134a; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HFC143A() { return D_HCDELTA_HFC143a; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HFC227EA() { return D_HCDELTA_HFC227ea; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HFC245FA() { return D_HCDELTA_HFC245fa; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_SF6() { return D_HCDELTA_SF6; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_CFC11() { return D_HCDELTA_CFC11; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_CFC12() { return D_HCDELTA_CFC12; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_CFC113() { return D_HCDELTA_CFC113; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_CFC114() { return D_HCDELTA_CFC114; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_CFC115() { return D_HCDELTA_CFC115; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_CCL4() { return D_HCDELTA_CCl4; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_CH3CCL3() { return D_HCDELTA_CH3CCl3; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HCFC22() { return D_HCDELTA_HCFC22; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HCFC141B() { return D_HCDELTA_HCFC141b; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HCFC142B() { return D_HCDELTA_HCFC142b; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HALON1211() { return D_HCDELTA_halon1211; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HALON1301() { return D_HCDELTA_halon1301; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_HALON2402() { return D_HCDELTA_halon2402; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_CH3CL() { return D_HCDELTA_CH3Cl; } + +//' @describeIn delta the tropospheric adjustments used to convert from stratospheric-temperature adjusted radiative forcing to effective radiative forcing +//' @export +// [[Rcpp::export]] +String DELTA_CH3BR() { return D_HCDELTA_CH3Br; } + +//' @describeIn forcings Radiative forcing efficiency for doubling of CO2 +//' @export +// [[Rcpp::export]] +String Q_CO2() { return D_QCO2; } /* halocarbon emissions */ //' @describeIn haloemiss Emissions for CF4 //' @export // [[Rcpp::export]] -String EMISSIONS_CF4() { -return D_EMISSIONS_CF4; -} +String EMISSIONS_CF4() { return D_EMISSIONS_CF4; } //' @describeIn haloemiss Emissions for C2F6 //' @export // [[Rcpp::export]] -String EMISSIONS_C2F6() { -return D_EMISSIONS_C2F6; -} +String EMISSIONS_C2F6() { return D_EMISSIONS_C2F6; } //' @describeIn haloemiss Emissions for HFC-23 //' @export // [[Rcpp::export]] -String EMISSIONS_HFC23() { -return D_EMISSIONS_HFC23; -} +String EMISSIONS_HFC23() { return D_EMISSIONS_HFC23; } //' @describeIn haloemiss Emissions for HFC-32 //' @export // [[Rcpp::export]] -String EMISSIONS_HFC32() { -return D_EMISSIONS_HFC32; -} +String EMISSIONS_HFC32() { return D_EMISSIONS_HFC32; } //' @describeIn haloemiss Emissions for HFC-4310 //' @export // [[Rcpp::export]] -String EMISSIONS_HFC4310() { -return D_EMISSIONS_HFC4310; -} +String EMISSIONS_HFC4310() { return D_EMISSIONS_HFC4310; } //' @describeIn haloemiss Emissions for HFC-125 //' @export // [[Rcpp::export]] -String EMISSIONS_HFC125() { -return D_EMISSIONS_HFC125; -} +String EMISSIONS_HFC125() { return D_EMISSIONS_HFC125; } //' @describeIn haloemiss Emissions for HFC-134a //' @export // [[Rcpp::export]] -String EMISSIONS_HFC134A() { -return D_EMISSIONS_HFC134a; -} +String EMISSIONS_HFC134A() { return D_EMISSIONS_HFC134a; } //' @describeIn haloemiss Emissions for HFC-143a //' @export // [[Rcpp::export]] -String EMISSIONS_HFC143A() { -return D_EMISSIONS_HFC143a; -} +String EMISSIONS_HFC143A() { return D_EMISSIONS_HFC143a; } //' @describeIn haloemiss Emissions for HFC-227ea //' @export // [[Rcpp::export]] -String EMISSIONS_HFC227EA() { -return D_EMISSIONS_HFC227ea; -} +String EMISSIONS_HFC227EA() { return D_EMISSIONS_HFC227ea; } //' @describeIn haloemiss Emissions for HFC-254fa //' @export // [[Rcpp::export]] -String EMISSIONS_HFC245FA() { -return D_EMISSIONS_HFC245fa; -} +String EMISSIONS_HFC245FA() { return D_EMISSIONS_HFC245fa; } //' @describeIn haloemiss Emissions for sulfur hexafluoride //' @export // [[Rcpp::export]] -String EMISSIONS_SF6() { -return D_EMISSIONS_SF6; -} +String EMISSIONS_SF6() { return D_EMISSIONS_SF6; } //' @describeIn haloemiss Emissions for CFC-11 //' @export // [[Rcpp::export]] -String EMISSIONS_CFC11() { -return D_EMISSIONS_CFC11; -} +String EMISSIONS_CFC11() { return D_EMISSIONS_CFC11; } //' @describeIn haloemiss Emissions for CFC-12 //' @export // [[Rcpp::export]] -String EMISSIONS_CFC12() { -return D_EMISSIONS_CFC12; -} +String EMISSIONS_CFC12() { return D_EMISSIONS_CFC12; } //' @describeIn haloemiss Emissions for CFC-113 //' @export // [[Rcpp::export]] -String EMISSIONS_CFC113() { -return D_EMISSIONS_CFC113; -} +String EMISSIONS_CFC113() { return D_EMISSIONS_CFC113; } //' @describeIn haloemiss Emissions for CFC-114 //' @export // [[Rcpp::export]] -String EMISSIONS_CFC114() { -return D_EMISSIONS_CFC114; -} +String EMISSIONS_CFC114() { return D_EMISSIONS_CFC114; } //' @describeIn haloemiss Emissions for CFC-115 //' @export // [[Rcpp::export]] -String EMISSIONS_CFC115() { -return D_EMISSIONS_CFC115; -} +String EMISSIONS_CFC115() { return D_EMISSIONS_CFC115; } //' @describeIn haloemiss Emissions for carbon tetrachloride //' @export // [[Rcpp::export]] -String EMISSIONS_CCL4() { -return D_EMISSIONS_CCl4; -} +String EMISSIONS_CCL4() { return D_EMISSIONS_CCl4; } //' @describeIn haloemiss Emissions for trichloroethane //' @export // [[Rcpp::export]] -String EMISSIONS_CH3CCL3() { -return D_EMISSIONS_CH3CCl3; -} +String EMISSIONS_CH3CCL3() { return D_EMISSIONS_CH3CCl3; } //' @describeIn haloemiss Emissions for HCFC-22 //' @export // [[Rcpp::export]] -String EMISSIONS_HCFC22() { -return D_EMISSIONS_HCFC22; -} +String EMISSIONS_HCFC22() { return D_EMISSIONS_HCFC22; } -//' @describeIn haloemiss Emissions for HCFC-141b +//' @describeIn haloemiss Emissions for HcFC-141b //' @export // [[Rcpp::export]] -String EMISSIONS_HCFC141B() { -return D_EMISSIONS_HCFC141b; -} +String EMISSIONS_HCFC141B() { return D_EMISSIONS_HCFC141b; } //' @describeIn haloemiss Emissions for HCFC-142b //' @export // [[Rcpp::export]] -String EMISSIONS_HCFC142B() { -return D_EMISSIONS_HCFC142b; -} +String EMISSIONS_HCFC142B() { return D_EMISSIONS_HCFC142b; } //' @describeIn haloemiss Emissions for halon-1211 //' @export // [[Rcpp::export]] -String EMISSIONS_HALON1211() { -return D_EMISSIONS_halon1211; -} +String EMISSIONS_HALON1211() { return D_EMISSIONS_halon1211; } //' @describeIn haloemiss Emissions for halon-1301 //' @export // [[Rcpp::export]] -String EMISSIONS_HALON1301() { -return D_EMISSIONS_halon1301; -} +String EMISSIONS_HALON1301() { return D_EMISSIONS_halon1301; } //' @describeIn haloemiss Emissions for halon-2402 //' @export // [[Rcpp::export]] -String EMISSIONS_HALON2402() { -return D_EMISSIONS_halon2402; -} +String EMISSIONS_HALON2402() { return D_EMISSIONS_halon2402; } //' @describeIn haloemiss Emissions for chloromethane //' @export // [[Rcpp::export]] -String EMISSIONS_CH3CL() { -return D_EMISSIONS_CH3Cl; -} +String EMISSIONS_CH3CL() { return D_EMISSIONS_CH3Cl; } //' @describeIn haloemiss Emissions for bromomethane //' @export // [[Rcpp::export]] -String EMISSIONS_CH3BR() { -return D_EMISSIONS_CH3Br; -} +String EMISSIONS_CH3BR() { return D_EMISSIONS_CH3Br; } /* halocarbon constraints */ //' @describeIn haloconstrain Concentration constraint for CF4 //' @export // [[Rcpp::export]] -String CF4_CONSTRAIN() { -return D_CONSTRAINT_CF4; -} +String CF4_CONSTRAIN() { return D_CONSTRAINT_CF4; } //' @describeIn haloconstrain Concentration constraint for C2F6 //' @export // [[Rcpp::export]] -String C2F6_CONSTRAIN() { -return D_CONSTRAINT_C2F6; -} +String C2F6_CONSTRAIN() { return D_CONSTRAINT_C2F6; } //' @describeIn haloconstrain Concentration constraint for HFC-23 //' @export // [[Rcpp::export]] -String HFC23_CONSTRAIN() { -return D_CONSTRAINT_HFC23; -} +String HFC23_CONSTRAIN() { return D_CONSTRAINT_HFC23; } //' @describeIn haloconstrain Concentration constraint for HFC-32 //' @export // [[Rcpp::export]] -String HFC32_CONSTRAIN() { -return D_CONSTRAINT_HFC32; -} +String HFC32_CONSTRAIN() { return D_CONSTRAINT_HFC32; } //' @describeIn haloconstrain Concentration constraint for HFC-4310 //' @export // [[Rcpp::export]] -String HFC4310_CONSTRAIN() { -return D_CONSTRAINT_HFC4310; -} +String HFC4310_CONSTRAIN() { return D_CONSTRAINT_HFC4310; } //' @describeIn haloconstrain Concentration constraint for HFC-125 //' @export // [[Rcpp::export]] -String HFC125_CONSTRAIN() { -return D_CONSTRAINT_HFC125; -} +String HFC125_CONSTRAIN() { return D_CONSTRAINT_HFC125; } //' @describeIn haloconstrain Concentration constraint for HFC-134a //' @export // [[Rcpp::export]] -String HFC134A_CONSTRAIN() { -return D_CONSTRAINT_HFC134a; -} +String HFC134A_CONSTRAIN() { return D_CONSTRAINT_HFC134a; } //' @describeIn haloconstrain Concentration constraint for HFC-143a //' @export // [[Rcpp::export]] -String HFC143A_CONSTRAIN() { -return D_CONSTRAINT_HFC143a; -} +String HFC143A_CONSTRAIN() { return D_CONSTRAINT_HFC143a; } //' @describeIn haloconstrain Concentration constraint for HFC-227ea //' @export // [[Rcpp::export]] -String HFC227EA_CONSTRAIN() { -return D_CONSTRAINT_HFC227ea; -} +String HFC227EA_CONSTRAIN() { return D_CONSTRAINT_HFC227ea; } //' @describeIn haloconstrain Concentration constraint for HFC-254fa //' @export // [[Rcpp::export]] -String HFC245FA_CONSTRAIN() { -return D_CONSTRAINT_HFC245fa; -} +String HFC245FA_CONSTRAIN() { return D_CONSTRAINT_HFC245fa; } //' @describeIn haloconstrain Concentration constraint for sulfur hexafluoride //' @export // [[Rcpp::export]] -String SF6_CONSTRAIN() { -return D_CONSTRAINT_SF6; -} +String SF6_CONSTRAIN() { return D_CONSTRAINT_SF6; } //' @describeIn haloconstrain Concentration constraint for CFC-11 //' @export // [[Rcpp::export]] -String CFC11_CONSTRAIN() { -return D_CONSTRAINT_CFC11; -} +String CFC11_CONSTRAIN() { return D_CONSTRAINT_CFC11; } //' @describeIn haloconstrain Concentration constraint for CFC-12 //' @export // [[Rcpp::export]] -String CFC12_CONSTRAIN() { -return D_CONSTRAINT_CFC12; -} +String CFC12_CONSTRAIN() { return D_CONSTRAINT_CFC12; } //' @describeIn haloconstrain Concentration constraint for CFC-113 //' @export // [[Rcpp::export]] -String CFC113_CONSTRAIN() { -return D_CONSTRAINT_CFC113; -} +String CFC113_CONSTRAIN() { return D_CONSTRAINT_CFC113; } //' @describeIn haloconstrain Concentration constraint for CFC-114 //' @export // [[Rcpp::export]] -String CFC114_CONSTRAIN() { -return D_CONSTRAINT_CFC114; -} +String CFC114_CONSTRAIN() { return D_CONSTRAINT_CFC114; } //' @describeIn haloconstrain Concentration constraint for CFC-115 //' @export // [[Rcpp::export]] -String CFC115_CONSTRAIN() { -return D_CONSTRAINT_CFC115; -} +String CFC115_CONSTRAIN() { return D_CONSTRAINT_CFC115; } //' @describeIn haloconstrain Concentration constraint for carbon tetrachloride //' @export // [[Rcpp::export]] -String CCL4_CONSTRAIN() { -return D_CONSTRAINT_CCl4; -} +String CCL4_CONSTRAIN() { return D_CONSTRAINT_CCl4; } //' @describeIn haloconstrain Concentration constraint for trichloroethane //' @export // [[Rcpp::export]] -String CH3CCL3_CONSTRAIN() { -return D_CONSTRAINT_CH3CCl3; -} +String CH3CCL3_CONSTRAIN() { return D_CONSTRAINT_CH3CCl3; } //' @describeIn haloconstrain Concentration constraint for HCFC-22 //' @export // [[Rcpp::export]] -String HCFC22_CONSTRAIN() { -return D_CONSTRAINT_HCFC22; -} +String HCFC22_CONSTRAIN() { return D_CONSTRAINT_HCFC22; } //' @describeIn haloconstrain Concentration constraint for HCFC-141b //' @export // [[Rcpp::export]] -String HCFC141B_CONSTRAIN() { -return D_CONSTRAINT_HCFC141b; -} +String HCFC141B_CONSTRAIN() { return D_CONSTRAINT_HCFC141b; } //' @describeIn haloconstrain Concentration constraint for HCFC-142b //' @export // [[Rcpp::export]] -String HCFC142B_CONSTRAIN() { -return D_CONSTRAINT_HCFC142b; -} +String HCFC142B_CONSTRAIN() { return D_CONSTRAINT_HCFC142b; } //' @describeIn haloconstrain Concentration constraint for halon-1211 //' @export // [[Rcpp::export]] -String HALON1211_CONSTRAIN() { -return D_CONSTRAINT_halon1211; -} +String HALON1211_CONSTRAIN() { return D_CONSTRAINT_halon1211; } //' @describeIn haloconstrain Concentration constraint for halon-1301 //' @export // [[Rcpp::export]] -String HALON1301_CONSTRAIN() { -return D_CONSTRAINT_halon1301; -} +String HALON1301_CONSTRAIN() { return D_CONSTRAINT_halon1301; } //' @describeIn haloconstrain Concentration constraint for halon-2402 //' @export // [[Rcpp::export]] -String HALON2402_CONSTRAIN() { -return D_CONSTRAINT_halon2402; -} +String HALON2402_CONSTRAIN() { return D_CONSTRAINT_halon2402; } //' @describeIn haloconstrain Concentration constraint for chloromethane //' @export // [[Rcpp::export]] -String CH3CL_CONSTRAIN() { -return D_CONSTRAINT_CH3Cl; -} +String CH3CL_CONSTRAIN() { return D_CONSTRAINT_CH3Cl; } //' @describeIn haloconstrain Concentration constraint for bromomethane //' @export // [[Rcpp::export]] -String CH3BR_CONSTRAIN() { -return D_CONSTRAINT_CH3Br; -} - +String CH3BR_CONSTRAIN() { return D_CONSTRAINT_CH3Br; } /* Methane component */ //' @rdname methane //' @export // [[Rcpp::export]] -String ATMOSPHERIC_CH4() { -return D_ATMOSPHERIC_CH4; -} +String CONCENTRATIONS_CH4() { return D_CH4_CONC; } //' @describeIn constraints CH4 concentration constraint \code{"ppbv CH4"} //' @export // [[Rcpp::export]] -String CH4_CONSTRAIN() { -return D_CONSTRAINT_CH4; -} - +String CH4_CONSTRAIN() { return D_CONSTRAINT_CH4; } //' @rdname methane //' @export // [[Rcpp::export]] -String PREINDUSTRIAL_CH4() { -return D_PREINDUSTRIAL_CH4; -} +String PREINDUSTRIAL_CH4() { return D_PREINDUSTRIAL_CH4; } //' @describeIn forcings Radiative forcing due to methane //' @export // [[Rcpp::export]] -String RF_CH4() { -return D_RF_CH4; -} +String RF_CH4() { return D_RF_CH4; } + +//' @describeIn delta Radiative forcing tropospheric adjustment for CH4 +//' @export +// [[Rcpp::export]] +String DELTA_CH4() { return D_DELTA_CH4; } //' @rdname methane //' @export // [[Rcpp::export]] -String EMISSIONS_CH4() { -return D_EMISSIONS_CH4; -} +String EMISSIONS_CH4() { return D_EMISSIONS_CH4; } //' @rdname methane //' @export // [[Rcpp::export]] -String NATURAL_CH4() { -return D_NATURAL_CH4; -} +String NATURAL_CH4() { return D_NATURAL_CH4; } //' @rdname methane //' @export // [[Rcpp::export]] -String LIFETIME_SOIL() { -return D_LIFETIME_SOIL; -} +String LIFETIME_SOIL() { return D_LIFETIME_SOIL; } //' @rdname methane //' @export // [[Rcpp::export]] -String LIFETIME_STRAT() { -return D_LIFETIME_STRAT; -} +String LIFETIME_STRAT() { return D_LIFETIME_STRAT; } /* N2O component */ //' @describeIn concentrations Atmospheric N2O concentration //' @export // [[Rcpp::export]] -String ATMOSPHERIC_N2O() { -return D_ATMOSPHERIC_N2O; -} +String CONCENTRATIONS_N2O() { return D_N2O_CONC; } //' @describeIn concentrations Preindustrial atmospheric N2O concentration //' @export // [[Rcpp::export]] -String PREINDUSTRIAL_N2O() { -return D_PREINDUSTRIAL_N2O; -} +String PREINDUSTRIAL_N2O() { return D_PREINDUSTRIAL_N2O; } //' @describeIn emissions N2O emissions (\code{"Tg N"}) //' @export // [[Rcpp::export]] -String EMISSIONS_N2O() { -return D_EMISSIONS_N2O; -} +String EMISSIONS_N2O() { return D_EMISSIONS_N2O; } //' @describeIn emissions Natural N2O emissions (\code{"Tg N"}) //' @export // [[Rcpp::export]] -String NAT_EMISSIONS_N2O() { -return D_NAT_EMISSIONS_N2O; -} +String NAT_EMISSIONS_N2O() { return D_NAT_EMISSIONS_N2O; } //' @describeIn constraints N2O concentration constraint (\code{"pbbv N2O"}) //' @export // [[Rcpp::export]] -String N2O_CONSTRAIN() { -return D_CONSTRAINT_N2O; -} - - +String N2O_CONSTRAIN() { return D_CONSTRAINT_N2O; } /* O3 component */ //' @describeIn concentrations Preindustrial ozone concentration //' @export // [[Rcpp::export]] -String PREINDUSTRIAL_O3() { -return D_PREINDUSTRIAL_O3; -} +String PREINDUSTRIAL_O3() { return D_PREINDUSTRIAL_O3; } //' @describeIn concentrations Atmospheric ozone concentration //' @export // [[Rcpp::export]] -String ATMOSPHERIC_O3() { -return D_ATMOSPHERIC_O3; -} +String CONCENTRATIONS_O3() { return D_ATMOSPHERIC_O3; } //' @describeIn emissions Emissions for NOx compounds (\code{"Tg N"}) //' @export // [[Rcpp::export]] -String EMISSIONS_NOX() { -return D_EMISSIONS_NOX; -} +String EMISSIONS_NOX() { return D_EMISSIONS_NOX; } //' @describeIn emissions Emissions for carbon monoxide (\code{"Tg CO"}) //' @export // [[Rcpp::export]] -String EMISSIONS_CO() { -return D_EMISSIONS_CO; -} +String EMISSIONS_CO() { return D_EMISSIONS_CO; } //' @describeIn emissions Emissions for non-methane volatile organic compounds (NMVOC) (\code{"Tg NMVOC"}) //' @export // [[Rcpp::export]] -String EMISSIONS_NMVOC() { -return D_EMISSIONS_NMVOC; -} +String EMISSIONS_NMVOC() { return D_EMISSIONS_NMVOC; } /* OC component */ //' @describeIn emissions Emissions for organic carbon (\code{"Tg"}) //' @export // [[Rcpp::export]] -String EMISSIONS_OC() { -return D_EMISSIONS_OC; -} +String EMISSIONS_OC() { return D_EMISSIONS_OC; } + +/* NH3 component */ +//' @describeIn emissions Emissions for NH3 (\code{"Tg"}) +//' @export +// [[Rcpp::export]] +String EMISSIONS_NH3() { return D_EMISSIONS_NH3; } /* Ocean component */ //' @describeIn ocean Atmosphere-ocean carbon flux //' @export // [[Rcpp::export]] -String OCEAN_CFLUX() { -return D_OCEAN_CFLUX; -} +String OCEAN_UPTAKE() { return D_OCEAN_C_UPTAKE; } //' @describeIn ocean Ocean total carbon pool //' @export // [[Rcpp::export]] -String OCEAN_C() { -return D_OCEAN_C; -} +String OCEAN_C() { return D_OCEAN_C; } //' @describeIn ocean Ocean surface high-latitude carbon pool //' @export // [[Rcpp::export]] -String OCEAN_C_HL() { -return D_CARBON_HL; -} +String OCEAN_C_HL() { return D_CARBON_HL; } //' @describeIn ocean Ocean surface low-latitude carbon pool //' @export // [[Rcpp::export]] -String OCEAN_C_LL() { -return D_CARBON_LL; -} +String OCEAN_C_LL() { return D_CARBON_LL; } + +//' @describeIn ocean Ocean surface or mixed layer carbon pool +//' @export +// [[Rcpp::export]] +String OCEAN_C_ML() { return D_CARBON_ML; } //' @describeIn ocean Intermediate ocean carbon pool //' @export // [[Rcpp::export]] -String OCEAN_C_IO() { -return D_CARBON_IO; -} +String OCEAN_C_IO() { return D_CARBON_IO; } //' @describeIn ocean Deep ocean carbon pool //' @export // [[Rcpp::export]] -String OCEAN_C_DO() { -return D_CARBON_DO; -} +String OCEAN_C_DO() { return D_CARBON_DO; } + +//' @describeIn ocean Preindustrial surface ocean carbon pool +//' @export +// [[Rcpp::export]] +String OCEAN_PREIND_C_SURF() { return D_CARBON_PRE_SURF; } +//' @describeIn ocean Preindustrial intermediate+deep ocean carbon pool +//' @export +// [[Rcpp::export]] +String OCEAN_PREIND_C_ID() { return D_CARBON_PRE_ID; } //' @describeIn ocean Thermohaline overturning //' @export // [[Rcpp::export]] -String TT() { -return D_TT; -} +String TT() { return D_TT; } //' @describeIn ocean High-latitude overturning //' @export // [[Rcpp::export]] -String TU() { -return D_TU; -} +String TU() { return D_TU; } //' @describeIn ocean Warm-intermediate exchange //' @export // [[Rcpp::export]] -String TWI() { -return D_TWI; -} +String TWI() { return D_TWI; } //' @describeIn ocean Intermediate-deep exchange //' @export // [[Rcpp::export]] -String TID() { -return D_TID; -} +String TID() { return D_TID; } -// The rest of these aren't yet implemented, but we might want to have them some day +//' @describeIn ocean High-latitude pH +//' @export +// [[Rcpp::export]] +String PH_HL() { return D_PH_HL; } -//' @describeIn ocean High-latitude Ph +//' @describeIn ocean Low-latitude pH //' @export // [[Rcpp::export]] -String PH_HL() { -return D_PH_HL; -} +String PH_LL() { return D_PH_LL; } -//' @describeIn ocean Low-latitude Ph +//' @describeIn ocean Ocean surface pH //' @export // [[Rcpp::export]] -String PH_LL() { -return D_PH_LL; -} +String PH() { return D_PH; } //' @describeIn ocean Atmosphere-ocean carbon flux, high-latitude //' @export // [[Rcpp::export]] -String ATM_OCEAN_FLUX_HL() { -return D_ATM_OCEAN_FLUX_HL; -} +String HL_OCEAN_UPTAKE() { return D_ATM_OCEAN_FLUX_HL; } //' @describeIn ocean Atmosphere-ocean carbon flux, low-latitude //' @export // [[Rcpp::export]] -String ATM_OCEAN_FLUX_LL() { -return D_ATM_OCEAN_FLUX_LL; -} +String LL_OCEAN_UPTAKE() { return D_ATM_OCEAN_FLUX_LL; } //' @describeIn ocean Partial pressure of CO2, high-latitude //' @export // [[Rcpp::export]] -String PCO2_HL() { -return D_PCO2_HL; -} +String PCO2_HL() { return D_PCO2_HL; } //' @describeIn ocean Partial pressure of CO2, low-latitude //' @export // [[Rcpp::export]] -String PCO2_LL() { -return D_PCO2_LL; -} +String PCO2_LL() { return D_PCO2_LL; } + +//' @describeIn ocean Ocean surface partial pressure of CO2 +//' @export +// [[Rcpp::export]] +String PCO2() { return D_PCO2; } //' @describeIn ocean Dissolved inorganic carbon, high-latitude //' @export // [[Rcpp::export]] -String DIC_HL() { -return D_DIC_HL; -} +String DIC_HL() { return D_DIC_HL; } + +//' @describeIn ocean Ocean surface dissolved inorganic carbon +//' @export +// [[Rcpp::export]] +String DIC() { return D_DIC; } //' @describeIn ocean Dissolved inorganic carbon, low-latitude //' @export // [[Rcpp::export]] -String DIC_LL() { -return D_DIC_LL; -} +String DIC_LL() { return D_DIC_LL; } -//' @describeIn ocean Ocean temperature, high-latitude +//' @describeIn ocean Absolute ocean surface temperature, high-latitude (deg C) //' @export // [[Rcpp::export]] -String TEMP_HL() { -return D_TEMP_HL; -} +String SST_HL() { return D_TEMP_HL; } -//' @describeIn ocean Ocean temperature, low-latitude +//' @describeIn ocean Absolute ocean surface temperature, low-latitude (deg C) //' @export // [[Rcpp::export]] -String TEMP_LL() { -return D_TEMP_LL; -} +String SST_LL() { return D_TEMP_LL; } //' @describeIn ocean Carbonate concentration, low-latitude //' @export // [[Rcpp::export]] -String CO3_LL() { -return D_CO3_LL; -} +String CO3_LL() { return D_CO3_LL; } //' @describeIn ocean Carbonate concentration, high-latitude //' @export // [[Rcpp::export]] -String CO3_HL() { -return D_CO3_HL; -} - +String CO3_HL() { return D_CO3_HL; } +//' @describeIn ocean Ocean surface carbonate concentration +//' @export +// [[Rcpp::export]] +String CO3() { return D_CO3; } /* Simple Nbox Component */ //' @rdname carboncycle //' @export // [[Rcpp::export]] -String LAND_CFLUX() { -return D_LAND_CFLUX; -} +String NBP() { return D_NBP; } -// An alias for LAND_CFLUX that may be more familiar to carbon cycle people //' @rdname carboncycle //' @export // [[Rcpp::export]] -String NBP() { -return D_LAND_CFLUX; -} +String CONCENTRATIONS_CO2() { return D_CO2_CONC; } //' @rdname carboncycle //' @export // [[Rcpp::export]] -String ATMOSPHERIC_CO2() { -return D_ATMOSPHERIC_CO2; -} +String NPP() { return D_NPP; } //' @rdname carboncycle //' @export // [[Rcpp::export]] -String NPP() { - return D_NPP; -} +String RH() { return D_RH; } //' @describeIn parameters Preindustrial CO2 concentration (\code{"ppmv CO2"}) //' @export // [[Rcpp::export]] -String PREINDUSTRIAL_CO2() { -return D_PREINDUSTRIAL_CO2; -} +String PREINDUSTRIAL_CO2() { return D_PREINDUSTRIAL_CO2; } //' @rdname carboncycle //' @export // [[Rcpp::export]] -String ATMOSPHERIC_C() { -return D_ATMOSPHERIC_C; -} +String ATMOSPHERIC_CO2() { return D_ATMOSPHERIC_CO2; } //' @rdname carboncycle //' @export // [[Rcpp::export]] -String FFI_EMISSIONS() { -return D_FFI_EMISSIONS; -} +String FFI_EMISSIONS() { return D_FFI_EMISSIONS; } //' @rdname carboncycle //' @export // [[Rcpp::export]] -String LUC_EMISSIONS() { -return D_LUC_EMISSIONS; -} +String DACCS_UPTAKE() { return D_DACCS_UPTAKE; } + +//' @rdname carboncycle +//' @export +// [[Rcpp::export]] +String LUC_EMISSIONS() { return D_LUC_EMISSIONS; } + +//' @rdname carboncycle +//' @export +// [[Rcpp::export]] +String LUC_UPTAKE() { return D_LUC_UPTAKE; } //' @describeIn parameters CO2 fertilization factor (\code{"(unitless)"}) -//' @param biome Biome for which to retrieve parameter. If missing or -//' `""`, default to `"global"`. +//' @param biome Biome for which to retrieve parameter. If missing or `""`, default to `"global"`. //' @export // [[Rcpp::export]] String BETA(String biome = "") { - if (biome == "") return D_BETA; + if (biome == "") + return D_BETA; // `Rcpp::String` has a `+=` method, but no `+` method, so have to use // this clunky workaround. String out = biome; - out += "."; + out += BIOME_SPLIT_CHAR(); out += D_BETA; return out; } //' @describeIn parameters Heterotrophic respiration temperature sensitivity factor (\code{"(unitless)"}) -//' @inheritParams BETA //' @export // [[Rcpp::export]] String Q10_RH(String biome = "") { - if (biome == "") return D_Q10_RH; + if (biome == "") + return D_Q10_RH; String out = biome; - out += "."; + out += BIOME_SPLIT_CHAR(); out += D_Q10_RH; return out; } - //' @describeIn parameters Biome-specific warming factor (`(unitless)`) -//' @inheritParams BETA //' @export // [[Rcpp::export]] String WARMINGFACTOR(String biome = "") { - if (biome == "") return D_WARMINGFACTOR; + if (biome == "") + return D_WARMINGFACTOR; String out = biome; - out += "."; + out += BIOME_SPLIT_CHAR(); out += D_WARMINGFACTOR; return out; } -//' @describeIn carboncycle Constrain atmospheric CO2 concentration (\code{"(ppmv CO2)"}) +//' @describeIn carboncycle Constrain atmospheric CO2 concentration (\code{"(ppmv CO2)"}) //' @export // [[Rcpp::export]] -String CO2_CONSTRAIN() { - return D_CO2_CONSTRAIN; -} +String CO2_CONSTRAIN() { return D_CO2_CONSTRAIN; } + +//' @describeIn carboncycle Constrain net biome production (land-atmosphere flux) (\code{"(PgC/yr)"}) +//' @export +// [[Rcpp::export]] +String NBP_CONSTRAIN() { return D_NBP_CONSTRAIN; } //' @describeIn parameters NPP fraction to vegetation (\code{"(unitless)"}) -//' @inheritParams BETA //' @export // [[Rcpp::export]] String F_NPPV(String biome = "") { - if (biome == "") return D_F_NPPV; + if (biome == "") + return D_F_NPPV; String out = biome; - out += "."; + out += BIOME_SPLIT_CHAR(); out += D_F_NPPV; return out; } //' @describeIn parameters NPP fraction to detritus (\code{"(unitless)"}) -//' @inheritParams BETA //' @export // [[Rcpp::export]] String F_NPPD(String biome = "") { - if (biome == "") return D_F_NPPD; + if (biome == "") + return D_F_NPPD; String out = biome; - out += "."; + out += BIOME_SPLIT_CHAR(); out += D_F_NPPD; return out; } //' @describeIn parameters Litter fraction to detritus (\code{"(unitless)"}) -//' @inheritParams BETA //' @export // [[Rcpp::export]] String F_LITTERD(String biome = "") { - if (biome == "") return D_F_LITTERD; + if (biome == "") + return D_F_LITTERD; String out = biome; - out += "."; + out += BIOME_SPLIT_CHAR(); out += D_F_LITTERD; return out; } -//' @describeIn parameters LUC fraction to vegetation (\code{"(unitless)"}) -//' @export -// [[Rcpp::export]] -String F_LUCV() { -return D_F_LUCV; -} - -//' @describeIn parameters LUC fraction to detritus (\code{"(unitless)"}) -//' @export -// [[Rcpp::export]] -String F_LUCD() { -return D_F_LUCD; -} - //' @describeIn carboncycle Vegetation C pool (`"Pg C"`) -//' @inheritParams BETA +//' @param biome Name of biome (leave empty for global) //' @export // [[Rcpp::export]] String VEG_C(String biome = "") { - if (biome == "") return D_VEGC; + if (biome == "") + return D_VEGC; String out = biome; - out += "."; + out += BIOME_SPLIT_CHAR(); out += D_VEGC; return out; } //' @describeIn carboncycle Vegetation detritus C pool (`"Pg C"`) -//' @inheritParams BETA +//' @param biome Name of biome (leave empty for global) //' @export // [[Rcpp::export]] String DETRITUS_C(String biome = "") { - if (biome == "") return D_DETRITUSC; + if (biome == "") + return D_DETRITUSC; String out = biome; - out += "."; + out += BIOME_SPLIT_CHAR(); out += D_DETRITUSC; return out; } //' @describeIn carboncycle Soil C pool (`"Pg C"`) -//' @inheritParams BETA +//' @param biome Name of biome (leave empty for global) //' @export // [[Rcpp::export]] String SOIL_C(String biome = "") { - if (biome == "") return D_SOILC; + if (biome == "") + return D_SOILC; String out = biome; - out += "."; + out += BIOME_SPLIT_CHAR(); out += D_SOILC; return out; } -//' @describeIn carboncycle Initial net primary productivity (NPP) -//' flux (`"Pg C year^-1"`) -//' @inheritParams BETA +//' @describeIn carboncycle Permafrost C pool (`"Pg C"`) +//' @param biome Name of biome (leave empty for global) +//' @export +// [[Rcpp::export]] +String PERMAFROST_C(String biome = "") { + if (biome == "") return D_PERMAFROSTC; + String out = biome; + out += BIOME_SPLIT_CHAR(); + out += D_PERMAFROSTC; + return out; +} + +//' @describeIn carboncycle Thawed permafrost C pool (`"Pg C"`) +//' @param biome Name of biome (leave empty for global) +//' @export +// [[Rcpp::export]] +String THAWEDP_C(String biome = "") { + if (biome == "") return D_THAWEDPC; + String out = biome; + out += BIOME_SPLIT_CHAR(); + out += D_THAWEDPC; + return out; +} + +//' @describeIn carboncycle Fraction of permafrost still frozen (\code{"(unitless)"}) +//' @param biome Name of biome (leave empty for global) +//' @export +// [[Rcpp::export]] +String FRAC_FROZEN(String biome = "") { + if (biome == "") return D_F_FROZEN; + String out = biome; + out += BIOME_SPLIT_CHAR(); + out += D_F_FROZEN; + return out; +} + +//' @describeIn carboncycle Fraction of thawed permafrost that is static (\code{"(unitless)"}) +//' @param biome Name of biome (leave empty for global) +//' @export +// [[Rcpp::export]] +String FRAC_STATIC(String biome = "") { + if (biome == "") return D_FPF_STATIC; + String out = biome; + out += BIOME_SPLIT_CHAR(); + out += D_FPF_STATIC; + return out; +} + +//' @describeIn carboncycle Permafrost thaw mu parameter (\code{"(unitless)"}) +//' @param biome Name of biome (leave empty for global) +//' @note See Woodard et al. (2021) +//' @export +// [[Rcpp::export]] +String PERMAFROST_MU(String biome = "") { + if (biome == "") return D_PF_MU; + String out = biome; + out += BIOME_SPLIT_CHAR(); + out += D_PF_MU; + return out; +} + +//' @describeIn carboncycle Permafrost thaw sigma parameter (\code{"(unitless)"}) +//' @param biome Name of biome (leave empty for global) +//' @note See Woodard et al. (2021) +//' @export +// [[Rcpp::export]] +String PERMAFROST_SIGMA(String biome = "") { + if (biome == "") return D_PF_SIGMA; + String out = biome; + out += BIOME_SPLIT_CHAR(); + out += D_PF_SIGMA; + return out; +} + +//' @describeIn carboncycle Methane fraction of permafrost decomposition (\code{"(unitless)"}) +//' @param biome Name of biome (leave empty for global) +//' @export +// [[Rcpp::export]] +String FRAC_DECOMP_CH4(String biome = "") { + if (biome == "") return D_RH_CH4_FRAC; + String out = biome; + out += BIOME_SPLIT_CHAR(); + out += D_RH_CH4_FRAC; + return out; +} + +//' @rdname carboncycle +//' @export +// [[Rcpp::export]] +String EARTH_C() { return D_EARTHC; } + +//' @describeIn carboncycle Initial net primary productivity (NPP)flux (`"Pg C year^-1"`) +//' @param biome Name of biome (leave empty for global) //' @export // [[Rcpp::export]] String NPP_FLUX0(String biome = "") { - if (biome == "") return D_NPP_FLUX0; + if (biome == "") + return D_NPP_FLUX0; String out = biome; - out += "."; + out += BIOME_SPLIT_CHAR(); out += D_NPP_FLUX0; return out; } @@ -1269,119 +1416,75 @@ String NPP_FLUX0(String biome = "") { //' @rdname so2 //' @export // [[Rcpp::export]] -String NATURAL_SO2() { -return D_NATURAL_SO2; -} - -//' @rdname so2 -//' @export -// [[Rcpp::export]] -String Y2000_SO2() { -return D_2000_SO2; -} - -//' @rdname so2 -//' @export -// [[Rcpp::export]] -String EMISSIONS_SO2() { -return D_EMISSIONS_SO2; -} +String EMISSIONS_SO2() { return D_EMISSIONS_SO2; } //' @rdname so2 //' @export // [[Rcpp::export]] -String VOLCANIC_SO2() { -return D_VOLCANIC_SO2; -} +String VOLCANIC_SO2() { return D_VOLCANIC_SO2; } /* Temperature component */ //' @describeIn parameters Equilibrium Climate Sensitivity (\code{"degC"}) //' @export // [[Rcpp::export]] -String ECS() { -return D_ECS; -} +String ECS() { return D_ECS; } //' @describeIn parameters Aerosol forcing scaling factor (\code{"(unitless)"}) //' @export // [[Rcpp::export]] -String AERO_SCALE() { - return D_AERO_SCALE; -} +String AERO_SCALE() { return D_AERO_SCALE; } //' @describeIn parameters Volcanic forcing scaling factor (\code{"(unitless)"}) //' @export // [[Rcpp::export]] -String VOLCANIC_SCALE() { -return D_VOLCANIC_SCALE; -} +String VOLCANIC_SCALE() { return D_VOLCANIC_SCALE; } -//' @describeIn temperature Global mean temperature +//' @describeIn temperature Global mean air temperature anomaly //' @export // [[Rcpp::export]] -String GLOBAL_TEMP() { -return D_GLOBAL_TEMP; -} +String GLOBAL_TAS() { return D_GLOBAL_TAS; } -//' @describeIn temperature Equilibrium global temperature +//' @describeIn temperature Average sea surface temperature anomaly //' @export // [[Rcpp::export]] -String GLOBAL_TEMPEQ() { -return D_GLOBAL_TEMPEQ; -} +String SST() { return D_SST; } -//' @describeIn temperature Average ocean surface temperature anomaly +//' @describeIn temperature Average air temperature anomaly over the ocean //' @export // [[Rcpp::export]] -String OCEAN_SURFACE_TEMP() { -return D_OCEAN_SURFACE_TEMP; -} +String OCEAN_TAS() { return D_OCEAN_TAS; } -//' @describeIn temperature Average ocean air temperature anomaly +//' @describeIn temperature Average air temperature anomaly over land, land surface temperature and air temperature over land are assumed to be equivalent. //' @export // [[Rcpp::export]] -String OCEAN_AIR_TEMP() { -return D_OCEAN_AIR_TEMP; -} +String LAND_TAS() { return D_LAND_TAS; } -//' @describeIn temperature Average land temperature anomaly +//' @describeIn parameters Land-Ocean Warming Ratio (\code{"(unitless)"}), by default set to 0 meaning that the land ocean warming ratio is an emergent property of Hector's temperature component otherwise the user defined land ocean warming ratio will be used. //' @export // [[Rcpp::export]] -String LAND_AIR_TEMP() { -return D_LAND_AIR_TEMP; -} +String LO_WARMING_RATIO() { return D_LO_WARMING_RATIO; } +//' @describeIn constraints Constrain global mean temperature (\code{"(degC)"}) +//' @export +// [[Rcpp::export]] +String TAS_CONSTRAIN() { return D_TAS_CONSTRAIN; } //' @describeIn parameters Ocean heat diffusivity (\code{"cm2/s"}) //' @export // [[Rcpp::export]] -String DIFFUSIVITY() { -return D_DIFFUSIVITY; -} +String DIFFUSIVITY() { return D_DIFFUSIVITY; } //' @describeIn temperature Heat flux into the mixed layer of the ocean //' @export // [[Rcpp::export]] -String FLUX_MIXED() { -return D_FLUX_MIXED; -} +String FLUX_MIXED() { return D_FLUX_MIXED; } //' @describeIn temperature Heat flux into the interior layer of the ocean //' @export // [[Rcpp::export]] -String FLUX_INTERIOR() { -return D_FLUX_INTERIOR; -} +String FLUX_INTERIOR() { return D_FLUX_INTERIOR; } //' @describeIn temperature Total heat flux into the ocean //' @export // [[Rcpp::export]] -String HEAT_FLUX() { -return D_HEAT_FLUX; -} - -//' @describeIn msgtype Character used to separate biome from variable name -// [[Rcpp::export]] -String BIOME_SPLIT_CHAR() { -return SNBOX_PARSECHAR; -} +String HEAT_FLUX() { return D_HEAT_FLUX; } diff --git a/src/rcpp_hector.cpp b/src/rcpp_hector.cpp index 0a92960b5..13e580010 100644 --- a/src/rcpp_hector.cpp +++ b/src/rcpp_hector.cpp @@ -10,189 +10,194 @@ using namespace Rcpp; // [[Rcpp::plugins("cpp11")]] - /* Non exported helper functions - * These are intended for use by the C++ wrappers and are not callable from R directly. + * These are intended for use by the C++ wrappers and are not callable from R + * directly. */ // Get a pointer to a core from the R handle. -Hector::Core *gethcore(Environment core) -{ - int idx = core["coreidx"]; - Hector::Core *hcore = Hector::Core::getcore(idx); - if(!hcore) { - Rcpp::stop("Invalid or inactive hcore object"); - } - return hcore; +Hector::Core *gethcore(Environment core) { + int idx = core["coreidx"]; + Hector::Core *hcore = Hector::Core::getcore(idx); + if (!hcore) { + Rcpp::stop("Invalid or inactive hcore object"); + } + return hcore; } // This is the C++ implementation of the core constructor. It should only ever // be called from the `newcore` wrapper function. // [[Rcpp::export]] -Environment newcore_impl(String inifile, int loglevel, bool suppresslogging, String name) -{ - try { - // Check that the configuration file exists. The easiest way to do - // this is to try to open it. - std::ifstream ifs(inifile.get_cstring()); // we'll use this to test if the file exists - if(ifs) { - ifs.close(); // don't actually want to read from it - } - else { - std::string fn = inifile; - Rcpp::stop(std::string("Input file ") + fn + std::string(" does not exist.")); - } - - // Create and initialize the core. - int coreidx = Hector::Core::mkcore(!suppresslogging, - (Hector::Logger::LogLevel)loglevel, - false); - - Hector::Core *hcore = Hector::Core::getcore(coreidx); - hcore->init(); - - try { - Hector::INIToCoreReader coreParser(hcore); - coreParser.parse(inifile); - } - catch(h_exception e) { - std::stringstream msg; - msg << "While parsing hector input file: " << e; - Rcpp::stop(msg.str()); - } - - // Run the last bit of setup - hcore->prepareToRun(); - - // Construct the object we are going to return to R - double strtdate = hcore->getStartDate(); - double enddate = hcore->getEndDate(); - - Environment rv(new_env()); - rv["coreidx"] = coreidx; - rv["strtdate"] = strtdate; - rv["enddate"] = enddate; - rv["inifile"] = inifile; - rv["name"] = name; - rv["clean"] = true; - rv["reset_date"] = 0; - - return rv; +Environment newcore_impl(String inifile, int loglevel, bool suppresslogging, + String name) { + try { + // Check that the configuration file exists. The easiest way to do + // this is to try to open it. + std::ifstream ifs( + inifile.get_cstring()); // we'll use this to test if the file exists + std::string fn = inifile; + if (ifs) { + ifs.close(); // don't actually want to read from it + } else { + Rcpp::stop(std::string("Input file ") + fn + + std::string(" does not exist.")); } - catch(h_exception e) { - std::stringstream msg; - msg << "During hector core setup: " << e; - Rcpp::stop(msg.str()); + + // Create and initialize the core. + int coreidx = Hector::Core::mkcore( + !suppresslogging, (Hector::Logger::LogLevel)loglevel, false); + + Hector::Core *hcore = Hector::Core::getcore(coreidx); + hcore->init(); + + try { + Hector::INIToCoreReader coreParser(hcore); + coreParser.parse(inifile); + } catch (h_exception e) { + std::stringstream msg; + msg << "While parsing hector input file " << fn << ": " << e; + Rcpp::stop(msg.str()); } -} + // Run the last bit of setup + hcore->prepareToRun(); + + // Construct the object we are going to return to R + double strtdate = hcore->getStartDate(); + double enddate = hcore->getEndDate(); + double trackdate = hcore->getTrackingDate(); + + Environment rv(new_env()); + rv["coreidx"] = coreidx; + rv["strtdate"] = strtdate; + rv["enddate"] = enddate; + rv["trackdate"] = trackdate; + rv["inifile"] = inifile; + rv["name"] = name; + rv["clean"] = true; + rv["reset_date"] = 0; + + return rv; + } catch (h_exception e) { + std::stringstream msg; + msg << "During hector core setup: " << e; + Rcpp::stop(msg.str()); + } +} -//' Shutdown a hector instance +//' Shut down a hector instance //' -//' Shutting down an instance will free the instance itself and all of the objects it created. Any attempted -//' operation on the instance after that will raise an error. +//' Shutting down an instance will free the instance itself and all of the +//' objects it created. Any attempted operation on the instance after that will +//' raise an error. //' //' @section Caution: -//' This function should be called as \code{mycore <- shutdown(mycore)} so that the change -//' from active to inactive will be recorded in the caller. +//' This function should be called as \code{mycore <- shutdown(mycore)} so that +//' the change from active to inactive will be recorded in the caller. //' //' @param core Handle to a Hector instance //' @return The Hector instance handle //' @export //' @family main user interface functions // [[Rcpp::export]] -Environment shutdown(Environment core) -{ - int idx = core["coreidx"]; - Hector::Core::delcore(idx); +Environment shutdown(Environment core) { + int idx = core["coreidx"]; + Hector::Core::delcore(idx); - return core; + return core; } - //' Reset a Hector instance to an earlier date //' -//' Resetting the model returns it to its state at a previous time. If the requested time -//' is before the model start date (any value will do; conventionally zero is used), then -//' the spinup will be rerun, and the model will be -//' left ready to run at the start date. (By contrast, resetting \emph{to} the start -//' date leaves the model ready to run at the start date, but without having rerun the -//' spinup.) +//' Resetting the model returns it to its state at a previous time. If the +//' requested time is before the model start date, then the spinup will be +//' rerun, and the model will be left ready to run at the start date. (By +//' contrast, resetting \emph{to} the start date leaves the model ready to run +//' at the start date, but without having rerun the spinup.) //' //' @param core Handle for the Hector instance that is to be reset. -//' @param date Date to reset to. The default is to reset to the model start date with -//' a rerun of the spinup. +//' @param date Date to reset to. The default is to reset to the model start +//' date with a rerun of the spinup. //' @family main user interface functions //' @export // [[Rcpp::export]] -Environment reset(Environment core, double date=0) -{ - Hector::Core *hcore = gethcore(core); - try { - hcore->reset(date); - } - catch(h_exception e) { - std::stringstream msg; - msg << "Error resetting to date= " << date - << " : " << e; - Rcpp::stop(msg.str()); - } - - double rd = core["reset_date"]; - if(date <= rd) - core["clean"] = true; - - return core; +Environment reset(Environment core, double date = 0) { + Hector::Core *hcore = gethcore(core); + try { + hcore->reset(date); + } catch (h_exception e) { + std::stringstream msg; + msg << "Error resetting to date= " << date << " : " << e; + Rcpp::stop(msg.str()); + } + + double rd = core["reset_date"]; + if (date <= rd) + core["clean"] = true; + + return core; } - //' Run the Hector climate model //' -//' Run Hector up through the specified time. This function does not return the results -//' of the run. To get results, run \code{fetch}. +//' Run Hector up through the specified time. This function does not return the +//' results of the run. To get results, run \code{fetch}. //' //' @param core Handle to the Hector instance that is to be run. -//' @param runtodate Date to run to. The default is to run to the end date configured -//' in the input file used to initialize the core. +//' @param runtodate Date to run to. The default is to run to the end date +//' configured in the input file used to initialize the core. //' @return The Hector instance handle //' @export //' @family main user interface functions // [[Rcpp::export]] -Environment run(Environment core, double runtodate=-1.0) -{ - if(!core["clean"]) - reset(core, core["reset_date"]); - - Hector::Core *hcore = gethcore(core); - if(runtodate > 0 && runtodate < hcore->getCurrentDate()) { - std::stringstream msg; - msg << "Requested run date " << runtodate << " is prior to the current date of " - << hcore->getCurrentDate() << ". Run reset() to reset to an earlier date."; - Rcpp::stop(msg.str()); - } - - try { - hcore->run(runtodate); - } - catch(h_exception e) { - std::stringstream msg; - msg << "Error while running hector: " << e; - Rcpp::stop(msg.str()); - } - - return core; +Environment run(Environment core, double runtodate = -1.0) { + if (!core["clean"]) { + int resetDate = core["reset_date"]; + Function f("message"); + + std::string msg = "Auto-resetting core to " + std::to_string(resetDate); + f(msg); + reset(core, core["reset_date"]); + } + + Hector::Core *hcore = gethcore(core); + if (runtodate > 0 && runtodate < hcore->getCurrentDate()) { + std::stringstream msg; + msg << "Requested run date " << runtodate + << " is prior to the current date of " << hcore->getCurrentDate() + << ". Run reset() to reset to an earlier date."; + Rcpp::stop(msg.str()); + } + + try { + hcore->run(runtodate); + } catch (h_exception e) { + std::stringstream msg; + msg << "Error while running hector: " << e; + Rcpp::stop(msg.str()); + } + + return core; } - //' \strong{getdate}: Get the current date for a Hector instance //' //' @rdname hectorutil //' @export // [[Rcpp::export]] -double getdate(Environment core) -{ - Hector::Core *hcore = gethcore(core); - return hcore->getCurrentDate(); +double getdate(Environment core) { + Hector::Core *hcore = gethcore(core); + return hcore->getCurrentDate(); +} + +//' Retrieve the tracking data for a Hector instance +//' +//' @param core Handle to the Hector instance. +//' @export +// [[Rcpp::export]] +std::string get_tracking_data_impl(Environment core) { + Hector::Core *hcore = gethcore(core); + return hcore->getTrackingData(); } //' Retrieve the current list of biomes for a Hector instance @@ -201,11 +206,10 @@ double getdate(Environment core) //' the biome list. //' @export // [[Rcpp::export]] -std::vector get_biome_list(Environment core) -{ - Hector::Core *hcore = gethcore(core); - std::vector biome_list = hcore->getBiomeList(); - return biome_list; +std::vector get_biome_list(Environment core) { + Hector::Core *hcore = gethcore(core); + std::vector biome_list = hcore->getBiomeList(); + return biome_list; } //' Create a biome @@ -213,11 +217,10 @@ std::vector get_biome_list(Environment core) //' @param core Handle to the Hector instance that is to be run. //' @param biome (character) Name of new biome // [[Rcpp::export]] -Environment create_biome_impl(Environment core, std::string biome) -{ - Hector::Core *hcore = gethcore(core); - hcore->createBiome(biome); - return core; +Environment create_biome_impl(Environment core, std::string biome) { + Hector::Core *hcore = gethcore(core); + hcore->createBiome(biome); + return core; } //' Delete a biome @@ -225,11 +228,10 @@ Environment create_biome_impl(Environment core, std::string biome) //' @param core Handle to the Hector instance that is to be run. //' @param biome (character) Name of biome to delete // [[Rcpp::export]] -Environment delete_biome_impl(Environment core, std::string biome) -{ - Hector::Core *hcore = gethcore(core); - hcore->deleteBiome(biome); - return core; +Environment delete_biome_impl(Environment core, std::string biome) { + Hector::Core *hcore = gethcore(core); + hcore->deleteBiome(biome); + return core; } //' Rename an existing biome @@ -243,131 +245,121 @@ Environment delete_biome_impl(Environment core, std::string biome) //' @param newname (character) Name of new biome //' @export // [[Rcpp::export]] -Environment rename_biome(Environment core, std::string oldname, std::string newname) -{ - Hector::Core *hcore = gethcore(core); - hcore->renameBiome(oldname, newname); - return core; +Environment rename_biome(Environment core, std::string oldname, + std::string newname) { + Hector::Core *hcore = gethcore(core); + hcore->renameBiome(oldname, newname); + return core; } - //' Send a message to a Hector instance //' //' Messages are the mechanism used to get data from Hector model components and -//' to set values within components. -//' -//' A message comprises a type (e.g. GETDATA to retrieve data from a component, or SETDATA to -//' set data in a component), a capability, which identifies the information to be operated -//' on (e.g. Atmospheric CO2 concentration, or global total radiative forcing), and an optional +//' to set values within components. A message comprises a type (e.g. GETDATA +//' to retrieve data from a component, or SETDATA to set data in a component), +//' a capability, which identifies the information to be operated on (e.g. +//' Atmospheric CO2 concentration, or global total radiative forcing), and an optional //' structure of extra data (comprising a date and a numerical value with units). -//' -//' The arguments to this function are organized in a slightly more R-friendly way. The message -//' type and capability are each passed as a single string. The date portion of the extra -//' data is passed as a numeric vector (one message will be generated for each date). The value -//' portion of the extra data is a numeric vector with a length of either 1 or the same length -//' as the date vector. The units portion is a single string (we don't support sending a vector -//' of values with heterogeneous units in a single call. -//' -//' Either the date or the value (or both) may be NA. The date should be NA in cases where the -//' parameter being referenced doesn't change with time. The value should be NA in cases where -//' the optional data will be ignored. +//' The arguments to this function are organized in a slightly more R-friendly +//' way. The message type and capability are each passed as a single string. +//' The date portion of the extra data is passed as a numeric vector (one +//' message will be generated for each date). The value portion of the extra +//' data is a numeric vector with a length of either 1 or the same length as the +//' date vector.The units portion is a single string (we don't support sending a +//' vector of values with heterogeneous units in a single call. Either the date +//' or the value (or both) may be NA. The date should be NA in cases where the +//' parameter being referenced doesn't change with time. The value should be NA in cases +//' where the optional data will be ignored. //' //' @param core a Hector instance //' @param msgtype (String) type of message. Usually either GETDATA or SETDATA -//' @param capability (String) capability being targeted by the message. The core will use -//' this information to look up the component to route the message to. -//' @param date (NumericVector) Date for which to set/get the variable. Use NA if there is -//' no applicable date. -//' @param value (NumericVector) Numeric portion of the optional data (in case of setting -//' a value this will be the value to set). The length of this vector should match that of -//' the time, or it should be length 1 (in which case it will be recycled). +//' @param capability (String) capability being targeted by the message +//' @param date (NumericVector or NA) Date for which to set/get the variable +//' @param value (NumericVector) Numeric value of the optional data //' @param unit (String) Unit for the value vector. //' @export // [[Rcpp::export]] -DataFrame sendmessage(Environment core, String msgtype, String capability, NumericVector date, - NumericVector value, String unit) -{ - Hector::Core *hcore = gethcore(core); - - if(value.size() != date.size() && value.size() != 1) { - Rcpp::stop("Value must have length 1 or same length as date."); +DataFrame sendmessage(Environment core, String msgtype, String capability, + NumericVector date, NumericVector value, String unit) { + Hector::Core *hcore = gethcore(core); + + if (value.size() != date.size() && value.size() != 1) { + Rcpp::stop("Value must have length 1 or same length as date."); + } + + int N = date.size(); + std::string msgstr = msgtype; + std::string capstr = capability; + + // We need to convert the unit string into an enumerated type + std::string unitstr = unit; + Hector::unit_types utype; + try { + utype = Hector::unitval::parseUnitsName(unitstr); + } catch (h_exception e) { + // Units need to be specified in setData and incorrect pr missing units will + // throw an error + if (msgstr == M_SETDATA) { + std::stringstream emsg; + emsg << "invalid unit type '" << unitstr << "' in input " << capstr; + Rcpp::stop(emsg.str()); + } else { // Units do not need to be specified in getData, setting to + // undefined + utype = Hector::U_UNDEFINED; } - - int N = date.size(); - std::string msgstr = msgtype; - std::string capstr = capability; - - // We need to convert the unit string into an enumerated type - std::string unitstr = unit; - Hector::unit_types utype; - try { - utype = Hector::unitval::parseUnitsName(unitstr); + } + + NumericVector valueout(N); + StringVector unitsout(N); + + try { + for (size_t i = 0; i < N; ++i) { + // Construct the inputs to sendmessage + int ival; // location of the value we're looking for + if (value.size() == 1) + ival = 0; + else + ival = i; + + double tempval; + if (NumericVector::is_na(value[ival])) + tempval = 0; + else + tempval = value[ival]; + + double tempdate; + if (NumericVector::is_na(date[i])) + tempdate = Hector::Core::undefinedIndex(); + else + tempdate = date[i]; + + Hector::message_data info(tempdate, Hector::unitval(tempval, utype)); + + Hector::unitval rtn = hcore->sendMessage(msgstr, capstr, info); + + unitsout[i] = rtn.unitsName(); + valueout[i] = rtn.value(rtn.units()); } - catch(h_exception e) { - // Units need to be specified in setData and incorrect pr missing units will throw an error - if (msgstr==M_SETDATA){ - std::stringstream emsg; - emsg << "invalid unit type '" << unitstr << "' in input " << capstr; - Rcpp::stop(emsg.str()); - } else { // Units do not need to be specified in getData, setting to undefined - utype = Hector::U_UNDEFINED; - } - } - - NumericVector valueout(N); - StringVector unitsout(N); - - try { - for(size_t i=0; isendMessage(msgstr, capstr, info); - - unitsout[i] = rtn.unitsName(); - valueout[i] = rtn.value(rtn.units()); - } - } - catch(h_exception e) { - std::stringstream emsg; - emsg << "sendmessage: " << e; - Rcpp::stop(emsg.str()); - } - - // Assemble a data frame with the results: date, var, value, units - DataFrame result = - DataFrame::create(Named("year")=date, Named("variable")=capability, - Named("value")=valueout, - Named("units")=unitsout, - Named("stringsAsFactors")=false); - - return result; + } catch (h_exception e) { + std::stringstream emsg; + emsg << "sendmessage: " << e; + Rcpp::stop(emsg.str()); + } + + // Assemble a data frame with the results: date, var, value, units + DataFrame result = + DataFrame::create(Named("year") = date, Named("variable") = capability, + Named("value") = valueout, Named("units") = unitsout, + Named("stringsAsFactors") = false); + + return result; } // helper for isactive() // [[Rcpp::export]] -bool chk_core_valid(Environment core) -{ - int idx = core["coreidx"]; - Hector::Core *hcore = Hector::Core::getcore(idx); +bool chk_core_valid(Environment core) { + int idx = core["coreidx"]; + Hector::Core *hcore = Hector::Core::getcore(idx); - return hcore != NULL; + return hcore != NULL; } diff --git a/src/simpleNbox-runtime.cpp b/src/simpleNbox-runtime.cpp new file mode 100644 index 000000000..7878a281c --- /dev/null +++ b/src/simpleNbox-runtime.cpp @@ -0,0 +1,1065 @@ +/* Hector -- A Simple Climate Model + Copyright (C) 2022 Battelle Memorial Institute + + Please see the accompanying file LICENSE.md for additional licensing + information. +*/ +/* + * simpleNbox-runtime.cpp + * The old simpleNbox.cpp file was getting very long; this file now holds the + * functions focusing on the model runtime: prepareToRun() and run(), + * solver-related funcs such as calcDerivs() and StashCValues(), etc. hector + * + * Created by Ben on 2020-02-06. + * + */ + +// some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: string.hpp still generates two warnings +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Weverything" +#include "boost/algorithm/string.hpp" +#pragma clang diagnostic pop + +#include "avisitor.hpp" +#include "dependency_finder.hpp" +#include "simpleNbox.hpp" + +#include + +namespace Hector { + +using namespace boost; + +//------------------------------------------------------------------------------ +/*! \brief Log pool states + * \param t date + * \param msg message + */ +void SimpleNbox::log_pools(const double t, const string msg) { + // Log pool states + H_LOG(logger, Logger::DEBUG) + << "---- pool states at t=" << t << " " << msg << " ----" << std::endl; + H_LOG(logger, Logger::DEBUG) << "Atmos = " << atmos_c << std::endl; + H_LOG(logger, Logger::DEBUG) + << "Biome \tveg_c \t\tdetritus_c \tsoil_c \tpermafrost_c " + "\tthawed_permafrost_c \tstatic_c" + << std::endl; + for (auto biome : biome_list) { + H_LOG(logger, Logger::DEBUG) + << biome << "\t" << veg_c[biome].value(U_PGC) << "\t\t" + << detritus_c[biome].value(U_PGC) << "\t\t" + << soil_c[biome].value(U_PGC) << "\t\t" + << permafrost_c[biome].value(U_PGC) << "\t\t" + << thawed_permafrost_c[biome].value(U_PGC) << "\t\t" << std::endl; + } + H_LOG(logger, Logger::DEBUG) << "Earth = " << earth_c << std::endl; +} + +//------------------------------------------------------------------------------ +// documentation is inherited +void SimpleNbox::prepareToRun() { + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + + // If any 'global' settings, there shouldn't also be regional + if ((has_biome(SNBOX_DEFAULT_BIOME)) & (biome_list.size() > 1)) { + H_THROW("Cannot have both global and biome-specific data! " + "Did you forget to rename the default ('global') biome?") + } + + // Ensure consistency between biome_list and all pools and fluxes + H_ASSERT(biome_list.size() == veg_c.size(), + "veg_c and biome_list data not same size"); + H_ASSERT(biome_list.size() == detritus_c.size(), + "detritus_c and biome_list not same size"); + H_ASSERT(biome_list.size() == soil_c.size(), + "soil_c and biome_list not same size"); + H_ASSERT(biome_list.size() == permafrost_c.size(), + "permafrost_c and biome_list not same size"); + H_ASSERT(biome_list.size() == npp_flux0.size(), + "npp_flux0 and biome_list not same size"); + + // Set end-of-spinup vegc (in case no spinup requested) + end_of_spinup_vegc = sum_map(veg_c); + + for (auto biome : biome_list) { + H_LOG(logger, Logger::DEBUG) << "Checking that data for biome '" << biome + << "' is complete" << std::endl; + // Carbon pools + H_ASSERT(detritus_c.count(biome), "no detritus_c data for " + biome); + H_ASSERT(soil_c.count(biome), "no soil_c data for " + biome); + H_ASSERT(permafrost_c.count(biome), "no biome data for permafrost_c"); + H_ASSERT(npp_flux0.count(biome), "no npp_flux0 data for " + biome); + // Beta and Q10 + H_ASSERT(beta.count(biome), "No beta entry for " + biome); + H_ASSERT(beta.at(biome) >= 0.0, "beta < 0"); + H_ASSERT(q10_rh.count(biome), "No Q10 entry for " + biome); + H_ASSERT(q10_rh.at(biome) > 0.0, "q10_rh <= 0.0"); + // Partitioning + H_ASSERT(f_nppv.count(biome), "No f_nppv entry for " + biome); + H_ASSERT(f_nppv.at(biome) >= 0.0, "f_nppv <0"); + H_ASSERT(f_nppd.count(biome), "No f_nppd entry for " + biome); + H_ASSERT(f_nppd.at(biome) >= 0.0, "f_nppd <0"); + H_ASSERT(f_nppv.count(biome), "No f_nppv entry for " + biome); + H_ASSERT(f_nppv.at(biome) + f_nppd.at(biome) <= 1.0, "f_nppv + f_nppd >1"); + H_ASSERT(f_litterd.count(biome), "No f_litterd entry for " + biome); + H_ASSERT(f_litterd.at(biome) >= 0.0 && f_litterd.at(biome) <= 1.0, + "f_litterd <0 or >1"); + // Warming factor + if (!warmingfactor.count(biome)) { + H_LOG(logger, Logger::NOTICE) + << "No warmingfactor set for biome '" << biome << "'. " + << "Setting to default value = 1.0" << std::endl; + warmingfactor[biome] = 1.0; + } + + if (!rh_ch4_frac.count(biome)) { + H_LOG(logger, Logger::NOTICE) + << "No RH CH4 fraction set for biome '" << biome << "'. " + << "Setting to default value = 0.023" << std::endl; + rh_ch4_frac[biome] = 0.023; + } + + if (!pf_mu.count(biome)) { + H_LOG(logger, Logger::NOTICE) + << "No permafrost mu parameter set for biome '" << biome << "'. " + << "Setting to default value = 1.67" << std::endl; + pf_mu[biome] = 1.67; + } + + if (!pf_sigma.count(biome)) { + H_LOG(logger, Logger::NOTICE) + << "No permafrost sigma parameter set for biome '" << biome << "'. " + << "Setting to default value = 0.986" << std::endl; + pf_sigma[biome] = 0.986; + } + + if (!fpf_static.count(biome)) { + H_LOG(logger, Logger::NOTICE) + << "No thawed permafrost static fraction for biome '" << biome + << "'. " + << "Setting to default value = 0.74" << std::endl; + fpf_static[biome] = 0.74; + } + + // Thawed permafrost C starts at zero + thawed_permafrost_c[biome].set(0.0, U_PGC, permafrost_c[biome].tracking, + D_THAWEDPC); + } + // Lognormal distribution for current biome's mu and sigma + // We precompute these (one for each biome) since they don't change over time + // This is equation 10 in Woodard et al. 2021 + // https://doi.org/10.5194/gmd-14-4751-2021 + for (auto biome : biome_list) { + boost::math::lognormal s(pf_mu.at(biome), pf_sigma.at(biome)); + pf_s[biome] = s; + } + + // A flag that lets run() know the very first time it's called + has_been_run_before = false; + + // If no albedo data, assume constant + if (!Falbedo.size()) { + unitval alb(-0.2, U_W_M2); // default is MAGICC value + Falbedo.set(core->getStartDate(), alb); + Falbedo.set(core->getEndDate(), alb); + } + + // Set atmospheric C based on the requested preindustrial [CO2] + atmos_c.set(C0.value(U_PPMV_CO2) * PPMVCO2_TO_PGC, U_PGC, atmos_c.tracking, + atmos_c.name); + atmos_c_ts.set(core->getStartDate(), atmos_c); + + // Constraint logging + if (CO2_constrain.size()) { + Logger &glog = core->getGlobalLogger(); + H_LOG(glog, Logger::WARNING) + << "Atmospheric CO2 will be constrained to user-supplied values!" + << std::endl; + } + if (NBP_constrain.size()) { + Logger &glog = core->getGlobalLogger(); + H_LOG(glog, Logger::WARNING) << "NBP (land-atmosphere C exchange) will be " + "constrained to user-supplied values!" + << std::endl; + } + + // Save a pointer to the ocean model in use + omodel = + dynamic_cast(core->getComponentByCapability(D_OCEAN_C)); + // TODO: this is a hack, because currently we can't pass fluxpools around via + // sendMessage + omodel->set_atmosphere_sources( + atmos_c); // inform ocean model what our atmosphere looks like +} + +//------------------------------------------------------------------------------ +/*! \brief Run code, called from core + * \param[in] runToDate Date to which to run to, double + * + * This run method doesn't do much, because it's the carbon-cycle-solver + * run that does all the work. + */ +void SimpleNbox::run(const double runToDate) { + in_spinup = core->inSpinup(); + + if (!has_been_run_before) { + // Remember starting value of veg_c; used later in NPP adjustment for LUC + end_of_spinup_vegc = sum_map(veg_c); + has_been_run_before = true; + } + + // If we've hit the tracking start year, enagage! + const double tdate = core->getTrackingDate(); + if (!in_spinup && runToDate == tdate) { + H_LOG(logger, Logger::NOTICE) << "Tracking start" << std::endl; + start_tracking(); + } + Tland_record.set(runToDate, core->sendMessage(M_GETDATA, D_LAND_TAS)); + + // TODO: this is a hack, because currently we can't pass fluxpools around via + // sendMessage + omodel->set_atmosphere_sources( + atmos_c); // inform ocean model what our atmosphere looks like +} + +//------------------------------------------------------------------------------ +/*! \brief Spinup run code, called from core + * \param[in] step Spinup step number + * + * This run_spinup method doesn't do much, because it's the carbon-cycle-solver + * run that does all the work. + */ +bool SimpleNbox::run_spinup(const int step) { + in_spinup = true; + + return true; // solver will really be the one signalling +} + +//------------------------------------------------------------------------------ +/*! \brief transfer model pools to flat array (for ODE solver) + * \param[in] t time, double, the date from which ODE solver is starting + * \param[in] c flat array of carbon pools (no units) + */ +void SimpleNbox::getCValues(double t, double c[]) { + c[SNBOX_ATMOS] = atmos_c.value(U_PGC); + c[SNBOX_VEG] = sum_map(veg_c).value(U_PGC); + c[SNBOX_DET] = sum_map(detritus_c).value(U_PGC); + c[SNBOX_SOIL] = sum_map(soil_c).value(U_PGC); + c[SNBOX_PERMAFROST] = sum_map(permafrost_c).value(U_PGC); + c[SNBOX_THAWEDP] = sum_map(thawed_permafrost_c).value(U_PGC); + omodel->getCValues(t, c); + c[SNBOX_EARTH] = earth_c.value(U_PGC); + + ODEstartdate = t; +} + +//------------------------------------------------------------------------------ +/*! \brief Transfer new model pools from ODE solver array back + * to model pools \param[in] t Time, double, the ending date of the + * solver \param[in] c Flat array of carbon pools (no units) \exception + * h_exception If ocean model diverges from our pool tracking all ocean C + * \exception h_exception If mass is not conserved + * + * \details Transfer solver pools (no units) back to our pools (with units), + * and run a sanity check to make sure mass has been conserved. + */ +void SimpleNbox::stashCValues(double t, const double c[]) { + // Solver has gone from ODEstartdate to t + // Note this is NOT guaranteed to be a full year jump! So compute the fraction + // of the year we have advanced for use below + const double yf = (t - ODEstartdate); + H_ASSERT(yf >= 0 && yf <= 1, "yearfraction out of bounds"); + + H_LOG(logger, Logger::DEBUG) + << "Stashing at t=" << t << ", solver pools at " << t << ": " + << " atm = " << c[SNBOX_ATMOS] << " veg = " << c[SNBOX_VEG] + << " det = " << c[SNBOX_DET] << " soil = " << c[SNBOX_SOIL] + << " permafrost = " << c[SNBOX_PERMAFROST] + << " thawed_p = " << c[SNBOX_THAWEDP] << " ocean = " << c[SNBOX_OCEAN] + << " earth = " << c[SNBOX_EARTH] << std::endl; + log_pools(t, "BEFORE update"); + + // IMPORTANT NOTE ABOUT YEAR FRACTION + // In general we keep fluxes as per year throughout stashCValues + // This changes only when we start to apportion NPP and RH to biomes + + // get the UNTRACKED earth emissions (ffi) and uptake (ccs) + fluxpool ffi_untracked = current_ffi_e; + fluxpool ccs_untracked = current_daccs_u; + // now construct the TRACKED versions + // because earth_c is tracked, ffi_flux and ccs_flux automatically + // become tracked as well + fluxpool ffi_flux = earth_c.flux_from_fluxpool(ffi_untracked); + fluxpool ccs_flux = atmos_c.flux_from_fluxpool(ccs_untracked); + + // current ocean fluxes + omodel->stashCValues(t, c); // tell ocean model to store new C values (and + // compute final surface fluxes) + // ...and now get those fluxes (and their source maps, if tracking) + fluxpool oa_flux = omodel->get_oaflux(); + fluxpool ao_flux = omodel->get_aoflux(); + + // Land-use change emissions and uptake + fluxpool luc_e_untracked = current_luc_e; + fluxpool luc_u_untracked = current_luc_u; + + // Calculate net primary production and heterotrophic respiration + fluxpool npp_total = sum_npp(); + fluxpool rh_total = sum_rh(); + + // Permafrost + const fluxpool permafrost_total = sum_map(permafrost_c); + const fluxpool thawedp_total = sum_map(thawed_permafrost_c); + + // Calculate NBP *before* any constraint adjustment + double alf = npp_total.value(U_PGC_YR) - rh_total.value(U_PGC_YR) - + luc_e_untracked.value(U_PGC_YR) + + luc_u_untracked.value(U_PGC_YR); + + // Note: we calculate total NPP and RH and *don't* adjust it if there's an NBP + // constraint, because it's used for weighting with the npp(biome) and + // rh(biome) calls below. So we want it to keep its original total for proper + // weighting + fluxpool npp_rh_total = npp_total + rh_total; // these are both positive + + // Pre-NBP constraint new terrestrial pool values + fluxpool newatmos(c[SNBOX_ATMOS], U_PGC); + fluxpool newveg(c[SNBOX_VEG], U_PGC); + fluxpool newdet(c[SNBOX_DET], U_PGC); + fluxpool newsoil(c[SNBOX_SOIL], U_PGC); + fluxpool newpermafrost(c[SNBOX_PERMAFROST], U_PGC); + // The solver can give very small negative values for thawed permafrost. + // If this happens, round to zero so as not to throw a fluxpool error + double solver_tpf = c[SNBOX_THAWEDP]; + if (abs(solver_tpf) < 1e-10) { + solver_tpf = 0.0; + } + fluxpool newthawedpf(solver_tpf, U_PGC); + + // If there an NBP constraint? If yes, at this point adjust npp_total, + // rh_total, and the newveg/newdet/newsoil/newthawedpf variables + double rh_nbp_constraint_adjust = 1.0; + const int rounded_t = round(t); + if (!core->inSpinup() && NBP_constrain.size() && + NBP_constrain.exists(rounded_t)) { + const unitval nbp_constrained = NBP_constrain.get(rounded_t); + const unitval diff = (nbp_constrained - unitval(alf, U_PGC_YR)); + + // Adjust fluxes equally + npp_total = npp_total + diff / 2.0; + rh_nbp_constraint_adjust = (rh_total - diff / 2.0) / rh_total; + rh_total = rh_total - diff / 2.0; + + // Adjust pools + // NOTE we only adjust for whatever year fraction we're currently stashing + unitval pool_diff = unitval(diff.value(U_PGC_YR), U_PGC) * yf; + const double total_land = + c[SNBOX_DET] + c[SNBOX_VEG] + c[SNBOX_SOIL] + c[SNBOX_THAWEDP]; + newdet = newdet + pool_diff * c[SNBOX_DET] / total_land; + newveg = newveg + pool_diff * c[SNBOX_VEG] / total_land; + newsoil = newsoil + pool_diff * c[SNBOX_SOIL] / total_land; + newthawedpf = newthawedpf + pool_diff * c[SNBOX_THAWEDP] / total_land; + + // We do NOT adjust the `newatmos` variable, because doing so can put the + // model into an atmos_C feedback; see + // https://github.com/JGCRI/hector/issues/659 Instead, follow the CO2 + // constraint behavior and transfer any difference to the deep ocean + H_LOG(logger, Logger::DEBUG) << "Sending NBP_constrain residual of " + << pool_diff << " to deep ocean" << std::endl; + core->sendMessage(M_DUMP_TO_DEEP_OCEAN, D_OCEAN_C, + message_data(-pool_diff)); + + // Re-calculate atmosphere-land flux (NBP) + alf = npp_total.value(U_PGC_YR) - rh_total.value(U_PGC_YR) - + luc_e_untracked.value(U_PGC_YR) + luc_u_untracked.value(U_PGC_YR); + H_LOG(logger, Logger::NOTICE) + << "** NBP constraint " << nbp_constrained + << " requested; final value was " << alf << " with final adjustment of " + << diff << std::endl; + } + + nbp.set(alf, U_PGC_YR); + nbp_ts.set(t, nbp); + + // Track (as a unitval) the cumulative vegetation-derived LUC flux + const double total = c[SNBOX_VEG] + c[SNBOX_DET] + c[SNBOX_SOIL]; + const double luc_e = luc_e_untracked.value(U_PGC_YR); + const double luc_u = luc_u_untracked.value(U_PGC_YR); + cum_luc_va = + cum_luc_va + unitval((luc_e - luc_u) * c[SNBOX_VEG] / total, U_PGC); + + // Apportion NPP and RH among the biomes + // This is done by NPP and RH; biomes with higher values get more of any C + // change + + for (auto biome : biome_list) { + // `wt` is the biome share of major C fluxes; used for apportionment below + const double wt = (npp(biome) + rh(biome)) / npp_rh_total; + // Permafrost weighting + const double wt_pf = + permafrost_total > 0 ? permafrost_c.at(biome) / permafrost_total : 0; + H_LOG(logger, Logger::DEBUG) << "Biome " << biome << " wt = " << wt + << "wt_pf = " << wt_pf << std::endl; + + // Calculate luc emissons + const double veg_frac = veg_c[biome].value(U_PGC) / total; + const double det_frac = detritus_c[biome].value(U_PGC) / total; + const double soil_frac = soil_c[biome].value(U_PGC) / total; + // Note we don't need to include 'wt' here because the veg_frac, det_frac, + // and soil_frac fractions calculated above handle that + fluxpool luc_fva_biome_flux = + yf * veg_c[biome].flux_from_fluxpool(luc_e_untracked * veg_frac); + fluxpool luc_fda_biome_flux = + yf * detritus_c[biome].flux_from_fluxpool(luc_e_untracked * det_frac); + fluxpool luc_fsa_biome_flux = + yf * soil_c[biome].flux_from_fluxpool(luc_e_untracked * soil_frac); + // Calculate luc uptake; it all goes to vegetation + fluxpool luc_fav_biome_flux = + yf * atmos_c.flux_from_fluxpool(luc_u_untracked); + + // Calculate NPP fluxes + fluxpool npp_biome = + npp_total * wt; // this is already adjusted for any NBP constraint + final_npp[biome] = npp_biome; + // Note that the following fluxes are weighted by 'yf' (year fraction) + fluxpool npp_fav_biome_flux = + yf * atmos_c.flux_from_fluxpool(npp_biome * f_nppv.at(biome)); + fluxpool npp_fad_biome_flux = + yf * atmos_c.flux_from_fluxpool(npp_biome * f_nppd.at(biome)); + fluxpool npp_fas_biome_flux = + yf * atmos_c.flux_from_fluxpool( + npp_biome * (1 - f_nppv.at(biome) - f_nppd.at(biome))); + + // Calculate and record the final RH values adjusted for any NBP constraint + fluxpool rh_fda_adj = rh_fda(biome) * rh_nbp_constraint_adjust; + fluxpool rh_fsa_adj = rh_fsa(biome) * rh_nbp_constraint_adjust; + fluxpool rh_ftpa_co2_adj = rh_ftpa_co2(biome) * rh_nbp_constraint_adjust; + fluxpool rh_ftpa_ch4_adj = rh_ftpa_ch4(biome) * rh_nbp_constraint_adjust; + + final_rh[biome] = + rh_fda_adj + rh_fsa_adj + rh_ftpa_co2_adj + rh_ftpa_ch4_adj; // per year + // Note that the following fluxes are weighted by 'yf' (year fraction) + fluxpool rh_fda_flux = + yf * detritus_c[biome].flux_from_fluxpool(rh_fda_adj); + fluxpool rh_fsa_flux = yf * soil_c[biome].flux_from_fluxpool(rh_fsa_adj); + fluxpool rh_fpa_co2_flux = + yf * thawed_permafrost_c[biome].flux_from_fluxpool(rh_ftpa_co2_adj); + fluxpool rh_fpa_ch4_flux = + yf * thawed_permafrost_c[biome].flux_from_fluxpool(rh_ftpa_ch4_adj); + RH_ch4[biome] = rh_fpa_ch4_flux; + + // Update soil, detritus, and atmosphere pools - luc fluxes + atmos_c = atmos_c + luc_fva_biome_flux - luc_fav_biome_flux + + luc_fda_biome_flux + luc_fsa_biome_flux; + veg_c[biome] = veg_c[biome] + luc_fav_biome_flux - luc_fva_biome_flux; + detritus_c[biome] - luc_fda_biome_flux; + soil_c[biome] = soil_c[biome] - luc_fsa_biome_flux; + + // Update soil, detritus, and atmosphere pools - npp fluxes + veg_c[biome] = veg_c[biome] + npp_fav_biome_flux; + detritus_c[biome] = detritus_c[biome] + npp_fad_biome_flux; + soil_c[biome] = soil_c[biome] + npp_fas_biome_flux; + atmos_c = + atmos_c - npp_fav_biome_flux - npp_fad_biome_flux - npp_fas_biome_flux; + + // Update soil, detritus, and atmosphere pools - rh fluxes + atmos_c = + atmos_c + rh_fda_flux + rh_fsa_flux + rh_fpa_co2_flux + rh_fpa_ch4_flux; + detritus_c[biome] = detritus_c[biome] - rh_fda_flux; + soil_c[biome] = soil_c[biome] - rh_fsa_flux; + thawed_permafrost_c[biome] = + thawed_permafrost_c[biome] - rh_fpa_co2_flux - rh_fpa_ch4_flux; + + // Permafrost thaw and refreeze + if (!in_spinup) { + // We pass in the annual fluxes here, because want annual thaw and + // refreeze + auto [x, y, z] = + compute_pf_thaw_refreeze(biome, rh_ftpa_co2_adj, rh_ftpa_ch4_adj); + // Construct fluxes... + fluxpool pf_thaw = + yf * permafrost_c[biome].flux_from_fluxpool(fluxpool(x, U_PGC_YR)); + fluxpool pf_refreeze_tp = + yf * + thawed_permafrost_c[biome].flux_from_fluxpool(fluxpool(y, U_PGC_YR)); + fluxpool pf_refreeze_soil = + yf * soil_c[biome].flux_from_fluxpool(fluxpool(z, U_PGC_YR)); + // ...and update pools + permafrost_c[biome] = + permafrost_c[biome] - pf_thaw + pf_refreeze_tp + pf_refreeze_soil; + thawed_permafrost_c[biome] = + thawed_permafrost_c[biome] + pf_thaw - pf_refreeze_tp; + soil_c[biome] = soil_c[biome] - pf_refreeze_soil; + } + + // Update litter from veg to soil and detritus + fluxpool litter_flux = veg_c[biome] * (0.035 * yf); + fluxpool litter_fvd_flux = litter_flux * f_litterd.at(biome); + fluxpool litter_fvs_flux = litter_flux * (1 - f_litterd.at(biome)); + detritus_c[biome] = detritus_c[biome] + litter_fvd_flux; + soil_c[biome] = soil_c[biome] + litter_fvs_flux; + veg_c[biome] = veg_c[biome] - litter_flux; + + // Update detritus and soil with detsoil flux + fluxpool detsoil_flux = detritus_c[biome] * (0.6 * yf); + soil_c[biome] = soil_c[biome] + detsoil_flux; + // Detritus is a small pool that turns over very quickly (i.e. has large + // fluxes in and out). As a result calculating it this way produces lots of + // instability. Luckily we have the solver's final value to adjust to, + // below; what we really want is to pass the carbon-tracking information + // around if it's being used. + detritus_c[biome] = detritus_c[biome] - detsoil_flux; + + // Adjust biome pools to final values from calcDerivs + veg_c[biome].adjust_pool_to_val(newveg.value(U_PGC) * wt, false); + detritus_c[biome].adjust_pool_to_val(newdet.value(U_PGC) * wt, false); + soil_c[biome].adjust_pool_to_val(newsoil.value(U_PGC) * wt, false); + permafrost_c[biome].adjust_pool_to_val(newpermafrost.value(U_PGC) * wt, + false); + thawed_permafrost_c[biome].adjust_pool_to_val(newthawedpf.value(U_PGC) * wt, + false); + } + + // Update earth_c and atmos_c with fossil fuel and ocean fluxes + earth_c = (earth_c - ffi_flux) + ccs_flux; + atmos_c = (atmos_c + ffi_flux) - ccs_flux; + atmos_c = atmos_c + oa_flux - ao_flux; + + // adjust non-biome pools to output from calcderivs (accounting for any NBP + // constraint) + earth_c.adjust_pool_to_val(c[SNBOX_EARTH], false); + atmos_c.adjust_pool_to_val(newatmos.value(U_PGC), false); + + log_pools(t, "AFTER update"); + + // Each time the model pools are updated, check that mass has been conserved + double sum = 0.0; + for (int i = 0; i < ncpool(); i++) { + sum += c[i]; + } + + const double diff = fabs(sum - masstot); + H_LOG(logger, Logger::DEBUG) << "masstot = " << masstot << ", sum = " << sum + << ", diff = " << diff << std::endl; + if (masstot > 0.0 && diff > MB_EPSILON) { + H_LOG(logger, Logger::SEVERE) + << "Mass not conserved in " << getComponentName() << std::endl; + H_LOG(logger, Logger::SEVERE) + << "masstot = " << masstot << ", sum = " << sum << ", diff = " << diff + << std::endl; + H_THROW("Mass not conserved! (See log.)"); + } + masstot = sum; + + // If user has supplied [CO2] values, adjust atmospheric C to match + if (core->inSpinup() || (CO2_constrain.size() && CO2_constrain.exists(t))) { + + fluxpool atmos_cpool_to_match; + fluxpool atmppmv; + if (core->inSpinup()) { + atmos_cpool_to_match.set(C0.value(U_PPMV_CO2) / PGC_TO_PPMVCO2, U_PGC); + atmppmv.set(C0.value(U_PPMV_CO2), U_PPMV_CO2); + } else { + H_LOG(logger, Logger::NOTICE) + << "** Constraining atmospheric CO2 to user-supplied value" + << std::endl; + atmos_cpool_to_match.set( + CO2_constrain.get(t).value(U_PPMV_CO2) / PGC_TO_PPMVCO2, U_PGC); + atmppmv.set(CO2_constrain.get(t).value(U_PPMV_CO2), U_PPMV_CO2); + } + + // Ugly: residual is a unitval, but calculated by subtracting two fluxpools, + // so extract value + Ca_residual.set(atmos_c.value(U_PGC) - atmos_cpool_to_match.value(U_PGC), + U_PGC); + + H_LOG(logger, Logger::DEBUG) << t << "- have " << CO2_conc() << " want " + << atmppmv.value(U_PPMV_CO2) << std::endl; + H_LOG(logger, Logger::DEBUG) + << t << "- have " << atmos_c << " want " << atmos_cpool_to_match + << "; residual = " << Ca_residual << std::endl; + + // Transfer C from atmosphere to deep ocean and update our C and [CO2] + // variables + H_LOG(logger, Logger::DEBUG) << "Sending residual of " << Ca_residual + << " to deep ocean" << std::endl; + core->sendMessage(M_DUMP_TO_DEEP_OCEAN, D_OCEAN_C, + message_data(Ca_residual)); + atmos_c = atmos_c - Ca_residual; + } else { + Ca_residual.set(0.0, U_PGC); + } + + log_pools(t, "FINAL"); + + // All good! t will be the start of the next timestep, so + ODEstartdate = t; +} + +// A series of small functions to calculate variables that will appear in the +// output stream + +double SimpleNbox::calc_co2fert(std::string biome, double time) const { + return 1 + beta.at(biome) * log(CO2_conc(time) / C0); +} + +//------------------------------------------------------------------------------ +/*! \brief Compute annual net primary production + * \returns current annual NPP + */ +fluxpool SimpleNbox::npp(std::string biome, double time) const { + fluxpool npp(npp_flux0.at(biome).value(U_PGC_YR), + U_PGC_YR); // 'at' throws exception if not found + if (time == Core::undefinedIndex()) { + npp = npp * co2fert.at(biome); // that's why used here instead of [] + } else { + npp = npp * calc_co2fert(biome, time); + } + + // LUC causes loss (or gains) to vegetation; account for this + npp = npp * npp_luc_adjust; + + return npp; +} + +//------------------------------------------------------------------------------ +/*! \brief Compute global net primary production + * \returns Annual NPP summed across all biomes + */ +fluxpool SimpleNbox::sum_npp(double time) const { + fluxpool total(0.0, U_PGC_YR); + for (auto biome : biome_list) { + total = total + npp(biome, time); + } + return total; +} + +//------------------------------------------------------------------------------ +/*! \brief Compute detritus component of annual heterotrophic respiration + * \returns current detritus component of annual heterotrophic respiration + */ +fluxpool SimpleNbox::rh_fda(std::string biome, double time) const { + unitval det_t; + double tfd; + if (time == Core::undefinedIndex()) { + det_t = detritus_c.at(biome); + tfd = tempfertd.at(biome); + } else { + det_t = detritus_c_tv.get(time).at(biome); + tfd = tempfertd_tv.get(time).at(biome); + } + fluxpool dflux(det_t.value(U_PGC) * 0.25, U_PGC_YR); + return dflux * tfd; +} + +//------------------------------------------------------------------------------ +/*! \brief Compute soil component of annual heterotrophic respiration + * \returns current soil component of annual heterotrophic respiration + */ +fluxpool SimpleNbox::rh_fsa(std::string biome, double time) const { + unitval soil_t; + double tfs; + if (time == Core::undefinedIndex()) { + soil_t = soil_c.at(biome); + tfs = tempferts.at(biome); + } else { + soil_t = soil_c_tv.get(time).at(biome); + tfs = tempferts_tv.get(time).at(biome); + } + fluxpool soilflux(soil_t.value(U_PGC) * 0.02, U_PGC_YR); + return soilflux * tfs; +} + +//------------------------------------------------------------------------------ +/*! \brief Compute CO2 flux from thawed permafrost + * \returns CO2 flux from thawed permafrost, Pg C/yr + */ +fluxpool SimpleNbox::rh_ftpa_co2(std::string biome, double time) const { + double tfs; + fluxpool tpfc; + if (time == Core::undefinedIndex()) { + tfs = tempferts.at(biome); + tpfc = thawed_permafrost_c.at(biome) * fpf_static.at(biome); + } else { + tfs = tempferts_tv.get(time).at(biome); + tpfc = thawed_permafrost_c_tv.get(time).at(biome) * fpf_static.at(biome); + } + fluxpool tpflux(tpfc.value(U_PGC) * 0.02, U_PGC_YR); + return tpflux * tfs * (1.0 - rh_ch4_frac.at(biome)); +} + +//------------------------------------------------------------------------------ +/*! \brief Compute CH4 flux from thawed permafrost + * \returns CH4 flux from thawed permafrost, Pg C/yr + */ +fluxpool SimpleNbox::rh_ftpa_ch4(std::string biome, double time) const { + // Calculate the CO2 flux, then calculate CH4 component of total + return rh_ftpa_co2(biome, time) / (1.0 - rh_ch4_frac.at(biome)) * + rh_ch4_frac.at(biome); +} + +//------------------------------------------------------------------------------ +/*! \brief Compute total annual heterotrophic respiration + * \returns current annual heterotrophic respiration + */ +fluxpool SimpleNbox::rh(std::string biome, double time) const { + // Heterotrophic respiration is the sum of CO2 fluxes from detritus, soil, and + // thawed permafrost + return rh_fda(biome, time) + rh_fsa(biome, time) + rh_ftpa_co2(biome, time); +} + +//------------------------------------------------------------------------------ +/*! \brief Compute global heterotrophic respiration + * \returns Annual RH summed across all biomes + */ +fluxpool SimpleNbox::sum_rh(double time) const { + fluxpool total(0.0, U_PGC_YR); + for (auto biome : biome_list) { + total = total + rh(biome, time); + } + return total; +} + +//------------------------------------------------------------------------------ +/*! \brief Compute permafrost thaw and refreeze fluxes + * \param biome Name of the biome, a string + * \param rh_co2 Flux of CO2-C from thawed permafrost + * \param rh_ch4 Flux of CH4-C from thawed permafrost + * \returns A tuple of pf_thaw_c, pf_refreeze_tp, pf_refreeze_soil (Pg C, + * but all doubles for speed) \note This logic follows Woodard et al. 2021 + * https://gmd.copernicus.org/articles/14/4751/2021/ + */ +tuple +SimpleNbox::compute_pf_thaw_refreeze(string biome, fluxpool rh_co2, + fluxpool rh_ch4) const { + + double biome_c_thaw = + permafrost_c.at(biome).value(U_PGC) * new_thaw.at(biome); + double pf_refreeze_tp = 0.0; + double pf_refreeze_soil = 0.0; + + if (biome_c_thaw < 0) { + // If the permafrost thaw is negative, that means refreezing. + // This occurs preferentially from the thawed permafrost pool, + // and secondarily from the soil pool + const double pf_refreeze = -biome_c_thaw; + biome_c_thaw = 0.0; + const double thawed_remaining = thawed_permafrost_c.at(biome).value(U_PGC) - + rh_co2.value(U_PGC_YR) - + rh_ch4.value(U_PGC_YR); + pf_refreeze_tp = std::min(pf_refreeze, thawed_remaining); + pf_refreeze_soil = pf_refreeze - pf_refreeze_tp; + } + + return {biome_c_thaw, pf_refreeze_tp, pf_refreeze_soil}; +} + +///------------------------------------------------------------------------------ +/*! \brief Compute model fluxes for a time step + * \param[in] t time + * \param[in] c carbon pools (no units) + * \param[out] dcdt carbon fluxes + * \returns code indicating success or failure + */ +int SimpleNbox::calcderivs(double t, const double c[], double dcdt[]) const { + // Solver is attempting to go from ODEstartdate to t + // Atmosphere-ocean flux is calculated by ocean_component + const int omodel_err = omodel->calcderivs(t, c, dcdt); + const double ao_exchange = dcdt[SNBOX_OCEAN]; + fluxpool ocean_uptake(0.0, U_PGC_YR); + fluxpool ocean_release(0.0, U_PGC_YR); + if (ao_exchange >= 0.0) { + ocean_uptake.set(ao_exchange, U_PGC_YR); + } else { + ocean_release.set(-ao_exchange, U_PGC_YR); + } + + // NPP: Net primary productivity + fluxpool npp_biome(0.0, U_PGC_YR); + fluxpool npp_current(0.0, U_PGC_YR); + fluxpool npp_fav(0.0, U_PGC_YR); + fluxpool npp_fad(0.0, U_PGC_YR); + fluxpool npp_fas(0.0, U_PGC_YR); + + // RH: heterotrophic respiration from detritus and soil + // Permafrost HR is handled below + fluxpool rh_fda_current(0.0, U_PGC_YR); + fluxpool rh_fsa_current(0.0, U_PGC_YR); + // Heterotrophic respiration (CO2 and CH4) from thawed permafrost + fluxpool rh_ftpa_co2_current(0.0, U_PGC_YR); + fluxpool rh_ftpa_ch4_current(0.0, U_PGC_YR); + + for (auto biome : biome_list) { + // NPP is scaled by CO2 from preindustrial value + npp_biome = npp(biome); + npp_current = npp_current + npp_biome; + npp_fav = npp_fav + npp_biome * f_nppv.at(biome); + npp_fad = npp_fad + npp_biome * f_nppd.at(biome); + npp_fas = npp_fas + npp_biome * (1 - f_nppv.at(biome) - f_nppd.at(biome)); + rh_fda_current = rh_fda_current + rh_fda(biome); + rh_fsa_current = rh_fsa_current + rh_fsa(biome); + rh_ftpa_co2_current = rh_ftpa_co2_current + rh_ftpa_co2(biome); + rh_ftpa_ch4_current = rh_ftpa_ch4_current + rh_ftpa_ch4(biome); + } + fluxpool rh_current = rh_fda_current + rh_fsa_current + rh_ftpa_co2_current; + fluxpool rh_ch4_current = rh_ftpa_ch4_current; + + // Detritus flux comes from the vegetation pool + fluxpool litter_flux(0.0, U_PGC_YR); + fluxpool litter_fvd(0.0, U_PGC_YR); + fluxpool litter_fvs(0.0, U_PGC_YR); + for (auto biome : biome_list) { + fluxpool v = fluxpool(veg_c.at(biome).value(U_PGC) * 0.035, U_PGC_YR); + litter_flux = litter_flux + v; + litter_fvd = litter_fvd + v * f_litterd.at(biome); + litter_fvs = litter_fvs + v * (1 - f_litterd.at(biome)); + } + + // Some detritus goes to soil + fluxpool detsoil_flux(0.0, U_PGC_YR); + for (auto biome : biome_list) { + detsoil_flux = detsoil_flux + + fluxpool(detritus_c.at(biome).value(U_PGC) * 0.6, U_PGC_YR); + } + + // Land-use change emissions come from veg, detritus, and soil proportionately + const double total = c[SNBOX_VEG] + c[SNBOX_DET] + c[SNBOX_SOIL]; + fluxpool luc_fva = current_luc_e * c[SNBOX_VEG] / total; + fluxpool luc_fda = current_luc_e * c[SNBOX_DET] / total; + fluxpool luc_fsa = current_luc_e * c[SNBOX_SOIL] / total; + // ...whereas uptake goes entirely to vegetation + fluxpool luc_fav = current_luc_u; + + // Oxidized methane of fossil fuel origin + fluxpool ch4ox_current(0.0, U_PGC_YR); // TODO: implement this + + // As permafrost thaws, the C is mobilized into the thawed permafrost pool. + fluxpool pf_thaw_c(0.0, U_PGC_YR); + fluxpool pf_refreeze_tp(0.0, U_PGC_YR); + fluxpool pf_refreeze_soil(0.0, U_PGC_YR); + if (!in_spinup) { // No permafrost dynamics during spinup + // Sum permafrost thaw and refreeze across all biomes + for (auto biome : biome_list) { + auto [biome_c_thaw, biome_pf_refreeze_tp, biome_pf_refreeze_soil] = + compute_pf_thaw_refreeze(biome, rh_ftpa_co2(biome), + rh_ftpa_ch4(biome)); + pf_thaw_c = pf_thaw_c + fluxpool(biome_c_thaw, U_PGC_YR); + pf_refreeze_tp = + pf_refreeze_tp + fluxpool(biome_pf_refreeze_tp, U_PGC_YR); + pf_refreeze_soil = + pf_refreeze_tp + fluxpool(biome_pf_refreeze_soil, U_PGC_YR); + } + } + + // If user has supplied NBP (net biome production) values, + // adjust NPP and RH to match + const int rounded_t = round(t); + if (!in_spinup && NBP_constrain.size() && NBP_constrain.exists(rounded_t)) { + // Compute how different we are from the user-specified constraint + const double nbp = + npp_current.value(U_PGC_YR) - rh_current.value(U_PGC_YR) - + current_luc_e.value(U_PGC_YR) + current_luc_u.value(U_PGC_YR); + const unitval diff = NBP_constrain.get(rounded_t) - unitval(nbp, U_PGC_YR); + + // Adjust total NPP and total RH equally (but not LUC, which is an input) + // so that the net total of all three fluxes will match the NBP constraint + fluxpool npp_current_old = npp_current; + npp_current = npp_current + diff / 2.0; + // ...also need to adjust their sub-components + const double npp_ratio = npp_current / npp_current_old; + npp_fav = npp_fav * npp_ratio; + npp_fad = npp_fad * npp_ratio; + npp_fas = npp_fas * npp_ratio; + + // Do same thing for RH + fluxpool rh_current_old = rh_current; + rh_current = rh_current - diff / 2.0; + const double rh_ratio = rh_current / rh_current_old; + rh_fda_current = rh_fda_current * rh_ratio; + rh_fsa_current = rh_fsa_current * rh_ratio; + } + + // Compute fluxes + dcdt[SNBOX_ATMOS] = // change in atmosphere pool + current_ffi_e.value(U_PGC_YR) - current_daccs_u.value(U_PGC_YR) + + current_luc_e.value(U_PGC_YR) - current_luc_u.value(U_PGC_YR) + + ch4ox_current.value(U_PGC_YR) - ocean_uptake.value(U_PGC_YR) + + ocean_release.value(U_PGC_YR) - + npp_current.value(U_PGC_YR) + // HACK: For mass balance purposes, dump both RH{CO2} and RH{CH4} into + // the atmosphere. Effectively, this means that CH4 is emitted on top of + // existing CO2 -- i.e., more CH4 emissions does not mean less CO2 + // emissions from RH + + rh_ch4_current.value(U_PGC_YR) + rh_current.value(U_PGC_YR); + dcdt[SNBOX_VEG] = // change in vegetation pool + npp_fav.value(U_PGC_YR) - litter_flux.value(U_PGC_YR) - + luc_fva.value(U_PGC_YR) + luc_fav.value(U_PGC_YR); + dcdt[SNBOX_DET] = // change in detritus pool + npp_fad.value(U_PGC_YR) + litter_fvd.value(U_PGC_YR) - + detsoil_flux.value(U_PGC_YR) - rh_fda_current.value(U_PGC_YR) - + luc_fda.value(U_PGC_YR); + dcdt[SNBOX_SOIL] = // change in soil pool + npp_fas.value(U_PGC_YR) + litter_fvs.value(U_PGC_YR) + + detsoil_flux.value(U_PGC_YR) - rh_fsa_current.value(U_PGC_YR) - + pf_refreeze_soil.value(U_PGC_YR) - luc_fsa.value(U_PGC_YR); + dcdt[SNBOX_PERMAFROST] = // change in permafrost pool + -pf_thaw_c.value(U_PGC_YR) + pf_refreeze_soil.value(U_PGC_YR) + + pf_refreeze_tp.value(U_PGC_YR); + dcdt[SNBOX_THAWEDP] = // change in thawed permafrost pool + pf_thaw_c.value(U_PGC_YR) - pf_refreeze_tp.value(U_PGC_YR) - + rh_ftpa_ch4_current.value(U_PGC_YR) - rh_ftpa_co2_current.value(U_PGC_YR); + dcdt[SNBOX_OCEAN] = // change in ocean pool + ocean_uptake.value(U_PGC_YR) - ocean_release.value(U_PGC_YR); + dcdt[SNBOX_EARTH] = // change in earth pool + -current_ffi_e.value(U_PGC_YR) + current_daccs_u.value(U_PGC_YR); + + /* + if(!in_spinup) { + cout << "dcdt[SNBOX_PERMAFROST] = " << dcdt[SNBOX_PERMAFROST] << endl; + cout << "dcdt[SNBOX_THAWEDP] = " << dcdt[SNBOX_THAWEDP] << endl; + + } + */ + return omodel_err; +} + +//------------------------------------------------------------------------------ +/*! \brief Compute 'slowly varying' fluxes + * \param[in] t time (at the *beginning* of the current time step. + * \param[in] c carbon pools (no units) + * + * Compute 'slowly varying' fertilization and anthropogenic fluxes. + * Treat the fertilization factors as slowly varying for illustrative purposes + * (in fact we could calculate it at each integration step if we wanted to). + */ +void SimpleNbox::slowparameval(double t, const double c[]) { + omodel->slowparameval(t, c); // pass msg on to ocean model + + // Set this year's LUC and FFI/DACCS emissions and uptake + // We do this here, and not allow interpolation of their time series, + // so that pulse tests work correctly (see #643) + fluxpool zero_flux(0.0, U_PGC_YR); + current_luc_e = in_spinup ? zero_flux : lucEmissions.get(t); + current_luc_u = in_spinup ? zero_flux : lucUptake.get(t); + current_ffi_e = in_spinup ? zero_flux : ffiEmissions.get(t); + current_daccs_u = in_spinup ? zero_flux : daccsUptake.get(t); + + // Compute loss (or gain) of vegetation to LUC + npp_luc_adjust = (end_of_spinup_vegc - cum_luc_va) / end_of_spinup_vegc; + H_LOG(logger, Logger::DEBUG) + << "slowparameval: npp_luc_adjust = " << npp_luc_adjust << std::endl; + // cout << "xxx," << t << "," << cum_luc_va << "," << end_of_spinup_vegc << + // "," << npp_luc_adjust << endl; + + // Compute CO2 fertilization factor globally (and for each biome specified) + for (auto biome : biome_list) { + if (in_spinup) { + co2fert[biome] = 1.0; // no perturbation allowed if in spinup + } else { + co2fert[biome] = calc_co2fert(biome); + } + H_LOG(logger, Logger::DEBUG) + << "co2fert[ " << biome << " ] at " << CO2_conc() << " = " + << co2fert.at(biome) << std::endl; + } + + // Compute temperature factor globally (and for each biome specified) + // Heterotrophic respiration depends on the pool sizes (detritus and soil) and + // Q10 values The soil pool uses a lagged land air/surface temperature, i.e. + // we assume it takes time for heat to diffuse into soil + const double Tland = core->sendMessage(M_GETDATA, D_LAND_TAS); + + /* set tempferts (soil) and tempfertd (detritus) for each biome */ + + // Need the previous time step values of tempferts. Since t is + // the time at the beginning of the current time step (== the end + // of the previous time step), we can use t as the index to look + // up the previous value. + double_stringmap + tfs_last; // Previous time step values of tempferts; initialized empty + if (t != Core::undefinedIndex() && t > core->getStartDate()) { + tfs_last = tempferts_tv[t]; + } + + // Loop over biomes + for (auto biome : biome_list) { + if (in_spinup) { + tempfertd[biome] = 1.0; // no perturbation allowed in spinup + tempferts[biome] = 1.0; // no perturbation allowed in spinup + f_frozen[biome] = 1.0; // no perturbation allowed in spinup + new_thaw[biome] = 0.0; // no perturbation allowed in spinup + } else { + double wf; + if (warmingfactor.count(biome)) { + wf = warmingfactor.at(biome); // biome-specific warming + } else if (warmingfactor.count(SNBOX_DEFAULT_BIOME)) { + wf = warmingfactor.at(SNBOX_DEFAULT_BIOME); + } else { + wf = 1.0; + } + + const double Tland_biome = Tland * wf; // biome-specific temperature + + tempfertd[biome] = pow(q10_rh.at(biome), + (Tland_biome / 10.0)); // detritus warms with air + + // Permafrost thaw, as a fraction + // Currently, these are calibrated to produce a 0.172 / year slope from + // 0.8 to 4 degrees C, which was the linear form of this in Kessler 2017 + // https://doi.org/10.1142/s2010007817500087 (referenced in Woodard 2021). + new_thaw[biome] = 0.0; + if (permafrost_c[biome].value(U_PGC)) { + // This uses the biome's lognormal distribution, based on its mu and + // sigma, which is precomputed in prepareToRun(). Replicating the + // behavior of R's plnorm(), we use a value of one (=exp(0)) if + // Tland_biome <= 0 + double f_frozen_current = 1.0; + if (Tland_biome > 0) { + f_frozen_current = 1 - cdf(pf_s[biome], Tland_biome); + H_LOG(logger, Logger::DEBUG) + << "slowparameval: f_frozen_current = " << f_frozen_current + << std::endl; + } + + new_thaw[biome] = f_frozen[biome] - f_frozen_current; + f_frozen[biome] = f_frozen_current; + } + +// Soil warm very slowly relative to the atmosphere +// We use a mean temperature of a window (size Q10_TEMPN) of temperatures to +// scale Q10 +#define Q10_TEMPLAG 0 // 125 // TODO: put lag in input files 150, 25 +#define Q10_TEMPN 200 // 25 + double Tland_rm = 0.0; /* window mean of Tland */ + if (t > core->getStartDate() + Q10_TEMPLAG) { + for (int i = t - Q10_TEMPLAG - Q10_TEMPN; i < t - Q10_TEMPLAG; i++) { + Tland_rm += Tland_record.get(i) * wf; + } + + Tland_rm /= Q10_TEMPN; + } + + tempferts[biome] = pow(q10_rh.at(biome), (Tland_rm / 10.0)); + + // The soil Q10 effect is 'sticky' and can only increase, not decline + double tempferts_last = + tfs_last[biome]; // If tfs_last is empty, this will produce 0.0 + if (tempferts[biome] < tempferts_last) { + tempferts[biome] = tempferts_last; + } + + H_LOG(logger, Logger::DEBUG) + << biome << " Tland=" << Tland << ", Tland_biome=" << Tland_biome + << ", tempfertd=" << tempfertd[biome] + << ", tempferts=" << tempferts[biome] << std::endl; + } + } // loop over biomes + + H_LOG(logger, Logger::DEBUG) + << "slowparameval: would have recorded tempferts = " + << tempferts[SNBOX_DEFAULT_BIOME] << " at time= " << tcurrent + << std::endl; +} + +} // namespace Hector diff --git a/src/simpleNbox.cpp b/src/simpleNbox.cpp index 8ae814469..003b7ccf8 100644 --- a/src/simpleNbox.cpp +++ b/src/simpleNbox.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,11 +12,16 @@ * */ +// some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: string.hpp still generates two warnings +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Weverything" #include "boost/algorithm/string.hpp" +#pragma clang diagnostic pop +#include "avisitor.hpp" #include "dependency_finder.hpp" #include "simpleNbox.hpp" -#include "avisitor.hpp" #include @@ -24,1281 +29,1057 @@ namespace Hector { using namespace boost; +// test helper function +void identity_tests(bool trk) { + string trks = trk ? "true" : "false"; + fluxpool a(1.0, U_UNITLESS, trk); + H_ASSERT(a == a, "a not equal to itself for " + trks); + H_ASSERT(a / a == 1.0, "a divided by itself not 1 for " + trks); + H_ASSERT(a - a == fluxpool(0, U_UNITLESS, trk), + "a minus itself not 0 for " + trks); +} + //------------------------------------------------------------------------------ /*! \brief constructor */ -SimpleNbox::SimpleNbox() : CarbonCycleModel( 6 ), masstot(0.0) { - ffiEmissions.allowInterp( true ); - ffiEmissions.name = "ffiEmissions"; - lucEmissions.allowInterp( true ); - lucEmissions.name = "lucEmissions"; - Ftalbedo.allowInterp( true ); - Ftalbedo.name = "albedo"; - CO2_constrain.name = "CO2_constrain"; - - // earth_c keeps track of how much fossil C is pulled out - // so that we can do a mass-balance check throughout the run - earth_c.set( 0.0, U_PGC ); +SimpleNbox::SimpleNbox() : CarbonCycleModel(8), masstot(0.0) { + // Don't allow interpolation of the emissions time series; we use + // constant annualized values throughout the year so e.g. pulse tests + // work correctly. See #643 + ffiEmissions.allowInterp(false); + ffiEmissions.name = D_FFI_EMISSIONS; + daccsUptake.allowInterp(false); + daccsUptake.name = D_DACCS_UPTAKE; + lucEmissions.allowInterp(false); + lucEmissions.name = D_LUC_EMISSIONS; + lucUptake.allowInterp(false); + lucUptake.name = D_LUC_UPTAKE; + + Falbedo.allowInterp(true); + Falbedo.name = D_RF_T_ALBEDO; + + CO2_constrain.name = D_CO2_CONSTRAIN; + NBP_constrain.name = D_NBP_CONSTRAIN; + + // The actual atmos_c value will be filled in later by setData + atmos_c.set(0.0, U_PGC, false, D_ATMOSPHERIC_CO2); + atmos_c_ts.allowInterp(true); + atmos_c_ts.name = "atmos_c_ts"; + + // earth_c keeps track of how much fossil C is pulled out + // so that we can do a mass-balance check throughout the run + // 2020-02-05 With the introduction of non-negative 'fluxpool' class + // we can't start earth_c at zero. Value of 5500 is set to avoid + // overdrawing in RCP 8.5 + earth_c.set(5500, U_PGC, false, D_EARTHC); + + // We keep a running total of LUC emissions from (and uptake to) vegetation + // This is used in slowparameval() to calculate npp_luc_adjust + cum_luc_va.set(0.0, U_PGC); + cum_luc_va_ts.allowInterp(true); + cum_luc_va_ts.name = "cum_luc_va_ts"; + npp_luc_adjust = 1.0; } //------------------------------------------------------------------------------ // documentation is inherited -void SimpleNbox::init( Core* coreptr ) { - CarbonCycleModel::init( coreptr ); - - core = coreptr; - - // Defaults - co2fert[ SNBOX_DEFAULT_BIOME ] = 1.0; - warmingfactor[ SNBOX_DEFAULT_BIOME ] = 1.0; - residual.set( 0.0, U_PGC ); - tempfertd[ SNBOX_DEFAULT_BIOME ] = 1.0; - tempferts[ SNBOX_DEFAULT_BIOME ] = 1.0; - - // Initialize the `biome_list` with just "global" - biome_list.push_back( SNBOX_DEFAULT_BIOME ); - - Tgav_record.allowInterp( true ); - - // Register the data we can provide - core->registerCapability( D_ATMOSPHERIC_CO2, getComponentName() ); - core->registerCapability( D_ATMOSPHERIC_C, getComponentName() ); - core->registerCapability( D_PREINDUSTRIAL_CO2, getComponentName() ); - core->registerCapability( D_RF_T_ALBEDO, getComponentName() ); - core->registerCapability( D_LAND_CFLUX, getComponentName() ); - core->registerCapability( D_VEGC, getComponentName() ); - core->registerCapability( D_DETRITUSC, getComponentName() ); - core->registerCapability( D_SOILC, getComponentName() ); - core->registerCapability( D_NPP_FLUX0, getComponentName() ); - core->registerCapability( D_NPP, getComponentName() ); - - // Register our dependencies - core->registerDependency( D_OCEAN_CFLUX, getComponentName() ); - - // Register the inputs we can receive from outside - core->registerInput(D_FFI_EMISSIONS, getComponentName()); - core->registerInput(D_LUC_EMISSIONS, getComponentName()); - core->registerInput(D_PREINDUSTRIAL_CO2, getComponentName()); - core->registerInput(D_VEGC, getComponentName()); - core->registerInput(D_DETRITUSC, getComponentName()); - core->registerInput(D_SOILC, getComponentName()); - core->registerInput(D_NPP_FLUX0, getComponentName()); - core->registerInput(D_WARMINGFACTOR, getComponentName()); - core->registerInput(D_BETA, getComponentName()); - core->registerInput(D_Q10_RH, getComponentName()); - core->registerInput(D_F_NPPV, getComponentName()); - core->registerInput(D_F_NPPD, getComponentName()); - core->registerInput(D_F_LITTERD, getComponentName()); - core->registerInput(D_F_LUCV, getComponentName()); - core->registerInput(D_F_LUCD, getComponentName()); - core->registerInput(D_CO2_CONSTRAIN, getComponentName()); +void SimpleNbox::init(Core *coreptr) { + CarbonCycleModel::init(coreptr); + + core = coreptr; + + // Defaults + co2fert[SNBOX_DEFAULT_BIOME] = 1.0; + warmingfactor[SNBOX_DEFAULT_BIOME] = 1.0; + tempfertd[SNBOX_DEFAULT_BIOME] = 1.0; + tempferts[SNBOX_DEFAULT_BIOME] = 1.0; + f_frozen[SNBOX_DEFAULT_BIOME] = 1.0; + new_thaw[SNBOX_DEFAULT_BIOME] = 0.0; + + // Following permafrost-related values are from Woodard et al. 2021 + rh_ch4_frac[SNBOX_DEFAULT_BIOME] = 0.023; + pf_sigma[SNBOX_DEFAULT_BIOME] = 0.986; + pf_mu[SNBOX_DEFAULT_BIOME] = 1.67; + fpf_static[SNBOX_DEFAULT_BIOME] = 0.74; + + final_npp[SNBOX_DEFAULT_BIOME] = fluxpool(0.0, U_PGC_YR, false, "final_npp"); + final_rh[SNBOX_DEFAULT_BIOME] = fluxpool(0.0, U_PGC_YR, false, "final_rh"); + RH_ch4[SNBOX_DEFAULT_BIOME] = fluxpool(0.0, U_PGC_YR, false, "RH_ch4"); + + // Constraint residuals + Ca_residual.set(0.0, U_PGC); + + // Initialize the `biome_list` with just "global" + biome_list.push_back(SNBOX_DEFAULT_BIOME); + + Tland_record.allowInterp(true); + + // Register the data we can provide + core->registerCapability(D_CO2_CONC, getComponentName()); + core->registerCapability(D_ATMOSPHERIC_CO2, getComponentName()); + core->registerCapability(D_PREINDUSTRIAL_CO2, getComponentName()); + core->registerCapability(D_RF_T_ALBEDO, getComponentName()); + core->registerCapability(D_NBP, getComponentName()); + core->registerCapability(D_VEGC, getComponentName()); + core->registerCapability(D_DETRITUSC, getComponentName()); + core->registerCapability(D_SOILC, getComponentName()); + core->registerCapability(D_PERMAFROSTC, getComponentName()); + core->registerCapability(D_THAWEDPC, getComponentName()); + core->registerCapability(D_EARTHC, getComponentName()); + core->registerCapability(D_NPP_FLUX0, getComponentName()); + core->registerCapability(D_NPP, getComponentName()); + core->registerCapability(D_RH, getComponentName()); + core->registerCapability(D_RH_DETRITUS, getComponentName()); + core->registerCapability(D_RH_SOIL, getComponentName()); + core->registerCapability(D_RH_THAWEDP, getComponentName()); + core->registerCapability(D_RH_CH4, getComponentName()); + core->registerCapability(D_PF_SIGMA, getComponentName()); + core->registerCapability(D_PF_MU, getComponentName()); + core->registerCapability(D_FPF_STATIC, getComponentName()); + core->registerCapability(D_F_FROZEN, getComponentName()); + + // Register our dependencies + core->registerDependency(D_OCEAN_C_UPTAKE, getComponentName()); + + // Register the inputs we can receive from outside + core->registerInput(D_FFI_EMISSIONS, getComponentName()); + core->registerInput(D_DACCS_UPTAKE, getComponentName()); + core->registerInput(D_LUC_EMISSIONS, getComponentName()); + core->registerInput(D_LUC_UPTAKE, getComponentName()); + core->registerInput(D_PREINDUSTRIAL_CO2, getComponentName()); + core->registerInput(D_VEGC, getComponentName()); + core->registerInput(D_DETRITUSC, getComponentName()); + core->registerInput(D_SOILC, getComponentName()); + core->registerInput(D_PERMAFROSTC, getComponentName()); + core->registerInput(D_NPP_FLUX0, getComponentName()); + core->registerInput(D_WARMINGFACTOR, getComponentName()); + core->registerInput(D_BETA, getComponentName()); + core->registerInput(D_Q10_RH, getComponentName()); + core->registerInput(D_F_NPPV, getComponentName()); + core->registerInput(D_F_NPPD, getComponentName()); + core->registerInput(D_F_LITTERD, getComponentName()); + core->registerInput(D_CO2_CONSTRAIN, getComponentName()); + core->registerInput(D_RH_CH4_FRAC, getComponentName()); + core->registerInput(D_PF_SIGMA, getComponentName()); + core->registerInput(D_PF_MU, getComponentName()); + core->registerInput(D_FPF_STATIC, getComponentName()); + core->registerInput(D_NBP_CONSTRAIN, getComponentName()); + core->registerInput(D_RF_T_ALBEDO, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval SimpleNbox::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); +unitval SimpleNbox::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; - } else if( message==M_SETDATA ) { //! Caller is requesting to set data + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); - setData(datum, info); - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } - return returnval; + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void SimpleNbox::setData( const std::string &varName, - const message_data& data ) -{ - // Does the varName contain our parse character? If so, split it - std::vector splitvec; - boost::split( splitvec, varName, is_any_of( SNBOX_PARSECHAR ) ); - H_ASSERT( splitvec.size() < 3, "max of one separator allowed in variable names" ); - - std::string biome = SNBOX_DEFAULT_BIOME; - std::string varNameParsed = varName; - auto it_global = std::find(biome_list.begin(), biome_list.end(), SNBOX_DEFAULT_BIOME); - - if( splitvec.size() == 2 ) { // i.e., in form . - biome = splitvec[ 0 ]; - varNameParsed = splitvec[ 1 ]; - if ( has_biome( SNBOX_DEFAULT_BIOME ) ) { - H_LOG( logger, Logger::DEBUG ) << "Removing biome '" << SNBOX_DEFAULT_BIOME << - "' because you cannot have both 'global' and biome data. " << std::endl; - // We don't use the `deleteBiome` function here because - // when `setData` is used to initialize the core from the - // INI file, most of the time series variables that - // `deleteBiome` modifies have not been initialized yet. - // This should be relatively safe because (1) we check - // consistency of biome-specific variable sizes before - // running, and (2) the R interface will not let you use - // `setData` to modify the biome list. - biome_list.erase( it_global ); - } +void SimpleNbox::setData(const std::string &varName, const message_data &data) { + // Does the varName contain our parse character? If so, split it + std::vector splitvec; + boost::split(splitvec, varName, is_any_of(SNBOX_PARSECHAR)); + H_ASSERT(splitvec.size() < 3, + "max of one separator allowed in variable names"); + + std::string biome = SNBOX_DEFAULT_BIOME; + std::string varNameParsed = varName; + auto it_global = + std::find(biome_list.begin(), biome_list.end(), SNBOX_DEFAULT_BIOME); + + if (splitvec.size() == 2) { // i.e., in form . + biome = splitvec[0]; + varNameParsed = splitvec[1]; + if (has_biome(SNBOX_DEFAULT_BIOME)) { + H_LOG(logger, Logger::NOTICE) + << "Removing biome '" << SNBOX_DEFAULT_BIOME + << "' because you cannot have both 'global' and biome data. " + << std::endl; + // We don't use the `deleteBiome` function here because + // when `setData` is used to initialize the core from the + // INI file, most of the time series variables that + // `deleteBiome` modifies have not been initialized yet. + // This should be relatively safe because (1) we check + // consistency of biome-specific variable sizes before + // running, and (2) the R interface will not let you use + // `setData` to modify the biome list. + biome_list.erase(it_global); } + } - H_ASSERT( !(it_global != biome_list.end() && biome != SNBOX_DEFAULT_BIOME), - "If one of the biomes is 'global', you cannot add other biomes." ); + H_ASSERT(!(it_global != biome_list.end() && biome != SNBOX_DEFAULT_BIOME), + "If one of the biomes is 'global', you cannot add other biomes."); - // If the biome is not currently in the `biome_list`, and it's not - // the "global" biome, add it to `biome_list` - if ( biome != SNBOX_DEFAULT_BIOME && !has_biome( biome ) ) { - H_LOG( logger, Logger::DEBUG ) << "Adding biome '" << biome << "' to `biome_list`." << std::endl; - // We don't use `createBiome` here for the same reasons as above. - biome_list.push_back( biome ); + // If the biome is not currently in the `biome_list`, and it's not + // the "global" biome, add it to `biome_list` + if (biome != SNBOX_DEFAULT_BIOME && !has_biome(biome)) { + H_LOG(logger, Logger::NOTICE) + << "Adding biome '" << biome << "' to `biome_list`." << std::endl; + // We don't use `createBiome` here for the same reasons as above. + biome_list.push_back(biome); + } + + if (data.isVal) { + H_LOG(logger, Logger::DEBUG) + << "Setting " << biome << SNBOX_PARSECHAR << varNameParsed << "[" + << data.date << "]=" << data.value_unitval << std::endl; + } else { + H_LOG(logger, Logger::DEBUG) + << "Setting " << biome << SNBOX_PARSECHAR << varNameParsed << "[" + << data.date << "]=" << data.value_str << std::endl; + } + try { + // Initial pools + if (varNameParsed == D_ATMOSPHERIC_CO2) { + // Hector input files specify initial atmospheric CO2 in terms of + // the carbon pool, rather than the CO2 concentration. Since we + // don't have a place to store the initial carbon pool, we convert + // it to initial concentration and store that. It will be converted + // back to carbon content when the state variables are set up in + // prepareToRun. + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + H_ASSERT(biome == SNBOX_DEFAULT_BIOME, "atmospheric C must be global"); + set_c0(data.getUnitval(U_PGC).value(U_PGC) * PGC_TO_PPMVCO2); + } else if (varNameParsed == D_PREINDUSTRIAL_CO2) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + H_ASSERT(biome == SNBOX_DEFAULT_BIOME, + "preindustrial CO2 must be global"); + if (data.getUnitval(U_PPMV_CO2).value(U_PPMV_CO2) != 277.15) { + H_LOG(logger, Logger::WARNING) + << "Changing " << varNameParsed + << " from default value; this is not recomended and may cause " + "issues with RF CO2 calucations" + << std::endl; + } + set_c0(data.getUnitval(U_PPMV_CO2).value(U_PPMV_CO2)); + } else if (varNameParsed == D_VEGC) { + // For `veg_c`, `detritus_c`, `soil_c`, and `permafrost_c`, + // if date is not provided, set only the "current" model pool, + // without touching the time series variable. This is to + // accommodate the way the INI file is parsed. For + // interactive use, you will usually want to pass the date + // -- otherwise, the current value will be overridden by a + // `reset` (which includes code like `veg_c = veg_c_tv.get(t)`). + + // Data are coming in as unitvals, but change to fluxpools + veg_c[biome] = + fluxpool(data.getUnitval(U_PGC).value(U_PGC), U_PGC, false, varName); + if (data.date != Core::undefinedIndex()) { + veg_c_tv.set(data.date, veg_c); + } + } else if (varNameParsed == D_DETRITUSC) { + detritus_c[biome] = + fluxpool(data.getUnitval(U_PGC).value(U_PGC), U_PGC, false, varName); + if (data.date != Core::undefinedIndex()) { + detritus_c_tv.set(data.date, detritus_c); + } + } else if (varNameParsed == D_SOILC) { + soil_c[biome] = + fluxpool(data.getUnitval(U_PGC).value(U_PGC), U_PGC, false, varName); + if (data.date != Core::undefinedIndex()) { + soil_c_tv.set(data.date, soil_c); + } + } else if (varNameParsed == D_PERMAFROSTC) { + permafrost_c[biome] = + fluxpool(data.getUnitval(U_PGC).value(U_PGC), U_PGC, false, varName); + if (data.date != Core::undefinedIndex()) { + permafrost_c_tv.set(data.date, permafrost_c); + } } - - if (data.isVal) { - H_LOG( logger, Logger::DEBUG ) << "Setting " << biome << "." << varNameParsed << "[" << data.date << "]=" << data.value_unitval << std::endl; + // Albedo effect + else if (varNameParsed == D_RF_T_ALBEDO) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + Falbedo.set(data.date, data.getUnitval(U_W_M2)); } - else { - H_LOG( logger, Logger::DEBUG ) << "Setting " << biome << "." << varNameParsed << "[" << data.date << "]=" << data.value_str << std::endl; + + // Partitioning + else if (varNameParsed == D_F_NPPV) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + f_nppv[biome] = data.getUnitval(U_UNITLESS); + } else if (varNameParsed == D_F_NPPD) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + f_nppd[biome] = data.getUnitval(U_UNITLESS); + } else if (varNameParsed == D_F_LITTERD) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + f_litterd[biome] = data.getUnitval(U_UNITLESS); } - try { - // Initial pools - if( varNameParsed == D_ATMOSPHERIC_C ) { - // Hector input files specify initial atmospheric CO2 in terms of - // the carbon pool, rather than the CO2 concentration. Since we - // don't have a place to store the initial carbon pool, we convert - // it to initial concentration and store that. It will be converted - // back to carbon content when the state variables are set up in - // prepareToRun. - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - H_ASSERT( biome == SNBOX_DEFAULT_BIOME, "atmospheric C must be global" ); - set_c0(data.getUnitval(U_PGC).value(U_PGC) * PGC_TO_PPMVCO2); - } - else if( varNameParsed == D_PREINDUSTRIAL_CO2 ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - H_ASSERT( biome == SNBOX_DEFAULT_BIOME, "preindustrial C must be global" ); - set_c0(data.getUnitval(U_PPMV_CO2).value(U_PPMV_CO2)); - } - else if( varNameParsed == D_VEGC ) { - // For `veg_c`, `detritus_c`, and `soil_c`, if date is not - // provided, set only the "current" model pool, without - // touching the time series variable. This is to - // accommodate the way the INI file is parsed. For - // interactive use, you will usually want to pass the date - // -- otherwise, the current value will be overridden by a - // `reset` (which includes code like `veg_c = veg_c_tv.get(t)`). - veg_c[ biome ] = data.getUnitval( U_PGC ); - if (data.date != Core::undefinedIndex()) { - veg_c_tv.set(data.date, veg_c); - } - } - else if( varNameParsed == D_DETRITUSC ) { - detritus_c[ biome ] = data.getUnitval( U_PGC ); - if (data.date != Core::undefinedIndex()) { - detritus_c_tv.set(data.date, detritus_c); - } - } - else if( varNameParsed == D_SOILC ) { - soil_c[ biome ] = data.getUnitval( U_PGC ); - if (data.date != Core::undefinedIndex()) { - soil_c_tv.set(data.date, soil_c); - } - } - - // Albedo effect - else if( varNameParsed == D_RF_T_ALBEDO ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - Ftalbedo.set( data.date, data.getUnitval( U_W_M2 ) ); - } - - // Partitioning - else if( varNameParsed == D_F_NPPV ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - f_nppv[ biome ] = data.getUnitval(U_UNITLESS); - } - else if( varNameParsed == D_F_NPPD ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - f_nppd[ biome ] = data.getUnitval(U_UNITLESS); - } - else if( varNameParsed == D_F_LITTERD ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - f_litterd[ biome ] = data.getUnitval(U_UNITLESS); - } - else if( varNameParsed == D_F_LUCV ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - f_lucv = data.getUnitval(U_UNITLESS); - } - else if( varNameParsed == D_F_LUCD ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - f_lucd = data.getUnitval(U_UNITLESS); - } - - // Initial fluxes - else if( varNameParsed == D_NPP_FLUX0 ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - npp_flux0[ biome ] = data.getUnitval( U_PGC_YR ); - } - - // Fossil fuels and industry contributions--time series. There are two - // message versions for each of these: one for string data - // read from an input file, and another for actual values - // passed from another part of the program. - else if( varNameParsed == D_FFI_EMISSIONS ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - H_ASSERT( biome == SNBOX_DEFAULT_BIOME, "fossil fuels and industry emissions must be global" ); - ffiEmissions.set( data.date, data.getUnitval( U_PGC_YR ) ); - } - else if( varNameParsed == D_LUC_EMISSIONS ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - lucEmissions.set( data.date, data.getUnitval( U_PGC_YR ) ); - } - // Atmospheric CO2 record to constrain model to (optional) - else if( varNameParsed == D_CO2_CONSTRAIN ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - H_ASSERT( biome == SNBOX_DEFAULT_BIOME, "atmospheric constraint must be global" ); - CO2_constrain.set( data.date, data.getUnitval( U_PPMV_CO2 ) ); - } - - // Fertilization - else if( varNameParsed == D_BETA ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - beta[ biome ] = data.getUnitval(U_UNITLESS); - } - else if( varNameParsed == D_WARMINGFACTOR ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - warmingfactor[ biome ] = data.getUnitval(U_UNITLESS); - } - else if( varNameParsed == D_Q10_RH ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - q10_rh[ biome ] = data.getUnitval(U_UNITLESS); - } - - else { - H_LOG( logger, Logger::DEBUG ) << "Unknown variable " << varName << std::endl; - H_THROW( "Unknown variable name while parsing "+ getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); + + // Initial fluxes + else if (varNameParsed == D_NPP_FLUX0) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + npp_flux0[biome] = + fluxpool(data.getUnitval(U_PGC_YR).value(U_PGC_YR), U_PGC_YR); } -} -//------------------------------------------------------------------------------ -/*! \brief Sanity checks - * \exception If any of the sanity checks fails - * - * This is called internally throughout the model run and performs sanity checks. - * For example, the main carbon pools (except earth) should always be positive; - * partitioning coefficients should not exceed 1; etc. - */ -void SimpleNbox::sanitychecks() -{ - // Make a few sanity checks here, and then return. - H_ASSERT( atmos_c.value( U_PGC ) > 0.0, "atmos_c pool <=0" ); - - for ( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - std::string biome = *it; - H_ASSERT( veg_c.at(biome).value( U_PGC ) >= 0.0, "veg_c pool < 0" ); - H_ASSERT( detritus_c.at(biome).value( U_PGC ) >= 0.0, "detritus_c pool < 0" ); - H_ASSERT( soil_c.at(biome).value( U_PGC ) >= 0.0, "soil_c pool < 0" ); - H_ASSERT( npp_flux0.at(biome).value( U_PGC_YR ) >= 0.0, "npp_flux0 < 0" ); - - H_ASSERT( f_nppv.at(biome) >= 0.0, "f_nppv <0" ); - H_ASSERT( f_nppd.at(biome) >= 0.0, "f_nppd <0" ); - H_ASSERT( f_nppv.at(biome) + f_nppd.at(biome) <= 1.0, "f_nppv + f_nppd >1" ); - H_ASSERT( f_litterd.at(biome) >= 0.0 && f_litterd.at(biome) <= 1.0, "f_litterd <0 or >1" ); + // Fossil fuels and industry contributions time series + else if (varNameParsed == D_FFI_EMISSIONS) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + H_ASSERT(biome == SNBOX_DEFAULT_BIOME, + "fossil fuels and industry emissions must be global"); + unitval ffi = data.getUnitval(U_PGC_YR); + ffiEmissions.set(data.date, fluxpool(ffi.value(U_PGC_YR), U_PGC_YR)); + } else if (varNameParsed == D_DACCS_UPTAKE) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + H_ASSERT(biome == SNBOX_DEFAULT_BIOME, + "direct air carbon capture and storage must be global"); + unitval daccs = data.getUnitval(U_PGC_YR); + daccsUptake.set(data.date, fluxpool(daccs.value(U_PGC_YR), U_PGC_YR)); + } else if (varNameParsed == D_LUC_EMISSIONS) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + unitval luc = data.getUnitval(U_PGC_YR); + lucEmissions.set(data.date, fluxpool(luc.value(U_PGC_YR), U_PGC_YR)); + } else if (varNameParsed == D_LUC_UPTAKE) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + unitval luc = data.getUnitval(U_PGC_YR); + lucUptake.set(data.date, fluxpool(luc.value(U_PGC_YR), U_PGC_YR)); + } + // Atmospheric CO2 record to constrain model to (optional) + else if (varNameParsed == D_CO2_CONSTRAIN) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + H_ASSERT(biome == SNBOX_DEFAULT_BIOME, + "atmospheric constraint must be global"); + unitval co2c = data.getUnitval(U_PPMV_CO2); + CO2_constrain.set(data.date, + fluxpool(co2c.value(U_PPMV_CO2), U_PPMV_CO2)); + } + // Land-atmosphere change to constrain model to (optional) + else if (varNameParsed == D_NBP_CONSTRAIN) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + H_ASSERT(biome == SNBOX_DEFAULT_BIOME, + "NBP (land-atmosphere) constraint must be global"); + NBP_constrain.set(data.date, data.getUnitval(U_PGC_YR)); } - H_ASSERT( f_lucv >= 0.0, "f_lucv <0" ); - H_ASSERT( f_lucd >= 0.0, "f_lucd <0" ); - H_ASSERT( f_lucv + f_lucd <= 1.0, "f_lucv + f_lucd >1" ); + // Fertilization + else if (varNameParsed == D_BETA) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + beta[biome] = data.getUnitval(U_UNITLESS); + } else if (varNameParsed == D_WARMINGFACTOR) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + warmingfactor[biome] = data.getUnitval(U_UNITLESS); + } else if (varNameParsed == D_Q10_RH) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + q10_rh[biome] = data.getUnitval(U_UNITLESS); + } + // Permafrost thaw parameters + else if (varNameParsed == D_PF_SIGMA) { + H_ASSERT(data.date == Core::undefinedIndex(), + "date not allowed for permafrost sigma"); + pf_sigma[biome] = data.getUnitval(U_DEGC); + } else if (varNameParsed == D_PF_MU) { + H_ASSERT(data.date == Core::undefinedIndex(), + "date not allowed for permafrost mu"); + pf_mu[biome] = data.getUnitval(U_DEGC); + } else if (varNameParsed == D_FPF_STATIC) { + H_ASSERT(data.date == Core::undefinedIndex(), + "date not allowed for static permafrost fraction"); + fpf_static[biome] = data.getUnitval(U_UNITLESS); + } else if (varNameParsed == D_RH_CH4_FRAC) { + H_ASSERT(data.date == Core::undefinedIndex(), + "date not allowed for CH4 decomposition fraction"); + rh_ch4_frac[biome] = data.getUnitval(U_UNITLESS); + } - H_ASSERT( C0.value( U_PPMV_CO2 ) > 0.0, "C0 <= 0" ); - H_ASSERT( Ca.value( U_PPMV_CO2 ) > 0.0, "Ca <= 0" ); + else { + H_LOG(logger, Logger::DEBUG) + << "Unknown variable " << varName << std::endl; + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); + } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ -/*! \brief Sum a string->unitval map - * \param pool to sum over - * \returns Sum of the unitvals in the map - * \exception If the map is empty +/*! \brief Convert current atmospheric C to [CO2] + * \returns Atmospheric CO2 concentration in ppmv */ -unitval SimpleNbox::sum_map( unitval_stringmap pool ) const -{ - H_ASSERT( pool.size(), "can't sum an empty map" ); - unitval sum( 0.0, pool.begin()->second.units() ); - for( unitval_stringmap::const_iterator it = pool.begin(); it != pool.end(); it++ ) - sum = sum + it->second; - return sum; +fluxpool SimpleNbox::CO2_conc(double time) const { + double CO2_conc = atmos_c.value(U_PGC); + if (time != Core::undefinedIndex()) { + CO2_conc = atmos_c_ts.get(time).value(U_PGC); + } + return fluxpool(CO2_conc * PGC_TO_PPMVCO2, U_PPMV_CO2); } //------------------------------------------------------------------------------ -/*! \brief Sum a string->double map - * \param pool to sum over +/*! \brief Helper function: sum a string->unitval map + * \param pool Pool to sum over * \returns Sum of the unitvals in the map * \exception If the map is empty */ -double SimpleNbox::sum_map( double_stringmap pool ) const -{ - H_ASSERT( pool.size(), "can't sum an empty map" ); - double sum = 0.0; - for( double_stringmap::const_iterator it = pool.begin(); it != pool.end(); it++ ) - sum = sum + it->second; - return sum; +fluxpool SimpleNbox::sum_map(fluxpool_stringmap pool) const { + H_ASSERT(pool.size(), "can't sum an empty map"); + fluxpool sum(0.0, pool.begin()->second.units(), + pool.begin()->second.tracking); + for (auto p : pool) { + H_ASSERT(sum.tracking == (p.second).tracking, + "tracking mismatch in sum_map function"); + sum = sum + p.second; + } + return sum; } //------------------------------------------------------------------------------ -/*! \brief Log pool states - * \param current date +/*! \brief Helper function: sum a string->double map + * \param pool Pool to sum over + * \returns Sum of the unitvals in the map + * \exception If the map is empty */ -void SimpleNbox::log_pools( const double t ) -{ - // Log pool states - H_LOG( logger,Logger::DEBUG ) << "---- simpleNbox pool states at t=" << t << " ----" << std::endl; - H_LOG( logger,Logger::DEBUG ) << "Atmos = " << atmos_c << std::endl; - H_LOG( logger,Logger::DEBUG ) << "Biome \tveg_c \t\tdetritus_c \tsoil_c" << std::endl; - for ( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - std::string biome = *it; - H_LOG( logger,Logger::DEBUG ) << biome << "\t" << veg_c[ biome ] << "\t" << - detritus_c[ biome ] << "\t\t" << soil_c[ biome ] << std::endl; - } - H_LOG( logger,Logger::DEBUG ) << "Earth = " << earth_c << std::endl; -} - -//------------------------------------------------------------------------------ -// documentation is inherited -void SimpleNbox::prepareToRun() -{ - - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - - // If any 'global' settings, there shouldn't also be regional - if ( (has_biome( SNBOX_DEFAULT_BIOME )) & (biome_list.size() > 1) ) { - H_THROW( "Cannot have both global and biome-specific data! " - "Did you forget to rename the default ('global') biome?") - } - - // Ensure consistency between biome_list and all pools and fluxes - H_ASSERT( biome_list.size() == veg_c.size(), "veg_c and biome_list data not same size" ); - H_ASSERT( biome_list.size() == detritus_c.size(), "detritus_c and biome_list not same size" ); - H_ASSERT( biome_list.size() == soil_c.size(), "soil_c and biome_list not same size" ); - H_ASSERT( biome_list.size() == npp_flux0.size(), "npp_flux0 and biome_list not same size" ); - - for ( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - std::string biome = *it; - H_LOG( logger, Logger::DEBUG ) << "Checking that data for biome '" << biome << "' is complete" << std::endl; - H_ASSERT( detritus_c.count( biome ), "no biome data for detritus_c" ); - H_ASSERT( soil_c.count( biome ), "no biome data for soil_c" ); - H_ASSERT( npp_flux0.count( biome ), "no biome data for npp_flux0" ); - - H_ASSERT( beta.count( biome ), "no biome value for beta" ); - - if ( !warmingfactor.count( biome )) { - H_LOG( logger, Logger::NOTICE ) << "No warmingfactor set for biome '" << biome << "'. " << - "Setting to default value = 1.0" << std::endl; - warmingfactor[ biome ] = 1.0; - } - - } - - // Save a pointer to the ocean model in use - omodel = dynamic_cast( core->getComponentByCapability( D_OCEAN_C ) ); - - if( !Ftalbedo.size() ) { // if no albedo data, assume constant - unitval alb( -0.2, U_W_M2 ); // default is MAGICC value - Ftalbedo.set( core->getStartDate(), alb ); - Ftalbedo.set( core->getEndDate(), alb ); - } - - double c0init = C0.value(U_PPMV_CO2); - Ca.set(c0init, U_PPMV_CO2); - atmos_c.set(c0init * PPMVCO2_TO_PGC, U_PGC); - - if( CO2_constrain.size() ) { - Logger& glog = core->getGlobalLogger(); - H_LOG( glog, Logger::WARNING ) << "Atmospheric CO2 will be constrained to user-supplied values!" << std::endl; - } - - // One-time checks - for( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - H_ASSERT( beta.at( *it ) >= 0.0, "beta < 0" ); - H_ASSERT( q10_rh.at( *it )>0.0, "q10_rh <= 0.0" ); - } - sanitychecks(); +double SimpleNbox::sum_map(double_stringmap pool) const { + H_ASSERT(pool.size(), "can't sum an empty map"); + double sum = 0.0; + for (auto p : pool) { + sum = sum + p.second; + } + return sum; } //------------------------------------------------------------------------------ -/*! \brief Run code, called from core - * \param[in] runToDate Date to which to run to, double - * - * This run method doesn't do much, because it's the carbon-cycle-solver - * run that does all the work. +/*! \brief Helper function: extract a fluxpool from a time series, or + * return current fluxpool \param varName Variable name being requested in + * getData below \param date Date to extract from time series \param biome Biome + * to extract from time series \param pool The current pool \param pool_tv The + * time series of the pool \returns Sum of the unitvals in the map \exception + * If the biome doesn't exist */ -void SimpleNbox::run( const double runToDate ) -{ - in_spinup = core->inSpinup(); - sanitychecks(); - - Tgav_record.set( runToDate, core->sendMessage( M_GETDATA, D_GLOBAL_TEMP ).value( U_DEGC ) ); +fluxpool +SimpleNbox::sum_fluxpool_biome_ts(const string varName, const double date, + const string biome, fluxpool_stringmap pool, + tvector pool_tv) { + fluxpool returnval; + std::string biome_error = + "Biome '" + biome + "' missing from biome list. " + + "Hit this error while trying to retrieve variable: '" + varName + "'."; + + if (biome == SNBOX_DEFAULT_BIOME) { + if (date == Core::undefinedIndex()) + returnval = sum_map(pool); + else + returnval = sum_map(pool_tv.get(date)); + } else { + H_ASSERT(has_biome(biome), biome_error); + if (date == Core::undefinedIndex()) + returnval = pool.at(biome); + else + returnval = pool_tv.get(date).at(biome); + } + return returnval; } //------------------------------------------------------------------------------ -/*! \brief Spinup run code, called from core - * \param[in] step Spinup step number - * - * This run_spinup method doesn't do much, because it's the carbon-cycle-solver - * run that does all the work. +/*! \brief Helper function: compute the biome-weighted mean of f_frozen + * \param biome Biome to extract from time series + * \param date Date to extract from time series */ -bool SimpleNbox::run_spinup( const int step ) -{ - sanitychecks(); - in_spinup = true; - return true; // solver will really be the one signalling +double SimpleNbox::f_frozen_weighted_mean(const string biome, + const double date) { + + fluxpool perm_tot = sum_map(permafrost_c); + double temp_step = 0.0; + + // f_frozen output should be 1.0 when there is no permafrost carbon in the + // system otherwise it should be the permafrost-area weighted average across + // biomes + if (perm_tot.value(U_PGC) > 0.0) { + if (date == Core::undefinedIndex()) { + for (auto biome : biome_list) + temp_step += (permafrost_c.at(biome) / perm_tot) * f_frozen.at(biome); + } else { + for (auto biome : biome_list) + temp_step += (permafrost_c.at(biome) / perm_tot) * + f_frozen_tv.get(date).at(biome); + } + } else { // no permafrost in system + temp_step = 1.0; + } + return temp_step; } //------------------------------------------------------------------------------ // documentation is inherited -unitval SimpleNbox::getData(const std::string& varName, - const double date) -{ - unitval returnval; - - std::string biome = SNBOX_DEFAULT_BIOME; - std::string varNameParsed = varName; - std::string biome_error = "Biome '" + biome + "' missing from biome list. " + - "Hit this error while trying to retrieve variable: '" + varName + "'."; - - // Does the varName contain our parse character? If so, split it - std::vector splitvec; - boost::split( splitvec, varName, boost::is_any_of( SNBOX_PARSECHAR ) ); - H_ASSERT( splitvec.size() < 3, "max of one separator allowed in variable names" ); - - if( splitvec.size() == 2 ) { // i.e., in form . - biome = splitvec[ 0 ]; - varNameParsed = splitvec[ 1 ]; - // Have to re-set this here because `biome` has changed - biome_error = "Biome '" + biome + "' missing from biome list. " + - "Hit this error while trying to retrieve variable: '" + varName + "'."; +unitval SimpleNbox::getData(const std::string &varName, const double date) { + unitval returnval; + + std::string biome = SNBOX_DEFAULT_BIOME; + std::string varNameParsed = varName; + std::string biome_error = + "Biome '" + biome + "' missing from biome list. " + + "Hit this error while trying to retrieve variable: '" + varName + "'."; + + // Does the varName contain our parse character? If so, split it + std::vector splitvec; + boost::split(splitvec, varName, boost::is_any_of(SNBOX_PARSECHAR)); + H_ASSERT(splitvec.size() < 3, + "max of one separator allowed in variable names"); + + if (splitvec.size() == 2) { // i.e., in form . + biome = splitvec[0]; + varNameParsed = splitvec[1]; + // Have to re-set this here because `biome` has changed + biome_error = "Biome '" + biome + "' missing from biome list. " + + "Hit this error while trying to retrieve variable: '" + + varName + "'."; + } + + if (varNameParsed == D_ATMOSPHERIC_CO2) { + if (date == Core::undefinedIndex()) + returnval = atmos_c; + else + returnval = atmos_c_ts.get(date); + } else if (varNameParsed == D_CO2_CONC) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for atmospheric CO2"); + returnval = CO2_conc(date); + } else if (varNameParsed == D_ATMOSPHERIC_C_RESIDUAL) { + if (date == Core::undefinedIndex()) + returnval = Ca_residual; + else + returnval = Ca_residual_ts.get(date); + } else if (varNameParsed == D_PREINDUSTRIAL_CO2) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for preindustrial CO2"); + returnval = C0; + } else if (varNameParsed == D_WARMINGFACTOR) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for biome warming factor"); + H_ASSERT(has_biome(biome), biome_error); + returnval = unitval(warmingfactor.at(biome), U_UNITLESS); + } else if (varNameParsed == D_BETA) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for CO2 fertilization (beta)"); + H_ASSERT(has_biome(biome), biome_error); + returnval = unitval(beta.at(biome), U_UNITLESS); + } else if (varNameParsed == D_Q10_RH) { + H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for Q10"); + returnval = unitval(q10_rh.at(biome), U_UNITLESS); + } else if (varNameParsed == D_PF_SIGMA) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for permafrost parameter sigma"); + H_ASSERT(has_biome(biome), biome_error); + returnval = unitval(pf_sigma.at(biome), U_DEGC); + } else if (varNameParsed == D_PF_MU) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for permafrost parameter mu"); + H_ASSERT(has_biome(biome), biome_error); + returnval = unitval(pf_mu.at(biome), U_DEGC); + } else if (varNameParsed == D_FPF_STATIC) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for permafrost C non-labile fraction"); + H_ASSERT(has_biome(biome), biome_error); + returnval = unitval(fpf_static.at(biome), U_UNITLESS); + } else if (varNameParsed == D_RH_CH4_FRAC) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for methane respiration fraction"); + H_ASSERT(has_biome(biome), biome_error); + returnval = unitval(rh_ch4_frac.at(biome), U_UNITLESS); + } else if (varNameParsed == D_NBP) { + if (date == Core::undefinedIndex()) + returnval = nbp; + else + returnval = nbp_ts.get(date); + } else if (varNameParsed == D_RF_T_ALBEDO) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for albedo forcing"); + returnval = Falbedo.get(date); + + // Partitioning parameters. + } else if (varNameParsed == D_F_NPPV) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for vegetation NPP fraction"); + returnval = unitval(f_nppv.at(biome), U_UNITLESS); + } else if (varNameParsed == D_F_NPPD) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for detritus NPP fraction"); + returnval = unitval(f_nppd.at(biome), U_UNITLESS); + } else if (varNameParsed == D_F_LITTERD) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for litter-detritus fraction"); + returnval = unitval(f_litterd.at(biome), U_UNITLESS); + } else if (varNameParsed == D_EARTHC) { + if (date == Core::undefinedIndex()) + returnval = earth_c; + else + returnval = earth_c_ts.get(date); + } else if (varNameParsed == D_VEGC) { + returnval = sum_fluxpool_biome_ts(varName, date, biome, veg_c, veg_c_tv); + } else if (varNameParsed == D_DETRITUSC) { + returnval = + sum_fluxpool_biome_ts(varName, date, biome, detritus_c, detritus_c_tv); + } else if (varNameParsed == D_SOILC) { + returnval = sum_fluxpool_biome_ts(varName, date, biome, soil_c, soil_c_tv); + } else if (varNameParsed == D_THAWEDPC) { + returnval = sum_fluxpool_biome_ts(varName, date, biome, thawed_permafrost_c, + thawed_permafrost_c_tv); + } else if (varNameParsed == D_PERMAFROSTC) { + returnval = sum_fluxpool_biome_ts(varName, date, biome, permafrost_c, + permafrost_c_tv); + } else if (varNameParsed == D_F_FROZEN) { + double tempval; + if (biome == SNBOX_DEFAULT_BIOME) { + tempval = f_frozen_weighted_mean(biome, date); + } else { + H_ASSERT(has_biome(biome), biome_error); + if (date == Core::undefinedIndex()) + tempval = f_frozen.at(biome); + else + tempval = f_frozen_tv.get(date).at(biome); } - - if( varNameParsed == D_ATMOSPHERIC_C ) { - if(date == Core::undefinedIndex()) - returnval = atmos_c; - else - returnval = atmos_c_ts.get(date); - } else if( varNameParsed == D_ATMOSPHERIC_CO2 ) { - if(date == Core::undefinedIndex()) - returnval = Ca; - else - returnval = Ca_ts.get(date); - } else if( varNameParsed == D_ATMOSPHERIC_C_RESIDUAL ) { - if(date == Core::undefinedIndex()) - returnval = residual; - else - returnval = residual_ts.get(date); - } else if( varNameParsed == D_PREINDUSTRIAL_CO2 ) { - H_ASSERT( date == Core::undefinedIndex(), "Date not allowed for preindustrial CO2" ); - returnval = C0; - } else if(varNameParsed == D_WARMINGFACTOR) { - H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for biome warming factor"); - H_ASSERT(has_biome( biome ), biome_error); - returnval = unitval(warmingfactor.at(biome), U_UNITLESS); - } else if(varNameParsed == D_BETA) { - H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for CO2 fertilization (beta)"); - H_ASSERT(has_biome( biome ), biome_error); - returnval = unitval(beta.at(biome), U_UNITLESS); - } else if(varNameParsed == D_Q10_RH) { - H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for Q10"); - returnval = unitval(q10_rh.at( biome ), U_UNITLESS); - } else if( varNameParsed == D_LAND_CFLUX ) { - if(date == Core::undefinedIndex()) - returnval = atmosland_flux; - else - returnval = atmosland_flux_ts.get( date ); - } else if( varNameParsed == D_RF_T_ALBEDO ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for albedo forcing" ); - returnval = Ftalbedo.get( date ); - - // Partitioning parameters. - } else if(varNameParsed == D_F_NPPV) { - H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for vegetation NPP fraction"); - returnval = unitval(f_nppv.at( biome ), U_UNITLESS); - } else if(varNameParsed == D_F_NPPD) { - H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for detritus NPP fraction"); - returnval = unitval(f_nppd.at( biome ), U_UNITLESS); - } else if(varNameParsed == D_F_LITTERD) { - H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for litter-detritus fraction"); - returnval = unitval(f_litterd.at( biome ), U_UNITLESS); - } else if(varNameParsed == D_F_LUCV) { - H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for LUC vegetation fraction"); - returnval = unitval(f_lucv, U_UNITLESS); - } else if(varNameParsed == D_F_LUCD) { - H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for LUC detritus fraction"); - returnval = unitval(f_lucd, U_UNITLESS); - - } else if( varNameParsed == D_EARTHC ) { - if(date == Core::undefinedIndex()) - returnval = earth_c; - else - returnval = earth_c_ts.get(date); - } else if( varNameParsed == D_VEGC ) { - if(biome == SNBOX_DEFAULT_BIOME) { - if(date == Core::undefinedIndex()) - returnval = sum_map( veg_c ); - else - returnval = sum_map(veg_c_tv.get(date)); - } else { - H_ASSERT(has_biome( biome ), biome_error); - if(date == Core::undefinedIndex()) - returnval = veg_c.at(biome) ; - else - returnval = veg_c_tv.get(date).at(biome); - } - } else if( varNameParsed == D_DETRITUSC ) { - if(biome == SNBOX_DEFAULT_BIOME) { - if(date == Core::undefinedIndex()) - returnval = sum_map( detritus_c ); - else - returnval = sum_map(detritus_c_tv.get(date)); - } else { - H_ASSERT(has_biome( biome ), biome_error); - if(date == Core::undefinedIndex()) - returnval = detritus_c.at(biome) ; - else - returnval = detritus_c_tv.get(date).at(biome); - } - } else if( varNameParsed == D_SOILC ) { - if(biome == SNBOX_DEFAULT_BIOME) { - if(date == Core::undefinedIndex()) - returnval = sum_map( soil_c ); - else - returnval = sum_map(soil_c_tv.get(date)); - } else { - H_ASSERT(has_biome( biome ), biome_error); - if(date == Core::undefinedIndex()) - returnval = soil_c.at(biome); - else - returnval = soil_c_tv.get(date).at(biome); - } - } else if( varNameParsed == D_NPP_FLUX0 ) { - H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for npp_flux0" ); - H_ASSERT(has_biome( biome ), biome_error); - returnval = npp_flux0.at(biome); - } else if( varNameParsed == D_FFI_EMISSIONS ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for ffi emissions" ); - returnval = ffiEmissions.get( date ); - } else if( varNameParsed == D_LUC_EMISSIONS ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for luc emissions" ); - returnval = lucEmissions.get( date ); - } else if( varNameParsed == D_CO2_CONSTRAIN ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for atmospheric CO2 constraint" ); - if (CO2_constrain.exists(date)) { - returnval = CO2_constrain.get( date ); - } else { - H_LOG( logger, Logger::DEBUG ) << "No CO2 constraint for requested date " << date << - ". Returning missing value." << std::endl; - returnval = unitval( MISSING_FLOAT, U_PPMV_CO2 ); - } - } else if( varNameParsed == D_NPP ) { - // `sum_npp` works whether or not `date` is defined (if undefined, it - // evaluates for the current date). - returnval = sum_npp(date); - } else if( varNameParsed == D_RH ) { - H_ASSERT( date == Core::undefinedIndex(), "Date not allowed for rh" ); - returnval = sum_rh(); - }else { - H_THROW( "Caller is requesting unknown variable: " + varName ); + returnval = unitval(tempval, U_UNITLESS); + } else if (varNameParsed == D_NPP_FLUX0) { + H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for npp_flux0"); + H_ASSERT(has_biome(biome), biome_error); + returnval = npp_flux0.at(biome); + } else if (varNameParsed == D_FFI_EMISSIONS) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for ffi emissions"); + returnval = ffiEmissions.get(date); + } else if (varNameParsed == D_DACCS_UPTAKE) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for daccs uptake"); + returnval = daccsUptake.get(date); + } else if (varNameParsed == D_LUC_EMISSIONS) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for luc emissions"); + returnval = lucEmissions.get(date); + } else if (varNameParsed == D_LUC_UPTAKE) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for luc uptake"); + returnval = lucUptake.get(date); + } else if (varNameParsed == D_CO2_CONSTRAIN) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for atmospheric CO2 constraint"); + if (CO2_constrain.exists(date)) { + returnval = CO2_constrain.get(date); + } else { + H_LOG(logger, Logger::DEBUG) + << "No CO2 constraint for requested date " << date + << ". Returning missing value." << std::endl; + returnval = unitval(MISSING_FLOAT, U_PPMV_CO2); } - - return returnval; -} - -void SimpleNbox::reset(double time) -{ - // Reset all state variables to their values at the reset time - earth_c = earth_c_ts.get(time); - atmos_c = atmos_c_ts.get(time); - Ca = Ca_ts.get(time); - - veg_c = veg_c_tv.get(time); - detritus_c = detritus_c_tv.get(time); - soil_c = soil_c_tv.get(time); - - residual = residual_ts.get(time); - - tempferts = tempferts_tv.get(time); - tempfertd = tempfertd_tv.get(time); - - // Calculate derived quantities - for( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - std::string biome = *it; - if(in_spinup) { - co2fert[ biome ] = 1.0; // co2fert fixed if in spinup. Placeholder in case we decide to allow resetting into spinup - } - else { - co2fert[ biome ] = calc_co2fert(biome); - } + } else if (varNameParsed == D_NBP_CONSTRAIN) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for NBP constraint"); + if (NBP_constrain.exists(date)) { + returnval = NBP_constrain.get(date); + } else { + H_LOG(logger, Logger::DEBUG) + << "No NBP constraint for requested date " << date + << ". Returning missing value." << std::endl; + returnval = unitval(MISSING_FLOAT, U_PGC_YR); } - Tgav_record.truncate(time); - // No need to reset masstot; it's not supposed to change anyhow. - - // Truncate all of the state variable time series - earth_c_ts.truncate(time); - atmos_c_ts.truncate(time); - Ca_ts.truncate(time); - - veg_c_tv.truncate(time); - detritus_c_tv.truncate(time); - soil_c_tv.truncate(time); - - residual_ts.truncate(time); - - tempferts_tv.truncate(time); - tempfertd_tv.truncate(time); - - tcurrent = time; - - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; + } else if (varNameParsed == D_NPP) { + returnval = + sum_fluxpool_biome_ts(varName, date, biome, final_npp, final_npp_tv); + } else if (varNameParsed == D_RH) { + returnval = + sum_fluxpool_biome_ts(varName, date, biome, final_rh, final_rh_tv); + } else if (varNameParsed == D_RH_CH4) { + returnval = sum_fluxpool_biome_ts(varName, date, biome, RH_ch4, RH_ch4_tv); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } + + // returnval might be a unitval or a fluxpool; need to return only the former + return static_cast(returnval); } //------------------------------------------------------------------------------ // documentation is inherited -void SimpleNbox::shutDown() -{ - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); -} - -//------------------------------------------------------------------------------ -/*! \brief visitor accept code - */ -void SimpleNbox::accept( AVisitor* visitor ) { - visitor->visit( this ); -} - -//------------------------------------------------------------------------------ -/*! \brief transfer model pools to flat array (for ODE solver) - * \param[in] t time, double, the date from which ODE solver is starting - * \param[in] c flat array of carbon pools (no units) - */ -void SimpleNbox::getCValues( double t, double c[] ) -{ - c[ SNBOX_ATMOS ] = atmos_c.value( U_PGC ); - c[ SNBOX_VEG ] = sum_map( veg_c ).value( U_PGC ); - c[ SNBOX_DET ] = sum_map( detritus_c ).value( U_PGC ); - c[ SNBOX_SOIL ] = sum_map( soil_c ).value( U_PGC ); - omodel->getCValues( t, c ); - c[ SNBOX_EARTH ] = earth_c.value( U_PGC ); - - ODEstartdate = t; -} - -//------------------------------------------------------------------------------ -/*! \brief Transfer new model pools from ODE solver array back to model pools - * \param[in] t Time, double, the ending date of the solver - * \param[in] double Flat array of carbon pools (no units) - * \exception h_exception If ocean model diverges from our pool tracking all ocean C - * \exception h_exception If mass is not conserved - * - * \details Transfer solver pools (no units) back to our pools (with units), and run - * a sanity check to make sure mass has been conserved. - */ -void SimpleNbox::stashCValues( double t, const double c[] ) -{ - // Solver has gone from ODEstartdate to t - const double yf = ( t - ODEstartdate ); - H_ASSERT( yf >= 0 && yf <= 1, "yearfraction out of bounds" ); - - H_LOG( logger,Logger::DEBUG ) << "Stashing at t=" << t << ", solver pools at " << t << ": " << - " atm = " << c[ 0 ] << - " veg = " << c[ 1 ] << - " det = " << c[ 2 ] << - " soil = " << c[ 3 ] << - " ocean = " << c[ 4 ] << - " earth = " << c[ 5 ] << std::endl; - - log_pools( t ); - - // Store solver pools into our internal variables - - atmos_c.set( c[ SNBOX_ATMOS ], U_PGC ); - - // Record the land C flux - const unitval npp_total = sum_npp(); - const unitval rh_total = sum_rh(); - // TODO: If/when we implement fire, update this calculation to include it - // (as a negative term). - atmosland_flux = npp_total - rh_total - lucEmissions.get( t ); - atmosland_flux_ts.set(t, atmosland_flux); - - // The solver just knows about one vegetation box, one detritus, and one - // soil. So we need to apportion new veg C pool (set by the solver) to - // as many biomes as we have. This is not ideal. - // TODO: Solver actually solves all boxes in multi-biome system - - // Apportioning is done by NPP and RH - // i.e., biomes with higher values get more of any C change - const unitval npp_rh_total = npp_total + rh_total; // these are both positive - const unitval newveg( c[ SNBOX_VEG ], U_PGC ); - const unitval newdet( c[ SNBOX_DET ], U_PGC ); - const unitval newsoil( c[ SNBOX_SOIL ], U_PGC ); - unitval veg_delta = newveg - sum_map( veg_c ); // TODO: make const - unitval det_delta = newdet - sum_map( detritus_c ); // TODO: make const - unitval soil_delta = newsoil - sum_map( soil_c ); // TODO: make const - H_LOG( logger,Logger::DEBUG ) << "veg_delta = " << veg_delta << std::endl; - H_LOG( logger,Logger::DEBUG ) << "det_delta = " << det_delta << std::endl; - H_LOG( logger,Logger::DEBUG ) << "soil_delta = " << soil_delta << std::endl; - - for( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - std::string biome = *it; - const double wt = ( npp( biome ) + rh( biome ) ) / npp_rh_total; - veg_c[ biome ] = veg_c.at( biome ) + veg_delta * wt; - detritus_c[ biome ] = detritus_c.at( biome ) + det_delta * wt; - soil_c[ biome ] = soil_c.at( biome ) + soil_delta * wt; - H_LOG( logger,Logger::DEBUG ) << "Biome " << biome << " weight = " << wt << std::endl; - } - - log_pools( t ); - - omodel->stashCValues( t, c ); // tell ocean model to store new C values - earth_c.set( c[ SNBOX_EARTH ], U_PGC ); - - log_pools( t ); - - // Each time the model pools are updated, check that mass has been conserved - double sum=0.0; - for( int i=0; iinSpinup() || - ( CO2_constrain.size() && CO2_constrain.exists(t) )) { - - unitval atmos_cpool_to_match; - unitval atmppmv; - if(core->inSpinup()) { - atmos_cpool_to_match.set(C0.value(U_PPMV_CO2) / PGC_TO_PPMVCO2, U_PGC); - atmppmv.set(C0.value(U_PPMV_CO2), U_PPMV_CO2); - } - else { - H_LOG( logger, Logger::NOTICE ) << "** Constraining atmospheric CO2 to user-supplied value" << std::endl; - atmos_cpool_to_match.set(CO2_constrain.get(t).value( U_PPMV_CO2 ) / - PGC_TO_PPMVCO2, U_PGC); - atmppmv.set(CO2_constrain.get(t).value(U_PPMV_CO2), U_PPMV_CO2); - } - - residual = atmos_c - atmos_cpool_to_match; - H_LOG( logger,Logger::DEBUG ) << t << "- have " << Ca << " want " << atmppmv.value( U_PPMV_CO2 ) << std::endl; - H_LOG( logger,Logger::DEBUG ) << t << "- have " << atmos_c << " want " << atmos_cpool_to_match << "; residual = " << residual << std::endl; - - // Transfer C from atmosphere to deep ocean and update our C and Ca variables - H_LOG( logger,Logger::DEBUG ) << "Sending residual of " << residual << " to deep ocean" << std::endl; - core->sendMessage( M_DUMP_TO_DEEP_OCEAN, D_OCEAN_C, message_data( residual ) ); - atmos_c = atmos_c - residual; - Ca.set( atmos_c.value( U_PGC ) * PGC_TO_PPMVCO2, U_PPMV_CO2 ); +void SimpleNbox::reset(double time) { + // Reset all state variables to their values at the reset time + earth_c = earth_c_ts.get(time); + atmos_c = atmos_c_ts.get(time); + + veg_c = veg_c_tv.get(time); + detritus_c = detritus_c_tv.get(time); + soil_c = soil_c_tv.get(time); + permafrost_c = permafrost_c_tv.get(time); + thawed_permafrost_c = thawed_permafrost_c_tv.get(time); + final_npp = final_npp_tv.get(time); + final_rh = final_rh_tv.get(time); + RH_ch4 = RH_ch4_tv.get(time); + + Ca_residual = Ca_residual_ts.get(time); + + tempferts = tempferts_tv.get(time); + tempfertd = tempfertd_tv.get(time); + f_frozen = f_frozen_tv.get(time); + + cum_luc_va = cum_luc_va_ts.get(time); + + // Calculate derived quantities + for (auto biome : biome_list) { + if (in_spinup) { + co2fert[biome] = 1.0; // co2fert fixed if in spinup. Placeholder in case + // we decide to allow resetting into spinup } else { - residual.set( 0.0, U_PGC ); + co2fert[biome] = calc_co2fert(biome); } + } + Tland_record.truncate(time); - // All good! t will be the start of the next timestep, so - ODEstartdate = t; -} + // Need to reset masstot in case the preindustrial ocean C values changed + masstot = 0.0; -// A series of small functions to calculate variables that will appear in the output stream + // Truncate all of the state variable time series + earth_c_ts.truncate(time); + atmos_c_ts.truncate(time); -double SimpleNbox::calc_co2fert(std::string biome, double time) const -{ - unitval Ca_t = time == Core::undefinedIndex() ? Ca : Ca_ts.get(time); - return 1 + beta.at(biome) * log(Ca_t/C0); -} + veg_c_tv.truncate(time); + detritus_c_tv.truncate(time); + soil_c_tv.truncate(time); + permafrost_c_tv.truncate(time); + thawed_permafrost_c_tv.truncate(time); -//------------------------------------------------------------------------------ -/*! \brief Compute annual net primary production - * \returns current annual NPP - */ -unitval SimpleNbox::npp(std::string biome, double time) const -{ - unitval npp = npp_flux0.at( biome ); // 'at' throws exception if not found - if(time == Core::undefinedIndex()) { - npp = npp * co2fert.at( biome ); // that's why used here instead of [] - } - else { - npp = npp * calc_co2fert(biome, time); - } - return npp; -} + final_npp_tv.truncate(time); + final_rh_tv.truncate(time); + RH_ch4_tv.truncate(time); -//------------------------------------------------------------------------------ -/*! \brief Compute global net primary production - * \returns Annual NPP summed across all biomes - */ -unitval SimpleNbox::sum_npp(double time) const -{ - unitval total( 0.0, U_PGC_YR ); - for( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - total = total + npp( *it, time );} - return total; -} + Ca_residual_ts.truncate(time); -//------------------------------------------------------------------------------ -/*! \brief Compute detritus component of annual heterotrophic respiration - * \returns current detritus component of annual heterotrophic respiration - */ -unitval SimpleNbox::rh_fda( std::string biome ) const -{ - unitval dflux( detritus_c.at( biome ).value( U_PGC ) * 0.25, U_PGC_YR ); - return dflux * tempfertd.at( biome ); -} + tempferts_tv.truncate(time); + tempfertd_tv.truncate(time); + f_frozen_tv.truncate(time); -//------------------------------------------------------------------------------ -/*! \brief Compute soil component of annual heterotrophic respiration - * \returns current soil component of annual heterotrophic respiration - */ -unitval SimpleNbox::rh_fsa( std::string biome ) const -{ - unitval soilflux( soil_c.at( biome ).value( U_PGC ) * 0.02, U_PGC_YR ); - return soilflux * tempferts.at( biome ); -} + cum_luc_va_ts.truncate(time); -//------------------------------------------------------------------------------ -/*! \brief Compute total annual heterotrophic respiration - * \returns current annual heterotrophic respiration - */ -unitval SimpleNbox::rh( std::string biome ) const -{ - // Heterotrophic respiration is the sum of fluxes from detritus and soil - return rh_fda( biome ) + rh_fsa( biome ); -} + tcurrent = time; -//------------------------------------------------------------------------------ -/*! \brief Compute global heterotrophic respiration - * \returns Annual RH summed across all biomes - */ -unitval SimpleNbox::sum_rh() const -{ - unitval total( 0.0, U_PGC_YR ); - for( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - total = total + rh( *it ); - } - return total; + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } //------------------------------------------------------------------------------ -/*! \brief Compute model fluxes for a time step - * \param[in] t time - * \param[in] c carbon pools (no units) - * \param[out] dcdt carbon fluxes - * \returns code indicating success or failure - */ -int SimpleNbox::calcderivs( double t, const double c[], double dcdt[] ) const -{ - // Solver is attempting to go from ODEstartdate to t -// const double yearfraction = ( t - ODEstartdate ); -// H_ASSERT( yearfraction >= 0 && yearfraction <= 1, "yearfraction out of bounds" ); - - // Atmosphere-ocean flux is calculated by ocean_component - const int omodel_err = omodel->calcderivs( t, c, dcdt ); - unitval atmosocean_flux( dcdt[ SNBOX_OCEAN ], U_PGC_YR ); - - /// NPP: Net primary productivity - unitval npp_biome( 0.0, U_PGC_YR); - unitval npp_current( 0.0, U_PGC_YR ); - unitval npp_fav( 0.0, U_PGC_YR ); - unitval npp_fad( 0.0, U_PGC_YR ); - unitval npp_fas( 0.0, U_PGC_YR ); - - // RH: heterotrophic respiration - unitval rh_fda_current( 0.0, U_PGC_YR ); - unitval rh_fsa_current( 0.0, U_PGC_YR ); - - for( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - std::string biome = *it; - // NPP is scaled by CO2 from preindustrial value - npp_biome = npp( biome ); - npp_current = npp_current + npp_biome; - npp_fav = npp_fav + npp_biome * f_nppv.at( biome ); - npp_fad = npp_fad + npp_biome * f_nppd.at( biome ); - npp_fas = npp_fas + npp_biome * (1 - f_nppv.at( biome ) - f_nppd.at( biome )); - rh_fda_current = rh_fda_current + rh_fda( biome ); - rh_fsa_current = rh_fsa_current + rh_fsa( biome ); - } - unitval rh_current = rh_fda_current + rh_fsa_current; - - // Detritus flux comes from the vegetation pool - // TODO: these values should use the c[] pools passed in by solver! - unitval litter_flux( 0.0, U_PGC_YR ); - unitval litter_fvd( 0.0, U_PGC_YR ); - unitval litter_fvs( 0.0, U_PGC_YR ); - for( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - std::string biome = *it; - unitval v = unitval( veg_c.at( biome ).value( U_PGC ) * 0.035, U_PGC_YR ); - litter_flux = litter_flux + v; - litter_fvd = litter_fvd + v * f_litterd.at( biome ); - litter_fvs = litter_fvs + v * ( 1 - f_litterd.at( biome ) ); - } - - // Some detritus goes to soil - unitval detsoil_flux( 0.0, U_PGC_YR ); - for( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - std::string biome = *it; - detsoil_flux = detsoil_flux + unitval( detritus_c.at( biome ).value( U_PGC ) * 0.6, U_PGC_YR ); - } - - // Annual fossil fuels and industry emissions - unitval ffi_flux_current( 0.0, U_PGC_YR ); - if( !in_spinup ) { // no perturbation allowed if in spinup - ffi_flux_current = ffiEmissions.get( t ); - } - - // Annual land use change emissions - unitval luc_current( 0.0, U_PGC_YR ); - if( !in_spinup ) { // no perturbation allowed if in spinup - luc_current = lucEmissions.get( t ); - } - - // Land-use change contribution can come from veg, detritus, and soil - unitval luc_fva = luc_current * f_lucv; - unitval luc_fda = luc_current * f_lucd; - unitval luc_fsa = luc_current * ( 1 - f_lucv - f_lucd ); - - // Oxidized methane of fossil fuel origin - unitval ch4ox_current( 0.0, U_PGC_YR ); //TODO: implement this - - // Compute fluxes - dcdt[ SNBOX_ATMOS ] = // change in atmosphere pool - ffi_flux_current.value( U_PGC_YR ) - + luc_current.value( U_PGC_YR ) - + ch4ox_current.value( U_PGC_YR ) - - atmosocean_flux.value( U_PGC_YR ) - - npp_current.value( U_PGC_YR ) - + rh_current.value( U_PGC_YR ); - dcdt[ SNBOX_VEG ] = // change in vegetation pool - npp_fav.value( U_PGC_YR ) - - litter_flux.value( U_PGC_YR ) - - luc_fva.value( U_PGC_YR ); - dcdt[ SNBOX_DET ] = // change in detritus pool - npp_fad.value( U_PGC_YR ) - + litter_fvd.value( U_PGC_YR ) - - detsoil_flux.value( U_PGC_YR ) - - rh_fda_current.value( U_PGC_YR ) - - luc_fda.value( U_PGC_YR ); - dcdt[ SNBOX_SOIL ] = // change in soil pool - npp_fas.value( U_PGC_YR ) - + litter_fvs.value( U_PGC_YR ) - + detsoil_flux.value( U_PGC_YR ) - - rh_fsa_current.value( U_PGC_YR ) - - luc_fsa.value( U_PGC_YR ); - dcdt[ SNBOX_OCEAN ] = // change in ocean pool - atmosocean_flux.value( U_PGC_YR ); - dcdt[ SNBOX_EARTH ] = // change in earth pool - - ffi_flux_current.value( U_PGC_YR ); - -/* printf( "%6.3f%8.3f%8.2f%8.2f%8.2f%8.2f%8.2f\n", t, dcdt[ SNBOX_ATMOS ], - dcdt[ SNBOX_VEG ], dcdt[ SNBOX_DET ], dcdt[ SNBOX_SOIL ], dcdt[ SNBOX_OCEAN ], dcdt[ SNBOX_EARTH ] ); -*/ - return omodel_err; +// documentation is inherited +void SimpleNbox::shutDown() { + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ -/*! \brief Compute 'slowly varying' fluxes - * \param[in] t time (at the *beginning* of the current time step. - * \param[in] c carbon pools (no units) - * - * Compute 'slowly varying' fertilization and anthropogenic fluxes. - * Treat the fertilization factors as slowly varying for illustrative purposes - * (in fact we could calculate it at each integration step if we wanted to). - */ -void SimpleNbox::slowparameval( double t, const double c[] ) -{ - omodel->slowparameval( t, c ); // pass msg on to ocean model - - // CO2 fertilization - Ca.set( c[ SNBOX_ATMOS ] * PGC_TO_PPMVCO2, U_PPMV_CO2 ); - - // Compute CO2 fertilization factor globally (and for each biome specified) - for( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - std::string biome = *it; - if( in_spinup ) { - co2fert[ biome ] = 1.0; // no perturbation allowed if in spinup - } else { - co2fert[ biome ] = calc_co2fert( biome ); - } - H_LOG( logger,Logger::DEBUG ) << "co2fert[ " << biome << " ] at " << Ca << " = " << co2fert.at( biome ) << std::endl; - } - - // Compute temperature factor globally (and for each biome specified) - // Heterotrophic respiration depends on the pool sizes (detritus and soil) and Q10 values - // The soil pool uses a lagged Tgav, i.e. we assume it takes time for heat to diffuse into soil - const double Tgav = core->sendMessage( M_GETDATA, D_GLOBAL_TEMP ).value( U_DEGC ); - - - /* set tempferts (soil) and tempfertd (detritus) for each biome */ +// documentation is inherited +void SimpleNbox::accept(AVisitor *visitor) { visitor->visit(this); } - // Need the previous time step values of tempferts. Since t is - // the time at the beginning of the current time step (== the end - // of the previous time step), we can use t as the index to look - // up the previous value. - double_stringmap tfs_last; // Previous time step values of tempferts; initialized empty - if(t != Core::undefinedIndex() && t > core->getStartDate()) { - tfs_last = tempferts_tv[t]; +//------------------------------------------------------------------------------ +// documentation is inherited +void SimpleNbox::record_state(double t) { + tcurrent = t; + earth_c_ts.set(t, earth_c); + atmos_c_ts.set(t, atmos_c); + + veg_c_tv.set(t, veg_c); + detritus_c_tv.set(t, detritus_c); + soil_c_tv.set(t, soil_c); + permafrost_c_tv.set(t, permafrost_c); + thawed_permafrost_c_tv.set(t, thawed_permafrost_c); + + for (auto it = biome_list.begin(); it != biome_list.end(); it++) { + std::string biome = *it; + if (!in_spinup) { + NPP_veg[biome] = npp(biome); + RH_det[biome] = rh_fda(biome); + RH_soil[biome] = rh_fsa(biome); + RH_thawed_permafrost[biome] = rh_ftpa_co2(biome); + RH_ch4[biome] = rh_ftpa_ch4(biome); + } else { + NPP_veg[biome] = fluxpool(0.0, U_PGC_YR); + RH_det[biome] = fluxpool(0.0, U_PGC_YR); + RH_soil[biome] = fluxpool(0.0, U_PGC_YR); + RH_thawed_permafrost[biome] = fluxpool(0.0, U_PGC_YR); + RH_ch4[biome] = fluxpool(0.0, U_PGC_YR); } + } + NPP_veg_tv.set(t, NPP_veg); + RH_det_tv.set(t, RH_det); + RH_soil_tv.set(t, RH_soil); + RH_thawed_permafrost_tv.set(t, RH_thawed_permafrost); + RH_ch4_tv.set(t, RH_ch4); - // Loop over biomes. - for( auto it = biome_list.begin(); it != biome_list.end(); it++ ) { - std::string biome = *it; - if( in_spinup ) { - tempfertd[ biome ] = 1.0; // no perturbation allowed in spinup - tempferts[ biome ] = 1.0; // no perturbation allowed in spinup - } else { - double wf; - if( warmingfactor.count( biome ) ) { - wf = warmingfactor.at( biome ); // biome-specific warming - } else if ( warmingfactor.count( SNBOX_DEFAULT_BIOME ) ) { - wf = warmingfactor.at( SNBOX_DEFAULT_BIOME ); - } else { - wf = 1.0; - } - - const double Tgav_biome = Tgav * wf; // biome-specific temperature - - tempfertd[ biome ] = pow( q10_rh.at( biome ), ( Tgav_biome / 10.0 ) ); // detritus warms with air - - - // Soil warm very slowly relative to the atmosphere - // We use a mean temperature of a window (size Q10_TEMPN) of temperatures to scale Q10 - #define Q10_TEMPLAG 0 //125 // TODO: put lag in input files 150, 25 - #define Q10_TEMPN 200 //25 - double Tgav_rm = 0.0; /* window mean of Tgav */ - if( t > core->getStartDate() + Q10_TEMPLAG ) { - for( int i=t-Q10_TEMPLAG-Q10_TEMPN; i 0.0) { + double massdiff = (newc0 - C0) * PPMVCO2_TO_PGC; + masstot += massdiff; + H_LOG(logger, Logger::DEBUG) + << "massdiff= " << massdiff << " new masstot= " << masstot << "\n"; + } + C0.set(newc0, U_PPMV_CO2, C0.tracking, C0.name); } // Check if `biome` is present in biome_list -bool SimpleNbox::has_biome(const std::string& biome) { - return std::find(biome_list.begin(), biome_list.end(), biome) != biome_list.end(); +bool SimpleNbox::has_biome(const std::string &biome) { + return std::find(biome_list.begin(), biome_list.end(), biome) != + biome_list.end(); } // Create a new biome, and initialize it with zero C pools and fluxes // and the same parameters as the most recently created biome. -void SimpleNbox::createBiome(const std::string& biome) -{ - - H_LOG(logger, Logger::DEBUG) << "Creating new biome '" << biome << "'." << std::endl; - - // Throw an error if the biome already exists - std::string errmsg = "Biome '" + biome + "' is already in `biome_list`."; - H_ASSERT(!has_biome( biome ), errmsg); - - // Initialize new pools - veg_c[ biome ] = unitval(0, U_PGC); - add_biome_to_ts(veg_c_tv, biome, veg_c.at( biome )); - detritus_c[ biome ] = unitval(0, U_PGC); - add_biome_to_ts(detritus_c_tv, biome, detritus_c.at( biome )); - soil_c[ biome ] = unitval(0, U_PGC); - add_biome_to_ts(soil_c_tv, biome, soil_c.at( biome )); - - npp_flux0[ biome ] = unitval(0, U_PGC_YR); - - // Other defaults (these will be re-calculated later) - co2fert[ biome ] = 1.0; - tempfertd[ biome ] = 1.0; - add_biome_to_ts(tempfertd_tv, biome, 1.0); - tempferts[ biome ] = 1.0; - add_biome_to_ts(tempferts_tv, biome, 1.0); - - std::string last_biome = biome_list.back(); - - // Set parameters to same as most recent biome - beta[ biome ] = beta[ last_biome ]; - q10_rh[ biome ] = q10_rh[ last_biome ]; - warmingfactor[ biome ] = warmingfactor[ last_biome ]; - f_nppv[ biome ] = f_nppv[ last_biome ]; - f_nppd[ biome ] = f_nppd[ last_biome ]; - f_litterd[ biome ] = f_litterd[ last_biome ]; - - // Add to end of biome list - biome_list.push_back(biome); - - H_LOG(logger, Logger::DEBUG) << "Finished creating biome '" << biome << "'." << std::endl;} +void SimpleNbox::createBiome(const std::string &biome) { + H_LOG(logger, Logger::DEBUG) + << "Creating new biome '" << biome << "'." << std::endl; + + // Throw an error if the biome already exists + std::string errmsg = "Biome '" + biome + "' is already in `biome_list`."; + H_ASSERT(!has_biome(biome), errmsg); + + // Initialize new pools + veg_c[biome] = fluxpool(0, U_PGC, false, D_VEGC); + add_biome_to_ts(veg_c_tv, biome, veg_c.at(biome)); + detritus_c[biome] = fluxpool(0, U_PGC, false, D_DETRITUSC); + add_biome_to_ts(detritus_c_tv, biome, detritus_c.at(biome)); + soil_c[biome] = fluxpool(0, U_PGC, false, D_SOILC); + add_biome_to_ts(soil_c_tv, biome, soil_c.at(biome)); + permafrost_c[biome] = fluxpool(0, U_PGC, false, D_PERMAFROSTC); + add_biome_to_ts(permafrost_c_tv, biome, permafrost_c.at(biome)); + thawed_permafrost_c[biome] = fluxpool(0, U_PGC, false, D_THAWEDPC); + add_biome_to_ts(thawed_permafrost_c_tv, biome, thawed_permafrost_c.at(biome)); + + NPP_veg[biome] = fluxpool(0, U_PGC, false, "npp_veg_" + biome); + add_biome_to_ts(NPP_veg_tv, biome, NPP_veg.at(biome)); + RH_det[biome] = fluxpool(0, U_PGC, false, "rh_det_" + biome); + add_biome_to_ts(RH_det_tv, biome, RH_det.at(biome)); + RH_soil[biome] = fluxpool(0, U_PGC, false, "rh_soil_" + biome); + add_biome_to_ts(RH_soil_tv, biome, RH_soil.at(biome)); + RH_thawed_permafrost[biome] = + fluxpool(0, U_PGC, false, "rh_thawedpf_" + biome); + add_biome_to_ts(RH_thawed_permafrost_tv, biome, + RH_thawed_permafrost.at(biome)); + RH_ch4[biome] = fluxpool(0, U_PGC_YR, false, D_RH_CH4 + biome); + add_biome_to_ts(RH_ch4_tv, biome, RH_ch4.at(biome)); + + final_npp[biome] = fluxpool(0, U_PGC_YR, false, D_NPP); + add_biome_to_ts(final_npp_tv, biome, final_npp.at(biome)); + + npp_flux0[biome] = fluxpool(0, U_PGC_YR); + + // Other defaults (these will be re-calculated later) + co2fert[biome] = 1.0; + tempfertd[biome] = 1.0; + add_biome_to_ts(tempfertd_tv, biome, 1.0); + tempferts[biome] = 1.0; + add_biome_to_ts(tempferts_tv, biome, 1.0); + f_frozen[biome] = 1.0; + add_biome_to_ts(f_frozen_tv, biome, 1.0); + + std::string last_biome = biome_list.back(); + + // Set parameters to same as most recent biome + beta[biome] = beta[last_biome]; + q10_rh[biome] = q10_rh[last_biome]; + warmingfactor[biome] = warmingfactor[last_biome]; + f_nppv[biome] = f_nppv[last_biome]; + f_nppd[biome] = f_nppd[last_biome]; + f_litterd[biome] = f_litterd[last_biome]; + rh_ch4_frac[biome] = rh_ch4_frac[last_biome]; + pf_sigma[biome] = pf_sigma[last_biome]; + pf_mu[biome] = pf_mu[last_biome]; + fpf_static[biome] = fpf_static[last_biome]; + + // Add to end of biome list + biome_list.push_back(biome); + + H_LOG(logger, Logger::DEBUG) + << "Finished creating biome '" << biome << "'." << std::endl; +} // Delete a biome: Remove it from the `biome_list` and `erase` all of // the associated parameters. -void SimpleNbox::deleteBiome(const std::string& biome) // Throw an error if the biome already exists +void SimpleNbox::deleteBiome( + const std::string &biome) // Throw an error if the biome already exists { - H_LOG(logger, Logger::DEBUG) << "Deleting biome '" << biome << "'." << std::endl; - - std::string errmsg = "Biome '" + biome + "' not found in `biome_list`."; - std::vector::const_iterator i_biome = std::find(biome_list.begin(), biome_list.end(), biome); - H_ASSERT(has_biome( biome ), errmsg); - - // Erase all values associated with the biome: - // Parameters - beta.erase( biome ); - q10_rh.erase(biome); - warmingfactor.erase( biome ); - f_nppv.erase(biome); - f_nppd.erase(biome); - f_litterd.erase(biome); - - // C pools - veg_c.erase( biome ); - remove_biome_from_ts(veg_c_tv, biome); - detritus_c.erase( biome ); - remove_biome_from_ts(detritus_c_tv, biome); - soil_c.erase( biome ); - remove_biome_from_ts(soil_c_tv, biome); - - // Others - npp_flux0.erase( biome ); - tempfertd.erase( biome ); - remove_biome_from_ts( tempfertd_tv, biome ); - tempferts.erase( biome ); - remove_biome_from_ts( tempferts_tv, biome ); - co2fert.erase( biome ); - - // Remove from `biome_list` - biome_list.erase( i_biome ); - - H_LOG(logger, Logger::DEBUG) << "Finished deleting biome '" << biome << ",." << std::endl; - + H_LOG(logger, Logger::DEBUG) + << "Deleting biome '" << biome << "'." << std::endl; + + std::string errmsg = "Biome '" + biome + "' not found in `biome_list`."; + std::vector::const_iterator i_biome = + std::find(biome_list.begin(), biome_list.end(), biome); + H_ASSERT(has_biome(biome), errmsg); + + // Erase all values associated with the biome: + // Parameters + beta.erase(biome); + q10_rh.erase(biome); + warmingfactor.erase(biome); + f_nppv.erase(biome); + f_nppd.erase(biome); + f_litterd.erase(biome); + rh_ch4_frac.erase(biome); + pf_sigma.erase(biome); + pf_mu.erase(biome); + fpf_static.erase(biome); + + // C pools + veg_c.erase(biome); + remove_biome_from_ts(veg_c_tv, biome); + detritus_c.erase(biome); + remove_biome_from_ts(detritus_c_tv, biome); + soil_c.erase(biome); + remove_biome_from_ts(soil_c_tv, biome); + permafrost_c.erase(biome); + remove_biome_from_ts(permafrost_c_tv, biome); + thawed_permafrost_c.erase(biome); + remove_biome_from_ts(thawed_permafrost_c_tv, biome); + + // C fluxes + NPP_veg.erase(biome); + remove_biome_from_ts(NPP_veg_tv, biome); + RH_det.erase(biome); + remove_biome_from_ts(RH_det_tv, biome); + RH_soil.erase(biome); + remove_biome_from_ts(RH_soil_tv, biome); + RH_thawed_permafrost.erase(biome); + remove_biome_from_ts(RH_thawed_permafrost_tv, biome); + RH_ch4.erase(biome); + remove_biome_from_ts(RH_ch4_tv, biome); + + final_npp.erase(biome); + remove_biome_from_ts(final_npp_tv, biome); + final_rh.erase(biome); + remove_biome_from_ts(final_rh_tv, biome); + + // Others + npp_flux0.erase(biome); + tempfertd.erase(biome); + remove_biome_from_ts(tempfertd_tv, biome); + tempferts.erase(biome); + remove_biome_from_ts(tempferts_tv, biome); + co2fert.erase(biome); + + // Remove from `biome_list` + biome_list.erase(i_biome); + + H_LOG(logger, Logger::DEBUG) + << "Finished deleting biome '" << biome << ",." << std::endl; } // Create a new biome called `newname`, transfer all of the parameters // and pools from `oldname`, and delete `oldname`. Note that the new // biome will be at the end of the `biome_list`. -void SimpleNbox::renameBiome(const std::string& oldname, const std::string& newname) -{ - H_LOG(logger, Logger::DEBUG) << "Renaming biome '" << oldname << - "' to '" << newname << "'." << std::endl; - - std::string errmsg = "Biome '" + oldname + "' not found in `biome_list`."; - H_ASSERT(has_biome( oldname ), errmsg); - errmsg = "Biome '" + newname + "' already exists in `biome_list`."; - H_ASSERT(!has_biome( newname ), errmsg); - - beta[ newname ] = beta.at( oldname ); - beta.erase(oldname); - q10_rh[ newname ] = q10_rh.at( oldname ); - q10_rh.erase(oldname); - warmingfactor[ newname ] = warmingfactor.at( oldname ); - warmingfactor.erase( oldname ); - f_nppv[ newname ] = f_nppv.at( oldname ); - f_nppv.erase(oldname); - f_nppd[ newname ] = f_nppd.at( oldname ); - f_nppd.erase(oldname); - f_litterd[ newname ] = f_litterd.at( oldname ); - f_litterd.erase(oldname); - - H_LOG(logger, Logger::DEBUG) << "Transferring C from biome '" << oldname << - "' to '" << newname << "'." << std::endl; - - // Transfer all C from `oldname` to `newname` - veg_c[ newname ] = veg_c.at( oldname ); - veg_c.erase(oldname); - rename_biome_in_ts(veg_c_tv, oldname, newname); - detritus_c[ newname ] = detritus_c.at( oldname ); - detritus_c.erase(oldname); - rename_biome_in_ts(detritus_c_tv, oldname, newname); - soil_c[ newname ] = soil_c.at( oldname ); - soil_c.erase(oldname); - rename_biome_in_ts(soil_c_tv, oldname, newname); - - npp_flux0[ newname ] = npp_flux0.at( oldname ); - npp_flux0.erase(oldname); - - co2fert[ newname ] = co2fert[ oldname ]; - co2fert.erase( oldname ); - - tempfertd[ newname ] = tempfertd[ oldname ]; - tempfertd.erase(oldname); - tempferts[ newname ] = tempferts[ oldname ]; - tempferts.erase(oldname); - - biome_list.push_back(newname); - biome_list.erase(std::find(biome_list.begin(), biome_list.end(), oldname)); - - H_LOG(logger, Logger::DEBUG) << "Done renaming biome '" << oldname << - "' to '" << newname << "'." << std::endl; - -} - +void SimpleNbox::renameBiome(const std::string &oldname, + const std::string &newname) { + H_LOG(logger, Logger::DEBUG) << "Renaming biome '" << oldname << "' to '" + << newname << "'." << std::endl; + + std::string errmsg = "Biome '" + oldname + "' not found in `biome_list`."; + H_ASSERT(has_biome(oldname), errmsg); + errmsg = "Biome '" + newname + "' already exists in `biome_list`."; + H_ASSERT(!has_biome(newname), errmsg); + + beta[newname] = beta.at(oldname); + beta.erase(oldname); + q10_rh[newname] = q10_rh.at(oldname); + q10_rh.erase(oldname); + warmingfactor[newname] = warmingfactor.at(oldname); + warmingfactor.erase(oldname); + f_nppv[newname] = f_nppv.at(oldname); + f_nppv.erase(oldname); + f_nppd[newname] = f_nppd.at(oldname); + f_nppd.erase(oldname); + f_litterd[newname] = f_litterd.at(oldname); + f_litterd.erase(oldname); + rh_ch4_frac[newname] = rh_ch4_frac.at(oldname); + rh_ch4_frac.erase(oldname); + pf_sigma[newname] = pf_sigma.at(oldname); + pf_sigma.erase(oldname); + pf_mu[newname] = pf_mu.at(oldname); + pf_mu.erase(oldname); + fpf_static[newname] = fpf_static.at(oldname); + fpf_static.erase(oldname); + + H_LOG(logger, Logger::DEBUG) << "Transferring C from biome '" << oldname + << "' to '" << newname << "'." << std::endl; + + // Transfer all C from `oldname` to `newname` + veg_c[newname] = veg_c.at(oldname); + veg_c.erase(oldname); + rename_biome_in_ts(veg_c_tv, oldname, newname); + detritus_c[newname] = detritus_c.at(oldname); + detritus_c.erase(oldname); + rename_biome_in_ts(detritus_c_tv, oldname, newname); + soil_c[newname] = soil_c.at(oldname); + soil_c.erase(oldname); + rename_biome_in_ts(soil_c_tv, oldname, newname); + permafrost_c[newname] = permafrost_c.at(oldname); + permafrost_c.erase(oldname); + rename_biome_in_ts(permafrost_c_tv, oldname, newname); + thawed_permafrost_c[newname] = thawed_permafrost_c.at(oldname); + thawed_permafrost_c.erase(oldname); + rename_biome_in_ts(thawed_permafrost_c_tv, oldname, newname); + + NPP_veg[newname] = NPP_veg.at(oldname); + NPP_veg.erase(oldname); + rename_biome_in_ts(NPP_veg_tv, oldname, newname); + RH_det[newname] = RH_det.at(oldname); + RH_det.erase(oldname); + rename_biome_in_ts(RH_det_tv, oldname, newname); + RH_soil[newname] = RH_soil.at(oldname); + RH_soil.erase(oldname); + rename_biome_in_ts(RH_soil_tv, oldname, newname); + RH_thawed_permafrost[newname] = RH_thawed_permafrost.at(oldname); + RH_thawed_permafrost.erase(oldname); + rename_biome_in_ts(RH_thawed_permafrost_tv, oldname, newname); + RH_ch4[newname] = RH_ch4.at(oldname); + RH_ch4.erase(oldname); + rename_biome_in_ts(RH_ch4_tv, oldname, newname); + + final_npp[newname] = final_npp.at(oldname); + final_npp.erase(oldname); + rename_biome_in_ts(final_npp_tv, oldname, newname); + final_rh[newname] = final_rh.at(oldname); + final_rh.erase(oldname); + rename_biome_in_ts(final_rh_tv, oldname, newname); + + npp_flux0[newname] = npp_flux0.at(oldname); + npp_flux0.erase(oldname); + + co2fert[newname] = co2fert[oldname]; + co2fert.erase(oldname); + + tempfertd[newname] = tempfertd[oldname]; + tempfertd.erase(oldname); + tempferts[newname] = tempferts[oldname]; + tempferts.erase(oldname); + + biome_list.push_back(newname); + biome_list.erase(std::find(biome_list.begin(), biome_list.end(), oldname)); + + H_LOG(logger, Logger::DEBUG) << "Done renaming biome '" << oldname << "' to '" + << newname << "'." << std::endl; } +} // namespace Hector diff --git a/src/slr_component.cpp b/src/slr_component.cpp index ab75b883c..8a6d38155 100644 --- a/src/slr_component.cpp +++ b/src/slr_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -13,99 +13,94 @@ */ #include "slr_component.hpp" -#include "temperature_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "dependency_finder.hpp" #include "h_util.hpp" -#include "avisitor.hpp" +#include "temperature_component.hpp" namespace Hector { using namespace std; - //------------------------------------------------------------------------------ /*! \brief Constructor */ -slrComponent::slrComponent() { -} +slrComponent::slrComponent() {} //------------------------------------------------------------------------------ /*! \brief Destructor */ -slrComponent::~slrComponent() { -} +slrComponent::~slrComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string slrComponent::getComponentName() const { - const string name = SLR_COMPONENT_NAME; - return name; + const string name = SLR_COMPONENT_NAME; + return name; } //------------------------------------------------------------------------------ // documentation is inherited -void slrComponent::init( Core* coreptr ) { +void slrComponent::init(Core *coreptr) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; - core = coreptr; + core = coreptr; - // Mean global temperature is the only thing used to calculate sea level rise - // Register our dependencies - core->registerDependency( D_GLOBAL_TEMP, getComponentName() ); + // Mean global temperature is the only thing used to calculate sea level rise + // Register our dependencies + core->registerDependency(D_GLOBAL_TAS, getComponentName()); - refperiod_low = 1951; - refperiod_high = 1980; - normalize_year = 1990; - slr.name = "slr"; - sl_rc.name = "sl_rc"; - tgav.name = "slr_tgav"; + refperiod_low = 1951; + refperiod_high = 1980; + normalize_year = 1990; + slr.name = "slr"; + sl_rc.name = "sl_rc"; + tgav.name = "slr_tgav"; } //------------------------------------------------------------------------------ // documentation is inherited -unitval slrComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - H_THROW("SLR sendMessage not yet implemented for message=M_SETDATA."); - //TODO: call setData below - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval slrComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; - return returnval; + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + + } else if (message == M_SETDATA) { //! Caller is requesting to set data + H_THROW("SLR sendMessage not yet implemented for message=M_SETDATA."); + // TODO: call setData below + + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void slrComponent::setData( const string& varName, - const message_data& data ) -{ - H_LOG( logger, Logger::DEBUG ) << "Setting " << varName << "[" << data.date << "]=" << data.value_str << std::endl; +void slrComponent::setData(const string &varName, const message_data &data) { + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); + H_THROW("Unknown variable name while parsing " + getComponentName() + ": " + + varName); } //------------------------------------------------------------------------------ // documentation is inherited void slrComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - oldDate = core->getStartDate(); - H_ASSERT( refperiod_high >= refperiod_low, "bad refperiod" ); + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + oldDate = core->getStartDate(); + H_ASSERT(refperiod_high >= refperiod_low, "bad refperiod"); } //------------------------------------------------------------------------------ @@ -118,150 +113,158 @@ tseries tgav_vals; * computes the first derivative of the global atmospheric temperature cure * uses first derivative to compute slr based on thermal expansion and ice melt */ -void slrComponent::compute_slr( const double date ) { - - unitval T = tgav.get( date ) - refperiod_tgav; // temperature relative to 1951-1980 mean - - // First need to compute dTdt, the first derivative of the temperature curve - double dTdt_double = 0.0; - if( tgav.size() > 2 ) { - for( int i=tgav.firstdate(); i<=tgav.lastdate(); i++ ) { - tgav_vals.set( i, tgav.get( i ).value( U_DEGC ) ); - } - tgav_vals.allowInterp( true ); // deriv needs a continuous function - dTdt_double = tgav_vals.get_deriv( date ); - } - - // These values and formula below are from: - // Vermeer, M. and S. Rahmstorf (2009). "Global sea level linked to global temperature." PNAS 106(51): 21527-21532. - // This incorporates both thermal expansion and ice melt - const double a = 0.56; // cm / year / K - const double b = -4.9 ; // cm / K - unitval T0; - T0.set( -0.41, U_DEGC ); - - unitval dHdt; - dHdt.set( a * ( T-T0 ).value( U_DEGC ) + b * dTdt_double, U_CM_YR ); // cm/yr - sl_rc.set( date, dHdt ); - - unitval dH; - dH.set( dHdt.value( U_CM_YR ), U_CM ); // integrating to 1 year - - unitval slr_to_date; - slr_to_date.set( 0.0, U_CM ); - if( slr.exists( date-1 ) ) { - slr_to_date.set( slr.get( date-1 ).value( U_CM ), U_CM ); - } - slr.set( date, slr_to_date + dH ); - - unitval X = slr.get( date ); - H_LOG( logger, Logger::DEBUG ) << date << " T=" << T << " dTdt=" << dTdt_double << " dHdt=" << dHdt << " slr=" << X << std::endl ; - - // These values incorporate only thermal expansion - const double a_no_ice = 0.08; // cm / year / degree C - const double b_no_ice = 2.5; // cm / degree C - unitval T0_no_ice; - T0_no_ice.set (-0.375, U_DEGC ); // K +void slrComponent::compute_slr(const double date) { - unitval dHdt_no_ice; - dHdt_no_ice.set( a_no_ice * ( T-T0_no_ice ).value( U_DEGC ) + b_no_ice * dTdt_double, U_CM_YR ); // cm/yr - sl_rc_no_ice.set( date, dHdt_no_ice ); + unitval T = + tgav.get(date) - refperiod_tgav; // temperature relative to 1951-1980 mean - unitval dH_no_ice; - dH_no_ice.set( dHdt_no_ice.value( U_CM_YR ), U_CM ); // integrating to 1 year - - unitval slr_no_ice_to_date; - slr_no_ice_to_date.set( 0.0, U_CM ); - if( slr_no_ice.exists( date-1 ) ) { - slr_no_ice_to_date = slr_no_ice.get( date-1 ); + // First need to compute dTdt, the first derivative of the temperature curve + double dTdt_double = 0.0; + if (tgav.size() > 2) { + for (int i = tgav.firstdate(); i <= tgav.lastdate(); i++) { + tgav_vals.set(i, tgav.get(i).value(U_DEGC)); } - - slr_no_ice.set( date, slr_no_ice_to_date + dH_no_ice ); - - unitval Y = slr_no_ice.get( date ); - H_LOG( logger, Logger::DEBUG ) << date << " T=" << T << " Dtdt=" << dTdt_double << " DHdt_no_ice=" << dHdt_no_ice << " slr_no_ice=" << Y << std::endl ; + tgav_vals.allowInterp(true); // deriv needs a continuous function + dTdt_double = tgav_vals.get_deriv(date); + } + + // These values and formula below are from: + // Vermeer, M. and S. Rahmstorf (2009). "Global sea level linked to global + // temperature." PNAS 106(51): 21527-21532. This incorporates both thermal + // expansion and ice melt + const double a = 0.56; // cm / year / K + const double b = -4.9; // cm / K + unitval T0; + T0.set(-0.41, U_DEGC); + + unitval dHdt; + dHdt.set(a * (T - T0).value(U_DEGC) + b * dTdt_double, U_CM_YR); // cm/yr + sl_rc.set(date, dHdt); + + unitval dH; + dH.set(dHdt.value(U_CM_YR), U_CM); // integrating to 1 year + + unitval slr_to_date; + slr_to_date.set(0.0, U_CM); + if (slr.exists(date - 1)) { + slr_to_date.set(slr.get(date - 1).value(U_CM), U_CM); + } + slr.set(date, slr_to_date + dH); + + unitval X = slr.get(date); + H_LOG(logger, Logger::DEBUG) << date << " T=" << T << " dTdt=" << dTdt_double + << " dHdt=" << dHdt << " slr=" << X << std::endl; + + // These values incorporate only thermal expansion + const double a_no_ice = 0.08; // cm / year / degree C + const double b_no_ice = 2.5; // cm / degree C + unitval T0_no_ice; + T0_no_ice.set(-0.375, U_DEGC); // K + + unitval dHdt_no_ice; + dHdt_no_ice.set(a_no_ice * (T - T0_no_ice).value(U_DEGC) + + b_no_ice * dTdt_double, + U_CM_YR); // cm/yr + sl_rc_no_ice.set(date, dHdt_no_ice); + + unitval dH_no_ice; + dH_no_ice.set(dHdt_no_ice.value(U_CM_YR), U_CM); // integrating to 1 year + + unitval slr_no_ice_to_date; + slr_no_ice_to_date.set(0.0, U_CM); + if (slr_no_ice.exists(date - 1)) { + slr_no_ice_to_date = slr_no_ice.get(date - 1); + } + + slr_no_ice.set(date, slr_no_ice_to_date + dH_no_ice); + + unitval Y = slr_no_ice.get(date); + H_LOG(logger, Logger::DEBUG) + << date << " T=" << T << " Dtdt=" << dTdt_double + << " DHdt_no_ice=" << dHdt_no_ice << " slr_no_ice=" << Y << std::endl; } //------------------------------------------------------------------------------ // documentation is inherited -void slrComponent::run( const double runToDate ) { - - H_LOG( logger, Logger::DEBUG ) << "SLR run " << runToDate << std::endl; +void slrComponent::run(const double runToDate) { + + H_LOG(logger, Logger::DEBUG) << "SLR run " << runToDate << std::endl; + + // Sea level rise is different from some of the other model outputs, because + // the formula used here to compute it depends on knowing a reference period + // temperature + + tgav.set(runToDate, core->sendMessage( + M_GETDATA, D_GLOBAL_TAS)); // store global temperature + + if (runToDate == + refperiod_high) { // then compute reference period temperature + H_LOG(logger, Logger::DEBUG) + << "Computing reference temperature" << std::endl; + double sum = 0.0; + for (int i = refperiod_low; i <= refperiod_high; i++) + sum += tgav.get(i).value(U_DEGC); + refperiod_tgav.set(sum / (refperiod_high - refperiod_low + 1), U_DEGC); + H_LOG(logger, Logger::DEBUG) + << "Computed reference temperature " << refperiod_tgav.value(U_DEGC) + << " (" << refperiod_low << "-" << refperiod_high << ")" << std::endl; + + // Now we can compute and store data up to this point + for (int i = tgav.firstdate(); i <= refperiod_high; i++) + compute_slr(i); + } + + if (runToDate > refperiod_high) + compute_slr(runToDate); + oldDate = runToDate; +} - // Sea level rise is different from some of the other model outputs, because the formula used here to compute it - // depends on knowing a reference period temperature +//------------------------------------------------------------------------------ +// documentation is inherited +unitval slrComponent::getData(const std::string &varName, const double date) { - tgav.set( runToDate, core->sendMessage( M_GETDATA, D_GLOBAL_TEMP ) ); // store global temperature + unitval returnval; - if( runToDate==refperiod_high ) { // then compute reference period temperature - H_LOG( logger, Logger::DEBUG ) << "Computing reference temperature" << std::endl; - double sum = 0.0; - for( int i=refperiod_low; i<=refperiod_high; i++ ) - sum += tgav.get( i ).value( U_DEGC ); - refperiod_tgav.set( sum / ( refperiod_high - refperiod_low + 1 ), U_DEGC ); - H_LOG( logger, Logger::DEBUG ) << "Computed reference temperature " - << refperiod_tgav.value( U_DEGC ) << " (" << refperiod_low << "-" << refperiod_high << ")" << std::endl; + H_ASSERT(date != Core::undefinedIndex(), "Date required for all slr data"); - // Now we can compute and store data up to this point - for( int i=tgav.firstdate(); i<=refperiod_high; i++ ) - compute_slr( i ); - } + if (varName == D_SL_RC) { + returnval = sl_rc.get(date); + } else if (varName == D_SL_RC_NO_ICE) { + returnval = sl_rc_no_ice.get(date); + } else if (varName == D_SLR) { + returnval = slr.get(date); + } else if (varName == D_SLR_NO_ICE) { + returnval = slr_no_ice.get(date); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } - if( runToDate > refperiod_high ) - compute_slr( runToDate ); - oldDate = runToDate; + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -unitval slrComponent::getData( const std::string& varName, - const double date ) { - - unitval returnval; - - H_ASSERT( date != Core::undefinedIndex(), "Date required for all slr data" ); - - if( varName == D_SL_RC ) { - returnval = sl_rc.get( date ); - } else if( varName == D_SL_RC_NO_ICE ) { - returnval = sl_rc_no_ice.get( date ); - } else if( varName == D_SLR ) { - returnval = slr.get( date ); - } else if( varName == D_SLR_NO_ICE ) { - returnval = slr_no_ice.get( date ); - } else { - H_THROW( "Caller is requesting unknown variable: " + varName ); - } - - return returnval; -} - -void slrComponent::reset(double time) -{ - oldDate = time; - sl_rc.truncate(time); - slr.truncate(time); - sl_rc_no_ice.truncate(time); - slr_no_ice.truncate(time); - tgav.truncate(time); - - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; +void slrComponent::reset(double time) { + oldDate = time; + sl_rc.truncate(time); + slr.truncate(time); + sl_rc_no_ice.truncate(time); + slr_no_ice.truncate(time); + tgav.truncate(time); + + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } - - //------------------------------------------------------------------------------ // documentation is inherited void slrComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void slrComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void slrComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/so2_component.cpp b/src/so2_component.cpp index de06fe27f..a83ea2c41 100644 --- a/src/so2_component.cpp +++ b/src/so2_component.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -10,12 +10,15 @@ * * Created by Corinne on 5/6/2013 * + * Note that the SO2 emissions are read in terms of S instead of SO2 + * values may need to be converted from g SO2 to g of S. + * */ #include "so2_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "h_util.hpp" -#include "avisitor.hpp" namespace Hector { @@ -25,166 +28,143 @@ using namespace std; /*! \brief Constructor */ SulfurComponent::SulfurComponent() { - SO2_emissions.allowInterp( true ); - SV.allowInterp( true ); - SO2_emissions.name = SULFUR_COMPONENT_NAME; - SV.name = SULFUR_COMPONENT_NAME; + SO2_emissions.allowInterp(true); + SV.allowInterp(true); + SO2_emissions.name = SULFUR_COMPONENT_NAME; + SV.name = SULFUR_COMPONENT_NAME; } //------------------------------------------------------------------------------ /*! \brief Destructor */ -SulfurComponent::~SulfurComponent() { -} +SulfurComponent::~SulfurComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string SulfurComponent::getComponentName() const { - const string name = SULFUR_COMPONENT_NAME; + const string name = SULFUR_COMPONENT_NAME; - return name; + return name; } //------------------------------------------------------------------------------ // documentation is inherited -void SulfurComponent::init( Core* coreptr ) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; - core = coreptr; - - // Inform core what data we can provide - core->registerCapability( D_NATURAL_SO2, getComponentName() ); - core->registerCapability( D_2000_SO2, getComponentName() ); - // accept anthro emissions and volcanic emissions as inputs - core->registerInput(D_EMISSIONS_SO2, getComponentName()); - core->registerInput(D_VOLCANIC_SO2, getComponentName()); +void SulfurComponent::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + core = coreptr; + + // Inform core what data we can provide + core->registerCapability(D_EMISSIONS_SO2, getComponentName()); + core->registerCapability(D_VOLCANIC_SO2, getComponentName()); + + // accept anthro emissions, volcanic, and natural emissions as inputs + core->registerInput(D_EMISSIONS_SO2, getComponentName()); + core->registerInput(D_VOLCANIC_SO2, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval SulfurComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - //TODO: call setData below - //TODO: change core so that parsing is routed through sendMessage - //TODO: make setData private - setData(datum, info); - - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } +unitval SulfurComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); - return returnval; + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); + + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void SulfurComponent::setData( const string& varName, - const message_data& data ) -{ - H_LOG( logger, Logger::DEBUG ) << "Setting " << varName << "[" << data.date << "]=" << data.value_str << std::endl; - - try { - if( varName == D_EMISSIONS_SO2 ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - SO2_emissions.set(data.date, data.getUnitval(U_GG_S)); - } - else if( varName == D_2000_SO2 ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - S0 = data.getUnitval(U_GG_S); - } - else if( varName == D_NATURAL_SO2 ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - SN = data.getUnitval(U_GG_S); - } - else if( varName == D_VOLCANIC_SO2 ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - SV.set(data.date, data.getUnitval(U_W_M2)); - } - else { - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); - } - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void SulfurComponent::setData(const string &varName, const message_data &data) { + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; + + try { + if (varName == D_EMISSIONS_SO2) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + SO2_emissions.set(data.date, data.getUnitval(U_GG_S)); + } else if (varName == D_VOLCANIC_SO2) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + SV.set(data.date, data.getUnitval(U_W_M2)); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ // documentation is inherited void SulfurComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - oldDate = core->getStartDate(); + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + oldDate = core->getStartDate(); } //------------------------------------------------------------------------------ // documentation is inherited -void SulfurComponent::run( const double runToDate ) { - H_ASSERT( !core->inSpinup() && runToDate-oldDate == 1, "timestep must equal 1" ); - oldDate = runToDate; +void SulfurComponent::run(const double runToDate) { + H_ASSERT(!core->inSpinup() && runToDate - oldDate == 1, + "timestep must equal 1"); + oldDate = runToDate; } //------------------------------------------------------------------------------ // documentation is inherited -unitval SulfurComponent::getData( const std::string& varName, - const double date ) { - - unitval returnval; - - if( varName == D_EMISSIONS_SO2 ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for SO2 emissions" ); - returnval = SO2_emissions.get( date ); - } - else if( varName == D_2000_SO2 ) { - H_ASSERT( date == Core::undefinedIndex(), "Date not supported for SO2 in 2000" ); - returnval = S0; - } - else if( varName == D_NATURAL_SO2 ) { - H_ASSERT( date == Core::undefinedIndex(), "Date not supported for natural SO2" ); - returnval = SN; - } - else if( varName == D_VOLCANIC_SO2 ) { - H_ASSERT( date != Core::undefinedIndex(), "Date required for volcanic SO2" ); - if( SV.size() ) returnval = SV.get( date ); - else returnval = unitval( 0.0, U_W_M2 ); - } - else { - H_THROW( "Caller is requesting unknown variable: " + varName ); - } - - return returnval; +unitval SulfurComponent::getData(const std::string &varName, + const double date) { + + unitval returnval; + + if (varName == D_EMISSIONS_SO2) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for SO2 emissions"); + returnval = SO2_emissions.get(date); + } else if (varName == D_VOLCANIC_SO2) { + H_ASSERT(date != Core::undefinedIndex(), "Date required for volcanic SO2"); + if (SV.size()) + returnval = SV.get(date); + else + returnval = unitval(0.0, U_W_M2); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } + + return returnval; } -void SulfurComponent::reset(double time) -{ - // This component doesn't calculate anything, so all we have to do - // is reset the time counter. - oldDate = time; - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; +//------------------------------------------------------------------------------ +// documentation is inherited +void SulfurComponent::reset(double time) { + // This component doesn't calculate anything, so all we have to do + // is reset the time counter. + oldDate = time; + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } - - //------------------------------------------------------------------------------ // documentation is inherited void SulfurComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } //------------------------------------------------------------------------------ // documentation is inherited -void SulfurComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} +void SulfurComponent::accept(AVisitor *visitor) { visitor->visit(this); } -} +} // namespace Hector diff --git a/src/spline_forsythe.cpp b/src/spline_forsythe.cpp index 4b59012a6..30530f956 100644 --- a/src/spline_forsythe.cpp +++ b/src/spline_forsythe.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -24,212 +24,230 @@ namespace Hector { Pacific Northwest National Laboratory & University of Maryland E-Mail: william.emanuel@pnl.gov */ -/* The function spline() calculates cubic-spline coefficients such that the resulting - set of polynomials interpolate the (x, y) pairs specified by the arguments x and y. - The argument n is the number of data points, i.e., the length of the x and y arrays. - The number of points must be greater then or equal to 2 (n >= 2). If n == 2, then - a line will be derived to support linear interpolation. +/* The function spline() calculates cubic-spline coefficients such that the + resulting set of polynomials interpolate the (x, y) pairs specified by the + arguments x and y. The argument n is the number of data points, i.e., the + length of the x and y arrays. The number of points must be greater then or + equal to 2 (n >= 2). If n == 2, then a line will be derived to support linear + interpolation. - On return from function spline(), the arrays specified by the arguments b, c, and d - contain the spline coefficients. + On return from function spline(), the arrays specified by the arguments b, c, + and d contain the spline coefficients. - If evaluation of spline coefficients fails, typically because n < 2, then spline() - returns 0. + If evaluation of spline coefficients fails, typically because n < 2, then + spline() returns 0. - The function seval() evaluates the interpolating function at the argument u. The - data and spline coefficients are passed through the arguments x, y, b, c, and d. - If u is not within the interval of definition of the function, (x[0], x[n-1]), the results - are unpredictable. + The function seval() evaluates the interpolating function at the argument u. + The data and spline coefficients are passed through the arguments x, y, b, c, + and d. If u is not within the interval of definition of the function, (x[0], + x[n-1]), the results are unpredictable. Based on Fortran code at http://netlib.sandia.gov/fmm/index.html, accessed September 2010. */ +void spline_forsythe(int n, double *x, double *y, double *b, double *c, + double *d) { + /* The coefficients b[i], c[i], and d[i], i = 1, 2, ..., n are computed for a + cubic interpolating spline s(x) = y[i] + b[i]*(x-x[i]) + c[i]*(x-x[i])**2 + + d[i]*(x-x[i])**3 for x[i] <= x <= x[i+1]. The accompanying function seval() + can be used to evaluate the spline. + + Input: + n = the number of data points or knots (n >= 2) + x = the abscissas of the knots in strictly increasing order + y = the ordinates of the knots + + Output: + b, c, d = arrays of spline coefficients as defined above. + + Using p to denote differentiation, + y[i] = s(x[i]) + b[i] = sp(x[i]) + c[i] = spp(x[i])/2 + d[i] = sppp(x[i])/6 (derivative from the right). */ + + int i, ib; + double t; + + H_ASSERT(n && x && y && b && c && d, "spline arguments must be nonzero"); + + H_ASSERT(n >= 2, "Insufficient data for interpolation"); + + if (n < 3) { + b[0] = (y[1] - y[0]) / (x[1] - x[0]); + c[0] = 0.0; + d[0] = 0.0; + b[1] = b[0]; + c[1] = 0.0; + d[1] = 0.0; + } else { + /* Set up tridiagonal system. + b = diagonal, d = off-diagonal, c = right-hand side. */ + d[0] = x[1] - x[0]; + c[1] = (y[1] - y[0]) / d[0]; + for (i = 1; i < n - 1; ++i) { + d[i] = x[i + 1] - x[i]; + b[i] = 2.0 * (d[i - 1] + d[i]); + c[i + 1] = (y[i + 1] - y[i]) / d[i]; + c[i] = c[i + 1] - c[i]; + } -void spline_forsythe( int n, double *x, double *y, double *b, double *c, double *d ) { - /* The coefficients b[i], c[i], and d[i], i = 1, 2, ..., n are computed for a cubic - interpolating spline s(x) = y[i] + b[i]*(x-x[i]) + c[i]*(x-x[i])**2 + d[i]*(x-x[i])**3 - for x[i] <= x <= x[i+1]. The accompanying function seval() can be used to - evaluate the spline. - - Input: - n = the number of data points or knots (n >= 2) - x = the abscissas of the knots in strictly increasing order - y = the ordinates of the knots - - Output: - b, c, d = arrays of spline coefficients as defined above. - - Using p to denote differentiation, - y[i] = s(x[i]) - b[i] = sp(x[i]) - c[i] = spp(x[i])/2 - d[i] = sppp(x[i])/6 (derivative from the right). */ - - int i, ib; - double t; - - H_ASSERT( n && x && y && b && c && d, "spline arguments must be nonzero" ); + /* End conditions. Third derivatives at x[1] and x[n] obtained from + divided differences. */ + b[0] = -d[0]; + b[n - 1] = -d[n - 2]; + c[0] = 0.0; + c[n - 1] = 0.0; + if (n > 3) { + c[0] = c[2] / (x[3] - x[1]) - c[1] / (x[2] - x[0]); + c[n - 1] = + c[n - 2] / (x[n - 1] - x[n - 3]) - c[n - 3] / (x[n - 2] - x[n - 4]); + c[0] = c[0] * d[0] * d[0] / (x[3] - x[0]); + c[n - 1] = -c[n - 1] * d[n - 2] * d[n - 2] / (x[n - 1] - x[n - 4]); + } - H_ASSERT( n >= 2, "Insufficient data for interpolation" ); + /* Forward elimination. */ + for (i = 1; i < n; ++i) { + t = d[i - 1] / b[i - 1]; + b[i] = b[i] - t * d[i - 1]; + c[i] = c[i] - t * c[i - 1]; + } - if (n < 3) { - b[0] = (y[1] - y[0]) / (x[1] - x[0]); - c[0] = 0.0; - d[0] = 0.0; - b[1] = b[0]; - c[1] = 0.0; - d[1] = 0.0; + /* Back substitution. */ + c[n - 1] = c[n - 1] / b[n - 1]; + for (ib = 0; ib < n - 1; ++ib) { + i = n - ib - 1; + c[i] = (c[i] - d[i] * c[i + 1]) / b[i]; } - else { - /* Set up tridiagonal system. - b = diagonal, d = off-diagonal, c = right-hand side. */ - d[0] = x[1] - x[0]; - c[1] = (y[1] - y[0]) / d[0]; - for (i = 1; i < n-1; ++i) { - d[i] = x[i+1] - x[i]; - b[i] = 2.0 * (d[i-1] + d[i]); - c[i+1] = (y[i+1] - y[i]) / d[i]; - c[i] = c[i+1] - c[i]; - } - - /* End conditions. Third derivatives at x[1] and x[n] obtained from - divided differences. */ - b[0] = -d[0]; - b[n-1] = -d[n-2]; - c[0] = 0.0; - c[n-1] = 0.0; - if (n > 3) { - c[0] = c[2] / (x[3] - x[1]) - c[1] / (x[2] - x[0]); - c[n-1] = c[n-2] / (x[n-1] - x[n-3]) - c[n-3] / (x[n-2] - x[n-4]); - c[0] = c[0] * d[0] * d[0] / (x[3] - x[0]); - c[n-1] = -c[n-1] * d[n-2] * d[n-2] / (x[n-1] - x[n-4]); - } - - /* Forward elimination. */ - for (i = 1; i < n; ++i) { - t = d[i-1] / b[i-1]; - b[i] = b[i] - t * d[i-1]; - c[i] = c[i] - t * c[i-1]; - } - - /* Back substitution. */ - c[n-1] = c[n-1] / b[n-1]; - for (ib = 0; ib < n-1; ++ib) { - i = n - ib - 1; - c[i] = (c[i] - d[i] * c[i+1]) / b[i]; - } - /* c[i] is now the sigma[i] of the text. */ - - /* Compute polynomial coefficients. */ - b[n-1] = (y[n-1] - y[n-2]) / d[n-2] + d[n-2] * (c[n-2] + 2.0 * c[n-1]); - for (i = 0; i < n-1; ++i) { - b[i] = (y[i+1] - y[i]) / d[i] - d[i] * (c[i+1] + 2.0 * c[i]); - d[i] = (c[i+1] - c[i]) / d[i]; - c[i] = 3.0 * c[i]; - } - c[n-1] = 3.0 * c[n-1]; - d[n-1] = d[n-2]; + /* c[i] is now the sigma[i] of the text. */ + + /* Compute polynomial coefficients. */ + b[n - 1] = (y[n - 1] - y[n - 2]) / d[n - 2] + + d[n - 2] * (c[n - 2] + 2.0 * c[n - 1]); + for (i = 0; i < n - 1; ++i) { + b[i] = (y[i + 1] - y[i]) / d[i] - d[i] * (c[i + 1] + 2.0 * c[i]); + d[i] = (c[i + 1] - c[i]) / d[i]; + c[i] = 3.0 * c[i]; } + c[n - 1] = 3.0 * c[n - 1]; + d[n - 1] = d[n - 2]; + } } -double seval_forsythe( int n, double u, double *x, double *y, double *b, double *c, double *d ) { - /* Evaluate a cubic spline function. - seval = y(i) + b(i)*(u-x(i)) + c(i)*(u-x(i))**2 + d(i)*(u-x(i))**3 - where x(i) .lt. u .lt. x(i+1), using horner's rule. - If u .lt. x(1) then i = 1 is used. - If u .ge. x(n) then i = n is used. - Input: - n = the number of data points - u = the abscissa at which the spline is to be evaluated - x,y = the arrays of data abscissas and ordinates - b,c,d = arrays of spline coefficients computed by spline - If u is not in the same interval as the previous call, then a binary search is - performed to determine the proper interval. - - The function seval() is invoked with the (x, y) pairs underlying the interpolating - function specified by the arguments x and y, and the spline coefficients that - define the function as specified by b, c, and d. The argument n is the number - of data points and the length of the coefficient arrays. */ - - H_ASSERT( n && x && y && b && c && d, "seval_forsythe needs nonzero params" ); - - static int i = 0; - int j, k; - double dx; - - /* Test for u within the interval of definition of the interpolating function. If not, - return the value at an end point of the interval. */ - if (u < x[0]) return y[0]; - if (u > x[n-1]) return y[n-1]; - - /* Search for the data points with independent values containing the - argument u. */ - if (i >= n-1) i = 0; - - /* If u is not in the current interval, then execute a binary search. */ - if ((u < x[i]) || (u > x[i+1])) { - i = 0; - j = n; - while (j > i + 1) { - k = (int)(( i + j) / 2); - if (u < x[k]) j = k; - if (u >= x[k]) i = k; - } +double seval_forsythe(int n, double u, double *x, double *y, double *b, + double *c, double *d) { + /* Evaluate a cubic spline function. + seval = y(i) + b(i)*(u-x(i)) + c(i)*(u-x(i))**2 + d(i)*(u-x(i))**3 + where x(i) .lt. u .lt. x(i+1), using horner's rule. + If u .lt. x(1) then i = 1 is used. + If u .ge. x(n) then i = n is used. + Input: + n = the number of data points + u = the abscissa at which the spline is to be evaluated + x,y = the arrays of data abscissas and ordinates + b,c,d = arrays of spline coefficients computed by spline + If u is not in the same interval as the previous call, then a binary search + is performed to determine the proper interval. + + The function seval() is invoked with the (x, y) pairs underlying the + interpolating function specified by the arguments x and y, and the spline + coefficients that define the function as specified by b, c, and d. The + argument n is the number of data points and the length of the coefficient + arrays. */ + + H_ASSERT(n && x && y && b && c && d, "seval_forsythe needs nonzero params"); + + static int i = 0; + int j, k; + double dx; + + /* Test for u within the interval of definition of the interpolating function. + If not, return the value at an end point of the interval. */ + if (u < x[0]) + return y[0]; + if (u > x[n - 1]) + return y[n - 1]; + + /* Search for the data points with independent values containing the + argument u. */ + if (i >= n - 1) + i = 0; + + /* If u is not in the current interval, then execute a binary search. */ + if ((u < x[i]) || (u > x[i + 1])) { + i = 0; + j = n; + while (j > i + 1) { + k = (int)((i + j) / 2); + if (u < x[k]) + j = k; + if (u >= x[k]) + i = k; } + } - /* Evaluate spline function at the argument u. */ - dx = u - x[i]; - return y[i] + dx * (b[i] + dx * (c[i] + dx * d[i])); + /* Evaluate spline function at the argument u. */ + dx = u - x[i]; + return y[i] + dx * (b[i] + dx * (c[i] + dx * d[i])); } -double seval_deriv_forsythe( int n, double u, double *x, double *y, double *b, double *c, double *d ) { - /* Evaluate the derivative of a cubic spline function. - seval_deriv = b(i) + 2*c(i)*(u-x(i)) + 3*d(i)*(u-x(i))**2 - where x(i) .lt. u .lt. x(i+1), using horner's rule. - If u .lt. x(1) then i = 1 is used. - If u .ge. x(n) then i = n is used. - Input: - n = the number of data points - u = the abscissa at which the spline is to be evaluated - x,y = the arrays of data abscissas and ordinates - b,c,d = arrays of spline coefficients computed by spline - If u is not in the same interval as the previous call, then a binary search is - performed to determine the proper interval. - - The function seval() is invoked with the (x, y) pairs underlying the interpolating - function specified by the arguments x and y, and the spline coefficients that - define the function as specified by b, c, and d. The argument n is the number - of data points and the length of the coefficient arrays. */ - - H_ASSERT( n && x && y && b && c && d, "seval_forsythe needs nonzero params" ); - - static int i = 0; - int j, k; - double dx; - - /* Test for u within the interval of definition of the interpolating function. If not, - return the value at an end point of the interval. */ - if (u < x[0]) { u = x[0]; } - if (u > x[n-1]) { u = x[n-1]; } - - /* Search for the data points with independent values containing the - argument u. */ - if (i >= n-1) i = 0; - - /* If u is not in the current interval, then execute a binary search. */ - if ((u < x[i]) || (u > x[i+1])) { - i = 0; - j = n; - while (j > i + 1) { - k = (int)(( i + j) / 2); - if (u < x[k]) j = k; - if (u >= x[k]) i = k; - } +double seval_deriv_forsythe(int n, double u, double *x, double *y, double *b, + double *c, double *d) { + /* Evaluate the derivative of a cubic spline function. + seval_deriv = b(i) + 2*c(i)*(u-x(i)) + 3*d(i)*(u-x(i))**2 + where x(i) .lt. u .lt. x(i+1), using horner's rule. + If u .lt. x(1) then i = 1 is used. + If u .ge. x(n) then i = n is used. + Input: + n = the number of data points + u = the abscissa at which the spline is to be evaluated + x,y = the arrays of data abscissas and ordinates + b,c,d = arrays of spline coefficients computed by spline + If u is not in the same interval as the previous call, then a binary search + is performed to determine the proper interval. + + The function seval() is invoked with the (x, y) pairs underlying the + interpolating function specified by the arguments x and y, and the spline + coefficients that define the function as specified by b, c, and d. The + argument n is the number of data points and the length of the coefficient + arrays. */ + + H_ASSERT(n && x && y && b && c && d, "seval_forsythe needs nonzero params"); + + static int i = 0; + int j, k; + double dx; + + /* Test for u within the interval of definition of the interpolating function. + If not, return the value at an end point of the interval. */ + if (u < x[0]) { + u = x[0]; + } + if (u > x[n - 1]) { + u = x[n - 1]; + } + + /* Search for the data points with independent values containing the + argument u. */ + if (i >= n - 1) + i = 0; + + /* If u is not in the current interval, then execute a binary search. */ + if ((u < x[i]) || (u > x[i + 1])) { + i = 0; + j = n; + while (j > i + 1) { + k = (int)((i + j) / 2); + if (u < x[k]) + j = k; + if (u >= x[k]) + i = k; } + } - /* Evaluate the derivative of the spline function at the argument u. */ - dx = u - x[i]; - return b[i] + ( 2.0 * dx * c[i] ) + ( 3.0 * dx * dx * d[i] ); -} + /* Evaluate the derivative of the spline function at the argument u. */ + dx = u - x[i]; + return b[i] + (2.0 * dx * c[i]) + (3.0 * dx * dx * d[i]); } +} // namespace Hector diff --git a/src/temperature_component.cpp b/src/temperature_component.cpp index 1988984ab..ea8672312 100644 --- a/src/temperature_component.cpp +++ b/src/temperature_component.cpp @@ -1,18 +1,35 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute - Please see the accompanying file LICENSE.md for additional licensing - information. -*/ + Please see the accompanying file LICENSE.md for additional licensing + information. + */ /* * temperature_component.cpp * hector * * Created by Ben Vega-Westhoff on 11/1/16. * + * DOECLIM is based on + * Kriegler, E. (2005) Imprecise probability analysis for Integrated Assessment + * of climate change. Ph.D. dissertation. Potsdam Universität. 256 pp. + * (http://opus.kobv.de/ubp/volltexte/2005/561/; DOECLIM introduced in Chapter 2 + * and Annexes A and B) Tanaka, K. & Kriegler, E. (2007) Aggregated carbon + * cycle, atmospheric chemistry, and climate model (ACC2) – Description of the + * forward and inverse modes – . Reports Earth Syst. Sci. 199. Garner, G., Reed, + * P. & Keller, K. (2016) Climate risk management requires explicit + * representation of societal trade-offs. Clim. Change 134, 713–723. + * + * Other References + * Meinshausen, M., Raper, S. C. B., and Wigley, T. M. L.: Emulating coupled + * atmosphere-ocean and carbon cycle models with a simpler model, MAGICC6 – Part + * 1: Model description and calibration, Atmos. Chem. Phys., 11, 1417–1456, + * https://doi.org/10.5194/acp-11-1417-2011, 2011. + * */ // some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: lexical_cast.hpp still generates many warnings #pragma clang diagnostic push #pragma clang diagnostic ignored "-Weverything" #include @@ -21,168 +38,169 @@ #include #include -// The MinGW C++ compiler doesn't seem to pull in the cmath constants? (see #384) -// As a workaround, we define M_PI here if needed +// The MinGW C++ compiler doesn't seem to pull in the cmath constants? (see +// #384) As a workaround, we define M_PI here if needed #ifndef M_PI -#define M_PI 3.14159265358979323846 +#define M_PI 3.14159265358979323846 #endif -#include "temperature_component.hpp" +#include "avisitor.hpp" #include "core.hpp" #include "h_util.hpp" #include "simpleNbox.hpp" -#include "avisitor.hpp" +#include "temperature_component.hpp" namespace Hector { using namespace std; - //------------------------------------------------------------------------------ /*! \brief Constructor */ -TemperatureComponent::TemperatureComponent() { -} +TemperatureComponent::TemperatureComponent() {} //------------------------------------------------------------------------------ /*! \brief Destructor */ -TemperatureComponent::~TemperatureComponent(){ -} +TemperatureComponent::~TemperatureComponent() {} //------------------------------------------------------------------------------ // documentation is inherited string TemperatureComponent::getComponentName() const { - const string name = TEMPERATURE_COMPONENT_NAME; + const string name = TEMPERATURE_COMPONENT_NAME; - return name; + return name; } - //------------------------------------------------------------------------------ /*! \brief Calculates inverse of x and stores in y * \param[in] x Assume x is setup like x = [a,b,c,d] -> x = |a, b| - * |c, d| + * |c, d| * \param[out] y Inverted 1-d matrix - * \returns void, inverse is stored in y */ -void TemperatureComponent::invert_1d_2x2_matrix(double * x, double * y) { - double temp_d = (x[0]*x[3] - x[1]*x[2]); - - if(temp_d == 0) { - H_THROW("Temperature: Matrix inversion divide by zero."); - } - double temp = 1/temp_d; - y[0] = temp * x[3]; - y[1] = temp * -1 * x[1]; - y[2] = temp * -1 * x[2]; - y[3] = temp * x[0]; - - return; +void TemperatureComponent::invert_1d_2x2_matrix(double *x, double *y) { + double temp_d = (x[0] * x[3] - x[1] * x[2]); + + if (temp_d == 0) { + H_THROW("Temperature: Matrix inversion divide by zero."); + } + double temp = 1 / temp_d; + y[0] = temp * x[3]; + y[1] = temp * -1 * x[1]; + y[2] = temp * -1 * x[2]; + y[3] = temp * x[0]; + + return; } //------------------------------------------------------------------------------ // documentation is inherited -void TemperatureComponent::init( Core* coreptr ) { - logger.open( getComponentName(), false, coreptr->getGlobalLogger().getEchoToFile(), coreptr->getGlobalLogger().getMinLogLevel() ); - H_LOG( logger, Logger::DEBUG ) << "hello " << getComponentName() << std::endl; - - tgaveq.set( 0.0, U_DEGC, 0.0 ); - tgav.set( 0.0, U_DEGC, 0.0 ); - flux_mixed.set( 0.0, U_W_M2, 0.0 ); - flux_interior.set( 0.0, U_W_M2, 0.0 ); - heatflux.set( 0.0, U_W_M2, 0.0 ); - - core = coreptr; - - tgav_constrain.allowInterp( true ); - tgav_constrain.name = D_TGAV_CONSTRAIN; - - // Define the doeclim parameters - diff.set( 0.55, U_CM2_S ); // default ocean heat diffusivity, cm2/s. value is CDICE default (varname is kappa there). - S.set( 3.0, U_DEGC ); // default climate sensitivity, K (varname is t2co in CDICE). - alpha.set( 1.0, U_UNITLESS); // default aerosol scaling, unitless (similar to alpha in CDICE). - volscl.set(1.0, U_UNITLESS); // Default volcanic scaling, unitless (works the same way as alpha) - - // Register the data we can provide - core->registerCapability( D_GLOBAL_TEMP, getComponentName() ); - core->registerCapability( D_LAND_AIR_TEMP, getComponentName() ); - core->registerCapability( D_OCEAN_AIR_TEMP, getComponentName() ); - core->registerCapability( D_OCEAN_SURFACE_TEMP, getComponentName() ); - core->registerCapability( D_GLOBAL_TEMPEQ, getComponentName() ); - core->registerCapability( D_FLUX_MIXED, getComponentName() ); - core->registerCapability( D_FLUX_INTERIOR, getComponentName() ); - core->registerCapability( D_HEAT_FLUX, getComponentName() ); - - // Register our dependencies - core->registerDependency( D_RF_TOTAL, getComponentName() ); - core->registerDependency( D_RF_BC, getComponentName() ); - core->registerDependency( D_RF_OC, getComponentName() ); - core->registerDependency( D_RF_SO2d, getComponentName() ); - core->registerDependency( D_RF_SO2i, getComponentName() ); - core->registerDependency( D_RF_VOL, getComponentName() ); - - // Register the inputs we can receive from outside - core->registerInput(D_ECS, getComponentName()); - core->registerInput(D_DIFFUSIVITY, getComponentName()); - core->registerInput(D_AERO_SCALE, getComponentName()); - core->registerInput(D_VOLCANIC_SCALE, getComponentName()); +void TemperatureComponent::init(Core *coreptr) { + logger.open(getComponentName(), false, + coreptr->getGlobalLogger().getEchoToFile(), + coreptr->getGlobalLogger().getMinLogLevel()); + H_LOG(logger, Logger::DEBUG) << "hello " << getComponentName() << std::endl; + + tas.set(0.0, U_DEGC, 0.0); + flux_mixed.set(0.0, U_W_M2, 0.0); + flux_interior.set(0.0, U_W_M2, 0.0); + heatflux.set(0.0, U_W_M2, 0.0); + lo_warming_ratio.set(0.0, U_UNITLESS, 0.0); + + core = coreptr; + + tas_constrain.allowInterp(true); + tas_constrain.name = D_TAS_CONSTRAIN; + + // Register the data we can provide + core->registerCapability(D_GLOBAL_TAS, getComponentName()); + core->registerCapability(D_LAND_TAS, getComponentName()); + core->registerCapability(D_OCEAN_TAS, getComponentName()); + core->registerCapability(D_SST, getComponentName()); + core->registerCapability(D_FLUX_MIXED, getComponentName()); + core->registerCapability(D_FLUX_INTERIOR, getComponentName()); + core->registerCapability(D_HEAT_FLUX, getComponentName()); + core->registerCapability(D_QCO2, getComponentName()); + core->registerCapability(D_LO_WARMING_RATIO, getComponentName()); + + // Register our dependencies + core->registerDependency(D_RF_TOTAL, getComponentName()); + core->registerDependency(D_RF_BC, getComponentName()); + core->registerDependency(D_RF_OC, getComponentName()); + core->registerDependency(D_RF_NH3, getComponentName()); + core->registerDependency(D_RF_SO2, getComponentName()); + core->registerDependency(D_RF_ACI, getComponentName()); + core->registerDependency(D_RF_VOL, getComponentName()); + + // Register the inputs we can receive from outside + core->registerInput(D_ECS, getComponentName()); + core->registerInput(D_QCO2, getComponentName()); + core->registerInput(D_DIFFUSIVITY, getComponentName()); + core->registerInput(D_AERO_SCALE, getComponentName()); + core->registerInput(D_VOLCANIC_SCALE, getComponentName()); + core->registerInput(D_LO_WARMING_RATIO, getComponentName()); + core->registerInput(D_TAS_CONSTRAIN, getComponentName()); } //------------------------------------------------------------------------------ // documentation is inherited -unitval TemperatureComponent::sendMessage( const std::string& message, - const std::string& datum, - const message_data info ) -{ - unitval returnval; - - if( message==M_GETDATA ) { //! Caller is requesting data - return getData( datum, info.date ); - } else if( message==M_SETDATA ) { //! Caller is requesting to set data - setData(datum, info); - } else { //! We don't handle any other messages - H_THROW( "Caller sent unknown message: "+message ); - } - - return returnval; +unitval TemperatureComponent::sendMessage(const std::string &message, + const std::string &datum, + const message_data info) { + unitval returnval; + + if (message == M_GETDATA) { //! Caller is requesting data + return getData(datum, info.date); + } else if (message == M_SETDATA) { //! Caller is requesting to set data + setData(datum, info); + } else { //! We don't handle any other messages + H_THROW("Caller sent unknown message: " + message); + } + + return returnval; } //------------------------------------------------------------------------------ // documentation is inherited -void TemperatureComponent::setData( const string& varName, - const message_data& data ) -{ - using namespace boost; - - H_LOG( logger, Logger::DEBUG ) << "Setting " << varName << "[" << data.date << "]=" << data.value_str << std::endl; - - try { - if( varName == D_ECS ) { - H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" ); - S = data.getUnitval(U_DEGC); - } else if( varName == D_DIFFUSIVITY ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - diff = data.getUnitval(U_CM2_S); - } else if( varName == D_AERO_SCALE ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - alpha = data.getUnitval(U_UNITLESS); - } else if(varName == D_VOLCANIC_SCALE) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed" ); - volscl = data.getUnitval(U_UNITLESS); - } else if( varName == D_TGAV_CONSTRAIN ) { - H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); - tgav_constrain.set(data.date, data.getUnitval(U_DEGC)); - } else { - H_THROW( "Unknown variable name while parsing " + getComponentName() + ": " - + varName ); - } - } catch( bad_lexical_cast& castException ) { - H_THROW( "Could not convert var: "+varName+", value: " + data.value_str + ", exception: " - +castException.what() ); - } catch( h_exception& parseException ) { - H_RETHROW( parseException, "Could not parse var: "+varName ); +void TemperatureComponent::setData(const string &varName, + const message_data &data) { + using namespace boost; + + H_LOG(logger, Logger::DEBUG) << "Setting " << varName << "[" << data.date + << "]=" << data.value_str << std::endl; + + try { + if (varName == D_ECS) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + S = data.getUnitval(U_DEGC); + } else if (varName == D_DIFFUSIVITY) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + diff = data.getUnitval(U_CM2_S); + } else if (varName == D_AERO_SCALE) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + alpha = data.getUnitval(U_UNITLESS); + } else if (varName == D_VOLCANIC_SCALE) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + volscl = data.getUnitval(U_UNITLESS); + } else if (varName == D_QCO2) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + qco2 = data.getUnitval(U_UNITLESS).value(U_UNITLESS); + } else if (varName == D_TAS_CONSTRAIN) { + H_ASSERT(data.date != Core::undefinedIndex(), "date required"); + tas_constrain.set(data.date, data.getUnitval(U_DEGC)); + } else if (varName == D_LO_WARMING_RATIO) { + H_ASSERT(data.date == Core::undefinedIndex(), "date not allowed"); + lo_warming_ratio = data.getUnitval(U_UNITLESS); + } else { + H_THROW("Unknown variable name while parsing " + getComponentName() + + ": " + varName); } + } catch (bad_lexical_cast &castException) { + H_THROW("Could not convert var: " + varName + ", value: " + data.value_str + + ", exception: " + castException.what()); + } catch (h_exception &parseException) { + H_RETHROW(parseException, "Could not parse var: " + varName); + } } //------------------------------------------------------------------------------ @@ -190,368 +208,574 @@ void TemperatureComponent::setData( const string& varName, // TO DO: should we put these in the ini file instead? void TemperatureComponent::prepareToRun() { - H_LOG( logger, Logger::DEBUG ) << "prepareToRun " << std::endl; - - if( tgav_constrain.size() ) { - Logger& glog = core->getGlobalLogger(); - H_LOG( glog, Logger::WARNING ) << "Temperature will be overwritten by user-supplied values!" << std::endl; - } - - // Initializing all model components that depend on the number of timesteps (ns) - ns = core->getEndDate() - core->getStartDate() + 1; - - KT0 = std::vector(ns, 0.0); - KTA1 = std::vector(ns, 0.0); - KTB1 = std::vector(ns, 0.0); - KTA2 = std::vector(ns, 0.0); - KTB2 = std::vector(ns, 0.0); - KTA3 = std::vector(ns, 0.0); - KTB3 = std::vector(ns, 0.0); - - Ker.resize(ns); - - temp.resize(ns); - temp_landair.resize(ns); - temp_sst.resize(ns); - heatflux_mixed.resize(ns); - heatflux_interior.resize(ns); - heat_mixed.resize(ns); - heat_interior.resize(ns); - forcing.resize(ns); - - for(int i=0; i<3; i++) { - B[i] = 0.0; - C[i] = 0.0; - } - - // DOECLIM parameters calculated from constants set in header - ocean_area = (1.0 - flnd) * earth_area; // m2 - cnum = rlam * flnd + bsi * (1.0 - flnd); // factor from sea-surface climate sensitivity to global mean - cden = rlam * flnd - ak * (rlam - bsi); // intermediate parameter - cfl = flnd * cnum / cden * q2co / S - bk * (rlam - bsi) / cden; // land climate feedback parameter, W/m2/K - cfs = (rlam * flnd - ak / (1.0 - flnd) * (rlam - bsi)) * cnum / cden * q2co / S + rlam * flnd / (1.0 - flnd) * bk * (rlam - bsi) / cden; // sea climate feedback parameter, W/m2/K - kls = bk * rlam * flnd / cden - ak * flnd * cnum / cden * q2co / S; // land-sea heat exchange coefficient, W/m2/K - keff = kcon * diff; // ocean heat diffusivity, m2/yr - taubot = pow(zbot,2) / keff; // ocean bottom diffusion time scale, yr - powtoheat = ocean_area * secs_per_Year / pow(10.0,22); // convert flux to total ocean heat - taucfs = cas / cfs; // sea climate feedback time scale, yr - taucfl = cal / cfl; // land climate feedback time scale, yr - taudif = pow(cas,2) / pow(csw,2) * M_PI / keff; // interior ocean heat uptake time scale, yr - tauksl = (1.0 - flnd) * cas / kls; // sea-land heat exchange time scale, yr - taukls = flnd * cal / kls; // land-sea heat exchange time scale, yr - - // Components of the analytical solution to the integral found in the temperature difference equation - // Third order bottom correction terms will be "more than sufficient" for simulations out to 2500 - // (Equation A.25, EK05, or 2.3.23, TK07) + H_LOG(logger, Logger::DEBUG) << "prepareToRun " << std::endl; + + if (tas_constrain.size()) { + Logger &glog = core->getGlobalLogger(); + H_LOG(glog, Logger::WARNING) + << "Temperature will be overwritten by user-supplied values!" + << std::endl; + } + + if (lo_warming_ratio != 0) { + Logger &glog = core->getGlobalLogger(); + H_LOG(glog, Logger::WARNING) + << "User supplied land-ocean warming ratio will be used to override " + "air over land and air over ocean temperatures! User set land-ocean " + "warming ratio: " + << lo_warming_ratio << std::endl; + } + + // Initializing all model components that depend on the number of timesteps + // (ns) + ns = core->getEndDate() - core->getStartDate() + 1; + + KT0 = std::vector(ns, 0.0); + KTA1 = std::vector(ns, 0.0); + KTB1 = std::vector(ns, 0.0); + KTA2 = std::vector(ns, 0.0); + KTB2 = std::vector(ns, 0.0); + KTA3 = std::vector(ns, 0.0); + KTB3 = std::vector(ns, 0.0); + + Ker.resize(ns); + + temp.resize(ns); + temp_landair.resize(ns); + temp_sst.resize(ns); + heatflux_mixed.resize(ns); + heatflux_interior.resize(ns); + heat_mixed.resize(ns); + heat_interior.resize(ns); + forcing.resize(ns); + lo_temp_landair.resize( + ns); //!< place to store land temp when lo is provided by users, deg C + lo_temp_oceanair.resize( + ns); //!< place to store land temp when lo is provided by users, deg C + lo_sst.resize( + ns); //!< place to store land temp when lo is provided by users, deg C + + for (int i = 0; i < 3; i++) { + B[i] = 0.0; + C[i] = 0.0; + } + + // DOECLIM model parameters, based on constants set in the header + // + // Constants & conversion factors + kcon = secs_per_Year / 10000; // conversion factor from cm2/s to m2/yr; + ocean_area = (1.0 - flnd) * earth_area; // m2 + + // Calculate climate feedback parameterisation + cnum = rlam * flnd + + bsi * (1.0 - flnd); // denominator used to calculate climate senstivity + // feedback parameters over land & sea + cden = rlam * flnd - + ak * (rlam - bsi); // another denominator use to calculate climate + // senstivity feedback parameters over land & sea + cfl = flnd * cnum / cden * qco2 / S - + bk * (rlam - bsi) / cden; // calculate the land climate feedback + // parameter (W/(m2K)) eq A.19 Kriegler 2005 + cfs = (rlam * flnd - ak / (1.0 - flnd) * (rlam - bsi)) * cnum / cden * qco2 / + S + + rlam * flnd / (1.0 - flnd) * bk * (rlam - bsi) / + cden; // calculate the sea climate feedback parameter (W/(m2K)) eq + // A.20 Kriegler 2005 + kls = bk * rlam * flnd / cden - ak * flnd * cnum / cden * qco2 / + S; // land-sea heat exchange coefficient + // (W/(m2K)) eq A.21 Kriegler 2005 + + // Calculate ocean heat flux parameters & conversion factors + keff = kcon * diff; // covert units of ocean heat diffusivity (m2/yr) + powtoheat = + ocean_area * secs_per_Year / + pow(10.0, + 22); // conversion factor to convert total ocean heat flux to (m2*s) + + // Get the six different times scales used in the numerical aproximation of + // the heat flux into the interior ocean See eq A.22 Kriegler 2005 for more + // details. + taubot = pow(zbot, 2) / + keff; // number of years for the ocean to equilibrates, bottom water + // has warmed as much as the surface (yr) + taucfs = cas / cfs; // sea climate feedback time scale (yr) + taucfl = cal / cfl; // land climate feedback time scale (yr) + taudif = pow(cas, 2) / pow(csw, 2) * M_PI / + keff; // interior ocean heat uptake time scale (yr) + tauksl = (1.0 - flnd) * cas / kls; // sea-land heat exchange time scale (yr) + taukls = flnd * cal / kls; // land-sea heat exchange time scale (yr) + + // Set up and solve the correction terms for the analytical solution for the + // DOECLIM integrands. + + // Set Up + // Components of the analytical solution to the integral found in the + // temperature difference equation Third order bottom correction terms will be + // "more than sufficient" for simulations out to 2500 (Equation A.25, EK05, + // or 2.3.23, TK07) + + // First order + KT0[ns - 1] = 4.0 - 2.0 * pow(2.0, 0.5); + KTA1[ns - 1] = + -8.0 * exp(-taubot / dt) + 4.0 * pow(2.0, 0.5) * exp(-0.5 * taubot / dt); + KTB1[ns - 1] = 4.0 * pow((M_PI * taubot / dt), 0.5) * + (1.0 + erf(pow(0.5 * taubot / dt, 0.5)) - + 2.0 * erf(pow(taubot / dt, 0.5))); + + // Second order + KTA2[ns - 1] = 8.0 * exp(-4.0 * taubot / dt) - + 4.0 * pow(2.0, 0.5) * exp(-2.0 * taubot / dt); + KTB2[ns - 1] = -8.0 * pow((M_PI * taubot / dt), 0.5) * + (1.0 + erf(pow((2.0 * taubot / dt), 0.5)) - + 2.0 * erf(2.0 * pow((taubot / dt), 0.5))); + + // Third order + KTA3[ns - 1] = -8.0 * exp(-9.0 * taubot / dt) + + 4.0 * pow(2.0, 0.5) * exp(-4.5 * taubot / dt); + KTB3[ns - 1] = 12.0 * pow((M_PI * taubot / dt), 0.5) * + (1.0 + erf(pow((4.5 * taubot / dt), 0.5)) - + 2.0 * erf(3.0 * pow((taubot / dt), 0.5))); + + // Calculate the kernel component vectors + for (int i = 0; i < (ns - 1); i++) { // First order - KT0[ns-1] = 4.0 - 2.0 * pow(2.0, 0.5); - KTA1[ns-1] = -8.0 * exp(-taubot / double(dt)) + 4.0 * pow(2.0, 0.5) * exp(-0.5 * taubot / double(dt)); - KTB1[ns-1] = 4.0 * pow((M_PI * taubot / double(dt)), 0.5) * (1.0 + erf(pow(0.5 * taubot / double(dt), 0.5)) - 2.0 * erf(pow(taubot / double(dt), 0.5))); + KT0[i] = 4.0 * pow(double(ns - i), 0.5) - + 2.0 * pow(double(ns + 1 - i), 0.5) - + 2.0 * pow(double(ns - 1 - i), 0.5); + KTA1[i] = + -8.0 * pow(double(ns - i), 0.5) * exp(-taubot / dt / double(ns - i)) + + 4.0 * pow(double(ns + 1 - i), 0.5) * + exp(-taubot / dt / double(ns + 1 - i)) + + 4.0 * pow(double(ns - 1 - i), 0.5) * + exp(-taubot / dt / double(ns - 1 - i)); + KTB1[i] = 4.0 * pow((M_PI * taubot / dt), 0.5) * + (erf(pow((taubot / dt / double(ns - 1 - i)), 0.5)) + + erf(pow((taubot / dt / double(ns + 1 - i)), 0.5)) - + 2.0 * erf(pow((taubot / dt / double(ns - i)), 0.5))); // Second order - KTA2[ns-1] = 8.0 * exp(-4.0 * taubot / double(dt)) - 4.0 * pow(2.0, 0.5) * exp(-2.0 * taubot / double(dt)); - KTB2[ns-1] = -8.0 * pow((M_PI * taubot / double(dt)), 0.5) * (1.0 + erf(pow((2.0 * taubot / double(dt)), 0.5)) - 2.0 * erf(2.0 * pow((taubot / double(dt)), 0.5)) ); + KTA2[i] = 8.0 * pow(double(ns - i), 0.5) * + exp(-4.0 * taubot / dt / double(ns - i)) - + 4.0 * pow(double(ns + 1 - i), 0.5) * + exp(-4.0 * taubot / dt / double(ns + 1 - i)) - + 4.0 * pow(double(ns - 1 - i), 0.5) * + exp(-4.0 * taubot / dt / double(ns - 1 - i)); + KTB2[i] = -8.0 * pow((M_PI * taubot / dt), 0.5) * + (erf(2.0 * pow((taubot / dt / double(ns - 1 - i)), 0.5)) + + erf(2.0 * pow((taubot / dt / double(ns + 1 - i)), 0.5)) - + 2.0 * erf(2.0 * pow((taubot / dt / double(ns - i)), 0.5))); // Third order - KTA3[ns-1] = -8.0 * exp(-9.0 * taubot / double(dt)) + 4.0 * pow(2.0, 0.5) * exp(-4.5 * taubot / double(dt)); - KTB3[ns-1] = 12.0 * pow((M_PI * taubot / double(dt)), 0.5) * (1.0 + erf(pow((4.5 * taubot / double(dt)), 0.5)) - 2.0 * erf(3.0 * pow((taubot / double(dt)), 0.5)) ); - - // Calculate the kernel component vectors - for(int i=0; i<(ns-1); i++) { - - // First order - KT0[i] = 4.0 * pow((double(ns-i)), 0.5) - 2.0 * pow((double(ns+1-i)), 0.5) - 2.0 * pow(double(ns-1-i), 0.5); - KTA1[i] = -8.0 * pow(double(ns-i), 0.5) * exp(-taubot / double(dt) / double(ns-i)) + 4.0 * pow(double(ns+1-i), 0.5) * exp(-taubot / double(dt) / double(ns+1-i)) + 4.0 * pow(double(ns-1-i), 0.5) * exp(-taubot/double(dt) / double(ns-1-i)); - KTB1[i] = 4.0 * pow((M_PI * taubot / double(dt)), 0.5) * ( erf(pow((taubot / double(dt) / double(ns-1-i)), 0.5)) + erf(pow((taubot / double(dt) / double(ns+1-i)), 0.5)) - 2.0 * erf(pow((taubot / double(dt) / double(ns-i)), 0.5)) ); - - // Second order - KTA2[i] = 8.0 * pow(double(ns-i), 0.5) * exp(-4.0 * taubot / double(dt) / double(ns-i)) - 4.0 * pow(double(ns+1-i), 0.5) * exp(-4.0 * taubot / double(dt) / double(ns+1-i)) - 4.0 * pow(double(ns-1-i), 0.5) * exp(-4.0 * taubot / double(dt) / double(ns-1-i)); - KTB2[i] = -8.0 * pow((M_PI * taubot / double(dt)), 0.5) * ( erf(2.0 * pow((taubot / double(dt) / double(ns-1-i)), 0.5)) + erf(2.0 * pow((taubot / double(dt) / double(ns+1-i)), 0.5)) - 2.0 * erf(2.0 * pow((taubot / double(dt) / double(ns-i)), 0.5)) ); - - // Third order - KTA3[i] = -8.0 * pow(double(ns-i), 0.5) * exp(-9.0 * taubot / double(dt) / double(ns-i)) + 4.0 * pow(double(ns+1-i), 0.5) * exp(-9.0 * taubot / double(dt) / double(ns+1-i)) + 4.0 * pow(double(ns-1-i), 0.5) * exp(-9.0 * taubot / double(dt) / double(ns-1-i)); - KTB3[i] = 12.0 * pow((M_PI * taubot / double(dt)), 0.5) * ( erf(3.0 * pow((taubot / double(dt) / double(ns-1-i)), 0.5)) + erf(3.0 * pow((taubot / double(dt) / double(ns+1-i)), 0.5)) - 2.0 * erf(3.0 * pow((taubot / double(dt) / double(ns-i)), 0.5)) ); - } - - // Sum up the kernel components - for(int i=0; igetStartDate(); + + // Calculate the total aresol forcing from aerosol-radiation interactions and + // the aerosol-cloud interactions so that that total aerosol forcing can be + // adjusted by the aerosol forcing scaling factor. + double aero_forcing = + core->sendMessage(M_GETDATA, D_RF_BC, message_data(runToDate)) + .value(U_W_M2) + + core->sendMessage(M_GETDATA, D_RF_OC, message_data(runToDate)) + .value(U_W_M2) + + core->sendMessage(M_GETDATA, D_RF_NH3, message_data(runToDate)) + .value(U_W_M2) + + core->sendMessage(M_GETDATA, D_RF_SO2, message_data(runToDate)) + .value(U_W_M2) + + core->sendMessage(M_GETDATA, D_RF_ACI, message_data(runToDate)) + .value(U_W_M2); + + double volcanic_forcing = + double(core->sendMessage(M_GETDATA, D_RF_VOL, message_data(runToDate))); + + // Adjust total forcing to account for the aerosol and volcanic forcing + // scaling factor + forcing[tstep] = + double(core->sendMessage(M_GETDATA, D_RF_TOTAL, message_data(runToDate)) + .value(U_W_M2)) - + (1.0 - alpha) * aero_forcing - (1.0 - volscl) * volcanic_forcing; + + // Initialize variables for time-stepping through the model + double DQ1 = 0.0; + double DQ2 = 0.0; + double QC1 = 0.0; + double QC2 = 0.0; + double DelQL = 0.0; + double DelQO = 0.0; + double DPAST1 = 0.0; + double DPAST2 = 0.0; + double DTEAUX1 = 0.0; + double DTEAUX2 = 0.0; + + // Reset the endogenous varibales for this time step + temp[tstep] = 0.0; + temp_landair[tstep] = 0.0; + temp_sst[tstep] = 0.0; + heat_mixed[tstep] = 0.0; + heat_interior[tstep] = 0.0; + heatflux_mixed[tstep] = 0.0; + heatflux_interior[tstep] = 0.0; + + // Assume land and ocean forcings are equal to global forcing + std::vector QL = forcing; + std::vector QO = forcing; + + if (tstep > 0) { + + DelQL = QL[tstep] - QL[tstep - 1]; + DelQO = QO[tstep] - QO[tstep - 1]; + + // Assume linear forcing change between tstep and tstep+1 + QC1 = (DelQL / cal * (1.0 / taucfl + 1.0 / taukls) - + bsi * DelQO / cas / taukls); + QC2 = (DelQO / cas * (1.0 / taucfs + bsi / tauksl) - DelQL / cal / tauksl); + QC1 = QC1 * pow(dt, 2.0) / 12.0; + QC2 = QC2 * pow(dt, 2.0) / 12.0; + + // ----------------- Initial Conditions -------------------- + // Initialization of temperature and forcing vector: + // Factor 1/2 in front of Q in Equation A.27, EK05, and Equation 2.3.27, + // TK07 is a typo! Assumption: linear forcing change between n and n+1 + DQ1 = 0.5 * dt / cal * (QL[tstep] + QL[tstep - 1]); + DQ2 = 0.5 * dt / cas * (QO[tstep] + QO[tstep - 1]); + DQ1 = DQ1 + QC1; + DQ2 = DQ2 + QC2; + + // ---------- SOLVE MODEL ------------------ + // Calculate temperatures + for (int i = 0; i <= tstep; i++) { + DPAST2 = DPAST2 + temp_sst[i] * Ker[ns - tstep + i - 1]; } - - //------------------------------------------------------------------ - // Matrices of difference equation system B*T(i+1) = Q(i) + A*T(i) - // T = (TL,TS) - // (Equations 2.3.24 and 2.3.27, TK07) - B[0] = 1.0 + double(dt) / (2.0 * taucfl) + double(dt) / (2.0 * taukls); - B[1] = double(-dt) / (2.0 * taukls) * bsi; - B[2] = double(-dt) / (2.0 * tauksl); - B[3] = 1.0 + double(dt) / (2.0 * taucfs) + double(dt) / (2.0 * tauksl) * bsi + 2.0 * fso * pow((double(dt) / taudif), 0.5); - - A[0] = 1.0 - double(dt) / (2.0 * taucfl) - double(dt) / (2.0 * taukls); - A[1] = double(dt) / (2.0 * taukls) * bsi; - A[2] = double(dt) / (2.0 * tauksl); - A[3] = 1.0 - double(dt) / (2.0 * taucfs) - double(dt) / (2.0 * tauksl) * bsi + Ker[ns-1] * fso * pow((double(dt) / taudif), 0.5); - for (int i=0; i<4; i++) { - B[i] = B[i] + C[i]; - A[i] = A[i] + C[i]; + DPAST2 = DPAST2 * fso * pow((dt / taudif), 0.5); + + DTEAUX1 = A[0] * temp_landair[tstep - 1] + A[1] * temp_sst[tstep - 1]; + DTEAUX2 = A[2] * temp_landair[tstep - 1] + A[3] * temp_sst[tstep - 1]; + + temp_landair[tstep] = + IB[0] * (DQ1 + DPAST1 + DTEAUX1) + IB[1] * (DQ2 + DPAST2 + DTEAUX2); + temp_sst[tstep] = + IB[2] * (DQ1 + DPAST1 + DTEAUX1) + IB[3] * (DQ2 + DPAST2 + DTEAUX2); + } else { // Handle the initial conditions + temp_landair[0] = 0.0; + temp_sst[0] = 0.0; + } + temp[tstep] = + flnd * temp_landair[tstep] + (1.0 - flnd) * bsi * temp_sst[tstep]; + + // If the user has supplied temperature data, use that instead + if (tas_constrain.size() && runToDate >= tas_constrain.firstdate() && + runToDate <= tas_constrain.lastdate()) { + H_LOG(logger, Logger::WARNING) + << "** Overwriting temperatures with user-supplied value" << std::endl; + temp[tstep] = tas_constrain.get(runToDate); + + // Now back-calculate the land and ocean values, overwriting what was + // computed above + temp_landair[tstep] = + (temp[tstep] - (1.0 - flnd) * bsi * temp_sst[tstep]) / flnd; + temp_sst[tstep] = + (temp[tstep] - flnd * temp_landair[tstep]) / ((1.0 - flnd) * bsi); + } + + // Calculate ocean heat uptake [W/m^2] + // heatflux[tstep] captures in the heat flux in the period between tstep-1 and + // tstep. Numerical implementation of Equation 2.7, EK05, or Equation 2.3.13, + // TK07) + // ------------------------------------------------------------------------ + if (tstep > 0) { + heatflux_mixed[tstep] = cas * (temp_sst[tstep] - temp_sst[tstep - 1]); + for (int i = 0; i < tstep; i++) { + heatflux_interior[tstep] = + heatflux_interior[tstep] + temp_sst[i] * Ker[ns - tstep + i]; } - - // Calculate the inverse of B - invert_1d_2x2_matrix(B, IB); + heatflux_interior[tstep] = + cas * fso / pow((taudif * dt), 0.5) * + (2.0 * temp_sst[tstep] - heatflux_interior[tstep]); + heat_mixed[tstep] = + heat_mixed[tstep - 1] + heatflux_mixed[tstep] * (powtoheat * dt); + heat_interior[tstep] = heat_interior[tstep - 1] + + heatflux_interior[tstep] * (fso * powtoheat * dt); + } + + else { // Handle the initial conditions + heatflux_mixed[0] = 0.0; + heatflux_interior[0] = 0.0; + heat_mixed[0] = 0.0; + heat_interior[0] = 0.0; + } + + setoutputs(tstep); + H_LOG(logger, Logger::DEBUG) + << " tas=" << tas << " in " << runToDate << std::endl; } - //------------------------------------------------------------------------------ // documentation is inherited -void TemperatureComponent::run( const double runToDate ) { - H_LOG( logger, Logger::DEBUG ) << "temperature run " << runToDate << std::endl; - - // Commented section below is for case of user-specified temperature record. - // Temperature component can't handle that at the moment! - - //// We track total radiative forcing using internal variable `internal_Ftot` - //// Need to do this because if we're subject to a user constraint (being forced - //// to match a temperature record), need to track the Ftot that *would* have - //// produced the observed temperature record. This way there's a smooth - //// transition when we exit the constraint period, after which internal_Ftot - //// will rise in parallel with the value reported by ForcingComponent. - - // If we never had any temperature constraint, `internal_Ftot` will match `Ftot`. - // - // If the user has supplied temperature data, use that (except if past its end) - if( tgav_constrain.size() && runToDate <= tgav_constrain.lastdate() ) { - // H_LOG( logger, Logger::NOTICE ) << "** Using user-supplied temperature" << std::endl; - H_LOG( logger, Logger::SEVERE ) << "** ERROR - Temperature can't currently handle user-supplied temperature" << std::endl; - H_THROW("User-supplied temperature not yet implemented.") +unitval TemperatureComponent::getData(const std::string &varName, + const double date) { + + unitval returnval; + + // If a date is supplied, get the needed value from the + // vectors. Some values, such as model parameters, don't have + // time-indexed values, so asking for one of those with a date + // is an error. + H_ASSERT(date <= core->getCurrentDate(), "Date must be <= current date."); + int tstep = date - core->getStartDate(); + + if (varName == D_GLOBAL_TAS) { + if (date == Core::undefinedIndex()) { + returnval = tas; + } else { + returnval = unitval(temp[tstep], U_DEGC); } - - // Some needed inputs - int tstep = runToDate - core->getStartDate(); - double aero_forcing = - double(core->sendMessage( M_GETDATA, D_RF_BC ).value( U_W_M2 )) + double(core->sendMessage( M_GETDATA, D_RF_OC).value( U_W_M2 )) + - double(core->sendMessage( M_GETDATA, D_RF_SO2d ).value( U_W_M2 )) + double(core->sendMessage( M_GETDATA, D_RF_SO2i ).value( U_W_M2 )); - double volcanic_forcing = double(core->sendMessage(M_GETDATA, D_RF_VOL)); - - forcing[tstep] = double(core->sendMessage(M_GETDATA, D_RF_TOTAL).value(U_W_M2)) - - (1.0 - alpha) * aero_forcing - - (1.0 - volscl) * volcanic_forcing; - - // Initialize variables for time-stepping through the model - double DQ1 = 0.0; - double DQ2 = 0.0; - double QC1 = 0.0; - double QC2 = 0.0; - double DelQL = 0.0; - double DelQO = 0.0; - double DPAST1 = 0.0; - double DPAST2 = 0.0; - double DTEAUX1 = 0.0; - double DTEAUX2 = 0.0; - - // Reset the endogenous varibales for this time step - temp[tstep] = 0.0; - temp_landair[tstep] = 0.0; - temp_sst[tstep] = 0.0; - heat_mixed[tstep] = 0.0; - heat_interior[tstep] = 0.0; - heatflux_mixed[tstep] = 0.0; - heatflux_interior[tstep] = 0.0; - - // Assume land and ocean forcings are equal to global forcing - std::vector QL = forcing; - std::vector QO = forcing; - - if (tstep > 0) { - - DelQL = QL[tstep] - QL[tstep - 1]; - DelQO = QO[tstep] - QO[tstep - 1]; - - // Assume linear forcing change between tstep and tstep+1 - QC1 = (DelQL/cal*(1.0/taucfl+1.0/taukls)-bsi*DelQO/cas/taukls); - QC2 = (DelQO/cas*(1.0/taucfs+bsi/tauksl)-DelQL/cal/tauksl); - QC1 = QC1 * pow(double(dt), 2.0)/12.0; - QC2 = QC2 * pow(double(dt), 2.0)/12.0; - - // ----------------- Initial Conditions -------------------- - // Initialization of temperature and forcing vector: - // Factor 1/2 in front of Q in Equation A.27, EK05, and Equation 2.3.27, TK07 is a typo! - // Assumption: linear forcing change between n and n+1 - DQ1 = 0.5*double(dt)/cal*(QL[tstep]+QL[tstep-1]); - DQ2 = 0.5*double(dt)/cas*(QO[tstep]+QO[tstep-1]); - DQ1 = DQ1 + QC1; - DQ2 = DQ2 + QC2; - - // ---------- SOLVE MODEL ------------------ - // Calculate temperatures - for(int i = 0; i <= tstep; i++) { - DPAST2 = DPAST2 + temp_sst[i] * Ker[ns-tstep+i-1]; - } - DPAST2 = DPAST2 * fso * pow((double(dt)/taudif), 0.5); - - DTEAUX1 = A[0] * temp_landair[tstep-1] + A[1] * temp_sst[tstep-1]; - DTEAUX2 = A[2] * temp_landair[tstep-1] + A[3] * temp_sst[tstep-1]; - - temp_landair[tstep] = IB[0] * (DQ1 + DPAST1 + DTEAUX1) + IB[1] * (DQ2 + DPAST2 + DTEAUX2); - temp_sst[tstep] = IB[2] * (DQ1 + DPAST1 + DTEAUX1) + IB[3] * (DQ2 + DPAST2 + DTEAUX2); + } else if (varName == D_LAND_TAS) { + if (lo_warming_ratio != 0) { + if (date == Core::undefinedIndex()) { + returnval = lo_tas_land; + } else { + returnval = unitval(lo_temp_landair[tstep], U_DEGC); + } + } else { + if (date == Core::undefinedIndex()) { + returnval = tas_land; + } else { + returnval = unitval(temp_landair[tstep], U_DEGC); + } } - else { // Handle the initial conditions - temp_landair[0] = 0.0; - temp_sst[0] = 0.0; + } else if (varName == D_OCEAN_TAS) { + if (lo_warming_ratio != 0) { + if (date == Core::undefinedIndex()) { + returnval = lo_tas_ocean; + } else { + returnval = unitval(lo_temp_oceanair[tstep], U_DEGC); + } + } else { + if (date == Core::undefinedIndex()) { + returnval = tas_ocean; + } else { + returnval = bsi * unitval(temp_sst[tstep], U_DEGC); + } } - temp[tstep] = flnd * temp_landair[tstep] + (1.0 - flnd) * bsi * temp_sst[tstep]; - - // Calculate ocean heat uptake [W/m^2] - // heatflux[tstep] captures in the heat flux in the period between tstep-1 and tstep. - // Numerical implementation of Equation 2.7, EK05, or Equation 2.3.13, TK07) - // ------------------------------------------------------------------------ - if (tstep > 0) { - heatflux_mixed[tstep] = cas*(temp_sst[tstep] - temp_sst[tstep-1]); - for (int i=0; i < tstep; i++) { - heatflux_interior[tstep] = heatflux_interior[tstep] + temp_sst[i]*Ker[ns-tstep+i]; - } - heatflux_interior[tstep] = cas*fso/pow((taudif*dt), 0.5)*(2.0*temp_sst[tstep] - heatflux_interior[tstep]); - heat_mixed[tstep] = heat_mixed[tstep-1] + heatflux_mixed[tstep] * (powtoheat*dt); - heat_interior[tstep] = heat_interior[tstep-1] + heatflux_interior[tstep] * (fso*powtoheat*dt); + } else if (varName == D_SST) { + if (lo_warming_ratio != 0) { + if (date == Core::undefinedIndex()) { + returnval = lo_seast; + } else { + returnval = unitval(lo_sst[tstep], U_DEGC); + } + } else { + if (date == Core::undefinedIndex()) { + returnval = sst; + } else { + returnval = unitval(temp_sst[tstep], U_DEGC); + } } - - else { // Handle the initial conditions - heatflux_mixed[0] = 0.0; - heatflux_interior[0] = 0.0; - heat_mixed[0] = 0.0; - heat_interior[0] = 0.0; + } else if (varName == D_FLUX_MIXED) { + if (date == Core::undefinedIndex()) { + returnval = flux_mixed; + } else { + returnval = unitval(heatflux_mixed[tstep], U_W_M2); } - - setoutputs(tstep); - H_LOG( logger, Logger::DEBUG ) << " tgav=" << tgav << " in " << runToDate << std::endl; -} - -//------------------------------------------------------------------------------ -// documentation is inherited -unitval TemperatureComponent::getData( const std::string& varName, - const double date ) { - - unitval returnval; - - if(date == Core::undefinedIndex()) { - // If no date is supplied, return the current value - if( varName == D_GLOBAL_TEMP ) { - returnval = tgav; - } else if( varName == D_GLOBAL_TEMPEQ ) { - returnval = tgaveq; - } else if( varName == D_LAND_AIR_TEMP ) { - returnval = tgav_land; - } else if( varName == D_OCEAN_SURFACE_TEMP ) { - returnval = tgav_sst; - } else if( varName == D_OCEAN_AIR_TEMP ) { - returnval = tgav_oceanair; - } else if( varName == D_DIFFUSIVITY ) { - returnval = diff; - } else if( varName == D_AERO_SCALE ) { - returnval = alpha; - } else if( varName == D_FLUX_MIXED ) { - returnval = flux_mixed; - } else if( varName == D_FLUX_INTERIOR ) { - returnval = flux_interior; - } else if( varName == D_HEAT_FLUX) { - returnval = heatflux; - } else if( varName == D_ECS ) { - returnval = S; - } else if(varName == D_VOLCANIC_SCALE) { - returnval = volscl; - } else { - H_THROW( "Caller is requesting unknown variable: " + varName ); - } + } else if (varName == D_FLUX_INTERIOR) { + if (date == Core::undefinedIndex()) { + returnval = flux_interior; + } else { + returnval = unitval(heatflux_interior[tstep], U_W_M2); } - else { - // If a date is supplied, get the needed value from the - // vectors. Some values, such as model parameters, don't have - // time-indexed values, so asking for one of those with a date - // is an error. - H_ASSERT(date <= core->getCurrentDate(), "Date must be <= current date."); - int tstep = date - core->getStartDate(); - - if( varName == D_GLOBAL_TEMP ) { - returnval = unitval(temp[tstep], U_DEGC); - } else if( varName == D_LAND_AIR_TEMP ) { - returnval = unitval(temp_landair[tstep], U_DEGC); - } else if( varName == D_OCEAN_SURFACE_TEMP ) { - returnval = unitval(temp_sst[tstep], U_DEGC); - } else if( varName == D_OCEAN_AIR_TEMP ) { - returnval = bsi * unitval(temp_sst[tstep], U_DEGC); - } else if( varName == D_GLOBAL_TEMPEQ ) { - returnval = unitval(temp[tstep], U_DEGC); - } else if( varName == D_FLUX_MIXED ) { - returnval = unitval(heatflux_mixed[tstep], U_W_M2); - } else if( varName == D_FLUX_INTERIOR ) { - returnval = unitval(heatflux_interior[tstep], U_W_M2); - } else if( varName == D_HEAT_FLUX) { - double value = heatflux_mixed[tstep] + fso*heatflux_interior[tstep]; - returnval = unitval(value, U_W_M2); - } + } else if (varName == D_HEAT_FLUX) { + if (date == Core::undefinedIndex()) { + returnval = heatflux; + } else { + double value = heatflux_mixed[tstep] + fso * heatflux_interior[tstep]; + returnval = unitval(value, U_W_M2); } - + } else if (varName == D_TAS_CONSTRAIN) { + H_ASSERT(date != Core::undefinedIndex(), + "Date required for tas constraint"); + if (tas_constrain.exists(date)) { + returnval = tas_constrain.get(date); + } else { + H_LOG(logger, Logger::DEBUG) + << "No tas constraint for requested date " << date + << ". Returning missing value." << std::endl; + returnval = unitval(MISSING_FLOAT, U_DEGC); + } + } else if (varName == D_DIFFUSIVITY) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for diffusivity"); + returnval = diff; + } else if (varName == D_AERO_SCALE) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for aero scaler"); + returnval = alpha; + } else if (varName == D_ECS) { + H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for ECS"); + returnval = S; + } else if (varName == D_VOLCANIC_SCALE) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for volcanic scaler"); + returnval = volscl; + } else if (varName == D_QCO2) { + H_ASSERT(date == Core::undefinedIndex(), "Date not allowed for q2co2"); + returnval = unitval(qco2, U_W_M2); + } else if (varName == D_LO_WARMING_RATIO) { + H_ASSERT(date == Core::undefinedIndex(), + "Date not allowed for land ocean warming ratio"); + returnval = lo_warming_ratio; return returnval; -} - - -void TemperatureComponent::reset(double time) -{ - // We take a slightly different approach in this component's reset method than we have in other components. The - // temperature component doesn't have its own time counter, and it stores its history in a collection of double - // vectors. Therefore, all we do here is set the unitval versions of that stored data to their values from the - // vectors. - if(time < core->getStartDate()) // in this case, reset to the starting value. - time = core->getStartDate(); + } else { + H_THROW("Caller is requesting unknown variable: " + varName); + } - int tstep = time - core->getStartDate(); - setoutputs(tstep); - H_LOG(logger, Logger::NOTICE) - << getComponentName() << " reset to time= " << time << "\n"; + return returnval; } - - - //------------------------------------------------------------------------------ // documentation is inherited -void TemperatureComponent::shutDown() { - H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; - logger.close(); +void TemperatureComponent::reset(double time) { + // We take a slightly different approach in this component's reset method than + // we have in other components. The temperature component doesn't have its + // own time counter, and it stores its history in a collection of double + // vectors. Therefore, all we do here is set the unitval versions of that + // stored data to their values from the vectors. + if (time < core->getStartDate()) // in this case, reset to the starting value. + time = core->getStartDate(); + + int tstep = time - core->getStartDate(); + setoutputs(tstep); + H_LOG(logger, Logger::NOTICE) + << getComponentName() << " reset to time= " << time << "\n"; } //------------------------------------------------------------------------------ // documentation is inherited -void TemperatureComponent::accept( AVisitor* visitor ) { - visitor->visit( this ); -} - - -void TemperatureComponent::setoutputs(int tstep) -{ - double temp_oceanair; - - flux_mixed.set( heatflux_mixed[tstep], U_W_M2, 0.0 ); - flux_interior.set( heatflux_interior[tstep], U_W_M2, 0.0 ); - heatflux.set( heatflux_mixed[tstep] + fso * heatflux_interior[tstep], U_W_M2, 0.0 ); - tgav.set(temp[tstep], U_DEGC, 0.0); - tgaveq.set(temp[tstep], U_DEGC, 0.0); // per comment line 140 of temperature_component.hpp - tgav_land.set(temp_landair[tstep], U_DEGC, 0.0); - tgav_sst.set(temp_sst[tstep], U_DEGC, 0.0); - temp_oceanair = bsi * temp_sst[tstep]; - tgav_oceanair.set(temp_oceanair, U_DEGC, 0.0); +void TemperatureComponent::shutDown() { + H_LOG(logger, Logger::DEBUG) << "goodbye " << getComponentName() << std::endl; + logger.close(); } +//------------------------------------------------------------------------------ +// documentation is inherited +void TemperatureComponent::accept(AVisitor *visitor) { visitor->visit(this); } + +void TemperatureComponent::setoutputs(int tstep) { + double temp_oceanair; + + flux_mixed.set(heatflux_mixed[tstep], U_W_M2, 0.0); + flux_interior.set(heatflux_interior[tstep], U_W_M2, 0.0); + heatflux.set(heatflux_mixed[tstep] + fso * heatflux_interior[tstep], U_W_M2, + 0.0); + tas.set(temp[tstep], U_DEGC, 0.0); + tas_land.set(temp_landair[tstep], U_DEGC, 0.0); + sst.set(temp_sst[tstep], U_DEGC, 0.0); + temp_oceanair = bsi * temp_sst[tstep]; + tas_ocean.set(temp_oceanair, U_DEGC, 0.0); + + // If a user provided land-ocean warming ratio is provided, use it to over + // write DOECLIM's land & ocean temperature. + if (lo_warming_ratio != 0) { + + // Calculations using tas weighted average and ratio (land warming/ocean + // warming = lo_warming_ratio) + double temp_oceanair_constrain = + temp[tstep] / ((lo_warming_ratio * flnd) + (1 - flnd)); + double temp_landair_constrain = temp_oceanair_constrain * lo_warming_ratio; + double temp_sst_constrain = temp_oceanair_constrain / bsi; + + lo_temp_landair[tstep] = temp_landair_constrain; + lo_temp_oceanair[tstep] = temp_oceanair_constrain; + lo_sst[tstep] = temp_sst_constrain; + + // Store these the values, notes these are values with non dates. + lo_tas_land.set(temp_landair_constrain, U_DEGC, 0.0); + lo_seast.set(temp_sst_constrain, U_DEGC, 0.0); + lo_tas_ocean.set(temp_oceanair_constrain, U_DEGC, 0.0); + } + + H_LOG(logger, Logger::DEBUG) + << "Land-ocean warming ratio: " << tas_land / tas_ocean << std::endl; + H_LOG(logger, Logger::DEBUG) << "Global: " << tas << std::endl; + H_LOG(logger, Logger::DEBUG) << "Land Temp: " << tas_land << std::endl; + H_LOG(logger, Logger::DEBUG) << "Ocean Temp: " << tas_ocean << std::endl; } +} // namespace Hector diff --git a/src/testing/Makefile b/src/testing/Makefile deleted file mode 100644 index f1a1a5f85..000000000 --- a/src/testing/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -## This Makefile is meant to be invoked recursively from the top level directory - -SRCS = $(wildcard *.cpp) -OBJS = $(SRCS:.cpp=.o) -DEPS = $(SRCS:.cpp=.d) - - --include $(DEPS) - -LDFLAGS += -L$(GTLIB) -Wl,-rpath=$(GTLIB) - -hector-unit-tests: $(OBJS) - $(CXX) $(LDFLAGS) -o hector-unit-tests *.o ../build/*.o ../logger.o -lgtest -lpthread -lm - -clean: - -rm *.o - -rm hector-unit-tests diff --git a/src/testing/test_logger.cpp b/src/testing/test_logger.cpp deleted file mode 100644 index 1aad597c0..000000000 --- a/src/testing/test_logger.cpp +++ /dev/null @@ -1,119 +0,0 @@ -/* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute - - Please see the accompanying file LICENSE.md for additional licensing - information. -*/ -/* - * test_logger.hpp - * hector - * - * Created by Pralit Patel on 9/23/10. - * - */ - -#include -#include -#include - -#include "h_exception.hpp" -#include "logger.hpp" - -class TestLogger : public testing::Test { -// google test fixtures must be protected -protected: - // fixture methods - virtual void SetUp() { - testFile1 = "logger_test_file1.txt"; - testFile2 = "logger_test_file2.txt"; - // avoid stomping over someone else's files. - H_ASSERT( !fileExists( testFile1.c_str() ), "testfile1 exists" ); - H_ASSERT( !fileExists( testFile2.c_str() ), "testfile2 exists" ); - - loggerNoEcho.open( testFile1, false, true, Logger::WARNING ); - std::streambuf* tmpBuff = std::cout.rdbuf( &consoleTestBuff ); - loggerEcho.open( testFile2, true, true, Logger::WARNING ); - - // now that the logger has attached to our test buffer put the - // original back into cout - std::cout.rdbuf( tmpBuff ); - } - - // only define TearDown if it is needed - virtual void TearDown() { - // close the loggers explicitly so that the temp files can be deleted. - loggerNoEcho.close(); - loggerEcho.close(); - - // attempt to delete the temp files - int retCode = remove( testFile1.c_str() ); - if( retCode != 0 ) - std::cout << "Warning could not remove temp file " << testFile1 << std::endl; - retCode = remove( testFile2.c_str() ); - if( retCode != 0 ) - std::cout << "Warning could not remove temp file " << testFile2 << std::endl; - } - - // other helper methods - bool fileExists( const char* fileName ) const { - std::ifstream test( fileName ); - - // this conversion to bool will let us know if the file successfully - // opened - return test; - } - - std::string testFile1; - std::string testFile2; - - Logger loggerNoEcho; - Logger loggerEcho; - - std::stringbuf consoleTestBuff; -}; - -TEST_F(TestLogger, UninitializedLog) { - Logger unitialized; - ASSERT_THROW(H_LOG(unitialized, Logger::SEVERE), h_exception); -} - -TEST_F(TestLogger, PriorityTooLow) { - H_LOG(loggerEcho, Logger::DEBUG) << "This message should not show up" << std::endl; - - ASSERT_EQ(consoleTestBuff.str(), ""); -} - -TEST_F(TestLogger, PriorityHighEnough) { - H_LOG(loggerEcho, Logger::SEVERE) << "This message should show up" << std::endl; - - // TODO: what to do about the non-deterministic logging message - const std::string bufferValue = consoleTestBuff.str(); - EXPECT_NE(bufferValue, ""); - - // TODO: create a more strict regular expression for what we are expecting. - testing::internal::RE regex( ".*This message should show up" ); - ASSERT_TRUE(testing::internal::RE::PartialMatch( bufferValue, regex ) ) << "The actual value was " << bufferValue; - -} - -TEST_F(TestLogger, PrioritySameAsMin) { - H_LOG(loggerEcho, Logger::WARNING) << "This message should show up" << std::endl; - - // TODO: what to do about the non-deterministic logging message - ASSERT_NE(consoleTestBuff.str(), ""); -} - -TEST_F(TestLogger, NoEchoDoesNotEcho) { - H_LOG(loggerNoEcho, Logger::SEVERE) << "This message should not show up" << std::endl; - - ASSERT_EQ(consoleTestBuff.str(), ""); -} - -TEST_F(TestLogger, LogToClosedLogger) { - loggerEcho.close(); - EXPECT_THROW( - H_LOG(loggerEcho, Logger::SEVERE) - << "This message should not show up" << std::endl, - h_exception ); - ASSERT_EQ(consoleTestBuff.str(), ""); -} diff --git a/src/testing/test_restart.cpp b/src/testing/test_restart.cpp deleted file mode 100644 index 9a1aa30e6..000000000 --- a/src/testing/test_restart.cpp +++ /dev/null @@ -1,120 +0,0 @@ -/* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute - - Please see the accompanying file LICENSE.md for additional licensing - information. -*/ -/* - * test_restart.cpp - * hector - * - * Created by Pralit Patel on 3/28/11. - * - */ - -#include -#include -#include -#include - -#include "h_exception.hpp" -#include "core/core.hpp" -#include "input/ini_to_core_reader.hpp" -#include "visitors/csv_outputstream_visitor.hpp" -#include "visitors/ini_restart_visitor.hpp" - -using namespace std; - -/*! \brief Unit tests for the restart ability of hector. - * - * This will run the full model to capture the correct output. Then run the model - * part way. The restart file generated will then be used to run the model the - * rest of the way. The output captured from the two segments will be combined and - * compared to the full output to determine correctness. The CSVOutputStreamVisitor - * is used to compare results. - */ -class TestRestart : public testing::Test { -public: - // google test fixtures must be protected -protected: - // fixture methods - virtual void SetUp() { - tempRestartFileName = "test_restart_file.ini"; - // avoid stomping over someone else's files. - H_ASSERT( !fileExists( tempRestartFileName.c_str() ), tempRestartFileName.c_str() ); - } - - // only define TearDown if it is needed - virtual void TearDown() { - // attempt to delete the temp file - int retCode = remove( tempRestartFileName.c_str() ); - if( retCode != 0 ) - std::cout << "Warning could not remove temp file " << tempRestartFileName << std::endl; - } - - // other helper methods - bool fileExists( const char* fileName ) const { - std::ifstream test( fileName ); - - // this conversion to bool will let us know if the file successfully - // opened - return test; - } - - std::string tempRestartFileName; -}; - -TEST_F(TestRestart, All) { - try { - Core full, to2000, from2000; - INIToCoreReader fullReader( &full ), to2000Reader( &to2000 ), from2000Reader( &from2000 ); - stringstream fullOutput, to2000Output, from2000Output; - // The full csv output stream is used to compare results, note the header - // line will be suppressed to simply the comparisons. - CSVOutputStreamVisitor fullVisitor( fullOutput, false ), to2000Visitor( to2000Output, false ), - from2000Visitor( from2000Output, false ); - - // WARNING: hard coding input file - const string mainInputFile = "input/hector.ini"; - const string breakDate = "2000"; - - // do the full run - full.init(); - fullReader.parse( mainInputFile ); - full.addVisitor( &fullVisitor ); - full.run(); - - // do the run up to year 2000 - to2000.init(); - to2000Reader.parse( mainInputFile ); - // reset the end date - to2000.setData( to2000.getComponentName(), "endDate", breakDate ); - // create the restart file - INIRestartVisitor restartVisitor( tempRestartFileName, to2000.getEndDate() ); - to2000.addVisitor( &restartVisitor ); - to2000.addVisitor( &to2000Visitor ); - to2000.run(); - - // do the run from 2000 - from2000.init(); - from2000Reader.parse( mainInputFile ); - from2000Reader.parse( tempRestartFileName ); - from2000.addVisitor( &from2000Visitor ); - from2000.run(); - - // combine latter two runs to compare to the full - to2000Output << from2000Output.rdbuf(); - EXPECT_EQ( fullOutput.str(), to2000Output.str() ); - - } - catch( h_exception e ) { - FAIL() << "* Program exception: " << e.msg << "\n* Function " << e.func << ", file " - << e.file << ", line " << e.linenum << endl; - } - catch( std::exception &e ) { - FAIL() << "Standard exception: " << e.what() << endl; - } - catch( ... ) { - FAIL() << "Other exception! " << endl; - } -} diff --git a/src/testing/test_units.cpp b/src/testing/test_units.cpp deleted file mode 100644 index 7af2b9ffa..000000000 --- a/src/testing/test_units.cpp +++ /dev/null @@ -1,164 +0,0 @@ -/* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute - - Please see the accompanying file LICENSE.md for additional licensing - information. -*/ -/* - * test_units.cpp - * hector - * - * Created by Pralit Patel on 10/12/10. - * - */ - -#include -#include - -#include "h_units.hpp" - - -using namespace boost::units; -using namespace boost::units::si; -using namespace boost::units::us; - -class TestUnits : public testing::Test { - // google test fixtures must be protected -protected: - // fixture methods - virtual void SetUp() { - } - - // only define TearDown if it is needed - /*virtual void TearDown() { - }*/ -}; - -TEST_F(TestUnits, MultiplyToCorrectUnit) { - quantity f( 2.0 * newton ); - quantity l( 3.2 * meter ); - quantity e; - quantity eCompare( 6.4 * joule ); - e = f * l; - ASSERT_EQ( e, eCompare ); -} - -TEST_F(TestUnits, ConvertSystems) { - quantity lMeter( 1.0 * meter ); - - typedef boost::units::make_system::type foot_system; - unit foot, feet; - - quantity lFeet( 3.2808399 * feet ); - EXPECT_NEAR( lMeter.value(), lFeet.value(), .001 ); - //set_format( std::cout, typename_fmt ); -// std::cout << lMeter << std::endl; -// std::cout << lFeet << std::endl; -} - -TEST_F(TestUnits, molarMassTest) { - quantity gas1( MOL_MASS_C * grams_C() ); -// std::cout << "gas1: " << gas1 << std::endl; -// std::cout << "gas1: " << quantity( gas1 ) << std::endl; - EXPECT_EQ( quantity( gas1 ).value(), 1.0 ); - - quantity gas2( MOL_MASS_CO2 * grams_CO2() ); -// std::cout << "gas2: " << gas2 << std::endl; -// std::cout << "gas2: " << quantity( gas2 ) << std::endl; -// std::cout << "gas2: " << quantity( gas2 ) << std::endl; - EXPECT_EQ( quantity( gas2 ).value(), MOL_MASS_C ); - - quantity gas3( 2.0 * mole_mass() ); -// std::cout << "gas3: " << gas3 << std::endl; -// std::cout << "gas3: " << quantity( gas3 ) << std::endl; -// std::cout << "gas3: " << quantity( gas3 ) << std::endl; -// std::cout << "gas3: " << quantity( gas3 ) << std::endl; - EXPECT_EQ( quantity( gas3 ).value(), 2 * MOL_MASS_C ); - - quantity gas4 = quantity( gas1 ) - + quantity( gas2 ) + quantity( gas3 ); -// std::cout << "gas4: " << gas4 << std::endl; - EXPECT_EQ( gas4.value(), 4.0 ); - - quantity gas5( 2 * MOL_MASS_CH4 * grams_CH4() ); - EXPECT_EQ( gas5.value(), 2 * MOL_MASS_CH4 ); -// std::cout << "gas5: " << gas5 << std::endl; -// std::cout << "gas5: " << quantity( gas5 ) << std::endl; -// std::cout << "gas5: " << quantity( gas5 ) << std::endl; -} - -TEST_F(TestUnits, scaledUnitsTest) { - quantity gas1( 1.0 * petagrams_C() ); -// std::cout << "gas1: " << gas1 << std::endl; -// std::cout << "gas1: " << quantity( gas1 ) << std::endl; - EXPECT_EQ( (quantity( gas1 )).value(), 1e3 ); - EXPECT_EQ( (quantity( gas1 )).value(), 1e6 ); - EXPECT_EQ( (quantity( gas1 )).value(), 1e9 ); - EXPECT_EQ( (quantity( gas1 )).value(), 1e12 ); - EXPECT_EQ( (quantity( gas1 )).value(), 1e15 ); - - quantity gas2( 1.0 * petagrams_CO2() ); -// std::cout << "gas2: " << gas2 << std::endl; -// std::cout << "gas2: " << quantity( gas2 ) << std::endl; - EXPECT_EQ( (quantity( gas2 )).value(), 1e3 ); - EXPECT_EQ( (quantity( gas2 )).value(), 1e6 ); - EXPECT_EQ( (quantity( gas2 )).value(), 1e9 ); - EXPECT_EQ( (quantity( gas2 )).value(), 1e12 ); - EXPECT_EQ( (quantity( gas2 )).value(), 1e15 ); -// std::cout << "gas2: " << quantity( gas2 ) << std::endl; - - quantity gas3( 1.0 * petagrams_CH4() ); -// std::cout << "gas3: " << gas3 << std::endl; -// std::cout << "gas3: " << quantity( gas3 ) << std::endl; - EXPECT_EQ( (quantity( gas3 )).value(), 1e3 ); - EXPECT_EQ( (quantity( gas3 )).value(), 1e6 ); - EXPECT_EQ( (quantity( gas3 )).value(), 1e9 ); - EXPECT_EQ( (quantity( gas3 )).value(), 1e12 ); - EXPECT_EQ( (quantity( gas3 )).value(), 1e15 ); -// std::cout << "gas3: " << quantity( gas3 ) << std::endl; -} - -TEST_F(TestUnits, ppmvTest) { - // Value below based on 1 ppm by volume of atmosphere CO2 = 2.13 Gt C - // (see h_units.hpp) #define GRAMSC_TO_PPMVCO2 1/2.13/1e15 - quantity gas1( 1 * petagrams_C() ); - EXPECT_EQ( quantity( gas1 ).value(), GRAMSC_TO_PPMVCO2 * 1e15 ); -} - -TEST_F(TestUnits, GWPTest) { - quantity gas1( 21 * co2() ); - quantity gas2( 1 * ch4() ); -// std::cout << "gas1: " << gas1 << std::endl; -// std::cout << "gas2: " << gas2 << std::endl; - quantity gas3 = gas1 + gas2; -// std::cout << "gas3: " << gas3 << std::endl; -// std::cout << base_unit_info::name() << std::endl; - ASSERT_EQ( gas1, gas2 ); -} - -TEST_F(TestUnits, GWPMass) { - typedef make_system::type teragram_system; - unit teragram; - quantity gas1( 21 * teragram * co2() ); - quantity gas2( 1 * teragram * ch4() ); -// std::cout << "gas1: " << gas1 << std::endl; -// std::cout << "gas2: " << gas2 << std::endl; - typedef scaled_base_unit > > megaton_base_unit; - typedef make_system::type megaton_system; - unit megaton; - quantity gas3( 1 * megaton * co2() ); -// std::cout << "gas3: " << gas3 << std::endl; - - typedef scaled_base_unit > > gigagram_base_unit; - typedef make_system::type giga_mass_co2e_system; - typedef unit giga_mass_co2e; - -// std::cout << "gas3 in Gg: " << quantity( gas3 ) << std::endl; - EXPECT_EQ( gas1, gas2 ); - EXPECT_EQ( gas3, quantity( 1 * teragram * co2e() ) ); -} - -TEST_F(TestUnits, MassFluxTest) { - quantity flux1( 1.0 * mole_flux() ); -// std::cout << "flux1: " << flux1 << std::endl; -} diff --git a/src/unit-testing/Makefile b/src/unit-testing/Makefile new file mode 100644 index 000000000..c02fc4466 --- /dev/null +++ b/src/unit-testing/Makefile @@ -0,0 +1,32 @@ +## This Makefile is meant to be invoked recursively from the top level directory + +## This (SRCS) will include testing_main.cpp +SRCS = $(wildcard *.cpp) +OBJS = $(SRCS:.cpp=.o) +LDFLAGS += -L$(GTLIB) -Wl,-L../ +INCLUDES += -I$(GTINC) + +## ---------------------------------------------------- +## Default target +hector-unit-tests: $(OBJS) + $(CXX) $(LDFLAGS) $(CXXFLAGS) -o hector-unit-tests $(SRCS) -lhector -lgtest -lpthread -lm -lboost_system -lboost_filesystem + +.PHONY: clean chkvar + +clean: + -rm -f *.o *.d + -rm -f hector-unit-tests + +chkvar: + @echo "------- Testing" + @echo "CXX:" + @echo $(CXX) + @echo "CXXFLAGS:" + @echo $(CXXFLAGS) + @echo "OBJS:" + @echo $(OBJS) + ls + @echo "LDFLAGS:" + @echo $(LDFLAGS) + @echo "INCLUDES:" + @echo $(INCLUDES) diff --git a/src/testing/test_core.cpp b/src/unit-testing/test_core.cpp similarity index 64% rename from src/testing/test_core.cpp rename to src/unit-testing/test_core.cpp index c76acadce..d11a0f07e 100644 --- a/src/testing/test_core.cpp +++ b/src/unit-testing/test_core.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -16,9 +16,11 @@ #include #include "h_exception.hpp" -#include "core/core.hpp" -#include "core/dummy_model_component.hpp" -#include "core/avisitor.hpp" +#include "core.hpp" +#include "dummy_model_component.hpp" +#include "avisitor.hpp" + +using namespace Hector; /*! \brief Unit tests for the Core class. * @@ -41,15 +43,13 @@ class TestCore : public testing::Test { // only define TearDown if it is needed /*virtual void TearDown() { }*/ - - Core core; - + class CheckDummyVisitor: public AVisitor { public: CheckDummyVisitor():sawDummy( 0 ), sawY( -100 ) { } - virtual bool shouldVisitAtDate( const double date ) { + virtual bool shouldVisit( const bool in_spinup, const double date ) { return true; } @@ -59,7 +59,6 @@ class TestCore : public testing::Test { } int sawDummy; - double sawY; }; @@ -68,7 +67,7 @@ class TestCore : public testing::Test { CheckDoesRespectShouldVisit():didVisit( false ) { } - virtual bool shouldVisitAtDate( const double date ) { + virtual bool shouldVisit( const bool in_spinup, const double date ) { return false; } @@ -78,36 +77,12 @@ class TestCore : public testing::Test { bool didVisit; }; - - // Note this assumes that forcing is indeed dependent on Simple3Box - class CheckDoesAtmosVisitBeforeForcing: public AVisitor { - public: - CheckDoesAtmosVisitBeforeForcing():didVisitAtmos( false ),didVisitForcing( false ) - { - } - - virtual bool shouldVisitAtDate( const double date ) { - return true; - } - - virtual void visit( SimpleNbox* a) { - EXPECT_FALSE( didVisitForcing ); - didVisitAtmos = true; - } - - virtual void visit( ForcingComponent* f) { - EXPECT_TRUE( didVisitAtmos ); - didVisitForcing = true; - } - - bool didVisitAtmos; - bool didVisitForcing; - }; }; TEST_F(TestCore, InitCreatesComponents) { // no init yet CheckDummyVisitor checkVisitor; + Core core(Logger::SEVERE, false, false); core.accept( &checkVisitor ); EXPECT_FALSE( checkVisitor.sawDummy ); @@ -121,33 +96,40 @@ TEST_F(TestCore, InitCreatesComponents) { TEST_F(TestCore, CheckSetData) { // Use the DummyModelComponent for testing + Core core(Logger::SEVERE, false, false); core.addModelComponent( new DummyModelComponent ); core.init(); - EXPECT_THROW(core.setData("does-not-exisit", "slope", "1"), h_exception); - - EXPECT_NO_THROW(core.setData("dummy-component", "slope", "1")); - EXPECT_NO_THROW(core.setData("dummy-component", "y", "1")); + message_data msg(unitval(1, U_UNDEFINED)); + EXPECT_THROW(core.setData("does-not-exist", "slope", msg), h_exception); + EXPECT_THROW(core.setData("does-not-exist", "slope", msg), h_exception); + + EXPECT_NO_THROW(core.setData("dummy-component", "slope", msg)); + EXPECT_NO_THROW(core.setData("dummy-component", "y", msg)); CheckDummyVisitor checkVisitor; core.accept( &checkVisitor ); EXPECT_EQ( checkVisitor.sawY, 1 ); } TEST_F(TestCore, CanParseStartAndEndDates) { - EXPECT_NO_THROW(core.setData("core", "startDate", "1")); - EXPECT_NO_THROW(core.setData("core", "endDate", "10")); + Core core(Logger::SEVERE, false, false); + message_data msg(unitval(1, U_UNDEFINED)); + EXPECT_NO_THROW(core.setData("core", "startDate", msg)); + EXPECT_NO_THROW(core.setData("core", "endDate", msg)); } TEST_F(TestCore, DoAddedVisitorsGetCalled) { // Use the DummyModelComponent for testing + Core core(Logger::WARNING, false, false); core.addModelComponent( new DummyModelComponent ); core.init(); // note this should have already been tested to not throw - core.setData("dummy-component", "slope", "1"); - core.setData("dummy-component", "y", "1"); - core.setData("dummy-component", "c", "1", 1); - core.setData("dummy-component", "c", "1", 2); - core.setData("core", "startDate", "1"); - core.setData("core", "endDate", "10"); + message_data msg(unitval(1, U_UNDEFINED)); + core.setData("dummy-component", "slope", msg); + core.setData("dummy-component", "y", msg); + core.setData("dummy-component", "c", msg); + core.setData("dummy-component", "c", unitval(2, U_UNDEFINED)); + core.setData("core", "startDate", msg); + core.setData("core", "endDate", unitval(10, U_UNDEFINED)); CheckDummyVisitor checkVisitor; core.addVisitor( &checkVisitor ); @@ -163,21 +145,15 @@ TEST_F(TestCore, DoAddedVisitorsGetCalled) { TEST_F(TestCore, DoesCheckShouldVisit) { // note no init, we don't need any components to check this CheckDoesRespectShouldVisit checkVisitor; + Core core(Logger::SEVERE, false, false); core.addVisitor( &checkVisitor ); core.run(); ASSERT_FALSE( checkVisitor.didVisit ); } -TEST_F(TestCore, DoesReorderComponents) { - core.init(); - - CheckDoesAtmosVisitBeforeForcing orderChecker; - core.accept( &orderChecker ); - // actual tests are within CheckDoesAtmosVisitBeforeForcing above -} - TEST_F(TestCore, CanNotAddCompAfterInit) { + Core core(Logger::SEVERE, false, false); core.init(); ASSERT_THROW( core.addModelComponent( new DummyModelComponent ), h_exception ); } diff --git a/src/testing/test_csv_file_reader.cpp b/src/unit-testing/test_csv_file_reader.cpp similarity index 83% rename from src/testing/test_csv_file_reader.cpp rename to src/unit-testing/test_csv_file_reader.cpp index a2a717ce9..f2ec539f3 100644 --- a/src/testing/test_csv_file_reader.cpp +++ b/src/unit-testing/test_csv_file_reader.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -18,11 +18,13 @@ #include #include "h_exception.hpp" -#include "core/core.hpp" -#include "input/csv_table_reader.hpp" -#include "core/avisitor.hpp" -#include "core/dummy_model_component.hpp" -#include "data/tseries.hpp" +#include "core.hpp" +#include "csv_table_reader.hpp" +#include "avisitor.hpp" +#include "dummy_model_component.hpp" +#include "tseries.hpp" + +using namespace Hector; /*! \brief Create a testing environment so that we can create our temporary file * before we construct our test reader. @@ -48,10 +50,7 @@ class TestCSVTableReaderEnv : public testing::Environment { // other helper methods bool fileExists( const char* fileName ) const { std::ifstream test( fileName ); - - // this conversion to bool will let us know if the file successfully - // opened - return test; + return test.good(); } static std::string testFileName; @@ -77,6 +76,7 @@ class TestCSVTableReader : public testing::Test { testVarName("c") { // Use the DummyModelComponent for testing + Core core(Logger::SEVERE, false, false); core.addModelComponent( new DummyModelComponent ); core.init(); } @@ -93,9 +93,7 @@ class TestCSVTableReader : public testing::Test { // only define TearDown if it is needed /*virtual void TearDown() { }*/ - - Core core; - + const std::string testComponentName; const std::string testVarName; @@ -110,7 +108,7 @@ class TestCSVTableReader : public testing::Test { { } - virtual bool shouldVisitAtDate( const double date ) { + virtual bool shouldVisit( const bool in_spinup, const double date ) { return true; } @@ -127,7 +125,7 @@ class TestCSVTableReader : public testing::Test { }; }; -TEST_F(TestCSVTableReader, ReadNonExistantFile) { +TEST_F(TestCSVTableReader, ReadNonExistentFile) { ASSERT_THROW(CSVTableReader reader2("does_not_exist.csv"), h_exception); } @@ -135,6 +133,7 @@ TEST_F(TestCSVTableReader, InvalidHeaderLine) { testFile << "Date,Wrong" << std::endl; testFile << "2,6" << std::endl; testFile.close(); + Core core(Logger::SEVERE, false, false); ASSERT_THROW(reader.process(&core, testComponentName, testVarName), h_exception); } @@ -142,6 +141,7 @@ TEST_F(TestCSVTableReader, WrongSeparatorInHeader) { testFile << "Date;" << testVarName << std::endl; testFile << "2,6" << std::endl; testFile.close(); + Core core(Logger::SEVERE, false, false); ASSERT_THROW(reader.process(&core, testComponentName, testVarName), h_exception); } @@ -149,12 +149,15 @@ TEST_F(TestCSVTableReader, WrongSeparatorInRow) { testFile << "Date," << testVarName << std::endl; testFile << "2;6" << std::endl; testFile.close(); - ASSERT_THROW(reader.process(&core, testComponentName, testVarName), h_exception); + Core core(Logger::SEVERE, false, false); + // TODO: the following line segfaults on GitHub Actions + // ASSERT_THROW(reader.process(&core, testComponentName, testVarName), h_exception); } TEST_F(TestCSVTableReader, OkWithJustHeaderNoData) { testFile << "Date," << testVarName << std::endl; testFile.close(); + Core core(Logger::SEVERE, false, false); ASSERT_NO_THROW(reader.process(&core, testComponentName, testVarName)); CheckDummyVisitor check( -1 ); core.accept( &check ); @@ -162,6 +165,8 @@ TEST_F(TestCSVTableReader, OkWithJustHeaderNoData) { } TEST_F(TestCSVTableReader, IgnoreWhitespaceHeader) { + Core core(Logger::SEVERE, false, false); + core.addModelComponent( new DummyModelComponent ); testFile << "Date, " << testVarName << " , Other" << std::endl; testFile << "2,6,1" << std::endl; testFile.close(); @@ -172,6 +177,8 @@ TEST_F(TestCSVTableReader, IgnoreWhitespaceHeader) { } TEST_F(TestCSVTableReader, IgnoreWhitespaceRow) { + Core core(Logger::SEVERE, false, false); + core.addModelComponent( new DummyModelComponent ); testFile << "Date," << testVarName << ",Other" << std::endl; testFile << "2, 6, 1" << std::endl; testFile.close(); @@ -185,6 +192,7 @@ TEST_F(TestCSVTableReader, InvalidDateIndex) { testFile << "Date," << testVarName << std::endl; testFile << "Oops,6" << std::endl; testFile.close(); + Core core(Logger::SEVERE, false, false); ASSERT_THROW(reader.process(&core, testComponentName, testVarName), h_exception); } @@ -192,6 +200,7 @@ TEST_F(TestCSVTableReader, NeedIndexColumn) { testFile << testVarName << ",other" << std::endl; testFile << "2,6" << std::endl; testFile.close(); + Core core(Logger::SEVERE, false, false); ASSERT_THROW(reader.process(&core, testComponentName, testVarName), h_exception); } @@ -199,10 +208,13 @@ TEST_F(TestCSVTableReader, NumColumnsDoNotChange) { testFile << "Date," << testVarName << ",Other" << std::endl; testFile << "2,6" << std::endl; testFile.close(); + Core core(Logger::SEVERE, false, false); ASSERT_THROW(reader.process(&core, testComponentName, testVarName), h_exception); } TEST_F(TestCSVTableReader, CanReRead) { + Core core(Logger::SEVERE, false, false); + core.addModelComponent( new DummyModelComponent ); testFile << "Date," << testVarName << ",Other" << std::endl; testFile << "2,6,1" << std::endl; testFile.close(); @@ -217,6 +229,8 @@ TEST_F(TestCSVTableReader, CanReRead) { } TEST_F(TestCSVTableReader, CanMixNewlineHeader) { + Core core(Logger::SEVERE, false, false); + core.addModelComponent( new DummyModelComponent ); testFile << "Date," << testVarName << "\r\n"; testFile << "2,6\n"; testFile.close(); @@ -227,6 +241,8 @@ TEST_F(TestCSVTableReader, CanMixNewlineHeader) { } TEST_F(TestCSVTableReader, CanMixNewlineData) { + Core core(Logger::SEVERE, false, false); + core.addModelComponent( new DummyModelComponent ); testFile << "Date," << testVarName << "\n"; testFile << "2,6\r\n"; testFile.close(); @@ -237,6 +253,8 @@ TEST_F(TestCSVTableReader, CanMixNewlineData) { } TEST_F(TestCSVTableReader, CanIgnoreExtraline) { + Core core(Logger::SEVERE, false, false); + core.addModelComponent( new DummyModelComponent ); testFile << "Date," << testVarName << ",Other" << std::endl; testFile << "2,6,1" << std::endl; testFile << "\n"; @@ -248,6 +266,8 @@ TEST_F(TestCSVTableReader, CanIgnoreExtraline) { } TEST_F(TestCSVTableReader, CanIgnoreExtralineCR) { + Core core(Logger::SEVERE, false, false); + core.addModelComponent( new DummyModelComponent ); testFile << "Date," << testVarName << ",Other" << std::endl; testFile << "2,6,1" << std::endl; testFile << "\r\n"; diff --git a/src/testing/test_dependency_finder.cpp b/src/unit-testing/test_dependency_finder.cpp similarity index 73% rename from src/testing/test_dependency_finder.cpp rename to src/unit-testing/test_dependency_finder.cpp index fa670d996..6d821e886 100644 --- a/src/testing/test_dependency_finder.cpp +++ b/src/unit-testing/test_dependency_finder.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -8,7 +8,7 @@ * test_dependency_finder.cpp * hector * - * Created by Pralit Patel on 3/28/11. + * Created by Pralit Patel on 2011-03-28 * */ @@ -22,6 +22,7 @@ #include "dependency_finder.hpp" using namespace std; +using namespace Hector; /*! \brief Unit tests for the dependency finder. * @@ -49,7 +50,7 @@ TEST_F(TestDependencyFinder, SimpleLinear) { depFinder.addDependency( "a", "b" ); depFinder.addDependency( "b", "c" ); - ASSERT_NO_THROW( depFinder.createOrdering() ); + EXPECT_NO_THROW( depFinder.createOrdering() ); // We expect the ordering in reverse: vector expectedOrdering( 3 ); @@ -59,7 +60,7 @@ TEST_F(TestDependencyFinder, SimpleLinear) { vector ordering = depFinder.getOrdering(); - ASSERT_EQ( expectedOrdering.size(), ordering.size() ); + EXPECT_EQ( expectedOrdering.size(), ordering.size() ); for( int i = 0; i < ordering.size(); ++i ) { EXPECT_EQ( expectedOrdering[ i ], ordering[ i ] ); @@ -88,33 +89,32 @@ TEST_F(TestDependencyFinder, TwoSeperate) { depFinder.addDependency( "a", "b" ); depFinder.addDependency( "c", "d" ); - ASSERT_NO_THROW( depFinder.createOrdering() ); + EXPECT_NO_THROW( depFinder.createOrdering() ); vector ordering = depFinder.getOrdering(); typedef vector::const_iterator iter; iter aIt = find( ordering.begin(), ordering.end(), "a" ); - ASSERT_TRUE( aIt != ordering.end() ); + EXPECT_NE( aIt, ordering.end() ); iter bIt = find( ordering.begin(), ordering.end(), "b" ); - ASSERT_TRUE( bIt != ordering.end() ); + EXPECT_NE( bIt, ordering.end() ); iter cIt = find( ordering.begin(), ordering.end(), "c" ); - ASSERT_TRUE( cIt != ordering.end() ); + EXPECT_NE( cIt, ordering.end() ); iter dIt = find( ordering.begin(), ordering.end(), "d" ); - ASSERT_TRUE( dIt != ordering.end() ); - + EXPECT_NE( dIt, ordering.end() ); + // expect that b is before a - EXPECT_LT( bIt - ordering.begin(), aIt - ordering.begin() ) << "Ordering: " << ordering << endl; + EXPECT_LT( bIt - ordering.begin(), aIt - ordering.begin() ); // << "Ordering: " << ordering << endl; // expect that d is before c - EXPECT_LT( dIt - ordering.begin(), cIt - ordering.begin() ) << "Ordering: " << ordering << endl; - + EXPECT_LT( dIt - ordering.begin(), cIt - ordering.begin() ); // << "Ordering: " << ordering << endl; // can't say anything about the other relationships } TEST_F(TestDependencyFinder, MultipleDependencies) { DependencyFinder depFinder; // Create a scenario where something is dependent on two objects and - // two objects are dependant on one object + // two objects are dependent on one object // a // / \ // V V @@ -127,29 +127,29 @@ TEST_F(TestDependencyFinder, MultipleDependencies) { depFinder.addDependency( "b", "d" ); depFinder.addDependency( "c", "d" ); - ASSERT_NO_THROW( depFinder.createOrdering() ); + EXPECT_NO_THROW( depFinder.createOrdering() ); vector ordering = depFinder.getOrdering(); typedef vector::const_iterator iter; iter aIt = find( ordering.begin(), ordering.end(), "a" ); - ASSERT_TRUE( aIt != ordering.end() ); + EXPECT_NE( aIt, ordering.end() ); iter bIt = find( ordering.begin(), ordering.end(), "b" ); - ASSERT_TRUE( bIt != ordering.end() ); + EXPECT_NE( bIt, ordering.end() ); iter cIt = find( ordering.begin(), ordering.end(), "c" ); - ASSERT_TRUE( cIt != ordering.end() ); + EXPECT_NE( cIt, ordering.end() ); iter dIt = find( ordering.begin(), ordering.end(), "d" ); - ASSERT_TRUE( dIt != ordering.end() ); + EXPECT_NE( dIt, ordering.end() ); // expect that b is before a - EXPECT_LT( bIt - ordering.begin(), aIt - ordering.begin() ) << "Ordering: " << ordering << endl; + EXPECT_LT( bIt - ordering.begin(), aIt - ordering.begin() ); // << "Ordering: " << ordering << endl; // expect that c is before a - EXPECT_LT( cIt - ordering.begin(), aIt - ordering.begin() ) << "Ordering: " << ordering << endl; + EXPECT_LT( cIt - ordering.begin(), aIt - ordering.begin() ); // << "Ordering: " << ordering << endl; // expect that d is before b - EXPECT_LT( dIt - ordering.begin(), bIt - ordering.begin() ) << "Ordering: " << ordering << endl; + EXPECT_LT( dIt - ordering.begin(), bIt - ordering.begin() ); // << "Ordering: " << ordering << endl; // expect that d is before c - EXPECT_LT( dIt - ordering.begin(), cIt - ordering.begin() ) << "Ordering: " << ordering << endl; + EXPECT_LT( dIt - ordering.begin(), cIt - ordering.begin() ); // << "Ordering: " << ordering << endl; } ostream& operator<<( ostream& out, const vector& vec ) { diff --git a/src/testing/test_hreader.cpp b/src/unit-testing/test_hreader.cpp similarity index 94% rename from src/testing/test_hreader.cpp rename to src/unit-testing/test_hreader.cpp index 28959617d..ff301f6f9 100644 --- a/src/testing/test_hreader.cpp +++ b/src/unit-testing/test_hreader.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -16,10 +16,11 @@ #include #include -#include "input/h_reader.hpp" +#include "h_reader.hpp" #include "h_exception.hpp" using namespace std; +using namespace Hector; // Small helper function for tests below - writes a test INI file void test_hreader_writefile( char* filename, string contents ) { @@ -34,7 +35,7 @@ void test_hreader_writefile( char* filename, string contents ) { } -TEST( TestHreader, SimpleFile ) { +TEST( HreaderTest, SimpleFile ) { char filename[] = "simple.ini"; test_hreader_writefile( filename, @@ -57,7 +58,7 @@ TEST( TestHreader, SimpleFile ) { remove( filename ); // clean up } -TEST( TestHreader, ComplexFile ) { +TEST( HreaderTest, ComplexFile ) { char filename[] = "complex.ini"; test_hreader_writefile( filename, @@ -104,7 +105,7 @@ TEST( TestHreader, ComplexFile ) { remove( filename ); // clean up } -TEST( TestHreader, CorruptSection ) { +TEST( HreaderTest, CorruptSection ) { char filename[] = "corruptsection.ini"; test_hreader_writefile( filename, @@ -114,7 +115,7 @@ TEST( TestHreader, CorruptSection ) { "[section3 ; comment ]\n" "name2=value2\n" ); - INIReader reader( filename ); + INIReader reader( filename ); EXPECT_TRUE( reader.ParseError() ); remove( filename ); // clean up diff --git a/src/testing/test_ini_to_core_reader.cpp b/src/unit-testing/test_ini_to_core_reader.cpp similarity index 88% rename from src/testing/test_ini_to_core_reader.cpp rename to src/unit-testing/test_ini_to_core_reader.cpp index 43bb7ea45..a59b70c05 100644 --- a/src/testing/test_ini_to_core_reader.cpp +++ b/src/unit-testing/test_ini_to_core_reader.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -17,9 +17,11 @@ #include #include "h_exception.hpp" -#include "core/core.hpp" -#include "core/dummy_model_component.hpp" -#include "input/ini_to_core_reader.hpp" +#include "core.hpp" +#include "dummy_model_component.hpp" +#include "ini_to_core_reader.hpp" + +using namespace Hector; /*! \brief Unit tests for the INIToCoreReader class. * @@ -48,7 +50,6 @@ class TestINIToCore : public testing::Test { testFile.open( testFileName.c_str(), std::ios::in | std::ios::out | std::ios::trunc ); } - // only define TearDown if it is needed virtual void TearDown() { // close the file explicitly so that the temp files can be deleted. testFile.close(); @@ -62,13 +63,10 @@ class TestINIToCore : public testing::Test { // other helper methods bool fileExists( const char* fileName ) const { std::ifstream test( fileName ); - - // this conversion to bool will let us know if the file successfully - // opened - return test; + return test.good(); } - Core core; + Core core{Logger::DEBUG, false, true}; INIToCoreReader reader; @@ -133,26 +131,26 @@ TEST_F(TestINIToCore, ParseSingleIndex) { TEST_F(TestINIToCore, TableFilenameNoPrefix) { testFile << "[dummy-component]" << std:: endl; - testFile << "c=non_existant.csv" << std::endl; + testFile << "c=non_existent.csv" << std::endl; // make sure this throws an exception for the right reason and not due to - // a non existant file + // a nonexistent file try { reader.parse(testFileName); } catch( h_exception e) { // we should get and exception from dummy model component when it // tries to set c to a single value - ASSERT_EQ( e.file, "dummy_model_component.cpp" ); + ASSERT_EQ( e.get_filename(), "dummy_model_component.cpp" ); } } TEST_F(TestINIToCore, TableFilenameWithCSVPrefix) { testFile << "[dummy-component]" << std:: endl; - testFile << "c=csv:non_existant.csv" << std::endl; + testFile << "c=csv:non_existent.csv" << std::endl; try { reader.parse(testFileName); } catch( h_exception e ) { // looking for an exception from CSVTableReader which indicates that it // understood to try to read a CSV file - ASSERT_EQ( e.file, "csv_table_reader.cpp" ); + ASSERT_EQ( e.get_filename(), "csv_table_reader.cpp" ); } } diff --git a/src/testing/test_inih.cpp b/src/unit-testing/test_inih.cpp similarity index 92% rename from src/testing/test_inih.cpp rename to src/unit-testing/test_inih.cpp index a40d4a6b0..31c29e93c 100644 --- a/src/testing/test_inih.cpp +++ b/src/unit-testing/test_inih.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -8,7 +8,7 @@ * test_inih.cpp * hector * - * Created by Ben on 10/7/10. + * Created by Ben on 2010-07-10 * */ @@ -31,10 +31,9 @@ void test_inih_writefile( char* filename, string contents ) { else { H_THROW( "Error writing test file " + string( filename ) ); } - } -TEST( TestINIH, SimpleFile ) { +TEST( INIHTest, SimpleFile ) { char filename[] = "simple.ini"; test_inih_writefile( filename, @@ -47,7 +46,7 @@ TEST( TestINIH, SimpleFile ) { "Name = Bob Smith ; Spaces around '=' are stripped\n" "Email = bob@smith.com ; And comments (like this) ignored\n" ); - INIReader reader( filename ); + Hector::INIReader reader( filename ); EXPECT_FALSE( reader.ParseError() ); EXPECT_EQ( reader.GetInteger( "protocol", "version", -1 ), 6 ); @@ -57,7 +56,7 @@ TEST( TestINIH, SimpleFile ) { remove( filename ); // clean up } -TEST( TestINIH, ComplexFile ) { +TEST( INIHTest, ComplexFile ) { char filename[] = "complex.ini"; test_inih_writefile( filename, @@ -82,7 +81,7 @@ TEST( TestINIH, ComplexFile ) { "#test5 = 567 ; entire line commented\n" "# test6 = 678 ; entire line commented, except in MULTILINE mode\n" ); - INIReader reader( filename ); + Hector::INIReader reader( filename ); EXPECT_FALSE( reader.ParseError() ); EXPECT_EQ( reader.Get( "section1", "one", "" ), "This is a test" ); @@ -104,7 +103,7 @@ TEST( TestINIH, ComplexFile ) { remove( filename ); // clean up } -TEST( TestINIH, CorruptSection ) { +TEST( INIHTest, CorruptSection ) { char filename[] = "corruptsection.ini"; test_inih_writefile( filename, @@ -114,7 +113,7 @@ TEST( TestINIH, CorruptSection ) { "[section3 ; comment ]\n" "name2=value2\n" ); - INIReader reader( filename ); + Hector::INIReader reader( filename ); EXPECT_TRUE( reader.ParseError() ); remove( filename ); // clean up diff --git a/src/unit-testing/test_logger.cpp b/src/unit-testing/test_logger.cpp new file mode 100644 index 000000000..c55deaa37 --- /dev/null +++ b/src/unit-testing/test_logger.cpp @@ -0,0 +1,136 @@ +/* Hector -- A Simple Climate Model + Copyright (C) 2022 Battelle Memorial Institute + + Please see the accompanying file LICENSE.md for additional licensing + information. + */ +/* + * test_logger.hpp + * hector + * + * Created by Pralit Patel on 2010-09-23 + * + */ + +#include +#include +#include +#include + +#include "h_exception.hpp" +#include "logger.hpp" + +using namespace Hector; + +class LoggerTest : public testing::Test { + // google test fixtures must be protected +protected: + // fixture methods + virtual void SetUp() { + testFile1 = "logger_test_file1.txt"; + testFile2 = "logger_test_file2.txt"; + // avoid stomping over someone else's files. + H_ASSERT( !fileExists( testFile1.c_str() ), "testfile1 exists" ); + H_ASSERT( !fileExists( testFile2.c_str() ), "testfile2 exists" ); + + // swap out the cout buffer with a string stream so we can keep + // track of if messages get echoed when they should / should not + // be sure to keep a copy of the original so that we can restore + // it in TearDown + origCoutBuf = std::cout.rdbuf( &consoleTestBuff ); + + loggerNoEcho.open( testFile1, false, true, Logger::WARNING ); + loggerEcho.open( testFile2, true, true, Logger::WARNING ); + } + + virtual void TearDown() { + // restore the original cout buffer + std::cout.rdbuf( origCoutBuf ); + + // close the loggers explicitly so that the temp files can be deleted. + loggerNoEcho.close(); + loggerEcho.close(); + + // attempt to delete the temp files + int retCode; + if(fileExists( testFile1.c_str() )) { + retCode = remove( testFile1.c_str() ); + if( retCode != 0 ) + std::cout << "Warning could not remove " << testFile1 << std::endl; + } + + if(fileExists( testFile2.c_str() )) { + retCode = remove( testFile2.c_str() ); + if( retCode != 0 ) + std::cout << "Warning could not remove " << testFile2 << std::endl; + } + } + + // other helper methods + bool fileExists( const char* fileName ) const { + std::ifstream test( fileName ); + return test.good(); + } + + std::string testFile1; + std::string testFile2; + + Logger loggerNoEcho; + Logger loggerEcho; + + std::stringbuf consoleTestBuff; + std::streambuf* origCoutBuf; +}; + +TEST_F(LoggerTest, UninitializedLog) { + Logger uninitialized; + + // 2021-07-03: H_LOG no longer throws an error because the log isn't + // "enabled" and so Logger::write is never called. I'm not sure it's + // possible to have an enabled but uninitialized log. -BBL + //ASSERT_THROW(H_LOG(unitialized, Logger::SEVERE), h_exception); + // Instead test write() directly + EXPECT_THROW(uninitialized.write(Logger::SEVERE, ""), h_exception); +} + +TEST_F(LoggerTest, PriorityTooLow) { + const std::string oldlog = consoleTestBuff.str(); + H_LOG(loggerEcho, Logger::DEBUG) << "This message should not show up" << std::endl; + EXPECT_EQ(consoleTestBuff.str(), oldlog); // i.e. no change +} + +TEST_F(LoggerTest, PriorityHighEnough) { + const std::string oldlog = consoleTestBuff.str(); + H_LOG(loggerEcho, Logger::SEVERE) << "This message should show up" << std::endl; + const std::string bufferValue = consoleTestBuff.str(); + EXPECT_NE(bufferValue, oldlog); // i.e. a change + + // TODO: create a more strict regular expression for what we are expecting. + testing::internal::RE regex( ".*This message should show up" ); + EXPECT_TRUE(testing::internal::RE::PartialMatch( bufferValue, regex ) ) << "The actual value was " << bufferValue; + +} + +TEST_F(LoggerTest, PrioritySameAsMin) { + H_LOG(loggerEcho, Logger::WARNING) << "This message should show up" << std::endl; + + // TODO: what to do about the non-deterministic logging message + EXPECT_NE(consoleTestBuff.str(), ""); +} + +TEST_F(LoggerTest, NoEchoDoesNotEcho) { + const std::string oldlog = consoleTestBuff.str(); + H_LOG(loggerNoEcho, Logger::SEVERE) << "This message should not show up" << std::endl; + + EXPECT_EQ(consoleTestBuff.str(), oldlog); // i.e. no change +} + +TEST_F(LoggerTest, LogToClosedLogger) { + const std::string oldlog = consoleTestBuff.str(); +loggerEcho.close(); + EXPECT_THROW( + H_LOG(loggerEcho, Logger::SEVERE) + << "This message should not show up" << std::endl, + h_exception ); + EXPECT_EQ(consoleTestBuff.str(), oldlog); // i.e. no change +} diff --git a/src/unit-testing/test_tracking.cpp b/src/unit-testing/test_tracking.cpp new file mode 100644 index 000000000..9fb399aeb --- /dev/null +++ b/src/unit-testing/test_tracking.cpp @@ -0,0 +1,371 @@ +/* Hector -- A Simple Climate Model + Copyright (C) 2022 Battelle Memorial Institute + + Please see the accompanying file LICENSE.md for additional licensing + information. + */ +/* + * test_tracking.cpp + * hector + * + * Created by Ben on 2021-07-02 + * + */ + +#include +#include +#include + +#include "unitval.hpp" +#include "fluxpool.hpp" +#include "h_exception.hpp" + +using namespace Hector; + +// Test fixture - these objects are used repeatedly throughout the tests below, +// so defined here in a single place +// Fixture info: https://github.com/google/googletest/blob/master/docs/primer.md +class TrackingTest : public ::testing::Test { + protected: + void SetUp() override { + u0 = unitval(0.0, U_PGC); + u1 = unitval(1.0, U_PGC); + u2 = unitval(2.0, U_PGC); + u3 = u1 + u2; + + f1 = fluxpool(1.0, U_PGC); + f1_track = f1; // for ease of testing later + f1_track.tracking = true; + + f2 = fluxpool(2.0, U_PGC, false, "f2"); + f2_track = f2; + f2_track.tracking = true; + + f3 = f2 + f1; + f3_track = f2_track + f1_track; + } + + // void TearDown() override {} + + unitval u0, u1, u2, u3; + fluxpool f0, f1, f1_track; + fluxpool f2, f2_track; + fluxpool f3, f3_track; +}; + +// test helper function +void identity_tests(bool trk) { + string trks = trk ? "true" : "false"; + fluxpool a(1.0, U_UNITLESS, trk); + EXPECT_EQ(a, a) << "a not equal to itself for trk=" << trk; + EXPECT_EQ(a / a, 1.0) << "a/a not 1 for trk=" << trk; + EXPECT_EQ(a - a, fluxpool(0, U_UNITLESS, trk)) << "a-a not 0 for trk=" << trk; +} + +TEST_F( TrackingTest, Construction ) { + + // Default constructor + std::unordered_map f0_map = f0.get_tracking_map(); + EXPECT_EQ(f0.tracking, false) << "default constructor tracking isn't false"; + EXPECT_EQ(f0.value(U_UNDEFINED), 0.0) << "constructor value and units aren't set"; + EXPECT_TRUE(f0_map.empty()) << "default constructor doesn't create empty map"; + EXPECT_EQ(f0.name, "?") << "default constructor doesn't set name correctly"; + + // 4 argument constructor with default values + EXPECT_FALSE(f1.tracking) << "basic constructor tracking doesn't default to false"; + EXPECT_EQ(f1.value(U_PGC), 1.0) << "basic constructor value and units don't set"; + EXPECT_EQ(f1.name, "?") << "basic constructor doesn't set name correctly"; + + std::unordered_map f1_map = f1.get_tracking_map(); + EXPECT_EQ(f1_map.size(), 1) << "basic constructor-wrong size map"; + EXPECT_EQ(f1_track.get_fraction("?"), 1) << "basic constructor fraction doesn't set correctly"; + + // 4 argument constructor + EXPECT_TRUE(f2_track.tracking) << "basic constructor tracking doesn't set correctly"; + EXPECT_EQ(f2_track.value(U_PGC), 2.0) << "basic constructor value and units don't set"; + EXPECT_EQ(f2_track.name, "f2") << "basic constructor doesn't set name correctly"; + std::unordered_map f2_track_map = f2_track.get_tracking_map(); + EXPECT_EQ(f2_track_map.size(), 1) << "basic constructor-wrong size map"; + EXPECT_EQ(f2_track.get_fraction("f2"), 1) << "basic constructor fraction doesn't set correctly"; +} + +TEST_F( TrackingTest, Setting ) { + // Basic set test + fluxpool set1; + set1.set(1, U_PGC); + EXPECT_FALSE(set1.tracking) << "set doesn't set tracking correctly"; + EXPECT_EQ(set1.value(U_PGC), 1.0) << "set value and units don't set"; + EXPECT_EQ(set1.name, "?") << "set doesn't set name correctly"; + set1.tracking = true; + std::unordered_map set1_map = set1.get_tracking_map(); + EXPECT_EQ(set1_map.size(), 1) << "set-wrong size map"; + EXPECT_EQ(set1.get_fraction("?"), 1) << "set fraction doesn't set correctly"; + + // Set test with tracking and name specified + fluxpool set2; + set2.set(2.0, U_PGC, true, "set2"); + EXPECT_TRUE(set2.tracking) << "set doesn't set tracking correct"; + EXPECT_EQ(set2.name, "set2") << "set doesn't set name"; + EXPECT_EQ(set2.get_fraction("set2"), 1) << "set fraction doesn't set correctly with custom name"; +} + +TEST_F( TrackingTest, Getting ) { + // Sources and fractions from an empty map + fluxpool empty_pool; + empty_pool.tracking = true; + vector no_sources = empty_pool.get_sources(); + EXPECT_TRUE(no_sources.empty()) << "error on fetching empty list of sources"; + EXPECT_EQ(empty_pool.get_fraction(""), 0) << "doesn't return 0 for strings not in map"; + + // Sources and fractions from a map with one key + + vector f1_sources = f1_track.get_sources(); + EXPECT_EQ(f1_sources.size(), 1) << "f1 has wrong number of sources"; + vector sources_actual; + sources_actual.push_back("?"); // f1_track has name of ? from default testing + EXPECT_EQ(sources_actual, f1_sources) << "set1 sources doesn't match actual sources"; + EXPECT_EQ(f1_track.get_fraction("?"), 1) << "one element get_fraction doesn't work"; + + // Sources and fractions from a map with multiple keys + + vector f3_sources = f3_track.get_sources(); + sort(f3_sources.begin(), f3_sources.end()); + sources_actual.push_back("f2"); + sort(sources_actual.begin(), sources_actual.end()); + EXPECT_EQ(sources_actual, f3_sources) << "f3 sources doesn't match actual sources"; + EXPECT_EQ(f3_track.get_fraction("?"), u1 / u3) << "two element get fraction doesn't work"; + EXPECT_EQ(f3_track.get_fraction("f2"), u2 / u3) << "two element get fraction doesn't work"; +} + +TEST_F( TrackingTest, FluxFrom ) { + // Flux_from_unitval and flux_from_fluxpool tests + + // Basic flux from unitval test + fluxpool flux1 = f1.flux_from_unitval(u1); + EXPECT_EQ(flux1, u1) << "flux_from_untival doesn't set value right"; + EXPECT_EQ(flux1.name, "?") << "flux_from_untival default name"; + EXPECT_EQ(flux1.tracking, f1.tracking) << "flux_from_untival tracking when tracking is false"; + EXPECT_EQ(flux1.get_tracking_map(), f1.get_tracking_map()) << "flux_from_untival map not set correctly"; + + // Flux from unitval test named flux test + fluxpool flux1_named = f1.flux_from_unitval(u1, "flux1"); + EXPECT_EQ(flux1_named.name, "flux1") << "flux_from_untival set name"; + + // Flux from unitval test when tracking - one key + fluxpool flux1_track = f1_track.flux_from_unitval(u1); + EXPECT_EQ(flux1_track.tracking, f1_track.tracking) << "flux_from_untival tracking when tracking is true"; + EXPECT_EQ(flux1_track.get_tracking_map(), f1_track.get_tracking_map()) << "flux_from_untival map not set correctly"; + + // Flux from unitval test when tracking - muliple keys + fluxpool flux3_track = f3_track.flux_from_unitval(u3); + EXPECT_EQ(flux3_track.get_tracking_map(), f3_track.get_tracking_map()) << "flux_from_untival map not set correctly with multiple keys"; + + // Flux from fluxpool test - untracked and unnamed + fluxpool flux4_track = flux3_track + flux1_track; + fluxpool flux4 = flux1.flux_from_fluxpool(flux4_track); + EXPECT_EQ(flux4.value(flux4_track.units()), flux4_track.value(flux4.units())) << "flux_from_fluxpool sets value correctly"; + EXPECT_EQ(flux4.name, "?") << "flux_from_fluxpool doesn't set default name"; + EXPECT_EQ(flux4.get_tracking_map(), flux1.get_tracking_map()) << "flux_from_fluxpool map not set correctly"; + EXPECT_EQ(flux4.tracking, flux1.tracking) << "flux_from_fluxpool tracking not set correctly"; + + // Flux from fluxpool test - tracked and named + fluxpool flux4_named = flux4_track.flux_from_fluxpool(flux4, "flux4"); + EXPECT_EQ(flux4_named.name, "flux4") << "flux_from_fluxpool doesn't set name"; + EXPECT_EQ(flux4_named.tracking, flux4_track.tracking) << "flux_from_fluxpool doesn't set tracking when true"; +} + +TEST_F( TrackingTest, AdjustPool ) { + // Adjust Pool To Val tests + + // Adjusting when not tracking - no "untracked" + fluxpool adjust2_no_track = f2.flux_from_unitval(u1); + adjust2_no_track.adjust_pool_to_val(u2.value(u2.units())); + EXPECT_EQ(adjust2_no_track, u2) << "value is not adjusted correctly"; + adjust2_no_track.tracking = true; + EXPECT_EQ(adjust2_no_track.get_fraction("untracked"), 0) << "when not tracking, untracked is not added to the map"; + + // Adjusting to lower value - no "untracked" + fluxpool adjust1_track = f2_track.flux_from_unitval(u2); + adjust1_track.adjust_pool_to_val(u1.value(u1.units())); + EXPECT_EQ(adjust1_track, u1) << "value is not adjusted correctly when tracking"; + EXPECT_EQ(adjust1_track.get_fraction("untracked"), 0) << "when tracking with negative diff, untracked is not added to the map"; + + // Adjusting when no "untracked" is set + fluxpool adjust2_no_untracked = f2_track.flux_from_unitval(u1); + adjust2_no_untracked.adjust_pool_to_val(u2.value(u2.units()), false); + EXPECT_EQ(adjust2_no_untracked, u2) << "value is not adjusted correctly"; + EXPECT_EQ(adjust2_no_untracked.get_fraction("untracked"), 0) << "when tracking with negative diff, untracked is not added to the map"; + + // Adjusting to higher value when tracking - "untracked" is used + fluxpool adjust2_track = f1_track.flux_from_unitval(u1); + adjust2_track.adjust_pool_to_val(u2); + EXPECT_EQ(adjust2_track, u2) << "value not adjusted correctly when tracking"; + EXPECT_EQ(adjust2_track.get_fraction("untracked"), u1/u2) << "untracked value not added to map"; +} + +TEST_F( TrackingTest, Math ) { + + // Multiplication Tests + fluxpool mult0r = f1 * 0.0; + EXPECT_EQ(mult0r, u0) << "multiplication by 0 does not work"; + EXPECT_FALSE(f1 == u0) << "multiplied fluxpool is not affected"; + fluxpool mult0l = 0.0 * f1; + EXPECT_EQ(mult0l, u0) << "multiplication by 0 does not work"; + + fluxpool mult4 = f1_track * 2.0; + EXPECT_EQ(mult4, u2) << "multiplication by 0 does not work"; + EXPECT_EQ(mult4.get_tracking_map(), f1.get_tracking_map()) << "product map same as multiplied map"; + EXPECT_EQ(mult4.name, f1_track.name) << "names aren't preserved during multiplication"; + EXPECT_EQ(mult4.tracking, f1_track.tracking) << "tracking is not preserved during multiplication"; + mult4 = mult4 + f2_track; + EXPECT_FALSE(mult4.get_tracking_map() == f1_track.get_tracking_map()) << "multiplication does not produce a deep copy"; + fluxpool mult3 = mult4 * 0.5; + // test for map with more than one element + EXPECT_EQ(mult3.get_tracking_map(), mult4.get_tracking_map()) << "product map same as multiplied map with multiple elements"; + + // Division Tests + fluxpool div1 = f2_track / 2.0; + EXPECT_EQ(div1, u1) << "division does not work"; + EXPECT_EQ(div1.get_tracking_map(), f2_track.get_tracking_map()) << "quotient map same as multipiled map"; + EXPECT_EQ(div1.name, f2_track.name) << "names aren't preserved during division"; + EXPECT_EQ(div1.tracking, f2_track.tracking) << "tracking is not preserved during multiplicaiton"; + div1 = div1 + f1_track; + EXPECT_FALSE(div1.get_tracking_map() == f2_track.get_tracking_map()) << "division does not produce a deep copy"; + fluxpool div2 = div1 / 0.5; + // test for map with more than one element + EXPECT_EQ(div2.get_tracking_map(), div2.get_tracking_map()) << "quotient map same as divided map with multiple elements"; + + // Subtraction Tests with Unitvals + fluxpool sub_zero = f2 - u0; + EXPECT_EQ(sub_zero, f2) << "subtraction by zero doesn't work"; + + fluxpool sub1 = f2 - u1; + EXPECT_EQ(sub1, u1) << "subtraction value doesn't work when not tracked"; + EXPECT_EQ(sub1.get_tracking_map(), f2.get_tracking_map()) << "untracked subtraction changes map"; + EXPECT_EQ(sub1.name, f2.name) << "subtraction preserves name"; + EXPECT_EQ(sub1.tracking, f2.tracking) << "subtract preserves tracking"; + + fluxpool sub1_track = f2_track - u1; + EXPECT_EQ(sub1_track, u1) << "subtraction value doesn't work when tracked"; + EXPECT_EQ(sub1_track.get_tracking_map(), f2_track.get_tracking_map()) << "tracked subtraction changes map"; + EXPECT_EQ(sub1_track.name, f2_track.name) << "subtraction preserves name"; + EXPECT_EQ(sub1_track.tracking, f2_track.tracking) << "subtract preserved tracking"; + + fluxpool sub2_track = f3_track - u1; + EXPECT_EQ(sub2_track.get_tracking_map(), f3_track.get_tracking_map()) << "tracked subtraction changes map with multiple keys"; + + // Subtraction Tests with Fluxpools + sub1_track = f2_track - f1_track; + EXPECT_EQ(sub1_track, u1) << "subtraction value doesn't work when tracked"; + EXPECT_EQ(sub1_track.get_tracking_map(), f2_track.get_tracking_map()) << "tracked subtraction changes map"; + EXPECT_EQ(sub1_track.name, f2_track.name) << "subtraction preserves name"; + EXPECT_EQ(sub1_track.tracking, f2_track.tracking) << "subtract preserves tracking"; + + sub2_track = f3_track - f1_track; + EXPECT_EQ(sub2_track.get_tracking_map(), f3_track.get_tracking_map()) << "tracked subtraction changes map with multiple keys"; + + // Addition Tests with unitvals + fluxpool add2 = f1 + u1; + EXPECT_EQ(add2.name, f1.name) << "name not preserved in unitval addition"; + EXPECT_EQ(add2.tracking, f1.tracking) << "tracking not preserved in unitval addition"; + EXPECT_EQ(add2, u2) << "value not preserved in unitval addition"; + fluxpool add4 = f3 + u1; + + // Addition Tests with Fluxpools + fluxpool add3 = f1 + f2; + EXPECT_EQ(add3.name, f1.name) << "addition of fluxpools doesn't preserve name when not tracking"; + EXPECT_EQ(add3.tracking, f1.tracking) << "addition of fluxpools doesn't preserve tracking when not tracking"; + EXPECT_EQ(add3, u3) << "addition of fluxpools doesn't preserve value when not tracking"; + + fluxpool add3_track = f1_track + f2_track; + EXPECT_EQ(add3_track.name, f1_track.name) << "addition of fluxpools doesn't preserve name when tracking"; + EXPECT_EQ(add3_track.tracking, f1_track.tracking) << "addition of fluxpools doesn't preserve tracking when tracking"; + EXPECT_EQ(add3_track, u3) << "addition of fluxpools doesn't preserve value when tracking"; + EXPECT_EQ(add3_track.get_fraction(f1_track.name), u1 / u3) << "addition of fluxpools does not modify map correctly when tracking"; + EXPECT_EQ(add3_track.get_fraction(f2_track.name), u2 / u3) << "addition of fluxpools does not modify map correctly when tracking"; + + // Things that should NOT throw an exception + fluxpool test = f2 - f1; + test = f1 + f2; + test = f1 * 2.0; + test = f1 / 2.0; + test = f1 - u1; + test = f1 + u2; + + identity_tests(false); + + // Things that SHOULD throw an exception + EXPECT_THROW(fluxpool(-1.0, U_PGC), h_exception); + EXPECT_THROW(test.set(-1.0, U_PGC ), h_exception); + EXPECT_THROW(f1 - f2, h_exception); + EXPECT_THROW(f1 - u2, h_exception); + EXPECT_THROW(f1 * -1.0, h_exception); + EXPECT_THROW(-1.0 * f1, h_exception); + EXPECT_THROW(f1 / -1.0, h_exception); + EXPECT_THROW(if(f1 == fluxpool(1.0, U_UNITLESS)) {}, h_exception); + EXPECT_THROW(f2 - unitval(0.0, U_UNITLESS), h_exception); + EXPECT_THROW(f2 - fluxpool(0.0, U_UNITLESS, true), h_exception); + EXPECT_THROW(f2_track - f1, h_exception); + EXPECT_THROW(f2_track + u1, h_exception); + EXPECT_THROW(f2_track + unitval(0.0, U_UNITLESS), h_exception); + EXPECT_THROW(f2_track + f1, h_exception); + EXPECT_THROW(f2_track + fluxpool(1.0, U_UNITLESS), h_exception); +} + +TEST_F( TrackingTest, Tracking ) { + // Tracking tests + identity_tests(true); + + // Non-tracked objects shouldn't give back tracking info + fluxpool x(1.0, U_PGC); + EXPECT_FALSE(x.tracking) << "default fluxpool shouldn't track"; + EXPECT_THROW(x.get_sources(), h_exception); + EXPECT_THROW(x.get_fraction(""), h_exception); + + fluxpool y(1.0, U_PGC, true, "y"); + EXPECT_EQ(y.get_fraction("blah blah"), 0.0) << "get_fraction wasn't 0"; + EXPECT_EQ(y.get_fraction("y"), 1.0) << "get_fraction wasn't 1"; + vector source = y.get_sources(); + EXPECT_EQ(source.size(), 1) << "source wasn't size 1"; + EXPECT_EQ(source.at(0), "y") << "source wasn't y"; + + // An actual tracking test + // Test 1: one source, one destination + fluxpool src1(10, U_PGC, true, "src1"), + dest(0.0, U_PGC, true, "dest"); + + fluxpool flux = src1 * 0.4; + dest = dest + flux; + src1 = src1 - flux; + + EXPECT_EQ(dest.get_fraction("src1"), 1.0) << "dest fraction src1 wasn't 1"; + source = dest.get_sources(); + EXPECT_EQ(source.size(), 2) << "dest source wasn't size 2"; + EXPECT_FALSE(find(source.begin(), source.end(), "src1") == source.end()) << "src wasn't in dest sources"; + + // Test 2: two sources, one destination + + fluxpool src2(10, U_PGC, true, "src2"); + flux = src2 * 0.6; + dest = dest + flux; + src2 = src2 - flux; + + EXPECT_EQ(dest.get_fraction("src1"), 0.4) << "get_fraction wasn't 0.4 for src1"; + EXPECT_EQ(dest.get_fraction("src2"), 0.6) << "get_fraction wasn't 0.6 for src2"; + source = dest.get_sources(); + EXPECT_EQ(source.size(), 3) << "dest source wasn't size 3"; + + // Test 3: start with a unitval flux and construct fluxpool (neeeded e.g. for LUC) + + unitval uflux(1.0, U_PGC); + flux = src1.flux_from_unitval(uflux); + EXPECT_EQ(uflux.value(U_PGC), flux.value(U_PGC)) << "flux and uflux values and/or units don't match"; + vector s1 = src1.get_sources(), s2 = flux.get_sources(); + EXPECT_EQ(s1.size(), s2.size()) << "flux and flux source maps not same size"; + EXPECT_TRUE(std::equal(s1.begin(), s1.end(), s2.begin())) << "flux and uflux values source maps don't match"; + + // Test 4: adjusting a total + + dest.adjust_pool_to_val(dest.value(U_PGC) * 1.1); + EXPECT_TRUE(dest.get_fraction("untracked") - 1.0 / 11.0 < 1e-6) << "untracked not correct"; +} diff --git a/src/testing/test_tseries.cpp b/src/unit-testing/test_tseries.cpp similarity index 94% rename from src/testing/test_tseries.cpp rename to src/unit-testing/test_tseries.cpp index 4ba6e102f..84ba7b10f 100644 --- a/src/testing/test_tseries.cpp +++ b/src/unit-testing/test_tseries.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -21,7 +21,7 @@ using namespace std; -TEST(TestTSeries, SmallBasics) { +TEST(TSeriesTest, SmallBasics) { Hector::tseries test; @@ -41,7 +41,7 @@ TEST(TestTSeries, SmallBasics) { EXPECT_EQ( test.get( p1 ), v1 ); } -TEST(TestTSeries, SmallFirstLast) { +TEST(TSeriesTest, SmallFirstLast) { Hector::tseries test; @@ -54,7 +54,7 @@ TEST(TestTSeries, SmallFirstLast) { EXPECT_EQ( test.lastdate(), p3 ); } -TEST(TestTSeries, SmallLinearInterp) { +TEST(TSeriesTest, SmallLinearInterp) { // Interpolation testing @@ -76,7 +76,7 @@ TEST(TestTSeries, SmallLinearInterp) { } -TEST(TestTSeries, EmptyTS) { +TEST(TSeriesTest, EmptyTS) { Hector::tseries test_empty; test_empty.allowInterp( true ); @@ -85,7 +85,7 @@ TEST(TestTSeries, EmptyTS) { EXPECT_THROW( test_empty.get( 1 ), h_exception ); } -TEST(TestTSeries, NoInterpAllowed) { +TEST(TSeriesTest, NoInterpAllowed) { // No interpolation allowed case Hector::tseries test; @@ -93,7 +93,7 @@ TEST(TestTSeries, NoInterpAllowed) { EXPECT_THROW( test.get( 4234.0 ), h_exception ); } -TEST(TestTSeries, SmallOverwrite) { +TEST(TSeriesTest, SmallOverwrite) { Hector::tseries test; int p1 = 1, p2 = 2; @@ -106,7 +106,7 @@ TEST(TestTSeries, SmallOverwrite) { } -TEST(TestTSeries, BigTimeSeries) { +TEST(TSeriesTest, BigTimeSeries) { // Test with a big time series @@ -288,30 +288,9 @@ TEST(TestTSeries, BigTimeSeries) { EXPECT_TRUE( co2.exists( x[ i ] ) ); EXPECT_FALSE( co2.exists( -x[ i ] ) ); } - - // Following code prints out values for graphing -/* - cout << "Testing linear interpolation..." << endl; - co2.set_interp( true, true, LINEAR ); - for( i=1950; i<2012; i++) - cout << i << ", "; - cout << endl; - for( i=1950; i<2012; i++) - cout << co2.get( i ) << ", "; - cout << endl; - - cout << "Testing spline_forsythe interpolation..." << endl; - co2.set_interp( true, true, SPLINE_FORSYTHE ); - for( i=1950; i<2012; i++) - cout << i << ", "; - cout << endl; - for( i=1950; i<2012; i++) - cout << co2.get( i ) << ", "; - cout << endl; -*/ } -TEST(TestTSeries, PartialInterp) { +TEST(TSeriesTest, PartialInterp) { Hector::tseries test; test.set( 1, 1 ); test.set( 2, 2 ); diff --git a/src/unit-testing/test_unitval.cpp b/src/unit-testing/test_unitval.cpp new file mode 100644 index 000000000..84df8228f --- /dev/null +++ b/src/unit-testing/test_unitval.cpp @@ -0,0 +1,154 @@ +/* Hector -- A Simple Climate Model + Copyright (C) 2021 Battelle Memorial Institute + + Please see the accompanying file LICENSE.md for additional licensing + information. + */ +/* + * test_unitval.cpp + * hector + * + * Created by Ben Bond-Lamberty on 2021-08-27 + * + */ + +#include +#include + +#include "unitval.hpp" + +using namespace std; + +/*! \brief Unit tests for the unitval class. + */ +class UnitvalTest : public testing::Test { +public: + UnitvalTest() + { + } + // google test fixtures must be protected +protected: + // fixture methods + virtual void SetUp() { + } +}; + +using namespace Hector; + +TEST_F( UnitvalTest, Construction ) { + + // Default constructors + unitval x; + EXPECT_EQ(x.value(U_UNDEFINED), 0.0); + + const double val = 1.0; + x = unitval(val, U_UNITLESS); + EXPECT_EQ(x.value(U_UNITLESS), val); + + // set works, but throws an error if changing units (other than if was U_UNDEFINED) + // set, no unit change + x = unitval(val, U_G); + x.set(val * 2, U_G); + EXPECT_EQ(x.value(U_G), val * 2); + EXPECT_EQ(x.units(), U_G); + + // set, unit change but was previously undefined + x = unitval(val, U_UNDEFINED); + x.set(val * 2, U_G); + EXPECT_EQ(x.value(U_G), val * 2); + + // set, illegal unit change + EXPECT_THROW(x.set(val, U_K), h_exception); +} + +TEST_F( UnitvalTest, Units ) { + // unitsName + // not going to test ALL the possibilities here + unitval x(1.0, U_UNDEFINED); + EXPECT_EQ(x.units(), U_UNDEFINED); + EXPECT_EQ(x.unitsName(), "(undefined)"); + + // unitsName also has a version where you pass it a unit independent of 'x' + EXPECT_EQ(x.unitsName(U_K), "K"); + EXPECT_EQ(x.unitsName(U_M3_S), "m3/s"); + + // expecting_unit + unitval y(1.0, U_M3_S); + y.expecting_unit(U_M3_S); + EXPECT_THROW(y.expecting_unit(U_UNDEFINED), h_exception); + + // if current units are undefined, they are set + y = unitval(1.0, U_UNDEFINED); + y.expecting_unit(U_M3_S); + EXPECT_EQ(y.units(), U_M3_S); +} + +TEST_F( UnitvalTest, Parsing ) { + unitval x(1.0, U_M3_S); + string input = "1.0," + x.unitsName(U_M3_S); + // parses string correctly + EXPECT_EQ(x.parse_unitval(input, U_M3_S), x); + // errors on different unit than expected + EXPECT_THROW(x.parse_unitval(input, U_K), h_exception); + + // handles whitespace + input = " 1.0," + x.unitsName(U_M3_S); + EXPECT_EQ(x.parse_unitval(input, U_M3_S), x); + input = "1.0 , " + x.unitsName(U_M3_S); + EXPECT_EQ(x.parse_unitval(input, U_M3_S), x); + input = "1.0," + x.unitsName(U_M3_S) + " "; + EXPECT_EQ(x.parse_unitval(input, U_M3_S), x); + + // no units given is allowed + EXPECT_EQ(x.parse_unitval("1.0", U_M3_S), x); + EXPECT_EQ(x.parse_unitval("1.0,", U_M3_S), x); + + // bad input + input = "abc," + x.unitsName(U_M3_S); + EXPECT_THROW(x.parse_unitval(input, U_M3_S), h_exception); + EXPECT_THROW(x.parse_unitval("1.0,abc", U_M3_S), h_exception); +} + +TEST_F( UnitvalTest, Math ) { + unitval x(1.0, U_M3_S); + unitval y(2.0, U_M3_S); + unitval minusy(-2.0, U_M3_S); + unitval ybad(2.0, U_G); + unitval z(3.0, U_M3_S); + + // addition and subtraction + EXPECT_EQ(x + y, z); + EXPECT_EQ(-y, minusy); // unary minus + EXPECT_EQ(x - -y, z); // unary minus + EXPECT_EQ(z - y, x); + EXPECT_EQ(z - x, y); + EXPECT_THROW(x + ybad, h_exception); + EXPECT_THROW(x - ybad, h_exception); + + // multiplication and division + EXPECT_EQ(x * 1.0, x); + EXPECT_EQ(1.0 * x, x); + EXPECT_EQ(x / 1.0, x); + EXPECT_EQ(x * 2.0, y); + EXPECT_EQ(z / 3.0, x); + EXPECT_EQ(y / x, 2.0); + EXPECT_EQ(z / z, 1.0); + EXPECT_THROW(ybad / x, h_exception); +} + +TEST_F( UnitvalTest, unitsName ) { + // Make sure unitsName() has a string for all the enumerated units + for( int i = 0; i <= U_UNDEFINED; ++i ) { + const unit_types u = static_cast( i ); + EXPECT_NO_THROW( Hector::unitval::unitsName( u ) ); + } +} + +TEST_F( UnitvalTest, Output ) { + stringstream out; + unitval x(1.0, U_M3_S); + + // not sure what to test here, other than it does print as we expect + out << x; + EXPECT_EQ(out.str(), "1 " + x.unitsName()); +} diff --git a/src/testing/testing_main.cpp b/src/unit-testing/testing_main.cpp similarity index 94% rename from src/testing/testing_main.cpp rename to src/unit-testing/testing_main.cpp index 4e6418c03..44462f934 100644 --- a/src/testing/testing_main.cpp +++ b/src/unit-testing/testing_main.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. diff --git a/src/unitval.cpp b/src/unitval.cpp index 65b145bed..b38e8fa12 100644 --- a/src/unitval.cpp +++ b/src/unitval.cpp @@ -1,5 +1,5 @@ /* Hector -- A Simple Climate Model - Copyright (C) 2014-2015 Battelle Memorial Institute + Copyright (C) 2022 Battelle Memorial Institute Please see the accompanying file LICENSE.md for additional licensing information. @@ -12,12 +12,18 @@ * */ -#include +// some boost headers generate warnings under clang; not our problem, ignore +// 2023 and Boost 1.81.0_1: trim.hpp still generates one warning +// 2023 and Boost 1.81.0_1: lexical_cast.hpp still generates many warnings +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Weverything" #include +#include +#pragma clang diagnostic pop +#include "h_util.hpp" #include "logger.hpp" #include "unitval.hpp" -#include "h_util.hpp" namespace Hector { @@ -27,99 +33,155 @@ using namespace boost; //------------------------------------------------------------------------------ /*! \brief Return name of given unit. */ -string unitval::unitsName( const unit_types u ) { - switch( u ) { - case U_UNDEFINED: return "(undefined)"; - break; - case U_UNITLESS: return "(unitless)"; - break; - case U_PPMV_CO2: return "ppmv CO2"; - break; - case U_PPBV: return "ppbv"; - break; - case U_PPBV_CH4: return "ppbv CH4"; - break; - case U_PPTV_CH4: return "pptv CH4"; - break; - case U_PPBV_N2O: return "ppbv N2O"; - break; - case U_PPTV_N2O: return "pptv N2O"; - break; - case U_DU_O3: return "DU O3"; - break; - case U_TG_N: return "Tg N"; - break; - case U_GG_S: return "Gg S"; - break; - case U_TG_CO: return "Tg CO"; - break; - case U_TG_CH4: return "Tg CH4"; - break; - case U_TG_NMVOC: return "Tg NMVOC"; - break; - case U_TG_PPBV: return "Tg/ppbv"; - break; - case U_MOL_YR: return "mol/yr"; - break; - case U_PPTV: return "pptv"; - break; - case U_DEGC: return "degC"; - break; - case U_K: return "K"; - break; - case U_1_K: return "1_K"; - break; - case U_CM: return "cm"; - break; - case U_CM_YR: return "cm/yr"; - break; - case U_CM2_S: return "cm2/s"; - break; - case U_G: return "g"; - break; - case U_GG: return "Gg"; - break; - case U_TG: return "Tg"; - break; - case U_MOL: return "mol"; - break; - case U_GMOL: return "Gmol"; - break; - case U_GT: return "GT(?)"; - break; - case U_PGC: return "Pg C"; - break; - case U_PGC_YR: return "Pg C/yr"; - break; - case U_W_M2: return "W/m2"; - break; - case U_W_M2_PPTV: return "W/m2/pptv"; - break; - case U_W_M2_K: return "W/m2/K"; - break; - case U_PH: return "pH"; - break; - case U_UATM: return "uatm"; - break; - case U_UMOL_KG: return "umol/kg"; - break; - case U_MOL_KG: return "mol/kg"; - break; - case U_gC_m2_month_uatm: return "gC/m/month/atm"; - break; - case U_MOL_L_ATM: return "mol/l/atm"; - break; - case U_MOL_KG_ATM: return "mol/kg/atm"; - break; - case U_DOBSON: return "dobson"; - break; - case U_YRS: return "Years"; - break; - case U_M3_S: return "m3/s"; - break; - - default: H_THROW( "Unhandled unit!" ); - } +string unitval::unitsName(const unit_types u) { + switch (u) { + case U_UNDEFINED: + return "(undefined)"; + break; + case U_UNITLESS: + return "(unitless)"; + break; + case U_PPMV_CO2: + return "ppmv CO2"; + break; + case U_PPBV: + return "ppbv"; + break; + case U_PPBV_CH4: + return "ppbv CH4"; + break; + case U_PPTV_CH4: + return "pptv CH4"; + break; + case U_PPBV_N2O: + return "ppbv N2O"; + break; + case U_PPTV_N2O: + return "pptv N2O"; + break; + case U_DU_O3: + return "DU O3"; + break; + case U_TG_N: + return "Tg N"; + break; + case U_GG_S: + return "Gg S"; + break; + case U_TG_CO: + return "Tg CO"; + break; + case U_TG_CH4: + return "Tg CH4"; + break; + case U_TG_NMVOC: + return "Tg NMVOC"; + break; + case U_TG_PPBV: + return "Tg/ppbv"; + break; + case U_MOL_YR: + return "mol/yr"; + break; + case U_PPTV: + return "pptv"; + break; + case U_DEGC: + return "degC"; + break; + case U_K: + return "K"; + break; + case U_1_K: + return "1_K"; + break; + case U_CM: + return "cm"; + break; + case U_CM_YR: + return "cm/yr"; + break; + case U_CM2_S: + return "cm2/s"; + break; + case U_G: + return "g"; + break; + case U_GG: + return "Gg"; + break; + case U_TG: + return "Tg"; + break; + case U_MOL: + return "mol"; + break; + case U_GMOL: + return "Gmol"; + break; + case U_GT: + return "GT(?)"; + break; + case U_PGC: + return "Pg C"; + break; + case U_PGC_YR: + return "Pg C/yr"; + break; + case U_W_M2: + return "W/m2"; + break; + case U_W_M2_PPTV: + return "W/m2/pptv"; + break; + case U_W_M2_TG: + return "W/m2/Tg"; + break; + case U_W_M2_GG: + return "W/m2/Gg"; + break; + case U_W_M2_K: + return "W/m2/K"; + break; + case U_PH: + return "pH"; + break; + case U_UATM: + return "uatm"; + break; + case U_UMOL_KG: + return "umol/kg"; + break; + case U_MOL_KG: + return "mol/kg"; + break; + case U_gC_m2_month_uatm: + return "gC/m/month/atm"; + break; + case U_MOL_L_ATM: + return "mol/l/atm"; + break; + case U_MOL_KG_ATM: + return "mol/kg/atm"; + break; + case U_J_KG_C: + return "J/kg/degC"; + break; + case U_DOBSON: + return "dobson"; + break; + case U_YRS: + return "Years"; + break; + case U_M3_S: + return "m3/s"; + break; + + default: + string msg = + "Unhandled unit " + std::to_string(u) + " in unitval::unitsName!"; + H_THROW(msg); + } } //------------------------------------------------------------------------------ @@ -128,28 +190,29 @@ string unitval::unitsName( const unit_types u ) { * Uses names consistent with unitsName to translate between strings and * unit_types. */ -unit_types unitval::parseUnitsName( const string& unitsStr ) { - // Iterate over all the enumerated units and check if its unitsName() matches - // the given units string. - /*! - * \warning All inits in unit_types must be defined before U_UNDEFINED. - */ - for( int i = 0; i <= U_UNDEFINED; ++i ) { - const unit_types u = static_cast( i ); - if( unitsStr == unitsName( u ) ) { - return u; - } +unit_types unitval::parseUnitsName(const string &unitsStr) { + // Iterate over all the enumerated units and check if its unitsName() matches + // the given units string. + /*! + * \warning All inits in unit_types must be defined before U_UNDEFINED. + */ + for (int i = 0; i <= U_UNDEFINED; ++i) { + const unit_types u = static_cast(i); + if (unitsStr == unitsName(u)) { + return u; } + } - // No unitsNames matched. - H_THROW( "Could not parse unknown units string: " + unitsStr ); + // No unitsNames matched. + H_THROW("Could not parse unknown units string: " + unitsStr); } //------------------------------------------------------------------------------ /*! \brief Parse a unitval from a single line of input. * - * Input is assumed to be in the format of [value],[units]. Extra whitespace is - * allowed. Not having specified units (i.e. just the value) is currently allowed. + * Input is assumed to be in the format of [value],[units]. Extra whitespace + * is allowed. Not having specified units (i.e. just the value) is currently + * allowed. * * \param unitvalStr The string to be parsed into a unitval. * \param expectedUnits The expected units that the input should be in. @@ -158,28 +221,30 @@ unit_types unitval::parseUnitsName( const string& unitsStr ) { * - The units string (if set) is not recognized by unitsName. * - The units string (if set) does not match the expected units. */ -unitval unitval::parse_unitval( const string& unitvalStr, - const unit_types& expectedUnits ) -{ - // we are assuming that should units exist they will be in the format of: - // [value],[units] - string::const_iterator commaPos = find( unitvalStr.begin(), unitvalStr.end(), ',' ); +unitval unitval::parse_unitval(const string &unitvalStr, + const unit_types &expectedUnits) { + // we are assuming that should units exist they will be in the format of: + // [value],[units] + string::const_iterator commaPos = + find(unitvalStr.begin(), unitvalStr.end(), ','); - string valueStr = string( unitvalStr.begin(), commaPos ); - string unitsStr = commaPos == unitvalStr.end() ? string() : string( commaPos + 1, unitvalStr.end() ); + string valueStr = string(unitvalStr.begin(), commaPos); + string unitsStr = commaPos == unitvalStr.end() + ? string() + : string(commaPos + 1, unitvalStr.end()); - // remove extra whitespace - trim( valueStr ); - trim( unitsStr ); + // remove extra whitespace + trim(valueStr); + trim(unitsStr); - return parse_unitval( valueStr, unitsStr, expectedUnits ); + return parse_unitval(valueStr, unitsStr, expectedUnits); } //------------------------------------------------------------------------------ /*! \brief Parse a unitval given a value string and units string. * - * Having an empty unitsStr is currently allowed in which case the units will be - * set to expectedUnits. + * Having an empty unitsStr is currently allowed in which case the units will + * be set to expectedUnits. * * \param valueStr The numerical part of unitval to be parsed. * \param unitsStr The (optional) units part of unitval to be parsed. @@ -189,36 +254,39 @@ unitval unitval::parse_unitval( const string& unitvalStr, * - The units string (if set) is not recognized by unitsName. * - The units string (if set) does not match the expected units. */ -unitval unitval::parse_unitval( const string& valueStr, const string& unitsStr, - const unit_types& expectedUnits ) -{ - // Double check if a user really provided a single unitval string in which - // case it should be re-parsed before converting. - if( unitsStr.empty() && find( valueStr.begin(), valueStr.end(), ',' ) != valueStr.end() ) { - return parse_unitval( valueStr, expectedUnits ); - } +unitval unitval::parse_unitval(const string &valueStr, const string &unitsStr, + const unit_types &expectedUnits) { + // Double check if a user really provided a single unitval string in which + // case it should be re-parsed before converting. + if (unitsStr.empty() && + find(valueStr.begin(), valueStr.end(), ',') != valueStr.end()) { + return parse_unitval(valueStr, expectedUnits); + } - double value; - unit_types units; + double value; + unit_types units; - try { - // parse the numerical value of the unitval - value = lexical_cast( valueStr ); - } catch( bad_lexical_cast& castException ) { - H_THROW( "Could not convert value "+valueStr+", exception: "+castException.what() ); - } + try { + // parse the numerical value of the unitval + value = lexical_cast(valueStr); + } catch (bad_lexical_cast &castException) { + H_THROW("Could not convert value " + valueStr + + ", exception: " + castException.what()); + } - if( unitsStr.empty() ) { - // we are currently allowing input files to not have to specify units and - // are assuming they are in the expected units - units = expectedUnits; - } else { - // if units are given then they must match the expected units - units = parseUnitsName( unitsStr ); - H_ASSERT( units == expectedUnits, "Units: "+unitsStr+" do not match expected: "+unitsName( expectedUnits ) ); - } + if (unitsStr.empty()) { + // we are currently allowing input files to not have to specify units and + // are assuming they are in the expected units + units = expectedUnits; + } else { + // if units are given then they must match the expected units + units = parseUnitsName(unitsStr); + H_ASSERT(units == expectedUnits, + "Units: " + unitsStr + + " do not match expected: " + unitsName(expectedUnits)); + } - return unitval( value, units ); + return unitval(value, units); } //------------------------------------------------------------------------------ @@ -228,13 +296,14 @@ unitval unitval::parse_unitval( const string& valueStr, const string& unitsStr, * \exception h_exception An exception may be raised for the following reasons: * - The originally set units do not match the expected units. */ -void unitval::expecting_unit( const unit_types& expectedUnits ) { - if (valUnits == U_UNDEFINED) { - valUnits = expectedUnits; - } else { - H_ASSERT( valUnits == expectedUnits, "Units: "+unitsName( valUnits ) - +" do not match expected: "+unitsName( expectedUnits ) ); - } +void unitval::expecting_unit(const unit_types &expectedUnits) { + if (valUnits == U_UNDEFINED) { + valUnits = expectedUnits; + } else { + H_ASSERT(valUnits == expectedUnits, + "Units: " + unitsName(valUnits) + + " do not match expected: " + unitsName(expectedUnits)); + } } -} +} // namespace Hector diff --git a/test_hector.sh b/test_hector.sh index 85dea36bc..629a6e068 100755 --- a/test_hector.sh +++ b/test_hector.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash # Run Hector through a bunch of tests -# Intended for Travis-CI, but can be used locally too -# BBL May 2020 +# Intended for GitHub Actions, but can be used locally too +# BBL January 2022 # exit when any command fails set -e @@ -25,44 +25,88 @@ if [ ! -d $INPUT ]; then exit 1 fi -# Run the basic RCPs -$HECTOR $INPUT/hector_rcp26.ini -$HECTOR $INPUT/hector_rcp45.ini -$HECTOR $INPUT/hector_rcp60.ini -$HECTOR $INPUT/hector_rcp85.ini +# Helper function to print error message and exit +exit_loudly () { + echo "ERROR! Couldn't find $1 line" + exit 1 +} + +# Run all INI files (the basic SSPs) +echo "---------- Running: basic SSPs ----------" +find ./inst/input -name "*.ini" -print0 | xargs -0 -n1 $HECTOR + +# Permafrost (off by default in v3) runs +echo "---------- Running: permafrost ----------" +sed 's/permafrost_c=0/permafrost_c=865/' $INPUT/hector_ssp245.ini > $INPUT/hector_ssp245_pf.ini +# Confirm that a change was made +if [[ $(diff -q $INPUT/hector_ssp245.ini $INPUT/hector_ssp245_pf.ini | wc -c) -eq 0 ]]; then exit_loudly "permafrost"; fi +# ...and run +$HECTOR $INPUT/hector_ssp245_pf.ini # Make sure the model handles year changes -sed 's/startDate=1745/startDate=1740/' $INPUT/hector_rcp45.ini > $INPUT/hector_rcp45_time.ini -$HECTOR $INPUT/hector_rcp45_time.ini -sed 's/endDate=2300/endDate=2250/' $INPUT/hector_rcp45.ini > $INPUT/hector_rcp45_time.ini -$HECTOR $INPUT/hector_rcp45_time.ini -rm $INPUT/hector_rcp45_time.ini +echo "---------- Running: year changes ----------" +sed 's/startDate=1745/startDate=1746/' $INPUT/hector_ssp245.ini > $INPUT/hector_ssp245_time.ini +if [[ $(diff -q $INPUT/hector_ssp245.ini $INPUT/hector_ssp245_time.ini | wc -c) -eq 0 ]]; then exit_loudly "startDate"; fi +# ...and run +$HECTOR $INPUT/hector_ssp245_time.ini + +sed 's/endDate=2300/endDate=2250/' $INPUT/hector_ssp245.ini > $INPUT/hector_ssp245_time.ini +if [[ $(diff -q $INPUT/hector_ssp245.ini $INPUT/hector_ssp245_time.ini | wc -c) -eq 0 ]]; then exit_loudly "endDate"; fi +$HECTOR $INPUT/hector_ssp245_time.ini +rm $INPUT/hector_ssp245_time.ini + +# Turn on tracking +echo "---------- Running: tracking ----------" +sed 's/trackingDate=9999/trackingDate=1850/' $INPUT/hector_ssp245.ini > $INPUT/hector_ssp245_tracking.ini +if [[ $(diff -q $INPUT/hector_ssp245.ini $INPUT/hector_ssp245_tracking.ini | wc -c) -eq 0 ]]; then exit_loudly "trackingDate"; fi +$HECTOR $INPUT/hector_ssp245_tracking.ini + +# Note that in the runs below, we're running the model with various constraints +# turned on, and verifying that it doesn't crash or anything like that. +# We don't check that the constraint actually *works*, i.e. that the (for example) +# Tgav outputs match the constraint input. + +echo "---------- Running: tracking & CO2 constraint ----------" +sed 's/;[[:space:]]*CO2_constrain=csv:tables\/ssp245_emiss-constraints_rf.csv/CO2_constrain=csv:tables\/ssp245_emiss-constraints_rf.csv/' $INPUT/hector_ssp245_tracking.ini > $INPUT/hector_ssp245_tracking_co2.ini +if [[ $(diff -q $INPUT/hector_ssp245_tracking.ini $INPUT/hector_ssp245_tracking_co2.ini | wc -c) -eq 0 ]]; then exit_loudly "CO2_constrain"; fi +$HECTOR $INPUT/hector_ssp245_tracking_co2.ini +rm $INPUT/hector_ssp245_tracking_co2.ini +rm $INPUT/hector_ssp245_tracking.ini # Turn off spinup -sed 's/do_spinup=1/do_spinup=0/' $INPUT/hector_rcp45.ini > $INPUT/hector_rcp45_spinup.ini -$HECTOR $INPUT/hector_rcp45_spinup.ini -rm $INPUT/hector_rcp45_spinup.ini +echo "---------- Running: no spinup ----------" +sed 's/do_spinup=1/do_spinup=0/' $INPUT/hector_ssp245.ini > $INPUT/hector_ssp245_spinup.ini +if [[ $(diff -q $INPUT/hector_ssp245.ini $INPUT/hector_ssp245_spinup.ini | wc -c) -eq 0 ]]; then exit_loudly "do_spinup"; fi +$HECTOR $INPUT/hector_ssp245_spinup.ini +rm $INPUT/hector_ssp245_spinup.ini # Turn on the constraint settings one by one and run the model # CO2 -sed 's/;CO2_constrain=csv:constraints\/lawdome_co2.csv/CO2_constrain=csv:constraints\/lawdome_co2.csv/' $INPUT/hector_rcp45.ini > $INPUT/hector_rcp45_co2.ini -$HECTOR $INPUT/hector_rcp45_co2.ini -rm $INPUT/hector_rcp45_co2.ini +echo "---------- Running: CO2 constraint ----------" +sed 's/;[[:space:]]*CO2_constrain=csv:tables\/ssp245_emiss-constraints_rf.csv/CO2_constrain=csv:tables\/ssp245_emiss-constraints_rf.csv/' $INPUT/hector_ssp245.ini > $INPUT/hector_ssp245_co2.ini +if [[ $(diff -q $INPUT/hector_ssp245.ini $INPUT/hector_ssp245_co2.ini | wc -c) -eq 0 ]]; then exit_loudly "CO2_constrain"; fi +$HECTOR $INPUT/hector_ssp245_co2.ini +rm $INPUT/hector_ssp245_co2.ini # Temperature -sed 's/;tgav_constrain/tgav_constrain/' $INPUT/hector_rcp45.ini > $INPUT/hector_rcp45_tgav.ini -$HECTOR $INPUT/hector_rcp45_tgav.ini -rm $INPUT/hector_rcp45_tgav.ini +echo "---------- Running: tas constraint ----------" +sed 's/;[[:space:]]*tas_constrain=csv:tables\/ssp245_emiss-constraints_rf.csv/tas_constrain=csv:tables\/tas_historical.csv/' $INPUT/hector_ssp245.ini > $INPUT/hector_ssp245_tas.ini +if [[ $(diff -q $INPUT/hector_ssp245.ini $INPUT/hector_ssp245_tas.ini | wc -c) -eq 0 ]]; then exit_loudly "tas_constrain"; fi +$HECTOR $INPUT/hector_ssp245_tas.ini +rm $INPUT/hector_ssp245_tas.ini # Radiative forcing -sed 's/;Ftot_constrain/Ftot_constrain/' $INPUT/hector_rcp45.ini > $INPUT/hector_rcp45_ftot.ini -$HECTOR $INPUT/hector_rcp45_ftot.ini -rm $INPUT/hector_rcp45_ftot.ini - -# Ocean-atmosphere C flux -# Disabled as the relevant file doesn't seem to currently exist -#sed 's/;atm_ocean_constrain/atm_ocean_constrain/' input/hector_rcp45.ini > input/hector_rcp45_ocean.ini -#$HECTOR input/hector_rcp45_ocean.ini -#rm input/hector_rcp45_ocean.ini +echo "---------- Running: RF tot constraint ----------" +sed 's/;[[:space:]]*RF_tot_constrain=csv:tables\/CONSTRAINT.csv/RF_tot_constrain=csv:tables\/ar6_historical_constraint.csv/' $INPUT/hector_ssp245.ini > $INPUT/hector_ssp245_ftot.ini +if [[ $(diff -q $INPUT/hector_ssp245.ini $INPUT/hector_ssp245_ftot.ini | wc -c) -eq 0 ]]; then exit_loudly "RF_tot_constrain"; fi +$HECTOR $INPUT/hector_ssp245_ftot.ini +rm $INPUT/hector_ssp245_ftot.ini + +# Net biome production +echo "---------- Running: NBP constraint ----------" +sed 's/;[[:space:]]*NBP_constrain=csv:tables\/ssp245_emiss-constraints_rf.csv/NBP_constrain=csv:tables\/nbp_output.csv/' $INPUT/hector_ssp245.ini > $INPUT/hector_ssp245_nbp.ini +if [[ $(diff -q $INPUT/hector_ssp245.ini $INPUT/hector_ssp245_nbp.ini | wc -c) -eq 0 ]]; then exit_loudly "NBP_constrain"; fi +$HECTOR $INPUT/hector_ssp245_nbp.ini +rm $INPUT/hector_ssp245_nbp.ini echo "All done." diff --git a/tests/testthat/compdata/hector_comp.csv b/tests/testthat/compdata/hector_comp.csv index 8b09ef8ac..c67140e81 100644 --- a/tests/testthat/compdata/hector_comp.csv +++ b/tests/testthat/compdata/hector_comp.csv @@ -1,1415 +1,5005 @@ "scenario","year","variable","value","units","version","commit" -"hector_rcp45_constrained.ini",1850,"Ca",284.725,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1851,"Ca",284.875,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1852,"Ca",285,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1853,"Ca",285.125,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1854,"Ca",285.275,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1855,"Ca",285.425,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1856,"Ca",285.575,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1857,"Ca",285.725,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1858,"Ca",285.9,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1859,"Ca",286.075,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1860,"Ca",286.225,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1861,"Ca",286.375,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1862,"Ca",286.5,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1863,"Ca",286.625,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1864,"Ca",286.775,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1865,"Ca",286.9,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1866,"Ca",287,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1867,"Ca",287.1,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1868,"Ca",287.225,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1869,"Ca",287.375,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1870,"Ca",287.525,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1871,"Ca",287.7,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1872,"Ca",287.9,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1873,"Ca",288.125,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1874,"Ca",288.4,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1875,"Ca",288.7,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1876,"Ca",289.025,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1877,"Ca",289.4,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1878,"Ca",289.8,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1879,"Ca",290.225,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1880,"Ca",290.7,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1881,"Ca",291.2,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1882,"Ca",291.675,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1883,"Ca",292.125,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1884,"Ca",292.575,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1885,"Ca",292.975,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1886,"Ca",293.3,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1887,"Ca",293.575,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1888,"Ca",293.8,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1889,"Ca",294,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1890,"Ca",294.175,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1891,"Ca",294.325,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1892,"Ca",294.475,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1893,"Ca",294.6,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1894,"Ca",294.7,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1895,"Ca",294.8,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1896,"Ca",294.9,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1897,"Ca",295.025,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1898,"Ca",295.225,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1899,"Ca",295.5,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1900,"Ca",295.8,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1901,"Ca",296.125,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1902,"Ca",296.475,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1903,"Ca",296.825,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1904,"Ca",297.2,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1905,"Ca",297.625,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1906,"Ca",298.075,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1907,"Ca",298.5,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1908,"Ca",298.9,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1909,"Ca",299.3,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1910,"Ca",299.7,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1911,"Ca",300.075,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1912,"Ca",300.425,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1913,"Ca",300.775,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1914,"Ca",301.1,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1915,"Ca",301.4,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1916,"Ca",301.725,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1917,"Ca",302.075,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1918,"Ca",302.4,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1919,"Ca",302.7,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1920,"Ca",303.025,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1921,"Ca",303.4,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1922,"Ca",303.775,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1923,"Ca",304.125,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1924,"Ca",304.525,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1925,"Ca",304.975,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1926,"Ca",305.4,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1927,"Ca",305.825,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1928,"Ca",306.3,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1929,"Ca",306.775,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1930,"Ca",307.225,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1931,"Ca",307.7,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1932,"Ca",308.175,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1933,"Ca",308.6,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1934,"Ca",309,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1935,"Ca",309.4,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1936,"Ca",309.75,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1937,"Ca",310,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1938,"Ca",310.175,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1939,"Ca",310.3,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1940,"Ca",310.375,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1941,"Ca",310.375,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1942,"Ca",310.3,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1943,"Ca",310.2,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1944,"Ca",310.125,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1945,"Ca",310.1,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1946,"Ca",310.125,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1947,"Ca",310.2,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1948,"Ca",310.325,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1949,"Ca",310.5,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1950,"Ca",310.75,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1850,"Tgav",0.153614896629565,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1851,"Tgav",0.15878279788473,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1852,"Tgav",0.165302549798766,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1853,"Tgav",0.172718652619151,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1854,"Tgav",0.180156013041943,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1855,"Tgav",0.175498834955893,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1856,"Tgav",0.132357832262779,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1857,"Tgav",0.0758563945137398,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1858,"Tgav",0.0607661676523818,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1859,"Tgav",0.0813694413128265,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1860,"Tgav",0.108929668908534,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1861,"Tgav",0.128046017699982,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1862,"Tgav",0.134216375586166,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1863,"Tgav",0.139345939742752,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1864,"Tgav",0.151166909304001,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1865,"Tgav",0.165271227555279,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1866,"Tgav",0.178177768325802,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1867,"Tgav",0.18915730627725,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1868,"Tgav",0.198135579034463,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1869,"Tgav",0.204813247393452,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1870,"Tgav",0.210102075954725,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1871,"Tgav",0.214824720981171,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1872,"Tgav",0.218120377350183,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1873,"Tgav",0.220191965175144,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1874,"Tgav",0.22334249327145,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1875,"Tgav",0.226229073577817,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1876,"Tgav",0.225846828304489,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1877,"Tgav",0.226045874794612,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1878,"Tgav",0.230262379733456,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1879,"Tgav",0.23682216354818,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1880,"Tgav",0.244328672143434,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1881,"Tgav",0.251869946070799,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1882,"Tgav",0.249125195882391,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1883,"Tgav",0.168371358853319,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1884,"Tgav",0.038758084159223,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1885,"Tgav",-0.00910805703509701,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1886,"Tgav",0.00509067154054744,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1887,"Tgav",0.028134222594362,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1888,"Tgav",0.0525849500576248,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1889,"Tgav",0.0640352752347817,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1890,"Tgav",0.0662801139454116,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1891,"Tgav",0.0732592297440102,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1892,"Tgav",0.0940776892324711,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1893,"Tgav",0.123518899523314,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1894,"Tgav",0.155600130523773,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1895,"Tgav",0.179473930062566,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1896,"Tgav",0.184774470996677,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1897,"Tgav",0.181296539103143,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1898,"Tgav",0.188348559455029,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1899,"Tgav",0.205572172621248,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1900,"Tgav",0.224537516431377,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1901,"Tgav",0.238627010205974,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1902,"Tgav",0.210886245916367,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1903,"Tgav",0.153413835181353,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1904,"Tgav",0.134985564396829,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1905,"Tgav",0.156452525295637,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1906,"Tgav",0.183276183654655,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1907,"Tgav",0.200721691474383,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1908,"Tgav",0.214135482134784,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1909,"Tgav",0.230364063498564,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1910,"Tgav",0.246655008285109,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1911,"Tgav",0.260759308554441,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1912,"Tgav",0.251544591266937,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1913,"Tgav",0.234813634089925,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1914,"Tgav",0.241896222487627,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1915,"Tgav",0.259468398564187,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1916,"Tgav",0.276359753440435,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1917,"Tgav",0.290618082711863,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1918,"Tgav",0.302871597385722,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1919,"Tgav",0.312682784552831,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1920,"Tgav",0.314072885410926,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1921,"Tgav",0.314042504889121,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1922,"Tgav",0.322344209270247,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1923,"Tgav",0.331879361568303,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1924,"Tgav",0.338558786077274,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1925,"Tgav",0.344163977760251,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1926,"Tgav",0.349868628615305,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1927,"Tgav",0.354838033276674,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1928,"Tgav",0.355126211070303,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1929,"Tgav",0.351525315301118,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1930,"Tgav",0.351606551004456,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1931,"Tgav",0.355020457706159,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1932,"Tgav",0.355774650470461,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1933,"Tgav",0.357435809425759,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1934,"Tgav",0.362741958029916,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1935,"Tgav",0.36821157271461,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1936,"Tgav",0.373739069755146,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1937,"Tgav",0.378183157445856,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1938,"Tgav",0.380354577367313,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1939,"Tgav",0.382144561447499,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1940,"Tgav",0.3854218720842,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1941,"Tgav",0.389135241941709,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1942,"Tgav",0.390256552119111,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1943,"Tgav",0.39059403246233,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1944,"Tgav",0.393046944745988,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1945,"Tgav",0.396288084881465,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1946,"Tgav",0.399724857973737,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1947,"Tgav",0.402067560273404,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1948,"Tgav",0.404125841347748,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1949,"Tgav",0.405695759307849,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1950,"Tgav",0.407419781218741,"degC",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1850,"Ftot",0.408328190401556,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1851,"Ftot",0.413530226440334,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1852,"Ftot",0.432835922714445,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1853,"Ftot",0.450944124146118,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1854,"Ftot",0.462857747093671,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1855,"Ftot",0.335837181605124,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1856,"Ftot",-0.118589546471336,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1857,"Ftot",-0.368869493765428,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1858,"Ftot",-0.0526239975831377,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1859,"Ftot",0.276899791235886,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1860,"Ftot",0.402308971516639,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1861,"Ftot",0.39368125401136,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1862,"Ftot",0.31088707206639,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1863,"Ftot",0.324438810486424,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1864,"Ftot",0.409131273654193,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1865,"Ftot",0.457477159535868,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1866,"Ftot",0.478069066397658,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1867,"Ftot",0.487843870485757,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1868,"Ftot",0.490029100819712,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1869,"Ftot",0.482242506842542,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1870,"Ftot",0.478427717288335,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1871,"Ftot",0.479270318060123,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1872,"Ftot",0.46838642413319,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1873,"Ftot",0.457306499724452,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1874,"Ftot",0.469366564341072,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1875,"Ftot",0.467362309135041,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1876,"Ftot",0.43239043671548,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1877,"Ftot",0.435444032486557,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1878,"Ftot",0.475664310532672,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1879,"Ftot",0.506395623937611,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1880,"Ftot",0.530455520113552,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1881,"Ftot",0.547191661605877,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1882,"Ftot",0.444782434120547,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1883,"Ftot",-0.459795307790875,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1884,"Ftot",-1.18527966263395,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1885,"Ftot",-0.58350779012387,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1886,"Ftot",-0.0806095292886551,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1887,"Ftot",0.0531049610987226,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1888,"Ftot",0.169238739958976,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1889,"Ftot",0.108188387717324,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1890,"Ftot",0.0591157964199562,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1891,"Ftot",0.131167152078021,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1892,"Ftot",0.307140286681113,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1893,"Ftot",0.456042018810872,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1894,"Ftot",0.565907046442078,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1895,"Ftot",0.558734956338551,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1896,"Ftot",0.413643117742591,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1897,"Ftot",0.332959644289363,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1898,"Ftot",0.437213122645335,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1899,"Ftot",0.553015492054484,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1900,"Ftot",0.607826739214919,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1901,"Ftot",0.598798962040828,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1902,"Ftot",0.151801029432424,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1903,"Ftot",-0.240787119643222,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1904,"Ftot",0.0558533052303418,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1905,"Ftot",0.417084878163917,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1906,"Ftot",0.518273331846931,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1907,"Ftot",0.496973927446013,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1908,"Ftot",0.510842583166443,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1909,"Ftot",0.579183716082464,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1910,"Ftot",0.616325482263328,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1911,"Ftot",0.63078780052151,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1912,"Ftot",0.394939925255505,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1913,"Ftot",0.294748778630301,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1914,"Ftot",0.514120082175947,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1915,"Ftot",0.624712965119131,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1916,"Ftot",0.660010008030112,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1917,"Ftot",0.676198163733876,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1918,"Ftot",0.689172684301407,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1919,"Ftot",0.688655880447553,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1920,"Ftot",0.611790618051333,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1921,"Ftot",0.597263493095139,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1922,"Ftot",0.68317447633376,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1923,"Ftot",0.704581988647679,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1924,"Ftot",0.692619528712943,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1925,"Ftot",0.694589310648092,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1926,"Ftot",0.704022386200223,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1927,"Ftot",0.703537082526086,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1928,"Ftot",0.656651224574097,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1929,"Ftot",0.609440243494354,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1930,"Ftot",0.637214970298374,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1931,"Ftot",0.665327622656662,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1932,"Ftot",0.637258360199871,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1933,"Ftot",0.648811980515642,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1934,"Ftot",0.689425739350832,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1935,"Ftot",0.698871913161961,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1936,"Ftot",0.711586765747018,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1937,"Ftot",0.709920335684705,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1938,"Ftot",0.692256289326169,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1939,"Ftot",0.690558972026779,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1940,"Ftot",0.707242659624124,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1941,"Ftot",0.715045299425154,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1942,"Ftot",0.690860961934155,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1943,"Ftot",0.682864425940198,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1944,"Ftot",0.703598289398472,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1945,"Ftot",0.713111740669558,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1946,"Ftot",0.720391821203411,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1947,"Ftot",0.713460838557325,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1948,"Ftot",0.713807749712048,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1949,"Ftot",0.709759334949145,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1950,"Ftot",0.712295491961057,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1850,"FCO2",0.164665101375557,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1851,"FCO2",0.167482868294626,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1852,"FCO2",0.169829874254618,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1853,"FCO2",0.172175851051691,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1854,"FCO2",0.174989665983314,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1855,"FCO2",0.177802001776129,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1856,"FCO2",0.180612859984394,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1857,"FCO2",0.183422242159928,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1858,"FCO2",0.186697991223561,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1859,"FCO2",0.189971735807552,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1860,"FCO2",0.192776209050174,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1861,"FCO2",0.195579212956416,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1862,"FCO2",0.197913928245487,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1863,"FCO2",0.200247625120004,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1864,"FCO2",0.203046718312559,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1865,"FCO2",0.205378177799494,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1866,"FCO2",0.207242614131311,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1867,"FCO2",0.209106400946885,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1868,"FCO2",0.21143522177328,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1869,"FCO2",0.214228469313236,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1870,"FCO2",0.217020259253088,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1871,"FCO2",0.220275507299974,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1872,"FCO2",0.223993367074334,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1873,"FCO2",0.228172873384722,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1874,"FCO2",0.233276728765084,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1875,"FCO2",0.238839023495895,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1876,"FCO2",0.244858323970748,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1877,"FCO2",0.251795265773339,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1878,"FCO2",0.259184769710551,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1879,"FCO2",0.26702495041627,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1880,"FCO2",0.275773930289178,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1881,"FCO2",0.284967952142877,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1882,"FCO2",0.293687662415413,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1883,"FCO2",0.301935351613105,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1884,"FCO2",0.310170345542777,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1885,"FCO2",0.317479713941301,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1886,"FCO2",0.323411231328556,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1887,"FCO2",0.328425076210962,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1888,"FCO2",0.332523820825144,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1889,"FCO2",0.336164515079284,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1890,"FCO2",0.339348091489798,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1891,"FCO2",0.34207536427613,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1892,"FCO2",0.344801247487276,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1893,"FCO2",0.347071756369973,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1894,"FCO2",0.348887469945859,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1895,"FCO2",0.350702567503558,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1896,"FCO2",0.35251704946092,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1897,"FCO2",0.354784286855533,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1898,"FCO2",0.358409869374635,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1899,"FCO2",0.363391036944255,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1900,"FCO2",0.36881975379768,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1901,"FCO2",0.374694654079717,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1902,"FCO2",0.381014263319433,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1903,"FCO2",0.387326416419766,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1904,"FCO2",0.394081183530619,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1905,"FCO2",0.401726290534931,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1906,"FCO2",0.409809219720584,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1907,"FCO2",0.417431900472051,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1908,"FCO2",0.424596280518259,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1909,"FCO2",0.431751079311132,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1910,"FCO2",0.43889632244334,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1911,"FCO2",0.445586332068372,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1912,"FCO2",0.451822802383232,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1913,"FCO2",0.458052011337133,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1914,"FCO2",0.463829789676469,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1915,"FCO2",0.46915759094665,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1916,"FCO2",0.474923394613533,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1917,"FCO2",0.481125780203877,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1918,"FCO2",0.486878706851108,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1919,"FCO2",0.492183615565388,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1920,"FCO2",0.497924670225017,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1921,"FCO2",0.504541317809547,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1922,"FCO2",0.511149792318851,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1923,"FCO2",0.517310345722061,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1924,"FCO2",0.524342302702557,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1925,"FCO2",0.532242222103525,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1926,"FCO2",0.539692561214583,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1927,"FCO2",0.54713253950878,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1928,"FCO2",0.555435583854541,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1929,"FCO2",0.563725762082308,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1930,"FCO2",0.571567783030374,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1931,"FCO2",0.579833020272117,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1932,"FCO2",0.588085508208407,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1933,"FCO2",0.595458538437811,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1934,"FCO2",0.602388591220275,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1935,"FCO2",0.609309678860804,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1936,"FCO2",0.615358294541835,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1937,"FCO2",0.619674551331014,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1938,"FCO2",0.622693860477141,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1939,"FCO2",0.624849467098027,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1940,"FCO2",0.626142414298906,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1941,"FCO2",0.626142414298906,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1942,"FCO2",0.624849467098027,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1943,"FCO2",0.623125051289382,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1944,"FCO2",0.621831374581351,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1945,"FCO2",0.621400079486595,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1946,"FCO2",0.621831374581351,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1947,"FCO2",0.623125051289382,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1948,"FCO2",0.625280484218098,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1949,"FCO2",0.628296632165741,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1950,"FCO2",0.632602467408227,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1850,"heatflux",0.34709872450353,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1851,"heatflux",0.325190706793831,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1852,"heatflux",0.329379242411377,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1853,"heatflux",0.34223702121838,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1854,"heatflux",0.350321171263601,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1855,"heatflux",0.268817871253361,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1856,"heatflux",-0.0955188814739333,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1857,"heatflux",-0.517633076598341,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1858,"heatflux",-0.442822125149231,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1859,"heatflux",-0.00942272813736636,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1860,"heatflux",0.286408424880274,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1861,"heatflux",0.352293172731535,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1862,"heatflux",0.280022798431021,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1863,"heatflux",0.222799528765669,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1864,"heatflux",0.272550356657681,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1865,"heatflux",0.34364621857819,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1866,"heatflux",0.372607405611592,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1867,"heatflux",0.376005754353694,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1868,"heatflux",0.36803889730239,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1869,"heatflux",0.350332916847243,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1870,"heatflux",0.330661396501143,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1871,"heatflux",0.318140577253799,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1872,"heatflux",0.302741458693915,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1873,"heatflux",0.281393645675881,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1874,"heatflux",0.275630412367423,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1875,"heatflux",0.276189577468643,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1876,"heatflux",0.248120244720218,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1877,"heatflux",0.224486285017091,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1878,"heatflux",0.248385308391522,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1879,"heatflux",0.288628120158848,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1880,"heatflux",0.316846759578721,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1881,"heatflux",0.334447607128296,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1882,"heatflux",0.272999673524715,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1883,"heatflux",-0.352360637693083,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1884,"heatflux",-1.33039811552136,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1885,"heatflux",-1.3317637506021,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1886,"heatflux",-0.566021007416704,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1887,"heatflux",-0.120440861100106,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1888,"heatflux",0.050823235241936,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1889,"heatflux",0.0813286173898829,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1890,"heatflux",0.00437799175509215,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1891,"heatflux",0.0117552085365867,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1892,"heatflux",0.159191807466108,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1893,"heatflux",0.348564856987607,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1894,"heatflux",0.487899182430393,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1895,"heatflux",0.522953432953868,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1896,"heatflux",0.39884496630383,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1897,"heatflux",0.23621435487741,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1898,"heatflux",0.237523510260117,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1899,"heatflux",0.363756287970013,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1900,"heatflux",0.455773857368705,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1901,"heatflux",0.465719427250959,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1902,"heatflux",0.165448843531181,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1903,"heatflux",-0.35595852565883,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1904,"heatflux",-0.392795051892833,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1905,"heatflux",0.0427077437573246,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1906,"heatflux",0.340771007308201,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1907,"heatflux",0.382456181154637,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1908,"heatflux",0.36135957011511,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1909,"heatflux",0.394703082176353,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1910,"heatflux",0.44200299758596,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1911,"heatflux",0.454974824000192,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1912,"heatflux",0.299731469772453,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1913,"heatflux",0.0822599991590864,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1914,"heatflux",0.156712390229482,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1915,"heatflux",0.361264059485028,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1916,"heatflux",0.443899650524241,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1917,"heatflux",0.461029988376546,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1918,"heatflux",0.461894782100749,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1919,"heatflux",0.452556088412901,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1920,"heatflux",0.389183155101744,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1921,"heatflux",0.321162473840591,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1922,"heatflux",0.357621777686809,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1923,"heatflux",0.416140877746304,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1924,"heatflux",0.41210793014363,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1925,"heatflux",0.395340945205452,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1926,"heatflux",0.392512724269192,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1927,"heatflux",0.388886803329692,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1928,"heatflux",0.351179287179643,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1929,"heatflux",0.286779787269989,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1930,"heatflux",0.271777859686452,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1931,"heatflux",0.304683205190601,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1932,"heatflux",0.302213644262942,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1933,"heatflux",0.28908331043834,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1934,"heatflux",0.318257699597032,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1935,"heatflux",0.344928203476146,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1936,"heatflux",0.35287872801906,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1937,"heatflux",0.353024112351822,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1938,"heatflux",0.334410032385915,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1939,"heatflux",0.316720876771033,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1940,"heatflux",0.3212932659182,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1941,"heatflux",0.331919101255654,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1942,"heatflux",0.317011223848319,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1943,"heatflux",0.292936681386721,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1944,"heatflux",0.297643434489025,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1945,"heatflux",0.313278582172561,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1946,"heatflux",0.319976694008278,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1947,"heatflux",0.315906130371521,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1948,"heatflux",0.307607152357789,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1949,"heatflux",0.30143999205224,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1950,"heatflux",0.297080915994781,"W/m2",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1850,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1851,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1852,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1853,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1854,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1855,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1856,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1857,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1858,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1859,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1860,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1861,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1862,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1863,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1864,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1865,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1866,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1867,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1868,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1869,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1870,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1871,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1872,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1873,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1874,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1875,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1876,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1877,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1878,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1879,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1880,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1881,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1882,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1883,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1884,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1885,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1886,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1887,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1888,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1889,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1890,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1891,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1892,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1893,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1894,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1895,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1896,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1897,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1898,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1899,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1900,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1901,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1902,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1903,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1904,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1905,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1906,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1907,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1908,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1909,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1910,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1911,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1912,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1913,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1914,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1915,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1916,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1917,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1918,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1919,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1920,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1921,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1922,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1923,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1924,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1925,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1926,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1927,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1928,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1929,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1930,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1931,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1932,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1933,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1934,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1935,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1936,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1937,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1938,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1939,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1940,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1941,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1942,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1943,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1944,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1945,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1946,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1947,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1948,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1949,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1950,"ocean_c",35308.9152958383,"Pg C",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1850,"pH_HL",8.23474486230674,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1851,"pH_HL",8.23458203956298,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1852,"pH_HL",8.23441110734203,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1853,"pH_HL",8.23423207007221,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1854,"pH_HL",8.23405350034505,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1855,"pH_HL",8.2338686688539,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1856,"pH_HL",8.23385558734438,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1857,"pH_HL",8.23418718636174,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1858,"pH_HL",8.23440586832859,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1859,"pH_HL",8.2340104242808,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1860,"pH_HL",8.23343885133411,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1861,"pH_HL",8.23302327515886,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1862,"pH_HL",8.23277251960197,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1863,"pH_HL",8.2326575833752,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1864,"pH_HL",8.23251819553542,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1865,"pH_HL",8.23228784459783,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1866,"pH_HL",8.23206663651336,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1867,"pH_HL",8.23189630407926,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1868,"pH_HL",8.23175680840292,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1869,"pH_HL",8.23162144776276,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1870,"pH_HL",8.23147829331939,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1871,"pH_HL",8.23132117438894,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1872,"pH_HL",8.23115194356957,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1873,"pH_HL",8.23096612417252,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1874,"pH_HL",8.23074425971516,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1875,"pH_HL",8.23046733003903,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1876,"pH_HL",8.23027493377219,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1877,"pH_HL",8.23012095243888,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1878,"pH_HL",8.22983866670145,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1879,"pH_HL",8.22932630531305,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1880,"pH_HL",8.22876265817595,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1881,"pH_HL",8.22827366041422,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1882,"pH_HL",8.22780456723977,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1883,"pH_HL",8.22741877829404,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1884,"pH_HL",8.22818323984187,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1885,"pH_HL",8.22739596300528,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1886,"pH_HL",8.22715688350032,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1887,"pH_HL",8.22629342609712,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1888,"pH_HL",8.22560337881733,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1889,"pH_HL",8.2250775040041,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1890,"pH_HL",8.22478976638814,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1891,"pH_HL",8.2246153886115,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1892,"pH_HL",8.22439441895001,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1893,"pH_HL",8.22406016487873,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1894,"pH_HL",8.2237146680164,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1895,"pH_HL",8.2234177725773,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1896,"pH_HL",8.22324344740132,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1897,"pH_HL",8.22324252681744,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1898,"pH_HL",8.22324647766374,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1899,"pH_HL",8.22304056793496,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1900,"pH_HL",8.22267991245765,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1901,"pH_HL",8.22229354730545,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1902,"pH_HL",8.22193832772267,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1903,"pH_HL",8.22195583221181,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1904,"pH_HL",8.22209429005684,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1905,"pH_HL",8.22166338711409,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1906,"pH_HL",8.22087609856707,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1907,"pH_HL",8.22016135839884,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1908,"pH_HL",8.2196136603354,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1909,"pH_HL",8.21912998620841,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1910,"pH_HL",8.21862196023487,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1911,"pH_HL",8.21812439535103,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1912,"pH_HL",8.21767123290118,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1913,"pH_HL",8.21746241009999,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1914,"pH_HL",8.21724691937878,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1915,"pH_HL",8.21676654219956,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1916,"pH_HL",8.2162724937171,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1917,"pH_HL",8.21583036443015,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1918,"pH_HL",8.21541103409989,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1919,"pH_HL",8.21502126038467,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1920,"pH_HL",8.21467988886483,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1921,"pH_HL",8.21439640490904,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1922,"pH_HL",8.21406141319706,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1923,"pH_HL",8.21361406594828,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1924,"pH_HL",8.21329380372139,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1925,"pH_HL",8.21283786956117,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1926,"pH_HL",8.21237117506681,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1927,"pH_HL",8.21189606198298,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1928,"pH_HL",8.21144295832486,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1929,"pH_HL",8.21100297982163,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1930,"pH_HL",8.2105491712052,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1931,"pH_HL",8.21002030275248,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1932,"pH_HL",8.20948765145179,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1933,"pH_HL",8.20900235113758,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1934,"pH_HL",8.20852399257871,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1935,"pH_HL",8.20803673804175,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1936,"pH_HL",8.20758357569228,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1937,"pH_HL",8.20715075587694,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1938,"pH_HL",8.20679328278038,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1939,"pH_HL",8.20654833093105,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1940,"pH_HL",8.20637446978697,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1941,"pH_HL",8.206225493342,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1942,"pH_HL",8.20613671263331,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1943,"pH_HL",8.20616580794645,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1944,"pH_HL",8.20619349684827,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1945,"pH_HL",8.2064440187904,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1946,"pH_HL",8.20654504324477,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1947,"pH_HL",8.20647579942266,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1948,"pH_HL",8.20643318411725,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1949,"pH_HL",8.20643924323326,"pH",2.5.0,"45495e2" -"hector_rcp45_constrained.ini",1950,"pH_HL",8.20635790494888,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1850,"Ca",279.007215484612,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1851,"Ca",279.112311812157,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1852,"Ca",279.210882147226,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1853,"Ca",279.315492245285,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1854,"Ca",279.429098956537,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1855,"Ca",279.541780899642,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1856,"Ca",279.653372213754,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1857,"Ca",279.750377185147,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1858,"Ca",279.794117473603,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1859,"Ca",279.789141837487,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1860,"Ca",279.800718264738,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1861,"Ca",279.859178053797,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1862,"Ca",279.951240132081,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1863,"Ca",280.03969443053,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1864,"Ca",280.108366662259,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1865,"Ca",280.17565328718,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1866,"Ca",280.251364640962,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1867,"Ca",280.334493176054,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1868,"Ca",280.421477372155,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1869,"Ca",280.509897475573,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1870,"Ca",280.597799090671,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1871,"Ca",280.683626380184,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1872,"Ca",280.772222095918,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1873,"Ca",280.884789559395,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1874,"Ca",281.016165435758,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1875,"Ca",281.142205772476,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1876,"Ca",281.266283462748,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1877,"Ca",281.392044595417,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1878,"Ca",281.511919761344,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1879,"Ca",281.628366186977,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1880,"Ca",281.749747808701,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1881,"Ca",281.882127910201,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1882,"Ca",282.026692088801,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1883,"Ca",282.166717772315,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1884,"Ca",282.287501550127,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1885,"Ca",282.309311679817,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1886,"Ca",282.222450356038,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1887,"Ca",282.150124300066,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1888,"Ca",282.140759178543,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1889,"Ca",282.181303860308,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1890,"Ca",282.252428257162,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1891,"Ca",282.330005808378,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1892,"Ca",282.407855730896,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1893,"Ca",282.491954428374,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1894,"Ca",282.59349472038,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1895,"Ca",282.719932527426,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1896,"Ca",282.874423488405,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1897,"Ca",283.039640568839,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1898,"Ca",283.195029945968,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1899,"Ca",283.34103184372,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1900,"Ca",283.500564799096,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1901,"Ca",283.683707585603,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1902,"Ca",283.893090028812,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1903,"Ca",284.115814581939,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1904,"Ca",284.306676512727,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1905,"Ca",284.451980645387,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1906,"Ca",284.607649323765,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1907,"Ca",284.832647815085,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1908,"Ca",285.113467572637,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1909,"Ca",285.402436786131,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1910,"Ca",285.686127475496,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1911,"Ca",285.984670356615,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1912,"Ca",286.280925033592,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1913,"Ca",286.567536168723,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1914,"Ca",286.83356613048,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1915,"Ca",287.055422313244,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1916,"Ca",287.259404799018,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1917,"Ca",287.48950738744,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1918,"Ca",287.752308046467,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1919,"Ca",288.021259838817,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1920,"Ca",288.253077144757,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1921,"Ca",288.482516175937,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1922,"Ca",288.705629896074,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1923,"Ca",288.904321176352,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1924,"Ca",289.143046721503,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1925,"Ca",289.408146205595,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1926,"Ca",289.668870671306,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1927,"Ca",289.927061505188,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1928,"Ca",290.207929619946,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1929,"Ca",290.507907204808,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1930,"Ca",290.819005940199,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1931,"Ca",291.131229997141,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1932,"Ca",291.404234989584,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1933,"Ca",291.608014310717,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1934,"Ca",291.777188818657,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1935,"Ca",291.970428829085,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1936,"Ca",292.189979944381,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1937,"Ca",292.44199558317,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1938,"Ca",292.72553661244,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1939,"Ca",292.998709423738,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1940,"Ca",293.260043928908,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1941,"Ca",293.547162067914,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1942,"Ca",293.853404188738,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1943,"Ca",294.163519088475,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1944,"Ca",294.480780583171,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1945,"Ca",294.798371648251,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1946,"Ca",295.059252876879,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1947,"Ca",295.305010991107,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1948,"Ca",295.624757989811,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1949,"Ca",295.993176484152,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1950,"Ca",296.357275387214,"ppmv CO2",2.5.0,"45495e2" -"hector_rcp45.ini",1850,"Tgav",0.088492987177202,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1851,"Tgav",0.0933304874030044,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1852,"Tgav",0.0995401703573498,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1853,"Tgav",0.106670812428472,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1854,"Tgav",0.113812865566851,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1855,"Tgav",0.108846833948394,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1856,"Tgav",0.0653843825774931,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1857,"Tgav",0.00852689541116805,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1858,"Tgav",-0.00707707758830798,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1859,"Tgav",0.0128018535551729,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1860,"Tgav",0.0395433568113795,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1861,"Tgav",0.0578543717243123,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1862,"Tgav",0.0633260573615902,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1863,"Tgav",0.0678313638614683,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1864,"Tgav",0.0790022138022663,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1865,"Tgav",0.092465516806246,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1866,"Tgav",0.104796587976789,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1867,"Tgav",0.115265046385646,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1868,"Tgav",0.123744849922941,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1869,"Tgav",0.129891604263026,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1870,"Tgav",0.134622429295342,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1871,"Tgav",0.138725023635176,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1872,"Tgav",0.141315014020116,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1873,"Tgav",0.142614043904757,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1874,"Tgav",0.144892937643597,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1875,"Tgav",0.146778854812566,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1876,"Tgav",0.145250886815153,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1877,"Tgav",0.144113234413362,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1878,"Tgav",0.146791248720842,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1879,"Tgav",0.151609271927191,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1880,"Tgav",0.157142043301959,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1881,"Tgav",0.162502203928839,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1882,"Tgav",0.157472957542223,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1883,"Tgav",0.0743861667536143,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1884,"Tgav",-0.0576373350436074,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1885,"Tgav",-0.108069307206618,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1886,"Tgav",-0.0966289875211898,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1887,"Tgav",-0.0763971397280865,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1888,"Tgav",-0.0546138665493578,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1889,"Tgav",-0.0455984477847232,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1890,"Tgav",-0.0455298302856447,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1891,"Tgav",-0.0404870501522907,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1892,"Tgav",-0.0214272371813252,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1893,"Tgav",0.0064359979785473,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1894,"Tgav",0.0371493222052896,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1895,"Tgav",0.0598621521350207,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1896,"Tgav",0.0642093242340163,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1897,"Tgav",0.0599208707988572,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1898,"Tgav",0.0661396883479996,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1899,"Tgav",0.0823772997203289,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1900,"Tgav",0.100226435647435,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1901,"Tgav",0.113112398751942,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1902,"Tgav",0.0841122575607942,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1903,"Tgav",0.0253629632133815,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1904,"Tgav",0.00555620753938041,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1905,"Tgav",0.0254076517852972,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1906,"Tgav",0.0504052688177654,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1907,"Tgav",0.0660209708166024,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1908,"Tgav",0.0777435215247322,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1909,"Tgav",0.0923997041422249,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1910,"Tgav",0.107190207707661,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1911,"Tgav",0.119906092424489,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1912,"Tgav",0.109426920258826,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1913,"Tgav",0.0915106011703582,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1914,"Tgav",0.0974712385559689,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1915,"Tgav",0.113939684998299,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1916,"Tgav",0.129674116187168,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1917,"Tgav",0.142738013762083,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1918,"Tgav",0.153865796380226,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1919,"Tgav",0.162661391594177,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1920,"Tgav",0.163023231371175,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1921,"Tgav",0.161865837773193,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1922,"Tgav",0.168954712168364,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1923,"Tgav",0.177216315323463,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1924,"Tgav",0.182566674974518,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1925,"Tgav",0.186766547071282,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1926,"Tgav",0.191036396968348,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1927,"Tgav",0.19454759283585,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1928,"Tgav",0.193317786689747,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1929,"Tgav",0.188179404882253,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1930,"Tgav",0.186766344820507,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1931,"Tgav",0.188684810004763,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1932,"Tgav",0.187873560190565,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1933,"Tgav",0.187876218860619,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1934,"Tgav",0.191435022952119,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1935,"Tgav",0.195127586841182,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1936,"Tgav",0.198974344627067,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1937,"Tgav",0.202017046758599,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1938,"Tgav",0.203169235357311,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1939,"Tgav",0.20429028188781,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1940,"Tgav",0.207217473243072,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1941,"Tgav",0.210980016623123,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1942,"Tgav",0.212612299338339,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1943,"Tgav",0.21386931642481,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1944,"Tgav",0.217534538911447,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1945,"Tgav",0.222145673111411,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1946,"Tgav",0.226919845431859,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1947,"Tgav",0.230484591315293,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1948,"Tgav",0.233734981435023,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1949,"Tgav",0.236499106033569,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1950,"Tgav",0.23931125610289,"degC",2.5.0,"45495e2" -"hector_rcp45.ini",1850,"Ftot",0.299797241241802,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1851,"Ftot",0.304196366791045,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1852,"Ftot",0.323044110985788,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1853,"Ftot",0.340810409400334,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1854,"Ftot",0.352085794318996,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1855,"Ftot",0.224409886990272,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1856,"Ftot",-0.230692439233272,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1857,"Ftot",-0.481926305264495,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1858,"Ftot",-0.168120125847973,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1859,"Ftot",0.158034777394991,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1860,"Ftot",0.280860839000872,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1861,"Ftot",0.270547795931717,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1862,"Ftot",0.187178537701385,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1863,"Ftot",0.200086715538154,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1864,"Ftot",0.28329186883321,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1865,"Ftot",0.330591298662771,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1866,"Ftot",0.350764294594764,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1867,"Ftot",0.360262000720759,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1868,"Ftot",0.361778189088687,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1869,"Ftot",0.352884997947762,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1870,"Ftot",0.347954651545856,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1871,"Ftot",0.347178174582609,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1872,"Ftot",0.33426484245318,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1873,"Ftot",0.321149908909973,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1874,"Ftot",0.330607843566352,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1875,"Ftot",0.325440317987319,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1876,"Ftot",0.286809762567329,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1877,"Ftot",0.285317999624281,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1878,"Ftot",0.320427429376109,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1879,"Ftot",0.345531113375817,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1880,"Ftot",0.363147379035317,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1881,"Ftot",0.373202605496175,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1882,"Ftot",0.264816729542008,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1883,"Ftot",-0.645353096559731,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1884,"Ftot",-1.37678282396359,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1885,"Ftot",-0.781906983498848,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1886,"Ftot",-0.286586588820383,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1887,"Ftot",-0.159257180753053,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1888,"Ftot",-0.0473997265516626,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1889,"Ftot",-0.1113220132841,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1890,"Ftot",-0.162229872046115,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1891,"Ftot",-0.0914355347825631,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1892,"Ftot",0.0832867269335602,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1893,"Ftot",0.231510898263594,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1894,"Ftot",0.341482896999241,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1895,"Ftot",0.334888867704225,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1896,"Ftot",0.190905230706722,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1897,"Ftot",0.111078356008483,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1898,"Ftot",0.214642607500692,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1899,"Ftot",0.328221304309914,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1900,"Ftot",0.380615262637904,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1901,"Ftot",0.369167596152902,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1902,"Ftot",-0.0802026521247621,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1903,"Ftot",-0.474907328455338,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1904,"Ftot",-0.181428880526557,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1905,"Ftot",0.174891177645603,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1906,"Ftot",0.270923732655189,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1907,"Ftot",0.246229455043823,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1908,"Ftot",0.258205758314756,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1909,"Ftot",0.32481169743958,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1910,"Ftot",0.360123491736594,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1911,"Ftot",0.373483647659621,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1912,"Ftot",0.13693855754401,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1913,"Ftot",0.035871693524179,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1914,"Ftot",0.254429493796624,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1915,"Ftot",0.36383102227665,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1916,"Ftot",0.397162638224472,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1917,"Ftot",0.411432188220649,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1918,"Ftot",0.423542104185301,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1919,"Ftot",0.422718509884427,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1920,"Ftot",0.344416471447567,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1921,"Ftot",0.327529411673622,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1922,"Ftot",0.41096803605365,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1923,"Ftot",0.429895673905019,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1924,"Ftot",0.415320208826939,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1925,"Ftot",0.414292947222381,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1926,"Ftot",0.421093267318671,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1927,"Ftot",0.417934482062802,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1928,"Ftot",0.367925906945258,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1929,"Ftot",0.31795199563064,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1930,"Ftot",0.343610837179228,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1931,"Ftot",0.369198945440174,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1932,"Ftot",0.337891745763016,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1933,"Ftot",0.345812289559677,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1934,"Ftot",0.382598863624816,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1935,"Ftot",0.388666008254568,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1936,"Ftot",0.399353738243379,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1937,"Ftot",0.397983470169744,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1938,"Ftot",0.382484765356905,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1939,"Ftot",0.383622157805794,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1940,"Ftot",0.403782599933022,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1941,"Ftot",0.416820629315387,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1942,"Ftot",0.399507699751954,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1943,"Ftot",0.398878665000878,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1944,"Ftot",0.42667318248074,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1945,"Ftot",0.442384677445282,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1946,"Ftot",0.453965841024912,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1947,"Ftot",0.450195401099509,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1948,"Ftot",0.454176557557366,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1949,"Ftot",0.453775211374439,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1950,"Ftot",0.458582482213615,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1850,"FCO2",0.0561341522158023,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1851,"FCO2",0.0581490086453369,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1852,"FCO2",0.0600380625259608,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1853,"FCO2",0.0620421363059077,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1854,"FCO2",0.0642177132086388,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1855,"FCO2",0.0663747071612776,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1856,"FCO2",0.0685099672224588,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1857,"FCO2",0.0703654306608608,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1858,"FCO2",0.0712018629587253,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1859,"FCO2",0.0711067219666569,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1860,"FCO2",0.0713280765344065,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1861,"FCO2",0.072445754876774,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1862,"FCO2",0.0742053938804814,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1863,"FCO2",0.0758955301717333,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1864,"FCO2",0.0772073134915762,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1865,"FCO2",0.0784923169263973,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1866,"FCO2",0.0799378423284163,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1867,"FCO2",0.0815245311818873,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1868,"FCO2",0.0831843100422559,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1869,"FCO2",0.0848709604184559,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1870,"FCO2",0.0865471935106086,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1871,"FCO2",0.08818336382246,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1872,"FCO2",0.0898717853943236,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1873,"FCO2",0.0920162825702425,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1874,"FCO2",0.0945180079903638,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1875,"FCO2",0.0969170323481735,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1876,"FCO2",0.0992776498225976,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1877,"FCO2",0.101669232911063,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1878,"FCO2",0.103947888553988,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1879,"FCO2",0.106160439854476,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1880,"FCO2",0.108465789210944,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1881,"FCO2",0.110978896033175,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1882,"FCO2",0.113721957836874,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1883,"FCO2",0.116377562844249,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1884,"FCO2",0.118667184213135,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1885,"FCO2",0.119080520566324,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1886,"FCO2",0.117434171796828,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1887,"FCO2",0.116062934359186,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1888,"FCO2",0.115885354314506,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1889,"FCO2",0.11665411407786,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1890,"FCO2",0.118002423023727,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1891,"FCO2",0.119472677415546,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1892,"FCO2",0.120947687739723,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1893,"FCO2",0.122540635822695,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1894,"FCO2",0.124463320503022,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1895,"FCO2",0.126856478869233,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1896,"FCO2",0.129779162425052,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1897,"FCO2",0.132902998574654,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1898,"FCO2",0.135839354229992,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1899,"FCO2",0.138596849199686,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1900,"FCO2",0.141608277220664,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1901,"FCO2",0.145063288191791,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1902,"FCO2",0.149010581762247,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1903,"FCO2",0.153206207607651,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1904,"FCO2",0.15679899777372,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1905,"FCO2",0.159532590016618,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1906,"FCO2",0.162459620528841,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1907,"FCO2",0.166687428069861,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1908,"FCO2",0.171959455666572,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1909,"FCO2",0.177379060668248,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1910,"FCO2",0.182694331916606,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1911,"FCO2",0.188282179206484,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1912,"FCO2",0.193821434671737,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1913,"FCO2",0.19917492623101,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1914,"FCO2",0.204139201297147,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1915,"FCO2",0.208275648104169,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1916,"FCO2",0.212076024807892,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1917,"FCO2",0.216359804690649,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1918,"FCO2",0.221248126735002,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1919,"FCO2",0.226246245002261,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1920,"FCO2",0.23055052362125,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1921,"FCO2",0.23480723638803,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1922,"FCO2",0.238943352038741,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1923,"FCO2",0.242624030979402,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1924,"FCO2",0.247042982816553,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1925,"FCO2",0.251945858677814,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1926,"FCO2",0.256763442333031,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1927,"FCO2",0.261529939045496,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1928,"FCO2",0.266710266225702,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1929,"FCO2",0.272237514218595,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1930,"FCO2",0.277963649911227,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1931,"FCO2",0.283704343055629,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1932,"FCO2",0.288718893771552,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1933,"FCO2",0.292458847481846,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1934,"FCO2",0.29556171549426,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1935,"FCO2",0.299103773953411,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1936,"FCO2",0.303125267038196,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1937,"FCO2",0.307737685816053,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1938,"FCO2",0.312922336507877,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1939,"FCO2",0.317912652877043,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1940,"FCO2",0.322682354607803,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1941,"FCO2",0.327917744189139,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1942,"FCO2",0.333496204915827,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1943,"FCO2",0.339139290350062,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1944,"FCO2",0.344906267663618,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1945,"FCO2",0.350673016262319,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1946,"FCO2",0.355405394402851,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1947,"FCO2",0.359859613831566,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1948,"FCO2",0.365649292063416,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1949,"FCO2",0.372312508591035,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1950,"FCO2",0.378889457660785,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1850,"heatflux",0.308015254693961,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1851,"heatflux",0.285456450126507,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1852,"heatflux",0.289239731871116,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1853,"heatflux",0.301997402912538,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1854,"heatflux",0.30987340894082,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1855,"heatflux",0.227971406618689,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1856,"heatflux",-0.136776638031882,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1857,"heatflux",-0.559469980550733,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1858,"heatflux",-0.486298329778089,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1859,"heatflux",-0.0559472577080225,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1860,"heatflux",0.236896301290478,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1861,"heatflux",0.300992240585024,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1862,"heatflux",0.228276875313318,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1863,"heatflux",0.171270175111493,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1864,"heatflux",0.220642135713142,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1865,"heatflux",0.291088152643059,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1866,"heatflux",0.320050837515436,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1867,"heatflux",0.323901573060897,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1868,"heatflux",0.316185858618491,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1869,"heatflux",0.298176915568777,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1870,"heatflux",0.277913105514113,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1871,"heatflux",0.264494279603996,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1872,"heatflux",0.247668255957737,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1873,"heatflux",0.224697968031793,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1874,"heatflux",0.21703509322979,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1875,"heatflux",0.215091269125121,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1876,"heatflux",0.18398470866844,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1877,"heatflux",0.156606723703465,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1878,"heatflux",0.176046813228355,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1879,"heatflux",0.211376273351321,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1880,"heatflux",0.234095891810328,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1881,"heatflux",0.245806978674745,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1882,"heatflux",0.179024985477809,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1883,"heatflux",-0.450763781755168,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1884,"heatflux",-1.43303326660001,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1885,"heatflux",-1.43929071835648,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1886,"heatflux",-0.679286182508178,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1887,"heatflux",-0.238932701125286,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1888,"heatflux",-0.0706849662092396,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1889,"heatflux",-0.040963299780106,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1890,"heatflux",-0.117259661152039,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1891,"heatflux",-0.108401831899026,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1892,"heatflux",0.0406534085645786,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1893,"heatflux",0.231774250896819,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1894,"heatflux",0.373470914752378,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1895,"heatflux",0.411430362825284,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1896,"heatflux",0.290599474126744,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1897,"heatflux",0.131164554250942,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1898,"heatflux",0.13432675912323,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1899,"heatflux",0.260358622954545,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1900,"heatflux",0.35107571003939,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1901,"heatflux",0.359652330874226,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1902,"heatflux",0.0581217842113151,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1903,"heatflux",-0.464283738099986,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1904,"heatflux",-0.502550267693594,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1905,"heatflux",-0.0701313779410978,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1906,"heatflux",0.22375821667147,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1907,"heatflux",0.262401888356827,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1908,"heatflux",0.240430431529554,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1909,"heatflux",0.273962372110584,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1910,"heatflux",0.321441313785124,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1911,"heatflux",0.334906913407293,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1912,"heatflux",0.180763972541751,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1913,"heatflux",-0.0355798391135644,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1914,"heatflux",0.0398136784204815,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1915,"heatflux",0.245009965572415,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1916,"heatflux",0.327505415235004,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1917,"heatflux",0.344018685246586,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1918,"heatflux",0.344949468231269,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1919,"heatflux",0.336654549314703,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1920,"heatflux",0.273910723416795,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1921,"heatflux",0.205198488553231,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1922,"heatflux",0.240331233211357,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1923,"heatflux",0.297502418329718,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1924,"heatflux",0.292102618416442,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1925,"heatflux",0.273717592785311,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1926,"heatflux",0.269332706063251,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1927,"heatflux",0.264415796998445,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1928,"heatflux",0.225168484805859,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1929,"heatflux",0.159228889566507,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1930,"heatflux",0.143357319708413,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1931,"heatflux",0.175560123019995,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1932,"heatflux",0.171701659128152,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1933,"heatflux",0.156527544092735,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1934,"heatflux",0.183360353434304,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1935,"heatflux",0.207934534152565,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1936,"heatflux",0.214976022601162,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1937,"heatflux",0.216492457383974,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1938,"heatflux",0.201724236489155,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1939,"heatflux",0.18919550751261,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1940,"heatflux",0.199396718350485,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1941,"heatflux",0.216757054459446,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1942,"heatflux",0.210261876007469,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1943,"heatflux",0.195438454930662,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1944,"heatflux",0.209004115529696,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1945,"heatflux",0.23229922761974,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1946,"heatflux",0.244566872240868,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1947,"heatflux",0.243944777184324,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1948,"heatflux",0.238575613388913,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1949,"heatflux",0.235597750302467,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1950,"heatflux",0.2335574016423,"W/m2",2.5.0,"45495e2" -"hector_rcp45.ini",1850,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1851,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1852,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1853,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1854,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1855,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1856,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1857,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1858,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1859,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1860,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1861,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1862,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1863,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1864,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1865,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1866,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1867,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1868,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1869,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1870,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1871,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1872,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1873,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1874,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1875,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1876,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1877,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1878,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1879,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1880,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1881,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1882,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1883,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1884,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1885,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1886,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1887,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1888,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1889,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1890,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1891,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1892,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1893,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1894,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1895,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1896,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1897,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1898,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1899,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1900,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1901,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1902,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1903,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1904,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1905,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1906,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1907,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1908,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1909,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1910,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1911,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1912,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1913,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1914,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1915,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1916,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1917,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1918,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1919,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1920,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1921,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1922,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1923,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1924,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1925,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1926,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1927,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1928,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1929,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1930,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1931,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1932,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1933,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1934,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1935,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1936,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1937,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1938,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1939,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1940,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1941,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1942,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1943,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1944,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1945,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1946,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1947,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1948,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1949,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1950,"ocean_c",35363.0023862435,"Pg C",2.5.0,"45495e2" -"hector_rcp45.ini",1850,"pH_HL",8.24039100409974,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1851,"pH_HL",8.24028590546209,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1852,"pH_HL",8.24016974521249,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1853,"pH_HL",8.24002775902029,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1854,"pH_HL",8.23987077625024,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1855,"pH_HL",8.23971531559837,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1856,"pH_HL",8.23973287505731,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1857,"pH_HL",8.2401287976227,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1858,"pH_HL",8.24042947653384,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1859,"pH_HL",8.2401725465096,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1860,"pH_HL",8.23977359039633,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1861,"pH_HL",8.23949317937955,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1862,"pH_HL",8.23932651490657,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1863,"pH_HL",8.23927229174727,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1864,"pH_HL",8.23918804370916,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1865,"pH_HL",8.23902983540126,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1866,"pH_HL",8.23887980357541,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1867,"pH_HL",8.23874621033048,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1868,"pH_HL",8.23862265604431,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1869,"pH_HL",8.2385110535034,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1870,"pH_HL",8.23841458340855,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1871,"pH_HL",8.23831874659767,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1872,"pH_HL",8.23822085944713,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1873,"pH_HL",8.23812251328591,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1874,"pH_HL",8.23799342041602,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1875,"pH_HL",8.23783501403151,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1876,"pH_HL",8.23772888487878,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1877,"pH_HL",8.23773137305223,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1878,"pH_HL",8.23765172774066,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1879,"pH_HL",8.2374051717286,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1880,"pH_HL",8.23714807852997,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1881,"pH_HL",8.23698055251845,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1882,"pH_HL",8.23686169419798,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1883,"pH_HL",8.23685484447552,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1884,"pH_HL",8.23799750184745,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1885,"pH_HL",8.23797345268107,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1886,"pH_HL",8.23812556454641,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1887,"pH_HL",8.23768471327473,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1888,"pH_HL",8.23735176097174,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1889,"pH_HL",8.23709090791504,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1890,"pH_HL",8.23699738833827,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1891,"pH_HL",8.23696817653771,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1892,"pH_HL",8.2368513825886,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1893,"pH_HL",8.23659321956345,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1894,"pH_HL",8.23628529708653,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1895,"pH_HL",8.2359781992212,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1896,"pH_HL",8.23575796366333,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1897,"pH_HL",8.23569351044689,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1898,"pH_HL",8.23564556298171,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1899,"pH_HL",8.2354375266191,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1900,"pH_HL",8.23513298970956,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1901,"pH_HL",8.23483125742087,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1902,"pH_HL",8.23457372874102,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1903,"pH_HL",8.23471513032278,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1904,"pH_HL",8.23501292415034,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1905,"pH_HL",8.23494934538017,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1906,"pH_HL",8.23422484780124,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1907,"pH_HL",8.23379270191307,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1908,"pH_HL",8.23347433145588,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1909,"pH_HL",8.23309895131185,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1910,"pH_HL",8.23269987141691,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1911,"pH_HL",8.23232267797382,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1912,"pH_HL",8.23195283134525,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1913,"pH_HL",8.2318589271632,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1914,"pH_HL",8.23170188378054,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1915,"pH_HL",8.23121921126555,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1916,"pH_HL",8.23082305688732,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1917,"pH_HL",8.23050130290583,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1918,"pH_HL",8.23016482094307,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1919,"pH_HL",8.22982093497932,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1920,"pH_HL",8.22952144135976,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1921,"pH_HL",8.22934794566853,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1922,"pH_HL",8.22910606466444,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1923,"pH_HL",8.22878533585248,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1924,"pH_HL",8.2285035239403,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1925,"pH_HL",8.22828096037657,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1926,"pH_HL",8.22817920067234,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1927,"pH_HL",8.22796744402314,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1928,"pH_HL",8.22759736927145,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1929,"pH_HL",8.22724421514541,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1930,"pH_HL",8.22700389803342,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1931,"pH_HL",8.22669177848935,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1932,"pH_HL",8.22627349789977,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1933,"pH_HL",8.22589476672903,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1934,"pH_HL",8.22561460357206,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1935,"pH_HL",8.22541166367723,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1936,"pH_HL",8.22523073191643,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1937,"pH_HL",8.22496695553752,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1938,"pH_HL",8.22463578509991,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1939,"pH_HL",8.22429418617872,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1940,"pH_HL",8.22398885973388,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1941,"pH_HL",8.2237080165972,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1942,"pH_HL",8.22338973207892,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1943,"pH_HL",8.22304220720924,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1944,"pH_HL",8.22266278013175,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1945,"pH_HL",8.22225191958742,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1946,"pH_HL",8.22182606758766,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1947,"pH_HL",8.22150621722086,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1948,"pH_HL",8.22129587057702,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1949,"pH_HL",8.22099644249658,"pH",2.5.0,"45495e2" -"hector_rcp45.ini",1950,"pH_HL",8.22052787682092,"pH",2.5.0,"45495e2" +"hector_ssp245.ini",1745,"CO2_concentration",277.15,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1746,"CO2_concentration",277.187757308351,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1747,"CO2_concentration",277.221511673883,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1748,"CO2_concentration",277.25285116852,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1749,"CO2_concentration",277.282277008951,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1750,"CO2_concentration",277.310098650968,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1751,"CO2_concentration",277.336504025949,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1752,"CO2_concentration",277.363509900657,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1753,"CO2_concentration",277.391242012221,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1754,"CO2_concentration",277.418820826245,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1755,"CO2_concentration",277.445334099847,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1756,"CO2_concentration",277.468779656795,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1757,"CO2_concentration",277.459481989554,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1758,"CO2_concentration",277.457149961938,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1759,"CO2_concentration",277.46902122794,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1760,"CO2_concentration",277.490018640634,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1761,"CO2_concentration",277.51517913796,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1762,"CO2_concentration",277.543052098591,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1763,"CO2_concentration",277.443837877524,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1764,"CO2_concentration",277.343580664996,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1765,"CO2_concentration",277.302664375859,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1766,"CO2_concentration",277.303244160078,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1767,"CO2_concentration",277.280232450482,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1768,"CO2_concentration",277.243569082392,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1769,"CO2_concentration",277.238489721637,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1770,"CO2_concentration",277.260306137624,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1771,"CO2_concentration",277.278430933347,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1772,"CO2_concentration",277.304772879321,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1773,"CO2_concentration",277.343264767953,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1774,"CO2_concentration",277.388785873004,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1775,"CO2_concentration",277.435853473778,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1776,"CO2_concentration",277.484494478779,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1777,"CO2_concentration",277.533976412773,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1778,"CO2_concentration",277.582764870204,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1779,"CO2_concentration",277.630452981722,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1780,"CO2_concentration",277.678027543015,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1781,"CO2_concentration",277.7241422215,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1782,"CO2_concentration",277.770450622389,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1783,"CO2_concentration",277.816544815401,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1784,"CO2_concentration",277.609830617072,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1785,"CO2_concentration",277.065229579014,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1786,"CO2_concentration",276.701977283685,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1787,"CO2_concentration",276.531934925126,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1788,"CO2_concentration",276.49731220556,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1789,"CO2_concentration",276.541280795711,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1790,"CO2_concentration",276.625040939355,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1791,"CO2_concentration",276.725747724071,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1792,"CO2_concentration",276.833693618994,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1793,"CO2_concentration",276.943649260469,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1794,"CO2_concentration",277.052893131148,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1795,"CO2_concentration",277.158972668423,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1796,"CO2_concentration",277.263727138194,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1797,"CO2_concentration",277.350320744959,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1798,"CO2_concentration",277.415220460176,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1799,"CO2_concentration",277.485040704734,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1800,"CO2_concentration",277.569248905701,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1801,"CO2_concentration",277.662903267755,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1802,"CO2_concentration",277.7617523513,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1803,"CO2_concentration",277.863452657926,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1804,"CO2_concentration",277.965426077317,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1805,"CO2_concentration",278.068343497832,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1806,"CO2_concentration",278.170669526122,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1807,"CO2_concentration",278.270136192629,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1808,"CO2_concentration",278.367427388592,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1809,"CO2_concentration",278.460835472288,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1810,"CO2_concentration",278.058419982412,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1811,"CO2_concentration",277.650358958021,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1812,"CO2_concentration",277.44436048561,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1813,"CO2_concentration",277.415341111274,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1814,"CO2_concentration",277.490886341912,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1815,"CO2_concentration",277.618303918706,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1816,"CO2_concentration",277.321518811347,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1817,"CO2_concentration",276.724224018328,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1818,"CO2_concentration",276.371620351318,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1819,"CO2_concentration",276.297792959935,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1820,"CO2_concentration",276.398388472408,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1821,"CO2_concentration",276.587822004353,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1822,"CO2_concentration",276.804975002913,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1823,"CO2_concentration",277.03192727664,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1824,"CO2_concentration",277.219037222592,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1825,"CO2_concentration",277.419334669637,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1826,"CO2_concentration",277.644188308308,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1827,"CO2_concentration",277.88598078027,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1828,"CO2_concentration",278.136296745509,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1829,"CO2_concentration",278.388257633688,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1830,"CO2_concentration",278.640836086631,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1831,"CO2_concentration",278.89562771016,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1832,"CO2_concentration",278.837744470206,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1833,"CO2_concentration",278.74247973267,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1834,"CO2_concentration",278.786794336232,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1835,"CO2_concentration",278.950116615057,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1836,"CO2_concentration",278.95535780113,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1837,"CO2_concentration",278.968564801265,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1838,"CO2_concentration",279.098754729504,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1839,"CO2_concentration",279.322436513106,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1840,"CO2_concentration",279.598696123026,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1841,"CO2_concentration",279.900234601404,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1842,"CO2_concentration",280.21187773568,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1843,"CO2_concentration",280.527472307236,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1844,"CO2_concentration",280.844324965724,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1845,"CO2_concentration",281.161897232316,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1846,"CO2_concentration",281.479007398349,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1847,"CO2_concentration",281.771597878897,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1848,"CO2_concentration",282.061330974846,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1849,"CO2_concentration",282.359427426092,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1850,"CO2_concentration",282.666994482484,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1851,"CO2_concentration",282.980544866095,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1852,"CO2_concentration",283.290294828608,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1853,"CO2_concentration",283.624067043562,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1854,"CO2_concentration",283.921666277474,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1855,"CO2_concentration",284.196335670678,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1856,"CO2_concentration",284.472484067696,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1857,"CO2_concentration",284.751348074298,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1858,"CO2_concentration",285.003473297592,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1859,"CO2_concentration",285.258403317282,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1860,"CO2_concentration",285.524451643756,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1861,"CO2_concentration",285.79600801576,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1862,"CO2_concentration",286.061625914163,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1863,"CO2_concentration",286.190879482547,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1864,"CO2_concentration",286.325639435647,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1865,"CO2_concentration",286.507542887512,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1866,"CO2_concentration",286.720763875666,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1867,"CO2_concentration",286.947889141974,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1868,"CO2_concentration",287.178957045423,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1869,"CO2_concentration",287.406304226724,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1870,"CO2_concentration",287.631734696829,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1871,"CO2_concentration",287.851880350552,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1872,"CO2_concentration",288.080085148335,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1873,"CO2_concentration",288.351510216736,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1874,"CO2_concentration",288.584892622277,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1875,"CO2_concentration",288.811337352572,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1876,"CO2_concentration",289.042000648473,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1877,"CO2_concentration",289.26994190072,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1878,"CO2_concentration",289.499579336857,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1879,"CO2_concentration",289.727638332476,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1880,"CO2_concentration",289.956328125185,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1881,"CO2_concentration",290.184925096106,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1882,"CO2_concentration",290.421058804245,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1883,"CO2_concentration",290.634706367907,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1884,"CO2_concentration",290.779858514186,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1885,"CO2_concentration",290.686646145224,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1886,"CO2_concentration",290.671296144819,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1887,"CO2_concentration",290.770854632947,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1888,"CO2_concentration",290.929883466616,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1889,"CO2_concentration",291.139734662537,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1890,"CO2_concentration",291.369902189576,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1891,"CO2_concentration",291.598681609661,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1892,"CO2_concentration",291.801850950901,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1893,"CO2_concentration",292.022852951594,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1894,"CO2_concentration",292.259949409048,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1895,"CO2_concentration",292.514745021692,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1896,"CO2_concentration",292.779631901125,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1897,"CO2_concentration",293.047292049854,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1898,"CO2_concentration",293.318711382975,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1899,"CO2_concentration",293.594904839856,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1900,"CO2_concentration",293.881019189487,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1901,"CO2_concentration",294.171179380593,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1902,"CO2_concentration",294.491836557756,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1903,"CO2_concentration",294.798351600554,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1904,"CO2_concentration",295.017329022744,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1905,"CO2_concentration",295.255484741919,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1906,"CO2_concentration",295.577894551805,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1907,"CO2_concentration",295.944846161835,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1908,"CO2_concentration",296.331048191895,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1909,"CO2_concentration",296.701814922565,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1910,"CO2_concentration",297.085100977393,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1911,"CO2_concentration",297.474695046967,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1912,"CO2_concentration",297.832030766646,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1913,"CO2_concentration",298.116378378171,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1914,"CO2_concentration",298.374868656125,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1915,"CO2_concentration",298.620481901637,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1916,"CO2_concentration",298.887394655057,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1917,"CO2_concentration",299.191133789867,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1918,"CO2_concentration",299.504108152937,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1919,"CO2_concentration",299.805875435806,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1920,"CO2_concentration",300.060498071924,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1921,"CO2_concentration",300.366433789983,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1922,"CO2_concentration",300.641845316013,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1923,"CO2_concentration",300.917631497477,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1924,"CO2_concentration",301.233906137289,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1925,"CO2_concentration",301.55475844464,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1926,"CO2_concentration",301.876189929537,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1927,"CO2_concentration",302.185919421503,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1928,"CO2_concentration",302.548708681789,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1929,"CO2_concentration",302.897431017272,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1930,"CO2_concentration",303.257301320935,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1931,"CO2_concentration",303.618711382729,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1932,"CO2_concentration",303.943118954244,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1933,"CO2_concentration",304.167492358927,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1934,"CO2_concentration",304.421708779409,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1935,"CO2_concentration",304.705510620158,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1936,"CO2_concentration",305.003104525612,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1937,"CO2_concentration",305.337323025994,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1938,"CO2_concentration",305.682386659093,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1939,"CO2_concentration",305.990377776131,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1940,"CO2_concentration",306.321131848583,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1941,"CO2_concentration",306.677739098872,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1942,"CO2_concentration",307.023645633877,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1943,"CO2_concentration",307.367910072001,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1944,"CO2_concentration",307.720428979279,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1945,"CO2_concentration",308.061547502466,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1946,"CO2_concentration",308.311292933067,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1947,"CO2_concentration",308.657945243764,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1948,"CO2_concentration",309.075075697707,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1949,"CO2_concentration",309.518954193059,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1950,"CO2_concentration",309.94099169374,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1951,"CO2_concentration",310.432856657203,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1952,"CO2_concentration",311.060046050537,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1953,"CO2_concentration",311.686742709179,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1954,"CO2_concentration",312.313021160271,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1955,"CO2_concentration",312.966617060611,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1956,"CO2_concentration",313.697896330716,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1957,"CO2_concentration",314.490177818637,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1958,"CO2_concentration",315.302915090769,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1959,"CO2_concentration",316.149334526867,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1960,"CO2_concentration",317.002284389035,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1961,"CO2_concentration",317.877272483235,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1962,"CO2_concentration",318.751294831156,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1963,"CO2_concentration",319.619739321189,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1964,"CO2_concentration",320.419644993547,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1965,"CO2_concentration",321.232439407574,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1966,"CO2_concentration",322.13776512421,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1967,"CO2_concentration",323.161695618693,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1968,"CO2_concentration",324.231589924275,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1969,"CO2_concentration",325.351754228226,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1970,"CO2_concentration",326.554890995912,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1971,"CO2_concentration",327.834956596493,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1972,"CO2_concentration",329.087962912403,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1973,"CO2_concentration",330.362031147989,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1974,"CO2_concentration",331.736485492496,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1975,"CO2_concentration",333.047808130066,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1976,"CO2_concentration",334.285700724934,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1977,"CO2_concentration",335.64130266301,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1978,"CO2_concentration",337.072496096323,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1979,"CO2_concentration",338.552836398249,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1980,"CO2_concentration",340.04431637086,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1981,"CO2_concentration",341.4560750318,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1982,"CO2_concentration",342.79283336698,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1983,"CO2_concentration",344.044091443603,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1984,"CO2_concentration",345.274643943311,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1985,"CO2_concentration",346.592265231526,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1986,"CO2_concentration",347.97539885945,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1987,"CO2_concentration",349.41369728684,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1988,"CO2_concentration",350.901595978202,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1989,"CO2_concentration",352.459459901918,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1990,"CO2_concentration",354.038893779112,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1991,"CO2_concentration",355.539668937763,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1992,"CO2_concentration",357.011284496778,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1993,"CO2_concentration",358.2447730341,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1994,"CO2_concentration",359.467359328045,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1995,"CO2_concentration",360.829318958762,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1996,"CO2_concentration",362.325882971084,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1997,"CO2_concentration",363.906663545906,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1998,"CO2_concentration",365.854547946475,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1999,"CO2_concentration",367.533026538023,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2000,"CO2_concentration",369.170778921832,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2001,"CO2_concentration",370.889626281236,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2002,"CO2_concentration",372.532475268895,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2003,"CO2_concentration",374.278341604413,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2004,"CO2_concentration",376.079767072827,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2005,"CO2_concentration",378.107190517948,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2006,"CO2_concentration",380.233663679801,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2007,"CO2_concentration",382.483044522241,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2008,"CO2_concentration",384.804970857388,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2009,"CO2_concentration",387.002371993612,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2010,"CO2_concentration",389.157748880488,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2011,"CO2_concentration",391.542567051204,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2012,"CO2_concentration",394.049937337825,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2013,"CO2_concentration",396.62191881927,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2014,"CO2_concentration",399.283896705945,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2015,"CO2_concentration",402.025473599049,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2016,"CO2_concentration",404.703717325094,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2017,"CO2_concentration",407.398948047319,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2018,"CO2_concentration",410.125816241611,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2019,"CO2_concentration",412.881948075483,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2020,"CO2_concentration",415.6651148536,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2021,"CO2_concentration",418.473727317304,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2022,"CO2_concentration",421.300031017141,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2023,"CO2_concentration",424.14149178655,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2024,"CO2_concentration",426.99734468729,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2025,"CO2_concentration",429.867298675909,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2026,"CO2_concentration",432.753917380897,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2027,"CO2_concentration",435.65793291111,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2028,"CO2_concentration",438.579371330255,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2029,"CO2_concentration",441.518139677533,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2030,"CO2_concentration",444.474174674243,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2031,"CO2_concentration",447.447470646581,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2032,"CO2_concentration",450.414089527053,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2033,"CO2_concentration",453.375904487314,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2034,"CO2_concentration",456.33718952532,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2035,"CO2_concentration",459.29847603043,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2036,"CO2_concentration",462.258820929177,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2037,"CO2_concentration",465.217572312685,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2038,"CO2_concentration",468.176972666227,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2039,"CO2_concentration",471.13696361616,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2040,"CO2_concentration",474.096597251479,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2041,"CO2_concentration",477.055227617574,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2042,"CO2_concentration",479.993469928486,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2043,"CO2_concentration",482.911358164434,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2044,"CO2_concentration",485.80853179009,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2045,"CO2_concentration",488.68454896878,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2046,"CO2_concentration",491.538951591803,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2047,"CO2_concentration",494.371293858218,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2048,"CO2_concentration",497.181157272239,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2049,"CO2_concentration",499.968386698472,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2050,"CO2_concentration",502.732586277325,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2051,"CO2_concentration",505.473266140678,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2052,"CO2_concentration",508.158511860277,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2053,"CO2_concentration",510.788839486732,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2054,"CO2_concentration",513.364142516994,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2055,"CO2_concentration",515.883986959172,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2056,"CO2_concentration",518.348127992734,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2057,"CO2_concentration",520.756289594906,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2058,"CO2_concentration",523.10793054753,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2059,"CO2_concentration",525.402599320796,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2060,"CO2_concentration",527.640115803317,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2061,"CO2_concentration",529.81994110718,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2062,"CO2_concentration",531.920055158715,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2063,"CO2_concentration",533.942818291748,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2064,"CO2_concentration",535.889940678833,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2065,"CO2_concentration",537.763944262876,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2066,"CO2_concentration",539.56573157465,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2067,"CO2_concentration",541.311332753175,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2068,"CO2_concentration",542.984656177266,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2069,"CO2_concentration",544.586475718144,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2070,"CO2_concentration",546.118755133878,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2071,"CO2_concentration",547.582749734348,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2072,"CO2_concentration",548.936824532511,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2073,"CO2_concentration",550.183360950486,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2074,"CO2_concentration",551.323680757791,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2075,"CO2_concentration",552.358847950186,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2076,"CO2_concentration",553.290159868592,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2077,"CO2_concentration",554.118467950917,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2078,"CO2_concentration",554.844610933936,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2079,"CO2_concentration",555.469407662688,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2080,"CO2_concentration",555.993593422026,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2081,"CO2_concentration",556.417893754873,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2082,"CO2_concentration",556.716980030936,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2083,"CO2_concentration",556.893498421575,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2084,"CO2_concentration",556.949234155337,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2085,"CO2_concentration",556.885681093828,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2086,"CO2_concentration",556.705074229796,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2087,"CO2_concentration",556.42821398123,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2088,"CO2_concentration",556.051945993701,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2089,"CO2_concentration",555.59227324326,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2090,"CO2_concentration",555.044632813865,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2091,"CO2_concentration",554.410666738055,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2092,"CO2_concentration",553.73775023293,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2093,"CO2_concentration",553.02420690374,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2094,"CO2_concentration",552.270296179892,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2095,"CO2_concentration",551.475795981852,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2096,"CO2_concentration",550.640576375949,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2097,"CO2_concentration",549.764643853443,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2098,"CO2_concentration",548.848042604389,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2099,"CO2_concentration",547.890838996227,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2100,"CO2_concentration",546.893133335926,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2101,"CO2_concentration",545.855037323297,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2102,"CO2_concentration",544.858639482459,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2103,"CO2_concentration",543.900291222702,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2104,"CO2_concentration",542.979069532413,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2105,"CO2_concentration",542.094138799894,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2106,"CO2_concentration",541.246061593071,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2107,"CO2_concentration",540.459946769752,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2108,"CO2_concentration",539.699495911455,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2109,"CO2_concentration",538.985927703713,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2110,"CO2_concentration",538.315075166241,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2111,"CO2_concentration",537.689152201238,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2112,"CO2_concentration",537.103776603993,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2113,"CO2_concentration",536.559672053772,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2114,"CO2_concentration",536.05375197326,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2115,"CO2_concentration",535.586701018078,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2116,"CO2_concentration",535.156630627749,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2117,"CO2_concentration",534.762700173248,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2118,"CO2_concentration",534.402801526053,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2119,"CO2_concentration",534.076092822764,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2120,"CO2_concentration",533.781052205931,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2121,"CO2_concentration",533.516815431433,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2122,"CO2_concentration",533.282025680441,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2123,"CO2_concentration",533.075828885096,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2124,"CO2_concentration",532.89702099246,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2125,"CO2_concentration",532.744895207543,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2126,"CO2_concentration",532.61855165517,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2127,"CO2_concentration",532.517072332085,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2128,"CO2_concentration",532.439549859873,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2129,"CO2_concentration",532.385184874775,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2130,"CO2_concentration",532.353196800275,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2131,"CO2_concentration",532.342890007816,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2132,"CO2_concentration",532.353842871628,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2133,"CO2_concentration",532.385151049446,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2134,"CO2_concentration",532.435975246649,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2135,"CO2_concentration",532.505779377719,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2136,"CO2_concentration",532.59379042927,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2137,"CO2_concentration",532.699358076362,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2138,"CO2_concentration",532.82189599471,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2139,"CO2_concentration",532.960882464292,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2140,"CO2_concentration",533.115815113897,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2141,"CO2_concentration",533.286120186656,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2142,"CO2_concentration",533.471329233464,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2143,"CO2_concentration",533.67100727081,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2144,"CO2_concentration",533.88471923327,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2145,"CO2_concentration",534.11205149615,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2146,"CO2_concentration",534.35257718196,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2147,"CO2_concentration",534.605857516653,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2148,"CO2_concentration",534.871370614587,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2149,"CO2_concentration",535.148655057768,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2150,"CO2_concentration",535.43736241089,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2151,"CO2_concentration",535.737150693069,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2152,"CO2_concentration",536.035758977026,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2153,"CO2_concentration",536.333266294518,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2154,"CO2_concentration",536.629330376321,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2155,"CO2_concentration",536.923832427947,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2156,"CO2_concentration",537.216487884585,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2157,"CO2_concentration",537.50713053942,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2158,"CO2_concentration",537.795557746313,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2159,"CO2_concentration",538.081686783726,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2160,"CO2_concentration",538.3653685144,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2161,"CO2_concentration",538.646421847476,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2162,"CO2_concentration",538.924672733255,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2163,"CO2_concentration",539.199978554208,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2164,"CO2_concentration",539.472337545561,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2165,"CO2_concentration",539.741902842972,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2166,"CO2_concentration",540.009960825944,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2167,"CO2_concentration",540.276704601626,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2168,"CO2_concentration",540.541696917777,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2169,"CO2_concentration",540.804037749546,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2170,"CO2_concentration",541.063614934839,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2171,"CO2_concentration",541.320069487295,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2172,"CO2_concentration",541.573015837502,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2173,"CO2_concentration",541.822220781757,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2174,"CO2_concentration",542.067625677082,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2175,"CO2_concentration",542.308980785567,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2176,"CO2_concentration",542.545902592366,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2177,"CO2_concentration",542.778171320009,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2178,"CO2_concentration",543.006048813484,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2179,"CO2_concentration",543.229135790719,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2180,"CO2_concentration",543.447058413828,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2181,"CO2_concentration",543.659497579078,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2182,"CO2_concentration",543.866228234856,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2183,"CO2_concentration",544.06709018886,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2184,"CO2_concentration",544.261905473281,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2185,"CO2_concentration",544.450933684117,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2186,"CO2_concentration",544.634976903919,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2187,"CO2_concentration",544.813490134808,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2188,"CO2_concentration",544.985920941517,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2189,"CO2_concentration",545.151925461069,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2190,"CO2_concentration",545.311185668536,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2191,"CO2_concentration",545.463359795151,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2192,"CO2_concentration",545.608138147226,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2193,"CO2_concentration",545.745305013698,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2194,"CO2_concentration",545.87576702199,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2195,"CO2_concentration",546.001771910221,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2196,"CO2_concentration",546.122616166035,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2197,"CO2_concentration",546.23703624163,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2198,"CO2_concentration",546.344124497213,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2199,"CO2_concentration",546.443265585951,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2200,"CO2_concentration",546.534220188503,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2201,"CO2_concentration",546.616707464446,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2202,"CO2_concentration",546.690302558624,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2203,"CO2_concentration",546.75473394891,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2204,"CO2_concentration",546.80982460161,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2205,"CO2_concentration",546.855560754419,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2206,"CO2_concentration",546.891954279913,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2207,"CO2_concentration",546.918944494186,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2208,"CO2_concentration",546.936562254887,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2209,"CO2_concentration",546.944871102146,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2210,"CO2_concentration",546.94380014896,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2211,"CO2_concentration",546.933220755796,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2212,"CO2_concentration",546.913051286344,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2213,"CO2_concentration",546.883196866676,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2214,"CO2_concentration",546.843605038214,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2215,"CO2_concentration",546.794222718441,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2216,"CO2_concentration",546.734899033493,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2217,"CO2_concentration",546.665638347095,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2218,"CO2_concentration",546.586202884425,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2219,"CO2_concentration",546.496465622764,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2220,"CO2_concentration",546.396314482781,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2221,"CO2_concentration",546.285655924736,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2222,"CO2_concentration",546.164402843349,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2223,"CO2_concentration",546.032479337108,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2224,"CO2_concentration",545.889865981312,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2225,"CO2_concentration",545.736570187559,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2226,"CO2_concentration",545.572615035723,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2227,"CO2_concentration",545.39803741124,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2228,"CO2_concentration",545.212858017226,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2229,"CO2_concentration",545.017097222317,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2230,"CO2_concentration",544.810774703298,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2231,"CO2_concentration",544.593911992515,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2232,"CO2_concentration",544.366531343915,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2233,"CO2_concentration",544.128657061082,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2234,"CO2_concentration",543.8802985499,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2235,"CO2_concentration",543.621462724741,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2236,"CO2_concentration",543.352155414101,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2237,"CO2_concentration",543.072383466268,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2238,"CO2_concentration",542.782154789127,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2239,"CO2_concentration",542.481479377563,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2240,"CO2_concentration",542.17036909199,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2241,"CO2_concentration",541.848838133331,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2242,"CO2_concentration",541.516902740259,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2243,"CO2_concentration",541.174581460181,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2244,"CO2_concentration",540.821891226123,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2245,"CO2_concentration",540.458850388501,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2246,"CO2_concentration",540.085479064313,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2247,"CO2_concentration",539.701799619255,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2248,"CO2_concentration",539.307836649889,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2249,"CO2_concentration",538.903617160597,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2250,"CO2_concentration",538.48917045112,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2251,"CO2_concentration",538.06452816228,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2252,"CO2_concentration",537.641369341465,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2253,"CO2_concentration",537.218979458883,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2254,"CO2_concentration",536.797335965306,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2255,"CO2_concentration",536.376206753488,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2256,"CO2_concentration",535.955572579247,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2257,"CO2_concentration",535.535255232146,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2258,"CO2_concentration",535.115219981647,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2259,"CO2_concentration",534.695327912117,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2260,"CO2_concentration",534.275537618346,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2261,"CO2_concentration",533.855739985741,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2262,"CO2_concentration",533.435892213351,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2263,"CO2_concentration",533.015908071772,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2264,"CO2_concentration",532.595750765412,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2265,"CO2_concentration",532.175357662065,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2266,"CO2_concentration",531.754698293465,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2267,"CO2_concentration",531.333726105727,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2268,"CO2_concentration",530.912416672195,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2269,"CO2_concentration",530.4907360817,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2270,"CO2_concentration",530.068665680672,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2271,"CO2_concentration",529.646181628062,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2272,"CO2_concentration",529.223271229188,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2273,"CO2_concentration",528.799919468965,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2274,"CO2_concentration",528.376119303146,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2275,"CO2_concentration",527.951863981416,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2276,"CO2_concentration",527.527154118432,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2277,"CO2_concentration",527.101992178657,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2278,"CO2_concentration",526.676386880431,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2279,"CO2_concentration",526.25034953684,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2280,"CO2_concentration",525.823896790656,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2281,"CO2_concentration",525.397048199182,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2282,"CO2_concentration",524.969827911229,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2283,"CO2_concentration",524.542263064259,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2284,"CO2_concentration",524.114382833102,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2285,"CO2_concentration",523.686218764147,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2286,"CO2_concentration",523.257805632076,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2287,"CO2_concentration",522.829271753535,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2288,"CO2_concentration",522.400762984274,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2289,"CO2_concentration",521.972416816762,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2290,"CO2_concentration",521.544362833703,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2291,"CO2_concentration",521.116723867618,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2292,"CO2_concentration",520.689615791747,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2293,"CO2_concentration",520.263148279904,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2294,"CO2_concentration",519.837424764302,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2295,"CO2_concentration",519.412542997093,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2296,"CO2_concentration",518.988595110707,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2297,"CO2_concentration",518.565668047814,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2298,"CO2_concentration",518.143843677884,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2299,"CO2_concentration",517.723199137883,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",2300,"CO2_concentration",517.303806976729,"ppmv CO2",3.0.0,"9aebf67" +"hector_ssp245.ini",1745,"global_tas",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1746,"global_tas",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1747,"global_tas",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1748,"global_tas",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1749,"global_tas",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1750,"global_tas",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1751,"global_tas",0.000796959782180074,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1752,"global_tas",0.00212387491090078,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1753,"global_tas",0.00316188453838867,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1754,"global_tas",0.0034643127006347,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1755,"global_tas",0.00203976491855046,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1756,"global_tas",-0.0201356526973759,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1757,"global_tas",-0.0284580987347667,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1758,"global_tas",-0.024420207629829,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1759,"global_tas",-0.0179552524562173,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1760,"global_tas",-0.0126967067040289,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1761,"global_tas",-0.00821434022257878,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1762,"global_tas",-0.089785103201638,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1763,"global_tas",-0.138495474934378,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1764,"global_tas",-0.129625220706918,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1765,"global_tas",-0.105095878773764,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1766,"global_tas",-0.113489895375055,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1767,"global_tas",-0.130592450072269,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1768,"global_tas",-0.120808710728464,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1769,"global_tas",-0.0996831687101337,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1770,"global_tas",-0.0923651014808329,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1771,"global_tas",-0.0833917597840317,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1772,"global_tas",-0.0693991608520863,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1773,"global_tas",-0.0559958796560881,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1774,"global_tas",-0.0461235090184283,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1775,"global_tas",-0.037731243859253,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1776,"global_tas",-0.0305762266009665,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1777,"global_tas",-0.0250938953816146,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1778,"global_tas",-0.0209356283151917,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1779,"global_tas",-0.0170155119687961,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1780,"global_tas",-0.0142859331174861,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1781,"global_tas",-0.0114668831224457,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1782,"global_tas",-0.00880063877511405,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1783,"global_tas",-0.175257463459839,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1784,"global_tas",-0.504094915183142,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1785,"global_tas",-0.572469950891164,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1786,"global_tas",-0.507963179691662,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1787,"global_tas",-0.419790991398847,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1788,"global_tas",-0.339477365523424,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1789,"global_tas",-0.274937974541502,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1790,"global_tas",-0.225843046179469,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1791,"global_tas",-0.187923315687684,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1792,"global_tas",-0.158342757257576,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1793,"global_tas",-0.135261226830721,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1794,"global_tas",-0.118037059059771,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1795,"global_tas",-0.103477807773523,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1796,"global_tas",-0.103119310056594,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1797,"global_tas",-0.113329950368319,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1798,"global_tas",-0.112003797411854,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1799,"global_tas",-0.100440631540595,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1800,"global_tas",-0.0875979093832668,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1801,"global_tas",-0.0758405868685587,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1802,"global_tas",-0.0661221698216218,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1803,"global_tas",-0.0575876987434184,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1804,"global_tas",-0.0498785257883567,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1805,"global_tas",-0.0440866864396461,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1806,"global_tas",-0.0387531046513439,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1807,"global_tas",-0.0341874468712456,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1808,"global_tas",-0.0310097466122178,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1809,"global_tas",-0.362435941859943,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1810,"global_tas",-0.56645518418815,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1811,"global_tas",-0.542985659618617,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1812,"global_tas",-0.448658983407211,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1813,"global_tas",-0.359335172028785,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1814,"global_tas",-0.290278631626171,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1815,"global_tas",-0.56933525099959,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1816,"global_tas",-0.926609917125064,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1817,"global_tas",-0.936904908640387,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1818,"global_tas",-0.795232679574614,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1819,"global_tas",-0.648094870331018,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1820,"global_tas",-0.529815753153819,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1821,"global_tas",-0.44919496349283,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1822,"global_tas",-0.390357802893994,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1823,"global_tas",-0.376321309894799,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1824,"global_tas",-0.34626728465153,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1825,"global_tas",-0.30466316785284,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1826,"global_tas",-0.264982577616028,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1827,"global_tas",-0.231738264860781,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1828,"global_tas",-0.205432013399493,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1829,"global_tas",-0.183170612501677,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1830,"global_tas",-0.164494013884926,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1831,"global_tas",-0.376732067036261,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1832,"global_tas",-0.500900313945336,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1833,"global_tas",-0.473557641600002,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1834,"global_tas",-0.401429669872953,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1835,"global_tas",-0.500665782513564,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1836,"global_tas",-0.547556403509446,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1837,"global_tas",-0.494538779428836,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1838,"global_tas",-0.416718127338135,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1839,"global_tas",-0.347675817210516,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1840,"global_tas",-0.292936778333127,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1841,"global_tas",-0.250235549174348,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1842,"global_tas",-0.216299651721803,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1843,"global_tas",-0.188180251164895,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1844,"global_tas",-0.164635043663608,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1845,"global_tas",-0.145631051978925,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1846,"global_tas",-0.14602777404952,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1847,"global_tas",-0.142185133175109,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1848,"global_tas",-0.129266154627083,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1849,"global_tas",-0.113527085845921,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1850,"global_tas",-0.099044822415503,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1851,"global_tas",-0.0853387510877649,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1852,"global_tas",-0.0733147579134951,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1853,"global_tas",-0.0784232037340293,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1854,"global_tas",-0.0873726767573247,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1855,"global_tas",-0.080082232793292,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1856,"global_tas",-0.0702540002921916,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1857,"global_tas",-0.0780080168873279,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1858,"global_tas",-0.0732977501739387,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1859,"global_tas",-0.0600340110102853,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1860,"global_tas",-0.0464796498748595,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1861,"global_tas",-0.0406793650352744,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1862,"global_tas",-0.106010704205442,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1863,"global_tas",-0.130389838602355,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1864,"global_tas",-0.112153242207092,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1865,"global_tas",-0.0854185575965053,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1866,"global_tas",-0.0613117784361442,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1867,"global_tas",-0.0425047752508648,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1868,"global_tas",-0.0283007738519886,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1869,"global_tas",-0.0161938933151123,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1870,"global_tas",-0.00645419957814475,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1871,"global_tas",0.00261772129359153,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1872,"global_tas",0.0108780407672867,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1873,"global_tas",-0.00208855253459057,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1874,"global_tas",-0.00319030264747144,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1875,"global_tas",0.0018342416698626,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1876,"global_tas",0.00725923029249279,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1877,"global_tas",0.0158289672567342,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1878,"global_tas",0.0249999017060741,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1879,"global_tas",0.0324819500324719,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1880,"global_tas",0.0350791234894771,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1881,"global_tas",0.0370200681934139,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1882,"global_tas",0.0431549893267562,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1883,"global_tas",0.00142817230203407,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1884,"global_tas",-0.177824909355073,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1885,"global_tas",-0.22323156410623,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1886,"global_tas",-0.182438699012756,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1887,"global_tas",-0.142102547557737,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1888,"global_tas",-0.101182058292475,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1889,"global_tas",-0.0644292824245948,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1890,"global_tas",-0.0485942566347307,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1891,"global_tas",-0.054181613450022,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1892,"global_tas",-0.0425909453247525,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1893,"global_tas",-0.0195589058291355,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1894,"global_tas",-0.000860037268949518,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1895,"global_tas",0.0136264285510181,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1896,"global_tas",0.0256070363717889,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1897,"global_tas",0.0348955034569294,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1898,"global_tas",0.0425037222018322,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1899,"global_tas",0.0475473745754628,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1900,"global_tas",0.0517487743606767,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1901,"global_tas",0.0560455459783431,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1902,"global_tas",0.0505630080881885,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1903,"global_tas",-0.0303629320821518,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1904,"global_tas",-0.0614404672649217,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1905,"global_tas",-0.0441570182778805,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1906,"global_tas",-0.0182863009529251,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1907,"global_tas",-0.0121762225989531,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1908,"global_tas",-0.00289865509167094,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1909,"global_tas",0.011634057655208,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1910,"global_tas",0.0223517589480978,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1911,"global_tas",0.0317345055629911,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1912,"global_tas",-0.00215902097130509,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1913,"global_tas",-0.0412175988677914,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1914,"global_tas",-0.0368820117846146,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1915,"global_tas",-0.0127779129715738,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1916,"global_tas",0.00721174571991318,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1917,"global_tas",0.0207275449721295,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1918,"global_tas",0.0313370521418582,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1919,"global_tas",0.0447809952921517,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1920,"global_tas",0.0538784668904578,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1921,"global_tas",0.06667582070347,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1922,"global_tas",0.0679330645479873,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1923,"global_tas",0.0659296251557949,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1924,"global_tas",0.0730487858011713,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1925,"global_tas",0.0807519122764527,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1926,"global_tas",0.0874398335267051,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1927,"global_tas",0.0913509587963371,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1928,"global_tas",0.092907486382906,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1929,"global_tas",0.0778705559238664,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1930,"global_tas",0.0830632492795904,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1931,"global_tas",0.0976879367946224,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1932,"global_tas",0.09993696719705,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1933,"global_tas",0.109364668391066,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1934,"global_tas",0.119065218995704,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1935,"global_tas",0.12517869985778,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1936,"global_tas",0.127618104428051,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1937,"global_tas",0.128139098635171,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1938,"global_tas",0.133001281789173,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1939,"global_tas",0.135368186101387,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1940,"global_tas",0.135053319648553,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1941,"global_tas",0.134524467679951,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1942,"global_tas",0.133687430206037,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1943,"global_tas",0.134110178742367,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1944,"global_tas",0.136686093991278,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1945,"global_tas",0.145615644785239,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1946,"global_tas",0.155447625598631,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1947,"global_tas",0.159895089140746,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1948,"global_tas",0.162050911079245,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1949,"global_tas",0.165841410011976,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1950,"global_tas",0.165249380575315,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1951,"global_tas",0.166015256473689,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1952,"global_tas",0.167528279165472,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1953,"global_tas",0.169104245564833,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1954,"global_tas",0.172195713168702,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1955,"global_tas",0.172812299064348,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1956,"global_tas",0.170429995565,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1957,"global_tas",0.167157835839971,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1958,"global_tas",0.168485018007273,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1959,"global_tas",0.170122403373835,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1960,"global_tas",0.17184276877814,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1961,"global_tas",0.165170175894601,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1962,"global_tas",0.146756574732348,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1963,"global_tas",0.0605473864948033,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1964,"global_tas",-0.00343522987970488,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1965,"global_tas",-0.0159485640880237,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1966,"global_tas",0.0191788843776943,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1967,"global_tas",0.0347202585119328,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1968,"global_tas",0.0501355127913472,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1969,"global_tas",0.0720988502233035,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1970,"global_tas",0.0889437758576404,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1971,"global_tas",0.0945349652448545,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1972,"global_tas",0.10516126229855,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1973,"global_tas",0.127638031621594,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1974,"global_tas",0.147223402289299,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1975,"global_tas",0.139238828649146,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1976,"global_tas",0.15246088679068,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1977,"global_tas",0.179309841950584,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1978,"global_tas",0.207658428042998,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1979,"global_tas",0.232563604957597,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1980,"global_tas",0.252604544133242,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1981,"global_tas",0.272323063062,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1982,"global_tas",0.26898092855473,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1983,"global_tas",0.223946485681958,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1984,"global_tas",0.229951439226167,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1985,"global_tas",0.267746788238311,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1986,"global_tas",0.304946895394113,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1987,"global_tas",0.340763208318698,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1988,"global_tas",0.378395646829273,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1989,"global_tas",0.416803705912863,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1990,"global_tas",0.450992238163121,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1991,"global_tas",0.423698895787117,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1992,"global_tas",0.290460346703122,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1993,"global_tas",0.261397539758015,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1994,"global_tas",0.32657818422901,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1995,"global_tas",0.40933854184231,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1996,"global_tas",0.483409569819734,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1997,"global_tas",0.534664535370491,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1998,"global_tas",0.579323527425825,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1999,"global_tas",0.630974301714335,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2000,"global_tas",0.679616335465217,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2001,"global_tas",0.721322288025601,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2002,"global_tas",0.752096579340659,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2003,"global_tas",0.776248471072705,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2004,"global_tas",0.802023772598685,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2005,"global_tas",0.824001849506684,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2006,"global_tas",0.841960968129823,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2007,"global_tas",0.86524714701463,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2008,"global_tas",0.894905180356724,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2009,"global_tas",0.924937536019286,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2010,"global_tas",0.955757990386863,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2011,"global_tas",0.985136516218684,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2012,"global_tas",1.01395473634757,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2013,"global_tas",1.04813537142624,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2014,"global_tas",1.07724129059224,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2015,"global_tas",1.11619119806024,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2016,"global_tas",1.15582778047265,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2017,"global_tas",1.1940467745699,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2018,"global_tas",1.23149210696594,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2019,"global_tas",1.26844983391985,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2020,"global_tas",1.30512589843926,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2021,"global_tas",1.33879992522946,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2022,"global_tas",1.36975827153394,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2023,"global_tas",1.39874250203764,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2024,"global_tas",1.42621639435589,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2025,"global_tas",1.45380845775651,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2026,"global_tas",1.48162555313254,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2027,"global_tas",1.50949512714071,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2028,"global_tas",1.53733110526136,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2029,"global_tas",1.56508917898379,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2030,"global_tas",1.59274694966959,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2031,"global_tas",1.62115329987452,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2032,"global_tas",1.65016863738713,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2033,"global_tas",1.67952451384969,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2034,"global_tas",1.70906098849856,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2035,"global_tas",1.73867612364971,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2036,"global_tas",1.76830071985696,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2037,"global_tas",1.79788660152891,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2038,"global_tas",1.82740308238926,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2039,"global_tas",1.85682951040881,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2040,"global_tas",1.88615071181255,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2041,"global_tas",1.9155538129979,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2042,"global_tas",1.94498719980502,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2043,"global_tas",1.97437246485016,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2044,"global_tas",2.00365981668407,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2045,"global_tas",2.03281593647795,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2046,"global_tas",2.061817803758,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2047,"global_tas",2.09064921666305,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2048,"global_tas",2.11929868387255,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2049,"global_tas",2.14775832724167,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2050,"global_tas",2.17602265130286,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2051,"global_tas",2.20366359217368,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2052,"global_tas",2.23068080656781,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2053,"global_tas",2.25715090911619,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2054,"global_tas",2.28312011184637,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2055,"global_tas",2.30861817422572,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2056,"global_tas",2.33366553431649,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2057,"global_tas",2.35827694177215,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2058,"global_tas",2.38246320074698,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2059,"global_tas",2.40623250288508,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2060,"global_tas",2.42959152869075,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2061,"global_tas",2.45231960905793,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2062,"global_tas",2.47443766707701,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2063,"global_tas",2.49600500840272,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2064,"global_tas",2.51705975167837,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2065,"global_tas",2.53762916961657,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2066,"global_tas",2.55773274892256,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2067,"global_tas",2.57740025229511,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2068,"global_tas",2.59663918561881,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2069,"global_tas",2.6154522373471,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2070,"global_tas",2.63384365347868,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2071,"global_tas",2.65183155390929,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2072,"global_tas",2.66936800820032,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2073,"global_tas",2.68640947922111,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2074,"global_tas",2.70292762745621,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2075,"global_tas",2.71890300600088,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2076,"global_tas",2.73432221853612,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2077,"global_tas",2.74917566297589,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2078,"global_tas",2.76345635995519,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2079,"global_tas",2.77715925081613,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2080,"global_tas",2.79028063824415,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2081,"global_tas",2.80292586264921,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2082,"global_tas",2.81507720449538,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2083,"global_tas",2.82670007523729,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2084,"global_tas",2.83777183277875,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2085,"global_tas",2.84827629830143,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2086,"global_tas",2.85820206285094,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2087,"global_tas",2.86755971174699,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2088,"global_tas",2.87635528513024,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2089,"global_tas",2.88460621628128,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2090,"global_tas",2.89232182908136,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2091,"global_tas",2.89914699186456,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2092,"global_tas",2.90516096920846,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2093,"global_tas",2.91049606784017,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2094,"global_tas",2.91523761716273,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2095,"global_tas",2.91944397647487,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2096,"global_tas",2.92315672739239,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2097,"global_tas",2.92640655508454,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2098,"global_tas",2.92921671366572,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2099,"global_tas",2.93160519803717,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2100,"global_tas",2.93358619576447,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2101,"global_tas",2.93505065714547,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2102,"global_tas",2.93608857202859,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2103,"global_tas",2.93680011634996,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2104,"global_tas",2.93725512366931,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2105,"global_tas",2.93750557814779,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2106,"global_tas",2.93759313702052,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2107,"global_tas",2.93757774719355,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2108,"global_tas",2.93747433820352,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2109,"global_tas",2.93731211592598,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2110,"global_tas",2.93711629142354,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2111,"global_tas",2.93690981333881,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2112,"global_tas",2.93670851366921,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2113,"global_tas",2.93652681909159,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2114,"global_tas",2.93637506576361,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2115,"global_tas",2.93626348987539,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2116,"global_tas",2.93620014919174,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2117,"global_tas",2.93619185344601,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2118,"global_tas",2.93624324656643,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2119,"global_tas",2.93635828357305,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2120,"global_tas",2.93653981059829,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2121,"global_tas",2.93679024501709,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2122,"global_tas",2.93711117590143,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2123,"global_tas",2.93750388062074,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2124,"global_tas",2.93796903425365,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2125,"global_tas",2.93850721106799,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2126,"global_tas",2.93911871644504,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2127,"global_tas",2.93980351136662,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2128,"global_tas",2.94056124007505,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2129,"global_tas",2.94139136159202,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2130,"global_tas",2.94229317528999,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2131,"global_tas",2.94326589555855,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2132,"global_tas",2.94430892017106,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2133,"global_tas",2.94542128035679,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2134,"global_tas",2.9466016689314,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2135,"global_tas",2.9478488284369,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2136,"global_tas",2.9491613097508,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2137,"global_tas",2.95053756433664,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2138,"global_tas",2.95197603072885,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2139,"global_tas",2.9534751840111,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2140,"global_tas",2.95503352808341,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2141,"global_tas",2.95664949072808,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2142,"global_tas",2.95832151725376,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2143,"global_tas",2.96004810115318,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2144,"global_tas",2.96182775664736,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2145,"global_tas",2.96365901760872,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2146,"global_tas",2.96554040751974,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2147,"global_tas",2.96747041359968,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2148,"global_tas",2.969447396078,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2149,"global_tas",2.97146965786524,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2150,"global_tas",2.97353557763555,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2151,"global_tas",2.97564621652363,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2152,"global_tas",2.97779013056499,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2153,"global_tas",2.97995675861232,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2154,"global_tas",2.9821382553767,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2155,"global_tas",2.98432859184047,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2156,"global_tas",2.9865228275263,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2157,"global_tas",2.98871686706065,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2158,"global_tas",2.99090721377362,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2159,"global_tas",2.99309093112226,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2160,"global_tas",2.99526545969232,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2161,"global_tas",2.99742848444649,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2162,"global_tas",2.99957788824434,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2163,"global_tas",3.00171174899941,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2164,"global_tas",3.00382845199736,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2165,"global_tas",3.00592680451869,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2166,"global_tas",3.00800712424524,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2167,"global_tas",3.01006993089687,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2168,"global_tas",3.01211504499693,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2169,"global_tas",3.0141412331421,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2170,"global_tas",3.0161472502319,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2171,"global_tas",3.01813175079858,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2172,"global_tas",3.02009322547063,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2173,"global_tas",3.02203019398558,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2174,"global_tas",3.02394140005277,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2175,"global_tas",3.02582558040861,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2176,"global_tas",3.02768128909633,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2177,"global_tas",3.02950709256155,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2178,"global_tas",3.03130209054114,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2179,"global_tas",3.03306518096459,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2180,"global_tas",3.03479501068811,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2181,"global_tas",3.0364901181287,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2182,"global_tas",3.03814906962773,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2183,"global_tas",3.03977053147611,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2184,"global_tas",3.04135323157012,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2185,"global_tas",3.04289638224497,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2186,"global_tas",3.04440018290373,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2187,"global_tas",3.04586427665365,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2188,"global_tas",3.04728764607184,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2189,"global_tas",3.04866903852667,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2190,"global_tas",3.05000710013829,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2191,"global_tas",3.05130037489926,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2192,"global_tas",3.05254735235849,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2193,"global_tas",3.05374657713135,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2194,"global_tas",3.05489778599031,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2195,"global_tas",3.05600315029759,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2196,"global_tas",3.05706384999696,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2197,"global_tas",3.05807922989327,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2198,"global_tas",3.05904763600966,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2199,"global_tas",3.05996707241357,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2200,"global_tas",3.06083570951681,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2201,"global_tas",3.06165183724722,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2202,"global_tas",3.06241365192652,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2203,"global_tas",3.06311939765999,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2204,"global_tas",3.0637674707893,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2205,"global_tas",3.06435655188937,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2206,"global_tas",3.06488557807135,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2207,"global_tas",3.06535360036697,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2208,"global_tas",3.06575983417146,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2209,"global_tas",3.06610367046961,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2210,"global_tas",3.06638450160081,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2211,"global_tas",3.06660164261369,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2212,"global_tas",3.06675439707318,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2213,"global_tas",3.06684206038372,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2214,"global_tas",3.06686396393877,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2215,"global_tas",3.06681947393597,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2216,"global_tas",3.06670788285059,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2217,"global_tas",3.06652857007116,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2218,"global_tas",3.06628076345184,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2219,"global_tas",3.06596364590337,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2220,"global_tas",3.06557640671477,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2221,"global_tas",3.06511825833935,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2222,"global_tas",3.06458843778457,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2223,"global_tas",3.0639862108135,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2224,"global_tas",3.06331092270514,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2225,"global_tas",3.06256201399087,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2226,"global_tas",3.06173901506115,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2227,"global_tas",3.0608415397359,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2228,"global_tas",3.05986925088817,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2229,"global_tas",3.05882184661036,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2230,"global_tas",3.05769905341128,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2231,"global_tas",3.056500623395,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2232,"global_tas",3.05522633120801,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2233,"global_tas",3.05387597263885,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2234,"global_tas",3.05244934633496,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2235,"global_tas",3.05094624972211,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2236,"global_tas",3.04936647975774,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2237,"global_tas",3.04770983533266,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2238,"global_tas",3.04597611907727,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2239,"global_tas",3.04416513946509,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2240,"global_tas",3.0422767121626,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2241,"global_tas",3.04031066135632,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2242,"global_tas",3.03826682045802,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2243,"global_tas",3.03614503281414,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2244,"global_tas",3.03394514825229,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2245,"global_tas",3.03166702292693,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2246,"global_tas",3.02931052017531,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2247,"global_tas",3.02687551161465,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2248,"global_tas",3.02436187797089,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2249,"global_tas",3.02176950984264,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2250,"global_tas",3.01909830818377,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2251,"global_tas",3.01621117515431,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2252,"global_tas",3.01315856077897,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2253,"global_tas",3.01000714980504,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2254,"global_tas",3.00679859333776,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2255,"global_tas",3.00355993315487,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2256,"global_tas",3.00030924041442,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2257,"global_tas",2.99705857611216,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2258,"global_tas",2.99381602605827,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2259,"global_tas",2.99058683217403,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2260,"global_tas",2.98737430239073,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2261,"global_tas",2.98418031219555,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2262,"global_tas",2.98100576091695,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2263,"global_tas",2.97785081346565,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2264,"global_tas",2.97471514926851,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2265,"global_tas",2.97159808584064,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2266,"global_tas",2.96849871504639,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2267,"global_tas",2.96541596610266,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2268,"global_tas",2.96234868267611,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2269,"global_tas",2.95929565529203,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2270,"global_tas",2.95625566490523,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2271,"global_tas",2.95322749898098,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2272,"global_tas",2.95020997614897,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2273,"global_tas",2.94720195347646,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2274,"global_tas",2.94420233945623,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2275,"global_tas",2.94121009723704,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2276,"global_tas",2.93822425227025,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2277,"global_tas",2.93524389303019,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2278,"global_tas",2.93226817440589,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2279,"global_tas",2.92929631666816,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2280,"global_tas",2.92632760621631,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2281,"global_tas",2.92336139356999,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2282,"global_tas",2.92039709257332,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2283,"global_tas",2.91743417791423,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2284,"global_tas",2.91447218142209,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2285,"global_tas",2.91151068901902,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2286,"global_tas",2.90854933895078,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2287,"global_tas",2.90558791548607,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2288,"global_tas",2.90262635424096,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2289,"global_tas",2.89966470280899,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2290,"global_tas",2.89670308949546,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2291,"global_tas",2.89374170285573,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2292,"global_tas",2.89078077659698,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2293,"global_tas",2.8878205786856,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2294,"global_tas",2.88486140273025,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2295,"global_tas",2.88190356146815,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2296,"global_tas",2.87894738141064,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2297,"global_tas",2.87599319867004,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2298,"global_tas",2.8730413554531,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2299,"global_tas",2.87009219727124,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2300,"global_tas",2.86714607057042,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1745,"RF_tot",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1746,"RF_tot",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1747,"RF_tot",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1748,"RF_tot",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1749,"RF_tot",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1750,"RF_tot",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1751,"RF_tot",0.00845368448329387,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1752,"RF_tot",0.0148160167184694,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1753,"RF_tot",0.0144708054219338,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1754,"RF_tot",0.00961459162711509,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1755,"RF_tot",-0.00730068406623374,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1756,"RF_tot",-0.228882183522242,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1757,"RF_tot",-0.105558194370339,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1758,"RF_tot",-0.022852837987533,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1759,"RF_tot",0.00463851495628376,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1760,"RF_tot",0.0103240595699017,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1761,"RF_tot",0.0185907404038077,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1762,"RF_tot",-0.882261193774339,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1763,"RF_tot",-0.603290561411006,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1764,"RF_tot",-0.192200388020974,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1765,"RF_tot",-0.0582401466413178,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1766,"RF_tot",-0.339034348156438,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1767,"RF_tot",-0.391482868573013,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1768,"RF_tot",-0.143942571376855,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1769,"RF_tot",-0.0354391500527464,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1770,"RF_tot",-0.130867238021251,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1771,"RF_tot",-0.0695494938956953,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1772,"RF_tot",-0.00267871070252856,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1773,"RF_tot",0.019077266060946,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1774,"RF_tot",0.0153004137262198,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1775,"RF_tot",0.0257067645564382,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1776,"RF_tot",0.0304738100558144,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1777,"RF_tot",0.0279571900593207,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1778,"RF_tot",0.0255426011918809,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1779,"RF_tot",0.0308269924922924,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1780,"RF_tot",0.0241864300882502,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1781,"RF_tot",0.0303166549965352,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1782,"RF_tot",0.0319338101866398,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1783,"RF_tot",-1.75791618628114,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1784,"RF_tot",-3.6337514586962,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1785,"RF_tot",-1.49031916893151,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1786,"RF_tot",-0.656230735492366,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1787,"RF_tot",-0.272602375348559,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1788,"RF_tot",-0.0993214409963015,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1789,"RF_tot",-0.0282355490192785,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1790,"RF_tot",-0.00529173679981998,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1791,"RF_tot",0.012053760356465,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1792,"RF_tot",0.0201712732592705,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1793,"RF_tot",0.0219561610462204,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1794,"RF_tot",0.0116428572070808,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1795,"RF_tot",0.0204226354272747,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1796,"RF_tot",-0.103847104370303,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1797,"RF_tot",-0.204770756996666,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1798,"RF_tot",-0.106057795347447,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1799,"RF_tot",-0.021167128780373,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1800,"RF_tot",0.0063278062723604,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1801,"RF_tot",0.0232120294273614,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1802,"RF_tot",0.0268827117290469,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1803,"RF_tot",0.0350348256587742,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1804,"RF_tot",0.0421304953174426,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1805,"RF_tot",0.0354763549296915,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1806,"RF_tot",0.0414318635115076,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1807,"RF_tot",0.0405516016001111,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1808,"RF_tot",0.0327121399324564,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1809,"RF_tot",-3.51209521647986,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1810,"RF_tot",-2.46914245372411,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1811,"RF_tot",-0.868961161221009,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1812,"RF_tot",-0.274349040681822,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1813,"RF_tot",-0.0757952633334358,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1814,"RF_tot",-0.0181811088411454,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1815,"RF_tot",-3.50300363816378,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1816,"RF_tot",-4.49532615202078,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1817,"RF_tot",-1.69846777119731,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1818,"RF_tot",-0.586413079015181,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1819,"RF_tot",-0.199450909955848,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1820,"RF_tot",-0.0733190902670027,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1821,"RF_tot",-0.125633743176517,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1822,"RF_tot",-0.116518458185068,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1823,"RF_tot",-0.442367112710525,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1824,"RF_tot",-0.195060533900075,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1825,"RF_tot",-0.0582207135382524,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1826,"RF_tot",0.000522165904631278,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1827,"RF_tot",0.0192453393931606,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1828,"RF_tot",0.0184943051865374,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1829,"RF_tot",0.0302902717275126,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1830,"RF_tot",0.0327871947206773,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1831,"RF_tot",-2.38367906224047,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1832,"RF_tot",-1.63577416963216,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1833,"RF_tot",-0.561212224408448,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1834,"RF_tot",-0.170792796582098,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1835,"RF_tot",-1.80505907673591,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1836,"RF_tot",-1.21217222185952,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1837,"RF_tot",-0.408390129552852,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1838,"RF_tot",-0.112813999661405,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1839,"RF_tot",-0.00549420120300859,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1840,"RF_tot",0.0314736903965369,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1841,"RF_tot",0.0478057711080904,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1842,"RF_tot",0.0588119156674654,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1843,"RF_tot",0.0727789108787689,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1844,"RF_tot",0.08138398758159,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1845,"RF_tot",0.0783172886784274,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1846,"RF_tot",-0.0926718573980845,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1847,"RF_tot",-0.0370255716094665,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1848,"RF_tot",0.0404011222874086,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1849,"RF_tot",0.0799180147700755,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1850,"RF_tot",0.0933340774521134,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1851,"RF_tot",0.112408508800068,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1852,"RF_tot",0.117822118958924,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1853,"RF_tot",-0.0430213388283578,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1854,"RF_tot",-0.0816902620205062,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1855,"RF_tot",0.0581464569466852,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1856,"RF_tot",0.0711535221550215,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1857,"RF_tot",-0.0942535413863141,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1858,"RF_tot",0.0391185113159769,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1859,"RF_tot",0.109708745234192,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1860,"RF_tot",0.13418889042085,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1861,"RF_tot",0.0814711449636858,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1862,"RF_tot",-0.653824465119045,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1863,"RF_tot",-0.281323645046886,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1864,"RF_tot",0.0183269027253579,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1865,"RF_tot",0.115443458004539,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1866,"RF_tot",0.156338737351486,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1867,"RF_tot",0.163379293535311,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1868,"RF_tot",0.16291342676562,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1869,"RF_tot",0.173756904519285,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1870,"RF_tot",0.172257202971662,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1871,"RF_tot",0.184069529793076,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1872,"RF_tot",0.189893506696641,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1873,"RF_tot",-0.0216395173378214,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1874,"RF_tot",0.09686679022836,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1875,"RF_tot",0.126517257187242,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1876,"RF_tot",0.136387402150502,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1877,"RF_tot",0.179727067343547,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1878,"RF_tot",0.198183245042643,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1879,"RF_tot",0.198536364784867,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1880,"RF_tot",0.162406259051268,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1881,"RF_tot",0.162988244856698,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1882,"RF_tot",0.205964496960434,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1883,"RF_tot",-0.297835187212729,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1884,"RF_tot",-1.78911421685351,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1885,"RF_tot",-0.621121447463073,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1886,"RF_tot",-0.0606545848278361,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1887,"RF_tot",-0.00537896719853115,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1888,"RF_tot",0.141972678463773,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1889,"RF_tot",0.202432435643193,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1890,"RF_tot",0.0797912641570167,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1891,"RF_tot",-0.0827606799025586,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1892,"RF_tot",0.103825328021353,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1893,"RF_tot",0.215040349066344,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1894,"RF_tot",0.212371663004125,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1895,"RF_tot",0.217529981186391,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1896,"RF_tot",0.223404417701024,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1897,"RF_tot",0.218909844078146,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1898,"RF_tot",0.219131099655971,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1899,"RF_tot",0.204352664677384,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1900,"RF_tot",0.203751645542283,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1901,"RF_tot",0.208497581641805,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1902,"RF_tot",0.108721496694991,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1903,"RF_tot",-0.695817229672732,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1904,"RF_tot",-0.259428018030788,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1905,"RF_tot",0.0731890525611267,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1906,"RF_tot",0.168514603223173,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1907,"RF_tot",0.0309444519039688,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1908,"RF_tot",0.112800748183026,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1909,"RF_tot",0.177641918411497,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1910,"RF_tot",0.166099363537228,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1911,"RF_tot",0.182545657584191,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1912,"RF_tot",-0.257391982582502,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1913,"RF_tot",-0.334156952254399,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1914,"RF_tot",0.018521162732994,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1915,"RF_tot",0.177714484339102,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1916,"RF_tot",0.185401891921815,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1917,"RF_tot",0.178234621421939,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1918,"RF_tot",0.185932907148618,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1919,"RF_tot",0.240375630330763,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1920,"RF_tot",0.217383207252896,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1921,"RF_tot",0.281495066731346,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1922,"RF_tot",0.176996130343732,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1923,"RF_tot",0.158913338568427,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1924,"RF_tot",0.244727364885833,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1925,"RF_tot",0.249540550061609,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1926,"RF_tot",0.256338478974284,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1927,"RF_tot",0.239748539592768,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1928,"RF_tot",0.223500851108871,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1929,"RF_tot",0.049054121661487,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1930,"RF_tot",0.246935208723848,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1931,"RF_tot",0.319514349580492,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1932,"RF_tot",0.217678234758661,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1933,"RF_tot",0.317010328532296,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1934,"RF_tot",0.322861111974896,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1935,"RF_tot",0.308182191290375,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1936,"RF_tot",0.284164286299378,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1937,"RF_tot",0.269062305272163,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1938,"RF_tot",0.313292988674178,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1939,"RF_tot",0.287413997090379,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1940,"RF_tot",0.266545487104799,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1941,"RF_tot",0.262325678165613,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1942,"RF_tot",0.253838518095745,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1943,"RF_tot",0.262749863037399,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1944,"RF_tot",0.282062486750678,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1945,"RF_tot",0.350818071505651,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1946,"RF_tot",0.371140684701347,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1947,"RF_tot",0.336380194681841,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1948,"RF_tot",0.327264574089588,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1949,"RF_tot",0.347012843264647,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1950,"RF_tot",0.302860497861355,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1951,"RF_tot",0.319491410125143,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1952,"RF_tot",0.32186201040335,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1953,"RF_tot",0.323124964019866,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1954,"RF_tot",0.340332992463475,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1955,"RF_tot",0.31673449724999,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1956,"RF_tot",0.288165522361962,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1957,"RF_tot",0.273698528649071,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1958,"RF_tot",0.312640837606804,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1959,"RF_tot",0.310438849542965,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1960,"RF_tot",0.315423780252195,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1961,"RF_tot",0.228699188436301,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1962,"RF_tot",0.0990028094927928,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1963,"RF_tot",-0.652078580599224,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1964,"RF_tot",-0.528026343898816,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1965,"RF_tot",-0.19238443112411,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1966,"RF_tot",0.234509100717735,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1967,"RF_tot",0.0757935849234952,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1968,"RF_tot",0.170155110664729,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1969,"RF_tot",0.271944561002669,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1970,"RF_tot",0.266149619303167,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1971,"RF_tot",0.197481485315193,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1972,"RF_tot",0.276455797090785,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1973,"RF_tot",0.413082292205007,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1974,"RF_tot",0.418890327215003,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1975,"RF_tot",0.178314462976665,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1976,"RF_tot",0.417081193150206,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1977,"RF_tot",0.545042289712445,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1978,"RF_tot",0.612072831664467,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1979,"RF_tot",0.639444278460227,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1980,"RF_tot",0.645083544921943,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1981,"RF_tot",0.685914374269688,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1982,"RF_tot",0.476677423469922,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1983,"RF_tot",0.049464031654362,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1984,"RF_tot",0.523576851650954,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1985,"RF_tot",0.777229355894923,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1986,"RF_tot",0.83729429270972,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1987,"RF_tot",0.917781416699813,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1988,"RF_tot",1.0156268880842,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1989,"RF_tot",1.10021085754568,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1990,"RF_tot",1.13364668444209,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1991,"RF_tot",0.554168590616795,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1992,"RF_tot",-0.563943355962776,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1993,"RF_tot",0.334848887434336,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1994,"RF_tot",1.06432139046641,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1995,"RF_tot",1.3267013871217,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1996,"RF_tot",1.44253143772866,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1997,"RF_tot",1.38888528702443,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1998,"RF_tot",1.45757746446058,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1999,"RF_tot",1.61958149368758,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2000,"RF_tot",1.6777903428686,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2001,"RF_tot",1.70469356319431,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2002,"RF_tot",1.67169711224755,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2003,"RF_tot",1.662346418058,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2004,"RF_tot",1.71660214675183,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2005,"RF_tot",1.70832492471967,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2006,"RF_tot",1.70093116996039,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2007,"RF_tot",1.78141011122071,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2008,"RF_tot",1.87358945975675,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2009,"RF_tot",1.92074919705932,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2010,"RF_tot",1.98183019943505,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2011,"RF_tot",2.01755103585721,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2012,"RF_tot",2.06255776368284,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2013,"RF_tot",2.16620438707134,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2014,"RF_tot",2.16367449455148,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2015,"RF_tot",2.3246560799664,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2016,"RF_tot",2.38474201394988,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2017,"RF_tot",2.44456300812319,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2018,"RF_tot",2.5044041458098,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2019,"RF_tot",2.56367810217258,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2020,"RF_tot",2.6230488500749,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2021,"RF_tot",2.65220030868,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2022,"RF_tot",2.68090493076487,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2023,"RF_tot",2.7091658233851,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2024,"RF_tot",2.7370075276024,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2025,"RF_tot",2.77843613118841,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2026,"RF_tot",2.81953723273795,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2027,"RF_tot",2.86034700053437,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2028,"RF_tot",2.9008899407375,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2029,"RF_tot",2.94118696803162,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2030,"RF_tot",2.98125753417408,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2031,"RF_tot",3.03023276595537,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2032,"RF_tot",3.0783687180638,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2033,"RF_tot",3.12574550923692,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2034,"RF_tot",3.17246761851405,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2035,"RF_tot",3.21858675225437,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2036,"RF_tot",3.26413201856461,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2037,"RF_tot",3.30913277636653,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2038,"RF_tot",3.35365100504619,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2039,"RF_tot",3.39771693944963,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2040,"RF_tot",3.44134736142146,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2041,"RF_tot",3.48666268508583,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2042,"RF_tot",3.531298293748,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2043,"RF_tot",3.57528952636232,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2044,"RF_tot",3.61866401391158,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2045,"RF_tot",3.66144587492143,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2046,"RF_tot",3.7036567941937,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2047,"RF_tot",3.745316606549,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2048,"RF_tot",3.78644367961856,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2049,"RF_tot",3.82705784020713,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2050,"RF_tot",3.86717462181641,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2051,"RF_tot",3.90230802303793,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2052,"RF_tot",3.9366004602933,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2053,"RF_tot",3.97008149103864,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2054,"RF_tot",4.00277124914114,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2055,"RF_tot",4.03468450920568,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2056,"RF_tot",4.06583685916947,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2057,"RF_tot",4.09624233373328,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2058,"RF_tot",4.12591091499673,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2059,"RF_tot",4.15485264119804,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2060,"RF_tot",4.18307968562654,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2061,"RF_tot",4.20820275716157,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2062,"RF_tot",4.23259290369919,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2063,"RF_tot",4.25626639175173,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2064,"RF_tot",4.27923349776142,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2065,"RF_tot",4.30151432157662,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2066,"RF_tot",4.32311200042468,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2067,"RF_tot",4.34419496040841,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2068,"RF_tot",4.36458225268051,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2069,"RF_tot",4.38427798568791,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2070,"RF_tot",4.40329966687277,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2071,"RF_tot",4.42180076348716,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2072,"RF_tot",4.4391034747122,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2073,"RF_tot",4.45524142330137,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2074,"RF_tot",4.47023554476367,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2075,"RF_tot",4.48410317796011,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2076,"RF_tot",4.49686347998717,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2077,"RF_tot",4.50853023705708,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2078,"RF_tot",4.51911654279521,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2079,"RF_tot",4.52863474493104,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2080,"RF_tot",4.53709578799043,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2081,"RF_tot",4.54565580504205,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2082,"RF_tot",4.55311132351163,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2083,"RF_tot",4.55947288451521,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2084,"RF_tot",4.56474375285698,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2085,"RF_tot",4.56892519469149,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2086,"RF_tot",4.57202711800699,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2087,"RF_tot",4.57425717569026,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2088,"RF_tot",4.57556954060879,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2089,"RF_tot",4.57612253560694,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2090,"RF_tot",4.57585670837344,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2091,"RF_tot",4.57094949071404,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2092,"RF_tot",4.56568911005341,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2093,"RF_tot",4.56004754224389,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2094,"RF_tot",4.5540182835229,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2095,"RF_tot",4.54759044106195,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2096,"RF_tot",4.54075474442881,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2097,"RF_tot",4.53350394784999,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2098,"RF_tot",4.52583171306512,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2099,"RF_tot",4.51773238654564,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2100,"RF_tot",4.50920107508909,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2101,"RF_tot",4.49895615467479,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2102,"RF_tot",4.48901576827831,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2103,"RF_tot",4.47935252198751,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2104,"RF_tot",4.46996610291714,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2105,"RF_tot",4.46085589997787,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2106,"RF_tot",4.45203564329816,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2107,"RF_tot",4.44378561331787,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2108,"RF_tot",4.4357176785247,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2109,"RF_tot",4.42806878216865,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2110,"RF_tot",4.42079920434892,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2111,"RF_tot",4.41393833242036,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2112,"RF_tot",4.40744305446796,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2113,"RF_tot",4.40132561505959,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2114,"RF_tot",4.39555617356094,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2115,"RF_tot",4.39014582530785,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2116,"RF_tot",4.3850771488905,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2117,"RF_tot",4.38034390350569,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2118,"RF_tot",4.37592564692694,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2119,"RF_tot",4.37181557911907,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2120,"RF_tot",4.36799919281968,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2121,"RF_tot",4.36446898530255,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2122,"RF_tot",4.36121185112655,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2123,"RF_tot",4.3582200391816,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2124,"RF_tot",4.35548178393371,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2125,"RF_tot",4.35299064917948,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2126,"RF_tot",4.3507379395392,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2127,"RF_tot",4.34871463783244,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2128,"RF_tot",4.34691173269563,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2129,"RF_tot",4.34532130241626,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2130,"RF_tot",4.34393554083879,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2131,"RF_tot",4.34274750570761,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2132,"RF_tot",4.3417531894163,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2133,"RF_tot",4.34094319316874,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2134,"RF_tot",4.34030877296349,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2135,"RF_tot",4.33984447096321,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2136,"RF_tot",4.33954216640019,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2137,"RF_tot",4.33939504506145,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2138,"RF_tot",4.33939695648252,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2139,"RF_tot",4.33954242419485,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2140,"RF_tot",4.33982615043434,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2141,"RF_tot",4.34024202050618,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2142,"RF_tot",4.34078505171587,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2143,"RF_tot",4.3414506043264,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2144,"RF_tot",4.34223401471703,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2145,"RF_tot",4.34313083448956,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2146,"RF_tot",4.34413645108418,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2147,"RF_tot",4.34524610511959,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2148,"RF_tot",4.34645411075062,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2149,"RF_tot",4.34775543548701,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2150,"RF_tot",4.34914627674957,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2151,"RF_tot",4.35065060636872,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2152,"RF_tot",4.35213404519019,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2153,"RF_tot",4.35359764073028,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2154,"RF_tot",4.35503781714458,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2155,"RF_tot",4.35645344327961,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2156,"RF_tot",4.35784156935848,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2157,"RF_tot",4.35920053830752,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2158,"RF_tot",4.36052829132425,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2159,"RF_tot",4.36182407725056,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2160,"RF_tot",4.36308641522928,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2161,"RF_tot",4.36431347276613,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2162,"RF_tot",4.36550349216047,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2163,"RF_tot",4.36665505651546,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2164,"RF_tot",4.36776828184826,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2165,"RF_tot",4.36884496703396,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2166,"RF_tot",4.3698992451912,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2167,"RF_tot",4.37093332015199,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2168,"RF_tot",4.37194252922636,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2169,"RF_tot",4.37291718057959,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2170,"RF_tot",4.37385616097846,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2171,"RF_tot",4.37475567314533,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2172,"RF_tot",4.37561163384554,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2173,"RF_tot",4.37642161764878,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2174,"RF_tot",4.37718509453122,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2175,"RF_tot",4.37789945850326,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2176,"RF_tot",4.37856065329732,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2177,"RF_tot",4.37916640088898,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2178,"RF_tot",4.37971964368586,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2179,"RF_tot",4.38021615328808,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2180,"RF_tot",4.38065197973872,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2181,"RF_tot",4.38102376795042,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2182,"RF_tot",4.38132918206975,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2183,"RF_tot",4.38156658774264,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2184,"RF_tot",4.38173415697435,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2185,"RF_tot",4.38183479257051,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2186,"RF_tot",4.3818772555746,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2187,"RF_tot",4.38185573436321,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2188,"RF_tot",4.38176434055651,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2189,"RF_tot",4.38159944209379,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2190,"RF_tot",4.38135768637195,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2191,"RF_tot",4.38103546422776,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2192,"RF_tot",4.38062951246175,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2193,"RF_tot",4.38013758123353,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2194,"RF_tot",4.37956952900483,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2195,"RF_tot",4.37894967078253,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2196,"RF_tot",4.37827046727869,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2197,"RF_tot",4.3775183430535,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2198,"RF_tot",4.37668356706727,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2199,"RF_tot",4.37575956243493,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2200,"RF_tot",4.37474380564473,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2201,"RF_tot",4.37363332285636,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2202,"RF_tot",4.37242358531718,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2203,"RF_tot",4.37111171385516,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2204,"RF_tot",4.36969584352558,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2205,"RF_tot",4.36817586391862,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2206,"RF_tot",4.36655193561953,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2207,"RF_tot",4.3648234323571,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2208,"RF_tot",4.36299070890925,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2209,"RF_tot",4.36105446691776,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2210,"RF_tot",4.35901395478167,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2211,"RF_tot",4.35686779364138,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2212,"RF_tot",4.35461510571919,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2213,"RF_tot",4.35225486524462,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2214,"RF_tot",4.34978649791031,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2215,"RF_tot",4.34720941716011,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2216,"RF_tot",4.34452197702939,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2217,"RF_tot",4.3417241984496,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2218,"RF_tot",4.33881348689014,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2219,"RF_tot",4.33578843473903,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2220,"RF_tot",4.33264778884618,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2221,"RF_tot",4.32939048922704,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2222,"RF_tot",4.32601553849499,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2223,"RF_tot",4.32252205321938,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2224,"RF_tot",4.31890975242231,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2225,"RF_tot",4.31517863826369,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2226,"RF_tot",4.31132887580888,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2227,"RF_tot",4.30736077315556,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2228,"RF_tot",4.30327445775782,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2229,"RF_tot",4.29907004745713,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2230,"RF_tot",4.29474764664242,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2231,"RF_tot",4.29030737380789,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2232,"RF_tot",4.2857493493477,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2233,"RF_tot",4.28107370996657,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2234,"RF_tot",4.27628042529784,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2235,"RF_tot",4.27136943195094,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2236,"RF_tot",4.2663406486821,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2237,"RF_tot",4.26119399918458,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2238,"RF_tot",4.25592941253618,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2239,"RF_tot",4.25054683436348,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2240,"RF_tot",4.24504622448529,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2241,"RF_tot",4.23942756211635,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2242,"RF_tot",4.23369084264067,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2243,"RF_tot",4.22783608061676,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2244,"RF_tot",4.22186326717609,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2245,"RF_tot",4.21577240297381,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2246,"RF_tot",4.20956350203753,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2247,"RF_tot",4.20323659708125,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2248,"RF_tot",4.19679173939152,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2249,"RF_tot",4.19022900084314,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2250,"RF_tot",4.18354847276792,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2251,"RF_tot",4.17529694923751,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2252,"RF_tot",4.16733647496874,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2253,"RF_tot",4.15963083081465,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2254,"RF_tot",4.15215542091521,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2255,"RF_tot",4.14488615833164,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2256,"RF_tot",4.13780353652735,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2257,"RF_tot",4.13088825159425,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2258,"RF_tot",4.12412430029113,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2259,"RF_tot",4.11749608847263,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2260,"RF_tot",4.11099049012311,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2261,"RF_tot",4.10459489550781,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2262,"RF_tot",4.09829855894334,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2263,"RF_tot",4.09209127944903,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2264,"RF_tot",4.08596432024889,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2265,"RF_tot",4.07990948785047,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2266,"RF_tot",4.07391968756808,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2267,"RF_tot",4.06798831637015,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2268,"RF_tot",4.06210961655355,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2269,"RF_tot",4.05627826569085,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2270,"RF_tot",4.05048959494168,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2271,"RF_tot",4.0447393136146,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2272,"RF_tot",4.0390236454082,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2273,"RF_tot",4.03333913944995,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2274,"RF_tot",4.02768274846087,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2275,"RF_tot",4.02205171153885,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2276,"RF_tot",4.01644360379664,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2277,"RF_tot",4.01085624934439,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2278,"RF_tot",4.00528774708289,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2279,"RF_tot",3.99973640931805,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2280,"RF_tot",3.99420077362246,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2281,"RF_tot",3.9886795593336,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2282,"RF_tot",3.98317167134601,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2283,"RF_tot",3.97767616891639,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2284,"RF_tot",3.97219224307446,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2285,"RF_tot",3.96671920961792,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2286,"RF_tot",3.96125650909445,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2287,"RF_tot",3.95580470963195,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2288,"RF_tot",3.95036465111269,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2289,"RF_tot",3.94493714841087,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2290,"RF_tot",3.93952298989779,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2291,"RF_tot",3.93412294454021,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2292,"RF_tot",3.92873775424767,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2293,"RF_tot",3.92336813762218,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2294,"RF_tot",3.91801478517944,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2295,"RF_tot",3.91267836178052,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2296,"RF_tot",3.90735950381189,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2297,"RF_tot",3.90205882086867,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2298,"RF_tot",3.89677689421833,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2299,"RF_tot",3.89151427806755,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2300,"RF_tot",3.88627149886598,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1745,"RF_CO2",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1746,"RF_CO2",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1747,"RF_CO2",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1748,"RF_CO2",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1749,"RF_CO2",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1750,"RF_CO2",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1751,"RF_CO2",0.000521227120917437,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1752,"RF_CO2",0.00105426105126747,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1753,"RF_CO2",0.00160158004093615,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1754,"RF_CO2",0.00214582419646185,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1755,"RF_CO2",0.00266899451266868,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1756,"RF_CO2",0.00313159387976351,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1757,"RF_CO2",0.00294815179784146,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1758,"RF_CO2",0.00290214228042587,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1759,"RF_CO2",0.0031363687336717,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1760,"RF_CO2",0.00355063454622828,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1761,"RF_CO2",0.00404699726675768,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1762,"RF_CO2",0.00459682287626627,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1763,"RF_CO2",0.00263949268344613,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1764,"RF_CO2",0.000660930606789636,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1765,"RF_CO2",-0.00014673530613883,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1766,"RF_CO2",-0.000135288658560619,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1767,"RF_CO2",-0.000589574942448726,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1768,"RF_CO2",-0.00131343860849681,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1769,"RF_CO2",-0.0014137294382012,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1770,"RF_CO2",-0.000982977312992264,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1771,"RF_CO2",-0.00062513733087783,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1772,"RF_CO2",-0.000105103575119381,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1773,"RF_CO2",0.000654708586401606,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1774,"RF_CO2",0.00155314951008013,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1775,"RF_CO2",0.00248197136326487,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1776,"RF_CO2",0.00344169080755653,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1777,"RF_CO2",0.00441784425044735,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1778,"RF_CO2",0.00538016115107515,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1779,"RF_CO2",0.00632062489638409,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1780,"RF_CO2",0.00725870188956051,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1781,"RF_CO2",0.00816785245547084,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1782,"RF_CO2",0.00908068309213149,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1783,"RF_CO2",0.00998915283211155,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1784,"RF_CO2",0.00591396113528165,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1785,"RF_CO2",-0.00483577731811147,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1786,"RF_CO2",-0.0120172717285256,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1787,"RF_CO2",-0.0153822506655876,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1788,"RF_CO2",-0.0160676581408279,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1789,"RF_CO2",-0.0151972569584931,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1790,"RF_CO2",-0.0135395224534396,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1791,"RF_CO2",-0.0115470523280155,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1792,"RF_CO2",-0.00941216123419559,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1793,"RF_CO2",-0.00723837721256665,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1794,"RF_CO2",-0.00507951825599534,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1795,"RF_CO2",-0.00298400571825096,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1796,"RF_CO2",-0.00091541818087461,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1797,"RF_CO2",0.000794004968757623,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1798,"RF_CO2",0.00207485332130601,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1799,"RF_CO2",0.00345250513715909,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1800,"RF_CO2",0.00511362804667039,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1801,"RF_CO2",0.00696054589264672,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1802,"RF_CO2",0.00890928604143002,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1803,"RF_CO2",0.0109135713169484,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1804,"RF_CO2",0.0129225626175587,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1805,"RF_CO2",0.0149494654906925,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1806,"RF_CO2",0.0169640381551751,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1807,"RF_CO2",0.018921663995091,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1808,"RF_CO2",0.0208358521585541,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1809,"RF_CO2",0.0226730625717407,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1810,"RF_CO2",0.0147540655001096,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1811,"RF_CO2",0.00671320840448084,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1812,"RF_CO2",0.00264987439301268,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1813,"RF_CO2",0.00207724257663244,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1814,"RF_CO2",0.00356784315217804,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1815,"RF_CO2",0.0060811041099389,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1816,"RF_CO2",0.000225493929843383,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1817,"RF_CO2",-0.0115772190467176,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1818,"RF_CO2",-0.0185566810543032,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1819,"RF_CO2",-0.020019152866174,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1820,"RF_CO2",-0.0180265182586988,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1821,"RF_CO2",-0.0142761142239014,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1822,"RF_CO2",-0.00998007921145916,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1823,"RF_CO2",-0.00549378139092226,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1824,"RF_CO2",-0.00179781998318818,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1825,"RF_CO2",0.00215604872433272,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1826,"RF_CO2",0.00659153050918449,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1827,"RF_CO2",0.0113574657206264,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1828,"RF_CO2",0.0162873917573931,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1829,"RF_CO2",0.0212455971449715,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1830,"RF_CO2",0.0262118168836841,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1831,"RF_CO2",0.0312173616787316,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1832,"RF_CO2",0.0300805715000353,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1833,"RF_CO2",0.028209163575461,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1834,"RF_CO2",0.029079757622662,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1835,"RF_CO2",0.0322872635625416,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1836,"RF_CO2",0.032390160636115,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1837,"RF_CO2",0.0326494477441727,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1838,"RF_CO2",0.0352048680233957,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1839,"RF_CO2",0.039592831752689,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1840,"RF_CO2",0.045007760717946,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1841,"RF_CO2",0.0509125687790162,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1842,"RF_CO2",0.0570091097242108,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1843,"RF_CO2",0.0631766051241818,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1844,"RF_CO2",0.069362276809116,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1845,"RF_CO2",0.0755555667679343,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1846,"RF_CO2",0.0817334357920282,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1847,"RF_CO2",0.0874279470929044,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1848,"RF_CO2",0.0930614963682714,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1849,"RF_CO2",0.0988521178997208,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1850,"RF_CO2",0.104820827801272,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1851,"RF_CO2",0.110899515285556,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1852,"RF_CO2",0.116898453981498,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1853,"RF_CO2",0.123355898148266,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1854,"RF_CO2",0.129107620790878,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1855,"RF_CO2",0.134411261333377,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1856,"RF_CO2",0.139738717816118,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1857,"RF_CO2",0.145113747909768,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1858,"RF_CO2",0.149969229694388,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1859,"RF_CO2",0.154874719795733,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1860,"RF_CO2",0.159989868047489,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1861,"RF_CO2",0.165206409087187,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1862,"RF_CO2",0.170304473077827,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1863,"RF_CO2",0.172783648454177,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1864,"RF_CO2",0.175367348701694,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1865,"RF_CO2",0.178853174742853,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1866,"RF_CO2",0.182936571703171,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1867,"RF_CO2",0.187283192110336,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1868,"RF_CO2",0.191702028213443,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1869,"RF_CO2",0.196046526897448,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1870,"RF_CO2",0.200351285243227,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1871,"RF_CO2",0.204552134854026,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1872,"RF_CO2",0.208903656868854,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1873,"RF_CO2",0.21407522201985,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1874,"RF_CO2",0.218518343093158,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1875,"RF_CO2",0.222826214426485,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1876,"RF_CO2",0.22721114118783,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1877,"RF_CO2",0.231541150122276,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1878,"RF_CO2",0.235900202724455,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1879,"RF_CO2",0.240226140324455,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1880,"RF_CO2",0.244560900004738,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1881,"RF_CO2",0.248890762464782,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1882,"RF_CO2",0.25336009842476,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1883,"RF_CO2",0.257400934504241,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1884,"RF_CO2",0.260144629539699,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1885,"RF_CO2",0.258382382389815,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1886,"RF_CO2",0.258091888585824,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1887,"RF_CO2",0.259973580510249,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1888,"RF_CO2",0.262978227792725,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1889,"RF_CO2",0.266940884436861,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1890,"RF_CO2",0.271284179186023,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1891,"RF_CO2",0.275598153784424,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1892,"RF_CO2",0.279426565913244,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1893,"RF_CO2",0.283588254345579,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1894,"RF_CO2",0.28804982487549,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1895,"RF_CO2",0.292840772097955,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1896,"RF_CO2",0.297817419671958,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1897,"RF_CO2",0.302841977569936,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1898,"RF_CO2",0.307932809208489,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1899,"RF_CO2",0.313108757010301,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1900,"RF_CO2",0.31846593126719,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1901,"RF_CO2",0.323893981935391,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1902,"RF_CO2",0.329886880500761,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1903,"RF_CO2",0.335609859548297,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1904,"RF_CO2",0.339694933729257,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1905,"RF_CO2",0.34413466437039,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1906,"RF_CO2",0.350140014242727,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1907,"RF_CO2",0.356967789641283,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1908,"RF_CO2",0.364145409064488,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1909,"RF_CO2",0.371028082794688,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1910,"RF_CO2",0.378134899800654,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1911,"RF_CO2",0.385350088050464,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1912,"RF_CO2",0.391960200102582,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1913,"RF_CO2",0.397214829852339,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1914,"RF_CO2",0.40198757039716,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1915,"RF_CO2",0.406518990718928,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1916,"RF_CO2",0.411439544382135,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1917,"RF_CO2",0.417034181196763,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1918,"RF_CO2",0.422793492228592,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1919,"RF_CO2",0.428341314638018,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1920,"RF_CO2",0.433018295774704,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1921,"RF_CO2",0.438633157391326,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1922,"RF_CO2",0.443683235030471,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1923,"RF_CO2",0.448735927825053,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1924,"RF_CO2",0.454525310876467,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1925,"RF_CO2",0.460392807969693,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1926,"RF_CO2",0.466265162149474,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1927,"RF_CO2",0.471918273370183,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1928,"RF_CO2",0.478533239205485,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1929,"RF_CO2",0.484884835690787,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1930,"RF_CO2",0.491432501004169,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1931,"RF_CO2",0.498001039197649,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1932,"RF_CO2",0.503890873973157,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1933,"RF_CO2",0.507960835761667,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1934,"RF_CO2",0.512568946180916,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1935,"RF_CO2",0.517709308516221,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1936,"RF_CO2",0.523094830384228,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1937,"RF_CO2",0.52913755003988,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1938,"RF_CO2",0.535370045043504,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1939,"RF_CO2",0.540927385769599,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1940,"RF_CO2",0.546889841939538,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1941,"RF_CO2",0.553311795735454,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1942,"RF_CO2",0.559534356908171,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1943,"RF_CO2",0.565720809569036,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1944,"RF_CO2",0.572048826211227,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1945,"RF_CO2",0.578165553147349,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1946,"RF_CO2",0.582639050311003,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1947,"RF_CO2",0.588843538426545,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1948,"RF_CO2",0.596301333352217,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1949,"RF_CO2",0.60422725407438,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1950,"RF_CO2",0.611753283203503,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1951,"RF_CO2",0.620513184050099,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1952,"RF_CO2",0.631665647981119,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1953,"RF_CO2",0.642788795817246,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1954,"RF_CO2",0.653884073394862,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1955,"RF_CO2",0.665441764962424,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1956,"RF_CO2",0.678347453150042,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1957,"RF_CO2",0.692299036921296,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1958,"RF_CO2",0.706577598187115,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1959,"RF_CO2",0.721412370780439,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1960,"RF_CO2",0.736324961152616,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1961,"RF_CO2",0.751584655344542,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1962,"RF_CO2",0.766789123573484,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1963,"RF_CO2",0.781858746450715,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1964,"RF_CO2",0.795705392214781,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1965,"RF_CO2",0.809742712187018,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1966,"RF_CO2",0.825340416318794,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1967,"RF_CO2",0.842934110766799,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1968,"RF_CO2",0.861263559329343,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1969,"RF_CO2",0.880395545626742,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1970,"RF_CO2",0.900878785150382,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1971,"RF_CO2",0.922597296958887,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1972,"RF_CO2",0.943781539408348,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1973,"RF_CO2",0.965246860447071,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1974,"RF_CO2",0.988320261535711,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1975,"RF_CO2",1.01025240772307,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1976,"RF_CO2",1.03088384503517,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1977,"RF_CO2",1.05339848236642,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1978,"RF_CO2",1.07707973017973,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1979,"RF_CO2",1.10147859062021,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1980,"RF_CO2",1.12596360946233,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1981,"RF_CO2",1.14905015929141,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1982,"RF_CO2",1.1708295557835,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1983,"RF_CO2",1.19114561747045,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1984,"RF_CO2",1.21106050088173,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1985,"RF_CO2",1.23231450226468,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1986,"RF_CO2",1.25454726167449,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1987,"RF_CO2",1.27758225499674,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1988,"RF_CO2",1.30132288096241,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1989,"RF_CO2",1.32608333829537,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1990,"RF_CO2",1.35108644595842,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1991,"RF_CO2",1.37475061771625,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1992,"RF_CO2",1.39786761213803,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1993,"RF_CO2",1.41717580122273,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1994,"RF_CO2",1.43625388150442,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1995,"RF_CO2",1.45743986578139,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1996,"RF_CO2",1.48063848752881,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1997,"RF_CO2",1.50504959339013,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1998,"RF_CO2",1.53500424372877,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1999,"RF_CO2",1.56070003181844,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2000,"RF_CO2",1.58567154974175,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2001,"RF_CO2",1.61177365494704,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2002,"RF_CO2",1.63661943981057,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2003,"RF_CO2",1.66291685620334,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2004,"RF_CO2",1.68993642330707,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2005,"RF_CO2",1.72020963853049,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2006,"RF_CO2",1.75180680291136,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2007,"RF_CO2",1.78506152373096,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2008,"RF_CO2",1.81920698576329,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2009,"RF_CO2",1.85135150960376,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2010,"RF_CO2",1.88272364477913,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2011,"RF_CO2",1.91725815625117,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2012,"RF_CO2",1.9533670459624,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2013,"RF_CO2",1.99019524088455,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2014,"RF_CO2",2.0280901705657,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2015,"RF_CO2",2.06688552990578,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2016,"RF_CO2",2.104558490498,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2017,"RF_CO2",2.14224830611292,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2018,"RF_CO2",2.18015691413857,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2019,"RF_CO2",2.21824678500482,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2020,"RF_CO2",2.25648320831077,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2021,"RF_CO2",2.29484094941655,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2022,"RF_CO2",2.33321184592964,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2023,"RF_CO2",2.37156055283776,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2024,"RF_CO2",2.40987623483294,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2025,"RF_CO2",2.44815461818508,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2026,"RF_CO2",2.48642929695442,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2027,"RF_CO2",2.52470899553746,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2028,"RF_CO2",2.56299300166967,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2029,"RF_CO2",2.60127906978426,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2030,"RF_CO2",2.6395653875513,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2031,"RF_CO2",2.67785110251692,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2032,"RF_CO2",2.71582949599087,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2033,"RF_CO2",2.75352871704458,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2034,"RF_CO2",2.79100659965945,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2035,"RF_CO2",2.82827267951227,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2036,"RF_CO2",2.86531787240767,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2037,"RF_CO2",2.90213691844439,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2038,"RF_CO2",2.93876042844288,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2039,"RF_CO2",2.97519008715177,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2040,"RF_CO2",3.0114166819512,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2041,"RF_CO2",3.04743506748461,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2042,"RF_CO2",3.08301354251891,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2043,"RF_CO2",3.11815876517291,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2044,"RF_CO2",3.15287250264303,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2045,"RF_CO2",3.18715548470728,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2046,"RF_CO2",3.22100819917426,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2047,"RF_CO2",3.2544312335662,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2048,"RF_CO2",3.28742544739787,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2049,"RF_CO2",3.31999471880572,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2050,"RF_CO2",3.352140018395,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2051,"RF_CO2",3.38386132850631,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2052,"RF_CO2",3.41479690421216,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2053,"RF_CO2",3.44496289582877,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2054,"RF_CO2",3.47436787177275,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2055,"RF_CO2",3.5030163408448,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2056,"RF_CO2",3.53091468340086,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2057,"RF_CO2",3.55806863232081,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2058,"RF_CO2",3.58448066246459,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2059,"RF_CO2",3.61015402147523,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2060,"RF_CO2",3.63509473910277,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2061,"RF_CO2",3.65930473521576,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2062,"RF_CO2",3.68254794893568,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2063,"RF_CO2",3.70486002346061,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2064,"RF_CO2",3.72626865142872,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2065,"RF_CO2",3.74680975436287,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2066,"RF_CO2",3.76650082918853,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2067,"RF_CO2",3.78552372944787,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2068,"RF_CO2",3.80370900535172,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2069,"RF_CO2",3.8210715838752,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2070,"RF_CO2",3.83763883638501,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2071,"RF_CO2",3.85343023319658,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2072,"RF_CO2",3.86800278104815,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2073,"RF_CO2",3.88138974377902,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2074,"RF_CO2",3.89361216113852,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2075,"RF_CO2",3.90468758587423,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2076,"RF_CO2",3.91463539179055,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2077,"RF_CO2",3.92346953257354,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2078,"RF_CO2",3.93120322190717,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2079,"RF_CO2",3.93784888001599,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2080,"RF_CO2",3.94341747742716,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2081,"RF_CO2",3.94791916033327,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2082,"RF_CO2",3.95108658737239,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2083,"RF_CO2",3.95294974608268,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2084,"RF_CO2",3.95352868837932,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2085,"RF_CO2",3.95283963835175,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2086,"RF_CO2",3.95090600710982,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2087,"RF_CO2",3.94794813132045,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2088,"RF_CO2",3.94393111891601,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2089,"RF_CO2",3.93902366232124,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2090,"RF_CO2",3.93317521156801,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2091,"RF_CO2",3.92640089300671,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2092,"RF_CO2",3.91920427487372,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2093,"RF_CO2",3.91156610682516,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2094,"RF_CO2",3.90348770685743,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2095,"RF_CO2",3.89496515339712,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2096,"RF_CO2",3.88599541220864,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2097,"RF_CO2",3.87657681641599,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2098,"RF_CO2",3.86670801170648,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2099,"RF_CO2",3.85638779066285,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2100,"RF_CO2",3.8456152205395,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2101,"RF_CO2",3.83438904991044,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2102,"RF_CO2",3.82359654609635,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2103,"RF_CO2",3.81320017124708,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2104,"RF_CO2",3.80319170229175,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2105,"RF_CO2",3.79356374927213,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2106,"RF_CO2",3.78432404890027,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2107,"RF_CO2",3.77574811753032,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2108,"RF_CO2",3.76744195938348,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2109,"RF_CO2",3.75963859945428,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2110,"RF_CO2",3.75229413615136,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2111,"RF_CO2",3.74543430273488,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2112,"RF_CO2",3.73901248615188,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2113,"RF_CO2",3.733037859315,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2114,"RF_CO2",3.7274776774013,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2115,"RF_CO2",3.72234047379106,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2116,"RF_CO2",3.71760641763051,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2117,"RF_CO2",3.71326708635239,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2118,"RF_CO2",3.70930000404366,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2119,"RF_CO2",3.70569653551476,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2120,"RF_CO2",3.70244047032392,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2121,"RF_CO2",3.6995227670064,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2122,"RF_CO2",3.69692888181101,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2123,"RF_CO2",3.69464975163903,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2124,"RF_CO2",3.6926723925159,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2125,"RF_CO2",3.69098925676336,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2126,"RF_CO2",3.68959061781954,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2127,"RF_CO2",3.6884665047508,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2128,"RF_CO2",3.68760702381853,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2129,"RF_CO2",3.68700343873513,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2130,"RF_CO2",3.686647188578,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2131,"RF_CO2",3.68653062222525,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2132,"RF_CO2",3.68664909072222,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2133,"RF_CO2",3.68699258638552,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2134,"RF_CO2",3.68755179962922,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2135,"RF_CO2",3.68832075325955,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2136,"RF_CO2",3.68929083574391,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2137,"RF_CO2",3.69045477746974,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2138,"RF_CO2",3.69180600375669,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2139,"RF_CO2",3.69333864274568,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2140,"RF_CO2",3.69504702672835,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2141,"RF_CO2",3.69692469210068,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2142,"RF_CO2",3.6989663312442,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2143,"RF_CO2",3.7011669999146,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2144,"RF_CO2",3.70352174800271,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2145,"RF_CO2",3.70602585785385,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2146,"RF_CO2",3.70867446270336,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2147,"RF_CO2",3.71146256291319,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2148,"RF_CO2",3.71438424337145,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2149,"RF_CO2",3.71743425622068,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2150,"RF_CO2",3.72060859795494,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2151,"RF_CO2",3.72390333643461,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2152,"RF_CO2",3.72718359157095,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2153,"RF_CO2",3.73045025117032,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2154,"RF_CO2",3.73369957695274,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2155,"RF_CO2",3.73693028938137,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2156,"RF_CO2",3.74013929335439,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2157,"RF_CO2",3.74332479669381,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2158,"RF_CO2",3.74648461110663,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2159,"RF_CO2",3.74961786535478,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2160,"RF_CO2",3.75272296252355,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2161,"RF_CO2",3.75579795866324,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2162,"RF_CO2",3.75884098994732,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2163,"RF_CO2",3.761850539041,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2164,"RF_CO2",3.7648266298761,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2165,"RF_CO2",3.76777097771462,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2166,"RF_CO2",3.77069766657583,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2167,"RF_CO2",3.77360882565825,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2168,"RF_CO2",3.77649970435448,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2169,"RF_CO2",3.77936051395348,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2170,"RF_CO2",3.78219006879453,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2171,"RF_CO2",3.78498449566746,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2172,"RF_CO2",3.78773963766283,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2173,"RF_CO2",3.7904530025914,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2174,"RF_CO2",3.79312400104287,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2175,"RF_CO2",3.79574996507792,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2176,"RF_CO2",3.79832677534053,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2177,"RF_CO2",3.80085209744682,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2178,"RF_CO2",3.80332883258241,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2179,"RF_CO2",3.80575269553736,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2180,"RF_CO2",3.80811968227394,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2181,"RF_CO2",3.81042638705033,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2182,"RF_CO2",3.812670427754,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2183,"RF_CO2",3.81485012730565,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2184,"RF_CO2",3.81696361623342,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2185,"RF_CO2",3.81901376922338,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2186,"RF_CO2",3.8210093352805,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2187,"RF_CO2",3.82294445623478,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2188,"RF_CO2",3.82481319844159,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2189,"RF_CO2",3.82661189157262,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2190,"RF_CO2",3.82833714681375,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2191,"RF_CO2",3.82998531947245,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2192,"RF_CO2",3.8315531129448,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2193,"RF_CO2",3.83303824771585,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2194,"RF_CO2",3.8344505836845,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2195,"RF_CO2",3.83581447415212,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2196,"RF_CO2",3.83712234046955,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2197,"RF_CO2",3.83836055398541,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2198,"RF_CO2",3.83951934098628,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2199,"RF_CO2",3.84059209070826,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2200,"RF_CO2",3.84157625673954,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2201,"RF_CO2",3.84246884215889,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2202,"RF_CO2",3.84326529219673,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2203,"RF_CO2",3.84396270661371,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2204,"RF_CO2",3.84455920274849,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2205,"RF_CO2",3.84505465762301,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2206,"RF_CO2",3.84544922071308,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2207,"RF_CO2",3.84574225346339,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2208,"RF_CO2",3.84593410152994,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2209,"RF_CO2",3.84602545900605,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2210,"RF_CO2",3.84601556385843,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2211,"RF_CO2",3.84590302593017,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2212,"RF_CO2",3.84568695804176,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2213,"RF_CO2",3.84536632529835,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2214,"RF_CO2",3.84494054600253,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2215,"RF_CO2",3.84440902678272,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2216,"RF_CO2",3.84377011284294,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2217,"RF_CO2",3.84302382095442,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2218,"RF_CO2",3.84216754655717,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2219,"RF_CO2",3.84119987547312,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2220,"RF_CO2",3.84011954889574,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2221,"RF_CO2",3.83892550217413,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2222,"RF_CO2",3.83761673391094,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2223,"RF_CO2",3.83619235743317,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2224,"RF_CO2",3.83465209047209,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2225,"RF_CO2",3.83299593505103,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2226,"RF_CO2",3.83122405694542,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2227,"RF_CO2",3.82933676574876,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2228,"RF_CO2",3.82733419039394,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2229,"RF_CO2",3.82521645059261,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2230,"RF_CO2",3.82298365297581,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2231,"RF_CO2",3.82063591870943,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2232,"RF_CO2",3.8181733712496,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2233,"RF_CO2",3.81559615077939,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2234,"RF_CO2",3.81290423037167,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2235,"RF_CO2",3.81009755035567,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2236,"RF_CO2",3.80717603351674,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2237,"RF_CO2",3.80413960793449,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2238,"RF_CO2",3.80098820742389,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2239,"RF_CO2",3.79772178271941,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2240,"RF_CO2",3.79434029910574,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2241,"RF_CO2",3.79084374162739,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2242,"RF_CO2",3.78723211184771,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2243,"RF_CO2",3.78350543085504,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2244,"RF_CO2",3.77966369655223,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2245,"RF_CO2",3.77570691668149,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2246,"RF_CO2",3.77163511267686,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2247,"RF_CO2",3.76744832498568,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2248,"RF_CO2",3.76314661294921,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2249,"RF_CO2",3.75873005681819,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2250,"RF_CO2",3.75419875661404,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2251,"RF_CO2",3.74955278046326,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2252,"RF_CO2",3.74491988874124,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2253,"RF_CO2",3.74029227404684,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2254,"RF_CO2",3.73566970147279,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2255,"RF_CO2",3.73104963427383,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2256,"RF_CO2",3.72643186790024,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2257,"RF_CO2",3.72181444926485,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2258,"RF_CO2",3.71719699876502,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2259,"RF_CO2",3.71257798862079,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2260,"RF_CO2",3.707956961314,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2261,"RF_CO2",3.70333271155821,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2262,"RF_CO2",3.69870476245023,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2263,"RF_CO2",3.69407215632709,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2264,"RF_CO2",3.68943447907325,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2265,"RF_CO2",3.68479102981343,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2266,"RF_CO2",3.68014146159261,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2267,"RF_CO2",3.67548524843196,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2268,"RF_CO2",3.67082210803799,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2269,"RF_CO2",3.6661516521976,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2270,"RF_CO2",3.66147366088088,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2271,"RF_CO2",3.65678785585957,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2272,"RF_CO2",3.65209408194701,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2273,"RF_CO2",3.64739215772314,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2274,"RF_CO2",3.64268198991828,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2275,"RF_CO2",3.63796348826224,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2276,"RF_CO2",3.6332366442578,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2277,"RF_CO2",3.62850146998746,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2278,"RF_CO2",3.62375804730956,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2279,"RF_CO2",3.61900648725722,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2280,"RF_CO2",3.6142469606897,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2281,"RF_CO2",3.60947967150614,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2282,"RF_CO2",3.60470487552037,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2283,"RF_CO2",3.59992286270281,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2284,"RF_CO2",3.5951339466466,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2285,"RF_CO2",3.59033846839852,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2286,"RF_CO2",3.58553680616752,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2287,"RF_CO2",3.58073038921357,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2288,"RF_CO2",3.57592084783297,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2289,"RF_CO2",3.57110972291011,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2290,"RF_CO2",3.5662984707033,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2291,"RF_CO2",3.56148847559534,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2292,"RF_CO2",3.55668104747831,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2293,"RF_CO2",3.55187743004749,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2294,"RF_CO2",3.5470788000817,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2295,"RF_CO2",3.54228627353432,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2296,"RF_CO2",3.5375009059874,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2297,"RF_CO2",3.53272369728556,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2298,"RF_CO2",3.52795559264375,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2299,"RF_CO2",3.52319748629689,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2300,"RF_CO2",3.51845022294203,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1745,"heatflux",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1746,"heatflux",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1747,"heatflux",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1748,"heatflux",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1749,"heatflux",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1750,"heatflux",0,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1751,"heatflux",0.00514665141784204,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1752,"heatflux",0.0137547007630977,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1753,"heatflux",0.0163666452019724,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1754,"heatflux",0.0119346803845174,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1755,"heatflux",-0.00222254398616038,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1756,"heatflux",-0.147137491661951,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1757,"heatflux",-0.195073351703275,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1758,"heatflux",-0.0551064375934115,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1759,"heatflux",0.0170842435600187,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1760,"heatflux",0.0352925951725577,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1761,"heatflux",0.039367282500685,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1762,"heatflux",-0.508896810047758,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1763,"heatflux",-0.848109883322465,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1764,"heatflux",-0.366415409571769,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1765,"heatflux",-0.00503042862549324,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1766,"heatflux",-0.0969259130088984,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1767,"heatflux",-0.29971047303202,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1768,"heatflux",-0.167422929310227,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1769,"heatflux",0.0545021620655689,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1770,"heatflux",0.0515488341905205,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1771,"heatflux",0.018812656371652,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1772,"heatflux",0.0869050475356814,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1773,"heatflux",0.127658140804892,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1774,"heatflux",0.123108289124208,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1775,"heatflux",0.11268256214343,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1776,"heatflux",0.109253089010567,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1777,"heatflux",0.0994002498344456,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1778,"heatflux",0.0868284478419573,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1779,"heatflux",0.0807115807413108,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1780,"heatflux",0.0731153002145466,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1781,"heatflux",0.0671456196187843,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1782,"heatflux",0.0669502623661018,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1783,"heatflux",-1.02628914192859,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1784,"heatflux",-3.174849328043,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1785,"heatflux",-2.76720257787664,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1786,"heatflux",-0.744322025692716,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1787,"heatflux",0.0585317777098897,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1788,"heatflux",0.369628897276141,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1789,"heatflux",0.455147429735864,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1790,"heatflux",0.442206444392546,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1791,"heatflux",0.402141548276042,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1792,"heatflux",0.362118187957163,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1793,"heatflux",0.321483970697095,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1794,"heatflux",0.277562214773527,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1795,"heatflux",0.245154178555541,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1796,"heatflux",0.148837314165784,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1797,"heatflux",-0.00419448536671897,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1798,"heatflux",-0.00833386993966597,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1799,"heatflux",0.10229637801145,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1800,"heatflux",0.162171866626751,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1801,"heatflux",0.17540507921558,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1802,"heatflux",0.172708878319804,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1803,"heatflux",0.165351300524284,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1804,"heatflux",0.161306448432598,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1805,"heatflux",0.149323513370492,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1806,"heatflux",0.138230814264446,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1807,"heatflux",0.131997527309424,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1808,"heatflux",0.118385484968993,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1809,"heatflux",-2.05141408307283,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1810,"heatflux",-3.40756315538666,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1811,"heatflux",-1.5435176697043,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1812,"heatflux",-0.0776261520076362,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1813,"heatflux",0.404303699918748,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1814,"heatflux",0.50130094681194,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1815,"heatflux",-1.65675373056566,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1816,"heatflux",-4.27797679992734,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1817,"heatflux",-2.8798605509692,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1818,"heatflux",-0.295122731711921,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1819,"heatflux",0.624461845778009,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1820,"heatflux",0.841692702374143,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1821,"heatflux",0.765202180918135,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1822,"heatflux",0.628285265889252,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1823,"heatflux",0.344667567585531,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1824,"heatflux",0.238816354030995,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1825,"heatflux",0.428948956072879,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1826,"heatflux",0.498154080282234,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1827,"heatflux",0.492420990856869,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1828,"heatflux",0.453409368595445,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1829,"heatflux",0.416253767082061,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1830,"heatflux",0.386968697998013,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1831,"heatflux",-1.11565222173606,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1832,"heatflux",-2.04216806589799,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1833,"heatflux",-0.781786982822557,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1834,"heatflux",0.177851808876793,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1835,"heatflux",-0.596893191193351,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1836,"heatflux",-1.19870632456488,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1837,"heatflux",-0.281028899604134,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1838,"heatflux",0.396958263045097,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1839,"heatflux",0.594031025786367,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1840,"heatflux",0.612423639816333,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1841,"heatflux",0.575140105709566,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1842,"heatflux",0.529418050742305,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1843,"heatflux",0.490937153031123,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1844,"heatflux",0.458572671171205,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1845,"heatflux",0.422126931265086,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1846,"heatflux",0.282129136807426,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1847,"heatflux",0.191292539982254,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1848,"heatflux",0.259745867544484,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1849,"heatflux",0.315416623545909,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1850,"heatflux",0.327979760909238,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1851,"heatflux",0.32697078121912,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1852,"heatflux",0.321468463546061,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1853,"heatflux",0.207568528772202,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1854,"heatflux",0.0765448899265851,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1855,"heatflux",0.13871976537789,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1856,"heatflux",0.228486840626375,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1857,"heatflux",0.125854619890582,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1858,"heatflux",0.103270311414158,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1859,"heatflux",0.225023385843772,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1860,"heatflux",0.272544799328578,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1861,"heatflux",0.240328713619916,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1862,"heatflux",-0.252195198412823,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1863,"heatflux",-0.44643058099016,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1864,"heatflux",0.00148929615957898,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1865,"heatflux",0.252037774530723,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1866,"heatflux",0.321346348648331,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1867,"heatflux",0.327033780828909,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1868,"heatflux",0.306920248091553,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1869,"heatflux",0.291773359256661,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1870,"heatflux",0.278634902375428,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1871,"heatflux",0.268498269511495,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1872,"heatflux",0.264575601478828,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1873,"heatflux",0.125869052776584,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1874,"heatflux",0.067434374739385,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1875,"heatflux",0.159714236594124,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1876,"heatflux",0.180614736564495,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1877,"heatflux",0.206992233320341,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1878,"heatflux",0.235973826110961,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1879,"heatflux",0.236603081071905,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1880,"heatflux",0.203907740294939,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1881,"heatflux",0.174165548739468,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1882,"heatflux",0.195130866796625,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1883,"heatflux",-0.0921423050475976,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1884,"heatflux",-1.29017192860795,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1885,"heatflux",-1.37772494233098,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1886,"heatflux",-0.2152825256924,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1887,"heatflux",0.188703577848962,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1888,"heatflux",0.296168754464974,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1889,"heatflux",0.390704054544128,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1890,"heatflux",0.314368822919348,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1891,"heatflux",0.110117097087771,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1892,"heatflux",0.112288815250603,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1893,"heatflux",0.283467536152972,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1894,"heatflux",0.329392588029013,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1895,"heatflux",0.307109810618453,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1896,"heatflux",0.292018252316224,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1897,"heatflux",0.273693106146798,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1898,"heatflux",0.254710073633599,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1899,"heatflux",0.231997040475035,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1900,"heatflux",0.21147151876005,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1901,"heatflux",0.20500422061264,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1902,"heatflux",0.139190885163507,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1903,"heatflux",-0.413777084966035,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1904,"heatflux",-0.596534878001813,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1905,"heatflux",-0.0765015520211296,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1906,"heatflux",0.200434895523556,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1907,"heatflux",0.164203547554329,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1908,"heatflux",0.118696403941045,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1909,"heatflux",0.198683753320155,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1910,"heatflux",0.21774412995475,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1911,"heatflux",0.206367653288589,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1912,"heatflux",-0.0646334436221133,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1913,"heatflux",-0.369605326708715,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1914,"heatflux",-0.169508705490147,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1915,"heatflux",0.160647234032,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1916,"heatflux",0.255153291142813,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1917,"heatflux",0.237498010503917,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1918,"heatflux",0.220007745519252,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1919,"heatflux",0.242343947410497,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1920,"heatflux",0.245541355041403,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1921,"heatflux",0.255690485686606,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1922,"heatflux",0.215827418833894,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1923,"heatflux",0.130509040643464,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1924,"heatflux",0.167606208248552,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1925,"heatflux",0.216871638114391,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1926,"heatflux",0.214859482744155,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1927,"heatflux",0.199429450452346,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1928,"heatflux",0.171438746198204,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1929,"heatflux",0.0497719761239951,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1930,"heatflux",0.0685017199263458,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1931,"heatflux",0.235333409972279,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1932,"heatflux",0.208376957214808,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1933,"heatflux",0.198378719532215,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1934,"heatflux",0.253695186787649,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1935,"heatflux",0.23684627775415,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1936,"heatflux",0.202831231002863,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1937,"heatflux",0.171599666120451,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1938,"heatflux",0.184844534292192,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1939,"heatflux",0.190830899150456,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1940,"heatflux",0.157137163380823,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1941,"heatflux",0.138878259856121,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1942,"heatflux",0.129725729582388,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1943,"heatflux",0.129382666143772,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1944,"heatflux",0.145811395584417,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1945,"heatflux",0.197251018399648,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1946,"heatflux",0.245022641452045,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1947,"heatflux",0.226085163488113,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1948,"heatflux",0.190476783907207,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1949,"heatflux",0.190931087699546,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1950,"heatflux",0.170617502179169,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1951,"heatflux",0.150440793914073,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1952,"heatflux",0.159915993668026,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1953,"heatflux",0.159697711339505,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1954,"heatflux",0.168328767217424,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1955,"heatflux",0.161013969410594,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1956,"heatflux",0.126429265456468,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1957,"heatflux",0.0998815492002007,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1958,"heatflux",0.116532626686067,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1959,"heatflux",0.139292406385389,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1960,"heatflux",0.13959989014957,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1961,"heatflux",0.0878671703155158,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1962,"heatflux",-0.0418106616313011,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1963,"heatflux",-0.566170033152435,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1964,"heatflux",-0.894422589761238,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1965,"heatflux",-0.539022433532222,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1966,"heatflux",-0.0243663388241221,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1967,"heatflux",0.144576402399226,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1968,"heatflux",0.0937592721670597,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1969,"heatflux",0.200559565084765,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1970,"heatflux",0.240443166871997,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1971,"heatflux",0.174653505093995,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1972,"heatflux",0.166499001011369,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1973,"heatflux",0.285263614614707,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1974,"heatflux",0.352242288397157,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1975,"heatflux",0.1854252727974,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1976,"heatflux",0.174002809215744,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1977,"heatflux",0.387855534908984,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1978,"heatflux",0.484051927696803,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1979,"heatflux",0.510809758628223,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1980,"heatflux",0.498488252740127,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1981,"heatflux",0.496659909607426,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1982,"heatflux",0.365835542112799,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1983,"heatflux",-0.0375714116169253,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1984,"heatflux",0.00728885462887291,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1985,"heatflux",0.462862233457173,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1986,"heatflux",0.634803385168314,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1987,"heatflux",0.684129279712826,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1988,"heatflux",0.751065671836285,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1989,"heatflux",0.816834912739472,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1990,"heatflux",0.840397037785148,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1991,"heatflux",0.460043111874969,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1992,"heatflux",-0.5887796555404,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1993,"heatflux",-0.654822540702364,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1994,"heatflux",0.407726824314096,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1995,"heatflux",1.00751156626898,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1996,"heatflux",1.17793432359432,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1997,"heatflux",1.13646886292431,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1998,"heatflux",1.07088092107641,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1999,"heatflux",1.14535181033351,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2000,"heatflux",1.21298599415038,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2001,"heatflux",1.19737279951404,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2002,"heatflux",1.13017891152275,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2003,"heatflux",1.04941352144923,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2004,"heatflux",1.03092070039996,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2005,"heatflux",1.0172066999785,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2006,"heatflux",0.969198628585205,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2007,"heatflux",0.979921687157769,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2008,"heatflux",1.05144909905758,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2009,"heatflux",1.09824007107564,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2010,"heatflux",1.12295835491078,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2011,"heatflux",1.13920470335379,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2012,"heatflux",1.14550745130336,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2013,"heatflux",1.19369790527262,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2014,"heatflux",1.21039218922498,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2015,"heatflux",1.26219857709865,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2016,"heatflux",1.34855198153771,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2017,"heatflux",1.36873198554978,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2018,"heatflux",1.38784012204136,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2019,"heatflux",1.40674799007419,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2020,"heatflux",1.42564061656611,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2021,"heatflux",1.42642410051553,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2022,"heatflux",1.41015478810825,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2023,"heatflux",1.39608235476369,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2024,"heatflux",1.38414264028448,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2025,"heatflux",1.38251319469326,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2026,"heatflux",1.39021541876242,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2027,"heatflux",1.39795811009132,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2028,"heatflux",1.40556307382944,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2029,"heatflux",1.4130263790832,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2030,"heatflux",1.4203752859686,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2031,"heatflux",1.43318704067995,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2032,"heatflux",1.45064764096104,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2033,"heatflux",1.46654982542437,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2034,"heatflux",1.48107418889327,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2035,"heatflux",1.49446295088229,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2036,"heatflux",1.50689602150434,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2037,"heatflux",1.518513184456,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2038,"heatflux",1.52945091247602,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2039,"heatflux",1.53982574953162,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2040,"heatflux",1.54971050901147,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2041,"heatflux",1.56043945944003,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2042,"heatflux",1.5717867962369,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2043,"heatflux",1.58228559613342,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2044,"heatflux",1.59201676649862,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2045,"heatflux",1.60106947641751,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2046,"heatflux",1.60952173352021,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2047,"heatflux",1.61743905135401,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2048,"heatflux",1.62487623162835,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2049,"heatflux",1.63188105096157,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2050,"heatflux",1.63849389456038,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2051,"heatflux",1.64200755187557,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2052,"heatflux",1.64244327322378,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2053,"heatflux",1.64254280904302,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2054,"heatflux",1.64236556341349,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2055,"heatflux",1.64191437765,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2056,"heatflux",1.64118418926648,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2057,"heatflux",1.64017224345096,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2058,"heatflux",1.6388761607212,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2059,"heatflux",1.63729461849136,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2060,"heatflux",1.63543049582327,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2061,"heatflux",1.63182800264174,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2062,"heatflux",1.62658586965637,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2063,"heatflux",1.62124681783453,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2064,"heatflux",1.61582006679721,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2065,"heatflux",1.610293865142,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2066,"heatflux",1.60465208382852,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2067,"heatflux",1.59897311317178,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2068,"heatflux",1.59322012082799,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2069,"heatflux",1.5872630191848,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2070,"heatflux",1.58110337857501,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2071,"heatflux",1.57483717997632,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2072,"heatflux",1.56813099410404,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2073,"heatflux",1.56060686645181,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2074,"heatflux",1.55233849423596,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2075,"heatflux",1.54338875619524,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2076,"heatflux",1.53381241303944,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2077,"heatflux",1.52365517245989,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2078,"heatflux",1.51295342816791,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2079,"heatflux",1.50173838589775,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2080,"heatflux",1.49003659215715,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2081,"heatflux",1.47856834273692,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2082,"heatflux",1.46725672966437,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2083,"heatflux",1.4553403242755,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2084,"heatflux",1.44284057021109,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2085,"heatflux",1.42978355547129,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2086,"heatflux",1.41619808543284,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2087,"heatflux",1.40223522881057,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2088,"heatflux",1.38799888774373,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2089,"heatflux",1.37355482514996,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2090,"heatflux",1.35895327525583,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2091,"heatflux",1.34181862003962,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2092,"heatflux",1.32261185182111,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2093,"heatflux",1.30404631022379,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2094,"heatflux",1.2860489966597,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2095,"heatflux",1.26852340814368,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2096,"heatflux",1.25137937969719,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2097,"heatflux",1.23454265208516,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2098,"heatflux",1.2179532439228,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2099,"heatflux",1.20156229546412,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2100,"heatflux",1.18532982859742,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2101,"heatflux",1.16844530316724,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2102,"heatflux",1.15139696606838,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2103,"heatflux",1.13539169214266,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2104,"heatflux",1.12033044349172,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2105,"heatflux",1.1061227083591,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2106,"heatflux",1.09269732917028,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2107,"heatflux",1.080165595287,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2108,"heatflux",1.06839044943098,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2109,"heatflux",1.05722507564899,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2110,"heatflux",1.04674599391376,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2111,"heatflux",1.0369043566105,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2112,"heatflux",1.0276531798161,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2113,"heatflux",1.01894078424611,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2114,"heatflux",1.01072858273511,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2115,"heatflux",1.00298173316255,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2116,"heatflux",0.995676112507805,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2117,"heatflux",0.9887795940758,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2118,"heatflux",0.98226074288056,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2119,"heatflux",0.97609039046753,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2120,"heatflux",0.970245130621725,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2121,"heatflux",0.964702881317267,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2122,"heatflux",0.959443821170629,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2123,"heatflux",0.954449232346993,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2124,"heatflux",0.949702254415268,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2125,"heatflux",0.945187762765793,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2126,"heatflux",0.94089321864144,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2127,"heatflux",0.936805070544763,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2128,"heatflux",0.932910161519284,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2129,"heatflux",0.929196578457485,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2130,"heatflux",0.92565362895956,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2131,"heatflux",0.922271616047909,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2132,"heatflux",0.919043472677918,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2133,"heatflux",0.915960755983377,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2134,"heatflux",0.913012392677749,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2135,"heatflux",0.910190140074311,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2136,"heatflux",0.907486398930187,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2137,"heatflux",0.904892975064838,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2138,"heatflux",0.902403117449195,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2139,"heatflux",0.900011053171966,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2140,"heatflux",0.897711616410029,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2141,"heatflux",0.895499300900682,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2142,"heatflux",0.893368877539973,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2143,"heatflux",0.891316088179387,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2144,"heatflux",0.889336890515889,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2145,"heatflux",0.887427369021671,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2146,"heatflux",0.885583650112227,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2147,"heatflux",0.883801693846941,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2148,"heatflux",0.882076853772329,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2149,"heatflux",0.8804044244359,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2150,"heatflux",0.878780963741342,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2151,"heatflux",0.877220718944799,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2152,"heatflux",0.875657062081808,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2153,"heatflux",0.874014664768261,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2154,"heatflux",0.872302722066184,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2155,"heatflux",0.870528967005603,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2156,"heatflux",0.868700172181308,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2157,"heatflux",0.866821476037614,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2158,"heatflux",0.864897454273226,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2159,"heatflux",0.862932320561041,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2160,"heatflux",0.860929852911379,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2161,"heatflux",0.858892515706479,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2162,"heatflux",0.856822110933733,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2163,"heatflux",0.85472031169333,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2164,"heatflux",0.85258960492808,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2165,"heatflux",0.8504340749096,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2166,"heatflux",0.848265881146926,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2167,"heatflux",0.846096346086129,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2168,"heatflux",0.843924419999911,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2169,"heatflux",0.841741769469752,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2170,"heatflux",0.839542870590206,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2171,"heatflux",0.8373262488544,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2172,"heatflux",0.835088807709942,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2173,"heatflux",0.832828480557389,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2174,"heatflux",0.830545469344256,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2175,"heatflux",0.828239786881744,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2176,"heatflux",0.825909224445392,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2177,"heatflux",0.823551851705544,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2178,"heatflux",0.821170068123121,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2179,"heatflux",0.818764828287767,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2180,"heatflux",0.816332762699679,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2181,"heatflux",0.813871182585548,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2182,"heatflux",0.811378542020477,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2183,"heatflux",0.80885441002041,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2184,"heatflux",0.80629863364973,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2185,"heatflux",0.803713759322438,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2186,"heatflux",0.801108495760116,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2187,"heatflux",0.798485502711604,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2188,"heatflux",0.795838277863417,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2189,"heatflux",0.793162048109326,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2190,"heatflux",0.790453979671547,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2191,"heatflux",0.787711492812755,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2192,"heatflux",0.784932236633381,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2193,"heatflux",0.782114818650872,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2194,"heatflux",0.779265879701602,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2195,"heatflux",0.776407629963322,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2196,"heatflux",0.77354989885263,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2197,"heatflux",0.770678676483079,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2198,"heatflux",0.767779559000212,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2199,"heatflux",0.764843643054409,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2200,"heatflux",0.761867250344398,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2201,"heatflux",0.758849219366359,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2202,"heatflux",0.755787219435043,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2203,"heatflux",0.752679057270773,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2204,"heatflux",0.749524217969775,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2205,"heatflux",0.746323815882795,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2206,"heatflux",0.743080006535087,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2207,"heatflux",0.739794364932816,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2208,"heatflux",0.736468367531272,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2209,"heatflux",0.733104103599894,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2210,"heatflux",0.729702773905665,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2211,"heatflux",0.726264178732138,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2212,"heatflux",0.722788022888924,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2213,"heatflux",0.719274232142797,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2214,"heatflux",0.715722915414787,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2215,"heatflux",0.712134426723189,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2216,"heatflux",0.708508427748178,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2217,"heatflux",0.704844961925012,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2218,"heatflux",0.70114347151989,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2219,"heatflux",0.697402570382113,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2220,"heatflux",0.693621769085479,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2221,"heatflux",0.689800821700669,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2222,"heatflux",0.68593963772376,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2223,"heatflux",0.682038217554967,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2224,"heatflux",0.678096972079844,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2225,"heatflux",0.674116793849295,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2226,"heatflux",0.670098755298579,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2227,"heatflux",0.666044009602022,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2228,"heatflux",0.661953579316397,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2229,"heatflux",0.657828280141571,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2230,"heatflux",0.653668843834466,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2231,"heatflux",0.649475946228183,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2232,"heatflux",0.645250225039259,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2233,"heatflux",0.640992287100935,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2234,"heatflux",0.636702609734013,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2235,"heatflux",0.632381522518942,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2236,"heatflux",0.628029309900117,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2237,"heatflux",0.623646239352376,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2238,"heatflux",0.619232576709905,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2239,"heatflux",0.614788592781581,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2240,"heatflux",0.610314567513347,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2241,"heatflux",0.605810790359105,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2242,"heatflux",0.601277560170045,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2243,"heatflux",0.596715183981723,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2244,"heatflux",0.592123952033907,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2245,"heatflux",0.587504133197179,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2246,"heatflux",0.582855998879566,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2247,"heatflux",0.57817982868773,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2248,"heatflux",0.573475912938957,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2249,"heatflux",0.568744552951384,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2250,"heatflux",0.563986060708069,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2251,"heatflux",0.558315969888615,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2252,"heatflux",0.55205420055253,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2253,"heatflux",0.546349171590336,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2254,"heatflux",0.541127045865455,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2255,"heatflux",0.5363105492781,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2256,"heatflux",0.5318327186226,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2257,"heatflux",0.527638319496031,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2258,"heatflux",0.523681867696186,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2259,"heatflux",0.519926182110596,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2260,"heatflux",0.516340515679031,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2261,"heatflux",0.512899518331758,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2262,"heatflux",0.509582027303733,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2263,"heatflux",0.506370430561769,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2264,"heatflux",0.503249930911316,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2265,"heatflux",0.500208159853448,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2266,"heatflux",0.497234663142119,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2267,"heatflux",0.494320641253825,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2268,"heatflux",0.491458622483382,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2269,"heatflux",0.488642292620982,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2270,"heatflux",0.485866274881657,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2271,"heatflux",0.483126013421176,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2272,"heatflux",0.480417626556872,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2273,"heatflux",0.477737825418811,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2274,"heatflux",0.475083809240653,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2275,"heatflux",0.472453212353323,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2276,"heatflux",0.469844040806868,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2277,"heatflux",0.467254631634718,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2278,"heatflux",0.464683602035342,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2279,"heatflux",0.462129817194212,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2280,"heatflux",0.459592352633938,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2281,"heatflux",0.457070469477622,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2282,"heatflux",0.454563586750266,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2283,"heatflux",0.452071262468388,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2284,"heatflux",0.449593159900227,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2285,"heatflux",0.447129030420481,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2286,"heatflux",0.444678710944505,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2287,"heatflux",0.442242735830268,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2288,"heatflux",0.439822378158705,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2289,"heatflux",0.437418901819569,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2290,"heatflux",0.435033383019902,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2291,"heatflux",0.432666738178543,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2292,"heatflux",0.43031974844252,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2293,"heatflux",0.427993078442098,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2294,"heatflux",0.425687292932703,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2295,"heatflux",0.423402869419863,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2296,"heatflux",0.421140209353012,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2297,"heatflux",0.418899646810902,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2298,"heatflux",0.416681456313719,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2299,"heatflux",0.41448585907449,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",2300,"heatflux",0.412313028693875,"W/m2",3.0.0,"9aebf67" +"hector_ssp245.ini",1745,"ocean_c",37732.0610230425,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1746,"ocean_c",37732.0634058951,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1747,"ocean_c",37732.0701237393,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1748,"ocean_c",37732.0788765126,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1749,"ocean_c",37732.0889404493,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1750,"ocean_c",37732.0998813813,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1751,"ocean_c",37732.1114850164,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1752,"ocean_c",37732.1232201695,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1753,"ocean_c",37732.1346481735,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1754,"ocean_c",37732.1461828948,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1755,"ocean_c",37732.1586167134,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1756,"ocean_c",37732.1730878309,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1757,"ocean_c",37732.2017385227,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1758,"ocean_c",37732.2393280741,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1759,"ocean_c",37732.2671008223,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1760,"ocean_c",37732.2850117508,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1761,"ocean_c",37732.2982644628,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1762,"ocean_c",37732.3102115793,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1763,"ocean_c",37732.3720550128,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1764,"ocean_c",37732.4799323754,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1765,"ocean_c",37732.5579132598,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1766,"ocean_c",37732.5917168433,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1767,"ocean_c",37732.6187160621,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1768,"ocean_c",37732.6620950441,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1769,"ocean_c",37732.6994898799,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1770,"ocean_c",37732.7155780147,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1771,"ocean_c",37732.7259102858,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1772,"ocean_c",37732.7385871367,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1773,"ocean_c",37732.7474039471,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1774,"ocean_c",37732.7527547499,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1775,"ocean_c",37732.75884694,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1776,"ocean_c",37732.7675561595,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1777,"ocean_c",37732.7787748822,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1778,"ocean_c",37732.7928908473,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1779,"ocean_c",37732.8101103393,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1780,"ocean_c",37732.8297833786,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1781,"ocean_c",37732.8517272558,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1782,"ocean_c",37732.8756603103,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1783,"ocean_c",37732.9009265878,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1784,"ocean_c",37733.0261924673,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1785,"ocean_c",37733.3756495262,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1786,"ocean_c",37733.7573239543,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1787,"ocean_c",37733.9545227058,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1788,"ocean_c",37734.0116197892,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1789,"ocean_c",37733.9926793332,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1790,"ocean_c",37733.9440413341,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1791,"ocean_c",37733.8924979205,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1792,"ocean_c",37733.8500485028,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1793,"ocean_c",37733.8202625245,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1794,"ocean_c",37733.8035446911,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1795,"ocean_c",37733.7994264269,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1796,"ocean_c",37733.8058730941,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1797,"ocean_c",37733.8274250726,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1798,"ocean_c",37733.8701356308,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1799,"ocean_c",37733.9215159452,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1800,"ocean_c",37733.9665104477,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1801,"ocean_c",37734.0049583185,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1802,"ocean_c",37734.0413072955,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1803,"ocean_c",37734.0787705883,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1804,"ocean_c",37734.1189410545,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1805,"ocean_c",37734.1620169275,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1806,"ocean_c",37734.2083980634,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1807,"ocean_c",37734.2587404127,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1808,"ocean_c",37734.3116518587,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1809,"ocean_c",37734.3677619658,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1810,"ocean_c",37734.6229503595,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1811,"ocean_c",37735.047520529,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1812,"ocean_c",37735.366019887,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1813,"ocean_c",37735.5193687955,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1814,"ocean_c",37735.5682908102,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1815,"ocean_c",37735.5728610654,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1816,"ocean_c",37735.750988383,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1817,"ocean_c",37736.221271915,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1818,"ocean_c",37736.6751778768,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1819,"ocean_c",37736.8937176375,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1820,"ocean_c",37736.9441778651,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1821,"ocean_c",37736.9175999085,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1822,"ocean_c",37736.8771098874,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1823,"ocean_c",37736.8529981722,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1824,"ocean_c",37736.8687517414,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1825,"ocean_c",37736.9167597049,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1826,"ocean_c",37736.9669507828,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1827,"ocean_c",37737.018035164,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1828,"ocean_c",37737.075597834,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1829,"ocean_c",37737.1442816574,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1830,"ocean_c",37737.2252910451,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1831,"ocean_c",37737.3182325257,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1832,"ocean_c",37737.5487340599,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1833,"ocean_c",37737.9119371104,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1834,"ocean_c",37738.2126585985,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1835,"ocean_c",37738.4055493355,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1836,"ocean_c",37738.6259520353,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1837,"ocean_c",37738.9111652635,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1838,"ocean_c",37739.1419215737,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1839,"ocean_c",37739.2963990355,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1840,"ocean_c",37739.4104983443,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1841,"ocean_c",37739.5147437649,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1842,"ocean_c",37739.6261550698,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1843,"ocean_c",37739.751856878,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1844,"ocean_c",37739.8934731824,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1845,"ocean_c",37740.0505443971,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1846,"ocean_c",37740.2228168032,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1847,"ocean_c",37740.4186016641,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1848,"ocean_c",37740.6362303971,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1849,"ocean_c",37740.8605476431,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1850,"ocean_c",37741.0869552894,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1851,"ocean_c",37741.3177070339,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1852,"ocean_c",37741.5543814793,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1853,"ocean_c",37741.8021070235,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1854,"ocean_c",37742.0678920574,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1855,"ocean_c",37742.3549131258,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1856,"ocean_c",37742.6454784467,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1857,"ocean_c",37742.931215825,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1858,"ocean_c",37743.2279791437,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1859,"ocean_c",37743.5330685947,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1860,"ocean_c",37743.8321218211,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1861,"ocean_c",37744.1281413746,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1862,"ocean_c",37744.4300005152,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1863,"ocean_c",37744.7818279039,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1864,"ocean_c",37745.1676985674,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1865,"ocean_c",37745.5222834441,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1866,"ocean_c",37745.8443581822,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1867,"ocean_c",37746.1515462058,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1868,"ocean_c",37746.4564399505,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1869,"ocean_c",37746.7659991528,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1870,"ocean_c",37747.0820494618,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1871,"ocean_c",37747.4048477035,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1872,"ocean_c",37747.7347155439,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1873,"ocean_c",37748.0710032803,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1874,"ocean_c",37748.4322771646,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1875,"ocean_c",37748.8079545201,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1876,"ocean_c",37749.1822835998,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1877,"ocean_c",37749.5567006171,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1878,"ocean_c",37749.9309559507,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1879,"ocean_c",37750.3048840508,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1880,"ocean_c",37750.6814926027,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1881,"ocean_c",37751.0658001952,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1882,"ocean_c",37751.4599544023,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1883,"ocean_c",37751.85763687,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1884,"ocean_c",37752.2848826446,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1885,"ocean_c",37752.8362670791,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1886,"ocean_c",37753.4385880228,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1887,"ocean_c",37753.9401212139,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1888,"ocean_c",37754.3716339652,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1889,"ocean_c",37754.7737020146,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1890,"ocean_c",37755.1621688174,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1891,"ocean_c",37755.5598170351,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1892,"ocean_c",37755.9866663112,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1893,"ocean_c",37756.4281984843,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1894,"ocean_c",37756.8624183998,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1895,"ocean_c",37757.2949032209,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1896,"ocean_c",37757.7350001513,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1897,"ocean_c",37758.1845993227,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1898,"ocean_c",37758.6444073454,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1899,"ocean_c",37759.114849403,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1900,"ocean_c",37759.5969340248,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1901,"ocean_c",37760.0908376805,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1902,"ocean_c",37760.5966577536,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1903,"ocean_c",37761.1201771439,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1904,"ocean_c",37761.7104263945,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1905,"ocean_c",37762.3459078311,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1906,"ocean_c",37762.9439566348,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1907,"ocean_c",37763.516380042,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1908,"ocean_c",37764.0886297925,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1909,"ocean_c",37764.6730567332,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1910,"ocean_c",37765.2590207553,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1911,"ocean_c",37765.8511780844,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1912,"ocean_c",37766.4511262324,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1913,"ocean_c",37767.0827328032,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1914,"ocean_c",37767.7580761337,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1915,"ocean_c",37768.4280256745,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1916,"ocean_c",37769.0622161544,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1917,"ocean_c",37769.6797062024,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1918,"ocean_c",37770.3002090183,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1919,"ocean_c",37770.9283367376,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1920,"ocean_c",37771.5572149481,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1921,"ocean_c",37772.1901433606,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1922,"ocean_c",37772.8290457705,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1923,"ocean_c",37773.4760770776,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1924,"ocean_c",37774.1427240624,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1925,"ocean_c",37774.8197734429,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1926,"ocean_c",37775.4998080568,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1927,"ocean_c",37776.1848405801,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1928,"ocean_c",37776.880689223,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1929,"ocean_c",37777.591512227,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1930,"ocean_c",37778.3265021112,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1931,"ocean_c",37779.0744475767,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1932,"ocean_c",37779.8103964237,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1933,"ocean_c",37780.5394484011,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1934,"ocean_c",37781.2646427675,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1935,"ocean_c",37781.9891132472,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1936,"ocean_c",37782.7213570429,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1937,"ocean_c",37783.467855715,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1938,"ocean_c",37784.2311957717,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1939,"ocean_c",37785.0020071748,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1940,"ocean_c",37785.7781603113,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1941,"ocean_c",37786.5681271382,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1942,"ocean_c",37787.3709272049,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1943,"ocean_c",37788.1833467546,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1944,"ocean_c",37789.0045505058,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1945,"ocean_c",37789.8314956946,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1946,"ocean_c",37790.6515161144,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1947,"ocean_c",37791.4670602761,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1948,"ocean_c",37792.299700112,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1949,"ocean_c",37793.1549719559,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1950,"ocean_c",37794.0254736342,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1951,"ocean_c",37794.913896328,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1952,"ocean_c",37795.8334491357,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1953,"ocean_c",37796.7820978391,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1954,"ocean_c",37797.7510821511,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1955,"ocean_c",37798.7385745133,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1956,"ocean_c",37799.7512507222,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1957,"ocean_c",37800.7982573148,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1958,"ocean_c",37801.8788644551,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1959,"ocean_c",37802.9863961754,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1960,"ocean_c",37804.1171504844,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1961,"ocean_c",37805.2714940555,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1962,"ocean_c",37806.4555307265,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1963,"ocean_c",37807.678581325,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1964,"ocean_c",37808.9864196552,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1965,"ocean_c",37810.3717600357,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1966,"ocean_c",37811.7617965194,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1967,"ocean_c",37813.1203961357,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1968,"ocean_c",37814.4754017073,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1969,"ocean_c",37815.8598608272,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1970,"ocean_c",37817.2702535421,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1971,"ocean_c",37818.7165323866,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1972,"ocean_c",37820.2077540572,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1973,"ocean_c",37821.7354052506,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1974,"ocean_c",37823.2902107072,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1975,"ocean_c",37824.8696437196,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1976,"ocean_c",37826.4882022764,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1977,"ocean_c",37828.1437669721,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1978,"ocean_c",37829.8189241932,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1979,"ocean_c",37831.5182607004,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1980,"ocean_c",37833.2488745854,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1981,"ocean_c",37835.0086511914,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1982,"ocean_c",37836.7878455931,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1983,"ocean_c",37838.5976440853,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1984,"ocean_c",37840.4781683259,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1985,"ocean_c",37842.3967058351,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1986,"ocean_c",37844.2974238771,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1987,"ocean_c",37846.197882174,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1988,"ocean_c",37848.1198610321,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1989,"ocean_c",37850.0701720329,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1990,"ocean_c",37852.0499743459,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1991,"ocean_c",37854.0541580608,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1992,"ocean_c",37856.1292135902,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1993,"ocean_c",37858.364383393,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1994,"ocean_c",37860.6819315297,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1995,"ocean_c",37862.8868613442,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1996,"ocean_c",37865.0235197411,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1997,"ocean_c",37867.1507964981,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1998,"ocean_c",37869.3383296142,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1999,"ocean_c",37871.5867820878,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2000,"ocean_c",37873.8548925671,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2001,"ocean_c",37876.1450930228,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2002,"ocean_c",37878.464474106,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2003,"ocean_c",37880.8247381091,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2004,"ocean_c",37883.2390650832,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2005,"ocean_c",37885.7151191476,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2006,"ocean_c",37888.2588705472,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2007,"ocean_c",37890.8734867127,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2008,"ocean_c",37893.5514888613,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2009,"ocean_c",37896.266173158,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2010,"ocean_c",37899.0034176077,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2011,"ocean_c",37901.782706293,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2012,"ocean_c",37904.622596987,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2013,"ocean_c",37907.5237942238,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2014,"ocean_c",37910.4802425241,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2015,"ocean_c",37913.4951588527,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2016,"ocean_c",37916.5548300476,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2017,"ocean_c",37919.6745030382,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2018,"ocean_c",37922.7865588656,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2019,"ocean_c",37925.9529509896,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2020,"ocean_c",37929.169877465,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2021,"ocean_c",37932.4346924141,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2022,"ocean_c",37935.7477804672,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2023,"ocean_c",37939.110514062,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2024,"ocean_c",37942.522391013,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2025,"ocean_c",37945.9825436515,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2026,"ocean_c",37949.4891530164,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2027,"ocean_c",37953.0403646418,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2028,"ocean_c",37956.6355348351,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2029,"ocean_c",37960.2743790404,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2030,"ocean_c",37963.9567174562,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2031,"ocean_c",37967.6823940047,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2032,"ocean_c",37971.4487736483,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2033,"ocean_c",37975.2528131158,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2034,"ocean_c",37979.0937314644,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2035,"ocean_c",37982.9713847187,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2036,"ocean_c",37986.885535379,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2037,"ocean_c",37990.8358201594,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2038,"ocean_c",37994.822018371,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2039,"ocean_c",37998.8439460788,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2040,"ocean_c",38002.9012396835,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2041,"ocean_c",38006.9934335221,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2042,"ocean_c",38011.1185236053,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2043,"ocean_c",38015.2742667339,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2044,"ocean_c",38019.4595096009,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2045,"ocean_c",38023.6734144104,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2046,"ocean_c",38027.9152436774,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2047,"ocean_c",38032.1842896223,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2048,"ocean_c",38036.4798526452,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2049,"ocean_c",38040.8012526823,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2050,"ocean_c",38045.1478125368,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2051,"ocean_c",38049.518836885,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2052,"ocean_c",38053.9118499074,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2053,"ocean_c",38058.324204487,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2054,"ocean_c",38062.7543017752,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2055,"ocean_c",38067.2008455882,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2056,"ocean_c",38071.6626723185,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2057,"ocean_c",38076.1386957343,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2058,"ocean_c",38080.6278496013,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2059,"ocean_c",38085.1290775718,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2060,"ocean_c",38089.6413580165,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2061,"ocean_c",38094.1636764532,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2062,"ocean_c",38098.6937498987,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2063,"ocean_c",38103.2293663413,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2064,"ocean_c",38107.7692077465,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2065,"ocean_c",38112.312279448,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2066,"ocean_c",38116.8520614491,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2067,"ocean_c",38121.3985053461,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2068,"ocean_c",38125.9448019022,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2069,"ocean_c",38130.4927067304,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2070,"ocean_c",38135.0399826416,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2071,"ocean_c",38139.5853216058,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2072,"ocean_c",38144.1247878206,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2073,"ocean_c",38148.6544800327,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2074,"ocean_c",38153.1725485503,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2075,"ocean_c",38157.677596442,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2076,"ocean_c",38162.1683815296,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2077,"ocean_c",38166.6436984401,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2078,"ocean_c",38171.1023378368,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2079,"ocean_c",38175.5430945941,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2080,"ocean_c",38179.9647644877,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2081,"ocean_c",38184.366145041,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2082,"ocean_c",38188.744124047,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2083,"ocean_c",38193.0956134153,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2084,"ocean_c",38197.418886857,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2085,"ocean_c",38201.7124883751,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2086,"ocean_c",38205.9750906391,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2087,"ocean_c",38210.1622008871,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2088,"ocean_c",38214.3563993008,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2089,"ocean_c",38218.5147580495,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2090,"ocean_c",38222.6443584063,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2091,"ocean_c",38226.7409356126,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2092,"ocean_c",38230.8079244666,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2093,"ocean_c",38234.8480517785,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2094,"ocean_c",38238.8607197577,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2095,"ocean_c",38242.8454697297,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2096,"ocean_c",38246.8016430372,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2097,"ocean_c",38250.7286353307,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2098,"ocean_c",38254.625858282,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2099,"ocean_c",38258.4927422147,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2100,"ocean_c",38262.3287295234,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2101,"ocean_c",38266.1332717491,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2102,"ocean_c",38269.9119641849,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2103,"ocean_c",38273.6708926278,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2104,"ocean_c",38277.4105377846,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2105,"ocean_c",38281.1316300422,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2106,"ocean_c",38284.8346694987,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2107,"ocean_c",38288.4548292118,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2108,"ocean_c",38292.1170918146,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2109,"ocean_c",38295.7644795586,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2110,"ocean_c",38299.4022799796,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2111,"ocean_c",38303.0227971468,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2112,"ocean_c",38306.6322847615,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2113,"ocean_c",38310.2266198129,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2114,"ocean_c",38313.8097348521,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2115,"ocean_c",38317.3793931787,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2116,"ocean_c",38320.938172865,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2117,"ocean_c",38324.4848757092,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2118,"ocean_c",38328.0210755819,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2119,"ocean_c",38331.5461757825,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2120,"ocean_c",38335.0612450066,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2121,"ocean_c",38338.5660724228,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2122,"ocean_c",38342.0614060969,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2123,"ocean_c",38345.5472397794,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2124,"ocean_c",38349.0241272083,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2125,"ocean_c",38352.4921823828,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2126,"ocean_c",38355.9518621453,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2127,"ocean_c",38359.4033359652,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2128,"ocean_c",38362.8469565049,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2129,"ocean_c",38366.28292137,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2130,"ocean_c",38369.7115366201,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2131,"ocean_c",38373.1330179602,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2132,"ocean_c",38376.5476604392,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2133,"ocean_c",38379.9556877627,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2134,"ocean_c",38383.3573114761,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2135,"ocean_c",38386.7527399608,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2136,"ocean_c",38390.1421876558,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2137,"ocean_c",38393.5258365643,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2138,"ocean_c",38396.9038857041,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2139,"ocean_c",38400.2765209389,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2140,"ocean_c",38403.6439352495,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2141,"ocean_c",38407.0063018326,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2142,"ocean_c",38410.363792756,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2143,"ocean_c",38413.7165793507,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2144,"ocean_c",38417.0648287143,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2145,"ocean_c",38420.408701789,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2146,"ocean_c",38423.7483537491,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2147,"ocean_c",38427.0839300985,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2148,"ocean_c",38430.4155630734,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2149,"ocean_c",38433.7433742412,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2150,"ocean_c",38437.0674921161,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2151,"ocean_c",38440.3880457808,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2152,"ocean_c",38443.7042936647,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2153,"ocean_c",38447.0153242918,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2154,"ocean_c",38450.3213123155,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2155,"ocean_c",38453.6220204465,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2156,"ocean_c",38456.9175798833,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2157,"ocean_c",38460.2078313011,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2158,"ocean_c",38463.4928390486,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2159,"ocean_c",38466.7724965319,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2160,"ocean_c",38470.0468345046,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2161,"ocean_c",38473.3157672667,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2162,"ocean_c",38476.5792886869,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2163,"ocean_c",38479.8373276039,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2164,"ocean_c",38483.0898737002,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2165,"ocean_c",38486.3368984532,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2166,"ocean_c",38489.5784975881,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2167,"ocean_c",38492.814764799,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2168,"ocean_c",38496.0456693241,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2169,"ocean_c",38499.2711164469,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2170,"ocean_c",38502.4910101361,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2171,"ocean_c",38505.7053081835,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2172,"ocean_c",38508.9139169528,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2173,"ocean_c",38512.1167755248,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2174,"ocean_c",38515.313821155,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2175,"ocean_c",38518.5050048531,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2176,"ocean_c",38521.6902360252,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2177,"ocean_c",38524.8694364802,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2178,"ocean_c",38528.0425615628,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2179,"ocean_c",38531.2095632334,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2180,"ocean_c",38534.3703290067,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2181,"ocean_c",38537.524770598,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2182,"ocean_c",38540.672785047,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2183,"ocean_c",38543.8142945016,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2184,"ocean_c",38546.9492084412,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2185,"ocean_c",38550.0774751704,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2186,"ocean_c",38553.1991103701,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2187,"ocean_c",38556.3140814581,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2188,"ocean_c",38559.4222411772,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2189,"ocean_c",38562.5234819425,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2190,"ocean_c",38565.617678283,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2191,"ocean_c",38568.7047220364,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2192,"ocean_c",38571.7844851123,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2193,"ocean_c",38574.8568586356,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2194,"ocean_c",38577.9218075344,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2195,"ocean_c",38580.9794969154,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2196,"ocean_c",38584.0299802081,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2197,"ocean_c",38587.0730428638,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2198,"ocean_c",38590.1084977476,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2199,"ocean_c",38593.1361448534,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2200,"ocean_c",38596.1558562151,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2201,"ocean_c",38599.1674975064,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2202,"ocean_c",38602.1709350963,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2203,"ocean_c",38605.1660185384,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2204,"ocean_c",38608.1526245347,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2205,"ocean_c",38611.1306329874,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2206,"ocean_c",38614.09994746,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2207,"ocean_c",38617.0604577857,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2208,"ocean_c",38620.0120631661,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2209,"ocean_c",38622.9546667869,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2210,"ocean_c",38625.8881680974,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2211,"ocean_c",38628.812449228,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2212,"ocean_c",38631.7273946354,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2213,"ocean_c",38634.6328872308,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2214,"ocean_c",38637.5288125016,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2215,"ocean_c",38640.4150577807,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2216,"ocean_c",38643.2915025878,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2217,"ocean_c",38646.1580289989,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2218,"ocean_c",38649.0145149404,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2219,"ocean_c",38651.860820821,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2220,"ocean_c",38654.6968239532,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2221,"ocean_c",38657.5223923738,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2222,"ocean_c",38660.3374035598,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2223,"ocean_c",38663.141727936,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2224,"ocean_c",38665.9352459556,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2225,"ocean_c",38668.7178389897,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2226,"ocean_c",38671.4893948479,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2227,"ocean_c",38674.2498010499,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2228,"ocean_c",38676.9989476802,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2229,"ocean_c",38679.7367220015,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2230,"ocean_c",38682.4630135247,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2231,"ocean_c",38685.1777105302,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2232,"ocean_c",38687.8807032324,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2233,"ocean_c",38690.5718812695,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2234,"ocean_c",38693.2511346968,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2235,"ocean_c",38695.9183516781,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2236,"ocean_c",38698.5734212253,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2237,"ocean_c",38701.2162316959,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2238,"ocean_c",38703.8466723956,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2239,"ocean_c",38706.4646324538,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2240,"ocean_c",38709.0700018928,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2241,"ocean_c",38711.6626708315,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2242,"ocean_c",38714.2425302029,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2243,"ocean_c",38716.8094712022,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2244,"ocean_c",38719.3633855128,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2245,"ocean_c",38721.9041648155,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2246,"ocean_c",38724.431701439,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2247,"ocean_c",38726.9458880461,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2248,"ocean_c",38729.4466180109,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2249,"ocean_c",38731.9337851833,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2250,"ocean_c",38734.4072841366,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2251,"ocean_c",38736.8670100034,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2252,"ocean_c",38739.3138705936,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2253,"ocean_c",38741.74885006,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2254,"ocean_c",38744.1716286848,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2255,"ocean_c",38746.5823795083,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2256,"ocean_c",38748.9808690554,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2257,"ocean_c",38751.3672295661,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2258,"ocean_c",38753.7413190026,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2259,"ocean_c",38756.1032363884,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2260,"ocean_c",38758.4528957006,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2261,"ocean_c",38760.7903700885,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2262,"ocean_c",38763.1156090101,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2263,"ocean_c",38765.4286669936,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2264,"ocean_c",38767.7295167538,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2265,"ocean_c",38770.0182007168,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2266,"ocean_c",38772.2947073079,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2267,"ocean_c",38774.5590707352,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2268,"ocean_c",38776.8112897799,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2269,"ocean_c",38779.0513932811,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2270,"ocean_c",38781.2793869893,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2271,"ocean_c",38783.4952963525,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2272,"ocean_c",38785.6991319212,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2273,"ocean_c",38787.8909171968,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2274,"ocean_c",38790.0706661541,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2275,"ocean_c",38792.2384013479,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2276,"ocean_c",38794.3941395161,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2277,"ocean_c",38796.5379032609,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2278,"ocean_c",38798.6697117628,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2279,"ocean_c",38800.7895882869,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2280,"ocean_c",38802.8975542318,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2281,"ocean_c",38804.993633939,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2282,"ocean_c",38807.077850899,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2283,"ocean_c",38809.1502308229,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2284,"ocean_c",38811.2107990946,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2285,"ocean_c",38813.2595826531,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2286,"ocean_c",38815.2966086245,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2287,"ocean_c",38817.3219121155,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2288,"ocean_c",38819.3355379353,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2289,"ocean_c",38821.3375324969,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2290,"ocean_c",38823.3279439895,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2291,"ocean_c",38825.3068206929,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2292,"ocean_c",38827.2742120958,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2293,"ocean_c",38829.2301679415,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2294,"ocean_c",38831.1747389182,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2295,"ocean_c",38833.1079760491,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2296,"ocean_c",38835.0299311046,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2297,"ocean_c",38836.9406562103,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2298,"ocean_c",38838.8402040867,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2299,"ocean_c",38840.7286277949,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2300,"ocean_c",38842.6059808717,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1745,"HL_pH",0,"(undefined)",3.0.0,"9aebf67" +"hector_ssp245.ini",1746,"HL_pH",8.26790992088791,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1747,"HL_pH",8.26792373694032,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1748,"HL_pH",8.26788855653009,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1749,"HL_pH",8.26785713582794,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1750,"HL_pH",8.26782404220392,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1751,"HL_pH",8.26779161879913,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1752,"HL_pH",8.26775479716811,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1753,"HL_pH",8.26771447340852,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1754,"HL_pH",8.26767774453261,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1755,"HL_pH",8.26764848404894,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1756,"HL_pH",8.26763214526539,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1757,"HL_pH",8.26775772654152,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1758,"HL_pH",8.26782231451368,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1759,"HL_pH",8.26772781768483,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1760,"HL_pH",8.26762919716862,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1761,"HL_pH",8.26756365640549,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1762,"HL_pH",8.26751772202074,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1763,"HL_pH",8.26805631300103,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1764,"HL_pH",8.26852407721063,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1765,"HL_pH",8.26833104944135,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1766,"HL_pH",8.26800995026903,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1767,"HL_pH",8.26801677784595,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1768,"HL_pH",8.26819858078043,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1769,"HL_pH",8.26815160733925,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1770,"HL_pH",8.2679634501218,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1771,"HL_pH",8.2679079446126,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1772,"HL_pH",8.26789193347866,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1773,"HL_pH",8.26780859962161,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1774,"HL_pH",8.26772191114273,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1775,"HL_pH",8.26766468343607,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1776,"HL_pH",8.26761725892474,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1777,"HL_pH",8.26756731803125,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1778,"HL_pH",8.26752143162263,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1779,"HL_pH",8.26747821015602,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1780,"HL_pH",8.26742998373058,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1781,"HL_pH",8.26738291691513,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1782,"HL_pH",8.26733345032366,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1783,"HL_pH",8.26727952568993,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1784,"HL_pH",8.26836757835447,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1785,"HL_pH",8.27085382350091,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1786,"HL_pH",8.27100736527102,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1787,"HL_pH",8.27012899824304,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1788,"HL_pH",8.26944618061552,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1789,"HL_pH",8.26900824713417,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1790,"HL_pH",8.26874131778978,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1791,"HL_pH",8.26857597807899,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1792,"HL_pH",8.26845632148184,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1793,"HL_pH",8.26834985460346,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1794,"HL_pH",8.26824834348979,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1795,"HL_pH",8.26815210089903,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1796,"HL_pH",8.26805134544778,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1797,"HL_pH",8.26800087128159,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1798,"HL_pH",8.26802496949272,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1799,"HL_pH",8.26797903203775,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1800,"HL_pH",8.26782372161587,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1801,"HL_pH",8.26765832100448,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1802,"HL_pH",8.2675128054532,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1803,"HL_pH",8.26738059207591,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1804,"HL_pH",8.26725476384367,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1805,"HL_pH",8.26712892007895,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1806,"HL_pH",8.26702007068318,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1807,"HL_pH",8.26695785767722,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1808,"HL_pH",8.26683236427708,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1809,"HL_pH",8.26672673673978,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1810,"HL_pH",8.2688820030012,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1811,"HL_pH",8.26961038950428,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1812,"HL_pH",8.26964959748712,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1813,"HL_pH",8.26883559470379,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1814,"HL_pH",8.2681969950469,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1815,"HL_pH",8.26779298105315,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1816,"HL_pH",8.2690543624986,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1817,"HL_pH",8.27163429985434,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1818,"HL_pH",8.27222019637509,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1819,"HL_pH",8.27102711155348,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1820,"HL_pH",8.26998847554375,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1821,"HL_pH",8.26931180768812,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1822,"HL_pH",8.26891205837729,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1823,"HL_pH",8.26865425586505,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1824,"HL_pH",8.26856444540183,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1825,"HL_pH",8.26845099150585,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1826,"HL_pH",8.26812270412474,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1827,"HL_pH",8.26777091247087,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1828,"HL_pH",8.26744394421524,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1829,"HL_pH",8.2671432268308,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1830,"HL_pH",8.26685208479536,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1831,"HL_pH",8.26656093151295,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1832,"HL_pH",8.26732174154083,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1833,"HL_pH",8.268319874518,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1834,"HL_pH",8.26796886296361,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1835,"HL_pH",8.26717434055251,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1836,"HL_pH",8.26729452312028,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1837,"HL_pH",8.26774615311576,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1838,"HL_pH",8.26730579424357,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1839,"HL_pH",8.26658690767438,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1840,"HL_pH",8.26599283955344,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1841,"HL_pH",8.26552188049202,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1842,"HL_pH",8.26512166740967,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1843,"HL_pH",8.26475262063102,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1844,"HL_pH",8.26439191736328,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1845,"HL_pH",8.26403171201788,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1846,"HL_pH",8.26367555971667,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1847,"HL_pH",8.26339621401177,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1848,"HL_pH",8.26313121548563,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1849,"HL_pH",8.26276897227353,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1850,"HL_pH",8.26237074015851,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1851,"HL_pH",8.26197882078676,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1852,"HL_pH",8.26159438846609,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1853,"HL_pH",8.26132665106305,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1854,"HL_pH",8.26102858197003,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1855,"HL_pH",8.26078200267712,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1856,"HL_pH",8.26043102215454,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1857,"HL_pH",8.26002958240982,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1858,"HL_pH",8.2597542528895,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1859,"HL_pH",8.25947312782349,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1860,"HL_pH",8.25908542235229,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1861,"HL_pH",8.2587123825605,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1862,"HL_pH",8.25839594604861,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1863,"HL_pH",8.2584523127713,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1864,"HL_pH",8.25849542633174,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1865,"HL_pH",8.25807535599957,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1866,"HL_pH",8.25762329392331,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1867,"HL_pH",8.25725284701488,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1868,"HL_pH",8.25693763127958,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1869,"HL_pH",8.25665687466898,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1870,"HL_pH",8.25638754448348,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1871,"HL_pH",8.25612379652571,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1872,"HL_pH",8.25586479331511,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1873,"HL_pH",8.25563972290461,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1874,"HL_pH",8.25571482793718,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1875,"HL_pH",8.25545845625479,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1876,"HL_pH",8.2551303838142,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1877,"HL_pH",8.25482343775768,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1878,"HL_pH",8.25450616855473,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1879,"HL_pH",8.25419118891759,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1880,"HL_pH",8.253901407411,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1881,"HL_pH",8.25365779015206,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1882,"HL_pH",8.2534251426048,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1883,"HL_pH",8.25314906190931,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1884,"HL_pH",8.25316213877259,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1885,"HL_pH",8.25422591688409,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1886,"HL_pH",8.25406771380794,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1887,"HL_pH",8.25331237162476,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1888,"HL_pH",8.25275629985368,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1889,"HL_pH",8.25237430514685,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1890,"HL_pH",8.25200647103759,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1891,"HL_pH",8.25175636032962,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1892,"HL_pH",8.25164145949941,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1893,"HL_pH",8.25143431240241,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1894,"HL_pH",8.25106693955119,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1895,"HL_pH",8.25072834134908,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1896,"HL_pH",8.25043101907383,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1897,"HL_pH",8.25013098850923,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1898,"HL_pH",8.24983125786987,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1899,"HL_pH",8.24953076045428,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1900,"HL_pH",8.2492308698658,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1901,"HL_pH",8.24892354550757,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1902,"HL_pH",8.24860224101045,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1903,"HL_pH",8.2483024218969,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1904,"HL_pH",8.24838511539049,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1905,"HL_pH",8.24837305408124,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1906,"HL_pH",8.24787159772191,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1907,"HL_pH",8.24765562972464,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1908,"HL_pH",8.24711954705267,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1909,"HL_pH",8.24673982644158,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1910,"HL_pH",8.24622102002285,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1911,"HL_pH",8.24576913053326,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1912,"HL_pH",8.24533476680302,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1913,"HL_pH",8.24516378699697,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1914,"HL_pH",8.24512808832241,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1915,"HL_pH",8.24470469787416,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1916,"HL_pH",8.24404082436407,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1917,"HL_pH",8.2435498433834,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1918,"HL_pH",8.24319299397292,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1919,"HL_pH",8.24284453845322,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1920,"HL_pH",8.24246035114488,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1921,"HL_pH",8.24208455416245,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1922,"HL_pH",8.24178631085008,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1923,"HL_pH",8.24145260066149,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1924,"HL_pH",8.24123137197986,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1925,"HL_pH",8.2409120634817,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1926,"HL_pH",8.24050131123912,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1927,"HL_pH",8.24012326676359,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1928,"HL_pH",8.2397582090294,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1929,"HL_pH",8.2394511600122,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1930,"HL_pH",8.23916856351345,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1931,"HL_pH",8.23880054428626,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1932,"HL_pH",8.23822973407457,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1933,"HL_pH",8.23778671802072,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1934,"HL_pH",8.2373659116502,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1935,"HL_pH",8.237036626245,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1936,"HL_pH",8.23673237856292,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1937,"HL_pH",8.23643866024857,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1938,"HL_pH",8.23615240177919,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1939,"HL_pH",8.23577666599125,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1940,"HL_pH",8.23536826922528,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1941,"HL_pH",8.23505474643208,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1942,"HL_pH",8.23470881862632,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1943,"HL_pH",8.23431930476806,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1944,"HL_pH",8.23393241650347,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1945,"HL_pH",8.23352614242028,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1946,"HL_pH",8.2330611763092,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1947,"HL_pH",8.23256633984321,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1948,"HL_pH",8.23230114628887,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1949,"HL_pH",8.23195586763565,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1950,"HL_pH",8.2315191687813,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1951,"HL_pH",8.23105072197225,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1952,"HL_pH",8.23063837302933,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1953,"HL_pH",8.2301467254971,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1954,"HL_pH",8.22947550154595,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1955,"HL_pH",8.22880056322397,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1956,"HL_pH",8.22813435202342,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1957,"HL_pH",8.22748954014529,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1958,"HL_pH",8.22676205334554,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1959,"HL_pH",8.22591905485682,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1960,"HL_pH",8.22504067191872,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1961,"HL_pH",8.22412721661948,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1962,"HL_pH",8.22327098446187,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1963,"HL_pH",8.22247568199249,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1964,"HL_pH",8.2221202724841,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1965,"HL_pH",8.22165455901102,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1966,"HL_pH",8.22058230369919,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1967,"HL_pH",8.21917133540074,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1968,"HL_pH",8.21792387913587,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1969,"HL_pH",8.21681309251194,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1970,"HL_pH",8.21558474575338,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1971,"HL_pH",8.2143740780995,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1972,"HL_pH",8.21319287398655,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1973,"HL_pH",8.21186406633426,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1974,"HL_pH",8.21044939415242,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1975,"HL_pH",8.20904929667447,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1976,"HL_pH",8.20772151764904,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1977,"HL_pH",8.20636363194284,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1978,"HL_pH",8.20489383344109,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1979,"HL_pH",8.20333805252892,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1980,"HL_pH",8.20179734671203,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1981,"HL_pH",8.20025269210989,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1982,"HL_pH",8.19866537944161,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1983,"HL_pH",8.19729718716511,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1984,"HL_pH",8.19629603046652,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1985,"HL_pH",8.19501270211954,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1986,"HL_pH",8.19329946057345,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1987,"HL_pH",8.19166689993787,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1988,"HL_pH",8.19012664665546,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1989,"HL_pH",8.1885583387398,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1990,"HL_pH",8.18696570890254,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1991,"HL_pH",8.18532822213174,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1992,"HL_pH",8.18406277442424,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1993,"HL_pH",8.18367074297371,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1994,"HL_pH",8.18103402195872,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1995,"HL_pH",8.17869875160276,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1996,"HL_pH",8.17684385486841,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1997,"HL_pH",8.17458596916678,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1998,"HL_pH",8.17287885043784,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1999,"HL_pH",8.17106177724082,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2000,"HL_pH",8.16927124756423,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2001,"HL_pH",8.167512882742,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2002,"HL_pH",8.16577135370601,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2003,"HL_pH",8.16409083666606,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2004,"HL_pH",8.16237957031063,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2005,"HL_pH",8.1605751205873,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2006,"HL_pH",8.15861275995679,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2007,"HL_pH",8.15655380284342,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2008,"HL_pH",8.15436452810267,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2009,"HL_pH",8.15208302303201,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2010,"HL_pH",8.14986137614815,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2011,"HL_pH",8.14767097947595,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2012,"HL_pH",8.14536113423743,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2013,"HL_pH",8.14295048745081,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2014,"HL_pH",8.14045119761194,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2015,"HL_pH",8.13789028936246,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2016,"HL_pH",8.13526357796068,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2017,"HL_pH",8.13385634420158,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2018,"HL_pH",8.13003125174674,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2019,"HL_pH",8.12742879335842,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2020,"HL_pH",8.12481911908741,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2021,"HL_pH",8.12219285905427,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2022,"HL_pH",8.11956061097578,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2023,"HL_pH",8.11692956112989,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2024,"HL_pH",8.1142953133638,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2025,"HL_pH",8.11165795730336,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2026,"HL_pH",8.10901422122978,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2027,"HL_pH",8.10636267633866,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2028,"HL_pH",8.10370644374163,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2029,"HL_pH",8.10104622494915,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2030,"HL_pH",8.09838232793079,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2031,"HL_pH",8.09571493259484,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2032,"HL_pH",8.09304489175898,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2033,"HL_pH",8.09038576676416,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2034,"HL_pH",8.08774148984835,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2035,"HL_pH",8.08511012333007,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2036,"HL_pH",8.08249092586271,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2037,"HL_pH",8.07988423110423,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2038,"HL_pH",8.07729007800974,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2039,"HL_pH",8.07470714811585,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2040,"HL_pH",8.07213521354325,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2041,"HL_pH",8.06957475784106,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2042,"HL_pH",8.06702815191034,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2043,"HL_pH",8.06450640216065,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2044,"HL_pH",8.06201194385175,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2045,"HL_pH",8.05954510071199,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2046,"HL_pH",8.05710598688201,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2047,"HL_pH",8.05469467594554,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2048,"HL_pH",8.05231121922882,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2049,"HL_pH",8.04995561557084,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2050,"HL_pH",8.04762774462816,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2051,"HL_pH",8.04532761120819,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2052,"HL_pH",8.04306001093887,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2053,"HL_pH",8.04084244505695,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2054,"HL_pH",8.0386762364858,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2055,"HL_pH",8.03656114396489,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2056,"HL_pH",8.03449696938933,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2057,"HL_pH",8.03248339543135,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2058,"HL_pH",8.03052013916111,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2059,"HL_pH",8.02860706283596,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2060,"HL_pH",8.02674397226032,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2061,"HL_pH",8.02493057533393,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2062,"HL_pH",8.02316990581997,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2063,"HL_pH",8.0214732939206,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2064,"HL_pH",8.01983983268024,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2065,"HL_pH",8.01826759655783,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2066,"HL_pH",8.01788044806102,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2067,"HL_pH",8.01534336443941,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2068,"HL_pH",8.0138898287919,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2069,"HL_pH",8.01253565522362,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2070,"HL_pH",8.011238598295,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2071,"HL_pH",8.009995749452,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2072,"HL_pH",8.00881153184566,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2073,"HL_pH",8.00770795452015,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2074,"HL_pH",8.00668529984039,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2075,"HL_pH",8.00574205080225,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2076,"HL_pH",8.00487689959409,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2077,"HL_pH",8.00408855200147,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2078,"HL_pH",8.0033759976103,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2079,"HL_pH",8.00273830162227,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2080,"HL_pH",8.00217459180443,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2081,"HL_pH",8.00168408100143,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2082,"HL_pH",8.00126952477456,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2083,"HL_pH",8.00094406682687,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2084,"HL_pH",8.0007070917702,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2085,"HL_pH",8.0005571046091,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2086,"HL_pH",8.00049279078821,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2087,"HL_pH",8.000793342968,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2088,"HL_pH",8.00094287626276,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2089,"HL_pH",8.00104701987736,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2090,"HL_pH",8.00123803623578,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2091,"HL_pH",8.00148364233822,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2092,"HL_pH",8.00180102448816,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2093,"HL_pH",8.00215386010149,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2094,"HL_pH",8.00253566381359,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2095,"HL_pH",8.00294728218394,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2096,"HL_pH",8.00338846937242,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2097,"HL_pH",8.00385959309736,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2098,"HL_pH",8.00436078847477,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2099,"HL_pH",8.00489218186227,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2100,"HL_pH",8.0054538708906,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2101,"HL_pH",8.00604592793694,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2102,"HL_pH",8.00667954628666,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2103,"HL_pH",8.00729698949587,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2104,"HL_pH",8.00788657011146,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2105,"HL_pH",8.00845074314559,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2106,"HL_pH",8.00898934326976,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2107,"HL_pH",8.00957318631144,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2108,"HL_pH",8.01053957070737,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2109,"HL_pH",8.01082559191877,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2110,"HL_pH",8.01143049434276,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2111,"HL_pH",8.01171142608347,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2112,"HL_pH",8.01218351349017,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2113,"HL_pH",8.01245150124602,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2114,"HL_pH",8.01282317055611,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2115,"HL_pH",8.01306287731055,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2116,"HL_pH",8.01335435620912,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2117,"HL_pH",8.01355695350243,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2118,"HL_pH",8.01377941734478,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2119,"HL_pH",8.01394019449872,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2120,"HL_pH",8.01410384591161,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2121,"HL_pH",8.01422263314869,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2122,"HL_pH",8.01433462503776,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2123,"HL_pH",8.01441211396066,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2124,"HL_pH",8.01447781073463,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2125,"HL_pH",8.01451561896272,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2126,"HL_pH",8.01453934662204,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2127,"HL_pH",8.01453949307122,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2128,"HL_pH",8.01452428902483,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2129,"HL_pH",8.01448871757111,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2130,"HL_pH",8.01443775266407,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2131,"HL_pH",8.01436870598265,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2132,"HL_pH",8.01428463974277,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2133,"HL_pH",8.01418429915923,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2134,"HL_pH",8.01406896491979,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2135,"HL_pH",8.01393878814225,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2136,"HL_pH",8.01379489405517,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2137,"HL_pH",8.01363706014252,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2138,"HL_pH",8.01346647934977,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2139,"HL_pH",8.01328314521218,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2140,"HL_pH",8.01308786977986,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2141,"HL_pH",8.01288074119406,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2142,"HL_pH",8.01266231449868,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2143,"HL_pH",8.0124329591633,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2144,"HL_pH",8.01219304236697,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2145,"HL_pH",8.011942863497,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2146,"HL_pH",8.01168277772422,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2147,"HL_pH",8.01141305571795,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2148,"HL_pH",8.01113404472466,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2149,"HL_pH",8.01084601218252,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2150,"HL_pH",8.01054945570292,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2151,"HL_pH",8.01024467084097,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2152,"HL_pH",8.00993190083361,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2153,"HL_pH",8.00960520735346,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2154,"HL_pH",8.00928929664426,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2155,"HL_pH",8.00896688857993,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2156,"HL_pH",8.00865197066504,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2157,"HL_pH",8.00833388146993,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2158,"HL_pH",8.00802121586455,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2159,"HL_pH",8.00770753439903,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2160,"HL_pH",8.00739811362258,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2161,"HL_pH",8.00708894654151,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2162,"HL_pH",8.00678328931177,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2163,"HL_pH",8.00647883217083,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2164,"HL_pH",8.00617759887378,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2165,"HL_pH",8.00587826559838,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2166,"HL_pH",8.00558195987264,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2167,"HL_pH",8.00528821204627,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2168,"HL_pH",8.00499534153669,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2169,"HL_pH",8.00470390081579,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2170,"HL_pH",8.00441364450539,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2171,"HL_pH",8.00412624415155,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2172,"HL_pH",8.0038405274733,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2173,"HL_pH",8.00355783172404,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2174,"HL_pH",8.0032776669258,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2175,"HL_pH",8.00300082984568,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2176,"HL_pH",8.00272669055093,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2177,"HL_pH",8.00245596039077,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2178,"HL_pH",8.00218862269099,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2179,"HL_pH",8.0019252437226,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2180,"HL_pH",8.00166476389632,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2181,"HL_pH",8.00140843896761,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2182,"HL_pH",8.00115576731633,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2183,"HL_pH",8.00090761124072,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2184,"HL_pH",8.00066361642014,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2185,"HL_pH",8.00042426638389,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2186,"HL_pH",8.00018962238089,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2187,"HL_pH",7.99995964732594,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2188,"HL_pH",7.99973271205189,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2189,"HL_pH",7.99951059252187,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2190,"HL_pH",7.99929265967723,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2191,"HL_pH",7.99907990658718,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2192,"HL_pH",7.9988719355047,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2193,"HL_pH",7.9986695151788,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2194,"HL_pH",7.99847247391145,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2195,"HL_pH",7.99828182753968,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2196,"HL_pH",7.99809646789378,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2197,"HL_pH",7.99791305468134,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2198,"HL_pH",7.99773441372088,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2199,"HL_pH",7.99755994211872,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2200,"HL_pH",7.99739151032295,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2201,"HL_pH",7.99722865315314,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2202,"HL_pH",7.99707210110346,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2203,"HL_pH",7.99692154195938,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2204,"HL_pH",7.9967778293055,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2205,"HL_pH",7.9966406883771,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2206,"HL_pH",7.99651066986935,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2207,"HL_pH",7.99638737939161,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2208,"HL_pH",7.99627108474629,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2209,"HL_pH",7.99616167715443,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2210,"HL_pH",7.99605923215729,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2211,"HL_pH",7.99596353770497,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2212,"HL_pH",7.9958748031982,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2213,"HL_pH",7.99579303587204,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2214,"HL_pH",7.99571833491847,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2215,"HL_pH",7.99565076291626,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2216,"HL_pH",7.99559034365002,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2217,"HL_pH",7.99553707614104,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2218,"HL_pH",7.99549122373351,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2219,"HL_pH",7.99545246441816,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2220,"HL_pH",7.99542139274228,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2221,"HL_pH",7.99539771379623,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2222,"HL_pH",7.99538183242758,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2223,"HL_pH",7.99537355012907,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2224,"HL_pH",7.99537315500574,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2225,"HL_pH",7.99538054739743,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2226,"HL_pH",7.99539586457186,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2227,"HL_pH",7.99541900533893,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2228,"HL_pH",7.99545004080454,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2229,"HL_pH",7.99548886752258,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2230,"HL_pH",7.99553555001877,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2231,"HL_pH",7.99559001867785,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2232,"HL_pH",7.99565231688589,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2233,"HL_pH",7.99572239376762,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2234,"HL_pH",7.99580027589596,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2235,"HL_pH",7.9958859158266,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2236,"HL_pH",7.99597935036733,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2237,"HL_pH",7.99608055403215,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2238,"HL_pH",7.99618955587725,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2239,"HL_pH",7.99630634018865,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2240,"HL_pH",7.99643092767052,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2241,"HL_pH",7.99656330732643,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2242,"HL_pH",7.99670349247765,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2243,"HL_pH",7.99685147416363,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2244,"HL_pH",7.99700725968408,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2245,"HL_pH",7.99717083873427,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2246,"HL_pH",7.99734221901118,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2247,"HL_pH",7.99752139303806,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2248,"HL_pH",7.99770836438258,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2249,"HL_pH",7.99790312544949,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2250,"HL_pH",7.99810567553059,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2251,"HL_pH",7.99831600580477,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2252,"HL_pH",7.99853500084324,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2253,"HL_pH",7.99876823700847,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2254,"HL_pH",7.99899023581188,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2255,"HL_pH",7.9992203384284,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2256,"HL_pH",7.99944298106976,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2257,"HL_pH",7.99967127413089,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2258,"HL_pH",7.99989478798537,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2259,"HL_pH",8.00012229027918,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2260,"HL_pH",8.00034682300895,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2261,"HL_pH",8.00057423470873,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2262,"HL_pH",8.00079990784284,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2263,"HL_pH",8.00102773306604,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2264,"HL_pH",8.0012546617286,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2265,"HL_pH",8.00148327690309,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2266,"HL_pH",8.00171157051031,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2267,"HL_pH",8.00194124778492,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2268,"HL_pH",8.0021709937773,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2269,"HL_pH",8.00240193067664,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2270,"HL_pH",8.0026332013239,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2271,"HL_pH",8.00286554119983,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2272,"HL_pH",8.00309839401427,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2273,"HL_pH",8.00333223965977,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2274,"HL_pH",8.0035667177027,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2275,"HL_pH",8.00380213885814,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2276,"HL_pH",8.00403827018829,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2277,"HL_pH",8.00427531013672,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2278,"HL_pH",8.00451310531272,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2279,"HL_pH",8.00475177857655,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2280,"HL_pH",8.00499122582731,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2281,"HL_pH",8.00523151887214,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2282,"HL_pH",8.00547258345805,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2283,"HL_pH",8.00571445659207,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2284,"HL_pH",8.00595708141782,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2285,"HL_pH",8.00620046986866,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2286,"HL_pH",8.00644457729001,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2287,"HL_pH",8.00668940056499,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2288,"HL_pH",8.00693494702294,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2289,"HL_pH",8.00718107086806,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2290,"HL_pH",8.00742769684159,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2291,"HL_pH",8.0076746992005,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2292,"HL_pH",8.00792200138621,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2293,"HL_pH",8.00816949724418,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2294,"HL_pH",8.00841711275778,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2295,"HL_pH",8.00866475692042,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2296,"HL_pH",8.00891236000217,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2297,"HL_pH",8.00915984305138,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2298,"HL_pH",8.00940714149442,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2299,"HL_pH",8.00965418626395,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",2300,"HL_pH",8.00990091827264,"pH",3.0.0,"9aebf67" +"hector_ssp245.ini",1745,"atmos_co2",590.3295,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1746,"atmos_co2",590.409923066788,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1747,"atmos_co2",590.481819865371,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1748,"atmos_co2",590.548572988947,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1749,"atmos_co2",590.611250029066,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1750,"atmos_co2",590.670510126561,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1751,"atmos_co2",590.726753575272,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1752,"atmos_co2",590.7842760884,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1753,"atmos_co2",590.84334548603,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1754,"atmos_co2",590.902088359902,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1755,"atmos_co2",590.958561632675,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1756,"atmos_co2",591.008500668973,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1757,"atmos_co2",590.988696637749,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1758,"atmos_co2",590.983729418928,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1759,"atmos_co2",591.009015215512,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1760,"atmos_co2",591.053739704551,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1761,"atmos_co2",591.107331563855,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1762,"atmos_co2",591.166700969999,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1763,"atmos_co2",590.955374679127,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1764,"atmos_co2",590.741826816442,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1765,"atmos_co2",590.65467512058,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1766,"atmos_co2",590.655910060966,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1767,"atmos_co2",590.606895119526,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1768,"atmos_co2",590.528802145494,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1769,"atmos_co2",590.517983107086,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1770,"atmos_co2",590.56445207314,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1771,"atmos_co2",590.603057888029,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1772,"atmos_co2",590.659166232953,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1773,"atmos_co2",590.741153955739,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1774,"atmos_co2",590.838113909498,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1775,"atmos_co2",590.938367899146,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1776,"atmos_co2",591.0419732398,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1777,"atmos_co2",591.147369759206,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1778,"atmos_co2",591.251289173534,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1779,"atmos_co2",591.352864851067,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1780,"atmos_co2",591.454198666622,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1781,"atmos_co2",591.552422931795,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1782,"atmos_co2",591.651059825688,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1783,"atmos_co2",591.749240456804,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1784,"atmos_co2",591.308939214363,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1785,"atmos_co2",590.1489390033,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1786,"atmos_co2",589.375211614249,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1787,"atmos_co2",589.013021390518,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1788,"atmos_co2",588.939274997842,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1789,"atmos_co2",589.032928094864,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1790,"atmos_co2",589.211337200827,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1791,"atmos_co2",589.425842652272,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1792,"atmos_co2",589.655767408457,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1793,"atmos_co2",589.889972924798,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1794,"atmos_co2",590.122662369346,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1795,"atmos_co2",590.34861178374,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1796,"atmos_co2",590.571738804354,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1797,"atmos_co2",590.756183186763,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1798,"atmos_co2",590.894419580174,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1799,"atmos_co2",591.043136701083,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1800,"atmos_co2",591.222500169144,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1801,"atmos_co2",591.421983960318,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1802,"atmos_co2",591.632532508268,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1803,"atmos_co2",591.849154161382,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1804,"atmos_co2",592.066357544686,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1805,"atmos_co2",592.285571650382,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1806,"atmos_co2",592.50352609064,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1807,"atmos_co2",592.7153900903,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1808,"atmos_co2",592.922620337701,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1809,"atmos_co2",593.121579555973,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1810,"atmos_co2",592.264434562537,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1811,"atmos_co2",591.395264580584,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1812,"atmos_co2",590.956487834348,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1813,"atmos_co2",590.894676567013,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1814,"atmos_co2",591.055587908272,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1815,"atmos_co2",591.326987346843,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1816,"atmos_co2",590.694835068169,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1817,"atmos_co2",589.422597159038,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1818,"atmos_co2",588.671551348307,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1819,"atmos_co2",588.514299004662,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1820,"atmos_co2",588.72856744623,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1821,"atmos_co2",589.132060869271,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1822,"atmos_co2",589.594596756204,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1823,"atmos_co2",590.078005099243,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1824,"atmos_co2",590.47654928412,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1825,"atmos_co2",590.903182846327,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1826,"atmos_co2",591.382121096695,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1827,"atmos_co2",591.897139061976,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1828,"atmos_co2",592.430312067935,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1829,"atmos_co2",592.966988759755,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1830,"atmos_co2",593.504980864524,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1831,"atmos_co2",594.047687022641,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1832,"atmos_co2",593.92439572154,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1833,"atmos_co2",593.721481830586,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1834,"atmos_co2",593.815871936174,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1835,"atmos_co2",594.163748390072,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1836,"atmos_co2",594.174912116407,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1837,"atmos_co2",594.203043026694,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1838,"atmos_co2",594.480347573843,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1839,"atmos_co2",594.956789772915,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1840,"atmos_co2",595.545222742046,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1841,"atmos_co2",596.187499700991,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1842,"atmos_co2",596.851299576998,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1843,"atmos_co2",597.523516014412,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1844,"atmos_co2",598.198412176992,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1845,"atmos_co2",598.874841104833,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1846,"atmos_co2",599.550285758482,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1847,"atmos_co2",600.173503482051,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1848,"atmos_co2",600.790634976422,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1849,"atmos_co2",601.425580417577,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1850,"atmos_co2",602.080698247691,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1851,"atmos_co2",602.748560564783,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1852,"atmos_co2",603.408327984936,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1853,"atmos_co2",604.119262802786,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1854,"atmos_co2",604.75314917102,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1855,"atmos_co2",605.338194978544,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1856,"atmos_co2",605.926391064191,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1857,"atmos_co2",606.520371398254,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1858,"atmos_co2",607.057398123871,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1859,"atmos_co2",607.600399065811,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1860,"atmos_co2",608.1670820012,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1861,"atmos_co2",608.745497073569,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1862,"atmos_co2",609.311263197167,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1863,"atmos_co2",609.586573297825,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1864,"atmos_co2",609.873611997927,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1865,"atmos_co2",610.261066350401,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1866,"atmos_co2",610.715227055169,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1867,"atmos_co2",611.199003872405,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1868,"atmos_co2",611.691178506751,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1869,"atmos_co2",612.175428002922,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1870,"atmos_co2",612.655594904245,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1871,"atmos_co2",613.124505146676,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1872,"atmos_co2",613.610581365953,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1873,"atmos_co2",614.188716761648,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1874,"atmos_co2",614.68582128545,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1875,"atmos_co2",615.168148560978,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1876,"atmos_co2",615.659461381248,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1877,"atmos_co2",616.144976248534,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1878,"atmos_co2",616.634103987505,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1879,"atmos_co2",617.119869648174,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1880,"atmos_co2",617.606978906645,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1881,"atmos_co2",618.093890454705,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1882,"atmos_co2",618.596855253042,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1883,"atmos_co2",619.051924563643,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1884,"atmos_co2",619.361098635217,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1885,"atmos_co2",619.162556289327,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1886,"atmos_co2",619.129860788464,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1887,"atmos_co2",619.341920368177,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1888,"atmos_co2",619.680651783892,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1889,"atmos_co2",620.127634831203,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1890,"atmos_co2",620.617891663796,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1891,"atmos_co2",621.105191828577,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1892,"atmos_co2",621.537942525418,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1893,"atmos_co2",622.008676786895,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1894,"atmos_co2",622.513692241272,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1895,"atmos_co2",623.056406896204,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1896,"atmos_co2",623.620615949397,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1897,"atmos_co2",624.190732066189,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1898,"atmos_co2",624.768855245737,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1899,"atmos_co2",625.357147308893,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1900,"atmos_co2",625.966570873608,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1901,"atmos_co2",626.584612080664,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1902,"atmos_co2",627.26761186802,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1903,"atmos_co2",627.920488909179,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1904,"atmos_co2",628.386910818446,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1905,"atmos_co2",628.894182500286,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1906,"atmos_co2",629.580915395345,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1907,"atmos_co2",630.362522324708,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1908,"atmos_co2",631.185132648736,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1909,"atmos_co2",631.974865785063,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1910,"atmos_co2",632.791265081848,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1911,"atmos_co2",633.62110045004,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1912,"atmos_co2",634.382225532956,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1913,"atmos_co2",634.987885945505,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1914,"atmos_co2",635.538470237546,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1915,"atmos_co2",636.061626450486,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1916,"atmos_co2",636.630150615271,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1917,"atmos_co2",637.277114972418,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1918,"atmos_co2",637.943750365755,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1919,"atmos_co2",638.586514678268,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1920,"atmos_co2",639.128860893199,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1921,"atmos_co2",639.780503972663,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1922,"atmos_co2",640.367130523107,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1923,"atmos_co2",640.954555089625,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1924,"atmos_co2",641.628220072425,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1925,"atmos_co2",642.311635487083,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1926,"atmos_co2",642.996284549913,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1927,"atmos_co2",643.656008367801,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1928,"atmos_co2",644.42874949221,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1929,"atmos_co2",645.171528066789,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1930,"atmos_co2",645.938051813592,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1931,"atmos_co2",646.707855245213,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1932,"atmos_co2",647.398843372539,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1933,"atmos_co2",647.876758724515,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1934,"atmos_co2",648.418239700141,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1935,"atmos_co2",649.022737620936,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1936,"atmos_co2",649.656612639554,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1937,"atmos_co2",650.368498045367,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1938,"atmos_co2",651.103483583869,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1939,"atmos_co2",651.75950466316,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1940,"atmos_co2",652.464010837482,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1941,"atmos_co2",653.223584280597,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1942,"atmos_co2",653.960365200157,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1943,"atmos_co2",654.693648453362,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1944,"atmos_co2",655.444513725865,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1945,"atmos_co2",656.171096180252,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1946,"atmos_co2",656.703053947432,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1947,"atmos_co2",657.441423369216,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1948,"atmos_co2",658.329911236117,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1949,"atmos_co2",659.275372431216,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1950,"atmos_co2",660.174312307667,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1951,"atmos_co2",661.221984679843,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1952,"atmos_co2",662.557898087645,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1953,"atmos_co2",663.892761970551,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1954,"atmos_co2",665.226735071377,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1955,"atmos_co2",666.618894339102,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1956,"atmos_co2",668.176519184425,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1957,"atmos_co2",669.864078753698,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1958,"atmos_co2",671.595209143337,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1959,"atmos_co2",673.398082542227,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1960,"atmos_co2",675.214865748645,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1961,"atmos_co2",677.07859038929,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1962,"atmos_co2",678.940257990363,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1963,"atmos_co2",680.790044754133,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1964,"atmos_co2",682.493843836255,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1965,"atmos_co2",684.225095938132,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1966,"atmos_co2",686.153439714568,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1967,"atmos_co2",688.334411667816,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1968,"atmos_co2",690.613286538705,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1969,"atmos_co2",692.999236506121,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1970,"atmos_co2",695.561917821292,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1971,"atmos_co2",698.288457550531,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1972,"atmos_co2",700.957361003417,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1973,"atmos_co2",703.671126345218,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1974,"atmos_co2",706.598714099017,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1975,"atmos_co2",709.39183131704,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1976,"atmos_co2",712.02854254411,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1977,"atmos_co2",714.915974672211,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1978,"atmos_co2",717.964416685168,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1979,"atmos_co2",721.117541528271,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1980,"atmos_co2",724.294393869933,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1981,"atmos_co2",727.301439817734,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1982,"atmos_co2",730.148735071667,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1983,"atmos_co2",732.813914774874,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1984,"atmos_co2",735.434991599253,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1985,"atmos_co2",738.24152494315,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1986,"atmos_co2",741.187599570629,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1987,"atmos_co2",744.251175220969,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1988,"atmos_co2",747.42039943357,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1989,"atmos_co2",750.738649591085,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1990,"atmos_co2",754.102843749509,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1991,"atmos_co2",757.299494837435,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1992,"atmos_co2",760.434035978137,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1993,"atmos_co2",763.061366562633,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1994,"atmos_co2",765.665475368736,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1995,"atmos_co2",768.566449382163,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1996,"atmos_co2",771.754130728409,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1997,"atmos_co2",775.121193352781,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1998,"atmos_co2",779.270187125992,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1999,"atmos_co2",782.845346525989,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2000,"atmos_co2",786.333759103503,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2001,"atmos_co2",789.994903979033,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2002,"atmos_co2",793.494172322746,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2003,"atmos_co2",797.2128676174,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2004,"atmos_co2",801.049903865121,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2005,"atmos_co2",805.368315803228,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2006,"atmos_co2",809.897703637976,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2007,"atmos_co2",814.688884832373,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2008,"atmos_co2",819.634587926236,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2009,"atmos_co2",824.315052346393,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2010,"atmos_co2",828.906005115439,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2011,"atmos_co2",833.985667819065,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2012,"atmos_co2",839.326366529566,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2013,"atmos_co2",844.804687085045,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2014,"atmos_co2",850.474699983664,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2015,"atmos_co2",856.314258765974,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2016,"atmos_co2",862.018917902449,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2017,"atmos_co2",867.759759340789,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2018,"atmos_co2",873.567988594631,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2019,"atmos_co2",879.438549400778,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2020,"atmos_co2",885.366694638168,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2021,"atmos_co2",891.349039185857,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2022,"atmos_co2",897.36906606651,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2023,"atmos_co2",903.421377505352,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2024,"atmos_co2",909.504344183927,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2025,"atmos_co2",915.617346179686,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2026,"atmos_co2",921.76584402131,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2027,"atmos_co2",927.951397100665,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2028,"atmos_co2",934.174060933442,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2029,"atmos_co2",940.433637513146,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2030,"atmos_co2",946.729992056138,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2031,"atmos_co2",953.063112477218,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2032,"atmos_co2",959.382010692623,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2033,"atmos_co2",965.69067655798,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2034,"atmos_co2",971.998213688931,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2035,"atmos_co2",978.305753944816,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2036,"atmos_co2",984.611288579148,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2037,"atmos_co2",990.91342902602,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2038,"atmos_co2",997.216951779063,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2039,"atmos_co2",1003.52173250242,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2040,"atmos_co2",1009.82575214565,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2041,"atmos_co2",1016.12763482543,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2042,"atmos_co2",1022.38609094768,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2043,"atmos_co2",1028.60119289024,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2044,"atmos_co2",1034.77217271289,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2045,"atmos_co2",1040.8980893035,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2046,"atmos_co2",1046.97796689054,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2047,"atmos_co2",1053.010855918,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2048,"atmos_co2",1058.99586498987,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2049,"atmos_co2",1064.93266366774,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2050,"atmos_co2",1070.8204087707,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2051,"atmos_co2",1076.65805687964,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2052,"atmos_co2",1082.37763026239,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2053,"atmos_co2",1087.98022810674,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2054,"atmos_co2",1093.4656235612,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2055,"atmos_co2",1098.83289222304,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2056,"atmos_co2",1104.08151262452,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2057,"atmos_co2",1109.21089683715,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2058,"atmos_co2",1114.21989206624,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2059,"atmos_co2",1119.1075365533,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2060,"atmos_co2",1123.87344666106,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2061,"atmos_co2",1128.51647455829,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2062,"atmos_co2",1132.98971748806,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2063,"atmos_co2",1137.29820296142,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2064,"atmos_co2",1141.44557364591,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2065,"atmos_co2",1145.43720127993,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2066,"atmos_co2",1149.275008254,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2067,"atmos_co2",1152.99313876426,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2068,"atmos_co2",1156.55731765758,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2069,"atmos_co2",1159.96919327965,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2070,"atmos_co2",1163.23294843516,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2071,"atmos_co2",1166.35125693416,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2072,"atmos_co2",1169.23543625425,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2073,"atmos_co2",1171.89055882454,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2074,"atmos_co2",1174.31944001409,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2075,"atmos_co2",1176.5243461339,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2076,"atmos_co2",1178.5080405201,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2077,"atmos_co2",1180.27233673545,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2078,"atmos_co2",1181.81902128928,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2079,"atmos_co2",1183.14983832152,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2080,"atmos_co2",1184.26635398891,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2081,"atmos_co2",1185.17011369788,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2082,"atmos_co2",1185.80716746589,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2083,"atmos_co2",1186.18315163796,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2084,"atmos_co2",1186.30186875087,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2085,"atmos_co2",1186.16650072985,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2086,"atmos_co2",1185.78180810946,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2087,"atmos_co2",1185.19209578002,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2088,"atmos_co2",1184.39064496658,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2089,"atmos_co2",1183.41154200814,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2090,"atmos_co2",1182.24506789353,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2091,"atmos_co2",1180.89472015206,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2092,"atmos_co2",1179.46140799614,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2093,"atmos_co2",1177.94156070497,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2094,"atmos_co2",1176.33573086317,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2095,"atmos_co2",1174.64344544134,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2096,"atmos_co2",1172.86442768077,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2097,"atmos_co2",1170.99869140783,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2098,"atmos_co2",1169.04633074735,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2099,"atmos_co2",1167.00748706196,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2100,"atmos_co2",1164.88237400552,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2101,"atmos_co2",1162.67122949862,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2102,"atmos_co2",1160.54890209764,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2103,"atmos_co2",1158.50762030436,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2104,"atmos_co2",1156.54541810404,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2105,"atmos_co2",1154.66051564377,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2106,"atmos_co2",1152.85411119324,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2107,"atmos_co2",1151.17968661957,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2108,"atmos_co2",1149.5599262914,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2109,"atmos_co2",1148.04002600891,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2110,"atmos_co2",1146.61111010409,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2111,"atmos_co2",1145.27789418864,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2112,"atmos_co2",1144.03104416651,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2113,"atmos_co2",1142.87210147453,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2114,"atmos_co2",1141.79449170304,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2115,"atmos_co2",1140.79967316851,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2116,"atmos_co2",1139.88362323711,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2117,"atmos_co2",1139.04455136902,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2118,"atmos_co2",1138.27796725049,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2119,"atmos_co2",1137.58207771249,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2120,"atmos_co2",1136.95364119863,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2121,"atmos_co2",1136.39081686895,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2122,"atmos_co2",1135.89071469934,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2123,"atmos_co2",1135.45151552525,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2124,"atmos_co2",1135.07065471394,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2125,"atmos_co2",1134.74662679207,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2126,"atmos_co2",1134.47751502551,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2127,"atmos_co2",1134.26136406734,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2128,"atmos_co2",1134.09624120153,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2129,"atmos_co2",1133.98044378327,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2130,"atmos_co2",1133.91230918458,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2131,"atmos_co2",1133.89035571665,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2132,"atmos_co2",1133.91368531657,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2133,"atmos_co2",1133.98037173532,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2134,"atmos_co2",1134.08862727536,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2135,"atmos_co2",1134.23731007454,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2136,"atmos_co2",1134.42477361434,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2137,"atmos_co2",1134.64963270265,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2138,"atmos_co2",1134.91063846873,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2139,"atmos_co2",1135.20667964894,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2140,"atmos_co2",1135.5366861926,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2141,"atmos_co2",1135.89943599758,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2142,"atmos_co2",1136.29393126728,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2143,"atmos_co2",1136.71924548682,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2144,"atmos_co2",1137.17445196687,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2145,"atmos_co2",1137.6586696868,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2146,"atmos_co2",1138.17098939757,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2147,"atmos_co2",1138.71047651047,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2148,"atmos_co2",1139.27601940907,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2149,"atmos_co2",1139.86663527305,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2150,"atmos_co2",1140.4815819352,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2151,"atmos_co2",1141.12013097624,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2152,"atmos_co2",1141.75616662106,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2153,"atmos_co2",1142.38985720732,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2154,"atmos_co2",1143.02047370156,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2155,"atmos_co2",1143.64776307153,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2156,"atmos_co2",1144.27111919417,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2157,"atmos_co2",1144.89018804896,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2158,"atmos_co2",1145.50453799965,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2159,"atmos_co2",1146.11399284934,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2160,"atmos_co2",1146.71823493567,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2161,"atmos_co2",1147.31687853512,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2162,"atmos_co2",1147.90955292183,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2163,"atmos_co2",1148.49595432046,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2164,"atmos_co2",1149.07607897205,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2165,"atmos_co2",1149.65025305553,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2166,"atmos_co2",1150.22121655926,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2167,"atmos_co2",1150.78938080146,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2168,"atmos_co2",1151.35381443487,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2169,"atmos_co2",1151.91260040653,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2170,"atmos_co2",1152.46549981121,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2171,"atmos_co2",1153.01174800794,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2172,"atmos_co2",1153.55052373388,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2173,"atmos_co2",1154.08133026514,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2174,"atmos_co2",1154.60404269219,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2175,"atmos_co2",1155.11812907326,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2176,"atmos_co2",1155.62277252174,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2177,"atmos_co2",1156.11750491162,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2178,"atmos_co2",1156.60288397272,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2179,"atmos_co2",1157.07805923423,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2180,"atmos_co2",1157.54223442145,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2181,"atmos_co2",1157.99472984344,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2182,"atmos_co2",1158.43506614024,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2183,"atmos_co2",1158.86290210227,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2184,"atmos_co2",1159.27785865809,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2185,"atmos_co2",1159.68048874717,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2186,"atmos_co2",1160.07250080535,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2187,"atmos_co2",1160.45273398714,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2188,"atmos_co2",1160.82001160543,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2189,"atmos_co2",1161.17360123208,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2190,"atmos_co2",1161.51282547398,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2191,"atmos_co2",1161.83695636367,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2192,"atmos_co2",1162.14533425359,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2193,"atmos_co2",1162.43749967918,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2194,"atmos_co2",1162.71538375684,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2195,"atmos_co2",1162.98377416877,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2196,"atmos_co2",1163.24117243365,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2197,"atmos_co2",1163.48488719467,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2198,"atmos_co2",1163.71298517906,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2199,"atmos_co2",1163.92415569808,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2200,"atmos_co2",1164.11788900151,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2201,"atmos_co2",1164.29358689927,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2202,"atmos_co2",1164.45034444987,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2203,"atmos_co2",1164.58758331118,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2204,"atmos_co2",1164.70492640143,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2205,"atmos_co2",1164.80234440691,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2206,"atmos_co2",1164.87986261622,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2207,"atmos_co2",1164.93735177262,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2208,"atmos_co2",1164.97487760291,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2209,"atmos_co2",1164.99257544757,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2210,"atmos_co2",1164.99029431728,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2211,"atmos_co2",1164.96776020984,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2212,"atmos_co2",1164.92479923991,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2213,"atmos_co2",1164.86120932602,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2214,"atmos_co2",1164.77687873139,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2215,"atmos_co2",1164.67169439028,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2216,"atmos_co2",1164.54533494134,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2217,"atmos_co2",1164.39780967931,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2218,"atmos_co2",1164.22861214382,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2219,"atmos_co2",1164.03747177649,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2220,"atmos_co2",1163.82414984832,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2221,"atmos_co2",1163.58844711969,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2222,"atmos_co2",1163.33017805633,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2223,"atmos_co2",1163.04918098804,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2224,"atmos_co2",1162.74541454019,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2225,"atmos_co2",1162.4188944995,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2226,"atmos_co2",1162.06967002609,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2227,"atmos_co2",1161.69781968594,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2228,"atmos_co2",1161.30338757669,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2229,"atmos_co2",1160.88641708353,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2230,"atmos_co2",1160.44695011802,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2231,"atmos_co2",1159.98503254406,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2232,"atmos_co2",1159.50071176254,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2233,"atmos_co2",1158.9940395401,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2234,"atmos_co2",1158.46503591129,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2235,"atmos_co2",1157.9137156037,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2236,"atmos_co2",1157.34009103204,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2237,"atmos_co2",1156.74417678315,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2238,"atmos_co2",1156.12598970084,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2239,"atmos_co2",1155.48555107421,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2240,"atmos_co2",1154.82288616594,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2241,"atmos_co2",1154.138025224,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2242,"atmos_co2",1153.43100283675,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2243,"atmos_co2",1152.70185851019,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2244,"atmos_co2",1151.95062831164,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2245,"atmos_co2",1151.17735132751,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2246,"atmos_co2",1150.38207040699,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2247,"atmos_co2",1149.56483318901,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2248,"atmos_co2",1148.72569206426,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2249,"atmos_co2",1147.86470455207,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2250,"atmos_co2",1146.98193306089,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2251,"atmos_co2",1146.07744498566,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2252,"atmos_co2",1145.17611669732,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2253,"atmos_co2",1144.27642624742,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2254,"atmos_co2",1143.3783256061,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2255,"atmos_co2",1142.48132038493,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2256,"atmos_co2",1141.5853695938,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2257,"atmos_co2",1140.69009364447,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2258,"atmos_co2",1139.79541856091,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2259,"atmos_co2",1138.90104845281,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2260,"atmos_co2",1138.00689512708,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2261,"atmos_co2",1137.11272616963,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2262,"atmos_co2",1136.21845041444,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2263,"atmos_co2",1135.32388419287,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2264,"atmos_co2",1134.42894913033,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2265,"atmos_co2",1133.5335118202,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2266,"atmos_co2",1132.63750736508,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2267,"atmos_co2",1131.7408366052,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2268,"atmos_co2",1130.84344751178,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2269,"atmos_co2",1129.94526785402,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2270,"atmos_co2",1129.04625789983,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2271,"atmos_co2",1128.14636686777,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2272,"atmos_co2",1127.24556771817,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2273,"atmos_co2",1126.3438284689,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2274,"atmos_co2",1125.4411341157,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2275,"atmos_co2",1124.53747028042,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2276,"atmos_co2",1123.63283827226,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2277,"atmos_co2",1122.72724334054,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2278,"atmos_co2",1121.82070405532,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2279,"atmos_co2",1120.91324451347,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2280,"atmos_co2",1120.0049001641,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2281,"atmos_co2",1119.09571266426,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2282,"atmos_co2",1118.18573345092,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2283,"atmos_co2",1117.27502032687,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2284,"atmos_co2",1116.36363543451,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2285,"atmos_co2",1115.45164596763,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2286,"atmos_co2",1114.53912599632,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2287,"atmos_co2",1113.62634883503,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2288,"atmos_co2",1112.7136251565,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2289,"atmos_co2",1111.8012478197,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2290,"atmos_co2",1110.88949283579,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2291,"atmos_co2",1109.97862183803,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2292,"atmos_co2",1109.06888163642,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2293,"atmos_co2",1108.1605058362,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2294,"atmos_co2",1107.25371474796,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2295,"atmos_co2",1106.34871658381,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2296,"atmos_co2",1105.44570758581,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2297,"atmos_co2",1104.54487294184,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2298,"atmos_co2",1103.64638703389,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2299,"atmos_co2",1102.75041416369,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",2300,"atmos_co2",1101.85710886043,"Pg C",3.0.0,"9aebf67" +"hector_ssp245.ini",1745,"sst",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1746,"sst",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1747,"sst",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1748,"sst",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1749,"sst",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1750,"sst",0,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1751,"sst",0.000325535406588522,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1752,"sst",0.00112723086451497,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1753,"sst",0.00194179189190896,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1754,"sst",0.00235245573609467,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1755,"sst",0.00184676258050022,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1756,"sst",-0.00766162801136102,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1757,"sst",-0.0181957938443524,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1758,"sst",-0.0181180031509733,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1759,"sst",-0.0142340493617126,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1760,"sst",-0.010420067465324,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1761,"sst",-0.00722827457774967,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1762,"sst",-0.0392958907461952,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1763,"sst",-0.0859248274953324,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1764,"sst",-0.0937991860661105,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1765,"sst",-0.0802196539399932,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1766,"sst",-0.0773699265121753,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1767,"sst",-0.0885970549212539,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1768,"sst",-0.0895593734319654,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1769,"sst",-0.0772586904496512,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1770,"sst",-0.0684293090080611,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1771,"sst",-0.0634505678967003,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1772,"sst",-0.0548922926217828,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1773,"sst",-0.0452420860549636,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1774,"sst",-0.0373809659259441,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1775,"sst",-0.0311172772268432,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1776,"sst",-0.0256339017648263,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1777,"sst",-0.0212009255200597,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1778,"sst",-0.0178009430228985,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1779,"sst",-0.0148632364589725,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1780,"sst",-0.0124546245125328,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1781,"sst",-0.0104162330748563,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1782,"sst",-0.00835934414192262,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1783,"sst",-0.0754724587753155,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1784,"sst",-0.264017250743976,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1785,"sst",-0.390220030994412,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1786,"sst",-0.372685815924817,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1787,"sst",-0.319897725321517,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1788,"sst",-0.264524823651665,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1789,"sst",-0.217014823924517,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1790,"sst",-0.179425544661075,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1791,"sst",-0.150175280976297,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1792,"sst",-0.127079395603621,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1793,"sst",-0.108844036830906,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1794,"sst",-0.0947804376987551,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1795,"sst",-0.0834849186830635,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1796,"sst",-0.0786636009855304,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1797,"sst",-0.0827711824322428,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1798,"sst",-0.0849328475212727,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1799,"sst",-0.0789443120565894,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1800,"sst",-0.069981548213886,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1801,"sst",-0.061395411790218,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1802,"sst",-0.0538870659599115,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1803,"sst",-0.047428158167518,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1804,"sst",-0.0415791180065606,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1805,"sst",-0.0367479788757557,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1806,"sst",-0.0327041924500575,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1807,"sst",-0.029041649113987,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1808,"sst",-0.0262188505231681,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1809,"sst",-0.160500417345448,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1810,"sst",-0.351724703206887,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1811,"sst",-0.390997050678091,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1812,"sst",-0.341664517258219,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1813,"sst",-0.280814143294583,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1814,"sst",-0.229552291811987,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1815,"sst",-0.325104159394856,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1816,"sst",-0.564407035899906,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1817,"sst",-0.669121020639794,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1818,"sst",-0.602342363080988,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1819,"sst",-0.504185782816683,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1820,"sst",-0.417392196430222,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1821,"sst",-0.352633979819235,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1822,"sst",-0.306479133835485,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1823,"sst",-0.283551256028575,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1824,"sst",-0.267858774900825,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1825,"sst",-0.240096489367718,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1826,"sst",-0.211126323974879,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1827,"sst",-0.185652311147551,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1828,"sst",-0.164826000185902,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1829,"sst",-0.147568448503493,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1830,"sst",-0.132818435170982,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1831,"sst",-0.21347600759862,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1832,"sst",-0.333306457728247,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1833,"sst",-0.350535857338263,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1834,"sst",-0.310105201658504,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1835,"sst",-0.331374770677606,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1836,"sst",-0.386796233048751,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1837,"sst",-0.374278077211139,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1838,"sst",-0.325356824723753,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1839,"sst",-0.275883736374175,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1840,"sst",-0.234498449589336,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1841,"sst",-0.201495868893264,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1842,"sst",-0.17505916787463,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1843,"sst",-0.153265622544609,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1844,"sst",-0.134888483778213,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1845,"sst",-0.119673868015415,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1846,"sst",-0.113727065403803,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1847,"sst",-0.112232595608087,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1848,"sst",-0.10474406005757,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1849,"sst",-0.0938358664943314,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1850,"sst",-0.0829501873449884,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1851,"sst",-0.0728130605581878,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1852,"sst",-0.0635042084826073,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1853,"sst",-0.0617190556267742,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1854,"sst",-0.0670066155661465,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1855,"sst",-0.0660521754438563,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1856,"sst",-0.0589689497520133,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1857,"sst",-0.0592161674015831,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1858,"sst",-0.059940584870116,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1859,"sst",-0.0521637453345164,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1860,"sst",-0.0425171965708205,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1861,"sst",-0.0361184769938913,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1862,"sst",-0.0611649580153544,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1863,"sst",-0.0922181982235453,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1864,"sst",-0.0889330706780658,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1865,"sst",-0.0720806206556464,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1866,"sst",-0.0549473973501312,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1867,"sst",-0.0405371669501847,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1868,"sst",-0.0293355454372052,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1869,"sst",-0.0201312040994508,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1870,"sst",-0.012358295811726,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1871,"sst",-0.00556931571850528,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1872,"sst",0.000769987108787822,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1873,"sst",-0.00183844100055805,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1874,"sst",-0.00648924879183532,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1875,"sst",-0.00368125069333866,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1876,"sst",0.000167593331805738,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1877,"sst",0.00534740168701148,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1878,"sst",0.0118447157232977,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1879,"sst",0.0176996998945353,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1880,"sst",0.0210609855719955,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1881,"sst",0.0226759330066541,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1882,"sst",0.0260255740738021,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1883,"sst",0.0111229569748539,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1884,"sst",-0.0757911353824409,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1885,"sst",-0.150255308015804,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1886,"sst",-0.139797410685068,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1887,"sst",-0.111722379633539,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1888,"sst",-0.0853967903957095,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1889,"sst",-0.0590509466677183,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1890,"sst",-0.0423764064705967,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1891,"sst",-0.0407107922163953,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1892,"sst",-0.0378141690068281,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1893,"sst",-0.0238579887111078,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1894,"sst",-0.00927256046657556,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1895,"sst",0.00194331903591945,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1896,"sst",0.0112131205665894,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1897,"sst",0.0187441670000273,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1898,"sst",0.0248021253599442,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1899,"sst",0.0293674841627347,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1900,"sst",0.0327839583526948,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1901,"sst",0.0360575285536328,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1902,"sst",0.0353428233338746,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1903,"sst",0.00058761303532591,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1904,"sst",-0.0378907387755151,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1905,"sst",-0.0366538955128564,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1906,"sst",-0.0205429197329228,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1907,"sst",-0.0112557869372317,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1908,"sst",-0.00671589898827767,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1909,"sst",0.00231846822165164,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1910,"sst",0.0110447467052328,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1911,"sst",0.0178651987787349,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1912,"sst",0.006901796662339,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1913,"sst",-0.0202508001521422,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1914,"sst",-0.0290851807601658,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1915,"sst",-0.0164261678161161,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1916,"sst",-0.00146146842356354,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1917,"sst",0.00930434802233165,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1918,"sst",0.0173978880364612,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1919,"sst",0.0260674149433925,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1920,"sst",0.0339951194377619,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1921,"sst",0.0418503500786949,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1922,"sst",0.0465102077959388,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1923,"sst",0.0457995444366389,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1924,"sst",0.0484624140604436,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1925,"sst",0.0542454075663235,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1926,"sst",0.0592529386348373,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1927,"sst",0.0629359203693939,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1928,"sst",0.0648043116090454,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1929,"sst",0.0592682609911651,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1930,"sst",0.0566542092287815,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1931,"sst",0.065299223116635,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1932,"sst",0.0705034960889752,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1933,"sst",0.0745414848299842,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1934,"sst",0.0818502539237346,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1935,"sst",0.0871723456584557,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1936,"sst",0.0900064879298776,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1937,"sst",0.0910459727923437,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1938,"sst",0.0933705248101039,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1939,"sst",0.0961139738805425,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1940,"sst",0.0966681259163808,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1941,"sst",0.096475218734704,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1942,"sst",0.0961601619468353,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1943,"sst",0.0962116286801962,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1944,"sst",0.0975509156867974,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1945,"sst",0.102097741660627,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1946,"sst",0.10898772304213,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1947,"sst",0.113680266946518,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1948,"sst",0.115782774982995,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1949,"sst",0.118125140560426,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1950,"sst",0.11923595335179,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1951,"sst",0.119346904630262,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1952,"sst",0.120463349056925,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1953,"sst",0.121668903331469,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1954,"sst",0.123500353826263,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1955,"sst",0.124811482348001,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1956,"sst",0.124009271161862,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1957,"sst",0.122028602266,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1958,"sst",0.121736434653416,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1959,"sst",0.123046944795109,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1960,"sst",0.124216680300833,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1961,"sst",0.122056617652401,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1962,"sst",0.112360461096262,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1963,"sst",0.0715962736950645,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1964,"sst",0.0182436436977246,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1965,"sst",-0.0035698904234491,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1966,"sst",0.00805331357828669,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1967,"sst",0.0248357006964981,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1968,"sst",0.0335769710472973,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1969,"sst",0.0470560708448914,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1970,"sst",0.0603047242633259,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1971,"sst",0.0671462648241097,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1972,"sst",0.072857262603597,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1973,"sst",0.0856001076359835,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1974,"sst",0.100568229667527,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1975,"sst",0.102846807606173,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1976,"sst",0.105227760398149,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1977,"sst",0.121508073762527,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1978,"sst",0.141150334386573,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1979,"sst",0.159640034090583,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1980,"sst",0.175205581707981,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1981,"sst",0.18934106153836,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1982,"sst",0.19420483149829,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1983,"sst",0.17448151360535,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1984,"sst",0.163248341021024,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1985,"sst",0.183293328198236,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1986,"sst",0.209784188357421,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1987,"sst",0.234879122403685,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1988,"sst",0.260891683897735,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1989,"sst",0.288000709725906,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1990,"sst",0.313655154562481,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1991,"sst",0.312910592649987,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1992,"sst",0.249167385097161,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1993,"sst",0.196647785076343,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1994,"sst",0.220748134559724,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1995,"sst",0.274741672176199,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1996,"sst",0.327982768318743,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1997,"sst",0.369923220934112,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1998,"sst",0.402827361296489,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",1999,"sst",0.437813217916558,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2000,"sst",0.473930694515451,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2001,"sst",0.505852317421835,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2002,"sst",0.531408138885934,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2003,"sst",0.551038397199237,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2004,"sst",0.569649359821707,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2005,"sst",0.587360282947668,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2006,"sst",0.601946082996479,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2007,"sst",0.617595834669364,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2008,"sst",0.637671424321354,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2009,"sst",0.659581980464686,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2010,"sst",0.681690894900046,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2011,"sst",0.703570034168925,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2012,"sst",0.724727615961193,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2013,"sst",0.748009719051864,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2014,"sst",0.770977926516676,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2015,"sst",0.796032586287328,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2016,"sst",0.82497134562515,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2017,"sst",0.852934047544,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2018,"sst",0.880331479053035,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2019,"sst",0.907380370117853,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2020,"sst",0.934210477835549,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2021,"sst",0.959758570437392,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2022,"sst",0.983242088830463,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2023,"sst",1.00520015599633,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2024,"sst",1.02598297753991,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2025,"sst",1.04636852187913,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2026,"sst",1.06691109730091,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2027,"sst",1.08749467726995,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2028,"sst",1.10805768464946,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2029,"sst",1.12856683374982,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2030,"sst",1.14900455870846,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2031,"sst",1.16971331532706,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2032,"sst",1.19091426370459,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2033,"sst",1.2124080309171,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2034,"sst",1.23406935983236,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2035,"sst",1.2558170656326,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2036,"sst",1.27759555544754,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2037,"sst",1.29936554537899,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2038,"sst",1.32110031855093,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2039,"sst",1.34278215329289,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2040,"sst",1.36439820501901,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2041,"sst",1.38601984829631,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2042,"sst",1.40768679252422,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2043,"sst",1.42933955350805,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2044,"sst",1.45093886592048,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2045,"sst",1.47245773591975,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2046,"sst",1.4938771218209,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2047,"sst",1.51518336197646,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2048,"sst",1.53636655962891,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2049,"sst",1.5574196299804,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2050,"sst",1.5783375339177,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2051,"sst",1.59894333467303,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2052,"sst",1.6190970991828,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2053,"sst",1.63885195795893,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2054,"sst",1.6582414805403,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2055,"sst",1.67728785247206,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2056,"sst",1.69600636096124,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2057,"sst",1.71440802164492,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2058,"sst",1.73250093870122,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2059,"sst",1.75029117873149,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2060,"sst",1.76778354615372,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2061,"sst",1.78488961280896,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2062,"sst",1.80154562272855,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2063,"sst",1.81779414704825,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2064,"sst",1.83366367980335,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2065,"sst",1.84917463218795,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2066,"sst",1.86434213454589,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2067,"sst",1.87918361208919,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2068,"sst",1.89371116365375,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2069,"sst",1.90792707833751,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2070,"sst",1.92183418827865,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2071,"sst",1.93544129587823,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2072,"sst",1.94873460454963,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2073,"sst",1.96167985938767,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2074,"sst",1.97425421633238,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2075,"sst",1.98644167021292,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2076,"sst",1.99823084167014,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2077,"sst",2.00961351704817,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2078,"sst",2.02058359068144,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2079,"sst",2.03113651273648,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2080,"sst",2.04126887033721,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2081,"sst",2.05102221155416,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2082,"sst",2.06042334397114,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2083,"sst",2.06944642154014,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2084,"sst",2.07807399378299,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2085,"sst",2.08629336740627,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2086,"sst",2.09409517242328,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2087,"sst",2.10148024191715,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2088,"sst",2.10845450538456,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2089,"sst",2.11502597446596,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2090,"sst",2.1212037937237,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2091,"sst",2.1268449240024,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2092,"sst",2.13186577682761,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2093,"sst",2.1363649557825,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2094,"sst",2.1404079715118,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2095,"sst",2.14404074377908,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2096,"sst",2.1472964001375,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2097,"sst",2.15019954425096,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2098,"sst",2.15276891152997,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2099,"sst",2.15501905574075,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2100,"sst",2.15696148283381,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2101,"sst",2.15855624805209,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2102,"sst",2.15980462621101,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2103,"sst",2.16078326909263,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2104,"sst",2.16154642572469,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2105,"sst",2.16213503481567,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2106,"sst",2.16258160830611,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2107,"sst",2.16292355764123,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2108,"sst",2.16318621446325,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2109,"sst",2.16338495475369,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2110,"sst",2.16354097882884,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2111,"sst",2.16367149929558,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2112,"sst",2.16379064892527,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2113,"sst",2.16390958597451,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2114,"sst",2.16403766262548,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2115,"sst",2.16418273419694,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2116,"sst",2.16435188277098,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2117,"sst",2.16455083340137,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2118,"sst",2.16478409107979,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2119,"sst",2.16505514466034,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2120,"sst",2.16536685568267,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2121,"sst",2.16572149827662,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2122,"sst",2.16612087587687,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2123,"sst",2.16656635614675,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2124,"sst",2.16705896176527,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2125,"sst",2.16759944576441,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2126,"sst",2.16818841674218,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2127,"sst",2.16882622151614,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2128,"sst",2.16951295490184,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2129,"sst",2.17024852391854,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2130,"sst",2.17103270063726,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2131,"sst",2.17186515578325,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2132,"sst",2.17274559531542,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2133,"sst",2.1736736210051,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2134,"sst",2.17464855170777,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2135,"sst",2.17566962732367,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2136,"sst",2.17673602404615,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2137,"sst",2.1778467948624,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2138,"sst",2.17900095574414,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2139,"sst",2.1801975242191,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2140,"sst",2.18143553115025,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2141,"sst",2.18271397484551,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2142,"sst",2.18403182746509,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2143,"sst",2.18538808425119,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2144,"sst",2.1867817557591,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2145,"sst",2.18821185947841,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2146,"sst",2.18967740959672,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2147,"sst",2.19117739671389,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2148,"sst",2.19271074440301,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2149,"sst",2.19427630910106,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2150,"sst",2.19587296160396,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2151,"sst",2.19750068954459,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2152,"sst",2.19915523765749,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2153,"sst",2.20082849367866,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2154,"sst",2.20251445722876,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2155,"sst",2.20420841944142,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2156,"sst",2.20590657447857,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2157,"sst",2.20760573568879,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2158,"sst",2.20930320173812,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2159,"sst",2.21099666819687,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2160,"sst",2.21268415361261,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2161,"sst",2.21436388448701,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2162,"sst",2.21603424331007,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2163,"sst",2.21769375569992,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2164,"sst",2.21934113525984,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2165,"sst",2.22097536587606,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2166,"sst",2.22259617735498,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2167,"sst",2.22420386202264,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2168,"sst",2.22579842593023,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2169,"sst",2.22737924486805,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2170,"sst",2.22894539396154,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2171,"sst",2.23049595191605,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2172,"sst",2.23202987939204,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2173,"sst",2.23354610108888,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2174,"sst",2.23504364688817,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2175,"sst",2.23652161063557,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2176,"sst",2.23797899692803,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2177,"sst",2.23941476015751,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2178,"sst",2.2408280855416,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2179,"sst",2.24221824494818,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2180,"sst",2.24358431382745,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2181,"sst",2.24492526360906,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2182,"sst",2.24624005057405,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2183,"sst",2.24752768221179,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2184,"sst",2.24878721931805,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2185,"sst",2.25001793497297,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2186,"sst",2.25121966139026,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2187,"sst",2.25239230068696,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2188,"sst",2.25353526327135,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2189,"sst",2.25464770108896,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2190,"sst",2.25572867335763,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2191,"sst",2.25677716598266,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2192,"sst",2.25779210904872,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2193,"sst",2.25877243855625,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2194,"sst",2.25971759408932,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2195,"sst",2.26062839227471,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2196,"sst",2.26150597512297,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2197,"sst",2.2623503105833,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2198,"sst",2.26316047019279,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2199,"sst",2.26393514181105,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2200,"sst",2.26467299071303,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2201,"sst",2.26537278066482,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2202,"sst",2.26603325420148,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2203,"sst",2.26665313433413,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2204,"sst",2.26723122472971,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2205,"sst",2.26776648725768,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2206,"sst",2.26825807205923,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2207,"sst",2.26870524584834,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2208,"sst",2.26910737137798,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2209,"sst",2.2694639363118,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2210,"sst",2.2697744808437,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2211,"sst",2.27003850982591,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2212,"sst",2.2702555034884,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2213,"sst",2.27042494069149,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2214,"sst",2.27054631277135,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2215,"sst",2.27061913817292,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2216,"sst",2.27064291505041,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2217,"sst",2.27061715252068,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2218,"sst",2.27054133122591,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2219,"sst",2.27041485833059,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2220,"sst",2.27023713931489,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2221,"sst",2.2700075902491,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2222,"sst",2.26972564367632,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2223,"sst",2.26939075042319,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2224,"sst",2.2690024021459,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2225,"sst",2.26856015424427,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2226,"sst",2.26806362635434,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2227,"sst",2.26751249841422,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2228,"sst",2.26690649534493,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2229,"sst",2.26624537071961,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2230,"sst",2.26552890137058,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2231,"sst",2.26475688410773,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2232,"sst",2.26392913365199,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2233,"sst",2.2630454809961,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2234,"sst",2.26210576551236,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2235,"sst",2.26110982727156,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2236,"sst",2.26005750689809,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2237,"sst",2.25894864654055,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2238,"sst",2.25778309119298,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2239,"sst",2.25656068992276,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2240,"sst",2.25528129698654,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2241,"sst",2.25394477268568,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2242,"sst",2.25255098402706,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2243,"sst",2.25109980517933,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2244,"sst",2.24959111627254,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2245,"sst",2.24802480217977,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2246,"sst",2.24640075300925,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2247,"sst",2.24471886475624,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2248,"sst",2.24297903994292,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2249,"sst",2.24118118814461,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2250,"sst",2.23932522640677,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2251,"sst",2.23735511503487,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2252,"sst",2.23524678140362,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2253,"sst",2.23305108431585,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2254,"sst",2.23080092657809,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2255,"sst",2.22851836927956,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2256,"sst",2.2262184511957,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2257,"sst",2.22391151219472,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2258,"sst",2.22160464203967,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2259,"sst",2.21930265668624,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2260,"sst",2.21700874345887,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2261,"sst",2.2147249242614,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2262,"sst",2.2124523717735,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2263,"sst",2.21019164719257,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2264,"sst",2.20794286719283,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2265,"sst",2.20570583438217,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2266,"sst",2.20348012737999,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2267,"sst",2.20126517242124,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2268,"sst",2.19906029319979,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2269,"sst",2.19686475127081,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2270,"sst",2.19467777375654,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2271,"sst",2.19249857604131,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2272,"sst",2.19032637712853,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2273,"sst",2.18816041226863,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2274,"sst",2.18599994095146,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2275,"sst",2.18384425376755,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2276,"sst",2.18169267701992,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2277,"sst",2.17954457649095,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2278,"sst",2.17739935945499,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2279,"sst",2.1752564761402,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2280,"sst",2.17311542008176,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2281,"sst",2.17097572816384,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2282,"sst",2.16883697999218,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2283,"sst",2.16669879711117,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2284,"sst",2.16456084099161,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2285,"sst",2.16242281096567,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2286,"sst",2.16028444288198,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2287,"sst",2.15814554708124,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2288,"sst",2.1560060412957,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2289,"sst",2.15386593148747,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2290,"sst",2.15172528826716,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2291,"sst",2.14958423079895,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2292,"sst",2.14744291520922,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2293,"sst",2.1453015258546,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2294,"sst",2.14316026865542,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2295,"sst",2.14101936584018,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2296,"sst",2.13887905178481,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2297,"sst",2.13673956963413,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2298,"sst",2.13460116856153,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2299,"sst",2.13246410150191,"degC",3.0.0,"9aebf67" +"hector_ssp245.ini",2300,"sst",2.13032862328465,"degC",3.0.0,"9aebf67" diff --git a/tests/testthat/input/README.md b/tests/testthat/input/README.md new file mode 100644 index 000000000..2b9a2e63d --- /dev/null +++ b/tests/testthat/input/README.md @@ -0,0 +1,3 @@ +# tests/testthat/input + +This folder holds input files used by the `test_pulse.R` file. diff --git a/tests/testthat/input/luc_pulse.ini b/tests/testthat/input/luc_pulse.ini new file mode 100644 index 000000000..98a3c2e45 --- /dev/null +++ b/tests/testthat/input/luc_pulse.ini @@ -0,0 +1,374 @@ +; Config file for hector model: ssp245 +;------------------------------------------------------------------------ +[core] +run_name=pulse +startDate=1745 +endDate=1850 +trackingDate=9999 ; year to start tracking (only carbon currently) +do_spinup=1 ; if 1, spin up model before running (default=1) +max_spinup=2000 ; maximum steps allowed for spinup (default=2000) + +;------------------------------------------------------------------------ +[ocean] +enabled=1 ; putting 'enabled=0' will disable any component +spinup_chem=0 ; run surface chemistry during spinup phase? + +tt=72000000 ; 7.2e7 thermohaline circulation, m3/s +tu=49000000 ; 4.9e7 high latitude overturning, m3/s +twi=12500000 ; 1.25e7 warm-intermediate exchange, m3/s +tid=200000000 ; 2.0e8 intermediate-deep exchange, m3/s + +;------------------------------------------------------------------------ +[simpleNbox] +; Initial (preindustrial) carbon pools and fluxes +; These are generally consistent with reconstructed (Siegenthaler and Oeschger +; 1987, 10.1111/j.1600-0889.1987.tb00278.x) and modeled (e.g. Ricciuto 2008, +; 10.1029/2006GB002908; Murakami 2010, 10.1007/s00704-009-0232-8) values. + +; If using biomes (e.g. boreal.veg_c), this file must have entries for +; - all carbon pools +; - the nppv, nppd, and litterd partitioning parameters +; - beta and q10_rh + +atmos_co2=588.071 ; Pg C in CO2, from Murakami et al. (2010) +C0=277.15 ; preindustrial CO2 from table 7.SM.1 IPCC AR6 +;boreal.veg_c=100 ; e.g. +;tropical.veg_c=450 +veg_c=550 ; vegetation, Pg C +;boreal.detritus_c=15 +;tropical.detritus_c=45 +detritus_c=55 ; detritus, Pg C +;boreal.soil_c=1200 +;tropical.soil_c=578 +soil_c=1782 ; soil, Pg C +;boreal.npp_flux0=5.0 +;tropical.npp_flux0=45.0 + +; Permafrost is inactive by default in Hector v3 +; See Woodard et al. 2021, 10.5194/gmd-14-4751-2021 +permafrost_c=0 ; permafrost, Pg C + +npp_flux0=55.9 ; net primary production, Pg C/yr, (calibrated to historical observations) + +; Partitioning parameters +f_nppv=0.35 ; Fraction of NPP to vegetation +f_nppd=0.60 ; Fraction of NPP to detritus (balance to soil) +f_litterd=0.98 ; Fraction of litter flux to detritus (balance to soil) + +; Anthropogenic contributions: emissions, direct air carbon capture and storage, and land use change, Pg C/yr +ffi_emissions=csv:luc_pulse_tables.csv +daccs_uptake=csv:luc_pulse_tables.csv +luc_emissions=csv:luc_pulse_tables.csv +luc_uptake=csv:luc_pulse_tables.csv + +; Optional atmospheric CO2 constraint, ppmv +; If supplied, the model will use these data, ignoring what it calculates +; Any residual between model [CO2] and model [CO2] will be put into the deep ocean +;CO2_constrain=csv:luc_pulse_tables.csv ; + +; Optional net biome production (land-atmosphere C flux) constaint, Pg C/yr +; Positive represents flux to land, negative represents flux to atmosphere +; If supplied, the model will use these data, ignoring what it calculates +;NBP_constrain=csv:tables/nbp_constraint.csv ; + +; CO2 and temperature effects on the carbon cycle +; these are global values, can optionally specify biome-specific ones as above +beta=0 ; calibrated to historical observations +q10_rh=1.0 ; respiration response Q10 (calibrated to historical observations), unitless + +; Optional biome-specific warming factors +; by default, assume 1.0 (i.e., warms as fast as the globe) +;boreal.warmingfactor=1.2 ; i.e., biome will warm 1.2 C for every 1 C globally + +; Albedo effect, in W/m2. The model assumes a constant value if nothing specified +RF_albedo=csv:luc_pulse_tables.csv ; + +;------------------------------------------------------------------------ +[carbon-cycle-solver] +eps_abs=1.0e-6 ; solution tolerance +eps_rel=1.0e-6 ; solution tolerance +dt=0.25 ; default time step +eps_spinup=0.001 ; spinup tolerance (drift), Pg C + +;------------------------------------------------------------------------ +[so2] +SO2_emissions=csv:luc_pulse_tables.csv ; emissions time series +SV=csv:luc_pulse_tables.csv ; volcanic radiative forcing time series + +;------------------------------------------------------------------------ +[CH4] +M0= 731.41 ; 731.41 ppb preindustrial methane IPCC AR6 Table 7.SM.1, the CH4 forcing equations is calibrated to a M0 of 731.41 ppb +Tsoil=160 ; lifetime of soil sink (years) +Tstrat=120 ; lifetime of tropospheric sink (years) +UC_CH4=2.78 ; Tg(CH4)/ppb unit conversion between emissions and concentrations +CH4N=338 ; Natural CH4 emissions (Tgrams) +CH4_emissions=csv:luc_pulse_tables.csv ; emissions time series +;CH4_constrain=csv:luc_pulse_tables.csv ; CH4 concentration constraint + +;------------------------------------------------------------------------ +[OH] +NOX_emissions=csv:luc_pulse_tables.csv ; emissions time series +CO_emissions=csv:luc_pulse_tables.csv ; emissions time series +NMVOC_emissions=csv:luc_pulse_tables.csv ; emissions time series + +TOH0=6.6 ; inital OH lifetime (years) +CNOX=0.0042 ; coefficent for NOX +CCO=-0.000105 ; coefficent for CO +CNMVOC=-0.000315 ; coefficent for NMVOC (non methane VOC) +CCH4=-0.32 ; coefficent for CH4 + +;------------------------------------------------------------------------ +[ozone] +PO3=30.0 ; preindustrial O3 concentration +NOX_emissions=csv:luc_pulse_tables.csv ; emissions time series +CO_emissions=csv:luc_pulse_tables.csv ; emissions time series +NMVOC_emissions=csv:luc_pulse_tables.csv ; emissions time series + +;------------------------------------------------------------------------ +[N2O] +N0=273.87 ; (ppb) preindustrial nitrous oxide from IPCC AR6 table 7.SM.1 +UC_N2O=4.8 ; TgN/ppbv unit conversion between emissions and concentrations +TN2O0=132 ; initial lifetime of N2O, years + +; An example of setting a time series by individual values +; The model will interpolate as necessary between them +N2O_natural_emissions[1750]=9.7 ; default natural emissions based on a best fit to IPCC AR6 N2O RF +N2O_emissions=csv:luc_pulse_tables.csv ; emissions time series +;N2O_constrain=csv:luc_pulse_tables.csv ; N2O concentration constraint + +;------------------------------------------------------------------------ +[forcing] +baseyear=1750 ; when to start reporting; by definition, all F=0 in this year + +; Optional radiative forcing constraint +; If supplied, the model will use these data, ignoring what it calculates +;RF_tot_constrain=csv:tables/CONSTRAINT.csv +delta_co2=0.05 ; (unitless) forcing tropospheric adjustments for CO2 (7.3.2.1 of IPCC AR6) +delta_ch4=-.14 ; (unitless) forcing tropospheric adjustments for CH4 (7.3.2.2 of IPCC AR6) +delta_n2o=0.07 ; (unitless) forcing tropospheric adjustments for N2O (7.3.2.3 of IPCC AR6) +rho_bc=0.0508 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency BC (7.SM.1.3 of IPCC AR6) +rho_oc=-.00621 ; (W yr m–2 C Tg–1) IPCC AR6 radiative efficiency OC (7.SM.1.3.1 of IPCC AR6) +rho_so2=-.00000724 ; (W yr m–2 S Gg-1) IPCC AR6 radiative efficiency SO2 (7.SM.1.3.1 of IPCC AR6) +rho_nh3=-.00208 ; (W yr m–2 NH3Tg–1) IPCC AR6 radiative efficiency NH3 (7.SM.1.3.1 of IPCC AR6) + +; Miscellaneous radiative forcings default set to 0, or read in from a input table, may be used to read in +; additional forcings not modeled by Hector (i.e. solar, bc on snow , contrails from) +;RF_misc=csv:luc_pulse_tables.csv ; +RF_misc[1750]=0 + + + +;------------------------------------------------------------------------ +[temperature] +enabled=1 + +S=2.7 ; equilibrium climate sensitivity for 2xCO2, degC (calibrated to historical) +diff=2.4 ; ocean heat diffusivity, cm2/s (calibrated to historical) +alpha=0.5 ; scaling factor for aerosol forcing, calibrated to historical observations +volscl=1.0 ; scaling factor for volcanic forcing +qco2=3.75 ; 2×CO2 RF (7.3.2 of IPCC AR6) + +; Optional global temperature constraint +; If supplied, the model will use these data, ignoring what it calculates +; tas_constrain=csv:tables/tas_historical.csv + +;------------------------------------------------------------------------ +[bc] +BC_emissions=csv:luc_pulse_tables.csv + +;------------------------------------------------------------------------ +[oc] +OC_emissions=csv:luc_pulse_tables.csv + +;------------------------------------------------------------------------ +[nh3] +NH3_emissions=csv:luc_pulse_tables.csv + +;------------------------------------------------------------------------ +; Halocarbons +; tau (lifetime), rho (radiative efficiency), delta (tropospheric adjustments scalar) + +[CF4_halocarbon] +tau=50000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CF4=0.000099 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CF4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=35.0 ; preindustrial concentration, pptv +molarMass=88.0043 ; grams +CF4_emissions=csv:luc_pulse_tables.csv + +[C2F6_halocarbon] +tau=10000.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_C2F6=0.000261 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_C2F6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=138.01 ; grams +C2F6_emissions=csv:luc_pulse_tables.csv + +[HFC23_halocarbon] +tau=228.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC23=0.000191 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC23=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=70.0 ; grams +HFC23_emissions=csv:luc_pulse_tables.csv + +[HFC32_halocarbon] +tau=5.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC32=0.000111 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC32=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=52.0 ; grams +HFC32_emissions=csv:luc_pulse_tables.csv + +[HFC4310_halocarbon] ; This is equivalent to HFC-43-10mee +tau=17.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC4310=0.000357 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC4310=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=252.0 ; grams +HFC4310_emissions=csv:luc_pulse_tables.csv + +[HFC125_halocarbon] +tau=30.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC125=0.000234 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC125=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.02 ; grams +HFC125_emissions=csv:luc_pulse_tables.csv + +[HFC134a_halocarbon] +tau=14.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC134a=0.000167 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC134a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=102.02 ; grams +HFC134a_emissions=csv:luc_pulse_tables.csv + +[HFC143a_halocarbon] +tau=51.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC143a=0.000168 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC143a=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=84.04 ; grams +HFC143a_emissions=csv:luc_pulse_tables.csv + +[HFC227ea_halocarbon] +tau=36.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC227ea=0.000273 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC227ea=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.03 ; grams +HFC227ea_emissions=csv:luc_pulse_tables.csv + +[HFC245fa_halocarbon] +tau=7.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HFC245fa=0.000245 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HFC245fa=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=134.0 ; grams +HFC245fa_emissions=csv:luc_pulse_tables.csv + +[SF6_halocarbon] +tau=3200.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_SF6=0.000567 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_SF6=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=146.06 ; grams +SF6_emissions=csv:luc_pulse_tables.csv + +[CFC11_halocarbon] +tau=52.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC11=0.000259 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC11=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=137.35 ; grams +CFC11_emissions=csv:luc_pulse_tables.csv + +[CFC12_halocarbon] +tau=102.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC12=0.00032 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC12=0.13 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=120.9 ; grams +CFC12_emissions=csv:luc_pulse_tables.csv + +[CFC113_halocarbon] +tau=93.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC113=0.000301 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC113=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=187.35 ; grams +CFC113_emissions=csv:luc_pulse_tables.csv + +[CFC114_halocarbon] +tau=189 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC114=0.000314 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC114=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=170.9 ; grams +CFC114_emissions=csv:luc_pulse_tables.csv + +[CFC115_halocarbon] +tau=540 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CFC115=0.000246 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CFC115=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=154.45 ; grams +CFC115_emissions=csv:luc_pulse_tables.csv + +[CCl4_halocarbon] +tau=32.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CCl4=0.000166 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CCl4=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=153.8 ; grams +CCl4_emissions=csv:luc_pulse_tables.csv + +[CH3CCl3_halocarbon] +tau=5.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3CCl3=0.000065 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3CCl3=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=133.35 ; grams +CH3CCl3_emissions=csv:luc_pulse_tables.csv + +[halon1211_halocarbon] +tau=16.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1211=0.00003 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1211=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=165.35 ; grams +halon1211_emissions=csv:luc_pulse_tables.csv + +[halon1301_halocarbon] +tau=72.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon1301=0.000299 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon1301=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=148.9 ; grams +halon1301_emissions=csv:luc_pulse_tables.csv + +[halon2402_halocarbon] +tau=28.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_halon2402=0.000312 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_halon2402=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=259.8 ; grams +halon2402_emissions=csv:luc_pulse_tables.csv + +[HCFC22_halocarbon] +tau=11.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC22=0.000214 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC22=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=86.45 ; grams +HCFC22_emissions=csv:luc_pulse_tables.csv + +[HCFC141b_halocarbon] +tau=9.4 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC141b=0.000161 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC141b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=116.9 ; grams +HCFC141b_emissions=csv:luc_pulse_tables.csv + +[HCFC142b_halocarbon] +tau=18.0 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_HCFC142b=0.000193 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_HCFC142b=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +molarMass=100.45 ; grams +HCFC142b_emissions=csv:luc_pulse_tables.csv + +[CH3Cl_halocarbon] +tau=0.9 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Cl=0.000005 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Cl=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=504.0 ; preindustrial concentration, pptv from Saito et al 2007 GRL +molarMass=50.45 ; grams +CH3Cl_emissions=csv:luc_pulse_tables.csv + +[CH3Br_halocarbon] +tau=0.8 ; lifetime in years (Table 7.SM.7 IPPC AR6) +rho_CH3Br=0.000004 ; radiative efficiencies W/m2/ppt (Table 7.SM.7 IPPC AR6) +delta_CH3Br=0.0 ; tropospheric adjustments scalar unitless (7.3.2.4 IPCC AR6) +H0=5.8 ; preindustrial concentration, pptv from Saltzman et al 2004 JGR +molarMass=50.45 ; grams +CH3Br_emissions=csv:luc_pulse_tables.csv diff --git a/tests/testthat/input/luc_pulse_tables.csv b/tests/testthat/input/luc_pulse_tables.csv new file mode 100644 index 000000000..60f63b529 --- /dev/null +++ b/tests/testthat/input/luc_pulse_tables.csv @@ -0,0 +1,560 @@ +; ssp245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; created by hectordata Tue Jan 11 10:27:08 2022 commit fd87739254cdc4bb18c6751d1d8707040a297d5d,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +; UNITS:, PgC year-1, PgC year-1, PgC year-1, PgC year-1, Tg year-1, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg CH4 year-1, ppm, Tg CO year-1, W/m2, W/m2, W/m2, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppt, ppb, Tg N year-1, Tg year-1, Tg NMVOC year-1, Tg N year-1, Tg year-1, ppt, ppt, Gg S year-1, W/m2, ppt, ppt, ppt, ppt, ppt, ppt +Date,ffi_emissions,luc_emissions,daccs_uptake,luc_uptake,BC_emissions,C2F6_constrain,C2F6_emissions,CCl4_constrain,CCl4_emissions,CF4_constrain,CF4_emissions,CFC113_constrain,CFC113_emissions,CFC114_constrain,CFC114_emissions,CFC115_constrain,CFC115_emissions,CFC11_constrain,CFC11_emissions,CFC12_constrain,CFC12_emissions,CH3Br_constrain,CH3Br_emissions,CH3CCl3_emissions,CH3Cl_constrain,CH3Cl_emissions,CH4_constrain,CH4_emissions,CO2_constrain,CO_emissions,RF_misc,RF_albedo,RF_tot_constrain,HCFC141b_constrain,HCFC141b_emissions,HCFC142b_constrain,HCFC142b_emissions,HCFC22_constrain,HCFC22_emissions,HFC125_constrain,HFC125_emissions,HFC134a_constrain,HFC134a_emissions,HFC143a_constrain,HFC143a_emissions,HFC227ea_constrain,HFC227ea_emissions,HFC23_constrain,HFC23_emissions,HFC245_constrain,HFC245fa_emissions,HFC32_constrain,HFC32_emissions,HFC365_constrain,HFC365_emissions,HFC4310_constrain,HFC4310_emissions,N2O_constrain,N2O_emissions,NH3_emissions,NMVOC_emissions,NOX_emissions,OC_emissions,SF6_constrain,SF6_emissions,SO2_emissions,SV,halon1211_constrain,halon1211_emissions,halon1301_constrain,halon1301_emissions,halon2402_constrain,halon2402_emissions +1745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1800,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +1999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 \ No newline at end of file diff --git a/tests/testthat/test_atmosphere.R b/tests/testthat/test_atmosphere.R index b6436c81c..73039757f 100644 --- a/tests/testthat/test_atmosphere.R +++ b/tests/testthat/test_atmosphere.R @@ -1,13 +1,12 @@ -context("Check Atmosphere") -# Check some basic science to make sure Hector's atmosphere behaves as expected. +context("Atmosphere and radiative forcing") +# Check some basic science to make sure Hector's forcing & temperature componet behave as expectd. inputdir <- system.file("input", package = "hector") sampledir <- system.file("output", package = "hector") -rcp45 <- file.path(inputdir, "hector_rcp45.ini") +ssp245 <- file.path(inputdir, "hector_ssp245.ini") # Our defined allowable error, when comparing two values we expect to be # equal differences less than this are assumed to be related to round off error. -# When the differences between the two values are larger than the threshold, they are significant. error_threshold <- 1e-8 test_that("Checking RF values", { @@ -16,32 +15,23 @@ test_that("Checking RF values", { t_dates <- 1850:2100 # Set and run Hector - hc <- newcore(rcp45) + hc <- newcore(ssp245) run(hc, max(t_dates)) - - # Make sure that total SO2 RF is the sum the direct and indirect SO2 RF. - so2_rf <- fetchvars(hc, dates = t_dates, vars = RF_SO2()) - so2_id_rf <- fetchvars(hc, dates = t_dates, vars = c(RF_SO2D(), RF_SO2I())) - sum_so2_id <- aggregate(value ~ scenario + year + units, data = so2_id_rf, FUN = "sum") - - expect_equal(so2_rf$value, sum_so2_id$value, tolerance = error_threshold) - - - # Now check to make sure that the total radiative forcing is equal to the sum of the - # different radiative forcing agents. + # Now check to make sure that the total radiative forcing is equal to the + # sum of the different radiative forcing agents. # Save a copy of the total radiative forcing total_rf <- fetchvars(hc, dates = t_dates, vars = RF_TOTAL()) - # Extract all of the other RF values and calucate the total value. + # Extract all of the other RF values and calculate the total value. rf_list <- c( - RF_T_ALBEDO(), RF_CO2(), RF_N2O(), RF_H2O_STRAT(), RF_O3_TROP(), RF_BC(), - RF_OC(), RF_SO2D(), RF_SO2I(), RF_VOL(), RF_CH4(), RF_CF4(), RF_C2F6(), + RF_ALBEDO(), RF_CO2(), RF_N2O(), RF_H2O_STRAT(), RF_O3_TROP(), RF_BC(), + RF_OC(), RF_SO2(), RF_VOL(), RF_CH4(), RF_CF4(), RF_C2F6(), RF_HFC23(), RF_HFC32(), RF_HFC4310(), RF_HFC125(), RF_HFC134A(), RF_HFC143A(), RF_HFC227EA(), RF_HFC245FA(), RF_SF6(), RF_CFC11(), RF_CFC12(), RF_CFC113(), RF_CFC114(), RF_CFC115(), RF_CCL4(), RF_CH3CCL3(), RF_HCFC22(), RF_HCFC141B(), RF_HCFC142B(), RF_HALON1211(), RF_HALON1301(), - RF_HALON2402(), RF_CH3CL(), RF_CH3BR() + RF_HALON2402(), RF_CH3CL(), RF_CH3BR(), RF_NH3(), RF_ACI(), RF_MISC() ) # Calculate the total RF value from the sum of the individual RF values. @@ -52,4 +42,24 @@ test_that("Checking RF values", { ) expect_equal(total_rf$value, sum_individuals$value, tolerance = error_threshold) + }) + +test_that("Check Temp", { + + # Define the comparison dates + t_dates <- 1850:2100 + + # Set and run Hector + hc <- newcore(ssp245) + run(hc, max(t_dates)) + + # Make sure that the weighted sum of the land and ocean air temps is equal to the + # global mean air temp. This is useful for preserving behavior of the temp component. + land <- fetchvars(hc, t_dates, vars = LAND_TAS())[["value"]] + ocean <- fetchvars(hc, t_dates, vars = OCEAN_TAS())[["value"]] + + flnd <- 0.29 + weighted_sum <- flnd * land + ocean * (1 - flnd) + global_temp_values <- fetchvars(hc, t_dates, vars = GLOBAL_TAS())[["value"]] + expect_equal(global_temp_values, weighted_sum, tolerance = 1e-5) }) diff --git a/tests/testthat/test_biome.R b/tests/testthat/test_biome.R index 7b9f257c7..b9aec3f5b 100644 --- a/tests/testthat/test_biome.R +++ b/tests/testthat/test_biome.R @@ -1,14 +1,17 @@ -context("Running Hector with multiple biomes") +context("Hector with multiple biomes") -rcp45 <- function() { - newcore(system.file("input", "hector_rcp45.ini", - package = "hector" - ), - suppresslogging = TRUE - ) +ssp245 <- function() { + newcore(system.file("input", "hector_ssp245.ini", package = "hector"), + name = "test core", suppresslogging = TRUE) } -test_that("Hector runs with multiple biomes created via INI file.", { +# Save a copy of the default values +core <- ssp245() +default_beta <- fetchvars(core, NA, BETA()) + + + +test_that("Hector runs with multiple biomes created via INI file", { string2core <- function(ini_string, name, ini_file = NULL) { if (is.null(ini_file)) { ini_file <- tempfile() @@ -24,20 +27,20 @@ test_that("Hector runs with multiple biomes created via INI file.", { on.exit(shutdown(core), add = TRUE) dates <- seq(2000, 2100) vars <- c( - ATMOSPHERIC_CO2(), + CONCENTRATIONS_CO2(), RF_TOTAL(), - GLOBAL_TEMP() + GLOBAL_TAS() ) fetchvars(core, dates, vars) } - rcp45_file <- system.file("input", "hector_rcp45.ini", package = "hector") - raw_ini <- trimws(readLines(rcp45_file)) + ssp245_file <- system.file("input", "hector_ssp245.ini", package = "hector") + raw_ini <- trimws(readLines(ssp245_file)) new_ini <- raw_ini # Remove non-biome-specific variables biome_vars <- c( - "veg_c", "detritus_c", "soil_c", "npp_flux0", + "veg_c", "detritus_c", "soil_c", "permafrost_c", "npp_flux0", "beta", "q10_rh", "f_nppv", "f_nppd", "f_litterd" ) biome_rxp <- paste(biome_vars, collapse = "|") @@ -54,6 +57,8 @@ test_that("Hector runs with multiple biomes created via INI file.", { "tropical.detritus_c = 45", "boreal.soil_c = 1200", "tropical.soil_c = 578", + "boreal.permafrost_c = 0", + "tropical.permafrost_c = 0", "boreal.npp_flux0 = 5.0", "tropical.npp_flux0 = 45.0", "boreal.beta = 0.36", @@ -75,7 +80,7 @@ test_that("Hector runs with multiple biomes created via INI file.", { regexec(".*?=csv:(.*?\\.csv)", new_ini[icsv]) ) csv_paths <- vapply(csv_paths_l, `[[`, character(1), 2) - csv_full_paths <- file.path(dirname(rcp45_file), csv_paths) + csv_full_paths <- file.path(dirname(ssp245_file), csv_paths) new_ini_l <- Map( gsub, pattern = csv_paths, @@ -85,10 +90,10 @@ test_that("Hector runs with multiple biomes created via INI file.", { new_ini[icsv] <- unlist(new_ini_l, use.names = FALSE) biome_result <- quickrun(new_ini, "biome") - rcp45_result <- quickrun(NULL, "default", ini_file = rcp45_file) + ssp245_result <- quickrun(NULL, "default", ini_file = ssp245_file) - result_diff <- rcp45_result$value - biome_result$value - diff_summary <- tapply(result_diff, rcp45_result$variable, sum) + result_diff <- ssp245_result$value - biome_result$value + diff_summary <- tapply(result_diff, ssp245_result$variable, sum) expect_true(all(abs(diff_summary) > 0)) # Add the warming tag @@ -97,15 +102,15 @@ test_that("Hector runs with multiple biomes created via INI file.", { "tropical.warmingfactor = 1.0" ), after = isnbox) warm_biome_result <- quickrun(warm_biome, "warm_biome") - default_tgav <- rcp45_result[ - rcp45_result[["variable"]] == "Tgav", + default_tas <- ssp245_result[ + ssp245_result[["variable"]] == GLOBAL_TAS(), "value" ] - warm_tgav <- warm_biome_result[ - warm_biome_result[["variable"]] == "Tgav", + warm_tas <- warm_biome_result[ + warm_biome_result[["variable"]] == GLOBAL_TAS(), "value" ] - expect_true(mean(default_tgav) < mean(warm_tgav)) + expect_true(mean(default_tas) != mean(warm_tas)) # Try to add a fake biome. This should fail because other variables # haven't been initialized. @@ -119,7 +124,7 @@ test_that("Hector runs with multiple biomes created via INI file.", { }) test_that("Creating new biomes via set/fetchvar is prohibited", { - core <- rcp45() + core <- ssp245() b1 <- fetchvars(core, NA, BETA()) b2 <- fetchvars(core, NA, BETA("global")) expect_equal(b1$value, b2$value) @@ -134,16 +139,17 @@ test_that("Creating new biomes via set/fetchvar is prohibited", { }) test_that("Low-level biome creation functions work", { - core <- rcp45() + core <- ssp245() + default_beta <- fetchvars(core, NA, BETA()) test_that("Biomes can be created", { - expect_silent(invisible(create_biome_impl(core, "testbiome"))) + expect_silent(invisible(hector:::create_biome_impl(core, "testbiome"))) expect_equal(get_biome_list(core), c("global", "testbiome")) - expect_equal(fetchvars(core, NA, BETA("testbiome"))[["value"]], 0.36) + expect_equal(fetchvars(core, NA, BETA("testbiome"))[["value"]], default_beta[["value"]]) expect_equal(fetchvars(core, NA, VEG_C("testbiome"))[["value"]], 0) }) test_that("Biomes can be deleted", { - expect_silent(invisible(delete_biome_impl(core, "testbiome"))) + expect_silent(invisible(hector:::delete_biome_impl(core, "testbiome"))) expect_equal(get_biome_list(core), "global") expect_error( fetchvars(core, NA, BETA("testbiome")), @@ -155,11 +161,11 @@ test_that("Low-level biome creation functions work", { ) }) # Check that running the core still works after all of this - expect_silent(invisible(run(core))) + expect_true(all(class(run(core)) == c("hcore", "environment"))) }) test_that("Correct way to create new biomes", { - core <- rcp45() + core <- ssp245() gbeta <- fetchvars(core, NA, BETA()) expect_equal(get_biome_list(core), "global") invisible(rename_biome(core, "global", "permafrost")) @@ -168,16 +174,12 @@ test_that("Correct way to create new biomes", { pbeta <- fetchvars(core, NA, "permafrost.beta") expect_equal(pbeta[["variable"]], BETA("permafrost")) expect_equal(pbeta[["value"]], gbeta[["value"]]) - expect_silent(invisible(run(core))) - results_pf <- fetchvars(core, 2000:2100) + expect_true(is.environment(run(core))) - # This suppresses a bogus warning about the condition type of the - # resulting error. - suppressWarnings( - expect_error(create_biome_impl(core, "permafrost"), - "Biome 'permafrost' is already in `biome_list`") - ) - invisible(create_biome_impl(core, "empty")) + results_pf <- fetchvars(core, 2000:2100) + expect_error(create_biome(core, "permafrost"), "Biome 'permafrost' is already in `biome_list`") + expect_error(invisible(create_biome(core, "empty")), + 'argument "veg_c0" is missing, with no default', fixed = FALSE) expect_equal(get_biome_list(core), c("permafrost", "empty")) expect_equal(fetchvars(core, NA, BETA("empty"))[["value"]], pbeta[["value"]]) expect_silent(invisible(run(core))) @@ -186,103 +188,87 @@ test_that("Correct way to create new biomes", { }) test_that("Split biomes, and modify parameters", { - core <- rcp45() + core <- ssp245() invisible(rename_biome(core, "global", "default")) expect_equal(get_biome_list(core), "default") - global_veg <- sendmessage(core, GETDATA(), VEG_C("default"), 0, NA, "")[["value"]] + global_veg <- fetchvars(core, dates = NA, vars = VEG_C("default"))[["value"]] invisible(run(core)) r_global <- fetchvars(core, 2000:2100) r_global_pools <- fetchvars(core, 2000:2100, c(VEG_C("default"), DETRITUS_C("default"), SOIL_C("default"))) + r_global_pools$biome <- gsub("^(.*)\\.(.*)", "\\1", r_global_pools$variable) r_global_pools$variable <- gsub("^(.*)\\.(.*)", "\\2", r_global_pools$variable) r_global_totals <- aggregate(value ~ year + variable, data = r_global_pools, sum) invisible(reset(core)) fsplit <- 0.1 - split_biome(core, "default", c("non-pf", "permafrost"), - fveg_c = c(1 - fsplit, fsplit) - ) + split_biome(core, "default", c("non-pf", "permafrost"), fveg_c = c(1 - fsplit, fsplit)) expect_equal(get_biome_list(core), c("non-pf", "permafrost")) - default_veg <- sendmessage(core, GETDATA(), VEG_C("non-pf"), 0, NA, "")[["value"]] - permafrost_veg <- sendmessage(core, GETDATA(), VEG_C("permafrost"), 0, NA, "")[["value"]] + + # The non-pool settings should be identical for the biomes + x <- hector:::get_biome_inits(core, "non-pf") + y <- hector:::get_biome_inits(core, "permafrost") + expect_identical(x[F_NPPD()], y[F_NPPD()]) + expect_identical(x[F_NPPV()], y[F_NPPV()]) + expect_identical(x[F_LITTERD()], y[F_LITTERD()]) + expect_identical(x[BETA()], y[BETA()]) + expect_identical(x[Q10_RH()], y[Q10_RH()]) + expect_identical(x[WARMINGFACTOR()], y[WARMINGFACTOR()]) + + default_veg <- fetchvars(core, dates = NA, vars = VEG_C("non-pf"))[["value"]] + permafrost_veg <- fetchvars(core, dates = NA, vars = VEG_C("permafrost"))[["value"]] + # Also check that trying to get global `VEG_C()` will retrieve the total - global_veg2 <- sendmessage(core, GETDATA(), VEG_C(), 0, NA, "")[["value"]] - global_veg3 <- sendmessage(core, GETDATA(), VEG_C("global"), 0, NA, "")[["value"]] + global_veg2 <- fetchvars(core, dates = NA, vars = VEG_C())[["value"]] + global_veg3 <- fetchvars(core, dates = NA, vars = VEG_C("global"))[["value"]] expect_equal(global_veg2, global_veg3) expect_equivalent(default_veg, (1 - fsplit) * global_veg2) expect_equivalent(permafrost_veg, fsplit * global_veg2) expect_equivalent(default_veg + permafrost_veg, global_veg2) + + # Sum of biome-specific pools should exactly equal global results at + # each time step. This is a stringent test! + reset(core, core$reset_date) invisible(run(core)) r_biome <- fetchvars(core, 2000:2100) + # Climate should be the same expect_equivalent(r_global, r_biome) - - # Sum of biome-specific pools should exactly equal global results at - # each time step. This is a robust test! - r_biome_data <- fetchvars(core, 2000:2100, c( - VEG_C("non-pf"), VEG_C("permafrost"), - DETRITUS_C("non-pf"), DETRITUS_C("permafrost"), - SOIL_C("non-pf"), SOIL_C("permafrost") - ), - scenario = "default pf" - ) + # Summed pools should be the same + r_biome_data <- fetchvars(core, 2000:2100, c(VEG_C("non-pf"), VEG_C("permafrost"), + DETRITUS_C("non-pf"), DETRITUS_C("permafrost"), + SOIL_C("non-pf"), SOIL_C("permafrost")), + scenario = "default pf") r_biome_data$biome <- gsub("^(.*)\\.(.*)", "\\1", r_biome_data$variable) r_biome_data$variable <- gsub("^(.*)\\.(.*)", "\\2", r_biome_data$variable) r_biome_totals <- aggregate(value ~ year + variable, data = r_biome_data, sum) expect_equivalent(r_global_totals, r_biome_totals) - # Ramping up the warming factor for permafrost should decrease its - # detritus and soil C pools (because respiration is much faster) - setvar(core, NA, WARMINGFACTOR("permafrost"), 3.0, NA) - invisible(run(core)) - r_warm_data <- fetchvars(core, 2000:2100, c( - VEG_C("non-pf"), VEG_C("permafrost"), - DETRITUS_C("non-pf"), DETRITUS_C("permafrost"), - SOIL_C("non-pf"), SOIL_C("permafrost") - ), - scenario = "warm pf" - ) - r_warm_data$biome <- gsub("^(.*)\\.(.*)", "\\1", r_warm_data$variable) - r_warm_data$variable <- gsub("^(.*)\\.(.*)", "\\2", r_warm_data$variable) - expect_lt( - subset(r_warm_data, biome == "permafrost" & - variable == "detritus_c" & - year == 2100)[["value"]], - subset(r_biome_data, biome == "permafrost" & - variable == "detritus_c" & - year == 2100)[["value"]] - ) - expect_lt( - subset(r_warm_data, biome == "permafrost" & - variable == "soil_c" & - year == 2100)[["value"]], - subset(r_biome_data, biome == "permafrost" & - variable == "soil_c" & - year == 2100)[["value"]] - ) + # Certain changes should always produce higher atmospheric CO2 test_higher_co2 <- function(var_f, value) { - core <- rcp45() + core <- ssp245() orig_val <- fetchvars(core, NA, var_f())[["value"]] invisible(run(core)) - basic <- fetchvars(core, 2000:2100, ATMOSPHERIC_CO2()) + basic <- fetchvars(core, 2000:2100, CONCENTRATIONS_CO2()) # Create two biomes, change one of the parameters invisible(split_biome(core, "global", c("a", "b"))) setvar(core, NA, var_f("b"), value, NA) # Check that only the one parameter was changed expect_equal(fetchvars(core, NA, var_f("a"))[["value"]], orig_val) expect_equal(fetchvars(core, NA, var_f("b"))[["value"]], value) + reset(core, core$reset_date) invisible(run(core)) # Check that the new result had higher CO2 than original one - new <- fetchvars(core, 2000:2100, ATMOSPHERIC_CO2()) + new <- fetchvars(core, 2000:2100, CONCENTRATIONS_CO2()) expect_true(all(basic[["value"]] < new[["value"]])) } + # Lower beta means higher CO2 + test_higher_co2(BETA, 0.1) # Higher Q10 means higher CO2 test_higher_co2(Q10_RH, 4) - # Lower f_nppv means higher CO2 - test_higher_co2(F_NPPV, 0.2) # Higher f_nppd means higher CO2 (because detritus respires faster than soil) test_higher_co2(F_NPPD, 0.64) # Higher f_litterd means higher CO2 (same reason) @@ -290,16 +276,20 @@ test_that("Split biomes, and modify parameters", { }) test_that("More than 2 biomes", { - core <- rcp45() - global_vegc <- fetchvars(core, NA, VEG_C()) - - # Using default arguments - biomes <- paste0("b", 1:5) - veg_c_biomes <- vapply(biomes, VEG_C, character(1)) - split_biome(core, "global", biomes) - expect_equal(get_biome_list(core), biomes) - invisible(run(core)) - invisible(reset(core)) - biome_vegc <- fetchvars(core, NA, veg_c_biomes) - expect_equivalent(sum(biome_vegc[["value"]]), global_vegc[["value"]]) + save_this_year <- 2020 + core <- ssp245() + invisible(run(core)) + global_vegc <- fetchvars(core, dates = save_this_year, VEG_C()) + + # Using default arguments + invisible(reset(core)) + biomes <- paste0("b", 1:5) + veg_c_biomes <- vapply(biomes, VEG_C, character(1)) + split_biome(core, "global", biomes) + expect_equal(get_biome_list(core), biomes) + invisible(reset(core)) + invisible(run(core)) + + biome_vegc <- fetchvars(core, save_this_year, veg_c_biomes) + expect_equivalent(sum(biome_vegc[["value"]]), global_vegc[["value"]]) }) diff --git a/tests/testthat/test_concforced.R b/tests/testthat/test_constraints.R similarity index 58% rename from tests/testthat/test_concforced.R rename to tests/testthat/test_constraints.R index ed6664841..f5178748c 100644 --- a/tests/testthat/test_concforced.R +++ b/tests/testthat/test_constraints.R @@ -1,6 +1,6 @@ -context("Run concentration forced Hector") +context("Hector running with constraints") -rcp45 <- function() newcore(system.file("input", "hector_rcp45.ini", package = "hector")) +ssp245 <- function() newcore(system.file("input", "hector_ssp245.ini", package = "hector")) test_that("Concentration-forced runs work for halocarbons", { @@ -8,22 +8,22 @@ test_that("Concentration-forced runs work for halocarbons", { # for all of Hector's HFCs. But in the "concentration driven runs via INI file" test # we check all of the different halocarbons. # 1. Set up Hector to use HFC23 concentrations as a constraint to make sure - # that the core can read in HFC constraints and produce identical restults + # that the core can read in HFC constraints and produce identical results # to test the functionality of the core. # 2. Perterb the concentrations to test that applying the constraint has downstream # consequences, impacts global mean temperature. # Run emission driven Hector - hc <- rcp45() + hc <- ssp245() invisible(run(hc)) # Save the dates and output variables to test. dates <- seq(startdate(hc), getdate(hc)) - outvars <- c(GLOBAL_TEMP(), "HFC23_concentration", EMISSIONS_HFC23()) + outvars <- c(GLOBAL_TAS(), "HFC23_concentration", EMISSIONS_HFC23()) # Extract the emission driven results, saving a copy of the HFC23 - # concentrations and emission seperately to manipulate. + # concentrations and emission separately to manipulate. emissOut <- fetchvars(hc, dates, outvars) emissOut_HFCconc <- subset(emissOut, variable == "HFC23_concentration") emissOut_HFCemiss <- subset(emissOut, variable == EMISSIONS_HFC23()) @@ -32,7 +32,8 @@ test_that("Concentration-forced runs work for halocarbons", { setvar(hc, emissOut_HFCconc$year, HFC23_CONSTRAIN(), emissOut_HFCconc$value, - getunits(HFC23_CONSTRAIN())) + getunits(HFC23_CONSTRAIN()) + ) invisible(reset(hc)) invisible(run(hc)) conOut <- fetchvars(hc, dates, outvars) @@ -46,7 +47,7 @@ test_that("Concentration-forced runs work for halocarbons", { invisible(reset(hc)) invisible(run(hc)) - # The HCF concentrations should equal the constrainnt read in. + # The HCF concentrations should equal the constraint read in. expect_equal(fetchvars(hc, dates, "HFC23_concentration")$value, new_HFC_con) # Compare the outputs from the emission driven and the perturbed @@ -60,17 +61,17 @@ test_that("Concentration-forced runs work for halocarbons", { test_that("Concentration-forced runs work for CH4", { # Run emission driven Hector - hc <- rcp45() + hc <- ssp245() invisible(run(hc)) # Save the dates and output variables to test. dates <- seq(startdate(hc), getdate(hc)) - outvars <- c(GLOBAL_TEMP(), ATMOSPHERIC_CH4(), EMISSIONS_CH4()) + outvars <- c(GLOBAL_TAS(), CONCENTRATIONS_CH4(), EMISSIONS_CH4(), RF_CH4()) # Extract the emission driven results, saving a copy of the CH4 - # concentrations and emission seperately to manipulate. + # concentrations and emission separately to manipulate. emissOut <- fetchvars(hc, dates, outvars) - emissOut_CH4conc <- subset(emissOut, variable == ATMOSPHERIC_CH4()) + emissOut_CH4conc <- subset(emissOut, variable == CONCENTRATIONS_CH4()) emissOut_CH4emiss <- subset(emissOut, variable == EMISSIONS_CH4()) # Set up and run Hector with constrained CH4 concentrations. @@ -92,8 +93,8 @@ test_that("Concentration-forced runs work for CH4", { invisible(reset(hc)) invisible(run(hc)) - # The CH4 concentrations should equal the constrainnt read in. - expect_equal(fetchvars(hc, dates, ATMOSPHERIC_CH4())$value, new_CH4_con) + # The CH4 concentrations should equal the constraint read in. + expect_equal(fetchvars(hc, dates, CONCENTRATIONS_CH4())$value, new_CH4_con) # Compare the outputs from the emission driven and the perturbed # concentration driven runs. Since the CH4 concentration was increased and @@ -101,23 +102,25 @@ test_that("Concentration-forced runs work for CH4", { # concentration driven runs. new_out <- fetchvars(hc, 2000:2100, outvars) to_compare <- subset(conOut, year %in% 2000:2100) + names(new_out) <- c("scenario", "year", "variable", "new_value", "units") + expect_true(all(new_out$value >= to_compare$value)) }) test_that("Concentration-forced runs work for N2O", { # Run emission driven Hector - hc <- rcp45() + hc <- ssp245() invisible(run(hc)) # Save the dates and output variables to test. dates <- seq(startdate(hc), getdate(hc)) - outvars <- c(GLOBAL_TEMP(), ATMOSPHERIC_N2O(), EMISSIONS_N2O()) + outvars <- c(GLOBAL_TAS(), CONCENTRATIONS_N2O(), EMISSIONS_N2O(), RF_N2O()) # Extract the emission driven results, saving a copy of the N2O - # concentrations and emission seperately to manipulate. + # concentrations and emission separately to manipulate. emissOut <- fetchvars(hc, dates, outvars) - emissOut_N2Oconc <- subset(emissOut, variable == ATMOSPHERIC_N2O()) + emissOut_N2Oconc <- subset(emissOut, variable == CONCENTRATIONS_N2O()) emissOut_N2Oemiss <- subset(emissOut, variable == EMISSIONS_N2O()) # Set up and run Hector with constrained N2O concentrations. @@ -140,7 +143,7 @@ test_that("Concentration-forced runs work for N2O", { invisible(run(hc)) # The N2O concentrations should equal the constrainnt read in. - expect_equal(fetchvars(hc, dates, ATMOSPHERIC_N2O())$value, new_N2O_con) + expect_equal(fetchvars(hc, dates, CONCENTRATIONS_N2O())$value, new_N2O_con) # Compare the outputs from the emission driven and the perturbed # concentration driven runs. Since the N2O concentration was increased and @@ -155,143 +158,51 @@ test_that("Atmospheric CO2 concentrations can be constrained", { # Variables and years to save. years <- 1850:2100 - vars <- c(ATMOSPHERIC_CO2(), GLOBAL_TEMP(), RF_TOTAL(), RF_CO2()) + vars <- c(CONCENTRATIONS_CO2(), GLOBAL_TAS(), RF_TOTAL(), RF_CO2()) - # Initate a Hector core and save results. - hc <- rcp45() + # Instantiate a Hector core and save results. + hc <- ssp245() run(hc) - rcp45_out <- fetchvars(hc, years, vars) - rcp45_conc <- subset(rcp45_out, variable == ATMOSPHERIC_CO2()) + ssp245_out <- fetchvars(hc, years, vars) + ssp245_conc <- subset(ssp245_out, variable == CONCENTRATIONS_CO2()) - constrained_values <- rcp45_conc$value * 3 + constrained_values <- ssp245_conc$value * 3 setvar(hc, years, CO2_CONSTRAIN(), constrained_values, getunits(CO2_CONSTRAIN())) reset(hc) run(hc) - # Make sure that the atmospheric CO2 maches the constraint. + # Make sure that the atmospheric CO2 matches the constraint. hico2_out <- fetchvars(hc, years, vars) - hico2_conc <- subset(hico2_out, variable == ATMOSPHERIC_CO2()) + hico2_conc <- subset(hico2_out, variable == CONCENTRATIONS_CO2()) expect_equal(hico2_conc$value, constrained_values) # The run with the higher CO2 should be warmer, with a higher total and CO2 RF. - expect_true(all(hico2_out$value >= rcp45_out$value)) + expect_true(all(hico2_out$value >= ssp245_out$value)) # Now test what happens when the CO2 concentrations are decreased - constrained_values <- rcp45_conc$value * 0.5 + constrained_values <- ssp245_conc$value * 0.5 setvar(hc, years, CO2_CONSTRAIN(), constrained_values, getunits(CO2_CONSTRAIN())) reset(hc) run(hc) # Extract the results from the low CO2 run lowco2_out <- fetchvars(hc, years, vars) - lowco2_conc <- subset(lowco2_out, variable == ATMOSPHERIC_CO2()) + lowco2_conc <- subset(lowco2_out, variable == CONCENTRATIONS_CO2()) expect_equal(lowco2_conc$value, constrained_values) # The run with the higher CO2 should be warmer, with a higher total and CO2 RF. - expect_true(all(lowco2_out$value <= rcp45_out$value)) -}) - -# Instead of using the R wrapper to set up the concetnration driven runs -# manipulate the underlying ini file. This tests to make sure the underly C++ -# code works. -test_that("Concentration driven runs via INI file works", { - - # Read in the ini file and find all of the lines in the ini file that are commented out - # they will all start with ";" - ini_txt_all <- readLines(system.file("input", "hector_rcp45.ini", package = "hector")) - ini_txt <- grep("^ *;", ini_txt_all, value = TRUE, invert = TRUE) - - # Parese out all of the types of the halocarbons. - rxp <- "\\[([[:alnum:]]+)_halocarbon\\]" - halocarbs <- gsub(rxp, "\\1", grep(rxp, ini_txt, value = TRUE)) - - # A vector of all the concentrations to check. - outvars <- c( - ATMOSPHERIC_CO2(), - ATMOSPHERIC_CH4(), - ATMOSPHERIC_N2O(), - paste0(halocarbs, "_concentration") - ) - - # Run Hector and save all of the concentrations. - hc <- rcp45() - invisible(run(hc)) - yrs <- seq(startdate(hc), enddate(hc)) - results <- fetchvars(hc, yrs, outvars) - - # Format the data the data frame concentrations into a format that can be used as Hector input. - results_sub <- results[, c("year", "variable", "value")] - wide <- reshape(results_sub, v.names = "value", idvar = "year", - timevar = "variable", direction = "wide") - names(wide) <- gsub("value\\.", "", names(wide)) - names(wide)[names(wide) == "year"] <- "Date" - names(wide)[names(wide) == "Ca"] <- CO2_CONSTRAIN() - names(wide)[names(wide) == "CH4"] <- CH4_CONSTRAIN() - names(wide)[names(wide) == "N2O"] <- N2O_CONSTRAIN() - names(wide) <- gsub("_concentration$", "_constrain", names(wide)) - - # Save the concentration table, note that this must be written out - # so that the ini can read it in. - tmp_dir <- tempfile() - dir.create(tmp_dir, showWarnings = FALSE) - tmpfile <- file.path(tmp_dir, "test_conc.csv") - write.csv(wide, tmpfile, row.names = FALSE, quote = FALSE) - - # Add lines of text to the ini that create the different - # concentration constraints. The constraints will use the - # concentration time series stored in the data files. - ini_txt <- append( - ini_txt, - paste0("N2O_constrain=csv:", tmpfile), - grep("\\[N2O\\]", ini_txt) - ) - - ini_txt <- append( - ini_txt, - paste0("CH4_constrain=csv:", tmpfile), - grep("\\[CH4\\]", ini_txt) - ) - - for (h in halocarbs) { - ini_txt <- append( - ini_txt, - paste0(h, "_constrain=csv:", tmpfile), - grep(paste0("\\[", h, "_halocarbon", "\\]"), ini_txt) - ) - } - - - # Copy over the emission files from the input directory to the same location as the - # the concentration constraints csv file. This is required by the Hector core. - tmprcp45_dir <- file.path(dirname(tmp_dir), "emissions") - dir.create(tmprcp45_dir, showWarnings = FALSE, recursive = TRUE) - file.copy(system.file("input", "emissions", "RCP45_emissions.csv", - package = "hector"), tmprcp45_dir) - file.copy(system.file("input", "emissions", "volcanic_RF.csv", - package = "hector"), tmprcp45_dir) - - # Write out the new ini file. - tmpini <- tempfile(fileext = ".ini") - writeLines(ini_txt, tmpini) - - # Run Hector using the new ini file and extract the results. - hc2 <- newcore(tmpini) - invisible(run(hc2)) - results2 <- fetchvars(hc2, yrs, outvars) - - # The results should be equal. - expect_equivalent(results, results2) + expect_true(all(lowco2_out$value <= ssp245_out$value)) }) test_that("Discontinuous constraint works", { # Set up a Hector core. - hc <- rcp45() + hc <- ssp245() all_years <- seq(startdate(hc), enddate(hc)) # Create two CO2 constraints for two different time chunks, since # the purpose of this test is to make sure that the constraints work - # if they are discontinuous so these two chuncks MUST be discontinuous. + # if they are discontinuous so these two chunks MUST be discontinuous. ca_years_1 <- 1850:1860 ca_vals_1 <- rep(278, length(ca_years_1)) ca_years_2 <- 1870:1880 @@ -309,13 +220,15 @@ test_that("Discontinuous constraint works", { # Make sure we can retrieve all these values. out_rf <- fetchvars(hc, all_years, RF_CO2()) - out_ca <- fetchvars(hc, all_years, ATMOSPHERIC_CO2()) + out_ca <- fetchvars(hc, all_years, CONCENTRATIONS_CO2()) # RFs and concentrations during the constraint period are constant, # they should be since we read in constant CO2 concentrations. - expect_equal(length(unique(out_rf[out_rf$year %in% ca_years_1, "value"])), 1) - expect_equal(length(unique(out_rf[out_rf$year %in% ca_years_2, "value"])), 1) - + # Assume that if the year to year change is less than the threshold + # then the constant CO2 concentrations were held true. + threshold <- 1e-5 + expect_true(all(abs(diff(out_rf[out_rf$year %in% ca_years_1, "value"])) <= threshold)) + expect_true(all(abs(diff(out_rf[out_rf$year %in% ca_years_2, "value"])) <= threshold)) expect_equal(out_ca[out_ca$year %in% ca_years_1, "value"], ca_vals_1) expect_equal(out_ca[out_ca$year %in% ca_years_2, "value"], ca_vals_2) @@ -326,10 +239,10 @@ test_that("Discontinuous constraint works", { # Make sure that the CO2 concentration matches the constraints read in during the two # different constraint periods. - expect_equal(fetchvars(hc, min(ca_years_1), ATMOSPHERIC_CO2())$value, ca_vals_1[1]) - expect_equal(fetchvars(hc, max(ca_years_1), ATMOSPHERIC_CO2())$value, ca_vals_1[1]) - expect_equal(fetchvars(hc, min(ca_years_2), ATMOSPHERIC_CO2())$value, ca_vals_2[1]) - expect_equal(fetchvars(hc, max(ca_years_2), ATMOSPHERIC_CO2())$value, ca_vals_2[1]) + expect_equal(fetchvars(hc, min(ca_years_1), CONCENTRATIONS_CO2())$value, ca_vals_1[1]) + expect_equal(fetchvars(hc, max(ca_years_1), CONCENTRATIONS_CO2())$value, ca_vals_1[1]) + expect_equal(fetchvars(hc, min(ca_years_2), CONCENTRATIONS_CO2())$value, ca_vals_2[1]) + expect_equal(fetchvars(hc, max(ca_years_2), CONCENTRATIONS_CO2())$value, ca_vals_2[1]) # You should NOT be able to retrieve constraints before, between, or after # user-specified values. @@ -338,3 +251,44 @@ test_that("Discontinuous constraint works", { expect_true(all(is.na(ca_before$value))) expect_true(all(!is.nan(ca_before$value))) }) + +test_that("tas constraint works", { + t2000 <- 2.0 + hc <- ssp245() + setvar(hc, 2000, TAS_CONSTRAIN(), t2000, getunits(TAS_CONSTRAIN())) + invisible(run(hc)) + + # constraint returns NA for non-set years + constraint_otheryear <- fetchvars(hc, 1999, vars = TAS_CONSTRAIN()) + expect_true(is.na(constraint_otheryear$value)) + # constraint returns correct value for set year + constraint_year <- fetchvars(hc, 2000, vars = TAS_CONSTRAIN()) + expect_equal(constraint_year$value, t2000) + + x <- fetchvars(hc, 1999:2001, vars = GLOBAL_TAS()) + + expect_lt(x$value[1], t2000) # global tas should be nowhere near 2C the year before, + expect_equal(x$value[2], t2000) # identical to the constraint in 2000, + expect_lt(x$value[3], t2000) # and again lower the year after +}) + +test_that("NBP constraint works", { + yr <- 2000 + nbp2000 <- 1.0 + hc <- ssp245() + setvar(hc, 2000, NBP_CONSTRAIN(), nbp2000, getunits(NBP_CONSTRAIN())) + invisible(run(hc)) + + # constraint returns NA for non-set years + constraint_otheryear <- fetchvars(hc, 1999, vars = NBP_CONSTRAIN()) + expect_true(is.na(constraint_otheryear$value)) + # constraint returns correct value for set year + constraint_year <- fetchvars(hc, 2000, vars = NBP_CONSTRAIN()) + expect_equal(constraint_year$value, nbp2000) + + x <- fetchvars(hc, 1999:2001, vars = NBP()) + + expect_false(x$value[1] == nbp2000) # NBP should be higher than constraint the year before, + expect_equal(x$value[2], nbp2000) # identical to the constraint in 2000, + expect_false(x$value[3] == nbp2000) # and again higher the year after +}) diff --git a/tests/testthat/test_fxns.R b/tests/testthat/test_fxns.R new file mode 100644 index 000000000..4926ae548 --- /dev/null +++ b/tests/testthat/test_fxns.R @@ -0,0 +1,14 @@ +context("fxns table") + +test_that("fxn retrieval works.", { + strs <- c("beta", "S", "q10_rh") + fxns <- getfxn(strs) + expected_fxns <- c("BETA()", "ECS()", "Q10_RH()") + + expect_equal(fxns, expected_fxns) +}) + +test_that("Invalid string retrieval warns.", { + vars <- c("fake") + expect_warning(getfxn(vars), "Functions for the following are not found: fake") +}) diff --git a/tests/testthat/test_hector.R b/tests/testthat/test_hector.R index fbb3da641..12a4e1c31 100644 --- a/tests/testthat/test_hector.R +++ b/tests/testthat/test_hector.R @@ -1,7 +1,7 @@ context("Hector core-handling functions") inputdir <- system.file("input", package = "hector") -inifile <- file.path(inputdir, "hector_rcp45.ini") +inifile <- file.path(inputdir, "hector_ssp245.ini") test_that("Running a single scenario returns proper outputs", { @@ -20,7 +20,7 @@ test_that("Running a single scenario returns proper outputs", { expect_equal(data_years, years) # Test that all variables are present - vars <- c("Ca", "Ftot", "FCO2", "Tgav") + vars <- c("CO2_concentration", "RF_tot", "RF_CO2", "global_tas") expect_identical(unique(sce$variable), vars) # Test that units are correct diff --git a/tests/testthat/test_inis.R b/tests/testthat/test_inis.R index 7d91ddd99..aada9d6b6 100644 --- a/tests/testthat/test_inis.R +++ b/tests/testthat/test_inis.R @@ -1,11 +1,89 @@ -context("Test inis") +context("Test ini files") + +ini_list <- list.files(system.file(package = "hector", "input"), pattern = "ini") +input_table <- hector::inputstable # Make sure that all of the ini files can generate an actual hector core. test_that("All ini files can be used to set up a hector core", { - ini_list <- list.files(system.file(package = "hector", "input"), pattern = "ini") - for (ini in ini_list) { hc <- isactive(newcore(system.file(package = "hector", file.path("input", ini)))) expect_true(hc) } }) + +# Check that all *required* parameters in the input_params csv are in all ini files... +test_that("All required csv params are in all ini files...", { + # Identify required unique parameter names + required <- subset(input_table, required == "y") + input_params <- sort(unique(required$parameter)) + + expect_warning( + for (ini in ini_list) { + ini_file <- readLines(system.file("input", ini, package = "hector")) + + # Pull out lines with = sign, meaning parameters and definitions + eq <- ini_file[grepl("=", ini_file)] + + # Function to extract the string before the equal sign, the parameter name + split_equal <- function(str) { + x <- strsplit(str, "=") + unlist(x)[[1]] + } + + param <- unlist(lapply(eq, split_equal)) + + # Remove symbols + ini_params <- gsub(";|\\[1750]| ", "", x = param) + + # Compare the two lists of parameters + missing_param <- setdiff(input_params, ini_params) + + # If there are extra or missing parameters, issue a warning + if (length(missing_param) > 0) { + warning(paste0( + "\nRequired parameter ", + missing_param, " is not present in ", ini, "." + )) + } + }, + regexp = NA + ) +}) + +# ...and that all parameters in the ini files are in the input_params csv +test_that("All ini parameters are in the input csv", { + expect_warning( + for (ini in ini_list) { + ini_file <- readLines(system.file("input", ini, package = "hector")) + + # Read in comparison csv, identify unique parameter names + input_params <- sort(unique(input_table$parameter)) + + # Pull out lines with = sign, meaning parameters and definitions + eq <- ini_file[grepl("=", ini_file)] + + # Function to extract the string before the equal sign, the parameter name + split_equal <- function(str) { + x <- strsplit(str, "=") + unlist(x)[[1]] + } + + param <- unlist(lapply(eq, split_equal)) + + # Remove symbols + ini_params <- gsub(";|\\[1750]| ", "", x = param) + + # Compare the two lists of parameters + missing_param <- setdiff(ini_params, input_params) + + # If there are extra or missing parameters, issue a warning + if (length(missing_param) > 0) { + warning(paste0( + "\nParameter ", + missing_param, " is failing in ", ini, "." + )) + } + }, + regexp = NA + ) +}) diff --git a/tests/testthat/test_messages.R b/tests/testthat/test_messages.R index 1bb17ccc3..f3071cc2d 100644 --- a/tests/testthat/test_messages.R +++ b/tests/testthat/test_messages.R @@ -1,7 +1,7 @@ context("setvar/fetchvars") inputdir <- system.file("input", package = "hector") -inifile <- file.path(inputdir, "hector_rcp45.ini") +inifile <- file.path(inputdir, "hector_ssp245.ini") test_that("Invalid input variable returns error", { @@ -10,5 +10,12 @@ test_that("Invalid input variable returns error", { expect_error(setvar(core, NA, "global.permafrost.beta", 10, ""), regexp = "Invalid input variable: '") shutdown(core) +}) + +test_that("Default fetchvar without dates returns error", { + # Test that fetchvars errors if neither dates nor vars is supplied + core <- newcore(inifile) + expect_error(fetchvars(core, NA), regexp = "all require dates") + shutdown(core) }) diff --git a/tests/testthat/test_ocean.R b/tests/testthat/test_ocean.R index 265bd5e56..c5d053089 100644 --- a/tests/testthat/test_ocean.R +++ b/tests/testthat/test_ocean.R @@ -1,14 +1,14 @@ -context("Check Ocean") +context("Check ocean") # Check some basic science to make sure Hector's ocean behaves as expected. # Run Hector inputdir <- system.file("input", package = "hector") sampledir <- system.file("output", package = "hector") -rcp45 <- file.path(inputdir, "hector_rcp45.ini") +ssp245 <- file.path(inputdir, "hector_ssp245.ini") # Dates to extract values and run Hector. t_dates <- 1850:1900 -hc <- newcore(rcp45) +hc <- newcore(ssp245) run(hc, max(t_dates)) @@ -22,11 +22,9 @@ test_that("Checking carbon pools", { individual_carbon_pools <- fetchvars(core = hc, dates = t_dates, vars = carbon_pools) sum_carbon_pools <- aggregate(value ~ year, data = individual_carbon_pools, sum) - # Define an error threhold that corresponds to less than about .025% of the average - # total carbon pool. - allowable_percent <- 0.025 - error_thresh <- (mean(total_ocean_pool$value) * allowable_percent) / 100 - expect_equal(total_ocean_pool$value, sum_carbon_pools$value, tolerance = error_thresh) + # The sum of all the ocean carbon pools should equal the amount of carbon in + # total ocean carbon pool. + expect_equal(total_ocean_pool$value, sum_carbon_pools$value) }) @@ -36,12 +34,12 @@ test_that("Checking ocean flux", { # at the high and low latitudes. # Get the total ocean to atmosphere flux. - total_flux <- fetchvars(core = hc, dates = t_dates, vars = OCEAN_CFLUX()) + total_flux <- fetchvars(core = hc, dates = t_dates, vars = OCEAN_UPTAKE()) # Parse out the fluxes from the high and low latitude pools and calculate the sum # to compare with the total. - pool_fluxes <- fetchvars(core = hc, dates = t_dates, vars = c(ATM_OCEAN_FLUX_HL(), - ATM_OCEAN_FLUX_LL())) + pool_fluxes <- fetchvars(core = hc, dates = t_dates, vars = c(HL_OCEAN_UPTAKE(), + LL_OCEAN_UPTAKE())) sum_pool_flux <- aggregate(value ~ year, data = pool_fluxes, sum) expect_equal(total_flux$value, sum_pool_flux$value) @@ -54,12 +52,12 @@ test_that("Checking high and low latitude difference", { # results, they should have different temperature, carbon fluxes, co3, and ph values. # Calculate the sum of the high latitude variables. - hl_vars <- c(OCEAN_C_HL(), PH_HL(), ATM_OCEAN_FLUX_HL(), PCO2_HL(), TEMP_HL(), CO3_HL()) + hl_vars <- c(OCEAN_C_HL(), PH_HL(), HL_OCEAN_UPTAKE(), PCO2_HL(), SST_HL(), CO3_HL()) hl_results <- fetchvars(core = hc, dates = t_dates, vars = hl_vars) mean_hl <- aggregate(value ~ variable, data = hl_results, mean) # Calculate the sum of the low latitude variables. - ll_vars <- c(OCEAN_C_LL(), PH_LL(), ATM_OCEAN_FLUX_LL(), PCO2_LL(), TEMP_LL(), CO3_LL()) + ll_vars <- c(OCEAN_C_LL(), PH_LL(), LL_OCEAN_UPTAKE(), PCO2_LL(), SST_LL(), CO3_LL()) ll_results <- fetchvars(core = hc, dates = t_dates, vars = ll_vars) mean_ll <- aggregate(value ~ variable, data = ll_results, mean) @@ -71,7 +69,7 @@ test_that("Checking high and low latitude difference", { test_that("Read and writing ocean parameters", { # The ocean parameters - params <- c(TT(), TU(), TWI(), TID()) + params <- c(TT(), TU(), TWI(), TID(), OCEAN_PREIND_C_SURF(), OCEAN_PREIND_C_ID()) # Should throw an error if a date is passed in. expect_error(fetchvars(hc, dates = t_dates, vars = params)) @@ -82,7 +80,7 @@ test_that("Read and writing ocean parameters", { # Save a copy of the default Hector ocean variables, only check the values from the total ocean # box or one of the surface boxes. - ocean_vars <- c(OCEAN_CFLUX(), OCEAN_C(), PH_HL(), PCO2_HL(), DIC_HL(), TEMP_HL(), CO3_HL()) + ocean_vars <- c(OCEAN_UPTAKE(), OCEAN_C(), PH_HL(), PCO2_HL(), DIC_HL(), SST_HL(), CO3_HL()) default_ocean_results <- fetchvars(hc, t_dates, vars = ocean_vars) default_mean <- aggregate(value ~ variable, data = default_ocean_results, mean) @@ -94,7 +92,7 @@ test_that("Read and writing ocean parameters", { # Create a new hector core each time so that only one # parameter is being changed at a time. - hc2 <- newcore(rcp45) + hc2 <- newcore(ssp245) # reset the hector core setvar(hc2, dates = NA, var = p, values = val, unit = u) diff --git a/tests/testthat/test-old_new.R b/tests/testthat/test_old-new.R similarity index 78% rename from tests/testthat/test-old_new.R rename to tests/testthat/test_old-new.R index 43a190453..086f2aace 100644 --- a/tests/testthat/test-old_new.R +++ b/tests/testthat/test_old-new.R @@ -7,17 +7,20 @@ context("Old new tests") test_that("Hector output passes old new test", { - # In order to pass the old new test the mean aboslute difference between - # the old and new hector output must be less than the defined threshold. + # In order to pass the old new test the mean absolute difference between + # the old and new hector output must be less than the defined threshold. error_threshold <- 1e-10 # Read in the comparison data and extract the information to save. comp_data <- read.csv("compdata/hector_comp.csv", stringsAsFactors = FALSE) vars <- unique(comp_data$variable) - time <- unique(comp_data$year) + # These are the years looked at in the original comp_data.csv prior to changes + time <- as.integer(seq(from = 1850, to = 2100, length.out = 20)) scenarios <- unique(comp_data$scenario) + comp_data <- subset(comp_data, year %in% time) + # Run Hector new_data <- do.call(rbind, lapply(scenarios, function(scn) { ini <- system.file(file.path("input", scn), package = "hector") @@ -28,7 +31,7 @@ test_that("Hector output passes old new test", { # Hector data should return the same amount of data and the values returned from # the data should be identical (if there is a difference it should be less than the - # error_threshold.) + # error_threshold). expect_equivalent(nrow(comp_data), nrow(new_data)) expect_equal(comp_data$value, new_data$value, tolerance = error_threshold) }) diff --git a/tests/testthat/test_parameters.R b/tests/testthat/test_parameters.R index 3d71de865..ea68c9980 100644 --- a/tests/testthat/test_parameters.R +++ b/tests/testthat/test_parameters.R @@ -1,20 +1,20 @@ -context("Test changes to Hector parameters") +context("Hector parameter changes") # Make sure that changing parameters has the desired impact on Hector output. inputdir <- system.file("input", package = "hector") sampledir <- system.file("output", package = "hector") -testvars <- c(ATMOSPHERIC_CO2(), RF_TOTAL(), GLOBAL_TEMP()) +testvars <- c(CONCENTRATIONS_CO2(), RF_TOTAL(), GLOBAL_TAS()) dates <- 1750:2100 -rcp45 <- file.path(inputdir, "hector_rcp45.ini") +ssp245 <- file.path(inputdir, "hector_ssp245.ini") test_that('All "fraction" parameters can be set and retrieved', { # Set up Hector core - hc <- newcore(rcp45) + hc <- newcore(ssp245) # All of the fraction parameters. - params <- tolower(c("F_NPPV", "F_NPPD", "F_LITTERD", "F_LUCV", "F_LUCD")) + params <- tolower(c("F_NPPV", "F_NPPD", "F_LITTERD")) default_params <- fetchvars(hc, NA, tolower(params)) new_values <- default_params$value * 0.5 @@ -22,6 +22,7 @@ test_that('All "fraction" parameters can be set and retrieved', { mapply(function(p, v) { setvar(hc, dates = NA, var = p, values = v, unit = "(unitless)") }, p = params, v = new_values) + reset(hc) run(hc) # Extract the parameters and make sure they match the values read in. @@ -34,11 +35,11 @@ test_that('All "fraction" parameters can be set and retrieved', { test_that("Initial CO2 concentration equals preindustrial", { # Run default Hector RCP 45 - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) run(hc, 1800) # Extract the inital atmosphere CO2 from the output. - initcval <- fetchvars(hc, 1745, ATMOSPHERIC_CO2()) + initcval <- fetchvars(hc, 1745, CONCENTRATIONS_CO2()) # Extract the preindustrial value, this Hector is a parameter. preind <- fetchvars(hc, NA, PREINDUSTRIAL_CO2()) @@ -53,7 +54,7 @@ test_that("Initial CO2 concentration equals preindustrial", { # The new value parameter and initial CO2 concentration should # be the same. - initcval_new <- fetchvars(hc, 1745, ATMOSPHERIC_CO2()) + initcval_new <- fetchvars(hc, 1745, CONCENTRATIONS_CO2()) preind_new <- fetchvars(hc, NA, PREINDUSTRIAL_CO2()) expect_equal(initcval_new$value, preind_new$value) @@ -65,17 +66,17 @@ test_that("Initial CO2 concentration equals preindustrial", { test_that("Lowering initial CO2 lowers output CO2", { # Define Hector core. - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) # Run and save results. run(hc, 2100) - dd1 <- fetchvars(hc, dates, ATMOSPHERIC_CO2()) + dd1 <- fetchvars(hc, dates, CONCENTRATIONS_CO2()) ## Change the preindustrial CO2 setvar(hc, NA, PREINDUSTRIAL_CO2(), 250, "ppmv CO2") reset(hc, 0.0) run(hc, 2100) - dd2 <- fetchvars(hc, dates, ATMOSPHERIC_CO2()) + dd2 <- fetchvars(hc, dates, CONCENTRATIONS_CO2()) ## The concentrations should start off lower than the reference run by ## approximately the change in initial concentration, and the deficit @@ -87,17 +88,17 @@ test_that("Lowering initial CO2 lowers output CO2", { }) # Limit the test dates to the future, where the historical -# variablity won't impact the temp. +# variability won't impact the temp. tdates <- 2000:2100 test_that("Lowering ECS lowers output Temperature", { # Define Hector core. - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) # Run and save results run(hc, 2100) - dd1 <- fetchvars(hc, tdates, GLOBAL_TEMP()) + dd1 <- fetchvars(hc, tdates, GLOBAL_TAS()) # Decrease the ECS by half. default_ECS <- fetchvars(hc, NA, ECS()) @@ -105,8 +106,9 @@ test_that("Lowering ECS lowers output Temperature", { ## make sure this still works with automatic reset. setvar(hc, NA, ECS(), new_ECS, getunits(ECS())) + reset(hc, hc$reset_date) run(hc, 2100) - dd2 <- fetchvars(hc, tdates, GLOBAL_TEMP()) + dd2 <- fetchvars(hc, tdates, GLOBAL_TAS()) ## Check that temperature is lower diff <- dd2$value - dd1$value @@ -118,11 +120,11 @@ test_that("Lowering ECS lowers output Temperature", { test_that("Raising Q10 increases CO2 concentration", { # Define Hector core. - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) # Run and save results run(hc, 2100) - vars <- c(ATMOSPHERIC_CO2(), GLOBAL_TEMP()) + vars <- c(CONCENTRATIONS_CO2(), GLOBAL_TAS()) dd1 <- fetchvars(hc, tdates, vars) # Save the default Q10 value. @@ -145,11 +147,11 @@ test_that("Raising Q10 increases CO2 concentration", { test_that("Lowering diffusivity increases temperature", { # Define Hector core. - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) run(hc, 2100) # Extract results from the default run. - vars <- GLOBAL_TEMP() + vars <- GLOBAL_TAS() dd1 <- fetchvars(hc, tdates, vars) # Extract and change the default value. @@ -158,6 +160,7 @@ test_that("Lowering diffusivity increases temperature", { # Set up and run Hector with the new kappa (ocean heat diffusivity) setvar(hc, NA, DIFFUSIVITY(), new_kappa, default_kappa$units) + reset(hc, hc$reset_date) run(hc, 2100) dd2 <- fetchvars(hc, tdates, vars) @@ -171,10 +174,10 @@ test_that("Lowering diffusivity increases temperature", { test_that("Lowering aerosol forcing scaling factor increases temperature", { # Relevant vars to save and test. - vars <- c(GLOBAL_TEMP()) + vars <- c(GLOBAL_TAS()) # Define Hector core. - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) # Run and fetch data. run(hc, 2100) @@ -186,8 +189,9 @@ test_that("Lowering aerosol forcing scaling factor increases temperature", { # Run with new alpha setvar(hc, NA, AERO_SCALE(), new_alpha, getunits(AERO_SCALE())) + reset(hc, hc$reset_date) run(hc, 2100) - dd2 <- fetchvars(hc, tdates, GLOBAL_TEMP()) + dd2 <- fetchvars(hc, tdates, GLOBAL_TAS()) # Check to make sure that the temp and RF have changed. diff <- dd2$value - dd1$value @@ -201,10 +205,10 @@ test_that("Increasing volcanic forcing scaling factor increases the effect of vo ## Because the volcanic forcing scaling factor only has an impact during the ## the volcanic events. Only check the temp during those years. tdates <- c(1960, 1965) - vars <- GLOBAL_TEMP() + vars <- GLOBAL_TAS() # Set up and run Hector - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) run(hc, 1971) out <- fetchvars(hc, tdates, vars) @@ -212,6 +216,7 @@ test_that("Increasing volcanic forcing scaling factor increases the effect of vo default_vol <- fetchvars(hc, NA, VOLCANIC_SCALE(), getunits(VOLCANIC_SCALE())) new_vol <- default_vol$value * 2 setvar(hc, NA, VOLCANIC_SCALE(), new_vol, getunits(VOLCANIC_SCALE())) + reset(hc, hc$reset_date) run(hc) new_out <- fetchvars(hc, tdates, vars) @@ -221,11 +226,11 @@ test_that("Increasing volcanic forcing scaling factor increases the effect of vo test_that("Decreasing vegetation NPP fraction has down stream impacts", { # Define Hector core. - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) run(hc, 2100) # Extract results from the default run. - vars <- c(GLOBAL_TEMP(), ATMOSPHERIC_CO2()) + vars <- c(GLOBAL_TAS(), CONCENTRATIONS_CO2()) dd1 <- fetchvars(hc, tdates, vars) # Set up the Hector core with a lower NPP fraction. @@ -239,8 +244,8 @@ test_that("Decreasing vegetation NPP fraction has down stream impacts", { ## Check that CO2 concentration and temp is higher across the board diff <- dd2$value - dd1$value - expect_gt(min(diff), 0.0) - expect_true(all(dd2$value >= dd1$value)) + expect_gt(abs(min(diff)), 0.0) + expect_true(all(abs(dd2$value - dd1$value) > 0)) shutdown(hc) }) @@ -248,14 +253,14 @@ test_that("Decreasing vegetation NPP fraction has down stream impacts", { test_that("Decreasing detritus NPP fraction has down stream impacts", { # Define Hector core. - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) run(hc, 2100) # Extract results from the default run. - vars <- c(GLOBAL_TEMP(), ATMOSPHERIC_CO2()) + vars <- c(GLOBAL_TAS(), CONCENTRATIONS_CO2()) dd1 <- fetchvars(hc, tdates, vars) - # Change the fraction of NPP that contributes to detrius + # Change the fraction of NPP that contributes to detritus default_vals <- fetchvars(hc, NA, F_NPPD(), NA) new_val <- default_vals$value / 2 setvar(hc, NA, F_NPPD(), new_val, NA) @@ -275,11 +280,11 @@ test_that("Decreasing detritus NPP fraction has down stream impacts", { test_that("Decreasing litter flux to detritus has down stream impacts", { # Define Hector core. - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) run(hc, 2100) # Extract results from the default run. - vars <- c(GLOBAL_TEMP(), ATMOSPHERIC_CO2()) + vars <- c(GLOBAL_TAS(), CONCENTRATIONS_CO2()) dd1 <- fetchvars(hc, tdates, vars) # Change the litter fraction to detritus. @@ -302,7 +307,7 @@ test_that("Decreasing litter flux to detritus has down stream impacts", { test_that("Increasing CO2 fertilization factor increases NPP", { # Define Hector core. - hc <- newcore(rcp45, suppresslogging = TRUE) + hc <- newcore(ssp245, suppresslogging = TRUE) run(hc, 2100) # Extract results from the default run. @@ -323,3 +328,70 @@ test_that("Increasing CO2 fertilization factor increases NPP", { shutdown(hc) }) + +test_that("land ocean warming ratio", { + + # Check the land ocean warming ratio function + expect_true(is.character(LO_WARMING_RATIO())) + + # Set up the Hector core & determine the dates & variables to keep. + core <- newcore(ssp245) + keep <- floor(seq(from = 1850, to = 2100, length.out = 30)) + vars <- c(GLOBAL_TAS(), LAND_TAS(), OCEAN_TAS(), SST()) + + # The expected value for the lo warming ratio is 0, meaning that no user defined + # land ocean warming ratio is being used. LO warming is an emergent property + # from deoclim. + defualt_lo <- fetchvars(core, NA, LO_WARMING_RATIO()) + expect_equal(defualt_lo$value, 0) + + run(core, max(keep)) + out1 <- fetchvars(core, keep, vars) + + # Check to make sure that when running default Hector that the land ocean warming ratio is not + # held constant. + land_temp_vals <- out1[out1$variable == LAND_TAS(), ][["value"]] + ocean_temp_vals <- out1[out1$variable == OCEAN_TAS(), ][["value"]] + emergent_ratio <- land_temp_vals / ocean_temp_vals + expect_equal(length(unique(emergent_ratio)), length(emergent_ratio)) + + # Reset the land ocean warming ratio. Make sure that a value can be passed into the core, + # that is can be reset & have down stream effects. + new_ratio <- 3 + setvar(core, NA, LO_WARMING_RATIO(), new_ratio, "(unitless)") + reset(core) + + # Check to make sure the new land ocean warming ratio is read in. + new_lo <- fetchvars(core, NA, LO_WARMING_RATIO()) + expect_true(defualt_lo$value != new_lo$value) + expect_true(new_ratio == new_lo$value) + + # Run Hector with the new land ocean ratio, check the output. + run(core, max(keep)) + out2 <- fetchvars(core, keep, vars) + + # Ensure ratio backed out of from Hector output equals user defined lo-ratio. + land_temp_vals <- out2[out2$variable == LAND_TAS(), ][["value"]] + ocean_temp_vals <- out2[out2$variable == OCEAN_TAS(), ][["value"]] + ratio_from_output <- land_temp_vals / ocean_temp_vals + expect_true(all(abs(new_ratio - unique(ratio_from_output)) <= 1e-5)) + expect_equal(length(unique(round(ratio_from_output, digits = 3))), 1) + + + # Make sure that the change in the global mean temp is relatively small. + out1_global_vals <- out1[out1$variable == GLOBAL_TAS(), ][["value"]] + out2_global_vals <- out2[out2$variable == GLOBAL_TAS(), ][["value"]] + tas_diff <- mean(abs(out1_global_vals - out2_global_vals)) + expect_lt(tas_diff, 1e-1) + + out1_land_vals <- out1[out1$variable == LAND_TAS(), ][["value"]] + out2_land_vals <- out2[out2$variable == LAND_TAS(), ][["value"]] + land_diff <- mean(abs(out1_land_vals - out2_land_vals)) + expect_gt(land_diff, 1e-1) + + out1_ocean_vals <- out1[out1$variable == OCEAN_TAS(), ][["value"]] + out2_ocean_vals <- out2[out2$variable == OCEAN_TAS(), ][["value"]] + ocean_diff <- mean(abs(out1_ocean_vals - out2_ocean_vals)) + expect_gt(ocean_diff, 1e-1) + +}) diff --git a/tests/testthat/test_pulse.R b/tests/testthat/test_pulse.R new file mode 100644 index 000000000..8e7f56d7e --- /dev/null +++ b/tests/testthat/test_pulse.R @@ -0,0 +1,31 @@ +context("LUC pulse") + +# Credit to Dawn Woodard for this stringent test: +# A Hector run with zero emissions, Q10=1, and beta=0 should: +# (1) exhibit flat carbon pools post-spinup, and +# (2) a LUC pulse should instantly equilibrate in the terrestrial pools +# We use a custom INI file for this + +test_that("Hector responds correctly to a LUC pulse", { + hc <- newcore("input/luc_pulse.ini") + run(hc) + + # The carbon pools should be flat post-spinup + # Our pulse is LUC, so focus on veg C + x <- fetchvars(hc, 1750:1799, VEG_C()) + expect_true(all(diff(x$value) < 1e-6)) + + # The LUC pulse is at 1800 in this test file + # As long as LUC losses are proportional to pool sizes (see PR #647), + # and NPP is reduced by LUC veg losses (see #638 and #639), + # there should be no trend in subsequent years + x <- fetchvars(hc, 1801:1850, VEG_C()) + expect_true(all(diff(x$value) < 1e-6)) + + # Finally, the LUC pulse itself should be equal to what's in the input file + emiss <- read.csv("input/luc_pulse_tables.csv", skip = 3) + luc <- fetchvars(hc, hc$strtdate:hc$enddate, LUC_EMISSIONS()) + expect_equal(sum(luc$value), sum(emiss$luc_emissions)) + + shutdown(hc) +}) diff --git a/tests/testthat/test_set_get_data.R b/tests/testthat/test_set_get_data.R index 7c5dcc203..ce0c054e5 100644 --- a/tests/testthat/test_set_get_data.R +++ b/tests/testthat/test_set_get_data.R @@ -1,5 +1,9 @@ context("Setting and getting data") +# This test differs from the test_parameters in that these are variables that are a time series +# whereas the test_parameters deals with parameters that have no time dimension. + + emissions <- c( EMISSIONS_BC(), EMISSIONS_C2F6(), @@ -42,7 +46,7 @@ emissions <- c( # Setting emissions variables for (v in emissions) { - hc <- newcore(system.file("input", "hector_rcp45.ini", package = "hector"), + hc <- newcore(system.file("input", "hector_ssp245.ini", package = "hector"), suppresslogging = TRUE ) # Use a random (positive) value here to make sure we are getting and setting diff --git a/tests/testthat/test_style.R b/tests/testthat/test_style.R new file mode 100644 index 000000000..6afc8d7a8 --- /dev/null +++ b/tests/testthat/test_style.R @@ -0,0 +1,7 @@ + +if (requireNamespace("lintr", quietly = TRUE)) { + context("Package style") + test_that("No lints found", { + lintr::expect_lint_free(exclusions = list("R/RcppExports.R", "vignettes/")) + }) +} diff --git a/tests/testthat/test_tracking.R b/tests/testthat/test_tracking.R new file mode 100644 index 000000000..eca7fc683 --- /dev/null +++ b/tests/testthat/test_tracking.R @@ -0,0 +1,268 @@ +# Tracking tests +# Leeya Pressburger 2021 + +context("Carbon tracking") + +inputdir <- system.file("input", package = "hector") +inifile <- file.path(inputdir, "hector_ssp245.ini") + +error_threshold <- 1e-6 +tunits <- getunits(TRACKING_DATE()) + +test_that("No-tracking run produces empty data frame", { + + # A run without tracking should return an empty data frame + hc <- newcore(inifile, name = "test", suppresslogging = TRUE) + run(hc, 1760) + x <- get_tracking_data(hc) + expect_identical(x, data.frame()) + + shutdown(hc) +}) + + +test_that("get_tracking_data handles bad inputs", { + + # Error produced if we call get_tracking_data() without a proper core + expect_error(get_tracking_data("core")) + +}) + +test_that("Changing a parameter changes tracking data", { + + # Run core, get tracking data + core <- newcore(inifile) + setvar(core, NA, TRACKING_DATE(), 1900, tunits) + reset(core, core$reset_date) + run(core, runtodate = 2000) + df1 <- get_tracking_data(core) + + # ...change a parameter and re-run + default_Q10 <- fetchvars(core, NA, Q10_RH()) + new_Q10 <- default_Q10$value * 0.9 + setvar(core, NA, Q10_RH(), new_Q10, getunits(Q10_RH())) + + reset(core) + run(core, runtodate = 2000) + df2 <- get_tracking_data(core) + + expect_true(nrow(df1) == nrow(df2)) + expect_false(all(df1$source_fraction == df2$source_fraction)) + + shutdown(core) +}) + +test_that("Tracking run produces correct data", { + + # Test that tracking data (from get_tracking_data()) is a data.frame + + # Run core and get tracking data, then test that the class is data.frame + core <- newcore(inifile) + reset(core, core$reset_date) + setvar(core, NA, TRACKING_DATE(), 1770, tunits) + reset(core, core$reset_date) + run(core) + + df <- get_tracking_data(core) + expect_s3_class(df, "data.frame") + + expect_identical(names(df), c("year", "component", "pool_name", "pool_value", + "pool_units", "source_name", "source_fraction")) + + # Test that tracking data frame has correct dates + # (not less than trackingDate, not more than end of run, includes all years) + track_date <- fetchvars(core, NA, TRACKING_DATE())$value + end_date <- core$enddate + years <- c(track_date:end_date) + + # Find the min and max of the data.frame, which should be the track_date + # and end_date, respectively. Check that the minimum is at least the + # track_date and the maximum is no higher than the end_date. + # Find the non-repeating years within the data.frame, then check + # that all years defined above are present. + data_min <- min(df$year) + data_max <- max(df$year) + data_years <- unique(df$year) + + expect_gte(data_min, track_date) + expect_lte(data_max, end_date) + expect_identical(data_years, years) + + # Test that all year/pool combinations sum to ~1 + + # Calculate the total source fraction (which should be equal to 1) + # from the sum of the individual source fractions. + ag <- aggregate(source_fraction ~ year + pool_name, data = df, FUN = sum) + + ones <- rep(1, times = length(ag$source_fraction)) + expect_equal(ones, ag$source_fraction, tolerance = error_threshold) + + shutdown(core) +}) + +test_that("Tracking works with a core reset", { + + # Test that reset() works + + # Run a core, reset, and make sure the start date has reset. + core <- newcore(inifile) + run(core, 1760) + start_date <- core$strtdate + + a <- reset(core) + expect_identical(a$strtdate, start_date) + + # After reset to , tracking data frame should be empty + + # Run a core and reset to the start date. Check that the + # get_tracking_data data.frame is identical to an empty one. + core <- newcore(inifile) + setvar(core, NA, TRACKING_DATE(), 1760, tunits) + reset(core, core$reset_date) + run(core, 1770) + + reset(core, core$reset_date) + + df <- get_tracking_data(core) + expect_identical(df, data.frame()) + + # Test that after reset to >=trackingDate, tracking data frame has correct dates + + # Run a core, and assign the start, end, and track dates to variables. + core1 <- newcore(inifile) + setvar(core1, NA, TRACKING_DATE(), 1760, tunits) + reset(core1, core1$reset_date) + run(core1, 1770) + + start_date <- core1$strtdate + end_date <- core1$enddate + track_date <- fetchvars(core1, NA, TRACKING_DATE())$value + + # Reset the core, then confirm that the new core's start, end, + # and tracking dates are identical to the original core's. + core2 <- reset(core1, date = track_date) + track_date2 <- fetchvars(core2, NA, TRACKING_DATE())$value + + expect_identical(core2$strtdate, start_date) + expect_identical(core2$enddate, end_date) + expect_identical(track_date2, track_date) + + # Test that for a run-reset-run, tracking data is correct + + # Run a core and assign the tracking date to a variable. + # Reset the core, run a new core, and check that the tracking + # date is the same as the original core's. + core1 <- newcore(inifile) + setvar(core1, NA, TRACKING_DATE(), 1760, tunits) + reset(core1, core1$reset_date) + run(core1, 1770) + track_date <- fetchvars(core1, NA, TRACKING_DATE())$value + + core2 <- reset(core1) + track_date2 <- fetchvars(core2, NA, TRACKING_DATE())$value + expect_identical(track_date2, track_date) + + shutdown(core2) +}) + +test_that("Pool names are valid", { + error_threshold <- 1e-3 + core <- newcore(inifile) + setvar(core, NA, TRACKING_DATE(), 1760, tunits) + reset(core, core$reset_date) + run(core, 1770) + + # Check that pool_name and corresponding pool_units are the same values + # as what is returned in the tracking data in the first year of the run + tdata <- get_tracking_data(core) + track_date <- fetchvars(core, NA, TRACKING_DATE())$value + tdata <- subset(tdata, tdata$year == track_date) + + # HL + HL <- subset(tdata, tdata$pool_name == "HL") + HL_value <- unique(HL$pool_value) + HL_units <- unique(HL$pool_units) + + h <- fetchvars(core, 1760, OCEAN_C_HL()) + expect_equal(h$value, HL_value, tolerance = error_threshold) + expect_identical(h$units, HL_units) + + # LL + LL <- subset(tdata, tdata$pool_name == "LL") + LL_value <- unique(LL$pool_value) + LL_units <- unique(LL$pool_units) + + l <- fetchvars(core, 1760, OCEAN_C_LL()) + expect_equal(l$value, LL_value, tolerance = error_threshold) + expect_identical(l$units, LL_units) + + # Intermediate + int <- subset(tdata, tdata$pool_name == "intermediate") + int_value <- unique(int$pool_value) + int_units <- unique(int$pool_units) + + i <- fetchvars(core, 1760, OCEAN_C_IO()) + expect_equal(i$value, int_value, tolerance = error_threshold) + expect_identical(i$units, int_units) + + # Deep + deep <- subset(tdata, tdata$pool_name == "deep") + deep_value <- unique(deep$pool_value) + deep_units <- unique(deep$pool_units) + + d <- fetchvars(core, 1760, OCEAN_C_DO()) + expect_equal(d$value, deep_value, tolerance = error_threshold) + expect_identical(d$units, deep_units) + + # atmos_co2 + atm <- subset(tdata, tdata$pool_name == "atmos_co2") + atm_value <- unique(atm$pool_value) + atm_units <- unique(atm$pool_units) + + a <- fetchvars(core, 1760, ATMOSPHERIC_CO2()) + expect_equal(a$value, atm_value, tolerance = error_threshold) + expect_identical(a$units, atm_units) + + # earth_c + ear <- subset(tdata, tdata$pool_name == "earth_c") + ear_value <- unique(ear$pool_value) + ear_units <- unique(ear$pool_units) + + e <- fetchvars(core, 1760, EARTH_C()) + expect_equal(e$value, ear_value, tolerance = error_threshold) + expect_identical(e$units, ear_units) + + # veg_c + veg <- subset(tdata, tdata$pool_name == "veg_c") + veg_value <- unique(veg$pool_value) + veg_units <- unique(veg$pool_units) + + v <- fetchvars(core, 1760, VEG_C()) + expect_equal(v$value, veg_value, tolerance = error_threshold) + expect_identical(v$units, veg_units) + + # detritus_c + det <- subset(tdata, tdata$pool_name == "detritus_c") + det_value <- unique(det$pool_value) + det_units <- unique(det$pool_units) + + d <- fetchvars(core, 1760, DETRITUS_C()) + expect_equal(d$value, det_value, tolerance = error_threshold) + expect_identical(d$units, det_units) + + # soil_c + soil <- subset(tdata, tdata$pool_name == "soil_c") + soil_value <- unique(soil$pool_value) + soil_units <- unique(soil$pool_units) + + s <- fetchvars(core, 1760, SOIL_C()) + expect_equal(s$value, soil_value, tolerance = error_threshold) + expect_identical(s$units, soil_units) + + # Check that source_names are present in pool_name column + source_names <- sort(unique(tdata$source_name)) + pool_names <- sort(unique(tdata$pool_name)) + + expect_identical(source_names, pool_names) + +}) diff --git a/tests/testthat/test_units.R b/tests/testthat/test_units.R index b3922b2b2..c3b5eef74 100644 --- a/tests/testthat/test_units.R +++ b/tests/testthat/test_units.R @@ -13,7 +13,7 @@ test_that("Units retrieval works.", { }) test_that("Invalid units retrieval warns.", { - vars <- c(ECS(), EMISSIONS_SO2(), ATMOSPHERIC_C(), BETA()) + vars <- c(ECS(), EMISSIONS_SO2(), ATMOSPHERIC_CO2(), BETA()) units_true <- c("degC", "Gg S", NA, "(unitless)") expect_warning( units <- getunits(vars), diff --git a/tests/testthat/test_wrapper.R b/tests/testthat/test_wrapper.R index 1776903c9..790a8f183 100644 --- a/tests/testthat/test_wrapper.R +++ b/tests/testthat/test_wrapper.R @@ -1,14 +1,14 @@ -context("Test basic R wrapper functionality") +context("R wrapper functionality") inputdir <- system.file("input", package = "hector") -testvars <- c(ATMOSPHERIC_CO2(), RF_TOTAL(), GLOBAL_TEMP()) +testvars <- c(CONCENTRATIONS_CO2(), RF_TOTAL(), GLOBAL_TAS()) dates <- 2000:2300 test_that("Rerunning spinup produces minimal change", { # First Hector core run - hc <- newcore(file.path(inputdir, "hector_rcp45.ini"), name = "RCP45", suppresslogging = TRUE) + hc <- newcore(file.path(inputdir, "hector_ssp245.ini"), name = "ssp245", suppresslogging = TRUE) run(hc, 2100) dd1 <- fetchvars(hc, dates, testvars) @@ -27,19 +27,23 @@ test_that("Rerunning spinup produces minimal change", { test_that("Basic hcore functionality works", { - hc <- newcore(file.path(inputdir, "hector_rcp45.ini"), name = "RCP45", suppresslogging = TRUE) + hc <- newcore(file.path(inputdir, "hector_ssp245.ini"), name = "ssp245", suppresslogging = TRUE) run(hc, 2100) expect_true(inherits(hc, "hcore")) expect_true(isactive(hc)) expect_equal(startdate(hc), 1745) expect_equal(enddate(hc), 2300) expect_equal(getdate(hc), 2100) - expect_equal(getname(hc), "RCP45") + expect_equal(getname(hc), "ssp245") expect_error(run(hc, 2050), "is prior to the current date") expect_silent(run(hc, 2100)) expect_silent(run(hc)) + # All years should appear in the output + out <- fetchvars(hc, dates = 1745:2300) + expect_equivalent(sort(unique(out$year)), 1745:2300) + hc <- shutdown(hc) expect_false(isactive(hc)) }) @@ -53,8 +57,8 @@ test_that("Write out logs", { } ## Turn logging ON for one test and confirm it runs (see GitHub issues #372 and #381) - hc_log <- newcore(file.path(inputdir, "hector_rcp45.ini"), - name = "RCP45", + hc_log <- newcore(file.path(inputdir, "hector_ssp245.ini"), + name = "ssp245", suppresslogging = FALSE) run(hc_log, 2100) shutdown(hc_log) @@ -63,25 +67,25 @@ test_that("Write out logs", { expect_true(dir.exists(log_dir)) # Check to see that individual log files were written out - expect_equal(length(list.files(log_dir, pattern = ".log")), 40) + expect_equal(length(list.files(log_dir, pattern = ".log")), 41) # Check that errors on shutdown cores get caught expect_error(getdate(hc_log), "Invalid or inactive") expect_error(run(hc_log), "Invalid or inactive") - expect_error(fetchvars(hc_log), "Invalid or inactive") + expect_error(fetchvars(hc_log, hc_log$strtdate), "Invalid or inactive") }) -## Make sure that that when the Hector core is shut downsys +## Make sure that that when the Hector core is shut down ## everything is tidied up. test_that("Garbage collection shuts down hector cores", { ## This test makes use of some knowledge about the structure of the hector ## core objects that no user should ever assume. - hc <- newcore(file.path(inputdir, "hector_rcp45.ini"), suppresslogging = TRUE, name = "core1") + hc <- newcore(file.path(inputdir, "hector_ssp245.ini"), suppresslogging = TRUE, name = "core1") expect_true(isactive(hc)) coreidx1 <- hc$coreidx - hc <- newcore(file.path(inputdir, "hector_rcp45.ini"), suppresslogging = TRUE, name = "core2") + hc <- newcore(file.path(inputdir, "hector_ssp245.ini"), suppresslogging = TRUE, name = "core2") expect_true(isactive(hc)) coreidx2 <- hc$coreidx expect_equal(coreidx2, 1 + coreidx1) @@ -99,7 +103,8 @@ test_that("Garbage collection shuts down hector cores", { ## Ensure the scenario name can change in the output ## when the core is set up different names. test_that("Scenario column is created in output", { - hc <- newcore(file.path(inputdir, "hector_rcp45.ini"), suppresslogging = TRUE, name = "scenario1") + hc <- newcore(file.path(inputdir, "hector_ssp245.ini"), + suppresslogging = TRUE, name = "scenario1") run(hc) outdata1 <- fetchvars(hc, dates, testvars) @@ -114,7 +119,7 @@ test_that("Scenario column is created in output", { # As a deterministic model Hector should produce the same output each time it is run. # Run Hector multiple times and check output. test_that("Reset produces identical results", { - hc <- newcore(file.path(inputdir, "hector_rcp45.ini"), suppresslogging = TRUE) + hc <- newcore(file.path(inputdir, "hector_ssp245.ini"), suppresslogging = TRUE) run(hc) expect_equal(getdate(hc), enddate(hc)) outdata1 <- fetchvars(hc, dates, testvars) @@ -128,8 +133,8 @@ test_that("Reset produces identical results", { }) test_that("Exceptions are caught", { - expect_error(hc <- newcore("foo"), "does not exist") - hc <- newcore(file.path(inputdir, "hector_rcp45.ini"), suppresslogging = TRUE) + suppressWarnings(expect_error(hc <- newcore("foo"), "does not exist")) + hc <- newcore(file.path(inputdir, "hector_ssp245.ini"), suppresslogging = TRUE) setvar(hc, NA, BETA(), -1.0, NA) expect_error(reset(hc), "beta") ## Verify that the core can continue to run after an error has been thrown. @@ -140,7 +145,7 @@ test_that("Exceptions are caught", { test_that("Automatic reset is performed if and only if core is not marked 'clean'.", { - hc <- newcore(file.path(inputdir, "hector_rcp45.ini"), suppresslogging = TRUE) + hc <- newcore(file.path(inputdir, "hector_ssp245.ini"), suppresslogging = TRUE) expect_true(hc$clean) run(hc, 2100) @@ -149,7 +154,9 @@ test_that("Automatic reset is performed if and only if core is not marked 'clean expect_error(run(hc, 2050), "is prior") # No reset hc$clean <- FALSE hc$reset_date <- 0 - expect_silent(run(hc, 2050)) # reset performed + ## Reset performed - expect_output, not expect_silent, because the core + ## prints a message alerting user of reset + expect_message(run(hc, 2050), "resetting") expect_true(hc$clean) hc$clean <- FALSE @@ -168,7 +175,7 @@ test_that("Automatic reset is performed if and only if core is not marked 'clean test_that("Setting future values does not trigger a reset.", { - hc <- newcore(file.path(inputdir, "hector_rcp45.ini"), suppresslogging = TRUE) + hc <- newcore(file.path(inputdir, "hector_ssp245.ini"), suppresslogging = TRUE) run(hc, 2100) setvar(hc, 2101:2300, FFI_EMISSIONS(), 0.0, "Pg C/yr") @@ -178,22 +185,28 @@ test_that("Setting future values does not trigger a reset.", { }) -test_that("Setting past or parameter values does trigger a reset.", { - hc <- newcore(file.path(inputdir, "hector_rcp45.ini"), suppresslogging = TRUE) +test_that("Setting parameter values or run date prior to current date does trigger a reset.", { + hc <- newcore(file.path(inputdir, "hector_ssp370.ini"), suppresslogging = TRUE) run(hc, 2100) setvar(hc, 2050:2150, FFI_EMISSIONS(), 0.0, "Pg C/yr") expect_false(hc$clean) + expect_message(run(hc, 2100), "resetting") + expect_true(hc$clean) # reset gets run! expect_equal(hc$reset_date, 2049) - expect_error(run(hc, 2048), "is prior") - expect_true(hc$clean) # reset still gets run! + + # requesting a prior date run raises an error BUT also resets + setvar(hc, 2050:2150, FFI_EMISSIONS(), 0.0, "Pg C/yr") + # suppress message - we know core will auto-reset + expect_error(suppressMessages(run(hc, 2048)), "is prior") expect_silent(run(hc, 2050)) expect_true(hc$clean) setvar(hc, 2050:2150, FFI_EMISSIONS(), 0.0, "Pg C/yr") # edge case expect_false(hc$clean) expect_equal(hc$reset_date, 2049) - expect_error(run(hc, 2048), "is prior") + # suppress message - we know core will auto-reset + expect_error(suppressMessages(run(hc, 2048)), "is prior") expect_silent(run(hc, 2050)) expect_true(hc$clean) diff --git a/vignettes/.gitignore b/vignettes/.gitignore new file mode 100644 index 000000000..097b24163 --- /dev/null +++ b/vignettes/.gitignore @@ -0,0 +1,2 @@ +*.html +*.R diff --git a/vignettes/articles/AddNewComponent.Rmd b/vignettes/articles/AddNewComponent.Rmd new file mode 100644 index 000000000..8cac338db --- /dev/null +++ b/vignettes/articles/AddNewComponent.Rmd @@ -0,0 +1,129 @@ +--- +title: "Add a new Hector component" +subtitle: C++ +--- + +Here are the steps to create a new component `X` in Hector's C++ codebase. + +Step one: +----------- + +Add two new files: + +* A header file in `inst/include/X.hpp` +* A corresponding source file in `src/core/X.cpp` + +It is best to copy and modify the corresponding files from an already constructed component. + +Step two (within X.hpp): +----------- + +Under `private`, list the variables that are used in the component and their corresponding type. +Because of Hector's ability to [reset](../reference/reset.html), +every state variable generally needs an associated time series history variable. For example: + +* `tseries x` to create a [time series](TimeSeries.html). +* `unitval x` to declare a [value with associated units](Unitvals.html). +* `double x` + +Step three (within X.cpp): +--------- + +Make sure that you `#include X.hpp`. + +In the class _constructor_ + +If the variable is a `tseries`, add all of the variables allowing for interpolation and their corresponding names + +```cpp + XComponent::XComponent() { + X_emissions.allowInterp( true ); + X_emissions.name = X_COMPONENT_NAME; +``` + +Within `X::init` + +Inform the core what data the component can provide (*registerCapability*) and what data the component depends on (*registerDependency*) + +```cpp + core->registerCapability( D_ATMOSPHERIC_X, getComponentName() ); + core->registerDependency( D_LIFETIME_X, getComponentName() ); +``` + +Within `X::setData` + +Set the data that are used as inputs within this component, typically coming from the INI file. +For examples of `tseries` vs. `unitvals` in [Time Series](TimeSeries.html). + +Within `X::prepareToRun` + +This code can vary but this can be where hard-coded parameters are coded. + +Within `X::run` + +The run method contains the equations and code used in this component. Here is where you would want a log statement, written out to the component's log. + +```cpp +H_LOG( logger, Logger::DEBUG ) << "Year " << runToDate << " X concentration = " << X.get( runToDate ) << std::endl; +``` + +Within `X::getData` + +These are data that the component can provide to another component or the data that is being generated within the component. [[For examples of tseries vs. unitvals in getData|AddTSeries]]. + +Within `X::shutDown` + +```cpp +H_LOG( logger, Logger::DEBUG ) << "goodbye " << getComponentName() << std::endl; +logger.close(); +``` + +Step four (Outside of X.cpp and X.hpp): +---------------------------------------- + +In `avistor.hpp` + +Add class `XComponent` under the declarations of subclasses and add `virtual void visit( XComponent*c ) {}` + +In `core.cpp` + +Add `#include "xcomponent.hpp" ` + +Under `Core::init()` section add code to create your new component: + +```cpp +temp = new XComponent(); +modelComponents[ temp-->getComponentName() ] = temp; +``` + +In `component_names.hpp` + +Under component names: + +`#define X_COMPONENT_NAME “x”` + +In `component_data.hpp` + +Define the variables within the component; this is the string that will be passed into the core via +`sendMessage` or via the R wrapper. + +`#define D_ATMOSPHERIC_X "X"` + +In `csv_outputstream_visitor.cpp` (and for any other visitor necessary; see in particular +the carbon-tracking visitor) you need to add code to write out the component's outputs: + +`#include 'xcomponent.hpp' ` + +```cpp +void CSVOutputStreamVisitor::visit( XComponent* c ) { + if( !core->outputEnabled( c->getComponentName() ) && !in_spinup ) return; + STREAM_MESSAGE_DATE( csvFile, c, D_X_COMPONENT, current_date ); + } +``` + +Finally, in `csv_outputsream_visitor.hpp` + +``` + under public + `virtual void visit( XComponent* c);` +``` diff --git a/vignettes/articles/AddNewVariable.Rmd b/vignettes/articles/AddNewVariable.Rmd new file mode 100644 index 000000000..15518f299 --- /dev/null +++ b/vignettes/articles/AddNewVariable.Rmd @@ -0,0 +1,81 @@ +--- +title: "Add a new variable" +subtitle: C++ & R +--- + +Adding a new variable to Hector's C++ codebase using `getData` to obtain the information defined in the INI file and Rcpp to expose the variable to the R interface. + +# C++ Changes + +In _hector.ini_ + +Under the corresponding component add the variable + Ex: `SN = 42000;` + +In _component_data.hpp_ + +Add variable as `tseries`, `unitval`, `double`, etc. and add its associated time series (when necessary; see above). + +Define the variables that are being added +Ex: `# define D_ATMOSPHERIC_SO2 "SN"` + +These names do *not* have to match internal component variables but the INI definition *has to* match what appears in quotes. + +In _X_component.cpp_ + +Under `init`, need to register the capability + `core->registerCapability( D_ATMOSPHERIC_SO2, getComponentName() );` + +Under `getData` and `setData`, add the new variables before the Error message. + +See [tseries](TimeSeries.html) documentation for more information on `getData` + +**(getData)** +``` + else if(varName == D_ATMOSPHERIC_SO2 ) { + returnval = SN; +``` + +**(setData)** +``` + else if( varName == D_ATMOSPHERIC_SO2 ) { + H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed"); + SN.set( lexical_cast( value ), U_GG ); + } +``` + +_If the variable is used in other X_component.cpp_ + +For example, if adding in a variable within the forcing component: + +`unitval SN = core->getData( D_ATMOSPHERIC_SO2, runToDate);` + +If this variable is a `unitval`, the relevant code file must include `unitval.hpp`. + + +# R changes {#R} + + +In order to be able to use the R Hector `setvar` and `fetchvars` functions, add a helper function to `rcpp_constants.cpp` + +``` +//' @describeIn DocumentationGroupName A description of the variable name. +//' @export +// [[Rcpp::export]] +String R_FUNCTION_NAME() { +return D_VARIABLE_NAME; +} +``` + +Here is an example for `GLOBAL_TAS()` which is used to get global mean temperature data. + +``` +//' @describeIn temperature Global mean temperature anomaly +//' @export +// [[Rcpp::export]] +String GLOBAL_TAS() { +return D_GLOBAL_TEMP; +} +``` + + diff --git a/vignettes/articles/AuthorshipGuidelines.Rmd b/vignettes/articles/AuthorshipGuidelines.Rmd new file mode 100644 index 000000000..4a24cc9dc --- /dev/null +++ b/vignettes/articles/AuthorshipGuidelines.Rmd @@ -0,0 +1,33 @@ +--- +title: "Authorship Guidelines" +--- + +As mentioned in our [contribution guide](ContributionsGuide.html), “the Hector +team welcomes and values community contributions to Hector” and would like to +acknowledge these contributions. To be fully transparent, here are the guidelines +we use to determine authorship for the Hector model. + +* The author list reflects individuals that contributed code (either R code in +support of the R Hector package and/or C++ Hector source code) to a specific +version of Hector. +* The author list is not a running list of all Hector contributors over the +years. In general, individuals on the author list have made major code +contributions to either the current or the immediately previous version of the model. +* We recognize contributors to older versions of the model via the table of past +contributors (see below). This author list does not include contributors to other +Hector-related software such as HectorUI or Hectordata. The list also does not +credit authorship for generating model development ideas, analysis, and so on. +This category of credit occurs in manuscripts focused on model documentation or +analyses using Hector. + +**Past Contributors** + +```{r, echo=FALSE, warning =FALSE} +dat <- rbind(c("Robert Link", "0000-0002-7071-248X", " < 2.5", + "Wrapped the Hector cpp source code into a R package"), + c("Corinne Hartin", "0000-0003-1834-6539", " < 2.0", + "Wrote the original ocean component")) +colnames(dat) <- c("Contributor", "ORCID", "Version", "Contribution") + +knitr::kable(dat, format = "markdown") +``` diff --git a/vignettes/articles/BuildHector.Rmd b/vignettes/articles/BuildHector.Rmd new file mode 100644 index 000000000..418469920 --- /dev/null +++ b/vignettes/articles/BuildHector.Rmd @@ -0,0 +1,212 @@ +--- +title: "Installing and building Hector" +--- + +There are many ways to use Hector: as a stand-alone executable, through the +online [HectorUI](https://jgcri.shinyapps.io/HectorUI/), and as an R package. +Here we provide installation and +building instructions for the R Hector package and the executable. + +# R Hector + +To install R, follow the [official instructions](https://cloud.r-project.org/) for your platform. + +To install the version associated with the current `master` git branch on GitHub, +use the `remotes`::install_github` function. +This will automatically install all of Hector's dependencies as well. +(Note that because this requires compiling from source, you will need to have a C compiler installed and configured.) + +On **Windows**, you will also need to install Rtools. Download and instructions +can be found [here](https://cloud.r-project.org/bin/windows/Rtools/). After +installation, there is another step to put the Rtools `make utilities` on the +system PATH. This will allow you to compile R packages. + +To do so, create a text file `.Renviron` in your Documents folder with the following line: `PATH="${RTOOLS40_HOME}\usr\bin;${PATH}"`. + +This can be done either with a text editor or in R itself: +```r +writeLines('PATH="${RTOOLS40_HOME}\\usr\\bin;${PATH}"', con = "~/.Renviron") +``` + +Remember to restart R (or Rstudio) and to verify that `make` can be found. +Executing `Sys.which("make")` should show the path to your Rtools installation. + +On **Mac OS** and **Linux**, the required tools should be included as part of a standard R installation. + +```r +# If the `remotes` package isn't installed, first run: +# install.packages("remotes") +remotes::install_github("jgcri/hector") +``` + +Hector's mandatory dependencies are listed in the `DESCRIPTION` file under `Imports`, and are currently as follows: + +- [`Rcpp`](http://www.rcpp.org/) -- Facilitates integration of C++ code into R packages +- [`BH`](https://cran.r-project.org/web/packages/BH/index.html) -- Boost C++ header files + + +# Standalone Executable + +Hector can also be compiled as a standalone executable. +Unlike the R package, this method of installation does not automatically pull +in dependencies, so you will have to install them manually. + +Hector's only external dependency, **Boost**, is a free, peer-reviewed portable +C++ source library, available at http://www.boost.org/. +Hector primarily uses Boost "header-only" libraries, which do not need to be +compiled independently and only need to be extracted and included with the Hector source. +Note that if your C++ compiler or standard library does +[not support the C++ 17 standard](#no-stdfilesystem-support) then the Boost +`system` and `filesystem` libraries will need to be compiled/installed (see below). + +## Command Line (Linux & Mac OSX) + +The Hector makefiles look for Boost libraries and headers in certain +locations; these defaults can be overridden by setting the +following environment variables: + +* `BOOSTROOT` (default `/usr/local/`). +This variable should contain the full name of a directory with `include/` and +`lib/` subdirectories that contain, respectively, the Boost header and library +files. If you installed Boost using a package manager, this is likely where +it is. If you built Boost from source or used a tool such as +[Homebrew](https://brew.sh/) to install Boost, +then you will need to set this variable explicitly. + +Alternatively, if the header and library locations are not subdirectories of +a single directory, you can set `BOOSTINC` and `BOOSTLIB` variables to their +respective locations. In this case, `BOOSTROOT` is ignored. + +* `GTROOT` (default `/usr/local/`). +This variable should contain the full name of a directory with `include/` and +`lib/` subdirectories that contain, respectively, the Googletest header and library +files. Alternatively, if the header and library locations are not subdirectories of +a single directory, you can set `GTINC` and `GTLIB` variables to their +locations. In this case, `GTROOT` is ignored. **Note that this is only needed +if you want to run the Hector unit tests.** It's not needed for running the model. + +**Shared Library Search Path** + +If your C++ compiler or standard library does not support the C++ 17 standard +(see below), then the Boost libraries used by Hector will be +compiled into shared libraries that must be loaded at run time. It is +best if these libraries are in directories that are part of your +system's shared library search path. On many systems `/usr/local` is +already in that path. + +If you are unable to add your library installation directory to the library +search path, you will need to add the installation directory to the environment +variable `LD_LIBRARY_PATH`. Try not to use this approach if you can help it, +because it can cause some conflicts with other software on your system. +Instead, ask your system administrator if `ldconfig` is right for you. + +### Build & Run Hector + +Once the necessary libraries are installed, change to the top-level +Hector directory and type `make hector`. The Hector executable will +be built in the `source/` subdirectory. If you ever need to rebuild, +you can type `make clean` to clear away the executable and all of the +intermediate files. + +There are two additional environment variables that you can use to +fine-tune the build process. The `CXXEXTRA` variable is passed to the +C++ compiler. You can use this variable to pass extra options to the +compiler without changing the Makefile. In particular, specifying +optimization options in `CXXEXTRA` such as -O or -O0 will override the +default value of -O3. + +The `CXXPROF` variable is passed both to the compiler and the linker. +It is intended to turn on performance profiling, which must be +specified at both the compile and link stages of the build, so it +generally should be either unset (for normal operation) or set to -pg +(for profiling). Profiling slows the code down dramatically, so if you use it, be +sure to unset `CXXPROF`, clean the build directories with `make clean`, +and rebuild when you are ready to go back to +production runs. + +#### No std::filesystem Support +If your C++ compiler or standard library is too old, it will not support +the C++ 17 `std::filesystem`. In this case you may receive errors while +building Hector such as the following: + +``` +g++ -L. -o hector main.o -lhector -lm +./libhector.a(ini_to_core_reader.o): In function `boost::filesystem::exists(boost::filesystem::path const&)': +/pic/projects/GCAM/GCAM-libraries/include/boost/filesystem/operations.hpp:404: undefined reference to `boost::filesystem::detail::status(boost::filesystem::path const&, boost::system::error_code*)' +``` + +Or on versions of macOS prior to Catalina (10.15): +``` +ini_to_core_reader.cpp:159:17: error: 'path' is unavailable: introduced in macOS + 10.15 + fs::path csvFilePath( csvFileName ); + ^ +``` + +In this case, you can set an environment variable: +``` +export NO_CXX17=1 +``` + +and will need to [Compile Boost Libraries](https://www.boost.org/doc/libs/1_77_0/more/getting_started/unix-variants.html) -- specifically, the `system` and `filesystem` libraries. Finally, ensure +that the environment variable `BOOSTROOT` or `BOOSTLIB` is set properly (see above). + +#### Running Hector + +Run Hector from the terminal: + +``` +./src/hector ./inst/input/name-of-ini.ini +``` + +To build and run the Hector unit tests, type `make testing` +and then + +``` +./src/unit-testing/hector-unit-tests +``` + +## Xcode (Mac OS X) + +These directions assume a basic familiarity with Xcode and Mac OS X software installation. + +* Install [Xcode](https://developer.apple.com/xcode/downloads/) if necessary. Hector has been built and tested with MacOS >= 10.8.5, up to Monterey (12.6.1). The project files are for Xcode 14.1. +* Download and install Boost, following the instructions above. +* Download the [Hector zip file](https://github.com/JGCRI/hector/archive/master.zip) or check out the repository using Git. +* From Xcode, open the project file in `project_files/Xcode/hector.xcodeproj`. + +The Xcode project file is configured to use constants defining custom paths, rather than hard-coded paths. +This means that developers and users can set these paths without overwriting each other. + +* As a result, **you will need to set several custom paths** (Preferences -> Locations -> Custom Paths): `BOOSTROOT`, and `HECTORDIR`. + * `BOOSTROOT` is the root directory where the Boost headers can be found in `boost/`. + * `HECTORDIR` should be set to root directory for the model (the repository root) Xcode will use this path to the ini files used by the various schemes and write the csv files to the output directory. + +* If you want to build Hector's testing framework (the `hector-tests` target; this is optional and only relevant for C++ developers) add GTEST and GTESTLIB custom paths to Xcode; these are analogous to their Boost counterparts. You will need to install [googletest](https://github.com/google/googletest) on your machine. + +At this point you should be ready to go: + +* Build the project, making sure you're building the `hector` target. +* Run! +* To run a different scenario, change the current Scheme settings (Scheme->Edit Scheme) and modify or add a command-line argument (*Arguments* tab, e.g. "./inst/input/hector_ssp245.ini"). + +The Xcode profile file includes a `hector-tests` target that builds the unit +testing framework described above. + +Xcode Resources + +* [Xcode Schemes](https://developer.apple.com/library/archive/documentation/ToolsLanguages/Conceptual/Xcode_Overview/ManagingSchemes.html) +* [Xcode Debugging](https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/debugging_with_xcode/chapters/debugging_tools.html) + +## Visual Studio / Microsoft Visual C++ + +* Install [Visual Studio](https://visualstudio.microsoft.com/vs/community/) and be sure to the Visual C++ add-on as well. +* Download and install [Boost](https://www.boost.org). +* Set the environment variables: + * `BOOSTROOT` to the location to which you installed Boost (e.g. `C:\boost_1_75_0`) +* Open the Visual Studio project file which is located in your Hector repository under `project_files/VS/hector.sln` +* Build the `hector` target +* To run Hector: + * From the CMD prompt: `project_files/VS/x64/Release/hector.exe ./inst/input/name-of-ini.ini` + * From with in the Visual Studio debugger (the working directory will default to `project_files/VS`): `x64/Release/hector.exe ../../inst/input/name-of-ini.ini` + diff --git a/vignettes/manual/ComponentAPI.Rmd b/vignettes/articles/ComponentAPI.Rmd similarity index 55% rename from vignettes/manual/ComponentAPI.Rmd rename to vignettes/articles/ComponentAPI.Rmd index 8bac522bf..da9dd3b8e 100644 --- a/vignettes/manual/ComponentAPI.Rmd +++ b/vignettes/articles/ComponentAPI.Rmd @@ -1,28 +1,37 @@ --- title: Hector component API +subtitle: C++ --- **Constructor** + * Assigning time series names and interpolation settings. * Assigning default values. **init()** + * Opening the log. * Storing pointer to the core (not available before then). * Registering dependencies (ditto). * Registering capabilities (ditto). -**prepareToRun()** -* Any initialization that depends on user-input data. -* Any initialization that depends on model start date. - **setData()** +* Messages from the core requesting us to set an internal value (typically, as read from an INI file) are received through this function. + **getData()** -**runSpinup()** +* Messages from the core requesting us to return an internal value are received through this. + +**prepareToRun()** + +* Any initialization that depends on user-input data. +* Any initialization that depends on model start date. **run()** +* The primary run function, in which the core wants us to update our state to a new time _t_. + **shutDown()** -* Close the log. + +* Close the log and do any needed cleanup. diff --git a/vignettes/articles/Constraints.Rmd b/vignettes/articles/Constraints.Rmd new file mode 100644 index 000000000..79563b7b2 --- /dev/null +++ b/vignettes/articles/Constraints.Rmd @@ -0,0 +1,385 @@ +--- +title: Constraints +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = TRUE, warning = FALSE, message = FALSE) +``` + +```{r, echo = FALSE, message = FALSE, warning=FALSE} +library(hector) +library(ggplot2) +theme_set(theme_bw()) +``` + +The Hector model can be run subject to *constraints* that force the model to +have a certain behavior. Technically, this means that the model's components output +user-provided data as opposed to their own calculations, similar to the [data mode](http://www.cesm.ucar.edu/models/cesm1.0/cesm/cesm_doc_1_0_4/x42.html) of a +CESM sub-model. Currently, the available constraints include: + +* GHG concentrations +* Radiative forcing +* Temperature +* Net Biome Production (NBP) + +Constraints can be applied to Hector within the ini file (command-line & R) or +using the Hector package `setvar()` function. + +## Setting Constraints in Hector + +There are two ways to activate a constraint in Hector: through an ini file or +with the `setvar()` function in R. Here is a generic overview of the two different +approaches. See below for a more specific implementation of constraints. + +### Constraints via the ini file + +A Hector [input file](InputFiles.html) is broken up into sections such as `[core]`, +`[temperature]`, `[carbon-cycle-solver]`, and so on. Within each section, users +can define parameter values and pass in input variables -- including constraints. +All of the constraint variables are named with the pattern `variable_constrain` +that points to the csv file where the variables' time series are defined. When +the line starts the symbol `;`, the constraint is off and Hector is free running. +When the constraint line beings without `;`, then Hector is using the constraint +and the user-provided data is used in lieu of Hector's internal calculations. +Changes to the constraints in the input files apply to Hector runs executed at +the command line or with the R interface. + +### Constraints via `setvar()` + +With the Hector R package, the `setvar()` function can be used to set constraints +for a Hector instance. See below for specific examples or run `help("constraints")` +or `help("haloconstrain")` for the static R help documentation. + +### Discontinuous constraints + +Hector _does not perform any interpolation of constraints_ -- constraints are applied +only in the exact years that they are provided by the user, and all other years +(including those immediately before or after constrained years) are treated as +unconstrained (typically, emissions-driven). +This means that constraints can abruptly force Hector's climate system into a +state that is inconsistent with the previous time step. +Concentrations for the first year of a constraint can be discontinuous compared +to the previous year without a constraint. +Concentrations after the last year of a constraint will not necessarily have a +discontinuity, but the behavior of the corresponding component and any related +components may change after this point. +It is the user's responsibility to make sure that constraints are continuous. + + +## Current Constraint Capabilities + +### Atmospheric CO~2~ + +CO$_2$ concentrations ([CO$_2$], given in ppmv CO$_2$) have the largest effect on +total radiative forcing and are affected by carbon-cycle climate interactions. +Running Hector with the CO$_2$ concentration constraint turned on mimics the +default behavior of the Earth System Models which are GHG concentration driven. +This capability is also helpful with debugging. With the atmospheric CO$_2$ +constraint turned on, carbon-cycle and climate feedback parameters +($Q_{10}$ and $\beta$) are essentially ignored. + + +Uncommenting (removing the `;`) from the following line in the `[simpleNbox]` +section of the [input file](InputFiles.html) will turn the atmospheric CO$_2$ +concentration constraint on. + +``` +;CO2_constrain=csv:path/to/constraint/file.csv +``` + +Then the model's atmospheric CO$_2$ concentration ([CO$_2$], given in ppmv CO$_2$) +will follow the contents of this file (which must include at least two columns +titled `Date` and `CO2_constrain`). +Alternatively, Hector's atmospheric CO$_2$ concentration constraint can be set +using the `setvar()` function and `CO2_CONSTRAIN()`. + +Here is an example in R. + +```{r, message=FALSE, warning=FALSE} +# Set up an instance of Hector & run, this is the free running Hector to be +# used as a comparison to the constrained Hector +ini <- system.file("input/hector_ssp245.ini", package = "hector") +core <- newcore(ini, name = "ssp245") +invisible(run(core)) # `invisible` prevents Hector core info from being printed out + +# Extract the output +dates_to_keep <- 1850:2100 +vars_to_keep <- c(ATMOSPHERIC_CO2(), RF_TOTAL(), GLOBAL_TAS()) +free_out <- fetchvars(core, 1850:2100, vars = vars_to_keep) + +# Make a time series of new CO2 values to use as the constraint +constraint_yrs <- 1950:2050 +new_co2 <- seq(from = 200, to = 400, length.out = length(constraint_yrs)) + +# Use setvar() to set up the the constraint, reset and run Hector, and fetch the results +setvar(core, dates = constraint_yrs, var = CO2_CONSTRAIN(), values = new_co2, + unit = getunits(CO2_CONSTRAIN())) +reset(core) +invisible(run(core)) +constrained_out <- fetchvars(core, 1850:2100, vars = vars_to_keep) +``` + +Plot results from the free running Hector with the constrained Hector. + +```{r, echo = FALSE, message = FALSE, warning=FALSE} +ggplot() + + geom_line(data = free_out, aes(year, value, color = "Free running"), size = 1) + + geom_line(data = constrained_out, aes(year, value, color = "x"), + size = 1, linetype = 5) + + facet_wrap("variable", scales = "free", nrow = 2) + + theme(legend.title = element_blank()) + + scale_color_discrete(labels = c("Free running", expression(CO[2] ~ Constrained))) + + labs(y = NULL, x = "Year") +``` + +**How the constraint is implemented in Hector (C++)** + +The CO$_2$ constraint is applied at the _end_ of the current time step. +The full sequence of events is as follows: +First, the model solves the current time-step's carbon cycle conditioned on the +previous time step's carbon pools, ignoring the CO$_2$ constraint. +Then, if a CO$_2$ constraint is present, Hector calculates the difference between +its calculated atmospheric CO$_2$ and the prescribed CO$_2$ constraint. +If the target atmospheric CO$_2$ concentration is lower than the calculated CO$_2$, +the excess carbon is transferred from the atmosphere to the deep ocean; +conversely, if the target atmospheric CO$_2$ concentration is greater than the +calculated value, the additional carbon is transferred from the deep ocean into +the atmosphere. +Finally, Hector records the current atmospheric CO$_2$ concentration (which is now +equal to the constraint value); this is the value that is used in the next time +step's evaluation of carbon-climate feedbacks (e.g. CO$_2$ fertilization of net +primary productivity, surface ocean carbonate chemistry...). +In other words, an atmospheric CO$_2$ constraint at time $t$ does not affect +carbon-climate feedbacks until $t+1$. + +The CO$_2$ constraint need not span the entirety of the Hector simulation, or even +be continuous. +At any given time step, Hector will check whether or not a CO$_2$ constraint exists +at that time step and only apply the constraint if it is present. +This means that "hybrid" runs are possible, where only some specific time ranges +have CO$_2$ constraints while others calculate the atmospheric carbon pool and CO$_2$ +concentrations according to Hector's standard [carbon cycle](SimpleNBox.html). + +### Non CO~2~ concentrations + +Hector can constrain non CO$_2$ GHG concentrations (N$_2$O, CH$_4$, and halocarbons). +These all work in more-or-less the same way as the atmospheric CO$_2$ constraint +(above), except that there is no equivalent to the carbon pool adjustment for these gases. + +In the [input file](InputFiles), they are triggered by a line like the following +in their corresponding component section: + +``` +X_constrain=csv:path/to/file.csv +``` + +As with other CSV inputs, the `/path/to/file.csv` above must include columns for +`Date` and `X_constrain`. + +Alternatively, constraints can be set from the R interface using `setvar()`. +Implementing these constraints follows the same pattern as the temperature, +radiative forcing, and atmospheric CO$_2$: Set up an active Hector core, use +`setvar()` to set the constraint, run, and fetch the output from the Hector core. + + +**How the constraint is implemented in Hector (C++) using CH~4~ as an example** + +At any given time step, Hector will check if the constraint has a value for that +time step (e.g. `CH4_constrain.exists(t)`). +If the constraint exists, Hector will skip all atmospheric chemistry calculations +and set the corresponding atmospheric concentration value to the constraint value +(e.g. `CH4.set(t, CH4_constrain.get(t)`). +If the constraint does not exist, Hector will proceed with its standard atmospheric +chemistry routines for calculating the atmospheric concentration based on emissions +and concentrations of other relevant species. +This means that _concentration constraints always take precedence over emissions_; +in other words, if a particular time step has both an emissions and a concentration +constraint, the emissions constraint is ignored. + +Note that CH$_4$ and N$_2$O have special variables for their pre-industrial +concentration that could conflict with the constraint. In Hector, _concentration +constraints take precedence over pre-industrial concentrations_; +in other words, Hector assumes that if you provide a concentration constraint for +the pre-industrial timestep, that is the concentration you want, regardless of the +prescribed pre-industrial value. The equations for CH$_4$ and N$_2$O concentrations +to radiative forcing were parameterized with specific pre-industrial concentrations. +Users must be cautions of changes to pre-industrial values and how it may affect +the radiative forcing calculations. + +### Radiative forcing + +The model's global radiative forcing `Ftot` which drives global temperature changes +can be constrained. Free running Hector calculates `Ftot` based on the radiative +forcing contributions from GHG concentrations, aerosol emissions, and forcing inputs +[UNSURE WORDING] (e.g. land albedo and solar forcing). Using the radiative forcing +constraint `Ftot_constrain` means any parameters and/or variables that affect +radiative forcing (such as carbon cycle feedback parameters or emissions) will not +affect `Ftot` while the constraint is in effect. The model will extrapolate within +the `Ftot_constrain` as necessary, but not beyond its endpoints. Once Hector's +internal date passes the last date for `Ftot_constrain`, the model's forcing +component becomes *unconstrained*. + + +Uncommenting (removing the `;`) from the following line in the `[forcing]` section +of the [input file](InputFiles.html) will turn the radiative forcing constraint on. + +``` +;Ftot_constrain=csv:path/to/constraint/file.csv +``` + +Here is an example of using the R package to implement the radiative forcing constraint. + +```{r, message=FALSE, warning=FALSE} +# Set up an instance of Hector & run +ini <- system.file("input/hector_ssp245.ini", package = "hector") +core <- newcore(ini, name = "ssp245") +invisible(run(core)) # the invisible call prevents Hector core info from being printed out + +# Extract the output. +dates_to_keep <- 1850:2100 +vars_to_keep <- c(RF_TOTAL(), GLOBAL_TAS()) +free_out <- fetchvars(core, 1850:2100, vars = vars_to_keep) + +# Make a time series of new RF values to use as the RF constraint. We are only +# going to change the RF for a subset of the years. +new_rf <- free_out[free_out$variable == RF_TOTAL() & free_out$year %in% 1950:2050, ] +new_rf$value <- new_rf$value + 3 # increase the total RF + +# Use setvar() to set up the the constraint, reset and run Hector, and fetch the results. +setvar(core, dates = new_rf$year, var = FTOT_CONSTRAIN(), values = new_rf$value, unit = "W/m2") +reset(core) +invisible(run(core)) +constrained_out <- fetchvars(core, 1850:2100, vars = vars_to_keep) +``` + +Plot the total radiative forcing and global mean temperature. Recall the constraint +is only in effect between 1950 and 2050. + +```{r, echo = FALSE, message = FALSE, warning=FALSE} +ggplot() + + geom_line(data = free_out, aes(year, value, color = "Free running"), size = 1) + + geom_line(data = constrained_out, aes(year, value, color = "Constrained RF total"), + size = 1, linetype = 5) + + facet_wrap("variable", scales = "free", nrow = 2) + + theme(legend.title = element_blank()) + + labs(y = NULL, x = "Year") +``` + + +### Temperature + +Uncommenting (removing the `;`) from the following line in the `[temperature]` +section of the [input file](InputFiles.html) will turn the global mean constraint on. + +``` +tas_constrain=csv:path/to/constraint/file.csv +``` + +Then the model's global mean temperature `global_tas` will follow the contents of +this file (which must contain columns titled `Date` and `tas_constrain`; a sample +file is included in the repository (see `inst/input/tables/tgav_historical.csv`). +The model will extrapolate within this data as necessary, but not beyond its endpoints. + +Once Hector's internal date passes the last date in the constraint file, the model's +temperature component becomes *unconstrained*, except that we do not permit it to +suddenly jump to a new temperature. Instead, changes in global radiative forcing +(from which temperature change is computed) are applied to the end-of-constraint +temperature. For more details, see the detailed comments in the +`TemperatureComponent::run` (temperature_component.cpp). + +Here is an example of using the R package to implement the global average mean +temperature (`global_tas`) constraint. + +```{r, message=FALSE, warning=FALSE} +# Set up an instance of Hector & run +ini <- system.file("input/hector_ssp245.ini", package = "hector") +core <- newcore(ini, name = "ssp245") +invisible(run(core)) # `invisible` prevents Hector core info from being printed + +# Extract the output +dates_to_keep <- 1850:2100 +vars_to_keep <- c(GLOBAL_TAS()) +free_out <- fetchvars(core, 1850:2100, vars = vars_to_keep) + +# Make a time series of new temperature values to use as the constraint +new_tgav <- free_out[free_out$variable == GLOBAL_TAS(), ] +new_tgav$value <- new_tgav$value + new_tgav$value * 0.25 # increase global temp by 25% + +# Use setvar() to set up the the constraint, reset and run Hector, and fetch the results +setvar(core, dates = new_tgav$year, var = TAS_CONSTRAIN(), values = new_tgav$value, + unit = getunits(TAS_CONSTRAIN())) +reset(core) +invisible(run(core)) +constrained_out <- fetchvars(core, 1850:2100, vars = vars_to_keep) +``` + + +Plot the total radiative forcing and global mean temperature. Recall the constraint +is only in effect between 1950 and 2050. + +```{r, echo = FALSE, message = FALSE, warning=FALSE} +ggplot() + + geom_line(data = free_out, aes(year, value, color = "Free running"), size = 1) + + geom_line(data = constrained_out, aes(year, value, color = "Constrained RF total"), + size = 1, linetype = 5) + + facet_wrap("variable", scales = "free", nrow = 2) + + theme(legend.title = element_blank()) + + labs(y = NULL, x = "Year") +``` + +### NBP + +The NBP constraint can be activated via the ini file by adding the line + +``` +NBP_constrain=csv:path/to/constraint/file.csv +``` + +to the `[simpleNbox]` section of the [input file](InputFiles.html), where the +constraint csv file has columns titled `Date` and `NBP_constrain` similar to the +sample file is included in the repository (see `inst/input/tables/tgav_historical.csv`). + +Here is an example implemented in the R interface + +```{r} +constraint_yrs <- 2001:2010 +constraint_values <- c(0.1, 0.2, 0.3, -0.4, -0.5, -0.6, 0.7, 0.8, 0.9, 1.0) + +ini <- system.file("input/hector_ssp245.ini", package = "hector") +core <- newcore(ini, name = "ssp245") +invisible(run(core)) # `invisible` prevents Hector core info from being printed out + +# Extract the output +dates_to_keep <- 1850:2100 +vars_to_keep <- c(ATMOSPHERIC_CO2(), NBP(), NPP(), RH()) +free_out <- fetchvars(core, 1850:2100, vars = vars_to_keep) + +# Use setvar() to set up the the constraint, reset and run Hector, and fetch the results +setvar(core, dates = constraint_yrs, var = NBP_CONSTRAIN(), values = constraint_values, + unit = getunits(NBP_CONSTRAIN())) +reset(core) +invisible(run(core)) +constrained_out <- fetchvars(core, 1850:2100, vars = vars_to_keep) +``` + +Plot results from the free running Hector with the constrained Hector. + +```{r, echo = FALSE, message = FALSE, warning=FALSE} +ggplot() + + geom_line(data = free_out, aes(year, value, color = "Free running"), size = 1) + + geom_line(data = constrained_out, aes(year, value, color = "x"), + size = 1, linetype = 5) + + facet_wrap("variable", scales = "free", nrow = 2) + + theme(legend.title = element_blank()) + + scale_color_discrete(labels = c("Free running", expression(CO[2] ~ Constrained))) + + labs(y = NULL, x = "Year") +``` + +The model hits the constraint exactly by raising RH and lowering NPP. +Because of this, atmospheric CO$_2$ rises rapidly during the constraint period, +as we've basically shut down the land C sink. As a result, when the model exits +the constraint period, NPP shoots up very high (because the atmosphere is saturated +with CO$_2$). +In a similar vein, the suppressed NPP means, once outside of the constraint, that +RH is low and thus the land becomes a large sink as it draws down the excess +atmospheric CO$_2$. diff --git a/vignettes/manual/ContributionsGuide.Rmd b/vignettes/articles/ContributionsGuide.Rmd similarity index 85% rename from vignettes/manual/ContributionsGuide.Rmd rename to vignettes/articles/ContributionsGuide.Rmd index 45f608fa1..55abaaa18 100644 --- a/vignettes/manual/ContributionsGuide.Rmd +++ b/vignettes/articles/ContributionsGuide.Rmd @@ -2,7 +2,7 @@ title: Contribution Guide --- -The Hector team welcomes and values community contributions to Hector, but there are a few things important to know. +The Hector team welcomes and values community contributions to Hector, but there are a few important things to know. All contributions must pass through a pull request (PR) process before being merged into the master branch of Hector. Please note that opening a PR does **not** guarantee your work will be merged; we assess potential model changes for fit with Hector’s long-term strategic plan, compatibility, conformance to the model’s code style, and other factors. @@ -12,16 +12,23 @@ We encourage all contributors to read and comply with the following guidelines: * We use [GitHub's pull request feature](https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request) to merge new developments into Hector. We will not merge changes made directly to the master branch, please make your changes to a [branch](https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging); * Use [Roxygen](https://roxygen2.r-lib.org/) where applicable (e.g., adding or changing functions, adding data sets) but also add thorough and coherent inline documentation; * Add [unit tests](https://r-pkgs.org/tests.html) if applicable, when adding or changing functions; -* Comply with the [Hector code style guide](https://jgcri.github.io/hector/articles/manual/StyleGuide.html); and +* Comply with the [Hector code style guide](StyleGuide.html); and * The PR will need to be able to pass a suite of automated tests. Hector adheres to the [semantic versioning](https://semver.org/) ideology. This being said, since not all model development will be equal in scope or magnitude, not all PR reviews will be equal. The types of Hector PR we expect include: * "Patch changes" that make no impact on Hector functionality, such as documentation fixes or removing dead code, are the easiest to assess and merge. * "Minor changes" that don’t change the model’s behavior in any fundamental way and don’t change its inputs may require unit tests and some more review. -* "Major changes" that change the model’s input or output structure or induce major behavioral shifts, are considered _breaking changes_. These are subject to the most stringent reviews and will require scientific justification of the development and evidence that the changes have the intended consequences. These PRs will almost always be merged into a development branch, not master, until a new version of the Hector is ready for release. +* "Major changes" that change the model’s input or output structure or induce major behavioral shifts, are considered _breaking changes_. These are subject to the most stringent reviews and will require scientific justification of the development and evidence that the changes have the intended consequences. PRs will almost always be merged into a development branch, not master until a new version of the Hector is ready for release. -Thank you for your interest in contributing to Hector and we look forward to working with you! However, we maintain the right to refuse to merge PRs that do not comply with these guidelines or that do not meet contribution standards. +Thank you for your interest in contributing to Hector and we look forward to working with you! However, we maintain the right to refuse to merge PRs that do not comply with these guidelines or that do not meet contribution standards. + +*** + +See also + +* [Authorship Guidelines](AuthorshipGuidelines.html) +* [Style Guide](StyleGuide.html) diff --git a/vignettes/manual/Hector-External-API.md b/vignettes/articles/ExternalAPI.Rmd similarity index 81% rename from vignettes/manual/Hector-External-API.md rename to vignettes/articles/ExternalAPI.Rmd index 8252720d1..fa1e7414c 100644 --- a/vignettes/manual/Hector-External-API.md +++ b/vignettes/articles/ExternalAPI.Rmd @@ -1,8 +1,11 @@ -# Hector External API +--- +title: "Hector External API" +subtitle: "C++" +--- ## Introduction -The Hector external API allows another program to execute one or more Hector runs from within another program. All of the functionality available in the stand-alone version of Hector is available through the API. In fact, stand-alone Hector is implemented as a wrapper around a series of calls to the API. Therefore, a program using the Hector API can do all of the following: +The Hector external API allows another program to execute one or more Hector runs within another program. All of the functionality available in the stand-alone version of Hector is available through the API. In fact, stand-alone Hector is implemented as a wrapper around a series of calls to the API. Therefore, a program using the Hector API can do all of the following: * Set up one or more Hector instances and read configuration files. * Set emissions values. * Run Hector through a specified date, resuming from wherever the model last stopped. @@ -24,14 +27,14 @@ The Hector API is supported in Hector version 1.1 and later. It is written in C+ ## Installation and Setup -[Install and build Hector|BuildHector] normally. The build process will produce a library called `libhector.a`. You will need to link this file into your executable when you build your program. If you have a place where you store all of your libraries (e.g., `/usr/local/lib`), you can copy it there, or you can just use it in place if you wish. You will also need to be able to include the Hector header files in your code. They are found in the 'headers' directory under the directory where you installed hector. You could copy that entire directory tree to something like `/usr/include/hector` if you wish, but it's probably just as easy to leave it where it is. +[Install and build Hector](BuildHector.html) normally. The build process will produce a library called `libhector.a`. You will need to link this file into your executable when you build your program. If you have a place where you store all of your libraries (e.g., `/usr/local/lib`), you can copy it there, or you can just use it in place if you wish. You will also need to be able to include the Hector header files in your code. They are found in the 'headers' directory under the directory where you installed Hector. You could copy that entire directory tree to something like `/usr/include/hector` if you wish, but it's probably just as easy to leave it where it is. -You don't absolutely need any of the other files in the Hector directories, but a few others might be useful as examples. The file `source/main-api.cpp` is an example of how to use the API to get data in and out of Hector. You can build the example code by uncommenting these lines in the Makefile: +You don't absolutely need any of the other files in the Hector directories, but a few others might be useful as examples. The file `src/main.cpp` is an example of how to use the API to get data in and out of Hector. You can build the example code by uncommenting these lines in the Makefile: ``` # hector-api: libhector.a main-api.o # $(CXX) $(LDFLAGS) -o hector-api main-api.o -lhector -lgsl -lgslcblas -lm ``` -Then run `make hector-api` to build the example. From the top-level hector directory, run `hector-api input/api-example.ini` to run the example code. The example code reads emissions for several gases from the files in the `input/emissions` directory and loads those emissions into the Hector core through the API. Emissions for the remaining gases are set from the input file, as in the stand-alone version of Hector. +Then run `make hector-api` to build the example. From the top-level Hector directory, run `hector-api input/api-example.ini` to run the example code. The example code reads emissions for several gases from the files in the `input/emissions` directory and loads those emissions into the Hector core through the API. Emissions for the remaining gases are set from the input file, as in the stand-alone version of Hector. ## Using the API @@ -39,24 +42,24 @@ Hector classes are (with one exception) contained in the `Hector::` namespace. T * `Hector::Core` Master controller that mediates interactions between Hector components and with outside code. * `Hector::unitval` Structure for representing a numerical value with attached units. Values that you send to and receive from Hector will be packaged in this structure. The `unitval` class has an implicit conversion to double defined, which strips off the unit and returns the numerical value. Writing a `unitval` to a `std::ostream` writes both the value and the unit (e.g. `12345 Tg`). -* `Hector::message_data` Structure for holding messages for Hector components. A message_data can hold a variety of different message types, but for messages from outside of Hector a message will be either a date (for retrieving data from a component), or a date paired with a `unitval` (for sending data to a component). +* `Hector::message_data` Structure for holding messages for Hector components. A `message_data` can hold a variety of different message types, but for messages from outside of Hector, a message will be either a date (for retrieving data from a component), or a date paired with a `unitval` (for sending data to a component). * `Hector::Logger` Hector's logging class. You only need to deal with this if you want to attach loggers to Hector components. * `Hector::INIToCoreReader` Helper class used during initialization. * `Hector::CSVOutputStreamVisitor` Class that formats and writes Hector's output. You will only need this if you want Hector to produce its native output. If you are planning on retrieving data from Hector and using your code's output mechanism, you can skip it. * `h_exception` Exception class. If something goes wrong Hector will throw this class as an exception. -The Hector Core will be your interface for controlling and interacting with the simulation. To run the simulation you use the Core's run method. To get a component to do something you tell the Hector Core to send the component a message. The type of the message determines what the component will do in response, and the contents of the message provide the input for whatever it is that the component will be doing. The Core routes the message and returns the response, if any. +The Hector core will be your interface for controlling and interacting with the simulation. To run the simulation, you use the core's run method. To get a component to do something, you tell the Hector core to send the component a message. The type of the message determines what the component will do in response, and the contents of the message provide the input for whatever it is that the component will be doing. The core routes the message and returns the response, if any. -A message comprises three parts: -* A **type** that indicates what you want the component to do. The types you will encounter most frequently are *SETDATA* and *GETDATA* -* A **target** that indicates what the message is for. Usually this will be the name of a gas or a type of forcing. Valid targets have defined constants that are given in an [[appendix|Hector Message Targets]]. +A message comprises three parts: +* A **type** that indicates what you want the component to do. The types you will encounter most frequently are *SETDATA* and *GETDATA* +* A **target** that indicates what the message is for. Usually this will be the name of a gas or a type of forcing. Valid targets have defined constants that are given in an [[appendix|Hector Message Targets]]. * The **contents** will provide the input for the component's action. This will be a `message_data` object that you have packed with the relevant data. ### Initialization The general procedure for initialization is: -1. Create an instance of `Hector::core`. +1. Create an instance of `Hector::Core`. 2. Initialize the core. 2. Read and parse the configuration (INI) file. 3. *(Optionally)* Attach an output stream visitor to Hector. @@ -88,7 +91,7 @@ hcore.prepareToRun(); // prepare Hector to run ### Setting Emissions -To set emissions for a gas, send a *SETDATA* message targeted at the gas you want to set emissions for. You don't have to know which component handles the gas; the Core takes care of looking that up. The message contents will be a date (the year you are setting emissions for) and a `unitval` (the emissions value). Hector checks the units on the data passed in, but it doesn't convert on the fly. [[Units for the gases tracked by Hector|Hector Units]] are given in a separate appendix. +To set emissions for a gas, send a *SETDATA* message targeted at the gas you want to set emissions for. You don't have to know which component handles the gas; the core takes care of looking that up. The message contents will be a date (the year you are setting emissions for) and a `unitval` (the emissions value). Hector checks the units on the data passed in, but it doesn't convert on the fly. [Units for the gases tracked by Hector](units.html) are given in a separate appendix. The entire process looks like this: ```C++ @@ -135,10 +138,10 @@ Hector::unitval rftot = hcore.sendMessage(M_GETDATA, D_RF_TOTAL); ``` There is a bit of inconsistency about the use of dates in these calls. Generally, the date is forbidden for forcings, except for halocarbon forcings, where it is required. Dates are forbidden for CO$_2$ concentrations, but required for other gases. We hope to address these inconsistencies in subsequent updates. Note that for outputs that do not allow a date to be supplied, the only way to get a value of the output for a particular date is to stop the run at that date and call `sendMessage()` to get the value for the current model time. -The return value is a `unitval` structure. These can be manipulated directly, or if they are assigned to a double, the units will be stripped off leaving only the value: +The return value is a `unitval` structure. These can be manipulated directly, or if they are assigned to a double, the units will be stripped off, leaving only the value: ```C++ double globaltemp = hcore.sendMessage(M_GETDATA, D_GLOBAL_TEMP); -double ocean_c_flux = hcore.sendMessage(M_GETDATA, D_OCEAN_CFLUX); +double ocean_c_flux = hcore.sendMessage(M_GETDATA, D_OCEAN_C_UPTAKE); ``` ### Shutdown @@ -146,7 +149,7 @@ To stop the core and delete all Hector components, call the `shutdown()` method: ```C++ hcore.shutdown(); ``` -Once this method is called, all further calls to methods on the Hector core will fail. If you have instantiated more than one Hector Core, then only the core on which `shutdown()` is called will be affected. Others will continue to operate normally. +Once this method is called, all further calls to methods on the Hector core will fail. If you have instantiated more than one Hector core, then only the core on which `shutdown()` is called will be affected. Others will continue to operate normally. ### Exceptions If Hector encounters an unrecoverable error, it will throw an exception with `h_exception` as the exception argument. This object can be passed to an `ostream` to print the function, file, and line number where the problem was detected, along with a (hopefully) descriptive message. @@ -161,12 +164,12 @@ catch(const h_exception &e) { ``` ## Building and Running Your Code -There are two things you have to do to build a model linked with Hector. The first is to make sure that the compiler can find the `hector.hpp` include file and all of the header files included from it. You do this by adding the Hector headers directory to your compiler's include path. For example, if you installed Hector in /usr/src/hector, then your compile command might look something like this: +There are two things you have to do to build a model linked with Hector. The first is to make sure that the compiler can find the `hector.hpp` include file and all of the header files included from it. You do this by adding the Hector headers directory to your compiler's include path. For example, if you installed Hector in `/usr/src/hector`, then your compile command might look something like this: ``` g++ -I/usr/src/hector/headers -O -c mycode.cpp ``` -The second thing you have to do is to link the object files and the Hector library, `libhector.a`. You will also need to link in the GNU Scientific Library (GSL). Similar to the compiling step, you have to set the library search path. You also have to add the `-l` options of each of the needed libraries. For example, with Hector in /usr/src/hector and the GSL libraries in /usr/local/lib, the link command looks like this: +The second thing you have to do is to link the object files and the Hector library, `libhector.a`. You will also need to link in the GNU Scientific Library (GSL). Similar to the compiling step, you have to set the library search path. You also have to add the `-l` options of each of the needed libraries. For example, with Hector in `/usr/src/hector` and the GSL libraries in `/usr/local/lib`, the link command looks like this: ``` g++ -L/usr/src/hector/source -L/usr/local/lib mycode.o -lhector -lgsl -lgslcblas -lm ``` @@ -175,5 +178,6 @@ The Hector library is statically linked, so you won't have to worry about librar If the build succeeds, then you should end up with an executable version of your model that you can run in your usual way. Input will be under your code's control, so it will be up to you to supply the Hector libraries with the name of an INI file (see instructions above). Unless you followed the instructions to create a Hector output stream, your code will also be responsible for producing whatever output you want from Hector. ## Limitations and Caveats + * If you're using a Hector output stream, and the code can't create the output file (e.g., because the directory doesn't exist), then the output will be silently discarded. The same is true of the Hector log files. -* There is currently no way to rewind a Hector simulation to an earlier time. If you want to do that, you have to shut down the Hector core and instantiate and initialize a whole new core. The new core won't know anything about the emissions you put into the old core, so if you want it to follow the same emissions pathway up to the rewind point, your code will have to store those emissions and add them to the new core after it is initialized. Then you can run Hector up to the point that you wanted to rewind to. \ No newline at end of file +* There is currently no way to rewind a Hector simulation to an earlier time. If you want to do that, you have to shut down the Hector core and instantiate and initialize a whole new core. The new core won't know anything about the emissions you put into the old core, so if you want it to follow the same emissions pathway up to the rewind point, your code will have to store those emissions and add them to the new core after it is initialized. Then you can run Hector up to the point that you wanted to rewind to. diff --git a/vignettes/manual/Hector-Wider-World.Rmd b/vignettes/articles/Hector-Wider-World.Rmd similarity index 70% rename from vignettes/manual/Hector-Wider-World.Rmd rename to vignettes/articles/Hector-Wider-World.Rmd index 0d61f535c..c402a2c33 100644 --- a/vignettes/manual/Hector-Wider-World.Rmd +++ b/vignettes/articles/Hector-Wider-World.Rmd @@ -1,39 +1,52 @@ --- title: "Hector in the Wider World" author: "Leeya Pressburger" -date: "7/30/2021" -output: - html_document: - toc: yes - toc_float: true +date: "2022-11-07" --- +```{r, include = FALSE} +knitr::opts_chunk$set( + collapse = TRUE, + comment = "#>" +) +``` + + This page is meant to serve as a reference for places where Hector has been featured. This list will be updated with time. -## Hector Publications +## Hector Publications {#hector_documentation} There are three documentation manuscripts for Hector. ### Hector v1 -> Hartin, C. A., Patel, P., Schwarber, A., Link, R. P., and Bond-Lamberty, B. P.: A simple object-oriented and open-source model for scientific and policy analyses of the global climate system – Hector v1.0, Geosci. Model Dev., 8, 939–955, https://doi.org/10.5194/gmd-8-939-2015, 2015. +> Hartin, C. A., Patel, P., Schwarber, A., Link, R. P., and Bond-Lamberty, B. P. (2015). A simple object-oriented and open-source model for scientific and policy analyses of the global climate system – Hector v1.0, Geosci. Model Dev., 8, 939–955. https://doi.org/10.5194/gmd-8-939-2015. -The original manuscript for Hector v1.0, published in 2015. Hector is an open source, object-oriented simple global carbon cycle model. The model takes in CO$_2$ and non-CO$_2$ emissions (e.g., CH$_4$, N$_2$O), converts emissions to concentrations where needed, and calculates the global radiative forcing and the global mean temperature change +The original manuscript for Hector v1.0 was published in 2015. Hector is an open-source, object-oriented simple global carbon cycle model. The model takes in CO$_2$ and non-CO$_2$ emissions (e.g., CH$_4$, N$_2$O), converting emissions to concentrations where needed, and calculates the global radiative forcing and the global mean temperature change ### Hector v1.1 -> Hartin, C. A., Bond-Lamberty, B. P., Patel, P., and Mundra, A.: Ocean acidification over the next three centuries using a simple global climate carbon-cycle model: projections and sensitivities, Biogeosciences, 13, 4329 – 4342, 2016. https://doi.org/10.5194/bg-13-4329-2016 +> Hartin, C. A., Bond-Lamberty, B. P., Patel, P., and Mundra, A. (2016). Ocean acidification over the next three centuries using a simple global climate carbon-cycle model: projections and sensitivities, Biogeosciences, 13, 4329 – 4342. https://doi.org/10.5194/bg-13-4329-2016 Hector v1.1 contains an updated ocean temperature algorithm to better match the CMIP5 mean. -### Hector v2.5 +### Hector v2.0 > Vega-Westhoff, B., Sriver, R. L., Hartin, C. A., Wong, T. E., & Keller, K. (2019). Impacts of observational constraints related to sea level on estimates of climate sensitivity. Earth's Future, 7, 677– 690. https://doi.org/10.1029/2018EF001082 -Hector v2.5 incorporates a one dimensional diffusive heat and energy balance model called [DOECLIM](https://pure.mpg.de/rest/items/item_994422_1/component/file_994421/content) and a global sea level module called [BRICK](https://doi.org/10.5194/gmd-10-2741-2017). +Hector v2.0 incorporates a one-dimensional diffusive heat and energy balance model called [DOECLIM](https://pure.mpg.de/rest/items/item_994422_1/component/file_994421/content) and a global sea level module called [BRICK](https://doi.org/10.5194/gmd-10-2741-2017). -## Hector in Literature +## Hector in Literature {#other_manuscripts} ### Journal articles Below are journal articles that use or reference Hector. + +-- + +[Climate module disparities explain inconsistent estimates of the social cost of carbon in integrated assessment models]() + + +> Wang, Tianpeng, Fei Teng, Xu Deng, and Jun Xie. 2022. “Climate Module Disparities Explain Inconsistent Estimates of the Social Cost of Carbon in Integrated Assessment Models.” One Earth 5 (7): 767–78. + + -- [A permafrost implementation in the simple carbon-climate model Hector v.2.3pf](https://gmd.copernicus.org/articles/14/4751/2021/) @@ -48,7 +61,7 @@ This study adds permafrost into Hector as a separate land carbon pool which deco > Vega‐Westhoff, B., Sriver, R. L., Hartin, C., Wong, T. E., & Keller, K. (2020). The role of climate sensitivity in upper‐tail sea level rise projections. Geophysical Research Letters, 47, e2019GL085792. https://doi.org/10.1029/2019GL085792 -This study uses Hector-BRICK to investigate the effects of Earth's equilibrium climate sensitivity, or long-term temperature response to a doubling of atmospheric CO$_2$, on sea level rise with a focus on the high-impact upper tail. +This study uses Hector-BRICK to investigate the effects of Earth's equilibrium climate sensitivity, or long-term temperature response to a doubling of atmospheric CO$_2$, on sea-level rise with a focus on the high-impact upper tail. -- @@ -62,14 +75,14 @@ In this article, the authors use Hector v2.5.0 to emulate the multiforcing histo [Evaluating climate emulation: fundamental impulse testing of simple climate models](https://esd.copernicus.org/articles/10/729/2019/) -> Schwarber, A. K., Smith, S. J., Hartin, C. A., Vega-Westhoff, B. A., and Sriver, R.: Evaluating climate emulation: fundamental impulse testing of simple climate models, Earth Syst. Dynam., 10, 729–739, https://doi.org/10.5194/esd-10-729-2019, 2019. +> Schwarber, A. K., Smith, S. J., Hartin, C. A., Vega-Westhoff, B. A., and Sriver, R. (2019). Evaluating climate emulation: fundamental impulse testing of simple climate models, Earth Syst. Dynam., 10, 729–739. https://doi.org/10.5194/esd-10-729-2019 The authors use fundamental impulse tests of CO$_2$, CH$_4$, and black carbon to understand the fundamental gas cycle and climate system responses of comprehensive and idealized simple climate models. ### RCMIP Project The Reduced Complexity Model Intercomparison Project ([RCMIP](https://www.rcmip.org/)) is the first systematic intercomparison project for reduced-complexity climate models (RCM) and provides a standard protocol for one-line models and simple and reduced-complexity models to perform experiments from a common set of assumptions. In short, this creates a standardized test of RCMs to reproduce Earth System Model projections. Hector is one such model being used in RCMIP. -[RCMIP Phase 1](https://gmd.copernicus.org/articles/13/5175/2020/) focuses on RCM's global mean temperature responses while [RCMIP Phase 2](https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2020EF001900) explores the extent to which different RCMs can be calibrated to reproduce knowledge from specialized research communities. +[RCMIP Phase 1](https://gmd.copernicus.org/articles/13/5175/2020/) focuses on RCMs' global mean temperature responses while [RCMIP Phase 2](https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2020EF001900) explores the extent to which different RCMs can be calibrated to reproduce knowledge from specialized research communities. ## Other Places @@ -83,11 +96,11 @@ pyhector is a Python interface for Hector. Github found [here](https://github.com/openclimatedata/pyhector). ### YouTube Walkthrough -[Here](https://www.youtube.com/watch?v=EFJS-buvGN8) is a video walkthrough by Kalyn Dorheim including information on: +[Here](https://www.youtube.com/watch?v=EFJS-buvGN8) is a video walk through by Kalyn Dorheim including information on using Hector v2.5: * Installing Hector * Running a core -* Running RCP 4.5 +* Running a scenario * Accessing and plotting results * Shutting down a core * Changing a parameter @@ -100,6 +113,6 @@ The HectorUI interface can be found [here](https://jgcri.shinyapps.io/HectorUI/) The HectorUI paper can be found [here](https://joss.theoj.org/papers/10.21105/joss.02782) -> Evanoff J.E., C.R. Vernon, S.T. Waldhoff, A.C. Snyder, and C.A. Hartin. 2020. "hectorui: A web-based interactive scenario builder and visualization application for the Hector climate model." The Journal of Open Source Software 5, no. 56:Article No. 2782. PNNL-SA-156861. https://doi.org/10.21105/joss.02782 +> Evanoff J.E., Vernon, C.R., Waldhoff, S.T., Snyder, A. C., and Hartin, C.A. (2020). "hectorui: A web-based interactive scenario builder and visualization application for the Hector climate model." The Journal of Open Source Software 5, no. 56:Article No. 2782. PNNL-SA-156861. https://doi.org/10.21105/joss.02782 -A YouTube overview of HectorUI by Stephanie Pennington can be found [here](https://www.youtube.com/watch?v=fBHXS7pjZcI). \ No newline at end of file +A YouTube overview of HectorUI by Stephanie Pennington can be found [here](https://www.youtube.com/watch?v=fBHXS7pjZcI). diff --git a/vignettes/articles/HectorSummary.Rmd b/vignettes/articles/HectorSummary.Rmd new file mode 100644 index 000000000..76a933094 --- /dev/null +++ b/vignettes/articles/HectorSummary.Rmd @@ -0,0 +1,49 @@ +--- +title: "Hector general summary" +author: "Leeya Pressburger" +date: "9/29/2021" +--- + +## Introduction to Hector +Hector is an open-source, object-oriented, simple global carbon cycle model. As a simple climate model, Hector runs very quickly while still representing the most critical global Earth system processes. Hector is the default carbon cycle module for the integrated assessment model GCAM (Global Change Assessment Model). Its open-source nature and modular design allows the user to edit input files and code, meaning a user could design a new submodel to answer a particular science question. Hector can accurately reproduce historical trends and future projections of atmospheric CO~2~, radiative forcing, and global temperature change under the RCPs and SSPs.^[Hartin, C. A., Patel, P., Schwarber, A., Link, R. P., and Bond-Lamberty, B. P. (2015). A simple object-oriented and open-source model for scientific and policy analyses of the global climate system – Hector v1.0, Geosci. Model Dev., 8, 939–955. https://doi.org/10.5194/gmd-8-939-2015.] + +Hector contains a well-mixed global atmosphere, an ocean component, and a land component composed of vegetation, detritus, and soil. Briefly, terrestrial vegetation, detritus, and soil are linked with each other and the atmosphere by first-order differential equations. Carbon flows from vegetation to detritus to soil, losing fractional amounts to heterotrophic respiration. For more details on the terrestrial carbon cycle, please reference ["The model's terrestrial carbon cycle"](SimpleNBox.html). Note that Hector's fundamental time step is one year, but the carbon cycle can be scaled to a finer resolution if necessary.^[Hartin et al., 2015.] + +The ocean component consists of four boxes: two surface boxes, one high-latitude and the other low-latitude, one intermediate, and one deep box. The cold high-latitude (>55$^◦$) box makes up 15% of the ocean surface area and the warm low-latitude box (>55$^◦$) makes up the remaining 85%. Ocean temperatures are linearly related to the global atmospheric temperature change; this temperature gradient causes a flux of carbon into the high-latitude box and a flux of carbon out of the warm low-latitude box.^[Vega-Westhoff, B., Sriver, R. L., Hartin, C. A., Wong, T. E., & Keller, K. (2019). Impacts of observational constraints related to sea level on estimates of climate sensitivity. Earth's Future, 7, 677– 690. https://doi.org/10.1029/2018EF001082] + +Hector can also calculate near surface global atmospheric temperature. Radiative forcing is calculated from various atmospheric greenhouse gases, aerosols, and pollutants, including halocarbons, tropospheric ozone, black and organic carbon, sulfate aerosols, methane (CH~4~), nitrous oxide (N~2~0), and stratospheric H~2~0 from methane oxidation.^[Hartin et al., 2015] + +Hector v2.0 replaced the temperature component of the model with the coupled 0-D climate and 1-D ocean heat diffusion model, DOECLIM. The Hector implementation, like other past assessments using DOECLIM, has three tuneable physical parameters: equilibrium climate sensitivity to a doubling of CO~2~, vertical ocean diffusivity, and an aerosol forcing scaling factor. This addition improved vertical ocean structure and heat uptake as well as the surface temperature response to radiative forcing. Additionally, Hector V2.0 incorporates a semiempirical model based on global temperature to calculate global sea level change. This component is based on the BRICK model framework, where global sea level changes are treated as the sum of contributions from thermal expansion, glaciers and small ice caps, the Greenland and Antarctic ice sheets, and changes in land water storage. BRICK has been updated within Hector to simplify coupling.^[Vega-Westhoff et al., 2019] + +## Other simple climate models + +Simple climate models, also referred to as reduced-complexity climate models, represent only the most critical global-scale Earth system processes with low spatial and temporal resolution. These models are relatively easy to use or understand and are computationally less expensive and time-consuming than more complex Earth system models. Most simple climate models calculate future concentrations of greenhouse gases from given emissions while modeling the global carbon cycle, calculating global mean radiative forcing from greenhouse gas concentrations, and converting the radiative forcing to global mean temperature.^[Hartin et al., 2015] + +Other simple climate models include, although are not limited to, the following: + +* [ACC2](https://doi.org/10.1007/s10584-009-9566-6): The Aggregated Carbon Cycle, Atmospheric Chemistry, and Climate model +* [AR5IR](https://doi.org/10.5194/acp-13-1853-2013): The Fifth Assessment Report Impulse Response Model +* [CICERO-SCM](http://hdl.handle.net/11250/192444): The CICERO Simple Climate Model +* [EMGC](https://doi.org/10.5194/acp-13-3997-2013): The Empirical Model of Global Climate +* [ESCIMO](https://doi.org/10.5194/esd-7-831-2016): The Earth System Climate Interpretable Model +* FaIR-v1-5 and FaIR-v2-0-0: The Finite-amplitude Impulse Response +* [GENIE](https://www.ercim.eu/publication/Ercim_News/enw61/price.html): Grid Enabled Integrated Earth System Model +* [GREB](https://doi.org/10.1007/s00382-011-1026-0): The Globally Resolved Energy Balance model, also referred to as the Monash Simple Climate Model +* [MAGICC](http://www.magicc.org/): The Model for the Assessment of Greenhouse Gas Induced Climate Change +* [MARGO](https://doi.org/10.31223/osf.io/5bgyc): MARGO represents four potential climate controls, emissions Mitigation, carbon dioxide Removal, Geo-engineering, and Adaptation. +* [MCE](https://doi.org/10.5194/gmd-2021-79): A minimal CMIP emulator +* [OSCAR](https://doi.org/10.5194/gmd-10-271-2017): a simple earth system model and non-linear box model +* [RDCEP](http://www.rdcep.org/research-projects/climate-emulator): The Center for Robust Decision-making on Climate and Energy Policy created a statistical climate emulator. +* [WASP](https://doi.org/10.1007/s00382-015-2960-z): The Warming Acidification and Sea level Projector + +## Further information +Please see the documentation manuscripts: + +1. [Hector v1](https://doi.org/10.5194/gmd-8-939-2015): + Hartin, C. A., Patel, P., Schwarber, A., Link, R. P., and Bond-Lamberty, B. P. (2015). A simple object-oriented and open-source model for scientific and policy analyses of the global climate system – Hector v1.0, Geosci. Model Dev., 8, 939–955. https://doi.org/10.5194/gmd-8-939-2015 + +2. [Hector v1.1](https://doi.org/10.5194/bg-13-4329-2016): + Hartin, C. A., Bond-Lamberty, B. P., Patel, P., and Mundra, A. (2016). Ocean acidification over the next three centuries using a simple global climate carbon-cycle model: projections and sensitivities, Biogeosciences, 13, 4329 – 4342. https://doi.org/10.5194/bg-13-4329-2016 + +3. [Hector v2.0](https://doi.org/10.1029/2018EF001082): + Vega-Westhoff, B., Sriver, R. L., Hartin, C. A., Wong, T. E., & Keller, K. (2019). Impacts of observational constraints related to sea level on estimates of climate sensitivity. Earth's Future, 7, 677– 690. https://doi.org/10.1029/2018EF001082 diff --git a/vignettes/articles/InputFiles.Rmd b/vignettes/articles/InputFiles.Rmd new file mode 100644 index 000000000..3dc919e51 --- /dev/null +++ b/vignettes/articles/InputFiles.Rmd @@ -0,0 +1,89 @@ +--- +title: Hector input files +--- + +# General information + +When Hector is invoked from the command line, it takes a single parameter: the name of the primary input file to read. This file, typically stored in the `input/` directory, contains configuration and parameter data controlling the model's run, output, and behavior. + +The primary input file is a text file with *sections*, *properties*, and *values*. For example, the beginning of the [SSP245 file](/tree/master/inst/input/hector_ssp245.ini) included in the repository looks like this: + +``` +; Config file for hector model: SSP245 +;------------------------------------------------------------------------ +[core] +run_name=ssp245 +``` + +Here, comments start with a semicolon (`;`); *section names* (`core`) are enclosed in square brackets; and a *property* (`run_name`) is assigned a *value* (`ssp245`). Properties are guaranteed to be unique within a particular section, and all sections match one-to-one with a model [component](ComponentAPI.html). + + +## Table of model parameters + +``` {r table, echo = FALSE, warning = FALSE} +library(knitr) +library(kableExtra) + +input <- hector::inputstable +colnames(input) <- c("Section", "Parameter", "Biome specific", "Time variant", + "Required", "Default", "Units", "Description") + +params <- subset(input, input$`Time variant` == "n") +v_params <- subset(input, input$`Time variant` == "y") +biome_spec <- subset(input, input$`Biome specific` == "y") +colnames(v_params)[2] <- "Input variable" + +rownames(params) <- NULL +rownames(v_params) <- NULL +rownames(biome_spec) <- NULL + +kbl(params) %>% + kable_styling(fixed_thead = TRUE, + bootstrap_options = "hover") %>% + scroll_box(height = "400px") +``` + +## Table of biome-specific inputs + +It is possible to run Hector with multiple distinct [biomes](ex_multiple-biomes.html). +The following parameters are specific to a particular biome. + +``` {r biomes, echo = FALSE} +kbl(biome_spec) %>% + kable_styling(fixed_thead = TRUE, + bootstrap_options = "hover") %>% + scroll_box(height = "400px") + +``` + + +## Table of variable inputs (with a time index) + +There are two Hector-specific wrinkles to the INI property-value assignment scheme. +First, some properties have a time index that's required when assigning: + +``` +Ftalbedo[1750]=0.0 +Ftalbedo[1950]=-0.2 +``` + +More commonly, such [time series](TimeSeries.html) are assigned by reading data +in from a comma-separated value text file: + +``` +lucEmissions=csv:input/emissions/ssp245_emissions.csv +``` + +In this case, the `input/emissions/ssp245_emissions.csv` file is parsed and the +data in column `lucEmissions` are assigned to the model variable, with a required +`Date` column providing the time index. Note that a "(csv)" entry in the `default` +column indicates that the values are passed in via a path to a csv file. + +``` {r timetable, echo = FALSE} +kbl(v_params) %>% + kable_styling(fixed_thead = TRUE, + bootstrap_options = "hover") %>% + scroll_box(height = "400px") +``` + +[gsl-ode]: https://www.gnu.org/software/gsl/manual/html_node/Ordinary-Differential-Equations.html#Ordinary-Differential-Equations diff --git a/vignettes/articles/Permafrost.Rmd b/vignettes/articles/Permafrost.Rmd new file mode 100644 index 000000000..f187b3825 --- /dev/null +++ b/vignettes/articles/Permafrost.Rmd @@ -0,0 +1,154 @@ +--- +title: "An Introduction to Permafrost in Hector" +output: rmarkdown::html_vignette +vignette: > + %\VignetteIndexEntry{An Introduction to Permafrost in Hector} + %\VignetteEngine{knitr::rmarkdown} + %\VignetteEncoding{UTF-8} +--- + +```{r, include = FALSE} +knitr::opts_chunk$set( + collapse = TRUE, + comment = "#>" +) +``` + +Hector version 3 introduces a new capability to the model: permafrost thaw. +The is important because enormous amounts of organic carbon are stored in +high-latitude permafrost soils, frozen pools that can destabilized, thawed, +and released to the atmosphere by climatic warming. +This process has the potential to significantly accelerate climate +change [(Schuur et al. 2015)](https://www.nature.com/articles/nature14338). + +**It is important to note that (1) permafrost is currently OFF by default, +and (2) the model's permafrost dynamics have not been fully checked against +the original implementation [(Woodard et al. 2021)](https://gmd.copernicus.org/articles/14/4751/2021/). As a result, this +is currently an EXPERIMENTAL feature that is not +ready for scientific simulations.** + +> Woodard, D. L., Shiklomanov, A. N., Kravitz, B., Hartin, C., Bond-Lamberty, B. (2021). A permafrost implementation in the simple carbon-climate model Hector v.2.3pf. Geosci. Model Dev., 14, 4751–4767. https://doi.org/10.5194/gmd-14-4751-2021 + +### Setup + +Start by setting up a default Hector core and running it: + +```{r setup} +library(hector) +ini <- system.file("input/hector_ssp245.ini", package = "hector") +core <- newcore(ini, name = "ssp245-default") +``` + +As noted above, currently by default the model is initialized with no permafrost carbon: + +```{r} +fetchvars(core, dates = NA, vars = PERMAFROST_C()) +``` + +Run the default core and save its outputs: + +```{r} +invisible(run(core)) + +# Output variables we want to retrieve +climate_vars <- c(ATMOSPHERIC_CO2(), GLOBAL_TAS(), RF_CO2(), RF_TOTAL()) +permafrost_vars <- c(PERMAFROST_C(), THAWEDP_C(), RH(), CONCENTRATIONS_CH4()) + +run1 <- fetchvars(core, dates = 1745:2300, vars = c(climate_vars, permafrost_vars)) +shutdown(core) +``` + +### Enabling permafrost + +Set up a new core and set its initial permafrost carbon to 865 Pg C, +the value used by Woodard et al. (2021): + +```{r} +core <- newcore(ini, name = "ssp245-permafrost") +setvar(core, 0, PERMAFROST_C(), 865, "Pg C") +invisible(run(core)) + +run2 <- fetchvars(core, dates = 1745:2300, vars = c(climate_vars, permafrost_vars)) +``` + +We can check and confirm that permafrost was lost to the atmosphere as the climate warmed... + +```{r} +fetchvars(core, 2300, PERMAFROST_C()) +shutdown(core) +``` + +...leading to earth system and climate differences: + +```{r, fig.width=7, fig.height=5} +results <- rbind(run1, run2) + +library(ggplot2) +ggplot(subset(results, variable %in% climate_vars), + aes(year, value, color = scenario)) + + geom_line() + + facet_wrap(~variable, scales = "free") +``` + +### A closer look at permafrost dynamics + +The thaw rate is controlled by biome-specific air temperature, and thawed +permafrost slowly decomposes into both CH$_4$ and CO$_2$. We can look at some of +these effects in more detail: + +```{r, fig.width=7, fig.height=5} +ggplot(subset(results, variable %in% permafrost_vars), + aes(year, value, color = scenario)) + + geom_line() + + facet_wrap(~variable, scales = "free") +``` + +Here we can see how permafrost thaws and then, in the 22nd century, slightly +refreezes; the thawed permafrost pool peaks in the second half of the 20th +century and then declines; and both atmospheric methane and total heterotrophic +respiration are significantly higher +in the permafrost than non-permafrost simulations. + +### Controlling the behavior of permafrost thaw + +As described by Woodard et al. (2021), the relationship between air temperature +and thaw fraction is controlled by two parameters that are calibrated to +CMIP6 data: + +```{r} +core <- newcore(ini, name = "ssp245-permafrost") +setvar(core, 0, PERMAFROST_C(), 865, "Pg C") +fetchvars(core, NA, c(PERMAFROST_MU(), PERMAFROST_SIGMA())) +``` + +We can test the effect of varying these parameters: + +```{r, fig.width=7, fig.height=5} +run_fn <- function(value, core, variable) { + setvar(core, NA, variable, value, "degC") + reset(core) + run(core) + out <- fetchvars(core, 2100:2300, vars = GLOBAL_TAS()) + out$varying <- variable + out$param_value <- value + out +} + +# Run basic parameter sensitivity test +results_mu <- lapply(seq(1.4, 2.1, length.out = 6), run_fn, core, PERMAFROST_MU()) +results_sigma <- lapply(seq(0.7, 1.2, length.out = 6), run_fn, core, PERMAFROST_SIGMA()) + +# Combine results and plot +results <- do.call("rbind", c(results_mu, results_sigma)) + +default <- subset(run2, variable == GLOBAL_TAS() & year %in% 2100:2300) + +ggplot(results, aes(year, value, color = param_value, group = paste(varying, param_value))) + + geom_line(linetype = 2) + + ylab(GLOBAL_TAS()) + + facet_wrap(~varying) + + # add a thick black line to show default behavior + annotate(geom = "line", x = default$year, y = default$value, linewidth = 1.5) +``` + +Hector's permafrost capability is planned to be fully science-ready in v3.1. diff --git a/vignettes/manual/SimpleNBox.Rmd b/vignettes/articles/SimpleNBox.Rmd similarity index 77% rename from vignettes/manual/SimpleNBox.Rmd rename to vignettes/articles/SimpleNBox.Rmd index c069fb802..5c6b255c2 100644 --- a/vignettes/manual/SimpleNBox.Rmd +++ b/vignettes/articles/SimpleNBox.Rmd @@ -4,39 +4,47 @@ resource_files: - hector_terrestrial_c.svg --- -Contents: +## Science -- [Scientific basis](#simplenbox-science) behind the terrestrial C cycle -- [Implementation details](#simplenbox-implementation) - -# Science {#simplenbox-science} - -Hector's land C sink is divided into three pools: vegetation ($C_v$), detritus ($C_d$), and soil ($C_s$). -These sinks are global by default, but they can be divided into $n$ "biomes" with unique parameters and initial pool sizes. +Hector's land system is divided into three pools: vegetation ($C_v$), detritus ($C_d$), and soil ($C_s$); +a fourth pool, earth ($C_earth$) is used only for anthropogenic emissions and uptake. +These pools are global by default, but they can be divided into $n$ "biomes" with unique parameters and initial pool sizes. The total C flux from atmosphere to land at time $t$ ($F_{L}(t)$; also known as Net Biome Production, NBP) is the net of C sequestration by photosynthesis (net primary productivity, $NPP_i(t)$) and C release by heterotrophic respiration ($RH_i(t)$) summed across each biome $i$, and global land use change ($LUC(t)$) (note that this calculation does not currently include fire, another important land C source): $$ F_{L}(t) = \sum_{i=1}^{n} \left( NPP_i(t) - RH_i(t) \right) - LUC(t) $$ -NPP is calculated as the product of a user-specified pre-industrial value ($NPP_0$, default is 50 PgC/year) and a CO~2~ fertilization multiplier ($f(C_{atm}, \beta)$), which in turn is a function of the current atmospheric CO~2~ concentration ($C_{atm}$), the initial ("pre-industrial") CO~2~ concentration ($C_0$), and biome-specific CO~2~ fertilization parameter $\beta_i$ (default = 0.36): +NPP is calculated as the product of a user-specified pre-industrial value ($NPP_0$, default is 56.2 Pg C/year), a CO~2~ fertilization multiplier ($f(C_{atm}, \beta)$), and the effect of land use change (LUC) on vegetation carbon stocks: + +$$ NPP_i(t) = NPP_{0,i} \times f(C_{atm}, \beta_i) \times f(LUC_{v}) $$ + +The CO~2~ fertilization multiplier is a function of the current atmospheric CO~2~ concentration ($C_{atm}$), the initial ("pre-industrial") CO~2~ concentration ($C_0$), and biome-specific CO~2~ fertilization parameter $\beta_i$ (default = 0.36): -$$ NPP_i(t) = NPP_{0,i} \times f(C_{atm}, \beta_i) $$ $$ f(C_{atm}, \beta_i) = 1 + \beta_i \left( \log(\frac{C_{atm}}{C_0})\right) $$ +The LUC multiplier accounts for the effect of vegetation losses or gains on NPP (although we +recognize that LUC does not always result in 'lost' NPP); this behavior is new as of Hector v3. +It is computed as a fraction based on preindustrial (end-of-spinup) vegetation carbon ($C_{v}$) and the running sum of LUC-driven losses from -- or gains to -- vegetation: + +$$ f(LUC_{v}) = \frac{C_{0v} - \sum LUC_{veg}}{C_{0v}} $$ + Heterotrophic respiration occurs in soil ($RH_s(t)$) and detritus ($RH_d(t))$) as a function of biome-specific atmospheric temperature anomaly ($T_i$, calculated as the global atmospheric temperature anomaly scaled by a biome-specific warming factor $\delta$) and the size of the current soil and detritus C pools ($C_s$ and $C_d$, respectively). $$ T_i(t) = \delta \, T_G(t) $$ $$ RH_s = \frac{1}{50} C_s Q_{10}^{T_{i}(t) / 10}$$ $$ RH_d = \frac{1}{4} C_d Q_{10}^{T_{i}(t) / 10}$$ -Note that the residence times of soil and detritus C pools---50 and 4 years, respectively---are currently hard-coded values in Hector. +Note that the residence times of soil and detritus C pools -- 50 and 4 years, respectively -- are currently hard-coded values in Hector. -Fluxes associated with land use change ($LUC$) are prescribed via the `luc_emissions` variable in the INI value. -Example time series associated with representative carbon pathways (RCP) 2.6, 4.5, 6.0, and 8.5 are included with Hector in the corresponding `inst/input/emissions/RCP**_emissions.csv` files. +Fluxes associated with land use change ($LUC$) are prescribed via the `luc_emissions` variable in the INI file. +Example time series associated with shared socioeconomic pathways (SSPs) are included with Hector in the corresponding `inst/input/tables/ssp**_emiss-constraints_rf.csv` files. +There are two LUC fluxes, land uptake and loss, and both add or remove carbon +to the land pools in proportion to those pools' size. (This behavior +is new as of version 3 of the model.) Note that the cumulative $LUC_{v}$, LUC effects on vegetation, affects NPP as documented above. In each biome at each time step, the vegetation pools change as follows (biome, $i$ and time, $t$ subscripts omitted for clarity): -C gain from NPP is distributed to vegetation, detritus, and soil according to fractionation parameters $f_{nv}$, $f_{nd}$, and $f_{ns}$, respectively. +C gain from NPP is distributed to vegetation, detritus, and soil according to fraction parameters $f_{nv}$, $f_{nd}$, and $f_{ns}$, respectively. Similarly, each pool bears a fraction of the total C loss from land-use change ($F_{LC}$), again according to fractions $f_{lv}$, $f_{ld}$, and $f_{ls}$. The detritus and soil pools also lose C via heterotrophic respiration ($RH_d$ and $RH_s$, respectively). Finally, a fixed fraction of vegetation C is transferred to detritus as litterfall ($f_{vd}$), and a fraction of both vegetation ($f_{vs}$) and detritus ($f_{ds}$) C are transferred to soil. @@ -45,6 +53,15 @@ $$ \frac{dC_v}{dt} = NPP\, f_{nv} - C_v (f_{vd} + f_{vs}) - F_{LC} f_{lv} $$ $$ \frac{dC_d}{dt} = NPP\, f_{nd} + C_v f_{vd} - C_d f_{ds} - RH_d - F_{LC} f_{ld} $$ $$ \frac{dC_s}{dt} = NPP\, f_{ns} + C_v f_{vs} - C_d f_{ds} - RH_s - F_{LC} f_{ls} $$ +Anthropogenic changes to the earth system are driven by fossil fuel and industrial emissions (FFI) as well as, in some scenarios, direct air carbon capture and storage (DACCS). These fluxes are occur out of, +or into, an 'earth' pool that is used for mass-balance checks: + +$$ \frac{dC_{earth}}{dt} = DACCS - FFI$$ + +Finally, the atmosphere changes as a result of all the fluxes into or out of it: anthropogenic emissions and uptake; land use change emissions and uptake; fluxes into or out of the ocean; and heterotrophic respiration and net primary production. + +$$ \frac{dC_{atm}}{dt} = FFI - DACCS + LUC_{e} - LUC_{u} + O_{i} - O_{u} + RH - NPP $$ + The entire terrestrial C cycle is summarized in the following diagram: ```{r terrestrial-c-diagram, echo = FALSE, fig.cap = terrestrial_c_cap} @@ -59,7 +76,7 @@ knitr::include_graphics("hector_terrestrial_c.svg") # (Free LucidChart account required.) ``` -# Implementation {#simplenbox-implementation} +## Implementation The state of the global C cycle in Hector is defined by a length 6 vector `c`, which describes the amount of C (in Pg C) in the atmosphere (0), vegetation (1), detritus (2), soil (3), ocean (4), and "Earth" (5) at the current time step. At each Hector time step, `c` is solved by the `CarbonCycleSolver::run()` function (defined in [`src/carbon-cycle-solver.cpp`][solver]) in the following general steps: @@ -81,7 +98,7 @@ The complete code for the terrestrial C cycle lives in [`src/simpleNbox.cpp`][cp This function sets the values of the `c` vector to the corresponding state variables in the C cycle model. -- The atmospheric C pool for the current time step is defined by `atmos_c`, which is always a scalar unit quantity (because CO~2~ is assumed to be well-mixed in the atmosphere). +- The atmospheric C pool for the current time step is defined by `atmos_co2`, which is always a scalar unit quantity (because CO~2~ is assumed to be well-mixed in the atmosphere). - Vegetation, detritus, and soil pools at the current time step are stored in `veg_c`, `detritus_c`, and `soil_c`, respectively. These are vector quantities ("stringmaps"), with one value for each biome (the default biome name is "global"), so the value stored in the corresponding slot in `c` is the sum across all biomes. @@ -111,13 +128,13 @@ They will be applied to the actual NPP and RH estimates during the ODE solving l - Calculate NPP for each biome (`npp` function) - Partition NPP C gain into vegetation, detritus, and soil pools according to fractions - Calculate RH for detritus and soil -- Partition C losses from RH accirding to fractions +- Partition C losses from RH according to fractions - Calculate and partition litter flux - Store changes in pools in `dcdt` vector (same structure as `c`) ## Storing the results (`stashCValues`) -- Reset the atmospheric CO~2~ state variable (`atmos_c`) to the current value from `c` +- Reset the atmospheric CO~2~ state variable (`atmos_co2`) to the current value from `c` - Calculate the difference between vegetation, detritus, and soil C calculated by the ODE solver (i.e. in `c`) and what was stored in the current state variables (`veg_c`, `detritus_c`, `soil_c`). Store these differences in `veg_delta`, `det_delta`, `soil_delta`. - Apply these additional fluxes to each biome, weighing by the biome's current gross primary productivity (`NPP + RH`). I.e.: - Calculate the total GPP across all biomes (`npp_rh_total = sum_npp() + sum_rh()`) @@ -141,20 +158,19 @@ The following values related to the terrestrial C cycle can be set via `setData` | Description | Unit | C++ macro | R function | C++ variable | Needs date | Biome-specific | Set | Get | |------------------------------------|------------|----------------------------|-----------------------|-----------------|------------|----------------|-----|-----| -| Initial atmospheric CO~2~ pool | PgC | `D_ATMOSPHERIC_C` | `ATMOSPHERIC_C()` | `C0` | No | No | Yes | Yes | +| Initial atmospheric CO~2~ pool | PgC | `D_ATMOSPHERIC_CO2` | `ATMOSPHERIC_CO2()` | `C0` | No | No | Yes | Yes | | Pre-industrial CO~2~ concentration | ppmv CO~2~ | `D_PREINDUSTRIAL_C02` | `PREINDUSTRIAL_CO2()` | `C0` | No | No | Yes | Yes | | Atmospheric C constraint residual | ppmv CO~2~ | `D_ATMOSPHERIC_C_RESIDUAL` | | `residual` | No | No | No | Yes | | Vegetation C pool | PgC | `D_VEGC` | | `veg_c` | No | Yes | Yes | Yes | | Detritus C pool | PgC | `D_DETRITUSC` | | `detritus_c` | Yes | Yes | Yes | Yes | | Soil C pool | PgC | `D_SOILC` | | `soil_c` | No | Yes | Yes | Yes | -| Radiative forcing from albedo | unitless | `D_RF_T_ALBEDO` | `RF_T_ALBEDO()` | `Ftalbedo` | Yes | No | Yes | Yes | +| Radiative forcing from albedo | unitless | `D_RF_ALBEDO` | `RF_ALBEDO()` | `RF_albedo` | Yes | No | Yes | Yes | | Frac. NPP to vegetation | unitless | `D_F_NPPV` | `F_NPPV()` | `f_nppv` | No | Yes | Yes | Yes | | Frac. NPP to detritus | unitless | `D_F_NPPD` | `F_NPPD()` | `f_nppd` | No | Yes | Yes | Yes | | Frac. veg. C to litter | unitless | `D_F_LITTERD` | `F_LITTERD()` | `f_litterd` | No | Yes | Yes | Yes | -| Frac. LUC from vegetation | unitless | `D_F_LUCV` | `F_LUCV()` | `f_lucv` | No | No | Yes | Yes | -| Frac. LUC from detritus | unitless | `D_F_LUCD` | `F_LUCD()` | `f_lucd` | No | No | Yes | Yes | | Initial NPP flux | PgC / year | `D_NPP_FLUX0` | | `npp_flux0` | No | Yes | Yes | Yes | | Fossil fuel CO~2~ emissions | PgC / year | `D_FFI_EMISSIONS` | `FFI_EMISSIONS()` | `ffiEmissions` | Yes | No | Yes | Yes | +| Direct air carbon capture and storage | PgC / year | `D_DACCS_UPTAKE` | `DACCS_UPTAKE()` | `daccsUptake` | Yes | No | Yes | Yes | | LUC emissions | PgC / year | `D_LUC_EMISSIONS` | `LUC_EMISSIONS()` | `lucEmissions` | Yes | No | Yes | Yes | | Atmospheric CO2 constraint | ppmv CO~2~ | `D_CO2_CONSTRAIN` | | `CO2_constrain` | Yes | No | Yes | No | | CO~2~ fertilization factor | unitless | `D_BETA` | `BETA()` | `beta` | No | Yes | Yes | Yes | @@ -164,7 +180,7 @@ The following values related to the terrestrial C cycle can be set via `setData` ## Other routines - `init()` -- Initialize the C cycle model - - Set inital values for the default biome (`"global"`) for the following variables: + - Set initial values for the default biome (`"global"`) for the following variables: - `co2fert` (CO~2~ fertilization multiplier) -- 1.0 - `warmingfactor` (biome warming multiplier relative to global average) -- 1.0 - `residual` (difference between modeled atmospheric CO~2~ and constraint) -- 0 @@ -172,7 +188,7 @@ The following values related to the terrestrial C cycle can be set via `setData` - Add `"global"` to the biome list - Register C cycle model capabilities, dependencies, and inputs - `reset(time)` -- Resets the state of the C model to time `time`. - - Set the values of all current-time state variables (e.g. `atmos_c`, `veg_c`, `tempfertd`) to their time-series values at time `time` (e.g. `atmos_c_ts.get(time)`, `veg_c_tv.get(time)`, `tempfertd_tv.get(time)`) + - Set the values of all current-time state variables (e.g. `atmos_co2`, `veg_c`, `tempfertd`) to their time-series values at time `time` (e.g. `atmos_c_ts.get(time)`, `veg_c_tv.get(time)`, `tempfertd_tv.get(time)`) - Re-calculate the CO~2~ fertilization effect for each biome (`co2fert`). If in spinup, force this to 1.0. - "Truncate" all time series variables up to the current time; i.e. `erase` all of the values after `time` - Set `tcurrent` to `time` @@ -182,5 +198,5 @@ The following values related to the terrestrial C cycle can be set via `setData` - `prepareToRun()` -- Perform final checks and variable initialization before running a simulation - Check that all biome-specific pools, fluxes, and parameters have data for all biomes. (The only optional biome-specific parameter is `warmingfactor`, which is set to 1.0 if missing). Also check that biome-specific CO~2~ fertilization (`beta`) and Q10 (`q10_rh`) parameters are valid. - If no albedo forcing data are provided, set the value to the MAGICC default of -0.2 - - Initialize the atmosphic CO~2~ concentration (`Ca`, ppm) and C pool (`atmos_c`, PgC) to the user-specified initial value (`C0`; converted accordingly to PgC for `atmos_c`) + - Initialize the atmospheric CO~2~ concentration (`CO2_concentrations`, ppm) and C pool (`atmos_co2`, PgC) to the user-specified initial value (`C0`; converted accordingly to PgC for `CO2_concentrations`) - Run the checks in `sanitychecks()` diff --git a/vignettes/articles/StyleGuide.Rmd b/vignettes/articles/StyleGuide.Rmd new file mode 100644 index 000000000..9e26e2efd --- /dev/null +++ b/vignettes/articles/StyleGuide.Rmd @@ -0,0 +1,82 @@ +--- +title: Style guide +--- + +The Hector package contains both R and C++ code. Hector's model components are written in C++ and use [Rcpp](https://cran.r-project.org/web/packages/Rcpp/index.html) to pass information to the R, which gives Hector users the ability to run, manipulate, and visualize Hector results in R. Contributions to Hector's R or C++ codebase must meet the respective requirements. + +## C++ Hector Code Base + +### Coding style: + +- New C++ code should follow the [LLVL coding standards](https://llvm.org/docs/CodingStandards.html) + +The Hector codebase is periodically reformatted using [clang-format](https://clang.llvm.org/docs/ClangFormat.html). +For example, assuming that the working directory is the repository root: + +``` +# First, if needed: +brew install clang-format + +# Important note: we do NOT want to touch `src/rcpp_constants.cpp` pr `src/rcpp_hector.cpp` +find src/ -name "*.c*" | grep -v rcpp_constants | clang-format -i +clang-format -i inst/include/*.h* +``` + +Other general principles: + +- basic file intro at top of every file (see existing examples) +- line of dashes separating functions +- use 'const' when possible: on functions, parameters, variables +- methods should start with assertions on inputs +- try to use C++ STL or Boost data structures and functions + (instead of rolling your own) + +### Unit testing: + +- writing test case is part of writing code +- every method should have at least one test if possible +- every class/subunit should have a dedicated test group + +### Expected documentation: + +- every method should have Doxygen comment header. Required tags: + + `\brief` (always) + + `\param[in]` (if any) + + `\param[out]` (if any) + + `\returns` (if returns a value) + + `\exception` (if any throws or assertions) +- all but most trivial vars should have Doxygen comments in headers +- comments should generally say WHY not WHAT + + +## R Hector Code Base + +Some of the R code is generated by Rcpp code; do not edit these files by hand. These files all start with: + +``` +# Generated by using Rcpp::compileAttributes() -> do not edit by hand +# Generator token: Numbers-Letters-Token +``` + +To make changes in those files, find the corresponding `.cpp` file and make changes there. + + +### Coding style: + +- follows the [R package](https://r-pkgs.org/) format and style guidelines +- [R CMD checks](https://kbroman.org/pkg_primer/pages/check.html) should pass CRAN checks +- follows the [R style guide](http://adv-r.had.co.nz/Style.html) +- R code should pass `lintr::lint_package()` (this is run as one of the package tests) + +### Expected documentation: + +- use [roxygen](https://cran.r-project.org/web/packages/roxygen2/vignettes/roxygen2.html) documentation for all functions, required tags: + + `@param` to describe every function argument + + `@return` a description of the object returned by the function +- clear and concise inline comments that describe WHY the code is doing what it does +- add a [vignette or article](https://usethis.r-lib.org/reference/use_vignette.html) when appropriate + +### Unit testing: + +- add R package [unit tests](https://testthat.r-lib.org/) +- unit tests should be quick and use minimal (if needed) package data diff --git a/vignettes/articles/TimeSeries.Rmd b/vignettes/articles/TimeSeries.Rmd new file mode 100644 index 000000000..4b76a4b1b --- /dev/null +++ b/vignettes/articles/TimeSeries.Rmd @@ -0,0 +1,99 @@ +--- +title: Time series (`tseries`) variables +subtitle: C++ +--- + + +`tseries` -- the basic time series data type. + +# How to add a new `tseries` + +Steps to creating a new `tseries` variable within the Hector C++ codebase are as follows. In this example we will be adding a `tseries` variable called NewVar_ts to + +example the variable being added will be called + + +## 1. Add to X_component.hpp: + +Add the tseries to the appropriate hpp file in this example within the dummy_model_component.hpp file. + +``` +tseries NewVar_ts +``` + +## 2. Add to component_names.hpp + +Add a string variable name to the `component_names.hpp` this it is the message that will be between passed between components. All of the string message names should start with the prefix `D_`. + +``` +#define D_NEWVAR "example variable" + +``` + + +## 3. Changes to to X_component.cpp: + +Add the tseries to the init or constructor, setData, and getData sections of the cpp file. + +**In DummyModelComponent::init or DummyModelComponent::constructor:** + + Allow for interpolation + +``` +NewVar_ts.allowInterp(true); +``` + +**In DummyModelComponent::setData:** + +The `U_unitval` value is listed in the unitval.hpp, adding the new variable in this section reads in the data into the component. + +``` +if( varName == D_NEWVAR ) { + H_ASSERT( data.date != Core::undefinedIndex(), "date required" ); + NewVar_ts.set( data.date, unitval::parse_unitval( data.value_str, data.units_str, U_unitval ) ); +``` + +**In DummyModelComponent::getData:** + +Adding to the new variable to the getData section lets the the values be passed to other Hector components. + +``` +if( varName == D_NEWVAR ) { + H_ASSERT( date != Core::undefinedIndex(), "Date required for variable name" ); + returnval = NewVar_ts.get( date ); +``` + +If setting a new variable, see [AddNewVariable](AddNewVariable.html) + +**In DummyModelComponent::run:** + +Set the variable to a `tseries` in this order -- (runToDate, unitval) + +``` +NewVar_ts.set( runToDate, unitval( previous_x + dx, U_unitval ) ); +``` + +In order to print to the log file: + +``` +H_LOG( logger, Logger::DEBUG ) << "Year " << runToDate << " variable = " << NewVar_ts.get( runToDate ) << std::endl; +``` + + + +## 4. Pass to other components + +If another component needs this variable add it to the appropriate hpp and cpp files. For this example lets say X_component needs this the new variable + +**In the X_component.hpp file add** + +``` +unitval NewVar; +``` + + +**In X::run: of the X_component.cpp add** + +``` +NewVar = core->sendMessage( M_GETDATA, D_NEWVAR, message_data( runToDate ) ).value( U_unitval); +``` diff --git a/vignettes/manual/Unitvals.Rmd b/vignettes/articles/Unitvals.Rmd similarity index 60% rename from vignettes/manual/Unitvals.Rmd rename to vignettes/articles/Unitvals.Rmd index 0056c3f69..e643474ff 100644 --- a/vignettes/manual/Unitvals.Rmd +++ b/vignettes/articles/Unitvals.Rmd @@ -1,10 +1,12 @@ --- -title: Unit values (`unitvals`) +title: Units values (`unitvals` and `fluxpools`) +subtitle: C++ --- -Hector both *allows* (internally to each component, and when reading inputs) and *requires* (passing data between components, and writing outputs) values to have associated **units**. The internal unit system is simple, not providing [unit conversion](http://www.boost.org/doc/libs/1_57_0/doc/html/boost_units.html) for example, but also lightweight and easy. Our use of units is prompted primarily by safety–to avoid the "Mars Climate Orbiter" [problem](http://en.wikipedia.org/wiki/Mars_Climate_Orbiter#Cause_of_failure) of mismatched unit–as well as having easy-to-interpret outputs. +Hector both *allows* (internally to each component, and when reading inputs) and *requires* (passing data between components, and writing outputs) values to have associated **units**. The internal unit system is simple, not providing [unit conversion](http://www.boost.org/doc/libs/1_57_0/doc/html/boost_units.html) for example, but also lightweight and easy. Our use of units is prompted primarily by safety -- to avoid the "Mars Climate Orbiter" [problem](http://en.wikipedia.org/wiki/Mars_Climate_Orbiter#Cause_of_failure) of the mismatched unit -- as well as having easy-to-interpret outputs. -The internal C++ type is called `unitval`, and its code is located in `headers/data/unitval.hpp`. +The internal C++ type is called `unitval`, and its code is located in `inst/include/unitval.hpp`. +(There is also a restricted type of `unitval` called a `fluxpool` that allows only non-negative values.) Creating a variable with associated unit -------------- @@ -34,6 +36,8 @@ Internally within components, we often simply want to work with numbers, extract double x = y.value(U_PGC); # we assert that y's units are petagrams C ``` +The core will throw an error if we get the results of `y` wrong. + When is `unitval` required? -------------- Using `unitvals` *within* a component is optional, but it's required when passing data *between* components. This falls into three categories: @@ -42,30 +46,37 @@ Using `unitvals` *within* a component is optional, but it's required when passin * Responding to a query for data. * Output. Read more about Hector's [output visitors](OutputVisitors.html). -When is `unitval` optional? +Fluxpool values -------------- -In input files. +Hector v3 introduces a new internal unit class: `fluxpool`, a subclass of `unitval` +defined in `inst/include/fluxpool.hpp`. This class imposes a restriction: values +may only be zero of positive, and any negative value, or operation that results +in a negative value, throws an error. This is used for carbon fluxes and pools +that may _not_ be negative; why this is so for pools is hopefully obvious, +and fluxes we think of as possibly being 'negative' (e.g., net biome production) +are in fact the difference between two nominally positive fluxes. -TODO. +Currently fluxpools may not be passed between model components. + +Finally, the fluxpool class is where carbon tracking is implemented; see +the [relevant exmaple](ex_carbon_tracking.html). -``` -if( varName == D_PREINDUSTRIAL_N2O ) {` - `H_ASSERT( data.date == Core::undefinedIndex() , "date not allowed" );` - `N0 = unitval::parse_unitval( data.value_str, data.units_str, U_PPBV_N2O );` -``` Missing values -------------- Briefly, when you need to return a missing value, use the `MISSING_FLOAT` macro defined in `inst/include/unitval.hpp`. This macro will return `NA_REAL` (from `Rcpp`) if Hector is compiled as an R package (technically, if the `USE_RCPP` macro is defined) and `NAN` (from `std`) otherwise. -Why this complexity? -R (and, by extension, Rcpp) distinguish between two kinds of "placeholder" numeric values: +Why this complexity? +R (and, by extension, Rcpp) distinguishes between two kinds of "placeholder" numeric values: A _missing_ value (`NA_real_` in R; often abbreviated to `NA`) represents an unobserved value; for instance, if you take annual observations from 1990 to 2000 but failed to make a measurement in 1996. On the other hand, _not a number_ (`NaN`) represents the result of an invalid mathematical operation, such as taking the square root of a negative number. -Both of these values propagate through any calculations in which they are involved, both in R and C++, and both can be detected and removed by R's `is.na()` function and removed by `na.omit`, `na.rm = TRUE`, and friends. -(The R function `is.nan()` can used to check specifically for `NaN` values -- `is.nan(NaN) => TRUE`, but `is.nan(NA) => FALSE`). + +Both of these values propagate through any calculations in which they are involved, both in R and C++, and can be detected and removed by R's `is.na()` and similar functions. +(Note that the R function `is.nan()` can be used to check specifically for `NaN` values -- `is.nan(NaN) => TRUE`, but `is.nan(NA) => FALSE`). However, because they mean fundamentally different things (and suggest different errors), we try to preserve this distinction if we can. -(For example, if some code you run returns `NA` then you would suspect that required values were not set somewhere. -On the other hand, if the code returns `NaN`, you know that all values were set but resulted in a mathematically invalid calculation. -Your approach to debugging these problems would likely be different.) + + +**** + +See also [notes on hector units](units.html) diff --git a/vignettes/manual/VersionNumbers.Rmd b/vignettes/articles/VersionNumbers.Rmd similarity index 87% rename from vignettes/manual/VersionNumbers.Rmd rename to vignettes/articles/VersionNumbers.Rmd index bf952a4fc..c614768c1 100644 --- a/vignettes/manual/VersionNumbers.Rmd +++ b/vignettes/articles/VersionNumbers.Rmd @@ -2,9 +2,10 @@ title: Version numbering --- + **Not a programmer?** You still need to be aware of what version of Hector you're using, and how it relates to previous versions. -Generally Hector follows [Semantic Versioning](http://semver.org). Briefly, this means that given a version number MAJOR.MINOR.PATCH, we increment the: +Generally, Hector follows [Semantic Versioning](http://semver.org). Briefly, this means that given a version number MAJOR.MINOR.PATCH, we increment the: - MAJOR version when we make incompatible API, input, or output format changes, - MINOR version when we add functionality in a backwards-compatible manner, and @@ -28,4 +29,4 @@ Name or unit change for parameter or output5 | MAJOR 2. E.g. a new `seaIce` component that doesn't require any inputs (assumes if not present). 3. E.g. a new `x` that is required to run. 4. E.g. a new `seaIce` component that requires inputs. -5. See issue #xx about associating units with input parameters. +5. See issue #79 about associating units with input parameters. diff --git a/vignettes/articles/addnewforcer.Rmd b/vignettes/articles/addnewforcer.Rmd new file mode 100644 index 000000000..bdd150acb --- /dev/null +++ b/vignettes/articles/addnewforcer.Rmd @@ -0,0 +1,37 @@ +--- +title: "Adding a new forcer to Hector" +--- + +```{r, include = FALSE} +knitr::opts_chunk$set( + collapse = TRUE, + comment = "#>" +) +library(hector) +``` + +# Objective + + +Here are some notes about how to add a new species that will affect Hector's radiative forcing budget in order to answer the question "how much impact does this newly discovered forcer X have." + +Here are some notes as to how to do this: + +* Option 1: add the estimated radiative forcing values to the miscellaneous radiative forcing variable +* Option 2: add a new component to Hector and pass the appropriate information to Hector's forcing components + + +# Option 1 + +Use Hector's miscellaneous radiative forcing variable to read additional radiative forcing values. + +This approach requires little to no coding experience but does require that the users have radiative forcing values readily available. Users can read in the new radiative forcing values via the ini file with the `Fmisc` variable. `Fmisc` is a column in the Hector csv input tables named something like `ssp434_emiss-constraints_rf.csv`. Depending on the user configuration, `Fmisc` may have numeric values or will be equal to all zeros. If `Fmisc` is non-zero, then the user should add the new values to the existing values. Alternatively, using the Hector R package, users can read in miscellaneous forcing to a Hector core with `RF_MISC()` and the `setvar()` function. + +# Option 2 + +Add the new forcer to Hector; this will require changes to the C++ code base. + +1. Create a new [Hector component](AddNewComponent.html): use an existing model component or the `dummy_model_component.hpp` and `dummy_model_component.cpp` files as a template. +2. Within the new component, add [new variables](AddNewVariable.html) as appropriate. Use this component to read in the emissions. If the forcer being added is a GHG, use the appropriate method to convert from emissions to concentrations and expose the concentrations (via `getData`) so that they may be passed to other Hector components. The new model component cpp file will return the new emissions or concentrations (whichever one is appropriate). +3. Next, modify the `forcing_compoent.cpp`. Add the equation that converts the emissions or concentration time series to radiative forcing values. The new values should be added into the forcing map ("forcings", see where the N~2~O RF is set for an [example](https://github.com/JGCRI/hector/blob/a75702ba5a3ab9684a4eae1e49ef221172b6a494/src/forcing_component.cpp#L310)) so that these new values will be incorporated into the total radiative forcing calculation. +4. Lastly, make sure to update the `rcpp_constants.cpp` so that the new variables can be accessed via the R interface (see [new variables](AddNewVariable.html#R)). diff --git a/vignettes/articles/climate.Rmd b/vignettes/articles/climate.Rmd new file mode 100644 index 000000000..e6f579577 --- /dev/null +++ b/vignettes/articles/climate.Rmd @@ -0,0 +1,17 @@ +--- +title: "Hector's Climate" +--- + +## Science + +**Hector** is an open source, object-oriented, simple global climate carbon-cycle model. Greenhouse gases (GHGs) and aerosols are emitted into the atmosphere, where the GHGs accumulate. The GHG concentrations and aerosol emissions impact the Earth's radiative forcing budget. Hector's temperature component (which is based on DOECLIM^[Kriegler, E. (2005). Imprecise probability analysis for integrated assessment of climate change. Ph.D. thesis. Potsdam URL: Universit t +Potsdam. https://www.pik‐potsdam.de/members/edenh/theses/PhDKriegler.pdf], a diffusion ocean-energy balance) uses total radiative forcing to calculate mean global air temperature from sea-surface and land-surface temperature anomalies. Hector returns global mean air surface temperate (GMAT), land surface temperature, and ocean surface temperature which can be used to calculate global mean surface temperature (see [here](ex_GMAT-GMST.html) for more details). DOECLIM simulates the different rates of warming over land and ocean surfaces global mean surface temperature, meaning that the land-ocean warming ratio is an emergent property of Hector. However, users do have the option to provide a land-ocean warming ratio to be used in place of DOECLIM’s internal calculations (see [here](ex_land_ocean_warming.html) for an example and more details about this feature). + +## Implementation + +1. Emissions are read into Hector by their Hector components where they are prepared to be passed to the `forcing_component`. For example, black carbon (BC) emissions are read into Hector by the `bc_component` whereas methane emissions are read in by `ch4_component`. The aerosol components (`bc_component`,`oc_component`, `so2_component`, and `nh3_component`) can directly pass the emissions to the `forcing_component` whereas GHG emissions such as methane must first be converted to concentrations. +2. Effective radiative forcing for each GHG concentration and aerosol is calculated based the IPCC AR6^[Smith, C., Z. R. J. Nicholls, K. Armour, W. Collins, P. Forster, M. Meinshausen, M. D. Palmer, M. Watanabe. 2021. “The Earth’s Energy Budget, Climate Feedbacks, and Climate Sensitivity Supplementary Material.” In Climate Change 2021: The Physical Science Basis. Contribution of Working Group I to the Sixth Assessment Report of the Intergovernmental Panel on Climate Change, edited by Masson-Delmotte, V., P. Zhai, A. Pirani, S. L. Connors, C. P an, S. Berger, N. Caud, Y. Chen, L. Goldfarb, M. I. Gomis, M. Huang, K. Leitzell, E. Lonnoy, J.B.R. Matthews, T. K. Maycock, T. Waterfield, O. Yelek i, R. Yu and B. Zhou. https://ipcc.ch/static/ar6/wg1.]. Additional sources of radiative forcing such changes in land albedo and volcanoes are added together to determine the total change in radiative forcing within the `forcing_component`. +3. The `forcing_component` passes total radiative forcing to the `temperature_component` where DOECLIM^[Kriegler, E. (2005). Imprecise probability analysis for integrated assessment of climate change. Ph.D. thesis. Potsdam URL: Universit t +Potsdam. https://www.pik‐potsdam.de/members/edenh/theses/PhDKriegler.pdf], a diffusion ocean-energy balance model, determines how the change in Earth's radiative forcing budget manifests as changes in mean global air temperature from sea-surface and land-surface temperature anomalies. + +Important note: for atmospheric CO~2~, the carbon cycle must be solved before Hector is able to calculate radiative forcing from CO~2~ because the temperature effects from CO~2~ are lagged in time. diff --git a/vignettes/articles/ex_GMAT-GMST.Rmd b/vignettes/articles/ex_GMAT-GMST.Rmd new file mode 100644 index 000000000..fe7c3a2f5 --- /dev/null +++ b/vignettes/articles/ex_GMAT-GMST.Rmd @@ -0,0 +1,146 @@ +--- +title: "Example: Calculating GMST from GMAT in Hector" +author: "Leeya Pressburger" +date: "2021-08-18" +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` + +## Introduction + +The global mean surface temperature (GMST) is the average of the air temperature +2 meters over the Earth's surface and the temperature at the surface of the ocean. +^[Allen et al. 2018: Framing and Context. In: Global Warming of 1.5°C. An IPCC +Special Report on the impacts of global warming of 1.5°C above pre-industrial +levels and related global greenhouse gas emission pathways, in the context of +strengthening the global response to the threat of climate change, sustainable +development, and efforts to eradicate poverty [Masson-Delmotte et al. (eds.)]. +In Press.] This is a very useful metric for observing global temperature changes. +Although changes in GMST are relatively small in terms of numbers, it takes a +great deal of heat to warm the entire planet by even a fraction of a degree. +Measurements of the temperature changes provide evidence for anthropogenic climate change. + +However, Hector does not produce GMST as an output at this time. Hector does +calculate the global mean air temperature (GMAT), which we can use to back-calculate +GMST. GMAT is the air temperature measured 2 meters above the ground and is what is +presented in a daily weather report.^[Taylor, Jessica. "Analyzing Surface Air +Temperatures by Latitude." NASA, 2018. https://mynasadata.larc.nasa.gov/mini-lesson/analyzing-surface-air-temperatures-latitude-student-activity] + +This vignette demonstrates how to set up the calculation between GMAT and GMST and +how to plot results to observe differences over time. + +(Note that Hector assumes that land air temperature and land surface temperature +are equivalent.^[Kriegler, Elmar. "Imprecise Probability Analysis +for Integrated Assessment of Climate Change." PhD thesis, University of Potsdam, 2005. https://www.pik-potsdam.de/members/edenh/theses/PhDKriegler.pdf]) + +## Setup + +Let's load the packages we will need and run a scenario. + +``` {r hector.init} +library(hector) +library(ggplot2) + +inifile <- file.path(system.file("input", package = "hector"), "hector_ssp245.ini") +core <- newcore(inifile) +invisible(run(core)) +``` + +## Find GMST + +GMST can be calculated from Hector outputs by computing a weighted sum of the +land air and ocean surface temperatures using the following equation: + +$\ \text{GMST} = (\text{land air temperature} * \text{fractional land area}) + (\text{ocean surface temperature} * (1 - \text{fractional land area})) $ + +In Hector, land air temperature is represented by `land_tas` (`LAND_TAS()`) and +ocean surface temperature is represented by `sst` (`SST()`). These components stem +from the variable `tas` (`GLOBAL_TAS()`), which is how Hector stores GMAT. + +Note that the reason that the same variable is represented in two different ways is +due to the interaction between the R interface and the underlying C++ model. For +example, `LAND_TAS()` is the function in R that returns a string message such as +`land_tas`, which is then passed into the base C++ Hector model. This method is +user-friendly as spelling/capitalization is not an issue and developer-friendly +as string in C++ can be changed without changing the R user interface. + +``` {r find.GMST} +flnd <- 0.29 # fractional land area, a constant in Hector +hector_output <- fetchvars(core, 1745:2300, vars = c(LAND_TAS(), SST(), GLOBAL_TAS())) + +# Get the variables we want and corresponding years/value +output <- subset(hector_output, variable %in% c(LAND_TAS(), SST())) +output <- subset(output, select = c(year, variable, value)) + +# Reorder and clean up data +output <- reshape(output, direction = "wide", idvar = "year", timevar = "variable") +names(output) <- gsub("value.", "", names(output)) + +# Conversion equation +output$GMST <- with(output, (land_tas * flnd + sst * (1 - flnd))) +global_surface_temp <- subset(output, select = c(year, GMST)) + +# Organize final data, year and corresponding GMST +names(global_surface_temp)[names(global_surface_temp) == "output$year"] <- "year" +names(global_surface_temp)[names(global_surface_temp) == "GMST"] <- "value" + +variable <- rep("GMST", times = 556) +variable <- as.data.frame(variable) +global_surface_temp <- cbind(global_surface_temp, variable) + +# Rename Hector's variable for GMAT +global_air_temp <- subset(hector_output, variable == GLOBAL_TAS()) +global_air_temp <- subset(global_air_temp, select = c(variable, year, value)) +global_air_temp$variable <- "GMAT" +``` + +## Plot results + +The following plot shows GMST and GMAT over time. We see that in about 2000, GMAT +begins to increase more quickly than GMST. By 2300, there is a significant gap +between the two; GMAT is higher than GMST as GMAT is responding more quickly to +anthropogenic forcing. This makes sense as GMST accounts for heating of the ocean +surface which warms more slowly than the atmosphere. + +``` {r plot} + +data <- rbind(global_surface_temp, global_air_temp) + +ggplot(data) + + geom_line(aes(year, value, color = variable)) + + theme_bw() + + labs(y = expression(degree ~ "C"), + title = "Comparison of Hector GMST and GMAT") +``` + +Then, to highlight the gap between the two temperatures, we can plot the difference. + +``` {r plot.diff} + +GMST_d <- subset(data, variable == "GMST") +GMAT_d <- subset(data, variable == "GMAT") + +GMAT_d$variable <- "GMAT - GMST" +GMAT_d$value <- GMAT_d$value - GMST_d$value + +ggplot(GMAT_d) + + geom_line(aes(year, value, color = variable)) + + theme_bw() + + labs(y = expression(degree ~ "C"), + title = "Differences in temperature over time") + +``` + +## Conclusion + +GMST allows for measuring global temperature fluctuations and is used to report +global warming trends. While Hector does not directly return GMST as an output, it +is straightforward to calculate the metric by using land and ocean surface temperatures. + +Remember to shut down the core. + +``` {r shutdown} +shutdown(core) +``` diff --git a/vignettes/articles/ex_carbon_tracking.Rmd b/vignettes/articles/ex_carbon_tracking.Rmd new file mode 100644 index 000000000..3a4a6d304 --- /dev/null +++ b/vignettes/articles/ex_carbon_tracking.Rmd @@ -0,0 +1,272 @@ +--- +title: "Carbon tracking with Hector" +subtitle: R +author: "Leeya Pressburger" +date: "2021-08-03" +--- + + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` + +## Introduction + +This vignette will walk through Hector's carbon tracking feature and show how to +turn on tracking, retrieve the tracking data, and display the results. Additionally, +the vignette demonstrates an application of the carbon tracking feature and shows +how to calculate the model's airborne fraction. + +Hector's carbon tracking feature helps to trace the movement of carbon between +various pools as the model runs. At the user-chosen start date, each pool is +deemed to be composed of 100% carbon from itself, i.e. at that moment in time +the deep ocean pool is 100% composed of carbon from the deep pool. + +As the model moves forward in time from the start date, Hector tracks each pool's +fractional composition -- i.e. the sources of its current carbon. +When the run is finished, this data can be read into R and then analyzed. + +## Setup + +First, let's load the packages we will need. + +``` {r hector.init} +library(hector) +library(ggplot2) +``` + +## Carbon tracking + +Now, we will read in an INI file and create a new core. In this example, we +will use SSP245. + +In order to use the carbon tracking feature, we must use `setvar` and `fetchvars`. +^[Command line users: to set a tracking start date, change the `trackingDate=9999` +line in the `[core]` section of an INI scenario file.] +First, let's look at the `trackingDate` prior to setting it to any value. + +``` {r setup.core} +inifile <- file.path(system.file("input", package = "hector"), + "hector_ssp245.ini") +core <- newcore(inifile) + +fetchvars(core, NA, TRACKING_DATE()) +``` + +This returns the variable `trackingDate` with a `value` of 9999. This default +value does not turn carbon tracking on (because the model never reaches year 9999). + +Now, we will set a `trackingDate`, check that it worked, and run a core. +Let's begin tracking in 1750. On that date, the model will mark all carbon in +each of its pools as originating in that pool: the atmosphere will be 100% +'atmosphere-origin' C, the soil 100% 'soil-origin' C, etc. + +``` {r set.date} +setvar(core, NA, TRACKING_DATE(), 1750, "(unitless)") +fetchvars(core, NA, TRACKING_DATE()) + +invisible(reset(core)) +run(core) +``` + +At this point, the model has been run. To retrieve the carbon tracking data, we +use the `get_tracking_data()` function. This returns a data frame which gives the +current state of the pool, and fractions of where the carbon is sourced from, at +each model time point after `trackingDate`. + +``` {r hector.tracking} +tdata <- get_tracking_data(core) +head(tdata) +``` + +The `tdata` dataset now contains information on year (note that the first year +is the start-tracking date we asked for), the model component, +the name of the pool within that component, the amount of +carbon in the pool, and the fraction (0-1) of each source for that pool. +Importantly, the source fractions for a given pool and year will always sum to 1. + +Side note: the names in the carbon tracking data (`pool_name`, `pool_value`, +and `pool_units`) differ from those used in the model's standard stream output +(which are `variable`, `value`, and `units` respectively). In contrast, `year` +and `component` are named identically in the two output datasets. + +## Results + +By using `ggplot`, we can create time series graphs of how the origin of one +or more carbon pools in the model changes over time. + +``` {r hector.plot1, fig.width = 7, fig.height = 5} +ggplot(tdata, aes(year, source_fraction, fill = source_name)) + + geom_area() + + facet_wrap(~pool_name) + + theme(axis.text = element_text(size = 7)) + + labs(x = "Year", + y = "Source Fraction", + title = "Source Percentage Change Over Time") +``` + +Let's take a look at these graphs. Note that the `earth_c` pool is always 100% +`earth_c`: there are no inflows to this pool in SSP245 (in contrast, in +SSP19 there is direct-air carbon capture and storage, so the `earth_c` pool +origins will change). We see that around 1800, human emissions (from `earth_c`) +begin to appear in pools such as `atmos_co2` or `soil_c_global`. +Between 1900-2000, human emissions take off and become major sources by 2100. + +Let's examine just one pool: + +``` {r hector.atm, fig.width = 6, fig.height = 4} +atmos <- subset(tdata, pool_name == "atmos_co2") + +ggplot(atmos, aes(year, source_fraction, fill = source_name)) + + geom_area() + + facet_wrap(~pool_name) + + labs(x = "Year", + y = "Source Fraction", + title = "Source Percentage Change Over Time - Atmosphere") +``` + +This allows us to better examine the contributions by source to the atmosphere. + +## Example: Airborne fraction calculation + +We can also use the tracking feature to calculate the airborne fraction for a +given point in time, or how much carbon emitted by humans remains in the atmosphere +as a fraction of total emissions as opposed to being absorbed by the land or ocean. + +First, we can define two functions. The first will run a core and turn on tracking +to return a data frame with results, including a column for the source amount by +pool (as opposed to the source fraction). The second function will perform the +airborne fraction calculation by finding the amount of `earth_c` (human emissions) +in the `atmos_co2` (atmosphere) pool at the start and end date of the run and +dividing the difference by the difference in the `earth_c` pool from the start +of the run to the end, i.e. how much carbon has left the `earth_c` pool. + +``` {r hector.define_functions} + +tracking_results <- function(inifile, start, stop, tracking, scenarioName) { + # Establish core, turn on tracking, run core + core <- newcore(inifile) + setvar(core, NA, TRACKING_DATE(), tracking, "(unitless)") + reset(core) + run(core) + + # Get results, filter by correct years, add columns containing the amount + # of carbon by source and the given scenario name + results <- get_tracking_data(core) + results <- subset(results, + results$year >= start & + results$year <= stop) + results$source_amount <- results$source_fraction * results$pool_value + results$scenario_name <- scenarioName + + return(results) +} + +AF_calc <- function(start, results, stop) { + + # Isolate the atmos_co2 pool and earth_c source in start/end years + atm_c <- subset(results, results$pool_name == "atmos_co2") + atm_c <- subset(atm_c, atm_c$source_name == "earth_c") + + atm_c1 <- subset(atm_c, atm_c$year == start) + atm_c2 <- subset(atm_c, atm_c$year == stop) + atm_c <- rbind(atm_c1, atm_c2) + + # Calculate atmospheric uptake of Earth carbon + atm_c <- tail(atm_c$source_amount, n = 1) - head(atm_c$source_amount, n = 1) + + # Isolate earth_c pool and source in start/end years + earth_c_loss <- subset(results, + results$pool_name == "earth_c" & + results$source_name == "earth_c" & + results$year %in% c(start, stop)) + + # Calculate change in Earth carbon + earth_c_loss <- head(earth_c_loss$source_amount, n = 1) - + tail(earth_c_loss$source_amount, n = 1) + + # Airborne fraction calculation + AF <- atm_c / earth_c_loss + + return(AF) +} +``` + +Next, we will run our functions for the SSP245 scenario between 1750 and 2050 with +tracking beginning at the start of the run. We can then find the value of the +airborne fraction in any year of the model run. Let's look at how the airborne +fraction changes over time from 1950 to 2020 in ten year increments as well as +the value in just the year 2020. + +``` {r hector.calculations} +ssp245 <- system.file("input", "hector_ssp245.ini", package = "hector") +results <- tracking_results(ssp245, 1750, 2050, 1750, "SSP245") + +years <- seq(1950, 2020, by = 10) +airborne_frac <- cbind(make.row.names = years, lapply(years, AF_calc, results, 1750)) +colnames(airborne_frac) <- c("year", "AF") + +tail(airborne_frac, n = 1) + +``` + +We see that the airborne fraction in 2020 is about +`r round(as.numeric(airborne_frac[8,2]) * 100, 0)`%. In other words, +`r round(as.numeric(airborne_frac[8,2]) * 100, 0)`% of anthropogenic emissions +remain in the atmosphere. + +We can compare these values to a study published by W. Knorr in 2009.^[Knorr, W. +"Is the airborne fraction of anthropogenic CO$_2$ emissions increasing?" Geophysical +Research Letters 36 (21). November 7, 2009. http://dx.doi.org/10.1029/2009GL040613] +Knorr computes seven values of airborne fractions in 2000 which we can average. +We can compute the difference between the maximum value and the minimum to give an error range. + +``` {r hector.plot_AF, fig.width = 6, fig.height = 4} +# Knorr avg - values from Knorr 2009 +knorr_values <- c(0.45, 0.453, 0.518, 0.468, 0.468, 0.514, 0.449) +knorr_avg <- mean(knorr_values) +knorr_minmax <- max(knorr_values) - min(knorr_values) + + +vars <- c("Knorr avg", years) +values <- c(knorr_avg, as.numeric(airborne_frac[, 2])) +error <- c(knorr_minmax, rep(0, times = 8)) + +df <- data.frame(vars, values, error) + +ggplot(df) + + aes(x = vars, y = values, fill = vars) + + geom_bar(stat = "identity") + + geom_errorbar(aes(ymin = values - error, ymax = values + error), width = 0.2) + + scale_fill_manual(values = c("paleturquoise3", "paleturquoise2", "paleturquoise1", + "darkslategray1", "darkslategray2", "darkslategray3", + "darkslategray4", "darkslategray", "grey50")) + + theme(legend.position = "none") + + labs(x = "Year", + y = "Airborne fraction over time", + title = "Airborne Fraction Composition") + +``` + +The airborne fraction found in Hector is towards the lower end of the range of +values found by Knorr 2009, which varied from about 45% - 52%. However, we see +that the airborne fraction value from Hector remains relatively constant over +time at around 40%. This aligns with Knorr's conclusion that the airborne fraction +shows no clear trend of increasing or decreasing. Additionally, Hector's value +falls within the range of CMIP models, as seen in Jones et al. 2013.^[Jones et al. +"Twenty-First-Century Compatible CO2 Emissions and Airborne Fraction Simulated by +CMIP5 Earth System Models under Four Representative Concentration Pathways." +Journal of Climate, 26 (13) p4398-4413. September 2021. +https://doi.org/10.1175/JCLI-D-12-00554.1] + +## Conclusion + +The carbon tracking feature allows users to identify and trace the composition +by source of each pool in Hector. This is useful to, for example, calculate the +model's airborne fraction. + +Remember to shut down the core. + +```{r shutdown} +invisible(shutdown(core)) +``` diff --git a/vignettes/articles/ex_hector_apply.Rmd b/vignettes/articles/ex_hector_apply.Rmd new file mode 100644 index 000000000..a5a14860f --- /dev/null +++ b/vignettes/articles/ex_hector_apply.Rmd @@ -0,0 +1,103 @@ +--- +title: "Solving for an emissions pathway" +author: "Robert Link" +date: "2018-10-17" +--- + +## Introduction + +This tutorial shows how to use the Hector climate model in R to answer a simple +science question. In this case, we'll be looking at solving for the methane +emissions required over time to produce a constant atmospheric methane concentration +from 2000 through 2100. + +To run this experiment, you will need to have the `nleqslv` package installed. +This package will be used to generate successive guesses in the search for an +emissions pathway that produces +the target concentration. + +## Setup + +The `nleqslv` package requires us to supply a function that takes a vector of +inputs (i.e., emissions by year) and produces a vector of outputs that are the +discrepancies between the Hector output and the target concentrations. In order +to create such a function, we will need to set up an interface to Hector. Since +all of our calculations are going to involve the years 2000 +and beyond, we will run up through 1999. + +```{r hector.init} +library(ggplot2) +library(hector) +hector_inifile <- file.path(system.file("input", package = "hector"), "hector_ssp245.ini") +hcore <- newcore(hector_inifile, suppresslogging = TRUE) +run(hcore, 1999) +``` + +Our target function will take a vector of emission values as input and return a +vector of discrepancies between the Hector outputs and the target output. We'll +make the target concentration value 1820 ppbv CH$_4$ (a bit higher than the year +2000 value in the baseline scenario). + +```{r targfn.init} +f <- function(emiss) { + setvar(hcore, 2000:2100, EMISSIONS_CH4(), emiss, "Tg CH4") + reset(hcore, 1999) + run(hcore, 2100) + hout <- fetchvars(hcore, 2000:2100, CONCENTRATIONS_CH4()) + ## return the difference between the target of 1820 (constant) and the actual + hout$value - 1820 +} +``` + +## Solve for the target emissions + +To solve for the target emissions we just pass the target function to `nleqslv`. +We also need an initial guess for the emissions. It doesn't really matter what the +guess is, so long as it isn't something so large that it will cause the model to +fail outright. We will use a constant 300 Tg CH$_4$ as the initial guess. + +```{r solve} +x <- rep(300.0, times = 101) # 2000:2001 includes both endpoints +slv <- nleqslv::nleqslv(x, f, method = "Broyden") +``` + +We should check to see if the algorithm really converged. The discrepancy values +from the last iteration are stored in the `fvec` entry. + +```{r chkf} +max(abs(slv$fvec)) +``` + +## Results + +The convergence looks okay, so let's plot the results: + +```{r plt} + df <- data.frame(year = 2000:2100, + value = slv[["x"]]) + +ggplot(data = df, aes(year, value)) + + geom_point() + + labs(x = "year", y = "Emissions (Tg CH4)") +``` + +The concentration target of 1820 ppbv CH$_4$ that we specified in 2000 is a bit +of a jump from what was in the scenario we based our run on (the original was about +1811 ppbv), so we have a small spike in emissions in 2000. After +that, the emissions settle down into something smoother. + +Once we're done with our Hector instance, we need to make sure to shut it down, +so that the memory it is using will be freed. + +```{r shutdown} +shutdown(hcore) +``` + +## Conclusion + +This simple example shows the kind of thing you can do by combining the Hector R +interface with other packages available in R. It would be easy enough to add emissions +for other gasses or work in terms of forcing or temperature. Likewise, instead of +solving for an equilibrium you could minimize or maximize some function of the +emissions (using the `optim` function), or run one of the many Monte Carlo packages +that are available in R. diff --git a/vignettes/articles/ex_land_ocean_warming.Rmd b/vignettes/articles/ex_land_ocean_warming.Rmd new file mode 100644 index 000000000..a9cc2bc81 --- /dev/null +++ b/vignettes/articles/ex_land_ocean_warming.Rmd @@ -0,0 +1,117 @@ +--- +title: "Land Ocean Warming" +--- + +## Introduction + +Hector uses DOECLIM^[Kriegler, E. (2005). Imprecise probability analysis for +integrated assessment of climate change. Ph.D. thesis. Potsdam URL: Universität Potsdam. https://www.pik‐potsdam.de/members/edenh/theses/PhDKriegler.pdf], a diffusion +ocean-energy balance, to calculate mean global air temperature from sea-surface +and land-surface temperature anomalies. +DOECLIM can simulate the different rates of warming over land and ocean surfaces, +meaning that the land-ocean warming ratio is an emergent property of Hector. +However, users also have the option to provide a land-ocean warming ratio to be +used in place of DOECLIM’s internal calculations. +This enables Hector to emulate the land-ocean warming dynamics of specific Earth +System Models. + +This vignette demonstrates how providing a user-defined land-ocean warming ratio +can affect Hector output. + +## Setup + +```{r setup} +library(ggplot2) +library(hector) + +theme_set(theme_bw(base_size = 14)) +``` + +## Run default Hector + +Complete a default run of Hector, one that uses DOECLIM to calculate land and +ocean air temperature. + +```{r} +years_to_keep <- 1850:2100 +vars_to_keep <- c(GLOBAL_TAS(), LAND_TAS(), OCEAN_TAS(), CONCENTRATIONS_CO2()) + +inifile <- file.path(system.file("input", package = "hector"), "hector_ssp245.ini") + +core <- newcore(inifile) +run(core, max(years_to_keep)) +out1 <- fetchvars(core, years_to_keep, vars_to_keep) +out1$scenario <- "default" +out1$variable <- paste0(gsub(out1$variable, pattern = "_", replacement = " "), + " (", out1$units, ")") +``` + +```{r} +ggplot(data = out1) + + geom_line(aes(year, value)) + + facet_wrap("variable", scales = "free") + + labs(title = "Default Hector", + subtitle = "ssp245", + x = NULL) + + theme(axis.text.x = element_text(angle = 90)) +``` + +## Run Hector with different land ocean warming ratios + +Start by writing a function to help us set the land ocean warming ratio, +run Hector, and fetch some results. + +```{r} +# Helper function that runs a Hector core with a new land-ocean warming ratio. +# +# Args +# hc: an active Hector core +# value: the land ocean warming ratio to use +# Return: data frame of Hector results +run_with_lo <- function(hc, value) { + + # Set the land ocean warming ratio + setvar(hc, NA, LO_WARMING_RATIO(), value, getunits(LO_WARMING_RATIO())) + + # Reset and run Hector + reset(hc) + run(hc) + + # Fetch and format the output + out <- fetchvars(hc, years_to_keep, vars_to_keep) + out$scenario <- value + out$variable <- paste0(gsub(out$variable, pattern = "_", replacement = " "), + " (", out$units, ")") + + return(out) +} + +# Make a vector of the land ocean warming ratios to test out +lo_to_use <- seq(from = 1, to = 2.5, length.out = 20) + +# Apply our helper function to the various land ocean warming ratio values and +# concatenate the results into a single data frame +results_list <- lapply(lo_to_use, run_with_lo, hc = core) +hector_lo_results <- do.call(results_list, what = "rbind") +``` + +## Plot the results + +```{r} +ggplot(data = hector_lo_results) + + geom_line(aes(year, value, color = scenario, group = scenario)) + + facet_wrap("variable", scales = "free") + + labs(title = "User provided land-ocean warming ratio", + subtitle = "ssp245", + x = NULL, + y = NULL) + + theme(axis.text.x = element_text(angle = 90)) + + guides(color = guide_legend(title = "lo ratio")) +``` + +## Compare default Hector with user provided land ocean warming ratio + +```{r} +last_plot() + + geom_line(data = out1, aes(year, value), color = "orange", size = 1) +``` diff --git a/vignettes/multiple-biomes.Rmd b/vignettes/articles/ex_multiple-biomes.Rmd similarity index 89% rename from vignettes/multiple-biomes.Rmd rename to vignettes/articles/ex_multiple-biomes.Rmd index b3ba0621d..68a8d6782 100644 --- a/vignettes/multiple-biomes.Rmd +++ b/vignettes/articles/ex_multiple-biomes.Rmd @@ -1,21 +1,13 @@ --- title: Running Hector with multiple biomes +subtitle: R author: Alexey Shiklomanov date: "2019-06-27" -output: rmarkdown::html_vignette -vignette: > - %\VignetteIndexEntry{Running Hector with multiple biomes} - %\VignetteEngine{knitr::rmarkdown} - %\VignetteEncoding{UTF-8} --- + ```{r setup, include=FALSE} -# TODO figure out how to avoid this hack -# see https://www.r-bloggers.com/2020/04/setting-the-graphics-device-in-a-rmarkdown-document/ -ragg_png = function(..., res = 192) { - ragg::agg_png(..., res = res, units = "in") -} -knitr::opts_chunk$set(dev = "ragg_png", fig.ext = "png", echo = TRUE) +knitr::opts_chunk$set(echo = TRUE) ``` By default, Hector's carbon cycle model treats the entire land surface as a single, homogeneous ecosystem. @@ -34,16 +26,16 @@ library(ggplot2) # Example 1: Accelerated high-latitude warming -Observational and modeling studies have found that high-latitude ecosystems, particularly in the northern hemisphere, are warming significantly faster than the global average. +Observational and modeling studies have found that high-latitude ecosystems, particularly in the Northern Hemisphere, are warming significantly faster than the global average. In this example, we will explore the implications of this effect with Hector. First, let's run a reference case. ```{r warming-reference} -rcp45 <- system.file("input", "hector_rcp45.ini", package = "hector") -core <- newcore(rcp45, suppresslogging = TRUE) +ssp245 <- system.file("input", "hector_ssp245.ini", package = "hector") +core <- newcore(ssp245, suppresslogging = TRUE) invisible(run(core, 2100)) -result_vars <- c(ATMOSPHERIC_CO2(), RF_TOTAL(), GLOBAL_TEMP(), +result_vars <- c(CONCENTRATIONS_CO2(), RF_TOTAL(), GLOBAL_TAS(), VEG_C(), SOIL_C(), DETRITUS_C()) reference_results <- fetchvars(core, 2000:2100, result_vars, scenario = "reference") ``` @@ -53,12 +45,12 @@ To do this, we will use the `split_biome()` function, which takes an existing He For the purposes of this example, let's assume that high latitudes have ~10% of the world's vegetation and detritus carbon and ~40% of world's soil carbon, and that high-latitudes are warming 2.5x faster than the global average. ```{r warming-arctic} -invisible(reset(core)) split_biome(core, "global", c("low-latitude", "high-latitude"), fveg_c = c(0.9, 0.1), fdetritus_c = c(0.9, 0.1), fsoil_c = c(0.6, 0.4), warmingfactor = c(1, 2.5)) +invisible(reset(core)) invisible(run(core, 2100)) warming_results <- fetchvars(core, 2000:2100, result_vars, scenario = "warming") ``` @@ -114,10 +106,11 @@ In this example, we will create two "biomes," corresponding to C3 and C4 plants, For the purposes of this example, we will assume that ~10% of the world's terrestrial carbon is associated with C4 plants, and that the CO~2~ fertilization effect for C4 plans is half as strong as that of C3 plants. ```{r fert-c4} -core <- newcore(rcp45, suppresslogging = TRUE) +core <- newcore(ssp245, suppresslogging = TRUE) split_biome(core, "global", c("C3", "C4"), fveg_c = c(0.9, 0.1), beta = c(0.36, 0.18)) +invisible(reset(core)) invisible(run(core, 2100)) c4_results <- fetchvars(core, 2000:2100, result_vars, scenario = "c3 vs c4") c4_results_biome <- fetchvars(core, 2000:2100, diff --git a/vignettes/manual/hector_terrestrial_c.svg b/vignettes/articles/hector_terrestrial_c.svg similarity index 100% rename from vignettes/manual/hector_terrestrial_c.svg rename to vignettes/articles/hector_terrestrial_c.svg diff --git a/vignettes/articles/manual.Rmd b/vignettes/articles/manual.Rmd new file mode 100644 index 000000000..dd8a9d8f7 --- /dev/null +++ b/vignettes/articles/manual.Rmd @@ -0,0 +1,43 @@ +--- +title: "Manual" +--- + +[Index](index.html) + + +Model Philosophy +-------------------- +* Quick run time +* Complexity only where warranted +* Clean, modern, well-documented object-oriented code +* Open source - all code freely available & accessible +* Flexible - model components, outputs, inputs can be changed +* About Hector's [version numbering](VersionNumbers.html) + +Science +-------------------- +* A [general summary](HectorSummary.html) of the science behind Hector +* Introduction to Hector's [climate](climate.html), [terrestrial carbon cycle](SimpleNBox.html), and [ocean carbon cycle](ocean-carbon-cycle.html) +* [Model documentation manuscripts](Hector-Wider-World.html#hector_documentation) and [publications that feature Hector](Hector-Wider-World.html#other_manuscripts) + +Building and Running Hector +-------------------- +* How to [build Hector from source](BuildHector.html) +* How to [do a basic run and sensitivity analysis](intro-to-hector.html) +* How to [run Hector under constraints](Constraints.html) +* How to [run Hector with multiple biomes](multiple-biomes.html) + +For Developers +-------------------- +A mixture of notes related to C++ and R Hector code bases + +* [External API](ExternalAPI.html) and [Component API](ComponentAPI.html) +* [Add a new component](AddNewComponent.html) +* [Add a new variable](AddNewVariable.html) +* [Add a new forcer](addnewforcer.html) + +Contributing to Hector +-------------------- +* [Contribution guide](ContributionsGuide.html) +* [Authorship Guidelines](AuthorshipGuidelines.html) +* [Style Guide](StyleGuide.html) diff --git a/vignettes/articles/ocean-carbon-cycle.Rmd b/vignettes/articles/ocean-carbon-cycle.Rmd new file mode 100644 index 000000000..24c00d361 --- /dev/null +++ b/vignettes/articles/ocean-carbon-cycle.Rmd @@ -0,0 +1,32 @@ +--- +title: "Ocean Carbon Cycle" +--- + +## Science + +Based on the work of Lenton (2000)^[Lenton, T. M.: Land and ocean carbon cycle feedback effects on +global warming in a simple Earth system model, Tellus B, 52, +1159–1188, doi:10.1034/j.1600-0889.2000.01104.x, 2000.], Knox and McElroy (1984)^[Knox, F. and McElroy, M. B.: Changes in Atmospheric CO2: Influence +of the Marine Biota at High Latitude, J. Geophys. Res., 89, +4629–4637, doi:10.1029/JD089iD03p04629, 1984.], and Sarmiento +and Toggweiler (1984)^[Sarmiento, J. L. and Toggweiler, J. R.: A new model for the role +of the oceans in determining atmospheric PCO2, Nature, 308, +621–624, 1984], Hector's implementation of the ocean carbon cycle was documented in Hartin et al. (2016).^[Hartin, C. A., Bond-Lamberty, B., Patel, P., and Mundra, A.: Ocean acidification over the next three centuries using a simple global climate carbon-cycle model: projections and sensitivities, Biogeosciences, 13, 4329–4342, https://doi.org/10.5194/bg-13-4329-2016, 2016.] Hector's ocean is a four box model with two surface level boxes (high latitude and low latitude), an intermediate, and deep ocean boxes. Within the surface boxes Hector solves for pCO~2~, pH, [HCO${_3}^{-1}$ ], [CO$_{3}^{-2}$], aragonite $\Omega_{Ar}$ and calcite $\Omega_{Ca}$. The chemistry of carbon in the surface boxes depends on salinity, dissolved inorganic carbon (DIC), and temperature. + +## Parameters + +Six parameters may be set from the INI file or R interface: + +* `tt` (`TT()` in R), thermohaline overturning (m3/s) +* `tu` (`TU()`), high latitude overturning (m3/s) +* `twi` (`TWI()`), warm-intermediate exchange (m3/s) +* `tid` (`TID()`), intermediate-deep exchange (m3/s) +* `preind_surface_c` (`OCEAN_PREIND_C_SURF()`), preindustrial carbon in the surface ocean (Pg C) +* `preind_interdeep_c` (`OCEAN_PREIND_C_ID()`), preindustrial carbon in the intermediate and deep ocean (Pg C) + +## Implementation + +1. The `oceanbox` cpp and hpp files set up the four ocean boxes and determine connections between one another. How carbon, energy, and volume will move between the four ocean boxes. +2. The `ocean_csys` cpp and hpp files define the solver for the temperature dependent system of equations that determine solubility and equilibrium constants. +3. Within the `ocean_component` + diff --git a/vignettes/articles/output.Rmd b/vignettes/articles/output.Rmd new file mode 100644 index 000000000..8911f53d9 --- /dev/null +++ b/vignettes/articles/output.Rmd @@ -0,0 +1,91 @@ +--- +title: "Outputs" +--- + +## Standalone Executable + +Output from the standalone executable is written out to `output` sub-directory of the hector's root directory. The Hector results are stored in `outputstream_name.csv`; if applicable, carbon tracking results are written to `tracking_name.csv` (where the name refers to the hector run name). + +The output stream csv contains results and output from the spin-up period for a handful of variables. + +## R Hector + +The [fetchvars](../reference/fetchvars.html) function is used to get results from a hector core with the identifier functions listed as `R_function` in the table below. + +### R function table + +|R_function |name |units | +|:----------------------|:-----------------|:--------| +|RF_TOTAL() |RF_tot |W/m2 | +|RF_CO2() |RF_CO2 |W/m2 | +|RF_N2O() |RF_N2O |W/m2 | +|RF_H2O_STRAT() |RF_H2O_strat |W/m2 | +|RF_O3_TROP() |RF_O3_trop |W/m2 | +|RF_BC() |RF_BC |W/m2 | +|RF_OC() |RF_OC |W/m2 | +|RF_NH3() |RF_NH3 |W/m2 | +|RF_SO2() |RF_SO2 |W/m2 | +|RF_ACI() |RF_aci |W/m2 | +|RF_VOL() |RF_vol |W/m2 | +|RF_CF4() |FadjCF4 |W/m2 | +|RF_C2F6() |FadjC2F6 |W/m2 | +|RF_HFC23() |FadjHFC23 |W/m2 | +|RF_HFC32() |FadjHFC32 |W/m2 | +|RF_HFC4310() |FadjHFC4310 |W/m2 | +|RF_HFC125() |FadjHFC125 |W/m2 | +|RF_HFC134A() |FadjHFC134a |W/m2 | +|RF_HFC143A() |FadjHFC143a |W/m2 | +|RF_HFC227EA() |FadjHFC227ea |W/m2 | +|RF_HFC245FA() |FadjHFC245fa |W/m2 | +|RF_SF6() |FadjSF6 |W/m2 | +|RF_CFC11() |FadjCFC11 |W/m2 | +|RF_CFC12() |FadjCFC12 |W/m2 | +|RF_CFC113() |FadjCFC113 |W/m2 | +|RF_CFC114() |FadjCFC114 |W/m2 | +|RF_CFC115() |FadjCFC115 |W/m2 | +|RF_CCL4() |FadjCCl4 |W/m2 | +|RF_CH3CCL3() |FadjCH3CCl3 |W/m2 | +|RF_HCFC22() |FadjHCFC22 |W/m2 | +|RF_HCFC141B() |FadjHCFC141b |W/m2 | +|RF_HCFC142B() |FadjHCFC142b |W/m2 | +|RF_HALON1211() |Fadjhalon1211 |W/m2 | +|RF_HALON1301() |Fadjhalon1301 |W/m2 | +|RF_HALON2402() |Fadjhalon2402 |W/m2 | +|RF_CH3CL() |FadjCH3Cl |W/m2 | +|RF_CH3BR() |FadjCH3Br |W/m2 | +|CONCENTRATIONS_CH4() |CH4_concentration |ppbv CH4 | +|RF_CH4() |FCH4 |W/m2 | +|CONCENTRATIONS_N2O() |N2O_concentration |ppbv N2O | +|CONCENTRATIONS_O3() |O3_concentration |DU O3 | +|OCEAN_C() |ocean_c |Pg C | +|OCEAN_C_HL() |HL_ocean_c |Pg C | +|OCEAN_C_LL() |LL_ocean_c |Pg C | +|OCEAN_C_ML() |ML_ocean_c |Pg C | +|OCEAN_C_IO() |IO_ocean_c |Pg C | +|OCEAN_C_DO() |DO_ocean_c |Pg C | +|PH_HL() |HL_pH |pH | +|PH_LL() |LL_pH |pH | +|PH() |pH |pH | +|PCO2_HL() |HL_PCO2 |uatm | +|PCO2_LL() |LL_PCO2 |uatm | +|PCO2() |PCO2 |uatm | +|DIC_HL() |HL_DIC |umol/kg | +|DIC() |DIC |umol/kg | +|DIC_LL() |LL_DIC |umol/kg | +|SST_HL() |HL_sst |degC | +|SST_LL() |LL_sst |degC | +|CO3_LL() |LL_CO3 |umol/kg | +|CO3_HL() |HL_CO3 |umol/kg | +|CO3() |CO3 |umol/kg | +|NBP() |NBP |Pg C/yr | +|CONCENTRATIONS_CO2() |CO2_concentration |ppmv CO2 | +|NPP() |NPP |Pg C/yr | +|RH() |RH |Pg C/yr | +|EARTH_C() |earth_c |Pg C | +|GLOBAL_TAS() |global_tas |degC | +|SST() |sst |degC | +|OCEAN_TAS() |ocean_tas |degC | +|LAND_TAS() |land_tas |degC | +|FLUX_MIXED() |heatflux_mixed |W/m2 | +|FLUX_INTERIOR() |heatflux_interior |W/m2 | +|HEAT_FLUX() |heatflux |W/m2 | diff --git a/vignettes/articles/outputstream.Rmd b/vignettes/articles/outputstream.Rmd new file mode 100644 index 000000000..7f6784eb5 --- /dev/null +++ b/vignettes/articles/outputstream.Rmd @@ -0,0 +1,128 @@ +--- +title: "Command line Hector's outputstream" +--- + +The `outputstream.csv` is created and saved to the `output` directory when +Hector is executed from the command line or Xcode (but _not_ when running +from R; R users should use [fetchvars](../reference/fetchvars.html)). + +# Output stream categories: + +**An important note about time**: The outputstream code currently writes the +_end date_ of the current timestep in the outputstream.csv file; e.g., when +we're running 1 January 1745 - 31 December 1745, what gets written is "1746". +This is not intuitive (most people think of "1746" denoting January 1-December 31) +but numerically correct: the date is 1746.0, i.e. midnight on December 31 1745. +A consequence is that carbon fluxes logged at this timepoint are +effectively for the calendar year 1745 (1745-01-01 to 1745-12-31). + +The first line of this file is a timestamp and version number line, and should +be skipped by any CSV-reading code. + +The variables that appear in the outputstream table include: + +TODO: this should be auto-generated from @leeyap output table? + +| Component | Variable | Units | Definition +| :----------- |:-------------| -----|:----------| +| OH |TAU_OH |Years |OH lifetime | +| CH4 |CH4 |ppbv CH4 |CH4 concentration +| ozone |O3 |DU O3 |tropospheric ozone concentration +| bc |BC_emissions |Tg |BC emissions +| oc |OC_emissions |Tg |OC emissions +| N2O |N2O |ppbv N2O |N2O concentration +| CF4_halocarbon |hc_emission |Gg |CF4 emissions +| CF4_halocarbon |hc_concentration |pptv |CF4 concentration +| C2F6_halocarbon |hc_emission |Gg |C2F6 emissions +| C2F6_halocarbon |hc_concentration |pptv |C2F6 concentration +| HFC23_halocarbon |hc_emission |Gg |HFC23 emissions +| HFC23_halocarbon |hc_concentration |pptv |HFC23 concentration +| HFC32_halocarbon |hc_emission |Gg |HFC32 emissions +| HFC32_halocarbon |hc_concentration |pptv |HFC32 concentration +| HFC4310_halocarbon |hc_emission |Gg |HFC4310 emissions +| HFC4310_halocarbon |hc_concentration |pptv |HFC4310 concentration +| HFC125_halocarbon |hc_emission |Gg |HFC125 emissions +| HFC125_halocarbon |hc_concentration |pptv |HFC125 concentration +| HFC134a_halocarbon |hc_emission |Gg |HFC134a emissions +| HFC134a_halocarbon |hc_concentration |pptv |HFC134a concentration +| HFC143a_halocarbon |hc_emission |Gg |HFC143a emissions +| HFC143a_halocarbon |hc_concentration |pptv |HFC143a concentration +| HFC227ea_halocarbon |hc_emission |Gg |HFC227ea emissions +| HFC227ea_halocarbon |hc_concentration |pptv |HFC227ea concentration +| HFC245fa_halocarbon |hc_emission |Gg |HFC245fa emissions +| HFC245fa_halocarbon |hc_concentration |pptv |HFC245fa concentration +| SF6_halocarbon |hc_emission |Gg |SF6 emissions +| SF6_halocarbon |hc_concentration |pptv |SF6 concentration +| CFC11_halocarbon |hc_emission |Gg |CFC11 emissions +| CFC11_halocarbon |hc_concentration |pptv |CFC11 concentration +| CFC12_halocarbon |hc_emission |Gg |CFC12 emissions +| CFC12_halocarbon |hc_concentration |pptv |CFC12 concentration +| CFC113_halocarbon |hc_emission |Gg |CFC113 emissions +| CFC113_halocarbon |hc_concentration |pptv |CFC113 concentration +| CFC114_halocarbon |hc_emission |Gg |CFC114 emissions +| CFC114_halocarbon |hc_concentration |pptv |CFC114 concentration +| CFC115_halocarbon |hc_emission |Gg |CFC115 emissions +| CFC115_halocarbon |hc_concentration |pptv |CFC115 concentration +| CCl4_halocarbon |hc_emission |Gg |CCl4 emissions +| CCl4_halocarbon |hc_concentration |pptv |CCl4 concentration +| CH3CCl3_halocarbon |hc_emission |Gg |CH3CCl3 emissions +| CH3CCl3_halocarbon |hc_concentration |pptv |CH3CCl3 concentration +| HCF22_halocarbon |hc_emission |Gg |HFC22 emissions +| HCF22_halocarbon |hc_concentration |pptv |HFC22 concentration +| HCF141b_halocarbon |hc_emission |Gg |HFC141b emissions +| HCF141b_halocarbon |hc_concentration |pptv |HFC141b concentration +| HCF142b_halocarbon |hc_emission |Gg |HFC142b emissions +| HCF142b_halocarbon |hc_concentration |pptv |HFC142b concentration +| halon1211_halocarbon |hc_emission |Gg |halon1211 emissions +| halon1211_halocarbon |hc_concentration |pptv |halon1211 concentration +| halon1301_halocarbon |hc_emission |Gg |halon1301 emissions +| halon1301_halocarbon |hc_concentration |pptv |halon1301 concentration +| halon2402_halocarbon |hc_emission |Gg |halon2402 emissions +| halon2402_halocarbon |hc_concentration |pptv |halono2402 concentration +| CH3Br_halocarbon |hc_emission |Gg |CH3Br emissions +| CH3Br_halocarbon |hc_concentration |pptv |CH3Br concentration +| CH3Cl_halocarbon |hc_emission |Gg |CH3Cl emissions +| CH3Cl_halocarbon |hc_concentration |pptv |CH3Cl concentration +| ocean |atm_ocean_flux_HL |Pg C/yr |flux of carbon between the atmosphere and high latitude surface box +| ocean |atm_ocean_flux_LL |Pg C/yr |flux of carbon between the atmosphere and low latitude surface box +| ocean |carbon_DO |Pg C |carbon pool - deep ocean +| ocean |carbon_HL |Pg C |carbon pool - high latitude surface ocean +| ocean |carbon_IO |Pg C |carbon pool - intermediate ocean +| ocean |carbon_LL |Pg C |carbon pool - low latitude surface ocean +| ocean |DIC_HL |umol/kg |dissolved inorganic carbon - high latitude +| ocean |DIC_LL |umol/kg |dissolved inorganic carbon - low latitude +| ocean |HL_DO_Cflux |Pg C/yr |flux of carbon from the high latitude to the deep ocean +| ocean |atm_ocean_flux |Pg C/yr |total atmosphere ocean flux +| ocean |OmegaAr_HL |(unitless) |aragnoite saturation - high latitude +| ocean |OmegaAr_LL |(unitless) |aragnoite saturation - low latitude +| ocean |OmegaCa_HL |(unitless) |calcite saturation - high latitude +| ocean |OmegaCa_LL |(unitless) |calcite saturation - low latitude +| ocean |PCO2_HL |uatm |partial pressure CO2 - high latitude +| ocean |PCO2_LL |uatm |partial pressure CO2 - low latitude +| ocean |pH_HL |pH |pH - high latitude +| ocean |pH_LL |pH |pH - low latitude +| ocean |Temp_HL |degC |ocean surface temperature - high latitude +| ocean |Temp_LL |degC |ocean surface temperature - low latitude +| ocean |ocean_c |Pg C |total ocean carbon pool +| ocean |CO3_HL |umol/kg |carbonate ion - high latitude +| ocean |CO3_LL |umol/kg |carbonate ion - low latitude +| ocean |ocean_timesteps |(unitless) |time step the ocean operates on +| ocean |Revelle_HL |(unitless) |Revelle factor - high latitude +| ocean |Revelle_LL |(unitless) |Revelle factor - low latitude +| ocean |heatflux |W/m2 |ocean heat flux +| ocean |kappa |W/m2/K |ocean heat uptake efficiency +| simpleNbox |atm_land_flux |Pg C/yr |flux of carbon between the atmosphere and the ocean +| simpleNbox |ffiEmissions |Pg C/yr |total fossil fuel emissions +| simpleNbox |lucEmissions |Pg C/yr |total land use change emissions +| simpleNbox |npp |Pg C/yr |net primary production (land) +| simpleNbox |rh |Pg C/yr |heterotrophic respiration (land) +| simpleNbox |Ca |ppmv CO2 |atmospheric CO2 concentration +| simpleNbox |atmos_c |Pg C |total atmospheric carbon pool +| simpleNbox |atmos_c_residual |Pg C |the difference between calculated CO2 and and prescribed CO2 when running with prescribed CO2 concentrations +| simpleNbox |veg_c |Pg C |total vegetation carbon pool +| simpleNbox |detritus_c |Pg C |total detritus carbon pool +| simpleNbox |soil_c |Pg C |total soil carbon pool +| simpleNbox |earth_c |Pg C |total carbon pool - used a mass balance check +| forcing |FCO2 |W/m2 |radiative forcing from CO2 +| forcing |Ftot |W/m2 |total global radiative forcing +| temperature |global_tas |degC |global atmospheric temperature anomaly diff --git a/vignettes/manual/Hector-Units.md b/vignettes/articles/units.Rmd similarity index 94% rename from vignettes/manual/Hector-Units.md rename to vignettes/articles/units.Rmd index 418bad92a..d693fe810 100644 --- a/vignettes/manual/Hector-Units.md +++ b/vignettes/articles/units.Rmd @@ -1,4 +1,7 @@ -## Units for emissions passed into Hector +--- +title: "Units for emissions passed into Hector" +--- + The "Unit Symbol" is the symbol used in the code for the unit. They are all part of the `Hector::` namespace, so in actual use you would write `Hector::U_TG`, etc. In most cases the "per year" is left implicit, so emissions in Tg/yr are written as `U_TG`. The notable exception is CO2, where the code tracks both carbon fluxes and carbon pools, and must therefore make a distinction. @@ -19,7 +22,7 @@ halocarbons | Gg/yr | `U_GG` | All halocarbons use the same unit. ## Units for Hector outputs -Hector outputs are returned as `unitval` structures, so if there is any doubt, you can always dump the return value to an output stream to see what the unit is (or test the units field against likely candidates). What follows is a non-exhaustive list of some of the commonly-used outputs +Hector outputs are returned as `unitval` structures, so if there is any doubt, you can always dump the return value to an output stream to see what the unit is (or test the units field against likely candidates). What follows is a non-exhaustive list of some of the commonly-used outputs. Value | Units | Unit Symbol | Notes @@ -27,3 +30,8 @@ Value | Units | Unit Symbol | Notes Forcings | W/m2 | `U_W_M2` | All forcings given in W/m2 relative to baseline Temperature | degrees C | `U_DEGC` | Temperature anomaly Atmospheric CO2 concentration | PPMv CO2 | `U_PPMV_CO2` | + +**** + +See also [unitval notes](Unitvals.html) + diff --git a/vignettes/articles/v3_output_changes.Rmd b/vignettes/articles/v3_output_changes.Rmd new file mode 100644 index 000000000..139bb3d01 --- /dev/null +++ b/vignettes/articles/v3_output_changes.Rmd @@ -0,0 +1,82 @@ +--- +title: "V3 Output Name Changes" +--- + +As part of the V3 update a number of output names have changed and a handful have been removed. This table lists the old variable names reported in the csv output stream under the column `variable_v2` and the new variable name under `variable_v3` column. + + +|component |variable_v2 |variable_v3 | +|:-----------|:-----------------|:-----------------| +|CH4 |CH4 |CH4_concentration | +|ozone |O3 |O3_concentration | +|N2O |N2O |N2O_concentration | +|ocean |atm_ocean_flux_HL |HL_ocean_uptake | +|ocean |atm_ocean_flux_LL |LL_ocean_uptake | +|ocean |carbon_DO |DO_ocean_c | +|ocean |carbon_HL |HL_ocean_c | +|ocean |carbon_IO |IO_ocean_c | +|ocean |carbon_LL |LL_ocean_c | +|ocean |DIC_HL |HL_DIC | +|ocean |DIC_LL |HL_DIC | +|ocean |HL_DO_Cflux |HL_downwelling | +|ocean |atm_ocean_flux |ocean_uptake | +|ocean |OmegaAr_HL |HL_OmegaAr | +|ocean |OmegaAr_LL |LL_OmegaAr | +|ocean |OmegaCa_HL |HL_OmegaCa | +|ocean |OmegaCa_LL |LL_OmegaCa | +|ocean |PCO2_HL |HL_PCO2 | +|ocean |PCO2_LL |LL_PCO2 | +|ocean |pH_HL |HL_pH | +|ocean |pH_LL |LL_pH | +|ocean |Temp_HL |HL_sst | +|ocean |Temp_LL |LL_sst | +|ocean |CO3_HL |HL_CO3 | +|ocean |CO3_LL |LL_CO3 | +|simpleNbox |atm_land_flux |NBP | +|simpleNbox |npp |NPP | +|simpleNbox |rh |RH | +|simpleNbox |Ca |CO2_concentration | +|simpleNbox |atmos_c |atmos_co2 | +|temperature |Tgav |global_tas | +|temperature |flux_mixed |heatflux_mixed | +|temperature |flux_interior |heatflux_interior | +|forcing |FBC |RF_BC | +|forcing |FC2F6 |RF_C2F6 | +|forcing |FCCl4 |RF_CCl4 | +|forcing |FCF4 |RF_CF4 | +|forcing |FCFC11 |RF_CFC11 | +|forcing |FCFC113 |RF_CFC113 | +|forcing |FCFC114 |RF_CFC114 | +|forcing |FCFC115 |RF_CFC115 | +|forcing |FCFC12 |RF_CFC12 | +|forcing |FCH3Br |RF_CH3Br | +|forcing |FCH3CCl3 |RF_CH3CCl3 | +|forcing |FCH3Cl |RF_CH3Cl | +|forcing |FCH4 |RF_CH4 | +|forcing |FCO2 |RF_CO2 | +|forcing |FH2O |RF_H2O | +|forcing |FHCF141b |RF_HCF141b | +|forcing |FHCF142b |RF_HCF142b | +|forcing |FHCF22 |RF_HCF22 | +|forcing |FHFC125 |RF_HFC125 | +|forcing |FHFC134a |RF_HFC134a | +|forcing |FHFC143a |RF_HFC143a | +|forcing |FHFC227ea |RF_HFC227ea | +|forcing |FHFC23 |RF_HFC23 | +|forcing |FHFC245fa |RF_HFC245fa | +|forcing |FHFC32 |RF_HFC32 | +|forcing |FHFC4310 |RF_HFC4310 | +|forcing |FN2O |RF_N2O | +|forcing |FO3 |RF_O3 | +|forcing |FOC |RF_OC | +|forcing |FSF6 |RF_SF6 | +|forcing |FSO2d |Removed | +|forcing |FSO2i |Removed | +|forcing |Fhalon1211 |Fhalon1211 | +|forcing |Fhalon1301 |Fhalon1301 | +|forcing |Fhalon2402 |RF_halon2402 | +|forcing |Ftalbedo |RF_albedo | +|forcing |Ftot |RF_tot | +|forcing |Fvol |RF_vol | + + diff --git a/vignettes/intro-to-hector.Rmd b/vignettes/hector.Rmd similarity index 53% rename from vignettes/intro-to-hector.Rmd rename to vignettes/hector.Rmd index 9ec026774..42ed4320d 100644 --- a/vignettes/intro-to-hector.Rmd +++ b/vignettes/hector.Rmd @@ -1,78 +1,76 @@ --- -title: A tour of the Hector R interface -author: Alexey Shiklomanov -date: "2018-10-17" +title: "hector" output: rmarkdown::html_vignette +author: Alexey Shiklomanov +date: "2018-10-17 (updated 2022)" vignette: > - %\VignetteIndexEntry{A tour of the Hector R interface} - %\VignetteEncoding{UTF-8} + %\VignetteIndexEntry{hector} %\VignetteEngine{knitr::rmarkdown} -editor_options: - chunk_output_type: console + %\VignetteEncoding{UTF-8} --- ```{r setup, include=FALSE} -# TODO figure out how to avoid this hack -# see https://www.r-bloggers.com/2020/04/setting-the-graphics-device-in-a-rmarkdown-document/ -ragg_png = function(..., res = 192) { - ragg::agg_png(..., res = res, units = "in") -} -knitr::opts_chunk$set(dev = "ragg_png", fig.ext = "png", echo = TRUE) +knitr::opts_chunk$set(echo = TRUE, dpi = 150) ``` -This vignette provides a basic introduction for running Hector with R. -First, it shows how to do a simple Hector run with one of Hector's built-in scenarios. -Then, it shows how to modify Hector parameters from within R and uses this functionality to perform a simple sensitivity analysis of how the CO$_2$ fertilization parameter $\beta$ affects several Hector output variables. +This vignette provides a basic introduction for running Hector with R, +assuming that Hector is already installed. +First, it shows how to do a simple Hector run with a built-in scenario. +It then demonstrates how to modify Hector parameters from within R to perform +a simple sensitivity analysis of how the CO$_2$ +fertilization parameter $\beta$ affects several Hector output variables. # Basic run First, load the `hector` package. ```{r load-packages} -library(hector) +library(hector) ``` -Hector is configured via an INI file, which defines run metadata, inputs (e.g. emissions scenarios), and parameters. -For details on this file, see [InputFiles](https://github.com/JGCRI/hector/wiki/InputFiles) on the Hector GitHub Wiki. +Hector is configured via an INI file, which defines run metadata, inputs +(e.g., emissions scenarios), and parameters. +For details on this file, see [InputFiles](InputFiles.html). -These files ship with the Hector R package, in the `input` subdirectory, which allows them to be accessed via `system.file`. -Below, we get the path of the input file corresponding to the scenario RCP 4.5. +These files ship with the Hector R package in the `input/` subdirectory, +which allows them to be accessed via `system.file`. +First, determine the path of the input file (ini) corresponding to the +scenario [SPP245](https://en.wikipedia.org/wiki/Shared_Socioeconomic_Pathways). ```{r ini-file } -ini_file <- system.file("input/hector_rcp45.ini", package = "hector") +ini_file <- system.file("input/hector_ssp245.ini", package = "hector") ``` - -Alternatively, users may provide a path to an ini file external to the Hector package on their local machine. This ini file must comply with the Hector [ini requirements](https://github.com/JGCRI/hector/wiki/InputFiles). +Alternatively, users may provide a path to an ini file external to the Hector +package on their local machine. This file must comply with the Hector [ini requirements](InputFiles.html). ```{r} external_ini_file <- "/path/to/ini/on/local/machine/my_ini.ini" ``` - Next, we initialize a Hector instance, or "core", using this configuration. This core is a self-contained object that contains information about all of Hector's inputs and outputs. The core is initialized via the `newcore` function: ```{r init-core} core <- newcore(ini_file) -core +core ``` Now that we have configured a Hector core, we can run it with the `run` function. ```{r run-core } -run(core) +run(core) ``` Notice that this itself returns no output. Instead, the output is stored inside the core object. -To retrieve it, we use the `fetchvars` function. -Below, we also specify that we want to retrieve results for the years 2000 to 2300. +To retrieve it, we use the `fetchvars()` function. +Below, we also specify that we want to retrieve results from 2000 to 2300. ```{r get-results } results <- fetchvars(core, 2000:2300) -head(results) +head(results) ``` The results are returned as a long `data.frame`. @@ -87,42 +85,47 @@ ggplot(results) + facet_wrap(~variable, scales = "free_y") ``` +By default, `fetchvars()` returns the four outputs shown above -- atmospheric +CO$_2$ concentration, CO$_2$ radiative forcing, total radiative forcing, and +temperature change -- but any model output(s) can be specified. + # Setting parameters The Hector R interface interacts with parameters and variables in the same way. -Therefore, the variables can be set and checked via `setvar` and `fetchvars`, respectively. +Therefore, the variables can be set and checked via `setvar()` and `fetchvars()`. First, let's get the current value of $\beta$ (beta), the CO$_2$ fertilization factor. -Because variables and parameter names have to be retrieved from the Hector core, they are stored as R functions (e.g. `BETA()`). -However, these functions simply return a string corresponding to the variable name. +Because variables and parameter names have to be retrieved from the Hector core, +they are stored as R functions (e.g. `BETA()`). +However, these functions return a string corresponding to the variable name. ```{r variable-example} BETA() ``` -Just as we did to load results, we use `fetchvars` to query parameter values. +Just as we did to load results, we use `fetchvars()` to query parameter values. ```{r get-beta} beta <- fetchvars(core, NA, BETA()) -beta +beta ``` -The result of `fetchvars` is always a `data.frame` with the same columns, even when returning a parameter value. +The result of `fetchvars()` is always a `data.frame` with the same columns, even when returning a parameter value. Note also the use of `NA` in the second argument (`dates`). The current value is set to 0.36 (note that it is a unitless quantity, hence the `(unitless)` unit). Let's bump it up a little to 0.40. ```{r set-beta } -setvar(core, NA, BETA(), 0.40, "(unitless)") +setvar(core, NA, BETA(), 0.40, "(unitless)") ``` Similarly to `run`, this returns no output. Rather, the change is stored inside the Hector "core" object. -We can confirm that our change took effect with another call to `fetchvars`. +We can confirm that our change took effect with another call to `fetchvars()`. ```{r check-set-beta} -fetchvars(core, NA, BETA()) +fetchvars(core, NA, BETA()) ``` Now, let's run the simulation again with a higher value for CO$_2$ fertilization. @@ -136,33 +139,45 @@ Notice that `Current date` is set to 2300. This is because we have already run this core to its end date. The ability to stop and resume Hector runs with the same configuration, possibly with adjusting values of certain variables while stopped, is an essential part of the model's functionality. But, it's not something we're interested in here. -We have already stored the previous run's output in `results` above, so we can safely reset the core here. +We have already stored the previous run's output in `results` above, so we can safely reset the core: ```{r reset-core} reset(core) ``` -This will effectively "rewind" the core back to either the provided `date` (defaults to 0 if missing) or the model start date (set in the INI file; default is 1745), whichever is greater. -In addition, if the `date` argument is less than the model start date and spinup is enabled (`do_spinup = 1` in the INI file), then the core will re-do its spinup process with the current set of parameters. +This effectively 'rewinds' the core back to either the provided `date` +(defaults to 0 if missing) or the model start date (set in the INI file; +default is 1745), whichever is greater. +In addition, if the `date` argument is less than the model start date and spinup +is enabled (`do_spinup = 1` in the INI file), then the core will re-do its +spinup process with the current set of parameters. *** **NOTE** -Prior to a normal run beginning in 1745, Hector has an optional "spinup" mode where it runs the carbon cycle with no perturbations until it stabilizes. Essentially, the model removes human emissions and runs until there are no more changes in the carbon pools and the system has reached equilibrium. +Prior to a normal run beginning in 1745, Hector has an optional "spinup" mode +where it runs the carbon cycle with no perturbations until it stabilizes. +Essentially, the model removes human emissions and runs until there are no more +changes in the carbon pools and the system has reached equilibrium. -Because changing Hector parameters can change the post-spinup equilibrium values of state variables, Hector will automatically run `reset(core, date = 0)` at the beginning of the next `run` call if it detects that any of its parameters have changed. -This means that is not currently possible to change Hector _parameters_ (such as $\beta$ or preindustrial CO~2~) part-way through a run. -However, it is still possible to change the values of certain _drivers_ and _state variables_ (such as the CO~2~ emissions) in the middle of a run. +Because changing Hector parameters can change the post-spinup equilibrium values +of state variables, Hector will automatically run `reset(core, date = 0)` at the +beginning of the next `run` call if it detects that any of its parameters have changed. +This means that it is not currently possible to change Hector _parameters_ +(such as $\beta$ or preindustrial CO~2~) part-way through a run. +However, it is still possible to change the values of specific _drivers_ and +_state variables_ (such as the CO~2~ emissions) in the middle of a run. *** -So, as a result of the `reset` command, the core's `Current Date` is now the model start date--1745. +So, as a result of the `reset` command, the core's `Current Date` is now the model +start date -- 1745. We can now perform another run with the new CO$_2$ fertilization value. ```{r run-sim-2} run(core) results_40 <- fetchvars(core, 2000:2300) -head(results_40) +head(results_40) ``` Let's see how changing the CO$_2$ fertilization affects our results. @@ -179,38 +194,35 @@ ggplot(compare_results) + guides(color = guide_legend(title = expression(beta))) ``` -As expected, increasing CO$_2$ fertilization increases the strength of the terrestrial carbon sink and therefore reduces atmospheric CO$_2$, radiative forcing, and global temperature. -However, the effects only become pronounced in the latter half of the 21st Century. +As expected, increasing CO$_2$ fertilization increases the strength of the +terrestrial carbon sink and therefore reduces atmospheric CO$_2$, radiative forcing, +and global temperature. +However, the effects only become pronounced in the latter half of the 21st century. # Sensitivity analysis -Hector runs fairly quickly, which makes it easy to run lots of simulations under slightly different configurations. -One application of this is to explore the sensitivity of Hector to variability in its parameters. +Hector runs quickly, making it easy to run many simulations under slightly different +configurations. One application of this is to explore the sensitivity of Hector +to variability in its parameters. -The basic procedure for this is the same as in the previous section. -However, to save typing (and, in general, to be good programmers!), let's create some functions. +The basic procedure for this is the same as in the previous section. However, to +save typing (and, in general, to be good programmers!), let's create some functions. ```{r functions } -#' Run Hector with a parameter set to a particular value, and return results +#' Run Hector with a parameter set to a particular value, and return results #' #' @param core Hector core to use for execution -#' @param parameter Hector parameter name, as a function call (e.g. -#' `BETA()`) +#' @param parameter Hector parameter name, as a function call (e.g. `BETA()`) #' @param value Parameter value -#' @param dates Sequence of years for running simulation (default = #' -#' `2000:2300`) -#' @param ini_file Hector parameter file (default = RCP 4.5 file) -#' @return Results, as data.frame, with additional `parameter_value` -#' column +#' @return Results, as data.frame, with additional `parameter_value` column run_with_param <- function(core, parameter, value) { - old_value <- fetchvars(core, NA, parameter) - unit <- as.character(old_value[["units"]]) - setvar(core, NA, parameter, value, unit) + setvar(core, NA, parameter, value, getunits(parameter)) reset(core) run(core) result <- fetchvars(core, 2000:2300) result[["parameter_value"]] <- value + result[["parameter_units"]] <- getunits(parameter) result } @@ -220,14 +232,16 @@ run_with_param_range <- function(core, parameter, values) { Reduce(rbind, mapped) } -sensitivity_beta <- run_with_param_range(core, BETA(), seq(0, 1, 0.05)) +sensitivity_beta <- run_with_param_range(core, BETA(), seq(0, 1, length.out = 5)) ggplot(sensitivity_beta) + aes(x = year, y = value, color = parameter_value, group = parameter_value) + geom_line() + facet_wrap(~variable, scales = "free_y") + guides(color = guide_colorbar(title = expression(beta))) + - scale_color_viridis_c() + scale_color_viridis_c() ``` -As we can see, the ability of CO$_2$ fertilization to offset carbon emissions is saturating -- at high values of $\beta$, the same increase in $\beta$ translates into a smaller decrease in atmospheric CO$_2$ and related climate effects. +As we can see, the ability of CO$_2$ fertilization to offset carbon emissions +saturates, at high values of $\beta$, the same increase in $\beta$ translates +into a smaller decrease in atmospheric CO$_2$ and related climate effects. diff --git a/vignettes/hector_apply.Rmd b/vignettes/hector_apply.Rmd deleted file mode 100644 index 3c5781aa5..000000000 --- a/vignettes/hector_apply.Rmd +++ /dev/null @@ -1,111 +0,0 @@ ---- -title: "Example: solving for an emissions pathway" -author: "Robert Link" -date: "2018-10-17" -output: rmarkdown::html_vignette -vignette: > - %\VignetteEncoding{UTF-8} - %\VignetteIndexEntry{Example: solving for an emissions pathway} - %\VignetteEngine{knitr::rmarkdown} -editor_options: - chunk_output_type: console ---- - - -```{r setup, include=FALSE} -# TODO figure out how to avoid this hack -# see https://www.r-bloggers.com/2020/04/setting-the-graphics-device-in-a-rmarkdown-document/ -ragg_png = function(..., res = 192) { - ragg::agg_png(..., res = res, units = "in") -} -knitr::opts_chunk$set(dev = "ragg_png", fig.ext = "png", echo = TRUE) -``` - -## Introduction - -This tutorial shows how to use the Hector climate model in R to answer a simple science -question. In this case, we'll be looking at solving for the methane emissions required -over time to produce a constant atmospheric methane concentration from 2000 through 2100. - -To run this experiment, you will need to have the `nleqslv` package installed. This package -will be used to generate successive guesses in the search for an emissions pathway that produces -the target concentration. - -## Setup - -The `nleqslv` package requires us to supply a function that takes a vector of inputs (i.e., -emissions by year) and produces a vector of outputs that are the discrepancies between the -Hector output and the target concentrations. In order to create such a function we will need to -set up an interface to Hector. Since all of our calculations are going to involve years 2000 -and beyond, we will run up through 1999. - -```{r hector.init} -library('ggplot2') -library('hector') -hector_inifile <- file.path(system.file('input', package='hector'), 'hector_rcp60.ini') -hcore <- newcore(hector_inifile, suppresslogging=TRUE) -run(hcore, 1999) -``` - -Our target function will take a vector of emission values as input and return a vector of -discrepancies between the hector outputs and the target output. We'll make the target concentration -value 1820 ppbv CH$_4$ (a bit higher than the year 2000 value in the baseline scenario). - -```{r targfn.init} -f <- function(emiss) -{ - setvar(hcore, 2000:2100, EMISSIONS_CH4(), emiss, "Tg CH4") - reset(hcore, 1999) - run(hcore, 2100) - hout <- fetchvars(hcore, 2000:2100, ATMOSPHERIC_CH4()) - ## return the difference between the target of 1820 (constant) and the actual - hout$value - 1820 -} -``` - -## Solve for the target emissions - -To solve for the target emissions we just pass the target function to `nleqslv`. We also need an initial guess -for the emissions. It doesn't really matter what the guess is, so long as it isn't something so large that it -will cause the model to fail outright. We will use a constant 300 Tg CH$_4$ as the initial guess. - -```{r solve} -x <- rep(300.0, times=101) # 2000:2001 includes both endpoints -slv <- nleqslv::nleqslv(x, f, method="Broyden") -``` - -We should check to see that the algorithm really converged. The discrepancy values from the last iteration -are stored in the `fvec` entry. -```{r chkf} -max(abs(slv$fvec)) -``` - -## Results - -The convergence looks ok, so let's plot the results: - -```{r plt} - df <- data.frame(year = 2000:2100, - value = slv[['x']]) - - ggplot2::ggplot(data = df, aes(year, value)) + - geom_point() + - labs(y = "Emissions (Tg CH4)", x = 'year') -``` - -The concentration target of 1820 ppbv CH$_4$ that we specified in 2000 is a bit of a jump from what was in the -scenario we based our run on (the original was about 1811 ppbv), so we have a small spike in emissions in 2000. After -that the emissions settle down into something smoother. - -Once we're done with our Hector instance, we need to make sure to shut it down, so that the memory it is using -will be freed. -```{r shutdown} -shutdown(hcore) -``` - -## Conclusion - -This simple example shows the kind of thing you can do by combining the Hector R interface with other packages -available in R. It would be easy enough to add emissions for other gasses or work in terms of forcing or temperature. -Likewise, instead of solving for an equilibrium you could minimize or maximize some function of the emissions (using the -`optim` function), or run one of the many Monte Carlo packages that are available in R. diff --git a/vignettes/manual/AddNewComponent.Rmd b/vignettes/manual/AddNewComponent.Rmd deleted file mode 100644 index b413f56e1..000000000 --- a/vignettes/manual/AddNewComponent.Rmd +++ /dev/null @@ -1,92 +0,0 @@ ---- -title: Adding a new component ---- -Here are the steps to create a new component `X`. - -Step one: ------------ - -Add two new files: -* `headers/core/X.hpp` -* `source/core/X.cpp` - -It is best to copy and modify the corresponding files from an already constructed component. - -Step two (within X.hpp): ------------ -Under `private` list the variables that are used in the component and their corresponding type. Because of Hector's ability to [reset](https://jgcri.github.io/hector/reference/reset.html), every state variable generally needs an associated time series history variable. -E.g. -* `tseries x` to create a [time series](https://jgcri.github.io/hector/articles/manual/TimeSeries.html). -* `unitval x` to declare a [value with associated units](Unitvals.html). -* `double x` - -Step three (within X.cpp): ---------- -Make sure that you `#include X.hpp`. - -_In the constructor_ -If the variable is a `tseries`, add all of the variables allowing for interpolation and their corresponding names - - XComponent::XComponent() { - X_emissions.allowInterp( true ); - X_emissions.name = X_COMPONENT_NAME; - -_In X::init_ -Inform the core what data the component can provide (*registerCapability*) and what data the component depends on (*registerDependency*) - - core->registerCapability( D_ATMOSPHERIC_X, getComponentName() ); - core->registerDependency( D_LIFETIME_X, getComponentName() ); - -_In X::setData_ -Set the data that are used as inputs within this component, typically coming from the INI file. -[[For examples of `tseries` vs. `unitvals` in [Time Series](https://jgcri.github.io/hector/articles/manual/TimeSeries.html)]]. - -_In X::prepareToRun_ -TODO: describe - -_In X::run_ -The run method contains the equations and code used in this component. Here is where you would want a log statement, written out to the component's log. - -`H_LOG( logger, Logger::DEBUG ) << "Year " << runToDate << " X concentration = " << X.get( runToDate ) << std::endl;` - -TODO: mention spinup flag return. - - -_In X::getData_ -These are data that the component can provide to another component, or the data that is being generated within the component. [[For examples of tseries vs. unitvals in getData|AddTSeries]]. - -_In X::shutDown_ -TODO: describe - -Step four (Outside of X.cpp and X.hpp): ----------------------------------------- - -_In avistor.hpp_ - Add class XComponent under the declarations of subclasses - Add `virtual void visit( XComponent*c ) {}` - -_In core.cpp_ - `#include "components/xcomponent.hpp" ` - Under init add: - `temp = new XComponent();` - `modelComponents[ temp-->getComponentName() ] = temp;` - -_In component_names.hpp_ - Under component names: - `#define X_COMPONENT_NAME “x”` - -_In component_data.hpp_ - define the variables within the component - `#define D_ATMOSPHERIC_X "X"` - -_In csv_outputstream_visitor.cpp_ - `#include 'components/xcomponent.hpp' ` - - void CSVOutputStreamVisitor::visit( XComponent* c ) { - if( !core->outputEnabled( c->getComponentName() ) && !in_spinup ) return; - STREAM_MESSAGE_DATE( csvFile, c, D_X_COMPONENT, current_date ); - } - -_In csv_outputsream_visitor.hpp_ - under public - `virtual void visit( XComponent* c);` diff --git a/vignettes/manual/AddNewVariable.Rmd b/vignettes/manual/AddNewVariable.Rmd deleted file mode 100644 index c6d4dd2c7..000000000 --- a/vignettes/manual/AddNewVariable.Rmd +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Adding a new variable ---- - -Adding a new variable to a method using `getData` to obtain the information defined in the INI file. - -Method ---------- - -_In hector.ini_ -Under the corresponding component add variable - Ex: `SN = 42000;` - - - -_In hpp file of component_ -Add variable as `tseries`, `unitval`, `double`, etc. and add its associated time series (when necessary; see above). - -Define the variables that are being added -Ex: `#define D_ATMOSPHERIC_SO2 "SN"` - -These names do *not* have to match internal component variables but the INI definition *has to* match what appears in quotes - -_In the component file.cpp_ -Under init, need to register the Capability - `core->registerCapability( D_ATMOSPHERIC_SO2, getComponentName() );` - -_In cpp file of component_ -Under `getData` and `setData`, add the new variables in before the Error message - -NOTE: see [tseries](https://jgcri.github.io/hector/articles/manual/TimeSeries.html) documentation for more information on `getData` - - (getData) - else if(varName == D_ATMOSPHERIC_SO2 ) { - returnval = SN; - (setData) - else if( varName == D_ATMOSPHERIC_SO2 ) { - H_ASSERT( data.date == Core::undefinedIndex(), "date not allowed"); - SN.set( lexical_cast( value ), U_GG ); - } - - -_If this variable is called in another component._ - -For example, if adding in a variable within the forcing component -Ex: `unitval SN = core->getData( D_ATMOSPHERIC_SO2, runToDate);` - -If this variable is a `unitval`, the relevant code file must include `unitval.hpp`. diff --git a/vignettes/manual/BuildHector.Rmd b/vignettes/manual/BuildHector.Rmd deleted file mode 100644 index a53d1ed7c..000000000 --- a/vignettes/manual/BuildHector.Rmd +++ /dev/null @@ -1,177 +0,0 @@ -# Installing and building Hector - -There are lots of ways to use Hector: as a stand alone executable, through the UI, and as an R package. Here we provide installation and building instructions for the R Hector package and the executable. - -# R Hector - -To install R, follow the [official instructions](https://cloud.r-project.org/) for your platform. - -To install the version associated with the current `master` git branch on GitHub, use the `devtools::install_github` function. -This will automatically install all of Hector's dependencies as well. -(Note that because this requires compiling from source, you will need to have a C compiler installed and configured. - -On **Windows**, you will also need to install [Rtools](https://cloud.r-project.org/bin/windows/Rtools/). -On **Mac OS** and **Linux**, the required tools should be included as part of a standard R installation.) - -```r -# If the `devtools` isn't installed, first run: -# install.packages("devtools") -devtools::install_github("jgcri/hector") - -# You can also install from specific git tags... -devtools::install_github("jgcri/hector@2.2.2") -# ...branches... -devtools::install_github("jgcri/hector@krd-perscribe_co2Con") -# ...or commit hashes. -devtools::install_github("jgcri/hector@16c480a") -``` - -Finally, to install from a local copy of the source code, you can use the following code: - -```r -devtools::install("/path/to/hector") -# For the current directory, use `"."` or run the function with no arguments. -``` - -...or, if you are using the [RStudio IDE](https://www.rstudio.com/products/rstudio/), use the "Install and Restart", "Clean and Rebuild", and similar tools in the "Build" tab. - -Although very common and broadly useful, the `devtools` package has many R package dependencies, including some with system dependencies. -If you do not want to install `devtools`, you can also install from a local copy by using the base-R `install.packages` function as follows: - -```r -install.packages("/path/to/hector", repos = NULL) -``` - -...or by running the following shell command: - -```sh -R CMD INSTALL /path/to/hector -``` - -However, note that neither of these commands will automatically install Hector's dependencies, so you will have to install them manually. -Hector's mandatory dependencies are listed in the `DESCRIPTION` file under `Imports`, and are currently as follows: - -- [`Rcpp`](http://www.rcpp.org/) -- Facilitates integration of C++ code into R packages -- [`BH`](https://cran.r-project.org/web/packages/BH/index.html) -- Boost C++ header files - - -# Standalone Executable - -Hector can also be compiled as a standalone executable. -Unlike the R package, this method of installation does not automatically pull in dependencies, so you will have to install them manually. -Fortunately, Hector's only external dependency--Boost--is freely available under a GPL license. - -**Boost** is a free, peer-reviewed portable C++ source library, available at http://www.boost.org/. -Hector primarily uses Boost "header-only" libraries, which do not need to be compiled independently and only need to be extracted and included with the Hector source. -However, Hector currently _does_ depend on one Boost library, `filesystem`, that requires compilation. - -## Command Line (Linux & Mac OSX) - -The Hector makefiles look for Boost libraries and headers in certain default -locations, but those defaults can be overridden by setting the -following environment variables: - -* `BOOSTROOT` (default `$(HOME)/src/boost_$(BOOSTVERSION)`). -This variable should contain the full name of the directory created -when you unpacked Boost. If you unpacked Boost in `$(HOME)/src`, then -all you need to do is set the `BOOSTVERSION` variable (*q.v.* below) and leave this variable -at its default value. If you unpacked Boost somewhere else (if you used [Homebrew](https://brew.sh/) to install Boost), or if you changed the name -of the directory that was created when you unpacked it, then you will -need to set this variable explicitly. - -* `BOOSTVERSION` (default: `1_52_0`). This variable should contain the -version number of the version of Boost that you installed. The -version number will appear in the name of the tar file you -downloaded. The `BOOSTVERSION` variable is used in the default value of `BOOSTROOT` to determine the default installation -directory. If you override the default value of `BOOSTROOT` you can ignore this variable. - -**Shared Library Search Path** - -Compiled Boost libraries used by Hector will be -compiled into shared libraries that must be loaded at run time. It is -best if these libraries are in directories that are part of your -system's shared library search path. On many systems `/usr/local` is -already in that path. If you install the libraries somewhere else, -you may need to add the installation directories to the list given in -`/etc/ld.so.conf`. Whether or not you install the GSL libraries in the default location, when you compile and install them -you may need to refresh the library cache by running -`ldconfig` (which generally requires root privilege), or by rebooting your system -(which does not). - -If you are unable to add your library installation directory to the -library search path, you will need to add the installation directory -to the environment variable `LD_LIBRARY_PATH`. Try not to use this approach if you -can help it because it can cause some conflicts with other software on your system. -Instead, ask your system administrator if `ldconfig` is right for you. - -### Build & Run Hector - -Once the necessary libraries are installed, change to the top-level -Hector directory and type `make hector`. The hector executable will -be built in the `source/` subdirectory. If you ever need to rebuild, -you can type `make clean` to clear away the executable and all of the -intermediate files. - -There are two additional environment variables that you can use to -fine-tune the build process. The `CXXEXTRA` variable is passed to the -C++ compiler. You can use this variable to pass extra options to the -compiler without changing the Makefile. In particular, specifying -optimization options in `CXXEXTRA` such as -O or -O0 will override the -default value of -O3. - -The `CXXPROF` variable is passed both to the compiler and the linker. -It is intended to turn on performance profiling, which must be -specified at both the compile and link stages of the build, so it -generally should be either unset (for normal operation) or set to -pg -(for profiling). Profiling slows the code down dramatically, so if you use it, be -sure to unset `CXXPROF`, clean the build directories with `make clean`, -and rebuild when you are ready to go back to -production runs. - - -Run Hector from the terminal with the command line. - -``` -./src/hector ./inst/input/name-of-ini.ini -``` - -## Xcode (Mac OS X) - -These directions assume a basic familiarity with Xcode and Mac OS X software installation. - -* Install [Xcode](https://developer.apple.com/xcode/downloads/) if necessary. Hector has been built and tested with Mac OS >= 10.8.5. The project files are for Xcode 11.3.1. -* Download and install Boost, following instructions above. -* Download the [Hector zip file](https://github.com/JGCRI/hector/archive/master.zip) or check out the repository using Git. -* From Xcode, open the project file in `project_files/Xcode/hector.xcodeproj`. - -The Xcode project file is configured to use constants defining custom paths, rather than hard-coded paths. -This means that developers and users can set these paths without overwriting each other. - -* You will need to set several custom paths (Preferences -> Locations -> Custom Paths): `BOOSTLIB`, `BOOSTROOT`, and `HECTORDIR`. These are the Boost runtime library, the Boost root under which the headers can be found in `boost/`, and the runtime working directory for the model (the repository root). -* If you want to build Hector's testing framework (the `hector-tests` target; this is optional and only relevant for C++ developers) add GTEST and GTESTLIB custom paths to Xcode; these are analogous to their Boost counterparts. You will need to install [googletest](https://github.com/google/googletest) on your machine. - - -At this point you should be ready to go: - -* Build the project, making sure you're building the `hector` target. -* Run! -* To run a different scenario, change the current Scheme settings (Scheme->Edit Scheme) and modify or add a command-line argument (*Arguments* tab, e.g. "./inst/input/hector_rcp45.ini"). - -Xcode Resources - -* [Xcode Schemes](https://developer.apple.com/library/archive/documentation/ToolsLanguages/Conceptual/Xcode_Overview/ManagingSchemes.html) -* [Xcode Debugging](https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/debugging_with_xcode/chapters/debugging_tools.html) - - -## Visual Studio Code (Windows) - -* Install [Visual Studio Code](https://code.visualstudio.com/download), if necessary. -* Download and install *Boost*, following instructions above. -* Download the [Hector zip file](https://github.com/JGCRI/hector/archive/master.zip) or check out the repository using Git. -* Open Hector in the visual studio code IDE, build Hector with Terminal --> Run Build Task or with a `make hector` call in VSC terminal window. -* Run --> Start Debugging or Run Without Debugging or with `./src/hector ./inst/input/name-of-ini.ini` in the VSC terminal window. - - -## Visual Studio - -VS is not supported at this time. See [VS Hector github issue](https://github.com/JGCRI/hector/issues/415) for more details. diff --git a/vignettes/manual/Constraints.Rmd b/vignettes/manual/Constraints.Rmd deleted file mode 100644 index 60d79bb88..000000000 --- a/vignettes/manual/Constraints.Rmd +++ /dev/null @@ -1,97 +0,0 @@ ---- -title: Constraints ---- - -The Hector model can be run subject to *constraints* that force the model to have certain behavior. Technically, this means that the model's components output user-provided data as opposed to their own calculations, similar to the [data mode](http://www.cesm.ucar.edu/models/cesm1.0/cesm/cesm_doc_1_0_4/x42.html) of a CESM sub-model. Currently the available constraints include: - -# Temperature - -If the current [input file](InputFiles.html) includes, in its `[temperature]` section, a line of form - -``` -tgav_constrain=csv:path/to/constraint/file.csv -``` - -then the model's global mean temperature `Tgav` will follow this contents of this file (which should have two columns, `Date` and `tgav_constrain`; a sample file is included in the repository). The model will extrapolate within this data as necessary, but not beyond its endpoints. - -Once Hector's internal date passes the last date in the constraint file, the model's temperature component becomes *unconstrained*, except that we do not permit it to suddenly jump to a new temperature. Instead, changes in global radiative forcing (from which temperature change is computed) are applied to the end-of-constraint temperature. For more details, see the detailed comments in the `TemperatureComponent::run` method. - -# Radiative forcing - -If the current [input file](InputFiles.html) includes, in its `[forcing]` section, a line of form - -``` -Ftot_constrain=csv:path/to/constraint/file.csv -``` - -then the model's global radiative forcing `Ftot`, that drives global temperature changes, will follow this contents of this file (which should have two columns, `Date` and `Ftot_constrain`). The model will extrapolate within this data as necessary, but not beyond its endpoints. Once Hector's internal date passes the last date in the constraint file, the model's forcing component becomes *unconstrained*. - -# Ocean C uptake - -If the current [input file](InputFiles.html) includes, in its `[ocean]` section, a line of form - -``` -oceanflux_constrain=csv:path/to/constraint/file.csv -``` - -then the model's ocean carbon uptake (in Pg C) will follow this contents of this file (which should have two columns, `Date` and `oceanflux_constrain`). The model will extrapolate within this data as necessary, but not beyond its endpoints. Once Hector's internal date passes the last date in the constraint file, the model's ocean uptake becomes *unconstrained*. - -# Atmospheric CO2 - -If the current [input file](InputFiles) includes, in its `[simpleNbox]` section, a line of form - -``` -CO2_constrain=csv:path/to/constraint/file.csv -``` - -then the model's atmospheric CO$_2$ concentration ([CO2], given in ppmv CO$_2$) will follow the contents of this file (which should have two columns, `Date` and `CO2_constrain`). -Alternatively, Hector's atmospheric CO$_2$ concentration constraint can be set using the `setvars` function and `CO2_CONSTRAIN` variable. - -The CO$_2$ constraint is applied at the _end_ of the current time step. -The full sequence of events is as follows: -First, the model solves the current time-step's carbon cycle conditioned on the previous time step's carbon pools, ignoring the CO$_2$ constraint. -Then, if a CO$_2$ constraint is present, Hector calculates the difference between its calculated atmospheric CO$_2$ and the prescribed CO2 constraint. -If the target atmospheric CO$_2$ concentration is lower than the calculated CO$_2$, the excess carbon is transferred from the atmosphere to the deep ocean; -conversely, if the target atmospheric CO$_2$ concentration is greater than the calculated value, the additional carbon is transferred from the deep ocean into the atmosphere. -Finally, Hector records the current atmospheric CO$_2$ concentration (which is now equal to the constraint value); this is the value that is used in the next time step's evaluation of carbon-climate feedbacks (e.g. CO$_2$ fertilization of net primary productivity, surface ocean carbonate chemistry). -In other words, an atmospheric CO$_2$ constraint at time $t$ does not affect carbon-climate feedbacks until $t+1$. - -The CO$_2$ constraint need not span the entirety of the Hector simulation, or even be continuous. -At any given time step, Hector will check whether or not a CO$_2$ constraint exists at that time step and only apply the constraint if it is present. -This means that "hybrid" runs are possible, where only some specific time ranges have CO$_2$ constraints while others calculate the atmospheric carbon pool and CO$_2$ concentrations according to Hector's standard [carbon cycle](SimpleNBox). - -# CH4, N2O, and halocarbon concentrations - -These all work in more-or-less the same way, and are similar to the atmospheric CO$_2$ constraint (above), except that there is no equivalent to the carbon pool adjustment for these gases. -In the [input file](InputFiles), they are triggered by a line like the following in their corresponding component section: - -``` -CH4_constrain=csv:path/to/file.csv -``` - -As with other CSV inputs, the `/path/to/file.csv` above must have columns `Date` and `CH4_constrain`. -Alternatively, constraints can be set from the R interface: - -``` r -# library(hector) -# core <- newcore("/path/to/input/file.ini") -setvar(core, 1900:2000, CH4_CONSTRAIN(), 750, getunits(CH4_CONSTRAIN())) -``` - -Constraints are applied as follows: -At any given time step, Hector will check if the constraint has a value for that time step (e.g. `CH4_constrain.exists(t)`). -If the constraint exists, Hector will skip all atmospheric chemistry calculates and set the corresponding atmospheric concentration value to the constraint value (e.g. `CH4.set(t, CH4_constrain.get(t)`). -If the constraint does not exist, Hector will proceed with its standard atmospheric chemistry routines for calculating the atmospheric concentration based on emissions and concentrations of other relevant species. -This means that _concentration constraints always take precedence over emissions_; in other words, if a particular time step has both emissions and a concentration constraint, the emissions are ignored. - -Note that CH$_4$ and N$_2$O have special variables for their pre-industrial concentration that could conflict with the constraint. -In Hector, _concentration constraints take precedence over pre-industrial concentrations_; -in other words, Hector assumes that if you provide a concentration constraint for the pre-industrial timestep, that is the concentration you want, regardless of the prescribed pre-industrial value. - -# Discontinuous constraints - -Hector _does not perform any interpolation of constraints_ -- they are applied only in the exact years that they are provided by the user, and all other years are treated (including those immediately before or after constrained years) are treated as unconstrained (typically, emissions-driven). -This means that constraints can abruptly force Hector's climate system into state that is inconsistent with the previous time step. -Concentrations for the first year of a constraint can be discontinuous compared to the previous year without a constraint. -Concentrations after the last year of a constraint will not necessarily have a discontinuity, but the behavior of the corresponding component and any related components may change after this point. -It is the user's responsibility to make sure that constraints are continuous. diff --git a/vignettes/manual/Hector-Message-Targets.md b/vignettes/manual/Hector-Message-Targets.md deleted file mode 100644 index a03ae88e9..000000000 --- a/vignettes/manual/Hector-Message-Targets.md +++ /dev/null @@ -1,218 +0,0 @@ -# Hector message targets - -The following message targets are defined. - -TODO: indicate which ones are valid for reading and which are valid for writing, and give definitions for the less obvious ones. - -``` -// BC - D_EMISSIONS_BC - -// Forcings - D_RF_TOTAL - D_RF_T_ALBEDO - D_FTOT_CONSTRAIN - D_RF_BASEYEAR - D_RF_CO2 - D_RF_N2O - D_RF_H2O - D_RF_O3 - D_RF_BC - D_RF_OC - D_RF_SO2d - D_RF_SO2i - D_RF_SO2 - D_RF_VOL - D_RF_halocarbons - -// Halocarbon Forcings - D_RF_CF4 - D_RF_C2F6 - D_RF_HFC23 - D_RF_HFC32 - D_RF_HFC4310 - D_RF_HFC125 - D_RF_HFC134a - D_RF_HFC143a - D_RF_HFC227ea - D_RF_HFC245fa - D_RF_SF6 - D_RF_CFC11 - D_RF_CFC12 - D_RF_CFC113 - D_RF_CFC114 - D_RF_CFC115 - D_RF_CCl4 - D_RF_CH3CCl3 - D_RF_HCF22 - D_RF_HCF141b - D_RF_HCF142b - D_RF_halon1211 - D_RF_halon1301 - D_RF_halon2402 - D_RF_CH3Cl - D_RF_CH3Br - -// Halocarbon Emissions - D_EMISSIONS_CF4 - D_EMISSIONS_C2F6 - D_EMISSIONS_HFC23 - D_EMISSIONS_HFC32 - D_EMISSIONS_HFC4310 - D_EMISSIONS_HFC125 - D_EMISSIONS_HFC134a - D_EMISSIONS_HFC143a - D_EMISSIONS_HFC227ea - D_EMISSIONS_HFC245fa - D_EMISSIONS_SF6 - D_EMISSIONS_CFC11 - D_EMISSIONS_CFC12 - D_EMISSIONS_CFC113 - D_EMISSIONS_CFC114 - D_EMISSIONS_CFC115 - D_EMISSIONS_CCl4 - D_EMISSIONS_CH3CCl3 - D_EMISSIONS_HCF22 - D_EMISSIONS_HCF141b - D_EMISSIONS_HCF142b - D_EMISSIONS_halon1211 - D_EMISSIONS_halon1301 - D_EMISSIONS_halon2402 - D_EMISSIONS_CH3Cl - D_EMISSIONS_CH3Br - - -// Methane - D_ATMOSPHERIC_CH4 - D_PREINDUSTRIAL_CH4 - D_RF_CH4 - D_EMISSIONS_CH4 - D_NATURAL_CH4 - D_CONVERSION_CH4 - D_LIFETIME_SOIL - D_LIFETIME_STRAT - -// N2O - D_ATMOSPHERIC_N2O - D_PREINDUSTRIAL_N2O - D_EMISSIONS_N2O - D_NAT_EMISSIONS_N2O - D_CONVERSION_N2O - D_INITIAL_LIFETIME_N2O - D_LIFETIME_N2O - -// OH - D_LIFETIME_OH - D_INITIAL_LIFETIME_OH - D_COEFFICENT_NOX - D_COEFFICENT_CH4 - D_COEFFICENT_NMVOC - D_COEFFICENT_CO - -// O3 - D_PREINDUSTRIAL_O3 - D_ATMOSPHERIC_O3 - D_ATMOSPHERIC_EM_CH4 - D_EMISSIONS_NOX - D_EMISSIONS_CO - D_EMISSIONS_NMVOC - -// OC - D_EMISSIONS_OC - -// Ocean - D_OCEAN_CFLUX - D_OCEAN_C - D_TT - D_TU - D_TWI - D_TID - D_CIRC_TOPT - D_CIRC_T50_HIGH - D_CIRC_T50_LOW - D_HL_DO - D_PH_HL - D_PH_LL - D_ATM_OCEAN_FLUX_HL - D_ATM_OCEAN_FLUX_LL - D_PCO2_HL - D_PCO2_LL - D_DIC_HL - D_DIC_LL - D_P0_LL - D_CARBON_HL - D_CARBON_LL - D_CARBON_IO - D_CARBON_DO - D_OMEGACA_HL - D_OMEGACA_LL - D_OMEGAAR_HL - D_OMEGAAR_LL - D_TEMP_HL - D_TEMP_LL - D_SPINUP_CHEM - - D_HEAT_FLUX - D_HEAT_UPTAKE_EFF - D_MAX_HEAT_UPTAKE_EFF - D_KAPPA50_TEMP - D_MIN_HEAT_UPTAKE_EFF - D_SLOPE_HEAT_UPTAKE_EFF - - D_CO3_LL - D_CO3_HL - D_ATM_OCEAN_CONSTRAIN - D_TIMESTEPS - D_REVELLE_HL - D_REVELLE_LL - -// Land Carbon - D_LAND_CFLUX - D_ATMOSPHERIC_CO2 - D_PREINDUSTRIAL_CO2 - D_ATMOSPHERIC_C - D_ATMOSPHERIC_C_RESIDUAL - D_EARTHC - D_VEGC - D_DETRITUSC - D_SOILC - D_ANTHRO_EMISSIONS - D_LUC_EMISSIONS - D_CO2FERT - D_TEMPFERTD - D_TEMPFERTS - D_Q10_RH - D_NPP - D_RH - D_F_NPPV - D_F_NPPD - D_F_LITTERD - D_F_LUCV - D_F_LUCD - D_NPP_FLUX0 - D_CO2_CONSTRAIN - D_BETA - D_WARMINGFACTOR - -// Sea Level Rise - D_SL_RC - D_SLR - D_SL_RC_NO_ICE - D_SLR_NO_ICE - -// SO2 - D_NATURAL_SO2 - D_2000_SO2 - D_EMISSIONS_SO2 - D_VOLCANIC_SO2 - -// Temperature - D_ECS - D_GLOBAL_TEMP - D_GLOBAL_TEMPEQ - D_TGAV_CONSTRAIN - D_SO2D_B - D_SO2I_B - D_OC_B - D_BC_B -``` diff --git a/vignettes/manual/InputFiles.Rmd b/vignettes/manual/InputFiles.Rmd deleted file mode 100644 index 33e6c98f2..000000000 --- a/vignettes/manual/InputFiles.Rmd +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: Hector input files ---- - -# General information - -When Hector is invoked from the command line, it takes a single parameter: the name of the primary input file to read. This file, typically stored in the `input/` directory, contains configuration and parameter data controlling the model's run, output, and behavior. - -The primary input file is a text [INI-style](http://en.wikipedia.org/wiki/INI_file) file with *sections*, *properties*, and *values*. For example, the beginning of the RCP 4.5 file included in the repository looks like this: - -``` -; Config file for hector model: RCP45 -;------------------------------------------------------------------------ -[core] -run_name=rcp45 -``` - -Here, comments start with a semicolon (`;`); *section names* (`core`) are enclosed in square brackets; and a *property* (`run_name`) is assigned a *value* (`rcp45`). Properties are guaranteed to be unique within a particular section, and all sections match one-to-one with a model [component](ComponentAPI.html). - -There are two Hector-specific wrinkles to the INI property-value assignment scheme. First, some properties have a time index that's required when assigning: - -``` -Ftalbedo[1750]=0.0 -Ftalbedo[1950]=-0.2 -``` - -More commonly, such [time series](TimeSeries.html) are assigned by reading data in from a comma-separated value text file: - -``` -lucEmissions=csv:input/emissions/RCP45_emissions.csv -``` - -In this case, the `input/emissions/RCP45_emissions.csv` file is parsed and the data in column `lucEmissions` are assigned to the model variable, with a required `Date` column providing the time index. - -# List of model parameters - -Properties with asterisks (`*`) are optional. - - -| Section (component) | Property | Units | Notes | -| ------------------------ | ---------------- | --------- | ----------- | -| **core** | `run_name` | Text | | -| | `startDate` | Year | | -| | `endDate` | Year | | -| | `do_spinup*` | 0/1 | Defaults to 1 (TRUE) | -| | `max_spinup*` | Numeric | Defaults to 1000 | -| **carbon-cycle-solver** | `eps_abs` | Numeric | Solution tolerance, Pg C; see [GSL documentation][gsl-ode] | -| | `eps_rel` | Numeric | Solution tolerance; see [GSL documentation][gsl-ode] | -| | `dt` | Numeric | Default timestep; see GSL documentation | -| | `eps_spinup` | Numeric | Spinup tolerance (drift), Pg C | - -[gsl-ode]: https://www.gnu.org/software/gsl/manual/html_node/Ordinary-Differential-Equations.html#Ordinary-Differential-Equations - diff --git a/vignettes/manual/StyleGuide.Rmd b/vignettes/manual/StyleGuide.Rmd deleted file mode 100644 index 9f228b541..000000000 --- a/vignettes/manual/StyleGuide.Rmd +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: Style guide ---- - -Hector coding style: ------------------------ -- basic file into at top of every file (see existing examples) -- spaces within parentheses and around math operators -- open curly brace on same line for if, etc.; close on a line by itself -- limit over-length (~75) lines -- line of dashes separating functions -- use 'const' when possible: on functions, parameters, variables -- methods should start with assertions on inputs -- try to use C++ STL or Boost data structures and functions - (instead of rolling your own) - -Hector unit testing: ------------------------ -- writing test case is part of writing code -- every method should have at least one test if possible -- every class/subunit should have a dedicated test group - -Hector documentation: ------------------------ -- every method should have Doxygen comment header. Required tags: - + `\brief` (always) - + `\param[in]` (if any) - + `\param[out]` (if any) - + `\returns` (if returns a value) - + `\exception` (if any throws or assertions) -- all but most trivial vars should have Doxygen comments in headers -- comments should generally say WHY not WHAT diff --git a/vignettes/manual/TimeSeries.Rmd b/vignettes/manual/TimeSeries.Rmd deleted file mode 100644 index 16425c22f..000000000 --- a/vignettes/manual/TimeSeries.Rmd +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Time series (`tseries`) variables ---- - -Steps to creating a tseries variable within Hector. - -tseries - the basic time series data type - - -Step One (X.hpp): ------------- - * `tseries X` - -Step Two (X.cpp): ---------- -_In X::init or X::conctructor:_ - - Allow for interpolation - `X.allowInterp(true); ` - -_In X::setData:_ - -`if( varName == D_EMISSIONS_N2O ) {` - `H_ASSERT( data.date != Core::undefinedIndex(), "date required" );` - `N2O_emissions.set( data.date, unitval::parse_unitval( data.value_str, data.units_str, U_TG_N2O ) );` - -_In X::getData:_ - -`if( varName == D_ATMOSPHERIC_X ) {` - `H_ASSERT( date != Core::undefinedIndex(), "Date required for atmospheric X" );` - `returnval = X.get( date );` - -If setting a new variable, see [AddNewVariable](AddNewVariable.html) - -_In X::run:_ - -set the variable to a tseries in this order - (runToDate, unitval) - `X.set( runToDate, unitval( previous_x + dx, U_GG_X ) );` - -in order to print to the log file: -` H_LOG( logger, Logger::DEBUG ) << "Year " << runToDate << " X concentraion = " << X.get( runToDate ) << std::endl;` - -Step three ----------- -If another component calls this new tseries variable: -`X = core->sendMessage( M_GETDATA, D_ATMOSPHERIC_X, message_data( runToDate ) ).value( U_X);` diff --git a/vignettes/manual/index.Rmd b/vignettes/manual/index.Rmd deleted file mode 100644 index 66c4d4943..000000000 --- a/vignettes/manual/index.Rmd +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Hector manual ---- - -Science --------------------- -* A general summary of the science behind Hector. -* The model's [terrestrial carbon cycle](SimpleNBox.html). -* The model's ocean. - -Model philosophy --------------------- -* Complexity only where warranted. -* Open source: all code freely available. -* Clean, modern, object-oriented code. -* Flexible: model components, outputs, inputs can be changed. -* Fast. - -Building and running Hector --------------------- -* How to [build Hector from source](BuildHector.html). -* What [input files](InputFiles.html) the model requires, and what output files it produces. -* About Hector's [version numbering](VersionNumbers.html). -* Running Hector subject to [constraints](Constraints.html). - -Programming topics --------------------- -* [Contribution guide](ContributionsGuide.html) -* Learn how to create a new [component](AddNewComponent.html) or [variable](AddNewVariable.html) in Hector. -* Hector internals: [unitvals](Unitvals.html), [time series](TimeSeries.html), data passing, the [component API](ComponentAPI.html) . -* The Hector [style guide](StyleGuide.html). -* The Hector [external API](Hector-External-API.html) - -Other topics ------------- -* [Units for emissions passed into Hector](Hector-Units.html) -* [Hector message targets](Hector-Message-Targets.html) - -Publications --------------------- -* Manuscript describing the initial version of Hector: [Hartin et al. (2015)](http://www.geosci-model-dev-discuss.net/7/7075/2014/gmdd-7-7075-2014.html). -* Manuscript describing Hector 2.0 (with DOECLIM) and its applications for sea level rise: [Vega-Westhoff et al. (2019)](https://doi.org/10.1029/2018EF001082) diff --git a/vignettes/manual/rcp85.png b/vignettes/manual/rcp85.png deleted file mode 100644 index 15a54877f..000000000 Binary files a/vignettes/manual/rcp85.png and /dev/null differ